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