From bc1c14f003edbadde570d0322433b6b961205340 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 5 Nov 2011 17:34:09 +0100 Subject: [PATCH] maint.mk: also prohibit inclusion of dirent.h without use * top/maint.mk (sc_prohibit_dirent_without_use): New rule. --- ChangeLog | 5 +++++ top/maint.mk | 10 ++++++++++ 2 files changed, 15 insertions(+) diff --git a/ChangeLog b/ChangeLog index bbb4c0b530..616c5dbe3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-11-05 Jim Meyering + + maint.mk: also prohibit inclusion of dirent.h without use + * top/maint.mk (sc_prohibit_dirent_without_use): New rule. + 2011-11-05 Bruno Haible ldexpl tests: Avoid test failure on MSVC 9. diff --git a/top/maint.mk b/top/maint.mk index 72b7e06f08..9f4c032378 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -625,6 +625,16 @@ sc_prohibit_stddef_without_use: re='\<($(_stddef_syms_re))\>' \ $(_sc_header_without_use) +_de1 = dirfd|(close|(fd)?open|read|rewind|seek|tell)dir(64)?(_r)? +_de2 = (versionsort|struct dirent|getdirentries|alphasort|scandir(at)?)(64)? +_de3 = MAXNAMLEN|DIR|ino_t|d_ino|d_fileno|d_namlen +_dirent_syms_re = $(_de1)|$(_de2)|$(_de3) +# Prohibit the inclusion of dirent.h without an actual use. +sc_prohibit_dirent_without_use: + h='dirent.h' \ + re='\<($(_dirent_syms_re))\>' \ + $(_sc_header_without_use) + # Prohibit the inclusion of verify.h without an actual use. sc_prohibit_verify_without_use: @h='verify.h' \ -- 2.39.5