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>
This commit is contained in:
Guilherme Lepsch 2015-02-20 11:26:24 +01:00 committed by Cedric BAIL
parent b115fe108d
commit 7b12e6cc86
1 changed files with 2 additions and 2 deletions

View File

@ -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)