comparison configure @ 4:4b2dafa26fe2 NGINX_0_1_2

nginx 0.1.2 *) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS options in configure. *) Feature: the server_name directive supports *.domain.tld. *) Bugfix: the portability improvements. *) Bugfix: if configuration file was set in command line, the reconfiguration was impossible; bug appeared in 0.1.1. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used. *) Bugfix: with sendfile the response was not recoded according to the charset module directives; bug appeared in 0.1.1. *) Bugfix: very seldom bug in the kqueue processing. *) Bugfix: the gzip module compressed the proxied responses that was already compressed.
author Igor Sysoev <http://sysoev.ru>
date Thu, 21 Oct 2004 00:00:00 +0400
parents f0b350454894
children 80ba094c6b3e
comparison
equal deleted inserted replaced
3:8beaf7b3241f 4:4b2dafa26fe2
6 . auto/options 6 . auto/options
7 . auto/init 7 . auto/init
8 . auto/sources 8 . auto/sources
9 9
10 test -d $OBJS || mkdir $OBJS 10 test -d $OBJS || mkdir $OBJS
11
12 echo > $NGX_AUTO_HEADERS_H
11 echo > $NGX_AUTO_CONFIG_H 13 echo > $NGX_AUTO_CONFIG_H
12 14
13 if [ $DEBUG = YES ]; then 15 if [ $DEBUG = YES ]; then
14 have=NGX_DEBUG . auto/have 16 have=NGX_DEBUG . auto/have
15 fi 17 fi
16 18
17 have=NGX_USE_HTTP_FILE_CACHE_UNIQ . auto/have
18 have=NGX_SUPPRESS_WARN . auto/have
19
20 19
21 if [ "$PLATFORM" != win32 ]; then 20 if [ "$PLATFORM" != win32 ]; then
22 . auto/headers 21 . auto/headers
23 fi 22 fi
24 23
24 . auto/cc/conf
25 . auto/os/conf 25 . auto/os/conf
26 . auto/modules 26 . auto/modules
27
28 . auto/cc
29 . auto/lib/conf 27 . auto/lib/conf
30 28
31 if [ "$PLATFORM" != win32 ]; then 29 if [ "$PLATFORM" != win32 ]; then
32 . auto/threads 30 . auto/threads
33 fi 31 fi
38 36
39 if [ "$PLATFORM" != win32 ]; then 37 if [ "$PLATFORM" != win32 ]; then
40 . auto/unix 38 . auto/unix
41 fi 39 fi
42 40
43 have=NGX_SMP . auto/have 41 # STUB
42 . auto/stubs
44 43
45 have=NGX_PREFIX value="\"$PREFIX/\"" . auto/define 44 have=NGX_PREFIX value="\"$PREFIX/\"" . auto/define
46 have=NGX_SBIN_PATH value="\"$SBIN_PATH\"" . auto/define 45 have=NGX_SBIN_PATH value="\"$SBIN_PATH\"" . auto/define
47 have=NGX_CONF_PATH value="\"$CONF_PATH\"" . auto/define 46 have=NGX_CONF_PATH value="\"$CONF_PATH\"" . auto/define
48 have=NGX_PID_PATH value="\"$PID_PATH\"" . auto/define 47 have=NGX_PID_PATH value="\"$PID_PATH\"" . auto/define
49 if [ ".$ERROR_LOG_PATH" != "." ]; then 48 if [ ".$ERROR_LOG_PATH" != "." ]; then
50 have=NGX_ERROR_LOG_PATH value="\"$ERROR_LOG_PATH\"" . auto/define 49 have=NGX_ERROR_LOG_PATH value="\"$ERROR_LOG_PATH\"" . auto/define
51 fi 50 fi
52 have=NGX_HTTP_LOG_PATH value="\"$HTTP_LOG_PATH\"" . auto/define 51 have=NGX_HTTP_LOG_PATH value="\"$HTTP_LOG_PATH\"" . auto/define
53 52
53 have=NGX_USER value="\"$NGX_USER\"" . auto/define
54 have=NGX_GROUP value="\"$NGX_GROUP\"" . auto/define
55
54 . auto/summary 56 . auto/summary