summaryrefslogtreecommitdiff
path: root/package/pppd
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-09-30 17:18:47 +0800
committerPeter Korsgaard <peter@korsgaard.com>2013-10-01 21:37:21 +0200
commit4cfb3fc26723211c16dd2793295d6674858ca4e3 (patch)
tree58e9a59a0399d6407f5ec4109c60074aa3e2ab72 /package/pppd
parent7a8be43c338a547ae0af02c409e492970a65c083 (diff)
pppd: needs mmu and shared objects
The plugin infrastructure is based on shared objects so it won't build for static-only scenarios. And the daemon uses fork() so MMU is required. [Peter: move below suboptions] Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/pppd')
-rw-r--r--package/pppd/Config.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/pppd/Config.in b/package/pppd/Config.in
index 879b263cf..ba35fed20 100644
--- a/package/pppd/Config.in
+++ b/package/pppd/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_PPPD
bool "pppd"
+ depends on !BR2_PREFER_STATIC_LIB
+ depends on BR2_USE_MMU
help
An implementation of the Point-to-point protocol.
@@ -19,3 +21,7 @@ config BR2_PACKAGE_PPPD_RADIUS
bool "radius"
help
Install RADIUS support for pppd
+
+comment "pppd requires a toolchain with dynamic library support"
+ depends on BR2_PREFER_STATIC_LIB
+ depends on BR2_USE_MMU