src/os/unix/ngx_darwin_config.h - nginx source code

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. #define __APPLE_USE_RFC_3542    /* IPV6_PKTINFO */


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

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

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

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

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

  42. #include <dlfcn.h>


  43. #ifndef IOV_MAX
  44. #define IOV_MAX   64
  45. #endif


  46. #include <ngx_auto_config.h>


  47. #if (NGX_HAVE_POSIX_SEM)
  48. #include <semaphore.h>
  49. #endif


  50. #if (NGX_HAVE_POLL)
  51. #include <poll.h>
  52. #endif


  53. #if (NGX_HAVE_KQUEUE)
  54. #include <sys/event.h>
  55. #endif


  56. #define NGX_LISTEN_BACKLOG  -1


  57. #ifndef NGX_HAVE_INHERITED_NONBLOCK
  58. #define NGX_HAVE_INHERITED_NONBLOCK  1
  59. #endif


  60. #ifndef NGX_HAVE_CASELESS_FILESYSTEM
  61. #define NGX_HAVE_CASELESS_FILESYSTEM  1
  62. #endif


  63. #define NGX_HAVE_OS_SPECIFIC_INIT    1
  64. #define NGX_HAVE_DEBUG_MALLOC        1


  65. extern char **environ;


  66. #endif /* _NGX_DARWIN_CONFIG_H_INCLUDED_ */