diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-11-25 16:17:31 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-11-25 16:17:31 +0000 |
| commit | f69060481edeaca075669b50e34ca8ec821c2401 (patch) | |
| tree | 6fa6907cc2fdfe0ac6bcdf7f63e76a7f8b41f33f /auto/os/freebsd | |
| parent | 865a7de474a13c5f1202f97fac31565f33a5e1a1 (diff) | |
| download | nginx-release-0.1.9.tar.gz nginx-release-0.1.9.tar.bz2 | |
nginx-0.1.9-RELEASE importrelease-0.1.9
*) Bugfix: the proxied request was sent without arguments if the
request contains "//", "/./", "/../" or "%XX".
*) Bugfix: the large compressed responses may be transferred not
completely.
*) Bugfix: the files bigger than 2G was not transferred on Linux that
does not support sendfile64().
*) Bugfix: while the build configuration on Linux the
--with-poll_module parameter was required; the bug had appeared in
0.1.8.
Diffstat (limited to 'auto/os/freebsd')
| -rw-r--r-- | auto/os/freebsd | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/auto/os/freebsd b/auto/os/freebsd index ba2e18805..e35b933af 100644 --- a/auto/os/freebsd +++ b/auto/os/freebsd @@ -45,7 +45,7 @@ fi if [ $osreldate -gt 300007 ]; then echo " + using sendfile()" - have=HAVE_SENDFILE . auto/have + have=NGX_HAVE_SENDFILE . auto/have CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS" fi @@ -57,8 +57,8 @@ if [ \( $osreldate -lt 500000 -a $osreldate -ge 410000 \) \ then echo " + using kqueue" - have=HAVE_KQUEUE . auto/have - have=HAVE_CLEAR_EVENT . auto/have + have=NGX_HAVE_KQUEUE . auto/have + have=NGX_HAVE_CLEAR_EVENT . auto/have EVENT_MODULES="$EVENT_MODULES $KQUEUE_MODULE" CORE_SRCS="$CORE_SRCS $KQUEUE_SRCS" EVENT_FOUND=YES @@ -73,7 +73,7 @@ if [ \( $version -lt 500000 -a $version -ge 430000 \) \ -o $version -ge 500018 ] then echo " + using kqueue's NOTE_LOWAT" - have=HAVE_LOWAT_EVENT . auto/have + have=NGX_HAVE_LOWAT_EVENT . auto/have fi @@ -85,7 +85,7 @@ if [ $USE_THREADS = "rfork" ]; then # # if [ $version -gt 460101 ]; then # echo " + kqueue's EVFILT_SIGNAL is safe" -# have=HAVE_SAFE_EVFILT_SIGNAL . auto/have +# have=NGX_HAVE_SAFE_EVFILT_SIGNAL . auto/have # else # echo "$0: error: the kqueue's EVFILT_SIGNAL is unsafe on this" # echo "FreeBSD version, so --with-threads=rfork could not be used" @@ -100,7 +100,7 @@ if [ $EVENT_AIO = YES ]; then if [ \( $version -lt 500000 -a $version -ge 430000 \) \ -o $version -ge 500014 ] then - have=HAVE_AIO . auto/have + have=NGX_HAVE_AIO . auto/have EVENT_MODULES="$EVENT_MODULES $AIO_MODULE" CORE_SRCS="$CORE_SRCS $AIO_SRCS" else |
