mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 13:53:31 +01:00
Add a missing prototype to our libevent configure stanza.
Fixes bug 25474; bugfix on 0.3.2.5-alpha.
This commit is contained in:
parent
0026d1a673
commit
53a807e1e9
5
changes/bug25474
Normal file
5
changes/bug25474
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes (compilation):
|
||||||
|
- Fix a c99 compliance issue in our configuration script that was
|
||||||
|
causing compilation issues when compiling Tor with certain
|
||||||
|
versions of xtools. Fixes bug 25474; bugfix on 0.3.2.5-alpha.
|
||||||
|
|
@ -631,7 +631,8 @@ TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $STATIC_LIBEVENT_FLAGS $T
|
|||||||
#include <winsock2.h>
|
#include <winsock2.h>
|
||||||
#endif
|
#endif
|
||||||
struct event_base;
|
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
|
#ifdef _WIN32
|
||||||
{WSADATA d; WSAStartup(0x101,&d); }
|
{WSADATA d; WSAStartup(0x101,&d); }
|
||||||
|
Loading…
Reference in New Issue
Block a user