Commit d141a8c4 authored by Martin v. Löwis's avatar Martin v. Löwis

Use -R instead of -rpath on Solaris. Fixes #749911.

parent 368de8f1
#! /bin/sh #! /bin/sh
# From configure.in Revision: 1.415 . # From configure.in Revision: 1.416 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3. # Generated by GNU Autoconf 2.53 for python 2.3.
# #
...@@ -3269,7 +3269,7 @@ _ACEOF ...@@ -3269,7 +3269,7 @@ _ACEOF
;; ;;
SunOS*) SunOS*)
LDLIBRARY='libpython$(VERSION).so' LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)' BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
;; ;;
Linux*|GNU*|NetBSD*) Linux*|GNU*|NetBSD*)
......
...@@ -501,7 +501,7 @@ if test $enable_shared = "yes"; then ...@@ -501,7 +501,7 @@ if test $enable_shared = "yes"; then
;; ;;
SunOS*) SunOS*)
LDLIBRARY='libpython$(VERSION).so' LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)' BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
;; ;;
Linux*|GNU*|NetBSD*) Linux*|GNU*|NetBSD*)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment