From 04e8f8d1f191104c2238629ece841d139ea92ba6 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 11 Mar 2018 23:20:11 +0100 Subject: [PATCH] gsmlib: use preferred standard C++ lib Currently libstdc++ is hardcoded. Change that and use whatever standard C++ lib has preference. Signed-off-by: Sebastian Kemper --- libs/gsmlib/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/gsmlib/Makefile b/libs/gsmlib/Makefile index 4184c21..a67e4d1 100644 --- a/libs/gsmlib/Makefile +++ b/libs/gsmlib/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gsmlib PKG_VERSION:=1.10-20140304 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/vbouchaud/gsmlib.git @@ -31,6 +31,7 @@ PKG_LICENSE:=LGPL-2.1+ PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Sebastian Kemper +include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME)/Default @@ -43,7 +44,7 @@ $(call Package/$(PKG_NAME)/Default) SECTION:=libs CATEGORY:=Libraries TITLE:=GSM mobile phone access lib - DEPENDS:=+libstdcpp + DEPENDS:=$(CXX_DEPENDS) endef define Package/gsm-utils -- 2.30.2