| Revision: | 1.9 |
| Committed: | Sun Apr 27 16:56:17 2008 UTC (18 years, 4 months ago) by elmex |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-4_04, rel-3_41, rel-4_0, rel-4_05, rel-3_5, rel-3_4, rel-3_3, rel-4_03 |
| Changes since 1.8: | +1 -0 lines |
| Log Message: | added IO::AnyEvent as AnyEvent::Handle and AnyEvent::Socket, including tests |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | use ExtUtils::MakeMaker; |
| 2 | |||
| 3 | root | 1.3 | use 5.008; |
| 4 | |||
| 5 | print <<EOF; | ||
| 6 | |||
| 7 | *** | ||
| 8 | root | 1.8 | *** The EV or Event modules are recommended for performance, unless |
| 9 | *** you have to use one of the other adaptors (Glib, Tk, etc.). | ||
| 10 | root | 1.3 | *** |
| 11 | |||
| 12 | EOF | ||
| 13 | root | 1.1 | |
| 14 | WriteMakefile( | ||
| 15 | dist => { | ||
| 16 | root | 1.2 | PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 17 | root | 1.1 | COMPRESS => 'gzip -9v', |
| 18 | SUFFIX => '.gz', | ||
| 19 | }, | ||
| 20 | elmex | 1.9 | test => { TESTS => "t/*.t t/handle/*.t" }, |
| 21 | root | 1.3 | NAME => "AnyEvent", |
| 22 | root | 1.2 | VERSION_FROM => "lib/AnyEvent.pm", |
| 23 | root | 1.1 | ); |
| 24 |