cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7b12e6cc86825c3fe9242c7b25b4eb74550a901a
commit 7b12e6cc86825c3fe9242c7b25b4eb74550a901a Author: Guilherme Lepsch <[email protected]> Date: Fri Feb 20 11:26:24 2015 +0100 ecore_cocoa: fix MacOS X build with clang 3.6 Summary: * Fix extern declaration of _ecore_cocoa_log_domain variable defined as private with static; * Fix including a private header from another module (ecore). Reviewers: naguirre Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2000 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/ecore_cocoa/ecore_cocoa.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_cocoa/ecore_cocoa.m b/src/lib/ecore_cocoa/ecore_cocoa.m index 3529df6..8958b00 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa.m +++ b/src/lib/ecore_cocoa/ecore_cocoa.m @@ -9,7 +9,7 @@ #include <Eina.h> #include <Ecore.h> -#include <ecore_private.h> +#include <ecore_cocoa_private.h> #include <Ecore_Input.h> #include "Ecore_Cocoa.h" @@ -25,7 +25,7 @@ static int _ecore_cocoa_init_count = 0; static int old_flags; -static int _ecore_cocoa_log_domain = -1; +int _ecore_cocoa_log_domain = -1; EAPI int ecore_cocoa_init(void) --
