From: Timo Sirainen Date: Thu, 23 Apr 2009 18:07:45 +0000 (-0400) Subject: configure: Removed --with-* parameters for passdbs/userdbs that don't require externa... X-Git-Tag: 2.0.alpha1~894 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76294f9348cd587e80add4a14053bb1ce2649556;p=thirdparty%2Fdovecot%2Fcore.git configure: Removed --with-* parameters for passdbs/userdbs that don't require external libraries. There's really no point in disabling them in configure stage. --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index 43598a12bc..12ee25d58c 100644 --- a/configure.in +++ b/configure.in @@ -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), @@ -93,11 +83,6 @@ AC_ARG_WITH(pam, 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)], TEST_WITH(bsdauth, $withval), @@ -135,16 +120,6 @@ AC_ARG_WITH(vpopmail, 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], TEST_WITH(db, $withval), @@ -290,6 +265,13 @@ AC_ARG_ENABLE(header-install, 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 AC_PROG_CPP