wok view cairo/stuff/cairo-respect-fontconfig.patch @ rev 7615

Added xorg-dev-proto to xorg-server-dev depends. Needs xorg-dev-proto for pkg-config to work with xorg-server-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 11 21:51:57 2010 +0000 (2010-12-11)
parents
children
line source
1 diff -Nur cairo-1.8.6.orig/src/cairo-ft-font.c cairo-1.8.6/src/cairo-ft-font.c
2 --- cairo-1.8.6.orig/src/cairo-ft-font.c 2008-12-12 20:48:04.000000000 +0800
3 +++ cairo-1.8.6/src/cairo-ft-font.c 2009-02-20 14:56:57.000000000 +0800
4 @@ -1448,8 +1448,15 @@
5 if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT)
6 options->base.hint_style = other->base.hint_style;
8 - if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
9 - options->base.hint_style = CAIRO_HINT_STYLE_NONE;
10 + //if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
11 + //options->base.hint_style = CAIRO_HINT_STYLE_NONE;
12 +
13 + if (other->base.hint_style == CAIRO_HINT_STYLE_NONE ||
14 + other->base.hint_style == CAIRO_HINT_STYLE_SLIGHT ||
15 + other->base.hint_style == CAIRO_HINT_STYLE_MEDIUM ||
16 + other->base.hint_style == CAIRO_HINT_STYLE_FULL) {
17 + options->base.hint_style = other->base.hint_style;
18 + }
20 if (options->base.antialias == CAIRO_ANTIALIAS_NONE) {
21 if (options->base.hint_style == CAIRO_HINT_STYLE_NONE)