summaryrefslogtreecommitdiff
path: root/ext/I18N-Langinfo
diff options
context:
space:
mode:
Diffstat (limited to 'ext/I18N-Langinfo')
-rw-r--r--ext/I18N-Langinfo/Langinfo.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/I18N-Langinfo/Langinfo.pm b/ext/I18N-Langinfo/Langinfo.pm
index 32d724a241..51d0d4d5b6 100644
--- a/ext/I18N-Langinfo/Langinfo.pm
+++ b/ext/I18N-Langinfo/Langinfo.pm
@@ -6,9 +6,9 @@ use warnings;
use Carp;
require Exporter;
-require DynaLoader;
+require XSLoader;
-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.05';
+our $VERSION = '0.06';
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__