This project is closed and read-only.
Actions
Bug #2999
closed_WIN32 already has tzname and daylight defined.
Bug #2999:
_WIN32 already has tzname and daylight defined.
Description
=begin
I had to change line 129 from:
#if !defined(OS2) && defined(HAVE_TZNAME)
to:
#if !defined(OS2) && defined(HAVE_TZNAME) && !defined _WIN32
This is under Windows with Visual Studio 8 - 2005.
daylight and tzname are both already defined and the new extern's are not compatible with the previous definitions.
=end
Actions