From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dan.rpsys.net ([93.97.175.187]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1US2ro-0000n0-Vl for openembedded-core@lists.openembedded.org; Tue, 16 Apr 2013 12:12:08 +0200 Received: from localhost (dan.rpsys.net [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r3G9sPx1026281; Tue, 16 Apr 2013 10:54:49 +0100 X-Virus-Scanned: Debian amavisd-new at dan.rpsys.net Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 1z9qTOTBabBW; Tue, 16 Apr 2013 10:54:48 +0100 (BST) Received: from [192.168.3.10] (rpvlan0 [192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id r3G9sjph026289 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Tue, 16 Apr 2013 10:54:47 +0100 Message-ID: <1366106058.8670.89.camel@ted> From: Richard Purdie To: Koen Kooi Date: Tue, 16 Apr 2013 10:54:18 +0100 In-Reply-To: <1366103412-10924-1-git-send-email-koen@dominion.thruhere.net> References: <1366103412-10924-1-git-send-email-koen@dominion.thruhere.net> X-Mailer: Evolution 3.6.2-0ubuntu0.1 Mime-Version: 1.0 Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH] pango: add libpng to DEPENDS X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Apr 2013 10:12:22 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Tue, 2013-04-16 at 11:10 +0200, Koen Kooi wrote: > Pango links indirectly to libpng through the cairo-png dependency, but > does encode the libpng version in its .la files. Changing libpng > versions will make a rebuild fail, so let's cheat a bit to let sstate > rebuild pango as well to get around this. > > Signed-off-by: Koen Kooi > --- > meta/recipes-graphics/pango/pango.inc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) This doesn't follow. If pango -> cairo -> libpng and libpng changes, both cairo and pango will rebuild. What might be the problem is that autotools (or more likely libtool) isn't rebuilding correctly. This was solved with the separate build directory code. Have you enabled that? Cheers, Richard > diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc > index f622903..c1beb9e 100644 > --- a/meta/recipes-graphics/pango/pango.inc > +++ b/meta/recipes-graphics/pango/pango.inc > @@ -10,7 +10,7 @@ SECTION = "libs" > LICENSE = "LGPLv2.0+" > > X11DEPENDS = "virtual/libx11 libxft" > -DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv cairo elfutils harfbuzz" > +DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv cairo elfutils harfbuzz libpng" > > PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" > PACKAGECONFIG[x11] = "--with-x,--without-x,${X11DEPENDS}"