ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/Makefile.PL
(Generate patch)

Comparing EV/Makefile.PL (file contents):
Revision 1.20 by root, Wed Nov 14 22:30:50 2007 UTC vs.
Revision 1.21 by root, Fri Nov 16 01:46:26 2007 UTC

150 150
151EOF 151EOF
152 152
153if (prompt ("Enable kqueue backend (y/n)?", (-e "/usr/include/sys/event.h") ? "y" : "n") =~ /[yY]/) { 153if (prompt ("Enable kqueue backend (y/n)?", (-e "/usr/include/sys/event.h") ? "y" : "n") =~ /[yY]/) {
154 $DEFINE .= " -DEV_USE_KQUEUE"; 154 $DEFINE .= " -DEV_USE_KQUEUE";
155}
156
157print <<EOF;
158
159
160*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
161
162Similarly to the kqueue backend above, EV can take advantage of the
163solaris 10 port interface. Support for port will be detected at runtime,
164with a safe fallback to other methods when it cannot be used.
165
166EOF
167
168if (prompt ("Enable port backend (y/n)?", (-e "/usr/include/sys/port.h") ? "y" : "n") =~ /[yY]/) {
169 $DEFINE .= " -DEV_USE_PORT";
155} 170}
156 171
157print <<EOF; 172print <<EOF;
158 173
159 174

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines