Skip to content

Commit ca67aac

Browse files
author
Jeff Whitaker
committed
back off to openssl-1.1.1t since openssl 3 requires newer perl
1 parent ba62c5e commit ca67aac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ export NO_PLUGINS=1
1414
export MACOSX_DEPLOYMENT_TARGET="10.9"
1515
export NETCDF_VERSION="4.9.1"
1616
export HDF5_VERSION="1.12.2"
17-
# old openssl, since building new version requires perl 5.10.0
18-
export OPENSSL_ROOT=openssl-3.0.1
19-
export OPENSSL_HASH=c311ad853353bce796edad01a862c50a8a587f62e7e2100ef465ab53ec9b06d1
17+
# 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
2020
export CURL_VERSION="8.0.1"
2121
export LIBAEC_VERSION="1.0.6"
2222
export ZSTD_VERSION="1.5.2"
@@ -282,6 +282,6 @@ function run_tests {
282282
cp ../netcdf4-python/test/* .
283283
python run_all.py
284284
# add test for issue #1246 (opendap with ssl)
285-
filename='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide//m2.hamtide11a.nc'
286-
python -c "from netCDF4 import Dataset; nc=Dataset(\"${filename}\"); print(nc)"
285+
URL='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide/m2.hamtide11a.nc'
286+
python -c "from netCDF4 import Dataset; nc=Dataset(\"${URL}\"); print(nc)"
287287
}

0 commit comments

Comments
 (0)