File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Release date: TBA
1010Core and Builtins
1111-----------------
1212
13+ - Issue #28932: Do not include <sys/random.h> if it does not exist.
14+
1315- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
1416 must not convert combined table into split table.
1517
Original file line number Diff line number Diff line change 99# ifdef HAVE_LINUX_RANDOM_H
1010# include <linux/random.h>
1111# endif
12- # if defined( HAVE_GETRANDOM ) || defined( HAVE_GETENTROPY )
12+ # ifdef HAVE_SYS_RANDOM_H
1313# include <sys/random.h>
1414# endif
1515# if !defined(HAVE_GETRANDOM ) && defined(HAVE_GETRANDOM_SYSCALL )
Original file line number Diff line number Diff line change @@ -7714,7 +7714,7 @@ unistd.h utime.h \
77147714poll.h sys/devpoll.h sys/epoll.h sys/poll.h \
77157715sys/audioio.h sys/xattr.h sys/bsdtty.h sys/event.h sys/file.h sys/ioctl.h \
77167716sys/kern_control.h sys/loadavg.h sys/lock.h sys/mkdev.h sys/modem.h \
7717- sys/param.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \
7717+ sys/param.h sys/random.h sys/ select.h sys/sendfile.h sys/socket.h sys/statvfs.h \
77187718sys/stat.h sys/syscall.h sys/sys_domain.h sys/termio.h sys/time.h \
77197719sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \
77207720libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \
Original file line number Diff line number Diff line change @@ -1946,7 +1946,7 @@ unistd.h utime.h \
19461946poll.h sys/devpoll.h sys/epoll.h sys/poll.h \
19471947sys/audioio.h sys/xattr.h sys/bsdtty.h sys/event.h sys/file.h sys/ioctl.h \
19481948sys/kern_control.h sys/loadavg.h sys/lock.h sys/mkdev.h sys/modem.h \
1949- sys/param.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \
1949+ sys/param.h sys/random.h sys/ select.h sys/sendfile.h sys/socket.h sys/statvfs.h \
19501950sys/stat.h sys/syscall.h sys/sys_domain.h sys/termio.h sys/time.h \
19511951sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \
19521952libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \
Original file line number Diff line number Diff line change 10051005/* Define to 1 if you have the <sys/poll.h> header file. */
10061006#undef HAVE_SYS_POLL_H
10071007
1008+ /* Define to 1 if you have the <sys/random.h> header file. */
1009+ #undef HAVE_SYS_RANDOM_H
1010+
10081011/* Define to 1 if you have the <sys/resource.h> header file. */
10091012#undef HAVE_SYS_RESOURCE_H
10101013
You can’t perform that action at this time.
0 commit comments