Commit 90c3150d authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

cairo: do not depend on xserver-xorg_server, but on the right library



cairo is a X client library, so there is no reason for it to build
depend on the X.org server. What Cairo needs is the xlib_libX11
library.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent cb8895ce
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ config BR2_PACKAGE_CAIRO
	bool "cairo"
	select BR2_PACKAGE_PIXMAN
	select BR2_PACKAGE_FONTCONFIG
	select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
	help
	  Cairo is a 2D graphics library with support for multiple
	  output devices. Currently supported output targets include
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ endif

ifeq ($(BR2_PACKAGE_XORG7),y)
	CAIRO_CONF_OPT += --enable-xlib --with-x
	CAIRO_DEPENDENCIES += xserver_xorg-server
	CAIRO_DEPENDENCIES += xlib_libX11
else
	CAIRO_CONF_OPT += --disable-xlib --without-x
endif