summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/B/B.pm3
-rw-r--r--ext/B/B/Asmdata.pm3
-rw-r--r--ext/B/B/Bblock.pm3
-rw-r--r--ext/B/B/Bytecode.pm2
-rw-r--r--ext/B/B/C.pm3
-rw-r--r--ext/B/B/CC.pm3
-rw-r--r--ext/B/B/Debug.pm3
-rw-r--r--ext/B/B/Disassembler.pm3
-rw-r--r--ext/B/B/Lint.pm2
-rw-r--r--ext/B/B/Showlex.pm3
-rw-r--r--ext/B/B/Stackobj.pm3
-rw-r--r--ext/B/B/Stash.pm2
-rw-r--r--ext/B/B/Terse.pm3
-rw-r--r--ext/B/B/Xref.pm2
-rw-r--r--ext/B/O.pm3
-rw-r--r--ext/Encode/Encode/Tcl.pm3
-rw-r--r--ext/Opcode/ops.pm2
-rw-r--r--ext/Thread/Thread/Queue.pm3
-rw-r--r--ext/Thread/Thread/Semaphore.pm2
-rw-r--r--ext/Thread/Thread/Signal.pm2
-rw-r--r--ext/Thread/Thread/Specific.pm2
21 files changed, 55 insertions, 0 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm
index 534182fe4b..06f99c49fb 100644
--- a/ext/B/B.pm
+++ b/ext/B/B.pm
@@ -6,6 +6,9 @@
# License or the Artistic License, as specified in the README file.
#
package B;
+
+our $VERSION = '1.00';
+
use XSLoader ();
require Exporter;
@ISA = qw(Exporter);
diff --git a/ext/B/B/Asmdata.pm b/ext/B/B/Asmdata.pm
index dc176be962..607071ff31 100644
--- a/ext/B/B/Asmdata.pm
+++ b/ext/B/B/Asmdata.pm
@@ -9,6 +9,9 @@
# This file is autogenerated from bytecode.pl. Changes made here will be lost.
#
package B::Asmdata;
+
+our $VERSION = '1.00';
+
use Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(%insn_data @insn_name @optype @specialsv_name);
diff --git a/ext/B/B/Bblock.pm b/ext/B/B/Bblock.pm
index fe7fc52139..9bef3ac3e1 100644
--- a/ext/B/B/Bblock.pm
+++ b/ext/B/B/Bblock.pm
@@ -1,4 +1,7 @@
package B::Bblock;
+
+our $VERSION = '1.00';
+
use Exporter ();
@ISA = "Exporter";
@EXPORT_OK = qw(find_leaders);
diff --git a/ext/B/B/Bytecode.pm b/ext/B/B/Bytecode.pm
index 1954116298..dd49c029ea 100644
--- a/ext/B/B/Bytecode.pm
+++ b/ext/B/B/Bytecode.pm
@@ -7,6 +7,8 @@
#
package B::Bytecode;
+our $VERSION = '1.00';
+
use strict;
use Carp;
use B qw(main_cv main_root main_start comppadlist
diff --git a/ext/B/B/C.pm b/ext/B/B/C.pm
index bcc6f93453..d3c9f5b05d 100644
--- a/ext/B/B/C.pm
+++ b/ext/B/B/C.pm
@@ -6,6 +6,9 @@
# License or the Artistic License, as specified in the README file.
#
package B::C::Section;
+
+our $VERSION = '1.00';
+
use B ();
use base B::Section;
diff --git a/ext/B/B/CC.pm b/ext/B/B/CC.pm
index 51922eeb2b..14ee6cf322 100644
--- a/ext/B/B/CC.pm
+++ b/ext/B/B/CC.pm
@@ -6,6 +6,9 @@
# License or the Artistic License, as specified in the README file.
#
package B::CC;
+
+our $VERSION = '1.00';
+
use Config;
use strict;
use B qw(main_start main_root class comppadlist peekop svref_2object
diff --git a/ext/B/B/Debug.pm b/ext/B/B/Debug.pm
index c69bfbfbf5..f9f8c092f7 100644
--- a/ext/B/B/Debug.pm
+++ b/ext/B/B/Debug.pm
@@ -1,4 +1,7 @@
package B::Debug;
+
+our $VERSION = '1.00';
+
use strict;
use B qw(peekop class walkoptree walkoptree_exec
main_start main_root cstring sv_undef);
diff --git a/ext/B/B/Disassembler.pm b/ext/B/B/Disassembler.pm
index 212532b9ce..7fc4ac7773 100644
--- a/ext/B/B/Disassembler.pm
+++ b/ext/B/B/Disassembler.pm
@@ -5,6 +5,9 @@
# You may distribute under the terms of either the GNU General Public
# License or the Artistic License, as specified in the README file.
package B::Disassembler::BytecodeStream;
+
+our $VERSION = '1.00';
+
use FileHandle;
use Carp;
use B qw(cstring cast_I32);
diff --git a/ext/B/B/Lint.pm b/ext/B/B/Lint.pm
index f5186f146c..35378efa42 100644
--- a/ext/B/B/Lint.pm
+++ b/ext/B/B/Lint.pm
@@ -1,5 +1,7 @@
package B::Lint;
+our $VERSION = '1.00';
+
=head1 NAME
B::Lint - Perl lint
diff --git a/ext/B/B/Showlex.pm b/ext/B/B/Showlex.pm
index 842ca3ee2b..0140c8ac51 100644
--- a/ext/B/B/Showlex.pm
+++ b/ext/B/B/Showlex.pm
@@ -1,4 +1,7 @@
package B::Showlex;
+
+our $VERSION = '1.00';
+
use strict;
use B qw(svref_2object comppadlist class);
use B::Terse ();
diff --git a/ext/B/B/Stackobj.pm b/ext/B/B/Stackobj.pm
index 0db3e33de8..b17dfb8173 100644
--- a/ext/B/B/Stackobj.pm
+++ b/ext/B/B/Stackobj.pm
@@ -6,6 +6,9 @@
# License or the Artistic License, as specified in the README file.
#
package B::Stackobj;
+
+our $VERSION = '1.00';
+
use Exporter ();
@ISA = qw(Exporter);
@EXPORT_OK = qw(set_callback T_UNKNOWN T_DOUBLE T_INT VALID_UNSIGNED
diff --git a/ext/B/B/Stash.pm b/ext/B/B/Stash.pm
index f3a8247877..5e60868a28 100644
--- a/ext/B/B/Stash.pm
+++ b/ext/B/B/Stash.pm
@@ -2,6 +2,8 @@
# vishalb@hotmail.com
package B::Stash;
+our $VERSION = '1.00';
+
=pod
=head1 NAME
diff --git a/ext/B/B/Terse.pm b/ext/B/B/Terse.pm
index 4c31a66374..3abe6156de 100644
--- a/ext/B/B/Terse.pm
+++ b/ext/B/B/Terse.pm
@@ -1,4 +1,7 @@
package B::Terse;
+
+our $VERSION = '1.00';
+
use strict;
use B qw(peekop class walkoptree walkoptree_exec walkoptree_slow
main_start main_root cstring svref_2object SVf_IVisUV);
diff --git a/ext/B/B/Xref.pm b/ext/B/B/Xref.pm
index b4078b8bd3..1f3e247a35 100644
--- a/ext/B/B/Xref.pm
+++ b/ext/B/B/Xref.pm
@@ -1,5 +1,7 @@
package B::Xref;
+our $VERSION = '1.00';
+
=head1 NAME
B::Xref - Generates cross reference reports for Perl programs
diff --git a/ext/B/O.pm b/ext/B/O.pm
index d72d31fcf6..50a445cf49 100644
--- a/ext/B/O.pm
+++ b/ext/B/O.pm
@@ -1,4 +1,7 @@
package O;
+
+our $VERSION = '1.00';
+
use B qw(minus_c save_BEGINs);
use Carp;
diff --git a/ext/Encode/Encode/Tcl.pm b/ext/Encode/Encode/Tcl.pm
index 460a521bb9..5d3ad1b5e6 100644
--- a/ext/Encode/Encode/Tcl.pm
+++ b/ext/Encode/Encode/Tcl.pm
@@ -1,4 +1,7 @@
package Encode::Tcl;
+
+our $VERSION = '1.00';
+
use strict;
use Encode qw(find_encoding);
use base 'Encode::Encoding';
diff --git a/ext/Opcode/ops.pm b/ext/Opcode/ops.pm
index 9b553b7634..8a7a200665 100644
--- a/ext/Opcode/ops.pm
+++ b/ext/Opcode/ops.pm
@@ -1,5 +1,7 @@
package ops;
+our $VERSION = '1.00';
+
use Opcode qw(opmask_add opset invert_opset);
sub import {
diff --git a/ext/Thread/Thread/Queue.pm b/ext/Thread/Thread/Queue.pm
index 8ace16d48b..272a2a3952 100644
--- a/ext/Thread/Thread/Queue.pm
+++ b/ext/Thread/Thread/Queue.pm
@@ -1,4 +1,7 @@
package Thread::Queue;
+
+our $VERSION = '1.00';
+
use Thread qw(cond_wait cond_broadcast);
=head1 NAME
diff --git a/ext/Thread/Thread/Semaphore.pm b/ext/Thread/Thread/Semaphore.pm
index 3cd6338d4d..2a8ec25b65 100644
--- a/ext/Thread/Thread/Semaphore.pm
+++ b/ext/Thread/Thread/Semaphore.pm
@@ -1,6 +1,8 @@
package Thread::Semaphore;
use Thread qw(cond_wait cond_broadcast);
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Semaphore - thread-safe semaphores
diff --git a/ext/Thread/Thread/Signal.pm b/ext/Thread/Thread/Signal.pm
index f5f03db8a8..d8f3627470 100644
--- a/ext/Thread/Thread/Signal.pm
+++ b/ext/Thread/Thread/Signal.pm
@@ -1,6 +1,8 @@
package Thread::Signal;
use Thread qw(async);
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Signal - Start a thread which runs signal handlers reliably
diff --git a/ext/Thread/Thread/Specific.pm b/ext/Thread/Thread/Specific.pm
index a6271a4ae4..ed7cbf893c 100644
--- a/ext/Thread/Thread/Specific.pm
+++ b/ext/Thread/Thread/Specific.pm
@@ -1,5 +1,7 @@
package Thread::Specific;
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Specific - thread-specific keys