summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorwiz <wiz>2007-05-19 22:48:52 +0000
committerwiz <wiz>2007-05-19 22:48:52 +0000
commit9b05e483e21a54588d77a6e716b63383718843ce (patch)
tree7e96af03b91d96ee62a0ea122115771087074c1e /devel
parenta830ed30773e4e498fdda0cbbedf51db06daf5fe (diff)
downloadpkgsrc-9b05e483e21a54588d77a6e716b63383718843ce.tar.gz
Build assembler code with yasm instead of nasm. (SDL's configure
prefers yasm to nasm.) Addresses PR 36208. Tested on NetBSD-3.1/i386 by heinz@. Might affect resulting binary, so PKGREVISION++.
Diffstat (limited to 'devel')
-rw-r--r--devel/SDL/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/SDL/Makefile b/devel/SDL/Makefile
index 75da33288c1..4a2b51f463e 100644
--- a/devel/SDL/Makefile
+++ b/devel/SDL/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.76 2007/01/09 15:06:28 joerg Exp $
+# $NetBSD: Makefile,v 1.77 2007/05/19 22:48:52 wiz Exp $
DISTNAME= SDL-1.2.11
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= devel games
MASTER_SITES= http://www.libsdl.org/release/
@@ -27,7 +27,7 @@ CPPFLAGS+= -DX11BASE="\"${X11BASE}\""
.if ${MACHINE_ARCH} == "i386" && ${OPSYS} != "SunOS"
. include "../../devel/binutils/buildlink3.mk"
-BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm
+BUILD_DEPENDS+= yasm>=0.6.0:../../devel/yasm
NASMFLAGS_ELF= -f elf
NASMFLAGS_a.out= -f aoutb
.else