]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltconfig.in (irix*, sys_lib_dlsearch_path_spec): /usr/local/lib
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Sun, 25 Apr 1999 10:07:38 +0000 (10:07 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Sun, 25 Apr 1999 10:07:38 +0000 (10:07 +0000)
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.

ChangeLog
ltconfig.in

index f2cc08381875076f51caee57a309b7d795647254..76b6169bd3fd17d5ca04d7087819b3ef6d8974d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 1999-04-25  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * 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*.
 
index 93705eca3dab0a5aeb33bedef5cb112f290a29d3..1b807e5e67b3bf3b920719f1aac2458bd0afa993 100755 (executable)
@@ -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'