From: Marko Kreen Date: Fri, 8 Aug 2008 11:16:20 +0000 (+0000) Subject: allow first libevent test pass on 1.1 X-Git-Tag: pgbouncer_1_2_3~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=156c7600d116922a492247ec4f7d081eba8ff711;p=pgbouncer allow first libevent test pass on 1.1 --- diff --git a/configure.ac b/configure.ac index f1e68a4..06e391e 100644 --- a/configure.ac +++ b/configure.ac @@ -131,7 +131,8 @@ AC_LINK_IFELSE([ struct event ev; event_init(); event_set(&ev, 1, EV_READ, NULL, NULL); - event_base_free(NULL); + /* this checks for 1.2+ but next we check for 1.3b+ anyway */ + /* event_base_free(NULL); */ } ], [AC_MSG_RESULT([found])], [AC_MSG_ERROR([not found, cannot proceed])])