diff options
author | Matthew Hunt <mph@FreeBSD.org> | 2004-12-26 21:02:40 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 2004-12-26 21:02:40 +0000 |
commit | 622b0623b07783f02ede9fa309095a01e9a0dcbf (patch) | |
tree | 7c0a192d5cfb300c9991ad4127e9c4ee610c04a3 /games/inform/files | |
parent | Document vulnerability in jabberd1 (diff) |
Upgrade to:
6.30 compiler
6.11 library
v4 manual
PR: ports/75213
Submitted by: Joel Ray Holveck <joelh@piquan.org>
Diffstat (limited to 'games/inform/files')
-rw-r--r-- | games/inform/files/patch-aa | 4 | ||||
-rw-r--r-- | games/inform/files/patch-ab | 38 |
2 files changed, 2 insertions, 40 deletions
diff --git a/games/inform/files/patch-aa b/games/inform/files/patch-aa index 37f11f4dff84..f465a25f8cba 100644 --- a/games/inform/files/patch-aa +++ b/games/inform/files/patch-aa @@ -1,10 +1,10 @@ --- header.h.orig Sun Jun 28 00:54:48 1998 +++ header.h Sun Jun 28 00:58:25 1998 -@@ -66,7 +66,7 @@ +@@ -68,7 +68,7 @@ /* out a block of definitions like those below.) */ /* ------------------------------------------------------------------------- */ --#define ARCHIMEDES +-/* #define UNIX */ +#define UNIX /* ------------------------------------------------------------------------- */ diff --git a/games/inform/files/patch-ab b/games/inform/files/patch-ab deleted file mode 100644 index c071f7d09251..000000000000 --- a/games/inform/files/patch-ab +++ /dev/null @@ -1,38 +0,0 @@ ---- veneer.c.orig Sun May 23 13:23:38 1999 -+++ veneer.c Sun May 23 13:24:16 1999 -@@ -6,6 +6,12 @@ - /* Part of Inform 6.21 */ - /* copyright (c) Graham Nelson 1993, 1994, 1995, 1996, 1997, 1998, 1999 */ - /* */ -+/* Incorporates the patch by Andrew Plotkin/Torbörn Andersson which was */ -+/* posted on r.a.i.f. on 5 May 1999 by Michael Baum. This fixes a memory */ -+/* problem on some platforms and also fixes a bug which occurs when debug */ -+/* mode is off. Note that you have to turn off strict mode, i.e. -~S, to */ -+/* turn off the debug mode. */ -+/* */ - /* ------------------------------------------------------------------------- */ - - #include "header.h" -@@ -243,13 +249,18 @@ - @check_arg_count 7 ?~A__x;y++;@check_arg_count 8 ?~A__x;y++;.A__x;", - "#ifdef INFIX;if (obj has infix__watching) n=1;#endif;\ - #ifdef DEBUG;if (debug_flag & 1 ~= 0) n=1;#endif;\ -- if (n==1) { n=debug_flag & 1; debug_flag=debug_flag-n;\ -- print \"[ ~\", (name) obj, \"~.\", (property) id, \"(\";\ -- switch(y) { 1: print a; 2: print a,\",\",b; 3: print a,\",\",b,\",\",c;\ -+ if (n==1) {\ -+ #ifdef DEBUG;n=debug_flag & 1;\ -+debug_flag=debug_flag-n;#endif;\ -+ print \"[ ~\", (name) obj, \"~.\", (property) id, \"(\";\ -+ switch(y) { 1: print a; 2: print a,\",\",b; 3: print \ -+a,\",\",b,\",\",c;\ - 4: print a,\",\",b,\",\",c,\",\",d;\ - 5: print a,\",\",b,\",\",c,\",\",d,\",\",e;\ - 6: print a,\",\",b,\",\",c,\",\",d,\",\",e,\",\",f; }\ -- print \") ]^\"; debug_flag = debug_flag + n; }" -+ print \") ]^\";\ -+ #ifdef DEBUG;debug_flag = debug_flag + n;#endif;\ -+ }", - "if (id > 0 && id < 64)\ - { x = obj.&id; if (x==0) { x=$000a-->0 + 2*(id-1); n=2; }\ - else n = obj.#id; }\ |