joes 2003/07/20 11:13:39
Modified: build xsbuilder.pl
glue/perl Makefile.PL
Log:
Need to use ModPerl::MM to install Apache::Request into Apache2 directory
Revision Changes Path
1.9 +3 -3 httpd-apreq-2/build/xsbuilder.pl
Index: xsbuilder.pl
===================================================================
RCS file: /home/cvs/httpd-apreq-2/build/xsbuilder.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xsbuilder.pl 29 Jun 2003 23:13:32 -0000 1.8
+++ xsbuilder.pl 20 Jul 2003 18:13:39 -0000 1.9
@@ -203,8 +203,8 @@
# XXX probably should gut EU::MM and use MP::MM instead
my $txt = qq{
$self->{noedit_warning_hash}
-
-use ExtUtils::MakeMaker ();
+use Apache2;
+use ModPerl::MM;
local \$MMARGS ;
@@ -217,7 +217,7 @@
\$MMARGS ||= {} ;
-ExtUtils::MakeMaker::WriteMakefile(
+ModPerl::MM::WriteMakefile(
'NAME' => '$class',
'VERSION' => '0.01',
'TYPEMAPS' => [qw(@$mp2_typemaps $typemap)],
1.6 +4 -3 httpd-apreq-2/glue/perl/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/httpd-apreq-2/glue/perl/Makefile.PL,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Makefile.PL 15 Jul 2003 20:09:34 -0000 1.5
+++ Makefile.PL 20 Jul 2003 18:13:39 -0000 1.6
@@ -1,4 +1,5 @@
-use ExtUtils::MakeMaker;
+use Apache2;
+use ModPerl::MM;
use 5.005;
@@ -27,8 +28,8 @@
Apache::TestMM::filter_args();
Apache::TestMM::generate_script("t/TEST");
-WriteMakefile(
- NAME => 'httpd-apreq-2',
+ModPerl::MM::WriteMakefile(
+ NAME => 'libapreq',
VERSION => '0.01',
DIR => [qw(xs)],
clean => { DIRS => "blib", FILES => "t/TEST @scripts" },