diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-09 20:29:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-09 20:29:52 (GMT) |
commit | 7cc28b623839fa336eb8b303cbf1b604e75ea70f (patch) | |
tree | c99a169e777fdfc2c4ab6bbbbb976c367814381d /configure.ac | |
parent | 7b8c5f58aa1b8ef1b5deb1db6e014e31d0c6d2b6 (diff) | |
download | cpython-7cc28b623839fa336eb8b303cbf1b604e75ea70f.zip cpython-7cc28b623839fa336eb8b303cbf1b604e75ea70f.tar.gz cpython-7cc28b623839fa336eb8b303cbf1b604e75ea70f.tar.bz2 |
Issue #23817: FreeBSD now uses "1.0" the the SOVERSION as other operating
systems, instead of just "1".
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index a6eaadc..6218bd2 100644 --- a/configure.ac +++ b/configure.ac @@ -960,11 +960,6 @@ if test $enable_shared = "yes"; then LDLIBRARY='libpython$(LDVERSION).so' BLDLIBRARY='-L. -lpython$(LDVERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} - case $ac_sys_system in - FreeBSD*) - SOVERSION=`echo $SOVERSION|cut -d "." -f 1` - ;; - esac INSTSONAME="$LDLIBRARY".$SOVERSION if test "$with_pydebug" != yes then |