On Mon, Apr 05, 2004 at 11:59:40AM -0400, Jerry D. Hedden wrote:
> Again, to keep this from affecting my application, I had to edit
> Event.pm to not use Time::HiRes.  Is there another way to turn off
> using Time::HiRes in Event?  If not, I'd like to request adding one.

Just call Event::install_time_api() before Event gets a chance to
probe for Time::HiRes.  Like this:

BEGIN {
  require Event;
  Event::install_time_api();
  Event->import(qw(...));
}

-- 
A new cognitive theory of emotion, http://openheartlogic.org

Attachment: signature.asc
Description: Digital signature

Reply via email to