From e056446589e2fee53f823e0da1fb34076018c3dd Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Sun, 21 Nov 2010 22:19:51 +0000 Subject: [PATCH 1/1] Fix the test for sasl.h to look in the correct place. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 7730717..8e8fb1c 100644 --- a/configure.in +++ b/configure.in @@ -704,7 +704,7 @@ dnl CHECK FOR CYRUS-SASL dnl -------------------- AS_IF([test x"$sasl_support" = x"yes"],[ - AC_CHECK_HEADER([sasl.h], , [AC_MSG_ERROR([sasl.h not found])]) + AC_CHECK_HEADER([sasl/sasl.h], , [AC_MSG_ERROR([sasl.h not found])]) AC_CHECK_LIB([sasl2], [sasl_client_new], , [AC_MSG_ERROR([Cyrus SASL library not found])])]) -- 1.7.10.4