From d28d048a477b34c629655950127d40609afe455d Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Mon, 27 Mar 2023 11:54:04 +0200 Subject: [PATCH] Rename --with-opcache-capstone to --with-capstone --- ext/opcache/config.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/opcache/config.m4 b/ext/opcache/config.m4 index fb3324cf82a3..9404e3e19d1d 100644 --- a/ext/opcache/config.m4 +++ b/ext/opcache/config.m4 @@ -18,8 +18,8 @@ PHP_ARG_ENABLE([opcache-jit], [yes], [no]) -PHP_ARG_WITH([opcache-capstone],, - [AS_HELP_STRING([--with-opcache-capstone], +PHP_ARG_WITH([capstone],, + [AS_HELP_STRING([--with-capstone], [support opcache JIT disassembly through capstone])], [no], [no]) @@ -74,7 +74,7 @@ if test "$PHP_OPCACHE" != "no"; then DASM_FLAGS="$DASM_FLAGS -D ZTS=1" fi - AS_IF([test x"$with_opcache_capstone" = "xyes"],[ + AS_IF([test x"$with_capstone" = "xyes"],[ PKG_CHECK_MODULES([CAPSTONE],[capstone >= 3.0.0],[ AC_DEFINE([HAVE_CAPSTONE], [1], [Capstone is available]) PHP_EVAL_LIBLINE($CAPSTONE_LIBS, OPCACHE_SHARED_LIBADD)