comparison src/os/unix/ngx_posix_config.h @ 1954:d85e291b99f9

it seems that malloc.h is required for Cygwin only and breaks building on other platforms
author Igor Sysoev <igor@sysoev.ru>
date Sun, 23 Mar 2008 15:42:40 +0000
parents d880fa02fb65
children b52cb9bf2064
comparison
equal deleted inserted replaced
1953:ce75aac647e7 1954:d85e291b99f9
68 68
69 #if (NGX_HAVE_LIMITS_H) 69 #if (NGX_HAVE_LIMITS_H)
70 #include <limits.h> /* IOV_MAX */ 70 #include <limits.h> /* IOV_MAX */
71 #endif 71 #endif
72 72
73 #if (NGX_HAVE_MALLOC_H) 73 #ifdef __CYGWIN__
74 #include <malloc.h> /* memalign() */ 74 #include <malloc.h> /* memalign() */
75 #endif 75 #endif
76 76
77 #if (NGX_HAVE_CRYPT_H) 77 #if (NGX_HAVE_CRYPT_H)
78 #include <crypt.h> 78 #include <crypt.h>