comparison src/core/ngx_config.h @ 59:e8cdc2989cee

nginx-0.0.1-2003-02-06-20:21:13 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 06 Feb 2003 17:21:13 +0000
parents a499e0d1f16e
children 34d647deb1da
comparison
equal deleted inserted replaced
58:6b13b1cadabe 59:e8cdc2989cee
92 #include <sys/socket.h> 92 #include <sys/socket.h>
93 #include <sys/uio.h> 93 #include <sys/uio.h>
94 #include <netinet/in.h> 94 #include <netinet/in.h>
95 #include <arpa/inet.h> 95 #include <arpa/inet.h>
96 96
97
97 #ifndef HAVE_POLL 98 #ifndef HAVE_POLL
98 #define HAVE_POLL 1 99 #define HAVE_POLL 1
99 #include <poll.h> 100 #include <poll.h>
100 /*
101 #ifndef INFTIM
102 #define INFTIM -1
103 #endif
104 */
105 #endif 101 #endif
106 102
107 103
108 #if (HAVE_DEVPOLL) 104 #if (HAVE_DEVPOLL)
105 #include <sys/ioctl.h>
109 #include <sys/devpoll.h> /* Solaris, HP/UX */ 106 #include <sys/devpoll.h> /* Solaris, HP/UX */
107 #endif
108
109
110 #if (HAVE_AIO)
111 #include <aio.h>
110 #endif 112 #endif
111 113
112 114
113 #define ngx_inline inline 115 #define ngx_inline inline
114 116