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