From: Alexandre Oliva Date: Sun, 25 Apr 1999 10:07:38 +0000 (+0000) Subject: * ltconfig.in (irix*, sys_lib_dlsearch_path_spec): /usr/local/lib X-Git-Tag: release-1-3~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8c87682221c6b3e3d1d5b9afe9e14f335807683;p=thirdparty%2Flibtool.git * ltconfig.in (irix*, sys_lib_dlsearch_path_spec): /usr/local/lib is not searched by default. /usr/lib is searched before /lib. * ltconfig.in (irix*, sys_lib_search_path_spec): /usr/lib is searched before /lib. --- diff --git a/ChangeLog b/ChangeLog index f2cc08381..76b6169bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 1999-04-25 Alexandre Oliva + * ltconfig.in (irix*, sys_lib_dlsearch_path_spec): /usr/local/lib + is not searched by default. /usr/lib is searched before /lib. + * ltconfig.in (irix*, sys_lib_search_path_spec): /usr/lib is + searched before /lib. + * ltconfig.in (irix5*, need_lib_prefix, need_version): Set to no, by unifying with irix6*. diff --git a/ltconfig.in b/ltconfig.in index 93705eca3..1b807e5e6 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1770,12 +1770,8 @@ irix5* | irix6*) esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - # even though /usr/local/lib is always searched, the man-page says - # shared libraries should not be installed there if they use an ABI - # different from -32, so we'd better not search for shared libraries - # there either - sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" file_magic_cmd=/usr/bin/file file_magic_test_file=`echo /lib${libsuff}/libc.so*` deplibs_check_method='pass_all'