diff options
author | wiz <wiz> | 2007-05-19 22:48:52 +0000 |
---|---|---|
committer | wiz <wiz> | 2007-05-19 22:48:52 +0000 |
commit | 370f809a81a6d52cbe789272ae7d24c576acd471 (patch) | |
tree | 7e96af03b91d96ee62a0ea122115771087074c1e /devel/SDL | |
parent | 6670cfc1719bb1862885e56dd432f1835412a2fd (diff) | |
download | pkgsrc-370f809a81a6d52cbe789272ae7d24c576acd471.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/SDL')
-rw-r--r-- | devel/SDL/Makefile | 6 |
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 |