1commit 7d246751628bb877e04da762ec1a2e41ffa62154
2Author: Matthieu Herrb <matthieu@herrb.eu>
3Date:   Tue Nov 28 15:33:15 2017 +0100
4
5    libXfont 1.5.4
6
7commit 5ed8ac0e4f063825b8ecda48e9a111d3ce92e825
8Author: Michal Srb <msrb@suse.com>
9Date:   Thu Oct 26 09:48:13 2017 +0200
10
11    Open files with O_NOFOLLOW. (CVE-2017-16611)
12    
13    A non-privileged X client can instruct X server running under root to open any
14    file by creating own directory with "fonts.dir", "fonts.alias" or any font file
15    being a symbolic link to any other file in the system. X server will then open
16    it. This can be issue with special files such as /dev/watchdog.
17    
18    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
19
20commit f581c2346d025d5b15926db9e58f254173fb58dc
21Author: Matt Turner <mattst88@gmail.com>
22Date:   Thu Oct 19 13:45:58 2017 -0700
23
24    libXfont 1.5.3
25    
26    Signed-off-by: Matt Turner <mattst88@gmail.com>
27
28commit 3b08934dca75e4c559db7d83797bc3d365c2a50a
29Author: Michal Srb <msrb@suse.com>
30Date:   Thu Jul 20 17:05:23 2017 +0200
31
32    pcfGetProperties: Check string boundaries (CVE-2017-13722)
33    
34    Without the checks a malformed PCF file can cause the library to make
35    atom from random heap memory that was behind the `strings` buffer.
36    This may crash the process or leak information.
37    
38    Signed-off-by: Julien Cristau <jcristau@debian.org>
39    (cherry picked from commit 672bb944311392e2415b39c0d63b1e1902905bcd)
40
41commit a2a5fa591762b430037e33f1df55b460550ab406
42Author: Michal Srb <msrb@suse.com>
43Date:   Thu Jul 20 13:38:53 2017 +0200
44
45    Check for end of string in PatternMatch (CVE-2017-13720)
46    
47    If a pattern contains '?' character, any character in the string is skipped,
48    even if it is '\0'. The rest of the matching then reads invalid memory.
49    
50    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
51    Signed-off-by: Julien Cristau <jcristau@debian.org>
52    (cherry picked from commit d1e670a4a8704b8708e493ab6155589bcd570608)
53
54commit 8cce9834b2e74dccad94ca0adf79ae5585e37d48
55Author: Adam Jackson <ajax@redhat.com>
56Date:   Wed Aug 31 16:19:11 2016 -0400
57
58    libXfont 1.5.2
59    
60    Signed-off-by: Adam Jackson <ajax@redhat.com>
61
62commit 42d85d1293b2753f3f200de0e960bacef0c973c7
63Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
64Date:   Mon May 30 00:46:21 2016 -0700
65
66    fserve: Fix a buffer read overrun in _fs_client_access
67    
68    https://bugs.freedesktop.org/show_bug.cgi?id=83224
69    
70    Found by clang's Address Sanitizer
71    
72    	crac.num_auths = set_font_authorizations(&authorizations, &authlen,
73    						 client);
74    	/* Work around bug in xfs versions up through modular release 1.0.8
75    	   which rejects CreateAC packets with num_auths = 0 & authlen < 4 */
76    	if (crac.num_auths == 0) {
77    	    authorizations = padding;
78    	    authlen = 4;
79    	} else {
80    	    authlen = (authlen + 3) & ~0x3;
81    	}
82    	crac.length = (sizeof (fsCreateACReq) + authlen) >> 2;
83    	crac.acid = cur->acid;
84    	_fs_add_req_log(conn, FS_CreateAC);
85    	_fs_write(conn, (char *) &crac, sizeof (fsCreateACReq));
86    	_fs_write(conn, authorizations, authlen);
87    
88    In the case in the report, set_font_authorizations setup authorizations as a
89    34 byte buffer (and authlen set to 34 as one would expect). The following
90    block changed authlen to 36 to make it 4byte aligned and the final _fs_write()
91    caused us to read 36 bytes from this 34 byte buffer.
92    
93    This changes the incorrect size increase to instead use _fs_write_pad which
94    takes care of the padding for us.
95    
96    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
97    (cherry picked from commit 6972ea08ee5b2ef1cfbdc2fcaf14f06bbd391561)
98
99commit 2b09a7af9f19db886567e524f978ad393593f7c0
100Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
101Date:   Sun May 29 23:37:13 2016 -0700
102
103    fserve: Silence a -Wformat warning
104    
105    src/fc/fserve.c:653:32: warning: format specifies type 'int' but the argument has type 'CARD32' (aka 'unsigned long') [-Wformat]
106                   " from font server\n", rep->length);
107                                          ^~~~~~~~~~~
108    1 warning generated.
109    
110    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
111    (cherry picked from commit e6009adbc89ec3e1f924bcb57b333c1c02f5e66d)
112
113commit 3eddbca2690381bbbaf14adadb2679eea702095f
114Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
115Date:   Sun May 29 23:34:35 2016 -0700
116
117    bitmap: Bail out on invalid input to FontFileMakeDir instead of calling calloc for 0 bytes
118    
119    Found by clang static analysis:
120        Call to 'calloc' has an allocation size of 0 bytes
121    
122    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
123    (cherry picked from commit ac559fad20bbae45332c758abb6a790c3fd341a2)
124
125commit dfa572ea522a3019e91f2de7854b252c629342f2
126Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
127Date:   Sun May 29 23:29:50 2016 -0700
128
129    FreeType: Correct an allocation size
130    
131    Found by clang static analysis:
132        Result of 'calloc' is converted to a pointer of type 'int', which is
133        incompatible with sizeof operand type 'int *'
134    
135    This is likely benign because the old size was larger on any platform where
136    sizeof(int) <= sizeof(void *), which is everywhere.
137    
138    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
139    (cherry picked from commit d0fff111992fed9d9bfbf0c19e136bda9ba1db55)
140
141commit bee4a764ccef46101dca03c70d4ad1793a5a5d78
142Author: Keith Packard <keithp@keithp.com>
143Date:   Mon Dec 7 15:46:13 2015 -0800
144
145    Fix warnings
146    
147    Mostly signed vs unsigned comparisons
148    
149    Signed-off-by: Keith Packard <keithp@keithp.com>
150    
151    Squashed commit of three cherry-picks from master:
152    (cherry picked from commit eb67d10ae82b364a4324e96ce53baaa4e5e75f97)
153    (cherry picked from commit eefc0b0b908eb8533e704d7156ce983ad7891cc5)
154    (cherry picked from commit d967caa988eaabd9e84c82879e2f21bd33b952a7)
155
156commit d6877a7c1c35985f6a75b6cd4e814595e781adc4
157Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
158Date:   Wed Oct 21 21:03:00 2015 -0700
159
160    Use NO_WEAK_SYMBOLS instead of -flat_namespace
161    
162    Lesser of two evil hacks, I suppose...
163    
164    This reverts commit 0386fa77367a305deea3cc27f8a3865cc3c467c0.
165
166commit 2788c6984bc54bfba61b2dbdb5353978199d8a37
167Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
168Date:   Wed Oct 21 21:27:26 2015 -0700
169
170    stubs: Add missing externs for declarations in the NO_WEAK_SYMBOLS && PIC stubs resolution
171    
172    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
173
174commit d66f107d6e714a54515f39d94caf46aef9be7416
175Author: Thomas Klausner <wiz@NetBSD.org>
176Date:   Wed Feb 25 21:45:50 2015 +0100
177
178    Fix is*() usage.
179    
180    The argument must be an unsigned char or -1; in these cases
181    we know it's not -1 so cast it to unsigned char.
182    Fixes
183    warning: array subscript is of type 'char' [-Wchar-subscripts]
184    
185    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
186
187commit 1a73d6828dfa03924f2d68644fb5b99afd9c78e2
188Author: Benjamin Tissoires <benjamin.tissoires@gmail.com>
189Date:   Mon Jul 13 14:43:06 2015 -0400
190
191    bdfReadCharacters: Allow negative DWIDTH values
192    
193    The fix for CVE-2015-1804 prevent DWIDTH to be negative.
194    However, the spec states that "DWIDTH [...] is a vector indicating the
195    position of the next glyph’s origin relative to the origin of this glyph."
196    
197    So negative values are correct.
198    
199    Found by trying to compile XTS.
200    
201    Signed-off-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
202    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
203    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
204
205commit 159bfa4ec094e7d342c9b59c31bfea7dccbac58a
206Author: Alan Coopersmith <alan.coopersmith@oracle.com>
207Date:   Sat Feb 7 17:24:48 2015 -0800
208
209    doc: add a couple olinks to fsproto & xfs-design docs
210    
211    Don't seem to have ability to link to BDF or Xserver internals docs yet
212    
213    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
214
215commit da4246c98bc51297daeec47c15181e179df94013
216Author: Alan Coopersmith <alan.coopersmith@oracle.com>
217Date:   Tue Mar 17 08:12:19 2015 -0700
218
219    libXfont 1.5.1
220    
221    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
222
223commit 2351c83a77a478b49cba6beb2ad386835e264744
224Author: Alan Coopersmith <alan.coopersmith@oracle.com>
225Date:   Fri Mar 6 22:54:58 2015 -0800
226
227    bdfReadCharacters: ensure metrics fit into xCharInfo struct [CVE-2015-1804]
228    
229    We use 32-bit ints to read from the bdf file, but then try to stick
230    into a 16-bit int in the xCharInfo struct, so make sure they won't
231    overflow that range.
232    
233    Found by afl-1.24b.
234    
235    v2: Verify that additions won't overflow 32-bit int range either.
236    v3: As Julien correctly observes, the previous check for bh & bw not
237        being < 0 reduces the number of cases we need to check for overflow.
238    
239    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
240    Reviewed-by: Julien Cristau <jcristau@debian.org>
241
242commit 78c2e3d70d29698244f70164428bd2868c0ab34c
243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
244Date:   Fri Feb 6 15:54:00 2015 -0800
245
246    bdfReadCharacters: bailout if a char's bitmap cannot be read [CVE-2015-1803]
247    
248    Previously would charge on ahead with a NULL pointer in ci->bits, and
249    then crash later in FontCharInkMetrics() trying to access the bits.
250    
251    Found with afl-1.23b.
252    
253    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
254    Reviewed-by: Julien Cristau <jcristau@debian.org>
255
256commit 2deda9906480f9c8ae07b8c2a5510cc7e4c59a8e
257Author: Alan Coopersmith <alan.coopersmith@oracle.com>
258Date:   Fri Feb 6 15:50:45 2015 -0800
259
260    bdfReadProperties: property count needs range check [CVE-2015-1802]
261    
262    Avoid integer overflow or underflow when allocating memory arrays
263    by multiplying the number of properties reported for a BDF font.
264    
265    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
266    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
267    Reviewed-by: Julien Cristau <jcristau@debian.org>
268
269commit d9fda3d247942292a5f24694c22337c547006e11
270Author: Christos Zoulas <christos@NetBSD.org>
271Date:   Wed Feb 25 21:39:30 2015 +0100
272
273    Set close-on-exec for font file I/O.
274    
275    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
276    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
277
278commit 3b33588117c2ca3099b999939985ffe098d479b3
279Author: Alan Coopersmith <alan.coopersmith@oracle.com>
280Date:   Wed Nov 5 17:41:24 2014 -0800
281
282    Use 'imdent' to realign cpp indentation levels in fslibos.h
283    
284    Parts were indented, others weren't, now is more consistent.
285    'git diff -w' shows no non-whitespace changes in this commit
286    
287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
288
289commit 03c035b061a0582159467dcadfc8e95074e2a84f
290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
291Date:   Wed Nov 5 17:39:05 2014 -0800
292
293    Remove unneeded checks for #ifndef X_NOT_POSIX
294    
295    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
296
297commit ad4f4d8a2d0730c0ea3c09210bf921638b4682bc
298Author: Alan Coopersmith <alan.coopersmith@oracle.com>
299Date:   Sat Jul 19 09:49:23 2014 -0700
300
301    libXfont 1.5.0
302    
303    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
304
305commit b19cf2a78f7f721c43d0d9e2f32b71fc746142a3
306Author: Alan Coopersmith <alan.coopersmith@oracle.com>
307Date:   Mon Jul 7 13:18:18 2014 -0700
308
309    libXfont 1.4.99.901
310    
311    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
312
313commit 0dcdd82059c69ec417bb094f4da2afef7cc1426a
314Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
315Date:   Sun Apr 6 14:18:32 2014 -0500
316
317    Make shared library work on Cygwin/MinGW
318    
319    Weak symbols on PE platforms do not work the same way as on ELF
320    platforms, hence we have been unable to have a fully functional shared
321    libXfont until now.  This patch works around these issues so that we
322    can fix that.
323    
324    In summary, only when compiling shared libraries on NO_WEAK_SYMBOLS
325    platforms, when the first stub is called, the invoking program is first
326    checked to determine if it exports the stubbed functions.  Then, for
327    every stub call, if the function is exported by the loader, it is called
328    instead of the stub code.
329    
330    serverClient and serverGeneration are data pointers, and therefore are
331    replaced by getter functions. ErrorF is variadic, so the override is
332    routed through VErrorF instead. FatalError has no va_list equivalent,
333    but it is not actually used in libXfont and therefore should be safe to
334    remove.
335    
336    This requires all X servers to export their symbols, which requires
337    forthcoming patches for hw/xwin and xfs; the other xservers (including
338    tigervnc) already do this via LD_EXPORT_SYMBOLS_FLAG.
339    
340    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
341    Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
342    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
343    Tested-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
344
345commit 783a406d6258509abfbdc54c0b32366dcaf13044
346Author: Keith Packard <keithp@keithp.com>
347Date:   Mon Apr 21 13:37:00 2014 -0700
348
349    Use default glyphs when getting 16-bit font with 8-bit text
350    
351    When accessing a 16-bit font with firstRow > 0 with 8-bit text, check
352    to see if the font has a default character and return that for every
353    incoming character.
354    
355    Signed-off-by: Keith Packard <keithp@keithp.com>
356    Reviewed-by: Eric Anholt <eric@anholt.net>
357    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
358
359commit e8d20171fe04dbdc5f97739d5a59e02f0b091ba0
360Author: Alan Coopersmith <alan.coopersmith@oracle.com>
361Date:   Thu May 15 23:04:23 2014 -0700
362
363    Don't build unused code in bitmapfunc.c if all bitmap formats are disabled
364    
365    If the only bitmaps we support are builtins, don't need the code to
366    register all the bitmap font file handlers.
367    
368    Fixes gcc warnings:
369    bitmapfunc.c:110:1: warning: 'BitmapOpenBitmap' defined but not used [-Wunused-function]
370     BitmapOpenBitmap (FontPathElementPtr fpe, FontPtr *ppFont, int flags,
371     ^
372    bitmapfunc.c:155:1: warning: 'BitmapGetInfoBitmap' defined but not used [-Wunused-function]
373     BitmapGetInfoBitmap (FontPathElementPtr fpe, FontInfoPtr pFontInfo,
374     ^
375    
376    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
377    Reviewed-by: Rémi Cardona <remi@gentoo.org>
378
379commit c2b7758d268fd98e09c3e66a0e7717b47ff12a47
380Author: Alan Coopersmith <alan.coopersmith@oracle.com>
381Date:   Thu May 15 22:44:38 2014 -0700
382
383    Don't compile bitmap source files for disabled formats
384    
385    pcfread.c is a special case - it's needed for either reading pcf files
386    from disk (--enable-pcfformat) or from the builtin fonts in memory
387    (--enable-builtins), so needed a new AM_CONDITIONAL case.
388    
389    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
390    Reviewed-by: Rémi Cardona <remi@gentoo.org>
391
392commit a81f1a9bd3cd0a9d45d93d5b9e392b4e08ac60f7
393Author: Alan Coopersmith <alan.coopersmith@oracle.com>
394Date:   Thu May 15 20:43:34 2014 -0700
395
396    Drop imake/monolithic compatibility #define mapping
397    
398    Require the #defines from configure.ac now that we're not sharing source
399    with the imake builds any longer.
400    
401    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
402    Reviewed-by: Rémi Cardona <remi@gentoo.org>
403
404commit 37595cfd4feaf031552d66f96dc6d58686f9c851
405Author: Alan Coopersmith <alan.coopersmith@oracle.com>
406Date:   Thu May 15 20:26:41 2014 -0700
407
408    Change default to disabling SNF support
409    
410    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
411    Reviewed-by: Rémi Cardona <remi@gentoo.org>
412
413commit 9f677e55c7bf07df280427f127af21e5b70f1e03
414Author: Alan Coopersmith <alan.coopersmith@oracle.com>
415Date:   Thu May 15 20:21:29 2014 -0700
416
417    Use AS_HELP_STRING to provide help for AC_ARG_ENABLE & AC_ARG_WITH options
418    
419    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
420    Reviewed-by: Rémi Cardona <remi@gentoo.org>
421
422commit d338f81df1e188eb16e1d6aeea7f4800f89c1218
423Author: Alan Coopersmith <alan.coopersmith@oracle.com>
424Date:   Fri May 2 19:24:17 2014 -0700
425
426    CVE-2014-0210: unvalidated length fields in fs_read_list_info()
427    
428    fs_read_list_info() parses a reply from the font server.  The reply
429    contains a number of additional data items with embedded length or
430    count fields, none of which are validated. This can cause out of
431    bound reads when looping over these items in the reply.
432    
433    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
434
435commit 5fa73ac18474be3032ee7af9c6e29deab163ea39
436Author: Alan Coopersmith <alan.coopersmith@oracle.com>
437Date:   Fri May 2 19:24:17 2014 -0700
438
439    CVE-2014-0210: unvalidated length fields in fs_read_list()
440    
441    fs_read_list() parses a reply from the font server.  The reply
442    contains a list of strings with embedded length fields, none of
443    which are validated. This can cause out of bound reads when looping
444    over the strings in the reply.
445    
446    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
447
448commit 520683652564c2a4e42328ae23eef9bb63271565
449Author: Alan Coopersmith <alan.coopersmith@oracle.com>
450Date:   Fri Apr 25 23:03:24 2014 -0700
451
452    CVE-2014-0210: unvalidated length fields in fs_read_glyphs()
453    
454    fs_read_glyphs() parses a reply from the font server.  The reply
455    contains embedded length fields, none of which are validated.
456    This can cause out of bound reads when looping over the glyph
457    bitmaps in the reply.
458    
459    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
460    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
461    Reviewed-by: Adam Jackson <ajax@redhat.com>
462    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
463
464commit a3f21421537620fc4e1f844a594a4bcd9f7e2bd8
465Author: Alan Coopersmith <alan.coopersmith@oracle.com>
466Date:   Fri Apr 25 23:03:05 2014 -0700
467
468    CVE-2014-0210: unvalidated length fields in fs_read_extent_info()
469    
470    Looping over the extents in the reply could go past the end of the
471    reply buffer if the reply indicated more extents than could fit in
472    the specified reply length.
473    
474    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
475    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
476    Reviewed-by: Adam Jackson <ajax@redhat.com>
477    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
478
479commit a42f707f8a62973f5e8bbcd08afb10a79e9cee33
480Author: Alan Coopersmith <alan.coopersmith@oracle.com>
481Date:   Fri Apr 25 23:02:54 2014 -0700
482
483    CVE-2014-0211: integer overflow in fs_alloc_glyphs()
484    
485    fs_alloc_glyphs() is a malloc wrapper used by the font code.
486    It contains a classic integer overflow in the malloc() call,
487    which can cause memory corruption.
488    
489    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
490    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
491    Reviewed-by: Adam Jackson <ajax@redhat.com>
492    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
493
494commit c578408c1fd4db09e4e3173f8a9e65c81cc187c1
495Author: Alan Coopersmith <alan.coopersmith@oracle.com>
496Date:   Fri Apr 25 23:02:42 2014 -0700
497
498    CVE-2014-0211: integer overflow in fs_read_extent_info()
499    
500    fs_read_extent_info() parses a reply from the font server.
501    The reply contains a 32bit number of elements field which is used
502    to calculate a buffer length. There is an integer overflow in this
503    calculation which can lead to memory corruption.
504    
505    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
506    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
507    Reviewed-by: Adam Jackson <ajax@redhat.com>
508    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
509
510commit 491291cabf78efdeec8f18b09e14726a9030cc8f
511Author: Alan Coopersmith <alan.coopersmith@oracle.com>
512Date:   Fri Apr 25 23:02:34 2014 -0700
513
514    CVE-2014-0210: unvalidated length fields in fs_read_query_info()
515    
516    fs_read_query_info() parses a reply from the font server.  The reply
517    contains embedded length fields, none of which are validated.  This
518    can cause out of bound reads in either fs_read_query_info() or in
519    _fs_convert_props() which it calls to parse the fsPropInfo in the reply.
520    
521    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
523    Reviewed-by: Adam Jackson <ajax@redhat.com>
524    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
525
526commit 0f1a5d372c143f91a602bdf10c917d7eabaee09b
527Author: Alan Coopersmith <alan.coopersmith@oracle.com>
528Date:   Fri Apr 25 23:02:25 2014 -0700
529
530    CVE-2014-0211: Integer overflow in fs_get_reply/_fs_start_read
531    
532    fs_get_reply() would take any reply size, multiply it by 4 and pass to
533    _fs_start_read.  If that size was bigger than the current reply buffer
534    size, _fs_start_read would add it to the existing buffer size plus the
535    buffer size increment constant and realloc the buffer to that result.
536    
537    This math could overflow, causing the code to allocate a smaller
538    buffer than the amount it was about to read into that buffer from
539    the network.  It could also succeed, allowing the remote font server
540    to cause massive allocations in the X server, possibly using up all
541    the address space in a 32-bit X server, allowing the triggering of
542    other bugs in code that fails to handle malloc failure properly.
543    
544    This patch protects against both problems, by disconnecting any
545    font server trying to feed us more than (the somewhat arbitrary)
546    64 mb in a single reply.
547    
548    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
549    Reviewed-by: Adam Jackson <ajax@redhat.com>
550    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
551
552commit cbb64aef35960b2882be721f4b8fbaa0fb649d12
553Author: Alan Coopersmith <alan.coopersmith@oracle.com>
554Date:   Fri Apr 25 23:02:12 2014 -0700
555
556    CVE-2014-0210: unvalidated lengths when reading replies from font server
557    
558    Functions to handle replies to font server requests were casting replies
559    from the generic form to reply specific structs without first checking
560    that the reply was at least as long as the struct being cast to.
561    
562    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
564    Reviewed-by: Adam Jackson <ajax@redhat.com>
565    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
566
567commit 891e084b26837162b12f841060086a105edde86d
568Author: Alan Coopersmith <alan.coopersmith@oracle.com>
569Date:   Fri Apr 25 23:02:00 2014 -0700
570
571    CVE-2014-0210: unvalidated length in _fs_recv_conn_setup()
572    
573    The connection setup reply from the font server can include a list
574    of alternate servers to contact if this font server stops working.
575    
576    The reply specifies a total size of all the font server names, and
577    then provides a list of names. _fs_recv_conn_setup() allocated the
578    specified total size for copying the names to, but didn't check to
579    make sure it wasn't copying more data to that buffer than the size
580    it had allocated.
581    
582    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
583    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
584    Reviewed-by: Adam Jackson <ajax@redhat.com>
585    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
586
587commit 05c8020a49416dd8b7510cbba45ce4f3fc81a7dc
588Author: Alan Coopersmith <alan.coopersmith@oracle.com>
589Date:   Fri Apr 25 23:01:48 2014 -0700
590
591    CVE-2014-0209: integer overflow of realloc() size in lexAlias()
592    
593    lexAlias() reads from a file in a loop. It does this by starting with a
594    64 byte buffer.  If that size limit is hit, it does a realloc of the
595    buffer size << 1, basically doubling the needed length every time the
596    length limit is hit.
597    
598    Eventually, this will shift out to 0 (for a length of ~4gig), and that
599    length will be passed on to realloc().  A length of 0 (with a valid
600    pointer) causes realloc to free the buffer on most POSIX platforms,
601    but the caller will still have a pointer to it, leading to use after
602    free issues.
603    
604    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
605    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
606    Reviewed-by: Adam Jackson <ajax@redhat.com>
607    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
608
609commit 2f5e57317339c526e6eaee1010b0e2ab8089c42e
610Author: Alan Coopersmith <alan.coopersmith@oracle.com>
611Date:   Fri Apr 25 23:01:11 2014 -0700
612
613    CVE-2014-0209: integer overflow of realloc() size in FontFileAddEntry()
614    
615    FontFileReadDirectory() opens a fonts.dir file, and reads over every
616    line in an fscanf loop.  For each successful entry read (font name,
617    file name) a call is made to FontFileAddFontFile().
618    
619    FontFileAddFontFile() will add a font file entry (for the font name
620    and file) each time it’s called, by calling FontFileAddEntry().
621    FontFileAddEntry() will do the actual adding.  If the table it has
622    to add to is full, it will do a realloc, adding 100 more entries
623    to the table size without checking to see if that will overflow the
624    int used to store the size.
625    
626    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
627    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
628    Reviewed-by: Adam Jackson <ajax@redhat.com>
629    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
630
631commit 2a5111af9e03a55bd099c6c3a5b9a7fd3dfce76f
632Author: Alan Coopersmith <alan.coopersmith@oracle.com>
633Date:   Thu Apr 24 22:11:08 2014 -0700
634
635    fs_send_open_font needs to allow namelen of 0 when FontReopen is set
636    
637    When _fs_load_glyphs calls fs_send_open_font with FontReopen set, it
638    passes a NULL name and namelen of 0, since fs_send_open_font is going
639    to reuse the previous name.
640    
641    This overly restrictive check was added in XFree86 4.3.99.12:
642    http://cvsweb.xfree86.org/cvsweb/xc/lib/font/fc/fserve.c.diff?r1=3.23&r2=3.24
643    http://cvsweb.xfree86.org/cvsweb/xc/lib/font/fc/fserve.c?rev=3.24&content-type=text/vnd.viewcvs-markup
644    
645    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
646
647commit 77902e1422315963364fcba3736ff9b5b0f32d47
648Author: Alan Coopersmith <alan.coopersmith@oracle.com>
649Date:   Tue Apr 22 23:49:29 2014 -0700
650
651    Clean up warnings when src/fc is built with -DDEBUG
652    
653    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
654
655commit f75f7bde4cedc36d5ca1289988b3daebb80528d2
656Author: Alan Coopersmith <alan.coopersmith@oracle.com>
657Date:   Tue Apr 22 23:45:41 2014 -0700
658
659    Allow enabling src/fc DEBUG helpers via CPPFLAGS
660    
661    Instead of editing fsio.h to turn on debugging logs, just add
662    -DDEBUG to CPPFLAGS when building.
663    
664    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
665
666commit 21f5d3ec9d833b8bce08d0749b8001e1e88544ac
667Author: Alan Coopersmith <alan.coopersmith@oracle.com>
668Date:   Mon Apr 21 22:05:20 2014 -0700
669
670    Bump version to 1.4.99.0 for master branch (to become 1.5)
671    
672    libXfont 1.5.0 will be synchronized with the fontsproto 2.1.3 API
673    changes needed for xorg-server 1.16 branch.
674    
675    libXfont 1.4.x will be left for stable release branch for older
676    Xserver releases.
677    
678    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
679
680commit 5a398a55ccdd92d0ff05793692ef8e57f3a50198
681Author: Alan Coopersmith <alan.coopersmith@oracle.com>
682Date:   Sun Apr 20 18:10:07 2014 -0700
683
684    Require fontsproto 2.1.3 for matching function prototypes
685    
686    Building current libXfont git against fontsproto 2.1.2 causes clang
687    complaints of:
688    
689    patcache.c:130:1: error: conflicting types for 'CacheFontPattern'
690    CacheFontPattern (FontPatternCachePtr cache,
691    ^
692    patcache.c:176:1: error: conflicting types for 'FindCachedFontPattern'
693    FindCachedFontPattern (FontPatternCachePtr cache,
694    ^
695    
696    due to the constification of arguments not matching.
697    
698    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
699    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
700
701commit c77a0784bdfc8c178f0742689cf6ae02a2fce37f
702Author: Alan Coopersmith <alan.coopersmith@oracle.com>
703Date:   Sun Apr 20 17:59:14 2014 -0700
704
705    Check if pointer returned by BufFileCreate is NULL before writing to it
706    
707    Fixes clang analyzer warning:
708    
709    bufio.c:165:13: warning: Access to field 'bufp' results in a dereference
710     of a null pointer (loaded from variable 'f')
711        f->bufp = f->buffer;
712        ~       ^
713    
714    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
715    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
716
717commit c8855746aec2a9b732502da0ca3258b4e701c61a
718Author: Peter Harris <pharris@opentext.com>
719Date:   Mon Apr 7 14:25:02 2014 -0400
720
721    Fix buffer read overrun
722    
723    "FreeType" is only eight bytes long. The atom "FreeType\x00\x??" is
724    probably not what the author intended.
725    
726    Signed-off-by: Peter Harris <pharris@opentext.com>
727    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
728
729commit a96cc1f032a059da89319ceccb6659c8edd446fb
730Author: Keith Packard <keithp@keithp.com>
731Date:   Fri Nov 15 21:46:15 2013 +0900
732
733    Warning fixes.
734    
735    Many const char issues.
736    
737    One extra 'i' declared in ScaleFont; we can just use the same 'i' as
738    exists at the top level scope.
739    
740    Also ignore bad-function-cast in ftfuncs.c and bitscale.c because
741    we're casting the return value from floor or ceil from double to
742    int. As floor and ceil are kinda designed to generate integer results,
743    it's pretty clear that we're doing what we want and that the compiler
744    is generating noise. I'm not sure why bad-function-cast is ever a good
745    warning to turn on, but I'll leave that for another day.
746    
747    Signed-off-by: Keith Packard <keithp@keithp.com>
748    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
749
750commit 2a3429413df27224ceeddd22500ce43b5431d698
751Author: Alan Coopersmith <alan.coopersmith@oracle.com>
752Date:   Fri Jan 17 22:25:56 2014 -0800
753
754    Add note to README declaring snf fonts to be deprecated
755    
756    pcf was introduced to replace snf in X11R5 in 1991:
757        http://www.x.org/wiki/X11R5/#index56h3
758    22 years is long enough to move off a font format that was alive for
759    less than a decade before that, and widely considered a bad idea even
760    then:
761        http://www.faqs.org/faqs/fonts-faq/part15/
762    
763    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
764    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
765    Reviewed-by: Eric Anholt <eric@anholt.net>
766    Reviewed-by: Julien Cristau <jcristau@debian.org>
767
768commit efcb136a03f642fba7e289e25d5dcf609bd13f07
769Author: Alan Coopersmith <alan.coopersmith@oracle.com>
770Date:   Fri Jan 17 22:25:01 2014 -0800
771
772    Add notes to README about various font formats & configure options
773    
774    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
775    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
776    Reviewed-by: Eric Anholt <eric@anholt.net>
777    Reviewed-by: Julien Cristau <jcristau@debian.org>
778
779commit 5d696738c2ab901bdef004169799bb63939fa7b5
780Author: Alan Coopersmith <alan.coopersmith@oracle.com>
781Date:   Fri Jan 17 22:00:25 2014 -0800
782
783    Correct comment in configure.ac about scalable font support
784    
785    Bitstream Speedo support was removed in commit d50de26430c1a114a.
786    All scalable font support now goes through FreeType, which can
787    also handle some bitmap font formats as well.
788    
789    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
790    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
791    Reviewed-by: Eric Anholt <eric@anholt.net>
792    Reviewed-by: Julien Cristau <jcristau@debian.org>
793
794commit 6371fcf2b60e48605ed59f098d1e642e35b1d142
795Author: Alan Coopersmith <alan.coopersmith@oracle.com>
796Date:   Tue Jan 7 23:09:08 2014 -0800
797
798    Remove redundant setting of 'len' in SPropRecValList_add_by_font_cap
799    
800    Found by cppcheck 1.63:
801    [FreeType/xttcap.c:621] -> [FreeType/xttcap.c:624]: (performance)
802     Variable 'len' is reassigned a value before the old one has been used.
803    
804    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
805    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
806
807commit 63c7ac4dbb739e51d55249e71282699e5e0d7e1d
808Author: Alan Coopersmith <alan.coopersmith@oracle.com>
809Date:   Tue Jan 7 22:58:22 2014 -0800
810
811    Initialize (unused) data field in fsListCataloguesReq before sending it.
812    
813    Quiets cppcheck 1.63 warning:
814    [fc/fserve.c:2972]: (error) Uninitialized variable: lcreq
815    
816    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
817    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
818
819commit d279ffa49284b5e5f787f76edbe8c52226534a64
820Author: Alan Coopersmith <alan.coopersmith@oracle.com>
821Date:   Tue Jan 7 22:29:04 2014 -0800
822
823    Remove redundant declaration of FontFileStartListFonts()
824    
825    Fixes gcc warning:
826    catalogue.c:336:1: warning: redundant redeclaration of
827     'FontFileStartListFonts' [-Wredundant-decls]
828    In file included from ../../include/X11/fonts/fntfilst.h:40:0,
829                     from catalogue.c:32:
830    ../../include/X11/fonts/fntfil.h:92:12: note: previous declaration
831     of 'FontFileStartListFonts' was here
832    
833    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
834    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
835
836commit 2fb6295ace36394732815aca5aef1a85e63de56c
837Author: Alan Coopersmith <alan.coopersmith@oracle.com>
838Date:   Tue Jan 7 22:15:50 2014 -0800
839
840    Fix unused variable 'dir' warnings
841    
842    catalogue.c: In function 'CatalogueOpenFont':
843    catalogue.c:290:22: warning: variable 'dir' set but not used [-Wunused-but-set-variable]
844    catalogue.c: In function 'CatalogueListFonts':
845    catalogue.c:324:22: warning: variable 'dir' set but not used [-Wunused-but-set-variable]
846    fpe.c: In function 'BuiltinResetFPE':
847    fpe.c:57:22: warning: variable 'dir' set but not used [-Wunused-but-set-variable]
848    
849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
850    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
851
852commit 30110063857ff9a5f93f6d8d13f535c9b6e59e2a
853Author: Alan Coopersmith <alan.coopersmith@oracle.com>
854Date:   Tue Jan 7 08:22:31 2014 -0800
855
856    libXfont 1.4.7
857    
858    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
859
860commit 2a84680376bafd74609c6ef3e38befcb8467d814
861Author: Alan Coopersmith <alan.coopersmith@oracle.com>
862Date:   Mon Dec 23 19:01:11 2013 -0800
863
864    Limit additional sscanf strings to fit buffer sizes
865    
866    None of these could currently result in buffer overflow, as the input
867    and output buffers were the same size, but adding limits helps ensure
868    we keep it that way, if we ever resize any of these in the future.
869    
870    Fixes cppcheck warnings:
871     [lib/libXfont/src/bitmap/bdfread.c:547]: (warning)
872      scanf without field width limits can crash with huge input data.
873     [lib/libXfont/src/bitmap/bdfread.c:553]: (warning)
874      scanf without field width limits can crash with huge input data.
875     [lib/libXfont/src/bitmap/bdfread.c:636]: (warning)
876      scanf without field width limits can crash with huge input data.
877    
878    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
879    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
880    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
881
882commit 4d024ac10f964f6bd372ae0dd14f02772a6e5f63
883Author: Alan Coopersmith <alan.coopersmith@oracle.com>
884Date:   Mon Dec 23 18:34:02 2013 -0800
885
886    CVE-2013-6462: unlimited sscanf overflows stack buffer in bdfReadCharacters()
887    
888    Fixes cppcheck warning:
889     [lib/libXfont/src/bitmap/bdfread.c:341]: (warning)
890      scanf without field width limits can crash with huge input data.
891    
892    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
893    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
894    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
895
896commit fdcf9a9be6a5d453659beadec5d1a1fdbab9afaf
897Author: Alan Coopersmith <alan.coopersmith@oracle.com>
898Date:   Fri Dec 27 11:01:35 2013 -0800
899
900    Add AC_USE_SYSTEM_EXTENSIONS to expose non-standard extensions
901    
902    Required on Solaris to expose definitions in system headers that
903    are not defined in the XPG standards now that xtrans 1.3 defines
904    _XOPEN_SOURCE to 600 on Solaris.
905    
906    Fixes build failures:
907    fserve.c: In function 'fs_block_handler':
908    fserve.c:1210:5: error: 'fd_mask' undeclared (first use in this function)
909    fserve.c:1210:5: note: each undeclared identifier is reported only once for each function it appears in
910    In file included from transport.c:67:0,
911                     from fstrans.c:28:
912    Xtranssock.c: In function '_FontTransSocketINETConnect':
913    Xtranssock.c:1421:19: error: 'INET6_ADDRSTRLEN' undeclared (first use in this function)
914    Xtranssock.c:1421:19: note: each undeclared identifier is reported only once for each function it appears in
915    
916    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
917    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
918
919commit 0d24378a6f08f5ab594ff552d60cf5f8f74bcb33
920Author: Alan Coopersmith <alan.coopersmith@oracle.com>
921Date:   Sat Dec 7 20:11:29 2013 -0800
922
923    Don't leak old allocation if realloc fails to enlarge it
924    
925    In ftfuncs.c, since the buffer being reallocated is a function local
926    buffer, used to accumulate data for a single run of the function and
927    then freed at the end of the function, we just free the old buffer if
928    realloc fails.
929    
930    In atom.c however, the ReverseMap is a static buffer, so we operate in
931    temporary variables until we know we're successful, then update the
932    static variables.  If we fail, we leave the old static variables in place,
933    since they contain data about previous atoms we should maintain, not lose.
934    
935    Reported by cppcheck:
936    [lib/libXfont/src/FreeType/ftfuncs.c:2122]: (error) Common realloc mistake:
937     'ranges' nulled but not freed upon failure
938    [lib/libXfont/src/util/atom.c:126]: (error) Common realloc mistake:
939     'reverseMap' nulled but not freed upon failure
940    
941    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
942    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
943
944commit 5e27c364b174497d427dcecd122d711ef6b9f630
945Author: Julien Cristau <jcristau@debian.org>
946Date:   Mon Aug 12 18:40:27 2013 +0200
947
948    Make serverGeneration unsigned
949    
950    Makes the definition match other declarations, and xserver's definition.
951    
952    Debian bug#689439
953    
954    Reported-by: Michael Tautschnig <mt@debian.org>
955    Signed-off-by: Julien Cristau <jcristau@debian.org>
956    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
958
959commit 7d34534c050cb4366c7b14bff585c17d6d578f89
960Author: Alan Coopersmith <alan.coopersmith@oracle.com>
961Date:   Sat Oct 26 00:06:22 2013 -0700
962
963    Replace malloc(strlen)+strcpy/strcat calls with strdup
964    
965    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
966
967commit 8a9fc31628a98e3cdaae6078bb5d92bce06c37ac
968Author: Alan Coopersmith <alan.coopersmith@oracle.com>
969Date:   Fri Oct 25 23:56:55 2013 -0700
970
971    xstrdup -> strdup
972    
973    Missed in xalloc -> malloc etal conversion in 0cdc9b8f850342
974    
975    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
976    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
977
978commit 8b289e10c5013cdcbf817c06bd929e3ea8339987
979Author: Alan Coopersmith <alan.coopersmith@oracle.com>
980Date:   Sun Jul 21 16:53:47 2013 -0700
981
982    libXfont 1.4.6
983    
984    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
985
986commit 7447029974415641a7a8a85918edcc20cfd9d461
987Author: Alan Coopersmith <alan.coopersmith@oracle.com>
988Date:   Mon Jun 24 22:40:39 2013 -0700
989
990    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
991    
992    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
993
994commit c21d25de05d82a761a3225b685e9adcb7bb374bd
995Author: Thomas Klausner <wiz@NetBSD.org>
996Date:   Sun Jun 2 21:03:27 2013 +0200
997
998    Protect config.h inclusion with ifdef HAVE_CONFIG_H, like usual.
999    
1000    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1001    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1002
1003commit b8dd42dce868f9c16a59790ce51f0542b59cb79d
1004Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1005Date:   Tue Jan 15 18:30:32 2013 -0800
1006
1007    Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
1008    
1009    Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
1010    
1011      - Support for the long-deprecated INCLUDES variable will be removed
1012        altogether in Automake 1.14.  The AM_CPPFLAGS variable should be
1013        used instead.
1014    
1015    This variable was deprecated in Automake releases prior to 1.10, which is
1016    the current minimum level required to build X.
1017    
1018    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1019    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1020
1021commit 8d946d2606b3a349b2a54d602e027a09ae330e88
1022Author: Colin Walters <walters@verbum.org>
1023Date:   Wed Jan 4 17:37:06 2012 -0500
1024
1025    autogen.sh: Implement GNOME Build API
1026    
1027    http://people.gnome.org/~walters/docs/build-api.txt
1028    
1029    Signed-off-by: Adam Jackson <ajax@redhat.com>
1030
1031commit 9d8936879b2fe1ca6460354ef68cd5e824d6748c
1032Author: Adam Jackson <ajax@redhat.com>
1033Date:   Tue Jan 15 14:28:48 2013 -0500
1034
1035    configure: Remove AM_MAINTAINER_MODE
1036    
1037    Signed-off-by: Adam Jackson <ajax@redhat.com>
1038
1039commit a756da1844f63a2f2162eb8e53a883f496e4faad
1040Author: Adam Jackson <ajax@redhat.com>
1041Date:   Fri Dec 7 10:30:38 2012 -0500
1042
1043    catalogue: Fix obvious thinko
1044    
1045    Signed-off-by: Adam Jackson <ajax@redhat.com>
1046
1047commit 5680e4c3d76cd5c64175d88d0685ee6962aa1e46
1048Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1049Date:   Mon Oct 29 09:59:30 2012 -0500
1050
1051    Omit catalogue support on systems without symlinks
1052    
1053    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1054    Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
1055    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1056
1057commit 3c534f72d6d4327926474a5f8fa53cbcf19de3cf
1058Author: Arvind Umrao <arvind.umrao@oracle.com>
1059Date:   Thu Aug 23 16:15:04 2012 +0530
1060
1061    If socket is interrupted with signal EINTR, re-attempt read.
1062    
1063    If socket is getting interrupted with signal EINTR, we should keep
1064    socket in progress state. I have borrowed following code from socket
1065    write _fs_flush():line274 . I have done exactly same at _fs_fill().
1066    Socket write will not close the connection and re attempt to read buffer.
1067    
1068    Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com>
1069    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1070    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1071
1072commit 4b67ad5486c322c01a2ca86b0b4af0a74228f813
1073Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1074Date:   Fri Mar 2 10:05:21 2012 -0800
1075
1076    libXfont 1.4.5
1077    
1078    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1079
1080commit 3f87a8b0b86de83ea8944a53de82caf254a9988a
1081Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1082Date:   Fri Oct 21 20:49:50 2011 -0700
1083
1084    Use * precision notation instead of computing sprintf format strings
1085    
1086    Allows gcc to check format strings instead of just warning about them
1087    
1088    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1089    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1090
1091commit 613faa245437bb948b4c86ea6c7fbb716e38f0bf
1092Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1093Date:   Sun Oct 2 09:30:09 2011 -0700
1094
1095    Fix printf warnings about incorrect argument types
1096    
1097    Mostly due to difference between sizeof & int on 64-bit platforms
1098    
1099    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1100    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1101
1102commit f24c559bcb42e3ea9321c3e6a9ecf0720a581e33
1103Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1104Date:   Sun Oct 2 09:19:47 2011 -0700
1105
1106    Add _X_ATTRIBUTE_PRINTF to *Error/*Warning functions taking printf formats
1107    
1108    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1109    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1110
1111commit 3715cd752bac912a56aa1cbb9dd874624a709aab
1112Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1113Date:   Sun Oct 2 09:16:05 2011 -0700
1114
1115    Add const attributes to fix gcc -Wwrite-strings warnings
1116    
1117    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1118    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1119
1120commit 8d130ac0fcf19e0e0dd0a404d9317fd8860baad4
1121Author: Tomas Hoger <thoger@redhat.com>
1122Date:   Mon Oct 10 14:38:06 2011 -0700
1123
1124    Support compress files with maxbits < 12
1125    
1126    The compress decompression code used by libXfont rejects valid archives
1127    with maxbits less than 12 (compress allows values 9 - 16, 16 is the
1128    default).  This is because maxbits-12 is used as index to hsize_table[].
1129    
1130    That looks like an incorrect port of the original compress code, where:
1131    - hsize depended on BITS, the maximum maxbits value supported by particular
1132      build, rather than on maxbits value from the particular input file
1133    - the same hsize was used for all BITS <= 12
1134    
1135    The quick way to verify the problem is:
1136      compress -b 11 fontfile.bdf
1137      bdftopcf -o /dev/null fontfile.bdf.Z
1138    which fails, while 12-16 works correctly.
1139    
1140    This fix removes hsize_table and uses 1 << maxbits (aka maxmaxcode) as
1141    tab_prefix size.  As decompression code does not use hashing as compression
1142    code, there does not seem to be a reason to allocate any extra space.
1143    
1144    Note: In this fix, maxbits == 9 is still rejected early.  AFAICS compress
1145    is able to generate such files (unknown how correct such output is), but is
1146    unable to uncompress them correctly.
1147    
1148    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1149
1150commit bb97dbf56dff50bef936c0631587ed08dd6c8fa9
1151Author: Matt Dew <marcoz@osource.org>
1152Date:   Mon Oct 3 20:23:47 2011 -0600
1153
1154        1 - fix the capitalization of the ID attriutes to match either the
1155            <title> or <funcdef> string it goes with.
1156        2 - fix any <linkend>'s that were affected by 1.
1157        3 - any <function> in the docs that has an actual funcdef,
1158            will become an olink.
1159    
1160        Signed-off-by: Matt Dew <marcoz@osource.org>
1161
1162commit c73a0e09a2713d0dc16ca5cd9d288b8868846a19
1163Author: Gaetan Nadon <memsize@videotron.ca>
1164Date:   Thu Sep 22 14:00:36 2011 -0400
1165
1166    doc: fix typo in copyright statement
1167    
1168    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1169
1170commit d86d8f34f5c2ac5c80230aea2de49bb97eaf5f92
1171Author: Gaetan Nadon <memsize@videotron.ca>
1172Date:   Thu Sep 22 09:20:38 2011 -0400
1173
1174    doc: refactor legal text for multi licensing copyrights
1175    
1176    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1177
1178commit 43d587d89bee679850bb18ff25aa77c961712728
1179Author: Olli Vertanen <olli.vertanen@symbio.com>
1180Date:   Tue Sep 6 19:00:55 2011 +0000
1181
1182    libxfont: An uninitialized pointer causes a crash if pcf header is corrupted.
1183    
1184    If pcfReadTOC() or pcfGetProperties() fail in the beginning
1185    of execution of pcfReadFont(), function tries to free an
1186    uninitialized pointer (isStringProp) when bailing out.
1187    
1188    The pointer gets now initialized correctly.
1189    
1190    Signed-off-by: Olli Vertanen <olli.vertanen@symbio.com>
1191    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
1192
1193commit 73e6c94a351c891ed85446df84c9a30a4224f478
1194Author: Joerg Sonnenberger <joerg@britannica.bec.de>
1195Date:   Sun Aug 21 19:07:51 2011 +0200
1196
1197    Fix empty statement in if conditional.
1198    
1199    Assume for a moment that the intention here is to do
1200    something useful.
1201    
1202    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1203
1204commit bd48ad11fd11412c62c3ac8ed5d52c4f10a985aa
1205Author: Joerg Sonnenberger <joerg@britannica.bec.de>
1206Date:   Sun Aug 21 18:51:53 2011 +0200
1207
1208    Do proper input validation to fix for CVE-2011-2895.
1209    
1210    It ensures that all valid input can be decompressed, checks that the
1211    overflow conditions doesn't happen and generally tightens the
1212    validation of the LZW stream and doesn't pessimize the inner loop for
1213    no good reason. It's derived from a change in libarchive from 2004.
1214    
1215    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1216    Reviewed-by: Tomas Hoger <thoger@redhat.com>
1217
1218commit 098ab294deed98371ee362fadafcf2e510e0cc50
1219Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1220Date:   Fri Sep 16 22:21:21 2011 -0700
1221
1222    Strip trailing whitespace
1223    
1224    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
1225    git diff -w & git diff -b show no diffs from this change
1226    
1227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1228
1229commit 211368b8d04ed13ba520de2dd49a875cb1d663a7
1230Author: Gaetan Nadon <memsize@videotron.ca>
1231Date:   Mon Sep 12 11:09:50 2011 -0400
1232
1233    docs: use the &fullrelvers; entity to set X11 release information
1234    
1235    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1236
1237commit 425ee265c61b3815a0ef1e4e0445dc91921d71ee
1238Author: Gaetan Nadon <memsize@videotron.ca>
1239Date:   Fri Sep 9 13:08:04 2011 -0400
1240
1241    devbook.am: maintenance update from docbook.am
1242    
1243    The developer docs are generated from a subset of docbook.am
1244    which is sometimes updated.
1245    
1246    The one difference is the embedded css style in the HEAD element.
1247    
1248    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1249
1250commit 1c7cfd7a2b89329f27951c0437f925dd3301e3de
1251Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1252Date:   Wed Aug 10 22:19:44 2011 -0700
1253
1254    Remove configure comment about synchronizing version numbers
1255    
1256    This appears to have been a mistaken copy-and-paste from something like
1257    libXcursor - I can't find any Xfont.h header, nor any libXfont header
1258    containing a version number.
1259    
1260    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1261    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1262
1263commit a7970f5c817b5c75d945389cfaf1384ff23437f3
1264Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1265Date:   Mon Aug 8 18:08:05 2011 +0200
1266
1267    libXfont 1.4.4
1268    
1269    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1271
1272commit d11ee5886e9d9ec610051a206b135a4cdc1e09a0
1273Author: Thomas Hoger <thoger@redhat.com>
1274Date:   Mon Aug 8 18:03:09 2011 +0200
1275
1276    LZW decompress: fix for CVE-2011-2895
1277    
1278    Specially crafted LZW stream can crash an application using libXfont
1279    that is used to open untrusted font files.  With X server, this may
1280    allow privilege escalation when exploited
1281    
1282    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1283    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1284    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1285
1286commit 214ca6a7a2247544627e6dc7c8705811305ad007
1287Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1288Date:   Mon May 16 18:28:13 2011 -0700
1289
1290    Fix memory leak in allocation failure path of BitmapOpenScalable()
1291    
1292    Go ahead and fill in the font->info pointers so that bitmapUnloadScalable()
1293    will free the bits that were allocated, even if some were not.
1294    
1295    Error: Memory leak (CWE 401)
1296       Memory leak of pointer <unknown> allocated with ComputeScaledProperties(...)
1297            at line 1629 of /export/alanc/X.Org/git/lib/libXfont/src/bitmap/bitscale.c in function 'BitmapOpenScalable'.
1298              pointer allocated at line 1616 with ComputeScaledProperties(...).
1299              <unknown> leaks when props != 0 at line 1623.
1300    
1301    [ This bug was found by the Parfait 0.3.7 bug checking tool.
1302      For more information see http://labs.oracle.com/projects/parfait/ ]
1303    
1304    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1305    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1306
1307commit 7f8345aa6fb60a7fd7adf0095a2354fad1d8d5ef
1308Author: Gaetan Nadon <memsize@videotron.ca>
1309Date:   Wed Mar 2 14:33:07 2011 -0500
1310
1311    doc: use common makefile for developers documentation
1312    
1313    The user/specs docs now have external references support.
1314    Developers doc are not installed so they do not participate.
1315    However, using a similar makefile shared amongst developers
1316    document reduces maintenance and is forward looking.
1317    
1318    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1319
1320commit 77027deabca37183cfbbed107cf14ca80f29f26d
1321Author: Gaetan Nadon <memsize@videotron.ca>
1322Date:   Wed Feb 2 11:43:42 2011 -0500
1323
1324    config: comment, minor upgrade, quote and layout configure.ac
1325    
1326    Group statements per section as per Autoconf standard layout
1327    Quote statements where appropriate.
1328    Autoconf recommends not using dnl instead of # for comments
1329    
1330    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
1331    Add AC_CONFIG_SRCDIR([Makefile.am])
1332    
1333    This helps automated maintenance and release activities.
1334    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
1335
1336commit 9ea1790d61bd135714c40e5089ecb1effa1dbcc0
1337Author: Gaetan Nadon <memsize@videotron.ca>
1338Date:   Thu Jan 27 18:50:15 2011 -0500
1339
1340    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
1341    
1342    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
1343    AC_PROG_C_C99. This sets gcc with -std=gnu99.
1344    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
1345    
1346    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1347
1348commit 4e0c6c45d819befdd9315d6282b957f7cfec3ae2
1349Author: Paulo Zanoni <pzanoni@mandriva.com>
1350Date:   Thu Dec 16 14:09:12 2010 -0200
1351
1352    Use docbookx.dtd version 4.3 for all docs
1353    
1354    Signed-off-by: Paulo Zanoni <pzanoni@mandriva.com>
1355    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1356
1357commit 01c30845853f5a8114467185d76274ae9bbff091
1358Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1359Date:   Sun Nov 21 11:35:20 2010 -0800
1360
1361    Sun's copyrights belong to Oracle now
1362    
1363    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1364
1365commit 72ade58381a49514f2b29065ba33a464b7efc3d0
1366Author: Gaetan Nadon <memsize@videotron.ca>
1367Date:   Tue Nov 9 13:04:51 2010 -0500
1368
1369    config: HTML file generation: use the installed copy of xorg.css
1370    
1371    Currenlty the xorg.css file is copied in each location
1372    where a DocBook/XML file resides. This produces about
1373    70 copies in the $(docdir) install tree.
1374    
1375    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1376
1377commit 12157fbebc35c2d039df2df4fc5ac2b299eeec03
1378Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1379Date:   Thu Oct 28 20:43:27 2010 -0700
1380
1381    libXfont 1.4.3
1382    
1383    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1384
1385commit f29f1d68d7eca96e45ba3758686be07993d82e03
1386Author: Jesse Adkins <jesserayadkins@gmail.com>
1387Date:   Tue Sep 28 13:30:02 2010 -0700
1388
1389    Purge cvs tags.
1390    
1391    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
1392    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1393
1394commit 6628b4d82426cf9ac240da363cd8a8252e6f71ef
1395Author: Jeremy Huddleston <jeremyhu@apple.com>
1396Date:   Mon Sep 27 12:31:50 2010 -0700
1397
1398    FreeType: Cleanup MUMBLE and fix printing of XLFD in debug spew.
1399    
1400    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1401
1402commit c482a2c104aa5cd1a265c2ca310a308dcc418fe7
1403Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1404Date:   Wed Apr 14 05:58:28 2010 -0500
1405
1406    Revert "Bug #6247: Fix build on Cygwin"
1407    
1408    libtool requires the '-no-undefined' flag in order to create shared
1409    libraries on PE/COFF platforms (Cygwin/MinGW); on other platforms this
1410    flag has no effect.
1411    
1412    The problem with libXfont is that PE weak symbols do not behave exactly
1413    as they do on ELF platforms.  Since PE binaries (both executables and
1414    libraries) must have all symbols resolved at link time, there is no way
1415    for the real symbols in xserver to "displace" those in libXfont at
1416    runtime, so the result is that libXfont uses its stubs, which do
1417    nothing, and xserver ends up unable to find its fonts.
1418    
1419    Solving this will require either significant changes to libXfont or some
1420    major improvement to the toolchain to handle this case.  Until that
1421    happens, removing '-no-undefined' will result in a static-only library
1422    on these platforms, which is the only currently working solution.
1423    
1424    http://sourceware.org/bugzilla/show_bug.cgi?id=11306
1425    http://cygwin.com/ml/cygwin/2010-04/msg00281.html
1426    
1427    This reverts commit 69c4ae1e3e14a58bc2eb9b9b8820dc7183b82a67.
1428    
1429    Conflicts:
1430    
1431    	ChangeLog
1432    
1433    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1434
1435commit 455ec66e82e3c4bedd9e789d2ab33030b8e64ffa
1436Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1437Date:   Sun Aug 8 00:19:36 2010 -0700
1438
1439    Fix builds with Sun compilers
1440    
1441    Sun compilers use #pragma weak in the *.c files to declare weak symbols,
1442    so should have weak defined to empty, but not define NO_WEAK_SYMBOLS
1443    
1444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1445
1446commit 0386fa77367a305deea3cc27f8a3865cc3c467c0
1447Author: Jeremy Huddleston <jeremyhu@apple.com>
1448Date:   Sat Jul 10 10:08:21 2010 -0700
1449
1450    darwin: Fix build regression introduced by previous patch
1451    
1452    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1453
1454commit 8f75706901da0141590d46f0f898e5678feac953
1455Author: Jon TURNEY <jon.turney@dronecode.org.uk>
1456Date:   Mon Jun 28 17:56:07 2010 +0100
1457
1458    Build fix for platforms which don't have weak linkage
1459    
1460    Since we fix this by removing the serverGeneration symbol, assuming
1461    an external definition will be provided, this means on Windows libXfont
1462    can only be built as a static library (since PE shared libraries cannot
1463    contain undefined symbols).  This produces a libXfont which might only
1464    be useful to the xserver, but the only other users we might care about
1465    are xfs, which is obsolete, and bdftopcf, which fortunately doesn't
1466    pull in any objects which reference serverGeneration from libXfont.
1467    
1468    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1469    Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
1470
1471commit 5c49c956e9c85d89f6b2e719eb9b6fbde62c2f72
1472Author: Gaetan Nadon <memsize@videotron.ca>
1473Date:   Mon Jun 28 13:18:22 2010 -0400
1474
1475    doc: use xorg-docs xorg.css stylesheet
1476    
1477    Use latest DocBook XML util-macros infrastructure
1478    
1479    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1480
1481commit 27270de56f7da5e047784434f3b29fa672f97ffd
1482Author: Tiago Vignatti <tiago.vignatti@nokia.com>
1483Date:   Thu Jun 10 16:29:37 2010 +0300
1484
1485    libXfont 1.4.2
1486    
1487    Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
1488    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
1489    Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
1490    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1491
1492commit a85f4fc6142349517aaa4cf6bc8049e2d85c1006
1493Author: Tiago Vignatti <tiago.vignatti@nokia.com>
1494Date:   Thu Jun 10 16:18:05 2010 +0300
1495
1496    Use one single function to register fpe functions
1497    
1498    X server doesn't need to understand fpe internals, so let it transparent
1499    turning all registration functions in a single one. For that, fill the already
1500    existent register_fpe_functions().
1501    
1502    Some X servers don't want font server support, so this patch also sets font
1503    server support to be configured in build time.
1504    
1505    In my machine, I see 20kB of RSS being saved in libXfont mapped in Xorg
1506    process when I disabled font server support and other kind of fonts in the
1507    library (--disable-pcfformat --disable-bdfformat --disable-snfformat
1508    --disable-freetype --disable-fc).
1509    
1510    The default library built was taking:
1511       text    data     bss     dec     hex filename
1512     261847    4484    1536  267867   4165b ./lib/libXfont.so
1513    
1514    and with these flags, it jumps to:
1515       text    data     bss     dec     hex filename
1516     157764    2428    1188  161380   27664 ./lib/libXfont.so
1517    
1518    Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
1519    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
1520    Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
1521    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1522
1523commit d137c81b83e0a6f68989c37035d0c950bb43fcc5
1524Author: Gaetan Nadon <memsize@videotron.ca>
1525Date:   Thu Apr 1 14:12:47 2010 -0400
1526
1527    config: fontconf.h.in is redundant in EXTRA_DIST
1528    
1529    Output files listed in AC_CONFIG_HEADERS or AC_OUTPUT have
1530    their input files (typically .in) included in the tarball.
1531    
1532    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1533    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1534
1535commit d8d901323776599c8392f9b973ba129c3af45a4b
1536Author: Gaetan Nadon <memsize@videotron.ca>
1537Date:   Tue Mar 30 09:26:13 2010 -0400
1538
1539    config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS
1540    
1541    There are 2 headers to generate. The first one (config.h)
1542    is picked up by autoheader to generate the familiar config.h.in
1543    input file. The others in the list (or in subsequent AC_CONFIG_HEADERS
1544    macro calls) are generated from their existing matching template,
1545    e.g. fontconf.h.in.
1546    
1547    When multiple headers are listed in the same macro call,
1548    they cannot be separated by a new line like we do in AC_OUTPUT.
1549    
1550    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1551    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1552
1553commit df94cb141f02f123a64b0ef7abf5f593c1b27e13
1554Author: Gaetan Nadon <memsize@videotron.ca>
1555Date:   Wed Mar 31 20:21:47 2010 -0400
1556
1557    Revert "config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS"
1558    
1559    This reverts commit 8e84687b26be6e8f5da4fce173c0a134eb07f4f3.
1560    
1561    Until the issue is resolved on MAC O/S
1562    http://tinderbox.x.org/builds/2010-03-31-0030/logs/libXfont/
1563
1564commit 8e84687b26be6e8f5da4fce173c0a134eb07f4f3
1565Author: Gaetan Nadon <memsize@videotron.ca>
1566Date:   Tue Mar 30 09:26:13 2010 -0400
1567
1568    config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS
1569    
1570    Both headers end up created by the same macro.
1571    
1572    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1573    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1574
1575commit a7b7bc72b9ad061ed164601d2d18dbffd6ec1f4f
1576Author: Gaetan Nadon <memsize@videotron.ca>
1577Date:   Mon Mar 29 14:53:48 2010 -0400
1578
1579    config: remove the pkgconfig pc.in file from EXTRA_DIST
1580    
1581    Automake always includes it in the tarball.
1582    
1583    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1584
1585commit f77258d0b286c2fd2a2fee36e42280016e310b10
1586Author: Gaetan Nadon <memsize@videotron.ca>
1587Date:   Sat Mar 27 17:06:34 2010 -0400
1588
1589    config: remove protection for AS_HELP_STRING for old autoconf
1590    
1591    No longer needed as modules will not configure with 2.57.
1592    AS_HELP_STRING was introduced in 2.58. The minimum level
1593    is now 2.60.
1594    
1595    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1596    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1597
1598commit a79a22bfcb344c47f2659e4178fd79f8555fbcfd
1599Author: Gaetan Nadon <memsize@videotron.ca>
1600Date:   Thu Mar 11 10:11:23 2010 -0500
1601
1602    doc: specify 0.0.20 as the minimum version for xmlto
1603    
1604    Older versions do not have fop backend.
1605    
1606    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1607
1608commit a76488f75f23b8e08763e28b2fa56352e7b04e19
1609Author: Gaetan Nadon <memsize@videotron.ca>
1610Date:   Sat Jan 30 13:13:33 2010 -0500
1611
1612    doc: use new macros to control doc generation
1613    
1614    Namely XORG_WITH_FOP for the fop backend (pdf) and
1615    XORG_ENABLE_DEVEL_DOCS for the generation of all docs
1616    
1617    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1618
1619commit 360f10333ac19f033ea64a8360c4886fbb657890
1620Author: Gaetan Nadon <memsize@videotron.ca>
1621Date:   Wed Jan 20 11:46:21 2010 -0500
1622
1623    config: replace custom code with reusable macro XORG_WITH_XMLTO
1624    
1625    XORG_WITH_XMLTO provides additional functions like a configure
1626    option which allow platform builders to control the usage of
1627    the xmlto program.
1628    
1629    This is a requirement from platforms that do not have such doc tool.
1630    
1631    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1632
1633commit 24a257ca5b70e168564f0c6527e60bb06b61be8c
1634Author: Alan Coopersmith <alan.coopersmith@sun.com>
1635Date:   Thu Jan 14 21:39:11 2010 -0800
1636
1637    Update Sun license notices to current X.Org standard form
1638    
1639    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1640
1641commit d1c9028a410a10ef1b27c990f55de836eb948887
1642Author: Gaetan Nadon <memsize@videotron.ca>
1643Date:   Fri Nov 27 20:56:04 2009 -0500
1644
1645    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
1646    
1647    Now that the INSTALL file is generated.
1648    Allows running make maintainer-clean.
1649
1650commit 72353a449e8dbf82a53a1d7958755198e989d892
1651Author: Gaetan Nadon <memsize@videotron.ca>
1652Date:   Wed Oct 28 15:28:32 2009 -0400
1653
1654    configure.ac: AM_MAINTAINER_MODE missing #24238
1655    
1656    This turns off maintainer mode build rules in tarballs.
1657    Works in conjunction with autogen.sh --enable-maintainer-mode
1658    For all X.Org components.
1659
1660commit 489e7b2cb3371042552489385902a98dc1cd976a
1661Author: Gaetan Nadon <memsize@videotron.ca>
1662Date:   Wed Oct 28 14:09:10 2009 -0400
1663
1664    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
1665    
1666    Add missing INSTALL file. Use standard GNU file on building tarball
1667    README may have been updated
1668    Remove AUTHORS file as it is empty and no content available yet.
1669    Remove NEWS file as it is empty and no content available yet.
1670
1671commit c22d67cc78c27d19bb6eaba5bf71b66444ed4a40
1672Author: Gaetan Nadon <memsize@videotron.ca>
1673Date:   Tue Oct 27 15:07:25 2009 -0400
1674
1675    Deploy the new XORG_DEFAULT_OPTIONS #24242
1676    
1677    This macro aggregate a number of existing macros that sets commmon
1678    X.Org components configuration options. It shields the configuration file from
1679    future changes.
1680
1681commit 271382b01995469eb60035d38880f9d3665d4c4c
1682Author: Gaetan Nadon <memsize@videotron.ca>
1683Date:   Mon Oct 26 22:08:43 2009 -0400
1684
1685    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
1686    
1687    ChangeLog filename is known to Automake and requires no further
1688    coding in the makefile.
1689
1690commit 9be83ae94cd82b447ed59ba0869f9e94ed9018f7
1691Author: Gaetan Nadon <memsize@videotron.ca>
1692Date:   Thu Oct 22 15:34:34 2009 -0400
1693
1694    .gitignore: use common defaults with custom section # 24239
1695    
1696    Using common defaults will reduce errors and maintenance.
1697    Only the very small or inexistent custom section need periodic maintenance
1698    when the structure of the component changes. Do not edit defaults.
1699
1700commit 489924bfb693a844f8f8ad6023fc78e4a212bef6
1701Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1702Date:   Wed Oct 14 11:31:59 2009 -0500
1703
1704    Add -lbz2 to Libs.private if bzip2 is enabled
1705    
1706    This is required on Cygwin, which must link the xservers with a static
1707    libXfont due to poor weak-symbol support.  Z_LIBS includes -lz and, if
1708    bzip2 support is enabled, -lbz2.
1709    
1710    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1711    Acked-by: Julien Cristau <jcristau@debian.org>
1712
1713commit 64f21944c5f374b0da63657f01e289b34d00904c
1714Author: Alan Coopersmith <alan.coopersmith@sun.com>
1715Date:   Fri Oct 9 17:38:33 2009 -0700
1716
1717    libXfont 1.4.1
1718    
1719    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1720
1721commit 947d3162f5edaaa05bbbfcfe2303d0c8b796f9ca
1722Author: Alan Coopersmith <alan.coopersmith@sun.com>
1723Date:   Wed Oct 7 13:05:26 2009 -0700
1724
1725    Remove unused setting of ENCODINGSDIR
1726    
1727    Seems to have been a leftover from before the encoding code was split
1728    out into libfontenc by XFree86
1729    
1730    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1731
1732commit 18053ffbf92473ffce23a3c5182de92b608b9cdf
1733Author: Alan Coopersmith <alan.coopersmith@sun.com>
1734Date:   Wed Oct 7 10:44:27 2009 -0700
1735
1736    Convert documentation from troff to DocBook/XML
1737    
1738    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1739
1740commit 96a4daad7097ce94d4340a4e9ce779e378f9b83c
1741Author: Alan Coopersmith <alan.coopersmith@sun.com>
1742Date:   Wed Oct 7 08:31:54 2009 -0700
1743
1744    Move fontlib.ms from xorg-docs
1745    
1746    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1747
1748commit b7be4a976a59f3149590cf62a2ea8144aa729c2a
1749Author: Alan Coopersmith <alan.coopersmith@sun.com>
1750Date:   Tue Oct 6 13:03:25 2009 -0700
1751
1752    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
1753    
1754    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1755
1756commit 18c5e2ff1097880e8dea951079ae49a93ec315b0
1757Author: Bob Ham <rah@bash.sh>
1758Date:   Tue Sep 15 14:28:12 2009 +1000
1759
1760     Fixed int(*)()->double cast warning
1761    
1762    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1763
1764commit 0045b2555b288099c90b65f97bd4b4a5ebc8c688
1765Author: Adam Jackson <ajax@redhat.com>
1766Date:   Wed Feb 18 13:53:14 2009 -0500
1767
1768    libXfont 1.4.0
1769
1770commit 04ced93e997b185b5d9124cacc96fa39a77b2ab7
1771Author: Peter Astrand <astrand@maggie.lkpg.cendio.se>
1772Date:   Wed Feb 4 22:09:25 2009 +0100
1773
1774    Avoid sending uninitialized padding data over the network.
1775    
1776    Besides cluttering Valgrind output, this might also be an information leak.
1777    
1778    Signed-off-by: Peter Astrand <astrand@cendio.se>
1779    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1780
1781commit e15dca77fa76252dd8499f8585d8ce922ac3b869
1782Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1783Date:   Thu Jan 29 18:02:34 2009 -0200
1784
1785    Janitor: make distcheck and .gitignore
1786    
1787      Distribute ChangeLog but not autogen.sh.
1788      Use a single toplevel .gitignore file, instead of one per subdirectory.
1789
1790commit 38bac54519a67ab1a276b66dbaa84a3327ccf827
1791Author: Adam Jackson <ajax@redhat.com>
1792Date:   Sat Sep 27 02:06:27 2008 -0400
1793
1794    Remove some strcasecmp silliness
1795
1796commit f431b4eb4dc743ccdf94b1b2ed858cc21f63c091
1797Author: Adam Jackson <ajax@redhat.com>
1798Date:   Tue Jan 20 23:23:40 2009 -0500
1799
1800    Allow case insensitive filename matching in fontfile.
1801    
1802    Simplify the freetype renderer list to match.
1803
1804commit 903d39aeea73a973fb8b05ca1ac147c2cca146cb
1805Author: Adam Jackson <ajax@redhat.com>
1806Date:   Tue Jan 20 23:21:29 2009 -0500
1807
1808    Delete some dead ifdefs
1809
1810commit daa7af2bb2326de363aa5ea51c29616e3634343a
1811Author: Adam Jackson <ajax@redhat.com>
1812Date:   Tue Jan 20 23:20:20 2009 -0500
1813
1814    Move the copy of CopyISOLatin1Lowered near its user, and un-weak it.
1815
1816commit 6c29007756301f513c0151e2b63af073f310af66
1817Author: Adam Jackson <ajax@redhat.com>
1818Date:   Tue Jan 20 23:17:55 2009 -0500
1819
1820    Drop OS/2 support
1821
1822commit 0cdc9b8f850342d50b72a57507db3413eacc6fb8
1823Author: Adam Jackson <ajax@redhat.com>
1824Date:   Tue Jan 20 23:16:35 2009 -0500
1825
1826    xalloc -> malloc, etc.
1827
1828commit 632a2e90a4b209facc84d7a18873f19a720ea7df
1829Author: Adam Jackson <ajax@redhat.com>
1830Date:   Sat Sep 27 01:30:13 2008 -0400
1831
1832    Remove PMF support.
1833    
1834    .pmf files are printer font metrics; they have no glyphs, just boxes for
1835    layout.  They can't possibly be useful in a post-Xprint world.
1836
1837commit e1927f80deabe0268dc18b4a9f3ceda1325171f5
1838Author: Adam Jackson <ajax@redhat.com>
1839Date:   Tue Jan 20 22:57:35 2009 -0500
1840
1841    Remove printer font support.
1842    
1843    Xprint is just insidious, isn't it.
1844
1845commit 732191d5d6ad58caab25e24df16fb89efaea2e9a
1846Author: Adam Jackson <ajax@redhat.com>
1847Date:   Tue Jan 20 22:42:22 2009 -0500
1848
1849    Remove loadable renderer support.
1850
1851commit 423d0a2c1dfad969f4a238618811937bc5f49776
1852Author: Adam Jackson <ajax@redhat.com>
1853Date:   Sat Sep 27 01:55:47 2008 -0400
1854
1855    Remove useless #define
1856
1857commit 50bca6dd881c2d787b3afa4d98a2c2667f767614
1858Author: Adam Jackson <ajax@redhat.com>
1859Date:   Tue Jan 20 22:33:06 2009 -0500
1860
1861    Get rid of a useless array
1862
1863commit 6ba0565362ba9c8d1037c0e4725cb31faa141656
1864Author: Adam Jackson <ajax@redhat.com>
1865Date:   Tue Jan 20 22:29:10 2009 -0500
1866
1867    const cleanup
1868
1869commit 1247f01ee36f80222e30c1678f940329aadb8335
1870Author: Adam Jackson <ajax@redhat.com>
1871Date:   Tue Jan 20 01:13:08 2009 -0500
1872
1873    Delete Type1
1874    
1875    Yes, these are still real fonts, but freetype can handle them just fine.
1876
1877commit 85b66b8a7f3095f10437c8ecb3dcbfe68c9cfced
1878Author: Adam Jackson <ajax@redhat.com>
1879Date:   Tue Jan 20 01:03:16 2009 -0500
1880
1881    Delete speedo
1882    
1883    OUT OUT OUT
1884
1885commit 1559d8086e8063c692aae008006578b88e1368fe
1886Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1887Date:   Sun Dec 28 12:35:37 2008 -0800
1888
1889    Added missing AM_CFLAGS for -Wl,-flat_namespace
1890    
1891    Fixes commit f859a76b0f325b07952ad1c5c818318307c589b0
1892
1893commit 99bad52b592f4f11887bf9033590b61880c3c976
1894Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1895Date:   Sat Mar 1 16:45:55 2008 -0300
1896
1897    Disable some fun stdio wrapping.
1898    
1899      The code is still there but no magic with macros is attempted anymore
1900    to handle files.
1901      This should really be changed to just use stdio, and properly adapt
1902     functions like T1Decript, T1eexec, etc.
1903
1904commit 95760fbe45a700ea4cc118daa536604393721a59
1905Author: Alan Coopersmith <alan.coopersmith@sun.com>
1906Date:   Fri Dec 19 16:24:39 2008 -0800
1907
1908    Restore comment deleted by b6f793d7d5
1909
1910commit b6f793d7d5c7f7c55911e6524dede41b92dcbc22
1911Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1912Date:   Fri Mar 14 01:30:24 2008 -0300
1913
1914    libXfont ansification and removal of xf86_ansic.h dependency
1915    
1916      Basically the code is now compiled as if FONTMODULE was never defined,
1917    but also removed some "magic" defining _XOPEN_SOURCE before including
1918    math.h.
1919      Also removed some #if 0'ed code instead of fixing prototypes inside
1920    the "dead code".
1921      Changes to spdo_prv.h were due to defines like:
1922      <hash>define foo() sp_foo()
1923      that would not compile with the ansification in the format:
1924      type foo(void)
1925      due to the macro receiving "void" as an argument.
1926
1927commit 282ac4226195d58e3818e7ac97093e396aa78086
1928Author: Alan Coopersmith <alan.coopersmith@sun.com>
1929Date:   Fri Dec 19 15:07:21 2008 -0800
1930
1931    Version bump: 1.3.4
1932
1933commit 5c631ad798fcdea4f2b7d0b012ac94182fad4184
1934Author: Alan Coopersmith <alan.coopersmith@sun.com>
1935Date:   Fri Dec 19 14:01:28 2008 -0800
1936
1937    miscutil.c:108: warning: old-style parameter declaration
1938
1939commit d21d6c5b23a23f120f32b483ec6b86cf88cb3a98
1940Author: Alan Coopersmith <alan.coopersmith@sun.com>
1941Date:   Fri Dec 19 13:47:48 2008 -0800
1942
1943    Add simple README with pointers to bugzilla/git/mailing list
1944
1945commit d3be1261d29b7d8eda124add3497a93ebe34712c
1946Author: Alan Coopersmith <alan.coopersmith@sun.com>
1947Date:   Fri Dec 19 13:47:27 2008 -0800
1948
1949    Update COPYING file with additional copyrights/licenses
1950
1951commit b5cc4a10c0fe365b40be19613777f192a1ada0db
1952Author: Alan Coopersmith <alan.coopersmith@sun.com>
1953Date:   Fri Dec 19 13:05:32 2008 -0800
1954
1955    Use XORG_CWARNFLAGS & XORG_CHANGELOG macros from xorg-macros 1.2
1956
1957commit 377584bb71ccb2cc380c3a8f71f0acd7e755ad33
1958Author: Alan Coopersmith <alan.coopersmith@sun.com>
1959Date:   Thu Dec 18 21:22:31 2008 -0800
1960
1961    Always scan catalogue dirs at startup, even if their mtime < 0
1962    
1963    Works around bug in VMWare that caused the Solaris kernel to fail to read
1964    the time-of-day chip on boot, and start with a time < 0 (i.e. back to the
1965    1960's) - when the system was then installed from this mode, Xorg wouldn't
1966    start after reboot, since the mtime would be < 0 and the catalogue dir was
1967    then skipped as not changed since reading at the 0 initially set in the
1968    cat->mtime.
1969    
1970    Fixes OpenSolaris bug #4780
1971       <http://defect.opensolaris.org/bz/show_bug.cgi?id=4780>
1972
1973commit 9ad7f24fafe876851b89190732034da6fb640788
1974Author: Benjamin Close <Benjamin.Close@clearchain.com>
1975Date:   Thu Dec 11 15:26:13 2008 +1030
1976
1977    Make sure font names/font alias names are null terminated
1978    
1979    This fixes a crash upon server restart where the saved fonts were
1980    being restored however strlen(font_name) was incorrect hence memory
1981    was being clobbered.
1982
1983commit d93cc906d4a2f42d11629e245fb13a2d08cf2a61
1984Author: Alan Coopersmith <alan.coopersmith@sun.com>
1985Date:   Thu Dec 4 16:56:56 2008 -0800
1986
1987    Pad CreateAC packets with 0 auths to workaround xfs bug
1988    
1989    Versions of xfs before commit 3fe28a31a2974287acc182c7c9bfd68d94ea6292
1990    will reject CreateAC packets with 0 auths unless they claim to have at
1991    least 4 bytes of authentication data that isn't actually read.
1992
1993commit f859a76b0f325b07952ad1c5c818318307c589b0
1994Author: Julien Cristau <jcristau@debian.org>
1995Date:   Tue Nov 4 19:24:29 2008 +0100
1996
1997    Don't clobber CFLAGS in configure
1998    
1999    This lets the user set CFLAGS when running make.
2000
2001commit 6bf52de1fb84d61b227daf7a7077af9ea3ec27a3
2002Author: Peter Breitenlohner <peb@mppmu.mpg.de>
2003Date:   Mon Oct 20 19:32:23 2008 -0700
2004
2005    X.Org Bug 17945: avoid gcc warnings for libXfont
2006    
2007    <http://bugs.freedesktop.org/show_bug.cgi?id=17945>
2008    
2009    Avoid two gcc warnings
2010    src/fontfile/ffcheck.c:150: warning: initialization discards qualifiers from pointer target type
2011    src/fontfile/register.c:98: warning: initialization discards qualifiers from pointer target type
2012
2013commit b012dcf65b1f0e41def2f595f1b1e7b06a49d275
2014Author: Adam Jackson <ajax@redhat.com>
2015Date:   Thu Aug 28 15:36:06 2008 -0400
2016
2017    Retry font server connections faster.
2018
2019commit 8a6df69750a2d350074715fb31d9d20195d00b4c
2020Author: Adam Jackson <ajax@redhat.com>
2021Date:   Thu Aug 28 15:35:16 2008 -0400
2022
2023    Nuke fontcache.
2024    
2025    Hasn't been relevant since the X-TT merge ages ago.
2026
2027commit 5d5587a36453d731e9a7353a98fa391dbb51b57d
2028Author: Alan Coopersmith <alan.coopersmith@sun.com>
2029Date:   Thu Aug 21 19:58:06 2008 -0700
2030
2031    Add support for bzip2 bitmap font compression
2032    
2033    Code originally written for Solaris Xsun in 2003, ported now to current Xorg
2034    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4819077>
2035
2036commit 624b7a507cdea25cec0728b4679610df3fb3097c
2037Author: Derek Wang <derek.wang@sun.com>
2038Date:   Thu Aug 21 16:06:51 2008 -0700
2039
2040    Sun bug 4510977: dtremote fails to start session
2041    
2042    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4510977>
2043
2044commit 684c000e57f30344777cf763f2f1b540ef008b38
2045Author: Adam Jackson <ajax@redhat.com>
2046Date:   Wed Jul 2 15:30:03 2008 -0400
2047
2048    libXfont 1.3.3
2049
2050commit 11edbc3a818e15ea2b622b31e6f87159ee68ae4a
2051Author: Maarten ter Huurne <maarten.ter.huurne@philips.com>
2052Date:   Sat Jun 28 15:34:50 2008 -0400
2053
2054    Do not call FT_Get_BDF_Charset_ID() if configured with --disable-bdfformat
2055    
2056    When I configure libXfont-1.3.2 with --disable-bdfformat and link it against
2057    FreeType that is built without BDF support, I get the following link error:
2058    
2059    libXfont.so: undefined reference to ‘FT_Get_BDF_Charset_ID’
2060    
2061    I fixed it by checking XFONT_BDFFORMAT and if BDF support is disabled, the call
2062    to FT_Get_BDF_Charset_ID() is omitted and the result code is set as if the call
2063    had failed.
2064    
2065    Signed-off-by: James Cloos <cloos@jhcloos.com>
2066
2067commit 1ab07ce0eec4f6c7ed66c7aba3edf8c4315dd907
2068Author: Alan Coopersmith <alan.coopersmith@sun.com>
2069Date:   Tue May 13 17:26:57 2008 -0700
2070
2071    FontFileDirectoryChanged: check length of "fonts.alias" as well as "fonts.dir"
2072
2073commit 0f9db4aa7de6e0644ac9c5811b949e5f936c9d61
2074Author: Alan Coopersmith <alan.coopersmith@sun.com>
2075Date:   Fri May 9 12:36:30 2008 -0700
2076
2077    Don't allow a font alias to point to itself and create a loop
2078    
2079    Part of fix for Sun bug 4258475
2080    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258475>
2081
2082commit 67311922a2e02d8a763831831b65bb4833db58b5
2083Author: Colin Harrison <colin.harrison-at-virgin.net>
2084Date:   Mon May 5 22:17:55 2008 +0100
2085
2086    Fix build for WIN32
2087
2088commit 6ba408c956ca8e241d10d463c45b4e987b757333
2089Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2090Date:   Sun Mar 9 08:21:34 2008 +0100
2091
2092    nuke RCS Ids
2093
2094commit 754cabe62e91b9ad50c3027c063f4269775f7add
2095Author: Julien Cristau <jcristau@debian.org>
2096Date:   Fri Mar 7 12:19:22 2008 +0100
2097
2098    Add missing include in src/FreeType/ftfuncs.c
2099    
2100    Fixes compiler warning:
2101    ../../../src/FreeType/ftfuncs.c: In function 'restrict_code_range_by_str':
2102    ../../../src/FreeType/ftfuncs.c:2081: warning: implicit declaration of function 'isspace'
2103
2104commit 0fd2a1428df56d8b29e148b08dcec2dfed9302fa
2105Author: Adam Jackson <ajax@redhat.com>
2106Date:   Wed Mar 5 22:04:06 2008 -0500
2107
2108    libXfont 1.3.2
2109
2110commit b76df66d2c507898472bba0f9986ef5700029a36
2111Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
2112Date:   Thu Jan 17 15:30:37 2008 +0100
2113
2114    Fix for CVE-2008-0006 - PCF Font parser buffer overflow.
2115
2116commit 2297c6390a1609fe810c2cd5b3443f3722610944
2117Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
2118Date:   Thu Oct 18 21:46:49 2007 +0200
2119
2120    ftsystem.c is not needed anymore.
2121
2122commit 5bf703700ee4a5d6eae20da07cb7a29369667aef
2123Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
2124Date:   Fri Sep 28 08:17:57 2007 +0200
2125
2126    catalogue.c: prevent a one character overflow
2127    
2128    this occurs if readlink writes a result that's exactly the
2129    size of the buffer that's passed to it. Reported by
2130    Joerg Sonnenberger.
2131    
2132    Re
2133
2134commit fd8a03fbbd74f5cbaa740e5d50fccdf5c1f78b5b
2135Author: Jens Granseuer <jensgr@gmx.net>
2136Date:   Thu Sep 27 23:12:00 2007 +0200
2137
2138    fix build with gcc 2.95.
2139    
2140    In addition to fixing the C89 issue, the patch also flags a few functions as
2141    static to avoid "no previous prototype" warnings.
2142
2143commit 268f1bb1859e97944e8b63a5bb12677e874ed144
2144Author: Tilman Sauerbeck <tilman@code-monkey.de>
2145Date:   Thu Sep 13 20:40:26 2007 +0200
2146
2147    Replaced one instance of bcopy() with memcpy().
2148    
2149    f->buffer cannot overlap with io->file->bits, so it's safe to
2150    use memcpy() rather than memmove().
2151    Compile-tested only.
2152
2153commit f2725a5c9da771fb610d503ebfda3b4d1553bac4
2154Author: Eric Anholt <eric@anholt.net>
2155Date:   Wed Sep 5 13:10:43 2007 -0700
2156
2157    Bump version to 1.3.1.
2158
2159commit aca95d12a8b35de7ae914632fc9e8a723d58a860
2160Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
2161Date:   Sat Aug 25 23:32:54 2007 +0200
2162
2163    Kill unused macro definition.
2164
2165commit 3c3b47bf6f080ddb700886de3e5bfa42c2f0774e
2166Merge: 9f86614 32d2d33
2167Author: Dodji Seketeli <dodji@openedhand.com>
2168Date:   Sat Aug 11 23:09:50 2007 +0200
2169
2170    Merge branch 'master' of ssh://dodji@git.freedesktop.org/git/xorg/lib/libXfont
2171
2172commit 9f86614394af81bc484cf00f3e9996510d3718cb
2173Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
2174Date:   Mon Jul 30 14:36:21 2007 -0400
2175
2176    Fix dirfd leak on CatalogueRescan().
2177
2178commit 87f50267181887ed9214536608bd2035d2dd70f7
2179Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
2180Date:   Mon Jul 30 14:35:01 2007 -0400
2181
2182    Support relative paths in catalogue:<dir> symlinks.
2183    
2184    Relative symlinks are common inside the catalogue directory and
2185    should be supported as well.
2186
2187commit 32d2d335eacd1b55980323a71ef35cdf7c22366d
2188Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
2189Date:   Mon Jul 30 14:36:21 2007 -0400
2190
2191    Fix dirfd leak on CatalogueRescan().
2192
2193commit 0a5b31a40c4933f4c69157c61d4d4890af2205b1
2194Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
2195Date:   Mon Jul 30 14:35:01 2007 -0400
2196
2197    Support relative paths in catalogue:<dir> symlinks.
2198    
2199    Relative symlinks are common inside the catalogue directory and
2200    should be supported as well.
2201
2202commit 7670d4a2720c61fbc7b989fed14c676f04ac3ad1
2203Author: Dodji Seketeli <dodji@seketeli.org>
2204Date:   Mon Jul 16 12:24:34 2007 +0200
2205
2206    Remove side effects from BuiltinReadDirectory()
2207    
2208    The first time BuiltinReadDirectory() is called,
2209    save the content of builtin_dir and builtin_alias,
2210    before calling FontFileAddFontFile(), because that fonction
2211    will modify those.
2212    
2213    Then, in subsequent calls to BuiltinReadDirectory(), restore
2214    builtin_dir and builtin_alias so that the side effect incurred
2215    by the first call disappears.
2216
2217commit e3642d9b2c0819a607d4cce413b9f0541285545b
2218Author: Kristian Høgsberg <krh@redhat.com>
2219Date:   Mon Jul 2 15:01:05 2007 -0400
2220
2221    Bump version to 1.3.0.
2222
2223commit f33f9361086db3cf1d09cec067f38fe751ed22eb
2224Author: Kristian Høgsberg <krh@redhat.com>
2225Date:   Mon Jul 2 14:59:11 2007 -0400
2226
2227    Fix crash when no attributes are present for symlink.
2228
2229commit 8d47483711be6076e7bfefab14aa890c5f37e1aa
2230Author: Kristian Høgsberg <krh@redhat.com>
2231Date:   Thu Jun 21 21:44:02 2007 -0400
2232
2233    Bump version to 1.2.9.
2234
2235commit c5ab59762c4ad5def68436d55937a2bd558d5c99
2236Author: Kristian Høgsberg <krh@redhat.com>
2237Date:   Tue Jun 19 10:38:02 2007 -0400
2238
2239    Add a new 'catalogue' FPE, which takes font paths from symlinks in a dir.
2240    
2241    This patch adds a new FPE type, which will match font path elements of the
2242    form
2243    
2244    	catalogue:<dir>
2245    
2246    The dir specified after the catalogue: prefix will be scanned for symlinks
2247    and each symlink destination will be added as a local fontfile FPE.
2248    The symlink can be suffixed by attributes, such as 'unscaled', which
2249    will be passed through to the underlying fontfile FPE.  Except the new
2250    attribute 'pri' which will be used for ordering the fontfile FPEs.
2251    
2252    An example configuration:
2253    
2254    	75dpi:unscaled:pri=20 -> /usr/share/X11/fonts/75dpi
2255    	ghostscript:pri=60 -> /usr/share/fonts/default/ghostscript
2256    	misc:unscaled:pri=10 -> /usr/share/X11/fonts/misc
2257    	type1:pri=40 -> /usr/share/X11/fonts/Type1
2258    	type1:pri=50 -> /usr/share/fonts/default/Type1
2259    
2260    will add /usr/share/X11/fonts/misc as the first FPE with the attribute
2261    'unscaled', second FPE will be /usr/share/X11/fonts/75dpi, also with
2262    the attribute unscaled etc.  This is functionally equivalent to setting
2263    the following font path:
2264    
2265    	/usr/share/X11/fonts/misc:unscaled,
2266    	/usr/share/X11/fonts/75dpi:unscaled,
2267    	/usr/share/X11/fonts/Type1,
2268    	/usr/share/fonts/default/Type1,
2269    	/usr/share/fonts/default/ghostscript
2270    
2271    The motivation is to let font packages add a symlink to the new font
2272    directory they provide instead of rewriting either the Xorg config file
2273    or the xfs config file.
2274
2275commit 1a690feaf7c416da9b01861af381d15a661e5f52
2276Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2277Date:   Thu Jun 7 16:01:03 2007 -0400
2278
2279    Minor fontfile cleanup.
2280
2281commit 3b1bcd7676fe810ce60d6a4758067b571796cceb
2282Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2283Date:   Thu Jun 7 15:54:51 2007 -0400
2284
2285    Dead code cull from fontserver code.
2286
2287commit 6257af0e547095483331b8c8ed588e5467852671
2288Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2289Date:   Thu Jun 7 15:41:19 2007 -0400
2290
2291    Static markup over bitmap and builtins.
2292
2293commit 8c31fadabd706af63381007d666e685a66b58fd9
2294Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2295Date:   Thu Jun 7 15:28:09 2007 -0400
2296
2297    Dead code cull from FreeType.
2298
2299commit fabf5458f1acbfc967bdaea3b89d707c22b97364
2300Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2301Date:   Thu Jun 7 15:17:16 2007 -0400
2302
2303    Death to open-coded strcasecmp.
2304    
2305    Seriously, if you don't already have this, you've already lost.
2306
2307commit d50de26430c1a114a22597de40a3e5ac3c8e1ab7
2308Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2309Date:   Thu Jun 7 15:13:44 2007 -0400
2310
2311    Dead code cull from Speedo.
2312
2313commit 3fd7a510b5467479d6e2559819b96b222c7328e8
2314Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2315Date:   Thu Jun 7 14:39:03 2007 -0400
2316
2317    One more missed static in Type1
2318
2319commit 440166a027b78eb53d7686937148b755ad51f7f9
2320Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2321Date:   Thu Jun 7 14:24:46 2007 -0400
2322
2323    Dead code removal and static markup for Type1.
2324
2325commit 9739e750a7ca4b86ddb89674b104e9b9a8b61014
2326Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2327Date:   Thu Jun 7 14:20:27 2007 -0400
2328
2329    Warning cleanup.
2330
2331commit 87db45f5eb7880395735f7bf3a8ee2d89b7e0122
2332Author: Alan Coopersmith <alan.coopersmith@sun.com>
2333Date:   Wed Apr 4 17:05:13 2007 -0700
2334
2335    Version bump: 1.2.8
2336
2337commit 224fb6403a328e70b370540cc5cefd74421fafac
2338Merge: e7a59cf 0fbb37c
2339Author: Matthieu Herrb <matthieu@roadrock.(none)>
2340Date:   Tue Apr 3 16:05:48 2007 +0200
2341
2342    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libXfont
2343
2344commit e7a59cfb5d442d2965cfcffeff405a4b05591190
2345Author: Matthieu Herrb <matthieu@roadrock.(none)>
2346Date:   Tue Apr 3 15:45:21 2007 +0200
2347
2348    Integer overflow vulnerabilities
2349    
2350    CVE-2007-1351: BDFFont Parsing Integer Overflow
2351    CVE-2007-1352: fonts.dir File Parsing Integer Overflow
2352
2353commit 0fbb37ccc630ced42d6a973c81d947870cca7637
2354Author: Alan Coopersmith <alan.coopersmith@sun.com>
2355Date:   Mon Apr 2 17:40:19 2007 -0700
2356
2357    Add #pragma weak for Sun cc where needed
2358
2359commit cc824e4f2c9a53a00b36a6f83bf065c363027087
2360Author: Alan Coopersmith <alan.coopersmith@sun.com>
2361Date:   Fri Mar 23 15:57:29 2007 -0700
2362
2363    Actually use loadable font modules
2364    
2365    Loadable font modules were not being initialized, and all font renderers
2366    known at build time were always being initialized, regardless of Xorg
2367    module configuration.
2368
2369commit fc6e22f238d34918156ded34148730075b7b9cc2
2370Author: Ben Byer <bbyer@bbyer.(none)>
2371Date:   Tue Feb 20 00:20:23 2007 -0800
2372
2373    added -flat_namespace to CFLAGS for Darwin
2374
2375commit 9509d5c7ee5d5e78c6eef54e8faceede5ca5f24e
2376Author: Kristian Høgsberg <krh@redhat.com>
2377Date:   Mon Jan 22 18:24:19 2007 -0500
2378
2379    Bump to 1.2.7.
2380
2381commit 63af35b908b51690a6c12fd42b54cf4ee08c762a
2382Author: Simon Law <sfllaw@debian.org>
2383Date:   Fri Jan 19 08:50:39 2007 +1100
2384
2385    fontfile: accept empty (but valid) font paths (bug #3091)
2386    If a path has a valid fonts.dir or fonts.alias, but does not contain any
2387    fonts (either fonts.dir specifies zero fonts, or fonts could not be
2388    loaded), load it as a valid font path anyway.
2389
2390commit 931b777108526dd0761f948dcd9f1603ac02efc8
2391Author: Kristian Høgsberg <krh@redhat.com>
2392Date:   Wed Jan 17 17:19:53 2007 -0500
2393
2394    Add stubs for the scalable renderer callbacks.
2395    
2396    Trying to scale a bitmap font provided by the built-in backend will
2397    crash the X server as it calls into a NULL pointer.  This patch
2398    adds "return BadFont;" stubs to prevent the crash.
2399
2400commit 2e4ae1b524a0149479c46f3f12a9ce2413092442
2401Author: Daniel Stone <daniel@fooishbar.org>
2402Date:   Sat Dec 16 00:53:43 2006 +0200
2403
2404    bump to 1.2.6
2405
2406commit facc7ce4892eab4353fff0f45d2d3fd6be7d3e3d
2407Author: Daniel Stone <daniel@fooishbar.org>
2408Date:   Sat Dec 16 00:53:32 2006 +0200
2409
2410    build Type1 by default
2411    Build Type1 by default, instead of needing to explicitly enable it.
2412
2413commit 257db35656d5bf9385080e1d173260f0076f849c
2414Author: Daniel Stone <daniel@fooishbar.org>
2415Date:   Sat Dec 16 00:53:07 2006 +0200
2416
2417    don't distribute fontconf.h
2418    Since fontconf.h is a generated file, don't distribute it.
2419
2420commit ab0f05dcfb5537ba5aec7e48ddb713d4fdba7e75
2421Author: Daniel Stone <daniel@fooishbar.org>
2422Date:   Wed Dec 6 18:53:54 2006 +0200
2423
2424    Makefile.am: make ChangeLog hook safer
2425    Make ChangeLog hook as safe as possible.
2426
2427commit da20e256b786eaa6357e3d55baa9e90e38f14614
2428Author: Daniel Stone <daniel@fooishbar.org>
2429Date:   Fri Dec 1 01:05:59 2006 +0200
2430
2431    bump to 1.2.5
2432
2433commit 16a0c282a673136c0bbb116f35e6e89d8b43a877
2434Author: Daniel Stone <daniel@fooishbar.org>
2435Date:   Fri Dec 1 01:05:40 2006 +0200
2436
2437    post-CID fixes
2438    Curiously, make distcheck succeeded ... go figure.
2439
2440commit e47fb944a8f485c4ad6be9c2cf6a4866eff7a07f
2441Author: Daniel Stone <daniel@fooishbar.org>
2442Date:   Fri Dec 1 00:35:48 2006 +0200
2443
2444    bump to 1.2.4
2445
2446commit 47084ba39920068030c3e59523701d1205161a9f
2447Author: Daniel Stone <daniel@fooishbar.org>
2448Date:   Fri Dec 1 00:35:04 2006 +0200
2449
2450    remove CID font support (bug #5553)
2451    Remove non-free CID font support, which was unused anyway.
2452
2453commit c4741cdd83bcdedcc6f7a072a73b16668fc905eb
2454Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2455Date:   Fri Oct 13 16:17:26 2006 -0400
2456
2457    Bump to 1.2.3
2458
2459commit 5dfff0eb0f532edb1f4a25daa5529e08dd832ecb
2460Author: Alan Coopersmith <alan.coopersmith@sun.com>
2461Date:   Thu Oct 5 18:12:50 2006 -0700
2462
2463    --disable-builtins should not force off all bitmap support
2464
2465commit 264df52d24f585915e0d9823d5f087cf23e3fc75
2466Merge: 0fb55cb d896c3e
2467Author: Alan Coopersmith <alan.coopersmith@sun.com>
2468Date:   Fri Sep 22 11:36:43 2006 -0700
2469
2470    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libXfont
2471
2472commit d896c3eaeafdb8831ed0833af46250c36f82502f
2473Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2474Date:   Tue Sep 12 11:11:12 2006 -0400
2475
2476    Fix distcheck.
2477
2478commit 1bb49c77c321fab1f5c268404ea0ec622fa083ed
2479Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2480Date:   Tue Sep 12 11:01:13 2006 -0400
2481
2482    Bump to 1.2.2.
2483
2484commit 8c8203ca2760105aca4e0b6ec5909355a061f0b3
2485Author: Matthieu Herrb <matthieu@blues.laas.fr>
2486Date:   Tue Sep 12 13:50:31 2006 +0200
2487
2488    Fixes for integer overflows in CID encoded fonts parsing reported by iDefense
2489    CVE-ID 2006-3739, 2006-3740, bugzilla #8000, #8001.
2490
2491commit 0fb55cb86e2ec5dbfbf27a01ceafb77c72fe9f40
2492Author: Alan Coopersmith <alan.coopersmith@sun.com>
2493Date:   Wed Aug 30 15:53:14 2006 -0700
2494
2495    Fix typo in comment (alreadt -> already)
2496
2497commit aa7f3107d5aad41cb3f7b1bb3a4723014314289c
2498Author: Alan Coopersmith <alan.coopersmith@sun.com>
2499Date:   Fri Aug 25 17:51:46 2006 -0700
2500
2501    Add *~ to .gitignore to skip emacs droppings
2502
2503commit cd09f4d54045b957d728d853398d62543d687d03
2504Author: Alan Coopersmith <alan.coopersmith@sun.com>
2505Date:   Fri Aug 25 17:51:04 2006 -0700
2506
2507    Replace static ChangeLog with dist-hook to generate from git log
2508
2509commit 8d171fe61e564d8ed8f75034d4191062cecf190b
2510Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2511Date:   Sun Jul 23 22:42:43 2006 +0200
2512
2513    More check on PCF file reading. Bugzilla #7535
2514
2515commit fead0fa3bae0ba5a4744d6a2aee1caa08019f344
2516Author: Daniel Stone <daniel@fooishbar.org>
2517Date:   Wed Jul 19 18:03:58 2006 -0400
2518
2519    use OpenBitmap when available
2520    Don't just use OpenScalable unconditionally.  Fixes builtin fonts.
2521
2522commit 13422d0e0468f2ddf7cb74cbf925e5bcf4551ae7
2523Author: Daniel Stone <daniel@fooishbar.org>
2524Date:   Wed Jul 19 18:03:26 2006 -0400
2525
2526    move builtin fonts to gzip
2527    Use gzip, rather than compress, for builtin fonts.
2528
2529commit 47ca9941396a375f5e22c220327b6bd513350996
2530Author: Alan Coopersmith <alan.coopersmith@sun.com>
2531Date:   Thu Jul 13 14:58:56 2006 -0700
2532
2533    renamed: .cvsignore -> .gitignore
2534
2535commit 1bf657186d19887a0916340b544b5534e29da081
2536Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2537Date:   Thu Jul 13 10:18:38 2006 -0400
2538
2539    Bug #7397: Fix a buffer overflow in Freetype font support.
2540
2541commit 5d39f5fd3048fc413cb07afeffec0c4daa0cc5a4
2542Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2543Date:   Thu Jul 6 16:13:14 2006 -0400
2544
2545    Bump to 1.2.0
2546
2547commit d9e83ea0ab1cc3bafcdca04812dcbfe541ce1473
2548Author: Jie Luo <clotho67@gmail.com>
2549Date:   Thu Jul 6 15:59:31 2006 -0400
2550
2551    Bug #6918: remove dependencies on Freetype internal headers.  As of 2.2
2552    Freetype no longer installs them.
2553
2554commit 2a564715e6d01bafdf4b701e125e45a77c2c404b
2555Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2556Date:   Sat Jun 3 06:25:05 2006 +0000
2557
2558    Coverity #1541: Double free of pointer "ranges" in call to "Xfree"
2559
2560commit ddd281e6b9408c786cdc759cf7d1ec8972048658
2561Author: Adam Jackson <ajax@nwnk.net>
2562Date:   Thu Jun 1 21:49:51 2006 +0000
2563
2564    For the 20-odd symbols defined both in libXfont and the X server, emit them
2565        as weak symbols so that the linker will prefer the server's definition
2566        when present.
2567
2568commit e9357d6670fc2e8ccf8d8770bac4c31994d6cc2f
2569Author: Adam Jackson <ajax@nwnk.net>
2570Date:   Sat Apr 1 23:05:40 2006 +0000
2571
2572    Add ft.h and ftfuncs.h to the install set for Xprint's benefit. Bump to 1.1
2573        for new header files and bugfixes.
2574
2575commit 7ecd09a15c30770ed6e70d80fb67f88819471c20
2576Author: Daniel Stone <daniel@fooishbar.org>
2577Date:   Fri Mar 31 07:17:16 2006 +0000
2578
2579    Change BUILD_* to XFONT_* (Drew Parsons). Remove random #ifndef CRAY.
2580
2581commit 69c4ae1e3e14a58bc2eb9b9b8820dc7183b82a67
2582Author: Adam Jackson <ajax@nwnk.net>
2583Date:   Mon Mar 20 19:44:26 2006 +0000
2584
2585    Bug #6247: Fix build on Cygwin. (Yaakov Selkowitz)
2586
2587commit bfb8a71f4f7e5c5ed4278cb3ee271bf9990d276d
2588Author: Daniel Stone <daniel@fooishbar.org>
2589Date:   Tue Feb 21 21:35:32 2006 +0000
2590
2591    Don't crash when we receive an FS_Error from the font server (Guillem
2592        Jover).
2593
2594commit 784838e88ea205c4457f41335b4ce7876833dffc
2595Author: Kevin E Martin <kem@kem.org>
2596Date:   Thu Dec 15 00:24:29 2005 +0000
2597
2598    Update package version number for final X11R7 release candidate.
2599
2600commit e2e5839417ac4d635781508e48ab1838218f4a77
2601Author: Kevin E Martin <kem@kem.org>
2602Date:   Fri Dec 9 06:55:27 2005 +0000
2603
2604    Bug #5175: Make encodingsdir configurable.
2605
2606commit 9a7909e80a8b436aa7aad84c8aceba7df2ffc95c
2607Author: Kevin E Martin <kem@kem.org>
2608Date:   Sat Dec 3 05:49:43 2005 +0000
2609
2610    Update package version number for X11R7 RC3 release.
2611
2612commit ad001bd8823594fed860e070b278748fe2b7c3aa
2613Author: Eric Anholt <anholt@freebsd.org>
2614Date:   Sun Nov 20 23:17:40 2005 +0000
2615
2616    Add/improve libs .cvsignores.
2617
2618commit d48bfbaf52598d89b4b1d97b230924874175e068
2619Author: Kevin E Martin <kem@kem.org>
2620Date:   Sat Nov 19 07:15:41 2005 +0000
2621
2622    Update pkgconfig files to separate library build-time dependencies from
2623        application build-time dependencies, and update package deps to work
2624        with separate build roots.
2625
2626commit 70a8aeb19223cc6db9ff6fc1335e3ef94bbb9253
2627Author: Adam Jackson <ajax@nwnk.net>
2628Date:   Mon Nov 14 20:40:42 2005 +0000
2629
2630    Bug #5047: Make font directory attribs work in modular.
2631
2632commit 659b2a75a690838dc37ae488d0295c4c594978ce
2633Author: Kevin E Martin <kem@kem.org>
2634Date:   Wed Nov 9 21:19:13 2005 +0000
2635
2636    Update package version number for X11R7 RC2 release.
2637
2638commit fc82a56858e26674e83cc9429fa0eae24d97a530
2639Author: Kean Johnson <kean@armory.com>
2640Date:   Tue Nov 8 06:33:26 2005 +0000
2641
2642    See ChangeLog entry 2005-11-07 for details.
2643
2644commit fb3d726bbff1fad62a3d6dbbcf1c397872aadef3
2645Author: Adam Jackson <ajax@nwnk.net>
2646Date:   Sun Oct 23 18:32:05 2005 +0000
2647
2648    Bug #4721: Fix crash when using Freetype 2.1.10. (Michael Gor)
2649
2650commit 0f006d82f8edd15e0125800fa3166a147e79b9f5
2651Author: Kevin E Martin <kem@kem.org>
2652Date:   Wed Oct 19 02:48:10 2005 +0000
2653
2654    Update package version number for RC1 release.
2655
2656commit 70dfb55c0390cd8698a77baad5e9fbb07aab272d
2657Author: Kevin E Martin <kem@kem.org>
2658Date:   Wed Oct 5 19:39:06 2005 +0000
2659
2660    Include missing files
2661
2662commit 01f5840009b23cc504359219a6fbab3c150d4656
2663Author: Adam Jackson <ajax@nwnk.net>
2664Date:   Tue Oct 4 00:24:47 2005 +0000
2665
2666    Bug #4677: Don't install libfontcache.so
2667
2668commit 30f912cd14e8b7272a95586dc0af429a0fa4c84f
2669Author: Daniel Stone <daniel@fooishbar.org>
2670Date:   Fri Sep 9 05:32:58 2005 +0000
2671
2672    AC_DEFINE FONTCACHE rather than XFONT_FONTCACHE, as the former is used in
2673        the code, and the latter in Makefile.ams for an AM_CONDITIONAL.
2674
2675commit 4a2f7ae2f3317e53d99daf15ad362230388949d4
2676Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2677Date:   Thu Aug 4 16:15:46 2005 +0000
2678
2679    If --with-freetype-config is not specified, try pkgconfig freetype2, then
2680        fall back to freetype-config if pkgconfig fails.
2681
2682commit 0c52dd6f8816a72d8309f0b059afb0c3393f17cf
2683Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2684Date:   Sat Jul 30 18:56:32 2005 +0000
2685
2686    Clear compiler warnings. (Stefan Dirsch)
2687
2688commit 8520fa13d35e42da7352772b499beef258723d43
2689Author: Kevin E Martin <kem@kem.org>
2690Date:   Fri Jul 29 21:22:51 2005 +0000
2691
2692    Various changes preparing packages for RC0:
2693    - Verify and update package version numbers as needed
2694    - Implement versioning scheme
2695    - Change bug address to point to bugzilla bug entry form
2696    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
2697        reenable it)
2698    - Fix makedepend to use pkgconfig and pass distcheck
2699    - Update build script to build macros first
2700    - Update modular Xorg version
2701
2702commit d0c5d54d2c7f0bb9364414620df869e3c7615cd5
2703Author: Kevin E Martin <kem@kem.org>
2704Date:   Sat Jul 23 05:27:00 2005 +0000
2705
2706    Fix distchecks
2707
2708commit 561a45751e4c553f1e0887b73abcc724828f03b0
2709Author: Daniel Stone <daniel@fooishbar.org>
2710Date:   Sat Jul 16 07:55:12 2005 +0000
2711
2712    Set soversion to 1.0.0 using -version-number.
2713
2714commit 054dd01fd5793cff89f7c536c04fd8d904aca4a3
2715Author: Adam Jackson <ajax@nwnk.net>
2716Date:   Thu Jul 14 14:56:13 2005 +0000
2717
2718    Add a dummy source file to avoid link failures.
2719
2720commit 740cfa83024ce5d3f131cdc2f52dd5bf26f945b3
2721Author: Kevin E Martin <kem@kem.org>
2722Date:   Sun Jul 10 21:35:08 2005 +0000
2723
2724    Change include dir now that public headers are referenced by
2725        <X11/fonts/*.h>
2726
2727commit cd24fcabc449bbc701a25e3cad279009dec69032
2728Author: Keith Packard <keithp@keithp.com>
2729Date:   Sat Jul 9 23:31:40 2005 +0000
2730
2731    Switch from monolithic configuration symbols to modular ones, add backward
2732        compatibility for monolithic symbols
2733
2734commit 428dd333c1c1a96d205d8236c6ecee32dbf7cac9
2735Author: Keith Packard <keithp@keithp.com>
2736Date:   Sat Jul 9 23:30:07 2005 +0000
2737
2738    Switch from monolithic configuration symbols to modular ones, add backward
2739        compatibility for monolithic symbols
2740
2741commit 99cde389c331616f22dd6aab395c488f3a798e2e
2742Author: Keith Packard <keithp@keithp.com>
2743Date:   Sat Jul 9 23:15:37 2005 +0000
2744
2745    Rearrange configuration options so that individual font file formats drive
2746        combined options, and so that the default matches the monolithic
2747        defaults
2748    Extent fontconf.h to cover all formats
2749    Typo in src/Makefile.am failed to link in Type1 library
2750    Missing xttcap.c from FreeType shim library.
2751
2752commit 3c4ac0b9f5b7aced60a763bcaca7b32cd53a7fec
2753Author: Keith Packard <keithp@keithp.com>
2754Date:   Sat Jul 9 06:36:13 2005 +0000
2755
2756    Include config.h in every source file to make sure necessary options are
2757        found when building in the modular tree
2758
2759commit 712140dadd20c7d2024d7b75f7033fff407e57e6
2760Author: Keith Packard <keithp@keithp.com>
2761Date:   Sat Jul 9 06:20:37 2005 +0000
2762
2763    Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
2764
2765commit ef504c5311dfd441dcb73be64e90f6e7a530b61c
2766Author: Adam Jackson <ajax@nwnk.net>
2767Date:   Fri Jul 8 20:47:12 2005 +0000
2768
2769    add -D_XOPEN_SOURCE for linux builds; others might need it too
2770
2771commit 3ff8db61b901a4d6236a0e4fa40fe5f1b7afcf78
2772Author: Adam Jackson <ajax@nwnk.net>
2773Date:   Fri Jul 8 20:16:12 2005 +0000
2774
2775    disable the poll detection momentarily, it's not correct
2776
2777commit 830d29e5cb0a8c46cd366adefbf3a291c65bd3ac
2778Author: Adam Jackson <ajax@nwnk.net>
2779Date:   Fri Jul 8 20:08:12 2005 +0000
2780
2781    silence a warning
2782
2783commit 75bbb2d461957902258223a9f8f7f8490132e75d
2784Author: Adam Jackson <ajax@nwnk.net>
2785Date:   Fri Jul 8 19:53:05 2005 +0000
2786
2787    config.h includes to fix modular build.
2788
2789commit f068c478d0966be93f9e984c1e9ce2600819a6a1
2790Author: Adam Jackson <ajax@nwnk.net>
2791Date:   Fri Jul 8 18:29:58 2005 +0000
2792
2793    Properly test for the existance of poll(3). Default to using it if it
2794        exists; add a flag to disable it if you like going slow.
2795    Also s/BULITIN/BUILTIN/.
2796
2797commit e5f35e324548994f2d6df89d6bd0a4eb913f7414
2798Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2799Date:   Thu Jul 7 14:59:47 2005 +0000
2800
2801    Bug #2901 <https://bugs.freedesktop.org/show_bug.cgi?id=2901> Patch #2332
2802        <https://bugs.freedesktop.org/attachment.cgi?id=2332> This patch avoids
2803        79 gcc-3.4.3 warnings 'xxx' declared `static' but never defined mostly
2804        due to including "ftfuncs.h" with the declaration of static functions
2805        defined in "ftfuncs.c". (Peter Breitenlohner)
2806
2807commit c073ce34164a9872688ce619cc0b3fedbdc76f83
2808Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2809Date:   Mon Jul 4 22:26:15 2005 +0000
2810
2811    Test for xtrans connection flags
2812
2813commit a0dc7d02bfcaea8c8a60dcbd00795999bd7f8e0a
2814Author: Kevin E Martin <kem@kem.org>
2815Date:   Sun Jul 3 21:43:32 2005 +0000
2816
2817    Undo previous change to add ${includedir}/X11/fonts to CFLAGS. Instead,
2818        require all apps to include font headers explicitly -- i.e., from
2819        <X11/fonts/*.h> instead of "*.h" or <*.h>.
2820
2821commit b15a03de6b1897d7c8292e154d0e927f43e3cde0
2822Author: Kevin E Martin <kem@kem.org>
2823Date:   Sun Jul 3 21:38:42 2005 +0000
2824
2825    Install publicly used headers in X11/fonts.
2826    Change source files that use these headers to get them via <X11/fonts/*.h>.
2827
2828commit bf4070d02196cab1de62d5fe19be9a1aa74a87c7
2829Author: Kevin E Martin <kem@kem.org>
2830Date:   Sun Jul 3 16:10:05 2005 +0000
2831
2832    Change include dir now that public headers are referenced by
2833        <X11/fonts/*.h>
2834
2835commit 932edb23b47440397447265bf72ad7932fd80070
2836Author: Daniel Stone <daniel@fooishbar.org>
2837Date:   Sun Jul 3 07:01:01 2005 +0000
2838
2839    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
2840    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
2841    Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
2842        source files in the xserver/xorg tree, predicated on defines of
2843        HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
2844        <X11/fonts/foo.h>.
2845
2846commit b03d67fd1612a0df5132b10dd0bd9b2cec053a39
2847Author: Keith Packard <keithp@keithp.com>
2848Date:   Sat Jul 2 23:03:05 2005 +0000
2849
2850    Add suitable .cvsignore files
2851
2852commit 69ee19fc4131ce168c9bad2602ff2da176a86715
2853Author: Kevin E Martin <kem@kem.org>
2854Date:   Sat Jul 2 21:39:23 2005 +0000
2855
2856    Make headers needed by bdftopcf public
2857    Set CFLAGS to make public interface actually public
2858    Fix distcheck problem
2859
2860commit 0ea9f882abb9ad56de2bb8b569e21728e13a1ea7
2861Author: Keith Packard <keithp@keithp.com>
2862Date:   Sat Jul 2 21:22:31 2005 +0000
2863
2864    Build libXfont.la in the 'src' directory as my version of automake really
2865        didn't like sub-subdirs in SUBDIRS.
2866
2867commit 6abcfa406de44d726f550fe7e9b04e4168fce265
2868Author: Daniel Stone <daniel@fooishbar.org>
2869Date:   Sat Jul 2 18:02:19 2005 +0000
2870
2871    Remove -I${includedir}/X11/fonts from CFLAGS.
2872
2873commit 58edcd0de115e23030955493e88afb25b57668e9
2874Author: Daniel Stone <daniel@fooishbar.org>
2875Date:   Fri Jul 1 22:21:43 2005 +0000
2876
2877    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
2878
2879commit 12cca25eea410bfd536ada44e252d79e0896ffa2
2880Author: Daniel Stone <daniel@fooishbar.org>
2881Date:   Fri Jul 1 21:24:31 2005 +0000
2882
2883    Default --enable-fc to yes; minor formatting changes.
2884
2885commit 4534fa0c8adb77b7db47101318e0e863edb186ce
2886Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2887Date:   Mon Jun 27 16:09:14 2005 +0000
2888
2889    - Remove fontenc from Xfont
2890    - Add a dependency from Xfont on libfontenc
2891    - Add build system for lib/fontenc
2892    - xc/lib/font: Change #include "fontenc.h" to #include
2893        <X11/fonts/fontenc.h> in some places.
2894    - Remove dpsinfo and dpsexec from the app section of symlink.sh
2895    - Fix xp.pc.in to add XPRINT_LIBS/CFLAGS instead of X_LIBS/CFLAGS
2896
2897commit fda7215c0783ad170eb14f7dda078fac3f134470
2898Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2899Date:   Tue Jun 21 21:29:40 2005 +0000
2900
2901    Add fontenc directory, update buildsystem
2902
2903commit db8fd7e670cbd901116344212217bee8001ab460
2904Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2905Date:   Fri Jun 17 20:33:33 2005 +0000
2906
2907    Add lbxutil to symlink.sh Add back accidentally removed include in Type1
2908        directory Disable Speedo by default
2909
2910commit e5525d268c6165318894f326be445b22a2523558
2911Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2912Date:   Thu Jun 16 21:35:26 2005 +0000
2913
2914    Add Speedo directory to Xfont
2915
2916commit b96f539005da57273dc7e2bee13651de4eedf087
2917Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2918Date:   Thu Jun 16 20:50:12 2005 +0000
2919
2920    Add Type1 subdirectory to lib/Xfonts, update build system accordingly.
2921
2922commit 01c8cee1736be252348306412ab56b2e03bf2678
2923Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2924Date:   Thu Jun 9 15:56:05 2005 +0000
2925
2926    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
2927
2928commit 3a46316e5f21e28402babdc95871317bd7013809
2929Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2930Date:   Thu Jun 9 15:52:03 2005 +0000
2931
2932    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
2933    Copy Xtrans.h to exports/include/X11/Xtrans only
2934
2935commit 175bbc2e58f7dbe5c1f097ef36eadc3f6fe4b5e6
2936Author: Josh Triplett <josh@speakeasy.net>
2937Date:   Fri May 27 17:44:08 2005 +0000
2938
2939    Reference X11/fonts header files using X11/fonts/ prefix.
2940
2941commit fd884a4dbe3f1be8919426da3ebd177fa474a59e
2942Author: Josh Triplett <josh@speakeasy.net>
2943Date:   Fri May 27 05:17:52 2005 +0000
2944
2945    Add Xfont.
2946
2947commit 73c3c1850bc5ba1b0d42b2a9d4f3f5593bfbfd02
2948Author: Adam Jackson <ajax@nwnk.net>
2949Date:   Fri Apr 22 20:49:49 2005 +0000
2950
2951    Bug #3069: Drop the BuildLowMem hack, it doesn't compile and isn't useful.
2952
2953commit dd695cb666d6912f615b264eaabbad63592588c1
2954Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2955Date:   Mon Nov 15 15:06:56 2004 +0000
2956
2957    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added
2958        mingw (Win32) port
2959
2960commit 8cb3bec3667fa6ee57277956d3be71671915a73b
2961Author: Roland Mainz <roland.mainz@nrubsig.org>
2962Date:   Wed Nov 10 07:46:26 2004 +0000
2963
2964    xc/lib/font/util/Imakefile
2965    //freedesktop.org/bugzilla/show_bug.cgi?id=1804): Fix build failure (caused
2966        by missing symbols such as |TwoByteSwap|) when linking the FreeType
2967        module and the FreeType library both statically info the Xserver.
2968
2969commit 69e87288b14a9f28caf0ed5e4ccf5a52767b22eb
2970Author: Roland Mainz <roland.mainz@nrubsig.org>
2971Date:   Wed Nov 3 19:43:57 2004 +0000
2972
2973    //freedesktop.org/bugzilla/show_bug.cgi?id=1767): Fixing build bustage in
2974        xc/programs/bdftopcf/ due missing `FT_STREAM_SEEK'/`FT_STREAM_POS'
2975        symbols.
2976
2977commit 29b00ebfebf9811d0940c164a4fcff1b2fc5f2a0
2978Author: Egbert Eich <eich@suse.de>
2979Date:   Tue Nov 2 08:54:52 2004 +0000
2980
2981    Removing unneeded private FreeType2 symbol.
2982    Updating to EDID 1.3. (Bugzilla# 1490, Jay Cotton, Egbert Eich).
2983    Removing unneeded code.
2984    Fixed KGA handling for i810. KGA handling for chips derived from C&T chips
2985        is slightly different. The changes make the code consistent with the
2986        C&T (chips) and i740 drivers.
2987
2988commit e521b8425894ae62ebe225af80e8b6f820df6ff8
2989Author: Egbert Eich <eich@suse.de>
2990Date:   Wed Aug 4 12:21:48 2004 +0000
2991
2992    Optimization of CJK rendering when using versions of freetype prior to
2993        2.1.8 (Chisato Yamauchi).
2994    A small backward compatibility fix to make the freetype module build with
2995        freetype version < 2.1.7.
2996    Fixed/added some debugging code.
2997
2998commit 0cbe4e38042a21ee193b2fda42fa647e23f61758
2999Author: Egbert Eich <eich@suse.de>
3000Date:   Tue Aug 3 16:12:53 2004 +0000
3001
3002    fixed typo
3003
3004commit 3ebaa297368aaf4c49caf179d2032c1678066663
3005Author: Egbert Eich <eich@suse.de>
3006Date:   Tue Aug 3 09:02:17 2004 +0000
3007
3008    Bugzilla #925: Simpler version of backward compatibility fix (Chisato
3009        Yamauchi). Fix to support older versions of gcc (Matthieu Herrb).
3010
3011commit 96a97b8f86982ece612aa72865b737820d88105b
3012Author: Egbert Eich <eich@suse.de>
3013Date:   Mon Aug 2 19:35:07 2004 +0000
3014
3015    Removed distro specific stuff.
3016    Fixed FreeType module to build with FreeType versions older than 2.1.7.
3017    Fixed typo.
3018    Added vtSema to protect call of driver DPMS function.
3019    removed unneeded variable
3020    Modified RandR driver hook to reduce the number of function calls to one.
3021        Function is sufficiently generic to be extended in the future.
3022
3023commit d1054db0eec3af6a7c322b262cfc1bf5a3992805
3024Author: Egbert Eich <eich@suse.de>
3025Date:   Mon May 24 19:06:59 2004 +0000
3026
3027    Fix build glitches when building modules independently using Imake.
3028
3029commit 2a7109894f4dcfaba70135e19fb6d595332522c7
3030Author: Egbert Eich <eich@suse.de>
3031Date:   Wed May 5 17:24:40 2004 +0000
3032
3033    BugZilla #601: fixed missing symbols in Xserver freetype module due to
3034        using isdigit instead of ft_isdigit, missing or faulty defines for
3035        digit and string functions in ftstdlib.h (now myftstdlib.h). Reverted
3036        freetype2 to upstream version, fixed CHAR_BIT in myftstdlib.h and made
3037        the use of a copy of ftconfig.h in lib/font/FreeType obsolete (Egbert
3038        Eich).
3039
3040commit b096ed91beaa09eb06b07ef948eeb6207bd3c5e4
3041Author: Roland Mainz <roland.mainz@nrubsig.org>
3042Date:   Tue May 4 22:59:15 2004 +0000
3043
3044    Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=595 -
3045        RFE: Retire XTT font module and FreeType1 from xorg tree. The
3046        functionality of XTT has been integrated into the FreeType font module
3047        and the old XTT1.x code (incl. FreeType1 in xc/extras/) is no longer
3048        needed anymore.
3049
3050commit ca5602cde91fc78f54ebe9f08c11a44a9372a652
3051Author: Roland Mainz <roland.mainz@nrubsig.org>
3052Date:   Tue May 4 18:47:31 2004 +0000
3053
3054    Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=307 -
3055        Restore optimization heuristics on CJK fonts in the FreeType font
3056        module which were broken in X11R6.7. Patch by Chisato Yamauchi
3057        <cyamauch@a.phys.nagoya-u.ac.jp>.
3058
3059commit 3d75ea33ecf80c3539b38a993092cd16325a9525
3060Author: Egbert Eich <eich@suse.de>
3061Date:   Fri Apr 23 18:44:23 2004 +0000
3062
3063    Merging XORG-CURRENT into trunk
3064
3065commit 8ee2a19ff0295d625baf0b42e0a8bb7f4ad575fd
3066Author: Egbert Eich <eich@suse.de>
3067Date:   Sun Mar 14 08:32:37 2004 +0000
3068
3069    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
3070
3071commit 4986cabb22d133aeb37b53514471ff7d5bf999fe
3072Author: Egbert Eich <eich@suse.de>
3073Date:   Wed Mar 3 12:11:44 2004 +0000
3074
3075    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
3076
3077commit f827ecf1e0c4289b5020256f9bf5b8d563b202c7
3078Author: Egbert Eich <eich@suse.de>
3079Date:   Thu Feb 26 13:35:35 2004 +0000
3080
3081    readding XFree86's cvs IDs
3082
3083commit 90614769a00fbdaf6ef2e313b480e1f0857425f3
3084Author: Egbert Eich <eich@suse.de>
3085Date:   Thu Feb 26 09:22:53 2004 +0000
3086
3087    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
3088
3089commit 45fc57ae316da51b2f9abab2aee303456730ab54
3090Author: Kaleb Keithley <kaleb@freedesktop.org>
3091Date:   Mon Feb 23 20:34:43 2004 +0000
3092
3093    Import most of XFree86 4.4RC3. This import excludes files which have the
3094        new license. If we want to, later we can import 4.4RC3 again and pick
3095        up the files that have the new license, but for now the vendor branch
3096        is "pure."
3097
3098commit d7467b679ccff6fb2025f963b9bcea5dbe72fa15
3099Author: Egbert Eich <eich@suse.de>
3100Date:   Thu Jan 29 08:08:15 2004 +0000
3101
3102    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
3103
3104commit a0e93cace89c3da8df33d8626a486afe6840d530
3105Author: Kaleb Keithley <kaleb@freedesktop.org>
3106Date:   Fri Dec 19 20:54:40 2003 +0000
3107
3108    XFree86 4.3.99.902 (RC 2)
3109
3110commit d82accff22e36919479b3ac1de72de6115688138
3111Author: Kaleb Keithley <kaleb@freedesktop.org>
3112Date:   Thu Dec 4 22:03:04 2003 +0000
3113
3114    XFree86 4.3.99.901 (RC 1)
3115
3116commit fb0cbe6e7287d635a5f368e055cc0aae6ed50125
3117Author: Kaleb Keithley <kaleb@freedesktop.org>
3118Date:   Tue Nov 25 19:28:20 2003 +0000
3119
3120    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
3121
3122commit ca219ad2fc4f392505d378dfa5a2b34d33de6d61
3123Author: Kaleb Keithley <kaleb@freedesktop.org>
3124Date:   Tue Nov 25 19:28:16 2003 +0000
3125
3126    Initial revision
3127
3128commit 4349bf0fa125e2a1c32b0b49c974ff5fa588cdbe
3129Author: Kaleb Keithley <kaleb@freedesktop.org>
3130Date:   Fri Nov 14 16:48:50 2003 +0000
3131
3132    XFree86 4.3.0.1
3133
3134commit 3795e9702b3b3a6fe0594d09cdd110adeb5e42f9
3135Author: Kaleb Keithley <kaleb@freedesktop.org>
3136Date:   Fri Nov 14 16:48:50 2003 +0000
3137
3138    Initial revision
3139
3140commit 153e8da44452905ae04a0e20ad0d85f40399b4ca
3141Author: Kaleb Keithley <kaleb@freedesktop.org>
3142Date:   Fri Nov 14 15:54:40 2003 +0000
3143
3144    R6.6 is the Xorg base-line
3145