mirror of https://github.com/python/cpython
bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using configure (GH-23708)
Now all platforms use a value for the "EXT_SUFFIX" build variable derived from SOABI (for instance in FreeBSD, "EXT_SUFFIX" is now ".cpython-310d.so" instead of ".so"). Previously only Linux, Mac and VxWorks were using a value for "EXT_SUFFIX" that included "SOABI". Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
This commit is contained in:
parent
09a36cdfb7
commit
a44ce6c9f7
|
@ -0,0 +1,4 @@
|
||||||
|
Now all platforms use a value for the "EXT_SUFFIX" build variable derived
|
||||||
|
from SOABI (for instance in freeBSD, "EXT_SUFFIX" is now ".cpython-310d.so"
|
||||||
|
instead of ".so"). Previosuly only Linux, Mac and VxWorks were using a value
|
||||||
|
for "EXT_SUFFIX" that included "SOABI".
|
|
@ -15429,13 +15429,7 @@ _ACEOF
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX}
|
||||||
case $ac_sys_system in
|
|
||||||
Linux*|GNU*|Darwin|VxWorks)
|
|
||||||
EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
|
|
||||||
*)
|
|
||||||
EXT_SUFFIX=${SHLIB_SUFFIX};;
|
|
||||||
esac
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking LDVERSION" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking LDVERSION" >&5
|
||||||
$as_echo_n "checking LDVERSION... " >&6; }
|
$as_echo_n "checking LDVERSION... " >&6; }
|
||||||
|
|
|
@ -4786,12 +4786,7 @@ if test "$Py_DEBUG" = 'true' -a "$with_trace_refs" != "yes"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(EXT_SUFFIX)
|
AC_SUBST(EXT_SUFFIX)
|
||||||
case $ac_sys_system in
|
EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX}
|
||||||
Linux*|GNU*|Darwin|VxWorks)
|
|
||||||
EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
|
|
||||||
*)
|
|
||||||
EXT_SUFFIX=${SHLIB_SUFFIX};;
|
|
||||||
esac
|
|
||||||
|
|
||||||
AC_MSG_CHECKING(LDVERSION)
|
AC_MSG_CHECKING(LDVERSION)
|
||||||
LDVERSION='$(VERSION)$(ABIFLAGS)'
|
LDVERSION='$(VERSION)$(ABIFLAGS)'
|
||||||
|
|
Loading…
Reference in New Issue