This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ask the compiler to find libquadmath
[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
133                 $test -f "$xxx" && eval $libscheck
134                 $test -f "$xxx" && libstyle=shared
135             fi
136             if test ! -f "$xxx"; then
137                 xxx=$thisdir/lib$thislib$_a
138                 $test -f "$xxx" && eval $libscheck
139                 $test -f "$xxx" && libstyle=static
140             fi
141             if test ! -f "$xxx"; then
142                 xxx=$thisdir/$thislib$_a
143                 $test -f "$xxx" && eval $libscheck
144                 $test -f "$xxx" && libstyle=static
145             fi
146             if test ! -f "$xxx"; then
147                 xxx=$thisdir/lib${thislib}_s$_a
148                 $test -f "$xxx" && eval $libscheck
149                 $test -f "$xxx" && libstyle=static
150                 $test -f "$xxx" && thislib=${thislib}_s
151             fi
152             if test ! -f "$xxx"; then
153                 xxx=$thisdir/Slib$thislib$_a
154                 $test -f "$xxx" && eval $libscheck
155                 $test -f "$xxx" && libstyle=static
156             fi
157             if $test -f "$xxx"; then
158                 case "$libstyle" in
159                 shared) echo "Found -l$thislib (shared)." ;;
160                 static) echo "Found -l$thislib." ;;
161                 *)      echo "Found -l$thislib ($libstyle)." ;;
162                 esac
163                 case " $dflt " in
164                 *"-l$thislib "*);;
165                 *) dflt="$dflt -l$thislib"
166                    libsfound="$libsfound $xxx"
167                    yyy=`basename $xxx`
168                    libsfiles="$libsfiles $yyy"
169                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
170                    case " $libsdirs " in
171                    *" $yyy "*) ;;
172                    *) libsdirs="$libsdirs $yyy" ;;
173                    esac
174                    ;;
175                 esac
176                 break
177             fi
178         done
179         if $test ! -f "$xxx"; then
180             echo "No -l$thislib."
181         fi
182 done
183 set X $dflt
184 shift
185 dflt="$*"
186 case "$libs" in
187 '') dflt="$dflt";;
188 *) dflt="$libs";;
189 esac
190 case "$dflt" in
191 ' '|'') dflt='none';;
192 esac
193
194 $cat <<EOM
195
196 In order to compile $package on your machine, a number of libraries
197 are usually needed.  Include any other special libraries here as well.
198 Say "none" for none.  The default list is almost always right.
199 EOM
200
201 echo " "
202 rp="What libraries to use?"
203 . ./myread
204 case "$ans" in
205 none) libs=' ';;
206 *) libs="$ans";;
207 esac
208