]> granicus.if.org Git - php/commitdiff
Fix indentation of ./configure --help
authorSascha Schumann <sas@php.net>
Wed, 19 Sep 2001 09:17:56 +0000 (09:17 +0000)
committerSascha Schumann <sas@php.net>
Wed, 19 Sep 2001 09:17:56 +0000 (09:17 +0000)
ext/mailparse/config.m4
ext/pcntl/config.m4

index 4e2c4f7d60cb7e3e71a739f0f45136899ca5ae28..0e0cb2a1d7d2385ea5e0f96e18fa58b6a51aaec3 100644 (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
index acf402d3ed0c50654c93487ad6457c3dc568b3af..fc0c4956eab38745c664ae8ae042360b21020296 100644 (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