All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libpsl: needs wchar
@ 2021-06-09 21:41 Fabrice Fontaine
  2021-06-10  3:26 ` Adrian Perez de Castro
  2021-06-20 13:54 ` Arnout Vandecappelle
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2021-06-09 21:41 UTC (permalink / raw)
  To: buildroot

Add a dependency on wchar as both icu and libunistring needs wchar

Fixes:
 - http://autobuild.buildroot.org/results/704d8e6f8b78015180e5b12c132495425637430a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libpsl/Config.in  | 4 ++++
 package/libsoup/Config.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/package/libpsl/Config.in b/package/libpsl/Config.in
index dd484799e7..de77ff8d10 100644
--- a/package/libpsl/Config.in
+++ b/package/libpsl/Config.in
@@ -1,8 +1,12 @@
 config BR2_PACKAGE_LIBPSL
 	bool "libpsl"
+	depends on BR2_USE_WCHAR
 	select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_ICU && !BR2_PACKAGE_LIBIDN
 	select BR2_PACKAGE_LIBUNISTRING if !BR2_PACKAGE_ICU
 	help
 	  C library to handle the Public Suffix List of TLDs.
 
 	  https://github.com/rockdaboot/libpsl
+
+comment "libpsl needs a toolchain w/ wchar"
+	depends on !BR2_USE_WCHAR
diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in
index 47adfb33f2..0c0454c7c2 100644
--- a/package/libsoup/Config.in
+++ b/package/libsoup/Config.in
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_LIBSOUP
 	bool "libsoup"
-	depends on BR2_USE_WCHAR # glib2 and gnutls
+	depends on BR2_USE_WCHAR # glib2, gnutls and libpsl
 	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
 	depends on BR2_USE_MMU # glib2
 	select BR2_PACKAGE_LIBXML2
-- 
2.30.2

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

* [Buildroot] [PATCH 1/1] package/libpsl: needs wchar
  2021-06-09 21:41 [Buildroot] [PATCH 1/1] package/libpsl: needs wchar Fabrice Fontaine
@ 2021-06-10  3:26 ` Adrian Perez de Castro
  2021-06-20 13:54 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Adrian Perez de Castro @ 2021-06-10  3:26 UTC (permalink / raw)
  To: buildroot

Hi,

On Wed, 09 Jun 2021 23:41:30 +0200 Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> Add a dependency on wchar as both icu and libunistring needs wchar

Good catch, thanks! \o/

> Fixes:
>  - http://autobuild.buildroot.org/results/704d8e6f8b78015180e5b12c132495425637430a
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>

> ---
>  package/libpsl/Config.in  | 4 ++++
>  package/libsoup/Config.in | 2 +-
>  2 files changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/package/libpsl/Config.in b/package/libpsl/Config.in
> index dd484799e7..de77ff8d10 100644
> --- a/package/libpsl/Config.in
> +++ b/package/libpsl/Config.in
> @@ -1,8 +1,12 @@
>  config BR2_PACKAGE_LIBPSL
>  	bool "libpsl"
> +	depends on BR2_USE_WCHAR
>  	select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_ICU && !BR2_PACKAGE_LIBIDN
>  	select BR2_PACKAGE_LIBUNISTRING if !BR2_PACKAGE_ICU
>  	help
>  	  C library to handle the Public Suffix List of TLDs.
>  
>  	  https://github.com/rockdaboot/libpsl
> +
> +comment "libpsl needs a toolchain w/ wchar"
> +	depends on !BR2_USE_WCHAR
> diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in
> index 47adfb33f2..0c0454c7c2 100644
> --- a/package/libsoup/Config.in
> +++ b/package/libsoup/Config.in
> @@ -1,6 +1,6 @@
>  config BR2_PACKAGE_LIBSOUP
>  	bool "libsoup"
> -	depends on BR2_USE_WCHAR # glib2 and gnutls
> +	depends on BR2_USE_WCHAR # glib2, gnutls and libpsl
>  	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
>  	depends on BR2_USE_MMU # glib2
>  	select BR2_PACKAGE_LIBXML2
> -- 
> 2.30.2
> 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20210610/b6ccebfb/attachment.asc>

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

* [Buildroot] [PATCH 1/1] package/libpsl: needs wchar
  2021-06-09 21:41 [Buildroot] [PATCH 1/1] package/libpsl: needs wchar Fabrice Fontaine
  2021-06-10  3:26 ` Adrian Perez de Castro
@ 2021-06-20 13:54 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2021-06-20 13:54 UTC (permalink / raw)
  To: buildroot



On 09/06/2021 23:41, Fabrice Fontaine wrote:
> Add a dependency on wchar as both icu and libunistring needs wchar
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/704d8e6f8b78015180e5b12c132495425637430a
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libpsl/Config.in  | 4 ++++
>  package/libsoup/Config.in | 2 +-
>  2 files changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/package/libpsl/Config.in b/package/libpsl/Config.in
> index dd484799e7..de77ff8d10 100644
> --- a/package/libpsl/Config.in
> +++ b/package/libpsl/Config.in
> @@ -1,8 +1,12 @@
>  config BR2_PACKAGE_LIBPSL
>  	bool "libpsl"
> +	depends on BR2_USE_WCHAR

 I added a comment # libunistring, icu

 Applied to master, thanks.

 Regards,
 Arnout

>  	select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_ICU && !BR2_PACKAGE_LIBIDN
>  	select BR2_PACKAGE_LIBUNISTRING if !BR2_PACKAGE_ICU
>  	help
>  	  C library to handle the Public Suffix List of TLDs.
>  
>  	  https://github.com/rockdaboot/libpsl
> +
> +comment "libpsl needs a toolchain w/ wchar"
> +	depends on !BR2_USE_WCHAR
> diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in
> index 47adfb33f2..0c0454c7c2 100644
> --- a/package/libsoup/Config.in
> +++ b/package/libsoup/Config.in
> @@ -1,6 +1,6 @@
>  config BR2_PACKAGE_LIBSOUP
>  	bool "libsoup"
> -	depends on BR2_USE_WCHAR # glib2 and gnutls
> +	depends on BR2_USE_WCHAR # glib2, gnutls and libpsl
>  	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
>  	depends on BR2_USE_MMU # glib2
>  	select BR2_PACKAGE_LIBXML2
> 

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

end of thread, other threads:[~2021-06-20 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 21:41 [Buildroot] [PATCH 1/1] package/libpsl: needs wchar Fabrice Fontaine
2021-06-10  3:26 ` Adrian Perez de Castro
2021-06-20 13:54 ` Arnout Vandecappelle

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.