Changes between Version 22 and Version 23 of DevWikiWinMingW64_21


Ignore:
Timestamp:
May 2, 2013, 10:34:41 PM (11 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64_21

    v22 v23  
    7272Download latest GEOS source from http://trac.osgeo.org/geos/
    7373You can also use the trunk svn version https://svn.osgeo.org/geos/trunk which is what we use.
    74 NOTE: To take advantage of new functions like [http://www.postgis.org/documentation/manual-svn/ST_DelaunayTriangles.html ST_DelaunayTriangles], you need GEOS 3.4dev which is trunk
     74NOTE: To take advantage of new functions like [http://www.postgis.org/documentation/manual-svn/ST_DelaunayTriangles.html ST_DelaunayTriangles], you need GEOS 3.4dev which is trunk.
     75
     76We've never used the tar balls for GEOS we always build from svn
     77and extract into the geos/branches/whateverversion
    7578If you are using svn version, make sure to run:
    7679
    7780{{{
    7881sh autogen.sh
     82cd ${PROJECTS}/geos/branches/3.4
     83export GEOS_VER=3.4.0dev
     84
     85sh autogen.sh
     86./configure --build=x86_64-w64-mingw32 --prefix=${PROJECTS}/geos/rel-${GEOS_VER}w${OS_BUILD} | tee /c/geos_configure_3.4w${OS_BUILD}.log
     87make
     88make install
     89make check | tee /c/geos_check_3.4_w${OS_BUILD}.log
     90strip ${PROJECTS}/geos/rel-${GEOS_VER}w${OS_BUILD}/bin/*.dll
    7991}}}
    8092