now we require at least perl 5.6.0. released 0.8.54.1.

This commit is contained in:
agentzh (章亦春) 2011-03-09 22:38:46 +08:00
parent a608dd1d15
commit 1663e02dcb
3 changed files with 10 additions and 6 deletions

12
README
View File

@ -9,16 +9,16 @@ that all these modules are played well together.
The bundled software components are copyrighted by the respective copyright holders. The bundled software components are copyrighted by the respective copyright holders.
To build ngx_openresty, you need a working perl (at least perl 5.6.x) To build ngx_openresty, you need a working perl (perl 5.6.0 or better)
in your PATH environment, and then follow the following steps: in your PATH environment, and then follow the following steps:
1. download the latest ngx_openresty tarball can be downloaded from 1. download the latest ngx_openresty tarball can be downloaded from
http://agentzh.org/misc/nginx/ngx_openresty-0.8.54.0.tar.gz http://agentzh.org/misc/nginx/ngx_openresty-0.8.54.1.tar.gz
we will eventually migrate to the openresty.org domain. we will eventually migrate to the openresty.org domain.
2. and then enter the ngx_openresty-0.8.54.0/ directory, 2. and then enter the ngx_openresty-0.8.54.1/ directory,
and type the following command to configure: and type the following command to configure:
./configure ./configure
@ -34,6 +34,10 @@ in your PATH environment, and then follow the following steps:
try ./configure --help to see more options. try ./configure --help to see more options.
For Solaris, it's common to install libraries like OpenSSL to /lib,
so when it complaints about OpenSSL and you have indeed
already installed it, specify the --with-ld-opt='-L/lib' option.
3. build everything locally 3. build everything locally
make make
@ -55,7 +59,7 @@ For bundle maintainers:
at the top of the bundle source tree. at the top of the bundle source tree.
The following packages are bundled in the 0.8.54.0 release: The following packages are bundled in the 0.8.54.1 release:
xss-nginx-module-0.03rc2 xss-nginx-module-0.03rc2
srcache-nginx-module-0.12rc2 srcache-nginx-module-0.12rc2

2
util/configure vendored
View File

@ -1,6 +1,6 @@
#!/usr/bin/env perl #!/usr/bin/env perl
use 5.004; use 5.006;
use strict; use strict;
use warnings; use warnings;

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
main_ver=0.8.54 main_ver=0.8.54
minor_ver=1rc2 minor_ver=1
version=$main_ver.$minor_ver version=$main_ver.$minor_ver
echo $version echo $version