-
Notifications
You must be signed in to change notification settings - Fork 919
v1.4.0 openssl, interceptor updates #828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what the point of the VERSION -> SUFFIX change is, but I dont like it.
tools/build-openssl.sh
Outdated
@@ -6,7 +6,7 @@ | |||
|
|||
# NOTE: Keep this updated to make sure we always build the latest | |||
# version of OpenSSL in the 1.0 release train. | |||
OPENSSL_VERSION=1.0.2t | |||
OPENSSL_VERSION_SUFFIX=u |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? the suffix is not unique, only in combination with the version. revert this.
tools/build-openssl.sh
Outdated
@@ -23,7 +23,7 @@ if ! grep -q "^VERSION=${OPENSSL_VERSION}$" build-openssl/Makefile ; then | |||
rm -rf build-openssl | |||
mkdir -p build-openssl | |||
pushd build-openssl | |||
curl -s -l https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz | \ | |||
curl -s -l https://www.openssl.org/source/old/1.0.2/openssl-${OPENSSL_VERSION}.tar.gz | \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lessons learned from librdkafka; do curl -fL <URL>
, otherwise it will not fail on 404.
tools/build-openssl.sh
Outdated
@@ -23,7 +23,7 @@ if ! grep -q "^VERSION=${OPENSSL_VERSION}$" build-openssl/Makefile ; then | |||
rm -rf build-openssl | |||
mkdir -p build-openssl | |||
pushd build-openssl | |||
curl -s -l https://www.openssl.org/source/old/1.0.2/openssl-${OPENSSL_VERSION}.tar.gz | \ | |||
curl -fl https://www.openssl.org/source/old/1.0.2/openssl-${OPENSSL_VERSION}.tar.gz | \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-fL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
incorrect curl flags
No description provided.