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/solaris | |
parent | 865a7de474a13c5f1202f97fac31565f33a5e1a1 (diff) | |
download | nginx-release-0.1.9.tar.gz nginx-release-0.1.9.zip |
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/solaris')
-rw-r--r-- | auto/os/solaris | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/auto/os/solaris b/auto/os/solaris index 62708cd10..723ad84c3 100644 --- a/auto/os/solaris +++ b/auto/os/solaris @@ -23,7 +23,7 @@ ngx_spacer= CC_AUX_FLAGS="-D_FILE_OFFSET_BITS=64 -lrt" -case $PLATFORM in +case $NGX_PLATFORM in *:sun4u) # "-mcpu=v9" enables the "casa" assembler instruction @@ -43,7 +43,7 @@ fi ngx_feature="sendfilev()" -ngx_feature_name="sendfile" +ngx_feature_name="NGX_HAVE_SENDFILE" ngx_feature_run=no ngx_feature_incs="#include <sys/sendfile.h>" ngx_feature_libs="-lsendfile" @@ -54,7 +54,6 @@ ngx_feature_test="int fd = 1; sendfilevec_t vec[1]; if [ $ngx_found = yes ]; then - have=HAVE_SENDFILE . auto/have CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS" CORE_LIBS="$CORE_LIBS -lsendfile" fi |