summaryrefslogtreecommitdiff
path: root/aczsh.m4
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2000-10-11 12:26:13 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2000-10-11 12:26:13 +0000
commit2e4cca20ce4f29b8f953c98212ba6bcbf6c32e5f (patch)
tree445aa9672b95f8d1f43c2a63700bbafc827cc5c1 /aczsh.m4
parent4bfe8715b05e768300b6bb12df770069a65d9f93 (diff)
downloadzsh-2e4cca20ce4f29b8f953c98212ba6bcbf6c32e5f.tar.gz
zsh-2e4cca20ce4f29b8f953c98212ba6bcbf6c32e5f.zip
12958: configure fix for NCR compiler
Diffstat (limited to 'aczsh.m4')
-rw-r--r--aczsh.m42
1 files changed, 2 insertions, 0 deletions
diff --git a/aczsh.m4 b/aczsh.m4
index e835dcede..b32ed9fca 100644
--- a/aczsh.m4
+++ b/aczsh.m4
@@ -84,6 +84,7 @@ dnl specified directly as --enable-lfs="long long".
dnl Sets the variable given in the second argument to the first argument
dnl if the test worked, `no' otherwise. Be careful testing this, as it
dnl may produce two words `long long' on an unquoted substitution.
+dnl Also check that the compiler does not mind it being cast to int.
dnl This macro does not produce messages as it may be run several times
dnl before finding the right type.
dnl
@@ -97,6 +98,7 @@ AC_DEFUN(zsh_64_BIT_TYPE,
main()
{
$1 foo = 0;
+ int bar = (int) foo;
return sizeof($1) != 8;
}
], $2="$1", $2=no,