From d75631a75ae1edfc84ae0432c74b268f1c6535d6 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 26 Dec 2018 12:27:35 -0800 Subject: [PATCH] libpcre: Allow building with uclibc++ This makes the libc++ adjustable Signed-off-by: Rosen Penev --- libs/pcre/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/pcre/Makefile b/libs/pcre/Makefile index caa669d509..3208aa7aca 100644 --- a/libs/pcre/Makefile +++ b/libs/pcre/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pcre PKG_VERSION:=8.42 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@SF/$(PKG_NAME) @@ -23,12 +23,13 @@ PKG_FIXUP:=autoreconf PKG_INSTALL:=1 +include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk define Package/libpcre/default SECTION:=libs CATEGORY:=Libraries - URL:=http://www.pcre.org/ + URL:=https://www.pcre.org/ endef define Package/libpcre @@ -44,7 +45,7 @@ endef define Package/libpcrecpp $(call Package/libpcre/default) TITLE:=C++ wrapper for Perl Compatible Regular Expression library - DEPENDS:=+libpcre +libstdcpp + DEPENDS:=+libpcre $(CXX_DEPENDS) endef TARGET_CFLAGS += $(FPIC) -- 2.30.2