comparison configure @ 270:6eb1e38f0f1f NGINX_0_5_5

nginx 0.5.5 *) Change: the -v switch does not show compiler information any more. *) Feature: the -V switch. *) Feature: the "worker_rlimit_core" directive supports size in K, M, and G. *) Bugfix: the nginx.pm module now could be installed by an unprivileged user. *) Bugfix: a segmentation fault might occur if the $r->request_body or $r->request_body_file methods were used. *) Bugfix: the ppc platform specific bugs.
author Igor Sysoev <http://sysoev.ru>
date Sun, 24 Dec 2006 00:00:00 +0300
parents 73e8476f9142
children f7cd062ee035
comparison
equal deleted inserted replaced
269:aa9c0062124d 270:6eb1e38f0f1f
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # Copyright (C) Igor Sysoev 3 # Copyright (C) Igor Sysoev
4 4
5
6 NGX_CONFIGURE=`echo $@ | sed 's/"/\\\\"/g'`
5 7
6 . auto/options 8 . auto/options
7 . auto/init 9 . auto/init
8 . auto/sources 10 . auto/sources
9 11
10 test -d $NGX_OBJS || mkdir $NGX_OBJS 12 test -d $NGX_OBJS || mkdir $NGX_OBJS
11 13
12 echo > $NGX_AUTO_HEADERS_H 14 echo > $NGX_AUTO_HEADERS_H
13 echo > $NGX_AUTO_CONFIG_H
14 echo > $NGX_AUTOCONF_ERR 15 echo > $NGX_AUTOCONF_ERR
16
17 echo "#define NGX_CONFIGURE \"$NGX_CONFIGURE\"" > $NGX_AUTO_CONFIG_H
15 18
16 19
17 if [ $NGX_DEBUG = YES ]; then 20 if [ $NGX_DEBUG = YES ]; then
18 have=NGX_DEBUG . auto/have 21 have=NGX_DEBUG . auto/have
19 fi 22 fi
30 33
31 NGX_PLATFORM="$NGX_SYSTEM:$NGX_RELEASE:$NGX_MACHINE"; 34 NGX_PLATFORM="$NGX_SYSTEM:$NGX_RELEASE:$NGX_MACHINE";
32 35
33 else 36 else
34 echo "building for $NGX_PLATFORM" 37 echo "building for $NGX_PLATFORM"
38 NGX_SYSTEM=$NGX_PLATFORM
35 fi 39 fi
36 40
41 . auto/cc/conf
37 42
38 if [ "$NGX_PLATFORM" != win32 ]; then 43 if [ "$NGX_PLATFORM" != win32 ]; then
39 . auto/headers 44 . auto/headers
40 fi 45 fi
41 46
42 . auto/cc/conf
43 . auto/os/conf 47 . auto/os/conf
44 48
45 if [ "$NGX_PLATFORM" != win32 ]; then 49 if [ "$NGX_PLATFORM" != win32 ]; then
46 . auto/os/features 50 . auto/os/features
47 . auto/threads 51 . auto/threads