summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-05-10 09:33:02 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-05-10 09:44:00 +0200
commit3be1e9c642fbc3e404162ec44e3f3928d91051f0 (patch)
tree80ba8f82d7243b9741a847d245b1e87f87b1b0be /scripts
parentb01f3e679f4c1ea3fcd8ab43608a48653b09cc93 (diff)
downloadcurl-3be1e9c642fbc3e404162ec44e3f3928d91051f0.tar.gz
zuul: fix the ngtcp2-gnutls build
Add packages and tweak the configure options. Use the GnuTLS 3.7.4 branch (not main). Closes #8829
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/zuul/before_script.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/zuul/before_script.sh b/scripts/zuul/before_script.sh
index 9ca8a911d..ac766d3ee 100755
--- a/scripts/zuul/before_script.sh
+++ b/scripts/zuul/before_script.sh
@@ -35,10 +35,10 @@ if [ "$NGTCP2" = yes ]; then
make install
cd $HOME
- git clone --depth 1 https://gitlab.com/gnutls/gnutls.git pgtls
+ git clone --depth 1 -b 3.7.4 https://gitlab.com/gnutls/gnutls.git pgtls
cd pgtls
./bootstrap
- ./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --with-included-libtasn1 --with-included-unistring --disable-guile --disable-doc --prefix=$HOME/ngbuild
+ ./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --with-included-libtasn1 --with-included-unistring --disable-guile --disable-doc --disable-tools --without-zstd --disable-psk-authentication --prefix=$HOME/ngbuild
make
make install
else