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]

ARI change following AIX library changes


  The patch by Joel about AIX libraries
removes three macros.
  This is great!
  The following patch simply acknowledges 
those macros as removed, so that any reappearing
would result in a regression listed at top of the ARI
web page (as does the wait.h rule currently, see my previous email).

  Is this OK?


Pierre Muller
GDB pascal language maintainer

2013-05-07  Pierre Muller  <muller@sourceware.org>

        * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
        (PC_SOLIB): Change type from ari_deprecate to ari_regression.

Index: contrib/ari/gdb_ari.sh
===================================================================
RCS file: /cvs/src/src/gdb/contrib/ari/gdb_ari.sh,v
retrieving revision 1.11
diff -u -p -r1.11 gdb_ari.sh
--- contrib/ari/gdb_ari.sh      29 Apr 2013 08:32:18 -0000      1.11
+++ contrib/ari/gdb_ari.sh      7 May 2013 09:06:54 -0000
@@ -756,7 +756,7 @@ Replace ADD_SHARED_SYMBOL_FILES with not

 BEGIN { doc["SOLIB_ADD"] = "\
 Replace SOLIB_ADD with nothing, not needed?"
-    category["SOLIB_ADD"] = ari_deprecate
+    category["SOLIB_ADD"] = ari_regression
 }
 /(^|[^_[:alnum:]])SOLIB_ADD([^_[:alnum:]]|$)/ {
     fail("SOLIB_ADD")
@@ -764,7 +764,7 @@ Replace SOLIB_ADD with nothing, not need

 BEGIN { doc["SOLIB_CREATE_INFERIOR_HOOK"] = "\
 Replace SOLIB_CREATE_INFERIOR_HOOK with nothing, not needed?"
-    category["SOLIB_CREATE_INFERIOR_HOOK"] = ari_deprecate
+    category["SOLIB_CREATE_INFERIOR_HOOK"] = ari_regression
 }
 /(^|[^_[:alnum:]])SOLIB_CREATE_INFERIOR_HOOK([^_[:alnum:]]|$)/ {
     fail("SOLIB_CREATE_INFERIOR_HOOK")
@@ -796,7 +796,7 @@ Replace PROCESS_LINENUMBER_HOOK with not

 BEGIN { doc["PC_SOLIB"] = "\
 Replace PC_SOLIB with nothing, not needed?"
-    category["PC_SOLIB"] = ari_deprecate
+    category["PC_SOLIB"] = ari_regression
 }
 /(^|[^_[:alnum:]])PC_SOLIB([^_[:alnum:]]|$)/ {
     fail("PC_SOLIB")


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