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-02-09 10:46:43 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-02-09 10:46:43 +0300
commit7af6b16936b630feabecbce0dbc9cf84b4943481 (patch)
tree18301d35a84907e66fe94ddc7600d4ec6d600409 /auto/unix
parent9260294400c902904cdf791c9c2e8fd069feec63 (diff)
nginx-0.0.2-2004-02-09-10:46:43 import
Diffstat (limited to 'auto/unix')
-rwxr-xr-xauto/unix30
1 files changed, 15 insertions, 15 deletions
diff --git a/auto/unix b/auto/unix
index 172c73ce0..3aa188303 100755
--- a/auto/unix
+++ b/auto/unix
@@ -16,12 +16,7 @@ ngx_formats="%lld %qd"; . auto/fmt/fmt
ngx_type="void *"; . auto/types/sizeof; ngx_ptr_bytes=$ngx_bytes
-# headers
-
-ngx_inc="unistd.h"; . auto/inc
-ngx_inc="inttypes.h"; . auto/inc
-
-#POSIX types
+# POSIX types
NGX_AUTO_CONFIG="#include \"../$NGX_AUTO_CONFIG_H\""
@@ -43,6 +38,15 @@ ngx_types="int"; . auto/types/typedef
. auto/types/uintptr_t
+ngx_func="sin_len"
+ngx_func_inc="#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>"
+
+ngx_func_test="struct sockaddr_in sa; sa.sin_len = 5"
+. auto/func
+
+
# printf() formats
CC_WARN=$CC_STRONG
@@ -70,19 +74,15 @@ eval ngx_formats=\${ngx_${ngx_bytes}_fmt}; . auto/fmt/fmt
ngx_func="pread()"
ngx_func_inc=
-ngx_func_test="
-char buf[1];
-ssize_t n;
-n = pread(0, buf, 1, 0)"
+ngx_func_test="char buf[1]; ssize_t n;
+ n = pread(0, buf, 1, 0)"
. auto/func
ngx_func="pwrite()"
ngx_func_inc=
-ngx_func_test="
-char buf[1];
-ssize_t n;
-n = pwrite(1, buf, 1, 0)"
+ngx_func_test="char buf[1]; ssize_t n;
+ n = pwrite(1, buf, 1, 0)"
. auto/func
@@ -94,7 +94,7 @@ n = pwrite(1, buf, 1, 0)"
ngx_func="strerror_r()"
ngx_func_inc="#include <string.h>"
-ngx_func_test="char buf[20]; strerror_r(1, buf, 20)"
+ngx_func_test="char buf[20]; int n; n = strerror_r(1, buf, 20)"
. auto/func