On Mon, May 24, 2004 at 02:50:01PM +0200, [EMAIL PROTECTED] wrote:
> 
> So to get perl2exe to work with POE and my stuff I had to do two 
> additional things:
> 
> 1) In POE::Kernel relax all the pattern matches $@ from eval from /^Can't 
> locate/ to /Can't locate/.
> 2) In my source script (for compiling with perl2exe) I had to explicitly 
> add all of the POE::Resource's:
> use POE::Resource::Aliases;
> use POE::Resource::Events;
> use POE::Resource::Extrefs;
> use POE::Resource::FileHandles;
> use POE::Resource::SIDs;
> use POE::Resource::Sessions;
> use POE::Resource::Signals;
> use POE::Resource::Statistics;
> 
> And then it works. So I'm wondering if I am on the right track here or if 
> there might be a better way? Especially since I don't find it healty to 
> modify POE::Kernel in any way.

I don't see a better way, so I've made your suggestions official.

POE::Resources is changed to relax the $@ pattern, and
POE::Preprocessor mentions the issue with POE::Resource::*.

These changes are already committed, and they'll appear in the next
release.

-- Rocco Caputo

Reply via email to