mirror of
https://github.com/ceph/ceph
synced 2025-02-16 07:17:21 +00:00
win32*.sh: update openssl location
We'll fetch the openssl source code from the github repository, since the download links from the official website tend to expire quite often. At the same time, we'll drop the version from the directory name. Signed-off-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
This commit is contained in:
parent
2dfcfcc6f1
commit
73e1747ba8
@ -15,9 +15,9 @@ depsToolsetDir="$DEPS_DIR/mingw"
|
||||
lz4SrcDir="${depsSrcDir}/lz4"
|
||||
lz4Dir="${depsToolsetDir}/lz4"
|
||||
lz4Tag="v1.9.2"
|
||||
sslVersion="1.1.1c"
|
||||
sslTag="OpenSSL_1_1_1c"
|
||||
sslDir="${depsToolsetDir}/openssl"
|
||||
sslSrcDir="${depsSrcDir}/openssl-${sslVersion}"
|
||||
sslSrcDir="${depsSrcDir}/openssl"
|
||||
|
||||
curlTag="curl-7_66_0"
|
||||
curlSrcDir="${depsSrcDir}/curl"
|
||||
@ -106,7 +106,8 @@ _make BUILD_STATIC=no CC=${MINGW_CC%-posix*} \
|
||||
|
||||
cd $depsSrcDir
|
||||
if [[ ! -d $sslSrcDir ]]; then
|
||||
curl "https://www.openssl.org/source/openssl-${sslVersion}.tar.gz" | tar xz
|
||||
git clone https://github.com/openssl/openssl
|
||||
cd $sslSrcDir; git checkout $sslTag
|
||||
fi
|
||||
cd $sslSrcDir
|
||||
mkdir -p $sslDir
|
||||
|
Loading…
Reference in New Issue
Block a user