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