Config.in 618 B

1234567891011121314151617
  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. select BR2_PACKAGE_ZEROMQ
  9. help
  10. This package contains the python language binding for zeromq.
  11. http://zeromq.org/bindings:python
  12. comment "python-pyzmq needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
  13. depends on BR2_PACKAGE_PYTHON
  14. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
  15. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)