From 049bd23ab102c15c0fdcb359e897dd237e51bd27 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 17 Dec 2013 12:57:53 +0100 Subject: [PATCH] s3:configure: require tevent >= 0.9.18 as external library 0.9.16 might be enough, but this matches the waf build. So 0.9.18 is less likely to produce regressions in the future. Bug: https://bugzilla.samba.org/show_bug.cgi?id=10330 Signed-off-by: Stefan Metzmacher --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index f5487c3..f4403e1 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1873,7 +1873,7 @@ AC_ARG_ENABLE(external_libtevent, if test "x$enable_external_libtevent" != xno then - PKG_CHECK_MODULES(LIBTEVENT, tevent >= 0.9.11, + PKG_CHECK_MODULES(LIBTEVENT, tevent >= 0.9.18, [ enable_external_libtevent=yes ], [ if test x$enable_external_libtevent = xyes; then AC_MSG_ERROR([Unable to find libtevent]) -- 1.7.9.5