You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
414 B
16 lines
414 B
KDE_CHECK_SSL
|
|
|
|
sasl2_header="no"
|
|
SASL2_LIBS=""
|
|
|
|
KDE_CHECK_HEADERS(sasl.h)dnl SASL1 header is enough for kio_ldap
|
|
KDE_CHECK_HEADERS(sasl/sasl.h, sasl2_header="yes")
|
|
if test "$sasl2_header" = "yes" ; then
|
|
KDE_CHECK_LIB(sasl2, sasl_client_init, SASL2_LIBS="-lsasl2")
|
|
fi
|
|
|
|
if test "x$SASL2_LIBS" != "x" ; then
|
|
AC_DEFINE_UNQUOTED(HAVE_LIBSASL2, 1, [Define if you have cyrus-sasl2 libraries])
|
|
fi
|
|
AC_SUBST(SASL2_LIBS)
|