From 1bf4a3379b530ca6c10940e9e16eca5b382342f2 Mon Sep 17 00:00:00 2001 From: Jan Ehrhardt Date: Tue, 1 Dec 2020 21:59:28 +0100 Subject: [PATCH] [config.w32] disable trying to build ext for PHP8 See https://github.com/m6w6/ext-http/issues/97#issuecomment-736807714 for the ratio. --- config.w32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.w32 b/config.w32 index 90ef462..426ec3a 100644 --- a/config.w32 +++ b/config.w32 @@ -1,7 +1,7 @@ ARG_ENABLE("propro", "for propro support", "no"); -if (PHP_PROPRO == "yes") { +if (PHP_PROPRO == "yes" && PHP_VERSION <= 7) { var PHP_PROPRO_HEADERS=glob(configure_module_dirname + "/src/*.h"); var PHP_PROPRO_SRC_ARRAY=glob(configure_module_dirname + "/src/*.c"); var PHP_PROPRO_SOURCES=""; -- 2.30.2