All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libcurl: fix libgsasl support
@ 2022-03-14 18:59 Bernd Kuhls
  2022-03-14 19:31 ` Baruch Siach via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2022-03-14 18:59 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber

Contrary to the helptext
https://github.com/curl/curl/blob/master/configure.ac#L152

the configure option is called --with-libgsasl:
https://github.com/curl/curl/blob/master/configure.ac#L1989

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libcurl/libcurl.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 0db0c088cb..a6e5b06b8f 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -128,9 +128,9 @@ endif
 
 ifeq ($(BR2_PACKAGE_LIBGSASL),y)
 LIBCURL_DEPENDENCIES += libgsasl
-LIBCURL_CONF_OPTS += --with-gsasl
+LIBCURL_CONF_OPTS += --with-libgsasl
 else
-LIBCURL_CONF_OPTS += --without-gsasl
+LIBCURL_CONF_OPTS += --without-libgsasl
 endif
 
 ifeq ($(BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT),y)
-- 
2.30.2

_______________________________________________
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 libgsasl support
  2022-03-14 18:59 [Buildroot] [PATCH 1/1] package/libcurl: fix libgsasl support Bernd Kuhls
@ 2022-03-14 19:31 ` Baruch Siach via buildroot
  2022-03-21 21:33 ` Arnout Vandecappelle
  2022-03-23 21:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach via buildroot @ 2022-03-14 19:31 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Matt Weber, buildroot

Hi Bernd,

On Mon, Mar 14 2022, Bernd Kuhls wrote:

> Contrary to the helptext
> https://github.com/curl/curl/blob/master/configure.ac#L152
>
> the configure option is called --with-libgsasl:
> https://github.com/curl/curl/blob/master/configure.ac#L1989
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

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

Thanks,
baruch

> ---
>  package/libcurl/libcurl.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 0db0c088cb..a6e5b06b8f 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -128,9 +128,9 @@ endif
>  
>  ifeq ($(BR2_PACKAGE_LIBGSASL),y)
>  LIBCURL_DEPENDENCIES += libgsasl
> -LIBCURL_CONF_OPTS += --with-gsasl
> +LIBCURL_CONF_OPTS += --with-libgsasl
>  else
> -LIBCURL_CONF_OPTS += --without-gsasl
> +LIBCURL_CONF_OPTS += --without-libgsasl
>  endif
>  
>  ifeq ($(BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT),y)


-- 
                                                     ~. .~   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 libgsasl support
  2022-03-14 18:59 [Buildroot] [PATCH 1/1] package/libcurl: fix libgsasl support Bernd Kuhls
  2022-03-14 19:31 ` Baruch Siach via buildroot
@ 2022-03-21 21:33 ` Arnout Vandecappelle
  2022-03-23 21:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2022-03-21 21:33 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot; +Cc: Matt Weber



On 14/03/2022 19:59, Bernd Kuhls wrote:
> Contrary to the helptext
> https://github.com/curl/curl/blob/master/configure.ac#L152
> 
> the configure option is called --with-libgsasl:
> https://github.com/curl/curl/blob/master/configure.ac#L1989
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/libcurl/libcurl.mk | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 0db0c088cb..a6e5b06b8f 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -128,9 +128,9 @@ endif
>   
>   ifeq ($(BR2_PACKAGE_LIBGSASL),y)
>   LIBCURL_DEPENDENCIES += libgsasl
> -LIBCURL_CONF_OPTS += --with-gsasl
> +LIBCURL_CONF_OPTS += --with-libgsasl
>   else
> -LIBCURL_CONF_OPTS += --without-gsasl
> +LIBCURL_CONF_OPTS += --without-libgsasl
>   endif
>   
>   ifeq ($(BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT),y)
_______________________________________________
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 libgsasl support
  2022-03-14 18:59 [Buildroot] [PATCH 1/1] package/libcurl: fix libgsasl support Bernd Kuhls
  2022-03-14 19:31 ` Baruch Siach via buildroot
  2022-03-21 21:33 ` Arnout Vandecappelle
@ 2022-03-23 21:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-03-23 21:27 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Matt Weber, buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Contrary to the helptext
 > https://github.com/curl/curl/blob/master/configure.ac#L152

 > the configure option is called --with-libgsasl:
 > https://github.com/curl/curl/blob/master/configure.ac#L1989

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2021.02.x, 2021.11.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
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:[~2022-03-23 21:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-14 18:59 [Buildroot] [PATCH 1/1] package/libcurl: fix libgsasl support Bernd Kuhls
2022-03-14 19:31 ` Baruch Siach via buildroot
2022-03-21 21:33 ` Arnout Vandecappelle
2022-03-23 21:27 ` Peter Korsgaard

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.