kumquat-buildroot/package/libgudev/Config.in
Nathaniel Roach b935d49a91 libgudev: New package
As libgudev recently was split from the main systemd/udev source, this
library is now required to build certain packages.

This library is only relevant to systemd, as the code it contains is
still contained in eudev.

[Thomas:
 - don't show the dependency comment when systemd is not available,
   since libgudev is anyway useless when you're not using systemd.
 - fix the license, it's LGPLv2.1+ and not GPLv2+
 - remove useless empty lines in the .mk file.]

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>
2015-08-25 16:35:15 +02:00

23 lines
731 B
Plaintext

config BR2_PACKAGE_LIBGUDEV
bool "libgudev"
depends on BR2_INIT_SYSTEMD
depends on BR2_USE_WCHAR # gettext
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_LIBGLIB2
help
This library provides GObject bindings for libudev. It was
originally part of udev-extras, then udev, then systemd.
It's now a project on its own. Required for building some
programs that use udev, when using systemd.
When systemd is not used, libgudev is directly provided by
eudev.
https://wiki.gnome.org/Projects/libgudev
comment "libgudev needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on BR2_INIT_SYSTEMD
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS