diff options
author | Peter Kokot <peterkokot@gmail.com> | 2019-03-03 16:44:16 +0100 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-03-07 20:36:59 +0100 |
commit | 9df6a1e4dd84a39bfaec70d7d008b61f7bbae347 (patch) | |
tree | e2fab1605436e20d798d7b8c17ec84aa8c28d25b /sapi/apache2handler | |
parent | 2580a7ba092b4ed9f4a9860d911e2e17ec545ef5 (diff) | |
download | php-git-9df6a1e4dd84a39bfaec70d7d008b61f7bbae347.tar.gz |
Add AS_HELP_STRING to *nix build configure options
The Autoconf's default AS_HELP_STRING macro can properly format help
strings [1] so watching out if columns are aligned manually is not
anymore.
[1] https://www.gnu.org/software/autoconf/manual/autoconf.html#Pretty-Help-Strings
Diffstat (limited to 'sapi/apache2handler')
-rw-r--r-- | sapi/apache2handler/config.m4 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sapi/apache2handler/config.m4 b/sapi/apache2handler/config.m4 index 1e6916f602..d1d92db21f 100644 --- a/sapi/apache2handler/config.m4 +++ b/sapi/apache2handler/config.m4 @@ -1,8 +1,11 @@ dnl config.m4 for sapi apache2handler -PHP_ARG_WITH(apxs2,, -[ --with-apxs2[=FILE] Build shared Apache 2.0 Handler module. FILE is the optional - pathname to the Apache apxs tool [apxs]], no, no) +PHP_ARG_WITH([apxs2],, + [AS_HELP_STRING([[--with-apxs2[=FILE]]], + [Build shared Apache 2.0 Handler module. FILE is the optional pathname to + the Apache apxs tool [apxs]])], + [no], + [no]) AC_MSG_CHECKING([for Apache 2.0 handler-module support via DSO through APXS]) |