]> git.pld-linux.org Git - packages/blender.git/blob - boost1.81.patch
914047a13db9515a1cace43f7317664e0e466395
[packages/blender.git] / boost1.81.patch
1 From 79837c5ed4b57925bf6c6bb9e7c2248f6f52bbb0 Mon Sep 17 00:00:00 2001
2 From: Sebastian Parborg <darkdefende@gmail.com>
3 Date: Wed, 4 Jan 2023 15:23:26 +0100
4 Subject: [PATCH] Fix building with boost >= 1.81
5
6 In 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
11 diff --git a/intern/locale/boost_locale_wrapper.cpp b/intern/locale/boost_locale_wrapper.cpp
12 index 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.02338 seconds and 2 git commands to generate.