From: Axel Lin Date: Mon, 30 Sep 2013 09:18:47 +0000 (+0800) Subject: pppd: needs mmu and shared objects X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4cfb3fc26723211c16dd2793295d6674858ca4e3;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/pppd/Config.in b/package/pppd/Config.in index 879b263cf3..ba35fed20c 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