mirror of
https://github.com/curl/curl.git
synced 2026-08-25 03:43:31 +03:00
configure: error out if both ngtcp2 and quiche are specified
Reported-by: Vincent Grande See #7539 Closes #7545
This commit is contained in:
parent
76e047fc27
commit
c4242b1e6e
1 changed files with 5 additions and 0 deletions
|
|
@ -2893,6 +2893,11 @@ case "$OPT_QUICHE" in
|
|||
esac
|
||||
|
||||
if test X"$want_quiche" != Xno; then
|
||||
|
||||
if test "$NGHTTP3_ENABLED" = 1; then
|
||||
AC_MSG_ERROR([--with-quiche and --with-ngtcp2 are mutually exclusive])
|
||||
fi
|
||||
|
||||
dnl backup the pre-quiche variables
|
||||
CLEANLDFLAGS="$LDFLAGS"
|
||||
CLEANCPPFLAGS="$CPPFLAGS"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue