From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21288 invoked by alias); 5 Nov 2013 20:03:54 -0000 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 Received: (qmail 21279 invoked by uid 89); 5 Nov 2013 20:03:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_50,RDNS_NONE,SPF_HELO_PASS,SPF_PASS,URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Nov 2013 20:03:52 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rA5INbGq012750 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 5 Nov 2013 13:23:38 -0500 Received: from barimba.redhat.com (ovpn-113-94.phx2.redhat.com [10.3.113.94]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id rA5INX9E015113; Tue, 5 Nov 2013 13:23:36 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH v2 5/6] fix a comment in configure.ac Date: Tue, 05 Nov 2013 20:04:00 -0000 Message-Id: <1383675811-3274-6-git-send-email-tromey@redhat.com> In-Reply-To: <1383675811-3274-1-git-send-email-tromey@redhat.com> References: <1383675811-3274-1-git-send-email-tromey@redhat.com> X-SW-Source: 2013-11/txt/msg00101.txt.bz2 My grepping around showed that HAVE_MULTIPLE_PROC_FDS is only ever mentioned in a comment in configure.ac. Since the macro is long dead, let's remove the last mention. 2013-11-05 Tom Tromey * configure: Rebuild. * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS. --- gdb/ChangeLog | 5 +++++ gdb/config.in | 3 +-- gdb/configure.ac | 6 ++---- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gdb/config.in b/gdb/config.in index ada9b3b..7dfb5c7 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -571,8 +571,7 @@ moved. */ #undef JIT_READER_DIR_RELOCATABLE -/* Define if you want to use new multi-fd /proc interface (replaces - HAVE_MULTIPLE_PROC_FDS as well as other macros). */ +/* Define if you want to use new multi-fd /proc interface. */ #undef NEW_PROC_API /* Name of this package. */ diff --git a/gdb/configure.ac b/gdb/configure.ac index 10fe947..34908ab 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1389,13 +1389,11 @@ if test "${target}" = "${host}"; then case "${host}" in *-*-sysv4.2* | *-*-sysv5* ) AC_DEFINE(NEW_PROC_API, 1, - [Define if you want to use new multi-fd /proc interface - (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).]) + [Define if you want to use new multi-fd /proc interface.]) ;; *-*-solaris2.[[6789]] | *-*-solaris2.1[[0-9]]*) AC_DEFINE(NEW_PROC_API, 1, - [Define if you want to use new multi-fd /proc interface - (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).]) + [Define if you want to use new multi-fd /proc interface.]) ;; mips-sgi-irix5*) # Work around needing _KMEMUSER problem on IRIX 5. -- 1.8.1.4