EXTRA_PROGRAMS = mutt_dotlock pgpring pgpewrap mutt_md5
# Test the .tar file by building everything
-AM_DISTCHECK_CONFIGURE_FLAGS = --enable-compressed --enable-debug \
+AM_DISTCHECK_CONFIGURE_FLAGS = --enable-debug \
--enable-gpgme --enable-imap --enable-nntp --enable-notmuch \
--enable-pop --enable-smtp --with-bdb --with-gdbm \
--with-gnutls --with-gss --with-kyotocabinet --with-lmdb --with-qdbm \
bin_PROGRAMS = mutt $(DOTLOCK_TARGET) $(PGPAUX_TARGET)
mutt_SOURCES = addrbook.c alias.c ascii.c attach.c base64.c browser.c buffer.c \
- buffy.c charset.c color.c commands.c complete.c compose.c copy.c \
+ buffy.c charset.c color.c commands.c complete.c compose.c compress.c copy.c \
crypt_mod.c crypt_mod.h crypt.c cryptglue.c curs_lib.c curs_main.c \
date.c edit.c editmsg.c enter.c filter.c flags.c from.c getdomain.c \
group.c handler.c hash.c hdrline.c headers.c help.c history.c hook.c \
AM_CPPFLAGS=-I. -I$(top_srcdir) $(GPGME_CFLAGS)
-EXTRA_mutt_SOURCES = account.c bcache.c bcache.h browser.h compress.c \
+EXTRA_mutt_SOURCES = account.c bcache.c bcache.h browser.h \
crypt_gpgme.c crypt_mod_pgp_classic.c crypt_mod_pgp_gpgme.c \
crypt_mod_smime_classic.c crypt_mod_smime_gpgme.c dotlock.c \
gnupgparse.c mbyte.h md5.c mutt_idna.c mutt_idna.h \
use_gpgme="yes"
use_pgp="yes"
use_smime="yes"
- use_compressed="yes"
use_notmuch="yes"
use_pop="yes"
use_imap="yes"
use_gpgme="no"
use_pgp="no"
use_smime="no"
- use_compressed="no"
use_notmuch="no"
use_pop="no"
use_imap="no"
AC_HELP_STRING([--enable-lua], [Enable lua scripting support]),
[use_lua=$enableval])
-AC_ARG_ENABLE(compressed,
- AC_HELP_STRING([--enable-compressed], [Enable compressed folders support]),
- [use_compressed=$enableval])
-
AC_ARG_ENABLE(notmuch,
AC_HELP_STRING([--enable-notmuch], [Enable NOTMUCH support]),
[use_notmuch=$enableval])
SMIMEAUX_TARGET="smime_keys"
])
+AC_DEFINE(USE_COMPRESSED, 1, [Define to enable compressed folders support.])
AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.])
-dnl --enable-compressed
-AS_IF([test x$use_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)
-
dnl --enable-lua
AS_IF([test x$use_lua = "xyes"], [
AX_PROG_LUA([5.2],[],:,enable_lua=no)
PGP: $use_pgp
SMIME: $use_smime
Notmuch: $use_notmuch
- Compressed Folder: $use_compressed
Header Cache(s): $hcache_db_used
Lua: $use_lua