ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Makefile.PL
Revision: 1.21
Committed: Mon Dec 26 18:48:11 2005 UTC (18 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1, rel-1_9, rel-1_7
Changes since 1.20: +9 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.4 if ($] < 5.006) {
4     print <<EOF;
5    
6     ***
7     *** WARNING: This module is quite low-level and uses undocumented perl
8     *** internals to do it's job. While it seems to work fine with perl-5.8,
9     *** 5.7 and 5.6, it has not been tested with older versions. If it
10     *** compiles and passes the testsuite, it should work. Otherwise you
11 root 1.11 *** should either upgrade or fix it ;)
12 root 1.4 ***
13 root 1.18 *** Marc Lehmann <schmorp\@schmorp.de>
14 root 1.4 ***
15    
16     EOF
17     }
18 root 1.1
19 root 1.14 if (eval { require Event }) {
20 root 1.17 if ($Event::VERSION < 0.86 or $Event::VERSION == 0.88) {
21 pcg 1.16 print <<EOF
22    
23     ***
24     *** WARNING: Event version $Event::VERSION found, NOT building Event support.
25 root 1.17 ***
26 pcg 1.16 *** This version of Event is broken. The only currently known non-broken
27 root 1.20 *** versions of Event are 0.87 and 0.89+. Please install one of those
28 root 1.17 *** versions.
29     ***
30 pcg 1.16
31     EOF
32 root 1.14 } else {
33     $EVENT = 1;
34     $DEFINE .= " -DHAVE_EVENT=1";
35     print "\nEvent version $Event::VERSION found, building Event support.\n\n";
36     }
37     print "\n";
38     } else {
39     print "\n*** Event not found, not build Event support.\n\n";
40     }
41    
42 root 1.1 WriteMakefile(
43 root 1.5 dist => {
44     PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
45     COMPRESS => 'gzip -9v',
46     SUFFIX => '.gz',
47     },
48     NAME => "Coro",
49 root 1.1 VERSION_FROM => "Coro.pm",
50 root 1.7 DIR => ['Coro', ($EVENT ? 'Event' : ())],
51 root 1.6 PREREQ_PM => {
52 root 1.21 Scalar::Util => 0.00,
53    
54     # for Coro::Event
55 root 1.14 Event => 0.86,
56 root 1.21
57     # for Coro::AIO
58     IO::AIO => 1.6,
59     AnyEvent => 0,
60 root 1.5 },
61 root 1.7 PM => {
62 root 1.9 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
63 root 1.14
64     'Coro/State.pm' => '$(INST_LIBDIR)/Coro/State.pm',
65    
66     'Coro/MakeMaker.pm' => '$(INST_LIBDIR)/Coro/MakeMaker.pm',
67     'Coro/CoroAPI.h' => '$(INST_LIBDIR)/Coro/CoroAPI.h',
68    
69     'Coro/Cont.pm' => '$(INST_LIBDIR)/Coro/Cont.pm',
70    
71     'Coro/Specific.pm' => '$(INST_LIBDIR)/Coro/Specific.pm',
72    
73     'Coro/Timer.pm' => '$(INST_LIBDIR)/Coro/Timer.pm',
74     'Coro/Signal.pm' => '$(INST_LIBDIR)/Coro/Signal.pm',
75     'Coro/Channel.pm' => '$(INST_LIBDIR)/Coro/Channel.pm',
76     'Coro/Semaphore.pm' => '$(INST_LIBDIR)/Coro/Semaphore.pm',
77     'Coro/SemaphoreSet.pm'=> '$(INST_LIBDIR)/Coro/SemaphoreSet.pm',
78     'Coro/RWLock.pm' => '$(INST_LIBDIR)/Coro/RWLock.pm',
79 root 1.21
80     'Coro/AIO.pm' => '$(INST_LIBDIR)/Coro/AIO.pm',
81 root 1.8 },
82 root 1.1 );
83    
84 root 1.3 sub MY::postamble {
85     <<EOF;
86    
87     # set \$VERSION in all modules
88     setver:
89 root 1.19 \$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
90 root 1.3
91     EOF
92     }
93    
94