comparison auto/unix @ 355:0fb6c53fb135

nginx-0.0.7-2004-06-15-21:47:16 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 15 Jun 2004 17:47:16 +0000
parents 55e496a8ece3
children 0a03c921c81d
comparison
equal deleted inserted replaced
354:eaf1f651cf86 355:0fb6c53fb135
39 39
40 . auto/types/uintptr_t 40 . auto/types/uintptr_t
41 41
42 42
43 ngx_func="sin_len" 43 ngx_func="sin_len"
44 ngx_func_inc="#include <sys/types.h> 44 ngx_func_inc="#include <sys/socket.h>
45 #include <sys/socket.h>
46 #include <netinet/in.h>" 45 #include <netinet/in.h>"
47 46
48 ngx_func_test="struct sockaddr_in sa; sa.sin_len = 5" 47 ngx_func_test="struct sockaddr_in sa; sa.sin_len = 5"
49 . auto/func 48 . auto/func
50 49
120 119
121 ngx_func="memalign()" 120 ngx_func="memalign()"
122 ngx_func_inc="#include <stdlib.h>" 121 ngx_func_inc="#include <stdlib.h>"
123 ngx_func_test="void *p; p = memalign(4096, 4096)" 122 ngx_func_test="void *p; p = memalign(4096, 4096)"
124 . auto/func 123 . auto/func
124
125
126 ngx_func="msghdr.msg_control"
127 ngx_func_inc="#include <sys/socket.h>"
128 ngx_func_test="struct msghdr msg; msg.msg_control = NULL"
129 . auto/func
130
131
132 ngx_func="FIONBIO"
133 ngx_func_inc="#include <sys/filio.h>"
134 ngx_func_test="int i; i = FIONBIO"
135 . auto/func