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 1997/01/21 01:12:26 UTC

cvs commit: apache/src CHANGES Makefile.tmpl

jim         97/01/20 16:12:25

  Modified:    src       CHANGES Makefile.tmpl
  Log:
  Just fixing things
  
  Revision  Changes    Path
  1.127     +14 -7     apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.126
  retrieving revision 1.127
  diff -C3 -r1.126 -r1.127
  *** CHANGES	1997/01/20 04:28:07	1.126
  --- CHANGES	1997/01/21 00:12:22	1.127
  ***************
  *** 1,8 ****
    Changes with Apache 1.2b5
    
      *) Migration from sprintf() to snprintf() to avoid buffer
  !      overflows. Provide portable snprintf() implementation
  !      (ap_snprintf). [Marc Slemko, jj]
    
      *) Remove mod_fastcgi.c from the distribution. This module appears
         to be maintained more through the Open Market channels and should
  --- 1,16 ----
    Changes with Apache 1.2b5
    
  +   *) Portability Fix: IRIX complained with 'make clean' about *pure* (removed)
  +      [Jim Jagielski]
  +      
      *) Migration from sprintf() to snprintf() to avoid buffer
  !      overflows. [Marc Slemco]
  ! 
  !   *) Provide portable snprintf() implementation (ap_snprintf)
  !      as well as *cvt family. [Jim Jagielski]
  ! 
  !   *) Portability Fix: NeXT lacks unistd.h so we wrap it's inclusion
  !      [Jim Jagielski]
    
      *) Remove mod_fastcgi.c from the distribution. This module appears
         to be maintained more through the Open Market channels and should
  ***************
  *** 48,54 ****
         problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
    
      *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
  !      AIX PS/2, CONVEXOS)
    
      *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
         It's more portable. [Martin Kraemer]
  --- 56,62 ----
         problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
    
      *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
  !      AIX PS/2, CONVEXOS. [Jim Jagielski]
    
      *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
         It's more portable. [Martin Kraemer]
  ***************
  *** 80,86 ****
         overwritten in cases where the server UID has write permissions.
         [Marc Slemko]
    
  !   *) Fix awk compatibilty problem in Configure.
    
      *) Fix portablity problem in util_script where ARG_MAX may not be
         defined for some systems.
  --- 88,94 ----
         overwritten in cases where the server UID has write permissions.
         [Marc Slemko]
    
  !   *) Fix awk compatibilty problem in Configure. [Jim Jagielski]
    
      *) Fix portablity problem in util_script where ARG_MAX may not be
         defined for some systems.
  ***************
  *** 166,172 ****
      *) Remove rlim_t typedef for NetBSD. Do older versions need this?
    
      *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
  !      NeXT.
    
      *) Removed recent modification to promote the status code on internal
         redirects, since the correct fix was to change the default log format
  --- 174,180 ----
      *) Remove rlim_t typedef for NetBSD. Do older versions need this?
    
      *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
  !      NeXT. [Jim Jagielski]
    
      *) Removed recent modification to promote the status code on internal
         redirects, since the correct fix was to change the default log format
  ***************
  *** 236,242 ****
         and added some user diagnostic info.  [Ben Laurie]
    
      *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
  !      for better portability.
    
      *) Updated helpers/GuessOS for ... 
            SCO 5            (recognize minor releases)
  --- 244,250 ----
         and added some user diagnostic info.  [Ben Laurie]
    
      *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
  !      for better portability. [Jim Jagielski]
    
      *) Updated helpers/GuessOS for ... 
            SCO 5            (recognize minor releases)
  ***************
  *** 247,253 ****
            SINIX            (-whatever-sysv4)
            NCR Unix         (-ncr-sysv4)
         and fixed something in helpers/PrintPath  [Ben Laurie]
  - 
    
    Changes with Apache 1.2b1:
    
  --- 255,260 ----
  
  
  
  1.37      +1 -1      apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -C3 -r1.36 -r1.37
  *** Makefile.tmpl	1997/01/18 19:17:20	1.36
  --- Makefile.tmpl	1997/01/21 00:12:23	1.37
  ***************
  *** 36,42 ****
    	$(MAKE) CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    clean:
  ! 	rm -f httpd $(OBJS) *pure*
    	cd regex; $(MAKE) clean
    	cd modules; $(MAKE) clean
    
  --- 36,42 ----
    	$(MAKE) CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    clean:
  ! 	rm -f httpd $(OBJS) 
    	cd regex; $(MAKE) clean
    	cd modules; $(MAKE) clean