From 4cfb3fc26723211c16dd2793295d6674858ca4e3 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Mon, 30 Sep 2013 17:18:47 +0800 Subject: [PATCH] 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 --- package/pppd/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.30.2