From 5db5772db12e41da9389863062334fcb27f29259 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Mar 2010 09:05:43 +1100 Subject: build: fixed the build without sasl libraries We need to only enable the cyrus_sasl module if we have sasl/sasl.h --- source4/auth/wscript_configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/auth/wscript_configure') diff --git a/source4/auth/wscript_configure b/source4/auth/wscript_configure index 842870cca3..7a932697c6 100644 --- a/source4/auth/wscript_configure +++ b/source4/auth/wscript_configure @@ -1,6 +1,6 @@ conf.CHECK_HEADERS('security/pam_appl.h') conf.CHECK_FUNCS_IN('pam_start', 'pam') -conf.CHECK_HEADERS('sasl/sasl.h') -conf.CHECK_FUNCS_IN('sasl_client_init', 'sasl2') - +if (conf.CHECK_HEADERS('sasl/sasl.h') and + conf.CHECK_FUNCS_IN('sasl_client_init', 'sasl2')): + conf.DEFINE('HAVE_SASL', 1) -- cgit