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")