From: Jelmer Vernooij Date: Fri, 2 Jan 2004 13:47:13 +0000 (+0000) Subject: Add note about new configure structure. X-Git-Tag: samba-misc-tags/initial-v4-0-unstable~13118 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=43130f370b84828fce3eb5501464eb2c47138acc Add note about new configure structure. --- diff --git a/source/script/find_unused_header_checks.pl b/source/script/find_unused_header_checks.pl index 3caf9da453d..8251198aabc 100755 --- a/source/script/find_unused_header_checks.pl +++ b/source/script/find_unused_header_checks.pl @@ -8,6 +8,8 @@ # # You might want to specify configure.in again in the list of header files # as well, because it also uses some includes. +# Note that this script does not process any includes, so you might +# have to run "cat configure.in */config.m4 > foo.in" first. my %symbols; @@ -30,7 +32,7 @@ while() { if(/AC_CHECK_HEADERS\(([\[]*)(.*)([\]]*)\)/) { @hs = split / /, $2; foreach(@hs) { - if($symbols{$_} != 1) { print "|$_|\n"; } + if($symbols{$_} != 1) { print "$_\n"; } } } }