diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-06-20 08:47:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-07-16 10:36:34 +0200 |
commit | 589de5ec20bf6f15813fc3bddb7a814309184800 (patch) | |
tree | 61b2969b5c47665cd164d4d3d390119ae8dd90f6 /configure.ac | |
parent | 5d2045ee8ba42a294291b187234be6ead6864cab (diff) | |
download | tor-589de5ec20bf6f15813fc3bddb7a814309184800.tar.gz tor-589de5ec20bf6f15813fc3bddb7a814309184800.zip |
configure.ac: fix build with --enable-bufferevents
When building with bufferevents enabled, configure.ac throws an
error if "$ac_cv_header_event2_bufferevent_ssl_h" is not set to
"yes". However, nowhere was AC_CHECK_HEADERS(event2/bufferevent_ssl.h)
done. This commit adds the check.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 38d9222068..1d8cfa78f0 100644 --- a/configure.ac +++ b/configure.ac @@ -454,7 +454,7 @@ AC_CHECK_MEMBERS([struct event.min_heap_idx], , , [#include <event.h> ]) -AC_CHECK_HEADERS(event2/event.h event2/dns.h) +AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h) LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" |