slackbuilds_ponce/desktop/xmonad/xmonad_cabal.patch
Mikko Värri bffbaabf9c desktop/xmonad: Adjust build for ghc 7.4.x.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2012-06-27 16:25:01 -04:00

28 lines
993 B
Diff

--- xmonad.cabal.orig 2012-05-16 01:04:06.426000004 +0300
+++ xmonad.cabal 2012-05-16 01:04:39.336999960 +0300
@@ -32,6 +32,10 @@
description: Testing mode, only build minimal components
default: False
+flag threaded
+ description: Use threaded runtime for xmonad binary
+ default: False
+
library
exposed-modules: XMonad
XMonad.Main
@@ -46,7 +54,7 @@
build-depends: base < 5 && >=3, containers, directory, process, filepath, extensible-exceptions
else
build-depends: base < 3
- build-depends: X11>=1.5.0.0 && < 1.6, mtl, unix,
+ build-depends: X11>=1.5.0.0 && < 1.7, mtl, unix,
utf8-string >= 0.3 && < 0.4
if true
@@ -88,3 +96,5 @@
ghc-options: -Werror
if flag(testing) && flag(small_base)
build-depends: filepath, process, directory, mtl, unix, X11, base, containers, random, extensible-exceptions
+ if flag(threaded)
+ ghc-options: -threaded