From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.bugs Subject: Re: src/config.in: size_t and !HAVE_SIZE_T [PATCH] Date: Mon, 30 Dec 2002 20:44:20 +0300 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <9003-Mon30Dec2002204419+0200-eliz@is.elta.co.il> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1041274053 19673 80.91.224.249 (30 Dec 2002 18:47:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 30 Dec 2002 18:47:33 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org 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 18T4wh-00056i-00 for ; Mon, 30 Dec 2002 19:47:27 +0100 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 18T4wD-0004Gy-04 for gnu-bug-gnu-emacs@m.gmane.org; Mon, 30 Dec 2002 13:46:57 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18T4w2-0004Fn-00 for bug-gnu-emacs@gnu.org; Mon, 30 Dec 2002 13:46:46 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18T4vz-0004Br-00 for bug-gnu-emacs@gnu.org; Mon, 30 Dec 2002 13:46:45 -0500 Original-Received: from bilbo.inter.net.il ([192.114.186.18]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18T4vy-0004BK-00 for bug-gnu-emacs@gnu.org; Mon, 30 Dec 2002 13:46:42 -0500 Original-Received: from zaretsky ([80.230.194.32]) by bilbo.inter.net.il (Mirapoint Messaging Server MOS 3.2.1-GA) with ESMTP id ABR63965; Mon, 30 Dec 2002 20:46:40 +0200 (IST) Original-To: rich@phekda.freeserve.co.uk X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (rich@phekda.freeserve.co.uk) 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:4115 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4115 > Date: Mon, 30 Dec 2002 11:05:32 +0000 > From: "Richard Dawe" > > The DJGPP build uses DJGPP's , which defines HAVE_* > and other things that configure scripts detect. DJGPP's > does not define HAVE_SIZE_T, so the definition of size_t is used > from Emacs's src/config.in. Unfortunately there appears to be a typo > in the definition. > > Below is a patch to fix the typo. Thanks.