Win32: Update Pre-configured Config Headers

Update config.h.win32.in and glibconfig.h.win32.in so that they will be
in-line with the ones that are produced with configure.ac, for use on
Windows builds.

Thanks to Philip Withnall for pointing out the changes needed to update
glibconfig.h.win32.in in bug 727829.
This commit is contained in:
Chun-wei Fan 2015-01-07 09:59:47 +08:00
parent 327d35ed41
commit 1632d5716e
2 changed files with 9 additions and 2 deletions

View File

@ -399,6 +399,9 @@
/* Define to 1 if libselinux is available */
/* #undef HAVE_SELINUX */
/* Define to 1 if you have the `sendmmsg` function */
/* #undef HAVE_SENDMMSG */
/* Define to 1 if you have the <selinux/selinux.h> header file. */
/* #undef HAVE_SELINUX_SELINUX_H */

View File

@ -77,8 +77,9 @@ typedef unsigned __int64 guint64;
typedef signed long long gssize;
typedef unsigned long long gsize;
#define G_GSIZE_MODIFIER "I64"
#define G_GSSIZE_FORMAT "I64d"
#define G_GSSIZE_MODIFIER "I64"
#define G_GSIZE_FORMAT "I64u"
#define G_GSSIZE_FORMAT "I64d"
#define G_MAXSIZE G_MAXUINT64
#define G_MINSSIZE G_MININT64
@ -93,8 +94,9 @@ typedef unsigned long long gsize;
typedef signed int gssize;
typedef unsigned int gsize;
#define G_GSIZE_MODIFIER ""
#define G_GSSIZE_FORMAT "i"
#define G_GSSIZE_MODIFIER ""
#define G_GSIZE_FORMAT "u"
#define G_GSSIZE_FORMAT "i"
#define G_MAXSIZE G_MAXUINT
#define G_MINSSIZE G_MININT
@ -148,9 +150,11 @@ typedef unsigned __int64 guintptr;
#endif
#ifndef G_DISABLE_DEPRECATED
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
#endif
#define GLIB_MAJOR_VERSION @GLIB_MAJOR_VERSION@
#define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@