[FriBidi-commit] fribidi2/lib common.h, 1.17, 1.18 fribidi-common.h, 1.12, 1.13

Behdad Esfahbod behdad at kemper.freedesktop.org
Thu Apr 5 09:13:26 PDT 2007


Update of /cvs/fribidi/fribidi2/lib
In directory kemper:/tmp/cvs-serv3772/lib

Modified Files:
	common.h fribidi-common.h 
Log Message:
Check for (defined(WIN32)) || (defined(_WIN32_WCE)) to detect WinCE too


Index: common.h
===================================================================
RCS file: /cvs/fribidi/fribidi2/lib/common.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- common.h	31 Jan 2006 03:23:12 -0000	1.17
+++ common.h	5 Apr 2007 16:13:24 -0000	1.18
@@ -43,7 +43,7 @@
 # define FRIBIDI_PRIVATESPACE(SYMBOL) FRIBIDI_NAMESPACE(_##SYMBOL##__internal__)
 #endif /* !FRIBIDI_PRIVATESPACE */
 
-#if WIN32+0
+#if (defined(WIN32)) || (defined(_WIN32_WCE))
 # define FRIBIDI_ENTRY __declspec(dllexport)
 #endif /* WIN32 */
 

Index: fribidi-common.h
===================================================================
RCS file: /cvs/fribidi/fribidi2/lib/fribidi-common.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- fribidi-common.h	31 Jan 2006 03:23:13 -0000	1.12
+++ fribidi-common.h	5 Apr 2007 16:13:24 -0000	1.13
@@ -53,7 +53,7 @@
 
 /* FRIBIDI_ENTRY is a macro used to declare library entry points. */
 #ifndef FRIBIDI_ENTRY
-# ifdef WIN32
+# if (defined(WIN32)) || (defined(_WIN32_WCE))
 #  define FRIBIDI_ENTRY __declspec(dllimport)
 # else /* !WIN32 */
 #  define FRIBIDI_ENTRY		/* empty */



More information about the fribidi-commit mailing list