diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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 diff --git a/configure.ac b/configure.ac index 835dbfdc..b12d232d 100644 --- a/configure.ac +++ b/configure.ac @@ -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") diff --git a/meson.build b/meson.build index a7f319c8..5e592bb5 100644 --- a/meson.build +++ b/meson.build @@ -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) |