henderkes
fd882ce03e
forward port #1138
2026-05-16 19:11:35 +07:00
Marc
fd4f70d526
oops
2026-05-07 16:51:56 +07:00
henderkes
c7738749e2
run tests
2026-05-07 16:33:39 +07:00
henderkes
44f9cb1ffd
fix centos 7 gd build
2026-05-07 16:27:26 +07:00
Jerry Ma
970343b143
Fix old PHP extension with newer C standard bug ( #1089 )
2026-05-06 14:38:34 +08:00
Marc
e21bb528c0
Apply suggestion from @henderkes
2026-05-06 12:52:50 +07:00
crazywhalecc
7a71a40824
Test
2026-04-30 11:22:56 +08:00
crazywhalecc
93a227bc6d
Fix mongodb 2.3.0 introduced in-tree build bug
2026-04-30 11:14:01 +08:00
crazywhalecc
0588401ee3
Improve GitHub source retrieval by using latest release endpoint and enhancing version handling
2026-04-30 11:05:49 +08:00
Marc
450e0e1ecb
Add 'date', 'lexbor', 'random', and 'uri' to extensions
2026-04-23 18:55:35 +07:00
Jerry Ma
a373df2444
Fix libde265 on arm64 macOS asm build bug ( #1117 )
2026-04-22 15:59:03 +08:00
Jerry Ma
4e9edf6c9d
Update src/SPC/builder/unix/library/libde265.php
2026-04-21 00:21:52 +08:00
crazywhalecc
14fc3f8d87
Fix libde265 on arm64 macOS asm build bug
2026-04-20 23:55:00 +08:00
henderkes
f52e8ad449
patch 8.3 src to use avx512 cache vars
2026-04-20 07:32:13 +00:00
henderkes
0a3c56ba49
set lcompiler_rt only when building shared extensions
2026-04-17 17:04:57 +07:00
Alex Rock Ancelet
b1a77b01e2
Add linux mint to ubuntu/debian variants
2026-04-17 17:04:57 +07:00
henderkes
f39d77dde0
lint
2026-04-17 14:19:29 +07:00
henderkes
cc7a22922c
add -lcompiler_rt to SPC_COMPILER_EXTRA instead
2026-04-17 14:17:39 +07:00
henderkes
1a395a2b0f
fix zig 0.16.0
2026-04-17 01:51:01 +07:00
henderkes
ab17fbe288
zig version 0.15.2 for now
2026-04-16 20:02:54 +07:00
henderkes
f57986ccbf
minify embed script
2026-04-16 18:06:27 +07:00
henderkes
2073652744
fix macOS
2026-04-16 14:29:13 +07:00
henderkes
834cc4d16e
fix lint
2026-04-16 13:50:52 +07:00
henderkes
a9c16b74d7
fix libkrb5 and decimal shard build
2026-04-16 13:46:12 +07:00
henderkes
73dd885342
pin openssl to 3.x
2026-04-15 10:59:13 +07:00
henderkes
be24fd9467
remove workaround for zig < 0.16
2026-04-14 23:05:08 +07:00
crazywhalecc
1c3dc91845
Fix paths for PostgreSQL library and header file copying on Windows
2026-04-14 11:25:15 +08:00
Marc
f48961c72d
Remove unused import in libmpdec.php
...
Removed unused import of FileSystem.
2026-04-12 16:09:55 +07:00
henderkes
a0c2fefd24
fix windows crash
2026-04-12 15:55:57 +07:00
henderkes
f585cc446a
attempt
2026-04-12 13:30:22 +07:00
Marc
3fb68f3989
Merge branch 'main' into feat/decimal
2026-04-12 12:31:00 +07:00
henderkes
4f27d2d9d1
add ext-decimal
2026-04-12 12:28:27 +07:00
henderkes
cbf1ed7662
full test suite
2026-04-12 10:57:25 +07:00
crazywhalecc
0ed1bbc74a
Fix typo
2026-04-11 01:01:21 +08:00
crazywhalecc
1272acd07e
Fix bcmath with c23 bug
2026-04-11 01:00:30 +08:00
crazywhalecc
864fa9d0eb
Fix #1083
2026-04-10 16:09:35 +08:00
crazywhalecc
a27f5cc8be
Oops
2026-04-10 14:26:03 +08:00
crazywhalecc
26a14bccbe
Disable iouring on glibc build
2026-04-10 14:21:06 +08:00
crazywhalecc
da49c056c9
test
2026-04-10 12:49:10 +08:00
crazywhalecc
7fc5dd428d
Fix krb5 CI build by the way
2026-04-10 12:24:25 +08:00
crazywhalecc
6b62255091
test
2026-04-10 12:21:21 +08:00
crazywhalecc
9d777ca650
fix(icu_static_win): update paths for ICU static libraries and includes
2026-04-09 23:37:36 +08:00
Marc
fb7730989c
Apply suggestions from code review
...
Co-authored-by: Marc <m@pyc.ac >
2026-04-09 14:00:10 +07:00
Kévin Dunglas
4d2036f20e
fix(xlswriter): use -std=gnu17 to fix K&R declarations rejected by C23
...
The bundled minizip in xlswriter has K&R C function declarations in
multiple files (mztools.c, ioapi.c). Apple Clang (Xcode 16+) defaults
to C23, which removed K&R from the standard, causing hard build errors.
Instead of patching individual files, downgrade the C standard to gnu17
for the whole build when xlswriter is enabled. This covers all K&R
occurrences in the bundled code.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-09 08:49:49 +02:00
Kévin Dunglas
105f0328e6
fix(xlswriter): convert K&R function declaration to ANSI C in bundled minizip
...
The bundled minizip in xlswriter (pinned at libxlsxwriter RELEASE_1.0.0)
uses a K&R-style function declaration in mztools.c. Modern Clang on macOS
(defaulting to C23) rejects this as a hard syntax error since K&R
declarations were removed from the C23 standard.
The upstream libxlsxwriter has already fixed this on their main branch.
This patch applies the same fix during the build process.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-08 21:33:59 +02:00
henderkes
ddb9e3e7e4
add framework coreservices to watcher library
2026-04-04 18:18:22 +07:00
crazywhalecc
0b2b1d51e1
Fix file paths for SQLSRV
2026-04-04 18:39:28 +08:00
Jerry Ma
cd3eb3d41d
Update src/globals/ext-tests/openssl.php
2026-04-03 19:53:23 +08:00
crazywhalecc
fb8f8d4ef8
Correct openssl test script condition
2026-04-03 15:49:02 +08:00
crazywhalecc
1a476d0e80
Fix xcopy command in FileSystem.php by removing the 'v' flag
2026-04-03 15:34:56 +08:00