Subject: | POE::Filter::Reference can't require Compress::Zlib properly |
As of ActivePerl 5.8.4, POE v0.29 it seems that _include_zlib sub in
POE::Filter::Reference is flawed, thus not being able to properly
acquire Compress::Zlib at runtime.
eval { require "Compress::Zlib";
import Compress::Zlib qw(compress uncompress);
The problem appears to be that Compress::Zlib is quoted, and should be
a bareword.
Removing the quotes makes it work as expected.