nginx/auto/init

39 lines
513 B
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
# Copyright (C) Igor Sysoev
2003-11-26 04:44:56 +08:00
MAKEFILE=$OBJS/Makefile
NGX_AUTO_CONFIG_H=$OBJS/ngx_auto_config.h
NGX_MODULES_C=$OBJS/ngx_modules.c
2003-12-15 04:10:27 +08:00
NGX_AUTOTEST=$OBJS/autotest
NGX_ERR=$OBJS/autoconf.err
2004-02-04 04:27:11 +08:00
2004-02-10 00:30:01 +08:00
CC_WARN=$CC
2004-03-10 03:47:07 +08:00
PCH=NO
USEPCH=
2004-02-04 04:27:11 +08:00
2004-03-30 01:43:58 +08:00
OBJEXT=
2004-03-10 03:47:07 +08:00
BINEXT=
2004-03-30 01:43:58 +08:00
DIRSEP='\/'
2004-03-05 16:34:24 +08:00
MAKE_SL=NO
2004-02-04 04:27:11 +08: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