Start 2008-09-29T16:02:38 Going to read /home/fly818/var/cpan/Metadata Database was generated on Mon, 29 Sep 2008 08:27:52 GMT Running make for M/ML/MLEHMANN/EV-3.44.tar.gz Checksum for /net/nas/data/cpan/authors/id/M/ML/MLEHMANN/EV-3.44.tar.gz ok EV-3.44/ EV-3.44/t/ EV-3.44/t/02_once.t EV-3.44/t/09_brandon.t EV-3.44/t/07_loop_timer.t EV-3.44/t/03_keepalive.t EV-3.44/t/08_async.t EV-3.44/t/05_priority.t EV-3.44/t/04_stat.t EV-3.44/t/06_loop_once.t EV-3.44/t/00_load.t EV-3.44/t/01_timer.t EV-3.44/EV/ EV-3.44/EV/EVAPI.h EV-3.44/EV/MakeMaker.pm EV-3.44/EV.pm EV-3.44/EV.xs EV-3.44/libev/ EV-3.44/libev/ev.c EV-3.44/libev/ev.h EV-3.44/libev/LICENSE EV-3.44/libev/README EV-3.44/libev/Changes EV-3.44/libev/ev_win32.c EV-3.44/libev/ev.pod EV-3.44/libev/ev_poll.c EV-3.44/libev/ev_port.c EV-3.44/libev/ev_vars.h EV-3.44/libev/ev_kqueue.c EV-3.44/libev/ev_select.c EV-3.44/libev/ev_wrap.h EV-3.44/libev/ev_epoll.c EV-3.44/README EV-3.44/Changes EV-3.44/Makefile.PL EV-3.44/META.yml EV-3.44/typemap EV-3.44/COPYING EV-3.44/MANIFEST CPAN.pm: Going to build M/ML/MLEHMANN/EV-3.44.tar.gz >>> /home/fly818/ap818/bin/perl-static Makefile.PL *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Welcome to EV configuration. If you are in a hurry, just press return here and hope for the best. The defaults should usually do. Skip further questions and use defaults (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** POSIX optionally offers support for a monotonic clock source. EV can take advantage of this clock source to detect time jumps reliably. Unfortunately, some systems are bound to be broken, so you can disable this here: you can completely disable the detection and use of the monotonic clock by answering 'n' here. Support for this clock type will otherwise be autodetected at both compile- and runtime. (this setting currently affects the use of nanosleep over select as well). Enable optional support for CLOCK_MONOTONIC (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** POSIX optionally offers support for a (potentially) high-resolution realtime clock interface. In a good implementation, using it is faster than the normal method of using gettimeofday. Unfortunately, this option is also bound to be broken on some systems, so you can disable use and probing of this feature altogether here. Otherwise support for this clock type will be autodetected at compiletime. Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Another useful bit of functionality is the Linux eventfd, which is useful for faster signal handling (don't care) and intra-thread communications (mostly useful for embedding). Kernel support for this will be probed at runtime, but your libc must contain the necessary wrapper. Glibc 2.7 and later should have this wrapper. Enable linux eventfd support (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** EV can use various backends with various portability issue. The select backend is the most portable and makes for a good fallback, but it can be limited to a low number of file descriptors and/or might not compile. If you have problems with compiling ev_select.c, you might try to play around with disabling it here, or forcing it to use the fd_set provided by your OS, via the next question. I highly recommend keeping it in. Enable select backend (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** The select backend can operate in two modes. One uses the system-provided fd_set and is usually limited to 1024 file descriptors (64 on windows), the other requires your header files to define NFDBITS and declare a suitable fd_mask type. If you run into problems compiling ev_select.c, you can try forcing the use of the system fd_set here. Force use of system fd_set for select backend (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** The second very portable backend is poll(2). It does not exist on windows and various versions of Mac OS X (and on the other versions it simply doesn't work), but works basically everywhere else. It is recommended to use the default here unless you run into compile problems in ev_poll.c. Enable poll backend (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Select and poll make it hard to write efficient servers, especially if the number of active connections is much lower than the watched ones. GNU/Linux systems have a more scalable method called "epoll", which EV can use. For this to work, both your kernel and glibc have to support epoll, but if you can compile it, the detection will be done at runtime, and EV will safely fall back to using select when epoll isn't available. If unsure, accept the default. Enable epoll backend (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Similarly to the epoll backend above, EV can take advantage of kqueue on many BSD systems. Support for kqueue will be detected at runtime, with a safe fallback to other methods when it cannot be used. Note that kqueue is broken on most operating systems, so by default it won't be used on many platforms, but you can still create your own event loop with qkueue backend. Here is what we know: NetBSD: partially working in at least 3.1. Yeah! :) FreeBSD: broken on at least 6.2-STABLE, sockets *likely* work, ptys definitely don't. OpenBSD: reports indicate that it likely doesn't work (similar problems as on FreeBSD). OS X: completely, utterly broken on at least < 10.5. Enable kqueue backend (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Similarly to the kqueue backend above, EV can take advantage of the solaris 10 event port interface. Support for event ports will be detected at runtime, with a safe fallback to other methods when it cannot be used. Enable event port backend (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** EV needs the functions pthread_atfork and clock_gettime. On most systems you need some special libraries for this (such as -lrt and -lpthread). You can specify additional libraries to provide these calls (and any other required by EV) now, or accept the default. Extra libraries for pthread_atfork and clock_gettime? [-lpthread -lrt] -lpthread -lrt *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** A backend of a different kind is the Linux inotify(7) interface, which can be used to speed up (and reduce resource consumption) of stat watchers. If you have it, it is usually a good idea to enable it. Enable inotify support (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Checking if your kit is complete... Looks good Writing Makefile for EV >>> make cp EV/MakeMaker.pm blib/lib/EV/MakeMaker.pm cp EV/EVAPI.h blib/lib/EV/EVAPI.h cp EV.pm blib/lib/EV.pm cp libev/ev.h blib/lib/EV/ev.h /home/fly818/ap818/bin/perl-static /home/fly818/var/megalib/ExtUtils/xsubpp -typemap /home/fly818/ap818/lib/ExtUtils/typemap -typemap typemap EV.xs > EV.xsc && mv EV.xsc EV.c gcc -c -Ilibev -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DUSE_SITECUSTOMIZE -DNO_HASH_SEED -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -DVERSION=\"3.44\" -DXS_VERSION=\"3.44\" -fpic "-I/home/fly818/ap818/lib/CORE" -DEV_USE_MONOTONIC=1 -DEV_USE_REALTIME=1 -DEV_USE_EVENTFD=0 -DEV_USE_SELECT=1 -DEV_USE_POLL=1 -DEV_USE_EPOLL=1 -DEV_USE_KQUEUE=0 -DEV_USE_PORT=0 -DEV_USE_INOTIFY=0 EV.c Running Mkbootstrap for EV () chmod 644 EV.bs rm -f blib/arch/auto/EV/EV.so LD_RUN_PATH="/lib" gcc -shared EV.o -o blib/arch/auto/EV/EV.so \ -lpthread -lrt \ chmod 755 blib/arch/auto/EV/EV.so cp EV.bs blib/arch/auto/EV/EV.bs chmod 644 blib/arch/auto/EV/EV.bs Manifying blib/man3/EV::MakeMaker.3 Manifying blib/man3/EV.3 MLEHMANN/EV-3.44.tar.gz make -- OK Running make test >>> make test TEST_VERBOSE=1 PERL_DL_NONLAZY=1 /home/fly818/ap818/bin/perl-static "-MExtUtils::Command::MM" "-e" "test_harness(1, 'blib/lib', 'blib/arch')" t/*.t t/00_load.......... 1..2 not ok 1 # Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/00_load.t line 5. ok 2 # Failed 1/2 subtests t/01_timer......... 1..6002 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/01_timer.t line 6. BEGIN failed--compilation aborted at t/01_timer.t line 6. Dubious, test returned 2 (wstat 512, 0x200) Failed 6002/6002 subtests t/02_once.......... 1..6 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/02_once.t line 7. BEGIN failed--compilation aborted at t/02_once.t line 7. Dubious, test returned 2 (wstat 512, 0x200) Failed 6/6 subtests t/03_keepalive..... 1..7 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/03_keepalive.t line 6. BEGIN failed--compilation aborted at t/03_keepalive.t line 6. Dubious, test returned 2 (wstat 512, 0x200) Failed 7/7 subtests t/04_stat.......... 1..14 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/04_stat.t line 8. BEGIN failed--compilation aborted at t/04_stat.t line 8. Dubious, test returned 2 (wstat 512, 0x200) Failed 14/14 subtests t/05_priority...... 1..9 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/05_priority.t line 6. BEGIN failed--compilation aborted at t/05_priority.t line 6. Dubious, test returned 2 (wstat 512, 0x200) Failed 9/9 subtests t/06_loop_once..... 1..6 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/06_loop_once.t line 7. BEGIN failed--compilation aborted at t/06_loop_once.t line 7. Dubious, test returned 2 (wstat 512, 0x200) Failed 6/6 subtests t/07_loop_timer.... 1..752 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/07_loop_timer.t line 6. BEGIN failed--compilation aborted at t/07_loop_timer.t line 6. Dubious, test returned 2 (wstat 512, 0x200) Failed 752/752 subtests t/08_async......... 1..13 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/08_async.t line 6. BEGIN failed--compilation aborted at t/08_async.t line 6. Dubious, test returned 2 (wstat 512, 0x200) Failed 13/13 subtests t/09_brandon....... 1..12 Can't load '/home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so' for module EV: /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/arch/auto/EV/EV.so: undefined symbol: epoll_wait at /home/fly818/ap818/lib/DynaLoader.pm line 230. at /home/fly818/ap818/lib/DynaLoader.pm line 83 BEGIN failed--compilation aborted at /home/fly818/var/cpan/build/EV-3.44-rxEaPJ/blib/lib/EV.pm line 83. Compilation failed in require at t/09_brandon.t line 8. BEGIN failed--compilation aborted at t/09_brandon.t line 8. Dubious, test returned 2 (wstat 512, 0x200) Failed 12/12 subtests Test Summary Report ------------------- t/00_load (Wstat: 0 Tests: 2 Failed: 1) Failed test: 1 t/01_timer (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 6002 tests but ran 0. t/02_once (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 6 tests but ran 0. t/03_keepalive (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 7 tests but ran 0. t/04_stat (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 14 tests but ran 0. t/05_priority (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 9 tests but ran 0. t/06_loop_once (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 6 tests but ran 0. t/07_loop_timer (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 752 tests but ran 0. t/08_async (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 13 tests but ran 0. t/09_brandon (Wstat: 512 Tests: 0 Failed: 0) Non-zero exit status: 2 Parse errors: Bad plan. You planned 12 tests but ran 0. Files=10, Tests=2, 0 wallclock secs ( 0.02 usr 0.04 sys + 0.09 cusr 0.15 csys = 0.30 CPU) Result: FAIL Failed 10/10 test programs. 1/2 subtests failed. make: *** [test_dynamic] Error 2 MLEHMANN/EV-3.44.tar.gz make test TEST_VERBOSE=1 -- NOT OK //hint// to see the cpan-testers results for installing this module, try: reports MLEHMANN/EV-3.44.tar.gz Finished 2008-09-29T16:02:45