diff options
author | Guilherme Lepsch <lepsch@expertisesolutions.com.br> | 2015-02-20 11:26:24 +0100 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-02-20 11:28:03 +0100 |
commit | 7b12e6cc86825c3fe9242c7b25b4eb74550a901a (patch) | |
tree | dde7b63104c7c8052a83b285657c3b77a8209a9e /src/lib/ecore_cocoa | |
parent | b115fe108d8c1c216e20fe8639af3b7f0336632f (diff) |
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 <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/ecore_cocoa')
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_cocoa/ecore_cocoa.m b/src/lib/ecore_cocoa/ecore_cocoa.m index 3529df6963..8958b00cd5 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa.m +++ b/src/lib/ecore_cocoa/ecore_cocoa.m | |||
@@ -9,7 +9,7 @@ | |||
9 | #include <Eina.h> | 9 | #include <Eina.h> |
10 | 10 | ||
11 | #include <Ecore.h> | 11 | #include <Ecore.h> |
12 | #include <ecore_private.h> | 12 | #include <ecore_cocoa_private.h> |
13 | #include <Ecore_Input.h> | 13 | #include <Ecore_Input.h> |
14 | 14 | ||
15 | #include "Ecore_Cocoa.h" | 15 | #include "Ecore_Cocoa.h" |
@@ -25,7 +25,7 @@ static int _ecore_cocoa_init_count = 0; | |||
25 | 25 | ||
26 | static int old_flags; | 26 | static int old_flags; |
27 | 27 | ||
28 | static int _ecore_cocoa_log_domain = -1; | 28 | int _ecore_cocoa_log_domain = -1; |
29 | 29 | ||
30 | EAPI int | 30 | EAPI int |
31 | ecore_cocoa_init(void) | 31 | ecore_cocoa_init(void) |