Changes between Version 1 and Version 2 of UsersWikiPostGIS20Ubuntu1204
- Timestamp:
- 05/05/12 20:14:31 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiPostGIS20Ubuntu1204
v1 v2 29 29 Tricky 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. 30 30 31 So, let's see if we can get all of the supporting libraries to the recommended versions. 32 31 33 === Build GEOS 3.3.x === 32 34 33 35 PostGIS 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. 34 36 35 These are the instructions for building geos 3.3.3 , but they did not work for me in 12.04:37 These 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''': 36 38 {{{ 39 sudo apt-get install g++ ''--- added to other instructions, not installed by default in 12.04 & required for this make 37 40 wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2 38 41 tar xvfj geos-3.3.3.tar.bz2 39 42 cd geos-3.3.3 40 43 ./configure 41 make --- this failed44 make ''--- this failed'' 42 45 sudo make install 43 46 cd ..