| * Copyright (C) Igor Sysoev |
| #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_ |
| #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ |
| #define _FILE_OFFSET_BITS 64 /* must be before <sys/types.h> */ |
| #include <stddef.h> /* offsetof() */ |
| #include <sys/filio.h> /* FIONBIO */ |
| #include <sys/resource.h> |
| #include <netinet/tcp.h> /* TCP_NODELAY */ |
| #include <sys/systeminfo.h> |
| #include <limits.h> /* IOV_MAX */ |
| #include <ngx_auto_config.h> |
| #include <sys/sendfile.h> |
| #ifndef NGX_HAVE_INHERITED_NONBLOCK |
| #define NGX_HAVE_INHERITED_NONBLOCK 1 |
| #ifndef NGX_HAVE_SO_SNDLOWAT |
| /* setsockopt(SO_SNDLOWAT) returns error "Option not supported by protocol" */ |
| #define NGX_HAVE_SO_SNDLOWAT 0 |
| #ifndef NGX_SETPROCTITLE_USES_ENV |
| #define NGX_SETPROCTITLE_USES_ENV 1 |
| #define NGX_SETPROCTITLE_PAD ' ' |
| #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */ |