diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-12-21 00:16:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-12-21 00:16:38 (GMT) |
commit | fe02e3902920181b76e7e7a9c761209b7ddb1be1 (patch) | |
tree | 6dc0382c3faae561c2ccd1d2cd38fcbd0f4c3b99 /configure.ac | |
parent | 94cb7a24298ee0a4d6a3bb6b8ae80a7729e9f788 (diff) | |
download | cpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.zip cpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.tar.gz cpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.tar.bz2 |
Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),
instead of reading /dev/urandom, to get pseudo-random bytes.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8177e27..21f4152 100644 --- a/configure.ac +++ b/configure.ac @@ -2935,7 +2935,7 @@ fi AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr ctermid dup3 execv faccessat fchmod fchmodat fchown fchownat \ fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ - futimens futimes gai_strerror \ + futimens futimes gai_strerror getentropy \ getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ if_nameindex \ |