Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. config BR2_PACKAGE_QT5WEBKIT
  2. bool "qt5webkit"
  3. depends on !BR2_STATIC_LIBS
  4. depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
  5. depends on BR2_INSTALL_LIBSTDCPP # leveldb
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # icu
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # leveldb
  8. depends on !BR2_BINFMT_FLAT # icu
  9. # assumes a FPU is available on MIPS
  10. depends on !BR2_MIPS_SOFT_FLOAT
  11. select BR2_PACKAGE_LEVELDB
  12. select BR2_PACKAGE_QT5BASE
  13. select BR2_PACKAGE_QT5BASE_ICU
  14. select BR2_PACKAGE_QT5BASE_GUI
  15. select BR2_PACKAGE_SQLITE
  16. select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_QT5BASE_XCB
  17. select BR2_PACKAGE_XLIB_LIBXRENDER if BR2_PACKAGE_QT5BASE_XCB
  18. help
  19. Qt is a cross-platform application and UI framework for
  20. developers using C++.
  21. The Qt WebKit module provides the WebView API, which
  22. allows QML applications to render regions of dynamic
  23. web content.
  24. This package has been removed from the official release
  25. packages since Qt5.6.0, but it is still available for users
  26. to build it from source. This is useful for platforms
  27. without GPU since the successor (QtWebEngine) requires
  28. OpenGL support.
  29. http://doc.qt.io/archives/qt-5.5/qtwebkit-index.html
  30. comment "qt5webkit needs a toolchain w/ dynamic library, gcc >= 4.8"
  31. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  32. depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
  33. depends on !BR2_BINFMT_FLAT
  34. depends on !BR2_MIPS_SOFT_FLOAT