comparison auto/cc/conf @ 16:74b1868dd3cd NGINX_0_1_8

nginx 0.1.8 *) Bugfix: in the ngx_http_autoindex_module if the long file names were in the listing. *) Feature: the "^~" modifier in the location directive. *) Feature: the proxy_max_temp_file_size directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 20 Nov 2004 00:00:00 +0300
parents 46833bd150cb
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
15:0503cb60c4e4 16:74b1868dd3cd
50 # Intel C++ compiler 7.1, 8.0 50 # Intel C++ compiler 7.1, 8.0
51 51
52 . auto/cc/icc 52 . auto/cc/icc
53 ;; 53 ;;
54 54
55 # ccc) 55 ccc)
56 # # Compaq C V6.5-207 56 # # Compaq C V6.5-207
57 # 57 #
58 # . auto/cc/ccc 58 # . auto/cc/ccc
59 # ;; 59 ngx_include_opt="-I "
60 ;;
60 61
61 # acc) 62 # acc)
62 # # aCC: HP ANSI C++ B3910B A.03.55.02 63 # # aCC: HP ANSI C++ B3910B A.03.55.02
63 # 64 #
64 # . auto/cc/acc 65 # . auto/cc/acc
93 94
94 if [ "$PLATFORM" != win32 ]; then 95 if [ "$PLATFORM" != win32 ]; then
95 96
96 if test -n "$NGX_LD_OPT"; then 97 if test -n "$NGX_LD_OPT"; then
97 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\" 98 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\"
98 ngx_feature_name=DUMMY 99 ngx_feature_name="DUMMY"
99 ngx_feature_run=no 100 ngx_feature_run=no
100 ngx_feature_incs= 101 ngx_feature_incs=
101 ngx_feature_libs= 102 ngx_feature_libs=
102 ngx_feature_test= 103 ngx_feature_test=
103 . auto/feature 104 . auto/feature
108 exit 1 109 exit 1
109 fi 110 fi
110 fi 111 fi
111 112
112 ngx_feature="gcc variadic macros" 113 ngx_feature="gcc variadic macros"
113 ngx_feature_name=HAVE_GCC_VARIADIC_MACROS 114 ngx_feature_name="HAVE_GCC_VARIADIC_MACROS"
114 ngx_feature_run=yes 115 ngx_feature_run=yes
115 ngx_feature_incs="#include <stdio.h> 116 ngx_feature_incs="#include <stdio.h>
116 #define var(dummy, args...) sprintf(args)" 117 #define var(dummy, args...) sprintf(args)"
117 ngx_feature_libs= 118 ngx_feature_libs=
118 ngx_feature_test="char buf[30]; buf[0] = '0'; 119 ngx_feature_test="char buf[30]; buf[0] = '0';
120 if (buf[0] != '1') return 1" 121 if (buf[0] != '1') return 1"
121 . auto/feature 122 . auto/feature
122 123
123 124
124 ngx_feature="C99 variadic macros" 125 ngx_feature="C99 variadic macros"
125 ngx_feature_name=HAVE_C99_VARIADIC_MACROS 126 ngx_feature_name="HAVE_C99_VARIADIC_MACROS"
126 ngx_feature_run=yes 127 ngx_feature_run=yes
127 ngx_feature_incs="#include <stdio.h> 128 ngx_feature_incs="#include <stdio.h>
128 #define var(dummy, ...) sprintf(__VA_ARGS__)" 129 #define var(dummy, ...) sprintf(__VA_ARGS__)"
129 ngx_feature_libs= 130 ngx_feature_libs=
130 ngx_feature_test="char buf[30]; buf[0] = '0'; 131 ngx_feature_test="char buf[30]; buf[0] = '0';
131 var(0, buf, \"%d\", 1); 132 var(0, buf, \"%d\", 1);
132 if (buf[0] != '1') return 1" 133 if (buf[0] != '1') return 1"
133 . auto/feature 134 . auto/feature
134 135
136
137 # ngx_feature="inline"
138 # ngx_feature_name="DUMMY"
139 # ngx_feature_run=no
140 # ngx_feature_incs="int inline f(void) { return 1 }"
141 # ngx_feature_libs=
142 # ngx_feature_test=
143 # . auto/feature
144 #
145 # if [ $ngx_found = yes ]; then
146 # fi
147
135 fi 148 fi