Changes between Version 1 and Version 2 of UsersWikiPostGIS20Ubuntu1204


Ignore:
Timestamp:
May 5, 2012, 8:14:31 PM (12 years ago)
Author:
jeffmeyer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS20Ubuntu1204

    v1 v2  
    2929Tricky thing: libGDAL 1.9 has been built to depend on libGEOS 3.3.2, and libGEOS 3.3.3 is listed as the preferred library in the Support Matrix.
    3030
     31So, let's see if we can get all of the supporting libraries to the recommended versions.
     32
    3133=== Build GEOS 3.3.x ===
    3234
    3335PostGIS 2.0 requires GEOS >= 3.3.2 for topology support, however Ubuntu 11.10 only has GEOS 3.2.2 available in packages, so it needs to be built from source. If you don't need topology, you don't ''need'' to build this component, but it is highly recommended.
    3436
    35 These are the instructions for building geos 3.3.3, but they did not work for me in 12.04:
     37These are the instructions for building geos 3.3.3 found elsewhere on trac.osgeo.org, but '''they did not work for me in 12.04''':
    3638{{{
     39sudo apt-get install g++    ''--- added to other instructions, not installed by default in 12.04 & required for this make
    3740wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2
    3841tar xvfj geos-3.3.3.tar.bz2
    3942cd geos-3.3.3
    4043./configure
    41 make   --- this failed
     44make   ''--- this failed''
    4245sudo make install
    4346cd ..