diff options
author | Yuvaraj Patil <yuvaraj.patil@wipro.com> | 2014-10-10 10:40:03 +0530 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-10 08:44:56 +0200 |
commit | c9737ee7f8010e5fa9ba8b6e8c849e0ef6c4d371 (patch) | |
tree | 13a95009f2938d9895baa7ea7771a7ab7417a0b7 | |
parent | 884b84e2ee245e425ad8e71118fdeeb48abe3690 (diff) | |
download | buildroot-c9737ee7f8010e5fa9ba8b6e8c849e0ef6c4d371.tar.gz buildroot-c9737ee7f8010e5fa9ba8b6e8c849e0ef6c4d371.zip |
nginx: Depends on MMU
This package needs MMU. Hence added dependency on BR2_USE_MMU
Fixes:
http://autobuild.buildroot.net/results/224/2240f11fc52e07ff64913844078e2616842a63dc//
[Peter: also add dependency to menuconfig option]
Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/nginx/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/nginx/Config.in b/package/nginx/Config.in index da9fd018f0..30cc9d2d13 100644 --- a/package/nginx/Config.in +++ b/package/nginx/Config.in @@ -1,9 +1,11 @@ comment "nginx needs a toolchain w/ largefile" depends on !BR2_LARGEFILE + depends on BR2_USE_MMU # fork() menuconfig BR2_PACKAGE_NGINX bool "nginx" depends on BR2_LARGEFILE + depends on BR2_USE_MMU # fork() help nginx is an HTTP and reverse proxy server, as well as a mail proxy server. |