diff options
author | wiz <wiz> | 2006-07-23 16:21:28 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-07-23 16:21:28 +0000 |
commit | 1553e212e91d909280cd8dce413d4eee95039af6 (patch) | |
tree | 4a95b606f09df25e4f87e6f1a8785005cc84be63 /devel/SDL/Makefile | |
parent | b90593eb41f3bf3a92a4d483619fcc284e3cf442 (diff) | |
download | pkgsrc-1553e212e91d909280cd8dce413d4eee95039af6.tar.gz |
Disable wscons backend on NetBSD (it was written for OpenBSD).
This fixes the configure step of games/asc.
Bump PKGREVISION.
Diffstat (limited to 'devel/SDL/Makefile')
-rw-r--r-- | devel/SDL/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/SDL/Makefile b/devel/SDL/Makefile index fb2e0da8452..045449f2310 100644 --- a/devel/SDL/Makefile +++ b/devel/SDL/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.71 2006/07/07 15:06:04 wiz Exp $ +# $NetBSD: Makefile,v 1.72 2006/07/23 16:21:28 wiz Exp $ DISTNAME= SDL-1.2.11 +PKGREVISION= 1 CATEGORIES= devel games MASTER_SITES= http://www.libsdl.org/release/ @@ -29,6 +30,10 @@ NASMFLAGS_ELF= -f elf NASMFLAGS_a.out= -f aoutb .endif +.if ${OPSYS:MNetBSD} +CONFIGURE_ARGS+= --disable-video-wscons +.endif + CONFIGURE_ARGS+= --enable-dlopen CONFIGURE_ENV+= NASMFLAGS="${NASMFLAGS_${OBJECT_FMT}}" MAKE_ENV+= NASMFLAGS="${NASMFLAGS_${OBJECT_FMT}}" |