[autobuild] remove obsolete warning about mmap use

lighttpd protects against SIGBUS when accessing mmap'd files
This commit is contained in:
Glenn Strauss 2017-10-28 23:02:32 -04:00
parent f394207d5f
commit caab4cdf8a
1 changed files with 3 additions and 4 deletions

View File

@ -1184,14 +1184,13 @@ if test "$ipv6" = true; then
fi
fi
# disable mmap by default; if a mmapped file gets truncated, the process gets a SIGBUS signal
# on reading the truncated area which we can't handle (yet).
# disable mmap by default
# lighttpd may always use mmap with files it owns (created tmp files)
AC_MSG_NOTICE([----------------------------------------])
AC_MSG_CHECKING([use mmap if available (dangerous)])
AC_MSG_CHECKING([use mmap if available])
AC_ARG_ENABLE([mmap],
[AC_HELP_STRING([--enable-mmap],
[use mmap if available (DANGEROUS, allows local users to trigger SIGBUS crashes)]
[use mmap if available]
)],
[
case "${enableval}" in