X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=configure.ac;h=d9fe8ad9cdb87688f86b2ca24d1866e7c63689f0;hp=c67f0ed927fd09cdfc2681e4011bff105b3cc942;hb=a88618fc1d5828287ce71bb643f8117e51754c88;hpb=b3e1a66f23b7338d88e0668b8cf10ffe139a9a03;ds=sidebyside diff --git a/configure.ac b/configure.ac index c67f0ed..d9fe8ad 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -AC_INIT([petitboot], [0.2], [Jeremy Kerr ]) +AC_INIT([petitboot], [0.3], [Geoff Levand ]) 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