diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2017-12-19 12:58:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-19 12:58:49 (GMT) |
commit | c5ae169e1b73315672770517bf51cf8464286c76 (patch) | |
tree | 799e3be3da572d073580c444ff877bff8f1efd18 /configure.ac | |
parent | 319c0345cdd8fddb49d235462e71883f1dd51b99 (diff) | |
download | cpython-c5ae169e1b73315672770517bf51cf8464286c76.zip cpython-c5ae169e1b73315672770517bf51cf8464286c76.tar.gz cpython-c5ae169e1b73315672770517bf51cf8464286c76.tar.bz2 |
bpo-26439 Fix ctypes.util.find_library failure on AIX (#4507)
Implement find_library() support in ctypes/util for AIX.
Add some AIX specific tests.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 828dadb..48eaa2a 100644 --- a/configure.ac +++ b/configure.ac @@ -4480,7 +4480,7 @@ then [define to 1 if your sem_getvalue is broken.]) fi -AC_CHECK_DECLS([RTLD_LAZY, RTLD_NOW, RTLD_GLOBAL, RTLD_LOCAL, RTLD_NODELETE, RTLD_NOLOAD, RTLD_DEEPBIND], [], [], [[#include <dlfcn.h>]]) +AC_CHECK_DECLS([RTLD_LAZY, RTLD_NOW, RTLD_GLOBAL, RTLD_LOCAL, RTLD_NODELETE, RTLD_NOLOAD, RTLD_DEEPBIND, RTLD_MEMBER], [], [], [[#include <dlfcn.h>]]) # determine what size digit to use for Python's longs AC_MSG_CHECKING([digit size for Python's longs]) |