[geos-commits] r3061 - in trunk: include/geos/operation/buffer src/geom src/io

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Jun 23 05:23:29 EDT 2010


Author: strk
Date: 2010-06-23 09:23:29 +0000 (Wed, 23 Jun 2010)
New Revision: 3061

Modified:
   trunk/include/geos/operation/buffer/OffsetCurveVertexList.h
   trunk/src/geom/CoordinateArraySequence.cpp
   trunk/src/geom/GeometryFactory.cpp
   trunk/src/io/WKTWriter.cpp
Log:
Fix for 4.4.3 builds, patch by Yabo (see ticket #351)


Modified: trunk/include/geos/operation/buffer/OffsetCurveVertexList.h
===================================================================
--- trunk/include/geos/operation/buffer/OffsetCurveVertexList.h	2010-06-21 14:31:41 UTC (rev 3060)
+++ trunk/include/geos/operation/buffer/OffsetCurveVertexList.h	2010-06-23 09:23:29 UTC (rev 3061)
@@ -27,6 +27,7 @@
 
 #include <vector>
 #include <memory>
+#include <cassert>
 
 // Forward declarations
 namespace geos {

Modified: trunk/src/geom/CoordinateArraySequence.cpp
===================================================================
--- trunk/src/geom/CoordinateArraySequence.cpp	2010-06-21 14:31:41 UTC (rev 3060)
+++ trunk/src/geom/CoordinateArraySequence.cpp	2010-06-23 09:23:29 UTC (rev 3061)
@@ -24,6 +24,7 @@
 #include <cassert>
 #include <algorithm>
 #include <vector>
+#include <cmath>
 
 using namespace std;
 

Modified: trunk/src/geom/GeometryFactory.cpp
===================================================================
--- trunk/src/geom/GeometryFactory.cpp	2010-06-21 14:31:41 UTC (rev 3060)
+++ trunk/src/geom/GeometryFactory.cpp	2010-06-23 09:23:29 UTC (rev 3061)
@@ -37,6 +37,7 @@
 #include <cassert>
 #include <vector>
 #include <typeinfo>
+#include <cmath>
 
 #ifndef GEOS_DEBUG
 #define GEOS_DEBUG 0

Modified: trunk/src/io/WKTWriter.cpp
===================================================================
--- trunk/src/io/WKTWriter.cpp	2010-06-21 14:31:41 UTC (rev 3060)
+++ trunk/src/io/WKTWriter.cpp	2010-06-23 09:23:29 UTC (rev 3061)
@@ -37,6 +37,7 @@
 #include <string>
 #include <sstream>
 #include <cassert>
+#include <cmath>
 
 using namespace std;
 using namespace geos::geom;



More information about the geos-commits mailing list