From 925798f29c677c612a63a08a92ebb5f169e27b02 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Wed, 31 Aug 2011 18:48:37 +0100 Subject: Preliminary cleanup of win32/config*.* prior to updating them fully - Set lseeksize/lseektype to 4/long in new gc64* files (see f7e8b52a89) - Add missing NULL parameter in new gc64* files (see e6a0bbf8b4) - Change new gc64* files to a minimal setup (see d64224560b and 17bdc11416) - Make the order of the __GNUC__ / _MSC_VER logic consistent - Add __GNUC__ magic to vc64 (since new gc64* files have _MSC_VER magic) --- win32/config_H.gc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'win32/config_H.gc') diff --git a/win32/config_H.gc b/win32/config_H.gc index fbf580824e..bd18ffe97b 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -3128,12 +3128,11 @@ * static _inline (older MSVC) * static (c89 compilers) */ -#ifdef _MSC_VER -# define HAS_STATIC_INLINE /**/ -# define PERL_STATIC_INLINE static __inline /**/ -#else /* gcc presumably */ -# define HAS_STATIC_INLINE /**/ +#define HAS_STATIC_INLINE /**/ +#ifndef _MSC_VER # define PERL_STATIC_INLINE static __inline__ /**/ +#else +# define PERL_STATIC_INLINE static __inline /**/ #endif /* USE_STDIO_PTR: -- cgit v1.2.1