Skip to content
Snippets Groups Projects
Commit c44ab4cd authored by Denis Cornehl's avatar Denis Cornehl Committed by Kenneth Reitz
Browse files

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.
parent 677dfeec
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment