diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2018-05-05 18:05:31 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-06-30 18:36:49 +0200 |
commit | 35c3f7d3ab453b5d36683f018a83e7745e2142ba (patch) | |
tree | 46f5236fa9adc5cda0ded3d07ea5ce24de98b6c8 /package/python-pyzmq/Config.in | |
parent | 037b8616257067282e375edca9af19418a0e7a4a (diff) | |
download | buildroot-35c3f7d3ab453b5d36683f018a83e7745e2142ba.tar.gz buildroot-35c3f7d3ab453b5d36683f018a83e7745e2142ba.zip |
Revert "zeromq: needs NPTL"
This reverts commit 1e2a8d4111f57e79c1848c7a70c6501e2bdacd58.
Since version 1.0.30, uClibc-ng release supports the missing functions
even for Linuxthreads, therefore the dependency on NPTL is no longer
needed.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/python-pyzmq/Config.in')
-rw-r--r-- | package/python-pyzmq/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/python-pyzmq/Config.in b/package/python-pyzmq/Config.in index 2501912519..8f33a635c8 100644 --- a/package/python-pyzmq/Config.in +++ b/package/python-pyzmq/Config.in @@ -1,13 +1,13 @@ config BR2_PACKAGE_PYTHON_PYZMQ bool "python-pyzmq" depends on BR2_INSTALL_LIBSTDCPP # zeromq - depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # zeromq + depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq select BR2_PACKAGE_ZEROMQ help This package contains the python language binding for zeromq. http://zeromq.org/bindings:python -comment "python-pyzmq needs a toolchain w/ C++, NPTL" +comment "python-pyzmq needs a toolchain w/ C++, threads" depends on BR2_PACKAGE_PYTHON - depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS_NPTL) + depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS) |