From d9d0ca12688034d481e2f1f5cf13a098338ec31d Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 21 Nov 2003 06:30:49 +0000 Subject: nginx-0.0.1-2003-11-21-09:30:49 import --- auto/types/sizeof | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'auto/types') diff --git a/auto/types/sizeof b/auto/types/sizeof index f24f4b67d..bf7ee3c85 100644 --- a/auto/types/sizeof +++ b/auto/types/sizeof @@ -3,7 +3,8 @@ echo "Checking for $NGX_TYPE size" BYTES= -echo "int main() {" > autotest.c +echo "#include " > autotest.c +echo "int main() {" >> autotest.c echo "printf(\"%d\", sizeof($NGX_TYPE));" >> autotest.c echo "return 0; }" >> autotest.c @@ -18,11 +19,11 @@ rm autotest* case $BYTES in 4) - NGX_MAX_SIZE=4294967295 + NGX_MAX_SIZE=2147483647 ;; 8) - NGX_MAX_SIZE=18446744073709551615 + NGX_MAX_SIZE=9223372036854775807 ;; *) -- cgit