diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-10 09:40:37 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-07-10 16:59:40 +0200 |
commit | a27d7f2f6d21d0a4d6d43069a50ee57871c2f35f (patch) | |
tree | e516d6128281007744f6bff8b9eb1da0fea6c8c0 /package | |
parent | 7c84418e414b1c1645cd7c677e98649827daf9b1 (diff) | |
download | buildroot-a27d7f2f6d21d0a4d6d43069a50ee57871c2f35f.tar.gz buildroot-a27d7f2f6d21d0a4d6d43069a50ee57871c2f35f.zip |
inadyn: not available for static
inadyn isn't static-build friendly, even if we pull in the libz link
line for the failure stated below it'll fail when trying to link to
libdl and using dlopen for the plugins. Fixes:
http://autobuild.buildroot.net/results/1a1/1a1a184e8248e5c51fa730d0c9721fe67a9c84a4/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/inadyn/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/inadyn/Config.in b/package/inadyn/Config.in index a2dfa7419b..a43611105f 100644 --- a/package/inadyn/Config.in +++ b/package/inadyn/Config.in @@ -1,9 +1,13 @@ config BR2_PACKAGE_INADYN bool "inadyn" depends on BR2_USE_MMU # Uses fork() + depends on !BR2_PREFER_STATIC_LIB # dlopen() help INADYN is a free DynDNS client. It gives the possibility to have your own fixed hostname registered on the internet, although your IP might be changing. https://github.com/troglobit/inadyn + +comment "inadyn needs a toolchain w/ dynamic library" + depends on BR2_PREFER_STATIC_LIB |