1*4882a593Smuzhiyunconfig BR2_PACKAGE_QT5WEBKIT 2*4882a593Smuzhiyun bool "qt5webkit" 3*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS 4*4882a593Smuzhiyun depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE 5*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP # leveldb 6*4882a593Smuzhiyun depends on BR2_HOST_GCC_AT_LEAST_4_9 # icu, host-ruby 7*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # icu 8*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS # leveldb 9*4882a593Smuzhiyun depends on !BR2_BINFMT_FLAT # icu 10*4882a593Smuzhiyun # assumes a FPU is available on MIPS 11*4882a593Smuzhiyun depends on !BR2_MIPS_SOFT_FLOAT 12*4882a593Smuzhiyun select BR2_PACKAGE_GSTREAMER1 13*4882a593Smuzhiyun select BR2_PACKAGE_GST1_PLUGINS_BASE 14*4882a593Smuzhiyun select BR2_PACKAGE_ICU 15*4882a593Smuzhiyun select BR2_PACKAGE_JPEG 16*4882a593Smuzhiyun select BR2_PACKAGE_LEVELDB 17*4882a593Smuzhiyun select BR2_PACKAGE_LIBPNG 18*4882a593Smuzhiyun select BR2_PACKAGE_OPENSSL 19*4882a593Smuzhiyun # Only openssl is supported by qt5 20*4882a593Smuzhiyun select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL 21*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_ICU 22*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_GUI 23*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_WIDGETS 24*4882a593Smuzhiyun select BR2_PACKAGE_QT5LOCATION 25*4882a593Smuzhiyun select BR2_PACKAGE_QT5SENSORS 26*4882a593Smuzhiyun select BR2_PACKAGE_QT5WEBCHANNEL 27*4882a593Smuzhiyun select BR2_PACKAGE_LIBEXECINFO if !BR2_TOOLCHAIN_USES_GLIBC 28*4882a593Smuzhiyun select BR2_PACKAGE_LIBXML2 29*4882a593Smuzhiyun select BR2_PACKAGE_LIBXSLT 30*4882a593Smuzhiyun select BR2_PACKAGE_SQLITE 31*4882a593Smuzhiyun select BR2_PACKAGE_WEBP 32*4882a593Smuzhiyun select BR2_PACKAGE_WEBP_DEMUX 33*4882a593Smuzhiyun select BR2_PACKAGE_WOFF2 34*4882a593Smuzhiyun select BR2_PACKAGE_XLIB_LIBXCOMPOSITE if BR2_PACKAGE_QT5BASE_XCB 35*4882a593Smuzhiyun select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_QT5BASE_XCB 36*4882a593Smuzhiyun select BR2_PACKAGE_XLIB_LIBXRENDER if BR2_PACKAGE_QT5BASE_XCB 37*4882a593Smuzhiyun help 38*4882a593Smuzhiyun Qt is a cross-platform application and UI framework for 39*4882a593Smuzhiyun developers using C++. 40*4882a593Smuzhiyun 41*4882a593Smuzhiyun The Qt WebKit module provides the WebView API, which 42*4882a593Smuzhiyun allows QML applications to render regions of dynamic 43*4882a593Smuzhiyun web content. 44*4882a593Smuzhiyun 45*4882a593Smuzhiyun This package has been removed from the official release 46*4882a593Smuzhiyun packages since Qt5.6.0, but it is still available for users 47*4882a593Smuzhiyun to build it from source. This is useful for platforms 48*4882a593Smuzhiyun without GPU since the successor (QtWebEngine) requires 49*4882a593Smuzhiyun OpenGL support. 50*4882a593Smuzhiyun 51*4882a593Smuzhiyun https://doc.qt.io/archives/qt-5.5/qtwebkit-index.html 52*4882a593Smuzhiyun 53*4882a593Smuzhiyuncomment "qt5webkit needs a toolchain w/ dynamic library, gcc >= 4.9, host gcc >= 4.9" 54*4882a593Smuzhiyun depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 55*4882a593Smuzhiyun !BR2_HOST_GCC_AT_LEAST_4_9 56*4882a593Smuzhiyun depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE 57*4882a593Smuzhiyun depends on !BR2_BINFMT_FLAT 58*4882a593Smuzhiyun depends on !BR2_MIPS_SOFT_FLOAT 59