You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/05/26 00:32:40 UTC

cvs commit: httpd-2.0 buildconf

jerenkrantz    02/05/25 15:32:40

  Modified:    .        buildconf
  Log:
  Add support for ${AUTOHEADER} and ${AUTOCONF} in buildconf
  (apr and apr-util already support this convention.)
  
  Revision  Changes    Path
  1.26      +3 -3      httpd-2.0/buildconf
  
  Index: buildconf
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/buildconf,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- buildconf	13 Mar 2002 20:47:39 -0000	1.25
  +++ buildconf	25 May 2002 22:32:40 -0000	1.26
  @@ -115,14 +115,14 @@
   }
   
   echo rebuilding $pcre_configure
  -(cd srclib/pcre && autoconf)
  +(cd srclib/pcre && ${AUTOCONF:-autoconf})
   
   echo rebuilding $config_h_in
   rm -f $config_h_in
  -autoheader 2>&1 | grep -v "$cross_compile_warning"
  +${AUTOHEADER:-autoheader} 2>&1 | grep -v "$cross_compile_warning"
   
   echo rebuilding configure
   rm -f config.cache
  -autoconf 2>&1 | grep -v "$cross_compile_warning"
  +${AUTOCONF:-autoconf} 2>&1 | grep -v "$cross_compile_warning"
   
   exit 0