# HG changeset patch # User Jim Meyering # Date 1163848615 0 # Node ID 5f1564aa6385a13f124ed29f4958bd482ed29501 # Parent 8c3b15effd6528712878c3fdd9341e066e787815 * check-module (%exempt_header): Add exception for some conditionally-included headers. diff -r 8c3b15effd65 -r 5f1564aa6385 ChangeLog --- a/ChangeLog Sat Nov 18 11:14:13 2006 +0000 +++ b/ChangeLog Sat Nov 18 11:16:55 2006 +0000 @@ -1,5 +1,8 @@ 2006-11-18 Jim Meyering + * check-module (%exempt_header): Add exception for some + conditionally-included headers. + * modules/i-ring (Depends-on): Add verify. (License): Change to LGPL. diff -r 8c3b15effd65 -r 5f1564aa6385 check-module --- a/check-module Sat Nov 18 11:14:13 2006 +0000 +++ b/check-module Sat Nov 18 11:16:55 2006 +0000 @@ -46,7 +46,7 @@ "the GNU General Public License .\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 @@ # 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,