Changes between Version 7 and Version 8 of BuildingOnUnixWithMinimizedDrivers


Ignore:
Timestamp:
Mar 13, 2017, 4:02:36 PM (7 years ago)
Author:
Mateusz Łoskot
Comment:

Update --without-* set

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithMinimizedDrivers

    v7 v8  
    11= Building On Unix With Minimized Drivers =
    2 
    3 '''TODO''': ''This Wiki article is under construction'' -- mloskot
    42
    53Here are the ./configure options disabling driver and features that can be safely disabled:
    64
    75{{{
    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             --with-hide-internal-symbols
     6./configure \
     7    --prefix=${PREFIX} \
     8    --with-geos \
     9    --with-geotiff=internal \
     10    --with-hide-internal-symbols \
     11    --with-libtiff=internal \
     12    --with-libz=internal \
     13    --with-threads \
     14    --without-bsb \
     15    --without-cfitsio \
     16    --without-cryptopp \
     17    --without-curl \
     18    --without-dwgdirect \
     19    --without-ecw \
     20    --without-expat \
     21    --without-fme \
     22    --without-freexl \
     23    --without-gif \
     24    --without-gif \
     25    --without-gnm \
     26    --without-grass \
     27    --without-grib \
     28    --without-hdf4 \
     29    --without-hdf5 \
     30    --without-idb \
     31    --without-ingres \
     32    --without-jasper \
     33    --without-jp2mrsid \
     34    --without-jpeg \
     35    --without-kakadu \
     36    --without-libgrass \
     37    --without-libkml \
     38    --without-libtool \
     39    --without-mrf \
     40    --without-mrsid \
     41    --without-mysql \
     42    --without-netcdf \
     43    --without-odbc \
     44    --without-ogdi \
     45    --without-openjpeg \
     46    --without-pcidsk \
     47    --without-pcraster \
     48    --without-pcre \
     49    --without-perl \
     50    --without-pg \
     51    --without-php \
     52    --without-png \
     53    --without-python \
     54    --without-qhull \
     55    --without-sde \
     56    --without-sqlite3 \
     57    --without-webp \
     58    --without-xerces \
     59    --without-xml2
    5460}}}
    5561