1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-02 10:21:46 -05:00

travis: build ngtcp2 --with-gnutls

... since they disable it by default since a few days back.

Closes #6506
Fixes #6493
This commit is contained in:
Daniel Stenberg 2021-01-21 13:32:33 +01:00
parent 8335c6417e
commit b371d267f8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -62,7 +62,10 @@ if [ "$NGTCP2" = yes ]; then
git clone --depth 1 https://github.com/ngtcp2/ngtcp2
cd ngtcp2
autoreconf -i
./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --prefix=$HOME/ngbuild --enable-lib-only
if test -n "$GNUTLS"; then
WITHGNUTLS="--with-gnutls"
fi
./configure PKG_CONFIG_PATH=$HOME/ngbuild/lib/pkgconfig LDFLAGS="-Wl,-rpath,$HOME/ngbuild/lib" --prefix=$HOME/ngbuild --enable-lib-only $WITHGNUTLS
make
make install
fi