Config.in 631 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. 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 requires a toolchain with C++, IPV6, LARGEFILE, WCHAR & thread support"
  14. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
  15. && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)