From d09f7a1e9aa5816493e2fef93074383d95140c13 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 15 Jun 2004 17:47:16 +0000 Subject: nginx-0.0.7-2004-06-15-21:47:16 import --- src/os/unix/ngx_posix_config.h | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/os/unix/ngx_posix_config.h (limited to 'src/os/unix/ngx_posix_config.h') diff --git a/src/os/unix/ngx_posix_config.h b/src/os/unix/ngx_posix_config.h new file mode 100644 index 000000000..e6da52ffa --- /dev/null +++ b/src/os/unix/ngx_posix_config.h @@ -0,0 +1,55 @@ +#ifndef _NGX_POSIX_CONFIG_H_INCLUDED_ +#define _NGX_POSIX_CONFIG_H_INCLUDED_ + + +#include +#include +#include +#include +#include /* offsetof() */ +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include /* FIONBIO */ +#include +#include + +#include +#include +#include + +#include +#include +#include +#include + +#include + + +#ifndef HAVE_SELECT +#define HAVE_SELECT 1 +#endif + + +#ifndef HAVE_POLL +#define HAVE_POLL 1 +#endif +#if (HAVE_POLL) +#include +#endif + + +#define ngx_setproctitle(title) + + +#define NGX_POSIX_IO 1 + + +#endif /* _NGX_POSIX_CONFIG_H_INCLUDED_ */ -- cgit