guenter                                  Tue, 03 Nov 2009 21:26:39 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=290191

Log:
added timezone define for NetWare.

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/openssl/openssl.c
    U   php/php-src/trunk/ext/openssl/openssl.c

Modified: php/php-src/branches/PHP_5_3/ext/openssl/openssl.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/openssl/openssl.c  2009-11-03 21:21:34 UTC 
(rev 290190)
+++ php/php-src/branches/PHP_5_3/ext/openssl/openssl.c  2009-11-03 21:26:39 UTC 
(rev 290191)
@@ -51,6 +51,10 @@
 /* Common */
 #include <time.h>

+#ifdef NETWARE
+#define timezone _timezone     /* timezone is called _timezone in LibC */
+#endif
+
 #define DEFAULT_KEY_LENGTH     512
 #define MIN_KEY_LENGTH         384


Modified: php/php-src/trunk/ext/openssl/openssl.c
===================================================================
--- php/php-src/trunk/ext/openssl/openssl.c     2009-11-03 21:21:34 UTC (rev 
290190)
+++ php/php-src/trunk/ext/openssl/openssl.c     2009-11-03 21:26:39 UTC (rev 
290191)
@@ -48,6 +48,10 @@
 #include <openssl/ssl.h>
 #include <openssl/pkcs12.h>

+#ifdef NETWARE
+#define timezone _timezone     /* timezone is called _timezone in LibC */
+#endif
+
 #define DEFAULT_KEY_LENGTH     512
 #define MIN_KEY_LENGTH         384


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to