1#! /bin/sh
2# Output a system dependent set of variables, describing how to set the
3# run time search path of shared libraries in an executable at run time.
4#
5#   Copyright 1996-2007 Free Software Foundation, Inc.
6#   Taken from GNU libtool, 2003
7#   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
8#
9#   This program is free software: you can redistribute it and/or modify
10#   it under the terms of the GNU General Public License as published by
11#   the Free Software Foundation; either version 3 of the License, or
12#   (at your option) any later version.
13#
14#   This program is distributed in the hope that it will be useful,
15#   but WITHOUT ANY WARRANTY; without even the implied warranty of
16#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17#   GNU General Public License for more details.
18#
19#   You should have received a copy of the GNU General Public License
20#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
21#
22#   As a special exception to the GNU General Public License, if you
23#   distribute this file as part of a program that contains a
24#   configuration script generated by Autoconf, you may include it under
25#   the same distribution terms that you use for the rest of that program.
26#
27# The first argument passed to this file is the canonical host specification,
28#    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
29# or
30#    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
31# The environment variable LD should be set by the caller.
32#
33# The set of defined variables is at the end of this script.
34
35host="$1"
36host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
37host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
38host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
39
40shlibpath_var=
41case $host_os in
42  aix3*)
43    shlibpath_var=LIBPATH
44    ;;
45  aix4* | aix5*)
46    if test "$host_cpu" = ia64; then
47      # AIX 5 supports IA64
48      shlibpath_var=LD_LIBRARY_PATH
49    else
50      shlibpath_var=LIBPATH
51    fi
52    ;;
53  beos*)
54    shlibpath_var=LIBRARY_PATH
55    ;;
56  bsdi[45]*)
57    shlibpath_var=LD_LIBRARY_PATH
58    ;;
59  cygwin* | mingw* | pw32*)
60    # FIXME: first we should search . and the directory the executable is in
61    shlibpath_var=PATH
62    ;;
63  darwin* | rhapsody*)
64    shlibpath_var=DYLD_LIBRARY_PATH
65    ;;
66  dgux*)
67    shlibpath_var=LD_LIBRARY_PATH
68    ;;
69  freebsd1*)
70    ;;
71  freebsd* | dragonfly*)
72    shlibpath_var=LD_LIBRARY_PATH
73    ;;
74  gnu*)
75    shlibpath_var=LD_LIBRARY_PATH
76    ;;
77  hpux9* | hpux10* | hpux11*)
78    case "$host_cpu" in
79      ia64* | hppa*64*) shlibpath_var=LD_LIBRARY_PATH ;;
80      *) shlibpath_var=SHLIB_PATH ;;
81    esac
82    ;;
83  interix[3-9]*)
84    shlibpath_var=LD_LIBRARY_PATH
85    ;;
86  irix5* | irix6* | nonstopux*)
87    case $host_os in
88      irix5* | nonstopux*)
89        shlibsuff=
90        ;;
91      *)
92        case $LD in # libtool.m4 will add one of these switches to LD
93          *-32|*"-32 ") shlibsuff= ;;
94          *-n32|*"-n32 ") shlibsuff=N32 ;;
95          *-64|*"-64 ") shlibsuff=64 ;;
96          *) shlibsuff= ;;
97        esac
98        ;;
99    esac
100    shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
101    ;;
102  linux*oldld* | linux*aout* | linux*coff*)
103    ;;
104  linux* | k*bsd*-gnu)
105    shlibpath_var=LD_LIBRARY_PATH
106    ;;
107  netbsd*)
108    shlibpath_var=LD_LIBRARY_PATH
109    ;;
110  newsos6)
111    shlibpath_var=LD_LIBRARY_PATH
112    ;;
113  nto-qnx*)
114    shlibpath_var=LD_LIBRARY_PATH
115    ;;
116  openbsd*)
117    shlibpath_var=LD_LIBRARY_PATH
118    ;;
119  os2*)
120    shlibpath_var=LIBPATH
121    ;;
122  osf3* | osf4* | osf5*)
123    shlibpath_var=LD_LIBRARY_PATH
124    ;;
125  rdos*)
126    ;;
127  solaris*)
128    shlibpath_var=LD_LIBRARY_PATH
129    ;;
130  sunos4*)
131    shlibpath_var=LD_LIBRARY_PATH
132    ;;
133  sysv4 | sysv4.3*)
134    shlibpath_var=LD_LIBRARY_PATH
135    ;;
136  sysv4*MP*)
137    if test -d /usr/nec ;then
138      shlibpath_var=LD_LIBRARY_PATH
139    fi
140    ;;
141  sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
142    shlibpath_var=LD_LIBRARY_PATH
143    ;;
144  uts4*)
145    shlibpath_var=LD_LIBRARY_PATH
146    ;;
147esac
148
149LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
150
151# This is the shared library path variable.
152shlibpath_var=$shlibpath_var
153
154EOF
155