]> git.pld-linux.org Git - packages/blender.git/blame - boost1.81.patch
upstream build fix for boost 1.81
[packages/blender.git] / boost1.81.patch
CommitLineData
938d797a
JP
1From 79837c5ed4b57925bf6c6bb9e7c2248f6f52bbb0 Mon Sep 17 00:00:00 2001
2From: Sebastian Parborg <darkdefende@gmail.com>
3Date: Wed, 4 Jan 2023 15:23:26 +0100
4Subject: [PATCH] Fix building with boost >= 1.81
5
6In boost 1.81 they no longer implicitly include <iostream> anymore.
7---
8 intern/locale/boost_locale_wrapper.cpp | 1 +
9 1 file changed, 1 insertion(+)
10
11diff --git a/intern/locale/boost_locale_wrapper.cpp b/intern/locale/boost_locale_wrapper.cpp
12index fb0e194352a7..80e8d89799a8 100644
13--- a/intern/locale/boost_locale_wrapper.cpp
14+++ b/intern/locale/boost_locale_wrapper.cpp
15@@ -6,6 +6,7 @@
16 */
17
18 #include <boost/locale.hpp>
19+#include <iostream>
20 #include <stdio.h>
21
22 #include "boost_locale_wrapper.h"
This page took 0.034723 seconds and 4 git commands to generate.