From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by mail.openembedded.org (Postfix) with ESMTP id B61936C13D for ; Fri, 27 Sep 2019 07:29:38 +0000 (UTC) Received: from ALA-HCB.corp.ad.wrs.com (ala-hcb.corp.ad.wrs.com [147.11.189.41]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id x8R7T33t029507 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Fri, 27 Sep 2019 00:29:13 -0700 Received: from [128.224.158.233] (128.224.158.233) by ALA-HCB.corp.ad.wrs.com (147.11.189.41) with Microsoft SMTP Server id 14.3.468.0; Fri, 27 Sep 2019 00:28:52 -0700 To: Khem Raj References: <7624506c-1cc4-347c-feb2-faa5f2538e21@windriver.com> From: Robert Yang Message-ID: <6b62ca50-943f-6957-8f7a-520cf4129cd5@windriver.com> Date: Fri, 27 Sep 2019 15:28:34 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Cc: Patches and discussions about the oe-core layer Subject: Re: [PATCH v2 2/3] apr: Fix configure error for nativesdk X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 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: Fri, 27 Sep 2019 07:29:38 -0000 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit On 9/26/19 10:12 PM, Khem Raj wrote: > On Wed, Sep 25, 2019 at 10:51 PM Robert Yang wrote: >> >> Hi Khem, >> >> On 9/26/19 10:57 AM, Khem Raj wrote: >>> On Wed, Sep 25, 2019 at 7:52 PM Robert Yang wrote: >>>> >>>> Fixed: >>>> $ bitbake nativesdk-apr >>>> buildconf: libtool not found. >>>> You need libtool version 1.4 or newer installed >>>> >>>> Signed-off-by: Robert Yang >>>> --- >>>> meta/recipes-support/apr/apr_1.7.0.bb | 2 +- >>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>> >>>> diff --git a/meta/recipes-support/apr/apr_1.7.0.bb b/meta/recipes-support/apr/apr_1.7.0.bb >>>> index 09a65bf..a9d98be 100644 >>>> --- a/meta/recipes-support/apr/apr_1.7.0.bb >>>> +++ b/meta/recipes-support/apr/apr_1.7.0.bb >>>> @@ -1,7 +1,7 @@ >>>> SUMMARY = "Apache Portable Runtime (APR) library" >>>> HOMEPAGE = "http://apr.apache.org/" >>>> SECTION = "libs" >>>> -DEPENDS = "util-linux" >>>> +DEPENDS = "util-linux libtool" >>> >>> hmmm packages usually need libtoolize so please check if thats the >>> case or maybe patch apr to >>> do so., thereafter you can just DEPEND on libtool-cross >> >> In do_configure: >> >> libtool='${HOST_SYS}-libtool' ./buildconf >> >> So it requires libtool which is x86_64-pokysdk-linux-libtool when build >> nativesdk-apr. The libtool-cross is already in default depends, and it >> doesn't work when build nativesdk-apr, so I added libtool to the DEPENDS. >> > > perhaps something like this might be interesting > https://sources.debian.org/src/apr/1.6.5-1/debian/patches/fix_apr-config.patch/ > https://sources.debian.org/src/apr/1.6.5-1/debian/patches/libtoolize_check.patch/ Thanks, this patch is useful for oe-core, I will add it. // Robrt > >> // Robert >> >>> >>>> >>>> LICENSE = "Apache-2.0" >>>> LIC_FILES_CHKSUM = "file://LICENSE;md5=4dfd4cd216828c8cae5de5a12f3844c8 \ >>>> -- >>>> 2.7.4 >>>> >>>> -- >>>> _______________________________________________ >>>> Openembedded-core mailing list >>>> Openembedded-core@lists.openembedded.org >>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core >>> >