From f6a9dff693c6723254273c73d7df503aa269d558 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 31 Oct 2008 17:15:06 +0000 Subject: [PATCH] We now require GHC 6.6 to build the HEAD (and thus 6.12) --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b3d1b32..9da99da 100644 --- a/configure.ac +++ b/configure.ac @@ -796,8 +796,8 @@ if test "$BootingFromHc" = "NO" -a -d "$srcdir/compiler"; then if test "$WithGhc" = ""; then AC_MSG_ERROR([GHC is required unless bootstrapping from .hc files.]) fi - FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[6.4], - [AC_MSG_ERROR([GHC version 6.4 or later is required to compile GHC.])])dnl + FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[6.6], + [AC_MSG_ERROR([GHC version 6.6 or later is required to compile GHC.])])dnl fi; # This uses GHC, so put it after the "GHC is required" check above: -- 1.7.10.4