[mapserver-commits] r9999 - branches/branch-5-6/mapserver

svn at osgeo.org svn at osgeo.org
Wed Mar 24 11:26:33 EDT 2010


Author: warmerdam
Date: 2010-03-24 11:26:31 -0400 (Wed, 24 Mar 2010)
New Revision: 9999

Modified:
   branches/branch-5-6/mapserver/HISTORY.TXT
   branches/branch-5-6/mapserver/mapstring.c
Log:
fixed errno related build error (#3401)

Modified: branches/branch-5-6/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-6/mapserver/HISTORY.TXT	2010-03-24 15:08:16 UTC (rev 9998)
+++ branches/branch-5-6/mapserver/HISTORY.TXT	2010-03-24 15:26:31 UTC (rev 9999)
@@ -12,6 +12,11 @@
 For a complete change history, please see the Subversion log comments.
 
 
+Version 5.6.4 (????-??-??):
+---------------------------
+
+- Fixed mapstring.c build problem related to errno (#3401).
+
 Version 5.6.3 (2010-03-22):
 ---------------------------
 

Modified: branches/branch-5-6/mapserver/mapstring.c
===================================================================
--- branches/branch-5-6/mapserver/mapstring.c	2010-03-24 15:08:16 UTC (rev 9998)
+++ branches/branch-5-6/mapserver/mapstring.c	2010-03-24 15:26:31 UTC (rev 9999)
@@ -37,6 +37,7 @@
 
 #include <ctype.h>
 #include <string.h>
+#include <errno.h>
 
 /*
  * Find the first occurrence of find in s, ignore case.



More information about the mapserver-commits mailing list