This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge pull request #65 from tonycoz/compiler-find-quadmath
[metaconfig.git] / U / modified / libs.U
1 ?RCS: $Id: libs.U,v 3.0.1.6 1997/02/28 16:09:11 ram Exp $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4 ?RCS:
5 ?RCS: You may redistribute only under the terms of the Artistic License,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic License; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: $Log: libs.U,v $
12 ?RCS: Revision 3.0.1.6  1997/02/28  16:09:11  ram
13 ?RCS: patch61: replaced .a with $_a all over the place
14 ?RCS:
15 ?RCS: Revision 3.0.1.5  1995/07/25  14:12:05  ram
16 ?RCS: patch56: now knows about OS/2 platforms
17 ?RCS:
18 ?RCS: Revision 3.0.1.4  1994/10/29  16:24:22  ram
19 ?RCS: patch36: removed old broken thislib/thatlib processing (ADO)
20 ?RCS:
21 ?RCS: Revision 3.0.1.3  1994/06/20  07:05:44  ram
22 ?RCS: patch30: code cleanup with if/elif by ADO and RAM
23 ?RCS: patch30: undone patch23 for libswanted default setting
24 ?RCS:
25 ?RCS: Revision 3.0.1.2  1994/05/06  15:08:45  ram
26 ?RCS: patch23: now includes ordered default libswanted variable (ADO)
27 ?RCS: patch23: major cleanup for library lookups (ADO)
28 ?RCS:
29 ?RCS: Revision 3.0.1.1  1993/08/25  14:02:31  ram
30 ?RCS: patch6: added default for libs
31 ?RCS:
32 ?RCS: Revision 3.0  1993/08/18  12:09:03  ram
33 ?RCS: Baseline for dist 3.0 netwide release.
34 ?RCS:
35 ?MAKE:libs ignore_versioned_solibs libsfound libsfiles libsdirs libspath: \
36         test cat Myread Oldconfig Loc libpth package xlibpth so _a \
37         usesocks sed uselongdouble
38 ?MAKE:  -pick add $@ %<
39 ?S:libs:
40 ?S:     This variable holds the additional libraries we want to use.
41 ?S:     It is up to the Makefile to deal with it.  The list can be empty.
42 ?S:.
43 ?S:libsfound:
44 ?S:     This variable holds the full pathnames of the libraries
45 ?S:     we found and accepted.
46 ?S:.
47 ?S:libsfiles:
48 ?S:     This variable holds the filenames aka basenames of the libraries
49 ?S:     we found and accepted.
50 ?S:.
51 ?S:libsdirs:
52 ?S:     This variable holds the directory names aka dirnames of the libraries
53 ?S:     we found and accepted, duplicates are removed.
54 ?S:.
55 ?S:libspath:
56 ?S:     This variable holds the directory names probed for libraries.
57 ?S:.
58 ?S:ignore_versioned_solibs:
59 ?S:     This variable should be non-empty if non-versioned shared
60 ?S:     libraries (libfoo.so.x.y) are to be ignored (because they
61 ?S:     cannot be linked against).
62 ?S:.
63 ?T:xxx yyy thislib thisdir libswanted libstyle
64 ?D:libs=''
65 ?X:
66 ?X: This order is chosen so that libraries  -lndir, -ldir, -lucb, -lbsd,
67 ?X: -lBSD, -lPW, and -lx only get used if there are unresolved
68 ?X: routines at link time.  Usually, these are backwards compatibility
69 ?X: libraries, and may not be as reliable as the standard c library.
70 ?X:
71 ?X: The -lsocket -linet -lnsl order has been reported to be necessary
72 ?X: for at least one SVR4 implementation.
73 ?X: -lc must proceed -lucb or -lbsd for most Solaris applications.
74 ?X: -lc_s proceeds -lc so we pick up the shared library version, if
75 ?X: it is available.
76 ?X:
77 ?X: The ordering of c, posix, and cposix is a guess and almost
78 ?X: certainly wrong on about half of all systems.
79 ?X:
80 ?X: Set proper libswanted in your private Myinit.U if needed.
81 ?X:
82 ?X:: default ordered library list
83 ?X:libswanted='net socket inet bind nsl nm sdbm gdbm ndbm dbm malloc dl'
84 ?X:libswanted="$libswanted dld sun m c_s c posix cposix ndir dir ucb"
85 ?X:libswanted="$libswanted bsd BSD PW x"
86 ?X:
87 ?INIT:: default library list
88 ?INIT:libswanted=''
89 ?INIT:: some systems want to use only the non-versioned libso:s
90 ?INIT:ignore_versioned_solibs=''
91 ?LINT:extern usecbacktrace
92 ?LINT:extern libscheck
93 ?LINT:extern p
94 ?LINT:use uselongdouble
95 : Looking for optional libraries
96 echo " "
97 echo "Checking for optional libraries..." >&4
98 case "$libs" in
99 ' '|'') dflt='';;
100 *) dflt="$libs";;
101 esac
102 case "$libswanted" in
103 '') libswanted='c_s';;
104 esac
105 ?X: libsocks has nasty naming scheme.
106 ?X: This does not work if somebody wants SOCKS 4.
107 case "$usesocks" in
108 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
109 esac
110 case "$usecbacktrace" in
111 "$define") libswanted="$libswanted bfd" ;;
112 esac
113 libsfound=''
114 libsfiles=''
115 libsdirs=''
116 libspath=''
117 for thisdir in $libpth $xlibpth; do
118   test -d $thisdir && libspath="$libspath $thisdir"
119 done
120 for thislib in $libswanted; do
121         for thisdir in $libspath; do
122             xxx=''
123             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
124                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
125                 $test -f "$xxx" && eval $libscheck
126                 $test -f "$xxx" && libstyle=shared
127                 xxx=`ls $thisdir/lib$thislib.[0-9].$so 2>/dev/null|sed -n '$p'`
128                 $test -f "$xxx" && eval $libscheck
129                 $test -f "$xxx" && libstyle=shared
130             fi
131             if test ! -f "$xxx"; then
132                 xxx=$thisdir/lib$thislib.$so$_a
133                 $test -f "$xxx" && eval $libscheck
134                 $test -f "$xxx" && libstyle="import"
135             fi
136             if test ! -f "$xxx"; then
137                 xxx=$thisdir/$thislib.$so$_a
138                 $test -f "$xxx" && eval $libscheck
139                 $test -f "$xxx" && libstyle="import"
140             fi
141             if test ! -f "$xxx"; then
142                 xxx=$thisdir/lib$thislib.$so
143                 $test -f "$xxx" && eval $libscheck
144                 $test -f "$xxx" && libstyle=shared
145             fi
146             if test ! -f "$xxx"; then
147                 xxx=$thisdir/lib$thislib$_a
148                 $test -f "$xxx" && eval $libscheck
149                 $test -f "$xxx" && libstyle=static
150             fi
151             if test ! -f "$xxx"; then
152                 xxx=$thisdir/$thislib$_a
153                 $test -f "$xxx" && eval $libscheck
154                 $test -f "$xxx" && libstyle=static
155             fi
156             if test ! -f "$xxx"; then
157                 xxx=$thisdir/lib${thislib}_s$_a
158                 $test -f "$xxx" && eval $libscheck
159                 $test -f "$xxx" && libstyle=static
160                 $test -f "$xxx" && thislib=${thislib}_s
161             fi
162             if test ! -f "$xxx"; then
163                 xxx=$thisdir/Slib$thislib$_a
164                 $test -f "$xxx" && eval $libscheck
165                 $test -f "$xxx" && libstyle=static
166             fi
167             if $test -f "$xxx"; then
168                 case "$libstyle" in
169                 shared) echo "Found -l$thislib (shared)." ;;
170                 static) echo "Found -l$thislib." ;;
171                 *)      echo "Found -l$thislib ($libstyle)." ;;
172                 esac
173                 case " $dflt " in
174                 *"-l$thislib "*);;
175                 *) dflt="$dflt -l$thislib"
176                    libsfound="$libsfound $xxx"
177                    yyy=`basename $xxx`
178                    libsfiles="$libsfiles $yyy"
179                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
180                    case " $libsdirs " in
181                    *" $yyy "*) ;;
182                    *) libsdirs="$libsdirs $yyy" ;;
183                    esac
184                    ;;
185                 esac
186                 break
187             fi
188         done
189         if $test ! -f "$xxx"; then
190             echo "No -l$thislib."
191         fi
192 done
193 set X $dflt
194 shift
195 dflt="$*"
196 case "$libs" in
197 '') dflt="$dflt";;
198 *) dflt="$libs";;
199 esac
200 case "$dflt" in
201 ' '|'') dflt='none';;
202 esac
203
204 $cat <<EOM
205
206 In order to compile $package on your machine, a number of libraries
207 are usually needed.  Include any other special libraries here as well.
208 Say "none" for none.  The default list is almost always right.
209 EOM
210
211 echo " "
212 rp="What libraries to use?"
213 . ./myread
214 case "$ans" in
215 none) libs=' ';;
216 *) libs="$ans";;
217 esac
218