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