1#!/bin/sh 2############################################################################## 3# Copyright (c) 1998 Free Software Foundation, Inc. # 4# # 5# Permission is hereby granted, free of charge, to any person obtaining a # 6# copy of this software and associated documentation files (the "Software"), # 7# to deal in the Software without restriction, including without limitation # 8# the rights to use, copy, modify, merge, publish, distribute, distribute # 9# with modifications, sublicense, and/or sell copies of the Software, and to # 10# permit persons to whom the Software is furnished to do so, subject to the # 11# following conditions: # 12# # 13# The above copyright notice and this permission notice shall be included in # 14# all copies or substantial portions of the Software. # 15# # 16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 19# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 22# DEALINGS IN THE SOFTWARE. # 23# # 24# Except as contained in this notice, the name(s) of the above copyright # 25# holders shall not be used in advertising or otherwise to promote the sale, # 26# use or other dealings in this Software without prior written # 27# authorization. # 28############################################################################## 29# 30# Author: Thomas E. Dickey <dickey@clark.net> 1996 31# 32# $Id: shlib,v 1.5 1998/05/31 00:29:38 mooney Exp $ 33# Use this script as a wrapper when running executables linked to shared 34# libraries on systems that use the $LD_LIBRARY_PATH variable and don't embed 35# the soname's path within the linked executable (such as IRIX), e.g, 36# 37# shlib knight 38# 39# Setting LD_LIBRARY_PATH, overrides/supplements the loader's normal search 40# path, and works on most systems. The drawback is that then the environment 41# variable has to be set to run the programs within this directory tree. 42# 43# For Linux (and other systems using the GNU loader), we can use the rpath 44# directive, which embeds the pathname of the library within the executable. 45# Using the Linux loader's rpath directive introduces a constraint, since 46# it's embedded into the binary, and means that the binary cannot be moved 47# around (though it'll work if the $exec_prefix convention that puts the bin 48# and lib directories under the same parent is followed). 49# 50# Using the actual soname (e.g., ../lib/libncurses.so) alone, is a more 51# flexible solution; you can link without having to set the environment 52# variable, and on some systems (IRIX) you can even run the resulting binaries 53# without setting LD_LIBRARY_PATH. 54# 55# Using a conventional link, with -L and -l options on Linux results in a 56# statically linked executable, which we don't want at all. 57# 58 59# 60# Make sure that we use the PATH that was set in run_tic.sh 61# 62if test X$NEWPATH != X ; then 63 PATH=$NEWPATH 64 export PATH 65fi 66 67q="" 68for p in lib ../lib 69do 70 if test -d $p; then 71 q="$p" 72 fi 73done 74if test -n "$q" ; then 75 if test -n "$LD_LIBRARY_PATH"; then 76 LD_LIBRARY_PATH="$q:$LD_LIBRARY_PATH" 77 else 78 LD_LIBRARY_PATH="$q" 79 fi 80 export LD_LIBRARY_PATH 81fi 82eval "$*" 83