joes 2002/11/24 07:14:46
Modified: . Makefile.PL ToDo
Log:
Move 'blib/arch' to front of @ISA. This prevents a prior (incompatible)
install of Apache::Request from interfering with our tests.
Revision Changes Path
1.13 +3 -3 httpd-apreq/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/httpd-apreq/Makefile.PL,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- Makefile.PL 17 Nov 2002 23:18:04 -0000 1.12
+++ Makefile.PL 24 Nov 2002 15:14:45 -0000 1.13
@@ -83,8 +83,8 @@
my $self = shift;
chomp(my $str = $self->MM::pasthru);
join $/, "$str\\",
- "\t".'DEFINE="$(DEFINE)"',
- "";
+ "\t".'DEFINE="$(DEFINE)"',
+ "";
}
sub MY::postamble {
return <<'EOF';
@@ -97,7 +97,7 @@
}
__DATA__
<Perl>
- push @INC, "blib/arch";
+ unshift @INC, "blib/arch";
</Perl>
PerlModule Apache::PerlRun
PerlModule Apache::Request
1.8 +2 -4 httpd-apreq/ToDo
Index: ToDo
===================================================================
RCS file: /home/cvs/httpd-apreq/ToDo,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ToDo 4 Nov 2002 03:15:37 -0000 1.7
+++ ToDo 24 Nov 2002 15:14:45 -0000 1.8
@@ -10,14 +10,12 @@
o should probably handle Apache::Request->param http://blah.com/?foo
like CGI.pm does (turn it into a param named "keywords")
-o libapreq.so ?
-
o mmap upload files ?
-o port to Mac OS/X
-
o improve/automate build process for c, dtcl (autoconf support?)
o Fix our Apache::Test-based test suite
+
+o Document build/install process for OS X.
o optional build/link of libapreq.a directly into httpd?