/usr/local/CPAN/Math-Int64/Makefile.PL
use 5.008;
use ExtUtils::MakeMaker;
use Config;
my $backend;
if (defined $ENV{MATH_INT64_BACKEND}) {
$backend = $ENV{MATH_INT64_BACKEND}
}
elsif ($Config::Config{ivsize} >= 8) {
$backend = 'IV';
}
elsif ($Config::Config{doublesize} >= 8) {
$backend = 'NV';
}
else {
# $backend = 'STRING';
die "unable to find a suitable backend for your platform";
}
print "Using $backend backend\n";
unless ($Config{i64type} and
$Config{i64size} == 8 and
($Config{d_int64_t} or $^O =~ /MSWin32/i)) {
die "Your C compiler does not have enough support for int64 values\n";
}
my @define = ("INT64_BACKEND_" . $backend);
my $define = join (' ', map { "-D$_" } @define);
WriteMakefile( NAME => 'Math::Int64',
VERSION_FROM => 'lib/Math/Int64.pm',
PREREQ_PM => {},
ABSTRACT_FROM => 'lib/Math/Int64.pm', # retrieve abstract from module
AUTHOR => 'Salvador Fandino <sfandino@yahoo.com>',
LIBS => [''], # e.g., '-lm'
DEFINE => $define,
INC => '-I.', # e.g., '-I. -I/usr/include/other'
);