gozer       2004/09/18 15:52:09

  Modified:    .        Makefile.PL
  Log:
  For static builds, need to run httpd's ./configure a tad earlier to make sure
  apr generated headers are in place.
  
  Revision  Changes    Path
  1.160     +4 -4      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.159
  retrieving revision 1.160
  diff -u -r1.159 -r1.160
  --- Makefile.PL       11 Sep 2004 00:07:33 -0000      1.159
  +++ Makefile.PL       18 Sep 2004 22:52:09 -0000      1.160
  @@ -233,6 +233,10 @@
           }
       }
   
  +    if ($build->should_build_apache) {
  +        $build->configure_apache();
  +    }
  +
       my $httpd_version = $build->httpd_version;
       unless ($httpd_version) {
           error 'Unable to determine server version, aborting.';
  @@ -273,10 +277,6 @@
   
       #ModPerl::BuildMM will use Apache::BuildConfig in subdir/Makefile.PL's
       $build->save;
  -
  -    if ($build->should_build_apache) {
  -        $build->configure_apache();
  -    }
   
       ModPerl::TestRun->generate_script;
       ModPerl::TestReport->generate_script;
  
  
  

Reply via email to