diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2009-12-07 15:45:01 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2009-12-07 15:45:01 +0000 |
commit | b3a00b5034c404458ba4a32c337bdc2c94f916ed (patch) | |
tree | c21b4eea2c424012935bbdb909698725d18c4130 | |
parent | 16a19648a2e33854ec971362dbb4a0ca70f19bc4 (diff) | |
download | gcc-b3a00b5034c404458ba4a32c337bdc2c94f916ed.zip gcc-b3a00b5034c404458ba4a32c337bdc2c94f916ed.tar.gz gcc-b3a00b5034c404458ba4a32c337bdc2c94f916ed.tar.bz2 |
re PR other/40302 (GCC must hard-require MPC before release)
PR other/40302
* configure.ac (HAVE_mpc): Don't define.
* config.in, configure: Regenerate.
From-SVN: r155047
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.in | 6 | ||||
-rwxr-xr-x | gcc/configure | 6 | ||||
-rw-r--r-- | gcc/configure.ac | 4 |
4 files changed, 4 insertions, 16 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 785a378..b322034 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,10 @@ 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> PR other/40302 + * configure.ac (HAVE_mpc): Don't define. + * config.in, configure: Regenerate. + + PR other/40302 * builtins.c: Remove HAVE_mpc* checks throughout. * fold-const.c: Likewise. * real.h: Likewise. diff --git a/gcc/config.in b/gcc/config.in index 681e4f8..1686be9 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1477,12 +1477,6 @@ #endif -/* Define if mpc is in use. */ -#ifndef USED_FOR_TARGET -#undef HAVE_mpc -#endif - - /* Define as const if the declaration of iconv() needs const. */ #ifndef USED_FOR_TARGET #undef ICONV_CONST diff --git a/gcc/configure b/gcc/configure index e93e805..c837203 100755 --- a/gcc/configure +++ b/gcc/configure @@ -24951,12 +24951,6 @@ fi -case "${GMPLIBS}" in - *-lmpc*) -$as_echo "#define HAVE_mpc 1" >>confdefs.h - ;; -esac - diff --git a/gcc/configure.ac b/gcc/configure.ac index f357e1e..665863f 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -4259,10 +4259,6 @@ fi AC_ARG_VAR(GMPLIBS,[How to link GMP]) AC_ARG_VAR(GMPINC,[How to find GMP include files]) -case "${GMPLIBS}" in - *-lmpc*) AC_DEFINE(HAVE_mpc, 1, [Define if mpc is in use.]) ;; -esac - AC_ARG_VAR(PPLLIBS,[How to link PPL]) AC_ARG_VAR(PPLINC,[How to find PPL include files]) |