bugfix: lua-resty-signal and lua-resty-shell should not be enabled on windows.

This commit is contained in:
Yichun Zhang (agentzh) 2019-02-04 20:08:28 -08:00
parent b84a47de27
commit 4cb86c999c
1 changed files with 5 additions and 0 deletions

5
util/configure vendored
View File

@ -355,6 +355,11 @@ for my $opt (@ARGV) {
}
}
if ($platform eq 'msys') {
$resty_opts{no_lua_resty_signal} = 1;
$resty_opts{no_lua_resty_shell} = 1;
}
print "platform: $platform ($OS)\n";
my $ngx_prefix;