From: Timo Sirainen Date: Tue, 29 Oct 2013 19:10:33 +0000 (+0200) Subject: configure: Added mdbox_deleted storage. X-Git-Tag: 2.2.7~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ed9535bb5de72baa53677cef4ffdf9eedaa61481;p=thirdparty%2Fdovecot%2Fcore.git configure: Added mdbox_deleted storage. --- diff --git a/configure.ac b/configure.ac index b90f401158..e47784533f 100644 --- a/configure.ac +++ b/configure.ac @@ -2523,11 +2523,15 @@ LINKED_STORAGE_LIBS= mailbox_list_drivers="maildir imapdir fs index none shared" have_sdbox=no +have_mdbox=no for storage in $mail_storages; do LINKED_STORAGE_LIBS="$LINKED_STORAGE_LIBS `eval echo \\$${storage}_libs`" if test $storage = sdbox; then have_sdbox=yes fi + if test $storage = mdbox; then + have_mdbox=yes + fi if test $storage = sdbox || test $storage = mdbox; then LINKED_STORAGE_LIBS="$LINKED_STORAGE_LIBS $dbox_common_libs" dbox_common_libs="" @@ -2546,6 +2550,9 @@ if test $have_sdbox = yes; then # create alias for sdbox mail_storages="$mail_storages dbox" fi +if test $have_mdbox = yes; then + mail_storages="$mail_storages mdbox_deleted" +fi dnl ** dnl ** Shared libraries usage