Changes between Version 7 and Version 8 of DevWikiWinMingWSys_20_MSVC

Show
Ignore:
Timestamp:
02/29/12 11:19:15 (15 months ago)
Author:
robe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingWSys_20_MSVC

    v7 v8  
    7777{{{ 
    7878cd /c/build/sources 
    79 wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2 
     79wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2 (if this does not exist use http://geos.osgeo.org/snapshots/geos-20120228.tar.bz2 ) 
    8080tar xvfj geos-3.3.3.tar.bz2 
    8181mkdir geos-3.3.3-build 
     
    8484}}} 
    8585 
    86 Edit the CMakeLists.txt file and the following line to stop floating point precision issues (which will lead to regression failures in PostGIS later on if you don't make the change) 
     86Edit the CMakeLists.txt file and add the following line to stop floating point precision issues (which will lead to regression failures in PostGIS later on if you don't make the change) 
    8787{{{ 
    8888set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /fp:strict /fp:except-") 
    8989}}} 
    90 right before this line 
     90ADD it right before this line 
    9191{{{ 
    9292add_definitions(-D_SCL_SECURE_NO_WARNINGS)