From 66e6f8ea913723ee89661029383384f69e0c8685 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Tue, 18 Mar 2014 20:47:48 -0400 Subject: [PATCH] normalize __WIN32__ to _WIN32, which is defined by all Windows compilers --- amd64/bsd_asm.h | 2 +- amd64/bsd_ieeefp.h | 2 +- i387/bsd_asm.h | 4 ++-- i387/fenv.c | 2 +- include/cdefs-compat.h | 10 +++++----- include/fpmath.h | 2 +- include/types-compat.h | 6 +++--- src/s_cbrtl.c | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/amd64/bsd_asm.h b/amd64/bsd_asm.h index 59c2b7c..ea4580c 100644 --- a/amd64/bsd_asm.h +++ b/amd64/bsd_asm.h @@ -67,7 +67,7 @@ .globl CNAME(x); .type CNAME(x),@function; CNAME(x): #define END(x) .size x, . - x -#elif defined(__WIN32__) +#elif defined(_WIN32) #define _ENTRY(x) _START_ENTRY; \ .globl CNAME(x); .section .drectve; .ascii " -export:" #x; \ .section .text; .def CNAME(x); .scl 2; .type 32; .endef; CNAME(x): diff --git a/amd64/bsd_ieeefp.h b/amd64/bsd_ieeefp.h index 3eebb53..edb0d9c 100644 --- a/amd64/bsd_ieeefp.h +++ b/amd64/bsd_ieeefp.h @@ -117,7 +117,7 @@ typedef enum { #define SSE_RND_OFF 13 /* rounding control offset */ #define SSE_FZ_OFF 15 /* flush to zero offset */ -#if (defined(__GNUCLIKE_ASM) && defined(__CC_SUPPORTS___INLINE__)) || defined(__WIN32__) \ +#if (defined(__GNUCLIKE_ASM) && defined(__CC_SUPPORTS___INLINE__)) || defined(_WIN32) \ && !defined(__cplusplus) #define __fldenv(addr) __asm __volatile("fldenv %0" : : "m" (*(addr))) diff --git a/i387/bsd_asm.h b/i387/bsd_asm.h index cf17ea5..2874b50 100644 --- a/i387/bsd_asm.h +++ b/i387/bsd_asm.h @@ -39,7 +39,7 @@ #if defined(__APPLE__) #include "osx_asm.h" #define CNAME(x) EXT(x) -#elif defined(__FreeBSD__) || defined(__linux__) || defined(__WIN32__) +#elif defined(__FreeBSD__) || defined(__linux__) || defined(_WIN32) #include "bsd_cdefs.h" #ifdef PIC @@ -78,7 +78,7 @@ #define _ENTRY(x) _START_ENTRY; \ .globl CNAME(x); .type CNAME(x),@function; CNAME(x): #define END(x) .size x, . - x -#elif defined(__WIN32__) +#elif defined(_WIN32) #define CNAME(csym) _##csym #define HIDENAME(asmsym) .asmsym #define _ENTRY(x) _START_ENTRY; \ diff --git a/i387/fenv.c b/i387/fenv.c index 950d53c..420a7a8 100644 --- a/i387/fenv.c +++ b/i387/fenv.c @@ -29,7 +29,7 @@ #include #include #include -#if defined(__WIN32__) || defined(__linux__) +#if defined(_WIN32) || defined(__linux__) #include #else #include diff --git a/include/cdefs-compat.h b/include/cdefs-compat.h index 25ac406..acb6b23 100644 --- a/include/cdefs-compat.h +++ b/include/cdefs-compat.h @@ -1,13 +1,13 @@ #ifndef _CDEFS_COMPAT_H_ #define _CDEFS_COMPAT_H_ -#if (defined(_WIN32) || defined (_MSC_VER)) && !defined(__WIN32__) - #define __WIN32__ +#if defined(_MSC_VER) && !defined(_WIN32) + #define _WIN32 #endif -#ifndef __WIN32__ +#ifndef _WIN32 #include "sys/cdefs.h" -#else /* __WIN32__ */ +#else /* _WIN32 */ #if defined(__cplusplus) #define __BEGIN_DECLS extern "C" { @@ -19,7 +19,7 @@ #define _SYS_CDEFS_H_ -#endif /* __WIN32__ */ +#endif /* _WIN32 */ diff --git a/include/fpmath.h b/include/fpmath.h index 7c4b02c..3b06b7e 100644 --- a/include/fpmath.h +++ b/include/fpmath.h @@ -59,7 +59,7 @@ #include #endif -#ifdef __WIN32__ +#ifdef _WIN32 #define _LITTLE_ENDIAN 1234 #define _BIG_ENDIAN 4321 #define _PDP_ENDIAN 3412 diff --git a/include/types-compat.h b/include/types-compat.h index f8d932e..4db07d3 100644 --- a/include/types-compat.h +++ b/include/types-compat.h @@ -1,8 +1,8 @@ #ifndef _TYPES_COMPAT_H_ #define _TYPES_COMPAT_H_ -#if (defined(_WIN32) || defined (_MSC_VER)) && !defined(__WIN32__) - #define __WIN32__ +#if defined(_MSC_VER) && !defined(_WIN32) + #define _WIN32 #endif #include @@ -14,7 +14,7 @@ #define __pure2 #endif -#ifdef __WIN32__ +#ifdef _WIN32 /* Not sure what to do about __pure2 on windows */ #define __pure2 typedef uint8_t u_int8_t; diff --git a/src/s_cbrtl.c b/src/s_cbrtl.c index 08bfacc..d43d0af 100644 --- a/src/s_cbrtl.c +++ b/src/s_cbrtl.c @@ -24,7 +24,7 @@ #include "fpmath.h" #include "openlibm.h" #include "math_private.h" -#if defined(__WIN32__) && defined(__i386__) +#if defined(_WIN32) && defined(__i386__) #include "i387/bsd_ieeefp.h" #endif