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