Files
packages/net/kea/patches/050-boost-static-assert.patch
Philip Prindeville 698cca3a48 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 <boost/static_assert.hpp> which wasn't
previously the case.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2026-01-06 13:05:40 -07:00

11 lines
244 B
Diff

--- a/src/lib/log/logger_level_impl.cc
+++ b/src/lib/log/logger_level_impl.cc
@@ -10,6 +10,7 @@
#include <string.h>
#include <iostream>
#include <boost/lexical_cast.hpp>
+#include <boost/static_assert.hpp>
#include <log4cplus/logger.h>