[tor-commits] [tor/master] Split libevent AC_CHECK_FUNCS call into multiple lines

nickm at torproject.org nickm at torproject.org
Fri Sep 13 16:31:56 UTC 2013


commit 05f8429a280f80c94fa7c01f6a5c4b654cd02286
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Sep 9 15:18:54 2013 -0400

    Split libevent AC_CHECK_FUNCS call into multiple lines
---
 configure.ac |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 68c8ce4..e2b2dd6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -395,7 +395,12 @@ save_CPPFLAGS="$CPPFLAGS"
 LIBS="-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $LIBS"
 LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS"
 CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS"
-AC_CHECK_FUNCS(event_get_version event_get_version_number event_get_method event_set_log_callback evdns_set_outgoing_bind_address event_base_loopexit)
+AC_CHECK_FUNCS([event_get_version \
+                event_get_version_number \
+                event_get_method \
+                event_set_log_callback \
+                evdns_set_outgoing_bind_address \
+                event_base_loopexit])
 AC_CHECK_MEMBERS([struct event.min_heap_idx], , ,
 [#include <event.h>
 ])





More information about the tor-commits mailing list