summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorrodent <rodent>2014-01-06 15:28:35 +0000
committerrodent <rodent>2014-01-06 15:28:35 +0000
commit6526feb7e06dfa9115e71a9df67261efee760104 (patch)
tree249e2766076ee21bf97eb8d9d078fab469ff3800 /emulators
parentac11bb50f6dee5bff72d244cf3a0085a7b7f1460 (diff)
downloadpkgsrc-6526feb7e06dfa9115e71a9df67261efee760104.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.mk16
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