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 /pyconfig.h.in | |
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 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 66b9e88..d828d48 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -210,6 +210,10 @@ don't. */ #undef HAVE_DECL_RTLD_LOCAL +/* Define to 1 if you have the declaration of `RTLD_MEMBER', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_MEMBER + /* Define to 1 if you have the declaration of `RTLD_NODELETE', and to 0 if you don't. */ #undef HAVE_DECL_RTLD_NODELETE |