Fix configure fault.

This commit is contained in:
Vanilla I. Shu 2001-05-27 05:44:58 +00:00
parent 4a32dc994b
commit c14321705b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43106
2 changed files with 15 additions and 5 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= Apache-Filter
PORTVERSION= 1.018
PORTREVISION= 1
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Apache

View File

@ -1,10 +1,11 @@
--- Makefile.PL.orig Wed May 2 15:21:00 2001
+++ Makefile.PL Wed May 2 15:21:25 2001
--- Makefile.PL.orig Sun Apr 8 15:24:25 2001
+++ Makefile.PL Sat May 26 15:36:16 2001
@@ -1,14 +1,14 @@
use strict;
use ExtUtils::MakeMaker;
-use lib 't/lib'; # distributed here until changes are incorporated into the real version
-use Apache::test qw(have_httpd);
+# use lib 't/lib'; # distributed here until changes are incorporated into the real version
use Apache::test qw(have_httpd);
-
-my %params = Apache::test->get_test_params();
-chomp (my $cwd = `pwd`);
@ -12,8 +13,6 @@
- (%params,
- include => do {local $/; <DATA>});
-*MY::test = sub { Apache::test->MM_test(%params) } if have_httpd();
+# use lib 't/lib'; # distributed here until changes are incorporated into the real version
+# use Apache::test qw(have_httpd);
+#
+# my %params = Apache::test->get_test_params();
+# chomp (my $cwd = `pwd`);
@ -24,3 +23,13 @@
my $module = 'Apache::Filter';
my ($name, $dir);
@@ -28,9 +28,6 @@
),
},
'clean' => {FILES => "t/httpd t/httpd.conf t/error_log"},
- 'PREREQ_PM' => {
- have_httpd() ? ('mod_perl' => '1.24_01') : (),
- },
);
##################################################################