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,
'$(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=""