diff options
author | dmcmahill <dmcmahill> | 2003-11-04 23:35:47 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2003-11-04 23:35:47 +0000 |
commit | 49baea0c5ad60fb064093af38b994d7c0ce78830 (patch) | |
tree | 32a29f2a80d274427d1a0a379b7cb5e337915b1f /games | |
parent | f0d32a0abd7659f5496dacadab24d48b626c64d2 (diff) | |
download | pkgsrc-49baea0c5ad60fb064093af38b994d7c0ce78830.tar.gz |
unlimit datasize and require gcc3 on alpha. Gets past a compiler error
that prevented building this package.
Diffstat (limited to 'games')
-rw-r--r-- | games/zoom/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/games/zoom/Makefile b/games/zoom/Makefile index e497f83ab20..259b2828668 100644 --- a/games/zoom/Makefile +++ b/games/zoom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2003/08/16 14:28:34 dillo Exp $ +# $NetBSD: Makefile,v 1.2 2003/11/04 23:35:47 dmcmahill Exp $ # DISTNAME= zoom-1.0.1 @@ -23,6 +23,11 @@ USE_X11= yes USE_GMAKE= yes USE_PERL5= build +.if ${MACHINE_ARCH} == "alpha" +GCC_REQD= 3.0 +.endif +UNLIMIT_RESOURCES+= datasize + DOCDIR= ${LOCALBASE}/share/doc/html/zoom post-install: ${INSTALL_DATA_DIR} ${DOCDIR} |