+patch-compress-neomutt
+patch-cond-date-neomutt
+patch-fmemopen-neomutt
+patch-ifdef-neomutt
+patch-index-color-neomutt
+patch-initials-neomutt
+patch-keywords-neomutt
+patch-limit-current-thread-neomutt
+patch-lmdb-neomutt
+patch-nested-if-neomutt
+patch-new-mail-neomutt
+patch-progress-neomutt
+patch-quasi-delete-neomutt
+ patch-sidebar-neomutt
+patch-skip-quoted-neomutt
+patch-smime-encrypt-self-neomutt
+patch-status-color-neomutt
+patch-tls-sni-neomutt
SMIMEAUX_TARGET="smime_keys"
fi
- AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]),
- [ if test x$enableval = xyes ; then
- AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.])
- OPS="$OPS \$(srcdir)/OPS.SIDEBAR"
- MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o"
- fi
+ AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]), enable_sidebar=$enableval, enable_sidebar=no)
+ AS_IF([test x$enable_sidebar = "xyes"], [
+ AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.])
+ OPS="$OPS \$(srcdir)/OPS.SIDEBAR"
+ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o"
])
+AC_ARG_ENABLE(compressed, AC_HELP_STRING([--enable-compressed], [Enable compressed folders support]),
+ enable_compressed=$enableval, enable_compressed=no
+)
+AS_IF([test x$enable_compressed = "xyes"], [
+ AC_DEFINE(USE_COMPRESSED, 1, [Define to enable compressed folders support.])
+ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS compress.o"
+])
+AM_CONDITIONAL(BUILD_COMPRESS, test x$enable_compressed = xyes)
+
AC_ARG_WITH(mixmaster, AS_HELP_STRING([--with-mixmaster@<:@=PATH@:>@],[Include Mixmaster support]),
[if test "$withval" != no
then