diff options
| author | hallgren <hallgren@chalmers.se> | 2014-03-04 14:13:41 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2014-03-04 14:13:41 +0000 |
| commit | 76ba865c2ed85bdf9de5f936da2e064ce8ed3816 (patch) | |
| tree | 648b63ff7bb10b104ca37e215cf7c93e52a61d88 /src/binary/Data/Binary/Builder.hs | |
| parent | cbe17732a68cc6ccc8b516de0533d00209ffffd7 (diff) | |
Three fixes for compatibility with GHC 7.8
Two of the fixes were in the custom version of the binary package. We
should get rid of it at some point, to reduce the maintenance burden.
The third fix was to add new version constraints for happy and alex in
gf.cabal. New versions of them are needed because of the ugly, low-level,
GHC-specific code they produce need to be different for GHC 7.8.
More fixes might be needed for -server mode, but the cgi package is not
compatible with GHC 7.8 at the moment, so it will have to wait.
Diffstat (limited to 'src/binary/Data/Binary/Builder.hs')
| -rw-r--r-- | src/binary/Data/Binary/Builder.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/binary/Data/Binary/Builder.hs b/src/binary/Data/Binary/Builder.hs index 183483945..6aee97964 100644 --- a/src/binary/Data/Binary/Builder.hs +++ b/src/binary/Data/Binary/Builder.hs @@ -55,6 +55,7 @@ module Data.Binary.Builder ( ) where import Foreign +import System.IO.Unsafe(unsafePerformIO) import Data.Monoid --import Data.Word import qualified Data.ByteString as S |
