summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2000-05-19 11:09:47 +0200
committerLinus Nordberg <linus@nordberg.se>2000-05-19 11:09:47 +0200
commitbc102f8458059ded650dcee539d3e0c5d21d60a5 (patch)
tree96bfb8d9c043194888ab7bea703fa170ffb0d291 /acinclude.m4
parent395911638b5a12420d08674043ac95440a25bd1a (diff)
downloadgmp-bc102f8458059ded650dcee539d3e0c5d21d60a5.tar.gz
(GMP_CHECK_CC_64BIT): Don't use shell variable `ac_compile' for our
own compile command string since other Autoconf macros may depend on it.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 37f89c304..536dd469c 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -266,8 +266,8 @@ AC_DEFUN(GMP_CHECK_CC_64BIT,
[char arr[sizeof (void *)]={0};
char post=0;]
EOF
- ac_compile="$CC $CFLAGS -c conftest.c 1>&AC_FD_CC"
- if AC_TRY_EVAL(ac_compile); then
+ gmp_compile="$CC $CFLAGS -c conftest.c 1>&AC_FD_CC"
+ if AC_TRY_EVAL(gmp_compile); then
changequote(<,>)dnl
gmp_tmp_val=`$NM conftest.o | grep post | sed -e 's;[[][0-9][]]\(.*\);\1;' \
-e 's;[^1-9]*\([0-9]*\).*;\1;'`