From: Timo Sirainen Date: Sat, 15 Nov 2008 16:42:50 +0000 (+0200) Subject: configure: Previous change broke shared storage completely. X-Git-Tag: 1.2.alpha4~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6937953695d99c09d9df0a33107f6ef0c1120bdb;p=thirdparty%2Fdovecot%2Fcore.git configure: Previous change broke shared storage completely. --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index 5ff9ed8b3d..bf5d2943ed 100644 --- a/configure.in +++ b/configure.in @@ -366,8 +366,8 @@ AC_ARG_WITH(storages, 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 raw") + mail_storages="shared `echo "$withval"|sed 's/,/ /g'`" ], + mail_storages="shared 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=$shared_libs +STORAGE_LIBS= for storage in $mail_storages; do if test "$storage" = "$deliver_storage"; then deliver_storage=""