-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.PL
176 lines (146 loc) · 4.22 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# This Makefile.PL for Math-Int64 was generated by
# inc::MyMakeMaker <self>
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.33.
# Don't edit it but the dist.ini and plugins used to construct it.
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Manipulate 64 bits integers in Perl",
"AUTHOR" => "Salvador Fandino <sfandino\@yahoo.com>, Dave Rolsky <autarch\@urth.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Math-Int64",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Math::Int64",
"PREREQ_PM" => {
"Exporter" => 0,
"XSLoader" => 0,
"constant" => 0,
"overload" => 0,
"strict" => 0,
"warnings" => 0,
"warnings::register" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Storable" => 0,
"Test::More" => "0.96",
"blib" => "1.01"
},
"VERSION_FROM" => "lib/Math/Int64.pm",
"test" => {
"TESTS" => "t/*.t"
}
);
$WriteMakefileArgs{DEFINE} = join ' ',
grep defined, _backend_define(),
_int64_define(),
_has_stdint_h_define();
my %FallbackPrereqs = (
"Exporter" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Storable" => 0,
"Test::More" => "0.96",
"XSLoader" => 0,
"blib" => "1.01",
"constant" => 0,
"overload" => 0,
"strict" => 0,
"warnings" => 0,
"warnings::register" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
_check_for_capi_maker();
WriteMakefile(%WriteMakefileArgs);
use lib 'inc';
use Config::AutoConf;
sub _check_for_capi_maker {
return unless -d '.git';
unless ( eval { require Module::CAPIMaker; 1; } ) {
warn <<'EOF';
It looks like you're trying to build Math::Int64 from the git repo. You'll
need to install Module::CAPIMaker from CPAN in order to do this.
EOF
exit 1;
}
}
my $autoconf;
sub autoconf {
unless (defined $autoconf) {
$autoconf = Config::AutoConf->new;
unless ($autoconf->check_default_headers()) {
warn 'Config::AutoConf check for default headers failed!';
exit 1;
}
}
$autoconf;
}
sub _int64_define {
return '-DUSE_INT64_T' if autoconf->check_type('int64_t');
return '-DUSE___INT64' if autoconf->check_type('__int64');
return '-DUSE_INT64_DI'
if autoconf->check_type('int __attribute__ ((__mode__ (DI)))');
warn <<'EOF';
It looks like your compiler doesn't support a 64-bit integer type (one of
"int64_t" or "__int64"). One of these types is necessary to compile the
Math::Int64 module.
EOF
exit 1;
}
sub _has_stdint_h_define {
return '-DHAS_STDINT_H' if autoconf->check_header('stdint.h');
undef
}
sub _backend_define {
my $backend
= defined $ENV{MATH_INT64_BACKEND} ? $ENV{MATH_INT64_BACKEND}
: $Config::Config{ivsize} >= 8 ? 'IV'
: $Config::Config{doublesize} >= 8 ? 'NV'
: die <<'EOF';
Unable to find a suitable representation for int64 on your system.
Your Perl must have ivsize >= 8 or doublesize >= 8.
EOF
print "Using $backend backend\n";
return '-DINT64_BACKEND_' . $backend;
}
package MY;
sub postamble {
my $self = shift;
my $author = $self->{AUTHOR};
$author = join( ', ', @$author ) if ref $author;
if ($^O =~ /MSWin/) {
$author = qq{"$author"};
}
else {
$author =~ s/'/'\''/g;
$author = qq{'$author'};
}
return <<"MAKE_FRAG";
c_api.h: c_api.decl
perl -MModule::CAPIMaker -emake_c_api module_name=\$(NAME) module_version=\$(VERSION) author=$author
MAKE_FRAG
}
sub init_dirscan {
my $self = shift;
$self->SUPER::init_dirscan(@_);
push @{ $self->{H} }, 'c_api.h'
unless grep { $_ eq 'c_api.h' } @{ $self->{H} };
return;
}