cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3a9d43ff3131147b43af5c2ff7f6436cefe31bdc
commit 3a9d43ff3131147b43af5c2ff7f6436cefe31bdc Author: Cedric Bail <ced...@osg.samsung.com> Date: Thu Jul 28 21:02:51 2016 -0700 eina: add back option lost at some point for debugging. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac index 618ccb4..630417a 100644 --- a/configure.ac +++ b/configure.ac @@ -894,6 +894,16 @@ AC_ARG_ENABLE([magic-debug], ], [have_magic_debug="yes"]) +AC_ARG_ENABLE([debug-threads], + [AS_HELP_STRING([--enable-debug-threads], [enable debugging of eina threads @<:@default=disabled@:>@])], + [ + if test "x${enableval}" = "xyes" ; then + want_debug_threads="yes" + else + want_debug_threads="no" + fi + ]) + EINA_CONFIG([MAGIC_DEBUG], [test "x${have_magic_debug}" = "xyes"]) AC_ARG_WITH([xattr-tests-path], --