summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2001-09-19 09:17:56 +0000
committerSascha Schumann <sas@php.net>2001-09-19 09:17:56 +0000
commited50e0e1555f427aa98b4b81c5b5fb9ed87f4145 (patch)
tree96406bf3bd5c7d36a84c1dc0d09faaa822737207
parent02150318346ae9ec8024ea58923746656ba57e6c (diff)
downloadphp-git-ed50e0e1555f427aa98b4b81c5b5fb9ed87f4145.tar.gz
Fix indentation of ./configure --help
-rw-r--r--ext/mailparse/config.m42
-rw-r--r--ext/pcntl/config.m43
2 files changed, 2 insertions, 3 deletions
diff --git a/ext/mailparse/config.m4 b/ext/mailparse/config.m4
index 4e2c4f7d60..0e0cb2a1d7 100644
--- a/ext/mailparse/config.m4
+++ b/ext/mailparse/config.m4
@@ -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
diff --git a/ext/pcntl/config.m4 b/ext/pcntl/config.m4
index acf402d3ed..fc0c4956ea 100644
--- a/ext/pcntl/config.m4
+++ b/ext/pcntl/config.m4
@@ -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