All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail
@ 2013-06-26  2:32 Hongxu Jia
  2013-06-26  2:32 ` [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check Hongxu Jia
  2013-06-26  2:36 ` [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia
  0 siblings, 2 replies; 5+ messages in thread
From: Hongxu Jia @ 2013-06-26  2:32 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 4c27cce6688aa39852f3cba5e7b80ec279019605:

  layer.conf: avoid unnecessary early expansion with := (2013-03-19 16:33:11 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/fix-qt3
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-adt

Hongxu Jia (1):
  qt-x11-free: add missing DEPENDS on libglu for LSB Library Check

 recipes-qt3/qt3/qt-x11-free_3.3.7.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.8.1.2



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

* [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check
  2013-06-26  2:32 [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia
@ 2013-06-26  2:32 ` Hongxu Jia
  2013-06-28 10:50   ` Paul Eggleton
  2013-06-26  2:36 ` [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia
  1 sibling, 1 reply; 5+ messages in thread
From: Hongxu Jia @ 2013-06-26  2:32 UTC (permalink / raw)
  To: openembedded-devel

When libglu is missing in qt-x11-free's DEPENDS, the LSB 4.1 Library
Check will fail:
...
Checking library symbols (libqt-mt.so.3)
Did not find _ZN10QGLContext10currentCtxE (unversioned) in libqt-mt.so.3
Unmangled symbol name: QGLContext::currentCtx
...

[YOCTO #4016]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 recipes-qt3/qt3/qt-x11-free_3.3.7.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
index a67dd63..af4fc01 100644
--- a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
+++ b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
@@ -1,4 +1,4 @@
-DEPENDS = "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext libxrender libxrandr libxcursor  virtual/libgl"
+DEPENDS = "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext libxrender libxrandr libxcursor  virtual/libgl libglu"
 PROVIDES = "qt3x11"
 PR = "${INC_PR}.1"
 
-- 
1.8.1.2



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

* Re: [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail
  2013-06-26  2:32 [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia
  2013-06-26  2:32 ` [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check Hongxu Jia
@ 2013-06-26  2:36 ` Hongxu Jia
  1 sibling, 0 replies; 5+ messages in thread
From: Hongxu Jia @ 2013-06-26  2:36 UTC (permalink / raw)
  To: openembedded-devel

I should add layer's name in title, such as:

[oe] [meta-qt3] [PATCH 0/1]qt-x11-free: fix LSB Library Check 
libqt-mt.so.3 fail

I will resend the patch

//Hongxu


On 06/26/2013 10:32 AM, Hongxu Jia wrote:
> The following changes since commit 4c27cce6688aa39852f3cba5e7b80ec279019605:
>
>    layer.conf: avoid unnecessary early expansion with := (2013-03-19 16:33:11 +0000)
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib hongxu/fix-qt3
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-adt
>
> Hongxu Jia (1):
>    qt-x11-free: add missing DEPENDS on libglu for LSB Library Check
>
>   recipes-qt3/qt3/qt-x11-free_3.3.7.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>



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

* Re: [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check
  2013-06-26  2:32 ` [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check Hongxu Jia
@ 2013-06-28 10:50   ` Paul Eggleton
  2013-06-29  5:36     ` Hongxu Jia
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2013-06-28 10:50 UTC (permalink / raw)
  To: Hongxu Jia; +Cc: openembedded-devel

Hi Hongxu,

On Wednesday 26 June 2013 10:38:52 Hongxu Jia wrote:
> When libglu is missing in qt-x11-free's DEPENDS, the LSB 4.1 Library
> Check will fail:
> ...
> Checking library symbols (libqt-mt.so.3)
> Did not find _ZN10QGLContext10currentCtxE (unversioned) in libqt-mt.so.3
> Unmangled symbol name: QGLContext::currentCtx
> ...
> 
> [YOCTO #4016]
> 
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> ---
>  recipes-qt3/qt3/qt-x11-free_3.3.7.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
> b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb index a67dd63..af4fc01 100644
> --- a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
> +++ b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
> @@ -1,4 +1,4 @@
> -DEPENDS = "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext
> libxrender libxrandr libxcursor  virtual/libgl" +DEPENDS =
> "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext
> libxrender libxrandr libxcursor  virtual/libgl libglu" PROVIDES = "qt3x11"
>  PR = "${INC_PR}.1"

Merged to meta-qt3, thanks.

I noticed we didn't actually specify in the README in meta-qt3 where patches 
should be sent, I have now fixed this. In future if you have any patches for 
this layer could you please send them to the yocto@yoctoproject.org mailing 
list.

Thanks,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check
  2013-06-28 10:50   ` Paul Eggleton
@ 2013-06-29  5:36     ` Hongxu Jia
  0 siblings, 0 replies; 5+ messages in thread
From: Hongxu Jia @ 2013-06-29  5:36 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-devel

Hi Paul,

Got it

Thanks,
Hongxu

On 06/28/2013 06:50 PM, Paul Eggleton wrote:
> Hi Hongxu,
>
> On Wednesday 26 June 2013 10:38:52 Hongxu Jia wrote:
>> When libglu is missing in qt-x11-free's DEPENDS, the LSB 4.1 Library
>> Check will fail:
>> ...
>> Checking library symbols (libqt-mt.so.3)
>> Did not find _ZN10QGLContext10currentCtxE (unversioned) in libqt-mt.so.3
>> Unmangled symbol name: QGLContext::currentCtx
>> ...
>>
>> [YOCTO #4016]
>>
>> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
>> ---
>>   recipes-qt3/qt3/qt-x11-free_3.3.7.bb | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
>> b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb index a67dd63..af4fc01 100644
>> --- a/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
>> +++ b/recipes-qt3/qt3/qt-x11-free_3.3.7.bb
>> @@ -1,4 +1,4 @@
>> -DEPENDS = "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext
>> libxrender libxrandr libxcursor  virtual/libgl" +DEPENDS =
>> "qt-x11-free-native freetype virtual/libx11 libxmu libxft libxext
>> libxrender libxrandr libxcursor  virtual/libgl libglu" PROVIDES = "qt3x11"
>>   PR = "${INC_PR}.1"
> Merged to meta-qt3, thanks.
>
> I noticed we didn't actually specify in the README in meta-qt3 where patches
> should be sent, I have now fixed this. In future if you have any patches for
> this layer could you please send them to the yocto@yoctoproject.org mailing
> list.
>
> Thanks,
> Paul
>



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

end of thread, other threads:[~2013-06-29  5:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-26  2:32 [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia
2013-06-26  2:32 ` [PATCH 1/1] qt-x11-free: add missing DEPENDS on libglu for LSB Library Check Hongxu Jia
2013-06-28 10:50   ` Paul Eggleton
2013-06-29  5:36     ` Hongxu Jia
2013-06-26  2:36 ` [PATCH 0/1]qt-x11-free: fix LSB Library Check libqt-mt.so.3 fail Hongxu Jia

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.