From: Timo Sirainen Date: Wed, 12 Nov 2008 15:08:15 +0000 (+0200) Subject: configure: Shared storage should always be enabled, don't allow removing it X-Git-Tag: 1.2.alpha4~97 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=123fb43540f7ca46bbc5f29ca1553e09d32be69e;p=thirdparty%2Fdovecot%2Fcore.git configure: Shared storage should always be enabled, don't allow removing it (and causing a compiler failure). --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index 69c82cc3bf..5ff9ed8b3d 100644 --- a/configure.in +++ b/configure.in @@ -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=""