-
Notifications
You must be signed in to change notification settings - Fork 40
Perl library give warnings on use after perl-5.16+ #5
Comments
I've bumped into this too, with a fresh build under perl v5.16.3 In my case, it kills a script I'm trying to run: Subroutine Tabix::tabix_open redefined at /usr/local/lib64/perl5/Tabix.pm line 17. |
The following, although not ideal, will silence this. You need to do it before the
|
I've seen this problem before when you've got the following situation: ### in A.pm
package A;
use 'B';
sub mysubina {
}
1;
### B.pm
package B;
use 'A';
sub mysubinb {
}
1; Because both packages choose to For this version of the problem I think it's caused partly by the |
Hi,
There seems to be some issue with the XS bindings. I've found this to be a problem on 5.16 and 5.18, okay on 5.14 but I didn't have access to 5.15 to try that.
Regards,
Keiran
The text was updated successfully, but these errors were encountered: