From 3b577bb32b6157b2f6678035c5cfa0f787d2a986 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 29 Jul 2023 22:34:27 +0200 Subject: [PATCH] Move --enable/--disable-fiber-asm help output This moves the fiber configure option in the Zend section. TSRM doesn't currently have any specific configure options so it can be removed from the ./configure --help output. --- configure.ac | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 46c653673dd1..66503615edcd 100644 --- a/configure.ac +++ b/configure.ac @@ -1255,14 +1255,14 @@ fi dnl Configuring Zend and TSRM. dnl ---------------------------------------------------------------------------- +PHP_HELP_SEPARATOR([Zend:]) +PHP_CONFIGURE_PART(Configuring Zend) + AC_ARG_ENABLE([fiber-asm], [AS_HELP_STRING([--disable-fiber-asm], [Disable the use of boost fiber assembly files])], [fiber_asm=$enableval], [fiber_asm='yes']) -PHP_HELP_SEPARATOR([Zend:]) -PHP_CONFIGURE_PART(Configuring Zend) - AS_CASE([$host_cpu], [x86_64*|amd64*], [fiber_cpu="x86_64"], [x86*|amd*|i?86*|pentium], [fiber_cpu="i386"], @@ -1375,7 +1375,6 @@ fi ZEND_EXTRA_LIBS="$LIBS" unset LIBS -PHP_HELP_SEPARATOR([TSRM:]) PHP_CONFIGURE_PART(Configuring TSRM) if test "$PHP_THREAD_SAFETY" = "yes"; then TSRM_CHECK_PTHREADS