From 4b23949467bde9a4402e0afba548a2024f1159ec Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 20 Jan 2023 13:35:13 +0200 Subject: [PATCH] build-and-run: disable HTTP rewrite module The HTTP rewrite module needs PCRE, which is not available in the GHA MacOS runners. It is unused by the tests, so it's safe to disable building it. --- t/build-and-run | 1 + 1 file changed, 1 insertion(+) diff --git a/t/build-and-run b/t/build-and-run index e632a99..b801a3e 100755 --- a/t/build-and-run +++ b/t/build-and-run @@ -28,6 +28,7 @@ cd nginx-${NGINX} ./configure \ --add-${DYNAMIC:+dynamic-}module=.. \ --with-http_addition_module \ + --without-http_rewrite_module \ --prefix="$(pwd)/../prefix" make -j"$JOBS" make install