mirror of
https://github.com/nginx/nginx.git
synced 2024-12-01 03:17:17 +08:00
c0edbcce58
*) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS options in configure. *) Feature: the server_name directive supports *.domain.tld. *) Bugfix: the portability improvements. *) Bugfix: if configuration file was set in command line, the reconfiguration was impossible; the bug had appeared in 0.1.1. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used. *) Bugfix: with sendfile the response was not recoded according to the charset module directives; the bug had appeared in 0.1.1. *) Bugfix: very seldom bug in the kqueue processing. *) Bugfix: the gzip module compressed the proxied responses that was already compressed.
63 lines
909 B
Plaintext
63 lines
909 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
NGX_MAKEFILE=$NGX_OBJS/Makefile
|
|
NGX_MODULES_C=$NGX_OBJS/ngx_modules.c
|
|
|
|
NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h
|
|
NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h
|
|
|
|
NGX_AUTOTEST=$NGX_OBJS/autotest
|
|
NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err
|
|
|
|
# STUBs
|
|
OBJS=$NGX_OBJS
|
|
NGX_ERR=$OBJS/autoconf.err
|
|
MAKEFILE=$OBJS/Makefile
|
|
|
|
|
|
NGX_PCH=
|
|
NGX_USE_PCH=
|
|
|
|
|
|
# check the echo's "-n" option and "\c" capability
|
|
|
|
if echo "test\c" | grep c >/dev/null; then
|
|
|
|
if echo -n test | grep n >/dev/null; then
|
|
ngx_n=
|
|
ngx_c=
|
|
|
|
else
|
|
ngx_n=-n
|
|
ngx_c=
|
|
fi
|
|
|
|
else
|
|
ngx_n=
|
|
ngx_c='\c'
|
|
fi
|
|
|
|
|
|
# create Makefile
|
|
|
|
cat << END > Makefile
|
|
|
|
build:
|
|
\$(MAKE) -f $NGX_MAKEFILE
|
|
|
|
install:
|
|
\$(MAKE) -f $NGX_MAKEFILE install
|
|
|
|
clean:
|
|
rm -rf Makefile $NGX_OBJS
|
|
|
|
upgrade:
|
|
$SBIN_PATH -t
|
|
kill -USR2 \`cat $PID_PATH\`
|
|
sleep 1
|
|
test -f $PID_PATH.newbin
|
|
kill -WINCH \`cat $PID_PATH\`
|
|
END
|