diff options
author | adam <adam> | 2010-12-29 18:34:06 +0000 |
---|---|---|
committer | adam <adam> | 2010-12-29 18:34:06 +0000 |
commit | 890ad5961c7edb99413c7d17b59391eb12d81314 (patch) | |
tree | d9c9f43f33fb1a8418e908db6ab9fdfa0faeb04d /devel/SDL/Makefile | |
parent | c36c5cd6df4b26c05c22efdaa8308aa6ef6c48b9 (diff) | |
download | pkgsrc-890ad5961c7edb99413c7d17b59391eb12d81314.tar.gz |
yasm also works on x86_64
Diffstat (limited to 'devel/SDL/Makefile')
-rw-r--r-- | devel/SDL/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/SDL/Makefile b/devel/SDL/Makefile index d03c20fb951..9ecc5dede17 100644 --- a/devel/SDL/Makefile +++ b/devel/SDL/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.90 2010/01/24 17:11:18 heinz Exp $ +# $NetBSD: Makefile,v 1.91 2010/12/29 18:34:06 adam Exp $ DISTNAME= SDL-1.2.14 PKGREVISION= 1 @@ -26,7 +26,7 @@ CPPFLAGS+= -DX11BASE="\"${X11BASE}\"" .include "../../mk/bsd.prefs.mk" -.if ${MACHINE_ARCH} == "i386" && ${OPSYS} != "SunOS" +.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && ${OPSYS} != "SunOS" BUILD_DEPENDS+= yasm>=0.6.0:../../devel/yasm NASMFLAGS_ELF= -f elf NASMFLAGS_a.out= -f aoutb |