From 53aa807ae41e48fd71653c2d00083a44a8bca14c Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Sun, 12 Apr 2009 15:12:00 +0000 Subject: Add PS3 ncurses CUI program Add a PS3 ncurses CUI program, and the configure option --enable-ps3 to control its build. The default is --enable-ps3=yes. Signed-off-by: Geoff Levand Signed-off-by: Jeremy Kerr --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 524cbc5..cb43f8c 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,16 @@ 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_SUBST([ENABLE_PS3], ["n"])]) + AC_ARG_WITH([twin], [AS_HELP_STRING([--with-twin], [build GUI versions using the twin window system])], -- cgit v1.2.1