diff options
author | Kevin Ryde <user42@zip.com.au> | 2001-12-21 19:17:06 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2001-12-21 19:17:06 +0100 |
commit | 7c0b81beccf3b3ad7b665f68391eef9dc010dbf8 (patch) | |
tree | 6bea98e6a2d1ba0ff931e1503f53208c1bcf1dfc /acinclude.m4 | |
parent | 30c0e4475cb4aab15de123d6f14eb69faf12a5d5 (diff) | |
download | gmp-7c0b81beccf3b3ad7b665f68391eef9dc010dbf8.tar.gz |
More of:
* acinclude.m4 (GMP_PROG_CC_WORKS): For a native compile, demand
executables will run, per AC_PROG_CC. This detects ABI=64 is unusable
in a native sparc solaris 7 build with the kernel in 32-bit mode.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 5a1b534ab..ac063cc8c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -381,7 +381,7 @@ if AC_TRY_EVAL(gmp_compile); then fi rm -f conftest* a.out a.exe AC_MSG_RESULT($gmp_prog_cc_works) -if test $gmp_prog_cc_works; then +if test $gmp_prog_cc_works = yes; then ifelse([$2],,:,[$2]) else ifelse([$3],,:,[$3]) |