summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Carp/Heavy.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Carp/Heavy.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Carp/Heavy.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/tlpkg/tlperl/lib/Carp/Heavy.pm b/Master/tlpkg/tlperl/lib/Carp/Heavy.pm
index 283b09bbf6d..a14672b9728 100644
--- a/Master/tlpkg/tlperl/lib/Carp/Heavy.pm
+++ b/Master/tlpkg/tlperl/lib/Carp/Heavy.pm
@@ -2,7 +2,12 @@ package Carp::Heavy;
use Carp ();
-our $VERSION = '1.29';
+our $VERSION = '1.3301';
+
+my $cv = defined($Carp::VERSION) ? $Carp::VERSION : "undef";
+if($cv ne $VERSION) {
+ die "Version mismatch between Carp $cv ($INC{q(Carp.pm)}) and Carp::Heavy $VERSION ($INC{q(Carp/Heavy.pm)}). Did you alter \@INC after Carp was loaded?\n";
+}
1;