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