From 04448f215ba9e1172b8c460a9458d345d48183e1 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Tue, 3 Nov 2009 21:26:39 +0000 Subject: [PATCH] added timezone define for NetWare. --- ext/openssl/openssl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 25462608e0..e0f7cdb032 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -51,6 +51,10 @@ /* Common */ #include +#ifdef NETWARE +#define timezone _timezone /* timezone is called _timezone in LibC */ +#endif + #define DEFAULT_KEY_LENGTH 512 #define MIN_KEY_LENGTH 384 -- 2.40.0