You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2002/05/21 14:24:59 UTC

cvs commit: apache-1.3 configure

martin      02/05/21 05:24:59

  Modified:    src      CHANGES
               src/main http_main.c
               src/include httpd.h
               .        configure
  Log:
  Get rid of DEFAULT_XFERLOG as it is not used anywhere. It was
  preserved by the build system, printed with "httpd -V", but
  apart from that completely ignored: the default transfer log
  is to not produce any transfer log.
  
  Revision  Changes    Path
  1.1821    +6 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1820
  retrieving revision 1.1821
  diff -u -r1.1820 -r1.1821
  --- CHANGES	17 May 2002 18:01:56 -0000	1.1820
  +++ CHANGES	21 May 2002 12:24:58 -0000	1.1821
  @@ -1,5 +1,11 @@
   Changes with Apache 1.3.25
   
  +  *) Get rid of DEFAULT_XFERLOG as it is not used anywhere. It was
  +     preserved by the build system, printed with "httpd -V", but
  +     apart from that completely ignored: the default transfer log
  +     is to not produce any transfer log.
  +     [Martin Kraemer]
  +
     *) Fixed sending of binary files under Cygwin.  PR 9185.
        [Cliff Woolley]
   
  
  
  
  1.584     +0 -3      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.583
  retrieving revision 1.584
  diff -u -r1.583 -r1.584
  --- http_main.c	19 May 2002 04:55:38 -0000	1.583
  +++ http_main.c	21 May 2002 12:24:59 -0000	1.584
  @@ -4112,9 +4112,6 @@
   #ifdef DEFAULT_LOCKFILE
       printf(" -D DEFAULT_LOCKFILE=\"" DEFAULT_LOCKFILE "\"\n");
   #endif
  -#ifdef DEFAULT_XFERLOG
  -    printf(" -D DEFAULT_XFERLOG=\"" DEFAULT_XFERLOG "\"\n");
  -#endif
   #ifdef DEFAULT_ERRORLOG
       printf(" -D DEFAULT_ERRORLOG=\"" DEFAULT_ERRORLOG "\"\n");
   #endif
  
  
  
  1.360     +0 -9      apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.359
  retrieving revision 1.360
  diff -u -r1.359 -r1.360
  --- httpd.h	21 Mar 2002 17:13:04 -0000	1.359
  +++ httpd.h	21 May 2002 12:24:59 -0000	1.360
  @@ -158,15 +158,6 @@
   #define DEFAULT_GROUP "#-1"
   #endif
   
  -/* The name of the log files */
  -#ifndef DEFAULT_XFERLOG
  -#if defined(OS2) || defined(WIN32)
  -#define DEFAULT_XFERLOG "logs/access.log"
  -#else
  -#define DEFAULT_XFERLOG "logs/access_log"
  -#endif
  -#endif /* DEFAULT_XFERLOG */
  -
   #ifndef DEFAULT_ERRORLOG
   #if defined(OS2) || defined(WIN32)
   #define DEFAULT_ERRORLOG "logs/error.log"
  
  
  
  1.137     +0 -2      apache-1.3/configure
  
  Index: configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.136
  retrieving revision 1.137
  diff -u -r1.136 -r1.137
  --- configure	13 Mar 2002 21:05:27 -0000	1.136
  +++ configure	21 May 2002 12:24:59 -0000	1.137
  @@ -1251,7 +1251,6 @@
       echo "       DEFAULT_PIDLOG: ${runtimedir_relative}${thetarget}.pid"
       echo "   DEFAULT_SCOREBOARD: ${runtimedir_relative}${thetarget}.scoreboard"
       echo "     DEFAULT_LOCKFILE: ${runtimedir_relative}${thetarget}.lock"
  -    echo "      DEFAULT_XFERLOG: ${logfiledir_relative}access_log"
       echo "     DEFAULT_ERRORLOG: ${logfiledir_relative}error_log"
       echo "    TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types"
       echo "   SERVER_CONFIG_FILE: ${sysconfdir_relative}${thetarget}.conf"
  @@ -1350,7 +1349,6 @@
   echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}${thetarget}.pid\"'" >>$src/apaci
   echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}${thetarget}.scoreboard\"'" >>$src/apaci
   echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}${thetarget}.lock\"'" >>$src/apaci
  -echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci
   echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci
   echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci
   echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}${thetarget}.conf\"'" >>$src/apaci