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
|
2012-01-18 09:07:43 -06:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-09-29 11:00:49 -05:00
|
|
|
|
|
|
|
|
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-11-20 13:52:20 -06:00
|
|
|
echo > $NGX_AUTOCONF_ERR
|
|
|
|
|
2006-12-23 13:54:21 -06:00
|
|
|
echo "#define NGX_CONFIGURE \"$NGX_CONFIGURE\"" > $NGX_AUTO_CONFIG_H
|
|
|
|
|
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";
|
|
|
|
|
2009-05-10 14:49:14 -05:00
|
|
|
case "$NGX_SYSTEM" in
|
|
|
|
MINGW32_*)
|
|
|
|
NGX_PLATFORM=win32
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-10-19 07:33:58 -05:00
|
|
|
else
|
|
|
|
echo "building for $NGX_PLATFORM"
|
2006-12-23 14:31:14 -06:00
|
|
|
NGX_SYSTEM=$NGX_PLATFORM
|
2005-10-19 07:33:58 -05:00
|
|
|
fi
|
|
|
|
|
2006-12-23 14:31:14 -06:00
|
|
|
. auto/cc/conf
|
2005-10-19 07:33:58 -05:00
|
|
|
|
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-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
|
2011-05-31 03:17:27 -05:00
|
|
|
. auto/unix
|
2004-02-23 14:57:12 -06:00
|
|
|
fi
|
|
|
|
|
2004-10-25 10:29:23 -05:00
|
|
|
. auto/modules
|
|
|
|
. auto/lib/conf
|
|
|
|
|
2009-04-27 06:32:33 -05:00
|
|
|
case ".$NGX_PREFIX" in
|
|
|
|
.)
|
|
|
|
NGX_PREFIX=${NGX_PREFIX:-/usr/local/nginx}
|
|
|
|
have=NGX_PREFIX value="\"$NGX_PREFIX/\"" . auto/define
|
|
|
|
;;
|
|
|
|
|
|
|
|
.!)
|
|
|
|
NGX_PREFIX=
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
have=NGX_PREFIX value="\"$NGX_PREFIX/\"" . auto/define
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ ".$NGX_CONF_PREFIX" != "." ]; then
|
|
|
|
have=NGX_CONF_PREFIX value="\"$NGX_CONF_PREFIX/\"" . auto/define
|
2003-11-25 14:44:56 -06:00
|
|
|
fi
|
2003-12-14 14:10:27 -06:00
|
|
|
|
2004-11-25 10:17:31 -06:00
|
|
|
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
|
2009-04-23 06:13:12 -05:00
|
|
|
have=NGX_ERROR_LOG_PATH value="\"$NGX_ERROR_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
|
|
|
|
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
|
2010-06-01 12:44:51 -05:00
|
|
|
have=NGX_HTTP_UWSGI_TEMP_PATH value="\"$NGX_HTTP_UWSGI_TEMP_PATH\""
|
|
|
|
. auto/define
|
2010-06-18 10:51:14 -05:00
|
|
|
have=NGX_HTTP_SCGI_TEMP_PATH value="\"$NGX_HTTP_SCGI_TEMP_PATH\""
|
|
|
|
. auto/define
|
2004-05-18 15:28:54 -05:00
|
|
|
|
2009-04-27 06:32:33 -05:00
|
|
|
. auto/make
|
|
|
|
. auto/lib/make
|
|
|
|
. auto/install
|
|
|
|
|
|
|
|
# STUB
|
|
|
|
. auto/stubs
|
|
|
|
|
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
|