Kwalitee change: include license information
authorTony Cook <tony@develop=help.com>
Tue, 18 Mar 2008 23:24:13 +0000 (23:24 +0000)
committerTony Cook <tony@develop=help.com>
Tue, 18 Mar 2008 23:24:13 +0000 (23:24 +0000)
Array.pm
MANIFEST
Makefile.PL

index 0ca5b2d92fc61f50455dc88da7de437a27535fcc..61c1ac07ec8a94d39612eee0a005fafa6722403c 100644 (file)
--- a/Array.pm
+++ b/Array.pm
@@ -108,6 +108,10 @@ those array refs.
 
 =back
 
+=head1 LICENSE
+
+POE::XS::Queue::Array is licensed under the same terms as Perl itself.
+
 =head1 AUTHOR
 
 Tony Cook <tonyc@cpan.org>
index cd6bfa2e676f3c1900811ebfc1166822b7addf2f..e17da4c0443a09fb772e60d0f64b288be068093b 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,7 +2,6 @@ Array.pm
 Array.xs        Interface between perl and queue.c
 Changes
 MANIFEST
-META.yml                                 Module meta-data (added by MakeMaker)
 Makefile.PL
 README
 alloc.c         Imager's memory debug library, mangled
index 0109297b33c48df995f8b4b97662f317abe3bf7a..d768e96fbdb31c574f9d1110b143e3c5cafa2cae 100644 (file)
@@ -9,10 +9,14 @@ my %opts =
                 'POE'    => 0.29,
                },
   );
-if ($ExtUtils::MakeMaker::VERSION > 6.06) {
+my $eu_mmv = eval $ExtUtils::MakeMaker::VERSION;
+if ($eu_mmv > 6.06) {
   $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
   $opts{ABSTRACT} = 'XS version of POE::Queue::Array';
 }
+if ($eu_mmv > 6.30) {
+  $opts{LICENSE} = 'perl';
+}
 
 WriteMakefile(%opts);