trivial: fix libqmi build dependency

The build dependency of libqmi was attempted to be updated in
commit 6db69de725, but wasn't properly done, as
only the QMI_REQUIRED_VERSION symbol was updated, not the actual
pkgconfig required version.
This commit is contained in:
Aleksander Morgado 2021-05-14 12:33:41 +02:00
parent dd415ab396
commit dcbd979b8f

View File

@ -408,7 +408,7 @@ endif
if build_standalone and get_option('plugin_modem_manager') if build_standalone and get_option('plugin_modem_manager')
libmm_glib = dependency('mm-glib', version : '>= 1.10.0') libmm_glib = dependency('mm-glib', version : '>= 1.10.0')
add_project_arguments('-DMM_REQUIRED_VERSION="1.10.0"', language : 'c') 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') add_project_arguments('-DQMI_REQUIRED_VERSION="1.23.1"', language : 'c')
endif endif