releasing version 2.16-5

git-svn-id: file:///srv/svn/joey/trunk/src/packages/bsdgames@10939 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2004-12-08 19:55:43 +00:00
parent 732c92d552
commit 3d248f5d00
2 changed files with 9 additions and 2 deletions

7
debian/changelog vendored
View File

@@ -1,3 +1,10 @@
bsdgames (2.16-5) unstable; urgency=low
* Apply hack patch from Andreas Jochens to support building under gcc 4.0
which does stricter checking for static variables. Closes: #284750
-- Joey Hess <joeyh@debian.org> Wed, 8 Dec 2004 14:39:12 -0500
bsdgames (2.16-4) unstable; urgency=low
* Fixed a null pointer de-reference in hunt if run on a

View File

@@ -77,10 +77,10 @@ __RCSID("$NetBSD: hack.termcap.c,v 1.12 2003/04/02 18:36:40 jsm Exp $");
#include "def.flag.h" /* for flags.nonull */
static char tbuf[512];
static char *HO, *CL, *CE, *UP, *CM, *ND, *XD, *BC, *SO, *SE, *TI, *TE;
char *HO, *CL, *CE, *UP, *CM, *ND, *XD, *BC, *SO, *SE, *TI, *TE;
static char *VS, *VE;
static int SG;
static char PC = '\0';
char PC = '\0';
char *CD; /* tested in pri.c: docorner() */
int CO, LI; /* used in pri.c and whatis.c */