summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2009-12-11 16:15:41 +0100
committerStephen Gallagher <sgallagh@redhat.com>2009-12-15 07:23:57 -0500
commit4ffdb7446f8db624263c2163ba623281f312e3b6 (patch)
tree89f1559cbe484662bddded89482e56490365d896 /server
parent9d979c6a0daeb8e1a480ab21206a8d566eec711c (diff)
downloadsssd-4ffdb7446f8db624263c2163ba623281f312e3b6.tar.gz
sssd-4ffdb7446f8db624263c2163ba623281f312e3b6.tar.xz
sssd-4ffdb7446f8db624263c2163ba623281f312e3b6.zip
Check for minimal version of check
Test loops and _i are only available since 0.9.5.
Diffstat (limited to 'server')
-rw-r--r--server/configure.ac2
1 files changed, 1 insertions, 1 deletions
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