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
diff options
context:
space:
mode:
Diffstat (limited to 'auto/types/longlong')
-rw-r--r--auto/types/longlong31
1 files changed, 0 insertions, 31 deletions
diff --git a/auto/types/longlong b/auto/types/longlong
deleted file mode 100644
index f843d5ae4..000000000
--- a/auto/types/longlong
+++ /dev/null
@@ -1,31 +0,0 @@
-
-echo "Checking for long long size"
-
-BYTES=
-
-echo "int main() {" > autotest.c
-echo "printf(\"%d\", sizeof(long long));" >> autotest.c
-echo "return 0; }" >> autotest.c
-
-eval "${CC} -o autotest autotest.c > /dev/null 2>&1"
-
-if [ -x ./autotest ]; then
- BYTES=`./autotest`
- echo " + long long is $BYTES bytes"
-fi
-
-rm autotest*
-
-case $BYTES in
- 4)
- NGX_MAX_LONG_LONG=4294967295
- ;;
-
- 8)
- NGX_MAX_LONG_LONG=18446744073709551615
- ;;
-
- *)
- echo "$0: error: can not detect long long size"
- exit 1
-esac