From 1442889e2e5586171620838e520943fef89cce1f Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Mon, 5 May 2014 19:31:03 +0000 Subject: [PATCH] httping: fix build with NLS v2: INTL support was not at default DEPENDS (broke nossl) libintl.h was not found when CONFIG_BUILD_NLS was selected explicit -lintl fixes undefined reference to `libintl_gettext' fixes ticket #15816 Signed-off-by: Dirk Neukirchen Signed-off-by: Florian Fainelli SVN-Revision: 40701 --- net/httping/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net/httping/Makefile b/net/httping/Makefile index 3c0b1ef35..b0b41b17d 100644 --- a/net/httping/Makefile +++ b/net/httping/Makefile @@ -26,6 +26,7 @@ define Package/httping/Default CATEGORY:=Network TITLE:=Httping is like 'ping' but for http-requests URL:=http://www.vanheusden.com/httping/ + DEPENDS:=$(INTL_DEPENDS) endef define Package/httping/Default/description @@ -60,12 +61,14 @@ endef define Build/Configure endef +TARGET_LDFLAGS += $(INTL_LDFLAGS) $(if $(INTL_FULL),-lintl) + MAKE_FLAGS += \ DEBUG="no" \ FW="no" \ NC="no" \ TFO="no" - + ifeq ($(BUILD_VARIANT),nossl) MAKE_FLAGS += SSL="no" endif -- 2.30.2