diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-12 18:58:37 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-12 19:25:05 +0200 |
commit | d6d8bac0963d2596f8c291c234922f8d28436a25 (patch) | |
tree | 1df6130ee9686b194055d7d21e22d69ef3a978e3 | |
parent | 962e08e89b161f8bee6bd45cab56e32c90521af5 (diff) | |
download | buildroot-d6d8bac0963d2596f8c291c234922f8d28436a25.tar.gz buildroot-d6d8bac0963d2596f8c291c234922f8d28436a25.zip |
nginx: disallow AIO support on AArch64
The nginx AIO support cannot build on AArch64, because it hardcodes
the usage of SYS_eventfd(), while it should just use eventfd() from
the C library.
See https://bugs.launchpad.net/linaro-aarch64/+bug/1160013 for details.
Fixes:
http://autobuild.buildroot.org/results/54b/54bb761f9e774d91066b78217efcd583fdd85ff3/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/nginx/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/nginx/Config.in b/package/nginx/Config.in index 30cc9d2d13..ddab0caf2c 100644 --- a/package/nginx/Config.in +++ b/package/nginx/Config.in @@ -16,6 +16,10 @@ if BR2_PACKAGE_NGINX config BR2_PACKAGE_NGINX_FILE_AIO bool "file AIO support" + # Does not build, because nginx hardcodes using SYS_eventfd, + # but it's not available on AArch64, only eventfd() is. + # See https://bugs.launchpad.net/linaro-aarch64/+bug/1160013 + depends on !BR2_aarch64 config BR2_PACKAGE_NGINX_HTTP bool "http server" |