projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
2a267bf
)
Do the $XS_VERSION trick to make XSLoader happy with a dev version
Dave Rolsky [Mon, 4 Jan 2010 18:05:25 +0000 (12:05 -0600)]
lib/Moose/Exporter.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Moose/Exporter.pm
b/lib/Moose/Exporter.pm
index
c20c74f
..
3bdc804
100644
(file)
--- a/
lib/Moose/Exporter.pm
+++ b/
lib/Moose/Exporter.pm
@@
-4,6
+4,7
@@
use strict;
use warnings;
our $VERSION = '0.93_01';
+our $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
our $AUTHORITY = 'cpan:STEVAN';
@@
-15,7
+16,7
@@
use Sub::Name qw(subname);
use XSLoader;
-XSLoader::load( 'Moose', $VERSION );
+XSLoader::load( 'Moose', $XS_VERSION );
my %EXPORT_SPEC;