build: require libqmi 1.32.0 and libmbim 1.28.0

This commit is contained in:
Aleksander Morgado
2022-10-26 13:27:00 +00:00
parent ec28c85a6a
commit 6711cdbbf5
2 changed files with 4 additions and 4 deletions

View File

@@ -413,7 +413,7 @@ dnl-----------------------------------------------------------------------------
dnl MBIM support (enabled by default) dnl MBIM support (enabled by default)
dnl dnl
LIBMBIM_VERSION=1.27.9 LIBMBIM_VERSION=1.28.0
AC_ARG_WITH(mbim, AS_HELP_STRING([--without-mbim], [Build without MBIM support]), [], [with_mbim=yes]) AC_ARG_WITH(mbim, AS_HELP_STRING([--without-mbim], [Build without MBIM support]), [], [with_mbim=yes])
AM_CONDITIONAL(WITH_MBIM, test "x$with_mbim" = "xyes") AM_CONDITIONAL(WITH_MBIM, test "x$with_mbim" = "xyes")
@@ -437,7 +437,7 @@ dnl-----------------------------------------------------------------------------
dnl QMI support (enabled by default) dnl QMI support (enabled by default)
dnl dnl
LIBQMI_VERSION=1.31.9 LIBQMI_VERSION=1.32.0
AC_ARG_WITH(qmi, AS_HELP_STRING([--without-qmi], [Build without QMI support]), [], [with_qmi=yes]) 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") AM_CONDITIONAL(WITH_QMI, test "x$with_qmi" = "xyes")

View File

@@ -243,14 +243,14 @@ config_h.set('WITH_AT_COMMAND_VIA_DBUS', enable_at_command_via_dbus)
# MBIM support (enabled by default) # MBIM support (enabled by default)
enable_mbim = get_option('mbim') enable_mbim = get_option('mbim')
if enable_mbim if enable_mbim
mbim_glib_dep = dependency('mbim-glib', version: '>= 1.27.9') mbim_glib_dep = dependency('mbim-glib', version: '>= 1.28.0')
endif endif
config_h.set('WITH_MBIM', enable_mbim) config_h.set('WITH_MBIM', enable_mbim)
# QMI support (enabled by default) # QMI support (enabled by default)
enable_qmi = get_option('qmi') enable_qmi = get_option('qmi')
if enable_qmi if enable_qmi
qmi_glib_dep = dependency('qmi-glib', version: '>= 1.31.10') qmi_glib_dep = dependency('qmi-glib', version: '>= 1.32.0')
endif endif
config_h.set('WITH_QMI', enable_qmi) config_h.set('WITH_QMI', enable_qmi)