[mapserver-commits] r7195 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Thu Dec 20 10:48:03 EST 2007
Author: tomkralidis
Date: 2007-12-20 10:48:03 -0500 (Thu, 20 Dec 2007)
New Revision: 7195
Modified:
trunk/mapserver/mapgml.c
trunk/mapserver/mapgml.h
Log:
changed ifdefs to the more generic USE_LIBXML2 instead
of looking for USE_SOS_SVR
Modified: trunk/mapserver/mapgml.c
===================================================================
--- trunk/mapserver/mapgml.c 2007-12-20 14:51:06 UTC (rev 7194)
+++ trunk/mapserver/mapgml.c 2007-12-20 15:48:03 UTC (rev 7195)
@@ -1541,7 +1541,7 @@
}
-#ifdef USE_SOS_SVR
+#ifdef USE_LIBXML2
/**
* msGML3BoundedBy()
@@ -1690,4 +1690,4 @@
return psNode;
}
-#endif /* USE_SOS_SVR */
+#endif /* USE_LIBXML2 */
Modified: trunk/mapserver/mapgml.h
===================================================================
--- trunk/mapserver/mapgml.h 2007-12-20 14:51:06 UTC (rev 7194)
+++ trunk/mapserver/mapgml.h 2007-12-20 15:48:03 UTC (rev 7195)
@@ -1,7 +1,7 @@
#ifndef MAPGML_H
#define MAPGML_H
-#ifdef USE_SOS_SVR
+#ifdef USE_LIBXML2
#include<libxml/parser.h>
#include<libxml/tree.h>
@@ -13,6 +13,6 @@
xmlNodePtr msGML3TimeInstant(xmlNsPtr psNs, char *timeInstant);
xmlNodePtr msGML3Point(xmlNsPtr psNs, const char *psSrsName, const char *id, double x, double y);
-#endif /* USE_SOS_SVR */
+#endif /* USE_LIBXML2 */
#endif
More information about the mapserver-commits
mailing list