2004-03-02 23:40:59 +08:00
|
|
|
#!/bin/sh
|
2003-11-20 15:05:50 +08:00
|
|
|
|
2004-09-30 00:00:49 +08:00
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-09-30 00:00:49 +08:00
|
|
|
|
|
|
|
|
2012-07-24 23:16:09 +08:00
|
|
|
LC_ALL=C
|
|
|
|
export LC_ALL
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
. auto/options
|
|
|
|
. auto/init
|
|
|
|
. auto/sources
|
2003-11-21 14:30:49 +08:00
|
|
|
|
2015-06-11 10:18:19 +08:00
|
|
|
test -d $NGX_OBJS || mkdir -p $NGX_OBJS
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
echo > $NGX_AUTO_HEADERS_H
|
2004-11-21 03:52:20 +08:00
|
|
|
echo > $NGX_AUTOCONF_ERR
|
|
|
|
|
2006-12-24 03:54:21 +08:00
|
|
|
echo "#define NGX_CONFIGURE \"$NGX_CONFIGURE\"" > $NGX_AUTO_CONFIG_H
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
if [ $NGX_DEBUG = YES ]; then
|
2004-03-11 23:42:41 +08:00
|
|
|
have=NGX_DEBUG . auto/have
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08: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-11 03:49:14 +08:00
|
|
|
case "$NGX_SYSTEM" in
|
2017-06-06 23:13:39 +08:00
|
|
|
MINGW32_* | MINGW64_* | MSYS_*)
|
2009-05-11 03:49:14 +08:00
|
|
|
NGX_PLATFORM=win32
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
else
|
|
|
|
echo "building for $NGX_PLATFORM"
|
2006-12-24 04:31:14 +08:00
|
|
|
NGX_SYSTEM=$NGX_PLATFORM
|
2023-02-23 23:15:59 +08:00
|
|
|
NGX_MACHINE=i386
|
2005-10-19 20:33:58 +08:00
|
|
|
fi
|
|
|
|
|
2006-12-24 04:31:14 +08:00
|
|
|
. auto/cc/conf
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2004-02-09 15:46:43 +08:00
|
|
|
. auto/headers
|
|
|
|
fi
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
. auto/os/conf
|
2004-02-03 05:19:52 +08:00
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2011-05-31 16:17:27 +08:00
|
|
|
. auto/unix
|
2004-02-24 04:57:12 +08:00
|
|
|
fi
|
|
|
|
|
2015-03-14 22:37:07 +08:00
|
|
|
. auto/threads
|
2004-10-25 23:29:23 +08:00
|
|
|
. auto/modules
|
|
|
|
. auto/lib/conf
|
|
|
|
|
2009-04-27 19:32:33 +08: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-26 04:44:56 +08:00
|
|
|
fi
|
2003-12-15 04:10:27 +08:00
|
|
|
|
2004-11-26 00:17:31 +08: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 23:33:12 +08:00
|
|
|
have=NGX_LOCK_PATH value="\"$NGX_LOCK_PATH\"" . auto/define
|
2009-04-23 19:13:12 +08: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 21:03:58 +08:00
|
|
|
|
2020-11-20 00:59:00 +08:00
|
|
|
if [ ".$NGX_ERROR_LOG_PATH" = "." ]; then
|
|
|
|
have=NGX_ERROR_LOG_STDERR . auto/have
|
|
|
|
fi
|
|
|
|
|
2004-11-26 00:17:31 +08: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 21:03:58 +08: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-02 01:44:51 +08:00
|
|
|
have=NGX_HTTP_UWSGI_TEMP_PATH value="\"$NGX_HTTP_UWSGI_TEMP_PATH\""
|
|
|
|
. auto/define
|
2010-06-18 23:51:14 +08:00
|
|
|
have=NGX_HTTP_SCGI_TEMP_PATH value="\"$NGX_HTTP_SCGI_TEMP_PATH\""
|
|
|
|
. auto/define
|
2004-05-19 04:28:54 +08:00
|
|
|
|
2009-04-27 19:32:33 +08:00
|
|
|
. auto/make
|
|
|
|
. auto/lib/make
|
|
|
|
. auto/install
|
|
|
|
|
|
|
|
# STUB
|
|
|
|
. auto/stubs
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
have=NGX_USER value="\"$NGX_USER\"" . auto/define
|
|
|
|
have=NGX_GROUP value="\"$NGX_GROUP\"" . auto/define
|
|
|
|
|
2014-05-20 20:10:07 +08:00
|
|
|
if [ ".$NGX_BUILD" != "." ]; then
|
|
|
|
have=NGX_BUILD value="\"$NGX_BUILD\"" . auto/define
|
|
|
|
fi
|
|
|
|
|
2003-12-15 04:10:27 +08:00
|
|
|
. auto/summary
|