From 7e28784de3c13d7834b619fd6113e906eb3e9255 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Wed, 6 Dec 2000 17:34:58 +0000 Subject: [PATCH] Fix indentation of configure output --- ext/bcmath/config.m4 | 4 ++-- ext/ccvs/config.m4 | 5 ++--- ext/ctype/config.m4 | 3 ++- ext/domxml/config.m4 | 2 +- ext/fribidi/config.m4 | 6 +++--- ext/gd/config.m4 | 5 ++--- ext/gmp/config.m4 | 2 +- ext/qtdom/config.m4 | 2 +- sapi/thttpd/config.m4 | 2 +- 9 files changed, 15 insertions(+), 16 deletions(-) diff --git a/ext/bcmath/config.m4 b/ext/bcmath/config.m4 index 8289624dc4..ed5677416d 100644 --- a/ext/bcmath/config.m4 +++ b/ext/bcmath/config.m4 @@ -1,7 +1,7 @@ dnl $Id$ -PHP_ARG_WITH(bcmath, for bc style precision math functions, -[ --without-bcmath Compile without bc style precision math functions. ], yes) +PHP_ARG_ENABLE(bcmath, for bc style precision math functions, +[ --enable-bcmath Enable bc style precision math functions.]) if test "$PHP_BCMATH" != "no"; then AC_DEFINE(WITH_BCMATH, 1, [Whether you have bcmath]) diff --git a/ext/ccvs/config.m4 b/ext/ccvs/config.m4 index aea9e1a893..ef347ffe9c 100644 --- a/ext/ccvs/config.m4 +++ b/ext/ccvs/config.m4 @@ -3,9 +3,8 @@ dnl config.m4 for PHP4 CCVS Extension AC_MSG_CHECKING(CCVS Support) AC_ARG_WITH(ccvs, -[ --with-ccvs[=DIR] Compile CCVS support into PHP4. - Please specify your CCVS base install directory as DIR. -], +[ --with-ccvs[=DIR] Compile CCVS support into PHP4. Please specify your + CCVS base install directory as DIR.], [ if test "$withval" != "no"; then CCVS_DIR="$withval" diff --git a/ext/ctype/config.m4 b/ext/ctype/config.m4 index 9bcdcdb2c6..774047b9b9 100644 --- a/ext/ctype/config.m4 +++ b/ext/ctype/config.m4 @@ -14,7 +14,8 @@ dnl [ --with-ctype Include ctype support]) dnl Otherwise use enable: -PHP_ARG_ENABLE(ctype, whether to enable ctype support,[ --enable-ctype Enable ctype support]) +PHP_ARG_ENABLE(ctype, whether to enable ctype support, +[ --enable-ctype Enable ctype support]) if test "$PHP_CTYPE" != "no"; then dnl If you will not be testing anything external, like existence of diff --git a/ext/domxml/config.m4 b/ext/domxml/config.m4 index 31aeb9d4d1..604f6185b3 100644 --- a/ext/domxml/config.m4 +++ b/ext/domxml/config.m4 @@ -2,7 +2,7 @@ dnl $Id$ dnl config.m4 for extension domxml PHP_ARG_WITH(dom, for DOM support, -[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.0). +[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.0). DIR is the libxml install directory, defaults to /usr.]) diff --git a/ext/fribidi/config.m4 b/ext/fribidi/config.m4 index b05bf395ca..8af1b6a979 100644 --- a/ext/fribidi/config.m4 +++ b/ext/fribidi/config.m4 @@ -5,9 +5,9 @@ dnl don't forget to call PHP_EXTENSION(fribidi) PHP_ARG_WITH(fribidi, whether to add fribidi support, -[ --with-fribidi[=DIR] Include fribidi support (requires FriBidi >=0.1.12). - DIR is the fribidi installation directory - - default /usr/local/],"no") +[ --with-fribidi[=DIR] Include fribidi support (requires FriBidi >=0.1.12). + DIR is the fribidi installation directory - + default /usr/local/]) diff --git a/ext/gd/config.m4 b/ext/gd/config.m4 index d2c360967c..78713a917d 100644 --- a/ext/gd/config.m4 +++ b/ext/gd/config.m4 @@ -63,7 +63,7 @@ AC_DEFUN(PHP_GD_CHECK_VERSION,[ AC_MSG_CHECKING(whether to enable truetype string function in gd) AC_ARG_ENABLE(gd-native-ttf, -[ --enable-gd-imgstrttf Enable TrueType string function in gd],[ +[ --enable-gd-imgstrttf Enable TrueType string function in gd],[ if test "$enableval" = "yes" ; then AC_DEFINE(USE_GD_IMGSTRTTF, 1, [ ]) AC_MSG_RESULT(yes) @@ -77,8 +77,7 @@ AC_ARG_ENABLE(gd-native-ttf, shared=no AC_ARG_WITH(gd, -[ - --with-gd[=DIR] Include GD support (DIR is GD's install dir). +[ --with-gd[=DIR] Include GD support (DIR is GD's install dir). Set DIR to "shared" to build as a dl, or "shared,DIR" to build as a dl and still specify DIR.], [ diff --git a/ext/gmp/config.m4 b/ext/gmp/config.m4 index d7b54e495c..4dea939c99 100644 --- a/ext/gmp/config.m4 +++ b/ext/gmp/config.m4 @@ -5,7 +5,7 @@ dnl If your extension references something external, use with: PHP_ARG_WITH(gmp, for gmp support, dnl Make sure that the comment is aligned: -[ --with-gmp Include gmp support]) +[ --with-gmp Include gmp support]) if test "$PHP_GMP" != "no"; then diff --git a/ext/qtdom/config.m4 b/ext/qtdom/config.m4 index 8ca444b1f5..4cb52771fc 100644 --- a/ext/qtdom/config.m4 +++ b/ext/qtdom/config.m4 @@ -4,7 +4,7 @@ dnl don't forget to call PHP_EXTENSION(qtdom) AC_MSG_CHECKING(whether to include QDOM support) AC_ARG_WITH(qtdom, -[ --with-qtdom Include QtDOM support (requires Qt >= 2.2.0).], +[ --with-qtdom Include QtDOM support (requires Qt >= 2.2.0).], [ case "$withval" in no) diff --git a/sapi/thttpd/config.m4 b/sapi/thttpd/config.m4 index d9a11d1dbe..d125b8768e 100644 --- a/sapi/thttpd/config.m4 +++ b/sapi/thttpd/config.m4 @@ -1,5 +1,5 @@ AC_ARG_WITH(thttpd, -[ --with-thttpd=SRCDIR],[ +[ --with-thttpd=SRCDIR Build PHP as thttpd module],[ test -d $withval || AC_MSG_RESULT(thttpd directory does not exist ($withval)) AC_EXPAND_PATH($withval, THTTPD) INSTALL_IT="\ -- 2.40.0