build: require libqmi 1.30.2

We need the new "Get All Call Info" request support.
This commit is contained in:
Aleksander Morgado
2021-09-08 11:46:55 +02:00
parent 2e44a5921b
commit 64f18f036b
3 changed files with 3 additions and 3 deletions

2
NEWS
View File

@@ -9,7 +9,7 @@ The following notes are directed to package maintainers:
** glib2 >= 2.56
** libgudev >= 232
** libmbim >= 1.26.0 (for the optional MBIM support)
** libqmi >= 1.30.0 (for the optional QMI support)
** libqmi >= 1.30.2 (for the optional QMI support)
** libqrtr-glib >= 1.0.0 (for the optional QRTR support)
* The ModemManager.service file for systemd integration provided in the sources

View File

@@ -399,7 +399,7 @@ dnl-----------------------------------------------------------------------------
dnl QMI support (enabled by default)
dnl
LIBQMI_VERSION=1.30.0
LIBQMI_VERSION=1.30.2
AC_ARG_WITH(qmi, AS_HELP_STRING([--without-qmi], [Build without QMI support]), [], [with_qmi=yes])
AM_CONDITIONAL(WITH_QMI, test "x$with_qmi" = "xyes")

View File

@@ -237,7 +237,7 @@ enable_mbim = mbim_glib_dep.found()
config_h.set('WITH_MBIM', enable_mbim)
# QMI support (enabled by default)
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.30.0', required: get_option('qmi'))
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.30.2', required: get_option('qmi'))
enable_qmi = qmi_glib_dep.found()
config_h.set('WITH_QMI', enable_qmi)