Don't compile static versions of geo-libraries (#339)

python uses dynamic linking, and the static libraries use 200 MB of disk
space in the dynos.
This commit is contained in:
Denis Cornehl
2017-02-23 17:14:31 +01:00
committed by Kenneth Reitz
parent 677dfeec11
commit c44ab4cd03
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ SOURCE_TARBALL='http://download.osgeo.org/gdal/1.11.1/gdal-1.11.1.tar.gz'
curl -L $SOURCE_TARBALL | tar zx
cd gdal-1.11.1
./configure --prefix=$OUT_PREFIX &&
./configure --prefix=$OUT_PREFIX --enable-static=no &&
make
make install
+1 -1
View File
@@ -15,7 +15,7 @@ SOURCE_TARBALL='http://download.osgeo.org/geos/geos-3.4.2.tar.bz2'
curl -L $SOURCE_TARBALL | tar xj
cd geos-3.4.2
./configure --prefix=$OUT_PREFIX &&
./configure --prefix=$OUT_PREFIX --enable-static=no &&
make
make install
+1 -1
View File
@@ -15,7 +15,7 @@ SOURCE_TARBALL='http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
curl -L $SOURCE_TARBALL | tar zx
cd proj-4.8.0
./configure --prefix=$OUT_PREFIX &&
./configure --prefix=$OUT_PREFIX --enable-static=no &&
make
make install