summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2015-05-08 09:55:12 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2015-05-08 10:01:42 +0200
commit5c1157d4ec956b3a38d1abb27297c368c91b049a (patch)
tree84c77b5a1f6765731c7db4cc5960f845d4859338
parentaf8c4eabca88f6471e1ef72c2d8f44f641f6d252 (diff)
downloadefl-5c1157d4ec956b3a38d1abb27297c368c91b049a.tar.gz
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.
-rw-r--r--src/lib/eina/eina_debug.c1
1 files changed, 1 insertions, 0 deletions
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