From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by mail.openembedded.org (Postfix) with ESMTP id 6371465D40 for ; Wed, 7 Jan 2015 02:25:47 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id fl12so1550726pdb.11 for ; Tue, 06 Jan 2015 18:25:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=FvNYMdh+RNheRE1fmrwezxVCMWcJcZiBZYhpYVDSOwc=; b=uaePh6/4sEL60QCaPgzKtt4E6dFTTxP6IZJKpkAxrmpEi4vrD2W+chxRH2pLl7kewb tNhrN521LK9oWqONvJobdELuVAcvTzZQNrTXYMqYNFRCa7gLqhgpWSqy5VQhuWr2qbwd 8jGCeUVH0Ja2UNqNcbEpdfNMiNVjk6xiXc2k8gHrR376Wn+tn6p4M0R4zcQsJjnBGTPo pIDDsqe1grnxclpXJj+yXh/XDHiQKljenJ93R49X4LkdMcRoR61upoFB0bFg9NwSFP8F IY5/LacgG7+kpDaok5umSp45PD6WdBwbJneSVzqt352287VCWkRhryErkYbFgBmcPEiv E9MQ== X-Received: by 10.68.94.131 with SMTP id dc3mr939830pbb.106.1420597548185; Tue, 06 Jan 2015 18:25:48 -0800 (PST) Received: from [10.43.100.29] (64.2.3.194.ptr.us.xo.net. [64.2.3.194]) by mx.google.com with ESMTPSA id oi5sm197239pbb.7.2015.01.06.18.25.46 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Jan 2015 18:25:47 -0800 (PST) Message-ID: <54AC9929.8090702@gmail.com> Date: Tue, 06 Jan 2015 18:25:45 -0800 From: akuster808 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: openembedded-devel@lists.openembedded.org References: <1420560067-8617-1-git-send-email-akuster808@gmail.com> <20150106162809.GB12498@jama> In-Reply-To: <20150106162809.GB12498@jama> Subject: Re: [meta-oe][PATCH 1/2] log4c: fix expat rdepends issue X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jan 2015 02:25:49 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 01/06/2015 08:28 AM, Martin Jansa wrote: > On Tue, Jan 06, 2015 at 08:01:06AM -0800, Armin Kuster wrote: >> add --without-expat >> >> Signed-off-by: Armin Kuster >> --- >> meta-oe/recipes-support/log4c/log4c_1.2.4.bb | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/meta-oe/recipes-support/log4c/log4c_1.2.4.bb b/meta-oe/recipes-support/log4c/log4c_1.2.4.bb >> index 43e0746..0e58db7 100644 >> --- a/meta-oe/recipes-support/log4c/log4c_1.2.4.bb >> +++ b/meta-oe/recipes-support/log4c/log4c_1.2.4.bb >> @@ -12,5 +12,7 @@ S = "${WORKDIR}/${PN}-${PV}" >> >> EXTRA_OECONF = "--prefix=/usr" >> >> -inherit autotools >> +PACKAGECONFIG ??="" >> +PACKAGECONFIG[expat] = ", --without-expat, expat, expat" > > Is explicit expat runtime dependency needed when enabled? Yep, need both. rdepends by itself did not fix the compile issue I saw. /home/akuster/oss/mywork/poky/build/tmp/work/core2-64-poky-linux/log4c/1.2.4-r0/log4c-1.2.4/src/sd/domnode-expat.c:51:19: fatal error: expat.h: No such file or directory | #include | ^ | compilation terminated. | make[4]: *** [domnode-expat.lo] Error 1 - armin > > It was detected by dependency test so I don't think so (so it's > correctly added by shlibs providers when enabled/detected). > >> +inherit autotools >> -- >> 1.9.1 >> >> -- >> _______________________________________________ >> Openembedded-devel mailing list >> Openembedded-devel@lists.openembedded.org >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel > > >