This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v2 5/6] fix a comment in configure.ac


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  <tromey@redhat.com>

	* 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 <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
-- 
1.8.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]