[Python-checkins] cpython: Issue #23817: FreeBSD now uses "1.0" the the SOVERSION as other operating

victor.stinner python-checkins at python.org
Thu Apr 9 22:29:59 CEST 2015


https://hg.python.org/cpython/rev/7444ac6d93c3
changeset:   95501:7444ac6d93c3
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Apr 09 22:29:52 2015 +0200
summary:
  Issue #23817: FreeBSD now uses "1.0" the the SOVERSION as other operating
systems, instead of just "1".

files:
  Misc/NEWS    |  3 +++
  configure.ac |  5 -----
  2 files changed, 3 insertions(+), 5 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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 --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list