diff options
-rwxr-xr-x | .travis/install.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 0d654253..2f2925cb 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -75,6 +75,10 @@ else tar zxf openssl-$OPENSSL_VERSION_NUMBER.tar.gz cd openssl-$OPENSSL_VERSION_NUMBER ./config shared no-asm no-ssl2 -fPIC --prefix="$HOME/$OPENSSL_DIR" + # modify the shlib version to a unique one to make sure it doesn't load the system one. + sed -i "s/^SHLIB_MAJOR=[0-9]/SHLIB_MAJOR=100/" Makefile + sed -i "s/^SHLIB_MINOR=[0-9].[0-9]/SHLIB_MINOR=0.0/" Makefile + sed -i "s/^SHLIB_VERSION_NUMBER=[0-9].[0-9].[0-9]/SHLIB_VERSION_NUMBER=100.0.0/" Makefile make depend make install fi |