cvsuser 02/03/22 15:12:16
Modified: P5EEx/Blue Makefile.PL
Log:
added dependencies for AOP
Revision Changes Path
1.13 +13 -10 p5ee/P5EEx/Blue/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /cvs/public/p5ee/P5EEx/Blue/Makefile.PL,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -w -r1.12 -r1.13
--- Makefile.PL 12 Mar 2002 17:06:29 -0000 1.12
+++ Makefile.PL 22 Mar 2002 23:12:16 -0000 1.13
@@ -1,6 +1,6 @@
######################################################################
-## File: $Id: Makefile.PL,v 1.12 2002/03/12 17:06:29 spadkins Exp $
+## File: $Id: Makefile.PL,v 1.13 2002/03/22 23:12:16 spadkins Exp $
######################################################################
use ExtUtils::MakeMaker;
@@ -28,15 +28,18 @@
(map {("bin/$_.PL" => "bin/$_")} @bin_programs )},
'EXE_FILES' => [ (map {"bin/$_"} @bin_programs) ],
'PREREQ_PM' => { # I haven't yet determined what the minimum versions should
be
- 'Fatal' => 0,
- 'Error' => 0,
- 'Exception::Class' => 0,
- 'Data::Dumper' => 0,
- 'Storable' => 0,
- 'Compress::Zlib' => 0,
- 'MIME::Base64' => "2.1",
- 'Date::Parse' => 0,
- 'Date::Format' => 0,
+ 'Aspect' => 0, # used for debugging
+ 'Class::MethodMaker' => 0, # [prereq for Aspect]
auto-generate methods
+ 'Compress::Zlib' => 0, # for compressed serialization
and browser responses
+ 'Data::Dumper' => 0, # used for debugging
+ 'Date::Parse' => 0, # date support
+ 'Date::Format' => 0, # date support
+ 'Error' => 0, # allows try/catch syntax for
exceptions (deprecated)
+ 'Exception::Class' => 0, # allows exception hierarchies
+ 'Fatal' => 0, # causes perl functions to throw
exceptions
+ 'Hook::LexWrap' => 0, # [prereq for Aspect] support
PRE/POST processing for subs
+ 'MIME::Base64' => "2.1", # used for turning binary
(serialized?) data into text (Sessions)
+ 'Storable' => 0, # used for serialization
everywhere
},
'clean' => { FILES => '$(EXE_FILES)' },
'linkext' => { LINKTYPE=>'' }, # no link needed