From dece7f87e789f35311bfab785fcd9a063ead1afd Mon Sep 17 00:00:00 2001 From: Dustin Sallings Date: Wed, 1 Feb 2012 00:11:17 -0800 Subject: Better detection of sasl_callback_ft --- configure.ac | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 31f1f9d..9915a46 100644 --- a/configure.ac +++ b/configure.ac @@ -301,6 +301,33 @@ AH_BOTTOM([#ifdef HAVE_INTTYPES_H #endif ]) +dnl ********************************************************************** +dnl Figure out if this system has the stupid sasl_callback_ft +dnl ********************************************************************** + +AC_DEFUN([AC_HAVE_SASL_CALLBACK_FT], +[AC_CACHE_CHECK(for sasl_callback_ft, ac_cv_has_sasl_callback_ft, +[ + AC_TRY_COMPILE([ + #ifdef HAVE_SASL_SASL_H + #include + #include + #endif + ],[ + sasl_callback_ft a_callback; + ],[ + ac_cv_has_sasl_callback_ft=yes + ],[ + ac_cv_has_sasl_callback_ft=no + ]) +]) +if test $ac_cv_has_sasl_callback_ft = yes; then + AC_DEFINE(HAVE_SASL_CALLBACK_FT, 1, [we have sasl_callback_ft]) +fi +]) + +AC_HAVE_SASL_CALLBACK_FT + dnl ********************************************************************** dnl DETECT_UINT64_SUPPORT dnl -- cgit v1.2.1