summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-06-02 06:41:49 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-06-02 06:41:49 +0000
commitd5d26095b454ddd827f0791552b711c416976cf7 (patch)
tree6305b11a9502f8ef869a11f0699fe1e624a032f6 /games-emulation/generator/files
parentfix installation path of man page - bug# 224489 - thanks mulaz and marek (diff)
downloadhistorical-d5d26095b454ddd827f0791552b711c416976cf7.tar.gz
historical-d5d26095b454ddd827f0791552b711c416976cf7.tar.bz2
historical-d5d26095b454ddd827f0791552b711c416976cf7.zip
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-emulation/generator/files')
-rw-r--r--games-emulation/generator/files/generator-0.35-configure.patch61
-rw-r--r--games-emulation/generator/files/generator-0.35-execstacks.patch12
-rw-r--r--games-emulation/generator/files/netbsd-gcc-3.3.patch32
3 files changed, 0 insertions, 105 deletions
diff --git a/games-emulation/generator/files/generator-0.35-configure.patch b/games-emulation/generator/files/generator-0.35-configure.patch
deleted file mode 100644
index cc4046c7e62b..000000000000
--- a/games-emulation/generator/files/generator-0.35-configure.patch
+++ /dev/null
@@ -1,61 +0,0 @@
---- configure.ac.orig 2007-04-11 16:28:09.000000000 -0400
-+++ configure.ac 2007-04-11 16:29:07.000000000 -0400
-@@ -202,50 +202,6 @@
- CFLAGS="$CFLAGS -Wstrict-prototypes -Wunused"
- fi
- fi
-- if [[ "x$DEBUG" != "xno" ]]; then
-- AC_MSG_RESULT(Turning on debug flags)
-- CFLAGS="$CFLAGS -g -O"
-- optimum=no
-- else
-- if [[ "x$GCCVER" != "xno" ]]; then
-- AC_MSG_RESULT(Turning on gcc optimisations)
-- CFLAGS="$CFLAGS -O3 -fomit-frame-pointer"
-- if [[ "x$GCCVER" = "x3" ]]; then
-- AC_MSG_RESULT(Turning on gcc 3 optimisations)
-- CFLAGS="$CFLAGS -fno-math-errno"
-- fi
-- case "$CFLAGS" in
-- *mcpu*|*march*) AC_MSG_RESULT(Skipping target optimisations)
-- ;;
-- *) case "$target_cpu" in
-- i386) AC_MSG_RESULT(Turning on i386 optimisations)
-- CFLAGS="$CFLAGS -march=i386 -ffast-math"
-- ;;
-- i486) AC_MSG_RESULT(Turning on i486 optimisations)
-- CFLAGS="$CFLAGS -march=i486 -ffast-math"
-- ;;
-- i586) AC_MSG_RESULT(Turning on pentium optimisations)
-- # cannot do malign-double as we link to other libraries and
-- # it would break binary compatibility
-- CFLAGS="$CFLAGS -march=pentium -ffast-math"
-- ;;
-- i?86) AC_MSG_RESULT(Turning on i686 optimisations)
-- # cannot do malign-double as we link to other libraries and
-- # it would break binary compatibility
-- CFLAGS="$CFLAGS -march=i686 -ffast-math"
-- ;;
-- alpha*) AC_MSG_RESULT(Adding -mieee for Alpha)
-- CFLAGS="$CFLAGS -mieee"
-- ;;
-- *) AC_MSG_RESULT(Sorry unknown target CPU)
-- ;;
-- esac
-- esac
-- else
-- AC_MSG_WARN(You did not opt for gcc optimisations!)
-- optimum=no
-- fi
-- fi
- AC_CHECK_LIB(jpeg, jpeg_start_compress,
- [ MY_LIBS="-ljpeg $MY_LIBS"; AC_DEFINE(JPEG, 1, [JPEG features]) ])
-
-@@ -305,6 +261,7 @@
- AC_CHECK_SIZEOF(unsigned long, 4)
- AC_CHECK_SIZEOF(unsigned long long, 8)
- AC_CHECK_HEADERS(sys/param.h)
-+ AC_CHECK_HEADERS(sys/time.h)
- AC_CHECK_HEADERS(bzlib.h)
- AC_CHECK_HEADERS(zlib.h)
- AC_CHECK_HEADERS(tcl8.0.h)
diff --git a/games-emulation/generator/files/generator-0.35-execstacks.patch b/games-emulation/generator/files/generator-0.35-execstacks.patch
deleted file mode 100644
index f92ef6121f5a..000000000000
--- a/games-emulation/generator/files/generator-0.35-execstacks.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- raze/Makefile.am.old 2006-09-03 03:17:39.000000000 +0200
-+++ raze/Makefile.am 2006-09-03 03:16:36.000000000 +0200
-@@ -343,6 +343,10 @@
- raze: raze.o
- raze.o: raze.asm raze.reg
- nasm -e raze.asm -o raze2.asm
-+ echo "%ifidn __OUTPUT_FORMAT__,elf" >> raze2.asm
-+ echo "section .note.GNU-stack noalloc noexec nowrite progbits" \
-+ >> raze2.asm
-+ echo "%endif" >> raze2.asm
- nasm -f @ASMOUTPUT@ raze2.asm -o raze.o -praze.reg
-
diff --git a/games-emulation/generator/files/netbsd-gcc-3.3.patch b/games-emulation/generator/files/netbsd-gcc-3.3.patch
deleted file mode 100644
index 2cedcf838bac..000000000000
--- a/games-emulation/generator/files/netbsd-gcc-3.3.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- hdr/generator.h.orig 2004-02-14 00:23:16.000000000 +0100
-+++ hdr/generator.h 2004-02-14 00:23:46.000000000 +0100
-@@ -185,11 +185,11 @@
- # define LOG_DEBUG3(x) /* ui_log_debug3 ## x */
- # define LOG_DEBUG2(x) /* ui_log_debug2 ## x */
- # define LOG_DEBUG1(x) /* ui_log_debug1 ## x */
--# define LOG_USER(x) ui_log_user ## x
--# define LOG_VERBOSE(x) ui_log_verbose ## x
--# define LOG_NORMAL(x) ui_log_normal ## x
--# define LOG_CRITICAL(x) ui_log_critical ## x
--# define LOG_REQUEST(x) ui_log_request ## x
-+# define LOG_USER(x) ui_log_user x
-+# define LOG_VERBOSE(x) ui_log_verbose x
-+# define LOG_NORMAL(x) ui_log_normal x
-+# define LOG_CRITICAL(x) ui_log_critical x
-+# define LOG_REQUEST(x) ui_log_request x
- #endif
-
- typedef struct {
-$NetBSD: patch-af,v 1.1 2004/02/13 23:41:28 kristerw Exp $
-
---- main/ui-gtk.c.orig 2004-02-14 00:30:00.000000000 +0100
-+++ main/ui-gtk.c 2004-02-14 00:30:20.000000000 +0100
-@@ -626,7 +626,7 @@
- /* logging is done this way because this was the best I could come up with
- whilst battling with macros that can only take fixed numbers of arguments */
-
--#define LOG_FUNC(name,level,txt) void ui_log_ ## name ## (const char *text, ...) \
-+#define LOG_FUNC(name,level,txt) void ui_log_ ## name (const char *text, ...) \
- { \
- va_list ap; \
- if (gen_loglevel >= level) { \