38 | | - NetAddr::IP >= 4.x. 3.x may work, however 4.x has been current on all of my development platforms for more than 5 years. |
39 | | - CGI::Carp |
40 | | - DBI |
41 | | - File::Path |
42 | | - POSIX |
43 | | - Sys::!SigAction. This isn't strictly required; it's used in an example hook for validating customer IDs against an external database. |
44 | | - Sys::Syslog |
| 38 | - Standard modules: |
| 39 | These should be included in any base Perl install |
| 40 | - File::Path |
| 41 | - CGI::Carp |
| 42 | - POSIX |
| 43 | - Sys::Syslog |
| 44 | - Extra modules: |
| 45 | - NetAddr::IP >= 4.x. 3.x may work, however 4.x has been current on all of my development platforms for more than 5 years. |
| 46 | - DBI |
| 47 | - DBD::Pg |
| 48 | - Sys::!SigAction. This isn't strictly required; it's used in an example hook for validating customer IDs against an external database. It could arguably be replaced with sigaction() from the POSIX module when using Perl >= 5.8.2. See eg [http://search.cpan.org/~lbaxter/Sys-SigAction-0.11/lib/Sys/SigAction.pm Sys::SigAction] for some thoughts on the gritty details. |