gdb_ari.sh: Remove entries for dirent.h and stat.h.
authorJoel Brobecker <brobecker@adacore.com>
Tue, 19 Nov 2013 02:36:13 +0000 (06:36 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Tue, 19 Nov 2013 02:38:47 +0000 (06:38 +0400)
The corresponding gdb_dirent.h and gdb_stat.h no longer exist.
We rely on gnulib for those, now.

gdb/ChangeLog:

        * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
        "stat.h".

gdb/ChangeLog
gdb/contrib/ari/gdb_ari.sh

index a1d0a3ca7cf91851951df45193df80326b7665d8..b28d1ae4c6ff367edf15d3fbd899483ed53c7a13 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-19  Joel Brobecker  <brobecker@adacore.com>
+
+       * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
+       "stat.h".
+
 2013-11-18  Tom Tromey  <tromey@redhat.com>
 
        * common/gdb_stat.h: Remove.
index ad30c9cc4e404501ea9b9ee5633334731183b0a6..d05b19c7a60f6ff814ed222f99c2e58666c91433 100644 (file)
@@ -306,14 +306,6 @@ Do not include assert.h, instead include \"gdb_assert.h\"";
     fail("assert.h")
 }
 
-BEGIN { doc["dirent.h"] = "\
-Do not include dirent.h, instead include gdb_dirent.h"
-    category["dirent.h"] = ari_regression
-}
-/^#[[:space:]]*include[[:space:]]*.dirent\.h./ {
-    fail("dirent.h")
-}
-
 BEGIN { doc["regex.h"] = "\
 Do not include regex.h, instead include gdb_regex.h"
     category["regex.h"] = ari_regression
@@ -340,16 +332,6 @@ Do not include gnu-regex.h, instead include gdb_regex.h"
     fail("gnu regex.h")
 }
 
-BEGIN { doc["stat.h"] = "\
-Do not include stat.h or sys/stat.h, instead include gdb_stat.h"
-    category["stat.h"] = ari_regression
-    fix("stat.h", "common/gdb_stat.h", 1)
-}
-/^#[[:space:]]*include[[:space:]]*.stat\.h./ \
-|| /^#[[:space:]]*include[[:space:]]*.sys\/stat\.h./ {
-    fail("stat.h")
-}
-
 BEGIN { doc["wait.h"] = "\
 Do not include wait.h or sys/wait.h, instead include gdb_wait.h"
     fix("wait.h", "common/gdb_wait.h", 2);