dovecot-1.2: configure: Shared storage should always be enabled,...

dovecot at dovecot.org dovecot at dovecot.org
Wed Nov 12 17:08:19 EET 2008


details:   http://hg.dovecot.org/dovecot-1.2/rev/3b6999dc112f
changeset: 8392:3b6999dc112f
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Nov 12 17:08:15 2008 +0200
description:
configure: Shared storage should always be enabled, don't allow removing it
(and causing a compiler failure).

diffstat:

1 file changed, 3 insertions(+), 3 deletions(-)
configure.in |    6 +++---

diffs (27 lines):

diff -r 2a9d0bfc2c2b -r 3b6999dc112f configure.in
--- a/configure.in	Tue Nov 11 22:01:51 2008 +0200
+++ b/configure.in	Wed Nov 12 17:08:15 2008 +0200
@@ -362,12 +362,12 @@ AM_CONDITIONAL(BUILD_DELIVER, test "$wan
 
 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-stora
 '$(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=""


More information about the dovecot-cvs mailing list