diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-12-20 04:56:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-20 02:56:57 +0000 |
commit | a44ce6c9f725d336aea51a946b42769f29fed613 (patch) | |
tree | c8e4e53f45c192e363511ed45e3e79b729fc5a6e /configure.ac | |
parent | bpo-41724: Explain when the conversion is not possible with detect_types enab... (diff) | |
download | cpython-a44ce6c9f725d336aea51a946b42769f29fed613.tar.gz cpython-a44ce6c9f725d336aea51a946b42769f29fed613.tar.bz2 cpython-a44ce6c9f725d336aea51a946b42769f29fed613.zip |
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>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 445dae13587..ee5573cf644 100644 --- a/configure.ac +++ b/configure.ac @@ -4786,12 +4786,7 @@ if test "$Py_DEBUG" = 'true' -a "$with_trace_refs" != "yes"; then fi AC_SUBST(EXT_SUFFIX) -case $ac_sys_system in - Linux*|GNU*|Darwin|VxWorks) - EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};; - *) - EXT_SUFFIX=${SHLIB_SUFFIX};; -esac +EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX} AC_MSG_CHECKING(LDVERSION) LDVERSION='$(VERSION)$(ABIFLAGS)' |