]> granicus.if.org Git - postgresql/commitdiff
On all Windows platforms, not just Cygwin, use _timezone and _tzname.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 1 May 2018 16:02:41 +0000 (12:02 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Wed, 12 Sep 2018 16:25:57 +0000 (12:25 -0400)
Back-patch commit 868628e4f into the 9.5 branch, so that we can support
building that branch with Visual Studio 2015.  This patch itself could
go further back, but other VS2015 patches such as 0fb54de9a and c8e81afc6
were only back-patched to 9.5, so there seems little point in handling
this one differently.

Discussion: https://postgr.es/m/CAD=LzWFg+Z-KUS3Wm8-1J2vOuYErJXbjuE6b7quzswQEBXJWMQ@mail.gmail.com

Now that we have backported VS2015 support to 9.4 and 9.3, backport this also.

src/include/port.h

index cdcc19a32c5ac57b534da5dd24e5df4f39b4bff9..f78e68f0755b38e066102bee302fea004296d44d 100644 (file)
@@ -255,12 +255,12 @@ extern int        pgkill(int pid, int sig);
 extern int     pclose_check(FILE *stream);
 
 /* Global variable holding time zone information. */
-#ifndef __CYGWIN__
-#define TIMEZONE_GLOBAL timezone
-#define TZNAME_GLOBAL tzname
-#else
+#if defined(WIN32) || defined(__CYGWIN__)
 #define TIMEZONE_GLOBAL _timezone
 #define TZNAME_GLOBAL _tzname
+#else
+#define TIMEZONE_GLOBAL timezone
+#define TZNAME_GLOBAL tzname
 #endif
 
 #if defined(WIN32) || defined(__CYGWIN__)