nginx/auto/init

37 lines
496 B
Plaintext
Raw Normal View History

2003-11-25 14:44:56 -06:00
MAKEFILE=$OBJS/Makefile
NGX_AUTO_CONFIG_H=$OBJS/ngx_auto_config.h
NGX_MODULES_C=$OBJS/ngx_modules.c
2003-12-14 14:10:27 -06:00
NGX_AUTOTEST=$OBJS/autotest
NGX_ERR=$OBJS/autoconf.err
2004-02-03 14:27:11 -06:00
2004-02-09 10:30:01 -06:00
CC_WARN=$CC
2004-03-09 13:47:07 -06:00
PCH=NO
USEPCH=
2004-02-03 14:27:11 -06:00
2004-03-09 13:47:07 -06:00
BINEXT=
2004-03-05 02:34:24 -06:00
INC_EQ=NO
MAKE_BS=NO
MAKE_SL=NO
MAKE_BL=YES
2004-02-03 14:27:11 -06:00
# checking echo's "-n" option and "\c" capabilties
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