From 4cb86c999ca29c8fc0cd525ffc9189ca6a068ec8 Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Mon, 4 Feb 2019 20:08:28 -0800 Subject: [PATCH] bugfix: lua-resty-signal and lua-resty-shell should not be enabled on windows. --- util/configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/configure b/util/configure index b88651a..ccf5f9b 100755 --- a/util/configure +++ b/util/configure @@ -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;