]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
configure: Removed --with-* parameters for passdbs/userdbs that don't require externa...
authorTimo Sirainen <tss@iki.fi>
Thu, 23 Apr 2009 18:07:45 +0000 (14:07 -0400)
committerTimo Sirainen <tss@iki.fi>
Thu, 23 Apr 2009 18:07:45 +0000 (14:07 -0400)
There's really no point in disabling them in configure stage.

--HG--
branch : HEAD

configure.in

index 43598a12bcd85fba5fc86f702245bebb157d27fd..12ee25d58c2e2e41dd0d6eb997c9c7ce2fbbde59 100644 (file)
@@ -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