summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-05-04 15:32:46 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-05-04 15:32:46 +0000
commitac72bd17d1c845b81aa9d1050b764ba1018ae462 (patch)
treee7df03607b73b7c1cca5438fa02b6022c0e37e74 /auto
parent2cca46c774157b529c439eafe0083d75e74f138a (diff)
downloadnginx-release-0.3.44.tar.gz
nginx-release-0.3.44.tar.bz2
nginx-0.3.44-RELEASE importrelease-0.3.44
*) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
Diffstat (limited to '')
-rw-r--r--auto/feature3
-rw-r--r--auto/include4
2 files changed, 4 insertions, 3 deletions
diff --git a/auto/feature b/auto/feature
index 15da5bde3..6ad008ae0 100644
--- a/auto/feature
+++ b/auto/feature
@@ -14,7 +14,8 @@ END
ngx_found=no
if test -n "$ngx_feature_name"; then
- ngx_have_feature=`echo $ngx_feature_name | tr '[a-z]' '[A-Z]'`
+ ngx_have_feature=`echo $ngx_feature_name \
+ | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
fi
cat << END > $NGX_AUTOTEST.c
diff --git a/auto/include b/auto/include
index 7a098d9d0..4139238ca 100644
--- a/auto/include
+++ b/auto/include
@@ -35,8 +35,8 @@ if [ -x $NGX_AUTOTEST ]; then
echo " found"
- ngx_name=`echo $ngx_include | sed -e 's/\./_/' -e 's/\//_/' \
- | tr '[a-z]' '[A-Z]'`
+ ngx_name=`echo $ngx_include \
+ | tr abcdefghijklmnopqrstuvwxyz/. ABCDEFGHIJKLMNOPQRSTUVWXYZ__`
have=NGX_HAVE_$ngx_name . auto/have_headers