diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-08-01 14:08:30 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-08-01 14:08:30 +0000 |
commit | 81db7a193e95c8d6f6bcba8119f2692162430675 (patch) | |
tree | 72465fc8f3be77588645b808d61a643b5b0cab90 /games | |
parent | 0902320a5030b79935ff9b1597a9b07c6a2d1bb5 (diff) | |
download | pkgsrc-81db7a193e95c8d6f6bcba8119f2692162430675.tar.gz |
Remove patches that are no longer needed after most recent update.
Diffstat (limited to 'games')
-rw-r--r-- | games/angband-x11/patches/patch-aa | 16 | ||||
-rw-r--r-- | games/angband-x11/patches/patch-ab | 22 | ||||
-rw-r--r-- | games/angband-x11/patches/patch-ac | 13 | ||||
-rw-r--r-- | games/angband-x11/patches/patch-ad | 49 |
4 files changed, 0 insertions, 100 deletions
diff --git a/games/angband-x11/patches/patch-aa b/games/angband-x11/patches/patch-aa deleted file mode 100644 index 38f8d494a60..00000000000 --- a/games/angband-x11/patches/patch-aa +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2002/04/20 15:04:48 cjep Exp $ - ---- Makefile.std.orig Wed Feb 11 12:30:28 1998 -+++ Makefile.std -@@ -115,8 +115,9 @@ - # including "USE_GETCH" and "USE_CURS_SET". Note that "config.h" will - # attempt to "guess" at many of these flags based on your system. - # --CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_GCU" --LIBS = -lX11 -lcurses -ltermcap -+CFLAGS = -Wall -O -D"USE_X11" -D"USE_GCU" \ -+ -DDEFAULT_PATH=\"$(PREFIX)/share/angband/\" -I$(X11BASE)/include -+LIBS = -Wl,-R$(X11BASE)/lib -L$(X11BASE)/lib -lX11 -lXmu -lXaw -lXt -lcurses -ltermcap - - - ## diff --git a/games/angband-x11/patches/patch-ab b/games/angband-x11/patches/patch-ab deleted file mode 100644 index 8ed6a206415..00000000000 --- a/games/angband-x11/patches/patch-ab +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2002/03/18 15:30:16 wiz Exp $ - ---- config.h.orig Wed Feb 11 12:30:28 1998 -+++ config.h -@@ -46,7 +46,7 @@ - * OPTION: define "SPECIAL_BSD" for using certain versions of UNIX - * that use the 4.4BSD Lite version of Curses in "main-gcu.c" - */ --/* #define SPECIAL_BSD */ -+#define SPECIAL_BSD - - - /* -@@ -229,7 +229,7 @@ - * about 15K of code in "save-old.c" to parse the old savefile format. - * Angband 2.8.0 will ignore a lot of info from pre-2.7.0 savefiles. - */ --#define ALLOW_OLD_SAVEFILES -+/* #define ALLOW_OLD_SAVEFILES */ - - - /* diff --git a/games/angband-x11/patches/patch-ac b/games/angband-x11/patches/patch-ac deleted file mode 100644 index 7ca78cf5efa..00000000000 --- a/games/angband-x11/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2002/03/18 15:30:16 wiz Exp $ - ---- h-config.h.orig Fri Feb 6 10:10:31 1998 -+++ h-config.h -@@ -177,7 +177,7 @@ - * The only such platform that angband is ported to is currently - * DEC Alpha AXP running OSF/1 (OpenVMS uses 32-bit longs). - */ --#if defined(__alpha) && defined(__osf__) -+#if defined(__alpha) && (defined(__osf__) || defined(__NetBSD__)) - # define L64 - #endif - diff --git a/games/angband-x11/patches/patch-ad b/games/angband-x11/patches/patch-ad deleted file mode 100644 index 434fda00b4c..00000000000 --- a/games/angband-x11/patches/patch-ad +++ /dev/null @@ -1,49 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2002/03/18 15:30:17 wiz Exp $ - ---- main-gcu.c.orig Fri Feb 6 10:10:31 1998 -+++ main-gcu.c -@@ -458,6 +458,14 @@ - /* Flush the curses buffer */ - (void)refresh(); - -+#ifdef __NetBSD__ -+ { -+ int cury, curx; -+ -+ getyx(curscr, cury, curx); -+ mvcur(cury, curx, LINES - 1, 0); -+ } -+#else - #ifdef SPECIAL_BSD - /* this moves curses to bottom right corner */ - mvcur(curscr->cury, curscr->curx, LINES - 1, 0); -@@ -465,6 +473,7 @@ - /* this moves curses to bottom right corner */ - mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0); - #endif -+#endif - - /* Exit curses */ - endwin(); -@@ -529,12 +538,21 @@ - /* Hack -- make sure the cursor is visible */ - Term_xtra(TERM_XTRA_SHAPE, 1); - -+#ifdef __NetBSD__ -+ { -+ int cury, curx; -+ -+ getyx(curscr, cury, curx); -+ mvcur(cury, curx, LINES - 1, 0); -+ } -+#else - #ifdef SPECIAL_BSD - /* This moves curses to bottom right corner */ - mvcur(curscr->cury, curscr->curx, LINES - 1, 0); - #else - /* This moves curses to bottom right corner */ - mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0); -+#endif - #endif - - /* Flush the curses buffer */ |