comparison auto/types/longlong @ 193:dd66383796a5

nginx-0.0.1-2003-11-20-20:36:43 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 20 Nov 2003 17:36:43 +0000
parents
children
comparison
equal deleted inserted replaced
192:31824be1fc66 193:dd66383796a5
1
2 echo "Checking for long long size"
3
4 BYTES=
5
6 echo "int main() {" > autotest.c
7 echo "printf(\"%d\", sizeof(long long));" >> autotest.c
8 echo "return 0; }" >> autotest.c
9
10 eval "${CC} -o autotest autotest.c > /dev/null 2>&1"
11
12 if [ -x ./autotest ]; then
13 BYTES=`./autotest`
14 echo " + long long is $BYTES bytes"
15 fi
16
17 rm autotest*
18
19 case $BYTES in
20 4)
21 NGX_MAX_LONG_LONG=4294967295
22 ;;
23
24 8)
25 NGX_MAX_LONG_LONG=18446744073709551615
26 ;;
27
28 *)
29 echo "$0: error: can not detect long long size"
30 exit 1
31 esac