You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2022/12/05 22:13:31 UTC

[pulsar-client-node] branch master updated: Upgrade OpenSSL version. (#251)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-node.git


The following commit(s) were added to refs/heads/master by this push:
     new cdd4f58  Upgrade OpenSSL version. (#251)
cdd4f58 is described below

commit cdd4f58b664b43e4d726eb77e7776ca1015873b3
Author: Baodi Shi <wu...@icloud.com>
AuthorDate: Tue Dec 6 06:13:26 2022 +0800

    Upgrade OpenSSL version. (#251)
---
 dependencies.yaml             | 2 +-
 pkg/mac/build-cpp-deps-lib.sh | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dependencies.yaml b/dependencies.yaml
index a704c97..c3969c5 100644
--- a/dependencies.yaml
+++ b/dependencies.yaml
@@ -24,5 +24,5 @@ protobuf: 3.20.0
 zlib: 1.2.13
 zstd: 1.5.2
 snappy: 1.1.9
-openssl: 1.1.1q
+openssl: 1.1.1s
 curl: 7.85.0
diff --git a/pkg/mac/build-cpp-deps-lib.sh b/pkg/mac/build-cpp-deps-lib.sh
index d609202..e2078d1 100755
--- a/pkg/mac/build-cpp-deps-lib.sh
+++ b/pkg/mac/build-cpp-deps-lib.sh
@@ -59,7 +59,6 @@ if [ ! -f openssl-OpenSSL_${OPENSSL_VERSION_UNDERSCORE}.done ]; then
     curl -O -L https://github.com/openssl/openssl/archive/OpenSSL_${OPENSSL_VERSION_UNDERSCORE}.tar.gz
     tar xfz OpenSSL_${OPENSSL_VERSION_UNDERSCORE}.tar.gz
     pushd openssl-OpenSSL_${OPENSSL_VERSION_UNDERSCORE}
-        echo -e "#include <string.h>\n$(cat test/v3ext.c)" > test/v3ext.c
         if [ $ARCH = 'arm64' ]; then
           PLATFORM=darwin64-arm64-cc
         else