X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=configure.ac;h=f4d2f8be0bd35e46bf22d18fb7c48196f79476d7;hb=0f5905900efe55a2d11674451d6acea3884b2b3c;hp=5ba67073629971690864d73573007c0d60e9b5fb;hpb=93cd31711eea3dc9aa2ef8995e8ba054dabd87f0;p=ghc-hetmet.git diff --git a/configure.ac b/configure.ac index 5ba6707..f4d2f8b 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ dnl # see what flags are available. (Better yet, read the documentation!) # -AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.11], [glasgow-haskell-bugs@haskell.org], [ghc]) +AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.13], [glasgow-haskell-bugs@haskell.org], [ghc]) # Set this to YES for a released version, otherwise NO : ${RELEASE=NO} @@ -126,7 +126,12 @@ if test "$WithGhc" != ""; then GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'` GhcCanonVersion="$GhcMajVersion$GhcMinVersion2" if test $GhcCanonVersion -ge 609; then ghc_ge_609=YES; else ghc_ge_609=NO; fi + FP_COMPARE_VERSIONS($GhcVersion,[-ge],[6.10.2], + [ghc_ge_6102=YES], [ghc_ge_6102=NO]) + if test $GhcCanonVersion -ge 611; then ghc_ge_611=YES; else ghc_ge_611=NO; fi AC_SUBST(ghc_ge_609)dnl + AC_SUBST(ghc_ge_6102)dnl + AC_SUBST(ghc_ge_611)dnl fi dnl ** Must have GHC to build GHC, unless --enable-hc-boot is on