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

pull/455/head
Yichun Zhang (agentzh) 6 years ago
parent b84a47de27
commit 4cb86c999c

5
util/configure vendored

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

Loading…
Cancel
Save