aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-01-03 16:18:48 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-01-03 16:18:48 -0500
commitb6a0f24434da2cab3e1bba0eb7ba064ca5aacec7 (patch)
tree67002ef242c4b3abb2e2b719ac6ae3f7c12006c2
parenta39a23c6c18aaa01165c6c67b9c715405b259a54 (diff)
parent2d96df9df9868ed6389ac539dc7050f05d74e56f (diff)
downloadcryptography-b6a0f24434da2cab3e1bba0eb7ba064ca5aacec7.tar.gz
cryptography-b6a0f24434da2cab3e1bba0eb7ba064ca5aacec7.tar.bz2
cryptography-b6a0f24434da2cab3e1bba0eb7ba064ca5aacec7.zip
Merge pull request #2633 from reaperhulk/travis-sed-thing
sed the openssl makefile to change the shlib version
-rwxr-xr-x.travis/install.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 0d654253..5e8c11cc 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -75,6 +75,11 @@ 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 the dynamic linker
+ # doesn't load the system one.
+ sed -i "s/^SHLIB_MAJOR=.*/SHLIB_MAJOR=100/" Makefile
+ sed -i "s/^SHLIB_MINOR=.*/SHLIB_MINOR=0.0/" Makefile
+ sed -i "s/^SHLIB_VERSION_NUMBER=.*/SHLIB_VERSION_NUMBER=100.0.0/" Makefile
make depend
make install
fi