From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Dave Love Newsgroups: gmane.emacs.bugs Subject: fix for configure.in Date: 10 Apr 2003 14:18:44 +0100 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1049981784 23548 80.91.224.249 (10 Apr 2003 13:36:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 10 Apr 2003 13:36:24 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Thu Apr 10 15:36:23 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 193cE3-00067d-00 for ; Thu, 10 Apr 2003 15:36:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 193cBL-000656-09 for gnu-bug-gnu-emacs@m.gmane.org; Thu, 10 Apr 2003 09:33:35 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 193byJ-0000I6-00 for bug-gnu-emacs@gnu.org; Thu, 10 Apr 2003 09:20:07 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 193by9-00007x-00 for bug-gnu-emacs@gnu.org; Thu, 10 Apr 2003 09:19:57 -0400 Original-Received: from albion.dl.ac.uk ([148.79.80.39]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 193bwy-0007wq-00 for bug-gnu-emacs@gnu.org; Thu, 10 Apr 2003 09:18:44 -0400 Original-Received: from fx by albion.dl.ac.uk with local (Exim 3.36 #1 (Debian)) id 193bwy-0001MM-00 for ; Thu, 10 Apr 2003 14:18:44 +0100 Original-To: bug-gnu-emacs@gnu.org Original-Lines: 42 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4757 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4757 I understand there's going to be a bug-fix version of 21.3. This fixes the check for libjpeg under Irix with the proprietary cc, for instance. Sorry I didn't spot it before, and I guess Irix isn't getting other useful testing. (The CVS head code is OK since I re-wrote that bit for autoconf 2.5x.) 2003-04-09 Dave Love * configure.in: Fix test of jpeglib.h to avoid leading space. cd /net/pxfs5/home/fx/packages/emacs-21.3/ diff -c /net/pxfs5/home/fx/packages/emacs-21.3/configure.in\~ /net/pxfs5/home/fx/packages/emacs-21.3/configure.in *** /net/pxfs5/home/fx/packages/emacs-21.3/configure.in~ Sun Mar 16 22:06:05 2003 --- /net/pxfs5/home/fx/packages/emacs-21.3/configure.in Wed Apr 9 15:32:49 2003 *************** *** 1879,1889 **** if test "${HAVE_JPEG}" = "yes"; then AC_DEFINE(HAVE_JPEG) AC_EGREP_CPP( ! changequote({, })dnl avoid leadingspace on the next line {version= *(6[2-9]|[7-9][0-9])}, changequote([, ])dnl ! [#include ! version=JPEG_LIB_VERSION ], AC_DEFINE(HAVE_JPEG), [AC_MSG_WARN([libjpeg found, but not version 6b or later]) --- 1879,1889 ---- if test "${HAVE_JPEG}" = "yes"; then AC_DEFINE(HAVE_JPEG) AC_EGREP_CPP( ! changequote({, })dnl avoid leading space on the next line {version= *(6[2-9]|[7-9][0-9])}, changequote([, ])dnl ! [#include ! version=JPEG_LIB_VERSION ], AC_DEFINE(HAVE_JPEG), [AC_MSG_WARN([libjpeg found, but not version 6b or later]) Diff finished at Wed Apr 9 15:33:30