Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2022-10-30 01:32:58 +0300
committerTim-Philipp Müller <tim@centricular.com>2022-10-30 01:32:58 +0300
commit4b07214b9137b15291ea010004c664b983b3f125 (patch)
tree2ec30aa958a98f271b03044b57c72927c18fac2a
parent31289d766fda9dba3f6c7cfc513036e867d74e86 (diff)
meson: bump req to >= 0.55 and use meson.can_run_host_binaries()
.. instead of the deprecated meson.has_exe_wrapper()
-rw-r--r--meson.build2
-rw-r--r--tools/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 4b2d5bd..b59423b 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project ('orc', 'c', version : '0.4.32',
- meson_version : '>= 0.54.0',
+ meson_version : '>= 0.55.0',
default_options : ['buildtype=debugoptimized',
'warning_level=1'] )
diff --git a/tools/meson.build b/tools/meson.build
index 0711ff1..127728a 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -3,7 +3,7 @@ orcc = executable ('orcc', 'orcc.c',
dependencies : [libm, orc_dep])
# Make orcc usable for other subprojects
-if meson.has_exe_wrapper()
+if meson.can_run_host_binaries()
meson.override_find_program('orcc', orcc)
endif