Skip to content

Commit

Permalink
Merge pull request #10 from johnhaddon/openSSL
Browse files Browse the repository at this point in the history
Add OpenSSL.
  • Loading branch information
johnhaddon authored Jun 28, 2016
2 parents f08ecd0 + 2953fdd commit c9364d5
Show file tree
Hide file tree
Showing 2,274 changed files with 729,259 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/buildAll.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ for n in "BUILD_DIR" "VERSION" "ARNOLD_ROOT" "RMAN_ROOT" ; do
done

cd `dirname $0`
./buildOpenSSL.sh
./buildPython.sh
./buildSubprocess32.sh
./buildBoost.sh
Expand Down
23 changes: 23 additions & 0 deletions build/buildOpenSSL.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

set -e

cd `dirname $0`/../openssl-1.0.2h

mkdir -p $BUILD_DIR/doc/licenses
cp LICENSE $BUILD_DIR/doc/licenses/openssl

if [[ `uname` = "Linux" ]] ; then

./config --prefix=$BUILD_DIR -fPIC
make
make install

else

export KERNEL_BITS=64
./config --prefix=$BUILD_DIR -fPIC
make
make install

fi
2 changes: 2 additions & 0 deletions openssl-1.0.2h/ACKNOWLEDGMENTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Please https://www.openssl.org/community/thanks.html for the current
acknowledgements.
11,211 changes: 11,211 additions & 0 deletions openssl-1.0.2h/CHANGES

Large diffs are not rendered by default.

Loading

0 comments on commit c9364d5

Please sign in to comment.