summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/MakeMaker.pm
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-10-10 14:33:53 +0000
committerSteve Peters <steve@fisharerojo.org>2006-10-10 14:33:53 +0000
commit562c8117872556faadd31f703c1c1a0907ed9a04 (patch)
treee202e345d987ea7f8ceb97357d48ca4d8dfb5180 /lib/ExtUtils/MakeMaker.pm
parent81a4c762684cf629f6e7986fe1827ecd2af35ba2 (diff)
downloadperl-562c8117872556faadd31f703c1c1a0907ed9a04.tar.gz
Upgrade to ExtUtils-Makemaker-6.31.
p4raw-id: //depot/perl@28984
Diffstat (limited to 'lib/ExtUtils/MakeMaker.pm')
-rw-r--r--lib/ExtUtils/MakeMaker.pm19
1 files changed, 13 insertions, 6 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
index 0d18766b04..dbc5f8d5c0 100644
--- a/lib/ExtUtils/MakeMaker.pm
+++ b/lib/ExtUtils/MakeMaker.pm
@@ -1,4 +1,4 @@
-# $Id: /local/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm 18035 2006-09-11T20:18:19.209066Z schwern $
+# $Id: /local/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm 19606 2006-10-10T01:01:21.319714Z schwern $
package ExtUtils::MakeMaker;
BEGIN {require 5.005_03;}
@@ -21,8 +21,8 @@ use vars qw(
use vars qw($Revision);
use strict;
-$VERSION = '6.30_04';
-($Revision) = q$Revision: 18035 $ =~ /Revision:\s+(\S+)/;
+$VERSION = '6.31';
+($Revision) = q$Revision: 19606 $ =~ /Revision:\s+(\S+)/;
@ISA = qw(Exporter);
@EXPORT = qw(&WriteMakefile &writeMakefile $Verbose &prompt);
@@ -2162,7 +2162,7 @@ MakeMaker object. The following lines will be parsed o.k.:
$VERSION = '1.00';
*VERSION = \'1.01';
- $VERSION = (q$Revision: 18035 $) =~ /(\d+)/g;
+ $VERSION = (q$Revision: 19606 $) =~ /(\d+)/g;
$FOO::VERSION = '1.10';
*FOO::VERSION = \'1.11';
our $VERSION = 1.2.3; # new for perl5.6.0
@@ -2561,8 +2561,15 @@ Same as the PERL_CORE parameter. The parameter overrides this.
=head1 SEE ALSO
-ExtUtils::MM_Unix, ExtUtils::Manifest ExtUtils::Install,
-ExtUtils::Embed
+L<Module::Build> is a pure-Perl alternative to MakeMaker which does
+not rely on make or any other external utility. It is easier to
+extend to suit your needs.
+
+L<Module::Install> is a wrapper around MakeMaker which adds features
+not normally available.
+
+L<ExtUtils::ModuleMaker> and L<Module::Starter> are both modules to
+help you setup your distribution.
=head1 AUTHORS