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
This commit is contained in:
Peter Kokot
2019-03-03 16:44:16 +01:00
parent 9051f19768
commit 37425b5d92

View File

@@ -1,6 +1,8 @@
PHP_ARG_WITH(interbase,for Firebird support,
[ --with-interbase[=DIR] Include Firebird support. DIR is the Firebird base
install directory [/opt/firebird]])
PHP_ARG_WITH([interbase],
[for Firebird support],
[AS_HELP_STRING([[--with-interbase[=DIR]]],
[Include Firebird support. DIR is the Firebird base install directory
[/opt/firebird]])])
if test "$PHP_INTERBASE" != "no"; then