diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-08 10:08:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-08 10:09:34 -0400 |
commit | fe9cfeba6ec96c11d009f4d57bf03f0019e34c9d (patch) | |
tree | 987785cdbc09531078e63e7b95d05a093f8432f6 /configure.ac | |
parent | f3cda3272a2504f8ffd66e1a5625c268ce660f4c (diff) | |
download | tor-fe9cfeba6ec96c11d009f4d57bf03f0019e34c9d.tar.gz tor-fe9cfeba6ec96c11d009f4d57bf03f0019e34c9d.zip |
Fix libevent linking on openbsd.
Closes ticket 19902; bugfix on 0.2.9.1-alpha; patch from rubiate
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ed57757a41..fc270173f3 100644 --- a/configure.ac +++ b/configure.ac @@ -501,6 +501,8 @@ AC_CHECK_FUNCS([evutil_secure_rng_set_urandom_device_file \ evutil_secure_rng_add_bytes \ ]) +AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h) + LIBS="$STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $save_LIBS" if test "$enable_static_libevent" = "yes"; then @@ -521,7 +523,7 @@ else TOR_LIBEVENT_LIBS="$ac_cv_search_evdns_base_new $TOR_LIBEVENT_LIBS" fi else - TOR_LIBEVENT_LIBS="-levent" + AC_MSG_ERROR("libevent2 is required but the headers could not be found") fi fi |