summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-06-09 22:19:57 (GMT)
committerGitHub <noreply@github.com>2018-06-09 22:19:57 (GMT)
commitced0adb2638e4c02945bfa82e15595918eef74f1 (patch)
tree5373276ed1ae3aab964331ada60df7af4a030418
parentea62ce7f4fefc66bc0adba16bcd7666d5bbd5b44 (diff)
downloadcpython-ced0adb2638e4c02945bfa82e15595918eef74f1.zip
cpython-ced0adb2638e4c02945bfa82e15595918eef74f1.tar.gz
cpython-ced0adb2638e4c02945bfa82e15595918eef74f1.tar.bz2
bpo-32493: Correct test for uuid_enc_be availability in configure.ac. (GH-7511) (GH-7567)
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-07-18-55-35.bpo-32493.1Bte62.rst2
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
3 files changed, 4 insertions, 6 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-07-18-55-35.bpo-32493.1Bte62.rst b/Misc/NEWS.d/next/Library/2018-06-07-18-55-35.bpo-32493.1Bte62.rst
new file mode 100644
index 0000000..3d8bb3e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-07-18-55-35.bpo-32493.1Bte62.rst
@@ -0,0 +1,2 @@
+Correct test for ``uuid_enc_be`` availability in ``configure.ac``.
+Patch by Michael Felt. \ No newline at end of file
diff --git a/configure b/configure
index f5bea4f..5187c6f 100755
--- a/configure
+++ b/configure
@@ -9632,9 +9632,7 @@ main ()
{
#ifndef uuid_enc_be
-uuid_t uuid;
-unsigned char buf[sizeof(uuid)];
-uuid_enc_be(buf, &uuid);
+void *x = uuid_enc_be
#endif
;
diff --git a/configure.ac b/configure.ac
index 67cf817..b13728e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2716,9 +2716,7 @@ void *x = uuid_create
AC_MSG_CHECKING(for uuid_enc_be)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <uuid.h>]], [[
#ifndef uuid_enc_be
-uuid_t uuid;
-unsigned char buf[sizeof(uuid)];
-uuid_enc_be(buf, &uuid);
+void *x = uuid_enc_be
#endif
]])],
[AC_DEFINE(HAVE_UUID_ENC_BE, 1, Define if uuid_enc_be() exists.)