diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-09-17 16:16:31 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-09-17 16:16:31 +0200 |
commit | 66351025c8243563eb2b04e56eff9b50d367b286 (patch) | |
tree | 20f37beb875e3e8a7a901d665ac35cbdc8e8e59b | |
parent | b50a90867aa8235e4f7c85450c116ccef130e649 (diff) | |
download | php-git-66351025c8243563eb2b04e56eff9b50d367b286.tar.gz |
Enable --with-mhash on CI
-rw-r--r-- | azure/configure.yml | 1 | ||||
-rw-r--r-- | azure/i386/job.yml | 1 | ||||
-rw-r--r-- | azure/macos/job.yml | 1 | ||||
-rw-r--r-- | ext/hash/config.m4 | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/azure/configure.yml b/azure/configure.yml index 15f6847e0b..9de67ae13f 100644 --- a/azure/configure.yml +++ b/azure/configure.yml @@ -54,6 +54,7 @@ steps: --with-ldap \ --with-ldap-sasl \ --with-password-argon2 \ + --with-mhash \ --enable-werror \ --with-config-file-path=/etc \ --with-config-file-scan-dir=/etc/php.d diff --git a/azure/i386/job.yml b/azure/i386/job.yml index f93a1a7685..623f7e1e29 100644 --- a/azure/i386/job.yml +++ b/azure/i386/job.yml @@ -61,6 +61,7 @@ jobs: --enable-sysvmsg \ --with-ffi \ --enable-zend-test \ + --with-mhash \ --enable-werror \ --with-config-file-path=/etc \ --with-config-file-scan-dir=/etc/php.d diff --git a/azure/macos/job.yml b/azure/macos/job.yml index ef1091724d..2b179aff5f 100644 --- a/azure/macos/job.yml +++ b/azure/macos/job.yml @@ -64,6 +64,7 @@ jobs: --with-ffi \ --enable-zend-test \ --enable-intl \ + --with-mhash \ --enable-werror \ --with-config-file-path=/etc \ --with-config-file-scan-dir=/etc/php.d diff --git a/ext/hash/config.m4 b/ext/hash/config.m4 index 111574e749..03c4d83968 100644 --- a/ext/hash/config.m4 +++ b/ext/hash/config.m4 @@ -1,6 +1,6 @@ PHP_ARG_WITH([mhash], [for mhash support], - [AS_HELP_STRING([[--with-mhash[=DIR]]], + [AS_HELP_STRING([[--with-mhash]], [Include mhash support])]) if test "$PHP_MHASH" != "no"; then |