mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
mutt: add libidn2 support
libidn2 support was added in version 1.10: http://www.mutt.org/relnotes/1.10 libidn and libidn2 can't be selected at the same time: see configure.ac Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
01b7a01fe8
commit
cdd532ffd2
@ -16,11 +16,15 @@ MUTT_DEPENDENCIES += libiconv
|
|||||||
MUTT_CONF_OPTS += --enable-iconv
|
MUTT_CONF_OPTS += --enable-iconv
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
# Both options can't be selected at the same time so prefer libidn2
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
||||||
|
MUTT_DEPENDENCIES += libidn2
|
||||||
|
MUTT_CONF_OPTS += --with-idn2 --without-idn
|
||||||
|
else ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
||||||
MUTT_DEPENDENCIES += libidn
|
MUTT_DEPENDENCIES += libidn
|
||||||
MUTT_CONF_OPTS += --with-idn
|
MUTT_CONF_OPTS += --with-idn --without-idn2
|
||||||
else
|
else
|
||||||
MUTT_CONF_OPTS += --without-idn
|
MUTT_CONF_OPTS += --without-idn --without-idn2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
|
ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user