The error comes from Math::BigInt, not XML::Compile::Schema::BuiltInTypes. It has to come from the following line in sub import:
eval "use $lib qw/@c/;";
The thing is, you shouldn't be seeing the error messages from that line, and you shouldn't be getting that error from that line. What's your version of Math::BigInt?
perl -MMath::BigInt -le'print Math::BigInt->VERSION'
Did you modify it? Please post the import sub from the file given by perldoc -l Math::BigInt.
perl -ne'print if /^sub import/.../^sub/' `perldoc -l Math::BigInt`
Note that the eval line should probably be the following, but it doesn't matter since the imports are ignored.
eval "use $lib qw/\@c/;";
In reply to Re: Library problems with XML::Compile::WSDL11 and Math::BigInt
by ikegami
in thread Library problems with XML::Compile::WSDL11 and Math::BigInt
by space_monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |