diff options
author | joe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845> | 2004-11-18 09:50:27 +0000 |
---|---|---|
committer | joe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845> | 2004-11-18 09:50:27 +0000 |
commit | 89acdde9729a82da59f21c96ce99591167a1395a (patch) | |
tree | 2233a1897eea154b91ae9a8a8b3523719a17a581 /src | |
parent | 49edc175dce4c276f478378bfa6c31049fb1f122 (diff) | |
download | neon-89acdde9729a82da59f21c96ce99591167a1395a.tar.gz |
Win32 build fix from Vladimir Berezniker:
* src/ne_dates.c: Add windows.h to the list of include files to provide
definition of TIME_ZONE_INFORMATION on WIN32 platforms.
git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@355 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src')
-rw-r--r-- | src/ne_dates.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ne_dates.c b/src/ne_dates.c index 1e4921a..62480b6 100644 --- a/src/ne_dates.c +++ b/src/ne_dates.c @@ -34,6 +34,10 @@ #include <string.h> #endif +#ifdef WIN32 +#include <windows.h> /* for TIME_ZONE_INFORMATION */ +#endif + #include "ne_alloc.h" #include "ne_dates.h" #include "ne_string.h" |