diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-10-05 17:07:09 +0800 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-05 21:11:29 +0200 |
commit | f1b0e95a245aaa5fe6efe9cd6b9ae6a0fe48c4b1 (patch) | |
tree | 30d378fbb5bf91af9782a23cdbcd3e640a2b3e91 | |
parent | 3fef1e5d5df8f2410a4f6250c4b6854871480233 (diff) | |
download | buildroot-f1b0e95a245aaa5fe6efe9cd6b9ae6a0fe48c4b1.tar.gz buildroot-f1b0e95a245aaa5fe6efe9cd6b9ae6a0fe48c4b1.zip |
ndisc6: needs mmu
Fix below build error if !BR2_USE_MMU:
tcpspray.o: In function `tcpspray':
tcpspray.c:(.text+0x4a8): undefined reference to `fork'
collect2: ld returned 1 exit status
make[3]: *** [tcpspray] Error 1
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ndisc6/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/ndisc6/Config.in b/package/ndisc6/Config.in index 6abe4ce2ea..095b2e8174 100644 --- a/package/ndisc6/Config.in +++ b/package/ndisc6/Config.in @@ -4,6 +4,7 @@ comment "ndisc6 requires a toolchain with IPv6 support" config BR2_PACKAGE_NDISC6 bool "ndisc6 tools" depends on BR2_INET_IPV6 + depends on BR2_USE_MMU # fork() select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help NDisc6 is a small collection of useful tools for IPv6 networking |