|
@@ -4,7 +4,7 @@
|
|
#
|
|
#
|
|
################################################################################
|
|
################################################################################
|
|
|
|
|
|
-MUTT_VERSION = 2.1.5
|
|
|
|
|
|
+MUTT_VERSION = 2.2.0
|
|
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
|
|
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
|
|
MUTT_LICENSE = GPL-2.0+
|
|
MUTT_LICENSE = GPL-2.0+
|
|
MUTT_LICENSE_FILES = GPL
|
|
MUTT_LICENSE_FILES = GPL
|
|
@@ -53,8 +53,15 @@ else
|
|
MUTT_CONF_OPTS += --disable-pop
|
|
MUTT_CONF_OPTS += --disable-pop
|
|
endif
|
|
endif
|
|
|
|
|
|
-# SSL support is only used by imap or pop3 module
|
|
|
|
|
|
+# SASL and SSL support are only used by imap or pop3 module
|
|
ifneq ($(BR2_PACKAGE_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
|
|
ifneq ($(BR2_PACKAGE_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
|
|
|
|
+ifeq ($(BR2_PACKAGE_LIBGSASL),y)
|
|
|
|
+MUTT_DEPENDENCIES += libgsasl
|
|
|
|
+MUTT_CONF_OPTS += --with-gsasl
|
|
|
|
+else
|
|
|
|
+MUTT_CONF_OPTS += --without-gsasl
|
|
|
|
+endif
|
|
|
|
+
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
MUTT_DEPENDENCIES += openssl
|
|
MUTT_DEPENDENCIES += openssl
|
|
MUTT_CONF_OPTS += \
|
|
MUTT_CONF_OPTS += \
|
|
@@ -72,6 +79,7 @@ MUTT_CONF_OPTS += \
|
|
endif
|
|
endif
|
|
else
|
|
else
|
|
MUTT_CONF_OPTS += \
|
|
MUTT_CONF_OPTS += \
|
|
|
|
+ --without-gsasl \
|
|
--without-gnutls \
|
|
--without-gnutls \
|
|
--without-ssl
|
|
--without-ssl
|
|
endif
|
|
endif
|