summaryrefslogtreecommitdiffstats
path: root/package/zmqpp
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-08-05 11:07:39 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-08-05 12:11:20 +0200
commit7b69cc9f184806d4a62462095475f70bd05f286a (patch)
tree78758d857316b5119529511538e9807a03590fc1 /package/zmqpp
parent634b714d972590fe095736f5833e6671da8cf02b (diff)
downloadbuildroot-7b69cc9f184806d4a62462095475f70bd05f286a.tar.gz
buildroot-7b69cc9f184806d4a62462095475f70bd05f286a.zip
zmqpp: use more logical way of expressing comment dependencies
In most packages, we use 'depends on !A || !B || !C' and not 'depends on !(A && B && C)' to express the dependencies of comments on missing toolchain features. As suggested by Yann E. Morin, let's switch zmqpp to this convention. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/zmqpp')
-rw-r--r--package/zmqpp/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/zmqpp/Config.in b/package/zmqpp/Config.in
index 756c8101a3..a10602f283 100644
--- a/package/zmqpp/Config.in
+++ b/package/zmqpp/Config.in
@@ -15,8 +15,8 @@ config BR2_PACKAGE_ZMQPP
http://github.com/benjamg/zmqpp
comment "zmqpp needs a toolchain w/ C++, wchar, threads, gcc >= 4.6"
- depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
- BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_6)
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
+ !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
if BR2_PACKAGE_ZMQPP
OpenPOWER on IntegriCloud