From 7035ff872450855c449c53554b6fe7b1e95ef50d Mon Sep 17 00:00:00 2001 From: Herbert Valerio Riedel Date: Mon, 23 Mar 2015 11:22:36 +0100 Subject: Minor bump `base` version to 4.8.1.0 We've accumulated enough to justify a minor version bump to 4.8.1.0, but not enough to justify a major version bump yet as far as I can see. --- utils/ghc-cabal/cabal_macros_boot.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/ghc-cabal/cabal_macros_boot.h b/utils/ghc-cabal/cabal_macros_boot.h index 41cddb107d..e0e18b589f 100644 --- a/utils/ghc-cabal/cabal_macros_boot.h +++ b/utils/ghc-cabal/cabal_macros_boot.h @@ -1,6 +1,12 @@ /* defines a few MIN_VERSION_...() macros used by some of the bootstrap packages */ -#if __GLASGOW_HASKELL__ >= 709 +#if __GLASGOW_HASKELL__ >= 711 +/* package base-4.8.1.0 */ +# define MIN_VERSION_base(major1,major2,minor) (\ + (major1) < 4 || \ + (major1) == 4 && (major2) < 8 || \ + (major1) == 4 && (major2) == 8 && (minor) <= 1) +#elif __GLASGOW_HASKELL__ >= 709 /* package base-4.8.0.0 */ # define MIN_VERSION_base(major1,major2,minor) (\ (major1) < 4 || \ -- cgit v1.2.1