diff options
author | wiz <wiz@pkgsrc.org> | 2005-06-10 18:09:45 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-06-10 18:09:45 +0000 |
commit | debb654ddbab3622d2751f22db0734efabca4e24 (patch) | |
tree | bb53bb24e680d752028ab913096a1fe8a1defbe5 /emulators | |
parent | 5d1a3d90f33c1b3708831c6cbe368136c015b346 (diff) | |
download | pkgsrc-debb654ddbab3622d2751f22db0734efabca4e24.tar.gz |
Wrap complete options part in ifdef i386,
since there is only one option and that only on i386.
Fixes bulk build problem.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/snes9x/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index 219325d0d42..2d8e229869b 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2005/06/01 20:13:08 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2005/06/10 18:09:45 wiz Exp $ DISTNAME= s9xs139 PKGNAME= snes9x-1.39 @@ -29,15 +29,14 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/README.TXT ${PREFIX}/share/doc/snes9x ${INSTALL_MAN} ${WRKSRC}/TODO.TXT ${PREFIX}/share/doc/snes9x -PKG_OPTIONS_VAR= PKG_OPTIONS.snes9x - .include "../../mk/bsd.prefs.mk" .if ${MACHINE_ARCH} == "i386" +PKG_OPTIONS_VAR= PKG_OPTIONS.snes9x PKG_SUPPORTED_OPTIONS= mmx -.endif .include "../../mk/bsd.options.mk" +.endif MAKE_ENV+= THREAD_SOUND=1 .if ( ${MACHINE_ARCH} == "i386" ) |