[dovecot-cvs] dovecot configure.in,1.307,1.308
tss at dovecot.org
tss at dovecot.org
Sun Oct 8 22:25:19 UTC 2006
- Previous message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.49.2.1, 1.49.2.2 passdb-sia.c, NONE, 1.1.2.1 passdb.c, 1.42, 1.42.2.1
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.50, 1.51 passdb-sia.c, 1.1, 1.2 passdb.c, 1.42, 1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv27788
Modified Files:
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.307
retrieving revision 1.308
diff -u -d -r1.307 -r1.308
--- configure.in 17 Sep 2006 23:15:53 -0000 1.307
+++ configure.in 8 Oct 2006 21:25:15 -0000 1.308
@@ -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
@@ -1438,6 +1447,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, [
- Previous message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.49.2.1, 1.49.2.2 passdb-sia.c, NONE, 1.1.2.1 passdb.c, 1.42, 1.42.2.1
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.50, 1.51 passdb-sia.c, 1.1, 1.2 passdb.c, 1.42, 1.43
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list