Commit 42136fea authored by Stefan Froberg's avatar Stefan Froberg Committed by Thomas Petazzoni
Browse files

cairo: Add tee surface backend option (required by firefox)

parent 77d3c5d4
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -32,4 +32,7 @@ config BR2_PACKAGE_CAIRO_SVG
	select BR2_PACKAGE_CAIRO_PNG
	select BR2_PACKAGE_CAIRO_PDF

config BR2_PACKAGE_CAIRO_TEE
	bool "tee support"
endif
+6 −0
Original line number Diff line number Diff line
@@ -77,4 +77,10 @@ else
	CAIRO_CONF_OPT += --disable-svg
endif

ifeq ($(BR2_PACKAGE_CAIRO_TEE),y)
	CAIRO_CONF_OPT += --enable-tee
else
	CAIRO_CONF_OPT += --disable-tee
endif

$(eval $(autotools-package))