mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
kea: fix compilation with libcxx
Boost headers try to include experimental/string_view when std is less than c++17. This does not work ith libcxx where this header is not present. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
+3
-2
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=kea
|
||||
PKG_VERSION:=1.8.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://ftp.isc.org/isc/kea/$(PKG_VERSION)
|
||||
@@ -178,7 +178,8 @@ CONFIGURE_VARS += \
|
||||
TARGET_CXXFLAGS += \
|
||||
$(FPIC) \
|
||||
-fdata-sections \
|
||||
-ffunction-sections
|
||||
-ffunction-sections \
|
||||
-std=c++17
|
||||
|
||||
TARGET_LDFLAGS += \
|
||||
-Wl,--gc-sections,--as-needed
|
||||
|
||||
Reference in New Issue
Block a user