diff options
author | Steven Wallace <swallace@FreeBSD.org> | 1994-12-31 05:34:27 +0000 |
---|---|---|
committer | Steven Wallace <swallace@FreeBSD.org> | 1994-12-31 05:34:27 +0000 |
commit | 7570343cac8e02f32372145530a547b03b02c471 (patch) | |
tree | cab88d088d1881fa7de60933d405ff582bbec5f0 /games/xmille/files | |
parent | e099d5e17cf6da33fec3bbc65dbac0b6e05cb9c4 (diff) | |
download | ports-7570343cac8e02f32372145530a547b03b02c471.tar.gz ports-7570343cac8e02f32372145530a547b03b02c471.zip |
Notes
Diffstat (limited to 'games/xmille/files')
-rw-r--r-- | games/xmille/files/patch-aa | 48 | ||||
-rw-r--r-- | games/xmille/files/patch-ab | 19 | ||||
-rw-r--r-- | games/xmille/files/patch-ac | 14 |
3 files changed, 81 insertions, 0 deletions
diff --git a/games/xmille/files/patch-aa b/games/xmille/files/patch-aa new file mode 100644 index 000000000000..e4901f80ece5 --- /dev/null +++ b/games/xmille/files/patch-aa @@ -0,0 +1,48 @@ +*** drawcard.c.orig Thu Sep 16 00:47:18 1993 +--- drawcard.c Thu Sep 16 00:41:29 1993 +*************** +*** 183,194 **** + WIDTH, HEIGHT); + + XSetForeground(dpy, cheap_gc, bits_p); +! XSetStipple(dpy, cheap_gc, bits); + XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0, + WIDTH, HEIGHT); + + XSetForeground(dpy, cheap_gc, mask_p); +! XSetStipple(dpy, cheap_gc, mask); + XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0, + WIDTH, HEIGHT); + +--- 183,194 ---- + WIDTH, HEIGHT); + + XSetForeground(dpy, cheap_gc, bits_p); +! XSetStipple(dpy, cheap_gc, mask); + XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0, + WIDTH, HEIGHT); + + XSetForeground(dpy, cheap_gc, mask_p); +! XSetStipple(dpy, cheap_gc, bits); + XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0, + WIDTH, HEIGHT); + +*** roll.c.orig Thu Apr 2 06:15:57 1992 +--- roll.c Thu Sep 16 00:36:38 1993 +*************** +*** 7,13 **** + + # define reg register + +! # if (! defined ultrix && ! defined mips && ! defined vax) + # define MAXRAND 32767L + + roll(ndie, nsides) +--- 7,13 ---- + + # define reg register + +! # if (! defined ultrix && ! defined mips && ! defined vax && ! defined __386BSD__ && ! defined __FreeBSD__) + # define MAXRAND 32767L + + roll(ndie, nsides) diff --git a/games/xmille/files/patch-ab b/games/xmille/files/patch-ab new file mode 100644 index 000000000000..cd9ce57c259d --- /dev/null +++ b/games/xmille/files/patch-ab @@ -0,0 +1,19 @@ +*** Imakefile.orig Thu Apr 2 06:03:24 1992 +--- Imakefile Fri Dec 30 21:14:47 1994 +*************** +*** 5,11 **** + /**/# Dana Chee + /**/# + #define IHaveSubdirs +! #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) DEFINES=$(DEFINES)' + + HEADERS = ui.h + SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \ +--- 5,11 ---- + /**/# Dana Chee + /**/# + #define IHaveSubdirs +! #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) $(DEFINES)' + + HEADERS = ui.h + SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \ diff --git a/games/xmille/files/patch-ac b/games/xmille/files/patch-ac new file mode 100644 index 000000000000..6a1f787e3137 --- /dev/null +++ b/games/xmille/files/patch-ac @@ -0,0 +1,14 @@ +*** save.c.orig Wed Apr 1 12:56:45 1992 +--- save.c Fri Dec 30 21:17:28 1994 +*************** +*** 22,28 **** +--- 22,30 ---- + * This routine saves the current game for use at a later date + */ + extern int errno; ++ #ifndef __FreeBSD__ + extern char *sys_errlist[]; ++ #endif + + save() { + |