tizen 2.4 release
[framework/uifw/xorg/lib/libxcursor.git] / ChangeLog
1 commit 2a9eaf3305d1577ad763d56dddd46e10f8d0676b
2 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3 Date:   Wed Mar 7 18:54:15 2012 -0800
4
5     libXcursor 1.1.13
6     
7     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9 commit 8229cf75b34c2991eaf973f05326be9bfa16ef0c
10 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11 Date:   Thu Nov 24 13:10:15 2011 -0800
12
13     XcursorImageLoadCursor: return failure if _XcursorGetDisplayInfo fails
14     
15     Error: Null pointer dereference (CWE 476)
16        Read from null pointer 'info'
17             at line 615 of src/cursor.c in function 'XcursorImageLoadCursor'.
18               Function '_XcursorGetDisplayInfo' may return constant 'NULL' at line 134, called at line 597.
19               Null pointer introduced at line 134 of src/display.c in function '_XcursorGetDisplayInfo'.
20     
21     [ This bug was found by the Parfait 0.3.7 bug checking tool.
22       For more information see http://labs.oracle.com/projects/parfait/ ]
23     
24     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
25     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
26
27 commit 2b8d373bddf427bcd95e2595cb64740ebd1d0d30
28 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
29 Date:   Thu Nov 24 12:59:56 2011 -0800
30
31     XcursorFileSaveImages: plug memory leak on invalid input
32     
33     Error: Memory leak (CWE 401)
34        Memory leak of pointer 'comments' allocated with XcursorCommentsCreate(0)
35             at line 982 of src/file.c in function 'XcursorFileSaveImages'.
36               'comments' allocated at line 978 with XcursorCommentsCreate(0).
37               comments leaks when comments != 0 at line 981.
38     
39     [ This bug was found by the Parfait 0.3.7 bug checking tool.
40       For more information see http://labs.oracle.com/projects/parfait/ ]
41     
42     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
43     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
44
45 commit bcfb8e8ce56cf47bc6a61bd8c896bafba9e2a9c2
46 Author: Jon TURNEY <jon.turney@dronecode.org.uk>
47 Date:   Thu Sep 22 14:43:38 2011 +0100
48
49     Add generated Xcursor.h to .gitignore
50     
51     Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
52     Reviewed-by:  Gaetan Nadon <memsize@videotron.ca>
53     Tested-by: Gaetan Nadon <memsize@videotron.ca>
54     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
55
56 commit 862b9ce4aa819bf87b6e24db9d7d5867cbaa577c
57 Author: Jon TURNEY <jon.turney@dronecode.org.uk>
58 Date:   Wed Sep 21 20:50:46 2011 +0100
59
60     Fix install of generated Xcursor.h when builddir != srcdir
61     
62     Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
63     Reviewed-by:  Gaetan Nadon <memsize@videotron.ca>
64     Tested-by: Gaetan Nadon <memsize@videotron.ca>
65     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
66
67 commit 334dc4f4df69d780f312f23b860df11bee5e9009
68 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
69 Date:   Fri Sep 16 21:41:41 2011 -0700
70
71     Set Xcursor.h version numbers from configure.ac
72     
73     Based on similar commit dac73a519816 to libXft
74     
75     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
76     Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
77
78 commit e086eb1bf49f2a8c270eaebd5beb595c1dc2973e
79 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
80 Date:   Fri Sep 16 21:26:17 2011 -0700
81
82     Strip trailing whitespace
83     
84     Performed with: find * -type f | xargs perl -i -p -e 's{\s+$}{\n}'
85     git diff -w & git diff -b show no diffs from this change
86     
87     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
88
89 commit d79ddc01e4b247ae95af3581b93aef2b93e76888
90 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
91 Date:   Wed Jun 29 21:41:09 2011 -0700
92
93     libXcursor 1.1.12
94     
95     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
96
97 commit 4ce23fcd978ed389ea30315c0e02629a31bda265
98 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
99 Date:   Sun May 22 12:55:31 2011 -0700
100
101     Mark bitmasks as unsigned ints
102     
103     Clears Sun compiler warnings from shifting 8 bits by 24 bits:
104     "cursor.c", line 215: warning: integer overflow detected: op "<<"
105     "cursor.c", line 280: warning: integer overflow detected: op "<<"
106     
107     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
108
109 commit 047993c76a677ca12a2b575990b99e3ddbc0dd58
110 Author: Jeremy Huddleston <jeremyhu@apple.com>
111 Date:   Sat May 7 10:16:18 2011 -0700
112
113     Correct error handling in _XcursorAverageColor
114     
115     Previously it would either div-zero or get stuck in a loop until int overflow
116     if called with a bad value.
117     
118     cursor.c:214:32: warning: Division by zero
119         return (0xff << 24) | ((red/npixels) << 16) | ((green/npixels) << 8) | (blue/npixels);
120     
121     Found-by: clang static analyzer
122     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
123
124 commit bee68e54e5c3a4b9f46c81366a720531e3e07a82
125 Author: Chris Wilson <chris@chris-wilson.co.uk>
126 Date:   Fri Apr 1 12:16:23 2011 +0100
127
128     Free the FontInfo structure after loading the cursor from it.
129     
130     References: https://bugs.freedesktop.org/show_bug.cgi?id=2731
131     Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
132
133 commit f49e7e1608f2dac140f60bcae21d5c37f79fc41b
134 Author: Chris Wilson <chris@chris-wilson.co.uk>
135 Date:   Fri Apr 1 12:15:46 2011 +0100
136
137     Free the partial header after failing to open the cursor.
138     
139     Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
140
141 commit 073eb2c56f4794275eee40a825dbfe1232bb2690
142 Author: Chris Wilson <chris@chris-wilson.co.uk>
143 Date:   Fri Apr 1 12:14:51 2011 +0100
144
145     Free list on shutdown.
146     
147     We freed the parent structure without freeing the list contained within,
148     making valgrind unhappy.
149     
150     Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
151
152 commit de50317ec4e0e8da7de84e85d1f7a6d2e184d58b
153 Author: Gaetan Nadon <memsize@videotron.ca>
154 Date:   Wed Feb 2 17:08:19 2011 -0500
155
156     config: perform XCURSORPATH formatting in man/Makefile.am
157     
158     We can skip the extra step of using XCURSORPATH_LIST in configure.ac.
159     
160     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
161
162 commit a929c3621b9da8e56ce1223afd3e487fc488fa47
163 Author: Gaetan Nadon <memsize@videotron.ca>
164 Date:   Wed Feb 2 11:43:41 2011 -0500
165
166     config: comment, minor upgrade, quote and layout configure.ac
167     
168     Group statements per section as per Autoconf standard layout
169     Quote statements where appropriate.
170     Autoconf recommends not using dnl instead of # for comments
171     
172     Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
173     
174     This helps automated maintenance and release activities.
175     Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
176     
177     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
178
179 commit 96c5877fd7ebc59569f140d9e2cb30fdb8371ef1
180 Author: Gaetan Nadon <memsize@videotron.ca>
181 Date:   Fri Jan 28 19:41:37 2011 -0500
182
183     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
184     
185     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
186
187 commit 4f7a749fcb7a8e93d40a7621fa1c159e003b2f5c
188 Author: Gaetan Nadon <memsize@videotron.ca>
189 Date:   Fri Jan 28 16:07:07 2011 -0500
190
191     config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
192     
193     This silences an Automake warning.
194     
195     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
196
197 commit c38adc6bf116146fa1e291b9f4deed45497e5c2e
198 Author: Gaetan Nadon <memsize@videotron.ca>
199 Date:   Thu Jan 27 18:50:14 2011 -0500
200
201     config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
202     
203     XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
204     AC_PROG_C_C99. This sets gcc with -std=gnu99.
205     If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
206     
207     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
208
209 commit 731e84d79e83b59d022d0f453b245696b4d2750f
210 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
211 Date:   Wed Oct 27 22:48:19 2010 -0700
212
213     libXcursor 1.1.11
214     
215     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
216
217 commit 42b7717c32b3c7097180667a9ba2f62e40fc6506
218 Author: Gaetan Nadon <memsize@videotron.ca>
219 Date:   Mon Aug 16 19:28:57 2010 -0400
220
221     man: whitespace management
222     
223     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
224
225 commit 862bc06d58152e74e85fc29db7eaec06af20e00b
226 Author: Gaetan Nadon <memsize@videotron.ca>
227 Date:   Mon Aug 16 19:25:25 2010 -0400
228
229     man: reorder makefile statements
230     
231     No functional change. Shadows are part of libman_PRE.
232     
233     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
234
235 commit b18568dd5b5a11ae49cad66a54ec50465c6ffa77
236 Author: Gaetan Nadon <memsize@videotron.ca>
237 Date:   Mon Aug 16 19:17:21 2010 -0400
238
239     man: store shadow man pages in git rather than generating them
240     
241     Simplify the build process and the makefile.
242     
243     Local fix in CVS for bug 5628 is not required
244     as the problem has been fixed in
245     util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
246     
247     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
248
249 commit 68d830bcf67632b474c8996b6a2c9bcde8e27f97
250 Author: Gaetan Nadon <memsize@videotron.ca>
251 Date:   Mon Aug 16 19:05:35 2010 -0400
252
253     config: upgrade to util-macros 1.8 for additional man page support
254     
255     Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
256     The value of MAN_SUBST is the same for all X.Org packages.
257     
258     Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
259     
260     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
261
262 commit 0caadca51ca56a2ae2cfe67cbd2b29e89b6a68d8
263 Author: Gaetan Nadon <memsize@videotron.ca>
264 Date:   Mon Mar 29 16:50:33 2010 -0400
265
266     config: update AC_PREREQ statement to 2.60
267     
268     Unrelated to the previous patches, the new value simply reflects
269     the reality that the minimum level for autoconf to configure
270     all x.org modules is 2.60 dated June 2006.
271     
272     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
273     
274     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
275
276 commit b511b260ddcec34035c1d97285f27f3182663a6a
277 Author: Gaetan Nadon <memsize@videotron.ca>
278 Date:   Mon Mar 29 14:53:48 2010 -0400
279
280     config: remove the pkgconfig pc.in file from EXTRA_DIST
281     
282     Automake always includes it in the tarball.
283     
284     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
285
286 commit a3e03bb23bf7a92bf20d51eebe692e0a4f667065
287 Author: Gaetan Nadon <memsize@videotron.ca>
288 Date:   Tue Feb 16 10:37:21 2010 -0500
289
290     config: move CWARNFLAGS from configure.ac to Makefile.am
291     
292     Compiler warning flags should be explicitly set in the makefile
293     rather than being merged with other packages compiler flags.
294     
295     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
296
297 commit 8198d1490959d49573790405e205a471ac7a5b98
298 Author: Gaetan Nadon <memsize@videotron.ca>
299 Date:   Fri Nov 27 20:56:04 2009 -0500
300
301     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
302     
303     Now that the INSTALL file is generated.
304     Allows running make maintainer-clean.
305
306 commit ecddb70049a1e79b88d4d647f7e944237055fa2e
307 Author: Gaetan Nadon <memsize@videotron.ca>
308 Date:   Wed Oct 28 14:09:10 2009 -0400
309
310     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
311     
312     Add missing INSTALL file. Use standard GNU file on building tarball
313     README may have been updated
314     Remove AUTHORS file as it is empty and no content available yet.
315     Remove NEWS file as it is empty and no content available yet.
316
317 commit 02cd3d7a617c71dbc13023f91f41b896dc260c50
318 Author: Gaetan Nadon <memsize@videotron.ca>
319 Date:   Tue Oct 27 15:07:25 2009 -0400
320
321     Deploy the new XORG_DEFAULT_OPTIONS #24242
322     
323     This macro aggregate a number of existing macros that sets commmon
324     X.Org components configuration options. It shields the configuration file from
325     future changes.
326
327 commit 1ca6aefa6690930b336490525f5ed515ddad26ac
328 Author: Gaetan Nadon <memsize@videotron.ca>
329 Date:   Mon Oct 26 22:08:42 2009 -0400
330
331     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
332     
333     ChangeLog filename is known to Automake and requires no further
334     coding in the makefile.
335
336 commit 1c158db62ad2c7584d88e840f3c7fe151de84150
337 Author: Gaetan Nadon <memsize@videotron.ca>
338 Date:   Thu Oct 22 12:34:19 2009 -0400
339
340     .gitignore: use common defaults with custom section # 24239
341     
342     Using common defaults will reduce errors and maintenance.
343     Only the very small or inexistent custom section need periodic maintenance
344     when the structure of the component changes. Do not edit defaults.
345
346 commit 5e14cd9bd8a8f9266ecaa69d58c15d8e298d8a78
347 Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
348 Date:   Wed Oct 21 12:47:24 2009 -0700
349
350     This is not a GNU project, so declare it foreign.
351     
352     On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
353     > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
354     > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
355     > > was quite annoying to work around since 'autoreconf -fvi' replaces
356     > > it and git wants to commit it.  Should these files even be in git?
357     > > Can I nuke them for the betterment of humanity and since they get
358     > > created by autoreconf anyways?
359     >
360     > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
361     
362     As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
363     AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
364     of the INSTALL file. It is also part of the 24206 solution.
365     
366     Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
367
368 commit fbf229879370a96a070ebf087426f6f6c0dbe5a2
369 Author: Peter Hutterer <peter.hutterer@who-t.net>
370 Date:   Fri Aug 28 14:49:15 2009 +1000
371
372     libXcursor 1.1.10
373     
374     Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
375
376 commit 59e3f6520f4d1682d3242d1d5656e7972cf11944
377 Author: Alan Coopersmith <alan.coopersmith@sun.com>
378 Date:   Mon Feb 2 20:34:32 2009 -0800
379
380     Add README with pointers to mailing list, bugzilla & git repos
381     
382     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
383
384 commit f00ae32322d2b3c5d97724b80c72d3e2d0812935
385 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
386 Date:   Thu Jan 29 15:34:11 2009 -0200
387
388     Janitor: make distcheck, compiler warnings, extra .gitignore files.
389
390 commit 04641d3cc3e2f7389c5a3ea6e1d55543e033153f
391 Author: Matthieu Herrb <matthieu.herrb@laas.fr>
392 Date:   Sun Mar 9 00:34:36 2008 +0100
393
394     nuke RCS Ids
395
396 commit 94531dc8f6eff9c9f5cbb18ca6b3d4ff79eec752
397 Author: James Cloos <cloos@jhcloos.com>
398 Date:   Thu Dec 6 16:38:25 2007 -0500
399
400     Replace static ChangeLog with dist-hook to generate from git log
401
402 commit a4f29e6deef2bf46cae811aaac1f535945cd9fee
403 Author: Alan Coopersmith <alan.coopersmith@sun.com>
404 Date:   Fri Aug 24 14:01:07 2007 -0700
405
406     Version bump: 1.1.9
407
408 commit 5a2601740d04d4180e77695c4b60f2cf5c84be6c
409 Author: Alan Coopersmith <alan.coopersmith@sun.com>
410 Date:   Wed Aug 22 19:40:55 2007 -0700
411
412     Make shadow man pages for each function
413
414 commit fef474da694ea3c1fd184d93cc07bf8d95f89327
415 Author: Alan Coopersmith <alan.coopersmith@sun.com>
416 Date:   Tue Aug 21 19:45:35 2007 -0700
417
418     Add XCURSOR_PATH to man page
419
420 commit a9ccf1bd91ad6e06f7b7116efe836c365b68645b
421 Author: Alan Coopersmith <alan.coopersmith@sun.com>
422 Date:   Tue Aug 21 19:33:00 2007 -0700
423
424     Use cursorpath found by configure in man page
425
426 commit 110131bd40d0fc042f4a81922372307a1582b591
427 Author: Tilman Sauerbeck <tilman@code-monkey.de>
428 Date:   Sat May 12 22:42:08 2007 +0200
429
430     Added object files to .gitignore.
431
432 commit 3c5d4f591ce0b473af9f693cfe25a1506cc573d6
433 Author: Tilman Sauerbeck <tilman@code-monkey.de>
434 Date:   Sat May 12 22:41:27 2007 +0200
435
436     Store the cursor names in one large string.
437     
438     This means the compiler doesn't need to place the array in the
439     read-write sections of the DSO, which means less relocations
440     when the library is loaded and a smaller memory footprint.
441
442 commit 8b73dc04111c1910a6467417133a44d0aa29c6ac
443 Author: Adam Jackson <ajax@benzedrine.nwnk.net>
444 Date:   Fri Oct 13 16:01:17 2006 -0400
445
446     Bump to 1.1.8
447
448 commit 9df9640643fae7b922b18ee219d6d9694345df14
449 Author: Alan Coopersmith <alan.coopersmith@sun.com>
450 Date:   Tue Oct 10 14:57:16 2006 -0700
451
452     Fix many sparse warnings: Using plain integer as NULL pointer
453
454 commit b6b9f5885566e4c2df8e3319fe092c22f319983f
455 Author: Alan Coopersmith <alan.coopersmith@sun.com>
456 Date:   Tue Oct 10 13:46:17 2006 -0700
457
458     Fix lint warning: deallocating a pointer that could be NULL: library.c(266)
459
460 commit d0e12a97849871b0b2af04bf8d7a3839c54b31a8
461 Author: Alan Coopersmith <alan.coopersmith@sun.com>
462 Date:   Tue Oct 10 13:33:33 2006 -0700
463
464     Add XORG_WITH_LINT to allow checking code with lint/sparse/etc.
465
466 commit 932965298c244553f303fab3bdf23941cc40bb23
467 Author: Alan Coopersmith <alan.coopersmith@sun.com>
468 Date:   Fri Oct 6 16:44:37 2006 -0700
469
470     Use $prefix & $ICONDIR settings from configure for default path in manpage
471     
472     (Stop hardcoding /usr/X11R6 & /usr/share in the paths shown.)
473
474 commit f591196271e53c64e27cf41e5b6ae844a480cb3d
475 Author: Alan Coopersmith <alan.coopersmith@sun.com>
476 Date:   Fri Oct 6 16:22:52 2006 -0700
477
478     Xcursor.man formatting cleanups
479
480 commit 3c5f5860d6f85230f417ce6af30fc73ab75c437b
481 Author: Bart Massey <bart@po8.org>
482 Date:   Tue Sep 12 09:02:54 2006 -0700
483
484     Added missing dependency
485
486 commit c7d048dacf3fce6f3121cf0114fd08bb130130b8
487 Author: Alan Coopersmith <alan.coopersmith@sun.com>
488 Date:   Thu Aug 24 19:21:47 2006 -0700
489
490     Use version number from configure.ac in Xcursor.man instead of "Version 1.0"
491
492 commit 8c73ee726016dae6f56195d44339b4729121bcf2
493 Author: Alan Coopersmith <alan.coopersmith@sun.com>
494 Date:   Thu Aug 24 18:42:36 2006 -0700
495
496     Add *~ to .gitignore to skip over emacs droppings
497
498 commit c7886900f180da2c460d0a5926daee787e7258ea
499 Author: Alan Coopersmith <alan.coopersmith@sun.com>
500 Date:   Thu Aug 24 18:42:03 2006 -0700
501
502     Man page typo fixes (pimaps, directorys)
503
504 commit e0a501e91c270c0e99a55aa568f6df0d3d6e541d
505 Author: Chris Wilson <cpwilson@taz.qinetiq.com>
506 Date:   Sat Aug 12 19:55:44 2006 +0300
507
508     fix leak in header destruction
509     Fix a couple of if (!foo) free(foo); tests.
510
511 commit 2f08984396552c0719fbc3d3e1148157a1423376
512 Author: Alan Coopersmith <alan.coopersmith@sun.com>
513 Date:   Thu Jul 13 14:58:50 2006 -0700
514
515     renamed: .cvsignore -> .gitignore
516
517 commit c6f65af419d14a753459a71a671baafd84fa1330
518 Author: Daniel Stone <daniel@fooishbar.org>
519 Date:   Sat Jun 3 10:23:57 2006 +0000
520
521     Bug #5268: Fix small memory leak. (Matthias Clasen). Change some return 0s
522         to NULL. Bump to 1.1.7.
523
524 commit 8adc6fe181991af8befb0f365360e9a68357da29
525 Author: Eric Anholt <anholt@freebsd.org>
526 Date:   Thu Apr 27 17:26:28 2006 +0000
527
528     Look for cursors in datadir, not always /usr/share.
529
530 commit 3c69a6ef12aa43d5c9cc5cfbd76c6bea1fa2bd00
531 Author: Adam Jackson <ajax@nwnk.net>
532 Date:   Thu Apr 27 00:04:48 2006 +0000
533
534     Bump to 1.1.6
535
536 commit f9bc007d71f58db93b7eadeb8c77d0f90379c620
537 Author: Adam Jackson <ajax@nwnk.net>
538 Date:   Fri Apr 7 00:58:59 2006 +0000
539
540     Coverity #159: Prevent a possible NULL chase.
541
542 commit 1f862e619f12b54bee2efbb66f77c750184b191f
543 Author: Daniel Stone <daniel@fooishbar.org>
544 Date:   Sat Mar 4 21:00:40 2006 +0000
545
546     Bug #4439: Include Xlib.h.
547
548 commit 461b3c5c0e47eed1b4abf5189ba92bb70d700fa1
549 Author: Kevin E Martin <kem@kem.org>
550 Date:   Thu Dec 15 00:24:29 2005 +0000
551
552     Update package version number for final X11R7 release candidate.
553
554 commit aed42762a9fcfcf1b7729dc0a7014ea679d309eb
555 Author: Kevin E Martin <kem@kem.org>
556 Date:   Fri Dec 9 19:28:41 2005 +0000
557
558     Add icondir to xcursor.pc to be used when installing cursors.
559
560 commit 189c9672264c4b62f18f9da9422375b216dc7037
561 Author: Kevin E Martin <kem@kem.org>
562 Date:   Thu Dec 8 17:55:19 2005 +0000
563
564     Add configure options to allow hard-coded paths to be changed.
565
566 commit b8c92a26d01b14cb9d27cd30d261e24833d0c728
567 Author: Kevin E Martin <kem@kem.org>
568 Date:   Thu Dec 8 17:54:40 2005 +0000
569
570     Allow hard-coded paths to be configurable.
571
572 commit af09e8d8edb7d68367399336ca3163df4c713ffa
573 Author: Kevin E Martin <kem@kem.org>
574 Date:   Tue Dec 6 22:48:42 2005 +0000
575
576     Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
577
578 commit 47043f5e93df6a806bf298eca309e05159c271df
579 Author: Kevin E Martin <kem@kem.org>
580 Date:   Sat Dec 3 05:49:43 2005 +0000
581
582     Update package version number for X11R7 RC3 release.
583
584 commit a3ddd7c6aa895dd373a73957f0b18181d7f8f486
585 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
586 Date:   Mon Nov 28 22:03:05 2005 +0000
587
588     Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
589         update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
590
591 commit 328e88110f43b18268c1fde62e9ce7247a797699
592 Author: Kevin E Martin <kem@kem.org>
593 Date:   Sat Nov 19 07:15:41 2005 +0000
594
595     Update pkgconfig files to separate library build-time dependencies from
596         application build-time dependencies, and update package deps to work
597         with separate build roots.
598
599 commit 54d9a60a1891c1c1938db00d835b8fe0a12327c6
600 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
601 Date:   Sun Nov 13 17:59:28 2005 +0000
602
603     Use $(LIB_MAN_SUFFIX) instead of forcing man page into section 3.
604
605 commit f0dfdfc7b4ee020ffb83a9179b9d4d4a6139b5e1
606 Author: Kevin E Martin <kem@kem.org>
607 Date:   Wed Nov 9 21:31:19 2005 +0000
608
609     Bump version numbers for X11R6.9/X11R7 RC2.
610
611 commit c0773eea4b50162ae0b9b624a46079e71b8e49c2
612 Author: Kevin E Martin <kem@kem.org>
613 Date:   Wed Nov 9 21:19:12 2005 +0000
614
615     Update package version number for X11R7 RC2 release.
616
617 commit 345cf369206f0a2a03e842a108bd8f068da36d3f
618 Author: Kevin E Martin <kem@kem.org>
619 Date:   Tue Nov 1 15:11:51 2005 +0000
620
621     Update pkgcheck dependencies to work with separate build roots.
622
623 commit 7c7bdccde9d2208a9330099e3cd21060c60638be
624 Author: Adam Jackson <ajax@nwnk.net>
625 Date:   Wed Oct 19 22:26:55 2005 +0000
626
627     Bug #4244: Make XcursorSetTheme(dpy, NULL) restore the default theme.
628         (Frederico Mena-Quintero)
629
630 commit 4d4de72c697217ac155231d1761db065c9a778ee
631 Author: Kevin E Martin <kem@kem.org>
632 Date:   Wed Oct 19 02:48:09 2005 +0000
633
634     Update package version number for RC1 release.
635
636 commit b1bc7d7328ff2741e1c13151799422fee9e6d0cd
637 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
638 Date:   Thu Oct 13 02:22:47 2005 +0000
639
640     Use troff macros to prevent cpp eating C comments & #defines that are
641         supposed to appear in man page output.
642
643 commit 08ccddfa98d3e4daa9993a206ec0fa3cf9329cd1
644 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
645 Date:   Tue Oct 11 01:37:44 2005 +0000
646
647     Define HAVE_XFIXES
648
649 commit 7a5e36017905a3b7fe70362dc9712654c816c6a5
650 Author: Adam Jackson <ajax@nwnk.net>
651 Date:   Wed Aug 3 03:28:01 2005 +0000
652
653     Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with
654         a global configure cache don't get confused.
655
656 commit af4b88bba232af55484e8b82ce8abab6013e985e
657 Author: Kevin E Martin <kem@kem.org>
658 Date:   Fri Jul 29 21:22:51 2005 +0000
659
660     Various changes preparing packages for RC0:
661     - Verify and update package version numbers as needed
662     - Implement versioning scheme
663     - Change bug address to point to bugzilla bug entry form
664     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
665         reenable it)
666     - Fix makedepend to use pkgconfig and pass distcheck
667     - Update build script to build macros first
668     - Update modular Xorg version
669
670 commit b34368c667bd47db56bc7e2b36710a22bc3862b0
671 Author: Daniel Stone <daniel@fooishbar.org>
672 Date:   Sat Jul 16 06:35:32 2005 +0000
673
674     Change soversion to 1.0.2 with -version-number.
675
676 commit 9ffefcd641352900f9bf7cb06cbe04e91714b490
677 Author: Keith Packard <keithp@keithp.com>
678 Date:   Sat Jul 9 06:13:36 2005 +0000
679
680     Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
681
682 commit b5a724c201e0881fcb22738560597e333c39ba12
683 Author: Keith Packard <keithp@keithp.com>
684 Date:   Fri Jul 8 05:02:01 2005 +0000
685
686     Make sure XFIXES appears in LIBS line, fix up other pkg-config usage.
687
688 commit 45b0f06f132347e5eaabbc5ff294bc9016de75dd
689 Author: Daniel Stone <daniel@fooishbar.org>
690 Date:   Sun Jul 3 07:00:56 2005 +0000
691
692     Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
693     Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
694     Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
695         source files in the xserver/xorg tree, predicated on defines of
696         HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
697         <X11/fonts/foo.h>.
698
699 commit c010a3f076b2f93e2baf4a9472bf5f132266d2db
700 Author: Eric Anholt <anholt@freebsd.org>
701 Date:   Sun Jul 3 00:02:27 2005 +0000
702
703     There are no manpages in this directory, so don't try to include them in
704         EXTRA_DIST. Should fix the build.
705     Reported by: tinderbox
706
707 commit 0881bb3ce0ea793e279fcc8ddd16de6ed7e17471
708 Author: Kevin E Martin <kem@kem.org>
709 Date:   Sat Jul 2 06:35:03 2005 +0000
710
711     Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems
712
713 commit caa910e492e4d15208f3d179021687c25a84f36e
714 Author: Daniel Stone <daniel@fooishbar.org>
715 Date:   Wed Jun 29 18:46:53 2005 +0000
716
717     Import Xcursor 1.1.4 from freedesktop.org xlibs tree.
718
719 commit e67de73f5ca7ae854c18fa1500c8eaf412b44c6c
720 Author: Daniel Stone <daniel@fooishbar.org>
721 Date:   Mon Jun 13 16:44:53 2005 +0000
722
723     Bug #1043: Fix leak when creating animated cursors.
724
725 commit 89e52cde6eaf5e2d46198ee2fa16b67ef7e1dd32
726 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
727 Date:   Wed Jun 8 20:51:37 2005 +0000
728
729     Remove experiment with calling the man page file 4x
730
731 commit 5589b4f6a36f2c039adc81fa4d406574eeef35b3
732 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
733 Date:   Wed Jun 8 20:44:18 2005 +0000
734
735     Remove all the not found with pkgconfig stuff
736
737 commit 4070c0af6c7bfe12218181d56e8e3cbb86006d27
738 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
739 Date:   Wed Jun 8 19:15:43 2005 +0000
740
741     - Add Xcursor build system
742
743 commit 50911b052ce90d41cd0ae71f83352ffa45e7c0a4
744 Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
745 Date:   Sat Dec 4 00:42:47 2004 +0000
746
747     Encoding of numerous files changed to UTF-8
748
749 commit cbcf471d9157c88a506cd3f067253c8e64cb8e08
750 Author: Egbert Eich <eich@suse.de>
751 Date:   Fri Apr 23 18:43:40 2004 +0000
752
753     Merging XORG-CURRENT into trunk
754
755 commit fb1739bd2272fa45d9c04fe40517468a49660b37
756 Author: Egbert Eich <eich@suse.de>
757 Date:   Sun Mar 14 08:32:05 2004 +0000
758
759     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
760
761 commit bfcfbe061fb492f58ee6bd6dc6e90cedd1cccbbb
762 Author: Egbert Eich <eich@suse.de>
763 Date:   Wed Mar 3 12:11:23 2004 +0000
764
765     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
766
767 commit c450b7450372fa2f6660dafcbd3fb7cec9e046df
768 Author: Egbert Eich <eich@suse.de>
769 Date:   Thu Feb 26 13:35:32 2004 +0000
770
771     readding XFree86's cvs IDs
772
773 commit 79b8e8b996311665ae1fc8fa7e7d38270b3d9570
774 Author: Egbert Eich <eich@suse.de>
775 Date:   Thu Feb 26 09:22:42 2004 +0000
776
777     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
778
779 commit b39c8ec34b4464f78db534355541a4eb5688a999
780 Author: Kaleb Keithley <kaleb@freedesktop.org>
781 Date:   Thu Dec 4 22:02:56 2003 +0000
782
783     XFree86 4.3.99.901 (RC 1)
784
785 commit 969878fc6fed5e43b4f7e2e3ee46835d93d30dfd
786 Author: Kaleb Keithley <kaleb@freedesktop.org>
787 Date:   Tue Nov 25 19:28:09 2003 +0000
788
789     XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
790
791 commit 8387908965317cc3cf2072187c20f617609a13b7
792 Author: Kaleb Keithley <kaleb@freedesktop.org>
793 Date:   Fri Nov 14 16:48:48 2003 +0000
794
795     XFree86 4.3.0.1
796
797 commit 3b84b14bf06840d5cd446f2aba495108d23d66d7
798 Author: Kaleb Keithley <kaleb@freedesktop.org>
799 Date:   Fri Nov 14 16:48:48 2003 +0000
800
801     Initial revision