From 8242d63644cbb3df3c8d44b1b93ae6a836bd2eb6 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Tue, 29 Jun 1999 08:56:55 +0000 Subject: [PATCH] * ltconfig.in (freebsd*, shlibpath_overrides_runpath): Set to yes up to release 3.1, and to no from 3.2 on. Reported by Pavel Roskin --- ChangeLog | 6 ++++++ ltconfig.in | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6fcc306ef..87b8b7d65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-06-29 Alexandre Oliva + + * ltconfig.in (freebsd*, shlibpath_overrides_runpath): Set to yes + up to release 3.1, and to no from 3.2 on. + Reported by Pavel Roskin + 1999-06-29 Pavel Roskin , Alexandre Oliva * ltconfig.in (freebsd*, shlibpath_overrides_runpath): Set to diff --git a/ltconfig.in b/ltconfig.in index 47532ab74..96214b724 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1843,7 +1843,14 @@ freebsd*) esac finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="'"$objformat"'" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes + case "$host_os" in + freebsd2* | freebsd3.[01]*) + shlibpath_overrides_runpath=yes + ;; + *) # from 3.2 on + shlibpath_overrides_runpath=no + ;; + esac ;; gnu*) -- 2.47.3