summaryrefslogtreecommitdiff
path: root/app/ico/ChangeLog
blob: 8e1d992157efd85ed00c628a0774fa9c76848a30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
commit 0c5f08dee87e0453e3263f8aa5ca545a0a03353e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jan 15 18:19:49 2013 -0800

    ico 1.0.4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d065113b4fadbb674e6e6f2a7681105f4f0212d3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jan 3 20:06:17 2013 -0800

    Fix some 64-bit vs. 32-bit conversion errors
    
    ico.c:851:7: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
            fg = WhitePixel(dpy, DefaultScreen(dpy));
               ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    ico.c:852:7: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
            bg = BlackPixel(dpy, DefaultScreen(dpy));
               ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    ico.c:858:18: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
                  bg = cdef.pixel;
                     ~ ~~~~~^~~~~
    
    ico.c:866:18: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
                  fg = cdef.pixel;
                     ~ ~~~~~^~~~~
    
    ico.c:874:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
                bg = tmp;
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 99ca5c8deb4a3ebd4b2a7e64bd64ca9a91b6680c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jan 3 19:51:06 2013 -0800

    Mark a couple parameters as unused to silence compiler warnings
    
    ico.c:436:20: warning: unused parameter 'display' [-Wunused-parameter]
    predicate(Display *display, XEvent *event, XPointer args)
    
    ico.c:511:51: warning: unused parameter 'firsttime' [-Wunused-parameter]
    setDisplayBuf(struct closure *closure, int n, int firsttime)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 94c5e76c2d1043a835b0872f78902ebdfc3c5492
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jun 5 17:50:45 2012 -0700

    Add const qualifiers to fix gcc -Wwrite-strings warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 83a7600ae9dbe8b2ca0f9199222245792fb8c0d6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jun 7 23:59:41 2011 -0700

    Replace local checks for gcc with _X_NORETURN from xproto 7.0.17
    
    Also declare icoFatal as static since it's only used in this one file.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
    Reviewed-by: Cyril Brulebois <kibi@debian.org>

commit 7abead5688c1958822e3084a5c9854eb52ac58ec
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 19 10:06:55 2011 -0500

    config: move man pages into their own directory
    
    Use services provided by XORG_MANPAGE_SECTIONS.
    Use standard Makefile for man pages.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 9d266c12261d32d2e3ceb167b16f6867e9ccc5fa
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 12 16:28:02 2011 -0500

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    This silences an Autoconf warning

commit 849d04b09a12e51fb4e17269e2e3a61ce205a014
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 30 13:11:36 2010 -0700

    ico 1.0.3
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9ac61910d314a548176a96565f29d986cae7f8b0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 30 13:10:33 2010 -0700

    Purge CVS version tags
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4a3421c6cb3e8571c07156e6756fd3d537978b42
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 30 13:09:38 2010 -0700

    config: Remove unnecessary calls from configure.ac
    
    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1a36145e7a8d11b4d80688c942427cfc48c63272
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 30 13:09:06 2010 -0700

    config: upgrade to util-macros 1.8 for additional man page support
    
    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    The value of MAN_SUBST is the same for all X.Org packages.
    
    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
    The existing statement can now be removed from the configuration file.
    
    Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
    Enables silent rule and use platform appropriate version of sed.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1e579cb7be71750e1d1fba0eaed58bc3bd428024
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sat Oct 30 13:07:01 2010 -0700

    config: update AC_PREREQ statement to 2.60
    
    Unrelated to the previous patches, the new value simply reflects
    the reality that the minimum level for autoconf to configure
    all x.org modules is 2.60 dated June 2006.
    
    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit dc14f85015ed4f8ad1dd9456f3daa59d1b0edddf
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Feb 11 10:08:06 2010 -0500

    config: move CWARNFLAGS from configure.ac to Makefile.am
    
    Compiler warning flags should be explicitly set in the makefile
    rather than being merged with other packages compiler flags.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 1decffa0f6fad067770c5b4de5a112993951f099
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Nov 26 09:19:52 2009 -0500

    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
    
    Now that the INSTALL file is generated.
    Allows running make maintainer-clean.

commit dbb254953e81d445e62ead7fddad9ebcbb068cb7
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:09:07 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Add missing INSTALL file. Use standard GNU file on building tarball
    README may have been updated
    Remove AUTHORS file as it is empty and no content available yet.
    Remove NEWS file as it is empty and no content available yet.

commit ae203a1bfd75964cc6b0ce95b702ec7e97eafc91
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Oct 27 15:07:24 2009 -0400

    Deploy the new XORG_DEFAULT_OPTIONS #24242
    
    This macro aggregate a number of existing macros that sets commmon
    X.Org components configuration options. It shields the configuration file from
    future changes.

commit e641baa6ffa24aec30fd773606b61b4895dbadd9
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Oct 26 22:08:38 2009 -0400

    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    
    ChangeLog filename is known to Automake and requires no further
    coding in the makefile.

commit bf4388c86ae8a7ce8e6471f272d299d353ce77a5
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 12:34:14 2009 -0400

    .gitignore: use common defaults with custom section # 24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.

commit ea16526cf2fa968a47715cee48d60d3a0e925094
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Oct 1 14:54:17 2009 -0700

    Add README with pointers to mailing lists, bugzilla, & git
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 5ca33a50e4a643b8ed7a525e39ecec9b34f1900a
Author: Jens Stroebel <dr-xorg@bcsoft.de>
Date:   Wed Jan 14 06:23:35 2009 -0800

    Correcting a typo in configure.ac preventing the Xorg headers from being found
    
    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>

commit 874f71ca6bb7134d1b9172a28bda6146dd2c608e
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Mon Jan 12 18:20:06 2009 -0200

    Ansification and compile warning fixes.
    
      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
    make distcheck and all gcc 4.3 and sparse warnings.
      Note that "ico" appears to be broken, and only work with the
    -r option, that causes it to not use XThreads, and only draw in
    the root screen (with "-threads 1" option, the default, it
    still use XThreads).

commit c0227e77a62a422332edda6c8d8113fb4980ac7d
Author: Keith Packard <keithp@keithp.com>
Date:   Sat Oct 11 21:19:00 2008 -0700

    Make sure each thread sees its expose event.
    
    Having a thread call XNextEvent may cause other threads to miss their
    initial expose event, blocking them for a long time. Use the existing
    predicate function and XIfEvent to wait for precisely the right expose event.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>

commit 11308c41fe4c1bf99a6654fca294f3e098075a33
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jul 20 16:28:38 2007 -0700

    Version bump: 1.0.2

commit 255c8078a0edfc289e434ba769fd50e05ab72ad2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jul 20 16:17:31 2007 -0700

    Fill in COPYING stub with copyright & licenses from source files

commit 5a51d7e1db3694e41d55bc02208f3fa1b736e951
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jul 20 16:14:34 2007 -0700

    Replace static changelog with dist-hook to generate from git log

commit e7a16eb488b591af57561799525891be5030bf25
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jul 20 16:10:58 2007 -0700

    Change ico_CFLAGS to AM_CFLAGS to stop automake-1.10 warning
    
    Makefile.am:27: compiling `ico.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'

commit e3146e963d7bf333d0e01d9d556d6c8be722898d
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Apr 11 15:37:10 2007 -0700

    renamed: .cvsignore -> .gitignore

commit db38b36c535baeda5bdc8a873b32f678e7df8e36
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Apr 11 15:36:16 2007 -0700

    Bug #10616: Man page typo: s/TREMINATION/TERMINATION/
    
    X.Org Bugzilla #10616 <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
    Reported upstream from
    Debian Bug #395445 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=395445>

commit 366924f71f6e5db3641bc350a07d37f64fe6ea08
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Dec 21 02:29:42 2005 +0000

    Update package version for X11R7 release.

commit 82481ae9b8335ae924b4341d194c4f0ed51f1f03
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Dec 19 16:22:40 2005 +0000

    Stub COPYING files

commit 52ad0990a0f63ef8601c56b3937afba0a511b376
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Dec 15 00:24:02 2005 +0000

    Update package version number for final X11R7 release candidate.

commit 22bef66811d55607c096b0e015fb91e31c3043c6
Author: Kevin E Martin <kem@kem.org>
Date:   Tue Dec 6 22:48:16 2005 +0000

    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.

commit f8a8eb25e339b5ae58c0bd6b9068338488d3be22
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Dec 3 05:49:16 2005 +0000

    Update package version number for X11R7 RC3 release.

commit 8e79cdd0c53ab420fa3b69003762d2d1ebfa0273
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Nov 28 22:01:37 2005 +0000

    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)

commit 3c4e96626a4fcc4df45bced95c44c5e99e605537
Author: Eric Anholt <anholt@freebsd.org>
Date:   Mon Nov 21 10:34:55 2005 +0000

    Another pass at .cvsignores for apps.

commit 3cb8504ab547357b6b538e1ffbb3000b5cc0b8e7
Author: Eric Anholt <anholt@freebsd.org>
Date:   Sun Nov 20 22:08:48 2005 +0000

    Add/improve .cvsignore files for apps.

commit 02b2de700f25d3be621d560b3042f7a7a89369e6
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Nov 9 21:09:19 2005 +0000

    Update package version number for X11R7 RC2 release.

commit 703edae088fb7bb409dbdb58d111ed9e4c31cf78
Author: Kean Johnson <kean@armory.com>
Date:   Tue Nov 8 06:33:31 2005 +0000

    See ChangeLog entry 2005-11-07 for details.

commit fe9efd5cd0703005da9ceb55f59d376ba0b01226
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Oct 19 02:47:48 2005 +0000

    Update package version number for RC1 release.

commit 7ad280349d00bb52201dc43c21ac097ec97132dc
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Oct 17 23:56:19 2005 +0000

    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
        work better with BSD make

commit cd8ac3431f4b2c6a8fad1031bf34d894fb6398ae
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Fri Oct 14 00:25:41 2005 +0000

    Use sed to fill in variables in man page

commit a0f44d19aa84965a31303fd39f05631665fd7e37
Author: Adam Jackson <ajax@nwnk.net>
Date:   Wed Aug 17 19:49:17 2005 +0000

    Get xthreadlib variable from Xlib. Bump to 0.99.1.

commit 19fd5758771d31d13cc483cf80adafa3bf530132
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Sat Aug 13 02:13:30 2005 +0000

    Update for modularization: include <config.h> & <X11/XlibConf.h>, use
        XTHREADS define from XlibConf.h to enable multithreading Also ansify
        icoFatal prototype to clear Sun cc warnings.

commit 979aa90d7b94494ce365b9dc3cf724a3f91f8598
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Aug 1 20:25:27 2005 +0000

    Install man pages to section 1 instead of section m (Patch from Donnie
        Berkholz)

commit 25ac536b836c2772784bd13b543d538a2673fb4c
Author: Kevin E Martin <kem@kem.org>
Date:   Fri Jul 29 21:22:29 2005 +0000

    Various changes preparing packages for RC0:
    - Verify and update package version numbers as needed
    - Implement versioning scheme
    - Change bug address to point to bugzilla bug entry form
    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
        reenable it)
    - Fix makedepend to use pkgconfig and pass distcheck
    - Update build script to build macros first
    - Update modular Xorg version

commit 5c31a07dbcb735445951f7f7cae8579ee16262d5
Author: Adam Jackson <ajax@nwnk.net>
Date:   Wed Jul 20 19:31:48 2005 +0000

    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
        configure cache, you cache it, and the cached value is probably wrong.

commit 9e0555e9d980217dd20d1f7385ff47514675629c
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Tue Jun 28 15:00:13 2005 +0000

    Check in build system for ico

commit 6a904d00db84e235ea2b0073fbcd078f8a96c9c2
Author: Egbert Eich <eich@suse.de>
Date:   Fri Apr 23 19:54:33 2004 +0000

    Merging XORG-CURRENT into trunk

commit caf6767501c8176c02702e441ab422ced4ea5033
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:34:51 2004 +0000

    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004

commit 81bd81a192d3e6cc4e8ac744d6f9dd844013c3de
Author: Egbert Eich <eich@suse.de>
Date:   Wed Mar 3 12:12:52 2004 +0000

    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004

commit 0fe04de86a907b549e143b27ff5c16887ec7de2a
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:36:15 2004 +0000

    readding XFree86's cvs IDs

commit dcd8f0f0b566a45609145651ae0c6d2cbed6bfc7
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 09:23:54 2004 +0000

    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004

commit 996d4a49a21986ae0a8d3f4f047aa71422727925
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:29:02 2003 +0000

    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks

commit c3b5b1a77685345b857f858fa3c226ec4a826414
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:57 2003 +0000

    XFree86 4.3.0.1

commit 352df17fc71405e7bc36559ee8a72e21d7a5694a
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:57 2003 +0000

    Initial revision