From 1d36512c0623fdf28543be37aad25431dc2b4ea6 Mon Sep 17 00:00:00 2001 From: brenosilva Date: Thu, 23 Aug 2012 17:10:06 +0000 Subject: [PATCH] Standalone module shouldnt be default --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 12f0ef7e..703a57e9 100644 --- a/configure.ac +++ b/configure.ac @@ -165,8 +165,8 @@ fi # Standalone Module AC_ARG_ENABLE(standalone-module, - AS_HELP_STRING([--disable-standalone-module], - [Disable building standalone module.]), + AS_HELP_STRING([--enable-standalone-module], + [Enable building standalone module.]), [ if test "$enableval" != "no"; then build_standalone_module=1 @@ -175,7 +175,7 @@ AC_ARG_ENABLE(standalone-module, fi ], [ - build_standalone_module=1 + build_standalone_module=0 ]) AM_CONDITIONAL([BUILD_STANDALONE_MODULE], [test "$build_standalone_module" -eq 1]) if test "$build_standalone_module" -eq 1; then