]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/circus/Config.in
lrzsz: install symlinks for XMODEM and YMODEM
[coffee/buildroot.git] / package / circus / Config.in
1 config BR2_PACKAGE_CIRCUS
2         bool "circus"
3         depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
4         depends on BR2_INSTALL_LIBSTDCPP # pyzmq -> zeromq
5         depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # pyzmq -> zeromq
6         select BR2_PACKAGE_PYTHON_IOWAIT # runtime
7         select BR2_PACKAGE_PYTHON_PSUTIL # runtime
8         select BR2_PACKAGE_PYTHON_PYZMQ # runtime
9         select BR2_PACKAGE_PYTHON_TORNADO # runtime
10         select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
11         help
12           Circus is a program that will let you run and watch multiple
13           processes and sockets.
14
15           https://circus.readthedocs.org/en/latest/
16
17 comment "circus needs Python and a toolchain w/ C++, NPTL"
18         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
19                 !(BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3)