0aaeda36447349865ae8d403abf1e6bb8ec6919d
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / zmqpp / Config.in
1 config BR2_PACKAGE_ZMQPP
2         bool "zmqpp"
3         depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 # Too old gcc
4         depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 # Too old gcc
5         depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 # Too old gcc
6         depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 # c++0x support
7         depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 # c++0x support
8         depends on BR2_INSTALL_LIBSTDCPP
9         depends on BR2_USE_WCHAR # util-linux
10         depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
11         select BR2_PACKAGE_ZEROMQ
12         help
13           C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
14
15           This C++ binding is a 'high-level' library that hides most of the
16           C-style interface core zeromq provides.
17
18           http://github.com/benjamg/zmqpp
19
20 comment "zmqpp needs a toolchain w/ C++, wchar, threads"
21         depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
22                 BR2_TOOLCHAIN_HAS_THREADS)
23
24 if BR2_PACKAGE_ZMQPP
25
26 config BR2_PACKAGE_ZMQPP_CLIENT
27         bool "zmqpp client"
28         depends on BR2_TOOLCHAIN_HAS_THREADS # boost
29         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
30         select BR2_PACKAGE_BOOST
31         select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
32         help
33           Build and install the zmqpp client, a command line tool that can be
34           used to listen or send to zeromq sockets.
35
36 comment "zmqpp client needs a toolchain w/ threads"
37         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
38         depends on !BR2_TOOLCHAIN_HAS_THREADS
39
40 endif