/usr/lib/perl5/version/vxs.pm is in libversion-perl 1:0.9500-1ubuntu1.
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 | #!perl -w
package version::vxs;
use 5.005_03;
use strict;
use vars qw(@ISA $VERSION $CLASS );
$VERSION = 0.95;
$CLASS = 'version::vxs';
eval {
require XSLoader;
local $^W; # shut up the 'redefined' warning for UNIVERSAL::VERSION
XSLoader::load('version::vxs', $VERSION);
1;
} or do {
require DynaLoader;
push @ISA, 'DynaLoader';
local $^W; # shut up the 'redefined' warning for UNIVERSAL::VERSION
bootstrap version::vxs $VERSION;
};
# Preloaded methods go here.
1;
|