mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
2e1ac274ab
Should help speed up mingw builds by a percent or two.
21 lines
271 B
Perl
Executable File
21 lines
271 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my @macros = ();
|
|
|
|
open(F, 'orconfig.h.in');
|
|
while(<F>) {
|
|
if (/^#undef +([A-Za-z0-9_]*)/) {
|
|
push @macros, $1;
|
|
}
|
|
}
|
|
close F;
|
|
|
|
for my $m (@macros) {
|
|
my $s = `git grep '$m' src`;
|
|
if ($s eq '') {
|
|
print "Unused: $m\n";
|
|
}
|
|
}
|