projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4bac82
)
Convert I18N::Langinfo to XSLoader from DynaLoader.
author
Nicholas Clark
<nick@ccl4.org>
Tue, 19 Oct 2010 15:46:16 +0000
(17:46 +0200)
committer
Nicholas Clark
<nick@ccl4.org>
Tue, 19 Oct 2010 15:54:28 +0000
(17:54 +0200)
ext/I18N-Langinfo/Langinfo.pm
patch
|
blob
|
history
diff --git
a/ext/I18N-Langinfo/Langinfo.pm
b/ext/I18N-Langinfo/Langinfo.pm
index
32d724a
..
51d0d4d
100644
(file)
--- a/
ext/I18N-Langinfo/Langinfo.pm
+++ b/
ext/I18N-Langinfo/Langinfo.pm
@@
-6,9
+6,9
@@
use warnings;
use Carp;
require Exporter;
-require
Dyna
Loader;
+require
XS
Loader;
-our @ISA = qw(Exporter
DynaLoader
);
+our @ISA = qw(Exporter);
our @EXPORT = qw(langinfo);
@@
-72,7
+72,7
@@
our @EXPORT_OK = qw(
YESSTR
);
-our $VERSION = '0.0
5
';
+our $VERSION = '0.0
6
';
sub AUTOLOAD {
# This AUTOLOAD is used to 'autoload' constants from the constant()
@@
-97,7
+97,7
@@
sub AUTOLOAD {
goto &$AUTOLOAD;
}
-
bootstrap I18N::Langinfo $VERSION
;
+
XSLoader::load()
;
1;
__END__