aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/port/win32_port.h10
1 files 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 */