This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Subject: [PATCH] Sync MakeMaker 6.01 -> 6.02
[perl5.git] / lib / ExtUtils / MakeMaker.pm
1 package ExtUtils::MakeMaker;
2
3 BEGIN {require 5.005_03;}
4
5 $VERSION = "6.02";
6 $Version_OK = "5.49";   # Makefiles older than $Version_OK will die
7                         # (Will be checked from MakeMaker version 4.13 onwards)
8 ($Revision = substr(q$Revision: 1.61 $, 10)) =~ s/\s+$//;
9
10 require Exporter;
11 use Config;
12 use Carp ();
13
14 use vars qw(
15             @ISA @EXPORT @EXPORT_OK
16             $ISA_TTY $Revision $VERSION $Verbose $Version_OK %Config 
17             %Keep_after_flush %MM_Sections @Prepend_parent
18             %Recognized_Att_Keys @Get_from_Config @MM_Sections @Overridable 
19             @Parent $PACKNAME
20            );
21 use strict;
22
23 @ISA = qw(Exporter);
24 @EXPORT = qw(&WriteMakefile &writeMakefile $Verbose &prompt);
25 @EXPORT_OK = qw($VERSION &neatvalue &mkbootstrap &mksymlists);
26
27 # These will go away once the last of the Win32 & VMS specific code is 
28 # purged.
29 my $Is_VMS     = $^O eq 'VMS';
30 my $Is_Win32   = $^O eq 'MSWin32';
31
32 full_setup();
33
34 require ExtUtils::MM;  # Things like CPAN assume loading ExtUtils::MakeMaker
35                        # will give them MM.
36
37 require ExtUtils::MY;  # XXX pre-5.8 versions of ExtUtils::Embed expect
38                        # loading ExtUtils::MakeMaker will give them MY.
39                        # This will go when Embed is it's own CPAN module.
40
41
42 sub WriteMakefile {
43     Carp::croak "WriteMakefile: Need even number of args" if @_ % 2;
44
45     require ExtUtils::MY;
46     my %att = @_;
47
48     _verify_att(\%att);
49
50     my $mm = MM->new(\%att);
51     $mm->flush;
52
53     return $mm;
54 }
55
56
57 # Basic signatures of the attributes WriteMakefile takes.  Each is the
58 # reference type.  Empty value indicate it takes a non-reference
59 # scalar.
60 my %Att_Sigs =
61 (
62  ABSTRACT           => '',
63  ABSTRACT_FROM      => '',
64  AUTHOR             => '',
65  BINARY_LOCATION    => '',
66  C                  => 'array',
67  CCFLAGS            => '',
68  CONFIG             => 'array',
69  CONFIGURE          => 'code',
70  DEFINE             => '',
71  DIR                => 'array',
72  DISTNAME           => '',
73  DL_FUNCS           => 'hash',
74  DL_VARS            => 'array',
75  EXCLUDE_EXT        => 'array',
76  EXE_FILES          => 'array',
77  FIRST_MAKEFILE     => '',
78  FULLPERL           => '',
79  FULLPERLRUN        => '',
80  FULLPERLRUNINST    => '',
81  FUNCLIST           => 'array',
82  H                  => 'array',
83  IMPORTS            => 'hash',
84  INC                => '',
85  INCLUDE_EXT        => 'array',
86  INSTALLARCHLIB     => '',
87  INSTALLBIN         => '',
88  INSTALLDIRS        => '',
89  INSTALLMAN1DIR     => '',
90  INSTALLMAN3DIR     => '',
91  INSTALLPRIVLIB     => '',
92  INSTALLSCRIPT      => '',
93  INSTALLSITEARCH    => '',
94  INSTALLSITEBIN     => '',
95  INSTALLSITELIB     => '',
96  INSTALLSITEMAN1DIR => '',
97  INSTALLSITEMAN3DIR => '',
98  INSTALLVENDORARCH  => '',
99  INSTALLVENDORBIN   => '',
100  INSTALLVENDORLIB   => '',
101  INSTALLVENDORMAN1DIR   => '',
102  INSTALLVENDORMAN3DIR   => '',
103  INST_ARCHLIB       => '',
104  INST_BIN           => '',
105  INST_LIB           => '',
106  INST_MAN1DIR       => '',
107  INST_MAN3DIR       => '',
108  INST_SCRIPT        => '',
109  _KEEP_AFTER_FLUSH  => '',
110  LDFROM             => '',
111  LIB                => '',
112  LIBPERL_A          => '',
113  LIBS               => ['array',''],
114  LINKTYPE           => '',
115  MAKEAPERL          => '',
116  MAKEFILE           => '',
117  MAN1PODS           => 'hash',
118  MAN3PODS           => 'hash',
119  MAP_TARGET         => '',
120  MYEXTLIB           => '',
121  NAME               => '',
122  NEEDS_LINKING      => '',
123  NOECHO             => '',
124  NORECURS           => '',
125  NO_VC              => '',
126  OBJECT             => '',
127  OPTIMIZE           => '',
128  PERL               => '',
129  PERL_CORE          => '',
130  PERLMAINCC         => '',
131  PERL_ARCHLIB       => '',
132  PERL_LIB           => '',
133  PERL_MALLOC_OK     => '',
134  PERLRUN            => '',
135  PERLRUNINST        => '',
136  PERL_SRC           => '',
137  PERM_RW            => '',
138  PERM_RWX           => '',
139  PL_FILES           => 'hash',
140  PM                 => 'hash',
141  PMLIBDIRS          => 'array',
142  PM_FILTER          => '',
143  POLLUTE            => '',
144  PPM_INSTALL_EXEC   => '',
145  PPM_INSTALL_SCRIPT => '',
146  PREFIX             => '',
147  PREREQ_FATAL       => '',
148  PREREQ_PM          => 'hash',
149  PREREQ_PRINT       => '',
150  PRINT_PREREQ       => '',
151  SITEPREFIX         => '',
152  SKIP               => 'array',
153  TYPEMAPS           => 'array',
154  VENDORPREFIX       => '',
155  VERBINST           => '',
156  VERSION            => '',
157  VERSION_FROM       => '',
158  XS                 => 'hash',
159  XSOPT              => '',
160  XSPROTOARG         => '',
161  XS_VERSION         => '',
162
163  clean      => 'hash',
164  depend     => 'hash',
165  dist       => 'hash',
166  dynamic_lib=> 'hash',
167  linkext    => 'hash',
168  macro      => 'hash',
169  realclean  => 'hash',
170  test       => 'hash',
171  tool_autosplit => 'hash',
172 );
173
174 my %Default_Att = (
175                    ''     => '',
176                    hash   => {},
177                    array  => [],
178                    code   => sub {},
179                   );
180
181 sub _verify_att {
182     my($att) = @_;
183
184     while( my($key, $val) = each %$att ) {
185         my $sig = $Att_Sigs{$key};
186         unless( defined $sig ) {
187             warn "WARNING: $key is not a known parameter.\n";
188             next;
189         }
190
191         my @sigs   = ref $sig ? @$sig : $sig;
192         my $given = lc ref $val;
193         unless( grep $given eq $_, @sigs ) {
194             my $takes = join " or ", map { $_ ne '' ? "$_ reference"
195                                                     : "string/number"
196                                          } @sigs;
197             my $has   = $given ne '' ? "$given reference"
198                                      : "string/number";
199             warn "WARNING: $key takes a $takes not a $has.\n".
200                  "         Please inform the author.\n";
201             $att->{$key} = $Default_Att{$sigs[0]};
202         }
203     }
204 }
205
206 sub prompt ($;$) {
207     my($mess,$def)=@_;
208     $ISA_TTY = -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)) ;   # Pipe?
209     Carp::confess("prompt function called without an argument") 
210         unless defined $mess;
211     my $dispdef = defined $def ? "[$def] " : " ";
212     $def = defined $def ? $def : "";
213     my $ans;
214     local $|=1;
215     local $\;
216     print "$mess $dispdef";
217     if ($ISA_TTY && !$ENV{PERL_MM_USE_DEFAULT}) {
218         $ans = <STDIN>;
219         if( defined $ans ) {
220             chomp $ans;
221         }
222         else { # user hit ctrl-D
223             print "\n";
224         }
225     }
226     else {
227         print "$def\n";
228     }
229     return (!defined $ans || $ans eq '') ? $def : $ans;
230 }
231
232 sub eval_in_subdirs {
233     my($self) = @_;
234     use Cwd qw(cwd abs_path);
235     my $pwd = cwd() || die "Can't figure out your cwd!";
236
237     local @INC = map eval {abs_path($_) if -e} || $_, @INC;
238     push @INC, '.';     # '.' has to always be at the end of @INC
239
240     foreach my $dir (@{$self->{DIR}}){
241         my($abs) = $self->catdir($pwd,$dir);
242         $self->eval_in_x($abs);
243     }
244     chdir $pwd;
245 }
246
247 sub eval_in_x {
248     my($self,$dir) = @_;
249     chdir $dir or Carp::carp("Couldn't change to directory $dir: $!");
250
251     {
252         package main;
253         do './Makefile.PL';
254     };
255     if ($@) {
256 #         if ($@ =~ /prerequisites/) {
257 #             die "MakeMaker WARNING: $@";
258 #         } else {
259 #             warn "WARNING from evaluation of $dir/Makefile.PL: $@";
260 #         }
261         die "ERROR from evaluation of $dir/Makefile.PL: $@";
262     }
263 }
264
265 sub full_setup {
266     $Verbose ||= 0;
267
268     # package name for the classes into which the first object will be blessed
269     $PACKNAME = "PACK000";
270
271     my @attrib_help = qw/
272
273     AUTHOR ABSTRACT ABSTRACT_FROM BINARY_LOCATION
274     C CAPI CCFLAGS CONFIG CONFIGURE DEFINE DIR DISTNAME DL_FUNCS DL_VARS
275     EXCLUDE_EXT EXE_FILES FIRST_MAKEFILE 
276     FULLPERL FULLPERLRUN FULLPERLRUNINST
277     FUNCLIST H IMPORTS
278     INST_ARCHLIB INST_SCRIPT INST_BIN INST_LIB INST_MAN1DIR INST_MAN3DIR
279     INSTALLDIRS
280     PREFIX          SITEPREFIX      VENDORPREFIX
281     INSTALLPRIVLIB  INSTALLSITELIB  INSTALLVENDORLIB
282     INSTALLARCHLIB  INSTALLSITEARCH INSTALLVENDORARCH
283     INSTALLBIN      INSTALLSITEBIN  INSTALLVENDORBIN
284     INSTALLMAN1DIR          INSTALLMAN3DIR
285     INSTALLSITEMAN1DIR      INSTALLSITEMAN3DIR
286     INSTALLVENDORMAN1DIR    INSTALLVENDORMAN3DIR
287     INSTALLSCRIPT 
288     PERL_LIB        PERL_ARCHLIB 
289     SITELIBEXP      SITEARCHEXP 
290     INC INCLUDE_EXT LDFROM LIB LIBPERL_A LIBS
291     LINKTYPE MAKEAPERL MAKEFILE MAN1PODS MAN3PODS MAP_TARGET MYEXTLIB
292     PERL_MALLOC_OK
293     NAME NEEDS_LINKING NOECHO NORECURS NO_VC OBJECT OPTIMIZE PERL PERLMAINCC
294     PERLRUN PERLRUNINST PERL_CORE
295     PERL_SRC PERM_RW PERM_RWX
296     PL_FILES PM PM_FILTER PMLIBDIRS POLLUTE PPM_INSTALL_EXEC
297     PPM_INSTALL_SCRIPT PREREQ_FATAL PREREQ_PM PREREQ_PRINT PRINT_PREREQ
298     SKIP TYPEMAPS VERSION VERSION_FROM XS XSOPT XSPROTOARG
299     XS_VERSION clean depend dist dynamic_lib linkext macro realclean
300     tool_autosplit
301     MACPERL_SRC MACPERL_LIB MACLIBS_68K MACLIBS_PPC MACLIBS_SC MACLIBS_MRC
302     MACLIBS_ALL_68K MACLIBS_ALL_PPC MACLIBS_SHARED
303         /;
304
305     # IMPORTS is used under OS/2 and Win32
306
307     # @Overridable is close to @MM_Sections but not identical.  The
308     # order is important. Many subroutines declare macros. These
309     # depend on each other. Let's try to collect the macros up front,
310     # then pasthru, then the rules.
311
312     # MM_Sections are the sections we have to call explicitly
313     # in Overridable we have subroutines that are used indirectly
314
315
316     @MM_Sections = 
317         qw(
318
319  post_initialize const_config constants tool_autosplit tool_xsubpp
320  tools_other dist macro depend cflags const_loadlibs const_cccmd
321  post_constants
322
323  pasthru
324
325  c_o xs_c xs_o top_targets linkext dlsyms dynamic dynamic_bs
326  dynamic_lib static static_lib manifypods processPL
327  installbin subdirs
328  clean realclean dist_basics dist_core dist_dir dist_test dist_ci
329  install force perldepend makefile staticmake test ppd
330
331           ); # loses section ordering
332
333     @Overridable = @MM_Sections;
334     push @Overridable, qw[
335
336  dir_target libscan makeaperl needs_linking perm_rw perm_rwx
337  subdir_x test_via_harness test_via_script init_PERL
338                          ];
339
340     push @MM_Sections, qw[
341
342  pm_to_blib selfdocument
343
344                          ];
345
346     # Postamble needs to be the last that was always the case
347     push @MM_Sections, "postamble";
348     push @Overridable, "postamble";
349
350     # All sections are valid keys.
351     @Recognized_Att_Keys{@MM_Sections} = (1) x @MM_Sections;
352
353     # we will use all these variables in the Makefile
354     @Get_from_Config = 
355         qw(
356            ar cc cccdlflags ccdlflags dlext dlsrc ld lddlflags ldflags libc
357            lib_ext obj_ext osname osvers ranlib sitelibexp sitearchexp so
358            exe_ext full_ar
359           );
360
361     foreach my $item (@attrib_help){
362         $Recognized_Att_Keys{$item} = 1;
363     }
364     foreach my $item (@Get_from_Config) {
365         $Recognized_Att_Keys{uc $item} = $Config{$item};
366         print "Attribute '\U$item\E' => '$Config{$item}'\n"
367             if ($Verbose >= 2);
368     }
369
370     #
371     # When we eval a Makefile.PL in a subdirectory, that one will ask
372     # us (the parent) for the values and will prepend "..", so that
373     # all files to be installed end up below OUR ./blib
374     #
375     @Prepend_parent = qw(
376            INST_BIN INST_LIB INST_ARCHLIB INST_SCRIPT
377            MAP_TARGET INST_MAN1DIR INST_MAN3DIR PERL_SRC
378            PERL FULLPERL
379     );
380
381     my @keep = qw/
382         NEEDS_LINKING HAS_LINK_CODE
383         /;
384     @Keep_after_flush{@keep} = (1) x @keep;
385 }
386
387 sub writeMakefile {
388     die <<END;
389
390 The extension you are trying to build apparently is rather old and
391 most probably outdated. We detect that from the fact, that a
392 subroutine "writeMakefile" is called, and this subroutine is not
393 supported anymore since about October 1994.
394
395 Please contact the author or look into CPAN (details about CPAN can be
396 found in the FAQ and at http:/www.perl.com) for a more recent version
397 of the extension. If you're really desperate, you can try to change
398 the subroutine name from writeMakefile to WriteMakefile and rerun
399 'perl Makefile.PL', but you're most probably left alone, when you do
400 so.
401
402 The MakeMaker team
403
404 END
405 }
406
407 sub new {
408     my($class,$self) = @_;
409     my($key);
410
411     if ("@ARGV" =~ /\bPREREQ_PRINT\b/) {
412         require Data::Dumper;
413         print Data::Dumper->Dump([$self->{PREREQ_PM}], [qw(PREREQ_PM)]);
414     }
415
416     # PRINT_PREREQ is RedHatism.
417     if ("@ARGV" =~ /\bPRINT_PREREQ\b/) {
418         print join(" ", map { "perl($_)>=$self->{PREREQ_PM}->{$_} " } sort keys %{$self->{PREREQ_PM}}), "\n";
419         exit 0;
420    }
421
422     print STDOUT "MakeMaker (v$VERSION)\n" if $Verbose;
423     if (-f "MANIFEST" && ! -f "Makefile"){
424         check_manifest();
425     }
426
427     $self = {} unless (defined $self);
428
429     check_hints($self);
430
431     my %configure_att;         # record &{$self->{CONFIGURE}} attributes
432     my(%initial_att) = %$self; # record initial attributes
433
434     my(%unsatisfied) = ();
435     foreach my $prereq (sort keys %{$self->{PREREQ_PM}}) {
436         eval "require $prereq";
437
438         my $pr_version = $prereq->VERSION || 0;
439
440         if ($@) {
441             warn sprintf "Warning: prerequisite %s %s not found.\n", 
442               $prereq, $self->{PREREQ_PM}{$prereq} 
443                    unless $self->{PREREQ_FATAL};
444             $unsatisfied{$prereq} = 'not installed';
445         } elsif ($pr_version < $self->{PREREQ_PM}->{$prereq} ){
446             warn sprintf "Warning: prerequisite %s %s not found. We have %s.\n",
447               $prereq, $self->{PREREQ_PM}{$prereq}, 
448                 ($pr_version || 'unknown version') 
449                   unless $self->{PREREQ_FATAL};
450             $unsatisfied{$prereq} = $self->{PREREQ_PM}->{$prereq} ? 
451               $self->{PREREQ_PM}->{$prereq} : 'unknown version' ;
452         }
453     }
454     if (%unsatisfied && $self->{PREREQ_FATAL}){
455         my $failedprereqs = join ', ', map {"$_ $unsatisfied{$_}"} 
456                             keys %unsatisfied;
457         die qq{MakeMaker FATAL: prerequisites not found ($failedprereqs)\n
458                Please install these modules first and rerun 'perl Makefile.PL'.\n};
459     }
460
461     if (defined $self->{CONFIGURE}) {
462         if (ref $self->{CONFIGURE} eq 'CODE') {
463             %configure_att = %{&{$self->{CONFIGURE}}};
464             $self = { %$self, %configure_att };
465         } else {
466             Carp::croak "Attribute 'CONFIGURE' to WriteMakefile() not a code reference\n";
467         }
468     }
469
470     # This is for old Makefiles written pre 5.00, will go away
471     if ( Carp::longmess("") =~ /runsubdirpl/s ){
472         Carp::carp("WARNING: Please rerun 'perl Makefile.PL' to regenerate your Makefiles\n");
473     }
474
475     my $newclass = ++$PACKNAME;
476     local @Parent = @Parent;    # Protect against non-local exits
477     {
478         no strict 'refs';
479         print "Blessing Object into class [$newclass]\n" if $Verbose>=2;
480         mv_all_methods("MY",$newclass);
481         bless $self, $newclass;
482         push @Parent, $self;
483         require ExtUtils::MY;
484         @{"$newclass\:\:ISA"} = 'MM';
485     }
486
487     if (defined $Parent[-2]){
488         $self->{PARENT} = $Parent[-2];
489         my $key;
490         for $key (@Prepend_parent) {
491             next unless defined $self->{PARENT}{$key};
492             $self->{$key} = $self->{PARENT}{$key};
493             unless ($^O eq 'VMS' && $key =~ /PERL$/) {
494                 $self->{$key} = $self->catdir("..",$self->{$key})
495                   unless $self->file_name_is_absolute($self->{$key});
496             } else {
497                 # PERL or FULLPERL will be a command verb or even a
498                 # command with an argument instead of a full file
499                 # specification under VMS.  So, don't turn the command
500                 # into a filespec, but do add a level to the path of
501                 # the argument if not already absolute.
502                 my @cmd = split /\s+/, $self->{$key};
503                 $cmd[1] = $self->catfile('[-]',$cmd[1])
504                   unless (@cmd < 2) || $self->file_name_is_absolute($cmd[1]);
505                 $self->{$key} = join(' ', @cmd);
506             }
507         }
508         if ($self->{PARENT}) {
509             $self->{PARENT}->{CHILDREN}->{$newclass} = $self;
510             foreach my $opt (qw(POLLUTE PERL_CORE)) {
511                 if (exists $self->{PARENT}->{$opt}
512                     and not exists $self->{$opt})
513                     {
514                         # inherit, but only if already unspecified
515                         $self->{$opt} = $self->{PARENT}->{$opt};
516                     }
517             }
518         }
519         my @fm = grep /^FIRST_MAKEFILE=/, @ARGV;
520         parse_args($self,@fm) if @fm;
521     } else {
522         parse_args($self,split(' ', $ENV{PERL_MM_OPT} || ''),@ARGV);
523     }
524
525     $self->{NAME} ||= $self->guess_name;
526
527     ($self->{NAME_SYM} = $self->{NAME}) =~ s/\W+/_/g;
528
529     $self->init_main();
530
531     if (! $self->{PERL_SRC} ) {
532         require VMS::Filespec if $Is_VMS;
533         my($pthinks) = $self->canonpath($INC{'Config.pm'});
534         my($cthinks) = $self->catfile($Config{'archlibexp'},'Config.pm');
535         $pthinks = VMS::Filespec::vmsify($pthinks) if $Is_VMS;
536         if ($pthinks ne $cthinks &&
537             !($Is_Win32 and lc($pthinks) eq lc($cthinks))) {
538             print "Have $pthinks expected $cthinks\n";
539             if ($Is_Win32) {
540                 $pthinks =~ s![/\\]Config\.pm$!!i; $pthinks =~ s!.*[/\\]!!;
541             }
542             else {
543                 $pthinks =~ s!/Config\.pm$!!; $pthinks =~ s!.*/!!;
544             }
545             print STDOUT <<END unless $self->{UNINSTALLED_PERL};
546 Your perl and your Config.pm seem to have different ideas about the 
547 architecture they are running on.
548 Perl thinks: [$pthinks]
549 Config says: [$Config{archname}]
550 This may or may not cause problems. Please check your installation of perl 
551 if you have problems building this extension.
552 END
553         }
554     }
555
556     $self->init_dirscan();
557     $self->init_others();
558     $self->init_PERM();
559     my($argv) = neatvalue(\@ARGV);
560     $argv =~ s/^\[/(/;
561     $argv =~ s/\]$/)/;
562
563     push @{$self->{RESULT}}, <<END;
564 # This Makefile is for the $self->{NAME} extension to perl.
565 #
566 # It was generated automatically by MakeMaker version
567 # $VERSION (Revision: $Revision) from the contents of
568 # Makefile.PL. Don't edit this file, edit Makefile.PL instead.
569 #
570 #       ANY CHANGES MADE HERE WILL BE LOST!
571 #
572 #   MakeMaker ARGV: $argv
573 #
574 #   MakeMaker Parameters:
575 END
576
577     foreach my $key (sort keys %initial_att){
578         my($v) = neatvalue($initial_att{$key});
579         $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
580         $v =~ tr/\n/ /s;
581         push @{$self->{RESULT}}, "#     $key => $v";
582     }
583     undef %initial_att;        # free memory
584
585     if (defined $self->{CONFIGURE}) {
586        push @{$self->{RESULT}}, <<END;
587
588 #   MakeMaker 'CONFIGURE' Parameters:
589 END
590         if (scalar(keys %configure_att) > 0) {
591             foreach my $key (sort keys %configure_att){
592                my($v) = neatvalue($configure_att{$key});
593                $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
594                $v =~ tr/\n/ /s;
595                push @{$self->{RESULT}}, "#     $key => $v";
596             }
597         }
598         else
599         {
600            push @{$self->{RESULT}}, "# no values returned";
601         }
602         undef %configure_att;  # free memory
603     }
604
605     # turn the SKIP array into a SKIPHASH hash
606     my (%skip,$skip);
607     for $skip (@{$self->{SKIP} || []}) {
608         $self->{SKIPHASH}{$skip} = 1;
609     }
610     delete $self->{SKIP}; # free memory
611
612     if ($self->{PARENT}) {
613         for (qw/install dist dist_basics dist_core dist_dir dist_test dist_ci/) {
614             $self->{SKIPHASH}{$_} = 1;
615         }
616     }
617
618     # We run all the subdirectories now. They don't have much to query
619     # from the parent, but the parent has to query them: if they need linking!
620     unless ($self->{NORECURS}) {
621         $self->eval_in_subdirs if @{$self->{DIR}};
622     }
623
624     foreach my $section ( @MM_Sections ){
625         print "Processing Makefile '$section' section\n" if ($Verbose >= 2);
626         my($skipit) = $self->skipcheck($section);
627         if ($skipit){
628             push @{$self->{RESULT}}, "\n# --- MakeMaker $section section $skipit.";
629         } else {
630             my(%a) = %{$self->{$section} || {}};
631             push @{$self->{RESULT}}, "\n# --- MakeMaker $section section:";
632             push @{$self->{RESULT}}, "# " . join ", ", %a if $Verbose && %a;
633             push @{$self->{RESULT}}, $self->nicetext($self->$section( %a ));
634         }
635     }
636
637     push @{$self->{RESULT}}, "\n# End.";
638
639     $self;
640 }
641
642 sub WriteEmptyMakefile {
643     Carp::croak "WriteEmptyMakefile: Need even number of args" if @_ % 2;
644
645     my %att = @_;
646     my $self = MM->new(\%att);
647     if (-f "$self->{MAKEFILE}.old") {
648       chmod 0666, "$self->{MAKEFILE}.old";
649       unlink "$self->{MAKEFILE}.old" or warn "unlink $self->{MAKEFILE}.old: $!";
650     }
651     rename $self->{MAKEFILE}, "$self->{MAKEFILE}.old"
652       or warn "rename $self->{MAKEFILE} $self->{MAKEFILE}.old: $!"
653         if -f $self->{MAKEFILE};
654     open MF, '>'.$self->{MAKEFILE} or die "open $self->{MAKEFILE} for write: $!";
655     print MF <<'EOP';
656 all:
657
658 clean:
659
660 install:
661
662 makemakerdflt:
663
664 test:
665
666 EOP
667     close MF or die "close $self->{MAKEFILE} for write: $!";
668 }
669
670 sub check_manifest {
671     print STDOUT "Checking if your kit is complete...\n";
672     require ExtUtils::Manifest;
673     # avoid warning
674     $ExtUtils::Manifest::Quiet = $ExtUtils::Manifest::Quiet = 1;
675     my(@missed) = ExtUtils::Manifest::manicheck();
676     if (@missed) {
677         print STDOUT "Warning: the following files are missing in your kit:\n";
678         print "\t", join "\n\t", @missed;
679         print STDOUT "\n";
680         print STDOUT "Please inform the author.\n";
681     } else {
682         print STDOUT "Looks good\n";
683     }
684 }
685
686 sub parse_args{
687     my($self, @args) = @_;
688     foreach (@args) {
689         unless (m/(.*?)=(.*)/) {
690             help(),exit 1 if m/^help$/;
691             ++$Verbose if m/^verb/;
692             next;
693         }
694         my($name, $value) = ($1, $2);
695         if ($value =~ m/^~(\w+)?/) { # tilde with optional username
696             $value =~ s [^~(\w*)]
697                 [$1 ?
698                  ((getpwnam($1))[7] || "~$1") :
699                  (getpwuid($>))[7]
700                  ]ex;
701         }
702         $self->{uc($name)} = $value;
703     }
704
705     # catch old-style 'potential_libs' and inform user how to 'upgrade'
706     if (defined $self->{potential_libs}){
707         my($msg)="'potential_libs' => '$self->{potential_libs}' should be";
708         if ($self->{potential_libs}){
709             print STDOUT "$msg changed to:\n\t'LIBS' => ['$self->{potential_libs}']\n";
710         } else {
711             print STDOUT "$msg deleted.\n";
712         }
713         $self->{LIBS} = [$self->{potential_libs}];
714         delete $self->{potential_libs};
715     }
716     # catch old-style 'ARMAYBE' and inform user how to 'upgrade'
717     if (defined $self->{ARMAYBE}){
718         my($armaybe) = $self->{ARMAYBE};
719         print STDOUT "ARMAYBE => '$armaybe' should be changed to:\n",
720                         "\t'dynamic_lib' => {ARMAYBE => '$armaybe'}\n";
721         my(%dl) = %{$self->{dynamic_lib} || {}};
722         $self->{dynamic_lib} = { %dl, ARMAYBE => $armaybe};
723         delete $self->{ARMAYBE};
724     }
725     if (defined $self->{LDTARGET}){
726         print STDOUT "LDTARGET should be changed to LDFROM\n";
727         $self->{LDFROM} = $self->{LDTARGET};
728         delete $self->{LDTARGET};
729     }
730     # Turn a DIR argument on the command line into an array
731     if (defined $self->{DIR} && ref \$self->{DIR} eq 'SCALAR') {
732         # So they can choose from the command line, which extensions they want
733         # the grep enables them to have some colons too much in case they
734         # have to build a list with the shell
735         $self->{DIR} = [grep $_, split ":", $self->{DIR}];
736     }
737     # Turn a INCLUDE_EXT argument on the command line into an array
738     if (defined $self->{INCLUDE_EXT} && ref \$self->{INCLUDE_EXT} eq 'SCALAR') {
739         $self->{INCLUDE_EXT} = [grep $_, split '\s+', $self->{INCLUDE_EXT}];
740     }
741     # Turn a EXCLUDE_EXT argument on the command line into an array
742     if (defined $self->{EXCLUDE_EXT} && ref \$self->{EXCLUDE_EXT} eq 'SCALAR') {
743         $self->{EXCLUDE_EXT} = [grep $_, split '\s+', $self->{EXCLUDE_EXT}];
744     }
745
746     foreach my $mmkey (sort keys %$self){
747         print STDOUT "  $mmkey => ", neatvalue($self->{$mmkey}), "\n" if $Verbose;
748         print STDOUT "'$mmkey' is not a known MakeMaker parameter name.\n"
749             unless exists $Recognized_Att_Keys{$mmkey};
750     }
751     $| = 1 if $Verbose;
752 }
753
754 sub check_hints {
755     my($self) = @_;
756     # We allow extension-specific hints files.
757
758     return unless -d "hints";
759
760     # First we look for the best hintsfile we have
761     my($hint)="${^O}_$Config{osvers}";
762     $hint =~ s/\./_/g;
763     $hint =~ s/_$//;
764     return unless $hint;
765
766     # Also try without trailing minor version numbers.
767     while (1) {
768         last if -f "hints/$hint.pl";      # found
769     } continue {
770         last unless $hint =~ s/_[^_]*$//; # nothing to cut off
771     }
772     my $hint_file = "hints/$hint.pl";
773
774     return unless -f $hint_file;    # really there
775
776     _run_hintfile($self, $hint_file);
777 }
778
779 sub _run_hintfile {
780     no strict 'vars';
781     local($self) = shift;       # make $self available to the hint file.
782     my($hint_file) = shift;
783
784     local $@;
785     print STDERR "Processing hints file $hint_file\n";
786     my $ret = do "./$hint_file";
787     unless( defined $ret ) {
788         print STDERR $@ if $@;
789     }
790 }
791
792 sub mv_all_methods {
793     my($from,$to) = @_;
794     no strict 'refs';
795     my($symtab) = \%{"${from}::"};
796
797     # Here you see the *current* list of methods that are overridable
798     # from Makefile.PL via MY:: subroutines. As of VERSION 5.07 I'm
799     # still trying to reduce the list to some reasonable minimum --
800     # because I want to make it easier for the user. A.K.
801
802     local $SIG{__WARN__} = sub { 
803         # can't use 'no warnings redefined', 5.6 only
804         warn @_ unless $_[0] =~ /^Subroutine .* redefined/ 
805     };
806     foreach my $method (@Overridable) {
807
808         # We cannot say "next" here. Nick might call MY->makeaperl
809         # which isn't defined right now
810
811         # Above statement was written at 4.23 time when Tk-b8 was
812         # around. As Tk-b9 only builds with 5.002something and MM 5 is
813         # standard, we try to enable the next line again. It was
814         # commented out until MM 5.23
815
816         next unless defined &{"${from}::$method"};
817
818         *{"${to}::$method"} = \&{"${from}::$method"};
819
820         # delete would do, if we were sure, nobody ever called
821         # MY->makeaperl directly
822
823         # delete $symtab->{$method};
824
825         # If we delete a method, then it will be undefined and cannot
826         # be called.  But as long as we have Makefile.PLs that rely on
827         # %MY:: being intact, we have to fill the hole with an
828         # inheriting method:
829
830         eval "package MY; sub $method { shift->SUPER::$method(\@_); }";
831     }
832
833     # We have to clean out %INC also, because the current directory is
834     # changed frequently and Graham Barr prefers to get his version
835     # out of a History.pl file which is "required" so woudn't get
836     # loaded again in another extension requiring a History.pl
837
838     # With perl5.002_01 the deletion of entries in %INC caused Tk-b11
839     # to core dump in the middle of a require statement. The required
840     # file was Tk/MMutil.pm.  The consequence is, we have to be
841     # extremely careful when we try to give perl a reason to reload a
842     # library with same name.  The workaround prefers to drop nothing
843     # from %INC and teach the writers not to use such libraries.
844
845 #    my $inc;
846 #    foreach $inc (keys %INC) {
847 #       #warn "***$inc*** deleted";
848 #       delete $INC{$inc};
849 #    }
850 }
851
852 sub skipcheck {
853     my($self) = shift;
854     my($section) = @_;
855     if ($section eq 'dynamic') {
856         print STDOUT "Warning (non-fatal): Target 'dynamic' depends on targets ",
857         "in skipped section 'dynamic_bs'\n"
858             if $self->{SKIPHASH}{dynamic_bs} && $Verbose;
859         print STDOUT "Warning (non-fatal): Target 'dynamic' depends on targets ",
860         "in skipped section 'dynamic_lib'\n"
861             if $self->{SKIPHASH}{dynamic_lib} && $Verbose;
862     }
863     if ($section eq 'dynamic_lib') {
864         print STDOUT "Warning (non-fatal): Target '\$(INST_DYNAMIC)' depends on ",
865         "targets in skipped section 'dynamic_bs'\n"
866             if $self->{SKIPHASH}{dynamic_bs} && $Verbose;
867     }
868     if ($section eq 'static') {
869         print STDOUT "Warning (non-fatal): Target 'static' depends on targets ",
870         "in skipped section 'static_lib'\n"
871             if $self->{SKIPHASH}{static_lib} && $Verbose;
872     }
873     return 'skipped' if $self->{SKIPHASH}{$section};
874     return '';
875 }
876
877 sub flush {
878     my $self = shift;
879     my($chunk);
880     local *FH;
881     print STDOUT "Writing $self->{MAKEFILE} for $self->{NAME}\n";
882
883     unlink($self->{MAKEFILE}, "MakeMaker.tmp", $Is_VMS ? 'Descrip.MMS' : '');
884     open(FH,">MakeMaker.tmp") or die "Unable to open MakeMaker.tmp: $!";
885
886     for $chunk (@{$self->{RESULT}}) {
887         print FH "$chunk\n";
888     }
889
890     close FH;
891     my($finalname) = $self->{MAKEFILE};
892     rename("MakeMaker.tmp", $finalname);
893     chmod 0644, $finalname unless $Is_VMS;
894
895     if ($self->{PARENT} && !$self->{_KEEP_AFTER_FLUSH}) {
896         foreach (keys %$self) { # safe memory
897             delete $self->{$_} unless $Keep_after_flush{$_};
898         }
899     }
900
901     system("$Config::Config{eunicefix} $finalname") unless $Config::Config{eunicefix} eq ":";
902 }
903
904 # The following mkbootstrap() is only for installations that are calling
905 # the pre-4.1 mkbootstrap() from their old Makefiles. This MakeMaker
906 # writes Makefiles, that use ExtUtils::Mkbootstrap directly.
907 sub mkbootstrap {
908     die <<END;
909 !!! Your Makefile has been built such a long time ago, !!!
910 !!! that is unlikely to work with current MakeMaker.   !!!
911 !!! Please rebuild your Makefile                       !!!
912 END
913 }
914
915 # Ditto for mksymlists() as of MakeMaker 5.17
916 sub mksymlists {
917     die <<END;
918 !!! Your Makefile has been built such a long time ago, !!!
919 !!! that is unlikely to work with current MakeMaker.   !!!
920 !!! Please rebuild your Makefile                       !!!
921 END
922 }
923
924 sub neatvalue {
925     my($v) = @_;
926     return "undef" unless defined $v;
927     my($t) = ref $v;
928     return "q[$v]" unless $t;
929     if ($t eq 'ARRAY') {
930         my(@m, @neat);
931         push @m, "[";
932         foreach my $elem (@$v) {
933             push @neat, "q[$elem]";
934         }
935         push @m, join ", ", @neat;
936         push @m, "]";
937         return join "", @m;
938     }
939     return "$v" unless $t eq 'HASH';
940     my(@m, $key, $val);
941     while (($key,$val) = each %$v){
942         last unless defined $key; # cautious programming in case (undef,undef) is true
943         push(@m,"$key=>".neatvalue($val)) ;
944     }
945     return "{ ".join(', ',@m)." }";
946 }
947
948 sub selfdocument {
949     my($self) = @_;
950     my(@m);
951     if ($Verbose){
952         push @m, "\n# Full list of MakeMaker attribute values:";
953         foreach my $key (sort keys %$self){
954             next if $key eq 'RESULT' || $key =~ /^[A-Z][a-z]/;
955             my($v) = neatvalue($self->{$key});
956             $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
957             $v =~ tr/\n/ /s;
958             push @m, "# $key => $v";
959         }
960     }
961     join "\n", @m;
962 }
963
964 1;
965
966 __END__
967
968 =head1 NAME
969
970 ExtUtils::MakeMaker - create an extension Makefile
971
972 =head1 SYNOPSIS
973
974   use ExtUtils::MakeMaker;
975
976   WriteMakefile( ATTRIBUTE => VALUE [, ...] );
977
978 =head1 DESCRIPTION
979
980 This utility is designed to write a Makefile for an extension module
981 from a Makefile.PL. It is based on the Makefile.SH model provided by
982 Andy Dougherty and the perl5-porters.
983
984 It splits the task of generating the Makefile into several subroutines
985 that can be individually overridden.  Each subroutine returns the text
986 it wishes to have written to the Makefile.
987
988 MakeMaker is object oriented. Each directory below the current
989 directory that contains a Makefile.PL is treated as a separate
990 object. This makes it possible to write an unlimited number of
991 Makefiles with a single invocation of WriteMakefile().
992
993 =head2 How To Write A Makefile.PL
994
995 The short answer is: Don't.
996
997         Always begin with h2xs.
998         Always begin with h2xs!
999         ALWAYS BEGIN WITH H2XS!
1000
1001 even if you're not building around a header file, and even if you
1002 don't have an XS component.
1003
1004 Run h2xs(1) before you start thinking about writing a module. For so
1005 called pm-only modules that consist of C<*.pm> files only, h2xs has
1006 the C<-X> switch. This will generate dummy files of all kinds that are
1007 useful for the module developer.
1008
1009 The medium answer is:
1010
1011     use ExtUtils::MakeMaker;
1012     WriteMakefile( NAME => "Foo::Bar" );
1013
1014 The long answer is the rest of the manpage :-)
1015
1016 =head2 Default Makefile Behaviour
1017
1018 The generated Makefile enables the user of the extension to invoke
1019
1020   perl Makefile.PL # optionally "perl Makefile.PL verbose"
1021   make
1022   make test        # optionally set TEST_VERBOSE=1
1023   make install     # See below
1024
1025 The Makefile to be produced may be altered by adding arguments of the
1026 form C<KEY=VALUE>. E.g.
1027
1028   perl Makefile.PL PREFIX=/tmp/myperl5
1029
1030 Other interesting targets in the generated Makefile are
1031
1032   make config     # to check if the Makefile is up-to-date
1033   make clean      # delete local temp files (Makefile gets renamed)
1034   make realclean  # delete derived files (including ./blib)
1035   make ci         # check in all the files in the MANIFEST file
1036   make dist       # see below the Distribution Support section
1037
1038 =head2 make test
1039
1040 MakeMaker checks for the existence of a file named F<test.pl> in the
1041 current directory and if it exists it execute the script with the
1042 proper set of perl C<-I> options.
1043
1044 MakeMaker also checks for any files matching glob("t/*.t"). It will
1045 execute all matching files in alphabetical order via the
1046 L<Test::Harness> module with the C<-I> switches set correctly.
1047
1048 If you'd like to see the raw output of your tests, set the
1049 C<TEST_VERBOSE> variable to true.
1050
1051   make test TEST_VERBOSE=1
1052
1053 =head2 make testdb
1054
1055 A useful variation of the above is the target C<testdb>. It runs the
1056 test under the Perl debugger (see L<perldebug>). If the file
1057 F<test.pl> exists in the current directory, it is used for the test.
1058
1059 If you want to debug some other testfile, set the C<TEST_FILE> variable
1060 thusly:
1061
1062   make testdb TEST_FILE=t/mytest.t
1063
1064 By default the debugger is called using C<-d> option to perl. If you
1065 want to specify some other option, set the C<TESTDB_SW> variable:
1066
1067   make testdb TESTDB_SW=-Dx
1068
1069 =head2 make install
1070
1071 make alone puts all relevant files into directories that are named by
1072 the macros INST_LIB, INST_ARCHLIB, INST_SCRIPT, INST_MAN1DIR and
1073 INST_MAN3DIR.  All these default to something below ./blib if you are
1074 I<not> building below the perl source directory. If you I<are>
1075 building below the perl source, INST_LIB and INST_ARCHLIB default to
1076 ../../lib, and INST_SCRIPT is not defined.
1077
1078 The I<install> target of the generated Makefile copies the files found
1079 below each of the INST_* directories to their INSTALL*
1080 counterparts. Which counterparts are chosen depends on the setting of
1081 INSTALLDIRS according to the following table:
1082
1083                                  INSTALLDIRS set to
1084                            perl        site          vendor
1085
1086                  PREFIX          SITEPREFIX          VENDORPREFIX
1087   INST_ARCHLIB   INSTALLARCHLIB  INSTALLSITEARCH     INSTALLVENDORARCH
1088   INST_LIB       INSTALLPRIVLIB  INSTALLSITELIB      INSTALLVENDORLIB
1089   INST_BIN       INSTALLBIN      INSTALLSITEBIN      INSTALLVENDORBIN
1090   INST_SCRIPT    INSTALLSCRIPT   INSTALLSCRIPT       INSTALLSCRIPT
1091   INST_MAN1DIR   INSTALLMAN1DIR  INSTALLSITEMAN1DIR  INSTALLVENDORMAN1DIR
1092   INST_MAN3DIR   INSTALLMAN3DIR  INSTALLSITEMAN3DIR  INSTALLVENDORMAN3DIR
1093
1094 The INSTALL... macros in turn default to their %Config
1095 ($Config{installprivlib}, $Config{installarchlib}, etc.) counterparts.
1096
1097 You can check the values of these variables on your system with
1098
1099     perl '-V:install.*'
1100
1101 And to check the sequence in which the library directories are
1102 searched by perl, run
1103
1104     perl -le 'print join $/, @INC'
1105
1106
1107 =head2 PREFIX and LIB attribute
1108
1109 PREFIX and LIB can be used to set several INSTALL* attributes in one
1110 go. The quickest way to install a module in a non-standard place might
1111 be
1112
1113     perl Makefile.PL PREFIX=~
1114
1115 This will install all files in the module under your home directory,
1116 with man pages and libraries going into an appropriate place (usually
1117 ~/man and ~/lib).
1118
1119 Another way to specify many INSTALL directories with a single
1120 parameter is LIB.
1121
1122     perl Makefile.PL LIB=~/lib
1123
1124 This will install the module's architecture-independent files into
1125 ~/lib, the architecture-dependent files into ~/lib/$archname.
1126
1127 Note, that in both cases the tilde expansion is done by MakeMaker, not
1128 by perl by default, nor by make.
1129
1130 Conflicts between parameters LIB, PREFIX and the various INSTALL*
1131 arguments are resolved so that:
1132
1133 =over 4
1134
1135 =item *
1136
1137 setting LIB overrides any setting of INSTALLPRIVLIB, INSTALLARCHLIB,
1138 INSTALLSITELIB, INSTALLSITEARCH (and they are not affected by PREFIX);
1139
1140 =item *
1141
1142 without LIB, setting PREFIX replaces the initial C<$Config{prefix}>
1143 part of those INSTALL* arguments, even if the latter are explicitly
1144 set (but are set to still start with C<$Config{prefix}>).
1145
1146 =back
1147
1148 If the user has superuser privileges, and is not working on AFS or
1149 relatives, then the defaults for INSTALLPRIVLIB, INSTALLARCHLIB,
1150 INSTALLSCRIPT, etc. will be appropriate, and this incantation will be
1151 the best:
1152
1153     perl Makefile.PL; 
1154     make; 
1155     make test
1156     make install
1157
1158 make install per default writes some documentation of what has been
1159 done into the file C<$(INSTALLARCHLIB)/perllocal.pod>. This feature
1160 can be bypassed by calling make pure_install.
1161
1162 =head2 AFS users
1163
1164 will have to specify the installation directories as these most
1165 probably have changed since perl itself has been installed. They will
1166 have to do this by calling
1167
1168     perl Makefile.PL INSTALLSITELIB=/afs/here/today \
1169         INSTALLSCRIPT=/afs/there/now INSTALLMAN3DIR=/afs/for/manpages
1170     make
1171
1172 Be careful to repeat this procedure every time you recompile an
1173 extension, unless you are sure the AFS installation directories are
1174 still valid.
1175
1176 =head2 Static Linking of a new Perl Binary
1177
1178 An extension that is built with the above steps is ready to use on
1179 systems supporting dynamic loading. On systems that do not support
1180 dynamic loading, any newly created extension has to be linked together
1181 with the available resources. MakeMaker supports the linking process
1182 by creating appropriate targets in the Makefile whenever an extension
1183 is built. You can invoke the corresponding section of the makefile with
1184
1185     make perl
1186
1187 That produces a new perl binary in the current directory with all
1188 extensions linked in that can be found in INST_ARCHLIB, SITELIBEXP,
1189 and PERL_ARCHLIB. To do that, MakeMaker writes a new Makefile, on
1190 UNIX, this is called Makefile.aperl (may be system dependent). If you
1191 want to force the creation of a new perl, it is recommended, that you
1192 delete this Makefile.aperl, so the directories are searched-through
1193 for linkable libraries again.
1194
1195 The binary can be installed into the directory where perl normally
1196 resides on your machine with
1197
1198     make inst_perl
1199
1200 To produce a perl binary with a different name than C<perl>, either say
1201
1202     perl Makefile.PL MAP_TARGET=myperl
1203     make myperl
1204     make inst_perl
1205
1206 or say
1207
1208     perl Makefile.PL
1209     make myperl MAP_TARGET=myperl
1210     make inst_perl MAP_TARGET=myperl
1211
1212 In any case you will be prompted with the correct invocation of the
1213 C<inst_perl> target that installs the new binary into INSTALLBIN.
1214
1215 make inst_perl per default writes some documentation of what has been
1216 done into the file C<$(INSTALLARCHLIB)/perllocal.pod>. This
1217 can be bypassed by calling make pure_inst_perl.
1218
1219 Warning: the inst_perl: target will most probably overwrite your
1220 existing perl binary. Use with care!
1221
1222 Sometimes you might want to build a statically linked perl although
1223 your system supports dynamic loading. In this case you may explicitly
1224 set the linktype with the invocation of the Makefile.PL or make:
1225
1226     perl Makefile.PL LINKTYPE=static    # recommended
1227
1228 or
1229
1230     make LINKTYPE=static                # works on most systems
1231
1232 =head2 Determination of Perl Library and Installation Locations
1233
1234 MakeMaker needs to know, or to guess, where certain things are
1235 located.  Especially INST_LIB and INST_ARCHLIB (where to put the files
1236 during the make(1) run), PERL_LIB and PERL_ARCHLIB (where to read
1237 existing modules from), and PERL_INC (header files and C<libperl*.*>).
1238
1239 Extensions may be built either using the contents of the perl source
1240 directory tree or from the installed perl library. The recommended way
1241 is to build extensions after you have run 'make install' on perl
1242 itself. You can do that in any directory on your hard disk that is not
1243 below the perl source tree. The support for extensions below the ext
1244 directory of the perl distribution is only good for the standard
1245 extensions that come with perl.
1246
1247 If an extension is being built below the C<ext/> directory of the perl
1248 source then MakeMaker will set PERL_SRC automatically (e.g.,
1249 C<../..>).  If PERL_SRC is defined and the extension is recognized as
1250 a standard extension, then other variables default to the following:
1251
1252   PERL_INC     = PERL_SRC
1253   PERL_LIB     = PERL_SRC/lib
1254   PERL_ARCHLIB = PERL_SRC/lib
1255   INST_LIB     = PERL_LIB
1256   INST_ARCHLIB = PERL_ARCHLIB
1257
1258 If an extension is being built away from the perl source then MakeMaker
1259 will leave PERL_SRC undefined and default to using the installed copy
1260 of the perl library. The other variables default to the following:
1261
1262   PERL_INC     = $archlibexp/CORE
1263   PERL_LIB     = $privlibexp
1264   PERL_ARCHLIB = $archlibexp
1265   INST_LIB     = ./blib/lib
1266   INST_ARCHLIB = ./blib/arch
1267
1268 If perl has not yet been installed then PERL_SRC can be defined on the
1269 command line as shown in the previous section.
1270
1271
1272 =head2 Which architecture dependent directory?
1273
1274 If you don't want to keep the defaults for the INSTALL* macros,
1275 MakeMaker helps you to minimize the typing needed: the usual
1276 relationship between INSTALLPRIVLIB and INSTALLARCHLIB is determined
1277 by Configure at perl compilation time. MakeMaker supports the user who
1278 sets INSTALLPRIVLIB. If INSTALLPRIVLIB is set, but INSTALLARCHLIB not,
1279 then MakeMaker defaults the latter to be the same subdirectory of
1280 INSTALLPRIVLIB as Configure decided for the counterparts in %Config ,
1281 otherwise it defaults to INSTALLPRIVLIB. The same relationship holds
1282 for INSTALLSITELIB and INSTALLSITEARCH.
1283
1284 MakeMaker gives you much more freedom than needed to configure
1285 internal variables and get different results. It is worth to mention,
1286 that make(1) also lets you configure most of the variables that are
1287 used in the Makefile. But in the majority of situations this will not
1288 be necessary, and should only be done if the author of a package
1289 recommends it (or you know what you're doing).
1290
1291 =head2 Using Attributes and Parameters
1292
1293 The following attributes can be specified as arguments to WriteMakefile()
1294 or as NAME=VALUE pairs on the command line:
1295
1296 =over 2
1297
1298 =item ABSTRACT
1299
1300 One line description of the module. Will be included in PPD file.
1301
1302 =item ABSTRACT_FROM
1303
1304 Name of the file that contains the package description. MakeMaker looks
1305 for a line in the POD matching /^($package\s-\s)(.*)/. This is typically
1306 the first line in the "=head1 NAME" section. $2 becomes the abstract.
1307
1308 =item AUTHOR
1309
1310 String containing name (and email address) of package author(s). Is used
1311 in PPD (Perl Package Description) files for PPM (Perl Package Manager).
1312
1313 =item BINARY_LOCATION
1314
1315 Used when creating PPD files for binary packages.  It can be set to a
1316 full or relative path or URL to the binary archive for a particular
1317 architecture.  For example:
1318
1319         perl Makefile.PL BINARY_LOCATION=x86/Agent.tar.gz
1320
1321 builds a PPD package that references a binary of the C<Agent> package,
1322 located in the C<x86> directory relative to the PPD itself.
1323
1324 =item C
1325
1326 Ref to array of *.c file names. Initialised from a directory scan
1327 and the values portion of the XS attribute hash. This is not
1328 currently used by MakeMaker but may be handy in Makefile.PLs.
1329
1330 =item CCFLAGS
1331
1332 String that will be included in the compiler call command line between
1333 the arguments INC and OPTIMIZE.
1334
1335 =item CONFIG
1336
1337 Arrayref. E.g. [qw(archname manext)] defines ARCHNAME & MANEXT from
1338 config.sh. MakeMaker will add to CONFIG the following values anyway:
1339 ar
1340 cc
1341 cccdlflags
1342 ccdlflags
1343 dlext
1344 dlsrc
1345 ld
1346 lddlflags
1347 ldflags
1348 libc
1349 lib_ext
1350 obj_ext
1351 ranlib
1352 sitelibexp
1353 sitearchexp
1354 so
1355
1356 =item CONFIGURE
1357
1358 CODE reference. The subroutine should return a hash reference. The
1359 hash may contain further attributes, e.g. {LIBS =E<gt> ...}, that have to
1360 be determined by some evaluation method.
1361
1362 =item DEFINE
1363
1364 Something like C<"-DHAVE_UNISTD_H">
1365
1366 =item DIR
1367
1368 Ref to array of subdirectories containing Makefile.PLs e.g. [ 'sdbm'
1369 ] in ext/SDBM_File
1370
1371 =item DISTNAME
1372
1373 Your name for distributing the package (by tar file). This defaults to
1374 NAME above.
1375
1376 =item DL_FUNCS
1377
1378 Hashref of symbol names for routines to be made available as universal
1379 symbols.  Each key/value pair consists of the package name and an
1380 array of routine names in that package.  Used only under AIX, OS/2,
1381 VMS and Win32 at present.  The routine names supplied will be expanded
1382 in the same way as XSUB names are expanded by the XS() macro.
1383 Defaults to
1384
1385   {"$(NAME)" => ["boot_$(NAME)" ] }
1386
1387 e.g.
1388
1389   {"RPC" => [qw( boot_rpcb rpcb_gettime getnetconfigent )],
1390    "NetconfigPtr" => [ 'DESTROY'] }
1391
1392 Please see the L<ExtUtils::Mksymlists> documentation for more information
1393 about the DL_FUNCS, DL_VARS and FUNCLIST attributes.
1394
1395 =item DL_VARS
1396
1397 Array of symbol names for variables to be made available as universal symbols.
1398 Used only under AIX, OS/2, VMS and Win32 at present.  Defaults to [].
1399 (e.g. [ qw(Foo_version Foo_numstreams Foo_tree ) ])
1400
1401 =item EXCLUDE_EXT
1402
1403 Array of extension names to exclude when doing a static build.  This
1404 is ignored if INCLUDE_EXT is present.  Consult INCLUDE_EXT for more
1405 details.  (e.g.  [ qw( Socket POSIX ) ] )
1406
1407 This attribute may be most useful when specified as a string on the
1408 command line:  perl Makefile.PL EXCLUDE_EXT='Socket Safe'
1409
1410 =item EXE_FILES
1411
1412 Ref to array of executable files. The files will be copied to the
1413 INST_SCRIPT directory. Make realclean will delete them from there
1414 again.
1415
1416 =item FIRST_MAKEFILE
1417
1418 The name of the Makefile to be produced. Defaults to the contents of
1419 MAKEFILE, but can be overridden. This is used for the second Makefile
1420 that will be produced for the MAP_TARGET.
1421
1422 =item FULLPERL
1423
1424 Perl binary able to run this extension, load XS modules, etc...
1425
1426 =item FULLPERLRUN
1427
1428 Like PERLRUN, except it uses FULLPERL.
1429
1430 =item FULLPERLRUNINST
1431
1432 Like PERLRUNINST, except it uses FULLPERL.
1433
1434 =item FUNCLIST
1435
1436 This provides an alternate means to specify function names to be
1437 exported from the extension.  Its value is a reference to an
1438 array of function names to be exported by the extension.  These
1439 names are passed through unaltered to the linker options file.
1440
1441 =item H
1442
1443 Ref to array of *.h file names. Similar to C.
1444
1445 =item IMPORTS
1446
1447 This attribute is used to specify names to be imported into the
1448 extension. Takes a hash ref.
1449
1450 It is only used on OS/2 and Win32.
1451
1452 =item INC
1453
1454 Include file dirs eg: C<"-I/usr/5include -I/path/to/inc">
1455
1456 =item INCLUDE_EXT
1457
1458 Array of extension names to be included when doing a static build.
1459 MakeMaker will normally build with all of the installed extensions when
1460 doing a static build, and that is usually the desired behavior.  If
1461 INCLUDE_EXT is present then MakeMaker will build only with those extensions
1462 which are explicitly mentioned. (e.g.  [ qw( Socket POSIX ) ])
1463
1464 It is not necessary to mention DynaLoader or the current extension when
1465 filling in INCLUDE_EXT.  If the INCLUDE_EXT is mentioned but is empty then
1466 only DynaLoader and the current extension will be included in the build.
1467
1468 This attribute may be most useful when specified as a string on the
1469 command line:  perl Makefile.PL INCLUDE_EXT='POSIX Socket Devel::Peek'
1470
1471 =item INSTALLARCHLIB
1472
1473 Used by 'make install', which copies files from INST_ARCHLIB to this
1474 directory if INSTALLDIRS is set to perl.
1475
1476 =item INSTALLBIN
1477
1478 Directory to install binary files (e.g. tkperl) into if
1479 INSTALLDIRS=perl.
1480
1481 =item INSTALLDIRS
1482
1483 Determines which of the sets of installation directories to choose:
1484 perl, site or vendor.  Defaults to site.
1485
1486 =item INSTALLMAN1DIR
1487
1488 =item INSTALLMAN3DIR
1489
1490 These directories get the man pages at 'make install' time if
1491 INSTALLDIRS=perl.  Defaults to $Config{installman*dir}.
1492
1493 If set to 'none', no man pages will be installed.
1494
1495 =item INSTALLPRIVLIB
1496
1497 Used by 'make install', which copies files from INST_LIB to this
1498 directory if INSTALLDIRS is set to perl.
1499
1500 Defaults to $Config{installprivlib}.
1501
1502 =item INSTALLSCRIPT
1503
1504 Used by 'make install' which copies files from INST_SCRIPT to this
1505 directory.
1506
1507 =item INSTALLSITEARCH
1508
1509 Used by 'make install', which copies files from INST_ARCHLIB to this
1510 directory if INSTALLDIRS is set to site (default).
1511
1512 =item INSTALLSITEBIN
1513
1514 Used by 'make install', which copies files from INST_BIN to this
1515 directory if INSTALLDIRS is set to site (default).
1516
1517 =item INSTALLSITELIB
1518
1519 Used by 'make install', which copies files from INST_LIB to this
1520 directory if INSTALLDIRS is set to site (default).
1521
1522 =item INSTALLSITEMAN1DIR
1523
1524 =item INSTALLSITEMAN3DIR
1525
1526 These directories get the man pages at 'make install' time if
1527 INSTALLDIRS=site (default).  Defaults to 
1528 $(SITEPREFIX)/man/man$(MAN*EXT).
1529
1530 If set to 'none', no man pages will be installed.
1531
1532 =item INSTALLVENDORARCH
1533
1534 Used by 'make install', which copies files from INST_ARCHLIB to this
1535 directory if INSTALLDIRS is set to vendor.
1536
1537 =item INSTALLVENDORBIN
1538
1539 Used by 'make install', which copies files from INST_BIN to this
1540 directory if INSTALLDIRS is set to vendor.
1541
1542 =item INSTALLVENDORLIB
1543
1544 Used by 'make install', which copies files from INST_LIB to this
1545 directory if INSTALLDIRS is set to vendor.
1546
1547 =item INSTALLVENDORMAN1DIR
1548
1549 =item INSTALLVENDORMAN3DIR
1550
1551 These directories get the man pages at 'make install' time if
1552 INSTALLDIRS=vendor.  Defaults to $(VENDORPREFIX)/man/man$(MAN*EXT).
1553
1554 If set to 'none', no man pages will be installed.
1555
1556 =item INST_ARCHLIB
1557
1558 Same as INST_LIB for architecture dependent files.
1559
1560 =item INST_BIN
1561
1562 Directory to put real binary files during 'make'. These will be copied
1563 to INSTALLBIN during 'make install'
1564
1565 =item INST_LIB
1566
1567 Directory where we put library files of this extension while building
1568 it.
1569
1570 =item INST_MAN1DIR
1571
1572 Directory to hold the man pages at 'make' time
1573
1574 =item INST_MAN3DIR
1575
1576 Directory to hold the man pages at 'make' time
1577
1578 =item INST_SCRIPT
1579
1580 Directory, where executable files should be installed during
1581 'make'. Defaults to "./blib/script", just to have a dummy location during
1582 testing. make install will copy the files in INST_SCRIPT to
1583 INSTALLSCRIPT.
1584
1585 =item LDFROM
1586
1587 Defaults to "$(OBJECT)" and is used in the ld command to specify
1588 what files to link/load from (also see dynamic_lib below for how to
1589 specify ld flags)
1590
1591 =item LIB
1592
1593 LIB should only be set at C<perl Makefile.PL> time but is allowed as a
1594 MakeMaker argument. It has the effect of setting both INSTALLPRIVLIB
1595 and INSTALLSITELIB to that value regardless any explicit setting of
1596 those arguments (or of PREFIX).  INSTALLARCHLIB and INSTALLSITEARCH
1597 are set to the corresponding architecture subdirectory.
1598
1599 =item LIBPERL_A
1600
1601 The filename of the perllibrary that will be used together with this
1602 extension. Defaults to libperl.a.
1603
1604 =item LIBS
1605
1606 An anonymous array of alternative library
1607 specifications to be searched for (in order) until
1608 at least one library is found. E.g.
1609
1610   'LIBS' => ["-lgdbm", "-ldbm -lfoo", "-L/path -ldbm.nfs"]
1611
1612 Mind, that any element of the array
1613 contains a complete set of arguments for the ld
1614 command. So do not specify
1615
1616   'LIBS' => ["-ltcl", "-ltk", "-lX11"]
1617
1618 See ODBM_File/Makefile.PL for an example, where an array is needed. If
1619 you specify a scalar as in
1620
1621   'LIBS' => "-ltcl -ltk -lX11"
1622
1623 MakeMaker will turn it into an array with one element.
1624
1625 =item LINKTYPE
1626
1627 'static' or 'dynamic' (default unless usedl=undef in
1628 config.sh). Should only be used to force static linking (also see
1629 linkext below).
1630
1631 =item MAKEAPERL
1632
1633 Boolean which tells MakeMaker, that it should include the rules to
1634 make a perl. This is handled automatically as a switch by
1635 MakeMaker. The user normally does not need it.
1636
1637 =item MAKEFILE
1638
1639 The name of the Makefile to be produced.
1640
1641 =item MAN1PODS
1642
1643 Hashref of pod-containing files. MakeMaker will default this to all
1644 EXE_FILES files that include POD directives. The files listed
1645 here will be converted to man pages and installed as was requested
1646 at Configure time.
1647
1648 =item MAN3PODS
1649
1650 Hashref that assigns to *.pm and *.pod files the files into which the
1651 manpages are to be written. MakeMaker parses all *.pod and *.pm files
1652 for POD directives. Files that contain POD will be the default keys of
1653 the MAN3PODS hashref. These will then be converted to man pages during
1654 C<make> and will be installed during C<make install>.
1655
1656 =item MAP_TARGET
1657
1658 If it is intended, that a new perl binary be produced, this variable
1659 may hold a name for that binary. Defaults to perl
1660
1661 =item MYEXTLIB
1662
1663 If the extension links to a library that it builds set this to the
1664 name of the library (see SDBM_File)
1665
1666 =item NAME
1667
1668 Perl module name for this extension (DBD::Oracle). This will default
1669 to the directory name but should be explicitly defined in the
1670 Makefile.PL.
1671
1672 =item NEEDS_LINKING
1673
1674 MakeMaker will figure out if an extension contains linkable code
1675 anywhere down the directory tree, and will set this variable
1676 accordingly, but you can speed it up a very little bit if you define
1677 this boolean variable yourself.
1678
1679 =item NOECHO
1680
1681 Defaults to C<@>. By setting it to an empty string you can generate a
1682 Makefile that echos all commands. Mainly used in debugging MakeMaker
1683 itself.
1684
1685 =item NORECURS
1686
1687 Boolean.  Attribute to inhibit descending into subdirectories.
1688
1689 =item NO_VC
1690
1691 In general, any generated Makefile checks for the current version of
1692 MakeMaker and the version the Makefile was built under. If NO_VC is
1693 set, the version check is neglected. Do not write this into your
1694 Makefile.PL, use it interactively instead.
1695
1696 =item OBJECT
1697
1698 List of object files, defaults to '$(BASEEXT)$(OBJ_EXT)', but can be a long
1699 string containing all object files, e.g. "tkpBind.o
1700 tkpButton.o tkpCanvas.o"
1701
1702 (Where BASEEXT is the last component of NAME, and OBJ_EXT is $Config{obj_ext}.)
1703
1704 =item OPTIMIZE
1705
1706 Defaults to C<-O>. Set it to C<-g> to turn debugging on. The flag is
1707 passed to subdirectory makes.
1708
1709 =item PERL
1710
1711 Perl binary for tasks that can be done by miniperl
1712
1713 =item PERL_CORE
1714
1715 Set only when MakeMaker is building the extensions of the Perl core
1716 distribution.
1717
1718 =item PERLMAINCC
1719
1720 The call to the program that is able to compile perlmain.c. Defaults
1721 to $(CC).
1722
1723 =item PERL_ARCHLIB
1724
1725 Same as for PERL_LIB, but for architecture dependent files.
1726
1727 Used only when MakeMaker is building the extensions of the Perl core
1728 distribution (because normally $(PERL_ARCHLIB) is automatically in @INC,
1729 and adding it would get in the way of PERL5LIB).
1730
1731 =item PERL_LIB
1732
1733 Directory containing the Perl library to use.
1734
1735 Used only when MakeMaker is building the extensions of the Perl core
1736 distribution (because normally $(PERL_LIB) is automatically in @INC,
1737 and adding it would get in the way of PERL5LIB).
1738
1739 =item PERL_MALLOC_OK
1740
1741 defaults to 0.  Should be set to TRUE if the extension can work with
1742 the memory allocation routines substituted by the Perl malloc() subsystem.
1743 This should be applicable to most extensions with exceptions of those
1744
1745 =over 4
1746
1747 =item *
1748
1749 with bugs in memory allocations which are caught by Perl's malloc();
1750
1751 =item *
1752
1753 which interact with the memory allocator in other ways than via
1754 malloc(), realloc(), free(), calloc(), sbrk() and brk();
1755
1756 =item *
1757
1758 which rely on special alignment which is not provided by Perl's malloc().
1759
1760 =back
1761
1762 B<NOTE.>  Negligence to set this flag in I<any one> of loaded extension
1763 nullifies many advantages of Perl's malloc(), such as better usage of
1764 system resources, error detection, memory usage reporting, catchable failure
1765 of memory allocations, etc.
1766
1767 =item PERLRUN
1768
1769 Use this instead of $(PERL) when you wish to run perl.  It will set up
1770 extra necessary flags for you.
1771
1772 =item PERLRUNINST
1773
1774 Use this instead of $(PERL) when you wish to run perl to work with
1775 modules.  It will add things like -I$(INST_ARCH) and other necessary
1776 flags so perl can see the modules you're about to install.
1777
1778 =item PERL_SRC
1779
1780 Directory containing the Perl source code (use of this should be
1781 avoided, it may be undefined)
1782
1783 =item PERM_RW
1784
1785 Desired permission for read/writable files. Defaults to C<644>.
1786 See also L<MM_Unix/perm_rw>.
1787
1788 =item PERM_RWX
1789
1790 Desired permission for executable files. Defaults to C<755>.
1791 See also L<MM_Unix/perm_rwx>.
1792
1793 =item PL_FILES
1794
1795 Ref to hash of files to be processed as perl programs. MakeMaker
1796 will default to any found *.PL file (except Makefile.PL) being keys
1797 and the basename of the file being the value. E.g.
1798
1799   {'foobar.PL' => 'foobar'}
1800
1801 The *.PL files are expected to produce output to the target files
1802 themselves. If multiple files can be generated from the same *.PL
1803 file then the value in the hash can be a reference to an array of
1804 target file names. E.g.
1805
1806   {'foobar.PL' => ['foobar1','foobar2']}
1807
1808 =item PM
1809
1810 Hashref of .pm files and *.pl files to be installed.  e.g.
1811
1812   {'name_of_file.pm' => '$(INST_LIBDIR)/install_as.pm'}
1813
1814 By default this will include *.pm and *.pl and the files found in
1815 the PMLIBDIRS directories.  Defining PM in the
1816 Makefile.PL will override PMLIBDIRS.
1817
1818 =item PMLIBDIRS
1819
1820 Ref to array of subdirectories containing library files.  Defaults to
1821 [ 'lib', $(BASEEXT) ]. The directories will be scanned and I<any> files
1822 they contain will be installed in the corresponding location in the
1823 library.  A libscan() method can be used to alter the behaviour.
1824 Defining PM in the Makefile.PL will override PMLIBDIRS.
1825
1826 (Where BASEEXT is the last component of NAME.)
1827
1828 =item PM_FILTER
1829
1830 A filter program, in the traditional Unix sense (input from stdin, output
1831 to stdout) that is passed on each .pm file during the build (in the
1832 pm_to_blib() phase).  It is empty by default, meaning no filtering is done.
1833
1834 Great care is necessary when defining the command if quoting needs to be
1835 done.  For instance, you would need to say:
1836
1837   {'PM_FILTER' => 'grep -v \\"^\\#\\"'}
1838
1839 to remove all the leading coments on the fly during the build.  The
1840 extra \\ are necessary, unfortunately, because this variable is interpolated
1841 within the context of a Perl program built on the command line, and double
1842 quotes are what is used with the -e switch to build that command line.  The
1843 # is escaped for the Makefile, since what is going to be generated will then
1844 be:
1845
1846   PM_FILTER = grep -v \"^\#\"
1847
1848 Without the \\ before the #, we'd have the start of a Makefile comment,
1849 and the macro would be incorrectly defined.
1850
1851 =item POLLUTE
1852
1853 Release 5.005 grandfathered old global symbol names by providing preprocessor
1854 macros for extension source compatibility.  As of release 5.6, these
1855 preprocessor definitions are not available by default.  The POLLUTE flag
1856 specifies that the old names should still be defined:
1857
1858   perl Makefile.PL POLLUTE=1
1859
1860 Please inform the module author if this is necessary to successfully install
1861 a module under 5.6 or later.
1862
1863 =item PPM_INSTALL_EXEC
1864
1865 Name of the executable used to run C<PPM_INSTALL_SCRIPT> below. (e.g. perl)
1866
1867 =item PPM_INSTALL_SCRIPT
1868
1869 Name of the script that gets executed by the Perl Package Manager after
1870 the installation of a package.
1871
1872 =item PREFIX
1873
1874 This overrides all the default install locations.  Man pages,
1875 libraries, scripts, etc...  MakeMaker will try to make an educated
1876 guess about where to place things under the new PREFIX based on your
1877 Config defaults.  Failing that, it will fall back to a structure
1878 which should be sensible for your platform.
1879
1880 If you specify LIB or any INSTALL* variables they will not be effected
1881 by the PREFIX.
1882
1883 Defaults to $Config{installprefixexp}.
1884
1885 =item PREREQ_FATAL
1886
1887 Bool. If this parameter is true, failing to have the required modules
1888 (or the right versions thereof) will be fatal. perl Makefile.PL will die
1889 with the proper message.
1890
1891 Note: see L<Test::Harness> for a shortcut for stopping tests early if
1892 you are missing dependencies.
1893
1894 Do I<not> use this parameter for simple requirements, which could be resolved
1895 at a later time, e.g. after an unsuccessful B<make test> of your module.
1896
1897 It is I<extremely> rare to have to use C<PREREQ_FATAL> at all!
1898
1899 =item PREREQ_PM
1900
1901 Hashref: Names of modules that need to be available to run this
1902 extension (e.g. Fcntl for SDBM_File) are the keys of the hash and the
1903 desired version is the value. If the required version number is 0, we
1904 only check if any version is installed already.
1905
1906 =item PREREQ_PRINT
1907
1908 Bool.  If this parameter is true, the prerequisites will be printed to
1909 stdout and MakeMaker will exit.  The output format is
1910
1911 $PREREQ_PM = {
1912                'A::B' => Vers1,
1913                'C::D' => Vers2,
1914                ...
1915              };
1916
1917 =item PRINT_PREREQ
1918
1919 RedHatism for C<PREREQ_PRINT>.  The output format is different, though:
1920
1921     perl(A::B)>=Vers1 perl(C::D)>=Vers2 ...
1922
1923 =item SITEPREFIX
1924
1925 Like PREFIX, but only for the site install locations.
1926
1927 Defaults to PREFIX (if set) or $Config{siteprefixexp}.  Perls prior to
1928 5.6.0 didn't have an explicit siteprefix in the Config.  In those
1929 cases $Config{installprefix} will be used.
1930
1931 =item SKIP
1932
1933 Arrayref. E.g. [qw(name1 name2)] skip (do not write) sections of the
1934 Makefile. Caution! Do not use the SKIP attribute for the negligible
1935 speedup. It may seriously damage the resulting Makefile. Only use it
1936 if you really need it.
1937
1938 =item TYPEMAPS
1939
1940 Ref to array of typemap file names.  Use this when the typemaps are
1941 in some directory other than the current directory or when they are
1942 not named B<typemap>.  The last typemap in the list takes
1943 precedence.  A typemap in the current directory has highest
1944 precedence, even if it isn't listed in TYPEMAPS.  The default system
1945 typemap has lowest precedence.
1946
1947 =item VENDORPREFIX
1948
1949 Like PREFIX, but only for the vendor install locations.
1950
1951 Defaults to PREFIX (if set) or $Config{vendorprefixexp}
1952
1953 =item VERBINST
1954
1955 If true, make install will be verbose
1956
1957 =item VERSION
1958
1959 Your version number for distributing the package.  This defaults to
1960 0.1.
1961
1962 =item VERSION_FROM
1963
1964 Instead of specifying the VERSION in the Makefile.PL you can let
1965 MakeMaker parse a file to determine the version number. The parsing
1966 routine requires that the file named by VERSION_FROM contains one
1967 single line to compute the version number. The first line in the file
1968 that contains the regular expression
1969
1970     /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/
1971
1972 will be evaluated with eval() and the value of the named variable
1973 B<after> the eval() will be assigned to the VERSION attribute of the
1974 MakeMaker object. The following lines will be parsed o.k.:
1975
1976     $VERSION = '1.00';
1977     *VERSION = \'1.01';
1978     ( $VERSION ) = '$Revision: 1.61 $ ' =~ /\$Revision:\s+([^\s]+)/;
1979     $FOO::VERSION = '1.10';
1980     *FOO::VERSION = \'1.11';
1981     our $VERSION = 1.2.3;       # new for perl5.6.0 
1982
1983 but these will fail:
1984
1985     my $VERSION = '1.01';
1986     local $VERSION = '1.02';
1987     local $FOO::VERSION = '1.30';
1988
1989 (Putting C<my> or C<local> on the preceding line will work o.k.)
1990
1991 The file named in VERSION_FROM is not added as a dependency to
1992 Makefile. This is not really correct, but it would be a major pain
1993 during development to have to rewrite the Makefile for any smallish
1994 change in that file. If you want to make sure that the Makefile
1995 contains the correct VERSION macro after any change of the file, you
1996 would have to do something like
1997
1998     depend => { Makefile => '$(VERSION_FROM)' }
1999
2000 See attribute C<depend> below.
2001
2002 =item XS
2003
2004 Hashref of .xs files. MakeMaker will default this.  e.g.
2005
2006   {'name_of_file.xs' => 'name_of_file.c'}
2007
2008 The .c files will automatically be included in the list of files
2009 deleted by a make clean.
2010
2011 =item XSOPT
2012
2013 String of options to pass to xsubpp.  This might include C<-C++> or
2014 C<-extern>.  Do not include typemaps here; the TYPEMAP parameter exists for
2015 that purpose.
2016
2017 =item XSPROTOARG
2018
2019 May be set to an empty string, which is identical to C<-prototypes>, or
2020 C<-noprototypes>. See the xsubpp documentation for details. MakeMaker
2021 defaults to the empty string.
2022
2023 =item XS_VERSION
2024
2025 Your version number for the .xs file of this package.  This defaults
2026 to the value of the VERSION attribute.
2027
2028 =back
2029
2030 =head2 Additional lowercase attributes
2031
2032 can be used to pass parameters to the methods which implement that
2033 part of the Makefile.
2034
2035 =over 2
2036
2037 =item clean
2038
2039   {FILES => "*.xyz foo"}
2040
2041 =item depend
2042
2043   {ANY_TARGET => ANY_DEPENDECY, ...}
2044
2045 (ANY_TARGET must not be given a double-colon rule by MakeMaker.)
2046
2047 =item dist
2048
2049   {TARFLAGS => 'cvfF', COMPRESS => 'gzip', SUFFIX => '.gz',
2050   SHAR => 'shar -m', DIST_CP => 'ln', ZIP => '/bin/zip',
2051   ZIPFLAGS => '-rl', DIST_DEFAULT => 'private tardist' }
2052
2053 If you specify COMPRESS, then SUFFIX should also be altered, as it is
2054 needed to tell make the target file of the compression. Setting
2055 DIST_CP to ln can be useful, if you need to preserve the timestamps on
2056 your files. DIST_CP can take the values 'cp', which copies the file,
2057 'ln', which links the file, and 'best' which copies symbolic links and
2058 links the rest. Default is 'best'.
2059
2060 =item dynamic_lib
2061
2062   {ARMAYBE => 'ar', OTHERLDFLAGS => '...', INST_DYNAMIC_DEP => '...'}
2063
2064 =item linkext
2065
2066   {LINKTYPE => 'static', 'dynamic' or ''}
2067
2068 NB: Extensions that have nothing but *.pm files had to say
2069
2070   {LINKTYPE => ''}
2071
2072 with Pre-5.0 MakeMakers. Since version 5.00 of MakeMaker such a line
2073 can be deleted safely. MakeMaker recognizes when there's nothing to
2074 be linked.
2075
2076 =item macro
2077
2078   {ANY_MACRO => ANY_VALUE, ...}
2079
2080 =item realclean
2081
2082   {FILES => '$(INST_ARCHAUTODIR)/*.xyz'}
2083
2084 =item test
2085
2086   {TESTS => 't/*.t'}
2087
2088 =item tool_autosplit
2089
2090   {MAXLEN => 8}
2091
2092 =back
2093
2094 =head2 Overriding MakeMaker Methods
2095
2096 If you cannot achieve the desired Makefile behaviour by specifying
2097 attributes you may define private subroutines in the Makefile.PL.
2098 Each subroutine returns the text it wishes to have written to
2099 the Makefile. To override a section of the Makefile you can
2100 either say:
2101
2102         sub MY::c_o { "new literal text" }
2103
2104 or you can edit the default by saying something like:
2105
2106         package MY; # so that "SUPER" works right
2107         sub c_o {
2108             my $inherited = shift->SUPER::c_o(@_);
2109             $inherited =~ s/old text/new text/;
2110             $inherited;
2111         }
2112
2113 If you are running experiments with embedding perl as a library into
2114 other applications, you might find MakeMaker is not sufficient. You'd
2115 better have a look at ExtUtils::Embed which is a collection of utilities
2116 for embedding.
2117
2118 If you still need a different solution, try to develop another
2119 subroutine that fits your needs and submit the diffs to
2120 F<makemaker@perl.org>
2121
2122 For a complete description of all MakeMaker methods see
2123 L<ExtUtils::MM_Unix>.
2124
2125 Here is a simple example of how to add a new target to the generated
2126 Makefile:
2127
2128     sub MY::postamble {
2129         return <<'MAKE_FRAG';
2130     $(MYEXTLIB): sdbm/Makefile
2131             cd sdbm && $(MAKE) all
2132
2133     MAKE_FRAG
2134     }
2135
2136
2137 =head2 Hintsfile support
2138
2139 MakeMaker.pm uses the architecture specific information from
2140 Config.pm. In addition it evaluates architecture specific hints files
2141 in a C<hints/> directory. The hints files are expected to be named
2142 like their counterparts in C<PERL_SRC/hints>, but with an C<.pl> file
2143 name extension (eg. C<next_3_2.pl>). They are simply C<eval>ed by
2144 MakeMaker within the WriteMakefile() subroutine, and can be used to
2145 execute commands as well as to include special variables. The rules
2146 which hintsfile is chosen are the same as in Configure.
2147
2148 The hintsfile is eval()ed immediately after the arguments given to
2149 WriteMakefile are stuffed into a hash reference $self but before this
2150 reference becomes blessed. So if you want to do the equivalent to
2151 override or create an attribute you would say something like
2152
2153     $self->{LIBS} = ['-ldbm -lucb -lc'];
2154
2155 =head2 Distribution Support
2156
2157 For authors of extensions MakeMaker provides several Makefile
2158 targets. Most of the support comes from the ExtUtils::Manifest module,
2159 where additional documentation can be found.
2160
2161 =over 4
2162
2163 =item    make distcheck
2164
2165 reports which files are below the build directory but not in the
2166 MANIFEST file and vice versa. (See ExtUtils::Manifest::fullcheck() for
2167 details)
2168
2169 =item    make skipcheck
2170
2171 reports which files are skipped due to the entries in the
2172 C<MANIFEST.SKIP> file (See ExtUtils::Manifest::skipcheck() for
2173 details)
2174
2175 =item    make distclean
2176
2177 does a realclean first and then the distcheck. Note that this is not
2178 needed to build a new distribution as long as you are sure that the
2179 MANIFEST file is ok.
2180
2181 =item    make manifest
2182
2183 rewrites the MANIFEST file, adding all remaining files found (See
2184 ExtUtils::Manifest::mkmanifest() for details)
2185
2186 =item    make distdir
2187
2188 Copies all the files that are in the MANIFEST file to a newly created
2189 directory with the name C<$(DISTNAME)-$(VERSION)>. If that directory
2190 exists, it will be removed first.
2191
2192 =item   make disttest
2193
2194 Makes a distdir first, and runs a C<perl Makefile.PL>, a make, and
2195 a make test in that directory.
2196
2197 =item    make tardist
2198
2199 First does a distdir. Then a command $(PREOP) which defaults to a null
2200 command, followed by $(TOUNIX), which defaults to a null command under
2201 UNIX, and will convert files in distribution directory to UNIX format
2202 otherwise. Next it runs C<tar> on that directory into a tarfile and
2203 deletes the directory. Finishes with a command $(POSTOP) which
2204 defaults to a null command.
2205
2206 =item    make dist
2207
2208 Defaults to $(DIST_DEFAULT) which in turn defaults to tardist.
2209
2210 =item    make uutardist
2211
2212 Runs a tardist first and uuencodes the tarfile.
2213
2214 =item    make shdist
2215
2216 First does a distdir. Then a command $(PREOP) which defaults to a null
2217 command. Next it runs C<shar> on that directory into a sharfile and
2218 deletes the intermediate directory again. Finishes with a command
2219 $(POSTOP) which defaults to a null command.  Note: For shdist to work
2220 properly a C<shar> program that can handle directories is mandatory.
2221
2222 =item    make zipdist
2223
2224 First does a distdir. Then a command $(PREOP) which defaults to a null
2225 command. Runs C<$(ZIP) $(ZIPFLAGS)> on that directory into a
2226 zipfile. Then deletes that directory. Finishes with a command
2227 $(POSTOP) which defaults to a null command.
2228
2229 =item    make ci
2230
2231 Does a $(CI) and a $(RCS_LABEL) on all files in the MANIFEST file.
2232
2233 =back
2234
2235 Customization of the dist targets can be done by specifying a hash
2236 reference to the dist attribute of the WriteMakefile call. The
2237 following parameters are recognized:
2238
2239     CI           ('ci -u')
2240     COMPRESS     ('gzip --best')
2241     POSTOP       ('@ :')
2242     PREOP        ('@ :')
2243     TO_UNIX      (depends on the system)
2244     RCS_LABEL    ('rcs -q -Nv$(VERSION_SYM):')
2245     SHAR         ('shar')
2246     SUFFIX       ('.gz')
2247     TAR          ('tar')
2248     TARFLAGS     ('cvf')
2249     ZIP          ('zip')
2250     ZIPFLAGS     ('-r')
2251
2252 An example:
2253
2254     WriteMakefile( 'dist' => { COMPRESS=>"bzip2", SUFFIX=>".bz2" })
2255
2256 =head2 Disabling an extension
2257
2258 If some events detected in F<Makefile.PL> imply that there is no way
2259 to create the Module, but this is a normal state of things, then you
2260 can create a F<Makefile> which does nothing, but succeeds on all the
2261 "usual" build targets.  To do so, use
2262
2263    ExtUtils::MakeMaker::WriteEmptyMakefile();
2264
2265 instead of WriteMakefile().
2266
2267 This may be useful if other modules expect this module to be I<built>
2268 OK, as opposed to I<work> OK (say, this system-dependent module builds
2269 in a subdirectory of some other distribution, or is listed as a
2270 dependency in a CPAN::Bundle, but the functionality is supported by
2271 different means on the current architecture).
2272
2273 =head1 ENVIRONMENT
2274
2275 =over 8
2276
2277 =item PERL_MM_OPT
2278
2279 Command line options used by C<MakeMaker-E<gt>new()>, and thus by
2280 C<WriteMakefile()>.  The string is split on whitespace, and the result
2281 is processed before any actual command line arguments are processed.
2282
2283 =item PERL_MM_USE_DEFAULT
2284
2285 If set to a true value then MakeMaker's prompt function will
2286 always return the default without waiting for user input.
2287
2288 =back
2289
2290 =head1 SEE ALSO
2291
2292 ExtUtils::MM_Unix, ExtUtils::Manifest ExtUtils::Install,
2293 ExtUtils::Embed
2294
2295 =head1 AUTHORS
2296
2297 Andy Dougherty <F<doughera@lafayette.edu>>, Andreas KE<ouml>nig
2298 <F<andreas.koenig@mind.de>>, Tim Bunce <F<timb@cpan.org>>.  VMS
2299 support by Charles Bailey <F<bailey@newman.upenn.edu>>.  OS/2 support
2300 by Ilya Zakharevich <F<ilya@math.ohio-state.edu>>.
2301
2302 Currently maintained by Michael G Schwern <F<schwern@pobox.com>>
2303
2304 Send patches and ideas to <F<makemaker@perl.org>>.
2305
2306 Send bug reports via http://rt.cpan.org/.  Please send your
2307 generated Makefile along with your report.
2308
2309 For more up-to-date information, see http://www.makemaker.org.
2310
2311 =cut