Skip to content

Commit 0285e9a

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Include relevant system headers before defining fallbacks
2 parents c4c536d + fcbfd5a commit 0285e9a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ PHP NEWS
4141
- FPM:
4242
. Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already
4343
locked)). (Jakub Zelenka)
44+
. Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos)
4445

4546
- GD:
4647
. Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c).
@@ -53,6 +54,9 @@ PHP NEWS
5354
- Iconv:
5455
. Fixed bug GH-17047 (UAF on iconv filter failure). (nielsdos)
5556

57+
- MBString:
58+
. Fixed bug GH-17112 (Macro redefinitions). (nielsdos, cmb)
59+
5660
- Opcache:
5761
. opcache_get_configuration() properly reports jit_prof_threshold. (cmb)
5862
. Fixed bug GH-17140 (Assertion failure in JIT trace exit with

sapi/fpm/fpm/fpm_config.h

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
#include <php_config.h>
44

5+
#ifdef HAVE_ARPA_INET_H
6+
# include <arpa/inet.h>
7+
#endif
8+
#ifdef HAVE_NETINET_IN_H
9+
# include <netinet/in.h>
10+
#endif
11+
#ifdef HAVE_SYS_TIME_H
12+
# include <sys/time.h>
13+
#endif
14+
515
/* Solaris does not have it */
616
#ifndef INADDR_NONE
717
# define INADDR_NONE (-1)

0 commit comments

Comments
 (0)