From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: configure problem Date: Tue, 15 Jul 2003 15:46:59 +0900 Organization: Emacsen advocacy group Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.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 1058251691 2205 80.91.224.249 (15 Jul 2003 06:48:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 15 Jul 2003 06:48:11 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Jul 15 08:48:09 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19cJbd-0000ZR-00 for ; Tue, 15 Jul 2003 08:48:09 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19cJpG-00086h-00 for ; Tue, 15 Jul 2003 09:02:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19cJcE-0005h1-Mh for emacs-devel@quimby.gnus.org; Tue, 15 Jul 2003 02:48:46 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19cJbw-0005Bf-02 for emacs-devel@gnu.org; Tue, 15 Jul 2003 02:48:28 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19cJbc-0004tD-W4 for emacs-devel@gnu.org; Tue, 15 Jul 2003 02:48:11 -0400 Original-Received: from [139.81.163.140] (helo=minsk.hostforweb.net) by monty-python.gnu.org with esmtp (Exim 4.20) id 19cJax-0004D9-QM for emacs-devel@gnu.org; Tue, 15 Jul 2003 02:47:27 -0400 Original-Received: from yamaokac by minsk.hostforweb.net with local (Exim 3.36 #1) id 19cJb4-0006Xv-00 for emacs-devel@gnu.org; Tue, 15 Jul 2003 02:47:34 -0400 Original-To: emacs-devel@gnu.org X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:uaoE7tm0w0Fhcn/qyHnXaZq39Co= X-Payment: hashcash 1.2 0:030715:emacs-devel@gnu.org:aab2f552c98a5f73 X-Hashcash: 0:030715:emacs-devel@gnu.org:aab2f552c98a5f73 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - minsk.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [32531 32531] / [32531 32531] X-AntiAbuse: Sender Address Domain - minsk.hostforweb.net X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15613 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15613 Hi, 2003-07-12 Richard M. Stallman * configure.in [netbsd systems]: Define HAVE_CRTIN properly. There is a problem that the change has not been applied in the configure script yet. So I ran autoconf 2.57, however the following error occurred: configure.in:50: error: possibly undefined macro: AC_DEFINE If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. Here is a patch which has been confirmed by the NetBSD user. I don't know why the AC_DEFINE macro is not expanded there, though. :{ *** configure.in~ Mon Jul 14 22:00:19 2003 --- configure.in Tue Jul 15 06:39:03 2003 *************** *** 223,229 **** *-*-netbsd* ) opsys=netbsd if test -f /usr/lib/crti.o; then ! AC_DEFINE(HAVE_CRTIN) fi case "${canonical}" in --- 223,231 ---- *-*-netbsd* ) opsys=netbsd if test -f /usr/lib/crti.o; then ! cat >>confdefs.h <<_ACEOF ! #define HAVE_CRTIN 1 ! _ACEOF fi case "${canonical}" in