Update config.h.win32.in
authorChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 21 Aug 2013 03:04:37 +0000 (11:04 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 21 Aug 2013 03:04:37 +0000 (11:04 +0800)
Make entries more in sync with the items checked with autotools, and
provide a MinGW declaration for _GLIB_EXTERN, taken from configure.ac.

config.h.win32.in

index a03e447..0348809 100644 (file)
 #endif
 
 /* using the system-supplied PCRE library */
-/* This is defined in the *_PCRE configurations */
+/* This is defined in the *_PCRE MSVC project configs */
 /* #undef USE_SYSTEM_PCRE */
 
 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
 /* #undef _FILE_OFFSET_BITS */
 
 /* defines how to decorate public symbols while building */
-#define _GLIB_EXTERN __declspec (dllexport)
-
-/* Make all glibc extensions visible */
-/* #undef _GNU_SOURCE */
+#ifdef _MSC_VER
+#define _GLIB_EXTERN __declspec (dllexport) extern
+#else
+#define _GLIB_EXTERN __attribute__((visibility("default"))) __declspec (dllexport) extern
+#endif
 
 /* Define for large files, on AIX-style hosts. */
 /* #undef _LARGE_FILES */