You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by be...@hyperreal.org on 1999/06/19 22:23:39 UTC

cvs commit: apache-2.0/mpm/src/main http_connection.c http_protocol.c iol_unix.c

ben         99/06/19 13:23:38

  Modified:    mpm/src/main http_connection.c http_protocol.c iol_unix.c
  Log:
  Compile on FreeBSD.
  
  Revision  Changes    Path
  1.3       +0 -2      apache-2.0/mpm/src/main/http_connection.c
  
  Index: http_connection.c
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/mpm/src/main/http_connection.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- http_connection.c	1999/06/18 23:34:59	1.2
  +++ http_connection.c	1999/06/19 20:23:37	1.3
  @@ -64,8 +64,6 @@
   #include "http_config.h"
   #include "http_vhost.h"
   
  -#include <poll.h>
  -
   /* TODO: re-implement the lingering close stuff */
   #define NO_LINGCLOSE
   
  
  
  
  1.4       +0 -1      apache-2.0/mpm/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/mpm/src/main/http_protocol.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- http_protocol.c	1999/06/18 23:34:59	1.3
  +++ http_protocol.c	1999/06/19 20:23:37	1.4
  @@ -74,7 +74,6 @@
                                    * support code... */
   #include "util_date.h"          /* For parseHTTPdate and BAD_DATE */
   #include <stdarg.h>
  -#include <poll.h>
   
   #define SET_BYTES_SENT(r) \
     do { if (r->sent_bodyct) \
  
  
  
  1.3       +3 -0      apache-2.0/mpm/src/main/iol_unix.c
  
  Index: iol_unix.c
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/mpm/src/main/iol_unix.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- iol_unix.c	1999/06/19 17:59:57	1.2
  +++ iol_unix.c	1999/06/19 20:23:37	1.3
  @@ -63,6 +63,9 @@
   #include <sys/types.h>
   #include <sys/uio.h>
   
  +#ifndef ETIME
  +# define ETIME -1
  +#endif
   
   #define FD_NONBLOCKING_SET	(1)