ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/Makefile.PL
Revision: 1.37
Committed: Thu Oct 30 04:01:46 2008 UTC (15 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_49, rel-3_48
Changes since 1.36: +13 -9 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.4 use 5.006;
2    
3 root 1.37 use strict qw(vars subs);
4 root 1.7 use Config;
5 root 1.1 use ExtUtils::MakeMaker;
6    
7 root 1.10 unless (-e "libev/ev_epoll.c") {
8     print <<EOF;
9    
10     ***
11     *** ERROR: libev is missing or damaged. If you used a CVS check-out of EV,
12     *** you also have to check-out the "libev" module from the same CVS
13     *** repository into the EV dir (i.e. EV/libev from outside).
14     ***
15    
16     EOF
17     exit 1;
18     }
19    
20 root 1.11 print <<EOF;
21    
22 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
23 root 1.11
24    
25     Welcome to EV configuration. If you are in a hurry, just press return here
26     and hope for the best. The defaults should usually do.
27    
28     EOF
29    
30     if (prompt ("Skip further questions and use defaults (y/n)?", "y") =~ /[yY]/) {
31     $ENV{PERL_MM_USE_DEFAULT} = 1;
32     }
33    
34     print <<EOF;
35    
36 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
37 root 1.11
38    
39 root 1.14 POSIX optionally offers support for a monotonic clock source. EV
40     can take advantage of this clock source to detect time jumps
41     reliably. Unfortunately, some systems are bound to be broken, so you can
42     disable this here: you can completely disable the detection and use of
43     the monotonic clock by answering 'n' here. Support for this clock type
44 root 1.29 will otherwise be autodetected at both compile- and runtime. (this setting
45     currently affects the use of nanosleep over select as well).
46 root 1.11
47     EOF
48    
49 root 1.37 my $DEFINE .= " -DEV_USE_MONOTONIC=" . (0 + (prompt ("Enable optional support for CLOCK_MONOTONIC (y/n)?", "y") =~ /[yY]/));
50 root 1.11
51     print <<EOF;
52    
53 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
54 root 1.11
55    
56     POSIX optionally offers support for a (potentially) high-resolution
57     realtime clock interface. In a good implementation, using it is faster
58     than the normal method of using gettimeofday. Unfortunately, this option
59     is also bound to be broken on some systems, so you can disable use and
60     probing of this feature altogether here. Otherwise support for this clock
61     type will be autodetected at compiletime.
62    
63     EOF
64    
65 root 1.22 $DEFINE .= " -DEV_USE_REALTIME=" . (0 + (prompt ("Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)?", "y") =~ /[yY]/));
66 root 1.11
67     print <<EOF;
68    
69 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
70 root 1.11
71    
72 root 1.19 EV can use various backends with various portability issue. The select
73     backend is the most portable and makes for a good fallback, but it can be
74 root 1.22 limited to a low number of file descriptors and/or might not compile. If
75     you have problems with compiling ev_select.c, you might try to play around
76 root 1.19 with disabling it here, or forcing it to use the fd_set provided by your
77     OS, via the next question. I highly recommend keeping it in.
78    
79     EOF
80    
81     if (prompt ("Enable select backend (y/n)?", "y") =~ /[yY]/) {
82 root 1.22 $DEFINE .= " -DEV_USE_SELECT=1";
83 root 1.19
84     print <<EOF;
85    
86 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
87 root 1.19
88    
89     The select backend can operate in two modes. One uses the system-provided
90     fd_set and is usually limited to 1024 file descriptors (64 on windows),
91     the other requires your header files to define NFDBITS and declare a
92     suitable fd_mask type. If you run into problems compiling ev_select.c, you
93     can try forcing the use of the system fd_set here.
94    
95     EOF
96    
97     if (prompt ("Force use of system fd_set for select backend (y/n)?", "n") =~ /[yY]/) {
98     $DEFINE .= " -DEV_SELECT_USE_FD_SET";
99     }
100 root 1.22 } else {
101     $DEFINE .= " -DEV_USE_SELECT=0";
102 root 1.19 }
103    
104     print <<EOF;
105    
106 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
107 root 1.19
108    
109     The second very portable backend is poll(2). It does not exist on windows
110     and various versions of Mac OS X (and on the other versions it simply
111     doesn't work), but works basically everywhere else. It is recommended to use
112     the default here unless you run into compile problems in ev_poll.c.
113    
114     EOF
115    
116 root 1.22 $DEFINE .= " -DEV_USE_POLL=" . (0 + (prompt ("Enable poll backend (y/n)?", (-e "/usr/include/poll.h") ? "y" : "n") =~ /[yY]/));
117 root 1.19
118     print <<EOF;
119    
120 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
121 root 1.19
122    
123 root 1.24 Select and poll make it hard to write efficient servers, especially if the
124     number of active connections is much lower than the watched ones. GNU/Linux
125     systems have a more scalable method called "epoll", which EV can use. For
126     this to work, both your kernel and glibc have to support epoll, but if you
127     can compile it, the detection will be done at runtime, and EV will safely
128     fall back to using select when epoll isn't available. If unsure, accept
129     the default.
130 root 1.11
131     EOF
132    
133 root 1.37 my $can_epoll = -e "/usr/include/sys/epoll.h";
134     $can_epoll = $ENV{EV_EPOLL} if exists $ENV{EV_EPOLL};
135     $DEFINE .= " -DEV_USE_EPOLL=" . (0 + (prompt ("Enable epoll backend (y/n)?", $can_epoll ? "y" : "n") =~ /[yY]/));
136 root 1.15
137     print <<EOF;
138    
139 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
140 root 1.15
141    
142 root 1.23 Similarly to the epoll backend above, EV can take advantage of kqueue on
143     many BSD systems. Support for kqueue will be detected at runtime, with a
144     safe fallback to other methods when it cannot be used.
145    
146 root 1.31 Note that kqueue is broken on most operating systems, so by default it
147     won't be used on many platforms, but you can still create your own event
148 root 1.37 loop with kqueue backend.
149 root 1.31
150     Here is what we know:
151 root 1.23
152 root 1.28 NetBSD: partially working in at least 3.1. Yeah! :)
153 root 1.24 FreeBSD: broken on at least 6.2-STABLE,
154 root 1.28 sockets *likely* work, ptys definitely don't.
155 root 1.23 OpenBSD: reports indicate that it likely doesn't work
156     (similar problems as on FreeBSD).
157 root 1.28 OS X: completely, utterly broken on at least < 10.5.
158 root 1.11
159 root 1.15 EOF
160    
161 root 1.28 my $can_kqueue = -e "/usr/include/sys/event.h";
162 root 1.37 $can_kqueue = $ENV{EV_KQUEUE} if exists $ENV{EV_KQUEUE};
163 root 1.23 $DEFINE .= " -DEV_USE_KQUEUE=" . (0 + (prompt ("Enable kqueue backend (y/n)?", $can_kqueue ? "y" : "n") =~ /[yY]/));
164 root 1.11
165     print <<EOF;
166    
167 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
168 root 1.11
169    
170 root 1.21 Similarly to the kqueue backend above, EV can take advantage of the
171 root 1.26 solaris 10 event port interface. Support for event ports will be detected
172     at runtime, with a safe fallback to other methods when it cannot be used.
173 root 1.21
174     EOF
175    
176 root 1.26 $DEFINE .= " -DEV_USE_PORT=" . (0 + (prompt ("Enable event port backend (y/n)?", (-e "/usr/include/sys/port.h") ? "y" : "n") =~ /[yY]/));
177 root 1.21
178     print <<EOF;
179    
180 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
181 root 1.21
182    
183 root 1.11 EV needs the functions pthread_atfork and clock_gettime. On most systems
184 root 1.15 you need some special libraries for this (such as -lrt and -lpthread). You
185 root 1.23 can specify additional libraries to provide these calls (and any other
186     required by EV) now, or accept the default.
187 root 1.11
188     EOF
189    
190 root 1.37 my $solaris_libs = $^O =~ /solaris/ ? " -lsocket -lnsl" : "";
191     my $LIBS = prompt "Extra libraries for pthread_atfork and clock_gettime?", "-lpthread -lrt$solaris_libs";
192 root 1.15
193 root 1.11
194     print <<EOF;
195    
196 root 1.22 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
197 root 1.11
198    
199 root 1.25 A backend of a different kind is the Linux inotify(7) interface, which can
200     be used to speed up (and reduce resource consumption) of stat watchers. If
201     you have it, it is usually a good idea to enable it.
202    
203     EOF
204    
205     my $can_inotify = -e "/usr/include/sys/inotify.h";
206 root 1.37 $can_inotify = $ENV{EV_INOTIFY} if exists $ENV{EV_INOTIFY};
207 root 1.25 $DEFINE .= " -DEV_USE_INOTIFY=" . (0 + (prompt ("Enable inotify support (y/n)?", $can_inotify ? "y" : "n") =~ /[yY]/));
208    
209     print <<EOF;
210    
211     *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
212    
213    
214 root 1.36 Another useful bit of functionality is the Linux eventfd, which is useful
215     for faster signal handling (don't care) and intra-thread communications
216     (more relevant). Kernel support for this will be probed at runtime, but
217     your libc must contain the necessary wrapper. Glibc 2.7 and later should
218     have this wrapper.
219    
220     EOF
221    
222 root 1.37 my $can_eventfd = -e "/usr/include/sys/eventfd.h";
223     $can_eventfd = $ENV{EV_EVENTFD} if exists $ENV{EV_EVENTFD};
224     $DEFINE .= " -DEV_USE_EVENTFD=" . (0 + (prompt ("Enable linux eventfd support (y/n)?", $can_eventfd ? "y" : "n") =~ /[yY]/));
225 root 1.36
226     print <<EOF;
227    
228     *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
229    
230    
231 root 1.11 EOF
232    
233 root 1.20 my @anyevent = eval { require AnyEvent; $AnyEvent::VERSION < 2.6 } ? (AnyEvent => 2.6) : ();
234    
235 root 1.1 WriteMakefile(
236     dist => {
237 root 1.2 PREOP => 'pod2text EV.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
238 root 1.1 COMPRESS => 'gzip -9v',
239     SUFFIX => '.gz',
240     },
241 root 1.10 depend => {
242 root 1.13 "EV.c" => "EV/EVAPI.h "
243 root 1.17 . "libev/ev.c libev/ev.h libev/ev_epoll.c libev/ev_select.c libev/ev_kqueue.c libev/ev_poll.c "
244 root 1.30 . "libev/ev_vars.h libev/ev_wrap.h",
245 root 1.10 },
246 root 1.8 INC => "-Ilibev",
247 root 1.11 DEFINE => "$DEFINE",
248 root 1.2 NAME => "EV",
249 root 1.11 LIBS => [$LIBS],
250 root 1.20 PREREQ_PM => {
251     @anyevent,
252     },
253 root 1.2 VERSION_FROM => "EV.pm",
254 root 1.5 PM => {
255     'EV.pm' => '$(INST_LIBDIR)/EV.pm',
256     'EV/EVAPI.h' => '$(INST_LIBDIR)/EV/EVAPI.h',
257     'EV/MakeMaker.pm' => '$(INST_LIBDIR)/EV/MakeMaker.pm',
258 root 1.8 'libev/ev.h' => '$(INST_LIBDIR)/EV/ev.h',
259 root 1.35 'libev/ev.pod' => '$(INST_LIBDIR)/EV/libev.pod',
260 root 1.5 },
261 root 1.34 MAN3PODS => {
262     'EV.pm' => '$(INST_MAN3DIR)/EV.$(MAN3EXT)',
263     'EV/MakeMaker.pm' => '$(INST_MAN3DIR)/EV::MakeMaker.$(MAN3EXT)',
264 root 1.35 'libev/ev.pod' => '$(INST_MAN3DIR)/EV::libev.$(MAN3EXT)',
265 root 1.34 },
266 root 1.1 );
267    
268 root 1.6