File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.1.12
4
4
5
+ - Core:
6
+ . Fixes segfault with Fiber on FreeBSD i386 architecture. (David Carlier)
7
+
5
8
- Fileinfo:
6
9
. Fixed bug GH-8805 (finfo returns wrong mime type for woff/woff2 files).
7
10
(Anatol)
Original file line number Diff line number Diff line change @@ -1211,6 +1211,7 @@ AS_CASE([$host_cpu],
1211
1211
AS_CASE ( [ $host_os] ,
1212
1212
[ darwin*] , [ fiber_os="mac"] ,
1213
1213
[ aix*|os400*] , [ fiber_os="aix"] ,
1214
+ [ freebsd*] , [ fiber_os="freebsd"] ,
1214
1215
[ fiber_os="other"]
1215
1216
)
1216
1217
@@ -1234,6 +1235,15 @@ elif test "$fiber_os" = 'aix'; then
1234
1235
# AIX uses a different calling convention (shared with non-_CALL_ELF Linux).
1235
1236
# The AIX assembler isn't GNU, but the file is compatible.
1236
1237
fiber_asm_file="${fiber_asm_file_prefix}_xcoff_gas"
1238
+ elif test "$fiber_os" = 'freebsd'; then
1239
+ case $fiber_cpu in
1240
+ i386*)
1241
+ fiber_asm="no"
1242
+ ;;
1243
+ *)
1244
+ fiber_asm_file="${fiber_asm_file_prefix}_elf_gas"
1245
+ ;;
1246
+ esac
1237
1247
elif test "$fiber_asm_file_prefix" != 'unknown'; then
1238
1248
fiber_asm_file="${fiber_asm_file_prefix}_elf_gas"
1239
1249
else
You can’t perform that action at this time.
0 commit comments