diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-11-08 21:43:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-08 21:43:14 (GMT) |
commit | 0e163d2ced28ade8ff526e8c663faf03c2c0b168 (patch) | |
tree | b799d4d5191b70038c83f82bca999fbd686d5113 /configure | |
parent | 9a10ff4deb2494e22bc0dbea3e3a6f9e8354d995 (diff) | |
download | cpython-0e163d2ced28ade8ff526e8c663faf03c2c0b168.zip cpython-0e163d2ced28ade8ff526e8c663faf03c2c0b168.tar.gz cpython-0e163d2ced28ade8ff526e8c663faf03c2c0b168.tar.bz2 |
bpo-11063: Use more reliable way to check if uuid function exists (GH-4343)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -9522,8 +9522,7 @@ main () { #ifndef uuid_generate_time_safe -uuid_t out; -uuid_generate_time_safe(out); +void *x = uuid_generate_time_safe #endif ; |