mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
948f0ac5b9
Fixes build failure on -current. Signed-off-by: David Spencer <baildon.research@googlemail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
25 lines
606 B
Diff
25 lines
606 B
Diff
image.cpp:530:61: error: ‘memcpy’ was not declared in this scope
|
||
|
||
https://bugs.gentoo.org/show_bug.cgi?id=464764
|
||
|
||
Patch written by Lars Wendler <polynomial-c@gentoo.org>
|
||
--- a/celestia/src/celengine/image.cpp
|
||
+++ b/celestia/src/celengine/image.cpp
|
||
@@ -42,6 +42,7 @@ extern "C" {
|
||
#include "jpeglib.h"
|
||
#else
|
||
#include <cstdio>
|
||
+#include <string.h>
|
||
#include <jpeglib.h>
|
||
#endif
|
||
}
|
||
--- a/celestia/src/celengine/texture.cpp
|
||
+++ b/celestia/src/celengine/texture.cpp
|
||
@@ -28,6 +28,7 @@
|
||
#include <cstdlib>
|
||
#include <cstdio>
|
||
#include <cassert>
|
||
+#include <string.h>
|
||
|
||
#ifndef _WIN32
|
||
#ifndef TARGET_OS_MAC
|