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 f1a9a28 commit b644da8Copy full SHA for b644da8
src/SPC/builder/extension/openssl.php
@@ -5,23 +5,11 @@
5
namespace SPC\builder\extension;
6
7
use SPC\builder\Extension;
8
-use SPC\store\FileSystem;
9
use SPC\util\CustomExt;
10
11
#[CustomExt('openssl')]
12
class openssl extends Extension
13
{
14
- public function patchBeforeBuildconf(): bool
15
- {
16
- // Fix php 8.5 alpha1~4 zts openssl build bug
17
- FileSystem::replaceFileStr(
18
- SOURCE_PATH . '/php-src/ext/openssl/config.w32',
19
- 'WARNING("OpenSSL argon2 hashing not supported in ZTS mode for now");',
20
- 'AC_DEFINE("HAVE_OPENSSL_ARGON2", 1, "Define to 1 to enable OpenSSL argon2 password hashing.");'
21
- );
22
- return true;
23
- }
24
-
25
public function patchBeforeMake(): bool
26
27
$patched = parent::patchBeforeMake();
0 commit comments