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

Signed-off-by: Stefan Froberg <stefan.froberg@petroprogram.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Stefan Froberg 2012-08-12 00:57:11 +03:00 committed by Thomas Petazzoni
parent 77d3c5d457
commit 42136fea75
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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))