summaryrefslogtreecommitdiffstats
path: root/kioslaves/configure.in.in
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /kioslaves/configure.in.in
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslaves/configure.in.in')
-rw-r--r--kioslaves/configure.in.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/kioslaves/configure.in.in b/kioslaves/configure.in.in
new file mode 100644
index 000000000..47b98682b
--- /dev/null
+++ b/kioslaves/configure.in.in
@@ -0,0 +1,27 @@
+KDE_CHECK_SSL
+
+AC_ARG_WITH(sasl,
+ [AC_HELP_STRING(--with-sasl,
+ [enable support for authentication through cyrus-sasl @<:@default=check@:>@])],
+ [], with_sasl=check)
+
+sasl2_header="no"
+SASL2_LIBS=""
+if test "x$with_sasl" != xno; then
+ 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
+
+ if test "x$with_sasl" != xcheck && test -z "$SASL2_LIBS"; then
+ AC_MSG_ERROR([--with-sasl was given, but test for cyrus-sasl failed])
+ fi
+fi
+
+AC_SUBST(SASL2_LIBS)
+
+AM_CONDITIONAL(compile_kio_sieve, test -n "$SASL2_LIBS")