bnicholes 01/10/09 12:26:43
Modified: time/unix time.c
Log:
Allowed NetWare to take advantage of the system timezone variable
Revision Changes Path
1.54 +1 -1 apr/time/unix/time.c
Index: time.c
===================================================================
RCS file: /home/cvs/apr/time/unix/time.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- time.c 2001/08/31 11:06:53 1.53
+++ time.c 2001/10/09 19:26:43 1.54
@@ -156,7 +156,7 @@
APR_DECLARE(apr_status_t) apr_explode_localtime(apr_exploded_time_t *result, apr_time_t
input)
{
-#if defined(__EMX__)
+#if defined(__EMX__) || defined(NETWARE)
/* EMX gcc (OS/2) has a timezone global we can use */
return apr_explode_time(result, input, -timezone);
#else
|