summaryrefslogtreecommitdiff
path: root/vutil/lib/version/vxs.pm
blob: c3303c46c5c78a0d771deb7a2cef9d6aadd3c967 (plain)
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
#!perl -w
package version::vxs;

use v5.10;
use strict;

use vars qw(@ISA $VERSION $CLASS );
$VERSION = 0.9920;
$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;