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