Fix work keepalive and rewrite to named location
[nginx-catap.git] / auto / types / uintptr_t
blob55024b820feed7f87b59e93b29805ef08fef28b4
2 # Copyright (C) Igor Sysoev
5 echo $ngx_n "checking for uintptr_t ...$ngx_c"
6 echo >> $NGX_ERR
7 echo "checking for uintptr_t" >> $NGX_ERR
9 found=no
11 cat << END > $NGX_AUTOTEST.c
13 #include <sys/types.h>
14 $NGX_INTTYPES_H
16 int main() {
17     uintptr_t i = 0;
18     return 0;
21 END
23 eval "$CC -o $NGX_AUTOTEST $NGX_AUTOTEST.c >> $NGX_ERR 2>&1"
25 if [ -x $NGX_AUTOTEST ]; then
26     echo " uintptr_t found"
27     found=yes
28 else
29     echo $ngx_n " uintptr_t not found" $ngx_c
32 rm $NGX_AUTOTEST*
35 if [ $found = no ]; then
36     found="uint`expr 8 \* $ngx_ptr_size`_t"
37     echo ", $found used"
39     echo "typedef $found  uintptr_t;"                   >> $NGX_AUTO_CONFIG_H
40     echo "typedef $found  intptr_t;" | sed -e 's/u//g'  >> $NGX_AUTO_CONFIG_H