[dovecot-cvs] dovecot configure.in,1.277.2.34,1.277.2.35

tss at dovecot.org tss at dovecot.org
Sun Oct 8 22:25:16 UTC 2006


Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv27793

Modified Files:
      Tag: branch_1_0
	configure.in 
Log Message:
Tru64 SIA authentication support. Patch by Simon L Jackson
(simon jackson carringbush net)



Index: configure.in
===================================================================
RCS file: /var/lib/cvs/dovecot/configure.in,v
retrieving revision 1.277.2.34
retrieving revision 1.277.2.35
diff -u -d -r1.277.2.34 -r1.277.2.35
--- configure.in	10 Sep 2006 18:01:29 -0000	1.277.2.34
+++ configure.in	8 Oct 2006 21:25:13 -0000	1.277.2.35
@@ -135,6 +135,15 @@
 	fi,
 	want_gssapi=no)
 
+AC_ARG_WITH(sia,
+[  --with-sia              Build with Tru64 SIA support],
+      if test x$withval = xno; then
+              want_sia=no
+      else
+              want_sia=yes
+      fi,
+      want_sia=no)
+
 AC_ARG_WITH(ldap,
 [  --with-ldap             Build with LDAP support],
 	if test x$withval = xno; then
@@ -1419,6 +1428,14 @@
 	fi
 fi
 
+if test $want_sia = yes; then
+	AC_CHECK_FUNC(sia_validate_user, [
+		AC_DEFINE(PASSDB_SIA,, Build with Tru64 SIA support)
+		passdb="$passdb sia"
+		AUTH_LIBS="$AUTH_LIBS -depth_ring_search"
+	])
+fi
+
 if test $want_ldap = yes; then
 	AC_CHECK_LIB(ldap, ldap_init, [
 		AC_CHECK_HEADER(ldap.h, [



More information about the dovecot-cvs mailing list