From: Carsten Haitzler Date: Thu, 31 May 2012 02:34:46 +0000 (+0000) Subject: let's turn eina thread debug OFF by default eh? :) X-Git-Tag: submit/devel/efl/20131022.203902~5525 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d66408a8b61210420e2534485d2e53a886b9edc;p=platform%2Fupstream%2Fefl.git let's turn eina thread debug OFF by default eh? :) SVN revision: 71571 --- diff --git a/legacy/eina/configure.ac b/legacy/eina/configure.ac index 850edc7..d7fcff2 100644 --- a/legacy/eina/configure.ac +++ b/legacy/eina/configure.ac @@ -103,11 +103,11 @@ fi AC_SUBST(EINA_CONFIGURE_HAVE_THREADS) AM_CONDITIONAL([EINA_HAVE_THREADS], [! test "x${efl_have_threads}" = "xno"]) -if ! test "x${efl_have_debug_threads}" = "xno"; then +if test "x${efl_have_debug_threads}" = "xyes"; then EINA_CONFIGURE_HAVE_DEBUG_THREADS="#define EINA_HAVE_DEBUG_THREADS" fi AC_SUBST(EINA_CONFIGURE_HAVE_DEBUG_THREADS) -AM_CONDITIONAL([EINA_DEBUG_THREADS], [! test "x${efl_have_debug_threads}" = "xno"]) +AM_CONDITIONAL([EINA_DEBUG_THREADS], [test "x${efl_have_debug_threads}" = "xyes"]) if ! test "x${efl_have_on_off_threads}" = "xno"; then EINA_CONFIGURE_HAVE_ON_OFF_THREADS="#define EINA_HAVE_ON_OFF_THREADS"