NAME
EV::MakeMaker - MakeMaker glue for the C-level EV API
SYNOPSIS
This allows you to access some libevent functionality from other perl modules.
DESCRIPTION
For optimal performance, hook into EV at the C-level. You'll need to make changes to your Makefile.PL
and add code to your xs
/ c
file(s).
HOW TO
Makefile.PL
use EV::MakeMaker qw(ev_args);
# ... set up %args ...
WriteMakefile (ev_args (%args));
XS
#include "EVAPI.h"
BOOT:
I_EV_API ("YourModule");
API
See the EVAPI.h header.