summaryrefslogtreecommitdiff
path: root/ext/Data
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1999-11-15 20:50:31 -0500
committerGurusamy Sarathy <gsar@cpan.org>1999-12-03 04:47:03 +0000
commit9426adcd48655815b65cea5a9f1eebbe7e23a9df (patch)
treed9707481a6d1bd26c1d688da99bbd3b0273c0aaa /ext/Data
parent34baa6c30415f54e9b8c2e622de1e229cf36d781 (diff)
downloadperl-9426adcd48655815b65cea5a9f1eebbe7e23a9df.tar.gz
applied suggested patch; removed $VERSION = $VERSION hack
(change#4043 fixed the need for that) Message-Id: <199911160650.BAA18874@monk.mps.ohio-state.edu> Subject: [PATCH 5.005_62] XSLoader.pm p4raw-link: @4043 on //depot/cfgperl: 09bef84370e90d727656ea11ba5ee8be80e361d3 p4raw-id: //depot/perl@4623
Diffstat (limited to 'ext/Data')
-rw-r--r--ext/Data/Dumper/Dumper.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/Data/Dumper/Dumper.pm b/ext/Data/Dumper/Dumper.pm
index 44cc613d34..608879cc2f 100644
--- a/ext/Data/Dumper/Dumper.pm
+++ b/ext/Data/Dumper/Dumper.pm
@@ -9,22 +9,22 @@
package Data::Dumper;
-$VERSION = $VERSION = '2.101';
+$VERSION = '2.101';
#$| = 1;
require 5.004_02;
require Exporter;
-require DynaLoader;
+use XSLoader ();
require overload;
use Carp;
-@ISA = qw(Exporter DynaLoader);
+@ISA = qw(Exporter);
@EXPORT = qw(Dumper);
@EXPORT_OK = qw(DumperX);
-bootstrap Data::Dumper;
+XSLoader::load 'Data::Dumper';
# module vars and their defaults
$Indent = 2 unless defined $Indent;