]> sipb.mit.edu Git - ikiwiki.git/blob - doc/patchqueue/explicit-prereqs.mdwn
web commit by http://id.inelegant.org/
[ikiwiki.git] / doc / patchqueue / explicit-prereqs.mdwn
1 You'll might want to make some of these optional, but given the strange behaviour when old versions of certain modules are used, this is a nice sanity check.
2 <pre>
3 Index: Makefile.PL
4 ===================================================================
5 --- Makefile.PL (revision 2626)
6 +++ Makefile.PL (working copy)
7 @@ -71,4 +71,20 @@
8         PREFIX          => "/usr/local",
9         PM_FILTER       => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
10         MAN1PODS        => {},
11 +       PREREQ_PM   => {
12 +        'Text::Markdown'   => 0,
13 +        'URI'              => 0,
14 +        'HTML::Parser'     => 0,
15 +        'CGI::Session'     => 0,
16 +        'CGI::FormBuilder' => 3.02.02,
17 +        'Mail::Sendmail'   => 0,
18 +        'Time::Duration'   => 0,
19 +        'DateTime'         => 0,
20 +        'HTML::Scrubber'   => 0,
21 +        'RPC::XML'         => 0,
22 +        'XML::Simple'      => 0,
23 +        'XML::Feed'        => 0,
24 +        'File::MimeInfo'   => 0,
25 +        'Locale::gettext'  => 1.04
26 +    }
27  );
28 </pre>