[inseparable changes from match from perl-5.003_93 to perl-5.003_94]
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MM_Unix.pm
CommitLineData
1e44e2bf 1package ExtUtils::MM_Unix;
2
dbc738d9 3use Exporter ();
f1387719 4use Config;
5use File::Basename qw(basename dirname fileparse);
6use DirHandle;
dbc738d9 7use strict;
bab2b58e 8use vars qw($VERSION $Is_Mac $Is_OS2 $Is_VMS
a1f8e286 9 $Verbose %pm %static $Xsubpp_Version);
dbc738d9 10
68dc0745 11$VERSION = substr q$Revision: 1.114 $, 10;
ff0cee69 12# $Id: MM_Unix.pm,v 1.113 1997/02/11 21:54:09 k Exp $
1e44e2bf 13
14Exporter::import('ExtUtils::MakeMaker',
15 qw( $Verbose &neatvalue));
16
bab2b58e 17$Is_OS2 = $^O eq 'os2';
f1387719 18$Is_Mac = $^O eq "MacOS";
19
20if ($Is_VMS = $^O eq 'VMS') {
21 require VMS::Filespec;
22 import VMS::Filespec qw( &vmsify );
23}
1e44e2bf 24
25=head1 NAME
26
27ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
28
29=head1 SYNOPSIS
30
31C<require ExtUtils::MM_Unix;>
32
33=head1 DESCRIPTION
34
35The methods provided by this package are designed to be used in
36conjunction with ExtUtils::MakeMaker. When MakeMaker writes a
37Makefile, it creates one or more objects that inherit their methods
38from a package C<MM>. MM itself doesn't provide any methods, but it
39ISA ExtUtils::MM_Unix class. The inheritance tree of MM lets operating
40specific packages take the responsibility for all the methods provided
41by MM_Unix. We are trying to reduce the number of the necessary
42overrides by defining rather primitive operations within
43ExtUtils::MM_Unix.
44
45If you are going to write a platform specific MM package, please try
1fef88e7 46to limit the necessary overrides to primitive methods, and if it is not
47possible to do so, let's work out how to achieve that gain.
1e44e2bf 48
f4ae0f5e 49If you are overriding any of these methods in your Makefile.PL (in the
50MY class), please report that to the makemaker mailing list. We are
51trying to minimize the necessary method overrides and switch to data
52driven Makefile.PLs wherever possible. In the long run less methods
53will be overridable via the MY class.
54
1e44e2bf 55=head1 METHODS
56
57The following description of methods is still under
58development. Please refer to the code for not suitably documented
59sections and complain loudly to the makemaker mailing list.
60
f1387719 61Not all of the methods below are overridable in a
f4ae0f5e 62Makefile.PL. Overridable methods are marked as (o). All methods are
63overridable by a platform specific MM_*.pm file (See
bab2b58e 64L<ExtUtils::MM_VMS>) and L<ExtUtils::MM_OS2>).
f4ae0f5e 65
1e44e2bf 66=head2 Preloaded methods
67
68=over 2
69
f1387719 70=item canonpath
71
72No physical check on the filesystem, but a logical cleanup of a
73path. On UNIX eliminated successive slashes and successive "/.".
74
75=cut
76
77sub canonpath {
78 my($self,$path) = @_;
79 $path =~ s|/+|/|g ; # xx////xx -> xx/xx
80 $path =~ s|(/\.)+/|/|g ; # xx/././xx -> xx/xx
81 $path =~ s|^(\./)+|| unless $path eq "./"; # ./xx -> xx
82 $path =~ s|/$|| unless $path eq "/"; # xx/ -> xx
83 $path;
84}
85
1e44e2bf 86=item catdir
87
88Concatenate two or more directory names to form a complete path ending
f1387719 89with a directory. But remove the trailing slash from the resulting
90string, because it doesn't look good, isn't necessary and confuses
91OS2. Of course, if this is the root directory, don't cut off the
92trailing slash :-)
1e44e2bf 93
94=cut
95
96# ';
97
f1387719 98sub catdir {
1e44e2bf 99 shift;
f1387719 100 my @args = @_;
101 for (@args) {
102 # append a slash to each argument unless it has one there
93f9cb4b 103 $_ .= "/" if $_ eq '' or substr($_,-1) ne "/";
f1387719 104 }
105 my $result = join('', @args);
106 # remove a trailing slash unless we are root
93f9cb4b 107 substr($result,-1) = ""
108 if length($result) > 1 && substr($result,-1) eq "/";
1e44e2bf 109 $result;
110}
111
112=item catfile
113
f1387719 114Concatenate one or more directory names and a filename to form a
1e44e2bf 115complete path ending with a filename
116
117=cut
118
119sub catfile {
f1387719 120 my $self = shift @_;
121 my $file = pop @_;
122 return $file unless @_;
123 my $dir = $self->catdir(@_);
124 for ($dir) {
125 $_ .= "/" unless substr($_,length($_)-1,1) eq "/";
126 }
127 return $dir.$file;
1e44e2bf 128}
129
f1387719 130=item curdir
131
132Returns a string representing of the current directory. "." on UNIX.
133
134=cut
135
136sub curdir {
137 return "." ;
138}
139
140=item rootdir
141
142Returns a string representing of the root directory. "/" on UNIX.
143
144=cut
145
146sub rootdir {
147 return "/";
148}
149
150=item updir
151
152Returns a string representing of the parent directory. ".." on UNIX.
153
154=cut
155
156sub updir {
157 return "..";
158}
159
160sub ExtUtils::MM_Unix::c_o ;
161sub ExtUtils::MM_Unix::clean ;
162sub ExtUtils::MM_Unix::const_cccmd ;
f4ae0f5e 163sub ExtUtils::MM_Unix::const_config ;
f4ae0f5e 164sub ExtUtils::MM_Unix::const_loadlibs ;
f1387719 165sub ExtUtils::MM_Unix::constants ;
f4ae0f5e 166sub ExtUtils::MM_Unix::depend ;
f1387719 167sub ExtUtils::MM_Unix::dir_target ;
168sub ExtUtils::MM_Unix::dist ;
169sub ExtUtils::MM_Unix::dist_basics ;
170sub ExtUtils::MM_Unix::dist_ci ;
171sub ExtUtils::MM_Unix::dist_core ;
172sub ExtUtils::MM_Unix::dist_dir ;
173sub ExtUtils::MM_Unix::dist_test ;
f4ae0f5e 174sub ExtUtils::MM_Unix::dlsyms ;
175sub ExtUtils::MM_Unix::dynamic ;
176sub ExtUtils::MM_Unix::dynamic_bs ;
177sub ExtUtils::MM_Unix::dynamic_lib ;
f1387719 178sub ExtUtils::MM_Unix::exescan ;
68dc0745 179sub ExtUtils::MM_Unix::export_list ;
f1387719 180sub ExtUtils::MM_Unix::extliblist ;
181sub ExtUtils::MM_Unix::file_name_is_absolute ;
182sub ExtUtils::MM_Unix::find_perl ;
183sub ExtUtils::MM_Unix::force ;
184sub ExtUtils::MM_Unix::guess_name ;
185sub ExtUtils::MM_Unix::has_link_code ;
186sub ExtUtils::MM_Unix::init_dirscan ;
187sub ExtUtils::MM_Unix::init_main ;
188sub ExtUtils::MM_Unix::init_others ;
189sub ExtUtils::MM_Unix::install ;
190sub ExtUtils::MM_Unix::installbin ;
191sub ExtUtils::MM_Unix::libscan ;
192sub ExtUtils::MM_Unix::linkext ;
193sub ExtUtils::MM_Unix::lsdir ;
194sub ExtUtils::MM_Unix::macro ;
195sub ExtUtils::MM_Unix::makeaperl ;
196sub ExtUtils::MM_Unix::makefile ;
f4ae0f5e 197sub ExtUtils::MM_Unix::manifypods ;
f1387719 198sub ExtUtils::MM_Unix::maybe_command ;
199sub ExtUtils::MM_Unix::maybe_command_in_dirs ;
200sub ExtUtils::MM_Unix::needs_linking ;
201sub ExtUtils::MM_Unix::nicetext ;
202sub ExtUtils::MM_Unix::parse_version ;
203sub ExtUtils::MM_Unix::pasthru ;
204sub ExtUtils::MM_Unix::path ;
68dc0745 205sub ExtUtils::MM_Unix::perl_archive;
f1387719 206sub ExtUtils::MM_Unix::perl_script ;
207sub ExtUtils::MM_Unix::perldepend ;
208sub ExtUtils::MM_Unix::pm_to_blib ;
209sub ExtUtils::MM_Unix::post_constants ;
210sub ExtUtils::MM_Unix::post_initialize ;
211sub ExtUtils::MM_Unix::postamble ;
212sub ExtUtils::MM_Unix::prefixify ;
f4ae0f5e 213sub ExtUtils::MM_Unix::processPL ;
f4ae0f5e 214sub ExtUtils::MM_Unix::realclean ;
f1387719 215sub ExtUtils::MM_Unix::replace_manpage_separator ;
216sub ExtUtils::MM_Unix::static ;
217sub ExtUtils::MM_Unix::static_lib ;
f4ae0f5e 218sub ExtUtils::MM_Unix::staticmake ;
f1387719 219sub ExtUtils::MM_Unix::subdir_x ;
220sub ExtUtils::MM_Unix::subdirs ;
f4ae0f5e 221sub ExtUtils::MM_Unix::test ;
222sub ExtUtils::MM_Unix::test_via_harness ;
223sub ExtUtils::MM_Unix::test_via_script ;
f1387719 224sub ExtUtils::MM_Unix::tool_autosplit ;
225sub ExtUtils::MM_Unix::tool_xsubpp ;
226sub ExtUtils::MM_Unix::tools_other ;
227sub ExtUtils::MM_Unix::top_targets ;
f4ae0f5e 228sub ExtUtils::MM_Unix::writedoc ;
f1387719 229sub ExtUtils::MM_Unix::xs_c ;
230sub ExtUtils::MM_Unix::xs_o ;
231sub ExtUtils::MM_Unix::xsubpp_version ;
f4ae0f5e 232
233package ExtUtils::MM_Unix;
234
93f9cb4b 235use SelfLoader;
f4ae0f5e 236
2371;
93f9cb4b 238
239__DATA__
f4ae0f5e 240
bab2b58e 241=back
242
f4ae0f5e 243=head2 SelfLoaded methods
244
bab2b58e 245=over 2
246
f1387719 247=item c_o (o)
1e44e2bf 248
f1387719 249Defines the suffix rules to compile different flavors of C files to
250object files.
1e44e2bf 251
252=cut
253
f1387719 254sub c_o {
255# --- Translation Sections ---
1e44e2bf 256
f1387719 257 my($self) = shift;
258 return '' unless $self->needs_linking();
259 my(@m);
260 push @m, '
261.c$(OBJ_EXT):
042ade60 262 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
a0d6894c 263';
264 push @m, '
f1387719 265.C$(OBJ_EXT):
266 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.C
a0d6894c 267' if $^O ne 'os2'; # Case-specific
268 push @m, '
f1387719 269.cpp$(OBJ_EXT):
270 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cpp
1e44e2bf 271
f1387719 272.cxx$(OBJ_EXT):
273 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cxx
1e44e2bf 274
f1387719 275.cc$(OBJ_EXT):
276 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cc
277';
278 join "", @m;
1e44e2bf 279}
280
f1387719 281=item cflags (o)
1e44e2bf 282
f1387719 283Does very much the same as the cflags script in the perl
284distribution. It doesn't return the whole compiler command line, but
285initializes all of its parts. The const_cccmd method then actually
286returns the definition of the CCCMD macro which uses these parts.
1e44e2bf 287
288=cut
289
f1387719 290#'
1e44e2bf 291
f1387719 292sub cflags {
293 my($self,$libperl)=@_;
294 return $self->{CFLAGS} if $self->{CFLAGS};
295 return '' unless $self->needs_linking();
1e44e2bf 296
f1387719 297 my($prog, $uc, $perltype, %cflags);
298 $libperl ||= $self->{LIBPERL_A} || "libperl$self->{LIB_EXT}" ;
299 $libperl =~ s/\.\$\(A\)$/$self->{LIB_EXT}/;
1e44e2bf 300
f1387719 301 @cflags{qw(cc ccflags optimize large split shellflags)}
302 = @Config{qw(cc ccflags optimize large split shellflags)};
303 my($optdebug) = "";
1e44e2bf 304
f1387719 305 $cflags{shellflags} ||= '';
1e44e2bf 306
f1387719 307 my(%map) = (
308 D => '-DDEBUGGING',
309 E => '-DEMBED',
310 DE => '-DDEBUGGING -DEMBED',
311 M => '-DEMBED -DMULTIPLICITY',
312 DM => '-DDEBUGGING -DEMBED -DMULTIPLICITY',
313 );
1e44e2bf 314
f1387719 315 if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
316 $uc = uc($1);
317 } else {
318 $uc = ""; # avoid warning
319 }
320 $perltype = $map{$uc} ? $map{$uc} : "";
1e44e2bf 321
f1387719 322 if ($uc =~ /^D/) {
323 $optdebug = "-g";
324 }
1e44e2bf 325
1e44e2bf 326
f1387719 327 my($name);
328 ( $name = $self->{NAME} . "_cflags" ) =~ s/:/_/g ;
329 if ($prog = $Config::Config{$name}) {
330 # Expand hints for this extension via the shell
331 print STDOUT "Processing $name hint:\n" if $Verbose;
332 my(@o)=`cc=\"$cflags{cc}\"
333 ccflags=\"$cflags{ccflags}\"
334 optimize=\"$cflags{optimize}\"
335 perltype=\"$cflags{perltype}\"
336 optdebug=\"$cflags{optdebug}\"
337 large=\"$cflags{large}\"
338 split=\"$cflags{'split'}\"
339 eval '$prog'
340 echo cc=\$cc
341 echo ccflags=\$ccflags
342 echo optimize=\$optimize
343 echo perltype=\$perltype
344 echo optdebug=\$optdebug
345 echo large=\$large
346 echo split=\$split
347 `;
348 my($line);
349 foreach $line (@o){
350 chomp $line;
351 if ($line =~ /(.*?)=\s*(.*)\s*$/){
352 $cflags{$1} = $2;
353 print STDOUT " $1 = $2\n" if $Verbose;
354 } else {
355 print STDOUT "Unrecognised result from hint: '$line'\n";
356 }
357 }
358 }
1e44e2bf 359
f1387719 360 if ($optdebug) {
361 $cflags{optimize} = $optdebug;
362 }
1e44e2bf 363
f1387719 364 for (qw(ccflags optimize perltype large split)) {
365 $cflags{$_} =~ s/^\s+//;
366 $cflags{$_} =~ s/\s+/ /g;
367 $cflags{$_} =~ s/\s+$//;
368 $self->{uc $_} ||= $cflags{$_}
369 }
1e44e2bf 370
f1387719 371 return $self->{CFLAGS} = qq{
372CCFLAGS = $self->{CCFLAGS}
373OPTIMIZE = $self->{OPTIMIZE}
374PERLTYPE = $self->{PERLTYPE}
375LARGE = $self->{LARGE}
376SPLIT = $self->{SPLIT}
377};
1e44e2bf 378
1e44e2bf 379}
380
f1387719 381=item clean (o)
1e44e2bf 382
f1387719 383Defines the clean target.
1e44e2bf 384
385=cut
386
f1387719 387sub clean {
388# --- Cleanup and Distribution Sections ---
1e44e2bf 389
f1387719 390 my($self, %attribs) = @_;
391 my(@m,$dir);
392 push(@m, '
393# Delete temporary files but do not touch installed files. We don\'t delete
394# the Makefile here so a later make realclean still has a makefile to use.
1e44e2bf 395
f1387719 396clean ::
397');
398 # clean subdirectories first
399 for $dir (@{$self->{DIR}}) {
68dc0745 400 push @m, "\t-cd $dir && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) clean\n";
1e44e2bf 401 }
f1387719 402
403 my(@otherfiles) = values %{$self->{XS}}; # .c files from *.xs files
404 push(@otherfiles, $attribs{FILES}) if $attribs{FILES};
405 push(@otherfiles, qw[./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs.all
406 perlmain.c mon.out core so_locations pm_to_blib
407 *~ */*~ */*/*~ *$(OBJ_EXT) *$(LIB_EXT) perl.exe
408 $(BOOTSTRAP) $(BASEEXT).bso $(BASEEXT).def
409 $(BASEEXT).exp
410 ]);
411 push @m, "\t-$self->{RM_RF} @otherfiles\n";
412 # See realclean and ext/utils/make_ext for usage of Makefile.old
413 push(@m,
68dc0745 414 "\t-$self->{MV} $self->{MAKEFILE} $self->{MAKEFILE}.old \$(DEV_NULL)\n");
f1387719 415 push(@m,
416 "\t$attribs{POSTOP}\n") if $attribs{POSTOP};
417 join("", @m);
1e44e2bf 418}
419
f1387719 420=item const_cccmd (o)
1e44e2bf 421
f1387719 422Returns the full compiler call for C programs and stores the
423definition in CONST_CCCMD.
1e44e2bf 424
425=cut
426
f1387719 427sub const_cccmd {
428 my($self,$libperl)=@_;
429 return $self->{CONST_CCCMD} if $self->{CONST_CCCMD};
430 return '' unless $self->needs_linking();
431 return $self->{CONST_CCCMD} =
432 q{CCCMD = $(CC) -c $(INC) $(CCFLAGS) $(OPTIMIZE) \\
433 $(PERLTYPE) $(LARGE) $(SPLIT) $(DEFINE_VERSION) \\
434 $(XS_DEFINE_VERSION)};
1e44e2bf 435}
436
f1387719 437=item const_config (o)
1e44e2bf 438
f1387719 439Defines a couple of constants in the Makefile that are imported from
440%Config.
1e44e2bf 441
442=cut
443
f1387719 444sub const_config {
445# --- Constants Sections ---
446
447 my($self) = shift;
448 my(@m,$m);
449 push(@m,"\n# These definitions are from config.sh (via $INC{'Config.pm'})\n");
450 push(@m,"\n# They may have been overridden via Makefile.PL or on the command line\n");
451 my(%once_only);
452 foreach $m (@{$self->{CONFIG}}){
453 # SITE*EXP macros are defined in &constants; avoid duplicates here
454 next if $once_only{$m} or $m eq 'sitelibexp' or $m eq 'sitearchexp';
455 push @m, "\U$m\E = ".$self->{uc $m}."\n";
456 $once_only{$m} = 1;
457 }
458 join('', @m);
1e44e2bf 459}
460
f1387719 461=item const_loadlibs (o)
1e44e2bf 462
f1387719 463Defines EXTRALIBS, LDLOADLIBS, BSLOADLIBS, LD_RUN_PATH. See
464L<ExtUtils::Liblist> for details.
1e44e2bf 465
466=cut
467
f1387719 468sub const_loadlibs {
469 my($self) = shift;
470 return "" unless $self->needs_linking;
471 my @m;
472 push @m, qq{
473# $self->{NAME} might depend on some other libraries:
474# See ExtUtils::Liblist for details
475#
476};
477 my($tmp);
478 for $tmp (qw/
479 EXTRALIBS LDLOADLIBS BSLOADLIBS LD_RUN_PATH
480 /) {
481 next unless defined $self->{$tmp};
482 push @m, "$tmp = $self->{$tmp}\n";
483 }
484 return join "", @m;
1e44e2bf 485}
486
f1387719 487=item constants (o)
1e44e2bf 488
f1387719 489Initializes lots of constants and .SUFFIXES and .PHONY
1e44e2bf 490
491=cut
492
f1387719 493sub constants {
1e44e2bf 494 my($self) = @_;
f1387719 495 my(@m,$tmp);
1e44e2bf 496
f1387719 497 for $tmp (qw/
1e44e2bf 498
f1387719 499 AR_STATIC_ARGS NAME DISTNAME NAME_SYM VERSION
500 VERSION_SYM XS_VERSION INST_BIN INST_EXE INST_LIB
bab2b58e 501 INST_ARCHLIB INST_SCRIPT PREFIX INSTALLDIRS
f1387719 502 INSTALLPRIVLIB INSTALLARCHLIB INSTALLSITELIB
503 INSTALLSITEARCH INSTALLBIN INSTALLSCRIPT PERL_LIB
504 PERL_ARCHLIB SITELIBEXP SITEARCHEXP LIBPERL_A MYEXTLIB
505 FIRST_MAKEFILE MAKE_APERL_FILE PERLMAINCC PERL_SRC
506 PERL_INC PERL FULLPERL
1e44e2bf 507
f1387719 508 / ) {
509 next unless defined $self->{$tmp};
510 push @m, "$tmp = $self->{$tmp}\n";
1e44e2bf 511 }
512
f1387719 513 push @m, qq{
514VERSION_MACRO = VERSION
515DEFINE_VERSION = -D\$(VERSION_MACRO)=\\\"\$(VERSION)\\\"
516XS_VERSION_MACRO = XS_VERSION
517XS_DEFINE_VERSION = -D\$(XS_VERSION_MACRO)=\\\"\$(XS_VERSION)\\\"
518};
1e44e2bf 519
f1387719 520 push @m, qq{
521MAKEMAKER = $INC{'ExtUtils/MakeMaker.pm'}
522MM_VERSION = $ExtUtils::MakeMaker::VERSION
523};
1e44e2bf 524
f1387719 525 push @m, q{
526# FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle).
527# BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle)
528# ROOTEXT = Directory part of FULLEXT with leading slash (eg /DBD) !!! Deprecated from MM 5.32 !!!
529# PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar)
530# DLBASE = Basename part of dynamic library. May be just equal BASEEXT.
531};
1e44e2bf 532
f1387719 533 for $tmp (qw/
534 FULLEXT BASEEXT PARENT_NAME DLBASE VERSION_FROM INC DEFINE OBJECT
535 LDFROM LINKTYPE
536 / ) {
537 next unless defined $self->{$tmp};
538 push @m, "$tmp = $self->{$tmp}\n";
539 }
1e44e2bf 540
f1387719 541 push @m, "
542# Handy lists of source code files:
543XS_FILES= ".join(" \\\n\t", sort keys %{$self->{XS}})."
544C_FILES = ".join(" \\\n\t", @{$self->{C}})."
545O_FILES = ".join(" \\\n\t", @{$self->{O_FILES}})."
546H_FILES = ".join(" \\\n\t", @{$self->{H}})."
547MAN1PODS = ".join(" \\\n\t", sort keys %{$self->{MAN1PODS}})."
548MAN3PODS = ".join(" \\\n\t", sort keys %{$self->{MAN3PODS}})."
549";
1e44e2bf 550
f1387719 551 for $tmp (qw/
552 INST_MAN1DIR INSTALLMAN1DIR MAN1EXT INST_MAN3DIR INSTALLMAN3DIR MAN3EXT
553 /) {
554 next unless defined $self->{$tmp};
555 push @m, "$tmp = $self->{$tmp}\n";
556 }
1e44e2bf 557
f1387719 558 push @m, q{
559.NO_CONFIG_REC: Makefile
560} if $ENV{CLEARCASE_ROOT};
1e44e2bf 561
f1387719 562 # why not q{} ? -- emacs
563 push @m, qq{
564# work around a famous dec-osf make(1) feature(?):
565makemakerdflt: all
1e44e2bf 566
f1387719 567.SUFFIXES: .xs .c .C .cpp .cxx .cc \$(OBJ_EXT)
1e44e2bf 568
f1387719 569# Nick wanted to get rid of .PRECIOUS. I don't remember why. I seem to recall, that
570# some make implementations will delete the Makefile when we rebuild it. Because
571# we call false(1) when we rebuild it. So make(1) is not completely wrong when it
572# does so. Our milage may vary.
573# .PRECIOUS: Makefile # seems to be not necessary anymore
1e44e2bf 574
f1387719 575.PHONY: all config static dynamic test linkext manifest
1e44e2bf 576
f1387719 577# Where is the Config information that we are using/depend on
578CONFIGDEP = \$(PERL_ARCHLIB)/Config.pm \$(PERL_INC)/config.h
dbc738d9 579};
1e44e2bf 580
dbc738d9 581 my @parentdir = split(/::/, $self->{PARENT_NAME});
582 push @m, q{
f1387719 583# Where to put things:
dbc738d9 584INST_LIBDIR = }. $self->catdir('$(INST_LIB)',@parentdir) .q{
585INST_ARCHLIBDIR = }. $self->catdir('$(INST_ARCHLIB)',@parentdir) .q{
1e44e2bf 586
dbc738d9 587INST_AUTODIR = }. $self->catdir('$(INST_LIB)','auto','$(FULLEXT)') .q{
588INST_ARCHAUTODIR = }. $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)') .q{
f1387719 589};
1e44e2bf 590
f1387719 591 if ($self->has_link_code()) {
592 push @m, '
593INST_STATIC = $(INST_ARCHAUTODIR)/$(BASEEXT)$(LIB_EXT)
594INST_DYNAMIC = $(INST_ARCHAUTODIR)/$(DLBASE).$(DLEXT)
595INST_BOOT = $(INST_ARCHAUTODIR)/$(BASEEXT).bs
596';
597 } else {
598 push @m, '
599INST_STATIC =
600INST_DYNAMIC =
601INST_BOOT =
602';
1e44e2bf 603 }
604
68dc0745 605 $tmp = $self->export_list;
f1387719 606 push @m, "
607EXPORT_LIST = $tmp
608";
68dc0745 609 $tmp = $self->perl_archive;
f1387719 610 push @m, "
611PERL_ARCHIVE = $tmp
612";
1e44e2bf 613
f1387719 614# push @m, q{
615#INST_PM = }.join(" \\\n\t", sort values %{$self->{PM}}).q{
616#
617#PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM}}).q{
618#};
1e44e2bf 619
f1387719 620 push @m, q{
621TO_INST_PM = }.join(" \\\n\t", sort keys %{$self->{PM}}).q{
1e44e2bf 622
f1387719 623PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM}}).q{
624};
1e44e2bf 625
f1387719 626 join('',@m);
627}
1e44e2bf 628
f1387719 629=item depend (o)
1e44e2bf 630
f1387719 631Same as macro for the depend attribute.
1e44e2bf 632
f1387719 633=cut
1e44e2bf 634
f1387719 635sub depend {
636 my($self,%attribs) = @_;
637 my(@m,$key,$val);
638 while (($key,$val) = each %attribs){
639 last unless defined $key;
640 push @m, "$key: $val\n";
1e44e2bf 641 }
f1387719 642 join "", @m;
643}
1e44e2bf 644
f1387719 645=item dir_target (o)
1e44e2bf 646
f1387719 647Takes an array of directories that need to exist and returns a
648Makefile entry for a .exists file in these directories. Returns
649nothing, if the entry has already been processed. We're helpless
650though, if the same directory comes as $(FOO) _and_ as "bar". Both of
651them get an entry, that's why we use "::".
1e44e2bf 652
f1387719 653=cut
1e44e2bf 654
f1387719 655sub dir_target {
656# --- Make-Directories section (internal method) ---
657# dir_target(@array) returns a Makefile entry for the file .exists in each
658# named directory. Returns nothing, if the entry has already been processed.
659# We're helpless though, if the same directory comes as $(FOO) _and_ as "bar".
660# Both of them get an entry, that's why we use "::". I chose '$(PERL)' as the
661# prerequisite, because there has to be one, something that doesn't change
662# too often :)
1e44e2bf 663
f1387719 664 my($self,@dirs) = @_;
665 my(@m,$dir);
666 foreach $dir (@dirs) {
667 my($src) = $self->catfile($self->{PERL_INC},'perl.h');
668 my($targ) = $self->catfile($dir,'.exists');
68dc0745 669 my($targdir) = dirname($targ); # Necessary because catfile may have adapted syntax of $dir to target OS
f1387719 670 next if $self->{DIR_TARGET}{$self}{$targdir}++;
671 push @m, qq{
672$targ :: $src
673 $self->{NOECHO}\$(MKPATH) $targdir
674 $self->{NOECHO}\$(EQUALIZE_TIMESTAMP) $src $targ
675};
676 push(@m,qq{
677 -$self->{NOECHO}\$(CHMOD) 755 $targdir
678}) unless $Is_VMS;
679 }
680 join "", @m;
681}
1e44e2bf 682
f1387719 683=item dist (o)
1e44e2bf 684
f1387719 685Defines a lot of macros for distribution support.
1e44e2bf 686
f1387719 687=cut
1e44e2bf 688
f1387719 689sub dist {
690 my($self, %attribs) = @_;
1e44e2bf 691
f1387719 692 my(@m);
693 # VERSION should be sanitised before use as a file name
694 my($version) = $attribs{VERSION} || '$(VERSION)';
695 my($name) = $attribs{NAME} || '$(DISTNAME)';
696 my($tar) = $attribs{TAR} || 'tar'; # eg /usr/bin/gnutar
697 my($tarflags) = $attribs{TARFLAGS} || 'cvf';
698 my($zip) = $attribs{ZIP} || 'zip'; # eg pkzip Yuck!
699 my($zipflags) = $attribs{ZIPFLAGS} || '-r';
700 my($compress) = $attribs{COMPRESS} || 'compress'; # eg gzip
701 my($suffix) = $attribs{SUFFIX} || '.Z'; # eg .gz
702 my($shar) = $attribs{SHAR} || 'shar'; # eg "shar --gzip"
703 my($preop) = $attribs{PREOP} || "$self->{NOECHO}\$(NOOP)"; # eg update MANIFEST
704 my($postop) = $attribs{POSTOP} || "$self->{NOECHO}\$(NOOP)"; # eg remove the distdir
1e44e2bf 705
f1387719 706 my($to_unix) = $attribs{TO_UNIX} || ($Is_OS2
707 ? "$self->{NOECHO}"
68dc0745 708 . '$(TEST_F) tmp.zip && $(RM) tmp.zip;'
f1387719 709 . ' $(ZIP) -ll -mr tmp.zip $(DISTVNAME) && unzip -o tmp.zip && $(RM) tmp.zip'
710 : "$self->{NOECHO}\$(NOOP)");
1e44e2bf 711
f1387719 712 my($ci) = $attribs{CI} || 'ci -u';
713 my($rcs_label)= $attribs{RCS_LABEL}|| 'rcs -Nv$(VERSION_SYM): -q';
714 my($dist_cp) = $attribs{DIST_CP} || 'best';
715 my($dist_default) = $attribs{DIST_DEFAULT} || 'tardist';
1e44e2bf 716
f1387719 717 push @m, "
718DISTVNAME = ${name}-$version
719TAR = $tar
720TARFLAGS = $tarflags
721ZIP = $zip
722ZIPFLAGS = $zipflags
723COMPRESS = $compress
724SUFFIX = $suffix
725SHAR = $shar
726PREOP = $preop
727POSTOP = $postop
728TO_UNIX = $to_unix
729CI = $ci
730RCS_LABEL = $rcs_label
731DIST_CP = $dist_cp
732DIST_DEFAULT = $dist_default
733";
734 join "", @m;
1e44e2bf 735}
736
f1387719 737=item dist_basics (o)
1e44e2bf 738
f1387719 739Defines the targets distclean, distcheck, skipcheck, manifest.
1e44e2bf 740
741=cut
742
f1387719 743sub dist_basics {
744 my($self) = shift;
745 my @m;
746 push @m, q{
747distclean :: realclean distcheck
748};
1e44e2bf 749
f1387719 750 push @m, q{
751distcheck :
68dc0745 752 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=fullcheck \\
753 -e fullcheck
f1387719 754};
1e44e2bf 755
f1387719 756 push @m, q{
757skipcheck :
68dc0745 758 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=skipcheck \\
759 -e skipcheck
f1387719 760};
1e44e2bf 761
f1387719 762 push @m, q{
763manifest :
68dc0745 764 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=mkmanifest \\
765 -e mkmanifest
f1387719 766};
767 join "", @m;
1e44e2bf 768}
769
f1387719 770=item dist_ci (o)
1e44e2bf 771
f1387719 772Defines a check in target for RCS.
1e44e2bf 773
774=cut
775
f1387719 776sub dist_ci {
1e44e2bf 777 my($self) = shift;
f1387719 778 my @m;
779 push @m, q{
780ci :
68dc0745 781 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=maniread \\
782 -e "@all = keys %{ maniread() };" \\
f1387719 783 -e 'print("Executing $(CI) @all\n"); system("$(CI) @all");' \\
784 -e 'print("Executing $(RCS_LABEL) ...\n"); system("$(RCS_LABEL) @all");'
785};
786 join "", @m;
787}
1e44e2bf 788
f1387719 789=item dist_core (o)
1e44e2bf 790
f1387719 791Defeines the targets dist, tardist, zipdist, uutardist, shdist
1e44e2bf 792
f1387719 793=cut
1e44e2bf 794
f1387719 795sub dist_core {
796 my($self) = shift;
797 my @m;
798 push @m, q{
799dist : $(DIST_DEFAULT)
800 }.$self->{NOECHO}.q{$(PERL) -le 'print "Warning: Makefile possibly out of date with $$vf" if ' \
801 -e '-e ($$vf="$(VERSION_FROM)") and -M $$vf < -M "}.$self->{MAKEFILE}.q{";'
1e44e2bf 802
f1387719 803tardist : $(DISTVNAME).tar$(SUFFIX)
1e44e2bf 804
f1387719 805zipdist : $(DISTVNAME).zip
1e44e2bf 806
f1387719 807$(DISTVNAME).tar$(SUFFIX) : distdir
808 $(PREOP)
809 $(TO_UNIX)
810 $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME)
811 $(RM_RF) $(DISTVNAME)
812 $(COMPRESS) $(DISTVNAME).tar
813 $(POSTOP)
1e44e2bf 814
f1387719 815$(DISTVNAME).zip : distdir
816 $(PREOP)
817 $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME)
818 $(RM_RF) $(DISTVNAME)
819 $(POSTOP)
1e44e2bf 820
f1387719 821uutardist : $(DISTVNAME).tar$(SUFFIX)
822 uuencode $(DISTVNAME).tar$(SUFFIX) \\
823 $(DISTVNAME).tar$(SUFFIX) > \\
824 $(DISTVNAME).tar$(SUFFIX)_uu
f4ae0f5e 825
f1387719 826shdist : distdir
827 $(PREOP)
828 $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar
829 $(RM_RF) $(DISTVNAME)
830 $(POSTOP)
831};
832 join "", @m;
f4ae0f5e 833}
834
f1387719 835=item dist_dir (o)
f4ae0f5e 836
f1387719 837Defines the scratch directory target that will hold the distribution
838before tar-ing (or shar-ing).
1e44e2bf 839
840=cut
841
f1387719 842sub dist_dir {
843 my($self) = shift;
844 my @m;
845 push @m, q{
846distdir :
847 $(RM_RF) $(DISTVNAME)
848 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=manicopy,maniread \\
68dc0745 849 -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');"
f1387719 850};
851 join "", @m;
1e44e2bf 852}
853
f1387719 854=item dist_test (o)
1e44e2bf 855
f1387719 856Defines a target that produces the distribution in the
857scratchdirectory, and runs 'perl Makefile.PL; make ;make test' in that
858subdirectory.
1e44e2bf 859
860=cut
861
f1387719 862sub dist_test {
1e44e2bf 863 my($self) = shift;
f1387719 864 my @m;
865 push @m, q{
866disttest : distdir
867 cd $(DISTVNAME) && $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) Makefile.PL
868 cd $(DISTVNAME) && $(MAKE)
869 cd $(DISTVNAME) && $(MAKE) test
870};
871 join "", @m;
1e44e2bf 872}
873
f1387719 874=item dlsyms (o)
1e44e2bf 875
f1387719 876Used by AIX and VMS to define DL_FUNCS and DL_VARS and write the *.exp
877files.
1e44e2bf 878
879=cut
880
f1387719 881sub dlsyms {
882 my($self,%attribs) = @_;
1e44e2bf 883
f1387719 884 return '' unless ($^O eq 'aix' && $self->needs_linking() );
1e44e2bf 885
f1387719 886 my($funcs) = $attribs{DL_FUNCS} || $self->{DL_FUNCS} || {};
887 my($vars) = $attribs{DL_VARS} || $self->{DL_VARS} || [];
888 my(@m);
1e44e2bf 889
f1387719 890 push(@m,"
891dynamic :: $self->{BASEEXT}.exp
1e44e2bf 892
f1387719 893") unless $self->{SKIPHASH}{'dynamic'}; # dynamic and static are subs, so...
1e44e2bf 894
f1387719 895 push(@m,"
896static :: $self->{BASEEXT}.exp
1e44e2bf 897
f1387719 898") unless $self->{SKIPHASH}{'static'}; # we avoid a warning if we tick them
1e44e2bf 899
f1387719 900 push(@m,"
901$self->{BASEEXT}.exp: Makefile.PL
902",' $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e \'use ExtUtils::Mksymlists; \\
903 Mksymlists("NAME" => "',$self->{NAME},'", "DL_FUNCS" => ',
904 neatvalue($funcs),', "DL_VARS" => ', neatvalue($vars), ');\'
905');
1e44e2bf 906
f1387719 907 join('',@m);
908}
1e44e2bf 909
f1387719 910=item dynamic (o)
1e44e2bf 911
f1387719 912Defines the dynamic target.
1e44e2bf 913
f1387719 914=cut
1e44e2bf 915
f1387719 916sub dynamic {
917# --- Dynamic Loading Sections ---
1e44e2bf 918
f1387719 919 my($self) = shift;
920 '
921## $(INST_PM) has been moved to the all: target.
922## It remains here for awhile to allow for old usage: "make dynamic"
923#dynamic :: '.$self->{MAKEFILE}.' $(INST_DYNAMIC) $(INST_BOOT) $(INST_PM)
924dynamic :: '.$self->{MAKEFILE}.' $(INST_DYNAMIC) $(INST_BOOT)
925 '.$self->{NOECHO}.'$(NOOP)
926';
927}
1e44e2bf 928
f1387719 929=item dynamic_bs (o)
1e44e2bf 930
f1387719 931Defines targets for bootstrap files.
1e44e2bf 932
f1387719 933=cut
1e44e2bf 934
f1387719 935sub dynamic_bs {
936 my($self, %attribs) = @_;
937 return '
938BOOTSTRAP =
939' unless $self->has_link_code();
1e44e2bf 940
f1387719 941 return '
942BOOTSTRAP = '."$self->{BASEEXT}.bs".'
1e44e2bf 943
f1387719 944# As Mkbootstrap might not write a file (if none is required)
945# we use touch to prevent make continually trying to remake it.
946# The DynaLoader only reads a non-empty file.
947$(BOOTSTRAP): '."$self->{MAKEFILE} $self->{BOOTDEP}".' $(INST_ARCHAUTODIR)/.exists
948 '.$self->{NOECHO}.'echo "Running Mkbootstrap for $(NAME) ($(BSLOADLIBS))"
949 '.$self->{NOECHO}.'$(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" \
68dc0745 950 -MExtUtils::Mkbootstrap \
951 -e "Mkbootstrap(\'$(BASEEXT)\',\'$(BSLOADLIBS)\');"
f1387719 952 '.$self->{NOECHO}.'$(TOUCH) $(BOOTSTRAP)
953 $(CHMOD) 644 $@
1e44e2bf 954
f1387719 955$(INST_BOOT): $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists
956 '."$self->{NOECHO}$self->{RM_RF}".' $(INST_BOOT)
957 -'.$self->{CP}.' $(BOOTSTRAP) $(INST_BOOT)
958 $(CHMOD) 644 $@
1e44e2bf 959';
f1387719 960}
1e44e2bf 961
f1387719 962=item dynamic_lib (o)
1e44e2bf 963
f1387719 964Defines how to produce the *.so (or equivalent) files.
965
966=cut
967
968sub dynamic_lib {
969 my($self, %attribs) = @_;
970 return '' unless $self->needs_linking(); #might be because of a subdir
1e44e2bf 971
f1387719 972 return '' unless $self->has_link_code;
f4ae0f5e 973
f1387719 974 my($otherldflags) = $attribs{OTHERLDFLAGS} || "";
975 my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP} || "";
976 my($armaybe) = $attribs{ARMAYBE} || $self->{ARMAYBE} || ":";
977 my($ldfrom) = '$(LDFROM)';
978 $armaybe = 'ar' if ($^O eq 'dec_osf' and $armaybe eq ':');
979 my(@m);
980 push(@m,'
981# This section creates the dynamically loadable $(INST_DYNAMIC)
982# from $(OBJECT) and possibly $(MYEXTLIB).
983ARMAYBE = '.$armaybe.'
984OTHERLDFLAGS = '.$otherldflags.'
985INST_DYNAMIC_DEP = '.$inst_dynamic_dep.'
f4ae0f5e 986
f1387719 987$(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists $(EXPORT_LIST) $(PERL_ARCHIVE) $(INST_DYNAMIC_DEP)
988');
989 if ($armaybe ne ':'){
990 $ldfrom = 'tmp$(LIB_EXT)';
991 push(@m,' $(ARMAYBE) cr '.$ldfrom.' $(OBJECT)'."\n");
992 push(@m,' $(RANLIB) '."$ldfrom\n");
993 }
994 $ldfrom = "-all $ldfrom -none" if ($^O eq 'dec_osf');
ff0cee69 995
996 # Brain dead solaris linker does not use LD_RUN_PATH?
997 # This fixes dynamic extensions which need shared libs
998 my $ldrun = '';
999 $ldrun = join ' ', map "-R$_", split /:/, $self->{LD_RUN_PATH}
1000 if ($^O eq 'solaris');
1001
1002 push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
042ade60 1003 ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(EXPORT_LIST)');
f1387719 1004 push @m, '
1005 $(CHMOD) 755 $@
1006';
1e44e2bf 1007
f1387719 1008 push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
1e44e2bf 1009 join('',@m);
1010}
1011
f1387719 1012=item exescan
1e44e2bf 1013
f1387719 1014Deprecated method. Use libscan instead.
1e44e2bf 1015
1016=cut
1017
f1387719 1018sub exescan {
1019 my($self,$path) = @_;
1020 $path;
1e44e2bf 1021}
1022
f1387719 1023=item extliblist
1e44e2bf 1024
f1387719 1025Called by init_others, and calls ext ExtUtils::Liblist. See
1026L<ExtUtils::Liblist> for details.
1e44e2bf 1027
1028=cut
1029
f1387719 1030sub extliblist {
1031 my($self,$libs) = @_;
1032 require ExtUtils::Liblist;
1033 $self->ext($libs, $Verbose);
1034}
f4ae0f5e 1035
f1387719 1036=item file_name_is_absolute
f4ae0f5e 1037
1fef88e7 1038Takes as argument a path and returns true, if it is an absolute path.
1e44e2bf 1039
f1387719 1040=cut
1e44e2bf 1041
f1387719 1042sub file_name_is_absolute {
1043 my($self,$file) = @_;
1044 $file =~ m:^/: ;
1045}
1e44e2bf 1046
f1387719 1047=item find_perl
1e44e2bf 1048
f1387719 1049Finds the executables PERL and FULLPERL
1e44e2bf 1050
f1387719 1051=cut
1e44e2bf 1052
f1387719 1053sub find_perl {
1054 my($self, $ver, $names, $dirs, $trace) = @_;
1055 my($name, $dir);
1056 if ($trace >= 2){
1057 print "Looking for perl $ver by these names:
1058@$names
1059in these dirs:
1060@$dirs
1061";
1062 }
1063 foreach $dir (@$dirs){
1064 next unless defined $dir; # $self->{PERL_SRC} may be undefined
1065 foreach $name (@$names){
a1f8e286 1066 my ($abs, $val);
f1387719 1067 if ($self->file_name_is_absolute($name)) { # /foo/bar
1068 $abs = $name;
1069 } elsif ($self->canonpath($name) eq $self->canonpath(basename($name))) { # foo
1070 $abs = $self->catfile($dir, $name);
1071 } else { # foo/bar
1072 $abs = $self->canonpath($self->catfile($self->curdir, $name));
1073 }
1074 print "Checking $abs\n" if ($trace >= 2);
1075 next unless $self->maybe_command($abs);
1076 print "Executing $abs\n" if ($trace >= 2);
a1f8e286 1077 $val = `$abs -e 'require $ver; print "VER_OK\n" ' 2>&1`;
1078 if ($val =~ /VER_OK/) {
f1387719 1079 print "Using PERL=$abs\n" if $trace;
1080 return $abs;
a1f8e286 1081 } elsif ($trace >= 2) {
1082 print "Result: `$val'\n";
1e44e2bf 1083 }
1084 }
1e44e2bf 1085 }
f1387719 1086 print STDOUT "Unable to find a perl $ver (by these names: @$names, in these dirs: @$dirs)\n";
1087 0; # false and not empty
1088}
1e44e2bf 1089
bab2b58e 1090=back
1091
f1387719 1092=head2 Methods to actually produce chunks of text for the Makefile
1e44e2bf 1093
bab2b58e 1094The methods here are called for each MakeMaker object in the order
1095specified by @ExtUtils::MakeMaker::MM_Sections.
1096
1097=over 2
f4ae0f5e 1098
f1387719 1099=item force (o)
1100
1101Just writes FORCE:
1102
1103=cut
1e44e2bf 1104
f1387719 1105sub force {
1106 my($self) = shift;
1107 '# Phony target to force checking subdirectories.
1108FORCE:
1109';
1e44e2bf 1110}
1111
f1387719 1112=item guess_name
1e44e2bf 1113
f1387719 1114Guess the name of this package by examining the working directory's
1115name. MakeMaker calls this only if the developer has not supplied a
1116NAME attribute.
1e44e2bf 1117
f1387719 1118=cut
f4ae0f5e 1119
f1387719 1120# ';
1121
1122sub guess_name {
1123 my($self) = @_;
1124 use Cwd 'cwd';
1125 my $name = basename(cwd());
1126 $name =~ s|[\-_][\d\.\-]+$||; # this is new with MM 5.00, we
1127 # strip minus or underline
1128 # followed by a float or some such
1129 print "Warning: Guessing NAME [$name] from current directory name.\n";
1130 $name;
1131}
1132
1133=item has_link_code
1134
1135Returns true if C, XS, MYEXTLIB or similar objects exist within this
1136object that need a compiler. Does not descend into subdirectories as
1137needs_linking() does.
f4ae0f5e 1138
1139=cut
1140
f1387719 1141sub has_link_code {
1142 my($self) = shift;
1143 return $self->{HAS_LINK_CODE} if defined $self->{HAS_LINK_CODE};
1144 if ($self->{OBJECT} or @{$self->{C} || []} or $self->{MYEXTLIB}){
1145 $self->{HAS_LINK_CODE} = 1;
1146 return 1;
f4ae0f5e 1147 }
f1387719 1148 return $self->{HAS_LINK_CODE} = 0;
f4ae0f5e 1149}
1150
f1387719 1151=item init_dirscan
f4ae0f5e 1152
f1387719 1153Initializes DIR, XS, PM, C, O_FILES, H, PL_FILES, MAN*PODS, EXE_FILES.
1154
1155=cut
1156
1157sub init_dirscan { # --- File and Directory Lists (.xs .pm .pod etc)
1158 my($self) = @_;
1159 my($name, %dir, %xs, %c, %h, %ignore, %pl_files, %manifypods);
1160 local(%pm); #the sub in find() has to see this hash
1161 $ignore{'test.pl'} = 1;
1162 $ignore{'makefile.pl'} = 1 if $Is_VMS;
1163 foreach $name ($self->lsdir($self->curdir)){
1164 next if $name eq $self->curdir or $name eq $self->updir or $ignore{$name};
1165 next unless $self->libscan($name);
1166 if (-d $name){
760ac839 1167 next if -l $name; # We do not support symlinks at all
f1387719 1168 $dir{$name} = $name if (-f $self->catfile($name,"Makefile.PL"));
1169 } elsif ($name =~ /\.xs$/){
1170 my($c); ($c = $name) =~ s/\.xs$/.c/;
1171 $xs{$name} = $c;
1172 $c{$c} = 1;
1173 } elsif ($name =~ /\.c(pp|xx|c)?$/i){ # .c .C .cpp .cxx .cc
1174 $c{$name} = 1
1175 unless $name =~ m/perlmain\.c/; # See MAP_TARGET
1176 } elsif ($name =~ /\.h$/i){
1177 $h{$name} = 1;
1178 } elsif ($name =~ /\.(p[ml]|pod)$/){
1179 $pm{$name} = $self->catfile('$(INST_LIBDIR)',$name);
1180 } elsif ($name =~ /\.PL$/ && $name ne "Makefile.PL") {
1181 ($pl_files{$name} = $name) =~ s/\.PL$// ;
1182 } elsif ($Is_VMS && $name =~ /\.pl$/ && $name ne 'makefile.pl' &&
1183 $name ne 'test.pl') { # case-insensitive filesystem
1184 ($pl_files{$name} = $name) =~ s/\.pl$// ;
1185 }
1186 }
f4ae0f5e 1187
f1387719 1188 # Some larger extensions often wish to install a number of *.pm/pl
1189 # files into the library in various locations.
f4ae0f5e 1190
f1387719 1191 # The attribute PMLIBDIRS holds an array reference which lists
1192 # subdirectories which we should search for library files to
1193 # install. PMLIBDIRS defaults to [ 'lib', $self->{BASEEXT} ]. We
1194 # recursively search through the named directories (skipping any
1195 # which don't exist or contain Makefile.PL files).
f4ae0f5e 1196
f1387719 1197 # For each *.pm or *.pl file found $self->libscan() is called with
1198 # the default installation path in $_[1]. The return value of
1199 # libscan defines the actual installation location. The default
1200 # libscan function simply returns the path. The file is skipped
1201 # if libscan returns false.
f4ae0f5e 1202
f1387719 1203 # The default installation location passed to libscan in $_[1] is:
1204 #
1205 # ./*.pm => $(INST_LIBDIR)/*.pm
1206 # ./xyz/... => $(INST_LIBDIR)/xyz/...
1207 # ./lib/... => $(INST_LIB)/...
1208 #
1209 # In this way the 'lib' directory is seen as the root of the actual
1210 # perl library whereas the others are relative to INST_LIBDIR
1211 # (which includes PARENT_NAME). This is a subtle distinction but one
1212 # that's important for nested modules.
1e44e2bf 1213
f1387719 1214 $self->{PMLIBDIRS} = ['lib', $self->{BASEEXT}]
1215 unless $self->{PMLIBDIRS};
1e44e2bf 1216
f1387719 1217 #only existing directories that aren't in $dir are allowed
1e44e2bf 1218
f1387719 1219 # Avoid $_ wherever possible:
1220 # @{$self->{PMLIBDIRS}} = grep -d && !$dir{$_}, @{$self->{PMLIBDIRS}};
1221 my (@pmlibdirs) = @{$self->{PMLIBDIRS}};
1222 my ($pmlibdir);
1223 @{$self->{PMLIBDIRS}} = ();
1224 foreach $pmlibdir (@pmlibdirs) {
1225 -d $pmlibdir && !$dir{$pmlibdir} && push @{$self->{PMLIBDIRS}}, $pmlibdir;
1e44e2bf 1226 }
1e44e2bf 1227
f1387719 1228 if (@{$self->{PMLIBDIRS}}){
1229 print "Searching PMLIBDIRS: @{$self->{PMLIBDIRS}}\n"
1230 if ($Verbose >= 2);
1231 require File::Find;
1232 File::Find::find(sub {
1233 if (-d $_){
1234 if ($_ eq "CVS" || $_ eq "RCS"){
1235 $File::Find::prune = 1;
1236 }
1237 return;
1238 }
1239 my($path, $prefix) = ($File::Find::name, '$(INST_LIBDIR)');
1240 my($striplibpath,$striplibname);
93f9cb4b 1241 $prefix = '$(INST_LIB)' if (($striplibpath = $path) =~ s:^(\W*)lib\W:$1:i);
f1387719 1242 ($striplibname,$striplibpath) = fileparse($striplibpath);
1243 my($inst) = $self->catfile($prefix,$striplibpath,$striplibname);
1244 local($_) = $inst; # for backwards compatibility
1245 $inst = $self->libscan($inst);
1246 print "libscan($path) => '$inst'\n" if ($Verbose >= 2);
1247 return unless $inst;
1248 $pm{$path} = $inst;
1249 }, @{$self->{PMLIBDIRS}});
1250 }
1e44e2bf 1251
f1387719 1252 $self->{DIR} = [sort keys %dir] unless $self->{DIR};
1253 $self->{XS} = \%xs unless $self->{XS};
1254 $self->{PM} = \%pm unless $self->{PM};
1255 $self->{C} = [sort keys %c] unless $self->{C};
1256 my(@o_files) = @{$self->{C}};
1257 $self->{O_FILES} = [grep s/\.c(pp|xx|c)?$/$self->{OBJ_EXT}/i, @o_files] ;
1258 $self->{H} = [sort keys %h] unless $self->{H};
1259 $self->{PL_FILES} = \%pl_files unless $self->{PL_FILES};
1e44e2bf 1260
f1387719 1261 # Set up names of manual pages to generate from pods
1262 if ($self->{MAN1PODS}) {
1263 } elsif ( $self->{INST_MAN1DIR} =~ /^(none|\s*)$/ ) {
1264 $self->{MAN1PODS} = {};
1265 } else {
1266 my %manifypods = ();
1267 if ( exists $self->{EXE_FILES} ) {
1268 foreach $name (@{$self->{EXE_FILES}}) {
1269# use FileHandle ();
1270# my $fh = new FileHandle;
1271 local *FH;
1272 my($ispod)=0;
1273 # one day test, if $/ can be set to '' safely (is the bug fixed that was in 5.001m?)
1274# if ($fh->open("<$name")) {
1275 if (open(FH,"<$name")) {
1276# while (<$fh>) {
1277 while (<FH>) {
1278 if (/^=head1\s+\w+/) {
1279 $ispod=1;
1280 last;
1281 }
1282 }
1283# $fh->close;
1284 close FH;
1285 } else {
1286 # If it doesn't exist yet, we assume, it has pods in it
1287 $ispod = 1;
1e44e2bf 1288 }
f1387719 1289 if( $ispod ) {
1290 $manifypods{$name} = $self->catfile('$(INST_MAN1DIR)',basename($name).'.$(MAN1EXT)');
1e44e2bf 1291 }
f1387719 1292 }
1e44e2bf 1293 }
f1387719 1294 $self->{MAN1PODS} = \%manifypods;
1e44e2bf 1295 }
f1387719 1296 if ($self->{MAN3PODS}) {
1297 } elsif ( $self->{INST_MAN3DIR} =~ /^(none|\s*)$/ ) {
1298 $self->{MAN3PODS} = {};
1e44e2bf 1299 } else {
f1387719 1300 my %manifypods = (); # we collect the keys first, i.e. the files
1301 # we have to convert to pod
1302 foreach $name (keys %{$self->{PM}}) {
1303 if ($name =~ /\.pod$/ ) {
1304 $manifypods{$name} = $self->{PM}{$name};
1305 } elsif ($name =~ /\.p[ml]$/ ) {
1306# use FileHandle ();
1307# my $fh = new FileHandle;
1308 local *FH;
1309 my($ispod)=0;
1310# $fh->open("<$name");
1311 if (open(FH,"<$name")) {
1312 # while (<$fh>) {
1313 while (<FH>) {
1314 if (/^=head1\s+\w+/) {
1315 $ispod=1;
1316 last;
1317 }
1318 }
1319 # $fh->close;
1320 close FH;
1321 } else {
1322 $ispod = 1;
1323 }
1324 if( $ispod ) {
1325 $manifypods{$name} = $self->{PM}{$name};
1326 }
1327 }
1328 }
1329
1330 # Remove "Configure.pm" and similar, if it's not the only pod listed
1331 # To force inclusion, just name it "Configure.pod", or override MAN3PODS
1332 foreach $name (keys %manifypods) {
1333 if ($name =~ /(config|setup).*\.pm/i) {
1334 delete $manifypods{$name};
1335 next;
1336 }
1337 my($manpagename) = $name;
1338 unless ($manpagename =~ s!^\W*lib\W+!!) { # everything below lib is ok
1339 $manpagename = $self->catfile(split(/::/,$self->{PARENT_NAME}),$manpagename);
1340 }
1341 $manpagename =~ s/\.p(od|m|l)$//;
1342 $manpagename = $self->replace_manpage_separator($manpagename);
1343 $manifypods{$name} = $self->catfile("\$(INST_MAN3DIR)","$manpagename.\$(MAN3EXT)");
1e44e2bf 1344 }
f1387719 1345 $self->{MAN3PODS} = \%manifypods;
1e44e2bf 1346 }
f1387719 1347}
1e44e2bf 1348
f1387719 1349=item init_main
1e44e2bf 1350
f1387719 1351Initializes NAME, FULLEXT, BASEEXT, PARENT_NAME, DLBASE, PERL_SRC,
1352PERL_LIB, PERL_ARCHLIB, PERL_INC, INSTALLDIRS, INST_*, INSTALL*,
1353PREFIX, CONFIG, AR, AR_STATIC_ARGS, LD, OBJ_EXT, LIB_EXT, MAP_TARGET,
1354LIBPERL_A, VERSION_FROM, VERSION, DISTNAME, VERSION_SYM.
f4ae0f5e 1355
f1387719 1356=cut
1e44e2bf 1357
f1387719 1358sub init_main {
1359 my($self) = @_;
1e44e2bf 1360
f1387719 1361 # --- Initialize Module Name and Paths
1e44e2bf 1362
f1387719 1363 # NAME = Foo::Bar::Oracle
1364 # FULLEXT = Foo/Bar/Oracle
1365 # BASEEXT = Oracle
1366 # ROOTEXT = Directory part of FULLEXT with leading /. !!! Deprecated from MM 5.32 !!!
1367 # PARENT_NAME = Foo::Bar
1368### Only UNIX:
1369### ($self->{FULLEXT} =
1370### $self->{NAME}) =~ s!::!/!g ; #eg. BSD/Foo/Socket
1371 $self->{FULLEXT} = $self->catdir(split /::/, $self->{NAME});
1e44e2bf 1372
1e44e2bf 1373
f1387719 1374 # Copied from DynaLoader:
1e44e2bf 1375
f1387719 1376 my(@modparts) = split(/::/,$self->{NAME});
1377 my($modfname) = $modparts[-1];
1e44e2bf 1378
f1387719 1379 # Some systems have restrictions on files names for DLL's etc.
1380 # mod2fname returns appropriate file base name (typically truncated)
1381 # It may also edit @modparts if required.
1382 if (defined &DynaLoader::mod2fname) {
1383 $modfname = &DynaLoader::mod2fname(\@modparts);
bab2b58e 1384 }
1e44e2bf 1385
f1387719 1386 ($self->{PARENT_NAME}, $self->{BASEEXT}) = $self->{NAME} =~ m!([\w:]+::)?(\w+)$! ;
1387
760ac839 1388 if (defined &DynaLoader::mod2fname) {
f1387719 1389 # As of 5.001m, dl_os2 appends '_'
1390 $self->{DLBASE} = $modfname;
1391 } else {
1392 $self->{DLBASE} = '$(BASEEXT)';
1393 }
1394
1e44e2bf 1395
f1387719 1396 ### ROOTEXT deprecated from MM 5.32
1397### ($self->{ROOTEXT} =
1398### $self->{FULLEXT}) =~ s#/?\Q$self->{BASEEXT}\E$## ; #eg. /BSD/Foo
1399### $self->{ROOTEXT} = ($Is_VMS ? '' : '/') . $self->{ROOTEXT} if $self->{ROOTEXT};
1e44e2bf 1400
1e44e2bf 1401
f1387719 1402 # --- Initialize PERL_LIB, INST_LIB, PERL_SRC
1e44e2bf 1403
f1387719 1404 # *Real* information: where did we get these two from? ...
1405 my $inc_config_dir = dirname($INC{'Config.pm'});
1406 my $inc_carp_dir = dirname($INC{'Carp.pm'});
1e44e2bf 1407
f1387719 1408 unless ($self->{PERL_SRC}){
1409 my($dir);
1410 foreach $dir ($self->updir(),$self->catdir($self->updir(),$self->updir()),$self->catdir($self->updir(),$self->updir(),$self->updir())){
1411 if (
1412 -f $self->catfile($dir,"config.sh")
1413 &&
1414 -f $self->catfile($dir,"perl.h")
1415 &&
1416 -f $self->catfile($dir,"lib","Exporter.pm")
1417 ) {
1418 $self->{PERL_SRC}=$dir ;
1419 last;
1420 }
1421 }
1422 }
1423 if ($self->{PERL_SRC}){
1424 $self->{PERL_LIB} ||= $self->catdir("$self->{PERL_SRC}","lib");
1425 $self->{PERL_ARCHLIB} = $self->{PERL_LIB};
1426 $self->{PERL_INC} = $self->{PERL_SRC};
1427 # catch a situation that has occurred a few times in the past:
1e44e2bf 1428
bab2b58e 1429 unless (
1430 -s $self->catfile($self->{PERL_SRC},'cflags')
1431 or
1432 $Is_VMS
1433 &&
1434 -s $self->catfile($self->{PERL_SRC},'perlshr_attr.opt')
1435 or
1436 $Is_Mac
1437 ){
1438 warn qq{
f1387719 1439You cannot build extensions below the perl source tree after executing
1440a 'make clean' in the perl source tree.
1e44e2bf 1441
f1387719 1442To rebuild extensions distributed with the perl source you should
1443simply Configure (to include those extensions) and then build perl as
1444normal. After installing perl the source tree can be deleted. It is
1445not needed for building extensions by running 'perl Makefile.PL'
1446usually without extra arguments.
1e44e2bf 1447
f1387719 1448It is recommended that you unpack and build additional extensions away
1449from the perl source tree.
bab2b58e 1450};
1451 }
f1387719 1452 } else {
1453 # we should also consider $ENV{PERL5LIB} here
1454 $self->{PERL_LIB} ||= $Config::Config{privlibexp};
1455 $self->{PERL_ARCHLIB} ||= $Config::Config{archlibexp};
1456 $self->{PERL_INC} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
1457 my $perl_h;
bab2b58e 1458 unless (-f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))){
1459 die qq{
f1387719 1460Error: Unable to locate installed Perl libraries or Perl source code.
f4ae0f5e 1461
f1387719 1462It is recommended that you install perl in a standard location before
bab2b58e 1463building extensions. Some precompiled versions of perl do not contain
1464these header files, so you cannot build extensions. In such a case,
1465please build and install your perl from a fresh perl distribution. It
1466usually solves this kind of problem.
f4ae0f5e 1467
bab2b58e 1468\(You get this message, because MakeMaker could not find "$perl_h"\)
1469};
1470 }
f1387719 1471# print STDOUT "Using header files found in $self->{PERL_INC}\n"
1472# if $Verbose && $self->needs_linking();
1e44e2bf 1473
f1387719 1474 }
1e44e2bf 1475
f1387719 1476 # We get SITELIBEXP and SITEARCHEXP directly via
1477 # Get_from_Config. When we are running standard modules, these
1478 # won't matter, we will set INSTALLDIRS to "perl". Otherwise we
1479 # set it to "site". I prefer that INSTALLDIRS be set from outside
1480 # MakeMaker.
1481 $self->{INSTALLDIRS} ||= "site";
1e44e2bf 1482
f1387719 1483 # INST_LIB typically pre-set if building an extension after
1484 # perl has been built and installed. Setting INST_LIB allows
1485 # you to build directly into, say $Config::Config{privlibexp}.
1486 unless ($self->{INST_LIB}){
1e44e2bf 1487
1e44e2bf 1488
f1387719 1489 ##### XXXXX We have to change this nonsense
1e44e2bf 1490
f1387719 1491 if (defined $self->{PERL_SRC} and $self->{INSTALLDIRS} eq "perl") {
1492 $self->{INST_LIB} = $self->{INST_ARCHLIB} = $self->{PERL_LIB};
1493 } else {
1494 $self->{INST_LIB} = $self->catdir($self->curdir,"blib","lib");
1495 }
1496 }
1497 $self->{INST_ARCHLIB} ||= $self->catdir($self->curdir,"blib","arch");
1498 $self->{INST_BIN} ||= $self->catdir($self->curdir,'blib','bin');
1e44e2bf 1499
93f9cb4b 1500 # We need to set up INST_LIBDIR before init_libscan() for VMS
1501 my @parentdir = split(/::/, $self->{PARENT_NAME});
1502 $self->{INST_LIBDIR} = $self->catdir('$(INST_LIB)',@parentdir);
1503 $self->{INST_ARCHLIBDIR} = $self->catdir('$(INST_ARCHLIB)',@parentdir);
1504 $self->{INST_AUTODIR} = $self->catdir('$(INST_LIB)','auto','$(FULLEXT)');
1505 $self->{INST_ARCHAUTODIR} = $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)');
1506
f1387719 1507 # INST_EXE is deprecated, should go away March '97
1508 $self->{INST_EXE} ||= $self->catdir($self->curdir,'blib','script');
1509 $self->{INST_SCRIPT} ||= $self->catdir($self->curdir,'blib','script');
1e44e2bf 1510
f1387719 1511 # The user who requests an installation directory explicitly
1512 # should not have to tell us a architecture installation directory
bab2b58e 1513 # as well. We look if a directory exists that is named after the
f1387719 1514 # architecture. If not we take it as a sign that it should be the
1515 # same as the requested installation directory. Otherwise we take
1516 # the found one.
1517 # We do the same thing twice: for privlib/archlib and for sitelib/sitearch
1518 my($libpair);
1519 for $libpair ({l=>"privlib", a=>"archlib"}, {l=>"sitelib", a=>"sitearch"}) {
1520 my $lib = "install$libpair->{l}";
1521 my $Lib = uc $lib;
1522 my $Arch = uc "install$libpair->{a}";
1523 if( $self->{$Lib} && ! $self->{$Arch} ){
1524 my($ilib) = $Config{$lib};
1525 $ilib = VMS::Filespec::unixify($ilib) if $Is_VMS;
1e44e2bf 1526
f1387719 1527 $self->prefixify($Arch,$ilib,$self->{$Lib});
1528
1529 unless (-d $self->{$Arch}) {
1530 print STDOUT "Directory $self->{$Arch} not found, thusly\n" if $Verbose;
1531 $self->{$Arch} = $self->{$Lib};
1532 }
1533 print STDOUT "Defaulting $Arch to $self->{$Arch}\n" if $Verbose;
1534 }
1e44e2bf 1535 }
f4ae0f5e 1536
f1387719 1537 # we have to look at the relation between $Config{prefix} and the
1538 # requested values. We're going to set the $Config{prefix} part of
1539 # all the installation path variables to literally $(PREFIX), so
1540 # the user can still say make PREFIX=foo
bab2b58e 1541 my($configure_prefix) = $Config{'prefix'};
f1387719 1542 $prefix = VMS::Filespec::unixify($prefix) if $Is_VMS;
bab2b58e 1543 $self->{PREFIX} ||= $configure_prefix;
1544
1545
1546 my($install_variable,$search_prefix,$replace_prefix);
1547
1548 # The rule, taken from Configure, is that if prefix contains perl,
1549 # we shape the tree
1550 # perlprefix/lib/ INSTALLPRIVLIB
1551 # perlprefix/lib/pod/
1552 # perlprefix/lib/site_perl/ INSTALLSITELIB
1553 # perlprefix/bin/ INSTALLBIN
1554 # perlprefix/man/ INSTALLMAN1DIR
1555 # else
1556 # prefix/lib/perl5/ INSTALLPRIVLIB
1557 # prefix/lib/perl5/pod/
1558 # prefix/lib/perl5/site_perl/ INSTALLSITELIB
1559 # prefix/bin/ INSTALLBIN
1560 # prefix/lib/perl5/man/ INSTALLMAN1DIR
1561
1562 $replace_prefix = qq[\$\(PREFIX\)];
1563 for $install_variable (qw/
1564 INSTALLBIN
1565 INSTALLSCRIPT
1566 /) {
1567 $self->prefixify($install_variable,$configure_prefix,$replace_prefix);
1568 }
1569 $search_prefix = $configure_prefix =~ /perl/ ?
1570 $self->catdir($configure_prefix,"lib") :
1571 $self->catdir($configure_prefix,"lib","perl5");
1572 if ($self->{LIB}) {
1573 $self->{INSTALLPRIVLIB} = $self->{INSTALLSITELIB} = $self->{LIB};
1574 $self->{INSTALLARCHLIB} = $self->{INSTALLSITEARCH} =
1575 $self->catdir($self->{LIB},$Config{'archname'});
1576 } else {
1577 $replace_prefix = $self->{PREFIX} =~ /perl/ ?
1578 $self->catdir(qq[\$\(PREFIX\)],"lib") :
1579 $self->catdir(qq[\$\(PREFIX\)],"lib","perl5");
1580 for $install_variable (qw/
1581 INSTALLPRIVLIB
1582 INSTALLARCHLIB
1583 INSTALLSITELIB
1584 INSTALLSITEARCH
1585 /) {
1586 $self->prefixify($install_variable,$search_prefix,$replace_prefix);
1587 }
f1387719 1588 }
bab2b58e 1589 $search_prefix = $configure_prefix =~ /perl/ ?
1590 $self->catdir($configure_prefix,"man") :
1591 $self->catdir($configure_prefix,"lib","perl5","man");
1592 $replace_prefix = $self->{PREFIX} =~ /perl/ ?
1593 $self->catdir(qq[\$\(PREFIX\)],"man") :
1594 $self->catdir(qq[\$\(PREFIX\)],"lib","perl5","man");
f1387719 1595 for $install_variable (qw/
bab2b58e 1596 INSTALLMAN1DIR
1597 INSTALLMAN3DIR
f1387719 1598 /) {
bab2b58e 1599 $self->prefixify($install_variable,$search_prefix,$replace_prefix);
f1387719 1600 }
1e44e2bf 1601
f1387719 1602 # Now we head at the manpages. Maybe they DO NOT want manpages
1603 # installed
1604 $self->{INSTALLMAN1DIR} = $Config::Config{installman1dir}
1605 unless defined $self->{INSTALLMAN1DIR};
1606 unless (defined $self->{INST_MAN1DIR}){
1607 if ($self->{INSTALLMAN1DIR} =~ /^(none|\s*)$/){
1608 $self->{INST_MAN1DIR} = $self->{INSTALLMAN1DIR};
1609 } else {
1610 $self->{INST_MAN1DIR} = $self->catdir($self->curdir,'blib','man1');
1611 }
1612 }
1613 $self->{MAN1EXT} ||= $Config::Config{man1ext};
1e44e2bf 1614
f1387719 1615 $self->{INSTALLMAN3DIR} = $Config::Config{installman3dir}
1616 unless defined $self->{INSTALLMAN3DIR};
1617 unless (defined $self->{INST_MAN3DIR}){
1618 if ($self->{INSTALLMAN3DIR} =~ /^(none|\s*)$/){
1619 $self->{INST_MAN3DIR} = $self->{INSTALLMAN3DIR};
1620 } else {
1621 $self->{INST_MAN3DIR} = $self->catdir($self->curdir,'blib','man3');
1622 }
1e44e2bf 1623 }
f1387719 1624 $self->{MAN3EXT} ||= $Config::Config{man3ext};
1625
1626
1627 # Get some stuff out of %Config if we haven't yet done so
1628 print STDOUT "CONFIG must be an array ref\n"
1629 if ($self->{CONFIG} and ref $self->{CONFIG} ne 'ARRAY');
1630 $self->{CONFIG} = [] unless (ref $self->{CONFIG});
1631 push(@{$self->{CONFIG}}, @ExtUtils::MakeMaker::Get_from_Config);
1632 push(@{$self->{CONFIG}}, 'shellflags') if $Config::Config{shellflags};
1633 my(%once_only,$m);
1634 foreach $m (@{$self->{CONFIG}}){
1635 next if $once_only{$m};
1636 print STDOUT "CONFIG key '$m' does not exist in Config.pm\n"
1637 unless exists $Config::Config{$m};
1638 $self->{uc $m} ||= $Config::Config{$m};
1639 $once_only{$m} = 1;
1e44e2bf 1640 }
1e44e2bf 1641
f1387719 1642# This is too dangerous:
1643# if ($^O eq "next") {
1644# $self->{AR} = "libtool";
1645# $self->{AR_STATIC_ARGS} = "-o";
1646# }
1647# But I leave it as a placeholder
1e44e2bf 1648
f1387719 1649 $self->{AR_STATIC_ARGS} ||= "cr";
1e44e2bf 1650
f1387719 1651 # These should never be needed
1652 $self->{LD} ||= 'ld';
1653 $self->{OBJ_EXT} ||= '.o';
1654 $self->{LIB_EXT} ||= '.a';
1655
1656 $self->{MAP_TARGET} ||= "perl";
1657
1658 $self->{LIBPERL_A} ||= "libperl$self->{LIB_EXT}";
1659
1660 # make a simple check if we find Exporter
1661 warn "Warning: PERL_LIB ($self->{PERL_LIB}) seems not to be a perl library directory
1662 (Exporter.pm not found)"
1663 unless -f $self->catfile("$self->{PERL_LIB}","Exporter.pm") ||
1664 $self->{NAME} eq "ExtUtils::MakeMaker";
1e44e2bf 1665
f1387719 1666 # Determine VERSION and VERSION_FROM
1667 ($self->{DISTNAME}=$self->{NAME}) =~ s#(::)#-#g unless $self->{DISTNAME};
1668 if ($self->{VERSION_FROM}){
1669 $self->{VERSION} = $self->parse_version($self->{VERSION_FROM}) or
1670 Carp::carp "WARNING: Setting VERSION via file '$self->{VERSION_FROM}' failed\n"
1e44e2bf 1671 }
f1387719 1672
1673 # strip blanks
1674 if ($self->{VERSION}) {
1675 $self->{VERSION} =~ s/^\s+//;
1676 $self->{VERSION} =~ s/\s+$//;
1e44e2bf 1677 }
1e44e2bf 1678
f1387719 1679 $self->{VERSION} ||= "0.10";
1680 ($self->{VERSION_SYM} = $self->{VERSION}) =~ s/\W/_/g;
1e44e2bf 1681
1682
f1387719 1683 # Graham Barr and Paul Marquess had some ideas how to ensure
1684 # version compatibility between the *.pm file and the
1685 # corresponding *.xs file. The bottomline was, that we need an
1686 # XS_VERSION macro that defaults to VERSION:
1687 $self->{XS_VERSION} ||= $self->{VERSION};
1e44e2bf 1688
f1387719 1689 # --- Initialize Perl Binary Locations
1690
1691 # Find Perl 5. The only contract here is that both 'PERL' and 'FULLPERL'
1692 # will be working versions of perl 5. miniperl has priority over perl
1693 # for PERL to ensure that $(PERL) is usable while building ./ext/*
1694 my ($component,@defpath);
1695 foreach $component ($self->{PERL_SRC}, $self->path(), $Config::Config{binexp}) {
1696 push @defpath, $component if defined $component;
1e44e2bf 1697 }
ff0cee69 1698 $self->{PERL} ||=
f1387719 1699 $self->find_perl(5.0, [ $^X, 'miniperl','perl','perl5',"perl$]" ],
ff0cee69 1700 \@defpath, $Verbose );
f1387719 1701 # don't check if perl is executable, maybe they have decided to
1702 # supply switches with perl
1703
1704 # Define 'FULLPERL' to be a non-miniperl (used in test: target)
1705 ($self->{FULLPERL} = $self->{PERL}) =~ s/miniperl/perl/i
1706 unless ($self->{FULLPERL});
1e44e2bf 1707}
1708
f1387719 1709=item init_others
1e44e2bf 1710
f1387719 1711Initializes EXTRALIBS, BSLOADLIBS, LDLOADLIBS, LIBS, LD_RUN_PATH,
1712OBJECT, BOOTDEP, PERLMAINCC, LDFROM, LINKTYPE, NOOP, FIRST_MAKEFILE,
68dc0745 1713MAKEFILE, NOECHO, RM_F, RM_RF, TEST_F, TOUCH, CP, MV, CHMOD, UMASK_NULL
1e44e2bf 1714
1715=cut
1716
f1387719 1717sub init_others { # --- Initialize Other Attributes
1e44e2bf 1718 my($self) = shift;
1e44e2bf 1719
f1387719 1720 # Compute EXTRALIBS, BSLOADLIBS and LDLOADLIBS from $self->{LIBS}
1721 # Lets look at $self->{LIBS} carefully: It may be an anon array, a string or
1722 # undefined. In any case we turn it into an anon array:
1e44e2bf 1723
f1387719 1724 # May check $Config{libs} too, thus not empty.
1725 $self->{LIBS}=[''] unless $self->{LIBS};
f4ae0f5e 1726
a1f8e286 1727 $self->{LIBS}=[$self->{LIBS}] if ref \$self->{LIBS} eq 'SCALAR';
f1387719 1728 $self->{LD_RUN_PATH} = "";
1729 my($libs);
1730 foreach $libs ( @{$self->{LIBS}} ){
1731 $libs =~ s/^\s*(.*\S)\s*$/$1/; # remove leading and trailing whitespace
1732 my(@libs) = $self->extliblist($libs);
1733 if ($libs[0] or $libs[1] or $libs[2]){
1734 # LD_RUN_PATH now computed by ExtUtils::Liblist
1735 ($self->{EXTRALIBS}, $self->{BSLOADLIBS}, $self->{LDLOADLIBS}, $self->{LD_RUN_PATH}) = @libs;
1736 last;
1737 }
1738 }
f4ae0f5e 1739
f1387719 1740 if ( $self->{OBJECT} ) {
1741 $self->{OBJECT} =~ s!\.o(bj)?\b!\$(OBJ_EXT)!g;
1742 } else {
1743 # init_dirscan should have found out, if we have C files
1744 $self->{OBJECT} = "";
1745 $self->{OBJECT} = '$(BASEEXT)$(OBJ_EXT)' if @{$self->{C}||[]};
1e44e2bf 1746 }
f1387719 1747 $self->{OBJECT} =~ s/\n+/ \\\n\t/g;
1748 $self->{BOOTDEP} = (-f "$self->{BASEEXT}_BS") ? "$self->{BASEEXT}_BS" : "";
1749 $self->{PERLMAINCC} ||= '$(CC)';
1750 $self->{LDFROM} = '$(OBJECT)' unless $self->{LDFROM};
1e44e2bf 1751
f1387719 1752 # Sanity check: don't define LINKTYPE = dynamic if we're skipping
1753 # the 'dynamic' section of MM. We don't have this problem with
1754 # 'static', since we either must use it (%Config says we can't
1755 # use dynamic loading) or the caller asked for it explicitly.
1756 if (!$self->{LINKTYPE}) {
1757 $self->{LINKTYPE} = $self->{SKIPHASH}{'dynamic'}
1758 ? 'static'
1759 : ($Config::Config{usedl} ? 'dynamic' : 'static');
1760 };
1761
1762 # These get overridden for VMS and maybe some other systems
55497cff 1763 $self->{NOOP} ||= '$(SHELL) -c true';
f1387719 1764 $self->{FIRST_MAKEFILE} ||= "Makefile";
1765 $self->{MAKEFILE} ||= $self->{FIRST_MAKEFILE};
1766 $self->{MAKE_APERL_FILE} ||= "Makefile.aperl";
1767 $self->{NOECHO} = '@' unless defined $self->{NOECHO};
1768 $self->{RM_F} ||= "rm -f";
1769 $self->{RM_RF} ||= "rm -rf";
1770 $self->{TOUCH} ||= "touch";
68dc0745 1771 $self->{TEST_F} ||= "test -f";
f1387719 1772 $self->{CP} ||= "cp";
1773 $self->{MV} ||= "mv";
1774 $self->{CHMOD} ||= "chmod";
1775 $self->{UMASK_NULL} ||= "umask 0";
68dc0745 1776 $self->{DEV_NULL} ||= "> /dev/null 2>&1";
1e44e2bf 1777}
1778
f1387719 1779=item install (o)
1e44e2bf 1780
f1387719 1781Defines the install target.
1e44e2bf 1782
1783=cut
1784
f1387719 1785sub install {
1786 my($self, %attribs) = @_;
1e44e2bf 1787 my(@m);
a5f75d66 1788
f1387719 1789 push @m, q{
1790install :: all pure_install doc_install
1e44e2bf 1791
f1387719 1792install_perl :: all pure_perl_install doc_perl_install
1e44e2bf 1793
f1387719 1794install_site :: all pure_site_install doc_site_install
1e44e2bf 1795
f1387719 1796install_ :: install_site
1797 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
1e44e2bf 1798
f1387719 1799pure_install :: pure_$(INSTALLDIRS)_install
1e44e2bf 1800
f1387719 1801doc_install :: doc_$(INSTALLDIRS)_install
1802 }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
1e44e2bf 1803
f1387719 1804pure__install : pure_site_install
1805 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
1e44e2bf 1806
f1387719 1807doc__install : doc_site_install
1808 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
1e44e2bf 1809
f1387719 1810pure_perl_install ::
1811 }.$self->{NOECHO}.q{$(MOD_INSTALL) \
1812 read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
1813 write }.$self->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
1814 $(INST_LIB) $(INSTALLPRIVLIB) \
1815 $(INST_ARCHLIB) $(INSTALLARCHLIB) \
1816 $(INST_BIN) $(INSTALLBIN) \
1817 $(INST_SCRIPT) $(INSTALLSCRIPT) \
1818 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
1819 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
1820 }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
1821 }.$self->catdir('$(SITEARCHEXP)','auto','$(FULLEXT)').q{
1e44e2bf 1822
1e44e2bf 1823
f1387719 1824pure_site_install ::
1825 }.$self->{NOECHO}.q{$(MOD_INSTALL) \
1826 read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
1827 write }.$self->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
1828 $(INST_LIB) $(INSTALLSITELIB) \
1829 $(INST_ARCHLIB) $(INSTALLSITEARCH) \
1830 $(INST_BIN) $(INSTALLBIN) \
1831 $(INST_SCRIPT) $(INSTALLSCRIPT) \
1832 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
1833 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
1834 }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
1835 }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{
1e44e2bf 1836
f1387719 1837doc_perl_install ::
1838 }.$self->{NOECHO}.q{$(DOC_INSTALL) \
dbc738d9 1839 "Module" "$(NAME)" \
f1387719 1840 "installed into" "$(INSTALLPRIVLIB)" \
1841 LINKTYPE "$(LINKTYPE)" \
1842 VERSION "$(VERSION)" \
1843 EXE_FILES "$(EXE_FILES)" \
1844 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
1e44e2bf 1845
f1387719 1846doc_site_install ::
1847 }.$self->{NOECHO}.q{$(DOC_INSTALL) \
dbc738d9 1848 "Module" "$(NAME)" \
f1387719 1849 "installed into" "$(INSTALLSITELIB)" \
1850 LINKTYPE "$(LINKTYPE)" \
1851 VERSION "$(VERSION)" \
1852 EXE_FILES "$(EXE_FILES)" \
1853 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
1e44e2bf 1854
f1387719 1855};
1e44e2bf 1856
f1387719 1857 push @m, q{
1858uninstall :: uninstall_from_$(INSTALLDIRS)dirs
f4ae0f5e 1859
f1387719 1860uninstall_from_perldirs ::
1861 }.$self->{NOECHO}.
1862 q{$(UNINSTALL) }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{
1e44e2bf 1863
f1387719 1864uninstall_from_sitedirs ::
1865 }.$self->{NOECHO}.
1866 q{$(UNINSTALL) }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{
1867};
1e44e2bf 1868
f1387719 1869 join("",@m);
1870}
1e44e2bf 1871
f1387719 1872=item installbin (o)
1e44e2bf 1873
f1387719 1874Defines targets to install EXE_FILES.
1e44e2bf 1875
f1387719 1876=cut
1e44e2bf 1877
f1387719 1878sub installbin {
1879 my($self) = shift;
1880 return "" unless $self->{EXE_FILES} && ref $self->{EXE_FILES} eq "ARRAY";
1881 return "" unless @{$self->{EXE_FILES}};
1882 my(@m, $from, $to, %fromto, @to);
1883 push @m, $self->dir_target(qw[$(INST_SCRIPT)]);
1884 for $from (@{$self->{EXE_FILES}}) {
1885 my($path)= $self->catfile('$(INST_SCRIPT)', basename($from));
1886 local($_) = $path; # for backwards compatibility
1887 $to = $self->libscan($path);
1888 print "libscan($from) => '$to'\n" if ($Verbose >=2);
1889 $fromto{$from}=$to;
1890 }
1891 @to = values %fromto;
1892 push(@m, "
1893EXE_FILES = @{$self->{EXE_FILES}}
1e44e2bf 1894
f1387719 1895all :: @to
1e44e2bf 1896
f1387719 1897realclean ::
1898 $self->{RM_F} @to
1899");
1e44e2bf 1900
f1387719 1901 while (($from,$to) = each %fromto) {
1902 last unless defined $from;
1903 my $todir = dirname($to);
1904 push @m, "
1905$to: $from $self->{MAKEFILE} $todir/.exists
1906 $self->{NOECHO}$self->{RM_F} $to
1907 $self->{CP} $from $to
1908";
1e44e2bf 1909 }
f1387719 1910 join "", @m;
1911}
1e44e2bf 1912
f1387719 1913=item libscan (o)
1e44e2bf 1914
f1387719 1915Takes a path to a file that is found by init_dirscan and returns false
1916if we don't want to include this file in the library. Mainly used to
1917exclude RCS, CVS, and SCCS directories from installation.
1e44e2bf 1918
f1387719 1919=cut
1e44e2bf 1920
f1387719 1921# ';
1e44e2bf 1922
f1387719 1923sub libscan {
1924 my($self,$path) = @_;
1925 return '' if $path =~ m:\b(RCS|CVS|SCCS)\b: ;
1926 $path;
1e44e2bf 1927}
1928
f4ae0f5e 1929=item linkext (o)
1e44e2bf 1930
f4ae0f5e 1931Defines the linkext target which in turn defines the LINKTYPE.
1e44e2bf 1932
1933=cut
1934
1935sub linkext {
1936 my($self, %attribs) = @_;
1e44e2bf 1937 # LINKTYPE => static or dynamic or ''
1938 my($linktype) = defined $attribs{LINKTYPE} ?
1939 $attribs{LINKTYPE} : '$(LINKTYPE)';
1940 "
1941linkext :: $linktype
f4ae0f5e 1942 $self->{NOECHO}\$(NOOP)
1e44e2bf 1943";
1944}
1945
f1387719 1946=item lsdir
1e44e2bf 1947
f1387719 1948Takes as arguments a directory name and a regular expression. Returns
1949all entries in the directory that match the regular expression.
1e44e2bf 1950
1951=cut
1952
f1387719 1953sub lsdir {
1954 my($self) = shift;
1955 my($dir, $regex) = @_;
1956 my(@ls);
1957 my $dh = new DirHandle;
1958 $dh->open($dir || ".") or return ();
1959 @ls = $dh->read;
1960 $dh->close;
1961 @ls = grep(/$regex/, @ls) if $regex;
1962 @ls;
1963}
1964
1965=item macro (o)
1966
1967Simple subroutine to insert the macros defined by the macro attribute
1968into the Makefile.
1969
1970=cut
1971
1972sub macro {
1e44e2bf 1973 my($self,%attribs) = @_;
f1387719 1974 my(@m,$key,$val);
1975 while (($key,$val) = each %attribs){
1976 last unless defined $key;
1977 push @m, "$key = $val\n";
1e44e2bf 1978 }
f1387719 1979 join "", @m;
1980}
1e44e2bf 1981
f1387719 1982=item makeaperl (o)
1e44e2bf 1983
f1387719 1984Called by staticmake. Defines how to write the Makefile to produce a
1985static new perl.
1986
55497cff 1987By default the Makefile produced includes all the static extensions in
1988the perl library. (Purified versions of library files, e.g.,
1989DynaLoader_pure_p1_c0_032.a are automatically ignored to avoid link errors.)
1990
f1387719 1991=cut
1992
1993sub makeaperl {
1994 my($self, %attribs) = @_;
1995 my($makefilename, $searchdirs, $static, $extra, $perlinc, $target, $tmp, $libperl) =
1996 @attribs{qw(MAKE DIRS STAT EXTRA INCL TARGET TMP LIBPERL)};
1e44e2bf 1997 my(@m);
f1387719 1998 push @m, "
1999# --- MakeMaker makeaperl section ---
2000MAP_TARGET = $target
2001FULLPERL = $self->{FULLPERL}
2002";
2003 return join '', @m if $self->{PARENT};
1e44e2bf 2004
f1387719 2005 my($dir) = join ":", @{$self->{DIR}};
1e44e2bf 2006
f1387719 2007 unless ($self->{MAKEAPERL}) {
2008 push @m, q{
2009$(MAP_TARGET) :: static $(MAKE_APERL_FILE)
2010 $(MAKE) -f $(MAKE_APERL_FILE) $@
1e44e2bf 2011
f1387719 2012$(MAKE_APERL_FILE) : $(FIRST_MAKEFILE)
2013 }.$self->{NOECHO}.q{echo Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET)
2014 }.$self->{NOECHO}.q{$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
2015 Makefile.PL DIR=}, $dir, q{ \
2016 MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
2017 MAKEAPERL=1 NORECURS=1 CCCDLFLAGS=};
1e44e2bf 2018
f1387719 2019 foreach (@ARGV){
2020 if( /\s/ ){
2021 s/=(.*)/='$1'/;
2022 }
2023 push @m, " \\\n\t\t$_";
2024 }
2025# push @m, map( " \\\n\t\t$_", @ARGV );
2026 push @m, "\n";
1e44e2bf 2027
f1387719 2028 return join '', @m;
2029 }
1e44e2bf 2030
1e44e2bf 2031
1e44e2bf 2032
f1387719 2033 my($cccmd, $linkcmd, $lperl);
1e44e2bf 2034
1e44e2bf 2035
f1387719 2036 $cccmd = $self->const_cccmd($libperl);
2037 $cccmd =~ s/^CCCMD\s*=\s*//;
2038 $cccmd =~ s/\$\(INC\)/ -I$self->{PERL_INC} /;
bab2b58e 2039 $cccmd .= " $Config::Config{cccdlflags}"
042ade60 2040 if ($Config::Config{useshrplib} eq 'true');
f1387719 2041 $cccmd =~ s/\(CC\)/\(PERLMAINCC\)/;
1e44e2bf 2042
f1387719 2043 # The front matter of the linkcommand...
2044 $linkcmd = join ' ', "\$(CC)",
2045 grep($_, @Config{qw(large split ldflags ccdlflags)});
2046 $linkcmd =~ s/\s+/ /g;
93f9cb4b 2047 $linkcmd =~ s,(perl\.exp),\$(PERL_INC)/$1,;
1e44e2bf 2048
f1387719 2049 # Which *.a files could we make use of...
2050 local(%static);
2051 require File::Find;
2052 File::Find::find(sub {
2053 return unless m/\Q$self->{LIB_EXT}\E$/;
2054 return if m/^libperl/;
55497cff 2055 # Skip purified versions of libraries (e.g., DynaLoader_pure_p1_c0_032.a)
2056 return if m/_pure_\w+_\w+_\w+\.\w+$/ and -f "$File::Find::dir/.pure";
1e44e2bf 2057
f1387719 2058 if( exists $self->{INCLUDE_EXT} ){
2059 my $found = 0;
2060 my $incl;
2061 my $xx;
2062
2063 ($xx = $File::Find::name) =~ s,.*?/auto/,,;
2064 $xx =~ s,/?$_,,;
2065 $xx =~ s,/,::,g;
2066
2067 # Throw away anything not explicitly marked for inclusion.
2068 # DynaLoader is implied.
2069 foreach $incl ((@{$self->{INCLUDE_EXT}},'DynaLoader')){
2070 if( $xx eq $incl ){
2071 $found++;
2072 last;
2073 }
2074 }
2075 return unless $found;
2076 }
2077 elsif( exists $self->{EXCLUDE_EXT} ){
2078 my $excl;
2079 my $xx;
1e44e2bf 2080
f1387719 2081 ($xx = $File::Find::name) =~ s,.*?/auto/,,;
2082 $xx =~ s,/?$_,,;
2083 $xx =~ s,/,::,g;
1e44e2bf 2084
f1387719 2085 # Throw away anything explicitly marked for exclusion
2086 foreach $excl (@{$self->{EXCLUDE_EXT}}){
2087 return if( $xx eq $excl );
2088 }
2089 }
2090
2091 # don't include the installed version of this extension. I
2092 # leave this line here, although it is not necessary anymore:
2093 # I patched minimod.PL instead, so that Miniperl.pm won't
2094 # enclude duplicates
2095
2096 # Once the patch to minimod.PL is in the distribution, I can
2097 # drop it
2098 return if $File::Find::name =~ m:auto/$self->{FULLEXT}/$self->{BASEEXT}$self->{LIB_EXT}$:;
2099 use Cwd 'cwd';
2100 $static{cwd() . "/" . $_}++;
2101 }, grep( -d $_, @{$searchdirs || []}) );
2102
2103 # We trust that what has been handed in as argument, will be buildable
2104 $static = [] unless $static;
2105 @static{@{$static}} = (1) x @{$static};
2106
2107 $extra = [] unless $extra && ref $extra eq 'ARRAY';
2108 for (sort keys %static) {
2109 next unless /\Q$self->{LIB_EXT}\E$/;
2110 $_ = dirname($_) . "/extralibs.ld";
2111 push @$extra, $_;
1e44e2bf 2112 }
1e44e2bf 2113
f1387719 2114 grep(s/^/-I/, @{$perlinc || []});
1e44e2bf 2115
f1387719 2116 $target = "perl" unless $target;
2117 $tmp = "." unless $tmp;
1e44e2bf 2118
f1387719 2119# MAP_STATIC doesn't look into subdirs yet. Once "all" is made and we
2120# regenerate the Makefiles, MAP_STATIC and the dependencies for
2121# extralibs.all are computed correctly
2122 push @m, "
2123MAP_LINKCMD = $linkcmd
2124MAP_PERLINC = @{$perlinc || []}
2125MAP_STATIC = ",
2126join(" \\\n\t", reverse sort keys %static), "
1e44e2bf 2127
f1387719 2128MAP_PRELIBS = $Config::Config{libs} $Config::Config{cryptlib}
2129";
2130
2131 if (defined $libperl) {
2132 ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/;
2133 }
2134 unless ($libperl && -f $lperl) { # Ilya's code...
2135 my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/CORE";
2136 $libperl ||= "libperl$self->{LIB_EXT}";
2137 $libperl = "$dir/$libperl";
2138 $lperl ||= "libperl$self->{LIB_EXT}";
2139 $lperl = "$dir/$lperl";
ff0cee69 2140
2141 if (! -f $libperl and ! -f $lperl) {
2142 # We did not find a static libperl. Maybe there is a shared one?
2143 if ($^O eq 'solaris' or $^O eq 'sunos') {
2144 $lperl = $libperl = "$dir/$Config::Config{libperl}";
2145 # SUNOS ld does not take the full path to a shared library
2146 $libperl = '' if $^O eq 'sunos';
2147 }
2148 }
2149
f1387719 2150 print STDOUT "Warning: $libperl not found
2151 If you're going to build a static perl binary, make sure perl is installed
2152 otherwise ignore this warning\n"
2153 unless (-f $lperl || defined($self->{PERL_SRC}));
2154 }
1e44e2bf 2155
f1387719 2156 push @m, "
2157MAP_LIBPERL = $libperl
2158";
1e44e2bf 2159
f1387719 2160 push @m, "
2161\$(INST_ARCHAUTODIR)/extralibs.all: \$(INST_ARCHAUTODIR)/.exists ".join(" \\\n\t", @$extra)."
2162 $self->{NOECHO}$self->{RM_F} \$\@
2163 $self->{NOECHO}\$(TOUCH) \$\@
2164";
1e44e2bf 2165
f1387719 2166 my $catfile;
2167 foreach $catfile (@$extra){
2168 push @m, "\tcat $catfile >> \$\@\n";
1e44e2bf 2169 }
ff0cee69 2170 # SUNOS ld does not take the full path to a shared library
2171 my $llibperl = ($libperl)?'$(MAP_LIBPERL)':'-lperl';
1e44e2bf 2172
ff0cee69 2173 # Brain dead solaris linker does not use LD_RUN_PATH?
2174 # This fixes dynamic extensions which need shared libs
2175 my $ldfrom = ($^O eq 'solaris')?
2176 join(' ', map "-R$_", split /:/, $self->{LD_RUN_PATH}):'';
2177
2178push @m, "
f1387719 2179\$(MAP_TARGET) :: $tmp/perlmain\$(OBJ_EXT) \$(MAP_LIBPERL) \$(MAP_STATIC) \$(INST_ARCHAUTODIR)/extralibs.all
ff0cee69 2180 \$(MAP_LINKCMD) -o \$\@ \$(OPTIMIZE) $tmp/perlmain\$(OBJ_EXT) $ldfrom $llibperl \$(MAP_STATIC) `cat \$(INST_ARCHAUTODIR)/extralibs.all` \$(MAP_PRELIBS)
f1387719 2181 $self->{NOECHO}echo 'To install the new \"\$(MAP_TARGET)\" binary, call'
2182 $self->{NOECHO}echo ' make -f $makefilename inst_perl MAP_TARGET=\$(MAP_TARGET)'
2183 $self->{NOECHO}echo 'To remove the intermediate files say'
2184 $self->{NOECHO}echo ' make -f $makefilename map_clean'
1e44e2bf 2185
f1387719 2186$tmp/perlmain\$(OBJ_EXT): $tmp/perlmain.c
2187";
2188 push @m, "\tcd $tmp && $cccmd -I\$(PERL_INC) perlmain.c\n";
1e44e2bf 2189
f1387719 2190 push @m, qq{
2191$tmp/perlmain.c: $makefilename}, q{
2192 }.$self->{NOECHO}.q{echo Writing $@
68dc0745 2193 }.$self->{NOECHO}.q{$(PERL) $(MAP_PERLINC) -MExtUtils::Miniperl \\
2194 -e "writemain(grep s#.*/auto/##, qw|$(MAP_STATIC)|)" > $@t && $(MV) $@t $@
1e44e2bf 2195
f1387719 2196};
1e44e2bf 2197
f1387719 2198 push @m, q{
2199doc_inst_perl:
2200 }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
2201 }.$self->{NOECHO}.q{$(DOC_INSTALL) \
dbc738d9 2202 "Perl binary" "$(MAP_TARGET)" \
f1387719 2203 MAP_STATIC "$(MAP_STATIC)" \
2204 MAP_EXTRA "`cat $(INST_ARCHAUTODIR)/extralibs.all`" \
2205 MAP_LIBPERL "$(MAP_LIBPERL)" \
2206 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
1e44e2bf 2207
f1387719 2208};
1e44e2bf 2209
f1387719 2210 push @m, q{
2211inst_perl: pure_inst_perl doc_inst_perl
1e44e2bf 2212
f1387719 2213pure_inst_perl: $(MAP_TARGET)
2214 }.$self->{CP}.q{ $(MAP_TARGET) }.$self->catfile('$(INSTALLBIN)','$(MAP_TARGET)').q{
1e44e2bf 2215
f1387719 2216clean :: map_clean
2217
2218map_clean :
2219 }.$self->{RM_F}.qq{ $tmp/perlmain\$(OBJ_EXT) $tmp/perlmain.c \$(MAP_TARGET) $makefilename \$(INST_ARCHAUTODIR)/extralibs.all
2220};
2221
2222 join '', @m;
1e44e2bf 2223}
2224
f1387719 2225=item makefile (o)
1e44e2bf 2226
f1387719 2227Defines how to rewrite the Makefile.
1e44e2bf 2228
2229=cut
2230
f1387719 2231sub makefile {
2232 my($self) = shift;
2233 my @m;
2234 # We do not know what target was originally specified so we
2235 # must force a manual rerun to be sure. But as it should only
2236 # happen very rarely it is not a significant problem.
2237 push @m, '
2238$(OBJECT) : $(FIRST_MAKEFILE)
2239' if $self->{OBJECT};
1e44e2bf 2240
f1387719 2241 push @m, q{
2242# We take a very conservative approach here, but it\'s worth it.
2243# We move Makefile to Makefile.old here to avoid gnu make looping.
2244}.$self->{MAKEFILE}.q{ : Makefile.PL $(CONFIGDEP)
2245 }.$self->{NOECHO}.q{echo "Makefile out-of-date with respect to $?"
2246 }.$self->{NOECHO}.q{echo "Cleaning current config before rebuilding Makefile..."
68dc0745 2247 -}.$self->{NOECHO}.q{$(MV) }."$self->{MAKEFILE} $self->{MAKEFILE}.old".q{
2248 -$(MAKE) -f }.$self->{MAKEFILE}.q{.old clean $(DEV_NULL) || $(NOOP)
f1387719 2249 $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" Makefile.PL }.join(" ",map(qq["$_"],@ARGV)).q{
68dc0745 2250 }.$self->{NOECHO}.q{echo "==> Your Makefile has been rebuilt. <=="
2251 }.$self->{NOECHO}.q{echo "==> Please rerun the make command. <=="
2252 false
1e44e2bf 2253
f1387719 2254# To change behavior to :: would be nice, but would break Tk b9.02
2255# so you find such a warning below the dist target.
2256#}.$self->{MAKEFILE}.q{ :: $(VERSION_FROM)
2257# }.$self->{NOECHO}.q{echo "Warning: Makefile possibly out of date with $(VERSION_FROM)"
1e44e2bf 2258};
2259
f1387719 2260 join "", @m;
1e44e2bf 2261}
2262
f4ae0f5e 2263=item manifypods (o)
1e44e2bf 2264
f4ae0f5e 2265Defines targets and routines to translate the pods into manpages and
2266put them into the INST_* directories.
1e44e2bf 2267
2268=cut
2269
2270sub manifypods {
2271 my($self, %attribs) = @_;
f1387719 2272 return "\nmanifypods :\n\t$self->{NOECHO}\$(NOOP)\n" unless %{$self->{MAN3PODS}} or %{$self->{MAN1PODS}};
1e44e2bf 2273 my($dist);
2274 my($pod2man_exe);
2275 if (defined $self->{PERL_SRC}) {
2276 $pod2man_exe = $self->catfile($self->{PERL_SRC},'pod','pod2man');
2277 } else {
f1387719 2278 $pod2man_exe = $self->catfile($Config{scriptdirexp},'pod2man');
1e44e2bf 2279 }
2280 unless ($self->perl_script($pod2man_exe)) {
2281 # No pod2man but some MAN3PODS to be installed
2282 print <<END;
2283
2284Warning: I could not locate your pod2man program. Please make sure,
2285 your pod2man program is in your PATH before you execute 'make'
2286
2287END
2288 $pod2man_exe = "-S pod2man";
2289 }
2290 my(@m);
2291 push @m,
2292qq[POD2MAN_EXE = $pod2man_exe\n],
2293q[POD2MAN = $(PERL) -we '%m=@ARGV;for (keys %m){' \\
2294-e 'next if -e $$m{$$_} && -M $$m{$$_} < -M $$_ && -M $$m{$$_} < -M "].$self->{MAKEFILE}.q[";' \\
2295-e 'print "Manifying $$m{$$_}\n";' \\
f1387719 2296-e 'system(qq[$$^X ].q["-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" $(POD2MAN_EXE) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\\047t install $$m{$$_}\n";' \\
1e44e2bf 2297-e 'chmod 0644, $$m{$$_} or warn "chmod 644 $$m{$$_}: $$!\n";}'
2298];
2299 push @m, "\nmanifypods : ";
2300 push @m, join " \\\n\t", keys %{$self->{MAN1PODS}}, keys %{$self->{MAN3PODS}};
f1387719 2301
2302 push(@m,"\n");
2303 if (%{$self->{MAN1PODS}} || %{$self->{MAN3PODS}}) {
2304 push @m, "\t$self->{NOECHO}\$(POD2MAN) \\\n\t";
2305 push @m, join " \\\n\t", %{$self->{MAN1PODS}}, %{$self->{MAN3PODS}};
1e44e2bf 2306 }
f1387719 2307 join('', @m);
1e44e2bf 2308}
2309
f1387719 2310=item maybe_command
1e44e2bf 2311
f1387719 2312Returns true, if the argument is likely to be a command.
1e44e2bf 2313
2314=cut
2315
f1387719 2316sub maybe_command {
2317 my($self,$file) = @_;
2318 return $file if -x $file && ! -d $file;
2319 return;
1e44e2bf 2320}
2321
f1387719 2322=item maybe_command_in_dirs
1e44e2bf 2323
f1387719 2324method under development. Not yet used. Ask Ilya :-)
1e44e2bf 2325
2326=cut
2327
f1387719 2328sub maybe_command_in_dirs { # $ver is optional argument if looking for perl
2329# Ilya's suggestion. Not yet used, want to understand it first, but at least the code is here
2330 my($self, $names, $dirs, $trace, $ver) = @_;
2331 my($name, $dir);
2332 foreach $dir (@$dirs){
2333 next unless defined $dir; # $self->{PERL_SRC} may be undefined
2334 foreach $name (@$names){
2335 my($abs,$tryabs);
2336 if ($self->file_name_is_absolute($name)) { # /foo/bar
2337 $abs = $name;
2338 } elsif ($self->canonpath($name) eq $self->canonpath(basename($name))) { # bar
2339 $abs = $self->catfile($dir, $name);
2340 } else { # foo/bar
2341 $abs = $self->catfile($self->curdir, $name);
2342 }
2343 print "Checking $abs for $name\n" if ($trace >= 2);
2344 next unless $tryabs = $self->maybe_command($abs);
2345 print "Substituting $tryabs instead of $abs\n"
2346 if ($trace >= 2 and $tryabs ne $abs);
2347 $abs = $tryabs;
2348 if (defined $ver) {
2349 print "Executing $abs\n" if ($trace >= 2);
2350 if (`$abs -e 'require $ver; print "VER_OK\n" ' 2>&1` =~ /VER_OK/) {
2351 print "Using PERL=$abs\n" if $trace;
2352 return $abs;
2353 }
2354 } else { # Do not look for perl
2355 return $abs;
2356 }
2357 }
1e44e2bf 2358 }
1e44e2bf 2359}
2360
f1387719 2361=item needs_linking (o)
1e44e2bf 2362
f1387719 2363Does this module need linking? Looks into subdirectory objects (see
2364also has_link_code())
1e44e2bf 2365
2366=cut
2367
f1387719 2368sub needs_linking {
2369 my($self) = shift;
2370 my($child,$caller);
2371 $caller = (caller(0))[3];
2372 Carp::confess("Needs_linking called too early") if $caller =~ /^ExtUtils::MakeMaker::/;
2373 return $self->{NEEDS_LINKING} if defined $self->{NEEDS_LINKING};
2374 if ($self->has_link_code or $self->{MAKEAPERL}){
2375 $self->{NEEDS_LINKING} = 1;
2376 return 1;
1e44e2bf 2377 }
f1387719 2378 foreach $child (keys %{$self->{CHILDREN}}) {
2379 if ($self->{CHILDREN}->{$child}->needs_linking) {
2380 $self->{NEEDS_LINKING} = 1;
2381 return 1;
2382 }
1e44e2bf 2383 }
f1387719 2384 return $self->{NEEDS_LINKING} = 0;
1e44e2bf 2385}
2386
f1387719 2387=item nicetext
1e44e2bf 2388
f1387719 2389misnamed method (will have to be changed). The MM_Unix method just
2390returns the argument without further processing.
2391
2392On VMS used to insure that colons marking targets are preceded by
2393space - most Unix Makes don't need this, but it's necessary under VMS
2394to distinguish the target delimiter from a colon appearing as part of
2395a filespec.
1e44e2bf 2396
2397=cut
2398
f1387719 2399sub nicetext {
2400 my($self,$text) = @_;
2401 $text;
2402}
1e44e2bf 2403
f1387719 2404=item parse_version
1e44e2bf 2405
f1387719 2406parse a file and return what you think is $VERSION in this file set to
1e44e2bf 2407
f1387719 2408=cut
2409
2410sub parse_version {
2411 my($self,$parsefile) = @_;
2412 my $result;
2413 local *FH;
2414 local $/ = "\n";
2415 open(FH,$parsefile) or die "Could not open '$parsefile': $!";
2416 my $inpod = 0;
2417 while (<FH>) {
2418 $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod;
2419 next if $inpod;
2420 chop;
2421 next unless /\$(([\w\:\']*)\bVERSION)\b.*\=/;
dbc738d9 2422 my $eval = qq{
2423 package ExtUtils::MakeMaker::_version;
a1f8e286 2424 no strict;
bab2b58e 2425
2426 \$$1=undef; do {
2427 $_
dbc738d9 2428 }; \$$1
2429 };
2430 local($^W) = 0;
2431 $result = eval($eval) || 0;
f1387719 2432 die "Could not eval '$eval' in $parsefile: $@" if $@;
f1387719 2433 last;
2434 }
2435 close FH;
2436 return $result;
1e44e2bf 2437}
2438
1e44e2bf 2439
f1387719 2440=item pasthru (o)
2441
2442Defines the string that is passed to recursive make calls in
2443subdirectories.
1e44e2bf 2444
2445=cut
2446
f1387719 2447sub pasthru {
1e44e2bf 2448 my($self) = shift;
f1387719 2449 my(@m,$key);
1e44e2bf 2450
f1387719 2451 my(@pasthru);
bbce6d69 2452 my($sep) = $Is_VMS ? ',' : '';
2453 $sep .= "\\\n\t";
1e44e2bf 2454
bab2b58e 2455 foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)){
f1387719 2456 push @pasthru, "$key=\"\$($key)\"";
2457 }
f4ae0f5e 2458
bbce6d69 2459 push @m, "\nPASTHRU = ", join ($sep, @pasthru), "\n";
f1387719 2460 join "", @m;
2461}
1e44e2bf 2462
f1387719 2463=item path
f4ae0f5e 2464
f1387719 2465Takes no argument, returns the environment variable PATH as an array.
1e44e2bf 2466
f1387719 2467=cut
2468
2469sub path {
2470 my($self) = @_;
2471 my $path_sep = $Is_OS2 ? ";" : ":";
2472 my $path = $ENV{PATH};
2473 $path =~ s:\\:/:g if $Is_OS2;
2474 my @path = split $path_sep, $path;
93f9cb4b 2475 foreach(@path) { $_ = '.' if $_ eq '' }
2476 @path;
1e44e2bf 2477}
2478
f1387719 2479=item perl_script
1e44e2bf 2480
f1387719 2481Takes one argument, a file name, and returns the file name, if the
2482argument is likely to be a perl script. On MM_Unix this is true for
2483any ordinary, readable file.
1e44e2bf 2484
2485=cut
2486
f1387719 2487sub perl_script {
2488 my($self,$file) = @_;
2489 return $file if -r $file && -f _;
2490 return;
1e44e2bf 2491}
2492
f1387719 2493=item perldepend (o)
1e44e2bf 2494
f1387719 2495Defines the dependency from all *.h files that come with the perl
2496distribution.
1e44e2bf 2497
2498=cut
2499
f1387719 2500sub perldepend {
1e44e2bf 2501 my($self) = shift;
f1387719 2502 my(@m);
2503 push @m, q{
2504# Check for unpropogated config.sh changes. Should never happen.
2505# We do NOT just update config.h because that is not sufficient.
2506# An out of date config.h is not fatal but complains loudly!
2507$(PERL_INC)/config.h: $(PERL_SRC)/config.sh
2508 -}.$self->{NOECHO}.q{echo "Warning: $(PERL_INC)/config.h out of date with $(PERL_SRC)/config.sh"; false
2509
2510$(PERL_ARCHLIB)/Config.pm: $(PERL_SRC)/config.sh
2511 }.$self->{NOECHO}.q{echo "Warning: $(PERL_ARCHLIB)/Config.pm may be out of date with $(PERL_SRC)/config.sh"
2512 cd $(PERL_SRC) && $(MAKE) lib/Config.pm
2513} if $self->{PERL_SRC};
2514
2515 return join "", @m unless $self->needs_linking;
2516
1e44e2bf 2517 push @m, q{
f1387719 2518PERL_HDRS = \
2519$(PERL_INC)/EXTERN.h $(PERL_INC)/gv.h $(PERL_INC)/pp.h \
2520$(PERL_INC)/INTERN.h $(PERL_INC)/handy.h $(PERL_INC)/proto.h \
2521$(PERL_INC)/XSUB.h $(PERL_INC)/hv.h $(PERL_INC)/regcomp.h \
2522$(PERL_INC)/av.h $(PERL_INC)/keywords.h $(PERL_INC)/regexp.h \
2523$(PERL_INC)/config.h $(PERL_INC)/mg.h $(PERL_INC)/scope.h \
2524$(PERL_INC)/cop.h $(PERL_INC)/op.h $(PERL_INC)/sv.h \
2525$(PERL_INC)/cv.h $(PERL_INC)/opcode.h $(PERL_INC)/unixish.h \
2526$(PERL_INC)/dosish.h $(PERL_INC)/patchlevel.h $(PERL_INC)/util.h \
2527$(PERL_INC)/embed.h $(PERL_INC)/perl.h \
2528$(PERL_INC)/form.h $(PERL_INC)/perly.h
2529
2530$(OBJECT) : $(PERL_HDRS)
2531} if $self->{OBJECT};
2532
2533 push @m, join(" ", values %{$self->{XS}})." : \$(XSUBPPDEPS)\n" if %{$self->{XS}};
2534
2535 join "\n", @m;
1e44e2bf 2536}
2537
f1387719 2538=item pm_to_blib
1e44e2bf 2539
f1387719 2540Defines target that copies all files in the hash PM to their
55497cff 2541destination and autosplits them. See L<ExtUtils::Install/DESCRIPTION>
1e44e2bf 2542
2543=cut
2544
f1387719 2545sub pm_to_blib {
2546 my $self = shift;
2547 my($autodir) = $self->catdir('$(INST_LIB)','auto');
2548 return q{
2549pm_to_blib: $(TO_INST_PM)
2550 }.$self->{NOECHO}.q{$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \
2551 "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \
68dc0745 2552 -e "pm_to_blib({qw{$(PM_TO_BLIB)}},'}.$autodir.q{')"
f1387719 2553 }.$self->{NOECHO}.q{$(TOUCH) $@
1e44e2bf 2554};
1e44e2bf 2555}
2556
f1387719 2557=item post_constants (o)
1e44e2bf 2558
f1387719 2559Returns an empty string per default. Dedicated to overrides from
2560within Makefile.PL after all constants have been defined.
1e44e2bf 2561
2562=cut
2563
f1387719 2564sub post_constants{
2565 my($self) = shift;
2566 "";
2567}
1e44e2bf 2568
f1387719 2569=item post_initialize (o)
1e44e2bf 2570
1fef88e7 2571Returns an empty string per default. Used in Makefile.PLs to add some
f1387719 2572chunk of text to the Makefile after the object is initialized.
1e44e2bf 2573
f1387719 2574=cut
1e44e2bf 2575
f1387719 2576sub post_initialize {
2577 my($self) = shift;
2578 "";
2579}
1e44e2bf 2580
f1387719 2581=item postamble (o)
1e44e2bf 2582
f1387719 2583Returns an empty string. Can be used in Makefile.PLs to write some
2584text to the Makefile at the end.
1e44e2bf 2585
f1387719 2586=cut
1e44e2bf 2587
f1387719 2588sub postamble {
2589 my($self) = shift;
2590 "";
2591}
1e44e2bf 2592
f1387719 2593=item prefixify
1e44e2bf 2594
f1387719 2595Check a path variable in $self from %Config, if it contains a prefix,
2596and replace it with another one.
1e44e2bf 2597
f1387719 2598Takes as arguments an attribute name, a search prefix and a
2599replacement prefix. Changes the attribute in the object.
1e44e2bf 2600
f1387719 2601=cut
1e44e2bf 2602
f1387719 2603sub prefixify {
2604 my($self,$var,$sprefix,$rprefix) = @_;
2605 $self->{uc $var} ||= $Config{lc $var};
2606 $self->{uc $var} = VMS::Filespec::unixpath($self->{uc $var}) if $Is_VMS;
2607 $self->{uc $var} =~ s/\Q$sprefix\E/$rprefix/;
2608}
1e44e2bf 2609
f1387719 2610=item processPL (o)
1e44e2bf 2611
f1387719 2612Defines targets to run *.PL files.
1e44e2bf 2613
f1387719 2614=cut
1e44e2bf 2615
f1387719 2616sub processPL {
2617 my($self) = shift;
2618 return "" unless $self->{PL_FILES};
2619 my(@m, $plfile);
2620 foreach $plfile (sort keys %{$self->{PL_FILES}}) {
2621 push @m, "
2622all :: $self->{PL_FILES}->{$plfile}
1e44e2bf 2623
f1387719 2624$self->{PL_FILES}->{$plfile} :: $plfile
2625 \$(PERL) -I\$(INST_ARCHLIB) -I\$(INST_LIB) -I\$(PERL_ARCHLIB) -I\$(PERL_LIB) $plfile
2626";
2627 }
2628 join "", @m;
1e44e2bf 2629}
2630
f1387719 2631=item realclean (o)
1e44e2bf 2632
f1387719 2633Defines the realclean target.
1e44e2bf 2634
2635=cut
2636
f1387719 2637sub realclean {
2638 my($self, %attribs) = @_;
2639 my(@m);
2640 push(@m,'
2641# Delete temporary files (via clean) and also delete installed files
2642realclean purge :: clean
2643');
2644 # realclean subdirectories first (already cleaned)
68dc0745 2645 my $sub = "\t-cd %s && \$(TEST_F) %s && \$(MAKE) %s realclean\n";
f1387719 2646 foreach(@{$self->{DIR}}){
2647 push(@m, sprintf($sub,$_,"$self->{MAKEFILE}.old","-f $self->{MAKEFILE}.old"));
2648 push(@m, sprintf($sub,$_,"$self->{MAKEFILE}",''));
1e44e2bf 2649 }
f1387719 2650 push(@m, " $self->{RM_RF} \$(INST_AUTODIR) \$(INST_ARCHAUTODIR)\n");
2651 if( $self->has_link_code ){
2652 push(@m, " $self->{RM_F} \$(INST_DYNAMIC) \$(INST_BOOT)\n");
2653 push(@m, " $self->{RM_F} \$(INST_STATIC)\n");
2654 }
2655 push(@m, " $self->{RM_F} " . join(" ", values %{$self->{PM}}) . "\n");
2656 my(@otherfiles) = ($self->{MAKEFILE},
2657 "$self->{MAKEFILE}.old"); # Makefiles last
2658 push(@otherfiles, $attribs{FILES}) if $attribs{FILES};
2659 push(@m, " $self->{RM_RF} @otherfiles\n") if @otherfiles;
2660 push(@m, " $attribs{POSTOP}\n") if $attribs{POSTOP};
2661 join("", @m);
1e44e2bf 2662}
2663
f1387719 2664=item replace_manpage_separator
1e44e2bf 2665
f1387719 2666Takes the name of a package, which may be a nested package, in the
2667form Foo/Bar and replaces the slash with C<::>. Returns the replacement.
1e44e2bf 2668
2669=cut
2670
f1387719 2671sub replace_manpage_separator {
2672 my($self,$man) = @_;
2673 $man =~ s,/+,::,g;
2674 $man;
2675}
1e44e2bf 2676
f1387719 2677=item static (o)
1e44e2bf 2678
f1387719 2679Defines the static target.
1e44e2bf 2680
f1387719 2681=cut
1e44e2bf 2682
f1387719 2683sub static {
2684# --- Static Loading Sections ---
1e44e2bf 2685
f1387719 2686 my($self) = shift;
2687 '
2688## $(INST_PM) has been moved to the all: target.
2689## It remains here for awhile to allow for old usage: "make static"
2690#static :: '.$self->{MAKEFILE}.' $(INST_STATIC) $(INST_PM)
2691static :: '.$self->{MAKEFILE}.' $(INST_STATIC)
2692 '.$self->{NOECHO}.'$(NOOP)
2693';
1e44e2bf 2694}
2695
f1387719 2696=item static_lib (o)
1e44e2bf 2697
f1387719 2698Defines how to produce the *.a (or equivalent) files.
1e44e2bf 2699
2700=cut
2701
f1387719 2702sub static_lib {
2703 my($self) = @_;
2704# Come to think of it, if there are subdirs with linkcode, we still have no INST_STATIC
2705# return '' unless $self->needs_linking(); #might be because of a subdir
1e44e2bf 2706
f1387719 2707 return '' unless $self->has_link_code;
2708
2709 my(@m);
2710 push(@m, <<'END');
2711$(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)/.exists
760ac839 2712 $(RM_RF) $@
f1387719 2713END
2714 # If this extension has it's own library (eg SDBM_File)
2715 # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
2716 push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
f4ae0f5e 2717
f1387719 2718 push @m,
760ac839 2719q{ $(AR) $(AR_STATIC_ARGS) $@ $(OBJECT) && $(RANLIB) $@
f1387719 2720 }.$self->{NOECHO}.q{echo "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)/extralibs.ld
2721 $(CHMOD) 755 $@
f4ae0f5e 2722};
1e44e2bf 2723
f1387719 2724# Old mechanism - still available:
2725
2726 push @m, "\t$self->{NOECHO}".q{echo "$(EXTRALIBS)" >> $(PERL_SRC)/ext.libs}."\n\n"
2727 if $self->{PERL_SRC};
2728
2729 push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
2730 join('', "\n",@m);
1e44e2bf 2731}
2732
f4ae0f5e 2733=item staticmake (o)
1e44e2bf 2734
f4ae0f5e 2735Calls makeaperl.
1e44e2bf 2736
2737=cut
2738
2739sub staticmake {
2740 my($self, %attribs) = @_;
1e44e2bf 2741 my(@static);
2742
2743 my(@searchdirs)=($self->{PERL_ARCHLIB}, $self->{SITEARCHEXP}, $self->{INST_ARCHLIB});
2744
2745 # And as it's not yet built, we add the current extension
2746 # but only if it has some C code (or XS code, which implies C code)
2747 if (@{$self->{C}}) {
f4ae0f5e 2748 @static = $self->catfile($self->{INST_ARCHLIB},
2749 "auto",
2750 $self->{FULLEXT},
2751 "$self->{BASEEXT}$self->{LIB_EXT}"
2752 );
1e44e2bf 2753 }
2754
2755 # Either we determine now, which libraries we will produce in the
2756 # subdirectories or we do it at runtime of the make.
2757
2758 # We could ask all subdir objects, but I cannot imagine, why it
2759 # would be necessary.
2760
2761 # Instead we determine all libraries for the new perl at
2762 # runtime.
2763 my(@perlinc) = ($self->{INST_ARCHLIB}, $self->{INST_LIB}, $self->{PERL_ARCHLIB}, $self->{PERL_LIB});
2764
2765 $self->makeaperl(MAKE => $self->{MAKEFILE},
2766 DIRS => \@searchdirs,
2767 STAT => \@static,
2768 INCL => \@perlinc,
2769 TARGET => $self->{MAP_TARGET},
2770 TMP => "",
2771 LIBPERL => $self->{LIBPERL_A}
2772 );
2773}
2774
f1387719 2775=item subdir_x (o)
2776
2777Helper subroutine for subdirs
2778
2779=cut
2780
2781sub subdir_x {
2782 my($self, $subdir) = @_;
2783 my(@m);
2784 qq{
2785
2786subdirs ::
2787 $self->{NOECHO}cd $subdir && \$(MAKE) all \$(PASTHRU)
2788
2789};
2790}
2791
2792=item subdirs (o)
2793
2794Defines targets to process subdirectories.
2795
2796=cut
2797
2798sub subdirs {
2799# --- Sub-directory Sections ---
2800 my($self) = shift;
2801 my(@m,$dir);
2802 # This method provides a mechanism to automatically deal with
2803 # subdirectories containing further Makefile.PL scripts.
2804 # It calls the subdir_x() method for each subdirectory.
2805 foreach $dir (@{$self->{DIR}}){
2806 push(@m, $self->subdir_x($dir));
2807#### print "Including $dir subdirectory\n";
2808 }
2809 if (@m){
2810 unshift(@m, "
2811# The default clean, realclean and test targets in this Makefile
2812# have automatically been given entries for each subdir.
2813
2814");
2815 } else {
2816 push(@m, "\n# none")
2817 }
2818 join('',@m);
2819}
2820
f4ae0f5e 2821=item test (o)
1e44e2bf 2822
f4ae0f5e 2823Defines the test targets.
1e44e2bf 2824
2825=cut
2826
2827sub test {
2828# --- Test and Installation Sections ---
2829
2830 my($self, %attribs) = @_;
1e44e2bf 2831 my($tests) = $attribs{TESTS} || (-d "t" ? "t/*.t" : "");
2832 my(@m);
2833 push(@m,"
2834TEST_VERBOSE=0
2835TEST_TYPE=test_\$(LINKTYPE)
f1387719 2836TEST_FILE = test.pl
2837TESTDB_SW = -d
1e44e2bf 2838
f4ae0f5e 2839testdb :: testdb_\$(LINKTYPE)
f1387719 2840
2841test :: \$(TEST_TYPE)
1e44e2bf 2842");
68dc0745 2843 push(@m, map("\t$self->{NOECHO}cd $_ && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) test \$(PASTHRU)\n",
1e44e2bf 2844 @{$self->{DIR}}));
2845 push(@m, "\t$self->{NOECHO}echo 'No tests defined for \$(NAME) extension.'\n")
2846 unless $tests or -f "test.pl" or @{$self->{DIR}};
2847 push(@m, "\n");
2848
f4ae0f5e 2849 push(@m, "test_dynamic :: pure_all\n");
1e44e2bf 2850 push(@m, $self->test_via_harness('$(FULLPERL)', $tests)) if $tests;
2851 push(@m, $self->test_via_script('$(FULLPERL)', 'test.pl')) if -f "test.pl";
2852 push(@m, "\n");
2853
f1387719 2854 push(@m, "testdb_dynamic :: pure_all\n");
2855 push(@m, $self->test_via_script('$(FULLPERL) $(TESTDB_SW)', '$(TEST_FILE)'));
2856 push(@m, "\n");
f4ae0f5e 2857
1e44e2bf 2858 # Occasionally we may face this degenerate target:
2859 push @m, "test_ : test_dynamic\n\n";
2860
2861 if ($self->needs_linking()) {
f4ae0f5e 2862 push(@m, "test_static :: pure_all \$(MAP_TARGET)\n");
1e44e2bf 2863 push(@m, $self->test_via_harness('./$(MAP_TARGET)', $tests)) if $tests;
2864 push(@m, $self->test_via_script('./$(MAP_TARGET)', 'test.pl')) if -f "test.pl";
2865 push(@m, "\n");
f1387719 2866 push(@m, "testdb_static :: pure_all \$(MAP_TARGET)\n");
2867 push(@m, $self->test_via_script('./$(MAP_TARGET) $(TESTDB_SW)', '$(TEST_FILE)'));
2868 push(@m, "\n");
1e44e2bf 2869 } else {
2870 push @m, "test_static :: test_dynamic\n";
f4ae0f5e 2871 push @m, "testdb_static :: testdb_dynamic\n";
1e44e2bf 2872 }
2873 join("", @m);
2874}
2875
f4ae0f5e 2876=item test_via_harness (o)
1e44e2bf 2877
f4ae0f5e 2878Helper method to write the test targets
1e44e2bf 2879
2880=cut
2881
2882sub test_via_harness {
2883 my($self, $perl, $tests) = @_;
1e44e2bf 2884 "\tPERL_DL_NONLAZY=1 $perl".q! -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' !."$tests\n";
2885}
2886
f4ae0f5e 2887=item test_via_script (o)
1e44e2bf 2888
f4ae0f5e 2889Other helper method for test.
1e44e2bf 2890
2891=cut
2892
2893sub test_via_script {
2894 my($self, $perl, $script) = @_;
1e44e2bf 2895 qq{\tPERL_DL_NONLAZY=1 $perl}.q{ -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) }.qq{$script
2896};
2897}
2898
f1387719 2899=item tool_autosplit (o)
1e44e2bf 2900
f1387719 2901Defines a simple perl call that runs autosplit. May be deprecated by
2902pm_to_blib soon.
1e44e2bf 2903
2904=cut
2905
f1387719 2906sub tool_autosplit {
2907# --- Tool Sections ---
2908
2909 my($self, %attribs) = @_;
2910 my($asl) = "";
2911 $asl = "\$AutoSplit::Maxlen=$attribs{MAXLEN};" if $attribs{MAXLEN};
2912 q{
2913# Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto
2914AUTOSPLITFILE = $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;'
2915};
1e44e2bf 2916}
2917
f1387719 2918=item tools_other (o)
1e44e2bf 2919
f1387719 2920Defines SHELL, LD, TOUCH, CP, MV, RM_F, RM_RF, CHMOD, UMASK_NULL in
2921the Makefile. Also defines the perl programs MKPATH,
2922WARN_IF_OLD_PACKLIST, MOD_INSTALL. DOC_INSTALL, and UNINSTALL.
1e44e2bf 2923
2924=cut
2925
f1387719 2926sub tools_other {
2927 my($self) = shift;
2928 my @m;
2929 my $bin_sh = $Config{sh} || '/bin/sh';
2930 push @m, qq{
2931SHELL = $bin_sh
2932};
2933
68dc0745 2934 for (qw/ CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL/ ) {
f1387719 2935 push @m, "$_ = $self->{$_}\n";
1e44e2bf 2936 }
1e44e2bf 2937
f1387719 2938 push @m, q{
2939# The following is a portable way to say mkdir -p
2940# To see which directories are created, change the if 0 to if 1
68dc0745 2941MKPATH = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e mkpath
1e44e2bf 2942
f1387719 2943# This helps us to minimize the effect of the .exists files A yet
2944# better solution would be to have a stable file in the perl
2945# distribution with a timestamp of zero. But this solution doesn't
2946# need any changes to the core distribution and works with older perls
68dc0745 2947EQUALIZE_TIMESTAMP = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e eqtime
f1387719 2948};
1e44e2bf 2949
68dc0745 2950
f1387719 2951 return join "", @m if $self->{PARENT};
1e44e2bf 2952
f1387719 2953 push @m, q{
2954# Here we warn users that an old packlist file was found somewhere,
2955# and that they should call some uninstall routine
2956WARN_IF_OLD_PACKLIST = $(PERL) -we 'exit unless -f $$ARGV[0];' \\
2957-e 'print "WARNING: I have found an old package in\n";' \\
2958-e 'print "\t$$ARGV[0].\n";' \\
2959-e 'print "Please make sure the two installations are not conflicting\n";'
1e44e2bf 2960
f1387719 2961UNINST=0
2962VERBINST=1
1e44e2bf 2963
f1387719 2964MOD_INSTALL = $(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MExtUtils::Install \
68dc0745 2965-e "install({@ARGV},'$(VERBINST)',0,'$(UNINST)');"
1e44e2bf 2966
dbc738d9 2967DOC_INSTALL = $(PERL) -e '$$\="\n\n";' \
2968-e 'print "=head2 ", scalar(localtime), ": C<", shift, ">", " L<", shift, ">";' \
f1387719 2969-e 'print "=over 4";' \
2970-e 'while (defined($$key = shift) and defined($$val = shift)){print "=item *";print "C<$$key: $$val>";}' \
2971-e 'print "=back";'
1e44e2bf 2972
f1387719 2973UNINSTALL = $(PERL) -MExtUtils::Install \
8fe37c6d 2974-e 'uninstall($$ARGV[0],1,1); print "\nUninstall is deprecated. Please check the";' \
2975-e 'print " packlist above carefully.\n There may be errors. Remove the";' \
2976-e 'print " appropriate files manually.\n Sorry for the inconveniences.\n"'
f1387719 2977};
1e44e2bf 2978
f1387719 2979 return join "", @m;
2980}
1e44e2bf 2981
f1387719 2982=item tool_xsubpp (o)
1e44e2bf 2983
f1387719 2984Determines typemaps, xsubpp version, prototype behaviour.
1e44e2bf 2985
f1387719 2986=cut
1e44e2bf 2987
f1387719 2988sub tool_xsubpp {
2989 my($self) = shift;
2990 return "" unless $self->needs_linking;
2991 my($xsdir) = $self->catdir($self->{PERL_LIB},"ExtUtils");
2992 my(@tmdeps) = $self->catdir('$(XSUBPPDIR)','typemap');
2993 if( $self->{TYPEMAPS} ){
2994 my $typemap;
2995 foreach $typemap (@{$self->{TYPEMAPS}}){
2996 if( ! -f $typemap ){
2997 warn "Typemap $typemap not found.\n";
2998 }
2999 else{
3000 push(@tmdeps, $typemap);
3001 }
3002 }
3003 }
3004 push(@tmdeps, "typemap") if -f "typemap";
3005 my(@tmargs) = map("-typemap $_", @tmdeps);
3006 if( exists $self->{XSOPT} ){
3007 unshift( @tmargs, $self->{XSOPT} );
1e44e2bf 3008 }
3009
1e44e2bf 3010
f1387719 3011 my $xsubpp_version = $self->xsubpp_version($self->catfile($xsdir,"xsubpp"));
1e44e2bf 3012
f1387719 3013 # What are the correct thresholds for version 1 && 2 Paul?
3014 if ( $xsubpp_version > 1.923 ){
3015 $self->{XSPROTOARG} = "" unless defined $self->{XSPROTOARG};
3016 } else {
3017 if (defined $self->{XSPROTOARG} && $self->{XSPROTOARG} =~ /\-prototypes/) {
3018 print STDOUT qq{Warning: This extension wants to pass the switch "-prototypes" to xsubpp.
3019 Your version of xsubpp is $xsubpp_version and cannot handle this.
3020 Please upgrade to a more recent version of xsubpp.
3021};
3022 } else {
3023 $self->{XSPROTOARG} = "";
3024 }
1e44e2bf 3025 }
3026
f1387719 3027 return qq{
3028XSUBPPDIR = $xsdir
3029XSUBPP = \$(XSUBPPDIR)/xsubpp
3030XSPROTOARG = $self->{XSPROTOARG}
3031XSUBPPDEPS = @tmdeps
3032XSUBPPARGS = @tmargs
3033};
3034};
1e44e2bf 3035
f1387719 3036sub xsubpp_version
3037{
3038 my($self,$xsubpp) = @_;
3039 return $Xsubpp_Version if defined $Xsubpp_Version; # global variable
1e44e2bf 3040
f1387719 3041 my ($version) ;
1e44e2bf 3042
f1387719 3043 # try to figure out the version number of the xsubpp on the system
1e44e2bf 3044
f1387719 3045 # first try the -v flag, introduced in 1.921 & 2.000a2
1e44e2bf 3046
f1387719 3047 return "" unless $self->needs_linking;
1e44e2bf 3048
f1387719 3049 my $command = "$self->{PERL} -I$self->{PERL_LIB} $xsubpp -v 2>&1";
3050 print "Running $command\n" if $Verbose >= 2;
3051 $version = `$command` ;
3052 warn "Running '$command' exits with status " . ($?>>8) if $?;
3053 chop $version ;
1e44e2bf 3054
f1387719 3055 return $Xsubpp_Version = $1 if $version =~ /^xsubpp version (.*)/ ;
1e44e2bf 3056
f1387719 3057 # nope, then try something else
1e44e2bf 3058
f1387719 3059 my $counter = '000';
3060 my ($file) = 'temp' ;
3061 $counter++ while -e "$file$counter"; # don't overwrite anything
3062 $file .= $counter;
1e44e2bf 3063
f1387719 3064 open(F, ">$file") or die "Cannot open file '$file': $!\n" ;
3065 print F <<EOM ;
3066MODULE = fred PACKAGE = fred
1e44e2bf 3067
f1387719 3068int
3069fred(a)
3070 int a;
3071EOM
1e44e2bf 3072
f1387719 3073 close F ;
1e44e2bf 3074
f1387719 3075 $command = "$self->{PERL} $xsubpp $file 2>&1";
3076 print "Running $command\n" if $Verbose >= 2;
3077 my $text = `$command` ;
3078 warn "Running '$command' exits with status " . ($?>>8) if $?;
3079 unlink $file ;
3080
3081 # gets 1.2 -> 1.92 and 2.000a1
3082 return $Xsubpp_Version = $1 if $text =~ /automatically by xsubpp version ([\S]+)\s*/ ;
3083
3084 # it is either 1.0 or 1.1
3085 return $Xsubpp_Version = 1.1 if $text =~ /^Warning: ignored semicolon/ ;
3086
3087 # none of the above, so 1.0
3088 return $Xsubpp_Version = "1.0" ;
1e44e2bf 3089}
3090
f1387719 3091=item top_targets (o)
1e44e2bf 3092
f1387719 3093Defines the targets all, subdirs, config, and O_FILES
1e44e2bf 3094
3095=cut
3096
f1387719 3097sub top_targets {
3098# --- Target Sections ---
1e44e2bf 3099
f1387719 3100 my($self) = shift;
3101 my(@m);
3102 push @m, '
3103#all :: config $(INST_PM) subdirs linkext manifypods
68dc0745 3104';
1e44e2bf 3105
68dc0745 3106 push @m, '
f1387719 3107all :: pure_all manifypods
3108 '.$self->{NOECHO}.'$(NOOP)
68dc0745 3109'
3110 unless $self->{SKIPHASH}{'all'};
3111
3112 push @m, '
f1387719 3113pure_all :: config pm_to_blib subdirs linkext
3114 '.$self->{NOECHO}.'$(NOOP)
1e44e2bf 3115
f1387719 3116subdirs :: $(MYEXTLIB)
3117 '.$self->{NOECHO}.'$(NOOP)
1e44e2bf 3118
f1387719 3119config :: '.$self->{MAKEFILE}.' $(INST_LIBDIR)/.exists
3120 '.$self->{NOECHO}.'$(NOOP)
3121
3122config :: $(INST_ARCHAUTODIR)/.exists
3123 '.$self->{NOECHO}.'$(NOOP)
3124
3125config :: $(INST_AUTODIR)/.exists
3126 '.$self->{NOECHO}.'$(NOOP)
3127';
3128
3129 push @m, qq{
3130config :: Version_check
3131 $self->{NOECHO}\$(NOOP)
3132
3133} unless $self->{PARENT} or ($self->{PERL_SRC} && $self->{INSTALLDIRS} eq "perl") or $self->{NO_VC};
3134
3135 push @m, $self->dir_target(qw[$(INST_AUTODIR) $(INST_LIBDIR) $(INST_ARCHAUTODIR)]);
3136
3137 if (%{$self->{MAN1PODS}}) {
3138 push @m, qq[
3139config :: \$(INST_MAN1DIR)/.exists
3140 $self->{NOECHO}\$(NOOP)
3141
3142];
3143 push @m, $self->dir_target(qw[$(INST_MAN1DIR)]);
1e44e2bf 3144 }
f1387719 3145 if (%{$self->{MAN3PODS}}) {
3146 push @m, qq[
3147config :: \$(INST_MAN3DIR)/.exists
3148 $self->{NOECHO}\$(NOOP)
3149
3150];
3151 push @m, $self->dir_target(qw[$(INST_MAN3DIR)]);
1e44e2bf 3152 }
1e44e2bf 3153
f1387719 3154 push @m, '
3155$(O_FILES): $(H_FILES)
3156' if @{$self->{O_FILES} || []} && @{$self->{H} || []};
1e44e2bf 3157
f1387719 3158 push @m, q{
3159help:
3160 perldoc ExtUtils::MakeMaker
3161};
1e44e2bf 3162
f1387719 3163 push @m, q{
3164Version_check:
3165 }.$self->{NOECHO}.q{$(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
3166 -MExtUtils::MakeMaker=Version_check \
68dc0745 3167 -e "Version_check('$(MM_VERSION)')"
f1387719 3168};
1e44e2bf 3169
f1387719 3170 join('',@m);
1e44e2bf 3171}
3172
3173=item writedoc
3174
f4ae0f5e 3175Obsolete, depecated method. Not used since Version 5.21.
1e44e2bf 3176
3177=cut
3178
3179sub writedoc {
3180# --- perllocal.pod section ---
3181 my($self,$what,$name,@attribs)=@_;
1e44e2bf 3182 my $time = localtime;
3183 print "=head2 $time: $what C<$name>\n\n=over 4\n\n=item *\n\n";
3184 print join "\n\n=item *\n\n", map("C<$_>",@attribs);
3185 print "\n\n=back\n\n";
3186}
3187
f1387719 3188=item xs_c (o)
3189
3190Defines the suffix rules to compile XS files to C.
3191
3192=cut
3193
3194sub xs_c {
3195 my($self) = shift;
3196 return '' unless $self->needs_linking();
3197 '
3198.xs.c:
68dc0745 3199 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs >$*.tc && $(MV) $*.tc $@
f1387719 3200';
3201}
3202
3203=item xs_o (o)
3204
3205Defines suffix rules to go from XS to object files directly. This is
3206only intended for broken make implementations.
3207
3208=cut
3209
3210sub xs_o { # many makes are too dumb to use xs_c then c_o
3211 my($self) = shift;
3212 return '' unless $self->needs_linking();
3213 '
3214.xs$(OBJ_EXT):
68dc0745 3215 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs >xstmp.c && $(MV) xstmp.c $*.c
042ade60 3216 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
f1387719 3217';
3218}
3219
68dc0745 3220=item perl_archive
3221
3222This is internal method that returns path to libperl.a equivalent
3223to be linked to dynamic extensions. UNIX does not have one but OS2
3224and Win32 do.
3225
3226=cut
3227
3228sub perl_archive
3229{
3230 return "";
3231}
3232
3233=item export_list
3234
3235This is internal method that returns name of a file that is
3236passed to linker to define symbols to be exported.
3237UNIX does not have one but OS2 and Win32 do.
3238
3239=cut
3240
3241sub export_list
3242{
3243 return "";
3244}
3245
3246
f4ae0f5e 32471;
3248
bab2b58e 3249=back
f4ae0f5e 3250
1e44e2bf 3251=head1 SEE ALSO
3252
3253L<ExtUtils::MakeMaker>
3254
3255=cut
3256
f4ae0f5e 3257__END__