From 15df9ec173f0c25df7f14f65719107f744248d4d Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Tue, 7 Oct 2025 23:05:14 +0200 Subject: [PATCH] package/libcurl: fix configure options for GnuTLS Buildroot commit fb5fb06ee5a886df5036c5c5e6c4536f2bc8e1c1 bumped libcurl to 8.16.0 which includes commit https://github.com/curl/curl/commit/2f6524ce3c3a8231c62d1e0c8af509fe5b0228a0 to limit the use of the configure option --with-ca-fallback to OpenSSL causing build errors with GnuTLS: configure: error: --with-ca-fallback only works with OpenSSL Fixes: https://autobuild.buildroot.net/results/64f/64fad87dddecda1e8ff6b0a9abc0b827b5136e4f/ Signed-off-by: Bernd Kuhls Reviewed-by: Baruch Siach Signed-off-by: Julien Olivain --- package/libcurl/libcurl.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk index 0aa88044bd..51b8c4d147 100644 --- a/package/libcurl/libcurl.mk +++ b/package/libcurl/libcurl.mk @@ -68,8 +68,7 @@ LIBCURL_CONF_OPTS += --without-openssl endif ifeq ($(BR2_PACKAGE_LIBCURL_GNUTLS),y) -LIBCURL_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr \ - --with-ca-fallback +LIBCURL_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr LIBCURL_DEPENDENCIES += gnutls else LIBCURL_CONF_OPTS += --without-gnutls