summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2003-08-13 19:05:38 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-13 17:13:12 +0000
commitd1c9eea3064ab04768b3d7bf89e9cacdccaaada9 (patch)
tree6460762aaaf0c2467523aeec5534f6cf7c543474 /utils
parent4350c9a7a6da0a61235d99723a34e65aefb57ffd (diff)
downloadperl-d1c9eea3064ab04768b3d7bf89e9cacdccaaada9.tar.gz
RE: script wanted
Message-ID: <533D273D4014D411AB1D00062938C4D904046637@hotel.npl.co.uk> p4raw-id: //depot/perl@20681
Diffstat (limited to 'utils')
-rw-r--r--utils/h2xs.PL2
-rw-r--r--utils/perlcc.PL3
2 files changed, 3 insertions, 2 deletions
diff --git a/utils/h2xs.PL b/utils/h2xs.PL
index e444d5e7be..8b43191aa4 100644
--- a/utils/h2xs.PL
+++ b/utils/h2xs.PL
@@ -492,7 +492,7 @@ See L<perlxs> and L<perlxstut> for additional details.
use strict;
-my( $H2XS_VERSION ) = ' $Revision: 1.22 $ ' =~ /\$Revision:\s+([^\s]+)/;
+my( $H2XS_VERSION ) = ' $Revision: 1.23 $ ' =~ /\$Revision:\s+([^\s]+)/;
my $TEMPLATE_VERSION = '0.01';
my @ARGS = @ARGV;
my $compat_version = $];
diff --git a/utils/perlcc.PL b/utils/perlcc.PL
index 313a972d88..339c423f6a 100644
--- a/utils/perlcc.PL
+++ b/utils/perlcc.PL
@@ -42,6 +42,7 @@ print OUT <<'!NO!SUBS!';
# Version 2.01, Tom Christiansen, Thu Mar 30 08:25:14 MST 2000
# Version 2.02, Simon Cozens, Sun Apr 16 01:53:36 JST 2000
# Version 2.03, Edward Peschko, Mon Feb 26 12:04:17 PST 2001
+# Version 2.04, Enache Adrian,Fri, 18 Jul 2003 23:15:37 +0300
use strict;
use warnings;
@@ -52,7 +53,7 @@ use Config;
use Fcntl qw(:DEFAULT :flock);
use File::Temp qw(tempfile);
use Cwd;
-our $VERSION = 2.03;
+our $VERSION = 2.04;
$| = 1;
$SIG{INT} = sub { exit(); }; # exit gracefully and clean up after ourselves.