diff options
author | Austin Seipp <austin@well-typed.com> | 2014-04-22 06:09:40 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-09-09 08:13:27 -0500 |
commit | d94de87252d0fe2ae97341d186b03a2fbe136b04 (patch) | |
tree | 1cac19f2786b1d8a1626886cd6373946a3a276b0 /mk | |
parent | fdfe6c0e50001add357475a1a3a7627243a28a70 (diff) | |
download | haskell-d94de87252d0fe2ae97341d186b03a2fbe136b04.tar.gz |
Make Applicative a superclass of Monad
Summary:
This includes pretty much all the changes needed to make `Applicative`
a superclass of `Monad` finally. There's mostly reshuffling in the
interests of avoid orphans and boot files, but luckily we can resolve
all of them, pretty much. The only catch was that
Alternative/MonadPlus also had to go into Prelude to avoid this.
As a result, we must update the hsc2hs and haddock submodules.
Signed-off-by: Austin Seipp <austin@well-typed.com>
Test Plan: Build things, they might not explode horribly.
Reviewers: hvr, simonmar
Subscribers: simonmar
Differential Revision: https://phabricator.haskell.org/D13
Diffstat (limited to 'mk')
-rw-r--r-- | mk/validate-settings.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk index bd3e3bc937..fad83c9c4b 100644 --- a/mk/validate-settings.mk +++ b/mk/validate-settings.mk @@ -96,8 +96,14 @@ libraries/containers_dist-install_EXTRA_HC_OPTS += -fno-warn-incomplete-patterns # Temporarily turn off pointless-pragma warnings for containers libraries/containers_dist-install_EXTRA_HC_OPTS += -fno-warn-pointless-pragmas -# Temporarily turn off unused-imports warnings for containers +# Turn off import warnings for bad unused imports libraries/containers_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports +libraries/hoopl_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports +libraries/bytestring_dist-install_EXTRA_HC_OPTS += -fno-warn-unused-imports +utils/haddock_dist_EXTRA_HC_OPTS += -fno-warn-unused-imports +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 # bytestring has identities at the moment libraries/bytestring_dist-install_EXTRA_HC_OPTS += -fno-warn-identities |