diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-04-08 15:06:21 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-04-08 15:06:21 +0000 |
commit | 5324f88bd4aeee2afd0c0229d75dc54483364493 (patch) | |
tree | 916371891f09a04d9bedb0f9c90a41590d72f2ca /media-gfx/mandelbulber/files | |
parent | Version bump, wrt bug #430486 (diff) | |
download | historical-5324f88bd4aeee2afd0c0229d75dc54483364493.tar.gz historical-5324f88bd4aeee2afd0c0229d75dc54483364493.tar.bz2 historical-5324f88bd4aeee2afd0c0229d75dc54483364493.zip |
Include string.h where required for memcpy() or memset() since it's no longer implicitly pulled in by libpng since 1.6.0 wrt #464972 by Kacper Kowalik
Package-Manager: portage-2.2.0_alpha171/cvs/Linux x86_64
Manifest-Sign-Key: 0x4868F14D
Diffstat (limited to 'media-gfx/mandelbulber/files')
-rw-r--r-- | media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch b/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch new file mode 100644 index 000000000000..43fb0b982dbd --- /dev/null +++ b/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch @@ -0,0 +1,22 @@ +http://bugs.gentoo.org/464972 + +--- src/texture.cpp ++++ src/texture.cpp +@@ -5,6 +5,7 @@ + * Author: krzysztof + */ + #include <stdio.h> ++#include <string.h> + #include "texture.hpp" + #include "files.h" + +--- src/timeline.cpp ++++ src/timeline.cpp +@@ -6,6 +6,7 @@ + */ + + #include <cstdlib> ++#include <cstring> + + #include "timeline.hpp" + #include "files.h" |