diff options
author | Nicolas Thill <nico@openwrt.org> | 2015-03-07 23:16:37 +0100 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2015-03-07 23:28:06 +0100 |
commit | 0a05c1340cd10ff273593ebb58d775359fc3b234 (patch) | |
tree | 4eeba2c825b26402bd2e8b813a14fef200d218ac /mail | |
parent | 3681f30c78e2db184d344fd28a6dd1e28b4d157a (diff) |
msmtp: prevent use of IDN support on uClibc
Signed-off-by: Nicolas Thill <nico@openwrt.org>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/msmtp/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index ae88d5473..8c91a95b0 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=msmtp PKG_VERSION:=1.6.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@SF/msmtp @@ -88,6 +88,10 @@ CONFIGURE_ARGS += \ --without-libsecret \ --without-macosx-keyring \ +ifneq ($(CONFIG_USE_UCLIBC),) + CONFIGURE_ARGS += --disable-gai-idn +endif + MAKE_FLAGS := ifeq ($(BUILD_VARIANT),ssl) |