diff options
Diffstat (limited to 'ext/openssl/config0.m4')
-rw-r--r-- | ext/openssl/config0.m4 | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/ext/openssl/config0.m4 b/ext/openssl/config0.m4 index 3b5836f1f8..df90e05ba3 100644 --- a/ext/openssl/config0.m4 +++ b/ext/openssl/config0.m4 @@ -1,13 +1,23 @@ dnl config.m4 for extension openssl -PHP_ARG_WITH(openssl, for OpenSSL support, -[ --with-openssl Include OpenSSL support (requires OpenSSL >= 1.0.1)]) +PHP_ARG_WITH([openssl], + [for OpenSSL support], + [AS_HELP_STRING([--with-openssl], + [Include OpenSSL support (requires OpenSSL >= 1.0.1)])]) -PHP_ARG_WITH(kerberos, for Kerberos support, -[ --with-kerberos[=DIR] OPENSSL: Include Kerberos support], no, no) +PHP_ARG_WITH([kerberos], + [for Kerberos support], + [AS_HELP_STRING([[--with-kerberos[=DIR]]], + [OPENSSL: Include Kerberos support])], + [no], + [no]) -PHP_ARG_WITH(system-ciphers, whether to use system default cipher list instead of hardcoded value, -[ --with-system-ciphers OPENSSL: Use system default cipher list instead of hardcoded value], no, no) +PHP_ARG_WITH([system-ciphers], + [whether to use system default cipher list instead of hardcoded value], + [AS_HELP_STRING([--with-system-ciphers], + [OPENSSL: Use system default cipher list instead of hardcoded value])], + [no], + [no]) if test "$PHP_OPENSSL" != "no"; then PHP_NEW_EXTENSION(openssl, openssl.c xp_ssl.c, $ext_shared) |