From: Martin v. Löwis Date: Fri, 31 Oct 2003 15:41:49 +0000 (+0000) Subject: Patch #833710: Set INSTSONAME on Solaris. X-Git-Tag: v2.3.3c1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ede6ee8cd9b2d15f08821a7f913978b71d749f81;p=thirdparty%2FPython%2Fcpython.git Patch #833710: Set INSTSONAME on Solaris. --- diff --git a/configure b/configure index 97f3966c6ae6..20a0df8666d1 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.427.4.7 . +# From configure.in Revision: 1.427.4.8 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.57 for python 2.3. # @@ -3595,6 +3595,7 @@ _ACEOF LDLIBRARY='libpython$(VERSION).so' BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} + INSTSONAME="$LDLIBRARY".$SOVERSION ;; Linux*|GNU*|NetBSD*) LDLIBRARY='libpython$(VERSION).so' diff --git a/configure.in b/configure.in index e4b02a928e7a..d2c56e7dbdf3 100644 --- a/configure.in +++ b/configure.in @@ -515,6 +515,7 @@ if test $enable_shared = "yes"; then LDLIBRARY='libpython$(VERSION).so' BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} + INSTSONAME="$LDLIBRARY".$SOVERSION ;; Linux*|GNU*|NetBSD*) LDLIBRARY='libpython$(VERSION).so'