]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Script to detect unused autoconf outputs
authorNick Mathewson <nickm@torproject.org>
Wed, 7 May 2014 07:56:51 +0000 (03:56 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 7 May 2014 07:56:51 +0000 (03:56 -0400)
Should help speed up mingw builds by a percent or two.

configure.ac
scripts/README
scripts/maint/check_config_macros.pl [new file with mode: 0755]

index a96a333c1b580614990a973b2305d763f25b903c..d3210921e7a6ec1cd0d0dc2fa407d8f0acc66dac 100644 (file)
@@ -437,7 +437,6 @@ AC_CHECK_FUNCS([event_get_version \
                 event_get_version_number \
                 event_get_method \
                 event_set_log_callback \
-                evdns_set_outgoing_bind_address \
                 evutil_secure_rng_set_urandom_device_file \
                 evutil_secure_rng_init \
                 event_base_loopexit])
@@ -445,7 +444,7 @@ AC_CHECK_MEMBERS([struct event.min_heap_idx], , ,
 [#include <event.h>
 ])
 
-AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h)
+AC_CHECK_HEADERS(event2/event.h event2/dns.h)
 
 LIBS="$save_LIBS"
 LDFLAGS="$save_LDFLAGS"
@@ -1235,7 +1234,6 @@ if [[ $dmalloc -eq 1 ]]; then
   AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?))
   AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.))
   AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library])
-  AC_DEFINE(DMALLOC_FUNC_CHECK, 1, [Enable dmalloc's malloc function check])
   AC_CHECK_FUNCS(dmalloc_strdup dmalloc_strndup)
 fi
 
index f2cb5013c7925206f61d519325a9335af279e60e..70c763923c8d5dc424fa9944c7722b4abbc745f4 100644 (file)
@@ -6,6 +6,9 @@ Code maintenance scripts
 
 maint/checkLogs.pl -- Verify that Tor log statements are unique.
 
+maint/check_config_macros.pl -- Look for autoconf tests whose results are
+never used.
+
 maint/checkOptionDocs.pl -- Make sure that Tor options are documented in the
 manpage, and that the manpage only documents real Tor options.
 
diff --git a/scripts/maint/check_config_macros.pl b/scripts/maint/check_config_macros.pl
new file mode 100755 (executable)
index 0000000..bcde2be
--- /dev/null
@@ -0,0 +1,20 @@
+#!/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";
+    }
+}