From d6ca37a95b5ed5b7e5c8e0a54fa5a5bbf0fa2075 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Sat, 13 Jun 2009 12:58:24 +0100 Subject: [PATCH] Add --enable-supermin option. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac index f1562f4..c83f856 100644 --- a/configure.ac +++ b/configure.ac @@ -179,6 +179,15 @@ AC_ARG_WITH([mirror], MIRROR="$with_mirror" AC_SUBST(MIRROR) +dnl Build the supermin appliance? Please see README file before +dnl enabling this option. +AC_ARG_ENABLE([supermin], + [AS_HELP_STRING([--enable-supermin], + [enable supermin appliance (see README) @<:@default=no@:>@])], + [], + [enable_supermin=no]) +AM_CONDITIONAL([SUPERMIN],[test "x$enable_supermin" = "xyes"]) + dnl Readline. AC_ARG_WITH([readline], [AS_HELP_STRING([--with-readline], @@ -493,6 +502,7 @@ echo -n "Haskell bindings .................... " if test "x$HAVE_HASKELL" = "x"; then echo "yes"; else echo "no"; fi echo -n "virt-inspector ...................... " if test "x$HAVE_INSPECTOR" = "x"; then echo "yes"; else echo "no"; fi +echo "supermin appliance .................. $enable_supermin" echo echo "If any optional component is configured 'no' when you expected 'yes'" echo "then you should check the preceeding messages." -- 1.8.3.1