X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=check-module;h=a302f1b32367242f46ced4108efde238ea0c649d;hb=d4d84c1d916f5bff3bb72be92e9d1383a25077c1;hp=6961cd0a872fb328dee520c9f9d246edb9269a47;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/check-module b/check-module index 6961cd0a8..a302f1b32 100755 --- a/check-module +++ b/check-module @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # Check a gnulib module. -# Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2005-2007, 2009-2011 Free Software Foundation, Inc. # This file is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -37,6 +37,7 @@ use strict; use Getopt::Long; +use File::Basename; #use Coda; my $COPYRIGHT_NOTICE = "Copyright (C) 2006 Free Software Foundation, Inc.\n". @@ -158,7 +159,16 @@ sub find_included_lib_files ($) # Special cases... my %special_non_dup = ( 'fnmatch_loop.c' => 1, - 'regex.c' => 1, 'at-func.c' => 1 ); + 'regex.c' => 1, 'at-func.c' => 1, + 'vasnprintf.c' => 1 + ); + my %dup_include_ok; + $dup_include_ok{'vasnprintf.c'}{'isnand-nolibm.h'} = 1; + $dup_include_ok{'vasnprintf.c'}{'isnanl-nolibm.h'} = 1; + $dup_include_ok{'vasnprintf.c'}{'fpucw.h'} = 1; + $dup_include_ok{'gen-uni-tables.c'}{'3level.h'} = 1; + $dup_include_ok{'csharpexec.c'}{'classpath.c'} = 1; + $dup_include_ok{'csharpexec.c'}{'classpath.h'} = 1; my %inc; open FH, '<', $file @@ -176,6 +186,7 @@ sub find_included_lib_files ($) chomp $line; $line =~ s/".*//; exists $inc{$line} && ! exists $special_non_dup{$line} + && ! exists $dup_include_ok{basename $file}{$line} and warn "$ME: $file: duplicate inclusion of $line\n"; $inc{$line} = 1; @@ -217,10 +228,6 @@ my %exempt_header = '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, ); sub check_module ($)