specify --with-openssl-dir in php ./configure

I'm not sure if this is correct, please revert if it doesn't fix the issue
This commit is contained in:
DubbleClick 2023-10-27 18:22:43 +02:00
parent d40f2cafec
commit 2e47e8af6b
2 changed files with 6 additions and 1 deletions

View File

@ -232,7 +232,7 @@
},
"openssl": {
"type": "builtin",
"arg-type": "with",
"arg-type": "custom",
"lib-depends": [
"openssl"
],

View File

@ -22,4 +22,9 @@ class openssl extends Extension
return false;
}
public function getUnixConfigureArg(): string
{
return '--with-openssl=' . BUILD_ROOT_PATH . ' --with-openssl-dir=' . BUILD_ROOT_PATH;
}
}