aboutsummaryrefslogtreecommitdiff
path: root/auto/types/uintptr_t
blob: eb375b08d0aacf01689ee61ac5f80a2edeebc6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
echo -n "checking for uintptr_t ... "
echo >> $NGX_ERR
echo "checking for uintptr_t" >> $NGX_ERR

found=no

cat << END > $NGX_AUTOTEST.c

#include <sys/types.h>
$NGX_INTTYPES_H

int main() {
    uintptr_t i = 0;
    return 0;
}

END

eval "$CC -o $NGX_AUTOTEST $NGX_AUTOTEST.c >> $NGX_ERR 2>&1"

if [ -x $NGX_AUTOTEST ]; then
    echo " uintptr_t found"
    found=yes
else
    echo -n " uintptr_t not found"
fi

rm $NGX_AUTOTEST*


if [ $found = no ]; then
    found="uint`expr 8 \* $ngx_ptr_bytes`_t"
    echo ", $found used"

    echo "typedef $found  uintptr_t;"   >> $NGX_AUTO_CONFIG_H
fi