stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5c1157d4ec956b3a38d1abb27297c368c91b049a
commit 5c1157d4ec956b3a38d1abb27297c368c91b049a Author: Stefan Schmidt <s.schm...@samsung.com> Date: Fri May 8 09:55:12 2015 +0200 eina_ddebug: Fix build for the case without all requirements for eina_debug In eina_debug.h we only include the eina headsers when all defines are true for backtrace, dlopen, unwind, etc. We still use Eina_Bool here when these cases are not met. I just hit this case and failed the build. --- src/lib/eina/eina_debug.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eina/eina_debug.c b/src/lib/eina/eina_debug.c index 766ec7a..df6af04 100644 --- a/src/lib/eina/eina_debug.c +++ b/src/lib/eina/eina_debug.c @@ -1,4 +1,5 @@ #include "eina_debug.h" +#include "eina_types.h" #ifdef EINA_HAVE_DEBUG --