Browse Source

msmtp: prevent use of IDN support on uClibc

Signed-off-by: Nicolas Thill <nico@openwrt.org>
Nicolas Thill 9 years ago
parent
commit
0a05c1340c
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      mail/msmtp/Makefile

+ 5
- 1
mail/msmtp/Makefile View File

10
 
10
 
11
 PKG_NAME:=msmtp
11
 PKG_NAME:=msmtp
12
 PKG_VERSION:=1.6.1
12
 PKG_VERSION:=1.6.1
13
-PKG_RELEASE:=2
13
+PKG_RELEASE:=3
14
 
14
 
15
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
16
 PKG_SOURCE_URL:=@SF/msmtp
16
 PKG_SOURCE_URL:=@SF/msmtp
88
 	--without-libsecret \
88
 	--without-libsecret \
89
 	--without-macosx-keyring \
89
 	--without-macosx-keyring \
90
 
90
 
91
+ifneq ($(CONFIG_USE_UCLIBC),)
92
+  CONFIGURE_ARGS += --disable-gai-idn
93
+endif
94
+
91
 MAKE_FLAGS :=
95
 MAKE_FLAGS :=
92
 
96
 
93
 ifeq ($(BUILD_VARIANT),ssl)
97
 ifeq ($(BUILD_VARIANT),ssl)