mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
e9959c7118
commit
1dd6d956a3
4 changed files with 3 additions and 202 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue