Skip to content

Commit 37d35f5

Browse files
authored
Move --enable/--disable-fiber-asm help output (#11827)
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.
1 parent 605c60c commit 37d35f5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

configure.ac

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,14 +1255,14 @@ fi
12551255
dnl Configuring Zend and TSRM.
12561256
dnl ----------------------------------------------------------------------------
12571257

1258+
PHP_HELP_SEPARATOR([Zend:])
1259+
PHP_CONFIGURE_PART(Configuring Zend)
1260+
12581261
AC_ARG_ENABLE([fiber-asm],
12591262
[AS_HELP_STRING([--disable-fiber-asm],
12601263
[Disable the use of boost fiber assembly files])],
12611264
[fiber_asm=$enableval], [fiber_asm='yes'])
12621265

1263-
PHP_HELP_SEPARATOR([Zend:])
1264-
PHP_CONFIGURE_PART(Configuring Zend)
1265-
12661266
AS_CASE([$host_cpu],
12671267
[x86_64*|amd64*], [fiber_cpu="x86_64"],
12681268
[x86*|amd*|i?86*|pentium], [fiber_cpu="i386"],
@@ -1375,7 +1375,6 @@ fi
13751375
ZEND_EXTRA_LIBS="$LIBS"
13761376
unset LIBS
13771377

1378-
PHP_HELP_SEPARATOR([TSRM:])
13791378
PHP_CONFIGURE_PART(Configuring TSRM)
13801379
if test "$PHP_THREAD_SAFETY" = "yes"; then
13811380
TSRM_CHECK_PTHREADS

0 commit comments

Comments
 (0)