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