Subject: | Apache::Request requisite in Build.PL |
Hi Michael,
I was testing on my laptop where I have not installed Apache::Request which caused the tests to fail. I have attached a patch for Build.PL to check for this module.
Also, I don't see anywhere in the docs where you mention what version of mod_perl that this module works with. Did you test under both mp1 and mp2? That was my first thought as to why my tests were failing. As I'm sure you know, the API has changed rather considerably between these releases. The tests all passed for me under mp1 once I installed Apache::Request.
Thanks,
William
--- Build.PL.orig 2004-11-13 07:32:21.000000000 -0500
+++ Build.PL 2004-11-13 07:32:41.000000000 -0500
@@ -11,6 +11,7 @@
'Exporter' => 0,
'Apache' => 0,
'Test::More' => 0,
+ 'Apache::Request' => 0,
},
create_makefile_pl => 'passthrough',
create_readme => 1,