f6b1fe24e0
correctly.
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
$OpenBSD: patch-ltconfig,v 1.3 2005/05/21 10:34:43 espie Exp $
|
|
--- ltconfig.orig Thu May 5 17:04:38 2005
|
|
+++ ltconfig Mon May 16 17:43:16 2005
|
|
@@ -626,7 +626,12 @@ old_postuninstall_cmds=
|
|
|
|
if test -n "$RANLIB"; then
|
|
old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
|
|
- old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
|
|
+ case $host_os in
|
|
+ openbsd*)
|
|
+ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds";;
|
|
+ *)
|
|
+ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds";;
|
|
+ esac
|
|
fi
|
|
|
|
# Source the script associated with the $tagname tag configuration.
|
|
@@ -1306,8 +1311,11 @@ openbsd*)
|
|
need_version=no
|
|
fi
|
|
library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
|
|
- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
|
|
+ #finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
|
|
shlibpath_var=LD_LIBRARY_PATH
|
|
+ shlibpath_overrides_runpath=yes
|
|
+ deplib_check_method=pass_all
|
|
+ sys_lib_dlsearch_path_spec='/usr/lib /usr/local/lib /usr/X11R6/lib'
|
|
;;
|
|
|
|
os2*)
|