@@ -0,0 +1,35 @@
+--- Values.pm.orig 2007-02-24 04:26:27.000000000 +0100
++++ Values.pm 2007-02-24 04:26:42.000000000 +0100
+@@ -40,7 +40,7 @@
+
+ =head1 USER METHODS
+
+-=head2 C<directive($directive, [$parser, [$default, [$whence]]])
++=head2 C<directive($directive, [$parser, [$default, [$whence]]])>
+
+ Defines a directive named $directive for the configuration file. You
+ may optionally specify a parsing function or method for the directive,
+@@ -77,7 +77,7 @@
+ }
+
+
+-=head2 C<required($directive, [$parser, [$whence]])
++=head2 C<required($directive, [$parser, [$whence]])>
+
+ Defines a directive which must be specified in the configuration file.
+
+diff -uNr Makefile.PL.orig Makefile.PL
+--- Makefile.PL.orig 1970-01-01 01:00:00.000000000 +0100
++++ Makefile.PL 2007-02-24 04:30:19.000000000 +0100
+@@ -0,0 +1,11 @@
++use ExtUtils::MakeMaker;
++
++WriteMakefile(
++ 'NAME' => 'ConfigReader::DirectiveStyle',
++ 'DISTNAME' => 'ConfigReader',
++ 'VERSION_FROM' => 'DirectiveStyle.pm',
++ 'PMLIBDIRS' => ['ConfigReader'],
++ 'linkext' => { LINKTYPE=>'' }, # no link needed
++ 'dist' => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
++ 'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'},
++);
|