enable Win32 to build again
[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.12606';
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 AR, AR_STATIC_ARGS, BASEEXT, CONFIG, DISTNAME, DLBASE,
1617 EXE_EXT, FULLEXT, FULLPERL, INST_*, INSTALL*, INSTALLDIRS, LD,
1618 LIB_EXT, LIBPERL_A, MAP_TARGET, NAME, OBJ_EXT, PARENT_NAME, PERL,
1619 PERL_ARCHLIB, PERL_INC, PERL_LIB, PERL_SRC, PERLRUN, PERLRUNINST,
1620 PREFIX, TEST_LIBS, VERSION, VERSION_FROM, VERSION_SYM, XS_VERSION.
1621
1622 =cut
1623
1624 sub init_main {
1625     my($self) = @_;
1626
1627     # --- Initialize Module Name and Paths
1628
1629     # NAME    = Foo::Bar::Oracle
1630     # FULLEXT = Foo/Bar/Oracle
1631     # BASEEXT = Oracle
1632     # ROOTEXT = Directory part of FULLEXT with leading /. !!! Deprecated from MM 5.32 !!!
1633     # PARENT_NAME = Foo::Bar
1634 ### Only UNIX:
1635 ###    ($self->{FULLEXT} =
1636 ###     $self->{NAME}) =~ s!::!/!g ; #eg. BSD/Foo/Socket
1637     $self->{FULLEXT} = File::Spec->catdir(split /::/, $self->{NAME});
1638
1639
1640     # Copied from DynaLoader:
1641
1642     my(@modparts) = split(/::/,$self->{NAME});
1643     my($modfname) = $modparts[-1];
1644
1645     # Some systems have restrictions on files names for DLL's etc.
1646     # mod2fname returns appropriate file base name (typically truncated)
1647     # It may also edit @modparts if required.
1648     if (defined &DynaLoader::mod2fname) {
1649         $modfname = &DynaLoader::mod2fname(\@modparts);
1650     }
1651
1652     ($self->{PARENT_NAME}, $self->{BASEEXT}) = $self->{NAME} =~ m!(?:([\w:]+)::)?(\w+)\z! ;
1653
1654     if (defined &DynaLoader::mod2fname) {
1655         # As of 5.001m, dl_os2 appends '_'
1656         $self->{DLBASE} = $modfname;
1657     } else {
1658         $self->{DLBASE} = '$(BASEEXT)';
1659     }
1660
1661
1662     ### ROOTEXT deprecated from MM 5.32
1663 ###    ($self->{ROOTEXT} =
1664 ###     $self->{FULLEXT}) =~ s#/?\Q$self->{BASEEXT}\E$## ;      #eg. /BSD/Foo
1665 ###    $self->{ROOTEXT} = ($Is_VMS ? '' : '/') . $self->{ROOTEXT} if $self->{ROOTEXT};
1666
1667
1668     # --- Initialize PERL_LIB, INST_LIB, PERL_SRC
1669
1670     # *Real* information: where did we get these two from? ...
1671     my $inc_config_dir = dirname($INC{'Config.pm'});
1672     my $inc_carp_dir   = dirname($INC{'Carp.pm'});
1673
1674     unless ($self->{PERL_SRC}){
1675         my($dir);
1676         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())){
1677             if (
1678                 -f File::Spec->catfile($dir,"config.sh")
1679                 &&
1680                 -f File::Spec->catfile($dir,"perl.h")
1681                 &&
1682                 -f File::Spec->catfile($dir,"lib","Exporter.pm")
1683                ) {
1684                 $self->{PERL_SRC}=$dir ;
1685                 last;
1686             }
1687         }
1688     }
1689     if ($self->{PERL_SRC}){
1690         $self->{PERL_LIB}     ||= File::Spec->catdir("$self->{PERL_SRC}","lib");
1691         $self->{PERL_ARCHLIB} = $self->{PERL_LIB};
1692         $self->{PERL_INC}     = ($Is_Win32) ? File::Spec->catdir($self->{PERL_LIB},"CORE") : $self->{PERL_SRC};
1693
1694         # catch a situation that has occurred a few times in the past:
1695         unless (
1696                 -s File::Spec->catfile($self->{PERL_SRC},'cflags')
1697                 or
1698                 $Is_VMS
1699                 &&
1700                 -s File::Spec->catfile($self->{PERL_SRC},'perlshr_attr.opt')
1701                 or
1702                 $Is_Mac
1703                 or
1704                 $Is_Win32
1705                ){
1706             warn qq{
1707 You cannot build extensions below the perl source tree after executing
1708 a 'make clean' in the perl source tree.
1709
1710 To rebuild extensions distributed with the perl source you should
1711 simply Configure (to include those extensions) and then build perl as
1712 normal. After installing perl the source tree can be deleted. It is
1713 not needed for building extensions by running 'perl Makefile.PL'
1714 usually without extra arguments.
1715
1716 It is recommended that you unpack and build additional extensions away
1717 from the perl source tree.
1718 };
1719         }
1720     } else {
1721         # we should also consider $ENV{PERL5LIB} here
1722         my $old = $self->{PERL_LIB} || $self->{PERL_ARCHLIB} || $self->{PERL_INC};
1723         $self->{PERL_LIB}     ||= $Config::Config{privlibexp};
1724         $self->{PERL_ARCHLIB} ||= $Config::Config{archlibexp};
1725         $self->{PERL_INC}     = File::Spec->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
1726         my $perl_h;
1727
1728         no warnings 'uninitialized' ;
1729         if (not -f ($perl_h = File::Spec->catfile($self->{PERL_INC},"perl.h"))
1730             and not $old){
1731             # Maybe somebody tries to build an extension with an
1732             # uninstalled Perl outside of Perl build tree
1733             my $found;
1734             for my $dir (@INC) {
1735               $found = $dir, last if -e File::Spec->catdir($dir, "Config.pm");
1736             }
1737             if ($found) {
1738               my $inc = dirname $found;
1739               if (-e File::Spec->catdir($inc, "perl.h")) {
1740                 $self->{PERL_LIB}          = $found;
1741                 $self->{PERL_ARCHLIB}      = $found;
1742                 $self->{PERL_INC}          = $inc;
1743                 $self->{UNINSTALLED_PERL}  = 1;
1744                 print STDOUT <<EOP;
1745 ... Detected uninstalled Perl.  Trying to continue.
1746 EOP
1747               }
1748             }
1749         }
1750         
1751         unless (-f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))){
1752             die qq{
1753 Error: Unable to locate installed Perl libraries or Perl source code.
1754
1755 It is recommended that you install perl in a standard location before
1756 building extensions. Some precompiled versions of perl do not contain
1757 these header files, so you cannot build extensions. In such a case,
1758 please build and install your perl from a fresh perl distribution. It
1759 usually solves this kind of problem.
1760
1761 \(You get this message, because MakeMaker could not find "$perl_h"\)
1762 };
1763         }
1764 #        print STDOUT "Using header files found in $self->{PERL_INC}\n"
1765 #            if $Verbose && $self->needs_linking();
1766
1767     }
1768
1769     # We get SITELIBEXP and SITEARCHEXP directly via
1770     # Get_from_Config. When we are running standard modules, these
1771     # won't matter, we will set INSTALLDIRS to "perl". Otherwise we
1772     # set it to "site". I prefer that INSTALLDIRS be set from outside
1773     # MakeMaker.
1774     $self->{INSTALLDIRS} ||= "site";
1775
1776     # INST_LIB typically pre-set if building an extension after
1777     # perl has been built and installed. Setting INST_LIB allows
1778     # you to build directly into, say $Config::Config{privlibexp}.
1779     unless ($self->{INST_LIB}){
1780
1781
1782         ##### XXXXX We have to change this nonsense
1783
1784         if (defined $self->{PERL_SRC} and $self->{INSTALLDIRS} eq "perl") {
1785             $self->{INST_LIB} = $self->{INST_ARCHLIB} = $self->{PERL_LIB};
1786         } else {
1787             $self->{INST_LIB} = File::Spec->catdir(File::Spec->curdir,"blib","lib");
1788         }
1789     }
1790     $self->{INST_ARCHLIB} ||= File::Spec->catdir(File::Spec->curdir,"blib","arch");
1791     $self->{INST_BIN} ||= File::Spec->catdir(File::Spec->curdir,'blib','bin');
1792
1793     # We need to set up INST_LIBDIR before init_libscan() for VMS
1794     my @parentdir = split(/::/, $self->{PARENT_NAME});
1795     $self->{INST_LIBDIR} = File::Spec->catdir($self->{INST_LIB},@parentdir);
1796     $self->{INST_ARCHLIBDIR} = File::Spec->catdir($self->{INST_ARCHLIB},@parentdir);
1797     $self->{INST_AUTODIR} = File::Spec->catdir($self->{INST_LIB},'auto',$self->{FULLEXT});
1798     $self->{INST_ARCHAUTODIR} = File::Spec->catdir($self->{INST_ARCHLIB},'auto',$self->{FULLEXT});
1799
1800     # INST_EXE is deprecated, should go away March '97
1801     $self->{INST_EXE} ||= File::Spec->catdir(File::Spec->curdir,'blib','script');
1802     $self->{INST_SCRIPT} ||= File::Spec->catdir(File::Spec->curdir,'blib','script');
1803
1804     # The user who requests an installation directory explicitly
1805     # should not have to tell us an architecture installation directory
1806     # as well. We look if a directory exists that is named after the
1807     # architecture. If not we take it as a sign that it should be the
1808     # same as the requested installation directory. Otherwise we take
1809     # the found one.
1810     # We do the same thing twice: for privlib/archlib and for sitelib/sitearch
1811     my($libpair);
1812     for $libpair ({l=>"privlib", a=>"archlib"}, {l=>"sitelib", a=>"sitearch"}) {
1813         my $lib = "install$libpair->{l}";
1814         my $Lib = uc $lib;
1815         my $Arch = uc "install$libpair->{a}";
1816         if( $self->{$Lib} && ! $self->{$Arch} ){
1817             my($ilib) = $Config{$lib};
1818             $ilib = VMS::Filespec::unixify($ilib) if $Is_VMS;
1819
1820             $self->prefixify($Arch,$ilib,$self->{$Lib});
1821
1822             unless (-d $self->{$Arch}) {
1823                 print STDOUT "Directory $self->{$Arch} not found, thusly\n" if $Verbose;
1824                 $self->{$Arch} = $self->{$Lib};
1825             }
1826             print STDOUT "Defaulting $Arch to $self->{$Arch}\n" if $Verbose;
1827         }
1828     }
1829
1830     # we have to look at the relation between $Config{prefix} and the
1831     # requested values. We're going to set the $Config{prefix} part of
1832     # all the installation path variables to literally $(PREFIX), so
1833     # the user can still say make PREFIX=foo
1834     my($configure_prefix) = $Config{'prefix'};
1835     $configure_prefix = VMS::Filespec::unixify($configure_prefix) if $Is_VMS;
1836     $self->{PREFIX} ||= $configure_prefix;
1837
1838
1839     my($install_variable,$search_prefix,$replace_prefix);
1840
1841     # If the prefix contains perl, Configure shapes the tree as follows:
1842     #    perlprefix/lib/                INSTALLPRIVLIB
1843     #    perlprefix/lib/pod/
1844     #    perlprefix/lib/site_perl/      INSTALLSITELIB
1845     #    perlprefix/bin/                INSTALLBIN
1846     #    perlprefix/man/                INSTALLMAN1DIR
1847     # else
1848     #    prefix/lib/perl5/              INSTALLPRIVLIB
1849     #    prefix/lib/perl5/pod/
1850     #    prefix/lib/perl5/site_perl/    INSTALLSITELIB
1851     #    prefix/bin/                    INSTALLBIN
1852     #    prefix/lib/perl5/man/          INSTALLMAN1DIR
1853     #
1854     # The above results in various kinds of breakage on various
1855     # platforms, so we cope with it as follows: if prefix/lib/perl5
1856     # or prefix/lib/perl5/man exist, we'll replace those instead
1857     # of /prefix/{lib,man}
1858
1859     $replace_prefix = qq[\$\(PREFIX\)];
1860     for $install_variable (qw/
1861                            INSTALLBIN
1862                            INSTALLSCRIPT
1863                            /) {
1864         $self->prefixify($install_variable,$configure_prefix,$replace_prefix);
1865     }
1866     my $funkylibdir = $self->catdir($configure_prefix,"lib","perl5");
1867     $funkylibdir = '' unless -d $funkylibdir;
1868     $search_prefix = $funkylibdir || $self->catdir($configure_prefix,"lib");
1869     if ($self->{LIB}) {
1870         $self->{INSTALLPRIVLIB} = $self->{INSTALLSITELIB} = $self->{LIB};
1871         $self->{INSTALLARCHLIB} = $self->{INSTALLSITEARCH} = 
1872             $self->catdir($self->{LIB},$Config{'archname'});
1873     }
1874     else {
1875         if (-d $self->catdir($self->{PREFIX},"lib","perl5")) {
1876             $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib", "perl5");
1877         }
1878         else {
1879             $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib");
1880         }
1881         for $install_variable (qw/
1882                                INSTALLPRIVLIB
1883                                INSTALLARCHLIB
1884                                INSTALLSITELIB
1885                                INSTALLSITEARCH
1886                                /)
1887         {
1888             $self->prefixify($install_variable,$search_prefix,$replace_prefix);
1889         }
1890     }
1891     my $funkymandir = File::Spec->catdir($configure_prefix,"lib","perl5","man");
1892     $funkymandir = '' unless -d $funkymandir;
1893     $search_prefix = $funkymandir || File::Spec->catdir($configure_prefix,"man");
1894     if (-d File::Spec->catdir($self->{PREFIX},"lib","perl5", "man")) {
1895         $replace_prefix = File::Spec->catdir(qq[\$\(PREFIX\)],"lib", "perl5", "man");
1896     }
1897     else {
1898         $replace_prefix = File::Spec->catdir(qq[\$\(PREFIX\)],"man");
1899     }
1900     for $install_variable (qw/
1901                            INSTALLMAN1DIR
1902                            INSTALLMAN3DIR
1903                            /)
1904     {
1905         $self->prefixify($install_variable,$search_prefix,$replace_prefix);
1906     }
1907
1908     # Now we head at the manpages. Maybe they DO NOT want manpages
1909     # installed
1910     $self->{INSTALLMAN1DIR} = $Config::Config{installman1dir}
1911         unless defined $self->{INSTALLMAN1DIR};
1912     unless (defined $self->{INST_MAN1DIR}){
1913         if ($self->{INSTALLMAN1DIR} =~ /^(none|\s*)$/){
1914             $self->{INST_MAN1DIR} = $self->{INSTALLMAN1DIR};
1915         } else {
1916             $self->{INST_MAN1DIR} = File::Spec->catdir(File::Spec->curdir,'blib','man1');
1917         }
1918     }
1919     $self->{MAN1EXT} ||= $Config::Config{man1ext};
1920
1921     $self->{INSTALLMAN3DIR} = $Config::Config{installman3dir}
1922         unless defined $self->{INSTALLMAN3DIR};
1923     unless (defined $self->{INST_MAN3DIR}){
1924         if ($self->{INSTALLMAN3DIR} =~ /^(none|\s*)$/){
1925             $self->{INST_MAN3DIR} = $self->{INSTALLMAN3DIR};
1926         } else {
1927             $self->{INST_MAN3DIR} = File::Spec->catdir(File::Spec->curdir,'blib','man3');
1928         }
1929     }
1930     $self->{MAN3EXT} ||= $Config::Config{man3ext};
1931
1932     $self->{INSTALLHTMLPRIVLIBDIR} = $Config::Config{installhtmlprivlibdir}
1933         unless defined $self->{INSTALLHTMLPRIVLIBDIR};
1934     $self->{INSTALLHTMLSITELIBDIR} = $Config::Config{installhtmlsitelibdir}
1935         unless defined $self->{INSTALLHTMLSITELIBDIR};
1936
1937     unless (defined $self->{INST_HTMLLIBDIR}){
1938         if ($self->{INSTALLHTMLSITELIBDIR} =~ /^(none|\s*)$/){
1939             $self->{INST_HTMLLIBDIR} = $self->{INSTALLHTMLSITELIBDIR};
1940         } else {
1941             $self->{INST_HTMLLIBDIR} = File::Spec->catdir(File::Spec->curdir,'blib','html','lib');
1942         }
1943     }
1944
1945     $self->{INSTALLHTMLSCRIPTDIR} = $Config::Config{installhtmlscriptdir}
1946         unless defined $self->{INSTALLHTMLSCRIPTDIR};
1947     unless (defined $self->{INST_HTMLSCRIPTDIR}){
1948         if ($self->{INSTALLHTMLSCRIPTDIR} =~ /^(none|\s*)$/){
1949             $self->{INST_HTMLSCRIPTDIR} = $self->{INSTALLHTMLSCRIPTDIR};
1950         } else {
1951             $self->{INST_HTMLSCRIPTDIR} = File::Spec->catdir(File::Spec->curdir,'blib','html','bin');
1952         }
1953     }
1954     $self->{HTMLEXT} ||= $Config::Config{htmlext} || 'html';
1955
1956
1957     # Get some stuff out of %Config if we haven't yet done so
1958     print STDOUT "CONFIG must be an array ref\n"
1959         if ($self->{CONFIG} and ref $self->{CONFIG} ne 'ARRAY');
1960     $self->{CONFIG} = [] unless (ref $self->{CONFIG});
1961     push(@{$self->{CONFIG}}, @ExtUtils::MakeMaker::Get_from_Config);
1962     push(@{$self->{CONFIG}}, 'shellflags') if $Config::Config{shellflags};
1963     my(%once_only,$m);
1964     foreach $m (@{$self->{CONFIG}}){
1965         next if $once_only{$m};
1966         print STDOUT "CONFIG key '$m' does not exist in Config.pm\n"
1967                 unless exists $Config::Config{$m};
1968         $self->{uc $m} ||= $Config::Config{$m};
1969         $once_only{$m} = 1;
1970     }
1971
1972 # This is too dangerous:
1973 #    if ($^O eq "next") {
1974 #       $self->{AR} = "libtool";
1975 #       $self->{AR_STATIC_ARGS} = "-o";
1976 #    }
1977 # But I leave it as a placeholder
1978
1979     $self->{AR_STATIC_ARGS} ||= "cr";
1980
1981     # These should never be needed
1982     $self->{LD} ||= 'ld';
1983     $self->{OBJ_EXT} ||= '.o';
1984     $self->{LIB_EXT} ||= '.a';
1985
1986     $self->{MAP_TARGET} ||= "perl";
1987
1988     $self->{LIBPERL_A} ||= "libperl$self->{LIB_EXT}";
1989
1990     # make a simple check if we find Exporter
1991     warn "Warning: PERL_LIB ($self->{PERL_LIB}) seems not to be a perl library directory
1992         (Exporter.pm not found)"
1993         unless -f File::Spec->catfile("$self->{PERL_LIB}","Exporter.pm") ||
1994         $self->{NAME} eq "ExtUtils::MakeMaker";
1995
1996     # Determine VERSION and VERSION_FROM
1997     ($self->{DISTNAME}=$self->{NAME}) =~ s#(::)#-#g unless $self->{DISTNAME};
1998     if ($self->{VERSION_FROM}){
1999         $self->{VERSION} = $self->parse_version($self->{VERSION_FROM}) or
2000             Carp::carp "WARNING: Setting VERSION via file '$self->{VERSION_FROM}' failed\n"
2001     }
2002
2003     # strip blanks
2004     if ($self->{VERSION}) {
2005         $self->{VERSION} =~ s/^\s+//;
2006         $self->{VERSION} =~ s/\s+$//;
2007     }
2008
2009     $self->{VERSION} ||= "0.10";
2010     ($self->{VERSION_SYM} = $self->{VERSION}) =~ s/\W/_/g;
2011
2012
2013     # Graham Barr and Paul Marquess had some ideas how to ensure
2014     # version compatibility between the *.pm file and the
2015     # corresponding *.xs file. The bottomline was, that we need an
2016     # XS_VERSION macro that defaults to VERSION:
2017     $self->{XS_VERSION} ||= $self->{VERSION};
2018
2019     # --- Initialize Perl Binary Locations
2020
2021     # Find Perl 5. The only contract here is that both 'PERL' and 'FULLPERL'
2022     # will be working versions of perl 5.
2023     my ($component,@defpath);
2024     foreach $component ($self->{PERL_SRC}, $self->path(), 
2025                         $Config::Config{binexp}) 
2026     {
2027         push @defpath, $component if defined $component;
2028     }
2029
2030     my @perls = ($self->canonpath($^X), 'perl', 'perl5', "perl$Config{version}");
2031
2032     # miniperl has priority over all but the cannonical perl when in the 
2033     # core.  Otherwise its a last resort.
2034     if( $self->{PERL_CORE} ) {
2035         splice @perls, 1, 0, 'miniperl';
2036     }
2037     else {
2038         push @perls, 'miniperl';
2039     }
2040
2041     # Build up a set of file names (not command names).
2042     foreach $element (@perls) {
2043         $element .= $Config{exe_ext}
2044           unless $element =~ m/$Config{exe_ext}$/i;
2045     }
2046
2047     $self->{PERL} ||=
2048         $self->find_perl(5.0, \@perls, \@defpath, $Verbose );
2049     # don't check if perl is executable, maybe they have decided to
2050     # supply switches with perl
2051
2052     # Define 'FULLPERL' to be a non-miniperl (used in test: target)
2053     ($self->{FULLPERL} = $self->{PERL}) =~ s/miniperl/perl/i
2054         unless ($self->{FULLPERL});
2055
2056     # Are we building the core?
2057     $self->{PERL_CORE} = 0 unless exists $self->{PERL_CORE};
2058
2059     my $aq = ($^O eq 'VMS' ? '"' : '');  # command-line argument quoter
2060
2061     # How do we run perl?
2062     $self->{PERLRUN}      = $self->{PERL};
2063     $self->{PERLRUN} .= " -${aq}I\$(PERL_LIB)$aq" if $self->{UNINSTALLED_PERL};
2064
2065     # How do we run perl when installing libraries?
2066     $self->{PERLRUNINST} .= $self->{PERLRUN}. " -${aq}I\$(INST_ARCHLIB)$aq -${aq}I\$(INST_LIB)$aq";
2067
2068     # What extra library dirs do we need when running the tests?
2069     $self->{TEST_LIBS}   .= " -${aq}I\$(INST_ARCHLIB)$aq -${aq}I\$(INST_LIB)$aq";
2070
2071     # When building the core, we need to add some helper libs since
2072     # perl's @INC won't work (we're not installed yet).
2073     foreach my $targ (qw(PERLRUN PERLRUNINST TEST_LIBS)) {
2074         $self->{$targ} .= " -${aq}I\$(PERL_ARCHLIB)$aq -${aq}I\$(PERL_LIB)$aq"
2075           if $self->{PERL_CORE};
2076     }
2077 }
2078
2079 =item init_others
2080
2081 Initializes EXTRALIBS, BSLOADLIBS, LDLOADLIBS, LIBS, LD_RUN_PATH,
2082 OBJECT, BOOTDEP, PERLMAINCC, LDFROM, LINKTYPE, NOOP, FIRST_MAKEFILE,
2083 MAKEFILE, NOECHO, RM_F, RM_RF, TEST_F, TOUCH, CP, MV, CHMOD, UMASK_NULL
2084
2085 =cut
2086
2087 sub init_others {       # --- Initialize Other Attributes
2088     my($self) = shift;
2089
2090     # Compute EXTRALIBS, BSLOADLIBS and LDLOADLIBS from $self->{LIBS}
2091     # Lets look at $self->{LIBS} carefully: It may be an anon array, a string or
2092     # undefined. In any case we turn it into an anon array:
2093
2094     # May check $Config{libs} too, thus not empty.
2095     $self->{LIBS}=[''] unless $self->{LIBS};
2096
2097     $self->{LIBS}=[$self->{LIBS}] if ref \$self->{LIBS} eq 'SCALAR';
2098     $self->{LD_RUN_PATH} = "";
2099     my($libs);
2100     foreach $libs ( @{$self->{LIBS}} ){
2101         $libs =~ s/^\s*(.*\S)\s*$/$1/; # remove leading and trailing whitespace
2102         my(@libs) = $self->extliblist($libs);
2103         if ($libs[0] or $libs[1] or $libs[2]){
2104             # LD_RUN_PATH now computed by ExtUtils::Liblist
2105             ($self->{EXTRALIBS}, $self->{BSLOADLIBS}, $self->{LDLOADLIBS}, $self->{LD_RUN_PATH}) = @libs;
2106             last;
2107         }
2108     }
2109
2110     if ( $self->{OBJECT} ) {
2111         $self->{OBJECT} =~ s!\.o(bj)?\b!\$(OBJ_EXT)!g;
2112     } else {
2113         # init_dirscan should have found out, if we have C files
2114         $self->{OBJECT} = "";
2115         $self->{OBJECT} = '$(BASEEXT)$(OBJ_EXT)' if @{$self->{C}||[]};
2116     }
2117     $self->{OBJECT} =~ s/\n+/ \\\n\t/g;
2118     $self->{BOOTDEP}  = (-f "$self->{BASEEXT}_BS") ? "$self->{BASEEXT}_BS" : "";
2119     $self->{PERLMAINCC} ||= '$(CC)';
2120     $self->{LDFROM} = '$(OBJECT)' unless $self->{LDFROM};
2121
2122     # Sanity check: don't define LINKTYPE = dynamic if we're skipping
2123     # the 'dynamic' section of MM.  We don't have this problem with
2124     # 'static', since we either must use it (%Config says we can't
2125     # use dynamic loading) or the caller asked for it explicitly.
2126     if (!$self->{LINKTYPE}) {
2127        $self->{LINKTYPE} = $self->{SKIPHASH}{'dynamic'}
2128                         ? 'static'
2129                         : ($Config::Config{usedl} ? 'dynamic' : 'static');
2130     };
2131
2132     # These get overridden for VMS and maybe some other systems
2133     $self->{NOOP}  ||= '$(SHELL) -c true';
2134     $self->{FIRST_MAKEFILE} ||= "Makefile";
2135     $self->{MAKEFILE} ||= $self->{FIRST_MAKEFILE};
2136     $self->{MAKE_APERL_FILE} ||= "Makefile.aperl";
2137     $self->{NOECHO} = '@' unless defined $self->{NOECHO};
2138     $self->{RM_F}  ||= "rm -f";
2139     $self->{RM_RF} ||= "rm -rf";
2140     $self->{TOUCH} ||= "touch";
2141     $self->{TEST_F} ||= "test -f";
2142     $self->{CP} ||= "cp";
2143     $self->{MV} ||= "mv";
2144     $self->{CHMOD} ||= "chmod";
2145     $self->{UMASK_NULL} ||= "umask 0";
2146     $self->{DEV_NULL} ||= "> /dev/null 2>&1";
2147 }
2148
2149 =item install (o)
2150
2151 Defines the install target.
2152
2153 =cut
2154
2155 sub install {
2156     my($self, %attribs) = @_;
2157     my(@m);
2158
2159     push @m, q{
2160 install :: all pure_install doc_install
2161
2162 install_perl :: all pure_perl_install doc_perl_install
2163
2164 install_site :: all pure_site_install doc_site_install
2165
2166 install_ :: install_site
2167         @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2168
2169 pure_install :: pure_$(INSTALLDIRS)_install
2170
2171 doc_install :: doc_$(INSTALLDIRS)_install
2172         }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
2173
2174 pure__install : pure_site_install
2175         @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2176
2177 doc__install : doc_site_install
2178         @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2179
2180 pure_perl_install ::
2181         }.$self->{NOECHO}.q{$(MOD_INSTALL) \
2182                 read }.File::Spec->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2183                 write }.File::Spec->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2184                 $(INST_LIB) $(INSTALLPRIVLIB) \
2185                 $(INST_ARCHLIB) $(INSTALLARCHLIB) \
2186                 $(INST_BIN) $(INSTALLBIN) \
2187                 $(INST_SCRIPT) $(INSTALLSCRIPT) \
2188                 $(INST_HTMLLIBDIR) $(INSTALLHTMLPRIVLIBDIR) \
2189                 $(INST_HTMLSCRIPTDIR) $(INSTALLHTMLSCRIPTDIR) \
2190                 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
2191                 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
2192         }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
2193                 }.File::Spec->catdir('$(SITEARCHEXP)','auto','$(FULLEXT)').q{
2194
2195
2196 pure_site_install ::
2197         }.$self->{NOECHO}.q{$(MOD_INSTALL) \
2198                 read }.File::Spec->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
2199                 write }.File::Spec->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
2200                 $(INST_LIB) $(INSTALLSITELIB) \
2201                 $(INST_ARCHLIB) $(INSTALLSITEARCH) \
2202                 $(INST_BIN) $(INSTALLBIN) \
2203                 $(INST_SCRIPT) $(INSTALLSCRIPT) \
2204                 $(INST_HTMLLIBDIR) $(INSTALLHTMLSITELIBDIR) \
2205                 $(INST_HTMLSCRIPTDIR) $(INSTALLHTMLSCRIPTDIR) \
2206                 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
2207                 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
2208         }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
2209                 }.File::Spec->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{
2210
2211 doc_perl_install ::
2212         -}.$self->{NOECHO}.q{$(MKPATH) $(INSTALLARCHLIB)
2213         -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
2214                 "Module" "$(NAME)" \
2215                 "installed into" "$(INSTALLPRIVLIB)" \
2216                 LINKTYPE "$(LINKTYPE)" \
2217                 VERSION "$(VERSION)" \
2218                 EXE_FILES "$(EXE_FILES)" \
2219                 >> }.File::Spec->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2220
2221 doc_site_install ::
2222         -}.$self->{NOECHO}.q{$(MKPATH) $(INSTALLARCHLIB)
2223         -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
2224                 "Module" "$(NAME)" \
2225                 "installed into" "$(INSTALLSITELIB)" \
2226                 LINKTYPE "$(LINKTYPE)" \
2227                 VERSION "$(VERSION)" \
2228                 EXE_FILES "$(EXE_FILES)" \
2229                 >> }.File::Spec->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2230
2231 };
2232
2233     push @m, q{
2234 uninstall :: uninstall_from_$(INSTALLDIRS)dirs
2235
2236 uninstall_from_perldirs ::
2237         }.$self->{NOECHO}.
2238         q{$(UNINSTALL) }.File::Spec->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{
2239
2240 uninstall_from_sitedirs ::
2241         }.$self->{NOECHO}.
2242         q{$(UNINSTALL) }.File::Spec->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{
2243 };
2244
2245     join("",@m);
2246 }
2247
2248 =item installbin (o)
2249
2250 Defines targets to make and to install EXE_FILES.
2251
2252 =cut
2253
2254 sub installbin {
2255     my($self) = shift;
2256     return "" unless $self->{EXE_FILES} && ref $self->{EXE_FILES} eq "ARRAY";
2257     return "" unless @{$self->{EXE_FILES}};
2258     my(@m, $from, $to, %fromto, @to);
2259     push @m, $self->dir_target(qw[$(INST_SCRIPT)]);
2260     for $from (@{$self->{EXE_FILES}}) {
2261         my($path)= File::Spec->catfile('$(INST_SCRIPT)', basename($from));
2262         local($_) = $path; # for backwards compatibility
2263         $to = $self->libscan($path);
2264         print "libscan($from) => '$to'\n" if ($Verbose >=2);
2265         $fromto{$from}=$to;
2266     }
2267     @to   = values %fromto;
2268     push(@m, qq{
2269 EXE_FILES = @{$self->{EXE_FILES}}
2270
2271 } . ($Is_Win32
2272   ? q{FIXIN = $(PERLRUN) \
2273     -e "system qq[pl2bat.bat ].shift"
2274 } : q{FIXIN = $(PERLRUN) -MExtUtils::MakeMaker \
2275     -e "MY->fixin(shift)"
2276 }).qq{
2277 pure_all :: @to
2278         $self->{NOECHO}\$(NOOP)
2279
2280 realclean ::
2281         $self->{RM_F} @to
2282 });
2283
2284     while (($from,$to) = each %fromto) {
2285         last unless defined $from;
2286         my $todir = dirname($to);
2287         push @m, "
2288 $to: $from $self->{MAKEFILE} " . File::Spec->catdir($todir,'.exists') . "
2289         $self->{NOECHO}$self->{RM_F} $to
2290         $self->{CP} $from $to
2291         \$(FIXIN) $to
2292         -$self->{NOECHO}\$(CHMOD) \$(PERM_RWX) $to
2293 ";
2294     }
2295     join "", @m;
2296 }
2297
2298 =item libscan (o)
2299
2300 Takes a path to a file that is found by init_dirscan and returns false
2301 if we don't want to include this file in the library. Mainly used to
2302 exclude RCS, CVS, and SCCS directories from installation.
2303
2304 =cut
2305
2306 # ';
2307
2308 sub libscan {
2309     my($self,$path) = @_;
2310     return '' if $path =~ m:\b(RCS|CVS|SCCS)\b: ;
2311     $path;
2312 }
2313
2314 =item linkext (o)
2315
2316 Defines the linkext target which in turn defines the LINKTYPE.
2317
2318 =cut
2319
2320 sub linkext {
2321     my($self, %attribs) = @_;
2322     # LINKTYPE => static or dynamic or ''
2323     my($linktype) = defined $attribs{LINKTYPE} ?
2324       $attribs{LINKTYPE} : '$(LINKTYPE)';
2325     "
2326 linkext :: $linktype
2327         $self->{NOECHO}\$(NOOP)
2328 ";
2329 }
2330
2331 =item lsdir
2332
2333 Takes as arguments a directory name and a regular expression. Returns
2334 all entries in the directory that match the regular expression.
2335
2336 =cut
2337
2338 sub lsdir {
2339     my($self) = shift;
2340     my($dir, $regex) = @_;
2341     my(@ls);
2342     my $dh = new DirHandle;
2343     $dh->open($dir || ".") or return ();
2344     @ls = $dh->read;
2345     $dh->close;
2346     @ls = grep(/$regex/, @ls) if $regex;
2347     @ls;
2348 }
2349
2350 =item macro (o)
2351
2352 Simple subroutine to insert the macros defined by the macro attribute
2353 into the Makefile.
2354
2355 =cut
2356
2357 sub macro {
2358     my($self,%attribs) = @_;
2359     my(@m,$key,$val);
2360     while (($key,$val) = each %attribs){
2361         last unless defined $key;
2362         push @m, "$key = $val\n";
2363     }
2364     join "", @m;
2365 }
2366
2367 =item makeaperl (o)
2368
2369 Called by staticmake. Defines how to write the Makefile to produce a
2370 static new perl.
2371
2372 By default the Makefile produced includes all the static extensions in
2373 the perl library. (Purified versions of library files, e.g.,
2374 DynaLoader_pure_p1_c0_032.a are automatically ignored to avoid link errors.)
2375
2376 =cut
2377
2378 sub makeaperl {
2379     my($self, %attribs) = @_;
2380     my($makefilename, $searchdirs, $static, $extra, $perlinc, $target, $tmp, $libperl) =
2381         @attribs{qw(MAKE DIRS STAT EXTRA INCL TARGET TMP LIBPERL)};
2382     my(@m);
2383     push @m, "
2384 # --- MakeMaker makeaperl section ---
2385 MAP_TARGET    = $target
2386 FULLPERL      = $self->{FULLPERL}
2387 ";
2388     return join '', @m if $self->{PARENT};
2389
2390     my($dir) = join ":", @{$self->{DIR}};
2391
2392     unless ($self->{MAKEAPERL}) {
2393         push @m, q{
2394 $(MAP_TARGET) :: static $(MAKE_APERL_FILE)
2395         $(MAKE) -f $(MAKE_APERL_FILE) $@
2396
2397 $(MAKE_APERL_FILE) : $(FIRST_MAKEFILE)
2398         }.$self->{NOECHO}.q{echo Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET)
2399         }.$self->{NOECHO}.q{$(PERLRUNINST) \
2400                 Makefile.PL DIR=}, $dir, q{ \
2401                 MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
2402                 MAKEAPERL=1 NORECURS=1 CCCDLFLAGS=};
2403
2404         foreach (@ARGV){
2405                 if( /\s/ ){
2406                         s/=(.*)/='$1'/;
2407                 }
2408                 push @m, " \\\n\t\t$_";
2409         }
2410 #       push @m, map( " \\\n\t\t$_", @ARGV );
2411         push @m, "\n";
2412
2413         return join '', @m;
2414     }
2415
2416
2417
2418     my($cccmd, $linkcmd, $lperl);
2419
2420
2421     $cccmd = $self->const_cccmd($libperl);
2422     $cccmd =~ s/^CCCMD\s*=\s*//;
2423     $cccmd =~ s/\$\(INC\)/ -I$self->{PERL_INC} /;
2424     $cccmd .= " $Config::Config{cccdlflags}"
2425         if ($Config::Config{useshrplib} eq 'true');
2426     $cccmd =~ s/\(CC\)/\(PERLMAINCC\)/;
2427
2428     # The front matter of the linkcommand...
2429     $linkcmd = join ' ', "\$(CC)",
2430             grep($_, @Config{qw(ldflags ccdlflags)});
2431     $linkcmd =~ s/\s+/ /g;
2432     $linkcmd =~ s,(perl\.exp),\$(PERL_INC)/$1,;
2433
2434     # Which *.a files could we make use of...
2435     local(%static);
2436     require File::Find;
2437     File::Find::find(sub {
2438         return unless m/\Q$self->{LIB_EXT}\E$/;
2439         return if m/^libperl/;
2440         # Skip purified versions of libraries (e.g., DynaLoader_pure_p1_c0_032.a)
2441         return if m/_pure_\w+_\w+_\w+\.\w+$/ and -f "$File::Find::dir/.pure";
2442
2443         if( exists $self->{INCLUDE_EXT} ){
2444                 my $found = 0;
2445                 my $incl;
2446                 my $xx;
2447
2448                 ($xx = $File::Find::name) =~ s,.*?/auto/,,s;
2449                 $xx =~ s,/?$_,,;
2450                 $xx =~ s,/,::,g;
2451
2452                 # Throw away anything not explicitly marked for inclusion.
2453                 # DynaLoader is implied.
2454                 foreach $incl ((@{$self->{INCLUDE_EXT}},'DynaLoader')){
2455                         if( $xx eq $incl ){
2456                                 $found++;
2457                                 last;
2458                         }
2459                 }
2460                 return unless $found;
2461         }
2462         elsif( exists $self->{EXCLUDE_EXT} ){
2463                 my $excl;
2464                 my $xx;
2465
2466                 ($xx = $File::Find::name) =~ s,.*?/auto/,,s;
2467                 $xx =~ s,/?$_,,;
2468                 $xx =~ s,/,::,g;
2469
2470                 # Throw away anything explicitly marked for exclusion
2471                 foreach $excl (@{$self->{EXCLUDE_EXT}}){
2472                         return if( $xx eq $excl );
2473                 }
2474         }
2475
2476         # don't include the installed version of this extension. I
2477         # leave this line here, although it is not necessary anymore:
2478         # I patched minimod.PL instead, so that Miniperl.pm won't
2479         # enclude duplicates
2480
2481         # Once the patch to minimod.PL is in the distribution, I can
2482         # drop it
2483         return if $File::Find::name =~ m:auto/$self->{FULLEXT}/$self->{BASEEXT}$self->{LIB_EXT}\z:;
2484         use Cwd 'cwd';
2485         $static{cwd() . "/" . $_}++;
2486     }, grep( -d $_, @{$searchdirs || []}) );
2487
2488     # We trust that what has been handed in as argument, will be buildable
2489     $static = [] unless $static;
2490     @static{@{$static}} = (1) x @{$static};
2491
2492     $extra = [] unless $extra && ref $extra eq 'ARRAY';
2493     for (sort keys %static) {
2494         next unless /\Q$self->{LIB_EXT}\E\z/;
2495         $_ = dirname($_) . "/extralibs.ld";
2496         push @$extra, $_;
2497     }
2498
2499     grep(s/^/-I/, @{$perlinc || []});
2500
2501     $target = "perl" unless $target;
2502     $tmp = "." unless $tmp;
2503
2504 # MAP_STATIC doesn't look into subdirs yet. Once "all" is made and we
2505 # regenerate the Makefiles, MAP_STATIC and the dependencies for
2506 # extralibs.all are computed correctly
2507     push @m, "
2508 MAP_LINKCMD   = $linkcmd
2509 MAP_PERLINC   = @{$perlinc || []}
2510 MAP_STATIC    = ",
2511 join(" \\\n\t", reverse sort keys %static), "
2512
2513 MAP_PRELIBS   = $Config::Config{perllibs} $Config::Config{cryptlib}
2514 ";
2515
2516     if (defined $libperl) {
2517         ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/;
2518     }
2519     unless ($libperl && -f $lperl) { # Ilya's code...
2520         my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/CORE";
2521         $dir = "$self->{PERL_ARCHLIB}/.." if $self->{UNINSTALLED_PERL};
2522         $libperl ||= "libperl$self->{LIB_EXT}";
2523         $libperl   = "$dir/$libperl";
2524         $lperl   ||= "libperl$self->{LIB_EXT}";
2525         $lperl     = "$dir/$lperl";
2526
2527         if (! -f $libperl and ! -f $lperl) {
2528           # We did not find a static libperl. Maybe there is a shared one?
2529           if ($^O eq 'solaris' or $^O eq 'sunos') {
2530             $lperl  = $libperl = "$dir/$Config::Config{libperl}";
2531             # SUNOS ld does not take the full path to a shared library
2532             $libperl = '' if $^O eq 'sunos';
2533           }
2534         }
2535
2536         print STDOUT "Warning: $libperl not found
2537     If you're going to build a static perl binary, make sure perl is installed
2538     otherwise ignore this warning\n"
2539                 unless (-f $lperl || defined($self->{PERL_SRC}));
2540     }
2541
2542     push @m, "
2543 MAP_LIBPERL = $libperl
2544 ";
2545
2546     push @m, "
2547 \$(INST_ARCHAUTODIR)/extralibs.all: \$(INST_ARCHAUTODIR)/.exists ".join(" \\\n\t", @$extra)."
2548         $self->{NOECHO}$self->{RM_F} \$\@
2549         $self->{NOECHO}\$(TOUCH) \$\@
2550 ";
2551
2552     my $catfile;
2553     foreach $catfile (@$extra){
2554         push @m, "\tcat $catfile >> \$\@\n";
2555     }
2556     # SUNOS ld does not take the full path to a shared library
2557     my $llibperl = ($libperl)?'$(MAP_LIBPERL)':'-lperl';
2558
2559 push @m, "
2560 \$(MAP_TARGET) :: $tmp/perlmain\$(OBJ_EXT) \$(MAP_LIBPERL) \$(MAP_STATIC) \$(INST_ARCHAUTODIR)/extralibs.all
2561         \$(MAP_LINKCMD) -o \$\@ \$(OPTIMIZE) $tmp/perlmain\$(OBJ_EXT) \$(LDFROM) \$(MAP_STATIC) $llibperl `cat \$(INST_ARCHAUTODIR)/extralibs.all` \$(MAP_PRELIBS)
2562         $self->{NOECHO}echo 'To install the new \"\$(MAP_TARGET)\" binary, call'
2563         $self->{NOECHO}echo '    make -f $makefilename inst_perl MAP_TARGET=\$(MAP_TARGET)'
2564         $self->{NOECHO}echo 'To remove the intermediate files say'
2565         $self->{NOECHO}echo '    make -f $makefilename map_clean'
2566
2567 $tmp/perlmain\$(OBJ_EXT): $tmp/perlmain.c
2568 ";
2569     push @m, "\tcd $tmp && $cccmd -I\$(PERL_INC) perlmain.c\n";
2570
2571     push @m, qq{
2572 $tmp/perlmain.c: $makefilename}, q{
2573         }.$self->{NOECHO}.q{echo Writing $@
2574         }.$self->{NOECHO}.q{$(PERL) $(MAP_PERLINC) -MExtUtils::Miniperl \\
2575                 -e "writemain(grep s#.*/auto/##s, split(q| |, q|$(MAP_STATIC)|))" > $@t && $(MV) $@t $@
2576
2577 };
2578     push @m, "\t",$self->{NOECHO}.q{$(PERL) $(INSTALLSCRIPT)/fixpmain
2579 } if (defined (&Dos::UseLFN) && Dos::UseLFN()==0);
2580
2581
2582     push @m, q{
2583 doc_inst_perl:
2584         }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
2585         -}.$self->{NOECHO}.q{$(MKPATH) $(INSTALLARCHLIB)
2586         -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
2587                 "Perl binary" "$(MAP_TARGET)" \
2588                 MAP_STATIC "$(MAP_STATIC)" \
2589                 MAP_EXTRA "`cat $(INST_ARCHAUTODIR)/extralibs.all`" \
2590                 MAP_LIBPERL "$(MAP_LIBPERL)" \
2591                 >> }.File::Spec->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2592
2593 };
2594
2595     push @m, q{
2596 inst_perl: pure_inst_perl doc_inst_perl
2597
2598 pure_inst_perl: $(MAP_TARGET)
2599         }.$self->{CP}.q{ $(MAP_TARGET) }.File::Spec->catfile('$(INSTALLBIN)','$(MAP_TARGET)').q{
2600
2601 clean :: map_clean
2602
2603 map_clean :
2604         }.$self->{RM_F}.qq{ $tmp/perlmain\$(OBJ_EXT) $tmp/perlmain.c \$(MAP_TARGET) $makefilename \$(INST_ARCHAUTODIR)/extralibs.all
2605 };
2606
2607     join '', @m;
2608 }
2609
2610 =item makefile (o)
2611
2612 Defines how to rewrite the Makefile.
2613
2614 =cut
2615
2616 sub makefile {
2617     my($self) = shift;
2618     my @m;
2619     # We do not know what target was originally specified so we
2620     # must force a manual rerun to be sure. But as it should only
2621     # happen very rarely it is not a significant problem.
2622     push @m, '
2623 $(OBJECT) : $(FIRST_MAKEFILE)
2624 ' if $self->{OBJECT};
2625
2626     push @m, q{
2627 # We take a very conservative approach here, but it\'s worth it.
2628 # We move Makefile to Makefile.old here to avoid gnu make looping.
2629 }.$self->{MAKEFILE}.q{ : Makefile.PL $(CONFIGDEP)
2630         }.$self->{NOECHO}.q{echo "Makefile out-of-date with respect to $?"
2631         }.$self->{NOECHO}.q{echo "Cleaning current config before rebuilding Makefile..."
2632         -}.$self->{NOECHO}.q{$(RM_F) }."$self->{MAKEFILE}.old".q{
2633         -}.$self->{NOECHO}.q{$(MV) }."$self->{MAKEFILE} $self->{MAKEFILE}.old".q{
2634         -$(MAKE) -f }.$self->{MAKEFILE}.q{.old clean $(DEV_NULL) || $(NOOP)
2635         $(PERLRUN) Makefile.PL }.join(" ",map(qq["$_"],@ARGV)).q{
2636         }.$self->{NOECHO}.q{echo "==> Your Makefile has been rebuilt. <=="
2637         }.$self->{NOECHO}.q{echo "==> Please rerun the make command.  <=="
2638         false
2639
2640 # To change behavior to :: would be nice, but would break Tk b9.02
2641 # so you find such a warning below the dist target.
2642 #}.$self->{MAKEFILE}.q{ :: $(VERSION_FROM)
2643 #       }.$self->{NOECHO}.q{echo "Warning: Makefile possibly out of date with $(VERSION_FROM)"
2644 };
2645
2646     join "", @m;
2647 }
2648
2649 =item manifypods (o)
2650
2651 Defines targets and routines to translate the pods into manpages and
2652 put them into the INST_* directories.
2653
2654 =cut
2655
2656 sub manifypods {
2657     my($self, %attribs) = @_;
2658     return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n" unless
2659         %{$self->{MAN3PODS}} or %{$self->{MAN1PODS}};
2660     my($dist);
2661     my($pod2man_exe);
2662     if (defined $self->{PERL_SRC}) {
2663         $pod2man_exe = File::Spec->catfile($self->{PERL_SRC},'pod','pod2man');
2664     } else {
2665         $pod2man_exe = File::Spec->catfile($Config{scriptdirexp},'pod2man');
2666     }
2667     unless ($pod2man_exe = $self->perl_script($pod2man_exe)) {
2668       # Maybe a build by uninstalled Perl?
2669       $pod2man_exe = File::Spec->catfile($self->{PERL_INC}, "pod", "pod2man");
2670     }
2671     unless ($pod2man_exe = $self->perl_script($pod2man_exe)) {
2672         # No pod2man but some MAN3PODS to be installed
2673         print <<END;
2674
2675 Warning: I could not locate your pod2man program. Please make sure,
2676          your pod2man program is in your PATH before you execute 'make'
2677
2678 END
2679         $pod2man_exe = "-S pod2man";
2680     }
2681     my(@m);
2682     push @m,
2683 qq[POD2MAN_EXE = $pod2man_exe\n],
2684 qq[POD2MAN = \$(PERL) -we '%m=\@ARGV;for (keys %m){' \\\n],
2685 q[-e 'next if -e $$m{$$_} && -M $$m{$$_} < -M $$_ && -M $$m{$$_} < -M "],
2686  $self->{MAKEFILE}, q[";' \\
2687 -e 'print "Manifying $$m{$$_}\n";' \\
2688 -e 'system(q[$(PERLRUN) $(POD2MAN_EXE) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\\047t install $$m{$$_}\n";' \\
2689 -e 'chmod(oct($(PERM_RW))), $$m{$$_} or warn "chmod $(PERM_RW) $$m{$$_}: $$!\n";}'
2690 ];
2691     push @m, "\nmanifypods : pure_all ";
2692     push @m, join " \\\n\t", keys %{$self->{MAN1PODS}}, keys %{$self->{MAN3PODS}};
2693
2694     push(@m,"\n");
2695     if (%{$self->{MAN1PODS}} || %{$self->{MAN3PODS}}) {
2696         push @m, "\t$self->{NOECHO}\$(POD2MAN) \\\n\t";
2697         push @m, join " \\\n\t", %{$self->{MAN1PODS}}, %{$self->{MAN3PODS}};
2698     }
2699     join('', @m);
2700 }
2701
2702 =item maybe_command
2703
2704 Returns true, if the argument is likely to be a command.
2705
2706 =cut
2707
2708 sub maybe_command {
2709     my($self,$file) = @_;
2710     return $file if -x $file && ! -d $file;
2711     return;
2712 }
2713
2714 =item maybe_command_in_dirs
2715
2716 method under development. Not yet used. Ask Ilya :-)
2717
2718 =cut
2719
2720 sub maybe_command_in_dirs {     # $ver is optional argument if looking for perl
2721 # Ilya's suggestion. Not yet used, want to understand it first, but at least the code is here
2722     my($self, $names, $dirs, $trace, $ver) = @_;
2723     my($name, $dir);
2724     foreach $dir (@$dirs){
2725         next unless defined $dir; # $self->{PERL_SRC} may be undefined
2726         foreach $name (@$names){
2727             my($abs,$tryabs);
2728             if (File::Spec->file_name_is_absolute($name)) { # /foo/bar
2729                 $abs = $name;
2730             } elsif (File::Spec->canonpath($name) eq File::Spec->canonpath(basename($name))) { # bar
2731                 $abs = File::Spec->catfile($dir, $name);
2732             } else { # foo/bar
2733                 $abs = File::Spec->catfile(File::Spec->curdir, $name);
2734             }
2735             print "Checking $abs for $name\n" if ($trace >= 2);
2736             next unless $tryabs = $self->maybe_command($abs);
2737             print "Substituting $tryabs instead of $abs\n"
2738                 if ($trace >= 2 and $tryabs ne $abs);
2739             $abs = $tryabs;
2740             if (defined $ver) {
2741                 print "Executing $abs\n" if ($trace >= 2);
2742                 if (`$abs -e 'require $ver; print "VER_OK\n" ' 2>&1` =~ /VER_OK/) {
2743                     print "Using PERL=$abs\n" if $trace;
2744                     return $abs;
2745                 }
2746             } else { # Do not look for perl
2747                 return $abs;
2748             }
2749         }
2750     }
2751 }
2752
2753 =item needs_linking (o)
2754
2755 Does this module need linking? Looks into subdirectory objects (see
2756 also has_link_code())
2757
2758 =cut
2759
2760 sub needs_linking {
2761     my($self) = shift;
2762     my($child,$caller);
2763     $caller = (caller(0))[3];
2764     Carp::confess("Needs_linking called too early") if $caller =~ /^ExtUtils::MakeMaker::/;
2765     return $self->{NEEDS_LINKING} if defined $self->{NEEDS_LINKING};
2766     if ($self->has_link_code or $self->{MAKEAPERL}){
2767         $self->{NEEDS_LINKING} = 1;
2768         return 1;
2769     }
2770     foreach $child (keys %{$self->{CHILDREN}}) {
2771         if ($self->{CHILDREN}->{$child}->needs_linking) {
2772             $self->{NEEDS_LINKING} = 1;
2773             return 1;
2774         }
2775     }
2776     return $self->{NEEDS_LINKING} = 0;
2777 }
2778
2779 =item nicetext
2780
2781 misnamed method (will have to be changed). The MM_Unix method just
2782 returns the argument without further processing.
2783
2784 On VMS used to insure that colons marking targets are preceded by
2785 space - most Unix Makes don't need this, but it's necessary under VMS
2786 to distinguish the target delimiter from a colon appearing as part of
2787 a filespec.
2788
2789 =cut
2790
2791 sub nicetext {
2792     my($self,$text) = @_;
2793     $text;
2794 }
2795
2796 =item parse_version
2797
2798 parse a file and return what you think is $VERSION in this file set to.
2799 It will return the string "undef" if it can't figure out what $VERSION
2800 is. $VERSION should be for all to see, so our $VERSION or plain $VERSION
2801 are okay, but my $VERSION is not.
2802
2803 =cut
2804
2805 sub parse_version {
2806     my($self,$parsefile) = @_;
2807     my $result;
2808     local *FH;
2809     local $/ = "\n";
2810     open(FH,$parsefile) or die "Could not open '$parsefile': $!";
2811     my $inpod = 0;
2812     while (<FH>) {
2813         $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod;
2814         next if $inpod || /^\s*#/;
2815         chop;
2816         # next unless /\$(([\w\:\']*)\bVERSION)\b.*\=/;
2817         next unless /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/;
2818         my $eval = qq{
2819             package ExtUtils::MakeMaker::_version;
2820             no strict;
2821
2822             local $1$2;
2823             \$$2=undef; do {
2824                 $_
2825             }; \$$2
2826         };
2827         no warnings;
2828         $result = eval($eval);
2829         warn "Could not eval '$eval' in $parsefile: $@" if $@;
2830         $result = "undef" unless defined $result;
2831         last;
2832     }
2833     close FH;
2834     return $result;
2835 }
2836
2837 =item parse_abstract
2838
2839 parse a file and return what you think is the ABSTRACT
2840
2841 =cut
2842
2843 sub parse_abstract {
2844     my($self,$parsefile) = @_;
2845     my $result;
2846     local *FH;
2847     local $/ = "\n";
2848     open(FH,$parsefile) or die "Could not open '$parsefile': $!";
2849     my $inpod = 0;
2850     my $package = $self->{DISTNAME};
2851     $package =~ s/-/::/g;
2852     while (<FH>) {
2853         $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod;
2854         next if !$inpod;
2855         chop;
2856         next unless /^($package\s-\s)(.*)/;
2857         $result = $2;
2858         last;
2859     }
2860     close FH;
2861     return $result;
2862 }
2863
2864 =item pasthru (o)
2865
2866 Defines the string that is passed to recursive make calls in
2867 subdirectories.
2868
2869 =cut
2870
2871 sub pasthru {
2872     my($self) = shift;
2873     my(@m,$key);
2874
2875     my(@pasthru);
2876     my($sep) = $Is_VMS ? ',' : '';
2877     $sep .= "\\\n\t";
2878
2879     foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)) {
2880         push @pasthru, "$key=\"\$($key)\"";
2881     }
2882
2883     foreach $key (qw(DEFINE INC)) {
2884         push @pasthru, "PASTHRU_$key=\"\$(PASTHRU_$key)\"";
2885     }
2886
2887     push @m, "\nPASTHRU = ", join ($sep, @pasthru), "\n";
2888     join "", @m;
2889 }
2890
2891 =item path
2892
2893 Takes no argument, returns the environment variable PATH as an array.
2894
2895 =cut
2896
2897 sub path {
2898     return File::Spec->path();
2899 }
2900
2901 =item perl_script
2902
2903 Takes one argument, a file name, and returns the file name, if the
2904 argument is likely to be a perl script. On MM_Unix this is true for
2905 any ordinary, readable file.
2906
2907 =cut
2908
2909 sub perl_script {
2910     my($self,$file) = @_;
2911     return $file if -r $file && -f _;
2912     return;
2913 }
2914
2915 =item perldepend (o)
2916
2917 Defines the dependency from all *.h files that come with the perl
2918 distribution.
2919
2920 =cut
2921
2922 sub perldepend {
2923     my($self) = shift;
2924     my(@m);
2925     push @m, q{
2926 # Check for unpropogated config.sh changes. Should never happen.
2927 # We do NOT just update config.h because that is not sufficient.
2928 # An out of date config.h is not fatal but complains loudly!
2929 $(PERL_INC)/config.h: $(PERL_SRC)/config.sh
2930         -}.$self->{NOECHO}.q{echo "Warning: $(PERL_INC)/config.h out of date with $(PERL_SRC)/config.sh"; false
2931
2932 $(PERL_ARCHLIB)/Config.pm: $(PERL_SRC)/config.sh
2933         }.$self->{NOECHO}.q{echo "Warning: $(PERL_ARCHLIB)/Config.pm may be out of date with $(PERL_SRC)/config.sh"
2934         cd $(PERL_SRC) && $(MAKE) lib/Config.pm
2935 } if $self->{PERL_SRC};
2936
2937     return join "", @m unless $self->needs_linking;
2938
2939     push @m, q{
2940 PERL_HDRS = \
2941         $(PERL_INC)/EXTERN.h            \
2942         $(PERL_INC)/INTERN.h            \
2943         $(PERL_INC)/XSUB.h              \
2944         $(PERL_INC)/av.h                \
2945         $(PERL_INC)/cc_runtime.h        \
2946         $(PERL_INC)/config.h            \
2947         $(PERL_INC)/cop.h               \
2948         $(PERL_INC)/cv.h                \
2949         $(PERL_INC)/dosish.h            \
2950         $(PERL_INC)/embed.h             \
2951         $(PERL_INC)/embedvar.h          \
2952         $(PERL_INC)/fakethr.h           \
2953         $(PERL_INC)/form.h              \
2954         $(PERL_INC)/gv.h                \
2955         $(PERL_INC)/handy.h             \
2956         $(PERL_INC)/hv.h                \
2957         $(PERL_INC)/intrpvar.h          \
2958         $(PERL_INC)/iperlsys.h          \
2959         $(PERL_INC)/keywords.h          \
2960         $(PERL_INC)/mg.h                \
2961         $(PERL_INC)/nostdio.h           \
2962         $(PERL_INC)/op.h                \
2963         $(PERL_INC)/opcode.h            \
2964         $(PERL_INC)/opnames.h           \
2965         $(PERL_INC)/patchlevel.h        \
2966         $(PERL_INC)/perl.h              \
2967         $(PERL_INC)/perlapi.h           \
2968         $(PERL_INC)/perlio.h            \
2969         $(PERL_INC)/perlsdio.h          \
2970         $(PERL_INC)/perlsfio.h          \
2971         $(PERL_INC)/perlvars.h          \
2972         $(PERL_INC)/perly.h             \
2973         $(PERL_INC)/pp.h                \
2974         $(PERL_INC)/pp_proto.h          \
2975         $(PERL_INC)/proto.h             \
2976         $(PERL_INC)/regcomp.h           \
2977         $(PERL_INC)/regexp.h            \
2978         $(PERL_INC)/regnodes.h          \
2979         $(PERL_INC)/scope.h             \
2980         $(PERL_INC)/sv.h                \
2981         $(PERL_INC)/thrdvar.h           \
2982         $(PERL_INC)/thread.h            \
2983         $(PERL_INC)/unixish.h           \
2984         $(PERL_INC)/utf8.h              \
2985         $(PERL_INC)/util.h              \
2986         $(PERL_INC)/warnings.h
2987
2988 $(OBJECT) : $(PERL_HDRS)
2989 } if $self->{OBJECT};
2990
2991     push @m, join(" ", values %{$self->{XS}})." : \$(XSUBPPDEPS)\n"  if %{$self->{XS}};
2992
2993     join "\n", @m;
2994 }
2995
2996 =item ppd
2997
2998 Defines target that creates a PPD (Perl Package Description) file
2999 for a binary distribution.
3000
3001 =cut
3002
3003 sub ppd {
3004     my($self) = @_;
3005     my(@m);
3006     if ($self->{ABSTRACT_FROM}){
3007         $self->{ABSTRACT} = $self->parse_abstract($self->{ABSTRACT_FROM}) or
3008             Carp::carp "WARNING: Setting ABSTRACT via file '$self->{ABSTRACT_FROM}' failed\n";
3009     }
3010     my ($pack_ver) = join ",", (split (/\./, $self->{VERSION}), (0) x 4) [0 .. 3];
3011     push(@m, "# Creates a PPD (Perl Package Description) for a binary distribution.\n");
3012     push(@m, "ppd:\n");
3013     push(@m, "\t\@\$(PERL) -e \"print qq{<SOFTPKG NAME=\\\"$self->{DISTNAME}\\\" VERSION=\\\"$pack_ver\\\">\\n}");
3014     push(@m, ". qq{\\t<TITLE>$self->{DISTNAME}</TITLE>\\n}");
3015     my $abstract = $self->{ABSTRACT};
3016     $abstract =~ s/\n/\\n/sg;
3017     $abstract =~ s/</&lt;/g;
3018     $abstract =~ s/>/&gt;/g;
3019     push(@m, ". qq{\\t<ABSTRACT>$abstract</ABSTRACT>\\n}");
3020     my ($author) = $self->{AUTHOR};
3021     $author =~ s/</&lt;/g;
3022     $author =~ s/>/&gt;/g;
3023     $author =~ s/@/\\@/g;
3024     push(@m, ". qq{\\t<AUTHOR>$author</AUTHOR>\\n}");
3025     push(@m, ". qq{\\t<IMPLEMENTATION>\\n}");
3026     my ($prereq);
3027     foreach $prereq (sort keys %{$self->{PREREQ_PM}}) {
3028         my $pre_req = $prereq;
3029         $pre_req =~ s/::/-/g;
3030         my ($dep_ver) = join ",", (split (/\./, $self->{PREREQ_PM}{$prereq}), (0) x 4) [0 .. 3];
3031         push(@m, ". qq{\\t\\t<DEPENDENCY NAME=\\\"$pre_req\\\" VERSION=\\\"$dep_ver\\\" />\\n}");
3032     }
3033     push(@m, ". qq{\\t\\t<OS NAME=\\\"\$(OSNAME)\\\" />\\n}");
3034     push(@m, ". qq{\\t\\t<ARCHITECTURE NAME=\\\"$Config{'archname'}\\\" />\\n}");
3035     my ($bin_location) = $self->{BINARY_LOCATION};
3036     $bin_location =~ s/\\/\\\\/g;
3037     if ($self->{PPM_INSTALL_SCRIPT}) {
3038         if ($self->{PPM_INSTALL_EXEC}) {
3039             push(@m, " . qq{\\t\\t<INSTALL EXEC=\\\"$self->{PPM_INSTALL_EXEC}\\\">$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
3040         }
3041         else {
3042             push(@m, " . qq{\\t\\t<INSTALL>$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
3043         }
3044     }
3045     push(@m, ". qq{\\t\\t<CODEBASE HREF=\\\"$bin_location\\\" />\\n}");
3046     push(@m, ". qq{\\t</IMPLEMENTATION>\\n}");
3047     push(@m, ". qq{</SOFTPKG>\\n}\" > $self->{DISTNAME}.ppd");
3048
3049     join("", @m);   
3050 }
3051
3052 =item perm_rw (o)
3053
3054 Returns the attribute C<PERM_RW> or the string C<644>.
3055 Used as the string that is passed
3056 to the C<chmod> command to set the permissions for read/writeable files.
3057 MakeMaker chooses C<644> because it has turned out in the past that
3058 relying on the umask provokes hard-to-track bug reports.
3059 When the return value is used by the perl function C<chmod>, it is
3060 interpreted as an octal value.
3061
3062 =cut
3063
3064 sub perm_rw {
3065     shift->{PERM_RW} || "644";
3066 }
3067
3068 =item perm_rwx (o)
3069
3070 Returns the attribute C<PERM_RWX> or the string C<755>,
3071 i.e. the string that is passed
3072 to the C<chmod> command to set the permissions for executable files.
3073 See also perl_rw.
3074
3075 =cut
3076
3077 sub perm_rwx {
3078     shift->{PERM_RWX} || "755";
3079 }
3080
3081 =item pm_to_blib
3082
3083 Defines target that copies all files in the hash PM to their
3084 destination and autosplits them. See L<ExtUtils::Install/DESCRIPTION>
3085
3086 =cut
3087
3088 sub _pm_to_blib_flush {
3089     my ($self, $autodir, $rr, $ra, $rl) = @_;
3090     $$rr .= 
3091 q{      }.$self->{NOECHO}.q[$(PERLRUNINST) -MExtUtils::Install \
3092         -e "pm_to_blib({qw{].qq[@$ra].q[}},'].$autodir.q{','$(PM_FILTER)')"
3093 };
3094     @$ra = ();
3095     $$rl = 0;
3096 }
3097
3098 sub pm_to_blib {
3099     my $self = shift;
3100     my($autodir) = File::Spec->catdir('$(INST_LIB)','auto');
3101     my $r = q{
3102 pm_to_blib: $(TO_INST_PM)
3103 };
3104     my %pm_to_blib = %{$self->{PM}};
3105     my @a;
3106     my $l;
3107     while (my ($pm, $blib) = each %pm_to_blib) {
3108         my $la = length $pm;
3109         my $lb = length $blib;
3110         if ($l + $la + $lb + @a / 2 > 200) { # limit line length
3111             _pm_to_blib_flush($self, $autodir, \$r, \@a, \$l);
3112         }
3113         push @a, $pm, $blib;
3114         $l += $la + $lb;
3115     }
3116     _pm_to_blib_flush($self, $autodir, \$r, \@a, \$l);
3117     return $r.q{        }.$self->{NOECHO}.q{$(TOUCH) $@};
3118 }
3119
3120 =item post_constants (o)
3121
3122 Returns an empty string per default. Dedicated to overrides from
3123 within Makefile.PL after all constants have been defined.
3124
3125 =cut
3126
3127 sub post_constants{
3128     my($self) = shift;
3129     "";
3130 }
3131
3132 =item post_initialize (o)
3133
3134 Returns an empty string per default. Used in Makefile.PLs to add some
3135 chunk of text to the Makefile after the object is initialized.
3136
3137 =cut
3138
3139 sub post_initialize {
3140     my($self) = shift;
3141     "";
3142 }
3143
3144 =item postamble (o)
3145
3146 Returns an empty string. Can be used in Makefile.PLs to write some
3147 text to the Makefile at the end.
3148
3149 =cut
3150
3151 sub postamble {
3152     my($self) = shift;
3153     "";
3154 }
3155
3156 =item prefixify
3157
3158 Check a path variable in $self from %Config, if it contains a prefix,
3159 and replace it with another one.
3160
3161 Takes as arguments an attribute name, a search prefix and a
3162 replacement prefix. Changes the attribute in the object.
3163
3164 =cut
3165
3166 sub prefixify {
3167     my($self,$var,$sprefix,$rprefix) = @_;
3168     $self->{uc $var} ||= $Config{lc $var};
3169     $self->{uc $var} = VMS::Filespec::unixpath($self->{uc $var}) if $Is_VMS;
3170     $self->{uc $var} =~ s,^\Q$sprefix\E(?=/|\z),$rprefix,s;
3171 }
3172
3173 =item processPL (o)
3174
3175 Defines targets to run *.PL files.
3176
3177 =cut
3178
3179 sub processPL {
3180     my($self) = shift;
3181     return "" unless $self->{PL_FILES};
3182     my(@m, $plfile);
3183     foreach $plfile (sort keys %{$self->{PL_FILES}}) {
3184         my $list = ref($self->{PL_FILES}->{$plfile})
3185                 ? $self->{PL_FILES}->{$plfile}
3186                 : [$self->{PL_FILES}->{$plfile}];
3187         my $target;
3188         foreach $target (@$list) {
3189         push @m, "
3190 all :: $target
3191         $self->{NOECHO}\$(NOOP)
3192
3193 $target :: $plfile
3194         \$(PERLRUNINST) $plfile $target
3195 ";
3196         }
3197     }
3198     join "", @m;
3199 }
3200
3201 =item quote_paren
3202
3203 Backslashes parentheses C<()> in command line arguments.
3204 Doesn't handle recursive Makefile C<$(...)> constructs,
3205 but handles simple ones.
3206
3207 =cut
3208
3209 sub quote_paren {
3210     local $_ = shift;
3211     s/\$\((.+?)\)/\$\\\\($1\\\\)/g;     # protect $(...)
3212     s/(?<!\\)([()])/\\$1/g;             # quote unprotected
3213     s/\$\\\\\((.+?)\\\\\)/\$($1)/g;     # unprotect $(...)
3214     return $_;
3215 }
3216
3217 =item realclean (o)
3218
3219 Defines the realclean target.
3220
3221 =cut
3222
3223 sub realclean {
3224     my($self, %attribs) = @_;
3225     my(@m);
3226
3227     push(@m,'LLIBPERL = '.$llibperl."\n");
3228
3229     push(@m,'
3230 # Delete temporary files (via clean) and also delete installed files
3231 realclean purge ::  clean
3232 ');
3233     # realclean subdirectories first (already cleaned)
3234     my $sub = ($Is_Win32  &&  Win32::IsWin95()) ?
3235       "\tcd %s\n\t\$(TEST_F) %s\n\t\$(MAKE) %s realclean\n\tcd ..\n" :
3236       "\t-cd %s && \$(TEST_F) %s && \$(MAKE) %s realclean\n";
3237     foreach(@{$self->{DIR}}){
3238         push(@m, sprintf($sub,$_,"$self->{MAKEFILE}.old","-f $self->{MAKEFILE}.old"));
3239         push(@m, sprintf($sub,$_,"$self->{MAKEFILE}",''));
3240     }
3241     push(@m, "  $self->{RM_RF} \$(INST_AUTODIR) \$(INST_ARCHAUTODIR)\n");
3242     if( $self->has_link_code ){
3243         push(@m, "      $self->{RM_F} \$(INST_DYNAMIC) \$(INST_BOOT)\n");
3244         push(@m, "      $self->{RM_F} \$(INST_STATIC)\n");
3245     }
3246     # Issue a several little RM_F commands rather than risk creating a
3247     # very long command line (useful for extensions such as Encode
3248     # that have many files).
3249     if (keys %{$self->{PM}}) {
3250         my $line = "";
3251         foreach (values %{$self->{PM}}) {
3252             if (length($line) + length($_) > 80) {
3253                 push @m, "\t$self->{RM_F} $line\n";
3254                 $line = $_;
3255             }
3256             else {
3257                 $line .= " $_"; 
3258             }
3259         }
3260     push @m, "\t$self->{RM_F} $line\n" if $line;
3261     }
3262     my(@otherfiles) = ($self->{MAKEFILE},
3263                        "$self->{MAKEFILE}.old"); # Makefiles last
3264     push(@otherfiles, $attribs{FILES}) if $attribs{FILES};
3265     push(@m, "  $self->{RM_RF} @otherfiles\n") if @otherfiles;
3266     push(@m, "  $attribs{POSTOP}\n")       if $attribs{POSTOP};
3267     join("", @m);
3268 }
3269
3270 =item replace_manpage_separator
3271
3272 Takes the name of a package, which may be a nested package, in the
3273 form Foo/Bar and replaces the slash with C<::>. Returns the replacement.
3274
3275 =cut
3276
3277 sub replace_manpage_separator {
3278     my($self,$man) = @_;
3279         if ($^O eq 'uwin') {
3280             $man =~ s,/+,.,g;
3281         } elsif ($Is_Dos) {
3282             $man =~ s,/+,__,g;
3283         } else {
3284             $man =~ s,/+,::,g;
3285         }
3286     $man;
3287 }
3288
3289 =item static (o)
3290
3291 Defines the static target.
3292
3293 =cut
3294
3295 sub static {
3296 # --- Static Loading Sections ---
3297
3298     my($self) = shift;
3299     '
3300 ## $(INST_PM) has been moved to the all: target.
3301 ## It remains here for awhile to allow for old usage: "make static"
3302 #static :: '.$self->{MAKEFILE}.' $(INST_STATIC) $(INST_PM)
3303 static :: '.$self->{MAKEFILE}.' $(INST_STATIC)
3304         '.$self->{NOECHO}.'$(NOOP)
3305 ';
3306 }
3307
3308 =item static_lib (o)
3309
3310 Defines how to produce the *.a (or equivalent) files.
3311
3312 =cut
3313
3314 sub static_lib {
3315     my($self) = @_;
3316 # Come to think of it, if there are subdirs with linkcode, we still have no INST_STATIC
3317 #    return '' unless $self->needs_linking(); #might be because of a subdir
3318
3319     return '' unless $self->has_link_code;
3320
3321     my(@m);
3322     push(@m, <<'END');
3323 $(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)/.exists
3324         $(RM_RF) $@
3325 END
3326     # If this extension has its own library (eg SDBM_File)
3327     # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
3328     push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
3329
3330     my $ar; 
3331     if (exists $self->{FULL_AR} && -x $self->{FULL_AR}) {
3332         # Prefer the absolute pathed ar if available so that PATH
3333         # doesn't confuse us.  Perl itself is built with the full_ar.  
3334         $ar = 'FULL_AR';
3335     } else {
3336         $ar = 'AR';
3337     }
3338     push @m,
3339         "\t\$($ar) ".'$(AR_STATIC_ARGS) $@ $(OBJECT) && $(RANLIB) $@'."\n";
3340     push @m,
3341 q{      $(CHMOD) $(PERM_RWX) $@
3342         }.$self->{NOECHO}.q{echo "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)/extralibs.ld
3343 };
3344     # Old mechanism - still available:
3345     push @m,
3346 "\t$self->{NOECHO}".q{echo "$(EXTRALIBS)" >> $(PERL_SRC)/ext.libs
3347 }       if $self->{PERL_SRC} && $self->{EXTRALIBS};
3348     push @m, "\n";
3349
3350     push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
3351     join('', "\n",@m);
3352 }
3353
3354 =item staticmake (o)
3355
3356 Calls makeaperl.
3357
3358 =cut
3359
3360 sub staticmake {
3361     my($self, %attribs) = @_;
3362     my(@static);
3363
3364     my(@searchdirs)=($self->{PERL_ARCHLIB}, $self->{SITEARCHEXP},  $self->{INST_ARCHLIB});
3365
3366     # And as it's not yet built, we add the current extension
3367     # but only if it has some C code (or XS code, which implies C code)
3368     if (@{$self->{C}}) {
3369         @static = File::Spec->catfile($self->{INST_ARCHLIB},
3370                                  "auto",
3371                                  $self->{FULLEXT},
3372                                  "$self->{BASEEXT}$self->{LIB_EXT}"
3373                                 );
3374     }
3375
3376     # Either we determine now, which libraries we will produce in the
3377     # subdirectories or we do it at runtime of the make.
3378
3379     # We could ask all subdir objects, but I cannot imagine, why it
3380     # would be necessary.
3381
3382     # Instead we determine all libraries for the new perl at
3383     # runtime.
3384     my(@perlinc) = ($self->{INST_ARCHLIB}, $self->{INST_LIB}, $self->{PERL_ARCHLIB}, $self->{PERL_LIB});
3385
3386     $self->makeaperl(MAKE       => $self->{MAKEFILE},
3387                      DIRS       => \@searchdirs,
3388                      STAT       => \@static,
3389                      INCL       => \@perlinc,
3390                      TARGET     => $self->{MAP_TARGET},
3391                      TMP        => "",
3392                      LIBPERL    => $self->{LIBPERL_A}
3393                     );
3394 }
3395
3396 =item subdir_x (o)
3397
3398 Helper subroutine for subdirs
3399
3400 =cut
3401
3402 sub subdir_x {
3403     my($self, $subdir) = @_;
3404     my(@m);
3405     if ($Is_Win32 && Win32::IsWin95()) {
3406         if ($Config{'make'} =~ /dmake/i) {
3407             # dmake-specific
3408             return <<EOT;
3409 subdirs ::
3410 @[
3411         cd $subdir
3412         \$(MAKE) -f \$(FIRST_MAKEFILE) all \$(PASTHRU)
3413         cd ..
3414 ]
3415 EOT
3416         } elsif ($Config{'make'} =~ /nmake/i) {
3417             # nmake-specific
3418             return <<EOT;
3419 subdirs ::
3420         cd $subdir
3421         \$(MAKE) -f \$(FIRST_MAKEFILE) all \$(PASTHRU)
3422         cd ..
3423 EOT
3424         }
3425     } else {
3426         return <<EOT;
3427
3428 subdirs ::
3429         $self->{NOECHO}cd $subdir && \$(MAKE) -f \$(FIRST_MAKEFILE) all \$(PASTHRU)
3430 EOT
3431     }
3432 }
3433
3434 =item subdirs (o)
3435
3436 Defines targets to process subdirectories.
3437
3438 =cut
3439
3440 sub subdirs {
3441 # --- Sub-directory Sections ---
3442     my($self) = shift;
3443     my(@m,$dir);
3444     # This method provides a mechanism to automatically deal with
3445     # subdirectories containing further Makefile.PL scripts.
3446     # It calls the subdir_x() method for each subdirectory.
3447     foreach $dir (@{$self->{DIR}}){
3448         push(@m, $self->subdir_x($dir));
3449 ####    print "Including $dir subdirectory\n";
3450     }
3451     if (@m){
3452         unshift(@m, "
3453 # The default clean, realclean and test targets in this Makefile
3454 # have automatically been given entries for each subdir.
3455
3456 ");
3457     } else {
3458         push(@m, "\n# none")
3459     }
3460     join('',@m);
3461 }
3462
3463 =item test (o)
3464
3465 Defines the test targets.
3466
3467 =cut
3468
3469 sub test {
3470 # --- Test and Installation Sections ---
3471
3472     my($self, %attribs) = @_;
3473     my $tests = $attribs{TESTS};
3474     if (!$tests && -d 't') {
3475         $tests = $Is_Win32 ? join(' ', <t\\*.t>) : 't/*.t';
3476     }
3477     # note: 'test.pl' name is also hardcoded in init_dirscan()
3478     my(@m);
3479     push(@m,"
3480 TEST_VERBOSE=0
3481 TEST_TYPE=test_\$(LINKTYPE)
3482 TEST_FILE = test.pl
3483 TEST_FILES = $tests
3484 TESTDB_SW = -d
3485
3486 testdb :: testdb_\$(LINKTYPE)
3487
3488 test :: \$(TEST_TYPE)
3489 ");
3490     push(@m, map("\t$self->{NOECHO}cd $_ && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) test \$(PASTHRU)\n",
3491                  @{$self->{DIR}}));
3492     push(@m, "\t$self->{NOECHO}echo 'No tests defined for \$(NAME) extension.'\n")
3493         unless $tests or -f "test.pl" or @{$self->{DIR}};
3494     push(@m, "\n");
3495
3496     push(@m, "test_dynamic :: pure_all\n");
3497     push(@m, $self->test_via_harness('$(PERLRUN)', '$(TEST_FILES)')) if $tests;
3498     push(@m, $self->test_via_script('$(PERLRUN)', '$(TEST_FILE)')) if -f "test.pl";
3499     push(@m, "\n");
3500
3501     push(@m, "testdb_dynamic :: pure_all\n");
3502     push(@m, $self->test_via_script('$(PERLRUN) $(TESTDB_SW)', '$(TEST_FILE)'));
3503     push(@m, "\n");
3504
3505     # Occasionally we may face this degenerate target:
3506     push @m, "test_ : test_dynamic\n\n";
3507
3508     if ($self->needs_linking()) {
3509         push(@m, "test_static :: pure_all \$(MAP_TARGET)\n");
3510         push(@m, $self->test_via_harness('./$(MAP_TARGET)', '$(TEST_FILES)')) if $tests;
3511         push(@m, $self->test_via_script('./$(MAP_TARGET)', '$(TEST_FILE)')) if -f "test.pl";
3512         push(@m, "\n");
3513         push(@m, "testdb_static :: pure_all \$(MAP_TARGET)\n");
3514         push(@m, $self->test_via_script('./$(MAP_TARGET) $(TESTDB_SW)', '$(TEST_FILE)'));
3515         push(@m, "\n");
3516     } else {
3517         push @m, "test_static :: test_dynamic\n";
3518         push @m, "testdb_static :: testdb_dynamic\n";
3519     }
3520     join("", @m);
3521 }
3522
3523 =item test_via_harness (o)
3524
3525 Helper method to write the test targets
3526
3527 =cut
3528
3529 sub test_via_harness {
3530     my($self, $perl, $tests) = @_;
3531     $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
3532     "\t$perl".q! $(TEST_LIBS) -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' !."$tests\n";
3533 }
3534
3535 =item test_via_script (o)
3536
3537 Other helper method for test.
3538
3539 =cut
3540
3541 sub test_via_script {
3542     my($self, $perl, $script) = @_;
3543     $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
3544     qq{\t$perl}.q{ $(TEST_LIBS) }.qq{$script
3545 };
3546 }
3547
3548 =item tool_autosplit (o)
3549
3550 Defines a simple perl call that runs autosplit. May be deprecated by
3551 pm_to_blib soon.
3552
3553 =cut
3554
3555 sub tool_autosplit {
3556 # --- Tool Sections ---
3557
3558     my($self, %attribs) = @_;
3559     my($asl) = "";
3560     $asl = "\$AutoSplit::Maxlen=$attribs{MAXLEN};" if $attribs{MAXLEN};
3561     q{
3562 # Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto
3563 AUTOSPLITFILE = $(PERLRUN) -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;'
3564 };
3565 }
3566
3567 =item tools_other (o)
3568
3569 Defines SHELL, LD, TOUCH, CP, MV, RM_F, RM_RF, CHMOD, UMASK_NULL in
3570 the Makefile. Also defines the perl programs MKPATH,
3571 WARN_IF_OLD_PACKLIST, MOD_INSTALL. DOC_INSTALL, and UNINSTALL.
3572
3573 =cut
3574
3575 sub tools_other {
3576     my($self) = shift;
3577     my @m;
3578     my $bin_sh = $Config{sh} || '/bin/sh';
3579     push @m, qq{
3580 SHELL = $bin_sh
3581 };
3582
3583     for (qw/ CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL/ ) {
3584         push @m, "$_ = $self->{$_}\n";
3585     }
3586
3587     push @m, q{
3588 # The following is a portable way to say mkdir -p
3589 # To see which directories are created, change the if 0 to if 1
3590 MKPATH = $(PERLRUN) -MExtUtils::Command -e mkpath
3591
3592 # This helps us to minimize the effect of the .exists files A yet
3593 # better solution would be to have a stable file in the perl
3594 # distribution with a timestamp of zero. But this solution doesn't
3595 # need any changes to the core distribution and works with older perls
3596 EQUALIZE_TIMESTAMP = $(PERLRUN) -MExtUtils::Command -e eqtime
3597 };
3598
3599
3600     return join "", @m if $self->{PARENT};
3601
3602     push @m, q{
3603 # Here we warn users that an old packlist file was found somewhere,
3604 # and that they should call some uninstall routine
3605 WARN_IF_OLD_PACKLIST = $(PERL) -we 'exit unless -f $$ARGV[0];' \\
3606 -e 'print "WARNING: I have found an old package in\n";' \\
3607 -e 'print "\t$$ARGV[0].\n";' \\
3608 -e 'print "Please make sure the two installations are not conflicting\n";'
3609
3610 UNINST=0
3611 VERBINST=0
3612
3613 MOD_INSTALL = $(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MExtUtils::Install \
3614 -e "install({@ARGV},'$(VERBINST)',0,'$(UNINST)');"
3615
3616 DOC_INSTALL = $(PERL) -e '$$\="\n\n";' \
3617 -e 'print "=head2 ", scalar(localtime), ": C<", shift, ">", " L<", $$arg=shift, "|", $$arg, ">";' \
3618 -e 'print "=over 4";' \
3619 -e 'while (defined($$key = shift) and defined($$val = shift)){print "=item *";print "C<$$key: $$val>";}' \
3620 -e 'print "=back";'
3621
3622 UNINSTALL =   $(PERL) -MExtUtils::Install \
3623 -e 'uninstall($$ARGV[0],1,1); print "\nUninstall is deprecated. Please check the";' \
3624 -e 'print " packlist above carefully.\n  There may be errors. Remove the";' \
3625 -e 'print " appropriate files manually.\n  Sorry for the inconveniences.\n"'
3626 };
3627
3628     return join "", @m;
3629 }
3630
3631 =item tool_xsubpp (o)
3632
3633 Determines typemaps, xsubpp version, prototype behaviour.
3634
3635 =cut
3636
3637 sub tool_xsubpp {
3638     my($self) = shift;
3639     return "" unless $self->needs_linking;
3640     my($xsdir)  = File::Spec->catdir($self->{PERL_LIB},"ExtUtils");
3641     my(@tmdeps) = File::Spec->catdir('$(XSUBPPDIR)','typemap');
3642     if( $self->{TYPEMAPS} ){
3643         my $typemap;
3644         foreach $typemap (@{$self->{TYPEMAPS}}){
3645                 if( ! -f  $typemap ){
3646                         warn "Typemap $typemap not found.\n";
3647                 }
3648                 else{
3649                         push(@tmdeps,  $typemap);
3650                 }
3651         }
3652     }
3653     push(@tmdeps, "typemap") if -f "typemap";
3654     my(@tmargs) = map("-typemap $_", @tmdeps);
3655     if( exists $self->{XSOPT} ){
3656         unshift( @tmargs, $self->{XSOPT} );
3657     }
3658
3659
3660     my $xsubpp_version = $self->xsubpp_version(File::Spec->catfile($xsdir,"xsubpp"));
3661
3662     # What are the correct thresholds for version 1 && 2 Paul?
3663     if ( $xsubpp_version > 1.923 ){
3664         $self->{XSPROTOARG} = "" unless defined $self->{XSPROTOARG};
3665     } else {
3666         if (defined $self->{XSPROTOARG} && $self->{XSPROTOARG} =~ /\-prototypes/) {
3667             print STDOUT qq{Warning: This extension wants to pass the switch "-prototypes" to xsubpp.
3668         Your version of xsubpp is $xsubpp_version and cannot handle this.
3669         Please upgrade to a more recent version of xsubpp.
3670 };
3671         } else {
3672             $self->{XSPROTOARG} = "";
3673         }
3674     }
3675
3676     my $xsubpp = "xsubpp";
3677
3678     return qq{
3679 XSUBPPDIR = $xsdir
3680 XSUBPP = \$(XSUBPPDIR)/$xsubpp
3681 XSPROTOARG = $self->{XSPROTOARG}
3682 XSUBPPDEPS = @tmdeps \$(XSUBPP)
3683 XSUBPPARGS = @tmargs
3684 XSUBPP_EXTRA_ARGS = 
3685 };
3686 };
3687
3688 sub xsubpp_version
3689 {
3690     my($self,$xsubpp) = @_;
3691     return $Xsubpp_Version if defined $Xsubpp_Version; # global variable
3692
3693     my ($version) ;
3694
3695     # try to figure out the version number of the xsubpp on the system
3696
3697     # first try the -v flag, introduced in 1.921 & 2.000a2
3698
3699     return "" unless $self->needs_linking;
3700
3701     my $command = "$self->{PERL} -I$self->{PERL_LIB} $xsubpp -v 2>&1";
3702     print "Running $command\n" if $Verbose >= 2;
3703     $version = `$command` ;
3704     warn "Running '$command' exits with status " . ($?>>8) if $?;
3705     chop $version ;
3706
3707     return $Xsubpp_Version = $1 if $version =~ /^xsubpp version (.*)/ ;
3708
3709     # nope, then try something else
3710
3711     my $counter = '000';
3712     my ($file) = 'temp' ;
3713     $counter++ while -e "$file$counter"; # don't overwrite anything
3714     $file .= $counter;
3715
3716     open(F, ">$file") or die "Cannot open file '$file': $!\n" ;
3717     print F <<EOM ;
3718 MODULE = fred PACKAGE = fred
3719
3720 int
3721 fred(a)
3722         int     a;
3723 EOM
3724
3725     close F ;
3726
3727     $command = "$self->{PERL} $xsubpp $file 2>&1";
3728     print "Running $command\n" if $Verbose >= 2;
3729     my $text = `$command` ;
3730     warn "Running '$command' exits with status " . ($?>>8) if $?;
3731     unlink $file ;
3732
3733     # gets 1.2 -> 1.92 and 2.000a1
3734     return $Xsubpp_Version = $1 if $text =~ /automatically by xsubpp version ([\S]+)\s*/  ;
3735
3736     # it is either 1.0 or 1.1
3737     return $Xsubpp_Version = 1.1 if $text =~ /^Warning: ignored semicolon/ ;
3738
3739     # none of the above, so 1.0
3740     return $Xsubpp_Version = "1.0" ;
3741 }
3742
3743 =item top_targets (o)
3744
3745 Defines the targets all, subdirs, config, and O_FILES
3746
3747 =cut
3748
3749 sub top_targets {
3750 # --- Target Sections ---
3751
3752     my($self) = shift;
3753     my(@m);
3754     push @m, '
3755 #all :: config $(INST_PM) subdirs linkext manifypods
3756 ';
3757
3758     push @m, '
3759 all :: pure_all htmlifypods manifypods
3760         '.$self->{NOECHO}.'$(NOOP)
3761
3762           unless $self->{SKIPHASH}{'all'};
3763     
3764     push @m, '
3765 pure_all :: config pm_to_blib subdirs linkext
3766         '.$self->{NOECHO}.'$(NOOP)
3767
3768 subdirs :: $(MYEXTLIB)
3769         '.$self->{NOECHO}.'$(NOOP)
3770
3771 config :: '.$self->{MAKEFILE}.' $(INST_LIBDIR)/.exists
3772         '.$self->{NOECHO}.'$(NOOP)
3773
3774 config :: $(INST_ARCHAUTODIR)/.exists
3775         '.$self->{NOECHO}.'$(NOOP)
3776
3777 config :: $(INST_AUTODIR)/.exists
3778         '.$self->{NOECHO}.'$(NOOP)
3779 ';
3780
3781     push @m, $self->dir_target(qw[$(INST_AUTODIR) $(INST_LIBDIR) $(INST_ARCHAUTODIR)]);
3782
3783     if (%{$self->{HTMLLIBPODS}}) {
3784         push @m, qq[
3785 config :: \$(INST_HTMLLIBDIR)/.exists
3786         $self->{NOECHO}\$(NOOP)
3787
3788 ];
3789         push @m, $self->dir_target(qw[$(INST_HTMLLIBDIR)]);
3790     }
3791
3792     if (%{$self->{HTMLSCRIPTPODS}}) {
3793         push @m, qq[
3794 config :: \$(INST_HTMLSCRIPTDIR)/.exists
3795         $self->{NOECHO}\$(NOOP)
3796
3797 ];
3798         push @m, $self->dir_target(qw[$(INST_HTMLSCRIPTDIR)]);
3799     }
3800
3801     if (%{$self->{MAN1PODS}}) {
3802         push @m, qq[
3803 config :: \$(INST_MAN1DIR)/.exists
3804         $self->{NOECHO}\$(NOOP)
3805
3806 ];
3807         push @m, $self->dir_target(qw[$(INST_MAN1DIR)]);
3808     }
3809     if (%{$self->{MAN3PODS}}) {
3810         push @m, qq[
3811 config :: \$(INST_MAN3DIR)/.exists
3812         $self->{NOECHO}\$(NOOP)
3813
3814 ];
3815         push @m, $self->dir_target(qw[$(INST_MAN3DIR)]);
3816     }
3817
3818     push @m, '
3819 $(O_FILES): $(H_FILES)
3820 ' if @{$self->{O_FILES} || []} && @{$self->{H} || []};
3821
3822     push @m, q{
3823 help:
3824         perldoc ExtUtils::MakeMaker
3825 };
3826
3827     push @m, q{
3828 Version_check:
3829         }.$self->{NOECHO}.q{$(PERLRUN) \
3830                 -MExtUtils::MakeMaker=Version_check \
3831                 -e "Version_check('$(MM_VERSION)')"
3832 };
3833
3834     join('',@m);
3835 }
3836
3837 =item writedoc
3838
3839 Obsolete, deprecated method. Not used since Version 5.21.
3840
3841 =cut
3842
3843 sub writedoc {
3844 # --- perllocal.pod section ---
3845     my($self,$what,$name,@attribs)=@_;
3846     my $time = localtime;
3847     print "=head2 $time: $what C<$name>\n\n=over 4\n\n=item *\n\n";
3848     print join "\n\n=item *\n\n", map("C<$_>",@attribs);
3849     print "\n\n=back\n\n";
3850 }
3851
3852 =item xs_c (o)
3853
3854 Defines the suffix rules to compile XS files to C.
3855
3856 =cut
3857
3858 sub xs_c {
3859     my($self) = shift;
3860     return '' unless $self->needs_linking();
3861     '
3862 .xs.c:
3863         $(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $(XSUBPP_EXTRA_ARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3864 ';
3865 }
3866
3867 =item xs_cpp (o)
3868
3869 Defines the suffix rules to compile XS files to C++.
3870
3871 =cut
3872
3873 sub xs_cpp {
3874     my($self) = shift;
3875     return '' unless $self->needs_linking();
3876     '
3877 .xs.cpp:
3878         $(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.cpp
3879 ';
3880 }
3881
3882 =item xs_o (o)
3883
3884 Defines suffix rules to go from XS to object files directly. This is
3885 only intended for broken make implementations.
3886
3887 =cut
3888
3889 sub xs_o {      # many makes are too dumb to use xs_c then c_o
3890     my($self) = shift;
3891     return '' unless $self->needs_linking();
3892     '
3893 .xs$(OBJ_EXT):
3894         $(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3895         $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(PASTHRU_DEFINE) $(DEFINE) $*.c
3896 ';
3897 }
3898
3899 =item perl_archive
3900
3901 This is internal method that returns path to libperl.a equivalent
3902 to be linked to dynamic extensions. UNIX does not have one but OS2
3903 and Win32 do.
3904
3905 =cut 
3906
3907 sub perl_archive
3908 {
3909  return '$(PERL_INC)' . "/$Config{libperl}" if $^O eq "beos";
3910  return "";
3911 }
3912
3913 =item perl_archive_after
3914
3915 This is an internal method that returns path to a library which
3916 should be put on the linker command line I<after> the external libraries
3917 to be linked to dynamic extensions.  This may be needed if the linker
3918 is one-pass, and Perl includes some overrides for C RTL functions,
3919 such as malloc().
3920
3921 =cut 
3922
3923 sub perl_archive_after
3924 {
3925  return "";
3926 }
3927
3928 =item export_list
3929
3930 This is internal method that returns name of a file that is
3931 passed to linker to define symbols to be exported.
3932 UNIX does not have one but OS2 and Win32 do.
3933
3934 =cut 
3935
3936 sub export_list
3937 {
3938  return "";
3939 }
3940
3941
3942 1;
3943
3944 =back
3945
3946 =head1 SEE ALSO
3947
3948 L<ExtUtils::MakeMaker>
3949
3950 =cut
3951
3952 __END__