eina eina_log: fix compilation on windows 11/53111/1
authorChunEon Park <chuneon.park@samsung.com>
Sat, 22 Aug 2015 09:50:36 +0000 (18:50 +0900)
committerJaehwan Kim <jae.hwan.kim@samsung.com>
Wed, 2 Dec 2015 02:10:50 +0000 (11:10 +0900)
window hosting doesn't use syslog.

Change-Id: I4016b2ceeba974819f2988f80a0c3ca819ef3698

src/lib/eina/eina_log.c

index 9cce55b..174aee0 100644 (file)
 #include <errno.h>
 
 /*--- TIZEN_ONLY : begin ---*/
+#ifdef HAVE_DLOG
 #include <syslog.h>
 
-#ifdef HAVE_DLOG
 # include <dlog.h>
 #  ifdef LOG_TAG
 #   undef LOG_TAG
 #  endif
 # define LOG_TAG "EFL"
 # define _SECURE_LOG
+#else
+#define LOG_CRIT 0
+#define LOG_ERR 1
+#define LOG_WARNING 2
+#define LOG_INFO 3
+#define LOG_DEBUG 4
+static void
+syslog(int priority, const char *fmt, ...)
+{
+   printf("no use syslog\n");
+}
 #endif
 /*--- TIZEN_ONLY : end ---*/