From 88730b324d6aee720b74bbc1dc8547ec8b3cfc7c Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Wed, 9 Sep 2009 00:38:26 +0000 Subject: [PATCH] let's have more testing: amalgamation on by default, report problems! SVN revision: 42356 --- legacy/eina/configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/legacy/eina/configure.ac b/legacy/eina/configure.ac index cd5e4cd1f7..f988a138e2 100644 --- a/legacy/eina/configure.ac +++ b/legacy/eina/configure.ac @@ -111,14 +111,14 @@ AC_ARG_WITH(internal-maximum-log-level, ], [:]) AC_ARG_ENABLE([amalgamation], - [AC_HELP_STRING([--enable-amalgamation], [generate one single file with all source code in it, helps compiler optimizations.])], - [if test "x${enableval}" = "xyes"; then - do_amalgamation="yes" - else + [AC_HELP_STRING([--disable-amalgamation], [disable generation of one single file with all source code in it, helps compiler optimizations.])], + [if test "x${enableval}" = "xno"; then do_amalgamation="no" + else + do_amalgamation="yes" fi ], - [do_amalgamation="no"] + [do_amalgamation="yes"] ) AM_CONDITIONAL(EINA_AMALGAMATION, test "x${do_amalgamation}" = "xyes")