diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1999-11-15 20:50:31 -0500 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-03 04:47:03 +0000 |
commit | 9426adcd48655815b65cea5a9f1eebbe7e23a9df (patch) | |
tree | d9707481a6d1bd26c1d688da99bbd3b0273c0aaa /ext/Opcode | |
parent | 34baa6c30415f54e9b8c2e622de1e229cf36d781 (diff) | |
download | perl-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/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index ff3899f835..3915b40980 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -10,8 +10,8 @@ $XS_VERSION = "1.03"; use strict; use Carp; use Exporter (); -use DynaLoader (); -@ISA = qw(Exporter DynaLoader); +use XSLoader (); +@ISA = qw(Exporter); BEGIN { @EXPORT_OK = qw( @@ -28,7 +28,7 @@ sub opset_to_hex ($); sub opdump (;$); use subs @EXPORT_OK; -bootstrap Opcode $XS_VERSION; +XSLoader::load 'Opcode', $XS_VERSION; _init_optags(); |