Initial Commit
This commit is contained in:
25
database/perl/lib/version/vxs.pm
Normal file
25
database/perl/lib/version/vxs.pm
Normal file
@@ -0,0 +1,25 @@
|
||||
#!perl -w
|
||||
package version::vxs;
|
||||
|
||||
use v5.10;
|
||||
use strict;
|
||||
|
||||
our $VERSION = 0.9928;
|
||||
our $CLASS = 'version::vxs';
|
||||
our @ISA;
|
||||
|
||||
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;
|
||||
Reference in New Issue
Block a user