diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-05-22 14:26:29 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-25 23:27:18 +0200 |
commit | 1e87d4908cd3c53ddad0b2826f5fc7080064dd55 (patch) | |
tree | 35e2b9e3ab206156bf9d2227cd86520a900c734e | |
parent | 14572af6932ada3850ee19c299d1c5124410d5b5 (diff) | |
download | buildroot-1e87d4908cd3c53ddad0b2826f5fc7080064dd55.tar.gz buildroot-1e87d4908cd3c53ddad0b2826f5fc7080064dd55.zip |
package/tinc: needs libdl for OpenSSL support
Fixes
http://autobuild.buildroot.net/results/d5b/d5b2f905d8da79cebda1408ffceac6d4c99f9e7b/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/tinc/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/tinc/Config.in b/package/tinc/Config.in index 5390ff3394..1d8e2c4259 100644 --- a/package/tinc/Config.in +++ b/package/tinc/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_TINC select BR2_PACKAGE_LZO select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_ZLIB + depends on !BR2_STATIC_LIBS # tinc requires libdl for OpenSSL depends on BR2_USE_MMU # fork() help tinc is a Virtual Private Network (VPN) daemon that uses @@ -10,3 +11,6 @@ config BR2_PACKAGE_TINC between hosts on the Internet. http://www.tinc-vpn.org/ + +comment "tinc needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS |