diff options
author | rodent <rodent@pkgsrc.org> | 2014-01-06 15:28:35 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2014-01-06 15:28:35 +0000 |
commit | 3e98568b8030b1bc72a59ae186c1f145f3c4e08b (patch) | |
tree | 249e2766076ee21bf97eb8d9d078fab469ff3800 /emulators | |
parent | 8267afa67267460184727bcaa5948c1b227d199e (diff) | |
download | pkgsrc-3e98568b8030b1bc72a59ae186c1f145f3c4e08b.tar.gz |
Disable SDL2 PKG_OPTION and associated logic since it's not detected
correctly during configure if SDL is present. Reported to upstream.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/yabause/options.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/emulators/yabause/options.mk b/emulators/yabause/options.mk index e6d00d1de2e..bb502e96d5d 100644 --- a/emulators/yabause/options.mk +++ b/emulators/yabause/options.mk @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.3 2014/01/06 04:44:16 rodent Exp $ +# $NetBSD: options.mk,v 1.4 2014/01/06 15:28:35 rodent Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.yabause -PKG_SUPPORTED_OPTIONS= openal opengl -PKG_OPTIONS_OPTIONAL_GROUPS= GUI SDL +PKG_SUPPORTED_OPTIONS= openal opengl sdl +PKG_OPTIONS_OPTIONAL_GROUPS= GUI #SDL PKG_OPTIONS_GROUP.GUI= gtk qt -PKG_OPTIONS_GROUP.SDL= sdl sdl2 +#PKG_OPTIONS_GROUP.SDL= sdl sdl2 PKG_SUGGESTED_OPTIONS= qt sdl @@ -45,10 +45,10 @@ CMAKE_ARGS+= -DYAB_WANT_OPENGL=OFF .if !empty(PKG_OPTIONS:Msdl) .include "../../devel/SDL/buildlink3.mk" CMAKE_ARGS+= -DYAB_WANT_SDL=ON -.elif !empty(PKG_OPTIONS:Msdl2) -.include "../../devel/SDL2/buildlink3.mk" -CMAKE_ARGS+= -DYAB_WANT_SDL=ON -BUILDLINK_TRANSFORM+= l:SDL:SDL2 +#.elif !empty(PKG_OPTIONS:Msdl2) +#.include "../../devel/SDL2/buildlink3.mk" +#CMAKE_ARGS+= -DYAB_WANT_SDL=ON +#BUILDLINK_TRANSFORM+= l:SDL:SDL2 .else CMAKE_ARGS+= -DYAB_WANT_SDL=OFF .endif |