commit b405fc09602cf92f689177612378136a27f78f2d
Author: Priit Laes <plaes@plaes.org>
Date: Sun Apr 1 21:10:57 2007 +0300
Fixed Cyrus-SASL check.
diff --git a/configure.in b/configure.in
index e8e74f3..2e32b8b 100644
|
a
|
b
|
|
| 281 | 281 | AC_DEFINE(HAVE_IDN,1,[Define to 1 if Libidn is available.]) |
| 282 | 282 | fi |
| 283 | 283 | |
| | 284 | dnl |
| | 285 | dnl Cyrus-SASL |
| | 286 | dnl |
| | 287 | AC_CHECK_LIB(sasl2, sasl_client_init, [], |
| | 288 | [AC_MSG_ERROR([Cyrus-SASL library not found])]) |
| | 289 | AC_CHECK_HEADERS("sasl/sasl.h", , |
| | 290 | [AC_MSG_ERROR([Cyrus-SASL development headers not found])]) |
| 284 | 291 | |
| 285 | | AC_CHECK_LIB(sasl2,sasl_client_init) |
| 286 | 292 | |
| 287 | 293 | dnl find openssl >= 0.9.6b |
| 288 | 294 | AC_ARG_ENABLE(ssl, AC_HELP_STRING([--enable-ssl], [enable SSL/TLS support (yes)]), want_ssl=$enableval, want_ssl=yes) |