diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2016-12-12 23:16:40 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2016-12-12 23:16:40 -0600 |
commit | 87b911b2b62bf02bf99c91ab27b14b27991e0723 (patch) | |
tree | cf8632141a401996bfc98656417c496f3b00a1a0 /x11-libs/cairo/files/cairo-respect-fontconfig.patch | |
parent | 63be2fd6770f06d2d98e3ba7b11071a7c91f7a6e (diff) | |
download | packages-87b911b2b62bf02bf99c91ab27b14b27991e0723.tar.gz packages-87b911b2b62bf02bf99c91ab27b14b27991e0723.tar.bz2 packages-87b911b2b62bf02bf99c91ab27b14b27991e0723.tar.xz packages-87b911b2b62bf02bf99c91ab27b14b27991e0723.zip |
x11-libs/cairo: bump for Xcb support (for i3lock)
Diffstat (limited to 'x11-libs/cairo/files/cairo-respect-fontconfig.patch')
-rw-r--r-- | x11-libs/cairo/files/cairo-respect-fontconfig.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11-libs/cairo/files/cairo-respect-fontconfig.patch b/x11-libs/cairo/files/cairo-respect-fontconfig.patch new file mode 100644 index 000000000..b0a1b2963 --- /dev/null +++ b/x11-libs/cairo/files/cairo-respect-fontconfig.patch @@ -0,0 +1,13 @@ +--- cairo-1.7.6-orig/src/cairo-ft-font.c 2008-09-29 21:43:13.000000000 +0100 ++++ cairo-1.7.6/src/cairo-ft-font.c 2008-09-29 21:52:19.000000000 +0100 +@@ -1705,7 +1705,9 @@ + options->base.subpixel_order = other->base.subpixel_order; + } + +- if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT) ++ options->base.hint_style = CAIRO_HINT_STYLE_DEFAULT; ++ ++ if (other->base.hint_style != CAIRO_HINT_STYLE_DEFAULT) + options->base.hint_style = other->base.hint_style; + + if (other->base.hint_style == CAIRO_HINT_STYLE_NONE) |