| Line | |
|---|
| 1 | use 5.008008; |
|---|
| 2 | use ExtUtils::MakeMaker; |
|---|
| 3 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
|---|
| 4 | # the contents of the Makefile that is written. |
|---|
| 5 | WriteMakefile( |
|---|
| 6 | NAME => 'Apache2::BalanceLogic', |
|---|
| 7 | VERSION_FROM => 'lib/Apache2/BalanceLogic.pm', # finds $VERSION |
|---|
| 8 | PREREQ_PM => { |
|---|
| 9 | Apache2::RequestRec => 2.000002, |
|---|
| 10 | Apache2::RequestIO => 2.000002, |
|---|
| 11 | Apache2::Connection => 2.000002, |
|---|
| 12 | APR::Table => 0.009000, |
|---|
| 13 | Apache2::Const => 2.000002, |
|---|
| 14 | YAML => 0.65, |
|---|
| 15 | CGI::Cookie => 1.26, |
|---|
| 16 | Net::CIDR::Lite => 0.20, |
|---|
| 17 | UNIVERSAL::require => 0.11, |
|---|
| 18 | }, |
|---|
| 19 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
|---|
| 20 | (ABSTRACT_FROM => 'lib/Apache2/BalanceLogic.pm', # retrieve abstract from module |
|---|
| 21 | AUTHOR => 'Takeshi Miki <miki@cpan.org>') : ()), |
|---|
| 22 | LIBS => [''], # e.g., '-lm' |
|---|
| 23 | DEFINE => '', # e.g., '-DHAVE_SOMETHING' |
|---|
| 24 | INC => '-I.', # e.g., '-I. -I/usr/include/other' |
|---|
| 25 | # Un-comment this if you add C files to link with later: |
|---|
| 26 | # OBJECT => '$(O_FILES)', # link all the C files too |
|---|
| 27 | ); |
|---|