diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-11-05 09:12:26 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-11-05 14:55:19 -0500 |
commit | 198e04f81f26c051037817241918178c01803f52 (patch) | |
tree | a7229e238e8971b3b652591d61e03d3f75b314f0 /server | |
parent | ff85dca17f68cc002adf753d71a9b7183ead1c1b (diff) | |
download | sssd2-198e04f81f26c051037817241918178c01803f52.tar.gz sssd2-198e04f81f26c051037817241918178c01803f52.tar.xz sssd2-198e04f81f26c051037817241918178c01803f52.zip |
Add configure check for sasl.h
Diffstat (limited to 'server')
-rw-r--r-- | server/configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/configure.ac b/server/configure.ac index a182e06a..1a941583 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -109,6 +109,8 @@ fi 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=]) 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]) |