You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Brian Behlendorf <br...@hyperreal.com> on 1996/12/10 21:12:34 UTC

cvs commit: apache/src Configure conf.h CHANGES

brian       96/12/10 12:12:33

  Modified:    src       Configure conf.h CHANGES
  Log:
  Reviewed by:	Brian Behlendorf
  Submitted by:	Bartley_Troyan@BLaCKSMITH.com, Alvin Austin <al...@cs.usask.ca>
  
  Allow NeXT to compile cleanly.
  
  Revision  Changes    Path
  1.53      +1 -0      apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -C3 -r1.52 -r1.53
  *** Configure	1996/12/10 19:53:17	1.52
  --- Configure	1996/12/10 20:12:28	1.53
  ***************
  *** 235,240 ****
  --- 235,241 ----
        *-next-nextstep*)
    	OS='NeXT'
    	CFLAGS="$CFLAGS -DNEXT"
  + 	DEF_WANTHSREGEX=yes
    	;;
        *-dec-osf*)
    	OS='DEC OSF/1'
  
  
  
  1.58      +4 -0      apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -C3 -r1.57 -r1.58
  *** conf.h	1996/12/10 15:07:41	1.57
  --- conf.h	1996/12/10 20:12:30	1.58
  ***************
  *** 193,198 ****
  --- 193,202 ----
    #endif
    #ifndef S_IWOTH
    #define S_IWOTH 000002
  + #ifndef rlim_t
  + typedef int rlim_t;
  + #endif
  + typedef u_long  n_long;
    #endif
    
    #define STDIN_FILENO  0
  
  
  
  1.83      +2 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -C3 -r1.82 -r1.83
  *** CHANGES	1996/12/10 15:07:41	1.82
  --- CHANGES	1996/12/10 20:12:31	1.83
  ***************
  *** 2,7 ****
  --- 2,9 ----
    
      *) Remove rlim_t typedef for NetBSD. Do older versions need this?
    
  +   *) Defined rlim_t and WANTHSREGEX=yes for NeXT.
  + 
    Changes with Apache 1.2b2:
      
      *) Update set_signals() to use sigaction() for setting handlers.