1
0
mirror of https://github.com/openresty/openresty synced 2025-02-18 18:09:35 +01:00

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

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;