Tizen 2.0 Release
[framework/uifw/xorg/util/x11-xserver-utils.git] / iceauth / ChangeLog
1 commit 27846ea3e133dbb45a4e67500eba15bf5d6c796c
2 Author: Jeremy Huddleston <jeremyhu@apple.com>
3 Date:   Mon May 23 19:39:04 2011 -0700
4
5     configure.ac: Bump to 1.0.5
6     
7     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8
9 commit c791ec2ba9614e661e978436f56ed21f918750f8
10 Author: Jeremy Huddleston <jeremyhu@apple.com>
11 Date:   Mon May 23 19:37:50 2011 -0700
12
13     auth_finalize: Attempt to rename() if link() fails
14     
15     On some file systems (like AFP), hard links are not supported. If
16     link fails, try rename() before giving up.
17     
18     Reported-by: Jamie Kennea <jamie@pompey.org>
19     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
20
21 commit 90640776b88b32cea2316670a3b29f7785aadc7a
22 Author: Jeremy Huddleston <jeremyhu@apple.com>
23 Date:   Thu Apr 28 00:51:30 2011 -0700
24
25     Error out and avoid a call to malloc(0) if given a bad hex string
26     
27     Found-by: clang static analyzer
28     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
29
30 commit ada8df395e72f84127394dadd15a180afa8ec0ec
31 Author: David Nusinow <dnusinow@debian.org>
32 Date:   Fri Dec 3 16:29:51 2010 -0500
33
34     Make iceauth manpage describe commands. (fd.o bug#2354)
35     
36     Reviewed-by: Jesse Adkins <jesserayadkins@gmail.com>
37     Signed-off-by: Matt Turner <mattst88@gmail.com>
38
39 commit ed7ce17bb0169b3bbf2cf035bc2b221fd0c9beb2
40 Author: Gaetan Nadon <memsize@videotron.ca>
41 Date:   Wed Jan 19 10:06:55 2011 -0500
42
43     config: move man pages into their own directory
44     
45     Use services provided by XORG_MANPAGE_SECTIONS.
46     Use standard Makefile for man pages.
47     
48     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
49
50 commit 3b57666a804ce53eed82f1a80c34ef479ca1e36a
51 Author: Gaetan Nadon <memsize@videotron.ca>
52 Date:   Thu Jan 13 11:15:00 2011 -0500
53
54     man: remove trailing spaces and tabs
55     
56     Using s/[ \t]*$//
57     
58     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
59
60 commit e67acbba6ac2a92a8de5b2d014b5d3a8609eb36a
61 Author: Gaetan Nadon <memsize@videotron.ca>
62 Date:   Wed Jan 12 16:28:02 2011 -0500
63
64     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
65     
66     This silences an Autoconf warning
67
68 commit e170e5dbea7e785797cbd0d919d5f5d3d77b7006
69 Author: Gaetan Nadon <memsize@videotron.ca>
70 Date:   Wed Jan 12 13:10:21 2011 -0500
71
72     config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
73     
74     XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
75     AC_PROG_C_C99. This sets gcc with -std=gnu99.
76     If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
77     
78     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
79
80 commit 08f5377a4a853d06ec1a0396a2f1622eb6ee93ba
81 Author: Gaetan Nadon <memsize@videotron.ca>
82 Date:   Wed Jan 12 11:54:40 2011 -0500
83
84     config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
85     
86     It depends on util-macros 1.8 or later
87     The existing statement can now be removed from the configuration file.
88     
89     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
90
91 commit b39fab5b9af70282ab640a8a9d6b56671aeda78b
92 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
93 Date:   Fri Oct 29 21:46:07 2010 -0700
94
95     iceauth 1.0.4
96     
97     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
98
99 commit 3c1b044f63d4865378a2307dd0024afca7196b42
100 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
101 Date:   Thu Oct 21 15:01:29 2010 -0700
102
103     Remove unnecessary AC_SUBST of ICEAUTH_LIBS & ICEAUTH_CFLAGS
104     
105     PKG_CHECK_MODULES automatically handles those for us
106     
107     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
108
109 commit a33fa043dfd5e84b9afd39842d848265b16ac5d7
110 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
111 Date:   Thu Oct 21 14:59:42 2010 -0700
112
113     config: upgrade to util-macros 1.8 for additional man page support
114     
115     Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
116     The value of MAN_SUBST is the same for all X.Org packages.
117     
118     Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
119     Enables use of platform appropriate version of sed.
120     
121     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
122
123 commit 5f79bb90cd0e3c18c184f7beb75c83e31aae6951
124 Author: Gaetan Nadon <memsize@videotron.ca>
125 Date:   Tue Jul 20 18:45:18 2010 -0400
126
127     config: update AC_PREREQ statement to 2.60
128     
129     Unrelated to the previous patches, the new value simply reflects
130     the reality that the minimum level for autoconf to configure
131     all x.org modules is 2.60 dated June 2006.
132     
133     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
134     
135     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
136
137 commit f2b54a282333be841099773ee8788a2a7e2fea3b
138 Author: Jesse Adkins <jesserayadkins@gmail.com>
139 Date:   Tue Sep 28 13:29:49 2010 -0700
140
141     Purge cvs tags.
142     
143     Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
144
145 commit 1944291c5f541796b1ac9f036a51cb1dae0cdd81
146 Author: Gaetan Nadon <memsize@videotron.ca>
147 Date:   Thu Jan 7 17:46:31 2010 -0500
148
149     COPYING: replace stub with actual Copyright notice
150     
151     Refer to iceauth.c
152     Copyright 1989, 1998  The Open Group
153     
154     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
155
156 commit 5f29af7ab19398501f2f2b6729a806b814534801
157 Author: Gaetan Nadon <memsize@videotron.ca>
158 Date:   Thu Nov 26 09:19:52 2009 -0500
159
160     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
161     
162     Now that the INSTALL file is generated.
163     Allows running make maintainer-clean.
164
165 commit 8c19177d9937196f19975f4145e6377b1b4b17e8
166 Author: Gaetan Nadon <memsize@videotron.ca>
167 Date:   Wed Oct 28 14:09:07 2009 -0400
168
169     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
170     
171     Add missing INSTALL file. Use standard GNU file on building tarball
172     README may have been updated
173     Remove AUTHORS file as it is empty and no content available yet.
174     Remove NEWS file as it is empty and no content available yet.
175
176 commit 3277a2349dcf9400f67dc3f91d4b6097a56d7faa
177 Author: Gaetan Nadon <memsize@videotron.ca>
178 Date:   Mon Oct 26 22:08:38 2009 -0400
179
180     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
181     
182     ChangeLog filename is known to Automake and requires no further
183     coding in the makefile.
184
185 commit 9eaace4030847a25af7759c6f052e01250febdd6
186 Author: Gaetan Nadon <memsize@videotron.ca>
187 Date:   Thu Oct 22 12:34:14 2009 -0400
188
189     .gitignore: use common defaults with custom section # 24239
190     
191     Using common defaults will reduce errors and maintenance.
192     Only the very small or inexistent custom section need periodic maintenance
193     when the structure of the component changes. Do not edit defaults.
194
195 commit 2ae7affc9be66652240219e42abdc63c693369e0
196 Author: Gaetan Nadon <memsize@videotron.ca>
197 Date:   Sun Sep 27 15:55:52 2009 -0400
198
199     Makefile.am: do not include autogen.sh in distribution #24183
200     
201     This is a private build script that should not be distributed
202
203 commit eff30656f880bb3c362d7db4b82345b70b7282ee
204 Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
205 Date:   Wed Oct 21 12:47:19 2009 -0700
206
207     This is not a GNU project, so declare it foreign.
208     
209     On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
210     > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
211     > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
212     > > was quite annoying to work around since 'autoreconf -fvi' replaces
213     > > it and git wants to commit it.  Should these files even be in git?
214     > > Can I nuke them for the betterment of humanity and since they get
215     > > created by autoreconf anyways?
216     >
217     > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
218     
219     As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
220     AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
221     of the INSTALL file. It is also part of the 24206 solution.
222     
223     Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
224
225 commit 42a269e9d35234306d3208eef9c8bdb2c04caf08
226 Author: Alan Coopersmith <alan.coopersmith@sun.com>
227 Date:   Sat Oct 10 19:58:20 2009 -0700
228
229     iceauth 1.0.3
230     
231     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
232
233 commit e772cc19bf632b3f94c5a6e841f4eef4f7b89e72
234 Author: Alan Coopersmith <alan.coopersmith@sun.com>
235 Date:   Sat Oct 10 19:57:34 2009 -0700
236
237     Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
238     
239     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
240
241 commit 42a6f0bc10530c31643b2fd768c48750ec451391
242 Author: Alan Coopersmith <alan.coopersmith@sun.com>
243 Date:   Thu Oct 1 14:54:17 2009 -0700
244
245     Add README with pointers to mailing lists, bugzilla, & git
246     
247     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
248
249 commit 04f61947ea6c3638001057934588938473b454b3
250 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
251 Date:   Thu Jan 15 18:38:12 2009 -0200
252
253     Ansification and compile warning fixes.
254     
255       This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
256     make distcheck. There weren't any gcc 4.3 and sparse warnings.
257
258 commit 5e52eb5d27986490dfad02781a452b8d0650f4b9
259 Author: Alan Coopersmith <alan.coopersmith@sun.com>
260 Date:   Mon Jul 23 18:23:56 2007 -0700
261
262     Version bump: 1.0.2
263
264 commit 4471761150676a8cee5631615bc187019b760161
265 Author: Alan Coopersmith <alan.coopersmith@sun.com>
266 Date:   Mon Jul 23 17:49:59 2007 -0700
267
268     Change iceauth_CFLAGS to AM_CFLAGS to avoid automake-1.10 warning
269     
270     Makefile.am:27: compiling `iceauth.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
271
272 commit bc7a27ab2e4e3339b9c2ee3bb90a38662b128448
273 Author: Alan Coopersmith <alan.coopersmith@sun.com>
274 Date:   Fri May 18 12:58:23 2007 -0700
275
276     More constification and reduction of rw data in binary
277
278 commit 45bb32cecdcf3319ae268f29a3ba1c33378e0acf
279 Author: Alan Coopersmith <alan.coopersmith@sun.com>
280 Date:   Fri May 18 12:57:00 2007 -0700
281
282     Debian Bug #25285: iceauth manpage starts with blank screen
283     
284     <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=25285>
285
286 commit bff96f0f863ba98fe5a66110ae0e29ca26336861
287 Author: Alan Coopersmith <alan.coopersmith@sun.com>
288 Date:   Thu May 17 14:08:03 2007 -0700
289
290     Constify some static data constants
291
292 commit c5e43b03ca7176907dd8d0d0964e0fd0460b9ff5
293 Author: Alan Coopersmith <alan.coopersmith@sun.com>
294 Date:   Thu May 17 13:50:05 2007 -0700
295
296     ANSIfy function declarations
297
298 commit b2761be7f786fe9fde424b4331479d3ac5082f16
299 Author: Alan Coopersmith <alan.coopersmith@sun.com>
300 Date:   Thu May 17 13:23:25 2007 -0700
301
302     Fix some lint warnings
303     
304     (611) warning: assignment of 64-bit integer to 32-bit integer
305     (653) warning: variable argument to strcpy(); make sure it's safe
306     (728) warning: sign extension from 32-bit to 64-bit integer
307
308 commit 77cadcef6ea687e7181aa222c47402f34644a6ea
309 Author: Alan Coopersmith <alan.coopersmith@sun.com>
310 Date:   Thu May 17 13:02:49 2007 -0700
311
312     Add option to check code with lint/sparse/etc.
313
314 commit 2afbb4393b1053fcb2edbec7c92575245efabffe
315 Author: Alan Coopersmith <alan.coopersmith@sun.com>
316 Date:   Thu May 17 12:59:51 2007 -0700
317
318     Replace static ChangeLog with disthook to generate from git log
319
320 commit 0022cf7baf11bccea0024d0dc8c1ecc37e46ef3d
321 Author: Alan Coopersmith <alan.coopersmith@sun.com>
322 Date:   Wed May 16 20:14:10 2007 -0700
323
324     Bug 10739: iceauth dumps core if signal caught before initialization done
325     
326     X.Org Bugzilla #10739 <http://bugs.freedesktop.org/show_bug.cgi?id=10739>
327     
328     Adding a test for NULL filename before calling IceUnlockAuthFile in
329     auth_finalize cleared the crash, but left the lock file behind.
330     Moving the initialization of authfilename to earlier in auth_initialize()
331     allowed the locks to be cleaned up as well.
332
333 commit f749d926bd9796badee2efd1ee1da5905d6fd38d
334 Author: Alan Coopersmith <alan.coopersmith@sun.com>
335 Date:   Mon May 14 19:04:24 2007 -0700
336
337     Replace copystring() with strdup() calls
338     
339     Also solves Coverity #924: Function copystring:
340       Pointer "src" dereferenced before NULL check
341
342 commit 1a142e8b29113bbd9daf21b8371f1572cd0152dd
343 Author: Alan Coopersmith <alan.coopersmith@sun.com>
344 Date:   Mon May 14 18:57:31 2007 -0700
345
346     Coverity #1089: Double frees in error cleanup path
347     
348     Double free of pointer "(auth)->auth_data" in call to "free"
349     Double free of pointer "(auth)->protocol_data" in call to "free"
350
351 commit 4c1bd3d698bbb2ec4c1f8d3744549ec44c58d1bf
352 Author: Alan Coopersmith <alan.coopersmith@sun.com>
353 Date:   Mon May 14 18:47:48 2007 -0700
354
355     renamed: .cvsignore -> .gitignore
356
357 commit ca8a9af2c282da78eac601e316d7db553cb411b3
358 Author: Alan Coopersmith <alan.coopersmith@sun.com>
359 Date:   Mon May 14 18:47:24 2007 -0700
360
361     Coverity #1039: Using uninitialized value "authdata"
362
363 commit 59ccc789fa5d7d34cd81d28f46b6022e92536d6b
364 Author: Kevin E Martin <kem@kem.org>
365 Date:   Wed Dec 21 02:29:42 2005 +0000
366
367     Update package version for X11R7 release.
368
369 commit d8dd7304386ba1ca8a6fbbcdcc6c4d790599ac91
370 Author: Adam Jackson <ajax@nwnk.net>
371 Date:   Mon Dec 19 16:22:40 2005 +0000
372
373     Stub COPYING files
374
375 commit f3a5ff191dda517c3331760d97549a826ede4266
376 Author: Kevin E Martin <kem@kem.org>
377 Date:   Thu Dec 15 00:24:02 2005 +0000
378
379     Update package version number for final X11R7 release candidate.
380
381 commit 589df4ac932d1c5616c12a331ef99c0ac6f75563
382 Author: Kevin E Martin <kem@kem.org>
383 Date:   Tue Dec 6 22:48:16 2005 +0000
384
385     Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
386
387 commit 7ec4ba15177f055afb6dc9972763c25bfc79cec9
388 Author: Kevin E Martin <kem@kem.org>
389 Date:   Sat Dec 3 05:49:15 2005 +0000
390
391     Update package version number for X11R7 RC3 release.
392
393 commit 31a2c7a834076f86bb801de6f7c6ff2a454e3db3
394 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
395 Date:   Mon Nov 28 22:01:37 2005 +0000
396
397     Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
398         update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
399
400 commit de9318f27ce26c5362d71a970738db261277a630
401 Author: Eric Anholt <anholt@freebsd.org>
402 Date:   Mon Nov 21 10:34:55 2005 +0000
403
404     Another pass at .cvsignores for apps.
405
406 commit 9b58fd72a610a45eb5a93d04d6b7b883ca3b8faf
407 Author: Eric Anholt <anholt@freebsd.org>
408 Date:   Sun Nov 20 22:08:48 2005 +0000
409
410     Add/improve .cvsignore files for apps.
411
412 commit cab89641f369a196d4ad7ad23db8e6dfc2257d01
413 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
414 Date:   Sun Nov 20 18:08:14 2005 +0000
415
416     iceauth only depends on xproto headers, not x11 library
417
418 commit e4b6fddc688dbb65353f818dd482c1a0dd9575f8
419 Author: Kevin E Martin <kem@kem.org>
420 Date:   Wed Oct 19 02:47:48 2005 +0000
421
422     Update package version number for RC1 release.
423
424 commit 1ded5d399305e930b7e3dcbb5ca48cbf5018faa7
425 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
426 Date:   Mon Oct 17 23:56:19 2005 +0000
427
428     Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
429         work better with BSD make
430
431 commit a0fcb616a2e44353758f3010769b1e975f7944b9
432 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
433 Date:   Fri Oct 14 00:25:41 2005 +0000
434
435     Use sed to fill in variables in man page
436
437 commit 973f5b5e29f4ecc43e47799dcd747d67c956edd6
438 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
439 Date:   Mon Aug 1 20:25:27 2005 +0000
440
441     Install man pages to section 1 instead of section m (Patch from Donnie
442         Berkholz)
443
444 commit 8f0e8e0af05244c5a10914dc789c97f99e7a2aa3
445 Author: Kevin E Martin <kem@kem.org>
446 Date:   Fri Jul 29 21:22:29 2005 +0000
447
448     Various changes preparing packages for RC0:
449     - Verify and update package version numbers as needed
450     - Implement versioning scheme
451     - Change bug address to point to bugzilla bug entry form
452     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
453         reenable it)
454     - Fix makedepend to use pkgconfig and pass distcheck
455     - Update build script to build macros first
456     - Update modular Xorg version
457
458 commit ee46a1af27aabf3178af70b02d95356d757572d3
459 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
460 Date:   Tue Jul 26 18:58:14 2005 +0000
461
462     Use AC_TYPE_SIGNAL and AC_FUNC_VFORK to replace Imake's SIGNAL_DEFINES and
463     -DHAS_VFORK
464
465 commit c911c36dadcb8070fbdf94d7f9eef494e18b5094
466 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
467 Date:   Tue Jul 26 18:55:42 2005 +0000
468
469     Add config.h includes for modularization Use RETSIGTYPE if defined by
470         autoconf in addition to Imake's SIGNALRETURNSINT. Use
471         HAVE_WORKING_VFORK if defined by autoconf in addition to Imake's
472         HAS_VFORK
473
474 commit 055e01c0756e6aa8603169dd104cdd2153d2b749
475 Author: Adam Jackson <ajax@nwnk.net>
476 Date:   Wed Jul 20 19:31:48 2005 +0000
477
478     Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
479         configure cache, you cache it, and the cached value is probably wrong.
480
481 commit c83a1200d2480ac67d755e4c589b524d1b834a6a
482 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
483 Date:   Sat Jul 16 20:52:25 2005 +0000
484
485     Mark variables modified in signal handlers as volatile (part of Sun bug id
486         4496504)
487
488 commit d0bc63cf13e98f686bd371a0ab609018e7fdf8c2
489 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
490 Date:   Tue Jun 28 15:04:15 2005 +0000
491
492     Add build system for iceauth
493
494 commit 2562a65de3dfa44006c1f82052814d9b54e00f37
495 Author: Egbert Eich <eich@suse.de>
496 Date:   Fri Apr 23 19:54:33 2004 +0000
497
498     Merging XORG-CURRENT into trunk
499
500 commit d8eefa5e8a51e448eecb9ec6be656775be2884cd
501 Author: Egbert Eich <eich@suse.de>
502 Date:   Sun Mar 14 08:34:51 2004 +0000
503
504     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
505
506 commit c560cd34038b23f28862bc890f3aaf161bb64c32
507 Author: Egbert Eich <eich@suse.de>
508 Date:   Wed Mar 3 12:12:50 2004 +0000
509
510     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
511
512 commit d05d91dcd79d5ce8ce548da80ae6e11eb8a4fcc7
513 Author: Egbert Eich <eich@suse.de>
514 Date:   Thu Feb 26 13:36:15 2004 +0000
515
516     readding XFree86's cvs IDs
517
518 commit a833bab02a6cbe19724b6bb4583f4ffaa24a0534
519 Author: Egbert Eich <eich@suse.de>
520 Date:   Thu Feb 26 09:23:54 2004 +0000
521
522     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
523
524 commit a3101452dc6f4ef01c328fad7e18685363937bcf
525 Author: Kaleb Keithley <kaleb@freedesktop.org>
526 Date:   Fri Nov 14 16:48:57 2003 +0000
527
528     XFree86 4.3.0.1
529
530 commit 511f5a05d0cc763d60b6b39584ea29b287cb801c
531 Author: Kaleb Keithley <kaleb@freedesktop.org>
532 Date:   Fri Nov 14 15:54:52 2003 +0000
533
534     R6.6 is the Xorg base-line