From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28610 invoked by alias); 2 Apr 2006 23:53:40 -0000 Received: (qmail 28592 invoked by uid 22791); 2 Apr 2006 23:53:39 -0000 X-Spam-Check-By: sourceware.org Received: from ausmtp04.au.ibm.com (HELO ausmtp04.au.ibm.com) (202.81.18.152) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 02 Apr 2006 23:53:37 +0000 Received: from sd0208e0.au.ibm.com (d23rh904.au.ibm.com [202.81.18.202]) by ausmtp04.au.ibm.com (8.13.6/8.13.5) with ESMTP id k3302KBd128100; Mon, 3 Apr 2006 10:02:20 +1000 Received: from d23av04.au.ibm.com (d23av04.au.ibm.com [9.190.250.237]) by sd0208e0.au.ibm.com (8.12.10/NCO/VER6.8) with ESMTP id k32Nul21152834; Mon, 3 Apr 2006 09:56:47 +1000 Received: from d23av04.au.ibm.com (loopback [127.0.0.1]) by d23av04.au.ibm.com (8.12.11/8.13.3) with ESMTP id k32NrSaA006345; Mon, 3 Apr 2006 09:53:28 +1000 Received: from ozlabs.au.ibm.com (ozlabs.au.ibm.com [9.190.163.12]) by d23av04.au.ibm.com (8.12.11/8.12.11) with ESMTP id k32NrSJt006262; Mon, 3 Apr 2006 09:53:28 +1000 Received: by ozlabs.au.ibm.com (Postfix, from userid 1017) id CBC5C73547; Mon, 3 Apr 2006 09:54:18 +1000 (EST) Date: Sun, 02 Apr 2006 23:53:00 -0000 From: Ben Elliston To: Eli Zaretskii Cc: gdb-patches@sourceware.org, newlib@sourceware.org, cygwin-patches@sourceware.org Subject: Re: raising minimum Texinfo requirement in src tree Message-ID: <20060402235418.GA20771@ozlabs.au.ibm.com> References: <20060331024135.GB31847@ozlabs.au.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-04/txt/msg00010.txt.bz2 > Which patch was that? Can you show it or give a URL? I don't > remember seeing such a patch on gdb-patches, but my memory is not > what it used to be. 2006-03-31 Ben Elliston PR binutils/1860 * configure.in: Require makeinfo 4.4 or higher. * configure: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/configure.in,v retrieving revision 1.301 retrieving revision 1.302 diff -u -p -r1.301 -r1.302 --- configure.in 14 Mar 2006 16:10:08 -0000 1.301 +++ configure.in 31 Mar 2006 02:32:20 -0000 1.302 @@ -2203,10 +2203,10 @@ case " $build_configdirs " in *" texinfo "*) MAKEINFO='$$r/$(BUILD_SUBDIR)/texinfo/makeinfo/makeinfo' ;; *) changequote(,) - # For an installed makeinfo, we require it to be from texinfo 4.2 or + # For an installed makeinfo, we require it to be from texinfo 4.4 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo"