We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cbe4ea commit 81e7a0cCopy full SHA for 81e7a0c
src/SPC/builder/extension/openssl.php
@@ -30,6 +30,8 @@ public function getUnixConfigureArg(bool $shared = false): string
30
$args = '--with-openssl=' . ($shared ? 'shared,' : '') . BUILD_ROOT_PATH . $openssl_dir;
31
if ($this->builder->getPHPVersionID() >= 80500 || !$this->builder->getOption('enable-zts')) {
32
$args .= ' --with-openssl-argon2 OPENSSL_LIBS="-lz"';
33
+ } else {
34
+ $args .= ' --without-openssl-argon2';
35
}
36
return $args;
37
0 commit comments