diff options
author | Sascha Schumann <sas@php.net> | 2001-05-09 18:12:12 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-05-09 18:12:12 +0000 |
commit | b1393e18801e3bb5432b315d146eee36fedb8c1a (patch) | |
tree | 2b223112829007d2cf1878a1f5cdf4803535ab1b | |
parent | 90243d2cf0d883317f3f56beec74b930a96b4fb7 (diff) | |
download | php-git-b1393e18801e3bb5432b315d146eee36fedb8c1a.tar.gz |
Document overwriting behaviour of PHP_ARG_WITH/ENABLE with regard
to ext_shared.
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 39dc32866b..51960ef2c5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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_)) |