From 5c1157d4ec956b3a38d1abb27297c368c91b049a Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 8 May 2015 09:55:12 +0200 Subject: [PATCH] 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 766ec7ac3c..df6af047a4 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