diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-10-16 13:10:02 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-10-16 13:10:02 +0000 |
commit | 9c6b46e2ec49ec38e1f74cac342d7860abe20c23 (patch) | |
tree | 73a340cc9f33333c2e5ca6c299d04e9166d95e88 /ext/DynaLoader | |
parent | fb59f973f6f88348284bb8f14a993e802c8f35d7 (diff) | |
download | perl-9c6b46e2ec49ec38e1f74cac342d7860abe20c23.tar.gz |
Upgrade to XSLoader-0.06 (plus a minor doc nit found by podchecker).
p4raw-id: //depot/perl@25766
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/XSLoader_pm.PL | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/DynaLoader/XSLoader_pm.PL b/ext/DynaLoader/XSLoader_pm.PL index 50c588f76e..82bdeacb80 100644 --- a/ext/DynaLoader/XSLoader_pm.PL +++ b/ext/DynaLoader/XSLoader_pm.PL @@ -15,7 +15,7 @@ print OUT <<'EOT'; package XSLoader; -$VERSION = "0.05_01"; +$VERSION = "0.06"; #use strict; @@ -150,7 +150,7 @@ XSLoader - Dynamically load C libraries into Perl code =head1 VERSION -Version 0.05_01 +Version 0.06 =head1 SYNOPSIS @@ -192,7 +192,7 @@ Change this to In other words: replace C<require DynaLoader> by C<use XSLoader>, remove C<DynaLoader> from C<@ISA>, change C<bootstrap> by C<XSLoader::load>. Do not forget to quote the name of your package on the C<XSLoader::load> line, -and add comma (C<,>) before the arguments ($VERSION above). +and add comma (C<,>) before the arguments (C<$VERSION> above). Of course, if C<@ISA> contained only C<DynaLoader>, there is no need to have the C<@ISA> assignment at all; moreover, if instead of C<our> one uses the @@ -358,8 +358,7 @@ C<make install>. =head1 BUGS -Please report any bugs or feature requests via the perlbug(1) -utility. +Please report any bugs or feature requests via the perlbug(1) utility. =head1 SEE ALSO @@ -367,7 +366,7 @@ utility. L<DynaLoader> -=head1 AUTHOR +=head1 AUTHORS Ilya Zakharevich originally extracted C<XSLoader> from C<DynaLoader>. @@ -383,6 +382,7 @@ This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut + EOT close OUT or die $!; |