summaryrefslogtreecommitdiffstats
path: root/package/python-msgpack
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-02 16:31:31 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-06 11:16:00 +0100
commitb53a2ac54b8158fcea7c1e7377d24ea1b7769615 (patch)
treeced126b30ed9f45a17331fc624d421d4cb4ee421 /package/python-msgpack
parent8a98a7d94caf3480b07d188973c367c97430f6ce (diff)
downloadbuildroot-b53a2ac54b8158fcea7c1e7377d24ea1b7769615.tar.gz
buildroot-b53a2ac54b8158fcea7c1e7377d24ea1b7769615.zip
msgpack: rework BR2_ARCH_HAS_ATOMICS dependency
The msgpack source code indeed checks for the 4 bytes __sync built-in, so this commit switches the package from a BR2_ARCH_HAS_ATOMICS dependency to a BR2_TOOLCHAIN_HAS_SYNC_4 dependency. python-msgpack, a reverse dependency of msgpack, is changed in the same way. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'package/python-msgpack')
-rw-r--r--package/python-msgpack/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/python-msgpack/Config.in b/package/python-msgpack/Config.in
index e740835090..7206c22710 100644
--- a/package/python-msgpack/Config.in
+++ b/package/python-msgpack/Config.in
@@ -2,7 +2,7 @@ config BR2_PACKAGE_PYTHON_MSGPACK
bool "python-msgpack"
select BR2_PACKAGE_MSGPACK
depends on BR2_INSTALL_LIBSTDCPP # msgpack
- depends on BR2_ARCH_HAS_ATOMICS # msgpack
+ depends on BR2_TOOLCHAIN_HAS_SYNC_4 # msgpack
help
MessagePack (http://msgpack.org/) is a fast, compact binary
serialization format, suitable for similar data to JSON.
@@ -12,6 +12,6 @@ config BR2_PACKAGE_PYTHON_MSGPACK
https://pypi.python.org/pypi/msgpack-python/
comment "python-msgpack needs a toolchain w/ C++"
- depends on BR2_ARCH_HAS_ATOMICS
+ depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on BR2_PACKAGE_PYTHON
depends on !BR2_INSTALL_LIBSTDCPP
OpenPOWER on IntegriCloud