stas 2003/08/07 09:30:33
Modified: . Makefile.PL Log: don't require apr-config for win32 untill apxs issues are resolved there Revision Changes Path 1.115 +4 -1 modperl-2.0/Makefile.PL Index: Makefile.PL =================================================================== RCS file: /home/cvs/modperl-2.0/Makefile.PL,v retrieving revision 1.114 retrieving revision 1.115 diff -u -r1.114 -r1.115 --- Makefile.PL 7 Aug 2003 16:29:19 -0000 1.114 +++ Makefile.PL 7 Aug 2003 16:30:33 -0000 1.115 @@ -358,6 +358,9 @@ sub apache_check { my $build = shift; + # XXX: need to fix that + return if WIN32; + # we need to know where apr-config and apu-configs are # which sometimes aren't placed into the same dir with apxs/httpd unless ($build->apr_config_path) { @@ -502,7 +505,7 @@ my $env = Apache::TestConfig->passenv_makestr(); - my $preamble = Apache::TestConfig::WIN32 ? "" : <<EOF; + my $preamble = WIN32 ? "" : <<EOF; PASSENV = $env EOF