2003-05-21 21:28:21 +08:00
|
|
|
#ifndef _NGX_FREEBSD_CONFIG_H_INCLUDED_
|
|
|
|
#define _NGX_FREEBSD_CONFIG_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2003-11-26 04:44:56 +08:00
|
|
|
#include <stddef.h> /* offsetof() */
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <stdlib.h>
|
2003-07-11 00:26:57 +08:00
|
|
|
#include <stdarg.h>
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
2003-11-15 00:52:04 +08:00
|
|
|
#include <sys/stat.h>
|
2003-05-22 23:23:47 +08:00
|
|
|
#include <sys/time.h>
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/resource.h>
|
2003-06-05 01:28:33 +08:00
|
|
|
#include <sys/sysctl.h>
|
2003-11-20 00:26:41 +08:00
|
|
|
#include <sys/wait.h>
|
2003-06-16 02:32:13 +08:00
|
|
|
#include <sys/mman.h>
|
2003-05-22 23:23:47 +08:00
|
|
|
#include <sys/socket.h>
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <netinet/in.h>
|
2003-05-27 20:18:54 +08:00
|
|
|
#include <netinet/tcp.h> /* TCP_NOPUSH */
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <arpa/inet.h>
|
2004-01-06 04:55:48 +08:00
|
|
|
#include <pwd.h>
|
2004-01-21 04:40:08 +08:00
|
|
|
#include <grp.h>
|
2004-01-28 23:22:37 +08:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <dirent.h>
|
2003-05-21 21:28:21 +08:00
|
|
|
#include <osreldate.h>
|
|
|
|
|
2004-02-04 00:43:54 +08:00
|
|
|
#include <ngx_auto_config.h>
|
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
|
|
|
|
#ifndef HAVE_SELECT
|
|
|
|
#define HAVE_SELECT 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_POLL
|
|
|
|
#define HAVE_POLL 1
|
|
|
|
#endif
|
|
|
|
#if (HAVE_POLL)
|
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* FreeBSD aio supported via kqueue */
|
|
|
|
|
|
|
|
#if (__FreeBSD__ == 4 && __FreeBSD_version >= 430000) \
|
|
|
|
|| __FreeBSD_version >= 500014
|
|
|
|
|
|
|
|
#ifndef HAVE_AIO
|
|
|
|
#define HAVE_AIO 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (HAVE_AIO)
|
|
|
|
#include <aio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if defined SO_ACCEPTFILTER && !defined HAVE_DEFERRED_ACCEPT
|
|
|
|
#define HAVE_DEFERRED_ACCEPT 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if (HAVE_KQUEUE)
|
|
|
|
#include <sys/event.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_INHERITED_NONBLOCK
|
|
|
|
#define HAVE_INHERITED_NONBLOCK 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
#ifndef HAVE_FIONBIO
|
|
|
|
#define HAVE_FIONBIO 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-01-28 23:22:37 +08:00
|
|
|
/* STUB: autoconf */
|
|
|
|
#define ngx_setproctitle setproctitle
|
|
|
|
|
|
|
|
|
2003-09-26 13:45:21 +08:00
|
|
|
/* STUB */
|
|
|
|
#define HAVE_LITTLE_ENDIAN 1
|
|
|
|
|
|
|
|
|
2003-12-06 01:07:27 +08:00
|
|
|
extern char *malloc_options;
|
|
|
|
|
2003-11-26 23:42:18 +08:00
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
#endif /* _NGX_FREEBSD_CONFIG_H_INCLUDED_ */
|