Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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 packages
  23. since Qt5.6.0, but it is still available for users to build it
  24. from source. This is useful for platforms without GPU since the
  25. successor (QtWebEngine) requires OpenGL support.
  26. http://doc.qt.io/archives/qt-5.5/qtwebkit-index.html
  27. comment "qt5webkit needs a toolchain w/ dynamic library, gcc >= 4.8, host gcc >= 4.8"
  28. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
  29. !BR2_HOST_GCC_AT_LEAST_4_8
  30. depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
  31. depends on !BR2_BINFMT_FLAT
  32. depends on !BR2_MIPS_SOFT_FLOAT