| Revision: | 1.5 |
| Committed: | Sat Mar 22 23:08:41 2003 UTC (22 years, 7 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-2_0, rel-2_1, rel-1_1, rel-1_0, rel-1_9, rel-1_2, rel-1_5, rel-1_4, rel-1_7, rel-1_6, rel-1_31 |
| Changes since 1.4: | +7 -0 lines |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | use ExtUtils::MakeMaker; |
| 2 | root | 1.2 | use Event::MakeMaker; |
| 3 | root | 1.1 | |
| 4 | use 5.005; | ||
| 5 | |||
| 6 | use Config; | ||
| 7 | |||
| 8 | $|=1; | ||
| 9 | |||
| 10 | root | 1.2 | WriteMakefile(Event::MakeMaker::event_args( |
| 11 | root | 1.1 | NAME => "Coro::Event", |
| 12 | VERSION_FROM => "Event.pm", | ||
| 13 | DEFINE => $DEFINE, | ||
| 14 | DIR => [], | ||
| 15 | root | 1.5 | PM => { |
| 16 | 'Event.pm' => '$(INST_LIBDIR)/Event.pm', | ||
| 17 | 'Handle.pm' => '$(INST_LIBDIR)/Handle.pm', | ||
| 18 | 'Socket.pm' => '$(INST_LIBDIR)/Socket.pm', | ||
| 19 | 'Util.pm' => '$(INST_LIBDIR)/Util.pm', | ||
| 20 | 'Select.pm' => '$(INST_LIBDIR)/Select.pm', | ||
| 21 | }, | ||
| 22 | root | 1.2 | )); |
| 23 | root | 1.1 | |
| 24 | |||
| 25 |