Skip to content

Commit fb29f7e

Browse files
author
Jeff Whitaker
committed
try openssl 3.0.1 with mb linux _2_28
1 parent 5ac3a10 commit fb29f7e

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

config.sh

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ export MACOSX_DEPLOYMENT_TARGET="10.9"
1515
export NETCDF_VERSION="4.9.1"
1616
export HDF5_VERSION="1.12.2"
1717
# can't use openssl 3, since building new version requires perl 5.10.0
18-
export OPENSSL_ROOT=openssl-1.1.1t
19-
export OPENSSL_HASH=8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b
18+
#export OPENSSL_ROOT=openssl-1.1.1t
19+
#export OPENSSL_HASH=8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b
20+
export OPENSSL_ROOT=openssl-3.0.1
21+
export OPENSSL_HASH=c311ad853353bce796edad01a862c50a8a587f62e7e2100ef465ab53ec9b06d1
2022
export CURL_VERSION="8.0.1"
2123
export LIBAEC_VERSION="1.0.6"
2224
export ZSTD_VERSION="1.5.2"
@@ -60,26 +62,6 @@ function build_curl {
6062
touch curl-stamp
6163
}
6264

63-
#function build_curl {
64-
# if [ -e curl-stamp ]; then return; fi
65-
# local flags="--prefix=$BUILD_PREFIX"
66-
# if [ -n "$IS_MACOS" ]; then
67-
# flags="$flags --with-darwinssl"
68-
# else # manylinux
69-
# flags="$flags --with-ssl"
70-
# build_openssl
71-
# fi
72-
# flags="$flags --without-brotli --without-nghttp2 --without-zstd --without-librtmp --without-libidn2"
73-
# fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz
74-
# (cd curl-${CURL_VERSION} \
75-
# && if [ -z "$IS_MACOS" ]; then \
76-
# LIBS=-ldl ./configure $flags; else \
77-
# ./configure $flags; fi\
78-
# && make -j4 \
79-
# && make install)
80-
# touch curl-stamp
81-
#}
82-
8365
function build_libaec {
8466
if [ -e libaec-stamp ]; then return; fi
8567
local root_name=v${LIBAEC_VERSION}

0 commit comments

Comments
 (0)