From f7d28f663a7d5f182d7aa1878b66d8467ca4cdc0 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Fri, 11 Dec 2009 16:15:41 +0100 Subject: Check for minimal version of check Test loops and _i are only available since 0.9.5. --- server/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server') diff --git a/server/configure.ac b/server/configure.ac index e471c845b..2c7884605 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -113,7 +113,7 @@ AC_CHECK_HEADERS([sys/inotify.h]) AC_CHECK_HEADERS([sasl/sasl.h],,AC_MSG_ERROR([Could not find SASL headers])) -PKG_CHECK_MODULES([CHECK], [check], [have_check=1], [have_check=]) +PKG_CHECK_MODULES([CHECK], [check >= 0.9.5], [have_check=1], [have_check=]) if test x$have_check = x; then AC_MSG_WARN([Without the 'CHECK' libraries, you will be unable to run all tests in the 'make check' suite]) fi -- cgit