comparison auto/configure @ 194:2357fa41738a

nginx-0.0.1-2003-11-21-09:30:49 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 21 Nov 2003 06:30:49 +0000
parents dd66383796a5
children 8dee38ea9117
comparison
equal deleted inserted replaced
193:dd66383796a5 194:2357fa41738a
1 1
2 CC=cc 2 CC=cc
3 CPP='cc -E' 3 CC_STRONG="$CC -Wall -Werror"
4 CPP="$CC -E"
4 5
5 echo > ngx_auto_config.h 6 NGX_AUTO_CONFIG_H=ngx_auto_config.h
7
8 echo > $NGX_AUTO_CONFIG_H
9
10
11 CC_WARN=$CC_STRONG
12
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
6 26
7 NGX_TYPE="long"; . auto/types/sizeof; NGX_MAX_LONG=$NGX_MAX_SIZE 27 NGX_TYPE="long"; . auto/types/sizeof; NGX_MAX_LONG=$NGX_MAX_SIZE
8 NGX_FORMATS="l"; . auto/fmt/fmt 28 NGX_FORMATS="l"; . auto/fmt/fmt
9 29
10 30
11 NGX_TYPE="long long"; . auto/types/sizeof; NGX_MAX_LONG_LONG=$NGX_MAX_SIZE 31 NGX_TYPE="long long"; . auto/types/sizeof; NGX_MAX_LONG_LONG=$NGX_MAX_SIZE
12 NGX_FORMATS="ll q"; . auto/fmt/fmt 32 NGX_FORMATS="ll q"; . auto/fmt/fmt
13 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
14 #NGX_TYPE="__int64_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT 43 #NGX_TYPE="__int64_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT
15 44
16 #NGX_TYPE="time_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT 45 #NGX_TYPE="time_t"; . auto/types/typedef; NGX_TIME_T_FMT=$NGX_FMT
17 46
18 47
19 #exit 48 #exit
20 49
21 . auto/types/time_t
22
23 . auto/types/uint64_t 50 . auto/types/uint64_t
24 . auto/types/uintptr_t 51 . auto/types/uintptr_t
25 52
26 . auto/types/socklen_t 53 . auto/types/socklen_t