Changes between Initial Version and Version 1 of BuildingOnUnixWithMinimizedDrivers


Ignore:
Timestamp:
Jul 8, 2008, 8:27:57 AM (16 years ago)
Author:
Mateusz Łoskot
Comment:

Started page about Building GDAL on Unix with minimal set of drivers enabled

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithMinimizedDrivers

    v1 v1  
     1= Building On Unix With Minimized Drivers =
     2
     3''Under Construction''
     4
     5In the meantime, here is shortcut to ./configure options disabling driver and features that can be safely disabled:
     6
     7{{{
     8./configure  --prefix=/usr/local \
     9            --with-threads \
     10            --with-ogr \
     11            --with-geos \
     12            --without-libtool \
     13            --with-libz=internal \
     14            --with-libtiff=internal \
     15            --with-geotiff=internal \
     16            --without-gif \
     17            --without-pg \
     18            --without-grass \
     19            --without-libgrass \
     20            --without-cfitsio \
     21            --without-pcraster \
     22            --without-netcdf \
     23            --without-png \
     24            --without-jpeg \
     25            --without-gif \
     26            --without-ogdi \
     27            --without-fme \
     28            --without-hdf4 \
     29            --without-hdf5 \
     30            --without-jasper \
     31            --without-ecw \
     32            --without-kakadu \
     33            --without-mrsid \
     34            --without-jp2mrsid \
     35            --without-bsb \
     36            --without-grib \
     37            --without-mysql \
     38            --without-ingres \
     39            --without-xerces \
     40            --without-expat \
     41            --without-odbc \
     42            --without-curl \
     43            --without-sqlite3 \
     44            --without-dwgdirect \
     45            --without-panorama \
     46            --without-idb \
     47            --without-sde \
     48            --without-perl \
     49            --without-php \
     50            --without-ruby \
     51            --without-python \
     52            --without-ogpython
     53}}}