summaryrefslogtreecommitdiff
path: root/ext/List
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2002-05-27 06:20:56 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-27 20:42:47 +0000
commit105cd85393438207822dd339c2f2de6688e85dea (patch)
treed35c908d2cf35271a14baa2e19eee7c66c677d0b /ext/List
parentf62cb720259c484e37beef31bf5247e5e150815a (diff)
downloadperl-105cd85393438207822dd339c2f2de6688e85dea.tar.gz
Re: [PATCH] Version tango
Message-ID: <oUp88gzkgy+T092yn@efn.org> p4raw-id: //depot/perl@16822
Diffstat (limited to 'ext/List')
-rw-r--r--ext/List/Util/lib/List/Util.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/List/Util/lib/List/Util.pm b/ext/List/Util/lib/List/Util.pm
index 1843873e5e..7686ffe82c 100644
--- a/ext/List/Util/lib/List/Util.pm
+++ b/ext/List/Util/lib/List/Util.pm
@@ -12,8 +12,10 @@ require DynaLoader;
our @ISA = qw(Exporter DynaLoader);
our @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle);
our $VERSION = "1.07_00";
+our $XS_VERSION = $VERSION;
+$VERSION = eval $VERSION;
-bootstrap List::Util $VERSION;
+bootstrap List::Util $XS_VERSION;
1;