elm_cnp_helper.c is for X11 stuff only
authorVincent Torri <vincent.torri@gmail.com>
Fri, 25 Jun 2010 11:56:02 +0000 (11:56 +0000)
committerVincent Torri <vincent.torri@gmail.com>
Fri, 25 Jun 2010 11:56:02 +0000 (11:56 +0000)
SVN revision: 49864

src/lib/elm_cnp_helper.c

index b8bc27689f0feffa4bbb5ea36b9e2279623ab9f2..96ee17a0bbea43f0eab3c403a763441dc8f7c892 100644 (file)
@@ -1,23 +1,18 @@
-
 #include <stdbool.h>
 
 #include <stdio.h> // debug
 
-#include <X11/X.h>
-#include <X11/Xatom.h>
-
 #include <Elementary.h>
-#include <Ecore_X.h>
 
 #include "elm_priv.h"
 
+#ifdef HAVE_ELEMENTARY_X
+
+# include <X11/X.h>
+# include <X11/Xatom.h>
 
-/* this should be #ifdef 12year old compiler */
-#ifdef ELM_WIN32
-#  define ARRAYINIT(foo)
-#else
-#  define ARRAYINIT(foo)  [foo]=
-#endif
+
+# define ARRAYINIT(foo)  [foo]=
 
 
 enum {
@@ -498,3 +493,5 @@ mark_up(const char *start, int *lenp){
 }
 
 /* vim: set ts=8 sw=3 sts=8 noexpandtab cino=>5n-3f0^-2{2 : */
+
+#endif