12345678910111213141516171819202122232425262728293031323334353637383940 |
- diff --git a/package/mutt/mutt.mk b/package/mutt/mutt.mk
- index cd44ca1..dab73cf 100644
- --- a/package/mutt/mutt.mk
- +++ b/package/mutt/mutt.mk
- @@ -9,7 +9,8 @@ MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
- MUTT_LICENSE = GPLv2+
- MUTT_LICENSE_FILES = GPL
- MUTT_DEPENDENCIES = ncurses
- -MUTT_CONF_OPTS = --disable-smtp
- +#MUTT_CONF_OPTS = --disable-smtp
- +MUTT_CONF_OPTS = --enable-smtp
- MUTT_AUTORECONF = YES
-
- ifeq ($(BR2_PACKAGE_LIBICONV),y)
- @@ -37,16 +38,17 @@ MUTT_CONF_OPTS += --disable-pop
- endif
-
- # SSL support is only used by imap or pop3 module
- -ifneq ($(BR2_PACKAGET_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
- -ifeq ($(BR2_PACKAGE_OPENSSL),y)
- +#ifneq ($(BR2_PACKAGET_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
- +#ifeq ($(BR2_PACKAGE_OPENSSL),y)
- MUTT_DEPENDENCIES += openssl
- MUTT_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
- -else
- -MUTT_CONF_OPTS += --without-ssl
- -endif
- -else
- -MUTT_CONF_OPTS += --without-ssl
- -endif
- +MUTT_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr
- +#else
- +#MUTT_CONF_OPTS += --without-ssl
- +#endif
- +#else
- +#MUTT_CONF_OPTS += --without-ssl
- +#endif
-
- # Avoid running tests to check for:
- # - target system is *BSD
|