Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto/unix
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-06-15 21:47:16 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-06-15 21:47:16 +0400
commitd09f7a1e9aa5816493e2fef93074383d95140c13 (patch)
tree4aeabb503cda16fa45c78a56881c327e97de6d12 /auto/unix
parent87350f269da4d82f2436aac91ae87fbd37ca6c16 (diff)
nginx-0.0.7-2004-06-15-21:47:16 import
Diffstat (limited to 'auto/unix')
-rwxr-xr-xauto/unix15
1 files changed, 13 insertions, 2 deletions
diff --git a/auto/unix b/auto/unix
index c150f2e9c..183a5039e 100755
--- a/auto/unix
+++ b/auto/unix
@@ -41,8 +41,7 @@ ngx_types="int"; . auto/types/typedef
ngx_func="sin_len"
-ngx_func_inc="#include <sys/types.h>
-#include <sys/socket.h>
+ngx_func_inc="#include <sys/socket.h>
#include <netinet/in.h>"
ngx_func_test="struct sockaddr_in sa; sa.sin_len = 5"
@@ -122,3 +121,15 @@ ngx_func="memalign()"
ngx_func_inc="#include <stdlib.h>"
ngx_func_test="void *p; p = memalign(4096, 4096)"
. auto/func
+
+
+ngx_func="msghdr.msg_control"
+ngx_func_inc="#include <sys/socket.h>"
+ngx_func_test="struct msghdr msg; msg.msg_control = NULL"
+. auto/func
+
+
+ngx_func="FIONBIO"
+ngx_func_inc="#include <sys/filio.h>"
+ngx_func_test="int i; i = FIONBIO"
+. auto/func