Other conversations aside, here's a fix for another issue you were having.
Another thread earlier mentioned you were having problem getting the indexer to see modules, and that you might need need to use placeholder modules or something.
This is indeed what you need to do. For very heavily C-based modules the solution normally would look something like this. (from the Dynaloader docs).
package YourPackage;
require DynaLoader; @ISA = qw(... DynaLoader ...);
bootstrap YourPackage;
__END__
=pod
=head1 NAME YourPackage;
... documentation for module goes here ...
=cut
What I imagine you will have to do is to make a set of what would essentially be version/documentation module files, and have them all call back to the main loader, which will do the right thing adding the %INC entries in.
This allowed the various documentation systems to work properly, while largely staying out the way of the actual work.
Adam
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
