diff options
author | David Carlier <dcarlier@afilias.info> | 2018-01-09 19:38:07 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2018-01-09 19:38:07 (GMT) |
commit | b4ebaa7099c3413b42a97777581c4ca560fe7540 (patch) | |
tree | bbcd366879bb2595307e5a1305de5e2fd954bf5f /configure | |
parent | 2ab3a8fd264f24baf321b861a997bf8848f232d5 (diff) | |
download | cpython-b4ebaa7099c3413b42a97777581c4ca560fe7540.zip cpython-b4ebaa7099c3413b42a97777581c4ca560fe7540.tar.gz cpython-b4ebaa7099c3413b42a97777581c4ca560fe7540.tar.bz2 |
bpo-32493: Not only AIX, but FreeBSD has uuid_create support (#5089)
Allow building the _uuid extension module on FreeBSD and OpenBSD.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9560,8 +9560,9 @@ fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # AIX provides support for RFC4122 (uuid) in libc.a starting with AIX 6.1 (anno 2007) -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for RFC4122 - uuid support on AIX" >&5 -$as_echo_n "checking for RFC4122 - uuid support on AIX... " >&6; } +# FreeBSD and OpenBSD provides support as well +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_create" >&5 +$as_echo_n "checking for uuid_create... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <uuid.h> |