src/os/unix/ngx_darwin_config.h - nginx-1.7.10

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #ifndef _NGX_DARWIN_CONFIG_H_INCLUDED_
  6. #define _NGX_DARWIN_CONFIG_H_INCLUDED_


  7. #include <sys/types.h>
  8. #include <sys/time.h>
  9. #include <unistd.h>
  10. #include <inttypes.h>
  11. #include <stdarg.h>
  12. #include <stddef.h>             /* offsetof() */
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <ctype.h>
  16. #include <errno.h>
  17. #include <string.h>
  18. #include <signal.h>
  19. #include <pwd.h>
  20. #include <grp.h>
  21. #include <dirent.h>
  22. #include <glob.h>
  23. #include <sys/mount.h>          /* statfs() */

  24. #include <sys/filio.h>          /* FIONBIO */
  25. #include <sys/ioctl.h>
  26. #include <sys/uio.h>
  27. #include <sys/stat.h>
  28. #include <fcntl.h>

  29. #include <sys/wait.h>
  30. #include <sys/mman.h>
  31. #include <sys/resource.h>
  32. #include <sched.h>

  33. #include <sys/socket.h>
  34. #include <netinet/in.h>
  35. #include <netinet/tcp.h>        /* TCP_NODELAY */
  36. #include <arpa/inet.h>
  37. #include <netdb.h>
  38. #include <sys/un.h>

  39. #include <sys/sysctl.h>
  40. #include <xlocale.h>


  41. #ifndef IOV_MAX
  42. #define IOV_MAX   64
  43. #endif


  44. #include <ngx_auto_config.h>


  45. #if (NGX_HAVE_POSIX_SEM)
  46. #include <semaphore.h>
  47. #endif


  48. #if (NGX_HAVE_POLL)
  49. #include <poll.h>
  50. #endif


  51. #if (NGX_HAVE_KQUEUE)
  52. #include <sys/event.h>
  53. #endif


  54. #define NGX_LISTEN_BACKLOG  -1


  55. #ifndef NGX_HAVE_INHERITED_NONBLOCK
  56. #define NGX_HAVE_INHERITED_NONBLOCK  1
  57. #endif


  58. #ifndef NGX_HAVE_CASELESS_FILESYSTEM
  59. #define NGX_HAVE_CASELESS_FILESYSTEM  1
  60. #endif


  61. #define NGX_HAVE_OS_SPECIFIC_INIT    1
  62. #define NGX_HAVE_DEBUG_MALLOC        1


  63. extern char **environ;


  64. #endif /* _NGX_DARWIN_CONFIG_H_INCLUDED_ */