2004-03-02 04:00:04 +08:00
|
|
|
|
2004-09-30 00:00:49 +08:00
|
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
case "$NGX_CC_NAME" in
|
2004-03-10 03:47:07 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
msvc*)
|
|
|
|
ngx_makefile=makefile.msvc
|
|
|
|
ngx_opt="CPU_OPT=$CPU_OPT LIBC=$LIBC"
|
2004-03-30 01:43:58 +08:00
|
|
|
|
2004-03-10 03:47:07 +08:00
|
|
|
;;
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
owc*)
|
|
|
|
ngx_makefile=makefile.owc
|
|
|
|
ngx_opt="CPU_OPT=$CPU_OPT"
|
2004-03-30 01:43:58 +08:00
|
|
|
;;
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
bcc)
|
|
|
|
ngx_makefile=makefile.bcc
|
|
|
|
ngx_opt="-DCPU_OPT=$CPU_OPT"
|
2004-03-10 03:47:07 +08:00
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
2004-03-12 05:34:52 +08:00
|
|
|
done=NO
|
|
|
|
|
|
|
|
|
2005-02-22 22:40:13 +08:00
|
|
|
case "$NGX_PLATFORM" in
|
2004-03-10 03:47:07 +08:00
|
|
|
|
|
|
|
win32)
|
2004-11-21 03:52:20 +08:00
|
|
|
cp auto/lib/zlib/$ngx_makefile $ZLIB
|
|
|
|
|
|
|
|
cat << END >> $NGX_MAKEFILE
|
2004-03-10 03:47:07 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
`echo "$ZLIB/zlib.lib: $NGX_MAKEFILE" | sed -e "s/\//$ngx_regex_dirsep/g"`
|
|
|
|
cd `echo $ZLIB | sed -e "s/\//$ngx_regex_dirsep/g"`
|
|
|
|
\$(MAKE) -f $ngx_makefile $ngx_opt
|
|
|
|
cd ..\\..\\..
|
|
|
|
|
|
|
|
END
|
2004-03-12 05:34:52 +08:00
|
|
|
|
|
|
|
done=YES
|
2004-03-10 03:47:07 +08:00
|
|
|
;;
|
|
|
|
|
2004-03-13 00:57:08 +08:00
|
|
|
# FreeBSD: i386
|
|
|
|
# Linux: i686
|
2004-03-10 03:47:07 +08:00
|
|
|
|
2004-03-11 01:55:19 +08:00
|
|
|
*:i386 | *:i686)
|
2004-03-13 00:57:08 +08:00
|
|
|
case $ZLIB_ASM in
|
|
|
|
pentium)
|
2004-11-21 03:52:20 +08:00
|
|
|
|
|
|
|
cat << END >> $NGX_MAKEFILE
|
|
|
|
|
|
|
|
$ZLIB/libz.a: $NGX_MAKEFILE
|
|
|
|
cd $ZLIB \\
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
&& \$(MAKE) clean \\
|
2004-11-21 03:52:20 +08:00
|
|
|
&& cp contrib/asm586/match.S . \\
|
|
|
|
&& CFLAGS="$ZLIB_OPT -DASMV" CC="\$(CC)" \\
|
|
|
|
./configure \\
|
|
|
|
&& \$(MAKE) OBJA=match.o libz.a
|
|
|
|
|
|
|
|
END
|
2004-03-13 00:57:08 +08:00
|
|
|
|
|
|
|
done=YES
|
|
|
|
;;
|
|
|
|
|
|
|
|
pentiumpro)
|
2004-11-21 03:52:20 +08:00
|
|
|
|
|
|
|
cat << END >> $NGX_MAKEFILE
|
|
|
|
|
|
|
|
$ZLIB/libz.a: $NGX_MAKEFILE
|
|
|
|
cd $ZLIB \\
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
&& \$(MAKE) clean \\
|
2004-11-21 03:52:20 +08:00
|
|
|
&& cp contrib/asm686/match.S . \\
|
|
|
|
&& CFLAGS="$ZLIB_OPT -DASMV" CC="\$(CC)" \\
|
|
|
|
./configure \\
|
|
|
|
&& \$(MAKE) OBJA=match.o libz.a
|
|
|
|
|
|
|
|
END
|
2004-03-13 00:57:08 +08:00
|
|
|
|
|
|
|
done=YES
|
|
|
|
;;
|
2004-04-13 00:38:09 +08:00
|
|
|
|
2004-04-19 03:06:02 +08:00
|
|
|
NO)
|
|
|
|
;;
|
|
|
|
|
2004-04-13 00:38:09 +08:00
|
|
|
*)
|
2004-04-19 03:06:02 +08:00
|
|
|
echo "$0: error: invalid --with-zlib-asm=$ZLIB_ASM option."
|
2004-04-13 00:38:09 +08:00
|
|
|
echo "The valid values are \"pentium\" and \"pentiumpro\" only".
|
|
|
|
echo
|
|
|
|
|
|
|
|
exit 1;
|
|
|
|
;;
|
2004-03-13 00:57:08 +08:00
|
|
|
esac
|
2004-03-02 04:00:04 +08:00
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
2004-03-12 05:34:52 +08:00
|
|
|
|
|
|
|
if [ $done = NO ]; then
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
cat << END >> $NGX_MAKEFILE
|
|
|
|
|
|
|
|
$ZLIB/libz.a: $NGX_MAKEFILE
|
|
|
|
cd $ZLIB \\
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
&& \$(MAKE) clean \\
|
2004-11-21 03:52:20 +08:00
|
|
|
&& CFLAGS="$ZLIB_OPT" CC="\$(CC)" \\
|
|
|
|
./configure \\
|
|
|
|
&& \$(MAKE) libz.a
|
2004-03-12 05:34:52 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
END
|
|
|
|
|
|
|
|
fi
|