Convert I18N::Langinfo to XSLoader from DynaLoader.
authorNicholas Clark <nick@ccl4.org>
Tue, 19 Oct 2010 15:46:16 +0000 (17:46 +0200)
committerNicholas Clark <nick@ccl4.org>
Tue, 19 Oct 2010 15:54:28 +0000 (17:54 +0200)
ext/I18N-Langinfo/Langinfo.pm

index 32d724a..51d0d4d 100644 (file)
@@ -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__