resetting manifest requested domain to floor
[platform/upstream/mkfontscale.git] / ChangeLog
1 commit 4c3f72f9e3385d9c855416b6498ced067a97c712
2 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3 Date:   Fri Feb 10 20:19:37 2012 -0800
4
5     mkfontscale 1.1.0
6     
7     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9 commit bf7d4fd83c896b70f68d59de756a3847417d9add
10 Author: Maxim Iorsh <iorsh@users.sourceforge.net>
11 Date:   Thu Oct 20 08:08:47 2011 +0200
12
13     mkfontscale: fix Culmus entries to precede URW
14     
15     Culmus must precede URW and Bitstream in notice list, since its fonts are
16     based on URW/Bitstream sometimes.
17     
18     Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
19     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
20
21 commit cd8182e74636ffd9b140603fc61502b42a9d6f2b
22 Author: Maxim Iorsh <iorsh@users.sourceforge.net>
23 Date:   Tue Oct 18 22:07:45 2011 -0700
24
25     Add Culmus foundry to the vendor list for TrueType & Type1 fonts
26     
27     Maps fonts produced by the Culmus project <http://culmus.sourceforge.net>
28     to the XLFD foundry name "culmus"
29     
30     For TrueType fonts, maps the vendor code "CLM" from the TrueType vendor
31     id field.
32     
33     For Type1 fonts, which use heuristics to guess mappings to XLFD foundries
34     from words in the copyright notice, add the names of the main contributors
35     to the Culmus product to recognize the fonts under their copyright.
36     
37     Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
38     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
39     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
40
41 commit a39deac00add15532b15827c80601f87738cb405
42 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
43 Date:   Tue Oct 4 21:03:13 2011 -0700
44
45     Strip trailing whitespace
46     
47     Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
48     git diff -w & git diff -b show no diffs from this change
49     
50     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
51
52 commit b2d0f04a50f1444f9d62d11636a28c89951f0f40
53 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
54 Date:   Tue Oct 4 21:00:11 2011 -0700
55
56     Add const attributes to fix gcc -Wwrite-strings warnings
57     
58     Does not fix all of them since some lists contain constant strings and
59     some contain dynamically allocated strings that need to be freed later.
60     
61     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
62
63 commit 0f4f6462597841e5f8470571d56cfda61144ee8f
64 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
65 Date:   Mon Sep 26 15:55:12 2011 -0700
66
67     Mark format string argument to dsprintf as const char *
68     
69     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
70
71 commit 8ee3b3f73a6c14c4326435fea7136c09fe2822d1
72 Author: Maxim Iorsh <iorsh@users.sourceforge.net>
73 Date:   Mon Oct 3 21:52:15 2011 +0200
74
75     mkfontscale: Support FontForge weight designations.
76     
77     Fontforge uses 'ExtraLight' and 'Heavy' weights in Type 1 fonts, which
78     should be understood by mkfontscale. Other FontForge designations are
79     already addressed.
80     
81     Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
82     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
83
84 commit d429321888c335042332d991480095f67c85bb64
85 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
86 Date:   Wed Jun 29 20:25:37 2011 -0700
87
88     mkfontscale 1.0.9
89     
90     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
91
92 commit 82af43b3e142ed8a85f1057bc67fc44baf95cc13
93 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
94 Date:   Mon May 23 18:33:53 2011 -0700
95
96     Add _X_ATTRIBUTE_PRINTF to functions taking printf format arguments
97     
98     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
99     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
100
101 commit 3da7640b35c9660944168217c145a1011547712b
102 Author: Jeremy Huddleston <jeremyhu@apple.com>
103 Date:   Sun May 8 09:36:02 2011 -0700
104
105     Dead code removal
106     
107     have_face is initialized to 0 at the beginning of the loop, so no need to set
108     it to 0 just before it goes out of scope at the end of the loop.
109     
110     mkfontscale.c:945:13: warning: Value stored to 'have_face' is never read
111                 have_face = 0;
112                 ^           ~
113     
114     Found-by: clang static analyzer
115     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
116
117 commit b8c26cb3d41b18dfcc14a1ae256f6575c7df7593
118 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
119 Date:   Thu Feb 24 23:24:17 2011 -0800
120
121     makeList: free partially allocated list on failure
122     
123     Error: Memory leak (CWE 401)
124        Memory leak of pointer 'first' allocated with malloc(8)
125             at line 192 of list.c in function 'makeList'.
126               'first' allocated at line 181 with malloc(8).
127               first leaks when next == 0 at line 191.
128     
129     [ This bug was found by the Parfait 0.3.6 bug checking tool.
130       For more information see http://labs.oracle.com/projects/parfait/ ]
131     
132     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
133     Reviewed-by: Julien Cristau <jcristau@debian.org>
134
135 commit 9d424d79ca56e7e372a286fca478996eeee8ebfe
136 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
137 Date:   Thu Feb 24 23:15:25 2011 -0800
138
139     Leave room for null terminator in file & font name arrays
140     
141     fscanf %s arguments don't include the trailing \0 byte in their counts.
142     
143     Error: Buffer overrun
144        Buffer overflow (CWE 120): Use of fscanf(%1024[), with buffer 'font'
145           Array size is 1024 bytes
146             at line 707 of mkfontscale.c in function 'readFontScale'.
147        Buffer overflow (CWE 120): Use of fscanf(%1024s), with buffer 'file'
148           Array size is 1024 bytes
149             at line 707 of mkfontscale.c in function 'readFontScale'.
150     
151     [ This bug was found by the Parfait 0.3.6 bug checking tool.
152       For more information see http://labs.oracle.com/projects/parfait/ ]
153     
154     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
155     Reviewed-by: Julien Cristau <jcristau@debian.org>
156
157 commit 45b33b463c8acc2c0ff37e209387d6b664576cc4
158 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
159 Date:   Mon Feb 14 23:22:56 2011 -0800
160
161     Sort contents of encodings.dir
162     
163     Allows easier comparison between builds to detect changes.
164     Helps reduce deltas in packaging systems that compare old & new versions.
165     
166     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
167
168 commit 623a620bde1988e105b2fe814a3158da0e7b863c
169 Author: Gaetan Nadon <memsize@videotron.ca>
170 Date:   Wed Jan 19 10:06:55 2011 -0500
171
172     config: move man pages into their own directory
173     
174     Use services provided by XORG_MANPAGE_SECTIONS.
175     Use standard Makefile for man pages.
176     
177     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
178
179 commit 2e2073e358a6d9069dd5b5f3757de769cbc92721
180 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
181 Date:   Sun Jan 9 13:44:31 2011 -0800
182
183     Remove unused NEED_SNPRINTF code to #include non-existent snprintf.c
184     
185     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
186
187 commit 2ad869a51804e5232f10c1c933e2822c205c3265
188 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
189 Date:   Sun Jan 9 13:39:00 2011 -0800
190
191     Make fscanf format string constant so it can be checked at compile time
192     
193     Clears gcc warning of:
194     mkfontscale.c:714: warning: format not a string literal, argument types not checked
195     
196     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
197
198 commit ed14fe953f8f6fee90fcf28cd6775037b5f6e228
199 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
200 Date:   Sun Jan 9 13:24:10 2011 -0800
201
202     config: Add missing AC_CONFIG_SRCDIR
203     
204     Regroup AC statements under the Autoconf initialization section.
205     Regroup AM statements under the Automake initialization section.
206     
207     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
208
209 commit f27bcd4d366b2c12e658ff018542c4273b36631a
210 Author: Gaetan Nadon <memsize@videotron.ca>
211 Date:   Thu Jan 13 11:15:47 2011 -0500
212
213     man: remove trailing spaces and tabs
214     
215     Using s/[ \t]*$//
216     
217     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
218
219 commit fedc022d29297f524d39a2637c1529782edcdceb
220 Author: Gaetan Nadon <memsize@videotron.ca>
221 Date:   Wed Jan 12 16:28:02 2011 -0500
222
223     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
224     
225     This silences an Autoconf warning
226
227 commit 7a1e1e64c171ae95339bbd327806f892816850d7
228 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
229 Date:   Fri Oct 29 23:03:40 2010 -0700
230
231     mkfontscale 1.0.8
232     
233     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
234
235 commit 6a013e3524c0bdee54a33b0e9a255f3a7580603f
236 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
237 Date:   Fri Oct 29 23:01:47 2010 -0700
238
239     Remove unnecessary calls from configure.ac
240     
241     XORG_DEFAULT_OPTIONS calls AC_PROG_CC and AC_PROG_INSTALL
242     PKG_CHECK_MODULES calls AC_SUBST on LIBS & CFLAGS variables
243     
244     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
245
246 commit ae4a7325cf30dda566391b37d9ce7ffb946b842e
247 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
248 Date:   Fri Oct 29 22:58:07 2010 -0700
249
250     config: upgrade to util-macros 1.8 for additional man page support
251     
252     Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
253     The value of MAN_SUBST is the same for all X.Org packages.
254     
255     Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
256     Enables use of platform appropriate version of sed.
257     
258     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
259
260 commit 332cbd76cf14a567a75589e85d82a7d3278d1c8b
261 Author: Gaetan Nadon <memsize@videotron.ca>
262 Date:   Tue Jul 20 18:45:18 2010 -0400
263
264     config: update AC_PREREQ statement to 2.60
265     
266     Unrelated to the previous patches, the new value simply reflects
267     the reality that the minimum level for autoconf to configure
268     all x.org modules is 2.60 dated June 2006.
269     
270     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
271     
272     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
273
274 commit 64b1f54bcebc6ed628f74f0204d9ec7242e6e9ce
275 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
276 Date:   Fri Oct 29 22:57:04 2010 -0700
277
278     Sun's copyrights now belong to Oracle
279     
280     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
281
282 commit a697d45a4b7e265654a1cb64d5af0e05b377a040
283 Author: Jesse Adkins <jesserayadkins@gmail.com>
284 Date:   Tue Sep 28 13:29:49 2010 -0700
285
286     Purge cvs tags.
287     
288     Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
289
290 commit 0ba1bdaf1db3391c5501fb687df8395fb23b7f6a
291 Author: Alan Coopersmith <alan.coopersmith@sun.com>
292 Date:   Thu Jan 14 22:01:58 2010 -0800
293
294     Update Sun license notices to current X.Org standard form
295     
296     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
297
298 commit 570c7b11f38355be8e126d21dbc2ae91428dd7c0
299 Author: Gaetan Nadon <memsize@videotron.ca>
300 Date:   Thu Nov 26 09:19:52 2009 -0500
301
302     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
303     
304     Now that the INSTALL file is generated.
305     Allows running make maintainer-clean.
306
307 commit 54698669d9cd1fba4918ad76edd994ecf7a6aa11
308 Author: Gaetan Nadon <memsize@videotron.ca>
309 Date:   Wed Oct 28 14:09:07 2009 -0400
310
311     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
312     
313     Add missing INSTALL file. Use standard GNU file on building tarball
314     README may have been updated
315     Remove AUTHORS file as it is empty and no content available yet.
316     Remove NEWS file as it is empty and no content available yet.
317
318 commit a96b22739ed1204b55a0eb00dc15a3bf7d3c77f4
319 Author: Gaetan Nadon <memsize@videotron.ca>
320 Date:   Thu Oct 22 12:34:14 2009 -0400
321
322     .gitignore: use common defaults with custom section # 24239
323     
324     Using common defaults will reduce errors and maintenance.
325     Only the very small or inexistent custom section need periodic maintenance
326     when the structure of the component changes. Do not edit defaults.
327
328 commit 34a5a7ae5dc6c8d5f8cb50755d16ef0f573ff2f2
329 Author: Alan Coopersmith <alan.coopersmith@sun.com>
330 Date:   Sat Oct 10 22:31:00 2009 -0700
331
332     mkfontscale 1.0.7
333     
334     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
335
336 commit acedad9e929c1edfa17fc1cb9d37a19701cd200d
337 Author: Alan Coopersmith <alan.coopersmith@sun.com>
338 Date:   Sat Oct 10 22:29:08 2009 -0700
339
340     Add link to SubmittingPatches wiki page to README
341     
342     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
343
344 commit 245160adaca3957ead8fc278387c20e11b9bb7d2
345 Author: Alan Coopersmith <alan.coopersmith@sun.com>
346 Date:   Sat Oct 10 22:26:24 2009 -0700
347
348     Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
349     
350     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
351
352 commit 2ff1863a387a393e237e9f05525a48806e900368
353 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
354 Date:   Fri Jan 16 20:17:08 2009 -0200
355
356     Silence sparse warnings and update .gitignore.
357
358 commit a34031ea9074a453aee217b5845d07333019f26c
359 Author: Alan Coopersmith <alan.coopersmith@sun.com>
360 Date:   Thu Dec 18 16:56:12 2008 -0800
361
362     Version 1.0.6
363
364 commit 95c7da3a2717a0352cdd08830fdd1dd1a4024dda
365 Author: Alan Coopersmith <alan.coopersmith@sun.com>
366 Date:   Thu Dec 18 16:55:56 2008 -0800
367
368     man page typo fix
369
370 commit 0d1a2b7970c0eadb834fc2a6c3a68a09691b84ea
371 Author: Alan Coopersmith <alan.coopersmith@sun.com>
372 Date:   Wed Dec 17 19:29:54 2008 -0800
373
374     Add hooks for checking sources with lint/sparse/etc.
375
376 commit 3ae585a3f08cb660c6ce6838557c94f88821b7a5
377 Author: Alan Coopersmith <alan.coopersmith@sun.com>
378 Date:   Wed Dec 17 19:22:27 2008 -0800
379
380     Add basic README with URL's of git, bugzilla & mailing list
381
382 commit 03f6a08c503ff12e2457a9ccc13bfbb801e2161d
383 Author: Alan Coopersmith <alan.coopersmith@sun.com>
384 Date:   Wed Dec 17 19:19:03 2008 -0800
385
386     Use XORG_CWARNFLAGS & XORG_CHANGELOG from xorg-macros 1.2
387
388 commit 0ca983a6bac03489fb0d2ad158114a811eb276a2
389 Author: Alan Coopersmith <alan.coopersmith@sun.com>
390 Date:   Wed Nov 5 10:07:33 2008 -0800
391
392     Add support for bzip2 compressed fonts if configured --with-bzip2
393
394 commit 8126d2b694f48cc8137be05705a125f7d02e7e12
395 Author: Julien Cristau <jcristau@debian.org>
396 Date:   Sun May 11 00:03:44 2008 +0200
397
398     Bump to 1.0.5
399
400 commit f131ff40d2b46692c393346110df2567cfa67c29
401 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
402 Date:   Sat May 10 23:58:55 2008 +0200
403
404     Update copyright date.
405
406 commit c322c79c2b9b8d6075b6782d572033cc50799a49
407 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
408 Date:   Sat May 10 23:56:33 2008 +0200
409
410     Fix handling of OpenType/CFF fonts with embedded bitmaps.
411     The old workaround would trigger with CFF fonts with embedded bitmaps.
412     We now explicitly check for the font format being TrueType.
413     Reported by Andrey V. Panov.
414
415 commit 5db9e13aafbed8c0562838005147ebefb12d08ac
416 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
417 Date:   Sat May 10 23:37:14 2008 +0200
418
419     Remove doubly included header.
420
421 commit b0860282c3229d088840fa0758d8473ea6d8813b
422 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
423 Date:   Mon Apr 28 19:53:11 2008 +0200
424
425     Add bdf and pcf to font priority table.
426     This mirrors the behaviour of the old mkfontdir, which prefers pcf to
427     bdf fonts.
428
429 commit 9c5594ad13e9143e86a7fd94f90858795ae2970b
430 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
431 Date:   Mon Apr 28 19:15:05 2008 +0200
432
433     Fix typo in mkfontscale.c.
434     This spurious break statement disabled checking for Apple and ISO Unicode
435     CMaps in SFNT fonts.  Thanks to Alan Coopersmith and Stefan Dirsch.
436
437 commit 5ca409f025fb35a20ab1ef4742a9034a36e3d959
438 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
439 Date:   Sat Mar 15 18:44:06 2008 -0300
440
441     Compile warning fixes.
442     
443     Include headers for proper prototypes and "ansify" makeHashTable.
444     
445     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
446
447 commit 47ec1e2697eb856f823cc1b488c6b5a1d2077df9
448 Author: Adam Jackson <ajax@redhat.com>
449 Date:   Thu Mar 6 16:40:41 2008 -0500
450
451     mkfontscale 1.0.4
452
453 commit 1cb9c0074c5075bbce63ff3601712f34bbb74ca1
454 Author: Adam Jackson <ajax@redhat.com>
455 Date:   Sun Feb 24 21:34:00 2008 -0500
456
457     Bug #11337: Use strcasecmp() instead of broken open-coded version.
458     
459     Also, use tolower() instead of broken open-coded version.
460
461 commit 11651914cb1700528524bd3aabe2372629ce86c8
462 Author: Alan Coopersmith <alan.coopersmith@sun.com>
463 Date:   Mon Jan 7 14:28:30 2008 -0800
464
465     Fix typo in man page
466
467 commit 963552c24bf90610f2b3e2e77277ad77e2b21210
468 Author: Alan Coopersmith <alan.coopersmith@sun.com>
469 Date:   Mon Jan 7 14:26:56 2008 -0800
470
471     Convert (1) to (__appmansuffix__) in man page
472
473 commit 3e8bfcc4d87cd26b9426be1ab8941e1a8d709d3c
474 Author: James Cloos <cloos@jhcloos.com>
475 Date:   Thu Dec 6 16:37:03 2007 -0500
476
477     Replace static ChangeLog with dist-hook to generate from git log
478
479 commit d59c58bc3e09fd4adf773cd2e0a8c8c0e6018b08
480 Author: James Cloos <cloos@jhcloos.com>
481 Date:   Mon Sep 3 05:51:05 2007 -0400
482
483     Add *~ to .gitignore to skip patch/emacs droppings
484
485 commit 73e8b8696e09c2502c2b3f66cbe364a8de14198e
486 Author: James Cloos <cloos@jhcloos.com>
487 Date:   Thu Aug 23 19:24:29 2007 -0400
488
489     Rename .cvsignore to .gitignore
490
491 commit 08cf5e3544be3a64725e5aacd6209bae32185ff0
492 Author: Daniel Stone <daniel@fooishbar.org>
493 Date:   Wed Nov 8 16:29:43 2006 +0200
494
495     bump to 1.0.3
496
497 commit b155ad1329e193987ed4102384b7996d6dd45088
498 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
499 Date:   Tue Oct 31 16:48:18 2006 +0100
500
501     Allow SemiBold weight for Type 1 fonts.
502     Thanks to Andrey Panov.
503
504 commit b849af72d7b564f7c09ee480f7496a741063b2a8
505 Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
506 Date:   Tue Oct 31 01:35:27 2006 +0100
507
508     Fix typos in manual page, update author's address, update COPYING.
509
510 commit 65908e9db4457af1a896d82d5d153655096afb4e
511 Author: Adam Jackson <ajax@benzedrine.nwnk.net>
512 Date:   Fri Oct 13 17:45:45 2006 -0400
513
514     Bump to 1.0.2
515
516 commit 72d7891bba975dc637dfcc4df068da4a0afae40c
517 Author: Alan Hourihane <alanh@fairlite.demon.co.uk>
518 Date:   Wed Jul 19 09:47:10 2006 +0100
519
520     open files in binary mode. fixes cygwin issues.
521
522 commit 74743bd788dc7d9f65e151142a594dd5dd3679fb
523 Author: Jeremy C. Reed <reed@reedmedia.net>
524 Date:   Thu May 25 23:18:01 2006 +0000
525
526     Check for xproto not x11 (libX11 is not needed).
527
528 commit 300ead104133e0967dd2edfd8ef000768e5b2ec5
529 Author: Kevin E Martin <kem@kem.org>
530 Date:   Wed Dec 21 02:29:43 2005 +0000
531
532     Update package version for X11R7 release.
533
534 commit 749ba16c39f2787823d65677c46dd0df10210127
535 Author: Adam Jackson <ajax@nwnk.net>
536 Date:   Mon Dec 19 16:22:41 2005 +0000
537
538     Stub COPYING files
539
540 commit f6c3c20921a741d1b8aca31ae4c29105c62e6eb0
541 Author: Kevin E Martin <kem@kem.org>
542 Date:   Thu Dec 15 00:24:03 2005 +0000
543
544     Update package version number for final X11R7 release candidate.
545
546 commit db2fd6b3063b161726303f469510edae5552506a
547 Author: Kevin E Martin <kem@kem.org>
548 Date:   Tue Dec 6 22:48:17 2005 +0000
549
550     Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
551
552 commit 36de3963aaeca770500ca1a0c1677a2a087506d3
553 Author: Kevin E Martin <kem@kem.org>
554 Date:   Sat Dec 3 05:49:16 2005 +0000
555
556     Update package version number for X11R7 RC3 release.
557
558 commit 35101f83cc13a9989a0a505afbe1557e2eb2b431
559 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
560 Date:   Mon Nov 28 22:01:37 2005 +0000
561
562     Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
563         update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
564
565 commit 7494ff7b73b4bf0b3d01703f2b8d9bcbcb032c89
566 Author: Eric Anholt <anholt@freebsd.org>
567 Date:   Mon Nov 21 10:34:56 2005 +0000
568
569     Another pass at .cvsignores for apps.
570
571 commit 818a45cd26343f5a90b5861ee3eacaeb7f1b02d9
572 Author: Eric Anholt <anholt@freebsd.org>
573 Date:   Sun Nov 20 22:08:49 2005 +0000
574
575     Add/improve .cvsignore files for apps.
576
577 commit ff0494da73f7375ef051621c72f6ce91a101574a
578 Author: Kevin E Martin <kem@kem.org>
579 Date:   Sat Nov 19 07:15:35 2005 +0000
580
581     Update pkgconfig files to separate library build-time dependencies from
582         application build-time dependencies, and update package deps to work
583         with separate build roots.
584
585 commit cf92d3afb96be73691967875a1e659bfaf47bd5d
586 Author: Kevin E Martin <kem@kem.org>
587 Date:   Wed Oct 19 02:47:49 2005 +0000
588
589     Update package version number for RC1 release.
590
591 commit c1e504c4af80f9b55d766eeab7f8a76e1043f1f8
592 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
593 Date:   Mon Oct 17 23:56:20 2005 +0000
594
595     Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
596         work better with BSD make
597
598 commit 8abe389feee29a21ad92277f0a9bc54143102b0b
599 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
600 Date:   Fri Oct 14 00:25:42 2005 +0000
601
602     Use sed to fill in variables in man page
603
604 commit d2ef439ebff65d9507e8409c32ce83ed24f81c77
605 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
606 Date:   Sat Jul 30 19:32:32 2005 +0000
607
608     Add -D flags to clear more compiler warnings (Stefan Dirsch)
609
610 commit d84b476fa167fe34d827f36c0a5e35bca7884136
611 Author: Kevin E Martin <kem@kem.org>
612 Date:   Fri Jul 29 21:22:29 2005 +0000
613
614     Various changes preparing packages for RC0:
615     - Verify and update package version numbers as needed
616     - Implement versioning scheme
617     - Change bug address to point to bugzilla bug entry form
618     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
619         reenable it)
620     - Fix makedepend to use pkgconfig and pass distcheck
621     - Update build script to build macros first
622     - Update modular Xorg version
623
624 commit 4ae6c4a84f601196a4cf67dd6f1269c239c757b1
625 Author: Adam Jackson <ajax@nwnk.net>
626 Date:   Wed Jul 20 19:31:49 2005 +0000
627
628     Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
629         configure cache, you cache it, and the cached value is probably wrong.
630
631 commit bdd6bc86322d8769390ce81e74a9c2da103e3533
632 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
633 Date:   Fri Jul 15 00:50:30 2005 +0000
634
635     Add dependency on zlib
636
637 commit 30441ee004c0c23d42b76af09e58314aa2218fa3
638 Author: Kevin E Martin <kem@kem.org>
639 Date:   Sat Jul 2 21:42:05 2005 +0000
640
641     Add build system for bdftopcf, mkfontdir and mkfontscale
642
643 commit 3748201b7bbae3a0c0d20001651430245beab335
644 Author: Roland Mainz <roland.mainz@nrubsig.org>
645 Date:   Fri Nov 5 05:01:52 2004 +0000
646
647     xc/fonts/encodings/Imakefile
648     xc/fonts/encodings/ascii-0.enc
649     Adding ascii-0 font encoding which helps in cases where a font has all
650         ASCII chars populated but not enougth glyphs to match the requirements
651         for ISO8859-1 (and to add backwards compatibility to ttmkfdir).
652
653 commit 55185f35a75e6aad933e6faedd68bc14dfb94ccc
654 Author: Egbert Eich <eich@suse.de>
655 Date:   Fri Apr 23 19:54:36 2004 +0000
656
657     Merging XORG-CURRENT into trunk
658
659 commit 8e877ebe858657d8de7b5757a6b1d371dbfa6c88
660 Author: Egbert Eich <eich@suse.de>
661 Date:   Sun Mar 14 08:34:54 2004 +0000
662
663     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
664
665 commit ef2e82cd947202294f2c6cf8e503512bac1452b5
666 Author: Egbert Eich <eich@suse.de>
667 Date:   Wed Mar 3 12:12:53 2004 +0000
668
669     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
670
671 commit a641a5d0ebd81e83fd6d61cef460b9013229a279
672 Author: Egbert Eich <eich@suse.de>
673 Date:   Thu Feb 26 13:36:15 2004 +0000
674
675     readding XFree86's cvs IDs
676
677 commit 0bd86c8568761556a0841afff463a2aa5e3f682b
678 Author: Egbert Eich <eich@suse.de>
679 Date:   Thu Feb 26 09:23:56 2004 +0000
680
681     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
682
683 commit 8b2ffc7720361ca3dd61bda16e384e8258aae803
684 Author: Kaleb Keithley <kaleb@freedesktop.org>
685 Date:   Fri Dec 19 20:55:45 2003 +0000
686
687     XFree86 4.3.99.902 (RC 2)
688
689 commit c76578dc7395126605b9282f8453f1c54f38e61e
690 Author: Kaleb Keithley <kaleb@freedesktop.org>
691 Date:   Thu Dec 4 22:03:44 2003 +0000
692
693     XFree86 4.3.99.901 (RC 1)
694
695 commit 324cfb1744c2c3cc253dd0f63c2252206eb72249
696 Author: Kaleb Keithley <kaleb@freedesktop.org>
697 Date:   Tue Nov 25 19:29:02 2003 +0000
698
699     XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
700
701 commit 632e8a138dd16efe41384a4335ec46530da4a04b
702 Author: Kaleb Keithley <kaleb@freedesktop.org>
703 Date:   Tue Nov 25 19:29:02 2003 +0000
704
705     Initial revision
706
707 commit 7b08fca9270b3735a66f0cf9ce898336a33ea1d6
708 Author: Kaleb Keithley <kaleb@freedesktop.org>
709 Date:   Fri Nov 14 16:48:57 2003 +0000
710
711     XFree86 4.3.0.1
712
713 commit 7d6e5e7aefebf361afb149d7243d09ab6cf54c2f
714 Author: Kaleb Keithley <kaleb@freedesktop.org>
715 Date:   Fri Nov 14 16:48:57 2003 +0000
716
717     Initial revision