4182346f4b
This reverts commit 1ec1f86551
, which
causes numerous build failures due to Rust handling problems. See the
thread at
http://lists.busybox.net/pipermail/buildroot/2018-June/223642.html for
details.
Fixes (or rather avoids):
http://autobuild.buildroot.net/results/26102d0ec258d5ef3af36ac32371fba1c996965b/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_ENLIGHTENMENT
|
|
bool "enlightenment"
|
|
# libevas-generic-loaders-svg -> librsvg -> glib2 / pango
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
# libedbus -> dbus
|
|
# libedbus -> glib2, libevas
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# libedbus -> dbus, efl libraries
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_EFL
|
|
depends on BR2_PACKAGE_HAS_UDEV # efl (eeze) -> libudev
|
|
depends on BR2_PACKAGE_XORG7
|
|
# libevas-generic-loaders-svg -> librsvg -> pango -> harfbuzz
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
select BR2_PACKAGE_EFL_X_XLIB
|
|
select BR2_PACKAGE_EFL_EEZE
|
|
select BR2_PACKAGE_EFL_JPEG # needed at runtime by enlightenment_start
|
|
select BR2_PACKAGE_EFL_PNG # needed at runtime by enlightenment_start
|
|
select BR2_PACKAGE_EFL_SVG
|
|
select BR2_PACKAGE_XCB_UTIL_KEYSYMS
|
|
help
|
|
Enlightenment, also known simply as E, is a stacking window
|
|
manager for the X Window System which can be used alone or
|
|
in conjunction with a desktop environment such as GNOME or
|
|
KDE. Enlightenment can be used as a substitute for a full
|
|
desktop environment.
|
|
|
|
http://www.enlightenment.org/
|
|
|
|
comment "enlightenment needs udev /dev management and a toolchain w/ wchar, C++, threads"
|
|
depends on BR2_PACKAGE_EFL && BR2_PACKAGE_XORG7 && BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|