diff options
author | Igor Makarov <igormaka@gmail.com> | 2019-08-15 15:29:34 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-15 15:14:55 +0200 |
commit | 2f148d238e1d19421fdf40b018983d3672cc9bba (patch) | |
tree | 083bba34e23740a06a33aadedb269cae429ee198 /configure.ac | |
parent | cec3ef8793ee3ab608fabde61c401532ab608ad9 (diff) | |
download | curl-2f148d238e1d19421fdf40b018983d3672cc9bba.tar.gz |
configure: use -lquiche to link to quiche
Closes #4226
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 32b25ac6e..bd837e6a5 100755 --- a/configure.ac +++ b/configure.ac @@ -3551,7 +3551,7 @@ if test X"$want_quiche" != Xno; then CLEANCPPFLAGS="$CPPFLAGS" CLEANLIBS="$LIBS" - LIB_QUICHE="-l:libquiche.a -ldl -lpthread" + LIB_QUICHE="-lquiche -ldl -lpthread" CPP_QUICHE="-I$OPT_QUICHE/include" LD_QUICHE="-L$OPT_QUICHE/target/release" |