From d45ef1a29518620723aa6a14fffe476c8d5a445c Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Mon, 12 Feb 2018 17:27:25 +0100 Subject: [PATCH] Do not use too recent set_quoted() Old versions of meson do not support set_quoted(). Replace the call by the old-fashioned manual quotation. --- app/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/meson.build b/app/meson.build index cada95f7..3e03bd91 100644 --- a/app/meson.build +++ b/app/meson.build @@ -39,7 +39,8 @@ conf = configuration_data() conf.set('BUILD_DEBUG', get_option('buildtype') == 'debug') # the version, updated on release -conf.set_quoted('SCRCPY_VERSION', '0.1') +# (conf.set_quoted() is not available on old versions of meson) +conf.set('SCRCPY_VERSION', '"0.1"') # the default client TCP port for the "adb reverse" tunnel # overridden by option --port