comparison auto/unix @ 2512:2e91aecb9e57

a prelimiary IPv6 support, HTTP listen
author Igor Sysoev <igor@sysoev.ru>
date Sat, 21 Feb 2009 07:02:02 +0000
parents c7c319896bb4
children 87e739049e93
comparison
equal deleted inserted replaced
2511:f91c5c964e61 2512:2e91aecb9e57
62 62
63 63
64 # syscalls, libc calls and some features 64 # syscalls, libc calls and some features
65 65
66 66
67 if [ $NGX_IPV6 = YES ]; then
68 ngx_feature="AF_INET6"
69 ngx_feature_name="NGX_HAVE_INET6"
70 ngx_feature_run=no
71 ngx_feature_incs="#include <sys/socket.h>
72 #include <netinet/in.h>
73 #include <arpa/inet.h>"
74 ngx_feature_path=
75 ngx_feature_libs=
76 ngx_feature_test="struct sockaddr_in6 sin6;
77 sin6.sin6_family = AF_INET6;"
78 . auto/feature
79 fi
80
81
67 ngx_feature="setproctitle()" 82 ngx_feature="setproctitle()"
68 ngx_feature_name="NGX_HAVE_SETPROCTITLE" 83 ngx_feature_name="NGX_HAVE_SETPROCTITLE"
69 ngx_feature_run=no 84 ngx_feature_run=no
70 ngx_feature_incs= 85 ngx_feature_incs=
71 ngx_feature_path= 86 ngx_feature_path=