|
@@ -1,8 +1,10 @@
|
|
|
config BR2_PACKAGE_TIO
|
|
|
bool "tio"
|
|
|
- depends on !BR2_sparc64 && !BR2_sparc
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
- select BR2_PACKAGE_INIH
|
|
|
+ depends on BR2_USE_MMU # glib2
|
|
|
+ depends on BR2_USE_WCHAR # glib2
|
|
|
+ depends on BR2_PACKAGE_HAS_LUAINTERPRETER
|
|
|
+ depends on !BR2_PACKAGE_LUAJIT
|
|
|
help
|
|
|
"tio" is a simple TTY terminal application which features a
|
|
|
straightforward commandline interface to easily connect to
|
|
@@ -10,12 +12,13 @@ config BR2_PACKAGE_TIO
|
|
|
|
|
|
https://tio.github.io/
|
|
|
|
|
|
-# tio is disabled for sparc and sparc64 architectures because it fails
|
|
|
-# to build with a redefinition of 'struct termio' error, with no proper
|
|
|
-# fix or workaround for now
|
|
|
-comment "tio is disabled for sparc and sparc64 architectures"
|
|
|
- depends on BR2_sparc64 || BR2_sparc
|
|
|
-
|
|
|
-comment "tio needs a toolchain w/ threads"
|
|
|
+comment "tio needs a toolchain w/ threads, wchar"
|
|
|
+ depends on BR2_USE_MMU
|
|
|
depends on !BR2_sparc64 && !BR2_sparc
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
|
|
+
|
|
|
+comment "tio needs lua (but not luajit)"
|
|
|
+ depends on BR2_USE_MMU
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on BR2_USE_WCHAR
|
|
|
+ depends on !BR2_PACKAGE_HAS_LUAINTERPRETER || BR2_PACKAGE_LUAJIT
|