diff options
author | Sumit Bose <sbose@redhat.com> | 2009-12-11 16:15:41 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-15 08:33:55 -0500 |
commit | f7d28f663a7d5f182d7aa1878b66d8467ca4cdc0 (patch) | |
tree | 5d6c51c7de3aa5992a3ecc519fcf53f2309481e5 /server/configure.ac | |
parent | 028af25245a7d406bfa6ca07d9047df6386800b4 (diff) | |
download | sssd-f7d28f663a7d5f182d7aa1878b66d8467ca4cdc0.tar.gz sssd-f7d28f663a7d5f182d7aa1878b66d8467ca4cdc0.tar.xz sssd-f7d28f663a7d5f182d7aa1878b66d8467ca4cdc0.zip |
Check for minimal version of check
Test loops and _i are only available since 0.9.5.
Diffstat (limited to 'server/configure.ac')
-rw-r--r-- | server/configure.ac | 2 |
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 |