]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
configure: Shared storage should always be enabled, don't allow removing it
authorTimo Sirainen <tss@iki.fi>
Wed, 12 Nov 2008 15:08:15 +0000 (17:08 +0200)
committerTimo Sirainen <tss@iki.fi>
Wed, 12 Nov 2008 15:08:15 +0000 (17:08 +0200)
(and causing a compiler failure).

--HG--
branch : HEAD

configure.in

index 69c82cc3bf00fa6f58854314ecc3f826e0cdbfb8..5ff9ed8b3d86b34853ad18d1334953b83a17c7ab 100644 (file)
@@ -362,12 +362,12 @@ AM_CONDITIONAL(BUILD_DELIVER, test "$want_deliver" = "yes")
 
 AC_ARG_WITH(storages,
 [  --with-storages         Build with specified mail storage formats
-                          (maildir mbox dbox cydir shared raw)], [
+                          (maildir mbox dbox cydir raw)], [
        if test "$withval" = "yes" -o "$withval" = "no"; then
                AC_MSG_ERROR([--with-storages needs storage list as parameter])
        fi
        mail_storages=`echo "$withval"|sed 's/,/ /g'` ],
-       mail_storages="maildir mbox dbox cydir shared raw")
+       mail_storages="maildir mbox dbox cydir raw")
 AC_SUBST(mail_storages)
 
 AC_ARG_WITH(sql-drivers,
@@ -2275,7 +2275,7 @@ CORE_LIBS='$(top_builddir)/src/lib-storage/index/libstorage_index.a '\
 '$(top_builddir)/src/lib/liblib.a'
 
 deliver_storage="raw"
-STORAGE_LIBS=
+STORAGE_LIBS=$shared_libs
 for storage in $mail_storages; do
   if test "$storage" = "$deliver_storage"; then
     deliver_storage=""