efl/configure.ac: s/want_pass_through/want_default_mempool/g
authorGustavo Sverzut Barbieri <barbieri@gmail.com>
Fri, 28 Dec 2012 14:20:26 +0000 (14:20 +0000)
committerGustavo Sverzut Barbieri <barbieri@gmail.com>
Fri, 28 Dec 2012 14:20:26 +0000 (14:20 +0000)
what the hell pass_through has to do with enabling a default mempool I
have no idea, so make it closer to the config.h variable name.

SVN revision: 81802

configure.ac

index f1713ffa70d3d462ee4d1a47295aa2b1c358a96e..1176d51d741ac9957973aeda0a4f137d5cd3ce27 100644 (file)
@@ -838,7 +838,7 @@ case "${build_profile}" in
      want_valgrind="no" # TODO: "yes" is not working: relocation R_X86_64_32S against `vgPlain_interim_stack' can not be used when making a shared object; recompile with -fPIC
      want_debug_malloc="no"
      want_debug_threads="no"
-     want_pass_through="no"
+     want_default_mempool="no"
      ;;
 
    debug)
@@ -847,7 +847,7 @@ case "${build_profile}" in
      want_valgrind="no" # TODO: "yes" is not working: relocation R_X86_64_32S against `vgPlain_interim_stack' can not be used when making a shared object; recompile with -fPIC
      want_debug_malloc="yes"
      want_debug_threads="yes"
-     want_pass_through="yes"
+     want_default_mempool="yes"
      ;;
 
    release)
@@ -856,13 +856,13 @@ case "${build_profile}" in
      want_valgrind="no"
      want_debug_malloc="no"
      want_debug_threads="no"
-     want_pass_through="no"
+     want_default_mempool="no"
      ;;
 esac
 
 EINA_CONFIG([MAGIC_DEBUG], [test "x${have_magic_debug}" = "xyes"])
 EINA_CONFIG([SAFETY_CHECKS], [test "x${have_safety_checks}" = "xyes"])
-EINA_CONFIG([DEFAULT_MEMPOOL], [test "x${want_pass_through}" = "xyes"])
+EINA_CONFIG([DEFAULT_MEMPOOL], [test "x${want_default_mempool}" = "xyes"])
 
 if test -n "${with_max_log_level}"; then
    AC_MSG_NOTICE([ignoring any EINA_LOG() with level greater than ${with_max_log_level}])