diff options
author | 2022-12-19 14:57:33 +0100 | |
---|---|---|
committer | 2022-12-20 10:53:10 +0000 | |
commit | c6f63d6d4100e9bdc95f4e9c6804335e124ac6bd (patch) | |
tree | c0a2a5e97db23307d1fa42f28b3d392da6626ed1 /media-gfx/blender/files | |
parent | app-crypt/gnupg: add 2.4.0 (diff) | |
download | gentoo-c6f63d6d4100e9bdc95f4e9c6804335e124ac6bd.tar.gz gentoo-c6f63d6d4100e9bdc95f4e9c6804335e124ac6bd.tar.bz2 gentoo-c6f63d6d4100e9bdc95f4e9c6804335e124ac6bd.zip |
media-gfx/blender: fix build with boost-1.81
Patch as suggested by the compiler:
"intern/locale/boost_locale_wrapper.cpp:12:1: note: ‘std::cout’ is defined
in header ‘<iostream>’; did you forget to ‘#include <iostream>’?"
Signed-off-by: Christophe Lermytte <gentoo@lermytte.be>
Closes: https://bugs.gentoo.org/887059
Closes: https://github.com/gentoo/gentoo/pull/28713
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/blender/files')
-rw-r--r-- | media-gfx/blender/files/blender-3.3.0-fix-build-with-boost-1.81.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/media-gfx/blender/files/blender-3.3.0-fix-build-with-boost-1.81.patch b/media-gfx/blender/files/blender-3.3.0-fix-build-with-boost-1.81.patch new file mode 100644 index 000000000000..3a544811e484 --- /dev/null +++ b/media-gfx/blender/files/blender-3.3.0-fix-build-with-boost-1.81.patch @@ -0,0 +1,17 @@ +https://bugs.gentoo.org/887059 + +Adding include as suggested by the compiler: + +"intern/locale/boost_locale_wrapper.cpp:12:1: note: ‘std::cout’ is defined +in header ‘<iostream>’; did you forget to ‘#include <iostream>’?" + +--- a/intern/locale/boost_locale_wrapper.cpp ++++ b/intern/locale/boost_locale_wrapper.cpp +@@ -9,6 +9,7 @@ + #include <stdio.h> + + #include "boost_locale_wrapper.h" ++#include <iostream> + + static std::string messages_path; + static std::string default_domain; |