nginx-quic/auto/init

28 lines
427 B
Text
Raw Normal View History

2003-11-25 17:44:56 -03:00
MAKEFILE=$OBJS/Makefile
NGX_AUTO_CONFIG_H=$OBJS/ngx_auto_config.h
NGX_MODULES_C=$OBJS/ngx_modules.c
2003-12-14 17:10:27 -03:00
NGX_AUTOTEST=$OBJS/autotest
NGX_ERR=$OBJS/autoconf.err
2004-02-03 17:27:11 -03:00
2004-02-09 13:30:01 -03:00
CC_WARN=$CC
2004-02-03 17:27:11 -03: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