PATH=/opt/SUNWspro/bin:/usr/local/bin:/opt/csw/bin:/usr/ccs/bin:/usr/bin:/usr/sbin Start 2014-04-11T12:38:29 ActivePerl-1003 CPAN-2.00 Reading '/export/home/fly1064/var/cpan/Metadata' Database was generated on Fri, 11 Apr 2014 17:41:02 GMT Running make for M/ML/MLEHMANN/EV-4.17.tar.gz Fetching with LWP: http://cpan.nas1.activestate.com/authors/id/M/ML/MLEHMANN/EV-4.17.tar.gz Checksum for /export/home/fly1064/var/cpan/sources/authors/id/M/ML/MLEHMANN/EV-4.17.tar.gz ok You have Archive::Tar 1.38_01, but 1.50 or later is recommended. Please upgrade. EV-4.17/ EV-4.17/typemap EV-4.17/libev/ EV-4.17/libev/Changes EV-4.17/libev/ev_epoll.c EV-4.17/libev/ev_port.c EV-4.17/libev/ev.pod EV-4.17/libev/LICENSE EV-4.17/libev/ev_win32.c EV-4.17/libev/README EV-4.17/libev/ev_poll.c EV-4.17/libev/ev_kqueue.c EV-4.17/libev/ev.c EV-4.17/libev/ev_vars.h EV-4.17/libev/ev_wrap.h EV-4.17/libev/ev.h EV-4.17/libev/ev_select.c EV-4.17/Makefile.PL EV-4.17/schmorp.h EV-4.17/META.yml EV-4.17/Changes EV-4.17/META.json EV-4.17/COPYING EV-4.17/EV.pm EV-4.17/README EV-4.17/EV.xs EV-4.17/t/ EV-4.17/t/01_timer.t EV-4.17/t/00_load.t EV-4.17/t/02_once.t EV-4.17/t/07_loop_timer.t EV-4.17/t/08_async.t EV-4.17/t/04_stat.t EV-4.17/t/05_priority.t EV-4.17/t/06_loop_once.t EV-4.17/t/09_brandon.t EV-4.17/t/03_keepalive.t EV-4.17/t/11_signal.t EV-4.17/EV/ EV-4.17/EV/EVAPI.h EV-4.17/EV/MakeMaker.pm EV-4.17/MANIFEST CPAN.pm: Building M/ML/MLEHMANN/EV-4.17.tar.gz >>> /export/home/fly1064/bin/perl 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 more 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, and current EV versions do not actually call gettimeofday very often, so it defaults to no. Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** EV can use various backends with various portability issues. 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)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 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 kqueue backend if you ask specifically for it. Here is what we know: NetBSD: partially working in at least 3.1 and later. Yeah! :) FreeBSD: broken on at least 6.2-STABLE, spotty in later versions, 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.6. 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. On GNU/Linux systems, EV uses the LSB 3.1 __register_atfork function to avoid the dependency on libpthread, and directly uses the clock_gettime syscall to avoid a dependency on librt. Extra libraries for pthread_atfork and clock_gettime? [-lpthread -lrt -lsocket -lnsl] -lpthread -lrt -lsocket -lnsl *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 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 the include file and libc support for it, it is usually a good idea to enable it, as kernel availability is detected at runtime. Enable inotify support (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Another useful bit of functionality is the Linux eventfd, which is useful for faster signal handling (don't care) and intra-thread communications (more relevant). 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 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Another sometimes useful bit of functionality is the Linux signalfd, which is useful for faster signal handling (don't care). 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 signalfd support (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Very rarely, people want to tweak EV even more, e.g. to exclude or include certain watcher types or backends. This can be done by adding extra -D options here, or via the EV_EXTRA_DEFS environment variable. For example, if you run into compile problems because of missing memory fences (or you just want extra performance), you can tell EV to not support smp and threads via -DEV_NO_THREADS. Normal persons just press enter. Any extra -D options? [] Warning: prerequisite AnyEvent 5.29 not found. We have 4.91. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Checking if your kit is complete... Looks good Generating a Unix-style Makefile Writing Makefile for EV Writing MYMETA.yml and MYMETA.json ---- Unsatisfied dependencies detected during ---- ---- MLEHMANN/EV-4.17.tar.gz ---- AnyEvent [requires] Running make test Delayed until after prerequisites Running test for module 'AnyEvent' Running make for M/ML/MLEHMANN/AnyEvent-7.07.tar.gz Checksum for /export/home/fly1064/var/cpan/sources/authors/id/M/ML/MLEHMANN/AnyEvent-7.07.tar.gz ok AnyEvent-7.07/ AnyEvent-7.07/Makefile.PL AnyEvent-7.07/META.yml AnyEvent-7.07/Changes AnyEvent-7.07/META.json AnyEvent-7.07/constants.pl.PL AnyEvent-7.07/COPYING AnyEvent-7.07/lib/ AnyEvent-7.07/lib/AnyEvent.pm AnyEvent-7.07/lib/AnyEvent/ AnyEvent-7.07/lib/AnyEvent/IO.pm AnyEvent-7.07/lib/AnyEvent/Debug.pm AnyEvent-7.07/lib/AnyEvent/Handle.pm AnyEvent-7.07/lib/AnyEvent/Intro.pod AnyEvent-7.07/lib/AnyEvent/Loop.pm AnyEvent-7.07/lib/AnyEvent/Strict.pm AnyEvent-7.07/lib/AnyEvent/IO/ AnyEvent-7.07/lib/AnyEvent/IO/IOAIO.pm AnyEvent-7.07/lib/AnyEvent/IO/Perl.pm AnyEvent-7.07/lib/AnyEvent/Socket.pm AnyEvent-7.07/lib/AnyEvent/FAQ.pod AnyEvent-7.07/lib/AnyEvent/Log.pm AnyEvent-7.07/lib/AnyEvent/Util.pm AnyEvent-7.07/lib/AnyEvent/Impl/ AnyEvent-7.07/lib/AnyEvent/Impl/Tk.pm AnyEvent-7.07/lib/AnyEvent/Impl/EventLib.pm AnyEvent-7.07/lib/AnyEvent/Impl/Qt.pm AnyEvent-7.07/lib/AnyEvent/Impl/Event.pm AnyEvent-7.07/lib/AnyEvent/Impl/FLTK.pm AnyEvent-7.07/lib/AnyEvent/Impl/Cocoa.pm AnyEvent-7.07/lib/AnyEvent/Impl/Glib.pm AnyEvent-7.07/lib/AnyEvent/Impl/EV.pm AnyEvent-7.07/lib/AnyEvent/Impl/Irssi.pm AnyEvent-7.07/lib/AnyEvent/Impl/POE.pm AnyEvent-7.07/lib/AnyEvent/Impl/IOAsync.pm AnyEvent-7.07/lib/AnyEvent/Impl/Perl.pm AnyEvent-7.07/lib/AnyEvent/Util/ AnyEvent-7.07/lib/AnyEvent/Util/uts46data.pl AnyEvent-7.07/lib/AnyEvent/Util/idna.pl AnyEvent-7.07/lib/AnyEvent/DNS.pm AnyEvent-7.07/lib/AnyEvent/TLS.pm AnyEvent-7.07/lib/AE.pm AnyEvent-7.07/mktest AnyEvent-7.07/util/ AnyEvent-7.07/util/gen_uts46data AnyEvent-7.07/util/tst_uts46data AnyEvent-7.07/README AnyEvent-7.07/eg/ AnyEvent-7.07/eg/listen AnyEvent-7.07/eg/connect AnyEvent-7.07/eg/bench2 AnyEvent-7.07/eg/ae2.pl AnyEvent-7.07/eg/runbench2 AnyEvent-7.07/eg/handle AnyEvent-7.07/eg/runbench AnyEvent-7.07/eg/bench AnyEvent-7.07/eg/ae0.pl AnyEvent-7.07/t/ AnyEvent-7.07/t/80_ssltest.t AnyEvent-7.07/t/67_tk_01_basic.t AnyEvent-7.07/t/62_cocoa_07_io.t AnyEvent-7.07/t/62_cocoa_02_signals.t AnyEvent-7.07/t/69_ev_05_dns.t AnyEvent-7.07/t/07_io.t AnyEvent-7.07/t/65_event_09_multi.t AnyEvent-7.07/t/69_ev_04_condvar.t AnyEvent-7.07/t/81_hosts.t AnyEvent-7.07/t/04_condvar.t AnyEvent-7.07/t/68_poe_05_dns.t AnyEvent-7.07/t/68_poe_09_multi.t AnyEvent-7.07/t/11_io_perl.t AnyEvent-7.07/t/66_ioasync_05_dns.t AnyEvent-7.07/t/66_ioasync_01_basic.t AnyEvent-7.07/t/61_fltk_05_dns.t AnyEvent-7.07/t/64_glib_05_dns.t AnyEvent-7.07/t/64_glib_02_signals.t AnyEvent-7.07/t/62_cocoa_05_dns.t AnyEvent-7.07/t/65_event_07_io.t AnyEvent-7.07/t/64_glib_04_condvar.t AnyEvent-7.07/t/65_event_04_condvar.t AnyEvent-7.07/t/61_fltk_01_basic.t AnyEvent-7.07/t/61_fltk_03_child.t AnyEvent-7.07/t/65_event_05_dns.t AnyEvent-7.07/t/68_poe_03_child.t AnyEvent-7.07/t/68_poe_01_basic.t AnyEvent-7.07/t/64_glib_01_basic.t AnyEvent-7.07/t/66_ioasync_02_signals.t AnyEvent-7.07/t/handle/ AnyEvent-7.07/t/handle/03_http_req.t AnyEvent-7.07/t/handle/04_listen.t AnyEvent-7.07/t/handle/01_readline.t AnyEvent-7.07/t/handle/02_write.t AnyEvent-7.07/t/67_tk_05_dns.t AnyEvent-7.07/t/61_fltk_02_signals.t AnyEvent-7.07/t/69_ev_09_multi.t AnyEvent-7.07/t/66_ioasync_07_io.t AnyEvent-7.07/t/00_load.t AnyEvent-7.07/t/65_event_02_signals.t AnyEvent-7.07/t/64_glib_07_io.t AnyEvent-7.07/t/69_ev_02_signals.t AnyEvent-7.07/t/67_tk_02_signals.t AnyEvent-7.07/t/64_glib_09_multi.t AnyEvent-7.07/t/68_poe_07_io.t AnyEvent-7.07/t/66_ioasync_09_multi.t AnyEvent-7.07/t/69_ev_01_basic.t AnyEvent-7.07/t/09_multi.t AnyEvent-7.07/t/61_fltk_09_multi.t AnyEvent-7.07/t/03_child.t AnyEvent-7.07/t/62_cocoa_04_condvar.t AnyEvent-7.07/t/io_common AnyEvent-7.07/t/67_tk_09_multi.t AnyEvent-7.07/t/65_event_01_basic.t AnyEvent-7.07/t/08_idna.t AnyEvent-7.07/t/10_loadall.t AnyEvent-7.07/t/62_cocoa_03_child.t AnyEvent-7.07/t/69_ev_03_child.t AnyEvent-7.07/t/61_fltk_07_io.t AnyEvent-7.07/t/61_fltk_04_condvar.t AnyEvent-7.07/t/66_ioasync_03_child.t AnyEvent-7.07/t/12_io_ioaio.t AnyEvent-7.07/t/62_cocoa_09_multi.t AnyEvent-7.07/t/66_ioasync_04_condvar.t AnyEvent-7.07/t/65_event_03_child.t AnyEvent-7.07/t/05_dns.t AnyEvent-7.07/t/01_basic.t AnyEvent-7.07/t/67_tk_03_child.t AnyEvent-7.07/t/64_glib_03_child.t AnyEvent-7.07/t/67_tk_04_condvar.t AnyEvent-7.07/t/68_poe_02_signals.t AnyEvent-7.07/t/69_ev_07_io.t AnyEvent-7.07/t/68_poe_04_condvar.t AnyEvent-7.07/t/02_signals.t AnyEvent-7.07/t/62_cocoa_01_basic.t AnyEvent-7.07/t/06_socket.t AnyEvent-7.07/t/67_tk_07_io.t AnyEvent-7.07/MANIFEST CPAN.pm: Building M/ML/MLEHMANN/AnyEvent-7.07.tar.gz >>> /export/home/fly1064/bin/perl Makefile.PL Attempt to free unreferenced scalar: SV 0x10095b480, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 32. Attempt to free unreferenced scalar: SV 0x10095b558, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 33. Attempt to free unreferenced scalar: SV 0x10095b648, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 34. *** *** The EV module is recommended for even better performance, unless you *** have to use one of the other adaptors (Event, Glib, Tk, etc.). *** The Async::Interrupt module is highly recommended to efficiently avoid *** race conditions in/with other event loops. *** *** This module does not have ANY dependencies, even if it might look *** otherwise. If you are building a distribution package or have *** difficulties installing this package due to dependencies, report this *** to the packager as a bug. *** *** This module is guaranteed to stay 100% pure-perl, full-featured *** and performant, even without any of the optional modules. *** Checking if your kit is complete... Looks good Generating a Unix-style Makefile Writing Makefile for AnyEvent Writing MYMETA.yml and MYMETA.json >>> make cp lib/AnyEvent/Debug.pm blib/lib/AnyEvent/Debug.pm cp lib/AnyEvent/Impl/Perl.pm blib/lib/AnyEvent/Impl/Perl.pm cp lib/AnyEvent/Impl/POE.pm blib/lib/AnyEvent/Impl/POE.pm cp lib/AnyEvent/constants.pl blib/arch/AnyEvent/constants.pl cp lib/AnyEvent/Strict.pm blib/lib/AnyEvent/Strict.pm cp lib/AnyEvent/Log.pm blib/lib/AnyEvent/Log.pm cp lib/AnyEvent/Impl/IOAsync.pm blib/lib/AnyEvent/Impl/IOAsync.pm cp lib/AnyEvent/IO/IOAIO.pm blib/lib/AnyEvent/IO/IOAIO.pm cp lib/AnyEvent/Impl/Glib.pm blib/lib/AnyEvent/Impl/Glib.pm cp lib/AnyEvent/TLS.pm blib/lib/AnyEvent/TLS.pm cp lib/AnyEvent/Loop.pm blib/lib/AnyEvent/Loop.pm cp lib/AnyEvent/Impl/Tk.pm blib/lib/AnyEvent/Impl/Tk.pm cp lib/AnyEvent/IO/Perl.pm blib/lib/AnyEvent/IO/Perl.pm cp lib/AnyEvent/Impl/Cocoa.pm blib/lib/AnyEvent/Impl/Cocoa.pm cp lib/AnyEvent/IO.pm blib/lib/AnyEvent/IO.pm cp lib/AnyEvent/Util/idna.pl blib/lib/AnyEvent/Util/idna.pl cp lib/AnyEvent/Impl/Irssi.pm blib/lib/AnyEvent/Impl/Irssi.pm cp lib/AnyEvent/Intro.pod blib/lib/AnyEvent/Intro.pod cp lib/AnyEvent.pm blib/lib/AnyEvent.pm cp lib/AnyEvent/FAQ.pod blib/lib/AnyEvent/FAQ.pod cp lib/AnyEvent/Impl/EventLib.pm blib/lib/AnyEvent/Impl/EventLib.pm cp lib/AnyEvent/Socket.pm blib/lib/AnyEvent/Socket.pm cp lib/AE.pm blib/lib/AE.pm cp lib/AnyEvent/Impl/Qt.pm blib/lib/AnyEvent/Impl/Qt.pm cp lib/AnyEvent/Impl/FLTK.pm blib/lib/AnyEvent/Impl/FLTK.pm cp lib/AnyEvent/Handle.pm blib/lib/AnyEvent/Handle.pm cp lib/AnyEvent/Util/uts46data.pl blib/lib/AnyEvent/Util/uts46data.pl cp lib/AnyEvent/DNS.pm blib/lib/AnyEvent/DNS.pm cp lib/AnyEvent/Impl/EV.pm blib/lib/AnyEvent/Impl/EV.pm cp lib/AnyEvent/Util.pm blib/lib/AnyEvent/Util.pm cp lib/AnyEvent/Impl/Event.pm blib/lib/AnyEvent/Impl/Event.pm Manifying blib/man3/AE.3 Manifying blib/man3/AnyEvent.3 Manifying blib/man3/AnyEvent::DNS.3 Manifying blib/man3/AnyEvent::Debug.3 Manifying blib/man3/AnyEvent::FAQ.3 Manifying blib/man3/AnyEvent::Handle.3 Manifying blib/man3/AnyEvent::IO.3 Manifying blib/man3/AnyEvent::IO::IOAIO.3 Manifying blib/man3/AnyEvent::IO::Perl.3 Manifying blib/man3/AnyEvent::Impl::Cocoa.3 Manifying blib/man3/AnyEvent::Impl::EV.3 Manifying blib/man3/AnyEvent::Impl::Event.3 Manifying blib/man3/AnyEvent::Impl::EventLib.3 Manifying blib/man3/AnyEvent::Impl::FLTK.3 Manifying blib/man3/AnyEvent::Impl::Glib.3 Manifying blib/man3/AnyEvent::Impl::IOAsync.3 Manifying blib/man3/AnyEvent::Impl::Irssi.3 Manifying blib/man3/AnyEvent::Impl::POE.3 Manifying blib/man3/AnyEvent::Impl::Perl.3 Manifying blib/man3/AnyEvent::Impl::Qt.3 Manifying blib/man3/AnyEvent::Impl::Tk.3 Manifying blib/man3/AnyEvent::Intro.3 Manifying blib/man3/AnyEvent::Log.3 Manifying blib/man3/AnyEvent::Loop.3 Manifying blib/man3/AnyEvent::Socket.3 Manifying blib/man3/AnyEvent::Strict.3 Manifying blib/man3/AnyEvent::TLS.3 Manifying blib/man3/AnyEvent::Util.3 /export/home/fly1064/bin/perl "-Iblib/arch" "-Iblib/lib" constants.pl.PL constants.pl Attempt to free unreferenced scalar: SV 0x1002adff0, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 32. Attempt to free unreferenced scalar: SV 0x1002ae0c8, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 33. Attempt to free unreferenced scalar: SV 0x1002ae1b8, Perl interpreter: 0x10027fa10 at constants.pl.PL line 138, line 34. MLEHMANN/AnyEvent-7.07.tar.gz make -- OK Running make test >>> make test TEST_VERBOSE=1 Skip blib/lib/AnyEvent/Debug.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Perl.pm (unchanged) Skip blib/lib/AnyEvent/Impl/POE.pm (unchanged) Skip blib/arch/AnyEvent/constants.pl (unchanged) Skip blib/lib/AnyEvent/Strict.pm (unchanged) Skip blib/lib/AnyEvent/Log.pm (unchanged) Skip blib/lib/AnyEvent/Impl/IOAsync.pm (unchanged) Skip blib/lib/AnyEvent/IO/IOAIO.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Glib.pm (unchanged) Skip blib/lib/AnyEvent/TLS.pm (unchanged) Skip blib/lib/AnyEvent/Loop.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Tk.pm (unchanged) Skip blib/lib/AnyEvent/IO/Perl.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Cocoa.pm (unchanged) Skip blib/lib/AnyEvent/IO.pm (unchanged) Skip blib/lib/AnyEvent/Util/idna.pl (unchanged) Skip blib/lib/AnyEvent/Impl/Irssi.pm (unchanged) Skip blib/lib/AnyEvent/Intro.pod (unchanged) Skip blib/lib/AnyEvent.pm (unchanged) Skip blib/lib/AnyEvent/FAQ.pod (unchanged) Skip blib/lib/AnyEvent/Impl/EventLib.pm (unchanged) Skip blib/lib/AnyEvent/Socket.pm (unchanged) Skip blib/lib/AE.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Qt.pm (unchanged) Skip blib/lib/AnyEvent/Impl/FLTK.pm (unchanged) Skip blib/lib/AnyEvent/Handle.pm (unchanged) Skip blib/lib/AnyEvent/Util/uts46data.pl (unchanged) Skip blib/lib/AnyEvent/DNS.pm (unchanged) Skip blib/lib/AnyEvent/Impl/EV.pm (unchanged) Skip blib/lib/AnyEvent/Util.pm (unchanged) Skip blib/lib/AnyEvent/Impl/Event.pm (unchanged) PERL_DL_NONLAZY=1 /export/home/fly1064/bin/perl "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(1, 'blib/lib', 'blib/arch')" t/*.t t/handle/*.t t/00_load.t ................ 1..13 ok 1 ok 2 ok 3 ok 4 ok 5 ok 6 ok 7 ok 8 ok 9 ok 10 ok 11 ok 12 ok 13 ok t/01_basic.t ............... 1..6 ok 1 ok 2 ok 3 ok 4 ok 5 ok 6 ok t/02_signals.t ............. 1..5 ok 1 ok 2 ok 3 ok 4 ok 5 ok t/03_child.t ............... 1..50 ok 1 ok 2 # child 16161 ok 3 # 16161 == 16161 ok 4 # 3 == 768 >> 8 (768) ok 5 # 16162 == 16162 ok 6 # 7 == 1792 >> 8 (1792) ok 7 ok 8 ok 9 ok 10 ok 11 ok 12 # child 16163 ok 13 # 16163 == 16163 ok 14 # 3 == 768 >> 8 (768) ok 15 # 16164 == 16164 ok 16 # 7 == 1792 >> 8 (1792) ok 17 ok 18 ok 19 ok 20 ok 21 ok 22 # child 16165 ok 23 # 16165 == 16165 ok 24 # 3 == 768 >> 8 (768) ok 25 # 16166 == 16166 ok 26 # 7 == 1792 >> 8 (1792) ok 27 ok 28 ok 29 ok 30 ok 31 ok 32 # child 16167 ok 33 # 16167 == 16167 ok 34 # 3 == 768 >> 8 (768) ok 35 # 16168 == 16168 ok 36 # 7 == 1792 >> 8 (1792) ok 37 ok 38 ok 39 ok 40 ok 41 ok 42 # child 16169 ok 43 # 16169 == 16169 ok 44 # 3 == 768 >> 8 (768) ok 45 # 16170 == 16170 ok 46 # 7 == 1792 >> 8 (1792) ok 47 ok 48 ok 49 ok 50 ok t/04_condvar.t ............. 1..28 ok 1 ok 2 ok 3 ok 4 ok 5 # 7 == 7 ok 6 # 5 == 5 ok 7 # 7 == 7 ok 8 ok 9 # 5 == 5 ok 10 ok 11 ok 12 ok 13 ok 14 # kill at t/04_condvar.t line 43. ok 15 ok 16 ok 17 # ok 18 # kill at t/04_condvar.t line 57. ok 19 ok 20 ok 21 ok 22 ok 23 ok 24 ok 25 ok 26 ok 27 ok 28 ok t/05_dns.t ................. 1..5 ok 1 ok 2 ok 3 ok 4 # www.google.de => 74.125.20.94 ok 5 ok t/06_socket.t .............. 1..19 ok 1 ok 2 # ',' => ',' eq ',' ok 3 # 'localhost,' => ',' eq ',' ok 4 # 'localhost,443' => 'localhost,443' eq 'localhost,443' ok 5 # 'localhost:444,443' => 'localhost,444' eq 'localhost,444' ok 6 # '10.0.0.1,443' => '10.0.0.1,443' eq '10.0.0.1,443' ok 7 # '10.1:80,443' => '10.1,80' eq '10.1,80' ok 8 # '::1,443' => '::1,443' eq '::1,443' ok 9 # '::1:80,443' => '::1:80,443' eq '::1:80,443' ok 10 # '[::1]:80,443' => '::1,80' eq '::1,80' ok 11 # '[::1] 80,443' => '::1,80' eq '::1,80' ok 12 # '[::1] :,443' => ',' eq ',' ok 13 # '[::1]:,443' => ',' eq ',' ok 14 # '::1 smtp,443' => '::1,smtp' eq '::1,smtp' ok 15 # '[www.linux.org] 80,443' => 'www.linux.org,80' eq 'www.linux.org,80' ok 16 # '[10.1]:80,443' => '10.1,80' eq '10.1,80' ok 17 # '10.1 80,443' => '10.1,80' eq '10.1,80' ok 18 # 'SCALAR(0x1005506b0),443' => '2002:58c6:438b::10.0.0.17,443' eq '2002:58c6:438b::10.0.0.17,443' ok 19 # 'SCALAR(0x1005506b0),443' => '2002:58c6:438b::10.0.0.17,443' eq '2002:58c6:438b::10.0.0.17,443' ok t/07_io.t .................. 1..18 ok 1 ok 2 # GLOB(0x100285750),GLOB(0x100285948) ok 3 ok 4 ok 5 ok 6 ok 7 ok 8 ok 9 ok 10 ok 11 ok 12 ok 13 ok 14 ok 15 ok 16 ok 17 ok 18 ok t/08_idna.t ................ 1..11 ok 1 ok 2 ok 3 ok 4 ok 5 ok 6 ok 7 ok 8 ok 9 ok 10 ok 11 ok t/09_multi.t ............... 1..15 ok 1 ok 2 # 3 ok 3 # 0 ok 4 # 3 ok 5 # 0 ok 6 # 0 ok 7 # 3 ok 8 # 0 ok 9 # 0 ok 10 # 3 ok 11 # 16177 == 16177 == 16177 ok 12 # 9 == 9 == 9 ok 13 # 0 ok 14 # 7 ok 15 ok t/10_loadall.t ............. 1..24 ok 1 # AnyEvent require ok 2 # AnyEvent import ok 3 # AnyEvent::Util require ok 4 # AnyEvent::Util import ok 5 # AnyEvent::DNS require ok 6 # AnyEvent::DNS import ok 7 # AnyEvent::Socket require ok 8 # AnyEvent::Socket import ok 9 # AnyEvent::Loop require ok 10 # AnyEvent::Loop import ok 11 # AnyEvent::Strict require ok 12 # AnyEvent::Strict import ok 13 # AnyEvent::Debug require ok 14 # AnyEvent::Debug import ok 15 # AnyEvent::Handle require ok 16 # AnyEvent::Handle import ok 17 # AnyEvent::Log require ok 18 # AnyEvent::Log import ok 19 # AnyEvent::Impl::Perl require ok 20 # AnyEvent::Impl::Perl import ok 21 # AnyEvent::IO::Perl require ok 22 # AnyEvent::IO::Perl import ok 23 # AnyEvent::IO require ok 24 # AnyEvent::IO import ok t/11_io_perl.t ............. 1..37 ok 1 # MODEL=AnyEvent::IO::Perl ok 2 # MODEL=AnyEvent::IO::Perl ok 3 # aio_mkdir (/tmp/ae_io_testdir_16179~ 511) = (1) ok 4 # aio_mkdir (/tmp/ae_io_testdir_16179~ 511) = () ok 5 # aio_open (/tmp/ae_io_testdir_16179~/test 1281 438) = (GLOB(0x100368ba0)) ok 6 # aio_open (/tmp/ae_io_testdir_16179~/test 1281 438) = () ok 7 # aio_rmdir (/tmp/ae_io_testdir_16179~) = () ok 8 # aio_write (GLOB(0x100368ba0) tes--) = (5) ok 9 # aio_write (GLOB(0x100368ba0) test2) = (5) ok 10 # aio_write (GLOB(0x100368ba0) ) = (0) ok 11 # aio_seek (GLOB(0x100368ba0) 3 0) = (3) ok 12 # aio_write (GLOB(0x100368ba0) t1) = (2) ok 13 # aio_stat (GLOB(0x100368ba0)) = (2 35074531 33188 1 664 1 -1 10 1397245137 1397245137 1397245137 8192 16) ok 14 # stat size ok 15 # aio_close (GLOB(0x100368ba0)) = (1) ok 16 # aio_stat (/tmp/ae_io_testdir_16179~/test) = (2 35074531 33188 1 664 1 -1 10 1397245137 1397245137 1397245137 8192 16) ok 17 # stat size (10) ok 18 # aio_lstat (/tmp/ae_io_testdir_16179~/test) = (2 35074531 33188 1 664 1 -1 10 1397245137 1397245137 1397245137 8192 16) ok 19 # lstat size ok 20 # aio_rename (/tmp/ae_io_testdir_16179~/test /tmp/ae_io_testdir_16179~/test2) = (1) ok 21 # aio_readdir (/tmp/ae_io_testdir_16179~/nonexistent) = () ok 22 # aio_readdir (/tmp/ae_io_testdir_16179~) = (ARRAY(0x1002966b0)) ok 23 # res count ok 24 # res data (test2) ok 25 # aio_open (/tmp/ae_io_testdir_16179~/test2 0 0) = (GLOB(0x100355ea8)) ok 26 # aio_read (GLOB(0x100355ea8) 6) = (test1t) ok 27 # read 6 ok 28 # aio_read (GLOB(0x100355ea8) 7) = (est2) ok 29 # read 7 ok 30 # aio_read (GLOB(0x100355ea8) 8) = () ok 31 # read 8 ok 32 # aio_close (GLOB(0x100355ea8)) = (1) ok 33 # aio_load (/tmp/ae_io_testdir_16179~/test2) = (test1test2) ok 34 # load ok 35 # aio_unlink (/tmp/ae_io_testdir_16179~/test) = () ok 36 # aio_unlink (/tmp/ae_io_testdir_16179~/test2) = (1) ok 37 # aio_rmdir (/tmp/ae_io_testdir_16179~) = (1) ok t/12_io_ioaio.t ............ 1..37 ok 1 # MODEL=AnyEvent::IO::IOAIO ok 2 # MODEL=AnyEvent::IO::IOAIO ok 3 # aio_mkdir (/tmp/ae_io_testdir_16180~ 511) = (1) ok 4 # aio_mkdir (/tmp/ae_io_testdir_16180~ 511) = () ok 5 # aio_open (/tmp/ae_io_testdir_16180~/test 1281 438) = (*IO::AIO::fd#5) ok 6 # aio_open (/tmp/ae_io_testdir_16180~/test 1281 438) = () ok 7 # aio_rmdir (/tmp/ae_io_testdir_16180~) = () ok 8 # aio_write (*IO::AIO::fd#5 tes--) = (5) ok 9 # aio_write (*IO::AIO::fd#5 test2) = (5) ok 10 # aio_write (*IO::AIO::fd#5 ) = (0) ok 11 # aio_seek (*IO::AIO::fd#5 3 0) = (3) ok 12 # aio_write (*IO::AIO::fd#5 t1) = (2) ok 13 # aio_stat (*IO::AIO::fd#5) = (1) ok 14 # stat size ok 15 # aio_close (*IO::AIO::fd#5) = (1) ok 16 # aio_stat (/tmp/ae_io_testdir_16180~/test) = (1) ok 17 # stat size (10) ok 18 # aio_lstat (/tmp/ae_io_testdir_16180~/test) = (1) ok 19 # lstat size ok 20 # aio_rename (/tmp/ae_io_testdir_16180~/test /tmp/ae_io_testdir_16180~/test2) = (1) ok 21 # aio_readdir (/tmp/ae_io_testdir_16180~/nonexistent) = () ok 22 # aio_readdir (/tmp/ae_io_testdir_16180~) = (ARRAY(0x1002a2380)) ok 23 # res count ok 24 # res data (test2) ok 25 # aio_open (/tmp/ae_io_testdir_16180~/test2 0 0) = (*IO::AIO::fd#21) ok 26 # aio_read (*IO::AIO::fd#21 6) = (test1t) ok 27 # read 6 ok 28 # aio_read (*IO::AIO::fd#21 7) = (est2) ok 29 # read 7 ok 30 # aio_read (*IO::AIO::fd#21 8) = () ok 31 # read 8 ok 32 # aio_close (*IO::AIO::fd#21) = (1) ok 33 # aio_load (/tmp/ae_io_testdir_16180~/test2) = (test1test2) ok 34 # load ok 35 # aio_unlink (/tmp/ae_io_testdir_16180~/test) = () ok 36 # aio_unlink (/tmp/ae_io_testdir_16180~/test2) = (1) ok 37 # aio_rmdir (/tmp/ae_io_testdir_16180~) = (1) ok t/61_fltk_01_basic.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_02_signals.t ..... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_03_child.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_04_condvar.t ..... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_05_dns.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_07_io.t .......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/61_fltk_09_multi.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_01_basic.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_02_signals.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_03_child.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_04_condvar.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_05_dns.t ........ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_07_io.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/62_cocoa_09_multi.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_01_basic.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_02_signals.t ..... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_03_child.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_04_condvar.t ..... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_05_dns.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_07_io.t .......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/64_glib_09_multi.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_01_basic.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_02_signals.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_03_child.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_04_condvar.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_05_dns.t ........ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_07_io.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/65_event_09_multi.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_01_basic.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_02_signals.t .. skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_03_child.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_04_condvar.t .. skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_05_dns.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_07_io.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/66_ioasync_09_multi.t .... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_01_basic.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_02_signals.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_03_child.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_04_condvar.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_05_dns.t ........... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_07_io.t ............ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/67_tk_09_multi.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_01_basic.t ........ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_02_signals.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_03_child.t ........ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_04_condvar.t ...... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_05_dns.t .......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_07_io.t ........... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/68_poe_09_multi.t ........ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_01_basic.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_02_signals.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_03_child.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_04_condvar.t ....... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_05_dns.t ........... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_07_io.t ............ skipped: PERL_ANYEVENT_LOOP_TESTS not true t/69_ev_09_multi.t ......... skipped: PERL_ANYEVENT_LOOP_TESTS not true t/80_ssltest.t ............. skipped: no usable Net::SSLeay t/81_hosts.t ............... 1..2 ok 1 - resolved on first attempt ok 2 - resolved on second attempt ok t/handle/01_readline.t ..... 1..8 ok 1 - A line was read correctly ok 2 ok 3 - initial lines were read correctly ok 4 ok 5 ok 6 ok 7 ok 8 - second set of lines were read correctly ok t/handle/02_write.t ........ 1..7 ok 1 - first write ok 2 - second write ok 3 - third write ok 4 - first read chunk ok 5 - fourth write ok 6 - second read chunk ok 7 - received data ok t/handle/03_http_req.t ..... skipped: PERL_ANYEVENT_NET_TESTS environment variable not set t/handle/04_listen.t ....... 1..2 ok 1 - server received client data ok 2 - client received response ok All tests successful. Files=75, Tests=287, 14 wallclock secs ( 0.91 usr 0.75 sys + 8.90 cusr 1.80 csys = 12.36 CPU) Result: PASS MLEHMANN/AnyEvent-7.07.tar.gz make test TEST_VERBOSE=1 -- OK PPD for AnyEvent-7.07 already made Running make for M/ML/MLEHMANN/EV-4.17.tar.gz Prepending /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/arch /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/lib to PERL5LIB for 'get' Has already been unwrapped into directory /export/home/fly1064/var/cpan/build/EV-4.17-nsMHjm Prepending /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/arch /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/lib to PERL5LIB for 'make' CPAN.pm: Building M/ML/MLEHMANN/EV-4.17.tar.gz >>> make cp EV/MakeMaker.pm blib/lib/EV/MakeMaker.pm cp libev/ev.pod blib/lib/EV/libev.pod cp EV/EVAPI.h blib/lib/EV/EVAPI.h cp libev/ev.h blib/lib/EV/ev.h cp EV.pm blib/lib/EV.pm Running Mkbootstrap for EV () chmod 644 EV.bs /export/home/fly1064/bin/perl /export/home/fly1064/var/megalib/ExtUtils/xsubpp -typemap /export/home/fly1064/ap1003/lib/ExtUtils/typemap -typemap typemap EV.xs > EV.xsc && mv EV.xsc EV.c cc -c -Ilibev -D_REENTRANT -xarch=v9 -DUSE_SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O -DVERSION=\"4.17\" -DXS_VERSION=\"4.17\" -KPIC "-I/export/home/fly1064/ap1003/lib/CORE" -DEV_USE_MONOTONIC=1 -DEV_USE_REALTIME=0 -DEV_USE_SELECT=1 -DEV_USE_POLL=1 -DEV_USE_EPOLL=0 -DEV_USE_KQUEUE=0 -DEV_USE_PORT=0 -DEV_USE_INOTIFY=0 -DEV_USE_EVENTFD=0 -DEV_USE_SIGNALFD=0 EV.c "libev/ev.c", line 1125: warning: implicit function declaration: ldexpf "libev/ev.c", line 1152: warning: implicit function declaration: frexpf "libev/ev.c", line 1287: #error: "memory fences not defined for your architecture, please report" cc: acomp failed for EV.c make: *** [EV.o] Error 2 MLEHMANN/EV-4.17.tar.gz make -- NOT OK Prepending /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/arch /export/home/fly1064/var/cpan/build/AnyEvent-7.07-HYVSSw/blib/lib to PERL5LIB for 'test' Running make test Can't test without successful make Finished 2014-04-11T12:39:09