ChangeLog revision c6a6acfb
1commit cfe0b4fb8f87b03060a3d3c9538df144856b5e9f
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sat Mar 14 09:00:06 2015 -0700
4
5    font-util 1.3.1
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 1a0f701dbd33a10151a87a6ff6bd6a63682fc356
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Mon Aug 25 18:56:33 2014 -0700
12
13    Update map-JISX0201.1976-0 to current version from Unicode Consortium
14    
15    New version is exactly as downloaded on August 25, 2014 from
16    ftp://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/JIS0201.TXT
17    
18    Does not change mappings, only changes comments (including license notice).
19    
20    Reported-by: AGinsberg on #xorg-devel irc
21    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
22
23commit 9f53de00afaf19f9acdb5a796641992ffdaeb255
24Author: Ross Burton <ross.burton@intel.com>
25Date:   Mon Dec 9 11:01:54 2013 +0000
26
27    fontutil.m4.in: use $PKG_CONFIG instead of pkg-config
28    
29    Instead of assuming that pkg-config is on the path, require PKG_PROG_PKG_CONFIG
30    to be called and use $PKG_CONFIG.
31    
32    Signed-off-by: Ross Burton <ross.burton@intel.com>
33    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
34    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
35
36commit 5f01ea79f1cb2328bfc4130b1e693f71be916b87
37Author: Colin Walters <walters@verbum.org>
38Date:   Wed Jan 4 17:37:06 2012 -0500
39
40    autogen.sh: Implement GNOME Build API
41    
42    http://people.gnome.org/~walters/docs/build-api.txt
43    
44    Signed-off-by: Adam Jackson <ajax@redhat.com>
45
46commit 82da86fa16f82218787752774a6173e417900dae
47Author: Adam Jackson <ajax@redhat.com>
48Date:   Wed Jan 16 12:59:17 2013 -0500
49
50    configure: Drop AM_MAINTAINER_MODE
51    
52    Signed-off-by: Adam Jackson <ajax@redhat.com>
53
54commit aba5a2f22ff6e0ada7d606cbf91c5974e3255d77
55Author: Alan Coopersmith <alan.coopersmith@oracle.com>
56Date:   Sun Dec 16 15:27:33 2012 -0800
57
58    Fix a bunch of clang integer size conversion warnings in ucs2any
59    
60    ucs2any.c:149:36: warning: implicit conversion changes signedness: 'int' to 'si
61    ze_t' (aka 'unsigned long') [-Wsign-conversion]
62            *dest = zrealloc(*dest, dest_size + source_size);
63                    ~~~~~~~~        ~~~~~~~~~~^~~~~~~~~~~~~
64    ucs2any.c:147:29: warning: implicit conversion loses integer precision: 'unsign
65    ed long' to 'int' [-Wshorten-64-to-32]
66                    dest_size = strlen(*dest) + 1;
67                              ~ ~~~~~~~~~~~~~~^~~
68    ucs2any.c:148:16: warning: implicit conversion loses integer precision: 'size_t
69    ' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
70            source_size = strlen(source);
71                        ~ ^~~~~~~~~~~~~~
72    ucs2any.c:159:8: warning: implicit conversion loses integer precision: 'int' to
73     'char' [-Wconversion]
74                    *t = toupper(*t);
75                       ~ ^~~~~~~~~~~
76    ucs2any.c:305:27: warning: implicit conversion loses integer precision: 'int' t
77    o 'char' [-Wconversion]
78                    (*buffer)[position++] = c;
79                                          ~ ^
80    ucs2any.c:465:21: warning: comparison of integers of different signs: 'size_t'
81    (aka 'unsigned long') and 'int' [-Wsign-compare]
82            if (strlen(string) <= l) return NULL;
83                ~~~~~~~~~~~~~~ ^  ~
84    ucs2any.c:466:31: warning: implicit conversion changes signedness: 'int' to 'si
85    ze_t' (aka 'unsigned long') [-Wsign-conversion]
86            if (strncmp(string, pattern, l) != 0) return NULL;
87                ~~~~~~~                  ^
88    ucs2any.c:463:10: warning: implicit conversion loses integer precision: 'size_t
89    ' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
90            int l = strlen(pattern);
91                ~   ^~~~~~~~~~~~~~~
92    ucs2any.c:730:14: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
93                                    target = strtol(p+2, &endp, 16);
94                                           ~ ^~~~~~~~~~~~~~~~~~~~~~
95    ucs2any.c:738:11: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
96                                    ucs = strtol(p+2, &endp, 16);
97                                        ~ ^~~~~~~~~~~~~~~~~~~~~~
98    ucs2any.c:843:19: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
99                                            bbx.cwidth = w;
100                                                       ~ ^
101    ucs2any.c:844:20: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
102                                            bbx.cheight = h;
103                                                        ~ ^
104    ucs2any.c:845:18: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
105                                            bbx.cxoff = x;
106                                                      ~ ^
107    ucs2any.c:846:18: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
108                                            bbx.cyoff = y;
109                                                      ~ ^
110    ucs2any.c:850:7: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
111                                                    w, h, x, y, &bbx);
112                                                    ^
113    ucs2any.c:850:10: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
114                                                    w, h, x, y, &bbx);
115                                                       ^
116    ucs2any.c:850:13: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
117                                                    w, h, x, y, &bbx);
118                                                          ^
119    ucs2any.c:850:16: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
120                                                    w, h, x, y, &bbx);
121                                                             ^
122    
123    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
124
125commit dff77bb76ab2260877a37193df1d728d2f4a1d88
126Author: Alan Coopersmith <alan.coopersmith@oracle.com>
127Date:   Tue Feb 28 22:14:18 2012 -0800
128
129    font-util 1.3.0
130    
131    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
132
133commit faee5567a53bcde7c9e280c330e1ff6671b979b1
134Author: Alan Coopersmith <alan.coopersmith@oracle.com>
135Date:   Wed Feb 22 20:43:34 2012 -0800
136
137    configure.ac updates to match other X.Org modules
138    
139    layout and comment the top portion of configure.ac
140    add missing AC_CONFIG_SRCDIR
141    Replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS
142    replace deprecated AC_HELP_STRING with AS_HELP_STRING
143    Remove unnecessary AC_PROG_CC & AC_PROG_INSTALL (already
144     provided by XORG_DEFAULT_OPTIONS)
145    
146    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
147    Reviewed-by: Gaetan Nadon<memsize@videotron.ca>
148
149commit 9e9519975fe3a5827b362b8df4a5c69745125a5a
150Author: Alan Coopersmith <alan.coopersmith@oracle.com>
151Date:   Fri Nov 18 23:09:43 2011 -0800
152
153    Fix "cast discards qualifiers from pointer target type" warnings
154    
155    ucs2any.c: In function ‘chars_compare’:
156    ucs2any.c:450:2: warning: cast discards qualifiers from pointer target type
157    ucs2any.c:451:2: warning: cast discards qualifiers from pointer target type
158    
159    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
160
161commit e46b483c58ec3cfc01d2800c069eadc90166eb04
162Author: Alan Coopersmith <alan.coopersmith@oracle.com>
163Date:   Fri Nov 18 23:06:46 2011 -0800
164
165    Mark usage() as not returning to clear incorrect uninit var warning
166    
167    bdftruncate.c: In function ‘main’:
168    bdftruncate.c:119:16: warning: ‘threshold’ may be used uninitialized in this function
169    
170    (It's not actually, if you consider that usage() exits when
171     parse_threshold fails.)
172    
173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
174
175commit 3419c66ac700689351be9fe2bc3f81b80465cd3e
176Author: Alan Coopersmith <alan.coopersmith@oracle.com>
177Date:   Mon Sep 26 14:50:29 2011 -0700
178
179    Add const attributes to fix gcc -Wwrite-strings warnings
180    
181    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
182
183commit 80cde5d8bb59a50ba1e98b5947f2fe0c8f38ef84
184Author: Jon TURNEY <jon.turney@dronecode.org.uk>
185Date:   Tue Apr 26 15:03:42 2011 +0100
186
187    If cross-compiling, we don't have to run mkfontdir
188    
189    If cross-compiling, we can run the host mkfontdir on the font directory,
190    since the output is arch independent (I think)
191    
192    If cross-compiling and we can't find mkfontdir, just warn that mkfontdir
193    needs to be run on the target.
194    
195    When not cross-compiling, the behaviour remains unchanged: mkfontdir
196    must be found and is run
197    
198    (Also, bump version number to 1.2.90 as the next release must be 1.3.0
199    as this change adds a macro)
200    
201    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
202    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
203    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
204
205commit 901fa14455a09901ebc69d0c93c03bb3c7c712d4
206Author: Jon TURNEY <jon.turney@dronecode.org.uk>
207Date:   Tue Apr 26 15:00:30 2011 +0100
208
209    Never run fc-cache if cross-compiling
210    
211    Since the cache files produced by fc-cache are arch-dependent, there is
212    no point in running fc-cache if cross-compiling
213    
214    So, even if we aren't using a DESTDIR, but are installing directly into
215    (a hopefully non-default) prefix, don't run fc-cache when cross-compiling
216    
217    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
218    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
219
220commit 9f807dfb4e7bea7128b7538e41de78bb5994ca80
221Author: Jeremy Huddleston <jeremyhu@apple.com>
222Date:   Wed May 4 11:07:39 2011 -0700
223
224    bdftruncate: Make sure opt_minus_w and opt_plus_w are initialized
225    
226    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
227
228commit 06e9c86e3741355729748b6c646f7f738c583323
229Author: Jeremy Huddleston <jeremyhu@apple.com>
230Date:   Thu Apr 28 00:45:05 2011 -0700
231
232    ucs2any: Dead code removal
233    
234    Found-by: clang static analyzer
235    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
236
237commit e15cbb4f48a9c5c0aae5acc88a7f56086fc9e51f
238Author: Jeremy Huddleston <jeremyhu@apple.com>
239Date:   Thu Apr 28 00:39:17 2011 -0700
240
241    bdftruncate: Properly support -w and +w
242    
243    Regression introduced by fb486bb1a5038912d064291b12c7aef5da3d8b63
244    
245    Found-by: clang static analyzer
246    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
247
248commit a0d43f88e563ca2fd376bbe222d4809b9976624b
249Author: Jeremy Huddleston <jeremyhu@apple.com>
250Date:   Wed Oct 6 17:00:03 2010 -0700
251
252    font-util 1.2.0
253    
254    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
255
256commit 5cad514d15c61cdf73a7dbd6d88f3e823a0d2d99
257Author: Jeremy Huddleston <jeremyhu@apple.com>
258Date:   Wed Oct 6 16:59:20 2010 -0700
259
260    fontutil.m4: Add XORG_FONT_FC_CONFDIR to find fontconfig's confdir
261    
262    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
263    Acked-by: Gaetan Nadon <memsize@videotron.ca>
264    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
265
266commit 62529733e57b6d6c775b1bcf584260b1cff6af5c
267Author: Michał Górny <mgorny@gentoo.org>
268Date:   Thu Oct 7 17:31:06 2010 +0200
269
270    fontutil.m4: Add a shorthand --disable-all-encodings option.
271    
272    This option is useful to disable all possible font encodings at once,
273    without fine-graining the calling ebuilds for a list of encodings
274    supported by each font package.
275    
276    The option is parsed before all other encoding options, so it basically
277    sets defaults for all of them. Afterwards, any encoding can be
278    re-enabled back using '--enable-<encoding>' (much like
279    '--disable-all-encodings --enable-iso8859-2').
280    
281    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
282    Acked-by: Gaetan Nadon <memsize@videotron.ca>
283
284commit 7757000fca0f7fc6d966eb1f45c226862ed8e489
285Author: Jesse Adkins <jesserayadkins@gmail.com>
286Date:   Tue Sep 28 13:30:01 2010 -0700
287
288    Purge cvs tags.
289    
290    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
291    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
292
293commit 0a715f61f878cfe22470608036c3fdfc7d89bca1
294Author: Alan Coopersmith <alan.coopersmith@oracle.com>
295Date:   Mon Oct 4 21:31:43 2010 -0700
296
297    font-util 1.1.2
298    
299    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
300
301commit a43ab24c31aa5626b3f28b813a246c4b930b0e97
302Author: Alan Coopersmith <alan.coopersmith@oracle.com>
303Date:   Mon Oct 4 21:30:06 2010 -0700
304
305    Sun's copyrights now belong to Oracle
306    
307    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
308
309commit c2112acec406c80cfc29a7af9c2a39afb9c38475
310Author: Gaetan Nadon <memsize@videotron.ca>
311Date:   Tue Jul 20 18:45:18 2010 -0400
312
313    config: update AC_PREREQ statement to 2.60
314    
315    Unrelated to the previous patches, the new value simply reflects
316    the reality that the minimum level for autoconf to configure
317    all x.org modules is 2.60 dated June 2006.
318    
319    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
320    
321    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
322
323commit 41bf28914ae27d8cf9a93db5fa5f65ca5a68d4bf
324Author: Gaetan Nadon <memsize@videotron.ca>
325Date:   Fri Aug 27 18:22:37 2010 -0400
326
327    XORG_FONT_REQUIRED_PROG: should stop when program is missing #14436
328    
329    The macro was designed to test for a program and, when missing, stop
330    the configuration. The first parameter to the macro is a variable
331    name which is used by AC_PATH_PROG to store the program path.
332    The test failed to reference the variable content, it tested the
333    variable name which is never blank.
334    
335    BDFTOPCF MKFONTSCALE MKFONTDIR COMPRESS and UCS2ANY were affected.
336    
337    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
338    Tested-by: Jesse Adkins <jesserayadkins@gmail.com>
339    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
340
341commit e8d3097d42969fa1e32eff2ece252ff584d3d56a
342Author: Gaetan Nadon <memsize@videotron.ca>
343Date:   Fri Aug 20 09:27:12 2010 -0400
344
345    config: upgrade to util-macros 1.8 for additional man page support
346    
347    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
348    The value of MAN_SUBST is the same for all X.Org packages.
349    
350    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
351    
352    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
353
354commit d310e0321f888bf2fc215587457722a73b0f127a
355Author: Alan Coopersmith <alan.coopersmith@oracle.com>
356Date:   Thu May 20 19:11:38 2010 -0700
357
358    Replace /usr/X11R6 mapfiles path in manpage with actual path via sed
359    
360    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
361
362commit 6ce4badc29d599835a9f2593aa9835b1905a72a2
363Author: Gaetan Nadon <memsize@videotron.ca>
364Date:   Sun Mar 28 14:45:56 2010 -0400
365
366    config:  remove fontutil.pc.in from the EXTRA_DIST variable
367    
368    It is automatically distributed in the tarball by Automake
369    
370    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
371    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
372
373commit 86893646727ac02b46d67ec81502451463dd9ed2
374Author: Gaetan Nadon <memsize@videotron.ca>
375Date:   Sat Mar 27 11:21:41 2010 -0400
376
377    config: generated fontutil.m4 is "installed", not "distributed"
378    
379    Generated files are not included in the tarball, only .in files
380    The fontutil.m4.in file is added in the tarball by Automake.
381    
382    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
383
384commit 85e9d27df3e806106d395f66143bcc1372fece90
385Author: Alan Coopersmith <alan.coopersmith@sun.com>
386Date:   Thu Jan 14 21:51:38 2010 -0800
387
388    Update Sun license notices to current X.Org standard form
389    
390    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
391
392commit af6b1bfacb2ebd2dc27b5c81398ec3d9f5cd35cc
393Author: Gaetan Nadon <memsize@videotron.ca>
394Date:   Mon Nov 23 14:59:02 2009 -0500
395
396    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
397    
398    Now that the INSTALL file is generated.
399    Allows running make maintainer-clean.
400
401commit b80d458dbe1704a7a351849a6e588c57205ac9c9
402Author: Gaetan Nadon <memsize@videotron.ca>
403Date:   Sun Oct 18 20:49:07 2009 -0400
404
405    Makefile.am: add INSTALL target and clean ChangeLog DIST targets
406    
407    Add INSTALL target to generate file with INSTALL_CMD #24206
408    ChangeLog is not required in EXTRA_DIST  #24432
409    ChangeLog is not required in MAINTAINERCLEANFILES #24432
410
411commit af090eb780ae74f102d6eda036e0b3bc888561b4
412Author: Gaetan Nadon <memsize@videotron.ca>
413Date:   Sun Oct 18 20:34:34 2009 -0400
414
415    INSTALL, NEWS, README COPYING or AUTHORS files are missing/incorrect #24206
416    
417    Add missing INSTALL file. Use standard GNU file on building tarball
418    README may have been updated
419    COPYING may have been updated
420    Remove AUTHORS file as it is empty and no content available yet.
421    Remove NEWS file as it is empty and no content available yet.
422
423commit 2ca7b784d9a53e00a393dcfd7c4ea1bf7223d98b
424Author: Gaetan Nadon <memsize@videotron.ca>
425Date:   Mon Nov 23 13:38:51 2009 -0500
426
427    .gitignore: use common defaults with custom section # 24239
428    
429    Using common defaults will reduce errors and maintenance.
430    Only the very small or inexistent custom section need periodic maintenance
431    when the structure of the component changes. Do not edit defaults.
432
433commit 640a11b930dde29a5a74bcecec858d0a8255c013
434Author: Alan Coopersmith <alan.coopersmith@sun.com>
435Date:   Mon Oct 12 08:49:02 2009 -0700
436
437    font-util 1.1.1
438    
439    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
440
441commit e1a84f5c30de633767dc4c05a38a34c3f114a138
442Author: Alan Coopersmith <alan.coopersmith@sun.com>
443Date:   Sat Oct 10 21:50:26 2009 -0700
444
445    Make fontrootdir capitalization consistently lowercase
446    
447    Fixes installation of mapfiles, which were going to /util because
448    ${fontrootdir} was undefined in Makefile.   Found by tinderbox.
449    
450    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
451
452commit b10044e1cdb8f1656b6f61d79512bf4d49ee3339
453Author: Alan Coopersmith <alan.coopersmith@sun.com>
454Date:   Wed Oct 7 20:23:36 2009 -0700
455
456    font-util 1.1.0: Add new macros to replace code common to many font modules
457    
458    XORG_FONT_MACROS_VERSION(required-version)
459    XORG_FONT_CHECK_ENCODING(encoding)
460    XORG_FONT_CHECK_ENCODING_LIST(encoding1 encoding2....)
461    XORG_FONT_REQUIRED_PROG(VARNAME, progname)
462    XORG_FONT_FCCACHE()
463    XORG_FONT_COMMON_UTILS()
464    XORG_FONT_BDF_UTILS()
465    XORG_FONT_SCALED_UTILS()
466    XORG_FONT_CHECK_COMPRESSION()
467    XORG_FONT_UCS2ANY()
468    XORG_FONTROOTDIR()
469    XORG_FONTSUBDIR(variable, flag, subdir)
470    XORG_FONTDIR(subdir)
471    
472    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
473    Acked-by: Dan Nicholson <dbn.lists@gmail.com>
474    Acked-by: Rémi Cardona <remi@gentoo.org>
475
476commit 59557a6f4a28f38edcb6251ac04c9cb0e582bb3e
477Author: Alan Coopersmith <alan.coopersmith@sun.com>
478Date:   Tue Oct 6 14:19:57 2009 -0700
479
480    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
481    
482    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
483
484commit 032e3cb6c41c720412ab3403dad2ab800f45a817
485Author: Alan Coopersmith <alan.coopersmith@sun.com>
486Date:   Wed Sep 23 23:12:08 2009 -0700
487
488    Fix parsing of hexadecimal arguments to bdftruncate
489    
490    Since bdftruncate suggests running itself with "0x3200", that should work.
491    
492    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
493
494commit ca16bc230e73bfbf651acb9010ba695bbbef0e8a
495Author: Julien Cristau <jcristau@debian.org>
496Date:   Fri Aug 7 21:47:25 2009 +0200
497
498    Bump to 1.0.2
499
500commit b0e27b7935e8f5f9ad3dd7b6fd77b8a38aa7d1d0
501Author: Alan Coopersmith <alan.coopersmith@sun.com>
502Date:   Thu Feb 19 18:22:31 2009 -0800
503
504    Add README with pointers to mailing list, bugzilla & git repos
505
506commit db703deee7cbfca5b12f4666229136a54554ec98
507Author: Alan Coopersmith <alan.coopersmith@sun.com>
508Date:   Thu Feb 19 18:20:14 2009 -0800
509
510    Add missing copyright/license notices to COPYING
511    
512    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
513
514commit 0678b945e4f382c45048e3d1a9739282d506b47e
515Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
516Date:   Tue Jan 27 19:11:08 2009 -0200
517
518    Janitor: Correct make distcheck and configure.ac simplification
519
520commit de26fc14c3e5ecc24f4fbdf0c83d57f5974ed802
521Author: Alan Coopersmith <alan.coopersmith@sun.com>
522Date:   Tue Jun 24 14:28:27 2008 -0700
523
524    Update license of code copyrighted by the NetBSD Foundation
525    
526    As per http://mail-index.netbsd.org/netbsd-announce/2008/06/20/msg000030.html
527    dropped the endorsement clause and verified remaining text matches current
528    NetBSD Foundation license.
529
530commit 2defe2544aeaeea00e41a2dca18b1f5ec0ca85e0
531Author: James Cloos <cloos@jhcloos.com>
532Date:   Thu Dec 6 16:38:07 2007 -0500
533
534    Replace static ChangeLog with dist-hook to generate from git log
535
536commit fb486bb1a5038912d064291b12c7aef5da3d8b63
537Author: James Cloos <cloos@jhcloos.com>
538Date:   Mon Dec 3 16:42:39 2007 -0500
539
540    Replace bdftruncate Perl script with C program
541    From bugzilla bug 13465¹:
542    
543      [This] is a replacement for the bdftruncate program, which removes
544      the only runtime dependency on Perl in modular Xorg.
545    
546    1] http://bugs.freedesktop.org/show_bug.cgi?id=13465
547    
548    Bug was posted by Joerg Sonnenberger <joerg@NetBSD.org>.
549
550commit cedfe304041ecfc43cfcf2b44699efb53fc6aa5c
551Author: James Cloos <cloos@jhcloos.com>
552Date:   Mon Sep 3 05:53:24 2007 -0400
553
554    Add *~ to .gitignore to skip patch/emacs droppings
555
556commit cff602a576aada75140b6cf13f1532218959189d
557Author: James Cloos <cloos@jhcloos.com>
558Date:   Thu Aug 23 19:26:51 2007 -0400
559
560    Rename .cvsignore to .gitignore
561
562commit 7e2dfd48d78c008d8afd56828bf0db8a025f417a
563Author: Adam Jackson <ajax@nwnk.net>
564Date:   Fri May 19 18:35:15 2006 +0000
565
566    Bump to 1.0.1
567
568commit 449004af4c7023511471db479b58c547270805e5
569Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
570Date:   Fri Feb 17 15:59:48 2006 +0000
571
572    Update license copy in COPYING file too.
573
574commit d36e97caf2141939cbd516d9f7802bb704f13f22
575Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
576Date:   Fri Feb 17 15:58:37 2006 +0000
577
578    Sync license statement with NetBSD, which has removed advertising clause
579        from original NetBSD license. (See
580        http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/xsrc/xfree/xc/fonts/util
581        /ucs2any.c?rev=1.9&content-type=text/plain and
582        http://www.mail-archive.com/devel%40xfree86.org/msg07685.html )
583
584commit 778c667cf5dc67a53996e0196a7394dbd41426a3
585Author: Kevin E Martin <kem@kem.org>
586Date:   Thu Dec 15 00:24:26 2005 +0000
587
588    Update package version number for final X11R7 release candidate.
589
590commit 25ea9d0868ecf3dccfbac5a82c659b852fb61d0e
591Author: Kevin E Martin <kem@kem.org>
592Date:   Fri Dec 9 05:56:52 2005 +0000
593
594    Bug #5175: Make mapdir configurable (David Coulthart and Donnie Berkholz).
595
596commit 3fc66a4a7e844d96c478ff35673ba6bbcd99df0a
597Author: Kevin E Martin <kem@kem.org>
598Date:   Tue Dec 6 22:48:41 2005 +0000
599
600    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
601
602commit 19a7b8a70f3cfac4dbc652cc918deefba2380700
603Author: Kevin E Martin <kem@kem.org>
604Date:   Sat Dec 3 05:49:41 2005 +0000
605
606    Update package version number for X11R7 RC3 release.
607
608commit 092577dbc7f5fe59bbec80b29f42bacb73844fa7
609Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
610Date:   Mon Nov 28 22:07:21 2005 +0000
611
612    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
613        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
614
615commit 27506bc355dd88c2ca8b3e14c8158dfb5d6e53b6
616Author: Eric Anholt <anholt@freebsd.org>
617Date:   Tue Nov 22 02:00:22 2005 +0000
618
619    Add .cvsignores for fonts.
620
621commit c9e22d273e7b8df6ffa1224978d0a6877b57c626
622Author: Kevin E Martin <kem@kem.org>
623Date:   Tue Nov 15 08:27:53 2005 +0000
624
625    Add configure option macro to disable ISO8859-* fonts.
626
627commit cb284d5e05a4d62b070bb94624c2fb32c322e40d
628Author: Kevin E Martin <kem@kem.org>
629Date:   Wed Oct 19 02:48:08 2005 +0000
630
631    Update package version number for RC1 release.
632
633commit e096b243bb3be6a41bd928016d24acfe2cae677e
634Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
635Date:   Mon Oct 17 22:20:58 2005 +0000
636
637    Use sed to replace variables in man pages
638
639commit f45a6a9b5d53d91aec9ca0381311f5b0a4842c07
640Author: Kevin E Martin <kem@kem.org>
641Date:   Tue Oct 4 23:12:28 2005 +0000
642
643    Use CLEANFILES so that bdftruncate is rebuilt after make clean
644
645commit dd8c1045a1432cc31a7419eb45905282f3f065ea
646Author: Kevin E Martin <kem@kem.org>
647Date:   Fri Jul 29 21:22:49 2005 +0000
648
649    Various changes preparing packages for RC0:
650    - Verify and update package version numbers as needed
651    - Implement versioning scheme
652    - Change bug address to point to bugzilla bug entry form
653    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
654        reenable it)
655    - Fix makedepend to use pkgconfig and pass distcheck
656    - Update build script to build macros first
657    - Update modular Xorg version
658
659commit be020c6e52a9f087493122a59721366e3a2417f2
660Author: Kevin E Martin <kem@kem.org>
661Date:   Wed Jul 27 19:53:18 2005 +0000
662
663    Fix typo
664
665commit 854ba0573bbed8632f5a8adf93a497874e451d98
666Author: Kevin E Martin <kem@kem.org>
667Date:   Fri Jul 22 04:13:44 2005 +0000
668
669    Fix distcheck for fonts with multiple encodings
670
671commit ae573de21851d1e3ed27bc499ccff396cf9d4067
672Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
673Date:   Fri Jul 15 12:39:39 2005 +0000
674
675    use bin_SCRIPTS for bdftruncate remove $(EXEEXT) from bdftruncate rule fix
676        bdftruncate rule to work with separate $(srcdir)
677
678commit 5b1ba00aa310ddac6fae4ba4bb50763e9fe7a292
679Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
680Date:   Fri Jul 15 01:15:35 2005 +0000
681
682    Replace $< with portable construct
683
684commit 70e2335cc8e9f1c377a70880696ee2d83558456e
685Author: Kevin E Martin <kem@kem.org>
686Date:   Thu Jun 30 22:28:08 2005 +0000
687
688    Initial build system files for font module
689
690commit 8dbbdb2b6491edd6a0ec957d3a742802d2946fa3
691Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
692Date:   Sun Nov 28 19:06:20 2004 +0000
693
694    Updated 8859-7.TXT to ISO 8859-7:2003 (with euro sign) Updated obsolete
695        email address
696
697commit 5622b3c34465c8f7f83fe9fbab897fc7b438ef81
698Author: Egbert Eich <eich@suse.de>
699Date:   Thu Aug 26 11:58:06 2004 +0000
700
701    Fixed support for LynxOS 3.1 (LynxOS 4 will follow) (Thomas Mueller).
702    2
703
704commit edf6e4ce161fbf36a294f0947add0993bce2def6
705Author: Egbert Eich <eich@suse.de>
706Date:   Fri Apr 23 18:43:05 2004 +0000
707
708    Merging XORG-CURRENT into trunk
709
710commit efdd203d3b3f68f463b9aaf31ef60dd58170c327
711Author: Egbert Eich <eich@suse.de>
712Date:   Sun Mar 14 08:31:32 2004 +0000
713
714    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
715
716commit cada8e174bc996c693440605bc4778390a2525b4
717Author: Egbert Eich <eich@suse.de>
718Date:   Wed Mar 3 12:10:53 2004 +0000
719
720    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
721
722commit f5f59905ca85472432f99a82502e47827647cbd7
723Author: Egbert Eich <eich@suse.de>
724Date:   Thu Feb 26 13:35:11 2004 +0000
725
726    readding XFree86's cvs IDs
727
728commit 58fcd5a2cdba17e073e857283624d539758910a0
729Author: Egbert Eich <eich@suse.de>
730Date:   Thu Feb 26 09:22:24 2004 +0000
731
732    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
733
734commit c653490dc1a7fe5dbd4437800832474c2f3ddefd
735Author: Kaleb Keithley <kaleb@freedesktop.org>
736Date:   Tue Nov 25 19:28:01 2003 +0000
737
738    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
739
740commit a3557f2e82e07580a5f7ceb41c49809a001b73e5
741Author: Kaleb Keithley <kaleb@freedesktop.org>
742Date:   Tue Nov 25 19:28:01 2003 +0000
743
744    Initial revision
745
746commit ea7d5c737a21afcb846d4aeceb8741a44d7001da
747Author: Kaleb Keithley <kaleb@freedesktop.org>
748Date:   Fri Nov 14 16:48:42 2003 +0000
749
750    XFree86 4.3.0.1
751
752commit 731ff0ca425ebc6b780199c58f11a63f24103567
753Author: Kaleb Keithley <kaleb@freedesktop.org>
754Date:   Fri Nov 14 16:48:42 2003 +0000
755
756    Initial revision
757