Skip to content

Commit

Permalink
update openssl 1.1.0 branch routine in 123.09beta01
Browse files Browse the repository at this point in the history
automatic addition of RPATH components was removed in openssl 1.1.0, so re-adding that doing openssl 1.1.0 branch compiles
  • Loading branch information
centminmod committed Jan 19, 2017
1 parent 9170197 commit c34f552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/openssl_install.inc
Original file line number Diff line number Diff line change
Expand Up @@ -303,14 +303,14 @@ installopenssl() {
if [[ "$(uname -m)" = 'x86_64' ]]; then
if [[ "$DETECTOPENSSL_ONEZERO" = '1.1' ]]; then
# openssl 1.1.0 unsupported flag enable-tlsext
./config --prefix=$STATICLIBSSL shared enable-ec_nistp_64_gcc_128
./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)' --prefix=$STATICLIBSSL shared enable-ec_nistp_64_gcc_128
else
./config --prefix=$STATICLIBSSL shared enable-tlsext enable-ec_nistp_64_gcc_128
fi
else
if [[ "$DETECTOPENSSL_ONEZERO" = '1.1' ]]; then
# openssl 1.1.0 unsupported flag enable-tlsext
./config --prefix=$STATICLIBSSL shared
./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)' --prefix=$STATICLIBSSL shared
else
./config --prefix=$STATICLIBSSL shared enable-tlsext
fi
Expand Down

0 comments on commit c34f552

Please sign in to comment.