mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 21:08:35 -07:00
This also fixes the compilation with boost 1.83.0. Closes: https://github.com/gentoo/gentoo/pull/33261 Signed-off-by: Gerion Entrup <gerion.entrup@flump.de> Signed-off-by: David Seifert <soap@gentoo.org>
29 lines
789 B
Diff
29 lines
789 B
Diff
From 005b377fa09c28a5f61f11319f337ceea640f4ab Mon Sep 17 00:00:00 2001
|
|
From: Tiago de Paula Peixoto <tiago@skewed.de>
|
|
Date: Fri, 1 Sep 2023 10:27:28 +0200
|
|
Subject: [PATCH] Fix compilation with boost 1.83 and boost < 1.76 This unites
|
|
upstream commits: 0a837b40 and 5517e370.
|
|
|
|
---
|
|
src/graph/gml.hh | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/graph/gml.hh b/src/graph/gml.hh
|
|
index 7bea0ca3..b4cb84db 100644
|
|
--- a/src/graph/gml.hh
|
|
+++ b/src/graph/gml.hh
|
|
@@ -26,6 +26,10 @@
|
|
#include <boost/variant/get.hpp>
|
|
#include <boost/spirit/include/support_istream_iterator.hpp>
|
|
|
|
+#if BOOST_VERSION >= 107600
|
|
+#include <boost/regex/v5/unicode_iterator.hpp>
|
|
+#endif
|
|
+
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
#include <boost/property_map/dynamic_property_map.hpp>
|
|
--
|
|
2.41.0
|
|
|