Config.in 1.4 KB

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