nginx/auto/init

70 lines
1.1 KiB
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
# Copyright (C) Igor Sysoev
NGX_MAKEFILE=$NGX_OBJS/Makefile
NGX_MODULES_C=$NGX_OBJS/ngx_modules.c
2003-11-26 04:44:56 +08:00
NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h
NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h
2003-11-26 04:44:56 +08:00
NGX_AUTOTEST=$NGX_OBJS/autotest
NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err
2004-02-04 04:27:11 +08:00
# STUBs
NGX_ERR=$NGX_OBJS/autoconf.err
MAKEFILE=$NGX_OBJS/Makefile
2004-02-10 00:30:01 +08:00
2004-02-04 04:27:11 +08:00
NGX_PCH=
NGX_USE_PCH=
2004-03-05 16:34:24 +08:00
# check the echo's "-n" option and "\c" capability
2004-02-04 04:27:11 +08:00
if echo "test\c" | grep c >/dev/null; then
2004-02-04 04:27:11 +08:00
if echo -n test | grep n >/dev/null; then
ngx_n=
ngx_c=
2004-02-04 04:27:11 +08:00
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:
$NGX_SBIN_PATH -t
# upgrade compatibility from 0.1.x to 0.2.x
cp $NGX_PID_PATH $NGX_PID_PATH.oldbin
kill -USR2 \`cat $NGX_PID_PATH\`
sleep 1
test -f $NGX_PID_PATH.oldbin
# upgrade compatibility from 0.1.x to 0.2.x
cp $NGX_PID_PATH $NGX_PID_PATH.newbin
kill -WINCH \`cat $NGX_PID_PATH.oldbin\`
END