Skip to content

Commit 94c99de

Browse files
authored
build: use openssl 1.x
1 parent 950d07e commit 94c99de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nginx-build-msys2.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ ZLIB="$(curl -s 'https://zlib.net/' | grep -ioP 'zlib-(\d+\.)+\d+' | sort -ruV |
3232
ZLIB="${ZLIB:-zlib-1.2.11}"
3333
echo $ZLIB
3434
PCRE="$(curl -s 'https://ftp.pcre.org/pub/pcre/' | grep -ioP 'pcre-(\d+\.)+\d+' | sort -ruV | head -1)"
35-
PCRE="${PCRE:-pcre-8.43}"
35+
PCRE="${PCRE:-pcre-8.44}"
3636
echo $PCRE
37-
OPENSSL="$(curl -s 'https://www.openssl.org/source/' | grep -ioP 'openssl-(\d+\.)+[a-z\d]+' | sort -ruV | head -1)"
38-
OPENSSL="${OPENSSL:-openssl-1.1.1d}"
37+
OPENSSL="$(curl -s 'https://www.openssl.org/source/' | grep -ioP 'openssl-1\.(\d+\.)+[a-z\d]+' | sort -ruV | head -1)"
38+
OPENSSL="${OPENSSL:-openssl-1.1.1g}"
3939
echo $OPENSSL
4040

4141
# clone and patch nginx

0 commit comments

Comments
 (0)