Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pango: fix fontconfig meson option
@ 2021-10-25  8:38 James Hilliard
  2021-10-25 19:34 ` Peter Seiderer
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: James Hilliard @ 2021-10-25  8:38 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard

Fixes:
output/build/pango-1.48.10/meson.build:1:0: ERROR: Unknown options: "use_fontconfig"

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/pango/pango.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/pango/pango.mk b/package/pango/pango.mk
index 104551a1fa..7d3d6626d9 100644
--- a/package/pango/pango.mk
+++ b/package/pango/pango.mk
@@ -13,8 +13,8 @@ PANGO_LICENSE = LGPL-2.0+
 PANGO_LICENSE_FILES = COPYING
 PANGO_CPE_ID_VENDOR = pango
 
-PANGO_CONF_OPTS = -Duse_fontconfig=true
-HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=disabled
+PANGO_CONF_OPTS = -Dfontconfig=enabled
+HOST_PANGO_CONF_OPTS = -Dfontconfig=enabled -Dintrospection=disabled
 
 PANGO_DEPENDENCIES = \
 	$(TARGET_NLS_DEPENDENCIES) \
-- 
2.25.1

_______________________________________________
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/pango: fix fontconfig meson option
  2021-10-25  8:38 [Buildroot] [PATCH 1/1] package/pango: fix fontconfig meson option James Hilliard
@ 2021-10-25 19:34 ` Peter Seiderer
  2021-10-26 20:01 ` Arnout Vandecappelle
  2021-11-03 19:54 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-10-25 19:34 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot

On Mon, 25 Oct 2021 02:38:17 -0600, James Hilliard <james.hilliard1@gmail.com> wrote:

> Fixes:
> output/build/pango-1.48.10/meson.build:1:0: ERROR: Unknown options: "use_fontconfig"

Same comment as for the package/gstreamer1/gst1-plugins-bad patch...

Otherwise (and thanks for fixing):

Reviewed-by: Peter Seiderer <ps.report@gmx.net>

Regars,
Peter

>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
>  package/pango/pango.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/pango/pango.mk b/package/pango/pango.mk
> index 104551a1fa..7d3d6626d9 100644
> --- a/package/pango/pango.mk
> +++ b/package/pango/pango.mk
> @@ -13,8 +13,8 @@ PANGO_LICENSE = LGPL-2.0+
>  PANGO_LICENSE_FILES = COPYING
>  PANGO_CPE_ID_VENDOR = pango
>
> -PANGO_CONF_OPTS = -Duse_fontconfig=true
> -HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=disabled
> +PANGO_CONF_OPTS = -Dfontconfig=enabled
> +HOST_PANGO_CONF_OPTS = -Dfontconfig=enabled -Dintrospection=disabled
>
>  PANGO_DEPENDENCIES = \
>  	$(TARGET_NLS_DEPENDENCIES) \

_______________________________________________
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/pango: fix fontconfig meson option
  2021-10-25  8:38 [Buildroot] [PATCH 1/1] package/pango: fix fontconfig meson option James Hilliard
  2021-10-25 19:34 ` Peter Seiderer
@ 2021-10-26 20:01 ` Arnout Vandecappelle
  2021-11-03 19:54 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2021-10-26 20:01 UTC (permalink / raw)
  To: James Hilliard, buildroot



On 25/10/2021 10:38, James Hilliard wrote:
> Fixes:
> output/build/pango-1.48.10/meson.build:1:0: ERROR: Unknown options: "use_fontconfig"
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/pango/pango.mk | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/pango/pango.mk b/package/pango/pango.mk
> index 104551a1fa..7d3d6626d9 100644
> --- a/package/pango/pango.mk
> +++ b/package/pango/pango.mk
> @@ -13,8 +13,8 @@ PANGO_LICENSE = LGPL-2.0+
>   PANGO_LICENSE_FILES = COPYING
>   PANGO_CPE_ID_VENDOR = pango
>   
> -PANGO_CONF_OPTS = -Duse_fontconfig=true
> -HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=disabled
> +PANGO_CONF_OPTS = -Dfontconfig=enabled
> +HOST_PANGO_CONF_OPTS = -Dfontconfig=enabled -Dintrospection=disabled
>   
>   PANGO_DEPENDENCIES = \
>   	$(TARGET_NLS_DEPENDENCIES) \
> 
_______________________________________________
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/pango: fix fontconfig meson option
  2021-10-25  8:38 [Buildroot] [PATCH 1/1] package/pango: fix fontconfig meson option James Hilliard
  2021-10-25 19:34 ` Peter Seiderer
  2021-10-26 20:01 ` Arnout Vandecappelle
@ 2021-11-03 19:54 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-11-03 19:54 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot

>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:

 > Fixes:
 > output/build/pango-1.48.10/meson.build:1:0: ERROR: Unknown options: "use_fontconfig"

 > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Committed to 2021.02.x and 2021.08.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:[~2021-11-03 19:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-25  8:38 [Buildroot] [PATCH 1/1] package/pango: fix fontconfig meson option James Hilliard
2021-10-25 19:34 ` Peter Seiderer
2021-10-26 20:01 ` Arnout Vandecappelle
2021-11-03 19:54 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox