changeset: 95501:7444ac6d93c3 user: Victor Stinner date: Thu Apr 09 22:29:52 2015 +0200 files: Misc/NEWS configure.ac description: Issue #23817: FreeBSD now uses "1.0" the the SOVERSION as other operating systems, instead of just "1". diff -r 579db1976e6d -r 7444ac6d93c3 Misc/NEWS --- a/Misc/NEWS Sun Apr 05 18:42:37 2015 -0700 +++ b/Misc/NEWS Thu Apr 09 22:29:52 2015 +0200 @@ -108,6 +108,9 @@ Build ----- +- Issue #23817: FreeBSD now uses "1.0" the the SOVERSION as other operating + systems, instead of just "1". + - Issue #23501: Argument Clinic now generates code into separate files by default. Tests diff -r 579db1976e6d -r 7444ac6d93c3 configure.ac --- a/configure.ac Sun Apr 05 18:42:37 2015 -0700 +++ b/configure.ac Thu Apr 09 22:29:52 2015 +0200 @@ -960,11 +960,6 @@ 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