Stories
Slash Boxes
Comments
NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.

All the Perl that's Practical to Extract and Report

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.
  • For the Mac:: stuff, I defined the same function names and variables in multiple shared libraries, and dyld complained mightily. I put the functions in a single XS file, and access them from the others. So, for example, Foo.xs defines Foo(), and Bar.xs calls Foo() freely, and I put use Foo; at the top of Bar.pm, Baz.pm, etc. And, of course, Bar.xs has to include "../Foo/Foo.h" to get the definition ...

    Does that sound like what you were running into? And does my approach seem Wrong? I don't do a lot of