comparison auto/init @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children cc9f381affaa
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 # Copyright (C) Igor Sysoev
3
4
5 MAKEFILE=$OBJS/Makefile
6
7 NGX_AUTO_CONFIG_H=$OBJS/ngx_auto_config.h
8 NGX_MODULES_C=$OBJS/ngx_modules.c
9
10 NGX_AUTOTEST=$OBJS/autotest
11 NGX_ERR=$OBJS/autoconf.err
12
13 CC_WARN=$CC
14
15 PCH=NO
16 USEPCH=
17
18 OBJEXT=
19 BINEXT=
20 DIRSEP='\/'
21 MAKE_SL=NO
22
23
24 # checking echo's "-n" option and "\c" capabilties
25
26 if echo "test\c" | grep c >/dev/null; then
27 if echo -n test | grep n >/dev/null; then
28 ngx_n=
29 ngx_c=
30 else
31 ngx_n=-n
32 ngx_c=
33 fi
34
35 else
36 ngx_n=
37 ngx_c='\c'
38 fi