/usr/share/perl5/Devel/AssertC99.pm is in libdevel-checkcompiler-perl 0.05-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Devel::AssertC99;
use strict;
use warnings;
use utf8;
use Devel::CheckCompiler qw/check_c99_or_exit/;
sub import { check_c99_or_exit() }
1;
__END__
=head1 NAME
Devel::AssertC99 - C99 is available
=head1 SYNOPSIS
use Module::Build;
use Devel::AssertC99; # <== check at here
my $builder = Module::Build->new(
configure_requires => {
'Devel::AssertC99',
},
...
);
$builder->create_build_script;
=head1 DESCRIPTION
This module checks C99 compiler's availability. If it's not available, exit with code 0.
It makes CPAN testers status as N/A.
|