summaryrefslogtreecommitdiff
path: root/package/autofs
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2015-12-28 13:18:16 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-12-28 17:43:57 +0100
commit5f342712459ee5abf55e447231da3f17379844ce (patch)
treee227276333236595ed32c0decc4f12b50bb7bb8f /package/autofs
parentaf6148e53d9a37823ab9a5cace3c27bfcd3947c9 (diff)
autofs: not available on static
Uses dlfcn & friends, fixes: http://autobuild.buildroot.net/results/2f2/2f2dcf8d2af961c0401a4b39f96cefe691a4479b/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/autofs')
-rw-r--r--package/autofs/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/autofs/Config.in b/package/autofs/Config.in
index 2933740ca..dbe667442 100644
--- a/package/autofs/Config.in
+++ b/package/autofs/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_AUTOFS
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC
+ depends on !BR2_STATIC_LIBS # dlfcn
help
Autofs controls the operation of the automount daemons. The
automount daemons automatically mount filesystems when they
@@ -14,6 +15,7 @@ config BR2_PACKAGE_AUTOFS
http://www.linuxfromscratch.org/blfs/view/svn/general/autofs.html
-comment "autofs needs a toolchain w/ threads, RPC"
+comment "autofs needs a toolchain w/ threads, RPC, dynamic library"
depends on BR2_USE_MMU
- depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_NATIVE_RPC
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
+ !BR2_TOOLCHAIN_HAS_NATIVE_RPC