From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8222 invoked by alias); 5 Dec 2002 17:01:00 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 8206 invoked from network); 5 Dec 2002 17:00:57 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 5 Dec 2002 17:00:57 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 3B8183F30; Thu, 5 Dec 2002 12:00:50 -0500 (EST) Message-ID: <3DEF8642.70405@redhat.com> Date: Thu, 05 Dec 2002 09:01:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Klee Dienes Cc: binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: Re: [RFC] Update to current automake/autoconf/libtool versions. References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-12/txt/msg00149.txt.bz2 > On Thursday, December 5, 2002, at 10:43 AM, Andrew Cagney wrote: > >> I don't understand this: >> >> - $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS) >> + $(SHELL) $(YLWRAP) $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- "$(YACC)" $(YFLAGS) >> >> isn't it independant of the switch? > > It's a result of using the ylwrap from autoconf-1.7, which is needed since the rules for the binutils/ parsers are automatically generated by automake. Does it work now? >> Same with this? >> >> - AC_DEFINE(HAVE_LONG_DOUBLE) >> + AC_DEFINE([HAVE_LONG_DOUBLE], [], [Define if the `long double' type works]) >> >> (or did the new autoconf change the interface causing a warning if the three parameters were not present?). > Not even a warning: it blows out autoheader with an error. The new AC_DEFINE interface deprecates the use of a template file, and instead requires all the information to be provided by the AC_DEFINE commands (it's particularly annoying since the warning about the existence of a template file is about 10 lines long, ALL CAPS, and can't be turned off with --warnings=none). > Ulgh. Same here though, does this work with autoconf 2.13++ (the current offical autoconf)? Andrew