about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-04-12 15:28:49 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-04-12 15:28:49 +0000
commitfc615adad738c1a7de77c90446fef49afac31302 (patch)
tree306ee606c710c3bc1415c1bdb00514f96db8b261 /Src
parentaeaf47aeebccd71f533bdd926cb054e0bd8fb0aa (diff)
downloadzsh-fc615adad738c1a7de77c90446fef49afac31302.tar.gz
zsh-fc615adad738c1a7de77c90446fef49afac31302.tar.xz
zsh-fc615adad738c1a7de77c90446fef49afac31302.zip
23270: fix strptime() on Solaris
Diffstat (limited to 'Src')
-rw-r--r--Src/system.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Src/system.h b/Src/system.h
index 2f3dcd32a..fafa5dd01 100644
--- a/Src/system.h
+++ b/Src/system.h
@@ -52,6 +52,18 @@
 # undef HAVE_SYS_UTSNAME_H
 #endif
 
+/*
+ * Solaris by default zeroes all elements of the tm structure in
+ * strptime().  Unfortunately that gives us no way of telling whether
+ * the tm_isdst element has been set from the input pattern.  If it
+ * hasn't we want it to be -1 (undetermined) on input to mktime().  So
+ * we stop strptime() zeroing the struct tm and instead set all the
+ * elements ourselves.
+ *
+ * This is likely to be harmless everywhere else.
+ */
+#define _STRPTIME_DONTZERO
+
 #ifdef PROTOTYPES
 # define _(Args) Args
 #else