From 2ca7fc059df719f64db25c291f75ccc5d1230eed Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sat, 8 Mar 2014 00:57:37 +0000 Subject: [PATCH] poco: ensure we pass our CFLAGS and LDFLAGS Use the CFLAGS32, CXXFLAGS32 and LINKFLAGS32 to pass our custom CFLAGS. Signed-off-by: Florian Fainelli SVN-Revision: 39824 --- libs/poco/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/libs/poco/Makefile b/libs/poco/Makefile index 2b75e1f5d..d93a990c8 100644 --- a/libs/poco/Makefile +++ b/libs/poco/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2010 OpenWrt.org +# Copyright (C) 2007-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=poco PKG_VERSION:=1.3.6p2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://downloads.sourceforge.net/project/poco/sources/poco-1.3.6 @@ -42,6 +42,11 @@ CONFIGURE_ARGS += \ --no-sharedmemory \ --no-wstring +MAKE_FLAGS += \ + CXXFLAGS32="$(TARGET_CXXFLAGS)" \ + CFLAGS32="$(TARGET_CFLAGS)" \ + LINKFLAGS32="$(TARGET_LDFLAGS)" + define Package/poco/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libPoco{Foundation,XML,Net,Util}.so* $(1)/usr/lib/ -- 2.30.2