94d343bbf42f0bfccf2149ed7b4a64825bcb41aa
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / Liblist.pm
1 package ExtUtils::Liblist;
2
3 # Broken out of MakeMaker from version 4.11
4
5 use Config;
6 use Cwd;
7 use File::Basename;
8
9 my $Config_libext = $Config{lib_ext} || ".a";
10
11 sub ext {
12     my($potential_libs, $Verbose) = @_;
13     if ($Config{'osname'} eq 'os2' and $Config{libs}) { 
14         # Dynamic libraries are not transitive, so we may need including
15         # the libraries linked against perl.dll again.
16
17         $potential_libs .= " " if $potential_libs;
18         $potential_libs .= $Config{libs};
19     }
20     return ("", "", "", "") unless $potential_libs;
21     print STDOUT "Potential libraries are '$potential_libs':\n" if $Verbose;
22
23     my($so)   = $Config{'so'};
24     my($libs) = $Config{'libs'};
25
26     # compute $extralibs, $bsloadlibs and $ldloadlibs from
27     # $potential_libs
28     # this is a rewrite of Andy Dougherty's extliblist in perl
29     # its home is in <distribution>/ext/util
30
31     my(@searchpath); # from "-L/path" entries in $potential_libs
32     my(@libpath) = split " ", $Config{'libpth'};
33     my(@ldloadlibs, @bsloadlibs, @extralibs, @ld_run_path, %ld_run_path_seen);
34     my($fullname, $thislib, $thispth, @fullname);
35     my($pwd) = fastcwd(); # from Cwd.pm
36     my($found) = 0;
37
38     foreach $thislib (split ' ', $potential_libs){
39
40         # Handle possible linker path arguments.
41         if ($thislib =~ s/^(-[LR])//){  # save path flag type
42             my($ptype) = $1;
43             unless (-d $thislib){
44                 print STDOUT "$ptype$thislib ignored, directory does not exist\n"
45                         if $Verbose;
46                 next;
47             }
48             if ($thislib !~ m|^/|) {
49               print STDOUT "Warning: $ptype$thislib changed to $ptype$pwd/$thislib\n";
50               $thislib = "$pwd/$thislib";
51             }
52             push(@searchpath, $thislib);
53             push(@extralibs,  "$ptype$thislib");
54             push(@ldloadlibs, "$ptype$thislib");
55             next;
56         }
57
58         # Handle possible library arguments.
59         unless ($thislib =~ s/^-l//){
60           print STDOUT "Unrecognized argument in LIBS ignored: '$thislib'\n";
61           next;
62         }
63
64         my($found_lib)=0;
65         foreach $thispth (@searchpath, @libpath){
66
67                 # Try to find the full name of the library.  We need this to
68                 # determine whether it's a dynamically-loadable library or not.
69                 # This tends to be subject to various os-specific quirks.
70                 # For gcc-2.6.2 on linux (March 1995), DLD can not load
71                 # .sa libraries, with the exception of libm.sa, so we
72                 # deliberately skip them.
73             if (@fullname = lsdir($thispth,"^lib$thislib\.$so\.[0-9]+")){
74                 # Take care that libfoo.so.10 wins against libfoo.so.9.
75                 # Compare two libraries to find the most recent version
76                 # number.  E.g.  if you have libfoo.so.9.0.7 and
77                 # libfoo.so.10.1, first convert all digits into two
78                 # decimal places.  Then we'll add ".00" to the shorter
79                 # strings so that we're comparing strings of equal length
80                 # Thus we'll compare libfoo.so.09.07.00 with
81                 # libfoo.so.10.01.00.  Some libraries might have letters
82                 # in the version.  We don't know what they mean, but will
83                 # try to skip them gracefully -- we'll set any letter to
84                 # '0'.  Finally, sort in reverse so we can take the
85                 # first element.
86
87                 #TODO: iterate through the directory instead of sorting
88
89                 $fullname = "$thispth/" .
90                 (sort { my($ma) = $a;
91                         my($mb) = $b;
92                         $ma =~ tr/A-Za-z/0/s;
93                         $ma =~ s/\b(\d)\b/0$1/g;
94                         $mb =~ tr/A-Za-z/0/s;
95                         $mb =~ s/\b(\d)\b/0$1/g;
96                         while (length($ma) < length($mb)) { $ma .= ".00"; }
97                         while (length($mb) < length($ma)) { $mb .= ".00"; }
98                         # Comparison deliberately backwards
99                         $mb cmp $ma;} @fullname)[0];
100             } elsif (-f ($fullname="$thispth/lib$thislib.$so")
101                  && (($Config{'dlsrc'} ne "dl_dld.xs") || ($thislib eq "m"))){
102             } elsif (-f ($fullname="$thispth/lib${thislib}_s$Config_libext")
103                  && ($thislib .= "_s") ){ # we must explicitly use _s version
104             } elsif (-f ($fullname="$thispth/lib$thislib$Config_libext")){
105             } elsif (-f ($fullname="$thispth/$thislib$Config_libext")){
106             } elsif (-f ($fullname="$thispth/Slib$thislib$Config_libext")){
107             } elsif ($Config{'osname'} eq 'dgux'
108                  && -l ($fullname="$thispth/lib$thislib$Config_libext")
109                  && readlink($fullname) =~ /^elink:/) {
110                  # Some of DG's libraries look like misconnected symbolic
111                  # links, but development tools can follow them.  (They
112                  # look like this:
113                  #
114                  #    libm.a -> elink:${SDE_PATH:-/usr}/sde/\
115                  #    ${TARGET_BINARY_INTERFACE:-m88kdgux}/usr/lib/libm.a
116                  #
117                  # , the compilation tools expand the environment variables.)
118             } else {
119                 print STDOUT "$thislib not found in $thispth\n" if $Verbose;
120                 next;
121             }
122             print STDOUT "'-l$thislib' found at $fullname\n" if $Verbose;
123             my($fullnamedir) = dirname($fullname);
124             push @ld_run_path, $fullnamedir unless $ld_run_path_seen{$fullnamedir}++;
125             $found++;
126             $found_lib++;
127
128             # Now update library lists
129
130             # what do we know about this library...
131             my $is_dyna = ($fullname !~ /\Q$Config_libext\E$/);
132             my $in_perl = ($libs =~ /\B-l\Q$ {thislib}\E\b/s);
133
134             # Do not add it into the list if it is already linked in
135             # with the main perl executable.
136             # We have to special-case the NeXT, because all the math 
137             # is also in libsys_s
138             unless ($in_perl || 
139                     ($Config{'osname'} eq 'next' && $thislib eq 'm') ){
140                 push(@extralibs, "-l$thislib");
141             }
142
143             # We might be able to load this archive file dynamically
144             if ( $Config{'dlsrc'} =~ /dl_next|dl_dld/){
145                 # We push -l$thislib instead of $fullname because
146                 # it avoids hardwiring a fixed path into the .bs file.
147                 # Mkbootstrap will automatically add dl_findfile() to
148                 # the .bs file if it sees a name in the -l format.
149                 # USE THIS, when dl_findfile() is fixed: 
150                 # push(@bsloadlibs, "-l$thislib");
151                 # OLD USE WAS while checking results against old_extliblist
152                 push(@bsloadlibs, "$fullname");
153             } else {
154                 if ($is_dyna){
155                     # For SunOS4, do not add in this shared library if
156                     # it is already linked in the main perl executable
157                     push(@ldloadlibs, "-l$thislib")
158                         unless ($in_perl and $Config{'osname'} eq 'sunos');
159                 } else {
160                     push(@ldloadlibs, "-l$thislib");
161                 }
162             }
163             last;       # found one here so don't bother looking further
164         }
165         print STDOUT "Warning (will try anyway): No library found for -l$thislib\n"
166             unless $found_lib>0;
167     }
168     return ('','','','') unless $found;
169     ("@extralibs", "@bsloadlibs", "@ldloadlibs",join(":",@ld_run_path));
170 }
171
172 sub lsdir { #yes, duplicate code seems less hassle than having an
173             #extra file with only lsdir
174     my($dir, $regex) = @_;
175     local(*DIR, @ls);
176     opendir(DIR, $dir || ".") or return ();
177     @ls = readdir(DIR);
178     closedir(DIR);
179     @ls = grep(/$regex/, @ls) if $regex;
180     @ls;
181 }
182
183 1;
184 __END__
185
186 =head1 NAME
187
188 ExtUtils::Liblist - determine libraries to use and how to use them
189
190 =head1 SYNOPSIS
191
192 C<require ExtUtils::Liblist;>
193
194 C<ExtUtils::Liblist::ext($potential_libs, $Verbose);>
195
196 =head1 DESCRIPTION
197
198 This utility takes a list of libraries in the form C<-llib1 -llib2
199 -llib3> and prints out lines suitable for inclusion in an extension
200 Makefile.  Extra library paths may be included with the form
201 C<-L/another/path> this will affect the searches for all subsequent
202 libraries.
203
204 It returns an array of four scalar values: EXTRALIBS, BSLOADLIBS,
205 LDLOADLIBS, and LD_RUN_PATH.
206
207 Dependent libraries can be linked in one of three ways:
208
209 =over 2
210
211 =item * For static extensions
212
213 by the ld command when the perl binary is linked with the extension
214 library. See EXTRALIBS below.
215
216 =item * For dynamic extensions
217
218 by the ld command when the shared object is built/linked. See
219 LDLOADLIBS below.
220
221 =item * For dynamic extensions
222
223 by the DynaLoader when the shared object is loaded. See BSLOADLIBS
224 below.
225
226 =back
227
228 =head2 EXTRALIBS
229
230 List of libraries that need to be linked with when linking a perl
231 binary which includes this extension Only those libraries that
232 actually exist are included.  These are written to a file and used
233 when linking perl.
234
235 =head2 LDLOADLIBS and LD_RUN_PATH
236
237 List of those libraries which can or must be linked into the shared
238 library when created using ld. These may be static or dynamic
239 libraries.  LD_RUN_PATH is a colon separated list of the directories
240 in LDLOADLIBS. It is passed as an environment variable to the process
241 that links the shared library.
242
243 =head2 BSLOADLIBS
244
245 List of those libraries that are needed but can be linked in
246 dynamically at run time on this platform.  SunOS/Solaris does not need
247 this because ld records the information (from LDLOADLIBS) into the
248 object file.  This list is used to create a .bs (bootstrap) file.
249
250 =head1 PORTABILITY
251
252 This module deals with a lot of system dependencies and has quite a
253 few architecture specific B<if>s in the code.
254
255 =head1 SEE ALSO
256
257 L<ExtUtils::MakeMaker>
258
259 =cut
260
261
262