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>
This commit is contained in:
Axel Lin 2013-09-30 17:18:47 +08:00 committed by Peter Korsgaard
parent 7a8be43c33
commit 4cfb3fc267
1 changed files with 6 additions and 0 deletions

View File

@ -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