All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] weston: disable-egl when no wayland
@ 2014-02-24  9:26 Robert Yang
  2014-02-24  9:26 ` [PATCH 1/1] " Robert Yang
  0 siblings, 1 reply; 6+ messages in thread
From: Robert Yang @ 2014-02-24  9:26 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 6a708c3edb5da3d73730eaf21d8c6c4f79972e9d:

  x246: Disable Altivec asm when SPE is enabled. (2014-02-22 15:22:24 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib rbt/weston
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rbt/weston

Robert Yang (1):
  weston: disable-egl when no wayland

 meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.7.10.4



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

* [PATCH 1/1] weston: disable-egl when no wayland
  2014-02-24  9:26 [PATCH 0/1] weston: disable-egl when no wayland Robert Yang
@ 2014-02-24  9:26 ` Robert Yang
  2014-02-24 14:44   ` Valentin Popa
  0 siblings, 1 reply; 6+ messages in thread
From: Robert Yang @ 2014-02-24  9:26 UTC (permalink / raw)
  To: openembedded-core

There was a configure error when build weston without wayland:

configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client wayland-egl) were not met:

No package 'wayland-egl' found

[YOCTO #5867]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb b/meta/recipes-graphics/wayland/weston_1.4.0.bb
index 5c389a0..e0c354d 100644
--- a/meta/recipes-graphics/wayland/weston_1.4.0.bb
+++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb
@@ -39,7 +39,7 @@ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev way
 # Weston on KMS
 PACKAGECONFIG[kms] = "--enable-drm-compositor,--disable-drm-compositor,drm udev virtual/mesa mtdev"
 # Weston on Wayland (nested Weston)
-PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa"
+PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl --disable-wayland-compositor,virtual/mesa"
 # Weston on X11
 PACKAGECONFIG[x11] = "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 libxcb libxcb libxcursor cairo"
 # Headless Weston
-- 
1.7.10.4



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

* Re: [PATCH 1/1] weston: disable-egl when no wayland
  2014-02-24  9:26 ` [PATCH 1/1] " Robert Yang
@ 2014-02-24 14:44   ` Valentin Popa
  2014-02-24 15:29     ` Valentin Popa
  0 siblings, 1 reply; 6+ messages in thread
From: Valentin Popa @ 2014-02-24 14:44 UTC (permalink / raw)
  To: Robert Yang, openembedded-core

On 02/24/2014 11:26 AM, Robert Yang wrote:
> There was a configure error when build weston without wayland:
>
> configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client wayland-egl) were not met:
>
> No package 'wayland-egl' found
>
> [YOCTO #5867]
>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>   meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb b/meta/recipes-graphics/wayland/weston_1.4.0.bb
> index 5c389a0..e0c354d 100644
> --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb
> +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb
> @@ -39,7 +39,7 @@ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev way
>   # Weston on KMS
>   PACKAGECONFIG[kms] = "--enable-drm-compositor,--disable-drm-compositor,drm udev virtual/mesa mtdev"
>   # Weston on Wayland (nested Weston)
> -PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa"
> +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl --disable-wayland-compositor,virtual/mesa"
>   # Weston on X11
>   PACKAGECONFIG[x11] = "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 libxcb libxcb libxcursor cairo"
>   # Headless Weston
How did you build weston without wayland?
Have you built wayland without libwayland-egl and then tried to build 
weston?


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

* Re: [PATCH 1/1] weston: disable-egl when no wayland
  2014-02-24 14:44   ` Valentin Popa
@ 2014-02-24 15:29     ` Valentin Popa
  2014-02-24 16:12       ` Martin Jansa
  2014-02-25  9:35       ` Robert Yang
  0 siblings, 2 replies; 6+ messages in thread
From: Valentin Popa @ 2014-02-24 15:29 UTC (permalink / raw)
  To: Robert Yang, openembedded-core

On 02/24/2014 04:44 PM, Valentin Popa wrote:
> On 02/24/2014 11:26 AM, Robert Yang wrote:
>> There was a configure error when build weston without wayland:
>>
>> configure: error: Package requirements (egl >= 7.10 glesv2 
>> wayland-client wayland-egl) were not met:
>>
>> No package 'wayland-egl' found
>>
>> [YOCTO #5867]
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>>   meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb 
>> b/meta/recipes-graphics/wayland/weston_1.4.0.bb
>> index 5c389a0..e0c354d 100644
>> --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb
>> +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb
>> @@ -39,7 +39,7 @@ PACKAGECONFIG ??= 
>> "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev way
>>   # Weston on KMS
>>   PACKAGECONFIG[kms] = 
>> "--enable-drm-compositor,--disable-drm-compositor,drm udev 
>> virtual/mesa mtdev"
>>   # Weston on Wayland (nested Weston)
>> -PACKAGECONFIG[wayland] = 
>> "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa"
>> +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl 
>> --disable-wayland-compositor,virtual/mesa"
>>   # Weston on X11
>>   PACKAGECONFIG[x11] = 
>> "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 
>> libxcb libxcb libxcursor cairo"
>>   # Headless Weston
> How did you build weston without wayland?
> Have you built wayland without libwayland-egl and then tried to build 
> weston?
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


I got it, so you are building with :
DISTRO_FEATURES_remove="wayland"
DISTRO_FEATURES_append = " x11"

and mesa doesn't build libwayland-egl, but weston checks for EGL.

Looks good to me, but the subject/message is not so clear. Can you 
please modify it and resend?

Thanks!





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

* Re: [PATCH 1/1] weston: disable-egl when no wayland
  2014-02-24 15:29     ` Valentin Popa
@ 2014-02-24 16:12       ` Martin Jansa
  2014-02-25  9:35       ` Robert Yang
  1 sibling, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2014-02-24 16:12 UTC (permalink / raw)
  To: Valentin Popa; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 2653 bytes --]

On Mon, Feb 24, 2014 at 05:29:42PM +0200, Valentin Popa wrote:
> On 02/24/2014 04:44 PM, Valentin Popa wrote:
> > On 02/24/2014 11:26 AM, Robert Yang wrote:
> >> There was a configure error when build weston without wayland:
> >>
> >> configure: error: Package requirements (egl >= 7.10 glesv2 
> >> wayland-client wayland-egl) were not met:
> >>
> >> No package 'wayland-egl' found
> >>
> >> [YOCTO #5867]
> >>
> >> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> >> ---
> >>   meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
> >>   1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb 
> >> b/meta/recipes-graphics/wayland/weston_1.4.0.bb
> >> index 5c389a0..e0c354d 100644
> >> --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb
> >> +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb
> >> @@ -39,7 +39,7 @@ PACKAGECONFIG ??= 
> >> "${@base_contains('DISTRO_FEATURES', 'wayland', 'kms fbdev way
> >>   # Weston on KMS
> >>   PACKAGECONFIG[kms] = 
> >> "--enable-drm-compositor,--disable-drm-compositor,drm udev 
> >> virtual/mesa mtdev"
> >>   # Weston on Wayland (nested Weston)
> >> -PACKAGECONFIG[wayland] = 
> >> "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa"
> >> +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl 
> >> --disable-wayland-compositor,virtual/mesa"
> >>   # Weston on X11
> >>   PACKAGECONFIG[x11] = 
> >> "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 
> >> libxcb libxcb libxcursor cairo"
> >>   # Headless Weston
> > How did you build weston without wayland?
> > Have you built wayland without libwayland-egl and then tried to build 
> > weston?
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> 
> 
> I got it, so you are building with :
> DISTRO_FEATURES_remove="wayland"
> DISTRO_FEATURES_append = " x11"

BTW: This is the reason why weston was failing in:
http://www.openembedded.org/wiki/Bitbake_World_Status

> and mesa doesn't build libwayland-egl, but weston checks for EGL.
> 
> Looks good to me, but the subject/message is not so clear. Can you 
> please modify it and resend?
> 
> Thanks!
> 
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH 1/1] weston: disable-egl when no wayland
  2014-02-24 15:29     ` Valentin Popa
  2014-02-24 16:12       ` Martin Jansa
@ 2014-02-25  9:35       ` Robert Yang
  1 sibling, 0 replies; 6+ messages in thread
From: Robert Yang @ 2014-02-25  9:35 UTC (permalink / raw)
  To: Valentin Popa, openembedded-core



On 02/24/2014 11:29 PM, Valentin Popa wrote:
> On 02/24/2014 04:44 PM, Valentin Popa wrote:
>> On 02/24/2014 11:26 AM, Robert Yang wrote:
>>> There was a configure error when build weston without wayland:
>>>
>>> configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client
>>> wayland-egl) were not met:
>>>
>>> No package 'wayland-egl' found
>>>
>>> [YOCTO #5867]
>>>
>>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>>> ---
>>>   meta/recipes-graphics/wayland/weston_1.4.0.bb |    2 +-
>>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/meta/recipes-graphics/wayland/weston_1.4.0.bb
>>> b/meta/recipes-graphics/wayland/weston_1.4.0.bb
>>> index 5c389a0..e0c354d 100644
>>> --- a/meta/recipes-graphics/wayland/weston_1.4.0.bb
>>> +++ b/meta/recipes-graphics/wayland/weston_1.4.0.bb
>>> @@ -39,7 +39,7 @@ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES',
>>> 'wayland', 'kms fbdev way
>>>   # Weston on KMS
>>>   PACKAGECONFIG[kms] = "--enable-drm-compositor,--disable-drm-compositor,drm
>>> udev virtual/mesa mtdev"
>>>   # Weston on Wayland (nested Weston)
>>> -PACKAGECONFIG[wayland] =
>>> "--enable-wayland-compositor,--disable-wayland-compositor,virtual/mesa"
>>> +PACKAGECONFIG[wayland] = "--enable-wayland-compositor,--disable-egl
>>> --disable-wayland-compositor,virtual/mesa"
>>>   # Weston on X11
>>>   PACKAGECONFIG[x11] =
>>> "--enable-x11-compositor,--disable-x11-compositor,virtual/libx11 libxcb
>>> libxcb libxcursor cairo"
>>>   # Headless Weston
>> How did you build weston without wayland?
>> Have you built wayland without libwayland-egl and then tried to build weston?
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>
> I got it, so you are building with :
> DISTRO_FEATURES_remove="wayland"
> DISTRO_FEATURES_append = " x11"
>
> and mesa doesn't build libwayland-egl, but weston checks for EGL.
>
> Looks good to me, but the subject/message is not so clear. Can you please modify
> it and resend?
>

Thanks, I updated the subject to:

weston: fix build without wayland in distro_features

And also updated the repo:

git://git.pokylinux.org/poky-contrib rbt/weston


// Robert

> Thanks!
>
>
>
>


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

end of thread, other threads:[~2014-02-25  9:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-24  9:26 [PATCH 0/1] weston: disable-egl when no wayland Robert Yang
2014-02-24  9:26 ` [PATCH 1/1] " Robert Yang
2014-02-24 14:44   ` Valentin Popa
2014-02-24 15:29     ` Valentin Popa
2014-02-24 16:12       ` Martin Jansa
2014-02-25  9:35       ` Robert Yang

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.