aboutsummaryrefslogtreecommitdiff
path: root/travis/install.sh
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-01-22 14:09:35 +0100
committerGitHub <noreply@github.com>2020-01-22 14:09:35 +0100
commita95431d8666db9953115a3a824db396f8aa82b52 (patch)
tree21117e52f95b8f36880efef8cd71c1fcec21242c /travis/install.sh
parentc5fb54168665d41503ef3a08f0534da58949b632 (diff)
parent4724025e6c817761052fc0dc8810fd489a9e0104 (diff)
downloadPROJ-a95431d8666db9953115a3a824db396f8aa82b52.tar.gz
PROJ-a95431d8666db9953115a3a824db396f8aa82b52.zip
Merge pull request #1855 from rouault/rfc4_merge_back_master
[RFC4_dev] Merge master back to rfc4 latest branch
Diffstat (limited to 'travis/install.sh')
-rwxr-xr-xtravis/install.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/travis/install.sh b/travis/install.sh
index c41dc014..a8b98f98 100755
--- a/travis/install.sh
+++ b/travis/install.sh
@@ -15,6 +15,7 @@ echo "NPROC=${NPROC}"
# Download grid files
wget https://download.osgeo.org/proj/proj-datumgrid-1.8.zip
+wget "https://github.com/OSGeo/proj-datumgrid/blob/master/north-america/ntv2_0.gsb?raw=true" -O ntv2_0.gsb
# prepare build files
./autogen.sh
@@ -37,11 +38,7 @@ CXXFLAGS="-DCS=do_not_use_CS_for_solaris_compat $CXXFLAGS"
# autoconf build from generated tarball
mkdir build_autoconf
cd build_autoconf
-if [ -f $JAVA_HOME/include/jni.h ]; then
- CXXFLAGS="-I$JAVA_HOME/include -I$JAVA_HOME/include/linux $CXXFLAGS" ../configure --prefix=/tmp/proj_autoconf_install_from_dist_all --with-jni
-else
- ../configure --prefix=/tmp/proj_autoconf_install_from_dist_all
-fi
+../configure --prefix=/tmp/proj_autoconf_install_from_dist_all
make -j${NPROC}
@@ -95,7 +92,7 @@ cd ..
cd ../..
# Install grid files
-(cd data && unzip -o ../proj-datumgrid-1.8.zip)
+(cd data && unzip -o ../proj-datumgrid-1.8.zip && cp ../ntv2_0.gsb . )
# autoconf build with grids
mkdir build_autoconf_grids
@@ -106,6 +103,10 @@ make check
(cd src && make multistresstest && make test228)
PROJ_LIB=../data src/multistresstest
make install
+
+# Test make clean target
+make clean
+
find /tmp/proj_autoconf_install_grids
cd ..