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