edid-decode: new package
[buildroot-gz.git] / package / zmqpp / Config.in
blob03792240d7f02365df3ee603049788452bf73bd0
1 config BR2_PACKAGE_ZMQPP
2         bool "zmqpp"
3         # c++0x support
4         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
5         depends on BR2_INSTALL_LIBSTDCPP
6         depends on BR2_USE_WCHAR # util-linux
7         depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
8         select BR2_PACKAGE_ZEROMQ
9         help
10           C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
12           This C++ binding is a 'high-level' library that hides most of the
13           C-style interface core zeromq provides.
15           http://github.com/benjamg/zmqpp
17 comment "zmqpp needs a toolchain w/ C++, wchar, threads, gcc >= 4.6"
18         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
19                 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
21 if BR2_PACKAGE_ZMQPP
23 config BR2_PACKAGE_ZMQPP_CLIENT
24         bool "zmqpp client"
25         depends on !BR2_STATIC_LIBS
26         depends on BR2_TOOLCHAIN_HAS_THREADS # boost
27         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
28         select BR2_PACKAGE_BOOST
29         select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
30         help
31           Build and install the zmqpp client, a command line tool that can be
32           used to listen or send to zeromq sockets.
34 comment "zmqpp client needs a toolchain w/ dynamic library, threads"
35         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
36         depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
38 endif