ad4be753c1
libmbim uses code (originally from udev) that has since been split from the main systemd codebase into libgudev. Fixes: http://autobuild.buildroot.org/results/638/638dbf05b785a276a33983b0237b7cad54777b85/ Tweak the package files for libmbim to require libgudev when building with systemd. Signed-off-by: Nathaniel Roach <nroach44@gmail.com> Tested-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
612 B
Plaintext
18 lines
612 B
Plaintext
config BR2_PACKAGE_LIBMBIM
|
|
bool "libmbim"
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
select BR2_PACKAGE_LIBGUDEV if BR2_INIT_SYSTEMD
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
libmbim is a glib-based library for talking to WWAN modems and
|
|
devices which speak the Mobile Interface Broadband Model (MBIM)
|
|
protocol.
|
|
|
|
http://www.freedesktop.org/wiki/Software/libmbim/
|
|
|
|
comment "libmbim needs udev /dev management and a toolchain w/ wchar, threads"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_PACKAGE_HAS_UDEV
|