All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS
@ 2025-10-07 21:05 Bernd Kuhls
  2025-10-08  4:38 ` Baruch Siach via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2025-10-07 21:05 UTC (permalink / raw)
  To: buildroot

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 <bernd@kuhls.net>
---
 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
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS
  2025-10-07 21:05 [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS Bernd Kuhls
@ 2025-10-08  4:38 ` Baruch Siach via buildroot
  2025-10-10 11:42 ` Julien Olivain via buildroot
  2025-10-22 16:42 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach via buildroot @ 2025-10-08  4:38 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

Hi Bernd,

On Tue, Oct 07 2025, Bernd Kuhls wrote:
> 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 <bernd@kuhls.net>

Reviewed-by: Baruch Siach <baruch@tkos.co.il>

Thanks,
baruch

> ---
>  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

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS
  2025-10-07 21:05 [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS Bernd Kuhls
  2025-10-08  4:38 ` Baruch Siach via buildroot
@ 2025-10-10 11:42 ` Julien Olivain via buildroot
  2025-10-22 16:42 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Julien Olivain via buildroot @ 2025-10-10 11:42 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On 07/10/2025 23:05, Bernd Kuhls wrote:
> 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 <bernd@kuhls.net>

Applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS
  2025-10-07 21:05 [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS Bernd Kuhls
  2025-10-08  4:38 ` Baruch Siach via buildroot
  2025-10-10 11:42 ` Julien Olivain via buildroot
@ 2025-10-22 16:42 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-10-22 16:42 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Arnout Vandecappelle, buildroot

In reply of:
> 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 <bernd@kuhls.net>

Applied to 2025.02.x and 2025.08.x. Thanks

> ---
>  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
> -- 
> 2.47.3
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-10-22 16:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-07 21:05 [Buildroot] [PATCH 1/1] package/libcurl: fix configure options for GnuTLS Bernd Kuhls
2025-10-08  4:38 ` Baruch Siach via buildroot
2025-10-10 11:42 ` Julien Olivain via buildroot
2025-10-22 16:42 ` Arnout Vandecappelle via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.