buildroot/package/modem-manager/Config.in
Fabrice Fontaine 5eb9e36242 package/modem-manager: fix build without xsltproc
Commit 8efb52c1a1 added a libxslt
dependency presumably to manage
bbd39a457c

However, this is wrong and build will fail on:

checking for xsltproc... no
configure: error: Please install xsltproc before configuring.

xsltproc is used to generate ModemManager-names.h since, at least,
version 0.7.990 and
365b906a3e
However, this file is already available in the official tarball so drop
this unneeded dependency and set ac_cv_prog_XSLTPROC_CHECK to yes

Fixes:
 - http://autobuild.buildroot.org/results/edc755b874ea43d1c009ad76c28f05e18519138e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2020-11-05 09:40:11 +01:00

33 lines
961 B
Plaintext

config BR2_PACKAGE_MODEM_MANAGER
bool "modem-manager"
depends on BR2_USE_WCHAR # libglib2 and gnutls
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
depends on BR2_USE_MMU # dbus
select BR2_PACKAGE_DBUS # runtime dependency
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_LIBGUDEV if BR2_PACKAGE_HAS_UDEV
help
ModemManager is a DBus-activated daemon which controls mobile
broadband (2G/3G/4G) devices and connections.
http://www.freedesktop.org/wiki/Software/ModemManager/
if BR2_PACKAGE_MODEM_MANAGER
config BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
bool "MBIM support"
select BR2_PACKAGE_LIBMBIM
help
This option enables support for MBIM protocol
config BR2_PACKAGE_MODEM_MANAGER_LIBQMI
bool "QMI support"
select BR2_PACKAGE_LIBQMI
help
This option enables support for QMI protocol
endif
comment "modemmanager needs a toolchain w/ wchar, threads"
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU