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.org> on 1997/07/10 20:32:52 UTC

cvs commit: apache/src CHANGES Configure conf.h http_main.c util_date.h

jim         97/07/10 11:32:52

  Modified:    src       CHANGES Configure conf.h http_main.c util_date.h
  Log:
  Add Sequent back in and add SONY NEWS-OS
  
  Revision  Changes    Path
  1.332     +2 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.331
  retrieving revision 1.332
  diff -C3 -r1.331 -r1.332
  *** CHANGES	1997/07/10 16:17:42	1.331
  --- CHANGES	1997/07/10 18:32:45	1.332
  ***************
  *** 1,5 ****
  --- 1,7 ----
    Changes with Apache 1.3
    
  +   *) Sequent port re-added and SONY NEWS-OS port included.
  + 
      *) Automatic indexing removed from mod_dir and placed into mod_autoindex.
         This allows the admin to completely remove automatic indexing
         from the server, while still supporting the basic functions of
  
  
  
  1.106     +10 -0     apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -C3 -r1.105 -r1.106
  *** Configure	1997/07/03 05:57:08	1.105
  --- Configure	1997/07/10 18:32:46	1.106
  ***************
  *** 478,483 ****
  --- 478,493 ----
    	OS='Paragon OSF/1'
    	CFLAGS="$CFLAGS -DPARAGON"
    	;;
  +     *DYNIX*)
  + 	DEF_WANTHSREGEX=yes
  + 	OS='SEQUENT'
  + 	CFLAGS="$CFLAGS -DSEQUENT"
  + 	;;
  +     *NEWS-OS*)
  + 	DEF_WANTHSREGEX=yes
  + 	OS='SONY NEWS-OS'
  + 	CFLAGS="$CFLAGS -DNEWSOS"
  + 	;;
        *) # default: Catch systems we don't know about
        	echo Sorry, but we cannot grok \"$PLAT\"
    	echo uname -m
  
  
  
  1.112     +15 -0     apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.111
  retrieving revision 1.112
  diff -C3 -r1.111 -r1.112
  *** conf.h	1997/07/07 14:34:25	1.111
  --- conf.h	1997/07/10 18:32:46	1.112
  ***************
  *** 507,512 ****
  --- 507,527 ----
    #define JMP_BUF sigjmp_buf
    #define USE_FCNTL_SERIALIZED_ACCEPT
    
  + #elif defined(NEWSOS)
  + #define HAVE_SYS_RESOURCE_H
  + #define HAVE_SHMGET
  + #define USE_LONGJMP
  + #define JMP_BUF jmp_buf
  + #define NO_SETSID
  + #define NO_USE_SIGACTION
  + #define NEED_WAITPID
  + #include <sys/time.h>
  + #include <stdlib.h>
  + #include <sys/types.h>
  + typedef int pid_t;
  + typedef int rlim_t;
  + typedef int mode_t;
  + 
    #elif defined(WIN32)     
    /* Put your NT stuff here - Ambarish */
    
  
  
  
  1.176     +1 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.175
  retrieving revision 1.176
  diff -C3 -r1.175 -r1.176
  *** http_main.c	1997/07/09 18:07:40	1.175
  --- http_main.c	1997/07/10 18:32:47	1.176
  ***************
  *** 1524,1530 ****
            fprintf(stderr,"httpd: setsid failed\n");
            exit(1);
        }
  ! #elif defined(NEXT)
        if(setpgrp(0,getpid()) == -1 || (pgrp = getpgrp(0)) == -1) {
            perror("setpgrp");
            fprintf(stderr,"httpd: setpgrp or getpgrp failed\n");
  --- 1524,1530 ----
            fprintf(stderr,"httpd: setsid failed\n");
            exit(1);
        }
  ! #elif defined(NEXT) || defined(NEWSOS)
        if(setpgrp(0,getpid()) == -1 || (pgrp = getpgrp(0)) == -1) {
            perror("setpgrp");
            fprintf(stderr,"httpd: setpgrp or getpgrp failed\n");
  
  
  
  1.3       +4 -0      apache/src/util_date.h
  
  Index: util_date.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util_date.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** util_date.h	1997/01/01 18:10:45	1.2
  --- util_date.h	1997/07/10 18:32:47	1.3
  ***************
  *** 54,59 ****
  --- 54,63 ----
     * util_date.h: prototypes for date parsing utility routines
     */
    
  + #ifdef NEWSOS
  + #include <stdlib.h>
  + #include <sys/types.h>
  + #endif
    #include <time.h>
    
    #define BAD_DATE (time_t)0