Commit fdecbd5f authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

libevas: disable on avr32

Neither epoll_create1 nor inotify_init1 is available on avr32. Fixes build
failures such as the following.

  http://autobuild.buildroot.net/results/4d435a5fc608936362d605aca696c01023be9723



Signed-off-by: default avatarSimon Dawson <spdawson@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent de0b7e9f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ config BR2_PACKAGE_EXPEDITE
	select BR2_PACKAGE_LIBEVAS
	select BR2_PACKAGE_LIBEET
	depends on BR2_INSTALL_LIBSTDCPP
	depends on !BR2_avr32 # libevas
	help
	  Expedite is the official Evas benchmark tool. It can test different
	  engines, such as X11, XRender, OpenGL (also ES variant), SDL,
@@ -12,3 +13,4 @@ config BR2_PACKAGE_EXPEDITE

comment "expedite needs a toolchain w/ C++"
	depends on !BR2_INSTALL_LIBSTDCPP
	depends on !BR2_avr32
+1 −0
Original line number Diff line number Diff line
@@ -38,5 +38,6 @@ config BR2_PACKAGE_LIBECORE_X_XCB
config BR2_PACKAGE_LIBECORE_EVAS
	bool "libecore Evas support"
	select BR2_PACKAGE_LIBEVAS
	depends on !BR2_avr32 # libevas

endif # BR2_PACKAGE_LIBECORE
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ config BR2_PACKAGE_LIBEDJE
	select BR2_PACKAGE_LIBEMBRYO
	select BR2_PACKAGE_LIBEVAS
	select BR2_PACKAGE_LUA
	depends on !BR2_avr32 # libevas
	help
	  A graphical layout and animation library for animated
	  resizable, compressed and scalable themes.
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ config BR2_PACKAGE_LIBELEMENTARY
	select BR2_PACKAGE_LIBEVAS
	select BR2_PACKAGE_LIBECORE
	select BR2_PACKAGE_LIBEDJE
	depends on !BR2_avr32 # libevas
	help
	  Elementary is a widget toolkit and EFL wrapper and convenience
	  library to make it easy to build applications and tools with UIs
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ config BR2_PACKAGE_LIBETHUMB
	select BR2_PACKAGE_LIBECORE
	select BR2_PACKAGE_LIBECORE_EVAS
	select BR2_PACKAGE_LIBEDJE
	depends on !BR2_avr32 # libevas
	help
	  Ethumb is a library for generating thumbnail images of documents.

Loading