diff options
author | Kevin Adler <kadler@us.ibm.com> | 2020-10-16 13:03:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 13:03:28 -0500 |
commit | 1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9 (patch) | |
tree | f4be10c0a88e8e72c44427da06defbe464897364 /configure.ac | |
parent | bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) (diff) | |
download | cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.tar.gz cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.tar.bz2 cpython-1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9.zip |
closes bpo-42030: Remove legacy AIX dynload support (GH-22717)
Since c19c5a6, AIX builds have defaulted to using dynload_shlib over
dynload_aix when dlopen is available. This function has been available
since AIX 4.3, which went out of support in 2003, the same year the
previously referenced commit was made. It has been nearly 20 years
since a version of AIX has been supported which has not used
dynload_shlib so there's no reason to keep this legacy code around.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 3ec274c576e..6ffe90a4c42 100644 --- a/configure.ac +++ b/configure.ac @@ -3622,12 +3622,6 @@ AC_MSG_CHECKING(DYNLOADFILE) if test -z "$DYNLOADFILE" then case $ac_sys_system/$ac_sys_release in - AIX*) # Use dynload_shlib.c and dlopen() if we have it; otherwise dynload_aix.c - if test "$ac_cv_func_dlopen" = yes - then DYNLOADFILE="dynload_shlib.o" - else DYNLOADFILE="dynload_aix.o" - fi - ;; hp*|HP*) DYNLOADFILE="dynload_hpux.o";; *) # use dynload_shlib.c and dlopen() if we have it; otherwise stub |