ChangeLog revision fef5d1ff
1commit 736d7ac5a94c7aa6761d50ab58339a3d9a116c51
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sat Sep 7 22:19:48 2013 -0700
4
5    libXv 1.0.10
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 4a7d2ca2438649e61b7dcb9491391ff6fbd482ac
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Fri Jul 5 21:19:29 2013 -0700
12
13    Remove fallback for _XEatDataWords, require libX11 1.6 for it
14    
15    _XEatDataWords was orignally introduced with the May 2013 security
16    patches, and in order to ease the process of delivering those,
17    fallback versions of _XEatDataWords were included in the X extension
18    library patches so they could be applied to older versions that didn't
19    have libX11 1.6 yet.   Now that we're past that hurdle, we can drop
20    the fallbacks and just require libX11 1.6 for building new versions
21    of the extension libraries.
22    
23    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
24
25commit 06d275959b5dd78c319d5200ca6d986934b18920
26Author: Alan Coopersmith <alan.coopersmith@oracle.com>
27Date:   Sat Jun 22 23:43:58 2013 -0700
28
29    Refactor error handling
30    
31    Reduce code duplication, make error checking & cleanup more consistent
32    
33    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
34
35commit 29b23d387e32d09e1b34682f01cee899a08a1176
36Author: Alan Coopersmith <alan.coopersmith@oracle.com>
37Date:   Sat Jun 22 21:47:34 2013 -0700
38
39    Add missing calls to _XEatDataWords when we are skipping _XRead
40    
41    If we failed to allocate the buffer to _XRead into, discard the
42    rest of the reply, instead of leaving it to confuse the reading
43    of the next reply.
44    
45    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
46
47commit 5a09a55b5b13280990465d83205e796bb8cd68ac
48Author: Alan Coopersmith <alan.coopersmith@oracle.com>
49Date:   Sat Jun 22 21:04:06 2013 -0700
50
51    Replace custom copy of GetReq macro with call to Xlib 1.5's _XGetRequest
52    
53    xvproto.h names don't match those required by the Xlibint.h GetReq* macros,
54    but at least we can rely on the _XGetRequest function for the bulk of the
55    work now, instead of duplicating it.
56    
57    Also clears clang warnings repeated for every request function:
58    
59    Xv.c:137:5: warning: cast from 'char *' to 'xvQueryExtensionReq *' increases re
60    quired alignment from 1 to 2 [-Wcast-align]
61        XvGetReq(QueryExtension, req);
62        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
63    ./Xvlibint.h:52:8: note: expanded from macro 'XvGetReq'
64            req = (xv##name##Req *)(dpy->last_req = dpy->bufptr);\
65                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66    Xv.c:137:5: warning: implicit conversion loses integer precision: 'int' to 'CAR
67    D8' (aka 'unsigned char') [-Wconversion]
68        XvGetReq(QueryExtension, req);
69        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
70    ./Xvlibint.h:53:30: note: expanded from macro 'XvGetReq'
71            req->reqType = info->codes->major_opcode;\
72                         ~ ~~~~~~~~~~~~~^~~~~~~~~~~~
73    
74    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
75
76commit ef2722e10b275d13d754d2b92e67f72b0716d070
77Author: Alan Coopersmith <alan.coopersmith@oracle.com>
78Date:   Sat Jun 22 20:33:13 2013 -0700
79
80    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
81    
82    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
83    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
84
85commit e73a2199f039e9ae772efb6be8d1db68eb346fa4
86Author: Alan Coopersmith <alan.coopersmith@oracle.com>
87Date:   Sat Jun 22 13:35:12 2013 -0700
88
89    Use pad_to_int32 macro instead of repeated (x + 3) & ~3 pattern
90    
91    Makes code clearer, and using ~3U instead of ~3 clears some signed int
92    warnings.
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95
96commit 4ced44196d6636006c9724a373c0d2ca0c12dc1e
97Author: Alan Coopersmith <alan.coopersmith@oracle.com>
98Date:   Sat Jun 22 11:20:13 2013 -0700
99
100    Fix sign conversion & comparison warnings from clang
101    
102    Clears up:
103    Xv.c:196:21: warning: implicit conversion changes signedness: 'CARD32' (aka 'unsigned int') to 'int' [-Wsign-conversion]
104      size = rep.length << 2;
105           ~ ~~~~~~~~~~~^~~~
106    Xv.c:212:41: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
107          if ((pas=(XvAdaptorInfo *)Xmalloc(size))==NULL) {
108                                    ~~~~~~~~^~~~~
109    Xv.c:236:43: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
110          pa->num_adaptors = rep.num_adaptors - ii;
111                           ~ ~~~~~~~~~~~~~~~~~^~~~
112    Xv.c:243:40: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
113          if ( (name = (char *)Xmalloc(size+1)) == NULL)
114                               ~~~~~~~~~~~~^~~
115    Xv.c:251:37: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
116          (void)strncpy(name, u.string, size);
117                ~~~~~~~                 ^~~~
118    Xv.c:260:36: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
119          if ((pfs=(XvFormat *)Xmalloc(size))==NULL) {
120                               ~~~~~~~~^~~~~
121    Xv.c:269:20: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
122          for (jj=0; jj<pa->num_formats; jj++) {
123                     ~~^~~~~~~~~~~~~~~~
124    Xv.c:259:29: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
125          size = pa->num_formats*sizeof(XvFormat);
126               ~ ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
127    Xv.c:305:16: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
128      for (ii=0; ii<pAdaptors->num_adaptors; ii++, pa++)
129                 ~~^~~~~~~~~~~~~~~~~~~~~~~~
130    Xv.c:356:21: warning: implicit conversion changes signedness: 'CARD32' (aka 'unsigned int') to 'int' [-Wsign-conversion]
131      size = rep.length << 2;
132           ~ ~~~~~~~~~~~^~~~
133    Xv.c:369:41: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
134      if ( (pes = (XvEncodingInfo *)Xmalloc(size)) == NULL) {
135                                    ~~~~~~~~^~~~~
136    Xv.c:392:45: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
137          pe->num_encodings = rep.num_encodings - jj;
138                            ~ ~~~~~~~~~~~~~~~~~~^~~~
139    Xv.c:397:40: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
140          if ( (name = (char *)Xmalloc(size+1)) == NULL) {
141                               ~~~~~~~~~~~~^~~
142    Xv.c:404:31: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
143          strncpy(name, u.string, size);
144          ~~~~~~~                 ^~~~
145    Xv.c:433:16: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
146      for (ii=0; ii<pEncodings->num_encodings; ii++, pe++) {
147                 ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
148    Xv.c:886:27: warning: comparison of integers of different signs: 'int' and 'CAR
149    D32' (aka 'unsigned int') [-Wsign-compare]
150                for (i = 0; i < rep.num_attributes; i++) {
151                            ~ ^ ~~~~~~~~~~~~~~~~~~
152    Xv.c:946:27: warning: comparison of integers of different signs: 'int' and 'CAR
153    D32' (aka 'unsigned int') [-Wsign-compare]
154                for (i = 0; i < rep.num_formats; i++) {
155                            ~ ^ ~~~~~~~~~~~~~~~
156    Xv.c:1100:5: warning: comparison of integers of different signs: 'int' and 'unsigned int' [-Wsign-compare]
157        SetReqLen(req, len, len);
158        ^~~~~~~~~~~~~~~~~~~~~~~~
159    X11/Xlibint.h:530:27: note: expanded from macro 'SetReqLen'
160        if ((req->length + n) > (unsigned)65535) { \
161                              ^ ~~~~~~~~~~~~~~~
162    Xv.c:1100:20: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion]
163        SetReqLen(req, len, len);
164        ~~~~~~~~~~~~~~~^~~~~~~~~
165    X11/Xlibint.h:532:21: note: expanded from macro 'SetReqLen'
166                MakeBigReq(req,n) \
167                               ^
168    X11/Xlibint.h:505:35: note: expanded from macro 'MakeBigReq'
169        ((CARD32 *)req)[1] = _BRlen + n + 2; \
170                                    ~ ^
171    
172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
173
174commit 89dc3ff457644271b1c633efa9682ae45e55d9d8
175Author: Alan Coopersmith <alan.coopersmith@oracle.com>
176Date:   Sat Jun 22 11:07:13 2013 -0700
177
178    Remove unnecessary casts from Xmalloc calls
179    
180    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
181    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
182
183commit 54851e0e72e2017c14c504459078c97d6112696b
184Author: Alan Coopersmith <alan.coopersmith@oracle.com>
185Date:   Sat Jun 22 19:58:20 2013 -0700
186
187    Adopt X.Org standard code style, with consistent indentation
188    
189    Having differing indent levels of 2, 3, & 4 spaces hurts my eyes.
190    
191    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
192
193commit d58f74ebfd0c56ffeb8e288c65592228af197a2e
194Author: Alan Coopersmith <alan.coopersmith@oracle.com>
195Date:   Sat Jun 22 19:06:09 2013 -0700
196
197    libXv 1.0.9
198    
199    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
200
201commit 22cc0c897a28a41d49fe68277bb3c002f54bbb48
202Author: Daphne Pfister <daphnediane@mac.com>
203Date:   Sat Jun 1 22:27:23 2013 -0400
204
205    Bug 65252: Ensure final name is nil-terminated & none point to uninitialized memory.
206    
207    This patch attempts to fix this bug by ensuring that there is at least one
208    nil byte at the end of all the name strings. This should prevent reading
209    past the end of the allocation as well as exposing uninitialized memory.
210    
211    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
212    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
213
214commit edfb6fc397686c1892603d0f86a9aadf14dbc12e
215Author: Alan Coopersmith <alan.coopersmith@oracle.com>
216Date:   Sat Jun 1 17:26:11 2013 -0700
217
218    XvQueryPortAttributes: add a comment explaining memory strategy
219    
220    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
221
222commit 179ed259e75a62e74532e36f52f3838deb2aac92
223Author: Alan Coopersmith <alan.coopersmith@oracle.com>
224Date:   Fri May 31 17:49:24 2013 -0700
225
226    libXv 1.0.8
227    
228    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
229
230commit 50fc4cb18069cb9450a02c13f80223ef23511409
231Author: Alan Coopersmith <alan.coopersmith@oracle.com>
232Date:   Sat Apr 13 00:03:03 2013 -0700
233
234    integer overflow in XvCreateImage() [CVE-2013-1989 3/3]
235    
236    num_planes is a CARD32 and needs to be bounds checked before bit shifting
237    and adding to sizeof(XvImage) to come up with the total size to allocate,
238    to avoid integer overflow leading to underallocation and writing data from
239    the network past the end of the allocated buffer.
240    
241    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
242    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
243
244commit 59301c1b5095f7dc6359d5b396dbbcdee7038270
245Author: Alan Coopersmith <alan.coopersmith@oracle.com>
246Date:   Sat Apr 13 00:03:03 2013 -0700
247
248    integer overflow in XvListImageFormats() [CVE-2013-1989 2/3]
249    
250    num_formats is a CARD32 and needs to be bounds checked before multiplying
251    by sizeof(XvImageFormatValues) to come up with the total size to allocate,
252    to avoid integer overflow leading to underallocation and writing data from
253    the network past the end of the allocated buffer.
254    
255    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
256    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
257
258commit 15ab7dec17d686c38f2c82ac23a17cac5622322a
259Author: Alan Coopersmith <alan.coopersmith@oracle.com>
260Date:   Sat Apr 13 00:16:14 2013 -0700
261
262    buffer overflow in XvQueryPortAttributes() [CVE-2013-2066]
263    
264    Each attribute returned in the reply includes the number of bytes
265    to read for its marker.  We had been always trusting it, and never
266    validating that it wouldn't cause us to write past the end of the
267    buffer we allocated based on the reported text_size.
268    
269    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
271
272commit 6e1b743a276651195be3cd68dff41e38426bf3ab
273Author: Alan Coopersmith <alan.coopersmith@oracle.com>
274Date:   Sat Apr 13 00:03:03 2013 -0700
275
276    integer overflow in XvQueryPortAttributes() [CVE-2013-1989 1/3]
277    
278    The num_attributes & text_size members of the reply are both CARD32s
279    and need to be bounds checked before multiplying & adding them together
280    to come up with the total size to allocate, to avoid integer overflow
281    leading to underallocation and writing data from the network past the
282    end of the allocated buffer.
283    
284    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
285    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
286
287commit 79362c764a6df7e7fbe5247756bdbf60f3a58baf
288Author: Alan Coopersmith <alan.coopersmith@oracle.com>
289Date:   Sat Apr 13 00:28:34 2013 -0700
290
291    Use _XEatDataWords to avoid overflow of rep.length shifting
292    
293    rep.length is a CARD32, so rep.length << 2 could overflow in 32-bit builds
294    
295    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
296
297commit ed13edeac5adc2e6afcd87f63b5ae1ff9ad47958
298Author: Colin Walters <walters@verbum.org>
299Date:   Wed Jan 4 17:37:06 2012 -0500
300
301    autogen.sh: Implement GNOME Build API
302    
303    http://people.gnome.org/~walters/docs/build-api.txt
304    
305    Signed-off-by: Adam Jackson <ajax@redhat.com>
306
307commit 1006d44b8674b5d9c5d7e893878776fbd34dbed2
308Author: Adam Jackson <ajax@redhat.com>
309Date:   Tue Jan 15 14:28:48 2013 -0500
310
311    configure: Remove AM_MAINTAINER_MODE
312    
313    Signed-off-by: Adam Jackson <ajax@redhat.com>
314
315commit ddec3b412e1d857d1a2daa75df61de377e1de9bd
316Author: Thomas Klausner <wiz@NetBSD.org>
317Date:   Tue Jul 17 21:56:28 2012 +0200
318
319    Uppercase SH arguments.
320    
321    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
322    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
323    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
324
325commit 0f4fa1820041394e879517abb49c0391ecc796f7
326Author: Alan Coopersmith <alan.coopersmith@oracle.com>
327Date:   Wed Mar 7 21:25:38 2012 -0800
328
329    libXv 1.0.7
330    
331    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
332
333commit de5e2271b54b7fe8bb3f8b66a70b5b87853f51a2
334Author: Alan Coopersmith <alan.coopersmith@oracle.com>
335Date:   Thu Nov 10 21:45:11 2011 -0800
336
337    Fix gcc -Wwrite-strings warnings
338    
339    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
340
341commit ff45155aa59c22aa5abc5ffe941dfe3b0f4c288f
342Author: Jeremy Huddleston <jeremyhu@apple.com>
343Date:   Wed Oct 5 20:59:37 2011 -0700
344
345    XvQueryExtension doesn't return XvBadAlloc
346    
347    https://bugs.freedesktop.org/show_bug.cgi?id=22829
348    
349    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
350
351commit 21ce77de0fc1b92bb55699df7e93dd1aae988fc5
352Author: Alan Coopersmith <alan.coopersmith@oracle.com>
353Date:   Fri Sep 16 22:56:12 2011 -0700
354
355    Strip trailing whitespace
356    
357    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
358    git diff -w & git diff -b show no diffs from this change
359    
360    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
361
362commit 7091e73f39b813adcc8fa5e61ad336ba063d7e00
363Author: Gaetan Nadon <memsize@videotron.ca>
364Date:   Wed Feb 2 11:43:45 2011 -0500
365
366    config: comment, minor upgrade, quote and layout configure.ac
367    
368    Group statements per section as per Autoconf standard layout
369    Quote statements where appropriate.
370    Autoconf recommends not using dnl instead of # for comments
371    
372    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
373    Add AC_CONFIG_SRCDIR([Makefile.am])
374    Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS
375    No functional configuration changes
376    
377    This helps automated maintenance and release activities.
378    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
379
380commit 50a2f154f20763c9e98bdcf705fa366c87c6bae4
381Author: Gaetan Nadon <memsize@videotron.ca>
382Date:   Fri Jan 28 19:41:37 2011 -0500
383
384    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
385    
386    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
387
388commit b9b6680cbc95501af70c3597bfdd51d17aace695
389Author: Gaetan Nadon <memsize@videotron.ca>
390Date:   Thu Jan 27 18:50:15 2011 -0500
391
392    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
393    
394    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
395    AC_PROG_C_C99. This sets gcc with -std=gnu99.
396    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
397    
398    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
399
400commit e34fff44ebc4f8c258df127f6f80d0a1aa86a25d
401Author: Alan Coopersmith <alan.coopersmith@oracle.com>
402Date:   Fri Oct 29 17:52:32 2010 -0700
403
404    libXv 1.0.6
405    
406    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
407
408commit 6e0da1da31552faaba26a351be0a4cf2d5964b05
409Author: Alan Coopersmith <alan.coopersmith@oracle.com>
410Date:   Fri Oct 29 17:51:53 2010 -0700
411
412    Sun's copyrights now belong to Oracle
413    
414    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
415
416commit 4c2bc9a94ee759423adbc4e7c99b9bf9fea692ec
417Author: Jesse Adkins <jesserayadkins@gmail.com>
418Date:   Tue Sep 28 13:30:04 2010 -0700
419
420    Purge cvs tags.
421    
422    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
423    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
424
425commit ec92e24e86363fcbc14f8dce9739a430f68b998f
426Author: Gaetan Nadon <memsize@videotron.ca>
427Date:   Wed Aug 18 17:29:15 2010 -0400
428
429    man: whitespace management
430    
431    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
432
433commit 7bb70e6f8f394775d5d7ed7035a6d4b2accd2892
434Author: Gaetan Nadon <memsize@videotron.ca>
435Date:   Wed Aug 18 17:23:31 2010 -0400
436
437    man: remove unrequired local fix for bug 5628
438    
439    Local fix in CVS for bug 5628 is not required
440    as the problem has been fixed in
441    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
442    
443    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
444
445commit 14cf5e3d19488f9a36824a01d4aba4a7f5ebc1cd
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Thu Jul 8 15:21:36 2010 -0700
448
449    config: upgrade to util-macros 1.8 for additional man page support
450    
451    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
452    The value of MAN_SUBST is the same for all X.Org packages.
453    
454    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
455    Enables use of platform appropriate version of sed.
456    
457    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
458
459commit e106f955dfc23798975ef14b3d3400aff39eced9
460Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
461Date:   Thu Jul 1 07:07:12 2010 -0300
462
463    Purge macro NEED_REPLIES
464    
465    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
466    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
467    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
468
469commit 481033e52111a42ae80c2814a499a068d7dc4771
470Author: Gaetan Nadon <memsize@videotron.ca>
471Date:   Mon Mar 29 16:50:34 2010 -0400
472
473    config: update AC_PREREQ statement to 2.60
474    
475    Unrelated to the previous patches, the new value simply reflects
476    the reality that the minimum level for autoconf to configure
477    all x.org modules is 2.60 dated June 2006.
478    
479    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
480    
481    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
482
483commit ea333fad90bce73c95a5ac310c127e22d6b41c6c
484Author: Gaetan Nadon <memsize@videotron.ca>
485Date:   Mon Mar 29 14:53:49 2010 -0400
486
487    config: remove the pkgconfig pc.in file from EXTRA_DIST
488    
489    Automake always includes it in the tarball.
490    
491    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
492
493commit 917a09fe40630d9ba2ac7f2f48636989f3163580
494Author: Alan Coopersmith <alan.coopersmith@sun.com>
495Date:   Thu Jan 14 20:55:17 2010 -0800
496
497    Update Sun license notices to current X.Org standard form
498    
499    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
500
501commit f0225573605729797a0edd00276f4704f9cda3c2
502Author: Gaetan Nadon <memsize@videotron.ca>
503Date:   Fri Nov 27 20:56:04 2009 -0500
504
505    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
506    
507    Now that the INSTALL file is generated.
508    Allows running make maintainer-clean.
509
510commit f6ab500cf3d00bfa49070007c006e500253b6d84
511Author: Gaetan Nadon <memsize@videotron.ca>
512Date:   Wed Oct 28 14:09:10 2009 -0400
513
514    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
515    
516    Add missing INSTALL file. Use standard GNU file on building tarball
517    README may have been updated
518    Remove AUTHORS file as it is empty and no content available yet.
519    Remove NEWS file as it is empty and no content available yet.
520
521commit fec734de503d63bb0abce9088be2e6655e82f800
522Author: Gaetan Nadon <memsize@videotron.ca>
523Date:   Tue Oct 27 15:07:26 2009 -0400
524
525    Deploy the new XORG_DEFAULT_OPTIONS #24242
526    
527    This macro aggregate a number of existing macros that sets commmon
528    X.Org components configuration options. It shields the configuration file from
529    future changes.
530
531commit f0b191321146550b88a94233b9677e32044b6c0e
532Author: Gaetan Nadon <memsize@videotron.ca>
533Date:   Mon Oct 26 22:08:43 2009 -0400
534
535    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
536    
537    ChangeLog filename is known to Automake and requires no further
538    coding in the makefile.
539
540commit 9ae8551458ee56b7ea19066023da64c7e24ea9f3
541Author: Gaetan Nadon <memsize@videotron.ca>
542Date:   Thu Oct 22 12:34:19 2009 -0400
543
544    .gitignore: use common defaults with custom section # 24239
545    
546    Using common defaults will reduce errors and maintenance.
547    Only the very small or inexistent custom section need periodic maintenance
548    when the structure of the component changes. Do not edit defaults.
549
550commit 05974c72286a9556ebf5ff541967fa53f75a55a8
551Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
552Date:   Wed Oct 21 12:47:26 2009 -0700
553
554    This is not a GNU project, so declare it foreign.
555    
556    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
557    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
558    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
559    > > was quite annoying to work around since 'autoreconf -fvi' replaces
560    > > it and git wants to commit it.  Should these files even be in git?
561    > > Can I nuke them for the betterment of humanity and since they get
562    > > created by autoreconf anyways?
563    >
564    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
565    
566    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
567    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
568    of the INSTALL file. It is also part of the 24206 solution.
569    
570    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
571
572commit 5be9a0099a83d1acf464640e930518a4c46c0920
573Author: Alan Coopersmith <alan.coopersmith@sun.com>
574Date:   Sat Oct 3 02:12:52 2009 -0700
575
576    libXv 1.0.5
577    
578    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
579
580commit 5aa62bb376608cd0350e46263dec74f861019431
581Author: Alan Coopersmith <alan.coopersmith@sun.com>
582Date:   Sat Oct 3 01:53:56 2009 -0700
583
584    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
585    
586    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
587
588commit 4d189188c913e6956344689802a582589db04abe
589Author: Alan Coopersmith <alan.coopersmith@sun.com>
590Date:   Sat Oct 3 01:31:44 2009 -0700
591
592    Convert documentation from xv-library-v2.2.txt into man pages
593    
594    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
595
596commit 7303af622984579e600893934a3958c0654d57bf
597Author: Alan Coopersmith <alan.coopersmith@sun.com>
598Date:   Fri Oct 2 08:55:52 2009 -0700
599
600    Man page cleanups and formatting fixes
601    
602     - Convert man page section headings to traditional style/names
603       Make them all caps, and use 'synopsis' instead of 'syntax'
604     - Strip trailing whitespace from man pages
605     - Add return types to function prototypes
606     - Fix unbalanced quoting and other formatting issues
607     - Use .BR for formatting man page references
608     - Add "libXv Functions" to man page header
609    
610    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
611
612commit ea79759a6940855dab10472a876e784fb8494eee
613Author: Alan Coopersmith <alan.coopersmith@sun.com>
614Date:   Thu Oct 1 23:04:56 2009 -0700
615
616    Move xv-library-v2.2.txt document from xorg-docs
617    
618    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
619
620commit dbf88774a77d91f3f7996071dfccf61636afa77b
621Author: Alan Coopersmith <alan.coopersmith@sun.com>
622Date:   Sat May 9 17:13:11 2009 -0700
623
624    Adjust flags definitions to fix lint library build
625    
626    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
627
628commit 7cc28e8ae807e69663e0a73cd12edf9963277a2d
629Author: Alan Coopersmith <alan.coopersmith@sun.com>
630Date:   Mon Feb 2 20:34:37 2009 -0800
631
632    Add README with pointers to mailing list, bugzilla & git repos
633    
634    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
635
636commit 245b7cffe78203eeb265ac73177ed258471cb227
637Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
638Date:   Mon Feb 2 13:58:34 2009 -0200
639
640    Janitor: make distcheck, compiler warnings, .gitignore.
641
642commit 2c0dc990a1ad96b71c95800d83378413eab63dbb
643Author: Alan Coopersmith <alan.coopersmith@sun.com>
644Date:   Mon Mar 17 20:01:01 2008 -0700
645
646    Version bump: 1.0.4
647
648commit acb78abb510e7e69e74fb3bba80d8ceaf2af7ce4
649Author: Matthieu Herrb <matthieu.herrb@laas.fr>
650Date:   Sun Mar 9 08:43:44 2008 +0100
651
652    nuke RCS Ids
653
654commit d455a1d9ae336a397a1b1a08228b7faa1024c1aa
655Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
656Date:   Mon Aug 20 19:02:40 2007 -0300
657
658    get rid of ancient XFree86 CVS Id tags
659
660commit 8b0752135f84edebc5e476f19069c8d78676f416
661Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
662Date:   Mon Aug 20 18:58:44 2007 -0300
663
664    convert manpages prototypes to C ANSI format
665    
666    Closes: #8360 (libXv man pages should be
667    converted to ANSI prototypes)
668
669commit 20d07bb9ba2bca56e3f02b4b878377eded241059
670Author: Daniel Stone <daniel@fooishbar.org>
671Date:   Sat Dec 16 01:31:51 2006 +0200
672
673    bump to 1.0.3
674
675commit 2f0089d24ab28f3325a5da7a136873eefb0bd97f
676Author: Daniel Stone <daniel@fooishbar.org>
677Date:   Wed Dec 6 19:00:07 2006 +0200
678
679    Makefile.am: make ChangeLog hook safer
680    Make ChangeLog hook as safe as possible.
681
682commit 978e98c43245671b4fdedb42371260f5fa139f14
683Author: Alan Coopersmith <alan.coopersmith@sun.com>
684Date:   Mon Sep 25 14:49:45 2006 -0700
685
686    Bump version number to 1.0.2
687
688commit 1dd351499ee692bb71eee4cffc305431843cfb87
689Author: Alan Coopersmith <alan.coopersmith@sun.com>
690Date:   Fri Sep 22 19:06:30 2006 -0700
691
692    Fill in AUTHORS & COPYING files
693
694commit e5cb03cfa7386e13bede2d33d06be5369ab2a5d2
695Author: Alan Coopersmith <alan.coopersmith@sun.com>
696Date:   Tue Sep 19 15:06:27 2006 -0700
697
698    Correct description of dpy argument in libXv function man pages
699    
700    (Previous description applies to programs, not functions - you must supply a
701     valid Display pointer to functions, there is no fallback to $DISPLAY.)
702
703commit 5dc20e33bc29f1efd88ed1cf5e83943ab53b9ac6
704Author: Alan Coopersmith <alan.coopersmith@sun.com>
705Date:   Tue Sep 19 13:25:27 2006 -0700
706
707    Fix man page typos
708
709commit dd25684d6f67b8c5a836b98d224ac6bf21076972
710Author: Alan Coopersmith <alan.coopersmith@sun.com>
711Date:   Mon Sep 18 16:29:46 2006 -0700
712
713    Coverity CID #580: XvQueryEncodings Returned without freeing storage "pes"
714    
715    Free the portion of the encoding list we had already filled in if we get
716    an error allocating memory for a list entry.
717
718commit 8681d431516979dcffd1ca7a65d47026d8ad0336
719Author: Alan Coopersmith <alan.coopersmith@sun.com>
720Date:   Mon Sep 18 16:14:11 2006 -0700
721
722    Add hooks for running code checkers like sparse & lint over the source
723
724commit d19e0d1fe15de6b9a2bfffe30bd041497c021eaf
725Author: Alan Coopersmith <alan.coopersmith@sun.com>
726Date:   Mon Sep 18 16:13:16 2006 -0700
727
728    Add argument types to static function prototypes to clear sparse & lint warnings
729
730commit 3c80665e7c53db021b52ad267c12c6b4f43e7c3a
731Author: Alan Coopersmith <alan.coopersmith@sun.com>
732Date:   Mon Sep 18 15:45:50 2006 -0700
733
734    Replace static Changelog with dist-hook to generate from git log
735
736commit d968d8b6777f21b799a99c9652c27e39da319b00
737Author: Alan Coopersmith <alan.coopersmith@sun.com>
738Date:   Mon Sep 18 15:43:59 2006 -0700
739
740    Add *~ to .gitignore to skip emacs droppings
741
742commit abab8955bdb30ffe74dc3b8fe2e6b009a2d2cf3d
743Author: Alan Coopersmith <alan.coopersmith@sun.com>
744Date:   Thu Jul 13 14:59:10 2006 -0700
745
746    renamed: .cvsignore -> .gitignore
747
748commit 8bf896eb20d6752f31b7d966ff6d8c3f905b536d
749Author: Kevin E Martin <kem@kem.org>
750Date:   Wed Dec 21 02:30:06 2005 +0000
751
752    Update package version for X11R7 release.
753
754commit d54ce4a8f14bcb3d027c1bf8f46e215caf596dad
755Author: Adam Jackson <ajax@nwnk.net>
756Date:   Mon Dec 19 16:28:27 2005 +0000
757
758    Stub COPYING files
759
760commit 6561f50b1ac74ebb02ec13d434af1e8bef50fd99
761Author: Kevin E Martin <kem@kem.org>
762Date:   Thu Dec 15 00:24:35 2005 +0000
763
764    Update package version number for final X11R7 release candidate.
765
766commit e495ba278269a66eab6829b796e7fa32b79dbc2e
767Author: Kevin E Martin <kem@kem.org>
768Date:   Tue Dec 6 22:48:45 2005 +0000
769
770    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
771
772commit 4cf396de99b15b48751ece43e74f0aeb60ab5d50
773Author: Kevin E Martin <kem@kem.org>
774Date:   Sat Dec 3 05:49:45 2005 +0000
775
776    Update package version number for X11R7 RC3 release.
777
778commit 4ff8025f6d0c9ef14e500d123613ccee45c8c23e
779Author: Kevin E Martin <kem@kem.org>
780Date:   Sat Dec 3 04:41:51 2005 +0000
781
782    Add check and cflags for malloc(0) returning NULL.
783
784commit 4c738dba961b3eae69e466a0bfcd8e6e3e539675
785Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
786Date:   Mon Nov 28 22:03:06 2005 +0000
787
788    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
789        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
790
791commit 9460f736b6f61687b20e91e0a02aa81c879d7e4f
792Author: Eric Anholt <anholt@freebsd.org>
793Date:   Sun Nov 20 23:17:41 2005 +0000
794
795    Add/improve libs .cvsignores.
796
797commit ed2d19981e048a31d3a594341787f0505d4dd6a8
798Author: Kevin E Martin <kem@kem.org>
799Date:   Sat Nov 19 07:15:43 2005 +0000
800
801    Update pkgconfig files to separate library build-time dependencies from
802        application build-time dependencies, and update package deps to work
803        with separate build roots.
804
805commit 768933f26103bd9324e3c3efbc287ca21a2776b3
806Author: Kevin E Martin <kem@kem.org>
807Date:   Wed Oct 19 02:48:12 2005 +0000
808
809    Update package version number for RC1 release.
810
811commit 6159966aa69254620b25552bb09ae00ef31798ef
812Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
813Date:   Tue Oct 18 00:00:09 2005 +0000
814
815    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to
816        work better with BSD make
817
818commit 0b5be2efbcd3d405f1d84b6b31add361a39f411d
819Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
820Date:   Thu Oct 13 05:13:36 2005 +0000
821
822    doc/man/Xv/Xv.man
823    doc/man/Xv/XvFreeAdaptorInfo.man
824    doc/man/Xv/XvFreeEncodingInfo.man
825    doc/man/Xv/XvGetPortAttribute.man
826    doc/man/Xv/XvGetStill.man
827    doc/man/Xv/XvGetVideo.man
828    doc/man/Xv/XvGrabPort.man
829    doc/man/Xv/XvPortNotify.man
830    doc/man/Xv/XvPutStill.man
831    doc/man/Xv/XvPutVideo.man
832    doc/man/Xv/XvQueryAdaptors.man
833    doc/man/Xv/XvQueryBestSize.man
834    doc/man/Xv/XvQueryEncodings.man
835    doc/man/Xv/XvQueryExtension.man
836    doc/man/Xv/XvSelectPortNotify.man
837    doc/man/Xv/XvSelectVideoNotify.man
838    doc/man/Xv/XvSetPortAttribute.man
839    doc/man/Xv/XvStopVideo.man
840    doc/man/Xv/XvUngrabPort.man
841    doc/man/Xv/XvVideoNotify.man Convert hardcoded 3X to substitutable
842        __libmansuffix__ like other library man pages.
843
844commit 0b0ae11e4d5872f55bd412f7876c4b526d420fe0
845Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
846Date:   Thu Oct 13 04:47:38 2005 +0000
847
848    [lib/Xv]
849    Use sed to fill in variables in man pages
850
851commit bc34a489531d1a71857a5d68e4c256d1dacb89ae
852Author: Adam Jackson <ajax@nwnk.net>
853Date:   Wed Aug 3 03:28:02 2005 +0000
854
855    Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with
856        a global configure cache don't get confused.
857
858commit 45bb17c155ce80c817e29144e960b02596ed7214
859Author: Kevin E Martin <kem@kem.org>
860Date:   Fri Jul 29 21:22:53 2005 +0000
861
862    Various changes preparing packages for RC0:
863    - Verify and update package version numbers as needed
864    - Implement versioning scheme
865    - Change bug address to point to bugzilla bug entry form
866    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
867        reenable it)
868    - Fix makedepend to use pkgconfig and pass distcheck
869    - Update build script to build macros first
870    - Update modular Xorg version
871
872commit ca932bc2cfaa0a7faaf9c0d870ea4314de24855e
873Author: Daniel Stone <daniel@fooishbar.org>
874Date:   Sat Jul 16 07:41:25 2005 +0000
875
876    Set soversion to 1.0.0 with -version-number.
877
878commit 2ece1ee39d248966d2399b30b9de6307db86f4b5
879Author: Daniel Stone <daniel@fooishbar.org>
880Date:   Tue Jul 12 01:10:57 2005 +0000
881
882    Add Xvlib.h, change soversion to 1.0.0.
883
884commit 6ed09fe071574abdf5f7c08d9f1de41f4177e5df
885Author: Daniel Stone <daniel@fooishbar.org>
886Date:   Tue Jul 12 00:35:54 2005 +0000
887
888    Change version to 2.2.0.
889
890commit f27ed2a7dfd43345ae820186a033c301d77861ad
891Author: Daniel Stone <daniel@fooishbar.org>
892Date:   Tue Jul 12 00:34:54 2005 +0000
893
894    Typo fix.
895
896commit 9db3c882e7571eebc98d0070c3ccbc7633b57604
897Author: Keith Packard <keithp@keithp.com>
898Date:   Sat Jul 9 06:53:49 2005 +0000
899
900    Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
901
902commit 1b0c54229a5259677eab3f80cf8baedc1ca802e5
903Author: Daniel Stone <daniel@fooishbar.org>
904Date:   Sun Jul 3 07:00:57 2005 +0000
905
906    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
907    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
908    Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
909        source files in the xserver/xorg tree, predicated on defines of
910        HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
911        <X11/fonts/foo.h>.
912
913commit a0abd747a0203ddf590fd0f4973f12dd0a5fc48d
914Author: Kevin E Martin <kem@kem.org>
915Date:   Sat Jul 2 06:35:03 2005 +0000
916
917    Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems
918
919commit 9064f83cdb11b1515fec1c9f33bd7397ad7f492b
920Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
921Date:   Fri Jul 1 20:09:12 2005 +0000
922
923    xtrap.pc.in: s/Xfixes/XTrap/ xi.pc.in: s/Xt/Xi/ Xv/src/Makefile.am: remove
924        whitespace after backslash modularizeapp.sh: s/destkop/desktop/
925        modular/symlink.sh: Add bitmaps for xeyes, system.xsm for xsm, and
926        Xvidtune.cpp for xvidtune. Also comment out non-existing mga_bios.h
927    Check in buildsystems for xsetroot, xsm, xstdcmap, xtrap, and xvinfo
928
929commit dd829239e989de7b7affc504fc29da673d1d46d5
930Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
931Date:   Tue Jun 21 15:41:36 2005 +0000
932
933    lib/XScrnSaver/configure.ac
934    lib/XScrnSaver/src/Makefile.am
935    lib/Xfontcache/configure.ac
936    lib/Xfontcache/src/Makefile.am
937    lib/Xinerama/configure.ac
938    lib/Xinerama/src/Makefile.am
939    lib/Xtst/configure.ac
940    lib/Xv/configure.ac
941    lib/XvMC/configure.ac
942    lib/dmx/configure.ac Add missing xext.pc and xextproto.pc Add DEP_CFLAGS to
943        src/Makefile.am
944
945commit ea1bfd2bef80ed33740916dfc8118ca8ac94a0eb
946Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
947Date:   Mon Jun 13 20:30:01 2005 +0000
948
949    - Add Xv man pages
950
951commit 3e71b1e06264f84428e04264b740a634cd7a5499
952Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
953Date:   Mon Jun 13 19:55:32 2005 +0000
954
955    - Add Xv to symlink.sh
956    - Add Xv build system
957
958commit 7306d726bfd8ba10d7ad75f8167dc3ddd85b65e6
959Author: Egbert Eich <eich@suse.de>
960Date:   Fri Apr 23 18:43:55 2004 +0000
961
962    Merging XORG-CURRENT into trunk
963
964commit 71d90c59573b4ef0f90e3f9bde03efd6dcf2912e
965Author: Egbert Eich <eich@suse.de>
966Date:   Sun Mar 14 08:32:27 2004 +0000
967
968    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
969
970commit 7cb88c27d6784873439ae6bdd22d78784eae41da
971Author: Egbert Eich <eich@suse.de>
972Date:   Wed Mar 3 12:11:32 2004 +0000
973
974    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
975
976commit 1faf3c691266e6f9a40914900eb6c94bd639ffb0
977Author: Egbert Eich <eich@suse.de>
978Date:   Thu Feb 26 13:35:34 2004 +0000
979
980    readding XFree86's cvs IDs
981
982commit e2399deda299a091cbd99cebf363595534a8ea55
983Author: Egbert Eich <eich@suse.de>
984Date:   Thu Feb 26 09:22:48 2004 +0000
985
986    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
987
988commit fe30a03a47c336d508667bb0477383f389e13b5e
989Author: Kaleb Keithley <kaleb@freedesktop.org>
990Date:   Thu Dec 4 22:02:57 2003 +0000
991
992    XFree86 4.3.99.901 (RC 1)
993
994commit 22a0d01c7610f366cf3cec9e7f7cf5968dcc285e
995Author: Kaleb Keithley <kaleb@freedesktop.org>
996Date:   Tue Nov 25 19:28:16 2003 +0000
997
998    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
999
1000commit ddef819383953954d9514eab7803367ef20dee82
1001Author: Kaleb Keithley <kaleb@freedesktop.org>
1002Date:   Fri Nov 14 16:48:49 2003 +0000
1003
1004    XFree86 4.3.0.1
1005
1006commit 355f676a4ff26d8fcdfdbe64e791e60bc579e339
1007Author: Kaleb Keithley <kaleb@freedesktop.org>
1008Date:   Fri Nov 14 16:48:49 2003 +0000
1009
1010    Initial revision
1011