Skip to content

Commit 814b5df

Browse files
chipitsinewtarreau
authored andcommitted
BUILD: add possibility to use different QuicTLS variants
initially QuicTLS started as a patchset on top of OpenSSL, currently project has started its own journey as QuicTLS somehow we need both ML: https://www.mail-archive.com/haproxy@formilux.org/msg45574.html GH: quictls/quictls#244
1 parent a826250 commit 814b5df

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/build-ssl.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ set -eux
33

44
BUILDSSL_DESTDIR=${BUILDSSL_DESTDIR:-${HOME}/opt}
55
BUILDSSL_TMPDIR=${BUILDSSL_TMPDIR:-/tmp/download-cache}
6+
QUICTLS_URL=${QUICTLS_URL:-https://github.com/quictls/openssl}
67

78
WOLFSSL_DEBUG=${WOLFSSL_DEBUG:-0}
89

@@ -178,7 +179,7 @@ build_aws_lc_fips () {
178179

179180
download_quictls () {
180181
if [ ! -d "${BUILDSSL_TMPDIR}/quictls" ]; then
181-
git clone --depth=1 https://github.com/quictls/openssl ${BUILDSSL_TMPDIR}/quictls
182+
git clone --depth=1 ${QUICTLS_URL} ${BUILDSSL_TMPDIR}/quictls
182183
else
183184
(
184185
cd ${BUILDSSL_TMPDIR}/quictls

0 commit comments

Comments
 (0)