diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-11-15 12:16:38 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-11-15 12:20:03 +0100 |
commit | 609cd28a1a8616f4076088c87e443850d807ba7d (patch) | |
tree | 7d6979b50f3c2660387e85c2e96dc874ff63fd58 /mk | |
parent | 185482524d4fa5954243476de1452219fb077228 (diff) | |
download | haskell-609cd28a1a8616f4076088c87e443850d807ba7d.tar.gz |
Update to (unreleased) `deepseq-1.4.0.0`
This pulls in the new `Generic`-based `-XDefaultSignature`-based default
implementation for `rnf`[1], and will be interesting to use in combination
with the soon to be merged `-XDeriveAnyClass` extension.
This requires updating several other submodules as well in order
to relax the upper bound on `deepseq` and/or in a few cases to
avoid relying on the default method implementation of `rnf`:
- `Cabal`
- `bytestring`
- `containers`
- `parallel`
- `process`
- `time`
[1]: http://permalink.gmane.org/gmane.comp.lang.haskell.libraries/23031
Diffstat (limited to 'mk')
-rw-r--r-- | mk/validate-settings.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk index 150aec3323..cce50638dc 100644 --- a/mk/validate-settings.mk +++ b/mk/validate-settings.mk @@ -108,6 +108,9 @@ libraries/stm_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports libraries/parallel_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports libraries/vector_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports +# haddock's attoparsec uses deprecated `inlinePerformIO` +utils/haddock_dist_EXTRA_HC_OPTS += -fno-warn-deprecations + # bytestring has identities at the moment libraries/bytestring_dist-install_EXTRA_HC_OPTS += -fno-warn-identities |