From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: CVS HEAD: configure: error: makeinfo >= 4.6 is required on Mac OS X Date: Fri, 14 Sep 2007 13:25:50 -0400 Message-ID: References: <6dbd4d000709140937o5785b899wa7b4ff58d603bd87@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1189790833 18301 80.91.229.12 (14 Sep 2007 17:27:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 14 Sep 2007 17:27:13 +0000 (UTC) Cc: "Emacs Dev \[emacs-devel\]" To: "Denis Bueno" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 14 19:27:08 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IWEvv-0005ei-Aw for ged-emacs-devel@m.gmane.org; Fri, 14 Sep 2007 19:26:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWEvu-0002ht-F4 for ged-emacs-devel@m.gmane.org; Fri, 14 Sep 2007 13:26:22 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IWEvr-0002hU-I7 for emacs-devel@gnu.org; Fri, 14 Sep 2007 13:26:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IWEvr-0002h8-1k for emacs-devel@gnu.org; Fri, 14 Sep 2007 13:26:19 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWEvq-0002h5-TK for emacs-devel@gnu.org; Fri, 14 Sep 2007 13:26:18 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IWEvq-0004jr-FK for emacs-devel@gnu.org; Fri, 14 Sep 2007 13:26:18 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1IWEvO-0006F2-9Z; Fri, 14 Sep 2007 13:25:50 -0400 X-Spook: AIMSX MP5K-SD CESID Honduras jihad BRLO Noriega kilderkin X-Ran: G:lJOi<{^l@)ugx8mWa8\Hj7"(.PS[4'UrM)h\m\v1s(ysW X-Hue: white X-Attribution: GM In-Reply-To: <6dbd4d000709140937o5785b899wa7b4ff58d603bd87@mail.gmail.com> (Denis Bueno's message of "Fri, 14 Sep 2007 12:37:21 -0400") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:78899 Archived-At: "Denis Bueno" wrote: > checking for makeinfo... /opt/local/bin/makeinfo > configure: error: makeinfo >= 4.6 is required > > But: > > emacs[38] > /opt/local/bin/makeinfo --version > makeinfo (GNU texinfo) 4.11 Sorry, my fault. Please try this patch to configure.in, followed by running autoconf (or wait for me to check in a new configure if you don't have a suitable autoconf). *** configure.in 12 Sep 2007 07:03:30 -0000 1.474 --- configure.in 14 Sep 2007 17:20:46 -0000 *************** *** 1347,1353 **** dnl By this stage, configure has already checked for egrep and set EGREP, dnl or exited with an error if no egrep was found. if test "$MAKEINFO" != "no" && \ ! test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[6-9]])'`" = x; then MAKEINFO=no fi --- 1347,1353 ---- dnl By this stage, configure has already checked for egrep and set EGREP, dnl or exited with an error if no egrep was found. if test "$MAKEINFO" != "no" && \ ! test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[1-4]][[0-9]]+|[[5-9]]|4\.[[6-9]]|4\.[[1-5]][[0-9]]+)'`" = x; then MAKEINFO=no fi