| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#line 1 |
|
2
|
|
|
|
|
|
|
package Module::Install::Makefile; |
|
3
|
1
|
|
|
1
|
|
11
|
|
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
347
|
|
|
4
|
1
|
|
|
1
|
|
12
|
use strict 'vars'; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
123
|
|
|
5
|
1
|
|
|
1
|
|
2446
|
use Module::Install::Base; |
|
|
1
|
|
|
|
|
152674
|
|
|
|
1
|
|
|
|
|
36
|
|
|
6
|
|
|
|
|
|
|
use ExtUtils::MakeMaker (); |
|
7
|
1
|
|
|
1
|
|
9
|
|
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
93
|
|
|
8
|
|
|
|
|
|
|
use vars qw{$VERSION $ISCORE @ISA}; |
|
9
|
1
|
|
|
1
|
|
2
|
BEGIN { |
|
10
|
1
|
|
|
|
|
2
|
$VERSION = '0.64'; |
|
11
|
1
|
|
|
|
|
2967
|
$ISCORE = 1; |
|
12
|
|
|
|
|
|
|
@ISA = qw{Module::Install::Base}; |
|
13
|
|
|
|
|
|
|
} |
|
14
|
0
|
|
|
0
|
0
|
|
|
|
15
|
|
|
|
|
|
|
sub Makefile { $_[0] } |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
my %seen = (); |
|
18
|
|
|
|
|
|
|
|
|
19
|
0
|
|
|
0
|
0
|
|
sub prompt { |
|
20
|
|
|
|
|
|
|
shift; |
|
21
|
|
|
|
|
|
|
|
|
22
|
0
|
|
|
|
|
|
# Infinite loop protection |
|
23
|
0
|
0
|
|
|
|
|
my @c = caller(); |
|
24
|
0
|
|
|
|
|
|
if ( ++$seen{"$c[1]|$c[2]|$_[0]"} > 3 ) { |
|
25
|
|
|
|
|
|
|
die "Caught an potential prompt infinite loop ($c[1]|$c[2]|$_[0])"; |
|
26
|
|
|
|
|
|
|
} |
|
27
|
|
|
|
|
|
|
|
|
28
|
0
|
0
|
0
|
|
|
|
# In automated testing, always use defaults |
|
29
|
0
|
|
|
|
|
|
if ( $ENV{AUTOMATED_TESTING} and ! $ENV{PERL_MM_USE_DEFAULT} ) { |
|
30
|
0
|
|
|
|
|
|
local $ENV{PERL_MM_USE_DEFAULT} = 1; |
|
31
|
|
|
|
|
|
|
goto &ExtUtils::MakeMaker::prompt; |
|
32
|
0
|
|
|
|
|
|
} else { |
|
33
|
|
|
|
|
|
|
goto &ExtUtils::MakeMaker::prompt; |
|
34
|
|
|
|
|
|
|
} |
|
35
|
|
|
|
|
|
|
} |
|
36
|
|
|
|
|
|
|
|
|
37
|
0
|
|
|
0
|
0
|
|
sub makemaker_args { |
|
38
|
0
|
|
0
|
|
|
|
my $self = shift; |
|
39
|
0
|
0
|
|
|
|
|
my $args = ($self->{makemaker_args} ||= {}); |
|
40
|
0
|
|
|
|
|
|
%$args = ( %$args, @_ ) if @_; |
|
41
|
|
|
|
|
|
|
$args; |
|
42
|
|
|
|
|
|
|
} |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
# For mm args that take multiple space-seperated args, |
|
45
|
|
|
|
|
|
|
# append an argument to the current list. |
|
46
|
0
|
|
|
0
|
0
|
|
sub makemaker_append { |
|
47
|
0
|
|
|
|
|
|
my $self = shift; |
|
48
|
0
|
|
|
|
|
|
my $name = shift; |
|
49
|
0
|
0
|
|
|
|
|
my $args = $self->makemaker_args; |
|
50
|
|
|
|
|
|
|
$args->{name} = defined $args->{$name} |
|
51
|
|
|
|
|
|
|
? join( ' ', $args->{name}, @_ ) |
|
52
|
|
|
|
|
|
|
: join( ' ', @_ ); |
|
53
|
|
|
|
|
|
|
} |
|
54
|
|
|
|
|
|
|
|
|
55
|
0
|
|
|
0
|
0
|
|
sub build_subdirs { |
|
56
|
0
|
|
0
|
|
|
|
my $self = shift; |
|
57
|
0
|
|
|
|
|
|
my $subdirs = $self->makemaker_args->{DIR} ||= []; |
|
58
|
0
|
|
|
|
|
|
for my $subdir (@_) { |
|
59
|
|
|
|
|
|
|
push @$subdirs, $subdir; |
|
60
|
|
|
|
|
|
|
} |
|
61
|
|
|
|
|
|
|
} |
|
62
|
|
|
|
|
|
|
|
|
63
|
0
|
|
|
0
|
0
|
|
sub clean_files { |
|
64
|
0
|
|
0
|
|
|
|
my $self = shift; |
|
65
|
0
|
|
|
|
|
|
my $clean = $self->makemaker_args->{clean} ||= {}; |
|
66
|
|
|
|
|
|
|
%$clean = ( |
|
67
|
|
|
|
|
|
|
%$clean, |
|
68
|
|
|
|
|
|
|
FILES => join(' ', grep length, $clean->{FILES}, @_), |
|
69
|
|
|
|
|
|
|
); |
|
70
|
|
|
|
|
|
|
} |
|
71
|
|
|
|
|
|
|
|
|
72
|
0
|
|
|
0
|
0
|
|
sub realclean_files { |
|
73
|
0
|
|
0
|
|
|
|
my $self = shift; |
|
74
|
0
|
|
|
|
|
|
my $realclean = $self->makemaker_args->{realclean} ||= {}; |
|
75
|
|
|
|
|
|
|
%$realclean = ( |
|
76
|
|
|
|
|
|
|
%$realclean, |
|
77
|
|
|
|
|
|
|
FILES => join(' ', grep length, $realclean->{FILES}, @_), |
|
78
|
|
|
|
|
|
|
); |
|
79
|
|
|
|
|
|
|
} |
|
80
|
|
|
|
|
|
|
|
|
81
|
0
|
|
|
0
|
0
|
|
sub libs { |
|
82
|
0
|
0
|
|
|
|
|
my $self = shift; |
|
83
|
0
|
|
|
|
|
|
my $libs = ref $_[0] ? shift : [ shift ]; |
|
84
|
|
|
|
|
|
|
$self->makemaker_args( LIBS => $libs ); |
|
85
|
|
|
|
|
|
|
} |
|
86
|
|
|
|
|
|
|
|
|
87
|
0
|
|
|
0
|
0
|
|
sub inc { |
|
88
|
0
|
|
|
|
|
|
my $self = shift; |
|
89
|
|
|
|
|
|
|
$self->makemaker_args( INC => shift ); |
|
90
|
|
|
|
|
|
|
} |
|
91
|
|
|
|
|
|
|
|
|
92
|
0
|
|
|
0
|
0
|
|
sub write { |
|
93
|
0
|
0
|
|
|
|
|
my $self = shift; |
|
94
|
|
|
|
|
|
|
die "&Makefile->write() takes no arguments\n" if @_; |
|
95
|
0
|
|
|
|
|
|
|
|
96
|
0
|
|
|
|
|
|
my $args = $self->makemaker_args; |
|
97
|
0
|
|
0
|
|
|
|
$args->{DISTNAME} = $self->name; |
|
98
|
0
|
|
0
|
|
|
|
$args->{NAME} = $self->module_name || $self->name || $self->determine_NAME($args); |
|
99
|
0
|
|
|
|
|
|
$args->{VERSION} = $self->version || $self->determine_VERSION($args); |
|
100
|
0
|
0
|
|
|
|
|
$args->{NAME} =~ s/-/::/g; |
|
101
|
0
|
|
|
|
|
|
if ( $self->tests ) { |
|
102
|
|
|
|
|
|
|
$args->{test} = { TESTS => $self->tests }; |
|
103
|
0
|
0
|
|
|
|
|
} |
|
104
|
0
|
|
|
|
|
|
if ($] >= 5.005) { |
|
105
|
0
|
|
|
|
|
|
$args->{ABSTRACT} = $self->abstract; |
|
106
|
|
|
|
|
|
|
$args->{AUTHOR} = $self->author; |
|
107
|
0
|
0
|
|
|
|
|
} |
|
108
|
0
|
|
|
|
|
|
if ( eval($ExtUtils::MakeMaker::VERSION) >= 6.10 ) { |
|
109
|
|
|
|
|
|
|
$args->{NO_META} = 1; |
|
110
|
0
|
0
|
0
|
|
|
|
} |
|
111
|
0
|
|
|
|
|
|
if ( eval($ExtUtils::MakeMaker::VERSION) > 6.17 and $self->sign ) { |
|
112
|
|
|
|
|
|
|
$args->{SIGN} = 1; |
|
113
|
0
|
0
|
|
|
|
|
} |
|
114
|
0
|
|
|
|
|
|
unless ( $self->is_admin ) { |
|
115
|
|
|
|
|
|
|
delete $args->{SIGN}; |
|
116
|
|
|
|
|
|
|
} |
|
117
|
|
|
|
|
|
|
|
|
118
|
0
|
|
0
|
|
|
|
# merge both kinds of requires into prereq_pm |
|
119
|
0
|
|
|
|
|
|
my $prereq = ($args->{PREREQ_PM} ||= {}); |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
%$prereq = ( %$prereq, map { @$_ } map { @$_ } grep $_, |
|
121
|
|
|
|
|
|
|
($self->build_requires, $self->requires) ); |
|
122
|
|
|
|
|
|
|
|
|
123
|
0
|
|
0
|
|
|
|
# merge both kinds of requires into prereq_pm |
|
124
|
0
|
0
|
|
|
|
|
my $subdirs = ($args->{DIR} ||= []); |
|
125
|
0
|
|
|
|
|
|
if ($self->bundles) { |
|
|
0
|
|
|
|
|
|
|
|
126
|
0
|
|
|
|
|
|
foreach my $bundle (@{ $self->bundles }) { |
|
127
|
0
|
0
|
|
|
|
|
my ($file, $dir) = @$bundle; |
|
128
|
0
|
|
|
|
|
|
push @$subdirs, $dir if -d $dir; |
|
129
|
|
|
|
|
|
|
delete $prereq->{$file}; |
|
130
|
|
|
|
|
|
|
} |
|
131
|
|
|
|
|
|
|
} |
|
132
|
0
|
0
|
|
|
|
|
|
|
133
|
0
|
0
|
|
|
|
|
if ( my $perl_version = $self->perl_version ) { |
|
134
|
|
|
|
|
|
|
eval "use $perl_version; 1" |
|
135
|
|
|
|
|
|
|
or die "ERROR: perl: Version $] is installed, " |
|
136
|
|
|
|
|
|
|
. "but we need version >= $perl_version"; |
|
137
|
|
|
|
|
|
|
} |
|
138
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
139
|
0
|
0
|
|
|
|
|
my %args = map { ( $_ => $args->{$_} ) } grep {defined($args->{$_})} keys %$args; |
|
140
|
0
|
|
|
|
|
|
if ($self->admin->preop) { |
|
141
|
|
|
|
|
|
|
$args{dist} = $self->admin->preop; |
|
142
|
|
|
|
|
|
|
} |
|
143
|
0
|
|
|
|
|
|
|
|
144
|
0
|
|
0
|
|
|
|
my $mm = ExtUtils::MakeMaker::WriteMakefile(%args); |
|
145
|
|
|
|
|
|
|
$self->fix_up_makefile($mm->{FIRST_MAKEFILE} || 'Makefile'); |
|
146
|
|
|
|
|
|
|
} |
|
147
|
|
|
|
|
|
|
|
|
148
|
0
|
|
|
0
|
0
|
|
sub fix_up_makefile { |
|
149
|
0
|
|
|
|
|
|
my $self = shift; |
|
150
|
0
|
|
0
|
|
|
|
my $makefile_name = shift; |
|
151
|
0
|
|
0
|
|
|
|
my $top_class = ref($self->_top) || ''; |
|
152
|
|
|
|
|
|
|
my $top_version = $self->_top->VERSION || ''; |
|
153
|
0
|
0
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
my $preamble = $self->preamble |
|
155
|
|
|
|
|
|
|
? "# Preamble by $top_class $top_version\n" |
|
156
|
|
|
|
|
|
|
. $self->preamble |
|
157
|
0
|
|
0
|
|
|
|
: ''; |
|
158
|
|
|
|
|
|
|
my $postamble = "# Postamble by $top_class $top_version\n" |
|
159
|
|
|
|
|
|
|
. ($self->postamble || ''); |
|
160
|
0
|
|
|
|
|
|
|
|
161
|
0
|
0
|
|
|
|
|
local *MAKEFILE; |
|
162
|
0
|
|
|
|
|
|
open MAKEFILE, "< $makefile_name" or die "fix_up_makefile: Couldn't open $makefile_name: $!"; |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
163
|
0
|
0
|
|
|
|
|
my $makefile = do { local $/; <MAKEFILE> }; |
|
164
|
|
|
|
|
|
|
close MAKEFILE or die $!; |
|
165
|
0
|
|
|
|
|
|
|
|
166
|
0
|
|
|
|
|
|
$makefile =~ s/\b(test_harness\(\$\(TEST_VERBOSE\), )/$1'inc', /; |
|
167
|
0
|
|
|
|
|
|
$makefile =~ s/( -I\$\(INST_ARCHLIB\))/ -Iinc$1/g; |
|
168
|
0
|
|
|
|
|
|
$makefile =~ s/( "-I\$\(INST_LIB\)")/ "-Iinc"$1/g; |
|
169
|
0
|
|
|
|
|
|
$makefile =~ s/^(FULLPERL = .*)/$1 "-Iinc"/m; |
|
170
|
|
|
|
|
|
|
$makefile =~ s/^(PERL = .*)/$1 "-Iinc"/m; |
|
171
|
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
# Module::Install will never be used to build the Core Perl |
|
173
|
|
|
|
|
|
|
# Sometimes PERL_LIB and PERL_ARCHLIB get written anyway, which breaks |
|
174
|
0
|
|
|
|
|
|
# PREFIX/PERL5LIB, and thus, install_share. Blank them if they exist |
|
175
|
|
|
|
|
|
|
$makefile =~ s/^PERL_LIB = .+/PERL_LIB =/m; |
|
176
|
|
|
|
|
|
|
#$makefile =~ s/^PERL_ARCHLIB = .+/PERL_ARCHLIB =/m; |
|
177
|
|
|
|
|
|
|
|
|
178
|
0
|
|
|
|
|
|
# Perl 5.005 mentions PERL_LIB explicitly, so we have to remove that as well. |
|
179
|
|
|
|
|
|
|
$makefile =~ s/("?)-I\$\(PERL_LIB\)\1//g; |
|
180
|
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
# XXX - This is currently unused; not sure if it breaks other MM-users |
|
182
|
|
|
|
|
|
|
# $makefile =~ s/^pm_to_blib\s+:\s+/pm_to_blib :: /mg; |
|
183
|
0
|
0
|
|
|
|
|
|
|
184
|
0
|
0
|
|
|
|
|
open MAKEFILE, "> $makefile_name" or die "fix_up_makefile: Couldn't open $makefile_name: $!"; |
|
185
|
0
|
0
|
|
|
|
|
print MAKEFILE "$preamble$makefile$postamble" or die $!; |
|
186
|
|
|
|
|
|
|
close MAKEFILE or die $!; |
|
187
|
0
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
1; |
|
189
|
|
|
|
|
|
|
} |
|
190
|
|
|
|
|
|
|
|
|
191
|
0
|
|
|
0
|
0
|
|
sub preamble { |
|
192
|
0
|
0
|
|
|
|
|
my ($self, $text) = @_; |
|
193
|
0
|
|
|
|
|
|
$self->{preamble} = $text . $self->{preamble} if defined $text; |
|
194
|
|
|
|
|
|
|
$self->{preamble}; |
|
195
|
|
|
|
|
|
|
} |
|
196
|
|
|
|
|
|
|
|
|
197
|
0
|
|
|
0
|
0
|
|
sub postamble { |
|
198
|
0
|
|
0
|
|
|
|
my ($self, $text) = @_; |
|
199
|
0
|
0
|
|
|
|
|
$self->{postamble} ||= $self->admin->postamble; |
|
200
|
0
|
|
|
|
|
|
$self->{postamble} .= $text if defined $text; |
|
201
|
|
|
|
|
|
|
$self->{postamble} |
|
202
|
|
|
|
|
|
|
} |
|
203
|
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
1; |
|
205
|
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
__END__ |
|
207
|
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
#line 334 |