1fa58814c0
- Moved BR2_PACKAGE_CAIRO_{SCRIPT,PS,PDF,XML} to Config.in.legacy
since they are not selectable anymore in the meson-build options.
BR2_PACKAGE_CAIRO_ZLIB serves for all of them now.
- Moved BR2_PACKAGE_CAIRO_SVG to Config.in.legacy since the PNG
option already selects that one. This is now in sync with the
meson build options.
- Note that the dependencies for the various options are slightly changed,
but there is not much mentioned about that, the meson introduction is done
in one big commit: [1].
- Added xlib_libXrender dependency, which was optional when using
autotools (--enable-xlib-xrender), but became mandatory when using
meson [2].
- Added two patches to fix cross compiling, upstream: [3]
[1]: https://gitlab.freedesktop.org/cairo/cairo/-/commit/596a82f2d185b101bd74645492821fe2f9e0daa0
[2]: https://gitlab.freedesktop.org/cairo/cairo/-/blame/1.17.4/meson.build#L277
[3]: https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/534
Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
[Arnout: edit patch 0005 so it applies with fuzz 0]
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
31 lines
876 B
Plaintext
31 lines
876 B
Plaintext
config BR2_PACKAGE_CAIRO
|
|
bool "cairo"
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_FONTCONFIG
|
|
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXRENDER if BR2_PACKAGE_XORG7
|
|
help
|
|
Cairo is a 2D graphics library with support for multiple
|
|
output devices. Currently supported output targets include
|
|
the X Window System, Win32, image buffers, and PostScript,
|
|
PDF, and SVG file output. Experimental backends include
|
|
OpenGL (through glitz), Quartz, and XCB.
|
|
|
|
http://cairographics.org/
|
|
|
|
if BR2_PACKAGE_CAIRO
|
|
|
|
config BR2_PACKAGE_CAIRO_PNG
|
|
bool "png support (png and svg surfaces)"
|
|
select BR2_PACKAGE_LIBPNG
|
|
|
|
config BR2_PACKAGE_CAIRO_TEE
|
|
bool "tee support"
|
|
|
|
config BR2_PACKAGE_CAIRO_ZLIB
|
|
bool "zlib support (script, ps, pdf, and xml surfaces)"
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
endif
|