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/02/10 01:40:10 UTC

cvs commit: apache/src conf.h http_main.c

jim         97/02/09 16:40:10

  Modified:    src       conf.h http_main.c
  Log:
  A/UX and SCO3 timeval cleanups
  
  Revision  Changes    Path
  1.77      +5 -0      apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -C3 -r1.76 -r1.77
  *** conf.h	1997/02/04 23:54:22	1.76
  --- conf.h	1997/02/10 00:40:08	1.77
  ***************
  *** 252,257 ****
  --- 252,258 ----
    #define JMP_BUF sigjmp_buf
    #define SIGURG SIGUSR1 /* but note, this signal will be sent to a process group if enabled (for OOB data). It is not currently enabled. */
    #define getwd(d) getcwd(d,MAX_STRING_LEN)
  + #include <sys/time.h>     
    
    #elif defined(SCO5)
    
  ***************
  *** 282,287 ****
  --- 283,292 ----
    extern int accept(), gethostname(), connect(), lstat();
    extern int select(), killpg(), shutdown();
    extern int initgroups(), setsockopt();
  + extern char *shmat(int, char *, int);
  + extern int  shmctl(int, int, struct shmid_ds *);
  + extern int  shmget(key_t, int, int);
  + extern char *sbrk(int);
    extern char *crypt();
    extern char *getwd();
    #include <sys/time.h>
  
  
  
  1.117     +0 -7      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.116
  retrieving revision 1.117
  diff -C3 -r1.116 -r1.117
  *** http_main.c	1997/02/04 23:54:23	1.116
  --- http_main.c	1997/02/10 00:40:08	1.117
  ***************
  *** 92,104 ****
    #include <sys/types.h>
    #include <sys/ipc.h>
    #include <sys/shm.h>
  - #if defined(AUX)		/* Aren't defined anyplace */
  - extern char *shmat(int, char *, int);
  - extern int  shmctl(int, int, struct shmid_ds *);
  - extern int  shmget(key_t, int, int);
  - extern char *sbrk(int);
  - #include <sys/time.h>
  - #endif
    #endif
    #ifdef SecureWare
    #include <sys/security.h>
  --- 92,97 ----