bpo-11063: Add a configure check for uuid_generate_time_safe by berkerpeksag · Pull Request #4287 · python/cpython (original) (raw)
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That looks autogenerated. The configure check works here on Linux.
With the patch:
checking for uuid_generate_time_safe in -luuid... yes
Now use a non-existing function name:
AC_CHECK_LIB(uuid, uuid_generate_time_unsafe)
checking for uuid_generate_time_unsafe in -luuid... no
I did not look at the autogenerated configure
, but it seems to work here.