diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2014-04-16 12:25:16 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-16 19:10:01 +0200 |
commit | e4d72729f81d617e69820f69e325f95108cd3e3f (patch) | |
tree | e2780b6900e8639adb49296b530e8034efe36f7d /package/agentpp/Config.in | |
parent | 15c5284d98168b9ccd3ff8cf9ba6ec82af75ac67 (diff) | |
download | buildroot-e4d72729f81d617e69820f69e325f95108cd3e3f.tar.gz buildroot-e4d72729f81d617e69820f69e325f95108cd3e3f.zip |
agent++: need dynamic library support
Required by SNMP++.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/agentpp/Config.in')
-rw-r--r-- | package/agentpp/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/agentpp/Config.in b/package/agentpp/Config.in index 1442a45758..8fd6c0d507 100644 --- a/package/agentpp/Config.in +++ b/package/agentpp/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_AGENTPP select BR2_PACKAGE_SNMPPP depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS # snmp++ + depends on !BR2_PREFER_STATIC_LIB # snmp++ help AGENT++ is a set of C++ classes which provides a complete protocol engine and dispatch table for the development of SNMP agents. @@ -16,5 +17,6 @@ config BR2_PACKAGE_AGENTPP http://www.agentpp.com/agentpp3_5/agentpp3_5.html -comment "agent++ needs a toolchain w/ threads, C++" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS +comment "agent++ needs a toolchain w/ threads, C++, dynamic library" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ + BR2_PREFER_STATIC_LIB |