[geos-commits] r2249 - trunk/source

svn_geos at osgeo.org svn_geos at osgeo.org
Mon Jan 19 15:41:11 EST 2009


Author: hobu
Date: 2009-01-19 15:41:10 -0500 (Mon, 19 Jan 2009)
New Revision: 2249

Modified:
   trunk/source/Makefile.vc
Log:
fixes to allow building in msvc 2003

Modified: trunk/source/Makefile.vc
===================================================================
--- trunk/source/Makefile.vc	2009-01-19 20:00:56 UTC (rev 2248)
+++ trunk/source/Makefile.vc	2009-01-19 20:41:10 UTC (rev 2249)
@@ -72,7 +72,6 @@
 	algorithm\PointLocator.obj \
 	algorithm\RayCrossingCounter.obj \
 	algorithm\RobustDeterminant.obj \
-	algorithm\RobustLineIntersector \
 	algorithm\SimplePointInRing.obj \
 	algorithm\SIRtreePointInRing.obj \
 	algorithm\locate\IndexedPointInAreaLocator.obj \
@@ -293,6 +292,7 @@
 	util\math.obj \
 	util\Profiler.obj \
 	..\capi\geos_c.obj \
+	..\capi\geos_ts_c.obj \
 	inlines.obj
 
 TEST_EXE =	TestSweepLineSpeed.exe
@@ -307,8 +307,8 @@
 	link /dll /debug $(OBJ) /out:$(DLLNAME) /implib:$(SLIBNAME)
 	if exist $(DLLNAME).manifest mt -manifest $(DLLNAME).manifest -outputresource:$(DLLNAME);2
 
-$(CDLLNAME): ..\capi\geos_c.obj $(DLLNAME)
-	link /dll /debug ..\capi\geos_c.obj $(LIBNAME) /out:$(CDLLNAME) /implib:$(CLIBNAME)
+$(CDLLNAME): ..\capi\geos_c.obj ..\capi\geos_ts_c.obj $(DLLNAME)
+	link /dll /debug ..\capi\geos_c.obj ..\capi\geos_ts_c.obj $(LIBNAME) /out:$(CDLLNAME) /implib:$(CLIBNAME)
 	if exist $(CDLLNAME).manifest mt -manifest $(CDLLNAME).manifest -outputresource:$(CDLLNAME);2
   
 headers/geos/platform.h: headers/geos/platform.h.vc



More information about the geos-commits mailing list