visible. Oops.
p4raw-id: //depot/perl@13054
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Thread',
- VERSION => '2.00',
- MAN3PODS => {}
- );
+ VERSION_FROM => '../../lib/Thread.pm',
+ MAN3PODS => {},
+);
package Thread;
-$VERSION = '2.00';
-
use strict;
-our $ithreads;
-our $othreads;
+our($VERSION, $ithreads, $othreads);
BEGIN {
+ $VERSION = '2.00';
use Config;
$ithreads = $Config{useithreads};
$othreads = $Config{use5005threads};
require Exporter;
use XSLoader ();
-our($VERSION, @ISA, @EXPORT, @EXPORT_OK);
+our(@ISA, @EXPORT, @EXPORT_OK);
@ISA = qw(Exporter);