You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Jim Jagielski <ji...@hyperreal.com> on 1996/03/16 23:44:51 UTC

cvs commit: apache/src CHANGES Configure INSTALL

jim         96/03/16 14:44:51

  Modified:    src       CHANGES Configure INSTALL
  Log:
  
  
  Revision  Changes    Path
  1.9       +8 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -C3 -r1.8 -r1.9
  *** CHANGES	1996/03/05 17:28:48	1.8
  --- CHANGES	1996/03/16 22:44:47	1.9
  ***************
  *** 1,3 ****
  --- 1,6 ----
  +   *) Edit Configure and INSTALL to reflect the change from Configuration
  +      to Configuration.tmpl. [Jim Jagielski]
  + 
      *) If there was no default MIME type defined, Apache sent Content-type:
         without a newline, thus swallowing the next header. Changed to send no
         Content-type: at all. [Ben Laurie]
  ***************
  *** 22,27 ****
  --- 25,35 ----
         ignore Configuration, Makefile and modules.c. [Ben Laurie]
    
    Changes with Apache 1.1b0
  + 
  +   *) Use shmget() (and family) for shared memory for the scoreboard
  +      for SysV-based systems; basically A/UX and IRIX. Allow for
  +      memory break-point (brk(0)) to be moved if need be before
  +      attaching the mem segment. [Jim Jagielski]
    
      *) Use mmap() to allocated shared memory for the scoreboard on
         Solaris, SunOS, Digital UNIX, BSDI and HP/UX. It should work on
  
  
  
  1.3       +2 -2      apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** Configure	1996/02/22 11:46:39	1.2
  --- Configure	1996/03/16 22:44:48	1.3
  ***************
  *** 3,16 ****
    # Apache configuration script, first cut --- rst.
    # Dont like it?  Inspired to do something better?  Go for it.
    
  ! file=Configuration
    tmpfile=htconf.$$
    
    if [ "x$1" = "x-file" ] ; then
      echo "Using alternate config file $2"
      file=$2 
    else
  !   echo "Using 'Configuration' as config file"
    fi
    
    # First, strip comments and blank lines...
  --- 3,16 ----
    # Apache configuration script, first cut --- rst.
    # Dont like it?  Inspired to do something better?  Go for it.
    
  ! file=Configuration.tmpl
    tmpfile=htconf.$$
    
    if [ "x$1" = "x-file" ] ; then
      echo "Using alternate config file $2"
      file=$2 
    else
  !   echo "Using \'$file\' as config file"
    fi
    
    # First, strip comments and blank lines...
  
  
  
  1.2       +2 -2      apache/src/INSTALL
  
  Index: INSTALL
  ===================================================================
  RCS file: /export/home/cvs/apache/src/INSTALL,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** INSTALL	1996/01/14 18:49:42	1.1
  --- INSTALL	1996/03/16 22:44:48	1.2
  ***************
  *** 11,17 ****
    
    To do this:
    
  ! 1) Edit the file "Configuration".  This contains the per-machine
       config settings of the Makefile, and also an additional section at
       the bottom which lists the modules which have been compiled in, and
       also names the files containing them.  You will need to:
  --- 11,17 ----
    
    To do this:
    
  ! 1) Edit the file "Configuration.tmpl".  This contains the per-machine
       config settings of the Makefile, and also an additional section at
       the bottom which lists the modules which have been compiled in, and
       also names the files containing them.  You will need to:
  ***************
  *** 30,36 ****
    2) Run the "Configure" script:
    
          % Configure
  !       Using 'Configuration' as config file
          %
    
       This generates new versions of the Makefile and of modules.c.  (If
  --- 30,36 ----
    2) Run the "Configure" script:
    
          % Configure
  !       Using 'Configuration.tmpl' as config file
          %
    
       This generates new versions of the Makefile and of modules.c.  (If