mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-05 15:08:48 +00:00
meson: Fix invalid include flag in uninstalled gl pc file
${libdir}/gstreamer-1.0/include is only valid after installation, but extra_cflags are added unconditionally, so we can't use that for include flags. Instead, let's add the include flag via variables, which are different for installed and uninstalled pc files. This is particularly bad for consuming GStreamer via CMake which barfs on non-existent include paths. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7143>
This commit is contained in:
parent
0ae0efb623
commit
a9fec8f638
1 changed files with 5 additions and 2 deletions
|
@ -1113,15 +1113,18 @@ if build_gstgl
|
|||
'gl_winsys=' + ' '.join(enabled_gl_winsys),
|
||||
'gl_apis=' + ' '.join(enabled_gl_apis),
|
||||
]
|
||||
pkgconfig_installed_variables = [
|
||||
'libinc=-I${libdir}/gstreamer-1.0/include',
|
||||
]
|
||||
|
||||
library_def = {'lib': gstgl}
|
||||
pkg_name = 'gstreamer-gl-1.0'
|
||||
pkgconfig.generate(gstgl,
|
||||
libraries : [gstvideo, gst_base_dep, gst_dep],
|
||||
variables : pkgconfig_variables + pkgconfig_gl_variables,
|
||||
variables : pkgconfig_variables + pkgconfig_gl_variables + pkgconfig_installed_variables,
|
||||
uninstalled_variables : pkgconfig_gl_variables,
|
||||
subdirs : pkgconfig_subdirs,
|
||||
extra_cflags : ['-I${libdir}/gstreamer-1.0/include'],
|
||||
extra_cflags : ['${libinc}'],
|
||||
name : pkg_name,
|
||||
description : 'Streaming media framework, OpenGL plugins libraries',
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue