let's have more testing: amalgamation on by default, report problems!

SVN revision: 42356
This commit is contained in:
Gustavo Sverzut Barbieri 2009-09-09 00:38:26 +00:00
parent c98bf92366
commit 88730b324d
1 changed files with 5 additions and 5 deletions

View File

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