/* * Copyright (C) 2002-2004 Igor Sysoev */ #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_ #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ #define SOLARIS 1 #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 #include /* FIONBIO */ #include #include #include #include #include #include #include #include #include #include #include #include #include /* IOV_MAX */ #include #include #ifndef HAVE_SELECT #define HAVE_SELECT 1 #endif #ifndef HAVE_POLL #define HAVE_POLL 1 #endif #if (HAVE_POLL) #include #endif #if (HAVE_AIO) #include #endif #if (HAVE_DEVPOLL) #include #include #endif #ifndef HAVE_INHERITED_NONBLOCK #define HAVE_INHERITED_NONBLOCK 1 #endif #define ngx_setproctitle(title) #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */