- remove BROKEN tag

- add patches to fix compilation with GCC 2.95.x; from kwesterback@home.com
This commit is contained in:
brad 1999-12-01 01:21:58 +00:00
parent c43ad26ef0
commit bce974f906
3 changed files with 24 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.4 1999/10/02 22:50:31 brad Exp $
# $OpenBSD: Makefile,v 1.5 1999/12/01 01:21:58 brad Exp $
DISTNAME= xbill-2.0
CATEGORIES= games
@ -6,13 +6,11 @@ MASTER_SITES= ${MASTER_SITE_XCONTRIB}
MASTER_SITE_SUBDIR= games
EXTRACT_SUFX= .tgz
BROKEN= "does not compile with EGCS"
MAINTAINER= ports@openbsd.org
USE_IMAKE= yes
post-install:
${CP} ${WRKSRC}/README ${PREFIX}/share/xbill
@cp ${WRKSRC}/README ${PREFIX}/share/xbill
.include <bsd.port.mk>

View File

@ -0,0 +1,11 @@
--- Game.h.orig Tue Nov 30 19:56:38 1999
+++ Game.h Tue Nov 30 19:57:12 1999
@@ -4,7 +4,7 @@
#include "objects.h"
class Game {
- unsigned state;
+ int state;
int efficiency;
public:
unsigned score, level, iteration;

View File

@ -0,0 +1,11 @@
--- Cable.h.orig Tue Nov 30 19:57:29 1999
+++ Cable.h Tue Nov 30 19:57:39 1999
@@ -13,7 +13,7 @@
void setup();
void draw();
void update();
- onspark (int locx, int locy);
+ int onspark (int locx, int locy);
};