diff options
author | obache <obache@pkgsrc.org> | 2007-12-04 11:38:55 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2007-12-04 11:38:55 +0000 |
commit | 1e2bf573fbe617b353884f8262d12b7e3719b90a (patch) | |
tree | 2d4e37ffc957ca3a0609b054ca0ec767ee11d909 /emulators | |
parent | 55c88a521527321c7998b7005e8a889c5fefea80 (diff) | |
download | pkgsrc-1e2bf573fbe617b353884f8262d12b7e3719b90a.tar.gz |
Need PKG_SUPPORTED_OPTIONS definition before include "bsd.options.mk".
Noticed by Jared D. McNeill in PR 37472.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/snes9x/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index aa1628eb68c..950dea64918 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2007/06/15 17:16:02 joerg Exp $ +# $NetBSD: Makefile,v 1.43 2007/12/04 11:38:55 obache Exp $ SNESVER= 1.43 DISTNAME= snes9x-${SNESVER}-src @@ -45,9 +45,10 @@ do-install: .include "../../mk/bsd.prefs.mk" PKG_OPTIONS_VAR= PKG_OPTIONS.snes9x +PKG_SUPPORTED_OPTIONS= # empty .if ${MACHINE_ARCH} == "i386" BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm -PKG_SUPPORTED_OPTIONS= mmx +PKG_SUPPORTED_OPTIONS+= mmx .endif .include "../../mk/bsd.options.mk" |