diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-02-10 20:48:03 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-02-10 20:48:03 (GMT) |
commit | 438024258078d46e76c55cbf35d387725034be19 (patch) | |
tree | 6bdbf92db766140af306888681351d378a992992 /Misc | |
parent | 64d904b715b1cf6a29bfa72a72aeb6a3e72eac5a (diff) | |
download | cpython-438024258078d46e76c55cbf35d387725034be19.zip cpython-438024258078d46e76c55cbf35d387725034be19.tar.gz cpython-438024258078d46e76c55cbf35d387725034be19.tar.bz2 |
Modified test for tzset to not rely on tm->tm_zone's existence. Also added
sanity checks on tzname if HAVE_TZNAME defined.
Closes bug #1096244. Thanks Gregory Bond.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -66,6 +66,7 @@ Finn Bock Paul Boddie Matthew Boedicker David Bolen +Gregory Bond Jurjen Bos Peter Bosch Eric Bouck @@ -161,6 +161,11 @@ Build ``-L/opt/local/lib`` for DarwinPorts) and CPPFLAGS (``-I/sw/include`` for Fink, ``-I/opt/local/include`` for DarwinPorts). +- Test in configure.in that checks for tzset no longer dependent on tm->tm_zone + to exist in the struct (not required by either ISO C nor the UNIX 2 spec). + Tests for sanity in tzname when HAVE_TZNAME defined were also defined. + Closes bug #1096244. Thanks Gregory Bond. + C API ----- |