rbb         01/02/10 10:09:28

  Modified:    .        configure.in
               .        configure.in
  Log:
  Fix the configure scripts, so that we don't try to substitute into
  test/Makefile unless we actually have a test directory.  The problem
  is that we don't distribute test directories with our tarballs, so our
  configure script outputs error messages.  This fixes that problem.
  
  Revision  Changes    Path
  1.121     +5 -1      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.120
  retrieving revision 1.121
  diff -u -d -b -w -u -r1.120 -r1.121
  --- configure.in      2001/02/10 14:13:49     1.120
  +++ configure.in      2001/02/10 18:09:26     1.121
  @@ -228,10 +228,14 @@
   APACHE_FAST_OUTPUT(Makefile modules/Makefile srclib/Makefile) 
   APACHE_FAST_OUTPUT(os/beos/Makefile os/os2/Makefile os/Makefile)
   APACHE_FAST_OUTPUT(os/unix/Makefile server/Makefile)
  -APACHE_FAST_OUTPUT(support/Makefile test/Makefile srclib/pcre/Makefile)
  +APACHE_FAST_OUTPUT(support/Makefile srclib/pcre/Makefile)
   for i in $AP_LIB_DIRS; do
     APACHE_FAST_OUTPUT(srclib/$i/Makefile)
   done
  +
  +if test -d ./test; then
  +    APACHE_FAST_OUTPUT(test/Makefile)
  +fi
   
   dnl ## Run configure for packages Apache uses
   dnl ## This has been placed at this location for a reason.  This allows
  
  
  
  1.223     +3 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.222
  retrieving revision 1.223
  diff -u -d -b -w -u -r1.222 -r1.223
  --- configure.in      2001/02/08 22:12:20     1.222
  +++ configure.in      2001/02/10 18:09:27     1.223
  @@ -904,7 +904,9 @@
       fi
   done
   
  +if test -d ./test; then
   MAKEFILE3="test/Makefile"
  +fi
   AC_SUBST(SUBDIRS)
   
   if test -n "$CPPFLAGS"; then
  
  
  

Reply via email to