diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-08-31 11:32:23 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2009-08-31 11:32:23 +0000 |
commit | 65393e7df3390a8694855748788ffabd4572939b (patch) | |
tree | 2b46cf28ba85a28be96e0ad13e362dcadd7f4e0c /auto | |
parent | 802fd20929172c84d0fae425d432cb4113b61708 (diff) | |
download | nginx-65393e7df3390a8694855748788ffabd4572939b.tar.gz |
Changes with nginx 0.8.12 31 Aug 2009v0.8.12
*) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD.
*) Bugfix: in try_files; the bug had appeared in 0.8.11.
*) Bugfix: in memcached; the bug had appeared in 0.8.11.
Diffstat (limited to 'auto')
-rw-r--r-- | auto/os/freebsd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/auto/os/freebsd b/auto/os/freebsd index 596aaa067..20985294f 100644 --- a/auto/os/freebsd +++ b/auto/os/freebsd @@ -43,6 +43,12 @@ if [ $osreldate -gt 300007 ]; then CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS" fi +if [ $osreldate -gt 502103 ]; then + echo " + sendfile()'s SF_NODISKIO found" + + have=NGX_HAVE_AIO_SENDFILE . auto/have +fi + # kqueue |