From: Philip Prindeville Date: Mon, 5 Jan 2026 23:20:55 +0000 (-0700) Subject: kea: fix build issue with boost-1.90 static assert X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=698cca3a489e553c653afe17b4e01bd38bd0618f;p=openwrt-packages.git kea: fix build issue with boost-1.90 static assert The headers apparently changed in 1.90 from 1.89 and the definition for BOOST_STATIC_ASSERT() needs to be brought in explicitly from which wasn't previously the case. Signed-off-by: Philip Prindeville --- diff --git a/net/kea/Makefile b/net/kea/Makefile index 5d5492680..30d7f5867 100644 --- a/net/kea/Makefile +++ b/net/kea/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=kea PKG_VERSION:=3.0.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://ftp.isc.org/isc/kea/$(PKG_VERSION) diff --git a/net/kea/patches/050-boost-static-assert.patch b/net/kea/patches/050-boost-static-assert.patch new file mode 100644 index 000000000..b1fe4845e --- /dev/null +++ b/net/kea/patches/050-boost-static-assert.patch @@ -0,0 +1,10 @@ +--- a/src/lib/log/logger_level_impl.cc ++++ b/src/lib/log/logger_level_impl.cc +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include + + #include +