Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/freetype/files: ft2demos-2.5.1-compilefix.patch
Date: Fri, 06 Dec 2013 22:04:50
Message-Id: 20131206220442.559EB20005@flycatcher.gentoo.org
1 polynomial-c 13/12/06 22:04:42
2
3 Added: ft2demos-2.5.1-compilefix.patch
4 Log:
5 Fixed compilation with "utils" USE flag being enabled. Got rid of all instances of MY_PV this time
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
8
9 Revision Changes Path
10 1.1 media-libs/freetype/files/ft2demos-2.5.1-compilefix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/ft2demos-2.5.1-compilefix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/freetype/files/ft2demos-2.5.1-compilefix.patch?rev=1.1&content-type=text/plain
14
15 Index: ft2demos-2.5.1-compilefix.patch
16 ===================================================================
17 --- ft2demos-2.5.1/src/ftgrid.c
18 +++ ft2demos-2.5.1/src/ftgrid.c
19 @@ -53,10 +53,10 @@
20 struct AF_GlyphHintsRec_;
21 typedef struct AF_GlyphHintsRec_* AF_GlyphHints;
22
23 - extern int _af_debug_disable_horz_hints;
24 - extern int _af_debug_disable_vert_hints;
25 - extern int _af_debug_disable_blue_hints;
26 - extern AF_GlyphHints _af_debug_hints;
27 + int _af_debug_disable_horz_hints;
28 + int _af_debug_disable_vert_hints;
29 + int _af_debug_disable_blue_hints;
30 + AF_GlyphHints _af_debug_hints;
31
32 #ifdef __cplusplus
33 extern "C" {