File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments