Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/wayland-protocols: add wayland dependency
@ 2021-09-19  8:15 Fabrice Fontaine
  2021-09-19  8:31 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2021-09-19  8:15 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN, Thomas Petazzoni, Fabrice Fontaine

wayland is needed to avoid the following build failure raised since bump
to version 1.23 in commit 7eedc9cc1e0c3cce1c18cb150157cb2346075b23:

Build-time dependency wayland-scanner found: NO (tried pkgconfig and cmake)

../output-1/build/wayland-protocols-1.23/meson.build:11:0: ERROR: Dependency "wayland-scanner" not found, tried pkgconfig and cmake

Fixes:
 - http://autobuild.buildroot.org/results/2744e50465a9cd9d3726d23298ad6c943ef49a21

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/wayland-protocols/wayland-protocols.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/wayland-protocols/wayland-protocols.mk b/package/wayland-protocols/wayland-protocols.mk
index 41ab1e1c99..845b7e0d5e 100644
--- a/package/wayland-protocols/wayland-protocols.mk
+++ b/package/wayland-protocols/wayland-protocols.mk
@@ -11,6 +11,7 @@ WAYLAND_PROTOCOLS_LICENSE = MIT
 WAYLAND_PROTOCOLS_LICENSE_FILES = COPYING
 WAYLAND_PROTOCOLS_INSTALL_STAGING = YES
 WAYLAND_PROTOCOLS_INSTALL_TARGET = NO
+WAYLAND_PROTOCOLS_DEPENDENCIES = wayland
 
 WAYLAND_PROTOCOLS_CONF_OPTS = -Dtests=false
 
-- 
2.33.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/wayland-protocols: add wayland dependency
  2021-09-19  8:15 [Buildroot] [PATCH 1/1] package/wayland-protocols: add wayland dependency Fabrice Fontaine
@ 2021-09-19  8:31 ` Yann E. MORIN
  2021-09-19  8:33   ` Fabrice Fontaine
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2021-09-19  8:31 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Thomas Petazzoni, buildroot

Fabrice, All,

On 2021-09-19 10:15 +0200, Fabrice Fontaine spake thusly:
> wayland is needed to avoid the following build failure raised since bump
> to version 1.23 in commit 7eedc9cc1e0c3cce1c18cb150157cb2346075b23:
> 
> Build-time dependency wayland-scanner found: NO (tried pkgconfig and cmake)
> 
> ../output-1/build/wayland-protocols-1.23/meson.build:11:0: ERROR: Dependency "wayland-scanner" not found, tried pkgconfig and cmake

I guess what it really needs, in fact, is just host-wayland, which
provides wayland-scanner, no?

Regards,
Yann E. MORIN.

> Fixes:
>  - http://autobuild.buildroot.org/results/2744e50465a9cd9d3726d23298ad6c943ef49a21
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/wayland-protocols/wayland-protocols.mk | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/wayland-protocols/wayland-protocols.mk b/package/wayland-protocols/wayland-protocols.mk
> index 41ab1e1c99..845b7e0d5e 100644
> --- a/package/wayland-protocols/wayland-protocols.mk
> +++ b/package/wayland-protocols/wayland-protocols.mk
> @@ -11,6 +11,7 @@ WAYLAND_PROTOCOLS_LICENSE = MIT
>  WAYLAND_PROTOCOLS_LICENSE_FILES = COPYING
>  WAYLAND_PROTOCOLS_INSTALL_STAGING = YES
>  WAYLAND_PROTOCOLS_INSTALL_TARGET = NO
> +WAYLAND_PROTOCOLS_DEPENDENCIES = wayland
>  
>  WAYLAND_PROTOCOLS_CONF_OPTS = -Dtests=false
>  
> -- 
> 2.33.0
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/wayland-protocols: add wayland dependency
  2021-09-19  8:31 ` Yann E. MORIN
@ 2021-09-19  8:33   ` Fabrice Fontaine
  0 siblings, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2021-09-19  8:33 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Thomas Petazzoni, Buildroot Mailing List

Yann,

Le dim. 19 sept. 2021 à 10:31, Yann E. MORIN <yann.morin.1998@free.fr> a écrit :
>
> Fabrice, All,
>
> On 2021-09-19 10:15 +0200, Fabrice Fontaine spake thusly:
> > wayland is needed to avoid the following build failure raised since bump
> > to version 1.23 in commit 7eedc9cc1e0c3cce1c18cb150157cb2346075b23:
> >
> > Build-time dependency wayland-scanner found: NO (tried pkgconfig and cmake)
> >
> > ../output-1/build/wayland-protocols-1.23/meson.build:11:0: ERROR: Dependency "wayland-scanner" not found, tried pkgconfig and cmake
>
> I guess what it really needs, in fact, is just host-wayland, which
> provides wayland-scanner, no?
Indeed, I'll send a v2.
>
> Regards,
> Yann E. MORIN.
>
> > Fixes:
> >  - http://autobuild.buildroot.org/results/2744e50465a9cd9d3726d23298ad6c943ef49a21
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > ---
> >  package/wayland-protocols/wayland-protocols.mk | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/package/wayland-protocols/wayland-protocols.mk b/package/wayland-protocols/wayland-protocols.mk
> > index 41ab1e1c99..845b7e0d5e 100644
> > --- a/package/wayland-protocols/wayland-protocols.mk
> > +++ b/package/wayland-protocols/wayland-protocols.mk
> > @@ -11,6 +11,7 @@ WAYLAND_PROTOCOLS_LICENSE = MIT
> >  WAYLAND_PROTOCOLS_LICENSE_FILES = COPYING
> >  WAYLAND_PROTOCOLS_INSTALL_STAGING = YES
> >  WAYLAND_PROTOCOLS_INSTALL_TARGET = NO
> > +WAYLAND_PROTOCOLS_DEPENDENCIES = wayland
> >
> >  WAYLAND_PROTOCOLS_CONF_OPTS = -Dtests=false
> >
> > --
> > 2.33.0
> >
>
> --
> .-----------------.--------------------.------------------.--------------------.
> |  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
> | +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
> '------------------------------^-------^------------------^--------------------'
Best Regards,

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

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

end of thread, other threads:[~2021-09-19  8:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-19  8:15 [Buildroot] [PATCH 1/1] package/wayland-protocols: add wayland dependency Fabrice Fontaine
2021-09-19  8:31 ` Yann E. MORIN
2021-09-19  8:33   ` Fabrice Fontaine

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