Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_PACKAGE_VTE
  2. bool "vte"
  3. depends on BR2_USE_WCHAR
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_USE_MMU
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  8. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  9. depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND || \
  10. BR2_PACKAGE_HAS_LIBGL
  11. depends on BR2_PACKAGE_XORG7
  12. select BR2_PACKAGE_LIBGTK3
  13. select BR2_PACKAGE_LIBXML2
  14. select BR2_PACKAGE_PCRE2
  15. help
  16. VTE is a library (libvte) implementing a terminal emulator
  17. widget for GTK+, and a minimal sample application (vte)
  18. using that. Vte is mainly used in gnome-terminal, but
  19. can also be used to embed a console/terminal in games,
  20. editors, IDEs, etc.
  21. http://github.com/GNOME/vte
  22. comment "vte needs a toolchain w/ wchar, threads, C++, gcc >= 4.8"
  23. depends on BR2_USE_MMU
  24. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  25. depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
  26. !BR2_TOOLCHAIN_HAS_THREADS || \
  27. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  28. comment "vte needs an OpenGL or an OpenGL-EGL/wayland backend"
  29. depends on BR2_USE_MMU
  30. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  31. depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND && \
  32. !BR2_PACKAGE_HAS_LIBGL