diff options
author | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2010-05-15 13:31:32 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2010-05-15 13:31:32 +0200 |
commit | b2c09663222ef03c461409fe51992ff45de0d8f5 (patch) | |
tree | 109d0d0c528adb72a1d6aa2489efc2e4e3a18733 /xmobar.cabal | |
parent | 6bbdc91ea0025e816b800ea0239287f5bf763452 (diff) | |
download | xmobar-b2c09663222ef03c461409fe51992ff45de0d8f5.tar.gz xmobar-b2c09663222ef03c461409fe51992ff45de0d8f5.tar.bz2 |
utf8 is optional
Ignore-this: a818a1a16ebc59161f60f9143cfd2e78caa8ea21
utf8 as a default dependency was added because of this:
http://www.haskell.org/pipermail/haskell/2010-April/022039.html
darcs-hash:20100515113132-d6583-9ce0beba660a304a9aedf489ba2e8587392d7adf.gz
Diffstat (limited to 'xmobar.cabal')
-rw-r--r-- | xmobar.cabal | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmobar.cabal b/xmobar.cabal index bad2b9a..64cc823 100644 --- a/xmobar.cabal +++ b/xmobar.cabal @@ -26,6 +26,7 @@ flag with_xft flag with_utf8 description: With UTF-8 support. + default: True flag with_inotify description: inotify support (modern Linux only). Required for the Mail plugin. @@ -65,7 +66,7 @@ executable xmobar build-depends: utf8-string, X11-xft >= 0.2 cpp-options: -DXFT - if flag(with_utf8) && impl (ghc < 6.12.1) + if flag(with_utf8) build-depends: utf8-string cpp-options: -DUTF8 |