mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
examples/gl/sdl: only build on glx/wgl systems
The code will not work anywhere else. FIxes https://gitlab.freedesktop.org/gstreamer/gst-build/issues/22
This commit is contained in:
parent
3b6415b421
commit
0863452a79
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
|||
sdl_dep = dependency('sdl', version : '>=1.2.0', required : get_option('examples'))
|
||||
if sdl_dep.found() and build_gstgl
|
||||
have_sdl_gl = build_gstgl and (
|
||||
enabled_gl_apis.contains('gl') and
|
||||
(enabled_gl_platforms.contains('glx') or enabled_gl_platforms.contains('wgl')) and
|
||||
(enabled_gl_winsys.contains('x11') or enabled_gl_winsys.contains('win32'))
|
||||
)
|
||||
if sdl_dep.found() and have_sdl_gl
|
||||
executable('sdlshare',
|
||||
'sdlshare.c',
|
||||
install: false,
|
||||
|
|
Loading…
Reference in a new issue