summaryrefslogtreecommitdiff
path: root/app-emulation/gxemul/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-emulation/gxemul/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-emulation/gxemul/files')
-rw-r--r--app-emulation/gxemul/files/0.6.0-fix-mkstemp-test.patch10
-rw-r--r--app-emulation/gxemul/files/0.6.0-fix-mymkstemp.patch11
-rw-r--r--app-emulation/gxemul/files/0.6.0-gcc46.patch16
3 files changed, 0 insertions, 37 deletions
diff --git a/app-emulation/gxemul/files/0.6.0-fix-mkstemp-test.patch b/app-emulation/gxemul/files/0.6.0-fix-mkstemp-test.patch
deleted file mode 100644
index 88883309b909..000000000000
--- a/app-emulation/gxemul/files/0.6.0-fix-mkstemp-test.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure 2012-11-03 09:08:09.373041529 +0000
-+++ configure.new 2012-11-03 09:08:31.999585979 +0000
-@@ -705,6 +705,7 @@
- # mkstemp missing?
- printf "checking for mkstemp... "
- printf "#include <unistd.h>
-+#include <stdlib.h>
- int main(int argc, char *argv[]) { int x; char *y = \"abc\";
- x = mkstemp(y); return 0;}\n" > _tests.cc
- $CXX $CXXFLAGS _tests.cc -o _tests 2> /dev/null
diff --git a/app-emulation/gxemul/files/0.6.0-fix-mymkstemp.patch b/app-emulation/gxemul/files/0.6.0-fix-mymkstemp.patch
deleted file mode 100644
index 80d69f92c827..000000000000
--- a/app-emulation/gxemul/files/0.6.0-fix-mymkstemp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/old_main/misc.cc 2012-11-03 08:47:34.309732354 +0000
-+++ src/old_main/misc.cc.new 2012-11-03 08:47:02.096573614 +0000
-@@ -122,7 +122,7 @@
- p++;
- }
-
-- h = open(templ, O_RDWR, 0600);
-+ h = open(templ, O_CREAT | O_RDWR, 0600);
- return h;
- }
-
diff --git a/app-emulation/gxemul/files/0.6.0-gcc46.patch b/app-emulation/gxemul/files/0.6.0-gcc46.patch
deleted file mode 100644
index eb0ce26b6e1c..000000000000
--- a/app-emulation/gxemul/files/0.6.0-gcc46.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- src/include/refcount_ptr.h | 2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
-diff --git a/src/include/refcount_ptr.h b/src/include/refcount_ptr.h
-index 4645769..ebabd58 100644
---- a/src/include/refcount_ptr.h
-+++ b/src/include/refcount_ptr.h
-@@ -1,6 +1,8 @@
- #ifndef REFCOUNT_PTR_H
- #define REFCOUNT_PTR_H
-
-+#include <stddef.h>
-+
- /*
- * Copyright (C) 2007-2010 Anders Gavare. All rights reserved.
- *