From 198e04f81f26c051037817241918178c01803f52 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 5 Nov 2009 09:12:26 -0500 Subject: Add configure check for sasl.h --- server/configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/configure.ac b/server/configure.ac index a182e06a3..1a9415839 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]) -- cgit