diff options
author | jao <jao@gnu.org> | 2022-09-15 12:23:56 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-09-15 12:23:56 +0100 |
commit | 123fbce476fdc8deee41785c0c20c09f0a05da8e (patch) | |
tree | 7d2222a45a34d2a2484fea220c0fcc88d09f4c01 /xmobar.cabal | |
parent | 895704ce7e093c84d7aec806bac98a51c0ab3a01 (diff) | |
download | xmobar-123fbce476fdc8deee41785c0c20c09f0a05da8e.tar.gz xmobar-123fbce476fdc8deee41785c0c20c09f0a05da8e.tar.bz2 |
cairo: flags: with_xft gone and with_cairo true by default
Diffstat (limited to 'xmobar.cabal')
-rw-r--r-- | xmobar.cabal | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/xmobar.cabal b/xmobar.cabal index 8fe9acb..a2958ad 100644 --- a/xmobar.cabal +++ b/xmobar.cabal @@ -32,13 +32,8 @@ source-repository head location: git://codeberg.org/xmobar/xmobar.git branch: master -flag with_xft - description: Use Xft to render text. Deprecated: use with_cairo instead. - default: False - flag with_cairo description: Use Cairo and Pango to render anti-aliased text. - default: False flag with_inotify description: inotify support (modern Linux only). Required for the Mail and MBox plugins. @@ -229,11 +224,11 @@ library if flag(with_rtsopts) cpp-options: -DRTSOPTS - if flag(with_cairo) || flag(all_extensions) || flag(with_xft) - build-depends: cairo >= 0.13 && < 0.14, - pango >= 0.13 && < 0.14, + if flag(with_cairo) + build-depends: cairo >= 0.13, + pango >= 0.13, colour >= 2.3.6, - X11-xft >= 0.2 && < 0.4 + X11-xft >= 0.2 other-modules: Xmobar.X11.CairoSurface, Xmobar.X11.CairoDraw, Xmobar.X11.XRender |