Commit da2f1822 authored by Anton Kolesov's avatar Anton Kolesov Committed by Peter Korsgaard
Browse files

cairo: add dependency on atomic operations

This fixes:
http://autobuild.buildroot.net/results/fadfaa9916724d310d0dda555a1db31bee1601d0/



Signed-off-by: default avatarAnton Kolesov <Anton.Kolesov@synopsys.com>
[yann.morin.1998@free.fr: use the new symbol; remove comment strings;
 fix weston's comment]
Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent a30b868d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_CAIRO
	bool "cairo"
	depends on BR2_ARCH_HAS_ATOMICS
	select BR2_PACKAGE_PIXMAN
	select BR2_PACKAGE_FONTCONFIG
	select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
+2 −0
Original line number Diff line number Diff line
@@ -17,10 +17,12 @@ config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
	depends on BR2_USE_WCHAR # librsvg -> glib2
	depends on BR2_TOOLCHAIN_HAS_THREADS # librsvg -> glib2
	depends on BR2_INSTALL_LIBSTDCPP # librsvg -> pango
	depends on BR2_ARCH_HAS_ATOMICS # cairo
	help
	  This option enables the Evas generic SVG loader

comment "SVG loader needs a toolchain w/ wchar, threads, C++"
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP

endif
+1 −0
Original line number Diff line number Diff line
@@ -178,6 +178,7 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX

config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CAIRO
	bool "cairo"
	depends on BR2_ARCH_HAS_ATOMICS # cairo
	select BR2_PACKAGE_CAIRO
	select BR2_PACKAGE_CAIRO_PNG

+1 −0
Original line number Diff line number Diff line
@@ -278,6 +278,7 @@ comment "v4l2 needs toolchain w/ headers >= 3.0"

config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_CAIRO
	bool "cairo"
	depends on BR2_ARCH_HAS_ATOMICS # cairo
	select BR2_PACKAGE_CAIRO
	select BR2_PACKAGE_CAIRO_PNG
	help
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ config BR2_PACKAGE_LIBGTK2
	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
	depends on BR2_USE_MMU # glib2
	depends on BR2_INSTALL_LIBSTDCPP # pango
	depends on BR2_ARCH_HAS_ATOMICS # cairo
	help
	  The GTK+ version 2 graphical user interface library

@@ -34,6 +35,7 @@ endif

comment "libgtk2 needs a toolchain w/ wchar, threads, C++"
	depends on BR2_USE_MMU
	depends on BR2_ARCH_HAS_ATOMICS
	depends on BR2_PACKAGE_XORG7
	depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
		!BR2_TOOLCHAIN_HAS_THREADS
Loading