diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-11-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * configure.in (have_gmp): Only error if the gcc directory exists. + + * configure: Regenerate. + 2006-11-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * configure.in: Robustify error message for missing GMP/MPFR. @@ -2353,7 +2353,7 @@ rm -f conftest* fi CFLAGS="$saved_CFLAGS" -if test x$have_gmp != xyes; then +if test -d ${srcdir}/gcc && test x$have_gmp != xyes; then { echo "configure: error: Building GCC requires GMP 4.1+ and MPFR 2.2+. Try the --with-gmp and/or --with-mpfr options to specify their locations. Copies of these libraries' source code can be found at their respective diff --git a/configure.in b/configure.in index 2a8c4c2..ac5512f 100644 --- a/configure.in +++ b/configure.in @@ -1117,7 +1117,7 @@ if test x"$have_gmp" = xyes; then fi CFLAGS="$saved_CFLAGS" -if test x$have_gmp != xyes; then +if test -d ${srcdir}/gcc && test x$have_gmp != xyes; then AC_MSG_ERROR([Building GCC requires GMP 4.1+ and MPFR 2.2+. Try the --with-gmp and/or --with-mpfr options to specify their locations. Copies of these libraries' source code can be found at their respective |