eina: add back option lost at some point for debugging.

This commit is contained in:
Cedric Bail 2016-07-28 21:02:51 -07:00
parent 351c2007f6
commit 3a9d43ff31
1 changed files with 10 additions and 0 deletions

View File

@ -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],