diff options
Diffstat (limited to 'utils/ghc-cabal/cabal_macros_boot.h')
-rw-r--r-- | utils/ghc-cabal/cabal_macros_boot.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/ghc-cabal/cabal_macros_boot.h b/utils/ghc-cabal/cabal_macros_boot.h index a2da63a3de..3b130e844c 100644 --- a/utils/ghc-cabal/cabal_macros_boot.h +++ b/utils/ghc-cabal/cabal_macros_boot.h @@ -1,6 +1,8 @@ /* defines a few MIN_VERSION_...() macros used by some of the bootstrap packages */ -#if __GLASGOW_HASKELL__ >= 711 +#if __GLASGOW_HASKELL__ >= 800 +/* macros are generated accurately by GHC on the fly */ +#elif __GLASGOW_HASKELL__ >= 711 /* package base-4.9.0.0 */ # define MIN_VERSION_base(major1,major2,minor) (\ (major1) < 4 || \ |