mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
meson: opengl: fix enabled_gl_apis in pkg-config file
Make consistent with what autotools puts into enabled_gl_apis variable. Autotools puts 'gl' in there instead of 'opengl'. This would cause problems when building -bad glmixers plugin in meson against a -base that was built with autotools. See https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/871
This commit is contained in:
parent
7874c74cfb
commit
6330eb0cb3
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ endif
|
|||
if gl_dep.found()
|
||||
gl_lib_deps += gl_dep
|
||||
glconf.set10('GST_GL_HAVE_OPENGL', 1)
|
||||
enabled_gl_apis += 'opengl'
|
||||
enabled_gl_apis += 'gl'
|
||||
endif
|
||||
|
||||
# EGL checks
|
||||
|
|
Loading…
Reference in a new issue