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:
agentzh (章亦春)
2012-01-12 15:19:27 +08:00
parent 487eb2e40a
commit fb89742f47
4 changed files with 226 additions and 165 deletions

5
util/configure vendored
View File

@ -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;