mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Clean up the alignment of configure --help output
This commit is contained in:
parent
c26b4d8c9f
commit
b189759bcd
11 changed files with 18 additions and 18 deletions
|
@ -456,7 +456,7 @@ else
|
|||
fi
|
||||
|
||||
PHP_ARG_ENABLE(debug, whether to include debugging symbols,
|
||||
[ --enable-debug Compile with debugging symbols.], no)
|
||||
[ --enable-debug Compile with debugging symbols.], no)
|
||||
|
||||
if test "$PHP_DEBUG" = "yes"; then
|
||||
PHP_DEBUG=1
|
||||
|
|
|
@ -3,8 +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
|
||||
|
|
|
@ -2,7 +2,7 @@ dnl $Id$
|
|||
dnl config.m4 for extension CURL
|
||||
|
||||
PHP_ARG_WITH(curl, for CURL support,
|
||||
[ --with-curl[=DIR] Include CURL support])
|
||||
[ --with-curl[=DIR] Include CURL support])
|
||||
|
||||
if test "$PHP_CURL" != "no"; then
|
||||
if test -r $PHP_CURL/include/curl/easy.h; then
|
||||
|
@ -31,4 +31,4 @@ if test "$PHP_CURL" != "no"; then
|
|||
AC_DEFINE(HAVE_CURL,1,[ ])
|
||||
|
||||
PHP_EXTENSION(curl, $ext_shared)
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -4,7 +4,7 @@ dnl don't forget to call PHP_EXTENSION(cybercash)
|
|||
AC_MSG_CHECKING(for CyberCash support)
|
||||
AC_ARG_WITH(cybercash,
|
||||
[ --with-cybercash[=DIR] Include CyberCash support. DIR is the CyberCash MCK
|
||||
install directory.],
|
||||
install directory.],
|
||||
[
|
||||
if test "$withval" != "no"; then
|
||||
test -f $withval/mckcrypt.h && MCK_DIR="$withval"
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
|
||||
AC_MSG_CHECKING(for Java support)
|
||||
AC_ARG_WITH(java,
|
||||
[ --with-java[=DIR] Include Java support. DIR is the base install
|
||||
directory for the JDK. This extension can only
|
||||
be built as a shared dl.],
|
||||
[ --with-java[=DIR] Include Java support. DIR is the base install
|
||||
directory for the JDK. This extension can only
|
||||
be built as a shared dl.],
|
||||
[
|
||||
if test "$withval" != "no"; then
|
||||
JAVA_SHARED="libphp_java.la"
|
||||
|
|
|
@ -2,7 +2,7 @@ dnl $Id$
|
|||
dnl config.m4 for extension pfpro
|
||||
|
||||
PHP_ARG_WITH(pfpro, whether to include Verisign Payflow Pro support,
|
||||
[ --with-pfpro[=DIR] Include Verisign Payflow Pro support])
|
||||
[ --with-pfpro[=DIR] Include Verisign Payflow Pro support])
|
||||
|
||||
if test "$PHP_PFPRO" != "no"; then
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ AC_DEFUN(PGSQL_INC_CHK,[if test -r $i$1/libpq-fe.h; then PGSQL_DIR=$i; PGSQL_INC
|
|||
PHP_ARG_WITH(pgsql,for PostgreSQL support,
|
||||
[ --with-pgsql[=DIR] Include PostgreSQL support. DIR is the PostgreSQL
|
||||
base install directory, defaults to /usr/local/pgsql.
|
||||
Set DIR to "shared" to build as a dl, or "shared,DIR"
|
||||
Set DIR to "shared" to build as a dl, or "shared,DIR"
|
||||
to build as a dl and still specify DIR.])
|
||||
|
||||
if test "$PHP_PGSQL" != "no"; then
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
|
||||
AC_MSG_CHECKING(for Java support)
|
||||
AC_ARG_WITH(java,
|
||||
[ --with-java[=DIR] Include Java support. DIR is the base install
|
||||
directory for the JDK. This extension can only
|
||||
be built as a shared dl.],
|
||||
[ --with-java[=DIR] Include Java support. DIR is the base install
|
||||
directory for the JDK. This extension can only
|
||||
be built as a shared dl.],
|
||||
[
|
||||
if test "$withval" != "no"; then
|
||||
JAVA_SHARED="libphp_java.la"
|
||||
|
|
|
@ -2,7 +2,7 @@ dnl $Id$
|
|||
dnl config.m4 for extension Sablot
|
||||
|
||||
PHP_ARG_WITH(sablot, for Sablotron XSL support,
|
||||
[ --with-sablot[=DIR] Include Sablotron support])
|
||||
[ --with-sablot[=DIR] Include Sablotron support])
|
||||
|
||||
if test "$PHP_SABLOT" != "no"; then
|
||||
if test -r $PHP_SABLOT/include/sablot.h; then
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
dnl $Id$
|
||||
PHP_ARG_ENABLE(shmop, whether to enable shmop support,
|
||||
[ --enable-shmop Enable shmop support])
|
||||
[ --enable-shmop Enable shmop support])
|
||||
|
||||
if test "$PHP_SHMOP" != "no"; then
|
||||
AC_DEFINE(HAVE_SHMOP, 1, [ ])
|
||||
|
|
|
@ -10,13 +10,13 @@ dnl If your extension references something external, use with:
|
|||
|
||||
dnl PHP_ARG_WITH(sockets, for sockets support,
|
||||
dnl Make sure that the comment is aligned:
|
||||
dnl [ --with-sockets Include sockets support])
|
||||
dnl [ --with-sockets Include sockets support])
|
||||
|
||||
dnl Otherwise use enable:
|
||||
|
||||
PHP_ARG_ENABLE(sockets, whether to enable sockets support,
|
||||
dnl Make sure that the comment is aligned:
|
||||
[ --enable-sockets Enable sockets support])
|
||||
[ --enable-sockets Enable sockets support])
|
||||
|
||||
if test "$PHP_SOCKETS" != "no"; then
|
||||
dnl If you will not be testing anything external, like existence of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue