From dcbd979b8f62b2b5834df6b6be8977fce24e20e9 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Fri, 14 May 2021 12:33:41 +0200 Subject: [PATCH] trivial: fix libqmi build dependency The build dependency of libqmi was attempted to be updated in commit 6db69de72536964097b05b, but wasn't properly done, as only the QMI_REQUIRED_VERSION symbol was updated, not the actual pkgconfig required version. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2e7fbd028..c5abe9ef5 100644 --- a/meson.build +++ b/meson.build @@ -408,7 +408,7 @@ endif if build_standalone and get_option('plugin_modem_manager') libmm_glib = dependency('mm-glib', version : '>= 1.10.0') add_project_arguments('-DMM_REQUIRED_VERSION="1.10.0"', language : 'c') - libqmi_glib = dependency('qmi-glib', version : '>= 1.22.0') + libqmi_glib = dependency('qmi-glib', version : '>= 1.23.1') add_project_arguments('-DQMI_REQUIRED_VERSION="1.23.1"', language : 'c') endif