mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-18 09:43:33 +08:00
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]: 596a82f2d1
[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>
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_LIBGTK2
|
|
bool "libgtk2"
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on BR2_USE_WCHAR # glib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
|
depends on BR2_USE_MMU # glib2
|
|
depends on BR2_INSTALL_LIBSTDCPP # pango
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # pango -> harfbuzz
|
|
select BR2_PACKAGE_AT_SPI2_CORE
|
|
select BR2_PACKAGE_CAIRO
|
|
select BR2_PACKAGE_CAIRO_PNG
|
|
select BR2_PACKAGE_CAIRO_ZLIB
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_PANGO
|
|
select BR2_PACKAGE_GDK_PIXBUF
|
|
select BR2_PACKAGE_FONTCONFIG
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
select BR2_PACKAGE_XLIB_LIBXRENDER
|
|
help
|
|
The GTK+ version 2 graphical user interface library
|
|
|
|
http://www.gtk.org/
|
|
|
|
if BR2_PACKAGE_LIBGTK2
|
|
|
|
config BR2_PACKAGE_LIBGTK2_DEMO
|
|
bool "Install libgtk2 demo program"
|
|
help
|
|
The GTK+ source base contains a gtk-demo program. This
|
|
option allows to install this program to the target.
|
|
|
|
endif
|
|
|
|
comment "libgtk2 needs a toolchain w/ wchar, threads, C++, gcc >= 4.9"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|