From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.windriver.com (mail1.windriver.com [147.11.146.13]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id BD913E006F5 for ; Thu, 3 Jan 2013 08:09:04 -0800 (PST) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.14.5/8.14.3) with ESMTP id r03G92Uo025792 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Thu, 3 Jan 2013 08:09:02 -0800 (PST) Received: from msp-dhcp10.wrs.com (172.25.34.10) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.2.318.4; Thu, 3 Jan 2013 08:09:01 -0800 Message-ID: <50E5AD24.7010503@windriver.com> Date: Thu, 3 Jan 2013 10:09:08 -0600 From: Mark Hatle Organization: Wind River Systems User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Marko Lindqvist References: <1357199532-22977-1-git-send-email-cazfi74@gmail.com> <50E5AB37.10900@windriver.com> In-Reply-To: <50E5AB37.10900@windriver.com> Cc: yocto@yoctoproject.org Subject: Re: Fix prelink build with automake-1.13 X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jan 2013 16:09:04 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit On 1/3/13 10:00 AM, Mark Hatle wrote: > On 1/3/13 1:52 AM, Marko Lindqvist wrote: >> [PATCH] fix build with automake-1.13. >> >> Long obsolete AM_CONFIG_HEADER is completely removed from automake-1.13, >> which errors out upon seeing it. >> configure.in -> configure.ac rename is not strictly necessary yet, >> use of deprecated name still gives only warning. >> >> Problem in dropping obsolete constructs is that support for autotools >> versions so ancient that now-obsolete way is the only way to do things. >> configure.in seems to have AC_PREREQ(2.13), but with these changes >> (if not earlier) such an ancient autoconf will not do. >> > > Do you know if the change to AC_CONFIG_HEADER (from AM_CONFIG_HEADER) is > supported in autoconf 2.13? Assuming it likely is, I'll get this merged. > Otherwise we should expect to bump the AC_PREREQ. > > BTW I'll check and see if this patch is specific to the cross-prelinker or > applicable to the upstream prelink as well. Seems like if it's applicable there > they may want it as well.. Responding to my own query. I just checked and the cross-prelinker is already setup for AC_PREREQ(2.50): http://git.yoctoproject.org/cgit/cgit.cgi/prelink-cross/tree/trunk/configure.in?h=cross_prelink (The unmodified upstream -- master branch -- is still using AC_PREREQ(2.13). But we don't use that in OE/Yocto Project work.) The -- cross_prelink branch -- does still have the AM_CONFIG_HEADER. I'll get that updated. I will also rename the configure.in to configure.ac and adjust anything else that references that. --Mark > --Mark > >> - ML >> >