File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ PHP NEWS
32
32
- FPM:
33
33
. Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already
34
34
locked)). (Jakub Zelenka)
35
+ . Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos)
35
36
36
37
- GD:
37
38
. Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c).
@@ -44,6 +45,9 @@ PHP NEWS
44
45
- Iconv:
45
46
. Fixed bug GH-17047 (UAF on iconv filter failure). (nielsdos)
46
47
48
+ - MBString:
49
+ . Fixed bug GH-17112 (Macro redefinitions). (nielsdos, cmb)
50
+
47
51
- Opcache:
48
52
. opcache_get_configuration() properly reports jit_prof_threshold. (cmb)
49
53
Original file line number Diff line number Diff line change 2
2
3
3
#include <php_config.h>
4
4
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
+
5
15
/* Solaris does not have it */
6
16
#ifndef INADDR_NONE
7
17
# define INADDR_NONE (-1)
You can’t perform that action at this time.
0 commit comments