diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-13 13:37:26 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-13 13:37:26 +0100 |
commit | 53a807e1e94e01bf3ea7e90d1203b952eee929b0 (patch) | |
tree | b76245f8cf73f9377198e76c4f73c8c8dac3a34d /configure.ac | |
parent | 0026d1a673e8b01057b0735c977a55995812c85e (diff) | |
download | tor-53a807e1e94e01bf3ea7e90d1203b952eee929b0.tar.gz tor-53a807e1e94e01bf3ea7e90d1203b952eee929b0.zip |
Add a missing prototype to our libevent configure stanza.
Fixes bug 25474; bugfix on 0.3.2.5-alpha.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5a74d6c612..b5cacd06a4 100644 --- a/configure.ac +++ b/configure.ac @@ -631,7 +631,8 @@ TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $STATIC_LIBEVENT_FLAGS $T #include <winsock2.h> #endif struct event_base; -struct event_base *event_base_new(void);], +struct event_base *event_base_new(void); +void event_base_free(struct event_base *);], [ #ifdef _WIN32 {WSADATA d; WSAStartup(0x101,&d); } |