From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28018 invoked by alias); 18 Aug 2009 18:44:08 -0000 Received: (qmail 28009 invoked by uid 22791); 18 Aug 2009 18:44:07 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail.gmx.net (HELO mail.gmx.net) (213.165.64.20) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Tue, 18 Aug 2009 18:43:58 +0000 Received: (qmail invoked by alias); 18 Aug 2009 18:43:55 -0000 Received: from xdsl-87-78-235-133.netcologne.de (EHLO localhost.localdomain) [87.78.235.133] by mail.gmx.net (mp041) with SMTP; 18 Aug 2009 20:43:55 +0200 Received: from ralf by localhost.localdomain with local (Exim 4.69) (envelope-from ) id 1MdTew-00082K-5M for gdb-patches@sources.redhat.com; Tue, 18 Aug 2009 20:43:50 +0200 Date: Tue, 18 Aug 2009 18:56:00 -0000 From: Ralf Wildenhues To: gdb-patches@sources.redhat.com Subject: Re: [PATCH 3/N] some minor fixes in sim, gold, gdb Message-ID: <20090818184349.GE30742@gmx.de> References: <20090815112928.GB5396@gmx.de> <20090815113302.GC20172@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090815113302.GC20172@gmx.de> User-Agent: Mutt/1.5.20 (2009-08-09) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-08/txt/msg00288.txt.bz2 * Ralf Wildenhues wrote on Sat, Aug 15, 2009 at 01:33:03PM CEST: > > - some minor fixes in sim, gold, gdb (src only) Of these changes, this one still needs approval: > - sim/common/aclocal.m4: SIM_CHECK_MEMBER is alias for AC_CHECK_MEMBER now. > This also needs to happen at the same time as the Autoconf update, to > avoid exposing whatever bugs 2.59's AC_CHECK_MEMBER had. > Is this ok or would you rather I replace every use of SIM_CHECK_MEMBER > with AC_CHECK_MEMBER? Thanks, Ralf > sim/common/ChangeLog: > 2009-08-15 Ralf Wildenhues > > * aclocal.m4 (SIM_CHECK_MEMBER): Replace definition with > definition of AC_CHECK_MEMBER. > diff --git a/sim/common/aclocal.m4 b/sim/common/aclocal.m4 > index e8fd147..25ed460 100644 > --- a/sim/common/aclocal.m4 > +++ b/sim/common/aclocal.m4 > @@ -942,28 +942,7 @@ dnl > dnl --------------------------------------------------------- > dnl AGGREGATE.MEMBER is for instance `struct passwd.pw_gecos', shell > dnl variables are not a valid argument. > -AC_DEFUN([SIM_CHECK_MEMBER], > -dnl Extract the aggregate name, and the member name > -[AC_CACHE_CHECK([for $1], [ac_]patsubst([$1], [[\. ]], [_]), > -[ac_]patsubst([$1], [[\. ]], [_])[=no;] > -AC_TRY_COMPILE([$4],[ > -dnl AGGREGATE ac_aggr; > -static ]patsubst([$1], [\..*])[ ac_aggr; > -dnl ac_aggr.MEMBER; > -if (ac_aggr.]patsubst([$1], [^[^.]*\.])[) > -return 0;],[ac_]patsubst([$1], [[\. ]], [_])[=yes;], > -AC_TRY_COMPILE([$4],[ > -dnl AGGREGATE ac_aggr; > -static ]patsubst([$1], [\..*])[ ac_aggr; > -dnl ac_aggr.MEMBER; > -if (sizeof ac_aggr.]patsubst([$1], [^[^.]*\.])[) > -return 0;], > -[ac_]patsubst([$1], [[\. ]], [_])[=yes;], > -[ac_]patsubst([$1], [[\. ]], [_])[=no;])) > -[if test [$]ac_]patsubst([$1], [[\. ]], [_])[ = yes; then :; [$2] > -else :; [$3] > -fi]) > -])dnl SIM_CHECK_MEMBER > +AC_DEFUN([SIM_CHECK_MEMBER], defn([AC_CHECK_MEMBER])) > dnl > dnl Translated from a FC2 autoconf-2.59-3 installation. > dnl SIM_CHECK_MEMBERS([AGGREGATE.MEMBER, ...])