]> git.ozlabs.org Git - petitboot/blobdiff - configure.ac
Cleanup list formatting
[petitboot] / configure.ac
index c67f0ed927fd09cdfc2681e4011bff105b3cc942..d9fe8ad9cdb87688f86b2ca24d1866e7c63689f0 100644 (file)
@@ -14,7 +14,7 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 
-AC_INIT([petitboot], [0.2], [Jeremy Kerr <jk@ozlabs.org>])
+AC_INIT([petitboot], [0.3], [Geoff Levand <geoff@infradead.org>])
 
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_FILES([Makefile])
@@ -29,6 +29,14 @@ fi
 AC_PROG_CC
 AC_PROG_INSTALL
 
+AC_ARG_ENABLE([ps3],
+       [AS_HELP_STRING([--enable-ps3],
+               [build support for the PS3 game console])],
+       [],
+       [enable_ps3=check])
+
+AS_IF([test "x$enable_ps3" != xno], [AC_SUBST([ENABLE_PS3], ["y"])], [])
+
 AC_ARG_WITH([twin],
        [AS_HELP_STRING([--with-twin],
                [build GUI versions using the twin window system])],
@@ -51,6 +59,6 @@ AS_IF([test "x$with_twin" != xno],
                [${twin_LIBS}])])
 
 mkdir -p discover lib/list lib/log lib/pb-protocol lib/system lib/talloc \
-       lib/waiter test ui/common ui/ncurses ui/test ui/twin
+       lib/waiter test ui/common ui/ncurses ui/test ui/twin utils
 
 AC_OUTPUT