This commit adds a dependency of the libglib2 package on thread support in the toolchain, since upstream libglib2 doesn't build without thread support. The commit is rather large as it involves propagating the dependency on thread support to all reverse dependencies of the libglib2 package. [Thomas: squash all patches into one, make a few minor fixes, the most important one being to not add comments about MMU requirement when a package doesn't work on !MMU platforms.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
29 lines
927 B
Plaintext
29 lines
927 B
Plaintext
config BR2_PACKAGE_WEBKIT
|
|
bool "webkit"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR # enchant -> libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # enchant -> libglib2
|
|
depends on BR2_PACKAGE_LIBGTK2
|
|
select BR2_PACKAGE_ICU
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBXML2
|
|
select BR2_PACKAGE_LIBXSLT
|
|
select BR2_PACKAGE_SQLITE
|
|
select BR2_PACKAGE_ENCHANT
|
|
select BR2_PACKAGE_LIBSOUP
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_CAIRO_PNG
|
|
select BR2_PACKAGE_LIBGAIL
|
|
select BR2_PACKAGE_XLIB_LIBXT if BR2_PACKAGE_XORG7
|
|
help
|
|
WebKit is an open source, standards compliant web browser engine.
|
|
|
|
Note that WebKit does not build with a toolchain using the
|
|
old linuxthreads library.
|
|
|
|
http://webkit.org/
|
|
|
|
comment "webkit requires libgtk2 and a toolchain with C++, WCHAR, threading support"
|
|
depends on BR2_PACKAGE_LIBGTK2 || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|