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 10d0486 commit 1d3f24dCopy full SHA for 1d3f24d
extension/BuildPhpExtension/patches/scrypt.ps1
@@ -0,0 +1,12 @@
1
+$file = @(
2
+ "crypto/params.c",
3
+ "crypto/sha256.c",
4
+ "crypto/sha256.h",
5
+ "crypto/sysendian.h",
6
+ "crypto/crypto_scrypt-nosse.c",
7
+ "crypto/crypto_scrypt.h",
8
+ "php_scrypt_utils.h"
9
+)
10
+foreach ($f in $file) {
11
+ (Get-Content $f) | ForEach-Object { $_ -replace '"win32/php_stdint.h"', '<stdint.h>' } | Set-Content $f
12
+}
0 commit comments