diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 18:36:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-23 18:36:25 -0800 |
commit | bfb9e798d4721a3620b6bcb7f6dc2869d9798f2f (patch) | |
tree | 01301c447b798d987bee46590403d15ce8cac496 /configure | |
parent | 63fbaaa539d3120392509d7796649571c1417889 (diff) | |
download | txr-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-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |