diff options
author | fredb <fredb> | 2003-11-09 04:20:18 +0000 |
---|---|---|
committer | fredb <fredb> | 2003-11-09 04:20:18 +0000 |
commit | 983cf476644d9a0339c3e3f28cc1a5689693655b (patch) | |
tree | 55117a7588e797772ef3190f62c327fd18b3eab5 /math | |
parent | dd5606f7cc98d184108ce03affbbdb68449cf8d8 (diff) | |
download | pkgsrc-983cf476644d9a0339c3e3f28cc1a5689693655b.tar.gz |
Make this build with gcc-3.3.2.
Diffstat (limited to 'math')
-rw-r--r-- | math/xlife/distinfo | 5 | ||||
-rw-r--r-- | math/xlife/patches/patch-ac | 17 | ||||
-rw-r--r-- | math/xlife/patches/patch-ad | 14 | ||||
-rw-r--r-- | math/xlife/patches/patch-ae | 19 |
4 files changed, 54 insertions, 1 deletions
diff --git a/math/xlife/distinfo b/math/xlife/distinfo index 895689f04d9..16400ef6fb3 100644 --- a/math/xlife/distinfo +++ b/math/xlife/distinfo @@ -1,6 +1,9 @@ -$NetBSD: distinfo,v 1.2 2002/12/05 10:57:46 abs Exp $ +$NetBSD: distinfo,v 1.3 2003/11/09 04:20:18 fredb Exp $ SHA1 (xlife-5.0.tar.gz) = 168edb2c8bdeb1689fea82c56db76e85aeeed43e Size (xlife-5.0.tar.gz) = 214220 bytes SHA1 (patch-aa) = a1797c733efa564b361f299650ea521987635feb SHA1 (patch-ab) = 891c098845652ad9f172b3693cdf416685e9a960 +SHA1 (patch-ac) = 952eb7c45be5cb767cd98e028f7305ea7efc249f +SHA1 (patch-ad) = 07f653049e43dc9bf2681d32a6357421add9357e +SHA1 (patch-ae) = 119164be84be7fa0b00f9c783a492a2a1d81092e diff --git a/math/xlife/patches/patch-ac b/math/xlife/patches/patch-ac new file mode 100644 index 00000000000..d0fea15b398 --- /dev/null +++ b/math/xlife/patches/patch-ac @@ -0,0 +1,17 @@ +$NetBSD: patch-ac,v 1.1 2003/11/09 04:20:19 fredb Exp $ + +--- cell.c.orig 1996-06-17 15:06:40.000000000 -0500 ++++ cell.c +@@ -393,9 +393,9 @@ void displaybox(u32bits x, u32bits y, ce + #endif /* STATEBITS > 1 */ + { + register u32bits live1 = ptr->twostate.live1; +- register u32bits long live2 = ptr->twostate.live2; +- register u32bits long olive1 = ptr->twostate.olive1; +- register u32bits long olive2 = ptr->twostate.olive2; ++ register u32bits live2 = ptr->twostate.live2; ++ register u32bits olive1 = ptr->twostate.olive1; ++ register u32bits olive2 = ptr->twostate.olive2; + + displayline(live1,x,y,olive1); + displayline(live1>>8,x,++y,olive1>>8); diff --git a/math/xlife/patches/patch-ad b/math/xlife/patches/patch-ad new file mode 100644 index 00000000000..ede8735f267 --- /dev/null +++ b/math/xlife/patches/patch-ad @@ -0,0 +1,14 @@ +$NetBSD: patch-ad,v 1.1 2003/11/09 04:20:19 fredb Exp $ + +--- generate.c.orig 1995-06-07 01:05:30.000000000 -0500 ++++ generate.c +@@ -54,7 +54,8 @@ static bool ev_mode = VALENCE_DRIVEN; + + static void evolve2(pattern *context) + { +- register u_long t1,t2,t3,*tmpptr,y, live_total = 0, changes = 0; ++ register u_long t1,t2,t3,y, live_total = 0, changes = 0; ++ register u32bits *tmpptr; + tile *cptr,*tptr,*cptrup,*cptrdn,*cptrlf,*cptrrt; + + /* diff --git a/math/xlife/patches/patch-ae b/math/xlife/patches/patch-ae new file mode 100644 index 00000000000..58f9dccee4b --- /dev/null +++ b/math/xlife/patches/patch-ae @@ -0,0 +1,19 @@ +$NetBSD: patch-ae,v 1.1 2003/11/09 04:20:19 fredb Exp $ + +--- tile.h.orig 1996-06-17 15:07:41.000000000 -0500 ++++ tile.h +@@ -20,10 +20,12 @@ + * PERFORMANCE OF THIS SOFTWARE. + */ + ++#include <sys/types.h> ++ + #define BOXSIZE 8 + +-/* someday, on a 64-bit machine, this might be unsigned int rather than long */ +-typedef unsigned long u32bits; ++/* typedef unsigned long u32bits; */ ++#define u32bits uint32_t + + typedef union + { |