2004-03-02 09:40:59 -06:00
|
|
|
#!/bin/sh
|
2003-11-20 01:05:50 -06:00
|
|
|
|
2004-09-29 11:00:49 -05:00
|
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
|
|
|
2003-11-25 14:44:56 -06:00
|
|
|
. auto/options
|
|
|
|
. auto/init
|
|
|
|
. auto/sources
|
2003-11-21 00:30:49 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
test -d $NGX_OBJS || mkdir $NGX_OBJS
|
2004-10-21 10:34:38 -05:00
|
|
|
|
|
|
|
echo > $NGX_AUTO_HEADERS_H
|
2004-02-02 15:19:52 -06:00
|
|
|
echo > $NGX_AUTO_CONFIG_H
|
2004-11-20 13:52:20 -06:00
|
|
|
echo > $NGX_AUTOCONF_ERR
|
|
|
|
|
2004-02-02 15:19:52 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
if [ $NGX_DEBUG = YES ]; then
|
2004-03-11 09:42:41 -06:00
|
|
|
have=NGX_DEBUG . auto/have
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2005-10-19 07:33:58 -05:00
|
|
|
if test -z "$NGX_PLATFORM"; then
|
|
|
|
echo "checking for OS"
|
|
|
|
|
|
|
|
NGX_SYSTEM=`uname -s 2>/dev/null`
|
|
|
|
NGX_RELEASE=`uname -r 2>/dev/null`
|
|
|
|
NGX_MACHINE=`uname -m 2>/dev/null`
|
|
|
|
|
|
|
|
echo " + $NGX_SYSTEM $NGX_RELEASE $NGX_MACHINE"
|
|
|
|
|
|
|
|
NGX_PLATFORM="$NGX_SYSTEM:$NGX_RELEASE:$NGX_MACHINE";
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "building for $NGX_PLATFORM"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2004-02-09 01:46:43 -06:00
|
|
|
. auto/headers
|
|
|
|
fi
|
|
|
|
|
2005-10-12 08:50:36 -05:00
|
|
|
. auto/cc/conf
|
2005-10-19 07:33:58 -05:00
|
|
|
. auto/os/conf
|
2004-02-02 15:19:52 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2005-05-19 08:25:22 -05:00
|
|
|
. auto/os/features
|
2004-02-23 14:57:12 -06:00
|
|
|
. auto/threads
|
|
|
|
fi
|
|
|
|
|
2004-10-25 10:29:23 -05:00
|
|
|
. auto/modules
|
|
|
|
. auto/lib/conf
|
|
|
|
|
2003-11-25 14:44:56 -06:00
|
|
|
. auto/make
|
|
|
|
. auto/lib/make
|
2004-09-27 11:03:21 -05:00
|
|
|
. auto/install
|
2003-11-20 11:36:43 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2003-11-25 14:44:56 -06:00
|
|
|
. auto/unix
|
|
|
|
fi
|
2003-12-14 14:10:27 -06:00
|
|
|
|
2004-10-21 10:34:38 -05:00
|
|
|
# STUB
|
|
|
|
. auto/stubs
|
2004-02-23 14:57:12 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
have=NGX_PREFIX value="\"$NGX_PREFIX/\"" . auto/define
|
|
|
|
have=NGX_SBIN_PATH value="\"$NGX_SBIN_PATH\"" . auto/define
|
|
|
|
have=NGX_CONF_PATH value="\"$NGX_CONF_PATH\"" . auto/define
|
|
|
|
have=NGX_PID_PATH value="\"$NGX_PID_PATH\"" . auto/define
|
2006-02-08 09:33:12 -06:00
|
|
|
have=NGX_LOCK_PATH value="\"$NGX_LOCK_PATH\"" . auto/define
|
2004-11-25 10:17:31 -06:00
|
|
|
if test -n "$NGX_ERROR_LOG_PATH"; then
|
|
|
|
have=NGX_ERROR_LOG_PATH value="\"$NGX_ERROR_LOG_PATH\"" . auto/define
|
2004-09-29 11:00:49 -05:00
|
|
|
fi
|
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 07:03:58 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
have=NGX_HTTP_LOG_PATH value="\"$NGX_HTTP_LOG_PATH\"" . auto/define
|
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 07:03:58 -06:00
|
|
|
have=NGX_HTTP_CLIENT_TEMP_PATH value="\"$NGX_HTTP_CLIENT_TEMP_PATH\""
|
|
|
|
. auto/define
|
|
|
|
have=NGX_HTTP_PROXY_TEMP_PATH value="\"$NGX_HTTP_PROXY_TEMP_PATH\""
|
|
|
|
. auto/define
|
|
|
|
have=NGX_HTTP_FASTCGI_TEMP_PATH value="\"$NGX_HTTP_FASTCGI_TEMP_PATH\""
|
|
|
|
. auto/define
|
2004-05-18 15:28:54 -05:00
|
|
|
|
2004-10-21 10:34:38 -05:00
|
|
|
have=NGX_USER value="\"$NGX_USER\"" . auto/define
|
|
|
|
have=NGX_GROUP value="\"$NGX_GROUP\"" . auto/define
|
|
|
|
|
2003-12-14 14:10:27 -06:00
|
|
|
. auto/summary
|