Skip to content
Snippets Groups Projects
Commit 2a965b75 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Try to fix windows build

patch from rubiate on #16651
parent 3a69fcb0
No related branches found
No related tags found
No related merge requests found
...@@ -513,8 +513,8 @@ if test "$enable_static_libevent" = "yes"; then ...@@ -513,8 +513,8 @@ if test "$enable_static_libevent" = "yes"; then
fi fi
else else
if test "x$ac_cv_header_event2_event_h" = "xyes"; then if test "x$ac_cv_header_event2_event_h" = "xyes"; then
AC_SEARCH_LIBS(event_new, [event event_core]) AC_SEARCH_LIBS(event_new, [event event_core], , AC_MSG_ERROR("libevent2 is installed but linking it failed while searching for event_new"))
AC_SEARCH_LIBS(evdns_base_new, [event event_extra]) AC_SEARCH_LIBS(evdns_base_new, [event event_extra], , AC_MSG_ERROR("libevent2 is installed but linking it failed while searching for evdns_base_new"))
if test "$ac_cv_search_event_new" != "none required"; then if test "$ac_cv_search_event_new" != "none required"; then
TOR_LIBEVENT_LIBS="$ac_cv_search_event_new" TOR_LIBEVENT_LIBS="$ac_cv_search_event_new"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment