summaryrefslogtreecommitdiff
path: root/ext/zip
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-03-03 16:44:16 +0100
committerPeter Kokot <peterkokot@gmail.com>2019-03-07 20:36:59 +0100
commit9df6a1e4dd84a39bfaec70d7d008b61f7bbae347 (patch)
treee2fab1605436e20d798d7b8c17ec84aa8c28d25b /ext/zip
parent2580a7ba092b4ed9f4a9860d911e2e17ec545ef5 (diff)
downloadphp-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 'ext/zip')
-rw-r--r--ext/zip/config.m416
1 files changed, 11 insertions, 5 deletions
diff --git a/ext/zip/config.m4 b/ext/zip/config.m4
index 5c88231f54..41b6ca8341 100644
--- a/ext/zip/config.m4
+++ b/ext/zip/config.m4
@@ -1,10 +1,16 @@
dnl config.m4 for extension zip
-PHP_ARG_ENABLE(zip, for zip archive read/writesupport,
-[ --enable-zip Include Zip read/write support])
-
-PHP_ARG_WITH(libzip, libzip,
-[ --with-libzip[=DIR] ZIP: use libzip], yes, no)
+PHP_ARG_ENABLE([zip],
+ [for zip archive read/writesupport],
+ [AS_HELP_STRING([--enable-zip],
+ [Include Zip read/write support])])
+
+PHP_ARG_WITH([libzip],
+ [libzip],
+ [AS_HELP_STRING([[--with-libzip[=DIR]]],
+ [ZIP: use libzip])],
+ [yes],
+ [no])
if test "$PHP_ZIP" != "no"; then