summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-04 01:18:13 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-04 01:18:13 +0200
commit049ecf0154b1b2e7ea7f4e22a8629461df2b07d6 (patch)
tree03b8b38c60d654852c2659b7baa3b3b91a8065f4 /aclocal.m4
parentcff3d205fbc6d9aac56d49ad9f500522e85fb831 (diff)
downloadgmp-049ecf0154b1b2e7ea7f4e22a8629461df2b07d6.tar.gz
Regenerate for:
* acinclude.m4 (GMP_PROG_CC_IS_GNU, GMP_PROG_CXX_WORKS): Send compiler errors to config.log.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index f4948a249..8a202a9e9 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -339,7 +339,7 @@ AC_DEFUN(GMP_PROG_CC_IS_GNU,
choke me
#endif
EOF
-gmp_compile="$1 -c conftest.c"
+gmp_compile="$1 -c conftest.c >&AC_FD_CC"
if AC_TRY_EVAL(gmp_compile); then
rm -f conftest*
AC_MSG_CHECKING([whether $1 is gcc])
@@ -577,7 +577,7 @@ main (void)
}
EOF
-gmp_cxxcompile="$1 conftest.cc -o conftest"
+gmp_cxxcompile="$1 conftest.cc -o conftest >&AC_FD_CC"
if AC_TRY_EVAL(gmp_cxxcompile); then
rm -f conftest*
AC_MSG_RESULT(yes)
@@ -790,7 +790,7 @@ EOF
EOF
;;
esac
- gmp_compile="$CC $CFLAGS $CPPFLAGS conftes1.c conftes2.s 1>&AC_FD_CC"
+ gmp_compile="$CC $CFLAGS $CPPFLAGS conftes1.c conftes2.s >&AC_FD_CC"
if AC_TRY_EVAL(gmp_compile); then
eval tmp_result$tmp_underscore=yes
else