diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-06-07 09:25:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-06-07 09:25:43 (GMT) |
commit | 9ff9cbd600f0290df20c73a31a9c4d43f3cf61d6 (patch) | |
tree | 7dfb6ce341c9fb0b9220d046f2e63805b773e16d /configure | |
parent | cb3a581636135556429b2036663e91c043c2bfd8 (diff) | |
parent | dddf4849ec1750ca02d03b9772eff7141ba626f3 (diff) | |
download | cpython-9ff9cbd600f0290df20c73a31a9c4d43f3cf61d6.zip cpython-9ff9cbd600f0290df20c73a31a9c4d43f3cf61d6.tar.gz cpython-9ff9cbd600f0290df20c73a31a9c4d43f3cf61d6.tar.bz2 |
Merge 3.5 (os.urandom)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2876,6 +2876,7 @@ fi ac_config_headers="$ac_config_headers pyconfig.h" + ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then @@ -7568,7 +7569,7 @@ sys/param.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ sys/stat.h sys/syscall.h sys/sys_domain.h sys/termio.h sys/time.h \ sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \ libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ -bluetooth/bluetooth.h linux/tipc.h spawn.h util.h alloca.h endian.h \ +bluetooth/bluetooth.h linux/tipc.h linux/random.h spawn.h util.h alloca.h endian.h \ sys/endian.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` @@ -16431,12 +16432,13 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext #include <unistd.h> #include <sys/syscall.h> + #include <linux/random.h> int main() { char buffer[1]; const size_t buflen = sizeof(buffer); - const int flags = 0; - /* ignore the result, Python checks for ENOSYS at runtime */ + const int flags = GRND_NONBLOCK; + /* ignore the result, Python checks for ENOSYS and EAGAIN at runtime */ (void)syscall(SYS_getrandom, buffer, buflen, flags); return 0; } |