mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Document overwriting behaviour of PHP_ARG_WITH/ENABLE with regard
to ext_shared.
This commit is contained in:
parent
90243d2cf0
commit
b1393e1880
@ -263,7 +263,8 @@ AC_MSG_RESULT($ext_output)
|
||||
dnl
|
||||
dnl PHP_ARG_WITH(arg-name, check message, help text[, default-val])
|
||||
dnl Sets PHP_ARG_NAME either to the user value or to the default value.
|
||||
dnl default-val defaults to no.
|
||||
dnl default-val defaults to no. This will also set the variable ext_shared,
|
||||
dnl and will overwrite any previous variable of that name.
|
||||
dnl
|
||||
AC_DEFUN(PHP_ARG_WITH,[
|
||||
PHP_REAL_ARG_WITH([$1],[$2],[$3],[$4],PHP_[]translit($1,a-z0-9-,A-Z0-9_))
|
||||
@ -278,7 +279,8 @@ PHP_ARG_ANALYZE($5)
|
||||
dnl
|
||||
dnl PHP_ARG_ENABLE(arg-name, check message, help text[, default-val])
|
||||
dnl Sets PHP_ARG_NAME either to the user value or to the default value.
|
||||
dnl default-val defaults to no.
|
||||
dnl default-val defaults to no. This will also set the variable ext_shared,
|
||||
dnl and will overwrite any previous variable of that name.
|
||||
dnl
|
||||
AC_DEFUN(PHP_ARG_ENABLE,[
|
||||
PHP_REAL_ARG_ENABLE([$1],[$2],[$3],[$4],PHP_[]translit($1,a-z-,A-Z_))
|
||||
|
Loading…
Reference in New Issue
Block a user