summaryrefslogtreecommitdiff
path: root/check-module
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-11-18 11:16:55 +0000
committerJim Meyering <jim@meyering.net>2006-11-18 11:16:55 +0000
commitfe61767551719ec7d157612792242f36fd35ff4f (patch)
treebe5817ac01029049cc42d9a834300a1ae4e57910 /check-module
parent7e6c78d7ed6bccc2aa5832fe210f0372388c869c (diff)
downloadgnulib-fe61767551719ec7d157612792242f36fd35ff4f.tar.gz
* check-module (%exempt_header): Add exception for some
conditionally-included headers.
Diffstat (limited to 'check-module')
-rwxr-xr-xcheck-module15
1 files changed, 14 insertions, 1 deletions
diff --git a/check-module b/check-module
index 188ecef849..b671163c6e 100755
--- a/check-module
+++ b/check-module
@@ -46,7 +46,7 @@ my $COPYRIGHT_NOTICE = "Copyright (C) 2006 Free Software Foundation, Inc.\n".
"the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.\n".
"There is NO WARRANTY, to the extent permitted by law.\n";
-(my $VERSION = '$Revision: 1.6 $ ') =~ tr/[0-9].//cd;
+(my $VERSION = '$Revision: 1.7 $ ') =~ tr/[0-9].//cd;
(my $ME = $0) =~ s|.*/||;
use constant ST_INIT => 1;
@@ -204,6 +204,19 @@ my %exempt_header =
# The use of obstack.h in the hash module is conditional, off by default.
'lib/hash.c:obstack.h' => 1,
+ # C files in the gc module have conditional includes.
+ 'lib/gc-gnulib.c:des.h' => 1,
+ 'lib/gc-gnulib.c:arcfour.h' => 1,
+ 'lib/gc-gnulib.c:arctwo.h' => 1,
+ 'lib/gc-gnulib.c:md2.h' => 1,
+ 'lib/gc-gnulib.c:md4.h' => 1,
+ 'lib/gc-gnulib.c:md5.h' => 1,
+ 'lib/gc-gnulib.c:rijndael.h' => 1,
+ 'lib/gc-gnulib.c:sha1.h' => 1,
+ 'lib/gc-gnulib.c:rijndael-api-fst.h' => 1,
+ 'lib/gc-gnulib.c:hmac.h' => 1,
+ 'lib/gc-libgcrypt.c:md2.h' => 1,
+
# The fts-lgpl module doesn't actually use fts-cycle.c and unistd-safer.h.
'lib/fts.c:fts-cycle.c' => 1,
'lib/fts.c:unistd-safer.h' => 1,