diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-04 06:44:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-04 06:44:44 (GMT) |
commit | c2f7d878972db908f5a1bad7af94c692b6d8c564 (patch) | |
tree | 5687eaadba2b722df2bf6c954fc44ebdcf67bcdf /pyconfig.h.in | |
parent | 0e120525f0a2dfcd417905593cad27169907a4d5 (diff) | |
download | cpython-c2f7d878972db908f5a1bad7af94c692b6d8c564.zip cpython-c2f7d878972db908f5a1bad7af94c692b6d8c564.tar.gz cpython-c2f7d878972db908f5a1bad7af94c692b6d8c564.tar.bz2 |
Issue #26932: Fixed support of RTLD_* constants defined as enum values,
not via macros (in particular on Android). Patch by Chi Hsuan Yen.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index b51bd56..0451855 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -167,6 +167,34 @@ */ #undef HAVE_DECL_ISNAN +/* Define to 1 if you have the declaration of `RTLD_DEEPBIND', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_DEEPBIND + +/* Define to 1 if you have the declaration of `RTLD_GLOBAL', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_GLOBAL + +/* Define to 1 if you have the declaration of `RTLD_LAZY', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_LAZY + +/* Define to 1 if you have the declaration of `RTLD_LOCAL', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_LOCAL + +/* Define to 1 if you have the declaration of `RTLD_NODELETE', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_NODELETE + +/* Define to 1 if you have the declaration of `RTLD_NOLOAD', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_NOLOAD + +/* Define to 1 if you have the declaration of `RTLD_NOW', and to 0 if you + don't. */ +#undef HAVE_DECL_RTLD_NOW + /* Define to 1 if you have the declaration of `tzname', and to 0 if you don't. */ #undef HAVE_DECL_TZNAME |