All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] mesa 7.10: add missing dependency makedepend
@ 2011-02-10 14:25 Yu Ke
  2011-02-10 14:25 ` [PATCH 1/2] mesa-xlib-7.10: " Yu Ke
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yu Ke @ 2011-02-10 14:25 UTC (permalink / raw)
  To: poky

the last upgrade of mesa 7.10 introduce a depdency of makedepend,
which however is not listed in the recipe, thus cause do_configure
failure, both in mesa-dri_7.10 and mesa-xlib_7.10.

this patch set add the missing dependency to resolev this issue.
this patch set has been tested by building mesa from scratch in
qemux86, qemuarm and qemumips

one lesson I got is: always build from scratch for testing.
last time the mesa 7.10 upgrade patch is tested in incremental build,
thus the missing depdency is not showed up.


Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: kyu3/mesa-fix
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/mesa-fix

Thanks,
    Yu Ke <ke.yu@intel.com>
---


Yu Ke (2):
  mesa-xlib-7.10: add missing dependency makedepend
  mesa-dri-7.10: add missing dependency makedepend

 meta/recipes-graphics/mesa/mesa-dri_7.10.bb  |    4 ++--
 meta/recipes-graphics/mesa/mesa-xlib_7.10.bb |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)



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

* [PATCH 1/2] mesa-xlib-7.10: add missing dependency makedepend
  2011-02-10 14:25 [PATCH 0/2] mesa 7.10: add missing dependency makedepend Yu Ke
@ 2011-02-10 14:25 ` Yu Ke
  2011-02-10 14:25 ` [PATCH 2/2] mesa-dri-7.10: " Yu Ke
  2011-02-10 15:28 ` [PATCH 0/2] mesa 7.10: " Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Yu Ke @ 2011-02-10 14:25 UTC (permalink / raw)
  To: poky

mesa 7.10 has dependency on makedepend-native, so add it
to resolve the configure failure

Signed-off-by: Yu Ke <ke.yu@intel.com>
---
 meta/recipes-graphics/mesa/mesa-xlib_7.10.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/mesa/mesa-xlib_7.10.bb b/meta/recipes-graphics/mesa/mesa-xlib_7.10.bb
index 5cc719e..c8eb88f 100644
--- a/meta/recipes-graphics/mesa/mesa-xlib_7.10.bb
+++ b/meta/recipes-graphics/mesa/mesa-xlib_7.10.bb
@@ -12,9 +12,9 @@ LIC_FILES_CHKSUM = "file://docs/license.html;md5=7a3373c039b6b925c427755a4f779c1
 PROTO_DEPS = "xf86driproto glproto"
 LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native"
 
-DEPENDS = "${PROTO_DEPS}  ${LIB_DEPS}"
+DEPENDS = "${PROTO_DEPS}  ${LIB_DEPS} makedepend-native"
 
 PE = "1"
-PR = "r0"
+PR = "r1"
 
 EXTRA_OECONF += "--with-driver=xlib"
-- 
1.7.0.4



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

* [PATCH 2/2] mesa-dri-7.10: add missing dependency makedepend
  2011-02-10 14:25 [PATCH 0/2] mesa 7.10: add missing dependency makedepend Yu Ke
  2011-02-10 14:25 ` [PATCH 1/2] mesa-xlib-7.10: " Yu Ke
@ 2011-02-10 14:25 ` Yu Ke
  2011-02-10 15:28 ` [PATCH 0/2] mesa 7.10: " Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Yu Ke @ 2011-02-10 14:25 UTC (permalink / raw)
  To: poky

mesa 7.10 has dependency on makedepend-native, so add it
to resolve the configure failure

Signed-off-by: Yu Ke <ke.yu@intel.com>
---
 meta/recipes-graphics/mesa/mesa-dri_7.10.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/mesa/mesa-dri_7.10.bb b/meta/recipes-graphics/mesa/mesa-dri_7.10.bb
index cca1cc9..1865dd4 100644
--- a/meta/recipes-graphics/mesa/mesa-dri_7.10.bb
+++ b/meta/recipes-graphics/mesa/mesa-dri_7.10.bb
@@ -6,9 +6,9 @@ PROTO_DEPS = "xf86driproto glproto dri2proto"
 LIB_DEPS = "libdrm virtual/libx11 libxext libxxf86vm libxdamage libxfixes expat \
             libxml2-native"
 
-DEPENDS = "${PROTO_DEPS}  ${LIB_DEPS}"
+DEPENDS = "${PROTO_DEPS}  ${LIB_DEPS} makedepend-native"
 
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \
            file://talloc-removal.patch \
-- 
1.7.0.4



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

* Re: [PATCH 0/2] mesa 7.10: add missing dependency makedepend
  2011-02-10 14:25 [PATCH 0/2] mesa 7.10: add missing dependency makedepend Yu Ke
  2011-02-10 14:25 ` [PATCH 1/2] mesa-xlib-7.10: " Yu Ke
  2011-02-10 14:25 ` [PATCH 2/2] mesa-dri-7.10: " Yu Ke
@ 2011-02-10 15:28 ` Richard Purdie
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-02-10 15:28 UTC (permalink / raw)
  To: Yu Ke; +Cc: poky

On Thu, 2011-02-10 at 22:25 +0800, Yu Ke wrote:
> the last upgrade of mesa 7.10 introduce a depdency of makedepend,
> which however is not listed in the recipe, thus cause do_configure
> failure, both in mesa-dri_7.10 and mesa-xlib_7.10.
> 
> this patch set add the missing dependency to resolev this issue.
> this patch set has been tested by building mesa from scratch in
> qemux86, qemuarm and qemumips
> 
> one lesson I got is: always build from scratch for testing.
> last time the mesa 7.10 upgrade patch is tested in incremental build,
> thus the missing depdency is not showed up.
> 
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: kyu3/mesa-fix
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/mesa-fix
> 
> Thanks,
>     Yu Ke <ke.yu@intel.com>

Merged to master, thanks!

Richard



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

end of thread, other threads:[~2011-02-10 15:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-10 14:25 [PATCH 0/2] mesa 7.10: add missing dependency makedepend Yu Ke
2011-02-10 14:25 ` [PATCH 1/2] mesa-xlib-7.10: " Yu Ke
2011-02-10 14:25 ` [PATCH 2/2] mesa-dri-7.10: " Yu Ke
2011-02-10 15:28 ` [PATCH 0/2] mesa 7.10: " Richard Purdie

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.