blob: 80658b2f0cbb26c6a8f868b9767a379fc3a4836f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
menuconfig BR2_PACKAGE_EFL
bool "Enlightenment Foundation Libraries"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_HAS_UDEV # libudev
depends on BR2_PACKAGE_LUA # lua 5.1 or better
depends on BR2_TOOLCHAIN_HAS_THREADS # untested without threads
depends on BR2_USE_MMU
depends on BR2_USE_WCHAR # use wchar_t
depends on !BR2_STATIC_LIBS # dlfcn.h
select BR2_PACKAGE_LIBEFL
help
Enlightenment Foundation Libraries
http://enlightenment.org
if BR2_PACKAGE_EFL
source "package/efl/libefl/Config.in"
source "package/efl/libelementary/Config.in"
endif # BR2_PACKAGE_EFL
comment "EFL needs udev /dev management and a toolchain w/ C++, dynamic library, threads, wchar"
depends on !BR2_PACKAGE_HAS_UDEV || !BR2_INSTALL_LIBSTDCPP \
|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
depends on BR2_USE_MMU
comment "EFL needs lua"
depends on !BR2_PACKAGE_LUA
depends on BR2_USE_MMU
|