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

Comparing EV/Makefile.PL (file contents):
Revision 1.31 by root, Thu Jan 31 19:59:23 2008 UTC vs.
Revision 1.32 by root, Sun Apr 6 09:53:16 2008 UTC

60type will be autodetected at compiletime. 60type will be autodetected at compiletime.
61 61
62EOF 62EOF
63 63
64$DEFINE .= " -DEV_USE_REALTIME=" . (0 + (prompt ("Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)?", "y") =~ /[yY]/)); 64$DEFINE .= " -DEV_USE_REALTIME=" . (0 + (prompt ("Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)?", "y") =~ /[yY]/));
65
66print <<EOF;
67
68*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
69
70
71Another useful bit of functionality is the Linux eventfd, which is useful
72for faster signal handling (don't care) and intra-thread communications
73(mostly useful for embedding). Kernel support for this will be probed at
74runtime, but your libc must contain the necessary wrapper. Glibc 2.7 and
75later should have this wrapper.
76
77EOF
78
79$DEFINE .= " -DEV_USE_EVENTFD=" . (0 + (prompt ("Enable linux eventfd support (y/n)?", (-e "/usr/include/sys/eventfd.h") ? "y" : "n") =~ /[yY]/));
65 80
66print <<EOF; 81print <<EOF;
67 82
68*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 83*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
69 84

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines