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