mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
python-crossbar: propagate missing dependencies
python-crossbar selects python-msgpack which selects msgpack, which depends on C++ and 4-byte __sync intrinsics. But python-crossbar does not have the dependencies propagated. Fixes: http://autobuild.buildroot.org/results/80f58b7264139dd82c690cb8aae97349aa412539/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
929d91edee
commit
b5ac4b329f
@ -29,9 +29,15 @@ config BR2_PACKAGE_PYTHON_CROSSBAR
|
|||||||
select BR2_PACKAGE_PYTHON_TWISTED
|
select BR2_PACKAGE_PYTHON_TWISTED
|
||||||
select BR2_PACKAGE_PYTHON_UJSON
|
select BR2_PACKAGE_PYTHON_UJSON
|
||||||
select BR2_PACKAGE_PYTHON_WSACCEL
|
select BR2_PACKAGE_PYTHON_WSACCEL
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP # python-msgpack -> msgpack
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # python-msgpack -> msgpack
|
||||||
help
|
help
|
||||||
Crossbar.io is an open-source WAMP application router that
|
Crossbar.io is an open-source WAMP application router that
|
||||||
allows to build advanced applications from loosely-coupled
|
allows to build advanced applications from loosely-coupled
|
||||||
components that can talk in real-time with each other.
|
components that can talk in real-time with each other.
|
||||||
|
|
||||||
https://pypi.python.org/pypi/crossbar
|
https://pypi.python.org/pypi/crossbar
|
||||||
|
|
||||||
|
comment "python-crossbar needs a toolchain w/ C++"
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user