From c93a3606616aff45560ea4e98e78a3697c783f91 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 9 May 2015 22:57:56 +0200 Subject: [PATCH] fix _timezone usage for vc14 --- ext/openssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 1697d80bb9..1ae741136d 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -59,7 +59,7 @@ /* Common */ #include -#ifdef NETWARE +#if defined(NETWARE) || (defined(PHP_WIN32) && defined(_MSC_VER) && _MSC_VER >= 1900) #define timezone _timezone /* timezone is called _timezone in LibC */ #endif -- 2.50.1