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