1
0
mirror of https://github.com/openresty/openresty synced 2024-11-09 18:35:51 +01:00

bugfix: ./configure: we should disable the ngx_http_encrypted_session module when --without-http_ssl_module is specified.

This commit is contained in:
Yichun Zhang (agentzh) 2016-05-12 18:19:01 -07:00
parent d836ee1e8e
commit 6160254ec8

1
util/configure vendored

@ -278,6 +278,7 @@ for my $opt (@ARGV) {
} elsif ($opt eq '--without-http_ssl_module') {
$resty_opts{no_http_ssl} = 1;
$resty_opts{no_http_encrypted_session} = 1;
} elsif ($opt =~ /^--add-module=(.*)/) {