summaryrefslogtreecommitdiff
path: root/games-emulation/gnuboy/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-emulation/gnuboy/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-emulation/gnuboy/files')
-rw-r--r--games-emulation/gnuboy/files/gnuboy-1.0.3-exec-stack.patch27
-rw-r--r--games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch14
-rw-r--r--games-emulation/gnuboy/files/gnuboy-1.0.3-linux-headers.patch93
3 files changed, 0 insertions, 134 deletions
diff --git a/games-emulation/gnuboy/files/gnuboy-1.0.3-exec-stack.patch b/games-emulation/gnuboy/files/gnuboy-1.0.3-exec-stack.patch
deleted file mode 100644
index a263ee49599e..000000000000
--- a/games-emulation/gnuboy/files/gnuboy-1.0.3-exec-stack.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/asm/i386/cpu.s
-+++ b/asm/i386/cpu.s
-@@ -2428,3 +2428,6 @@
-
-
-
-+#if defined(__linux__) && defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- a/asm/i386/lcd.s
-+++ b/asm/i386/lcd.s
-@@ -288,3 +288,6 @@
-
-
-
-+#if defined(__linux__) && defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
---- a/asm/i386/refresh.s
-+++ b/asm/i386/refresh.s
-@@ -283,3 +283,6 @@
-
-
-
-+#if defined(__linux__) && defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
diff --git a/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch b/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch
deleted file mode 100644
index 15573000511e..000000000000
--- a/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -ru gnuboy-1.0.3.orig/defs.h gnuboy-1.0.3/defs.h
---- gnuboy-1.0.3.orig/defs.h 2001-01-23 07:04:22.000000000 -0500
-+++ gnuboy-1.0.3/defs.h 2014-07-04 03:56:46.685149736 -0400
-@@ -4,6 +4,10 @@
- #ifndef __DEFS_H__
- #define __DEFS_H__
-
-+#include <stdlib.h>
-+#include <string.h>
-+#include <unistd.h>
-+#include <ctype.h>
-
-
- #ifdef IS_LITTLE_ENDIAN
diff --git a/games-emulation/gnuboy/files/gnuboy-1.0.3-linux-headers.patch b/games-emulation/gnuboy/files/gnuboy-1.0.3-linux-headers.patch
deleted file mode 100644
index 543bd2434eed..000000000000
--- a/games-emulation/gnuboy/files/gnuboy-1.0.3-linux-headers.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-# -ansi breaks <linux/joystick.h>
-
---- a/configure.in
-+++ b/configure.in
-@@ -133,7 +133,7 @@
- if test "$enable_warnings" = yes ; then
- case "$CC" in *gcc*)
- AC_MSG_RESULT(enabling selected compiler warnings)
--CFLAGS="$CFLAGS -ansi -pedantic -Wall -Wno-implicit -Wno-long-long" ;;
-+CFLAGS="$CFLAGS -Wall -Wno-implicit -Wno-long-long" ;;
- *)
- AC_MSG_RESULT(disabling warnings for non-gcc compiler) ;;
- esac
---- a/loader.c
-+++ b/loader.c
-@@ -11,7 +11,6 @@
- #include <stdlib.h>
- #include <string.h>
-
--char *strdup();
-
- static int mbc_table[256] =
- {
---- a/main.c
-+++ b/main.c
-@@ -8,7 +8,6 @@
- #include <stdlib.h>
- #include <string.h>
-
--char *strdup();
-
- #include <stdarg.h>
- #include <signal.h>
---- a/path.c
-+++ b/path.c
-@@ -5,7 +5,6 @@
- #include <stdlib.h>
- #include <string.h>
-
--char *strdup();
-
- #ifdef ALT_PATH_SEP
- #define SEP ';'
---- a/rckeys.c
-+++ b/rckeys.c
-@@ -4,7 +4,6 @@
- #include <stdlib.h>
- #include <string.h>
-
--char *strdup();
-
- #include "defs.h"
- #include "rc.h"
---- a/rcvars.c
-+++ b/rcvars.c
-@@ -5,7 +5,6 @@
- #include <stdlib.h>
- #include <string.h>
-
--char *strdup();
-
- #include "defs.h"
- #include "rc.h"
---- a/sys/linux/fbdev.c
-+++ b/sys/linux/fbdev.c
-@@ -10,7 +10,6 @@
-
- #include <stdlib.h>
- #include <string.h>
--char *strdup();
- #include <unistd.h>
- #include <sys/mman.h>
- #include <linux/fb.h>
---- a/sys/linux/joy.c
-+++ b/sys/linux/joy.c
-@@ -2,7 +2,6 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
--char *strdup();
- #include <linux/joystick.h>
- #include <sys/types.h>
- #include <sys/stat.h>
---- a/sys/oss/oss.c
-+++ b/sys/oss/oss.c
-@@ -2,7 +2,6 @@
-
- #include <stdlib.h>
- #include <string.h>
--char *strdup();
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>