build,meson: require libqmi 1.31.7, in sync with autotools

The required libqmi version was updated in configure.ac to 1.31.7 in
commit ac06052b97, but we forgot to do
the same in the meson setup.
This commit is contained in:
Aleksander Morgado
2022-06-24 12:25:07 +02:00
parent b9ca16486e
commit db33a43b45

View File

@@ -247,7 +247,7 @@ config_h.set('WITH_MBIM', enable_mbim)
# QMI support (enabled by default)
enable_qmi = get_option('qmi')
if enable_qmi
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.31.5')
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.31.7')
endif
config_h.set('WITH_QMI', enable_qmi)