ChangeLog revision ebcdf611
1commit 3737d77a549d94043e0fbdb5f30562973da66fa8
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Tue Aug 30 17:13:18 2022 -0700
4
5    ico 1.0.6
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit c125d8bac5b1629e36069c13a13919e542dc3a9b
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Aug 13 16:04:06 2022 -0700
12
13    Add cast to clear -Wsign-compare warning
14    
15    ico.c: In function ‘do_ico_window’:
16    ico.c:1084:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
17        if (xev.xclient.data.l[0] == wm_delete_window)
18                                  ^~
19    
20    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
21
22commit fc54ce8a6f248e465a518f807dd5e51657b6e535
23Author: Alan Coopersmith <alan.coopersmith@oracle.com>
24Date:   Sat Aug 13 15:59:06 2022 -0700
25
26    Rename global "poly" to fix gcc -Wshadow warnings
27    
28    ico.c: In function ‘initPoly’:
29    ico.c:472:45: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
30     initPoly(struct closure *closure, Polyinfo *poly, int icoW, int icoH)
31                                                 ^~~~
32    ico.c:238:18: note: shadowed declaration is here
33     static Polyinfo *poly;  /* -obj: the poly to draw */
34                      ^~~~
35    ico.c: In function ‘drawPoly’:
36    ico.c:567:45: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
37     drawPoly(struct closure *closure, Polyinfo *poly, GC gc,
38                                                 ^~~~
39    ico.c:238:18: note: shadowed declaration is here
40     static Polyinfo *poly;  /* -obj: the poly to draw */
41                      ^~~~
42    ico.c: In function ‘giveObjHelp’:
43    ico.c:1137:13: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
44       Polyinfo *poly = polygons+i;
45                 ^~~~
46    ico.c:238:18: note: shadowed declaration is here
47     static Polyinfo *poly;  /* -obj: the poly to draw */
48                      ^~~~
49    ico.c: In function ‘findpoly’:
50    ico.c:1152:13: warning: declaration of ‘poly’ shadows a global declaration [-Wshadow]
51       Polyinfo *poly = polygons+i;
52                 ^~~~
53    ico.c:238:18: note: shadowed declaration is here
54     static Polyinfo *poly;  /* -obj: the poly to draw */
55                      ^~~~
56    
57    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
58
59commit 9e5fe5ae18c3f6eae93cd1521645717295ce2c23
60Author: Alan Coopersmith <alan.coopersmith@oracle.com>
61Date:   Sat Aug 13 15:56:22 2022 -0700
62
63    Apply scope reduction suggestions from cppcheck
64    
65    [ico.c:587]: (style) The scope of the variable 'pxvz' can be reduced.
66    [ico.c:730]: (style) The scope of the variable 't' can be reduced.
67    [ico.c:1132]: (style) The scope of the variable 'poly' can be reduced.
68    [ico.c:1149]: (style) The scope of the variable 'poly' can be reduced.
69    
70    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
71
72commit bd5040cdec7770501619393021eeffeb591e73f6
73Author: Alan Coopersmith <alan.coopersmith@oracle.com>
74Date:   Sat Apr 2 11:51:12 2022 -0700
75
76    man page: remove out-of-date COPYRIGHT section
77    
78    The information previously listed here didn't match what is present in
79    the source code or the COPYING file, and the X(7) man page doesn't list
80    any license information as this had claimed.
81    
82    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
83
84commit 9fa65d638319f6c10abde4a637e596872ff159c7
85Author: Alan Coopersmith <alan.coopersmith@oracle.com>
86Date:   Fri Dec 3 15:48:28 2021 -0800
87
88    Build xz tarballs instead of bzip2
89    
90    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
91
92commit d46e6314e03009ae3519f69aaf5773b095822f34
93Author: Alan Coopersmith <alan.coopersmith@oracle.com>
94Date:   Fri Dec 3 15:48:26 2021 -0800
95
96    gitlab CI: add a basic build test
97    
98    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
99
100commit 4635817dde85c6a6197857b8bf09d47dbb3fed93
101Author: Alan Coopersmith <alan.coopersmith@oracle.com>
102Date:   Wed Nov 21 16:47:57 2018 -0800
103
104    Update configure.ac bug URL for gitlab migration
105    
106    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
107
108commit 7aa38ed59eff2519138af7aa3b3b8a8e1270e408
109Author: Alan Coopersmith <alan.coopersmith@oracle.com>
110Date:   Fri Nov 16 20:01:30 2018 -0800
111
112    Update README for gitlab migration
113    
114    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
115
116commit e2a3e08d7a93738a88fdc889517f85d17371b626
117Author: Alan Coopersmith <alan.coopersmith@oracle.com>
118Date:   Fri Mar 9 22:26:48 2018 -0800
119
120    ico 1.0.5
121    
122    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
123
124commit 27bb9485b60408c7bad53abf67f69ca99ab8fa2e
125Author: Alan Coopersmith <alan.coopersmith@oracle.com>
126Date:   Tue Mar 6 22:50:37 2018 -0800
127
128    Fix more sign-compare warnings
129    
130    ico.c:1136:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
131      for (i=0; i<NumberPolygons; i++) {
132                 ^
133    
134    ico.c:1151:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
135      for (i=0; i<NumberPolygons; i++) {
136                 ^
137    
138    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
139
140commit 16ae54507785927e95942690b130d6827d7fb296
141Author: Mihail Konev <k.mvc@ya.ru>
142Date:   Thu Jan 26 14:00:20 2017 +1000
143
144    autogen: add default patch prefix
145    
146    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
147
148commit 00a77336cf2ecbe70b5be0e83b3729b76e92211d
149Author: Emil Velikov <emil.l.velikov@gmail.com>
150Date:   Mon Mar 9 12:00:52 2015 +0000
151
152    autogen.sh: use quoted string variables
153    
154    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
155    fall-outs, when they contain space.
156    
157    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
158    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
159    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
160
161commit 3f7683aafa4b93b5c3bc416948e909826dc99a13
162Author: Peter Hutterer <peter.hutterer@who-t.net>
163Date:   Tue Jan 24 10:32:07 2017 +1000
164
165    autogen.sh: use exec instead of waiting for configure to finish
166    
167    Syncs the invocation of configure with the one from the server.
168    
169    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
170    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
171
172commit 1d5e7d243e0f0df7afd6198f9e74bb392ddcea46
173Author: Alan Coopersmith <alan.coopersmith@oracle.com>
174Date:   Thu Apr 23 22:33:07 2015 -0700
175
176    Add -version to synopsis in man page
177    
178    List -version & -objhelp seperately to indicate they cannot be used
179    with any of the other options.
180    
181    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
182
183commit 2aeef741088c391f0d55ed9a063e3988ffd6ee44
184Author: Alan Coopersmith <alan.coopersmith@oracle.com>
185Date:   Fri Jan 16 23:01:55 2015 -0800
186
187    Convert icoFatal() to be a varargs function
188    
189    Drops needless NULL arguments and enables printf format checking.
190    
191    Gets rid of gcc 4.8 warning:
192    ico.c: In function ‘icoFatal’:
193    ico.c:265:2: warning: format not a string literal, argument types not checked [-Wformat-nonliteral]
194      fprintf(stderr, fmt, a0);
195      ^
196    
197    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
198    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
199
200commit bbd4273f328e93d429a6edb8872a74f8fb82b259
201Author: Alan Coopersmith <alan.coopersmith@oracle.com>
202Date:   Sat Oct 25 14:18:42 2014 -0700
203
204    Make polygon info const - moves 22k from .data to .rodata
205    
206    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
207
208commit 9db7347730f3c8c9d77e5be4c9746f6d614ce470
209Author: Alan Coopersmith <alan.coopersmith@oracle.com>
210Date:   Sun Jun 1 23:58:50 2014 -0700
211
212    Add -version option to print program version
213    
214    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
215
216commit 30cb700ab15c963a5cbf16cfe6281d5841f59532
217Author: Alan Coopersmith <alan.coopersmith@oracle.com>
218Date:   Sun Jun 1 23:55:00 2014 -0700
219
220    Print which option was in error along with usage message
221    
222    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
223
224commit 3db5ac8466abe367a0a37efe4289aa6c7886e621
225Author: Alan Coopersmith <alan.coopersmith@oracle.com>
226Date:   Sun Jun 1 23:52:26 2014 -0700
227
228    Combine usage message array into single string
229    
230    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
231
232commit 30b454f820eef8759bc2cbc258bf619717279409
233Author: Alan Coopersmith <alan.coopersmith@oracle.com>
234Date:   Sun Jun 1 23:41:36 2014 -0700
235
236    autogen.sh: Honor NOCONFIGURE=1
237    
238    See http://people.gnome.org/~walters/docs/build-api.txt
239    
240    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
241
242commit fa3d6ddec9447be2d9a3a92b6b6a0dbe00fd1870
243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
244Date:   Sun Jun 1 23:41:36 2014 -0700
245
246    configure: Drop AM_MAINTAINER_MODE
247    
248    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
249
250commit 727503cc004342ee0b34126c5844da381bc0b622
251Author: Alan Coopersmith <alan.coopersmith@oracle.com>
252Date:   Sun Jun 1 23:38:40 2014 -0700
253
254    config: Add missing AC_CONFIG_SRCDIR
255    
256    Regroup AC statements under the Autoconf initialization section.
257    Regroup AM statements under the Automake initialization section.
258    
259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
260
261commit 0c5f08dee87e0453e3263f8aa5ca545a0a03353e
262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
263Date:   Tue Jan 15 18:19:49 2013 -0800
264
265    ico 1.0.4
266    
267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
268
269commit d065113b4fadbb674e6e6f2a7681105f4f0212d3
270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
271Date:   Thu Jan 3 20:06:17 2013 -0800
272
273    Fix some 64-bit vs. 32-bit conversion errors
274    
275    ico.c:851:7: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
276            fg = WhitePixel(dpy, DefaultScreen(dpy));
277               ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
278    
279    ico.c:852:7: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
280            bg = BlackPixel(dpy, DefaultScreen(dpy));
281               ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
282    
283    ico.c:858:18: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
284                  bg = cdef.pixel;
285                     ~ ~~~~~^~~~~
286    
287    ico.c:866:18: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
288                  fg = cdef.pixel;
289                     ~ ~~~~~^~~~~
290    
291    ico.c:874:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
292                bg = tmp;
293    
294    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
295
296commit 99ca5c8deb4a3ebd4b2a7e64bd64ca9a91b6680c
297Author: Alan Coopersmith <alan.coopersmith@oracle.com>
298Date:   Thu Jan 3 19:51:06 2013 -0800
299
300    Mark a couple parameters as unused to silence compiler warnings
301    
302    ico.c:436:20: warning: unused parameter 'display' [-Wunused-parameter]
303    predicate(Display *display, XEvent *event, XPointer args)
304    
305    ico.c:511:51: warning: unused parameter 'firsttime' [-Wunused-parameter]
306    setDisplayBuf(struct closure *closure, int n, int firsttime)
307    
308    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
309
310commit 94c5e76c2d1043a835b0872f78902ebdfc3c5492
311Author: Alan Coopersmith <alan.coopersmith@oracle.com>
312Date:   Tue Jun 5 17:50:45 2012 -0700
313
314    Add const qualifiers to fix gcc -Wwrite-strings warnings
315    
316    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
317
318commit 83a7600ae9dbe8b2ca0f9199222245792fb8c0d6
319Author: Alan Coopersmith <alan.coopersmith@oracle.com>
320Date:   Tue Jun 7 23:59:41 2011 -0700
321
322    Replace local checks for gcc with _X_NORETURN from xproto 7.0.17
323    
324    Also declare icoFatal as static since it's only used in this one file.
325    
326    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
327    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
328    Reviewed-by: Cyril Brulebois <kibi@debian.org>
329
330commit 7abead5688c1958822e3084a5c9854eb52ac58ec
331Author: Gaetan Nadon <memsize@videotron.ca>
332Date:   Wed Jan 19 10:06:55 2011 -0500
333
334    config: move man pages into their own directory
335    
336    Use services provided by XORG_MANPAGE_SECTIONS.
337    Use standard Makefile for man pages.
338    
339    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
340
341commit 9d266c12261d32d2e3ceb167b16f6867e9ccc5fa
342Author: Gaetan Nadon <memsize@videotron.ca>
343Date:   Wed Jan 12 16:28:02 2011 -0500
344
345    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
346    
347    This silences an Autoconf warning
348
349commit 849d04b09a12e51fb4e17269e2e3a61ce205a014
350Author: Alan Coopersmith <alan.coopersmith@oracle.com>
351Date:   Sat Oct 30 13:11:36 2010 -0700
352
353    ico 1.0.3
354    
355    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
356
357commit 9ac61910d314a548176a96565f29d986cae7f8b0
358Author: Alan Coopersmith <alan.coopersmith@oracle.com>
359Date:   Sat Oct 30 13:10:33 2010 -0700
360
361    Purge CVS version tags
362    
363    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
364
365commit 4a3421c6cb3e8571c07156e6756fd3d537978b42
366Author: Alan Coopersmith <alan.coopersmith@oracle.com>
367Date:   Sat Oct 30 13:09:38 2010 -0700
368
369    config: Remove unnecessary calls from configure.ac
370    
371    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
372    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
373    
374    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
375
376commit 1a36145e7a8d11b4d80688c942427cfc48c63272
377Author: Alan Coopersmith <alan.coopersmith@oracle.com>
378Date:   Sat Oct 30 13:09:06 2010 -0700
379
380    config: upgrade to util-macros 1.8 for additional man page support
381    
382    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
383    The value of MAN_SUBST is the same for all X.Org packages.
384    
385    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
386    The existing statement can now be removed from the configuration file.
387    
388    Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
389    Enables silent rule and use platform appropriate version of sed.
390    
391    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
392
393commit 1e579cb7be71750e1d1fba0eaed58bc3bd428024
394Author: Gaetan Nadon <memsize@videotron.ca>
395Date:   Sat Oct 30 13:07:01 2010 -0700
396
397    config: update AC_PREREQ statement to 2.60
398    
399    Unrelated to the previous patches, the new value simply reflects
400    the reality that the minimum level for autoconf to configure
401    all x.org modules is 2.60 dated June 2006.
402    
403    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
404    
405    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
406    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
407
408commit dc14f85015ed4f8ad1dd9456f3daa59d1b0edddf
409Author: Gaetan Nadon <memsize@videotron.ca>
410Date:   Thu Feb 11 10:08:06 2010 -0500
411
412    config: move CWARNFLAGS from configure.ac to Makefile.am
413    
414    Compiler warning flags should be explicitly set in the makefile
415    rather than being merged with other packages compiler flags.
416    
417    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
418
419commit 1decffa0f6fad067770c5b4de5a112993951f099
420Author: Gaetan Nadon <memsize@videotron.ca>
421Date:   Thu Nov 26 09:19:52 2009 -0500
422
423    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
424    
425    Now that the INSTALL file is generated.
426    Allows running make maintainer-clean.
427
428commit dbb254953e81d445e62ead7fddad9ebcbb068cb7
429Author: Gaetan Nadon <memsize@videotron.ca>
430Date:   Wed Oct 28 14:09:07 2009 -0400
431
432    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
433    
434    Add missing INSTALL file. Use standard GNU file on building tarball
435    README may have been updated
436    Remove AUTHORS file as it is empty and no content available yet.
437    Remove NEWS file as it is empty and no content available yet.
438
439commit ae203a1bfd75964cc6b0ce95b702ec7e97eafc91
440Author: Gaetan Nadon <memsize@videotron.ca>
441Date:   Tue Oct 27 15:07:24 2009 -0400
442
443    Deploy the new XORG_DEFAULT_OPTIONS #24242
444    
445    This macro aggregate a number of existing macros that sets commmon
446    X.Org components configuration options. It shields the configuration file from
447    future changes.
448
449commit e641baa6ffa24aec30fd773606b61b4895dbadd9
450Author: Gaetan Nadon <memsize@videotron.ca>
451Date:   Mon Oct 26 22:08:38 2009 -0400
452
453    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
454    
455    ChangeLog filename is known to Automake and requires no further
456    coding in the makefile.
457
458commit bf4388c86ae8a7ce8e6471f272d299d353ce77a5
459Author: Gaetan Nadon <memsize@videotron.ca>
460Date:   Thu Oct 22 12:34:14 2009 -0400
461
462    .gitignore: use common defaults with custom section # 24239
463    
464    Using common defaults will reduce errors and maintenance.
465    Only the very small or inexistent custom section need periodic maintenance
466    when the structure of the component changes. Do not edit defaults.
467
468commit ea16526cf2fa968a47715cee48d60d3a0e925094
469Author: Alan Coopersmith <alan.coopersmith@sun.com>
470Date:   Thu Oct 1 14:54:17 2009 -0700
471
472    Add README with pointers to mailing lists, bugzilla, & git
473    
474    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
475
476commit 5ca33a50e4a643b8ed7a525e39ecec9b34f1900a
477Author: Jens Stroebel <dr-xorg@bcsoft.de>
478Date:   Wed Jan 14 06:23:35 2009 -0800
479
480    Correcting a typo in configure.ac preventing the Xorg headers from being found
481    
482    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
483
484commit 874f71ca6bb7134d1b9172a28bda6146dd2c608e
485Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
486Date:   Mon Jan 12 18:20:06 2009 -0200
487
488    Ansification and compile warning fixes.
489    
490      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
491    make distcheck and all gcc 4.3 and sparse warnings.
492      Note that "ico" appears to be broken, and only work with the
493    -r option, that causes it to not use XThreads, and only draw in
494    the root screen (with "-threads 1" option, the default, it
495    still use XThreads).
496
497commit c0227e77a62a422332edda6c8d8113fb4980ac7d
498Author: Keith Packard <keithp@keithp.com>
499Date:   Sat Oct 11 21:19:00 2008 -0700
500
501    Make sure each thread sees its expose event.
502    
503    Having a thread call XNextEvent may cause other threads to miss their
504    initial expose event, blocking them for a long time. Use the existing
505    predicate function and XIfEvent to wait for precisely the right expose event.
506    
507    Signed-off-by: Keith Packard <keithp@keithp.com>
508
509commit 11308c41fe4c1bf99a6654fca294f3e098075a33
510Author: Alan Coopersmith <alan.coopersmith@sun.com>
511Date:   Fri Jul 20 16:28:38 2007 -0700
512
513    Version bump: 1.0.2
514
515commit 255c8078a0edfc289e434ba769fd50e05ab72ad2
516Author: Alan Coopersmith <alan.coopersmith@sun.com>
517Date:   Fri Jul 20 16:17:31 2007 -0700
518
519    Fill in COPYING stub with copyright & licenses from source files
520
521commit 5a51d7e1db3694e41d55bc02208f3fa1b736e951
522Author: Alan Coopersmith <alan.coopersmith@sun.com>
523Date:   Fri Jul 20 16:14:34 2007 -0700
524
525    Replace static changelog with dist-hook to generate from git log
526
527commit e7a16eb488b591af57561799525891be5030bf25
528Author: Alan Coopersmith <alan.coopersmith@sun.com>
529Date:   Fri Jul 20 16:10:58 2007 -0700
530
531    Change ico_CFLAGS to AM_CFLAGS to stop automake-1.10 warning
532    
533    Makefile.am:27: compiling `ico.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
534
535commit e3146e963d7bf333d0e01d9d556d6c8be722898d
536Author: Alan Coopersmith <alan.coopersmith@sun.com>
537Date:   Wed Apr 11 15:37:10 2007 -0700
538
539    renamed: .cvsignore -> .gitignore
540
541commit db38b36c535baeda5bdc8a873b32f678e7df8e36
542Author: Alan Coopersmith <alan.coopersmith@sun.com>
543Date:   Wed Apr 11 15:36:16 2007 -0700
544
545    Bug #10616: Man page typo: s/TREMINATION/TERMINATION/
546    
547    X.Org Bugzilla #10616 <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
548    Reported upstream from
549    Debian Bug #395445 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=395445>
550
551commit 366924f71f6e5db3641bc350a07d37f64fe6ea08
552Author: Kevin E Martin <kem@kem.org>
553Date:   Wed Dec 21 02:29:42 2005 +0000
554
555    Update package version for X11R7 release.
556
557commit 82481ae9b8335ae924b4341d194c4f0ed51f1f03
558Author: Adam Jackson <ajax@nwnk.net>
559Date:   Mon Dec 19 16:22:40 2005 +0000
560
561    Stub COPYING files
562
563commit 52ad0990a0f63ef8601c56b3937afba0a511b376
564Author: Kevin E Martin <kem@kem.org>
565Date:   Thu Dec 15 00:24:02 2005 +0000
566
567    Update package version number for final X11R7 release candidate.
568
569commit 22bef66811d55607c096b0e015fb91e31c3043c6
570Author: Kevin E Martin <kem@kem.org>
571Date:   Tue Dec 6 22:48:16 2005 +0000
572
573    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
574
575commit f8a8eb25e339b5ae58c0bd6b9068338488d3be22
576Author: Kevin E Martin <kem@kem.org>
577Date:   Sat Dec 3 05:49:16 2005 +0000
578
579    Update package version number for X11R7 RC3 release.
580
581commit 8e79cdd0c53ab420fa3b69003762d2d1ebfa0273
582Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
583Date:   Mon Nov 28 22:01:37 2005 +0000
584
585    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
586        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
587
588commit 3c4e96626a4fcc4df45bced95c44c5e99e605537
589Author: Eric Anholt <anholt@freebsd.org>
590Date:   Mon Nov 21 10:34:55 2005 +0000
591
592    Another pass at .cvsignores for apps.
593
594commit 3cb8504ab547357b6b538e1ffbb3000b5cc0b8e7
595Author: Eric Anholt <anholt@freebsd.org>
596Date:   Sun Nov 20 22:08:48 2005 +0000
597
598    Add/improve .cvsignore files for apps.
599
600commit 02b2de700f25d3be621d560b3042f7a7a89369e6
601Author: Kevin E Martin <kem@kem.org>
602Date:   Wed Nov 9 21:09:19 2005 +0000
603
604    Update package version number for X11R7 RC2 release.
605
606commit 703edae088fb7bb409dbdb58d111ed9e4c31cf78
607Author: Kean Johnson <kean@armory.com>
608Date:   Tue Nov 8 06:33:31 2005 +0000
609
610    See ChangeLog entry 2005-11-07 for details.
611
612commit fe9efd5cd0703005da9ceb55f59d376ba0b01226
613Author: Kevin E Martin <kem@kem.org>
614Date:   Wed Oct 19 02:47:48 2005 +0000
615
616    Update package version number for RC1 release.
617
618commit 7ad280349d00bb52201dc43c21ac097ec97132dc
619Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
620Date:   Mon Oct 17 23:56:19 2005 +0000
621
622    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
623        work better with BSD make
624
625commit cd8ac3431f4b2c6a8fad1031bf34d894fb6398ae
626Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
627Date:   Fri Oct 14 00:25:41 2005 +0000
628
629    Use sed to fill in variables in man page
630
631commit a0f44d19aa84965a31303fd39f05631665fd7e37
632Author: Adam Jackson <ajax@nwnk.net>
633Date:   Wed Aug 17 19:49:17 2005 +0000
634
635    Get xthreadlib variable from Xlib. Bump to 0.99.1.
636
637commit 19fd5758771d31d13cc483cf80adafa3bf530132
638Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
639Date:   Sat Aug 13 02:13:30 2005 +0000
640
641    Update for modularization: include <config.h> & <X11/XlibConf.h>, use
642        XTHREADS define from XlibConf.h to enable multithreading Also ansify
643        icoFatal prototype to clear Sun cc warnings.
644
645commit 979aa90d7b94494ce365b9dc3cf724a3f91f8598
646Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
647Date:   Mon Aug 1 20:25:27 2005 +0000
648
649    Install man pages to section 1 instead of section m (Patch from Donnie
650        Berkholz)
651
652commit 25ac536b836c2772784bd13b543d538a2673fb4c
653Author: Kevin E Martin <kem@kem.org>
654Date:   Fri Jul 29 21:22:29 2005 +0000
655
656    Various changes preparing packages for RC0:
657    - Verify and update package version numbers as needed
658    - Implement versioning scheme
659    - Change bug address to point to bugzilla bug entry form
660    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
661        reenable it)
662    - Fix makedepend to use pkgconfig and pass distcheck
663    - Update build script to build macros first
664    - Update modular Xorg version
665
666commit 5c31a07dbcb735445951f7f7cae8579ee16262d5
667Author: Adam Jackson <ajax@nwnk.net>
668Date:   Wed Jul 20 19:31:48 2005 +0000
669
670    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
671        configure cache, you cache it, and the cached value is probably wrong.
672
673commit 9e0555e9d980217dd20d1f7385ff47514675629c
674Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
675Date:   Tue Jun 28 15:00:13 2005 +0000
676
677    Check in build system for ico
678
679commit 6a904d00db84e235ea2b0073fbcd078f8a96c9c2
680Author: Egbert Eich <eich@suse.de>
681Date:   Fri Apr 23 19:54:33 2004 +0000
682
683    Merging XORG-CURRENT into trunk
684
685commit caf6767501c8176c02702e441ab422ced4ea5033
686Author: Egbert Eich <eich@suse.de>
687Date:   Sun Mar 14 08:34:51 2004 +0000
688
689    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
690
691commit 81bd81a192d3e6cc4e8ac744d6f9dd844013c3de
692Author: Egbert Eich <eich@suse.de>
693Date:   Wed Mar 3 12:12:52 2004 +0000
694
695    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
696
697commit 0fe04de86a907b549e143b27ff5c16887ec7de2a
698Author: Egbert Eich <eich@suse.de>
699Date:   Thu Feb 26 13:36:15 2004 +0000
700
701    readding XFree86's cvs IDs
702
703commit dcd8f0f0b566a45609145651ae0c6d2cbed6bfc7
704Author: Egbert Eich <eich@suse.de>
705Date:   Thu Feb 26 09:23:54 2004 +0000
706
707    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
708
709commit 996d4a49a21986ae0a8d3f4f047aa71422727925
710Author: Kaleb Keithley <kaleb@freedesktop.org>
711Date:   Tue Nov 25 19:29:02 2003 +0000
712
713    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
714
715commit c3b5b1a77685345b857f858fa3c226ec4a826414
716Author: Kaleb Keithley <kaleb@freedesktop.org>
717Date:   Fri Nov 14 16:48:57 2003 +0000
718
719    XFree86 4.3.0.1
720
721commit 352df17fc71405e7bc36559ee8a72e21d7a5694a
722Author: Kaleb Keithley <kaleb@freedesktop.org>
723Date:   Fri Nov 14 16:48:57 2003 +0000
724
725    Initial revision
726