summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2019-09-26 00:00:44 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-09-27 22:17:04 -0400
commit24620182abdfcc65a0cfc0e2f3bc391d464d0ad5 (patch)
treebb56dee17622a9381f73cf1b13746090d2f8e1c8
parent0b1fa64da252f53fb46399b9b994930b9e238097 (diff)
downloadhaskell-24620182abdfcc65a0cfc0e2f3bc391d464d0ad5.tar.gz
Raise minimum GHC version to 8.6
commit 795986aaf33e ("Remove unneeded CPP now that GHC 8.6 is the minimum") broke the 8.4 build.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f0be81fd66..706c1fb959 100644
--- a/configure.ac
+++ b/configure.ac
@@ -157,8 +157,8 @@ if test "$WithGhc" = ""
then
AC_MSG_ERROR([GHC is required.])
fi
-FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[8.4],
- [AC_MSG_ERROR([GHC version 8.4 or later is required to compile GHC.])])
+FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[8.6],
+ [AC_MSG_ERROR([GHC version 8.6 or later is required to compile GHC.])])
if test `expr $GhcMinVersion % 2` = "1"
then