config.h.win32.in: Clean up a bit

Remove the HAVE_*INLINE items from here as well, since 'inline' is
unconditionally defined in gmacros.h.
This commit is contained in:
Chun-wei Fan 2015-12-02 21:04:43 +08:00
parent a81568273c
commit 80dcec234c

View File

@ -55,23 +55,6 @@
/* Define to the GLIB minor version */
#define GLIB_MINOR_VERSION @GLIB_MINOR_VERSION@
/* Have inline keyword */
#ifndef _MSC_VER
#define G_HAVE_INLINE 1
#else /* _MSC_VER */
/* #undef G_HAVE_INLINE */
#endif /* _MSC_VER */
/* Have __inline keyword */
#define G_HAVE___INLINE 1
/* Have __inline__ keyword */
#if !defined(_MSC_VER) && !defined(__DMC__)
#define G_HAVE___INLINE__ 1
#else /* _MSC_VER or __DMC__ */
/* #undef G_HAVE___INLINE__ */
#endif /* _MSC_VER or __DMC__ */
/* A 'va_copy' style function */
#ifndef _MSC_VER
#define G_VA_COPY va_copy