Fix indentation of ./configure --help

This commit is contained in:
Sascha Schumann 2001-09-19 09:17:56 +00:00
parent 0215031834
commit ed50e0e155
2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@ dnl $Id$
dnl config.m4 for extension mailparse
PHP_ARG_ENABLE(mailparse, whether to enable mailparse support,
[ --enable-mailparse Enable mailparse support])
[ --enable-mailparse Enable mailparse support])
if test "$PHP_MAILPARSE" != "no"; then
if test "$ext_shared" != "yes" && test "$enable_mbstring" != "yes"; then

View File

@ -4,7 +4,7 @@ dnl config.m4 for extension pcntl
dnl Process Control (pcntl) extentsion --EXPERIMENTAL--
dnl TODO - Add platform checks
PHP_ARG_ENABLE(pcntl, whether to enable pcntl support,
[ --enable-pcntl Enable experimental pcntl support (CGI ONLY!)])
[ --enable-pcntl Enable experimental pcntl support (CGI ONLY!)])
if test "$PHP_PCNTL" != "no"; then
if test "$PHP_SAPI" != "cgi"; then
@ -16,5 +16,4 @@ if test "$PHP_PCNTL" != "no"; then
AC_CHECK_FUNCS(sigaction, [ AC_DEFINE(HAVE_SIGACTION,1,[ ]) ], [ AC_MSG_ERROR(pcntl: sigaction() not supported by this platform) ])
PHP_EXTENSION(pcntl, $ext_shared)
fi