Changes between Version 6 and Version 7 of UsersWikiPostGIS21Ubuntu1304src


Ignore:
Timestamp:
Aug 20, 2013, 1:11:56 AM (11 years ago)
Author:
Mike Taves
Comment:

GEOS 3.4.1, PostGIS 2.1.0

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiPostGIS21Ubuntu1304src

    v6 v7  
    1212PostGIS 2.1 is best used with GEOS >= 3.4 for several new features, however Ubuntu 13.04 only has GEOS 3.3.3 available in packages, so it needs to be built from source. If you don't need the new features, instead install the {{{libgeos-dev}}} package.
    1313
    14 There are multiple ways to build GEOS, but this is the simplest. This method retrieves a snapshot from subversion, since the bzip2 archive of GEOS 3.4.0 not quite ready at the time of writing.
     14There are multiple ways to build GEOS, but this is the simplest:
    1515{{{
    16 sudo apt-get install subversion autoconf
    17 svn checkout http://svn.osgeo.org/geos/tags/3.4.0/ geos-3.4.0
    18 cd geos-3.4.0
    19 ./autogen.sh
     16wget http://download.osgeo.org/geos/geos-3.4.1.tar.bz2
     17tar xfj geos-3.4.1.tar.bz2
     18cd geos-3.4.1
    2019./configure
    2120make
     
    2625== Build PostGIS ==
    2726{{{
    28 wget http://download.osgeo.org/postgis/source/postgis-2.1.0rc2.tar.gz
    29 tar xfvz postgis-2.1.0rc2.tar.gz
    30 cd postgis-2.1.0rc2
     27wget http://download.osgeo.org/postgis/source/postgis-2.1.0.tar.gz
     28tar xfz postgis-2.1.0.tar.gz
     29cd postgis-2.1.0
    3130}}}
    3231