]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/libgail/Config.in
cairo, harfbuzz: rework atomic dependencies
[coffee/buildroot.git] / package / libgail / Config.in
1 config BR2_PACKAGE_LIBGAIL
2         bool "libgail"
3         depends on BR2_USE_WCHAR # pango -> libglib2
4         depends on BR2_TOOLCHAIN_HAS_THREADS # pango -> libglib2
5         depends on BR2_USE_MMU # pango -> libglib2
6         depends on BR2_INSTALL_LIBSTDCPP # pango -> freetype
7         depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz
8         depends on BR2_PACKAGE_LIBGTK2
9         depends on BR2_DEPRECATED_SINCE_2015_08
10         select BR2_PACKAGE_PANGO
11         help
12           GAIL provides accessibility support for gtk+ and
13           libgnomecanvas by implementing AtkObjects for widgets in
14           gtk+ and libgnomecanvas.
15
16           The GAIL library is a GTK+ module. For example, if the
17           module is loaded in a program which calls
18           gtk_widget_get_accessible() for a GtkEntry an instance of
19           GailEntry is returned. This module is normally used with the
20           atk-bridge GTK+ module from at-spi to allow an assistive
21           technology, e.g a screenreader, to query or drive the
22           program.
23
24           http://developer.gnome.org/projects/gap
25
26 comment "libgail needs a toolchain w/ C++, wchar, threads"
27         depends on BR2_PACKAGE_LIBGTK2
28         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
29         depends on BR2_USE_MMU
30         depends on BR2_TOOLCHAIN_HAS_SYNC_4
31         depends on BR2_DEPRECATED_SINCE_2015_08