File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ PHP NEWS
14
14
. Fixed #74866 (extension_dir = "./ext" now use current directory for base).
15
15
(Francois Laupretre)
16
16
. Fixed bug #74923 (Crash when crawling through network share). (Anatol)
17
+ . Fixed bug #74913 (fixed incorrect poll.h include). (petk)
17
18
18
19
- Date:
19
20
. Fixed bug #74852 (property_exists returns true on unknown DateInterval
Original file line number Diff line number Diff line change 39
39
# include <sys/select.h>
40
40
# include <sys/time.h>
41
41
# include <sys/types.h>
42
- # include <sys/poll.h>
42
+ # if HAVE_POLL_H
43
+ # include <poll.h>
44
+ # elif HAVE_SYS_POLL_H
45
+ # include <sys/poll.h>
46
+ # endif
43
47
# include <netinet/in.h>
44
48
# include <unistd.h>
45
49
# include <arpa/inet.h>
You can’t perform that action at this time.
0 commit comments