From 55cfab1b308699c282fbffda2eb15545446ac223 Mon Sep 17 00:00:00 2001 From: barbieri Date: Wed, 9 Sep 2009 00:38:26 +0000 Subject: [PATCH] let's have more testing: amalgamation on by default, report problems! git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@42356 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index cd5e4cd..f988a13 100644 --- a/configure.ac +++ b/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") -- 2.7.4