mirror of
https://github.com/openresty/openresty.git
synced 2024-10-13 00:29:41 +00:00
Prepare for the ngx_openresty devel version 1.0.10
* upgraded ngx_lua to 0.4.0. * upgraded ngx_encrypted_session to 0.02. * bugfix: fixed issues with relative path DIR in --with-openssl=DIR.
This commit is contained in:
5
util/configure
vendored
5
util/configure
vendored
@ -217,6 +217,11 @@ for my $opt (@ARGV) {
|
||||
my $mod_path = File::Spec->rel2abs($1);
|
||||
push @ngx_opts, "--add-module=$mod_path";
|
||||
|
||||
} elsif ($opt =~ /^--with-openssl=(.*)/) {
|
||||
|
||||
my $path = File::Spec->rel2abs($1);
|
||||
push @ngx_opts, "--with-openssl=$path";
|
||||
|
||||
} elsif ($opt =~ /^--\w.*/) {
|
||||
push @ngx_opts, $opt;
|
||||
|
||||
|
@ -109,7 +109,7 @@ mv chaoslawful-drizzle-nginx-module-* drizzle-nginx-module-$ver || exit 1
|
||||
|
||||
#################################
|
||||
|
||||
ver=0.3.1rc45
|
||||
ver=0.4.0
|
||||
$root/util/get-tarball "http://github.com/chaoslawful/lua-nginx-module/tarball/v$ver" -O lua-nginx-module-$ver.tar.gz || exit 1
|
||||
tar -xzf lua-nginx-module-$ver.tar.gz || exit 1
|
||||
mv chaoslawful-lua-nginx-module-* ngx_lua-$ver || exit 1
|
||||
@ -151,7 +151,7 @@ mv calio-iconv-nginx-module-* iconv-nginx-module-$ver || exit 1
|
||||
|
||||
#################################
|
||||
|
||||
ver=0.01
|
||||
ver=0.02
|
||||
$root/util/get-tarball "http://github.com/agentzh/encrypted-session-nginx-module/tarball/v$ver" -O encrypted-session-nginx-module-$ver.tar.gz || exit 1
|
||||
tar -xzf encrypted-session-nginx-module-$ver.tar.gz || exit 1
|
||||
mv agentzh-encrypted-session-nginx-module-* encrypted-session-nginx-module-$ver || exit 1
|
||||
|
Reference in New Issue
Block a user