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

uintptr_t « types « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93a01a8fafd782bbca7d2d85f373062120731a91 (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

echo 'checking for uintptr_t'

FOUND=NO

echo "#include <sys/types.h>" > autotest.c
echo "int main() { uintptr_t i = 0; return 0; }" >> autotest.c

eval "$CC -o autotest autotest.c > /dev/null 2>&1"

if [ -x autotest ]; then
    echo " + uintptr_t found"
    FOUND=YES
else
    echo " + uintptr_t not found"
fi

rm 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
    echo                                >> $NGX_AUTO_CONFIG_H
fi