aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrakash Pabba <quic_ppabba@quicinc.com>2021-11-11 17:25:47 +0530
committerPrakash Pabba <quic_ppabba@quicinc.com>2021-11-11 18:21:52 +0530
commit2e4bba105e03a1b8a04cafd59de97d8880c304a2 (patch)
tree20167a0168d2e4dc6aaca7b9ba7f002261aef531
parent3a880fd832a2826f812aef451e40c8f1241dccff (diff)
build,meson: bump libqmi version to 1.31.2
In order to be able to use new 5GNR apis.
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index fba9df98..3afd0aec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -399,7 +399,7 @@ dnl-----------------------------------------------------------------------------
dnl QMI support (enabled by default)
dnl
-LIBQMI_VERSION=1.31.1
+LIBQMI_VERSION=1.31.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 ba4c2c7d..0a9cf48e 100644
--- a/meson.build
+++ b/meson.build
@@ -243,7 +243,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.1')
+ qmi_glib_dep = dependency('qmi-glib', version: '>= 1.31.2')
endif
config_h.set('WITH_QMI', enable_qmi)