diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-29 15:56:48 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-29 22:18:57 +0200 |
commit | e014e3da09e99222a1ff4ebb9c3f3433e8de65be (patch) | |
tree | 60554bb09ec244d6c7662a74ec1d5d941135a7fa /package | |
parent | af5dc83da448ac6f911741d1a51ce315cb052057 (diff) | |
download | buildroot-novena-e014e3da09e99222a1ff4ebb9c3f3433e8de65be.tar.gz buildroot-novena-e014e3da09e99222a1ff4ebb9c3f3433e8de65be.zip |
cairo: PDF support is needed when SVG support is enabled
As soon as PostScript, PNG or SVG support is enabled, PDF support is
required for Cairo to build properly. Otherwise, you get build
failures such as:
.libs/cairo-type3-glyph-surface.o: In function `_cairo_type3_glyph_surface_set_stream':
/home/thomas/local/buildroot-dl/cairo-1.8.10/src/cairo-type3-glyph-surface.c:337: undefined reference to `_cairo_pdf_operators_set_stream'
/home/thomas/local/buildroot-dl/cairo-1.8.10/src/cairo-type3-glyph-surface.c:337: undefined reference to `_cairo_pdf_operators_set_stream'
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/cairo/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/cairo/Config.in b/package/cairo/Config.in index 752f61510..19c47231d 100644 --- a/package/cairo/Config.in +++ b/package/cairo/Config.in @@ -30,5 +30,6 @@ config BR2_PACKAGE_CAIRO_PNG config BR2_PACKAGE_CAIRO_SVG bool "svg support" select BR2_PACKAGE_CAIRO_PNG + select BR2_PACKAGE_CAIRO_PDF endif |