Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From 8be99f5972826c25378bccb9fbd7291623c7b2a7 Mon Sep 17 00:00:00 2001 2From: Moraxyc <i@qaq.li> 3Date: Fri, 9 May 2025 13:39:17 +0800 4Subject: [PATCH] Compatibility with boost 1.83 5 6--- 7 boost/network/protocol/http/server/impl/parsers.ipp | 3 ++- 8 1 file changed, 2 insertions(+), 1 deletion(-) 9 10diff --git a/boost/network/protocol/http/server/impl/parsers.ipp b/boost/network/protocol/http/server/impl/parsers.ipp 11index c31e60e..3272c2f 100755 12--- a/boost/network/protocol/http/server/impl/parsers.ipp 13+++ b/boost/network/protocol/http/server/impl/parsers.ipp 14@@ -13,6 +13,7 @@ 15 #include <tuple> 16 #include <boost/fusion/include/std_tuple.hpp> 17 #include <boost/network/protocol/http/message/header.hpp> 18+#include <boost/regex/pending/unicode_iterator.hpp> 19 20 #ifdef BOOST_NETWORK_NO_LIB 21 #ifndef BOOST_NETWORK_INLINE 22@@ -32,7 +33,7 @@ typedef std::basic_string<uint32_t> u32_string; 23 template <> // <typename Attrib, typename T, typename Enable> 24 struct assign_to_container_from_value<std::string, u32_string, void> { 25 static void call(u32_string const& val, std::string& attr) { 26- u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(), 27+ boost::u32_to_u8_iterator<u32_string::const_iterator> begin = val.begin(), 28 end = val.end(); 29 for (; begin != end; ++begin) attr += *begin; 30 } 31-- 322.48.1 33