diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-02-22 19:20:03 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-22 21:23:45 +0100 |
commit | 8d446718661033332347ed4a25bb4c027dd5da54 (patch) | |
tree | 6609699281bc0112722d7183c3bd055b629623aa /package/enlightenment/Config.in | |
parent | eda5dd1cee689ae8b2c7b06f1f1873ab17f24bbc (diff) | |
download | buildroot-8d446718661033332347ed4a25bb4c027dd5da54.tar.gz buildroot-8d446718661033332347ed4a25bb4c027dd5da54.zip |
efl: disallow on non-MMU systems
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>
Diffstat (limited to 'package/enlightenment/Config.in')
-rw-r--r-- | package/enlightenment/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/enlightenment/Config.in b/package/enlightenment/Config.in index 43efe5826b..f34140bc91 100644 --- a/package/enlightenment/Config.in +++ b/package/enlightenment/Config.in @@ -23,7 +23,7 @@ config BR2_PACKAGE_ENLIGHTENMENT # libedbus -> dbus # libedbus -> glib2, libevas depends on BR2_TOOLCHAIN_HAS_THREADS - # libedbus -> dbus + # libedbus -> dbus, efl libraries depends on BR2_USE_MMU depends on BR2_PACKAGE_XORG7 depends on !BR2_avr32 # libevas |