/* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_ #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ #ifndef _REENTRANT #define _REENTRANT #endif #define _FILE_OFFSET_BITS 64 /* must be before */ #include #include #include #include #include /* offsetof() */ #include #include #include #include #include #include #include #include #include #include #include #include /* statvfs() */ #include /* FIONBIO */ #include #include #include #include #include #include #include #include #include #include /* TCP_NODELAY */ #include #include #include #include #include /* IOV_MAX */ #include #include #include #define NGX_ALIGNMENT _MAX_ALIGNMENT #include #if (NGX_HAVE_POSIX_SEM) #include #endif #if (NGX_HAVE_POLL) #include #endif #if (NGX_HAVE_DEVPOLL) #include #include #endif #if (NGX_HAVE_EVENTPORT) #include #endif #if (NGX_HAVE_SENDFILE) #include #endif #define NGX_LISTEN_BACKLOG 511 #ifndef NGX_HAVE_INHERITED_NONBLOCK #define NGX_HAVE_INHERITED_NONBLOCK 1 #endif #ifndef NGX_HAVE_SO_SNDLOWAT /* setsockopt(SO_SNDLOWAT) returns ENOPROTOOPT */ #define NGX_HAVE_SO_SNDLOWAT 0 #endif #define NGX_HAVE_OS_SPECIFIC_INIT 1 #define ngx_debug_init() extern char **environ; #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */