bugfix: "./configure --without-lua_resty_dns" did not work as declared. thanks Vitaly for the report in #61.

This commit is contained in:
Yichun Zhang (agentzh)
2014-07-09 11:32:49 -07:00
parent 88500d7328
commit 6d854671b7
2 changed files with 73 additions and 1 deletions

3
util/configure vendored
View File

@ -171,6 +171,9 @@ for my $opt (@ARGV) {
} elsif ($opt eq '--without-lua_resty_redis') {
$resty_opts{no_lua_resty_redis} = 1;
} elsif ($opt eq '--without-lua_resty_dns') {
$resty_opts{no_lua_resty_dns} = 1;
} elsif ($opt eq '--without-lua_resty_mysql') {
$resty_opts{no_lua_resty_mysql} = 1;