/usr/share/perl5/perl5i/1/autobox.pm is in libperl5i-perl 2.12.0-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 | package perl5i::1::autobox;
use strict;
use warnings;
# Load these after we're fully compiled because they
# use us internally.
require perl5i::1::SCALAR;
require perl5i::1::ARRAY;
require perl5i::1::HASH;
require perl5i::1::UNIVERSAL;
require perl5i::1::CODE;
# List::Util needs to be before Core to get the C version of sum
use parent 'autobox::List::Util';
use parent 'autobox::Core';
use parent 'autobox::dump';
sub import {
my $class = shift;
$class->autobox::import();
$class->autobox::import(
UNIVERSAL => 'perl5i::1::UNIVERSAL',
DEFAULT => 'perl5i::1::'
);
autobox::List::Util::import($class);
autobox::Core::import($class);
autobox::dump::import($class);
}
1;
|