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