8d44671866
The libeina library uses the madvise() system call, that isn't available on non-MMU systems. Also, several other components of EFL use fork(). Therefore, the easiest solution is to simply disallow the EFL as a whole on non-MMU systems. Fixes: http://autobuild.buildroot.org/results/ad9/ad90baa5e07569308a7e2b2510b67c5b2a563b44// Thanks to Ryan Barnett for helping in the investigation! Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_ENLIGHTENMENT
|
|
bool "enlightenment"
|
|
select BR2_PACKAGE_EFL
|
|
select BR2_PACKAGE_LIBECORE
|
|
select BR2_PACKAGE_LIBECORE_X
|
|
select BR2_PACKAGE_LIBEINA
|
|
select BR2_PACKAGE_LIBEET
|
|
select BR2_PACKAGE_LIBEVAS
|
|
select BR2_PACKAGE_LIBEVAS_JPEG
|
|
select BR2_PACKAGE_LIBEVAS_PNG
|
|
select BR2_PACKAGE_LIBEVAS_EET
|
|
select BR2_PACKAGE_LIBECORE_EVAS
|
|
select BR2_PACKAGE_LIBEDJE
|
|
select BR2_PACKAGE_LIBEFREET
|
|
select BR2_PACKAGE_LIBEDBUS
|
|
select BR2_PACKAGE_LIBEIO
|
|
select BR2_PACKAGE_XCB_UTIL_KEYSYMS
|
|
select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
|
|
select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
|
|
# 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_XORG7
|
|
depends on !BR2_avr32 # libevas
|
|
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 a toolchain w/ wchar, C++, threads"
|
|
depends on BR2_PACKAGE_XORG7 && BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_avr32
|