diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-09-12 22:40:52 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-09-12 22:40:52 +0200 |
commit | fb21813a5ccb7208672d84e85b064cb853373c04 (patch) | |
tree | 786c054b7aece5ceef551a0f1444e63c7b636e20 | |
parent | df1ed51813e3343d7421543c3bf91415b8cc10c8 (diff) | |
download | metatile-fb21813a5ccb7208672d84e85b064cb853373c04.tar metatile-fb21813a5ccb7208672d84e85b064cb853373c04.zip |
Always use the "small base"
-rw-r--r-- | metatile.cabal | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/metatile.cabal b/metatile.cabal index d5327da..05bf6e0 100644 --- a/metatile.cabal +++ b/metatile.cabal @@ -27,9 +27,6 @@ tested-with: GHC==7.6.3 data-files: man/xmonad.hs, man/xmonad.1, man/xmonad.1.html -flag small_base - description: Choose the new smaller, split-up base package. - flag testing description: Testing mode, only build minimal components default: False @@ -44,11 +41,8 @@ library MetaTile.Operations MetaTile.StackSet - if flag(small_base) - build-depends: base < 5 && >=3, containers, directory, process, filepath, extensible-exceptions - else - build-depends: base < 3 - build-depends: X11>=1.5 && < 1.7, mtl, unix, + build-depends: base < 5 && >=3, containers, directory, process, filepath, extensible-exceptions, + X11>=1.5 && < 1.7, mtl, unix, utf8-string >= 0.3 && < 0.4, data-default @@ -87,7 +81,5 @@ executable metatile if flag(testing) cpp-options: -DTESTING hs-source-dirs: . tests/ - build-depends: QuickCheck < 2 + build-depends: QuickCheck < 2, filepath, process, directory, mtl, unix, X11, base, containers, random, extensible-exceptions ghc-options: -Werror - if flag(testing) && flag(small_base) - build-depends: filepath, process, directory, mtl, unix, X11, base, containers, random, extensible-exceptions |