comparison auto/configure @ 195:8dee38ea9117

nginx-0.0.1-2003-11-25-23:44:56 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Nov 2003 20:44:56 +0000
parents 2357fa41738a
children 00cafae0bdf1
comparison
equal deleted inserted replaced
194:2357fa41738a 195:8dee38ea9117
1 1
2 CC=cc 2 . auto/options
3 CC_STRONG="$CC -Wall -Werror" 3 . auto/init
4 CPP="$CC -E" 4 . auto/sources
5 5
6 NGX_AUTO_CONFIG_H=ngx_auto_config.h 6 . auto/os/conf
7
8 . auto/cc
9 . auto/lib/lib
10 . auto/make
11 . auto/lib/make
7 12
8 echo > $NGX_AUTO_CONFIG_H 13 echo > $NGX_AUTO_CONFIG_H
9 14
10 15 if [ "$PLATFORM" != win32 ]; then
11 CC_WARN=$CC_STRONG 16 . auto/unix
12 17 fi
13 NGX_FMT_NAME=OFF_FMT
14 NGX_TYPE="off_t"; . auto/types/sizeof
15 NGX_FORMATS="%ld %lld %qd"; . auto/fmt/fmt
16
17 NGX_FMT_NAME=TIME_FMT
18 NGX_TYPE="time_t"; . auto/types/sizeof
19 NGX_FORMATS="%d %ld %lld %qd"; . auto/fmt/fmt
20
21
22 CC_WARN=$CC
23
24 exit
25
26
27 NGX_TYPE="long"; . auto/types/sizeof; NGX_MAX_LONG=$NGX_MAX_SIZE
28 NGX_FORMATS="l"; . auto/fmt/fmt
29
30
31 NGX_TYPE="long long"; . auto/types/sizeof; NGX_MAX_LONG_LONG=$NGX_MAX_SIZE
32 NGX_FORMATS="ll q"; . auto/fmt/fmt
33
34
35 CC_WARN=$CC_STRONG
36
37 NGX_TYPE="off_t"; . auto/types/sizeof
38 NGX_FORMATS="l ll q"; . auto/fmt/fmt
39
40
41 CC_WARN=$CC
42
43 #NGX_TYPE="__int64_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT
44
45 #NGX_TYPE="time_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT
46
47
48 #exit
49
50 . auto/types/uint64_t
51 . auto/types/uintptr_t
52
53 . auto/types/socklen_t