Update config.h.win32.in Further

...so that its entries will reflect the entries that are checked by the
autotools builds on config.h.in.  Also take into consideration for MinGW
builds and for newer Visual Studio versions, such as the availability for
inttypes.h.  Update the layout of the file cosmetic-wise as well.
This commit is contained in:
Chun-wei Fan 2014-03-20 09:18:57 +08:00
parent 783bc64a02
commit 44d688cdfb

View File

@ -16,6 +16,9 @@
/* The prefix for our gettext translation domains. */ /* The prefix for our gettext translation domains. */
#define GETTEXT_PACKAGE "@GETTEXT_PACKAGE@" #define GETTEXT_PACKAGE "@GETTEXT_PACKAGE@"
/* Define to 1 if you have the `cairo_surface_set_device_scale' function. */
/* #undef HAVE_CAIRO_SURFACE_SET_DEVICE_SCALE */
/* Define to 1 if you have the <CE4100/libgdl.h> header file. */ /* Define to 1 if you have the <CE4100/libgdl.h> header file. */
/* #undef HAVE_CE4100_LIBGDL_H */ /* #undef HAVE_CE4100_LIBGDL_H */
@ -55,6 +58,9 @@
/* Have evdev support for input handling */ /* Have evdev support for input handling */
/* #undef HAVE_EVDEV */ /* #undef HAVE_EVDEV */
/* Whether you have gcov */
/* #undef HAVE_GCOV */
/* Define if the GNU gettext() function is already present or preinstalled. */ /* Define if the GNU gettext() function is already present or preinstalled. */
#define HAVE_GETTEXT 1 #define HAVE_GETTEXT 1
@ -62,7 +68,9 @@
#define HAVE_ICONV 1 #define HAVE_ICONV 1
/* Define to 1 if you have the <inttypes.h> header file. */ /* Define to 1 if you have the <inttypes.h> header file. */
/*#undef HAVE_INTTYPES_H*/ #if !defined (_MSC_VER) || (_MSC_VER >= 1800)
#define HAVE_INTTYPES_H 1
#endif
/* Define to 1 if you have the <libgdl.h> header file. */ /* Define to 1 if you have the <libgdl.h> header file. */
/* #undef HAVE_LIBGDL_H */ /* #undef HAVE_LIBGDL_H */
@ -74,7 +82,7 @@
/* #undef HAVE_PANGO_FT2 */ /* #undef HAVE_PANGO_FT2 */
/* Define to 1 if you have the <stdint.h> header file. */ /* Define to 1 if you have the <stdint.h> header file. */
#if (_MSC_VER >= 1600) #if !defined (_MSC_VER) || (_MSC_VER >= 1600)
#define HAVE_STDINT_H 1 #define HAVE_STDINT_H 1
#endif #endif
@ -82,7 +90,9 @@
#define HAVE_STDLIB_H 1 #define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */ /* Define to 1 if you have the <strings.h> header file. */
/*#undef HAVE_STRINGS_H*/ #ifndef _MSC_VER
#define HAVE_STRINGS_H 1
#endif
/* Define to 1 if you have the <string.h> header file. */ /* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1 #define HAVE_STRING_H 1
@ -97,7 +107,9 @@
/* #undef HAVE_TSLIB */ /* #undef HAVE_TSLIB */
/* Define to 1 if you have the <unistd.h> header file. */ /* Define to 1 if you have the <unistd.h> header file. */
/*#undef HAVE_UNISTD_H*/ #ifndef _MSC_VER
#define HAVE_UNISTD_H 1
#endif
/* Define to 1 if you have the <X11/extensions/XInput2.h> header file. */ /* Define to 1 if you have the <X11/extensions/XInput2.h> header file. */
/* #undef HAVE_X11_EXTENSIONS_XINPUT2_H */ /* #undef HAVE_X11_EXTENSIONS_XINPUT2_H */
@ -117,6 +129,9 @@
/* Define to 1 if XI2 is available */ /* Define to 1 if XI2 is available */
/* #undef HAVE_XINPUT_2 */ /* #undef HAVE_XINPUT_2 */
/* Define to 1 if XInput 2.2 is available */
/* #undef HAVE_XINPUT_2_2 */
/* Define to use XKB extension */ /* Define to use XKB extension */
/* #undef HAVE_XKB */ /* #undef HAVE_XKB */
@ -125,7 +140,10 @@
#define LT_OBJDIR ".libs/" #define LT_OBJDIR ".libs/"
/* Define to 1 if your C compiler doesn't accept -c and -o together. */ /* Define to 1 if your C compiler doesn't accept -c and -o together. */
#define NO_MINUS_C_MINUS_O 1 #undef NO_MINUS_C_MINUS_O */
/* Define to 1 if building for Linux */
/* #undef OS_LINUX */
/* Define to the address where bug reports for this package should be sent. */ /* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "https://bugzilla.gnome.org/enter_bug.cgi?product=clutter" #define PACKAGE_BUGREPORT "https://bugzilla.gnome.org/enter_bug.cgi?product=clutter"