/* * Copyright (C) Igor Sysoev */ #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_ #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ #define _REENTRANT #define _FILE_OFFSET_BITS 64 /* must be before */ #include #include #include #include #include /* offsetof() */ #include #include #include #include #include #include #include #include #include /* FIONBIO */ #include #include #include #include #include #include #include #include #include #include /* TCP_NODELAY */ #include #include #include #include /* IOV_MAX */ #include #include #if (HAVE_POLL) #include #endif #if (HAVE_SENDFILE) #include #endif #if (HAVE_AIO) #include #endif #if (HAVE_DEVPOLL) #include #include #endif #ifndef HAVE_INHERITED_NONBLOCK #define HAVE_INHERITED_NONBLOCK 1 #endif #ifndef HAVE_SO_SNDLOWAT /* setsockopt(SO_SNDLOWAT) returns error "Option not supported by protocol" */ #define HAVE_SO_SNDLOWAT 0 #endif #ifndef NGX_SETPROCTITLE_USES_ENV #define NGX_SETPROCTITLE_USES_ENV 1 #define NGX_SETPROCTITLE_PAD ' ' #endif #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */