From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: CVS HEAD: configure: error: makeinfo >= 4.6 is required on Mac OS X Date: Fri, 14 Sep 2007 21:41:34 +0200 Message-ID: <87hclxt4pd.fsf@ambire.localdomain> References: <6dbd4d000709140937o5785b899wa7b4ff58d603bd87@mail.gmail.com> <87r6l1t9i2.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1189798973 31725 80.91.229.12 (14 Sep 2007 19:42:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 14 Sep 2007 19:42:53 +0000 (UTC) Cc: rgm@gnu.org, dbueno@gmail.com, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 14 21:42:43 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 1IWH3m-00054M-62 for ged-emacs-devel@m.gmane.org; Fri, 14 Sep 2007 21:42:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWH3l-0007a4-5G for ged-emacs-devel@m.gmane.org; Fri, 14 Sep 2007 15:42:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IWH3h-0007Wm-94 for emacs-devel@gnu.org; Fri, 14 Sep 2007 15:42:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IWH3f-0007VE-CU for emacs-devel@gnu.org; Fri, 14 Sep 2007 15:42:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWH3f-0007VB-4B for emacs-devel@gnu.org; Fri, 14 Sep 2007 15:42:31 -0400 Original-Received: from ppp-93-39.21-151.libero.it ([151.21.39.93] helo=ambire.localdomain) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IWH3Z-0008V7-D5; Fri, 14 Sep 2007 15:42:25 -0400 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1IWH2l-0004PL-0R; Fri, 14 Sep 2007 21:41:35 +0200 In-Reply-To: (Eli Zaretskii's message of "Fri\, 14 Sep 2007 22\:00\:35 +0300") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.50 (gnu/linux) X-Detected-Kernel: Genre and OS details not recognized. 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:78910 () Eli Zaretskii () Fri, 14 Sep 2007 22:00:35 +0300 also use the --enable-encoding command-line switch ok, here's a revised sketch: + echo @documentencoding ISO-8859-1 > conftest.texi + echo @indent >> conftest.texi + if test "$MAKEINFO" != "no" ; then + if $MAKEINFO --enable-encoding conftest.texi >dev/null 2>&1 + then : + else MAKEINFO=no + fi + fi + rm -f conftest.texi conftest.info btw, the cleanup is more thorough, too. (basically, as we expand our needs we expand the test in some convex-hull fashion.) thi