mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-23 09:31:00 +00:00
gstreamer: gl package config since 1.24.9
The gstreamer-gl package config file is now fixed
This commit is contained in:
parent
6e5f0749e4
commit
77aa251ccf
2 changed files with 0 additions and 46 deletions
|
@ -3,7 +3,6 @@ directory=gstreamer-1.0
|
|||
url=https://gitlab.freedesktop.org/gstreamer/gstreamer.git
|
||||
push-url=git@gitlab.freedesktop.org:gstreamer/gstreamer.git
|
||||
revision=1.24
|
||||
diff_files = gstreamer-1.0/0001-Revert-meson-Fix-invalid-include-flag-in-uninstalled.patch
|
||||
|
||||
[provide]
|
||||
dependency_names = gstreamer-1.0, gstreamer-base-1.0, gstreamer-sys-1.0, gstreamer-plugins-bad-1.0, gstreamer-video-1.0, gstreamer-player-1.0 gstreamer-gl-1.0
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
From 6ce72488face35277643d3781d3da7c4f95d5e1e Mon Sep 17 00:00:00 2001
|
||||
From: Nirbheek Chauhan <nirbheek@centricular.com>
|
||||
Date: Fri, 19 Jul 2024 20:14:29 +0530
|
||||
Subject: [PATCH] Revert "meson: Fix invalid include flag in uninstalled gl pc
|
||||
file"
|
||||
|
||||
This reverts commit 9d719b9937e2ef476cf18f800f54ccac1feea8ee.
|
||||
|
||||
The old pkg-config implementation errors out if a variable specified
|
||||
in the pkgconfig file is not defined, so this actually broke
|
||||
uninstalled pc files.
|
||||
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7191>
|
||||
---
|
||||
subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build | 7 ++-----
|
||||
1 file changed, 2 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build b/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build
|
||||
index 751967be83..57af08ced3 100644
|
||||
--- a/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build
|
||||
+++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/meson.build
|
||||
@@ -1113,18 +1113,15 @@ 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 + pkgconfig_installed_variables,
|
||||
+ variables : pkgconfig_variables + pkgconfig_gl_variables,
|
||||
uninstalled_variables : pkgconfig_gl_variables,
|
||||
subdirs : pkgconfig_subdirs,
|
||||
- extra_cflags : ['${libinc}'],
|
||||
+ extra_cflags : ['-I${libdir}/gstreamer-1.0/include'],
|
||||
name : pkg_name,
|
||||
description : 'Streaming media framework, OpenGL plugins libraries',
|
||||
)
|
||||
--
|
||||
2.39.5 (Apple Git-154)
|
||||
|
Loading…
Reference in a new issue