From 79730e2a9bb1ce7837feddd16208ff2d9e490118 Mon Sep 17 00:00:00 2001 From: Andrew Gierth Date: Sat, 16 Feb 2019 15:21:10 +0000 Subject: [PATCH] Fix previous MinGW fix. Definitions required for MinGW need to be outside #if _MSC_VER. Oops. --- src/include/port/win32_port.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/port/win32_port.h b/src/include/port/win32_port.h index 1438082723f..f4841fb3975 100644 --- a/src/include/port/win32_port.h +++ b/src/include/port/win32_port.h @@ -510,6 +510,11 @@ typedef unsigned short mode_t; #define isnan(x) _isnan(x) #endif +/* Pulled from Makefile.port in MinGW */ +#define DLSUFFIX ".dll" + +#endif /* _MSC_VER */ + #if (defined(_MSC_VER) && (_MSC_VER < 1900)) || \ defined(__MINGW32__) || defined(__MINGW64__) /* @@ -529,9 +534,4 @@ typedef unsigned short mode_t; #define HAVE_BUGGY_STRTOF 1 #endif -/* Pulled from Makefile.port in MinGW */ -#define DLSUFFIX ".dll" - -#endif /* _MSC_VER */ - #endif /* PG_WIN32_PORT_H */ -- 2.39.5