[glib] Update config.h.win32.in for VS 2010
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Update config.h.win32.in for VS 2010
- Date: Thu, 10 Mar 2011 04:28:38 +0000 (UTC)
commit b2ebf0526ddc6ae46e4bcd5e0a5ab55376061013
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Thu Mar 10 12:40:57 2011 +0800
Update config.h.win32.in for VS 2010
VS2010 ships with stdint.h by default, so update config.h.win32.in
to reflect that
config.h.win32.in | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
---
diff --git a/config.h.win32.in b/config.h.win32.in
index a94aa0b..6546500 100644
--- a/config.h.win32.in
+++ b/config.h.win32.in
@@ -269,6 +269,9 @@
#ifndef _MSC_VER
#define HAVE_INTMAX_T 1
#else /* _MSC_VER */
+#if (_MSC_VER >= 1600)
+#define HAVE_INTMAX_T 1
+#endif
/* #undef HAVE_INTMAX_T */
#endif /* _MSC_VER */
@@ -446,6 +449,9 @@
#ifndef _MSC_VER
#define HAVE_STDINT_H 1
#else /* _MSC_VER */
+#if (_MSC_VER >= 1600)
+#define HAVE_STDINT_H 1
+#endif
/* #undef HAVE_STDINT_H */
#endif /* _MSC_VER */
@@ -454,6 +460,9 @@
#ifndef _MSC_VER
#define HAVE_STDINT_H_WITH_UINTMAX 1
#else /* _MSC_VER */
+#if (_MSC_VER >= 1600)
+#define HAVE_STDINT_H_WITH_UINTMAX 1
+#endif
/* #undef HAVE_STDINT_H_WITH_UINTMAX */
#endif /* _MSC_VER */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]