From c5ed7f0de42d6660d61bbfeb59a267e571eb7ac6 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 26 Jun 2009 07:52:56 +0000 Subject: [PATCH] * fix typo * move option of e17 benchmark to its correct place SVN revision: 41204 --- legacy/eina/configure.ac | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/legacy/eina/configure.ac b/legacy/eina/configure.ac index 6d9cfab848..e157891f4e 100644 --- a/legacy/eina/configure.ac +++ b/legacy/eina/configure.ac @@ -133,6 +133,24 @@ if test "x${have_stringshare_usage}" = "xyes"; then AC_DEFINE(EINA_STRINGSHARE_USAGE, 1, [Report Eina stringshare usage pattern]) fi +# Check if we want to benchmark on real data +enable_benchmark_e17="no" +AC_ARG_ENABLE([e17], + [AC_HELP_STRING([--enable-e17], [enable heavy benchmark @<:@default=no@:>@])], + [ + if test "x${enableval}" = "xyes" ; then + enable_benchmark_e17="yes" + else + enable_benchmark_e17="no" + fi + ], + [enable_benchmark_e17="no"]) + +AC_MSG_CHECKING([whether e17 real data benchmark are built]) +AC_MSG_RESULT([${enable_benchmark_e17}]) + +AM_CONDITIONAL(EINA_ENABLE_BENCHMARK_E17, test "x${enable_benchmark_e17}" = "xyes") + ### Checks for programs AC_PROG_CC @@ -156,23 +174,6 @@ case "$host_os" in ;; esac -# Check if we want to benchmark on real data -enable_benchmark_e17="no" -AC_ARG_ENABLE([e17], - [AC_HELP_STRING([--enable-e17], [enable heavy benchmark @<:@default=no@:>@])], - [ - if test "x${enableval}" = "xyes" ; then - enable_benchmark_e17="yes" - else - enable_benchmark_e17="no" - fi - ], - [enable_benchmark_e17="no"] -) -AC_MSG_CHECKING([whether e17 real data benchmark are built]) -AC_MSG_RESULT([${enable_benchmark_e17}]) -AM_CONDITIONAL(EINA_ENABLE_BENCHMARK_E17, test "x${enable_benchmark_e17}" = "xyes") - # Check ememoa memory pool library AC_ARG_ENABLE([ememoa], @@ -224,10 +225,10 @@ AC_PROG_CC_STDC EINA_CPPFLAGS="" case "$host_os" in mingw32ce* | cegcc*) - EET_CPPFLAGS="-D_WIN32_WCE=0x0420" + EINA_CPPFLAGS="-D_WIN32_WCE=0x0420" ;; mingw*) - EET_CPPFLAGS="-D_WIN32_WINNT=0x0500" + EINA_CPPFLAGS="-D_WIN32_WINNT=0x0500" ;; esac