summaryrefslogtreecommitdiff
path: root/glibconfig.h.win32.in
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2007-12-09 14:38:26 +0000
committerHans Breuer <hans@src.gnome.org>2007-12-09 14:38:26 +0000
commitb877c83cdcde2f7d26f9395d0b21230941cf190e (patch)
tree54f440109a52e24a5889ad3b510b06b9053b3db0 /glibconfig.h.win32.in
parent1550b7b78f35814edd828edcdfee765c725424a0 (diff)
removed -GD to compile with msvc9 (vs2008) with less complains
2007-12-09 Hans Breuer <hans@breuer.org> * **/makefile.msc glib/makefile.msc.in : removed -GD to compile with msvc9 (vs2008) with less complains * glibconfig.h.win32.in : #define G_HAVE_ISO_VARARGS 1 for msv8 (vs2005) and above * glib/gfileutils.c : s/stricmp/_stricmp/ * msvc_recommended_pragmas.h : work around Microsoft's premature attempt to deprecate the C-Library * tests/makefile.msc.in : added checksum-test svn path=/trunk/; revision=6076
Diffstat (limited to 'glibconfig.h.win32.in')
-rw-r--r--glibconfig.h.win32.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/glibconfig.h.win32.in b/glibconfig.h.win32.in
index 7d6c34526..b7e8b4c7f 100644
--- a/glibconfig.h.win32.in
+++ b/glibconfig.h.win32.in
@@ -134,6 +134,11 @@ typedef gint64 goffset;
#endif
#define G_HAVE_GNUC_VARARGS 1
+#else /* _MSC_VER */
+/* varargs macros available since msvc8 (vs2005) */
+# if _MSC_VER >= 1400
+# define G_HAVE_ISO_VARARGS 1
+# endif
#endif /* not _MSC_VER */
#define G_HAVE_GROWING_STACK 0