aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-09-07 10:43:03 +0200
committerChristian Grothoff <christian@grothoff.org>2022-09-07 10:43:03 +0200
commit287c88e3df16fd3652753ea02d5b604a4414ef2d (patch)
tree3b07a9a1a5ee8c8ad14bebfcc0d4ba802e878e11
parent3125f453cbd3114c5b52f1e4f67529448474d828 (diff)
-only check for -lcurl
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 5a212c4b..e43c586e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -186,12 +186,12 @@ AS_IF([test "$qrencode" != 1],
AC_SUBST(QR_CFLAGS)
AC_SUBST(QR_LIBS)
-# NOTE: If we find libcurl-gnutls here we set LIBCURL to -lcurl-gnutls
+# NOTE: If we find libcurl here we set LIBCURL to -lcurl
# This affects the LIBCURL_CHECK_CONFIG call below as it takes LIBCURL into
# account when checking for curl.
-AC_CHECK_LIB([curl-gnutls],
+AC_CHECK_LIB([curl],
[curl_easy_getinfo],
- [LIBCURL="-lcurl-gnutls"
+ [LIBCURL="-lcurl"
curl_gnutls=1],
[curl_gnutls=0])