summaryrefslogtreecommitdiff
path: root/subprojects/gst-omx
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-09-21 19:19:45 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2022-09-21 21:08:11 +0530
commita0e6278dba899f122d806994d47ee0e2c1741b34 (patch)
tree668e92d1045aa5acb7ba634f73368a1886afff00 /subprojects/gst-omx
parenta9144f5313ce8a9af2735209db88bbd6bb096ee1 (diff)
downloadgstreamer-a0e6278dba899f122d806994d47ee0e2c1741b34.tar.gz
meson: Use implicit builtin dirs in pkgconfig generation
Starting with Meson 0.62, meson automatically populates the variables list in the pkgconfig file if you reference builtin directories in the pkgconfig file (whether via a custom pkgconfig variable or elsewhere). We need this, because ${prefix}/libexec is a hard-coded value which is incorrect on, for example, Debian. Bump requirement to 0.62, and remove version compares that retained support for older Meson versions. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1245 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3061>
Diffstat (limited to 'subprojects/gst-omx')
-rw-r--r--subprojects/gst-omx/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/gst-omx/meson.build b/subprojects/gst-omx/meson.build
index d1b149d997..05c4b68ec8 100644
--- a/subprojects/gst-omx/meson.build
+++ b/subprojects/gst-omx/meson.build
@@ -1,6 +1,6 @@
project('gst-omx', 'c',
version : '1.21.0.1',
- meson_version : '>= 0.60',
+ meson_version : '>= 0.62',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])