diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-23 11:22:36 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-23 11:24:43 +0100 |
commit | 7035ff872450855c449c53554b6fe7b1e95ef50d (patch) | |
tree | c15b038655c2edb880f02279d207f425ba37d693 /utils/ghc-cabal | |
parent | f72074ec85edd06867587698be4f3db48d0658d0 (diff) | |
download | haskell-7035ff872450855c449c53554b6fe7b1e95ef50d.tar.gz |
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.
Diffstat (limited to 'utils/ghc-cabal')
-rw-r--r-- | utils/ghc-cabal/cabal_macros_boot.h | 8 |
1 files changed, 7 insertions, 1 deletions
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 || \ |