dovecot-1.3: configure: Removed --with-* parameters for passdbs/...
dovecot at dovecot.org
dovecot at dovecot.org
Thu Apr 23 21:07:53 EEST 2009
details: http://hg.dovecot.org/dovecot-1.3/rev/69aa6e878a59
changeset: 9158:69aa6e878a59
user: Timo Sirainen <tss at iki.fi>
date: Thu Apr 23 14:07:45 2009 -0400
description:
configure: Removed --with-* parameters for passdbs/userdbs that don't require external libraries.
There's really no point in disabling them in configure stage.
diffstat:
1 file changed, 7 insertions(+), 25 deletions(-)
configure.in | 32 +++++++-------------------------
diffs (68 lines):
diff -r ee378a4ba6cd -r 69aa6e878a59 configure.in
--- a/configure.in Thu Apr 23 14:02:09 2009 -0400
+++ b/configure.in Thu Apr 23 14:07:45 2009 -0400
@@ -68,21 +68,11 @@ AC_ARG_WITH(linux-quota,
[Linux quota version to use])
)
-AC_ARG_WITH(passwd,
-[ --with-passwd Build with /etc/passwd support (default)],
- TEST_WITH(passwd, $withval),
- want_passwd=yes)
-
AC_ARG_WITH(nss,
[ --with-nss Build with NSS module support (auto)],
TEST_WITH(nss, $withval),
want_nss=auto)
-AC_ARG_WITH(passwd-file,
-[ --with-passwd-file Build with passwd-like file support (default)],
- TEST_WITH(passwd-file, $withval),
- want_passwd_file=yes)
-
AC_ARG_WITH(shadow,
[ --with-shadow Build with shadow password support (auto)],
TEST_WITH(shadow, $withval),
@@ -92,11 +82,6 @@ AC_ARG_WITH(pam,
[ --with-pam Build with PAM support (auto)],
TEST_WITH(pam, $withval),
want_pam=auto)
-
-AC_ARG_WITH(checkpassword,
-[ --with-checkpassword Build with checkpassword support (default)],
- TEST_WITH(checkpassword, $withval),
- want_checkpassword=yes)
AC_ARG_WITH(bsdauth,
[ --with-bsdauth Build with BSD authentication support (auto)],
@@ -134,16 +119,6 @@ AC_ARG_WITH(vpopmail,
want_vpopmail=auto
vpopmail_home="`echo ~vpopmail`"
])
-
-AC_ARG_WITH(static-userdb,
-[ --with-static-userdb Build with static userdb support (default)],
- TEST_WITH(static-userdb, $withval),
- want_static_userdb=yes)
-
-AC_ARG_WITH(prefetch-userdb,
-[ --with-prefetch-userdb Build with prefetch userdb support (default)],
- TEST_WITH(prefetch-userdb, $withval),
- want_prefetch_userdb=yes)
AC_ARG_WITH(db,
[ --with-db Build with Berkeley DB support],
@@ -289,6 +264,13 @@ AC_ARG_ENABLE(header-install,
fi,
want_headers=no)
AM_CONDITIONAL(INSTALL_HEADERS, test "$want_headers" = "yes")
+
+dnl always enable all of the passbs and userdbs that don't require extra libs
+want_passwd=yes
+want_passwd_file=yes
+want_checkpassword=yes
+want_static_userdb=yes
+want_prefetch_userdb=yes
AC_ISC_POSIX
AC_PROG_CC
More information about the dovecot-cvs
mailing list