summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-23 18:36:25 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-23 18:36:25 -0800
commitbfb9e798d4721a3620b6bcb7f6dc2869d9798f2f (patch)
tree01301c447b798d987bee46590403d15ce8cac496 /configure
parent63fbaaa539d3120392509d7796649571c1417889 (diff)
downloadtxr-bfb9e798d4721a3620b6bcb7f6dc2869d9798f2f.tar.gz
txr-bfb9e798d4721a3620b6bcb7f6dc2869d9798f2f.tar.bz2
txr-bfb9e798d4721a3620b6bcb7f6dc2869d9798f2f.zip
* configure: Don't rely on higher precision arithmetic from the build
machine's shell. POSIX requires shell arithmetic to be only signed long. We can't compute the INT_PTR_MAX constant in the shell, but rather generate a constant C expression to compute it.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 4008a68f..d8445345 100755
--- a/configure
+++ b/configure
@@ -579,9 +579,9 @@ fi
printf '"%s"\n' "$intptr"
printf "typedef $intptr int_ptr_t;\n" >> config.h
-intptr_max=$(( (1 << ( sizeof_ptr * 8 - 1 )) - 1 ))
-printf "#define INT_PTR_MAX %d\n" $intptr_max >> config.h
-printf "#define INT_PTR_MIN -%d\n" $intptr_max >> config.h
+intptr_max_expr="((((($intptr) 1 << $((sizeof_ptr * 8 - 2))) - 1) << 1) + 1)"
+printf "#define INT_PTR_MAX %s\n" "$intptr_max_expr" >> config.h
+printf "#define INT_PTR_MIN (-INT_PTR_MAX)\n" >> config.h
#
# Clean up