diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-06 18:14:58 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-06 18:14:58 +0000 |
commit | f819bb7398c28c88bd12f95589ebae74d837cad4 (patch) | |
tree | c4ae693b496fc24bc76b08954ddbb4db3f2c49e2 /configure.ac | |
parent | 0438d37f65201eb75267220a7fa2c603c1fd7def (diff) | |
download | gcc-f819bb7398c28c88bd12f95589ebae74d837cad4.tar.gz |
* configure.ac: Bump minimum GMP version to 4.2.3.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@191037 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 36830d1de2f..a6f58280439 100644 --- a/configure.ac +++ b/configure.ac @@ -1358,7 +1358,7 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then AC_TRY_COMPILE([#include "gmp.h"],[ #define GCC_GMP_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) #define GCC_GMP_VERSION GCC_GMP_VERSION_NUM(__GNU_MP_VERSION,__GNU_MP_VERSION_MINOR,__GNU_MP_VERSION_PATCHLEVEL) - #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,2,0) + #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,2,3) choke me #endif ], [AC_TRY_COMPILE([#include <gmp.h>],[ |