Changes between Version 21 and Version 22 of SchrittfuerSchritt


Ignore:
Timestamp:
11/14/12 11:52:22 (11 years ago)
Author:
dfleischhauer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SchrittfuerSchritt

    v21 v22  
    1010libxerces-c2-dev libgeos-dev proj build-essential subversion 
    1111}}} 
     12 
     13 * Debian 6: 
     14{{{ 
     15sudo apt-get install postgresql-8.4 postgresql-server-dev-8.4 postgresql-8.4-postgis \ 
     16libxerces-c-dev libgeos-dev libproj-dev build-essential subversion 
     17}}} 
     18 
    1219== GDAL/OGR bauen und installieren == 
    13  * Code beziehen (mit normalen Benutzerrechten): 
    14 {{{ 
    15 mkdir postnas 
    16 cd postnas 
     20Code beziehen (mit normalen Benutzerrechten): 
     21 * Option 1 (empfohlen): Stabiler Release aus http://download.osgeo.org/gdal/, z.B. 
     22{{{ 
     23wget http://download.osgeo.org/gdal/gdal-1.9.2.tar.gz 
     24tar -xzf gdal-1.9.2.tar.gz 
     25cd gdal-1.9.2 
     26}}} 
     27 * Option 2: Aktueller Entwicklungszweig 
     28{{{ 
    1729svn checkout http://svn.osgeo.org/gdal/trunk/gdal 
    18 }}} 
    19  * Konfigurieren und kompilieren (wir gehen vom Installationsverzeichnis {{{/opt/gdal-trunk}}} aus) 
    20 {{{ 
    2130cd gdal 
    22 ./configure --prefix=/opt/gdal-trunk --with-xerces 
     31}}} 
     32 * Konfigurieren und kompilieren (wir gehen vom Installationsverzeichnis {{{/opt/gdal}}} aus) 
     33{{{ 
     34./configure --prefix=/opt/gdal --with-xerces 
    2335make 
    2436}}}