mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #28676: merge from 3.6
This commit is contained in:
commit
cf767ab4da
2 changed files with 6 additions and 2 deletions
|
@ -437,6 +437,9 @@ Build
|
|||
- Issue #15819: Remove redundant include search directory option for building
|
||||
outside the source tree.
|
||||
|
||||
- Issue #28676: Prevent missing 'getentropy' declaration warning on macOS.
|
||||
Patch by Gareth Rees.
|
||||
|
||||
Tools/Demos
|
||||
-----------
|
||||
|
||||
|
|
|
@ -12,9 +12,10 @@
|
|||
# ifdef HAVE_LINUX_RANDOM_H
|
||||
# include <linux/random.h>
|
||||
# endif
|
||||
# ifdef HAVE_GETRANDOM
|
||||
# if defined(HAVE_GETRANDOM) || defined(HAVE_GETENTROPY)
|
||||
# include <sys/random.h>
|
||||
# elif defined(HAVE_GETRANDOM_SYSCALL)
|
||||
# endif
|
||||
# if !defined(HAVE_GETRANDOM) && defined(HAVE_GETRANDOM_SYSCALL)
|
||||
# include <sys/syscall.h>
|
||||
# endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue