Config.in 649 B

123456789101112131415161718
  1. config BR2_PACKAGE_PYTHON_PYZMQ
  2. bool "python-pyzmq"
  3. depends on BR2_LARGEFILE # zeromq
  4. depends on BR2_INET_IPV6 # zeromq
  5. depends on BR2_USE_WCHAR # zeromq
  6. depends on BR2_INSTALL_LIBSTDCPP # zeromq
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
  8. depends on BR2_PACKAGE_PYTHON
  9. select BR2_PACKAGE_ZEROMQ
  10. help
  11. This package contains the python language binding for zeromq.
  12. http://zeromq.org/bindings:python
  13. comment "python-pyzmq needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
  14. depends on BR2_PACKAGE_PYTHON
  15. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
  16. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)