[mapserver-commits] r10888 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Fri Jan 21 15:57:41 EST 2011


Author: assefa
Date: 2011-01-21 12:57:41 -0800 (Fri, 21 Jan 2011)
New Revision: 10888

Modified:
   trunk/mapserver/maputil.c
Log:
Fix windows build (#3354)

Modified: trunk/mapserver/maputil.c
===================================================================
--- trunk/mapserver/maputil.c	2011-01-21 20:54:03 UTC (rev 10887)
+++ trunk/mapserver/maputil.c	2011-01-21 20:57:41 UTC (rev 10888)
@@ -36,19 +36,15 @@
 
 #include "mapserver.h"
 #include "maptime.h"
-#include "mapparser.h"
 #include "mapthread.h"
-#include "mapfile.h"
 #include "mapcopy.h"
 
-#ifdef _WIN32
+
+#if defined(_WIN32) && !defined(__CYGWIN__)
 # include <windows.h>
 # include <tchar.h>
 # include <fcntl.h>
 # include <io.h>
-#endif
-
-#if defined(_WIN32) && !defined(__CYGWIN__)
 #include <process.h>
 #endif
 



More information about the mapserver-commits mailing list