summaryrefslogtreecommitdiffstats
path: root/ncurses-5.9/misc/shlib
blob: d3391f19beb71f8d23ccc95744a9fa36b8753d5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/sh
##############################################################################
# Copyright (c) 1998-2003,2005 Free Software Foundation, Inc.                #
#                                                                            #
# Permission is hereby granted, free of charge, to any person obtaining a    #
# copy of this software and associated documentation files (the "Software"), #
# to deal in the Software without restriction, including without limitation  #
# the rights to use, copy, modify, merge, publish, distribute, distribute    #
# with modifications, sublicense, and/or sell copies of the Software, and to #
# permit persons to whom the Software is furnished to do so, subject to the  #
# following conditions:                                                      #
#                                                                            #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software.                        #
#                                                                            #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
# DEALINGS IN THE SOFTWARE.                                                  #
#                                                                            #
# Except as contained in this notice, the name(s) of the above copyright     #
# holders shall not be used in advertising or otherwise to promote the sale, #
# use or other dealings in this Software without prior written               #
# authorization.                                                             #
##############################################################################
#
# Author: Thomas E. Dickey <dickey@clark.net> 1996
#
# $Id$
# Use this script as a wrapper when running executables linked to shared
# libraries on systems that use the $LD_LIBRARY_PATH variable and don't embed
# the soname's path within the linked executable (such as IRIX), e.g,
#
#	shlib knight
#
# Setting LD_LIBRARY_PATH, overrides/supplements the loader's normal search
# path, and works on most systems.  The drawback is that then the environment
# variable has to be set to run the programs within this directory tree.
#
# For Linux (and other systems using the GNU loader), we can use the rpath
# directive, which embeds the pathname of the library within the executable.
# Using the Linux loader's rpath directive introduces a constraint, since
# it's embedded into the binary, and means that the binary cannot be moved
# around (though it'll work if the $exec_prefix convention that puts the bin
# and lib directories under the same parent is followed).
#
# Using the actual soname (e.g., ../lib/libncurses.so) alone, is a more
# flexible solution; you can link without having to set the environment
# variable, and on some systems (IRIX) you can even run the resulting binaries
# without setting LD_LIBRARY_PATH.
#
# Using a conventional link, with -L and -l options on Linux results in a
# statically linked executable, which we don't want at all.
#
# Special cases:
#
#	BeOS R4.5 uses $LIBRARY_PATH rather than $LD_LIBRARY_PATH.
#	Cygwin uses $PATH
#	Mac OS X uses $DYLD_LIBRARY_PATH
#
# Other cases not handled by this script:
#
#	AIX uses $LIBPATH
#	IRIX64 may use $LD_LIBRARY64_PATH or $LD_LIBRARYN32_PATH
#	Solaris may use $LD_LIBRARY_PATH_64
#
CDPATH=
#
# Make sure that we use the PATH that was set in run_tic.sh
if test -n "$SHLIB_PATH" ; then
	PATH=$SHLIB_PATH
	export PATH
fi

# Find the lib-directory for this build tree
q=""
for p in lib ../lib ../../lib ../../../lib
do
	if test -d $p; then
		q=`cd $p; pwd`
		break
	elif test -f configure && test ! -d ../$p ; then
		break
	fi
done

# Set the environment variable.
if test -n "$q" ; then
	system=
	if test -n "$SHLIB_HOST" ; then
		system="$SHLIB_HOST"
	elif test -n "$PATHEXT" ; then
		system=cygwin
	elif test -n "$LIBRARY_PATH" ; then
		system=beos
	elif test -n "$DYLD_LIBRARY_PATH" ; then
		system=darwin
	elif test -n "$LD_LIBRARY_PATH"; then
		system=unix
	else
		for r in $q/*.*
		do
			if test -f "$r"
			then
				case $r in
				*.dll)
					system=cygwin
					;;
				*.dylib)
					system=darwin
					;;
				esac
			fi
			test -n "$system" && break
		done
	fi

	case .$system in
	.cygwin*)
		variable=PATH
		;;
	.beos*)
		variable=LIBRARY_PATH
		;;
	.darwin*)
		variable=DYLD_LIBRARY_PATH
		;;
	*)
		variable=LD_LIBRARY_PATH
		;;
	esac

	eval 'test -z "$'$variable'" && '$variable'=":"'
	eval $variable'="$q:$'$variable'"'
	eval 'export '$variable
fi

eval "$*"