From: Axel Lin Date: Sat, 7 Sep 2013 06:07:23 +0000 (+0800) Subject: vsftpd: Fix dependency for needs mmu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cad4bd403bf672a55585cfb610abe7b19596003;p=buildroot.git vsftpd: Fix dependency for needs mmu Commit 2eb995759 "vsftpd: needs mmu" adds "depends on BR2_TOOLCHAIN_HAS_THREADS". The build error is: sysutil.c:(.text+0x37ac): undefined reference to `fork' Thus it should depend on BR2_USE_MMU rather than BR2_TOOLCHAIN_HAS_THREADS. Cc: Gustavo Zacarias Signed-off-by: Axel Lin Signed-off-by: Peter Korsgaard --- diff --git a/package/vsftpd/Config.in b/package/vsftpd/Config.in index 3d4cff1c07..54ef7bdc73 100644 --- a/package/vsftpd/Config.in +++ b/package/vsftpd/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_VSFTPD bool "vsftpd" - depends on BR2_TOOLCHAIN_HAS_THREADS # fork() + depends on BR2_USE_MMU # fork() help vsftpd is an ftp daemon written with security in mind. http://vsftpd.beasts.org/