mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
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.
This commit is contained in:
parent
319c0345cd
commit
c5ae169e1b
9 changed files with 402 additions and 2 deletions
|
|
@ -13007,6 +13007,9 @@ all_ins(PyObject *m)
|
|||
#if HAVE_DECL_RTLD_DEEPBIND
|
||||
if (PyModule_AddIntMacro(m, RTLD_DEEPBIND)) return -1;
|
||||
#endif
|
||||
#if HAVE_DECL_RTLD_MEMBER
|
||||
if (PyModule_AddIntMacro(m, RTLD_MEMBER)) return -1;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_GETRANDOM_SYSCALL
|
||||
if (PyModule_AddIntMacro(m, GRND_RANDOM)) return -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue