Config.in 497 B

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