1commit c8b440e96b761c19676fb910c7ec20580197a4aa
2Author: Matt Turner <mattst88@gmail.com>
3Date:   Tue Jan 17 14:36:45 2017 -0800
4
5    xf86-video-glint 1.2.9
6
7    Signed-off-by: Matt Turner <mattst88@gmail.com>
8
9commit 2eb4d03d2280deec4d6f1b06aaa16477a641af9a
10Author: Adam Jackson <ajax@redhat.com>
11Date:   Tue Jul 19 10:03:56 2016 -0400
12
13    Adapt Block/WakeupHandler signature for ABI 23
14
15    Signed-off-by: Adam Jackson <ajax@redhat.com>
16
17commit 5b22c69898330d2e321596f7061b91362c0e6216
18Author: Michael Lorenz <macallan@NetBSD.org>
19Date:   Thu Feb 19 15:26:46 2015 +0100
20
21    Fix I2C for DDC2.
22
23    When doing DDC2 on Permedia make sure to clear the USE_MONID bit
24    in the DDCdata register so the i2c bits actually do something.
25
26    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
27
28commit b54f27f0de0558880b2146a4315a99907eb72249
29Author: Adam Jackson <ajax@redhat.com>
30Date:   Mon Aug 11 12:29:28 2014 -0400
31
32    Pass the pci device through to fbdevHWInit
33
34    Signed-off-by: Adam Jackson <ajax@redhat.com>
35
36commit 073d5b0b392781bf4a6aa7f9e2dbe2ae51caed2c
37Author: Adam Jackson <ajax@redhat.com>
38Date:   Tue Sep 25 08:54:38 2012 -0400
39
40    Remove mibstore.h
41
42    Signed-off-by: Adam Jackson <ajax@redhat.com>
43
44commit be79ca10f6f3fd6d7f8aac2e5ae5d8b84480bd83
45Author: Dave Airlie <airlied@redhat.com>
46Date:   Tue Jul 17 16:05:09 2012 +1000
47
48    xf86-video-glint: bump to version 1.2.8
49
50    Signed-off-by: Dave Airlie <airlied@redhat.com>
51
52commit e85b1f9595aa3cf7f2747b2aa1add1decd57ab2e
53Author: Dave Airlie <airlied@redhat.com>
54Date:   Mon Jul 16 04:20:02 2012 +0100
55
56    glint: build against server with no XAA support.
57
58    This removes the XAA bits so it builds against latest server.
59
60    Signed-off-by: Dave Airlie <airlied@redhat.com>
61
62commit 062923d3ca1a9ab5ee5226c0d87bc5ec6d5e62c4
63Author: Dave Airlie <airlied@redhat.com>
64Date:   Wed Jun 6 12:14:42 2012 +0100
65
66    glint: port to new compat API
67
68    Signed-off-by: Dave Airlie <airlied@redhat.com>
69
70commit c4796200c2d322a59ccf2eeb2df3be874507fd48
71Author: Matt Turner <mattst88@gmail.com>
72Date:   Wed Feb 15 23:12:23 2012 -0500
73
74    xf86-video-glint 1.2.7
75
76    Signed-off-by: Matt Turner <mattst88@gmail.com>
77
78commit 288243a9301c38baae63ec66ba344f0a8245b2ee
79Author: Matt Turner <mattst88@gmail.com>
80Date:   Wed Jan 25 13:07:23 2012 -0500
81
82    Remove uses of xf86PciInfo.h
83
84    Signed-off-by: Matt Turner <mattst88@gmail.com>
85
86commit 754a81fc5f91be4d35853953c1a803a421b0379d
87Author: Adam Jackson <ajax@redhat.com>
88Date:   Mon Dec 19 16:27:31 2011 -0500
89
90    Fall back to shadowfb if XAA is unavailable
91
92    Signed-off-by: Adam Jackson <ajax@redhat.com>
93
94commit c539e59ba332fba669e025f8d0d680d2a2b1c9ff
95Author: Jeremy Huddleston <jeremyhu@apple.com>
96Date:   Sat Oct 29 17:12:58 2011 -0700
97
98    Disable PC98 code on newer servers.
99
100    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
101
102commit 0aaa00ac0d0304737e0a3fd79695537c6e3a07d4
103Author: Matt Turner <mattst88@gmail.com>
104Date:   Tue Sep 6 15:19:36 2011 -0400
105
106    xf86-video-glint 1.2.6
107
108commit ca7c202da8d291eba9c68c149eb9530be1d66880
109Author: Mark Kettenis <mark.kettenis@xs4all.nl>
110Date:   Tue Mar 1 07:32:26 2011 +0000
111
112    Fix uploading YV12 data to texture buffer on BE machines
113
114    On BE machines various hardware byteswapping options are used for the
115    framebuffer aperture.  Which option gets used depends on the depth of the
116    framebuffer.  Uploading YV12 data to the texture buffer is done through the
117    same aperture, but is always done in 32-bit wide units.  Therefore the code
118    that does the uploading needs to take into account the byteswapping done by
119    the hardware.  For 32bpp modes we can use the same code as on LE machines,
120    but 16bpp and 8bpp modes need their own versions.
121
122    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
123    Signed-off-by: Matt Turner <mattst88@gmail.com>
124
125commit 97c9bdf9a396c5627c865d03cd0de91a7267a277
126Author: Jesse Adkins <jesserayadkins@gmail.com>
127Date:   Sat Dec 11 12:38:54 2010 +0000
128
129    Make pm2's xv driver collect options like all other drivers.
130
131    The current method of argument collection is to collect options from different
132    ports of a VideoAdaptor record. Specifically, the ports had to be named
133    'Input' for input options, and 'Output' for output options.
134
135    This resulted in three groups of options, requiring people to know what
136    VideoAdaptor does, both of which were not documented in the man page. If you
137    forgot to create a VideoAdaptor port, then the xv driver would just not work.
138
139    This patch makes the xv driver collect options from the screen, like every
140    single other driver. Input and Output prefixes are used for options where the
141    input and output ports have the same args (FramesPerSec, for example).
142    Documentation added for the change.
143
144    This is a step toward getting rid of VideoAdaptor, since only glint uses it
145    (and is probably the only one to have used it).
146
147    v2: Complain about Xv driver failing to load only if the user wanted Xv.
148    Don't use pGlint->Options, since glint is still initializing.
149
150    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
151    Signed-off-by: Matt Turner <mattst88@gmail.com>
152
153commit d722b45848b899c5f4b7794871ef99207b8e7961
154Author: Matt Turner <mattst88@gmail.com>
155Date:   Sat Dec 4 13:14:31 2010 -0500
156
157    unifdef XFree86LOADER
158
159    Signed-off-by: Matt Turner <mattst88@gmail.com>
160
161commit 1b193cba02b6ca3e27bb72facaffcdd5fe57ba09
162Author: Matt Turner <mattst88@gmail.com>
163Date:   Sat Dec 4 13:11:00 2010 -0500
164
165    Add &component=Driver/glint to Bugzilla link
166
167    Signed-off-by: Matt Turner <mattst88@gmail.com>
168
169commit c34858ad8a7e6929ef5a432ff141d0ebb28c6874
170Author: Matt Turner <mattst88@gmail.com>
171Date:   Sat Dec 4 12:58:54 2010 -0500
172
173    Don't check for fontsproto.
174
175    Signed-off-by: Matt Turner <mattst88@gmail.com>
176
177commit d343834fac2f413ab0f89841eb71f155682f2ac2
178Author: Matt Turner <mattst88@gmail.com>
179Date:   Sat Dec 4 12:58:23 2010 -0500
180
181    Add back mistakenly removed check for videoproto
182
183    Signed-off-by: Matt Turner <mattst88@gmail.com>
184
185commit f5609d296b46304495293bb6b3f48f806f3e16bf
186Author: Jesse Adkins <jesserayadkins@gmail.com>
187Date:   Tue Sep 28 13:29:51 2010 -0700
188
189    Purge cvs tags.
190
191    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
192    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
193
194commit 0f943ec35255af41c8042a300cf73ecca35c9c55
195Author: Matt Turner <mattst88@gmail.com>
196Date:   Thu Sep 23 00:18:29 2010 -0400
197
198    Include xf86dgaproto.h, not xf86dgastr.h
199
200    Signed-off-by: Matt Turner <mattst88@gmail.com>
201
202commit b4acf1fb50f1560d177e8e7912ef27ddca80d209
203Author: Matt Turner <mattst88@gmail.com>
204Date:   Thu Sep 23 00:05:09 2010 -0400
205
206    Delete CFB
207
208    ajax killed cfb in April 2008 (0dab6fa3582b70ccd0f01459902415c28dbc81ff).
209
210    Signed-off-by: Matt Turner <mattst88@gmail.com>
211
212commit 7669aeb2a170c246089043bb4d203c25cbfe5e95
213Author: Matt Turner <mattst88@gmail.com>
214Date:   Thu Sep 23 00:01:16 2010 -0400
215
216    Delete DRI/DRM
217
218    The DRM kernel component has been gone since at least 2.6.13, and Mesa dropped
219    the gamma driver in February 2010 (79aeafd3ca3680c28f6d47a21a501334844f4475).
220
221    Signed-off-by: Matt Turner <mattst88@gmail.com>
222
223commit ff602c76781e27f191f4836b4f7eff5df5f7e54c
224Author: Matt Turner <mattst88@gmail.com>
225Date:   Wed Sep 22 23:50:04 2010 -0400
226
227    Don't check for unneeded proto headers.
228
229    Signed-off-by: Matt Turner <mattst88@gmail.com>
230
231commit 705ffc1776df2240f337dd896223b371c12bc19f
232Author: Matt Turner <mattst88@gmail.com>
233Date:   Wed Sep 15 23:23:56 2010 -0400
234
235    Fix timing errors, as per documentation
236
237    pm2_dac.c:
238    -	VsEnd and VsStart should have 1 subtracted, say the docs. This also
239    	matches with the PM3 and PM4 docs, and is what the pm2fb Linux
240    	kernel driver does.
241    -	Move VsTotal subtract-1 to instantiation, since it doesn't need to
242    	be shifted before the subtraction, unlike horizontal timings
243    	(HTotal, for instance).
244    -	Remove subtract-1 from HsStart, as the docs don't say this is
245    	correct. This also matches with the PM3 and PM4 docs, and is what
246    	the pm2fb Linux kernel driver does.
247
248    pm3_dac.c:
249    -	Subtract 1 from HTotal after the Shiftbpp, as the docs say. This
250    	error has existed since xf86-video-glint was imported into git and
251    	has been propagated to the pm3fb Linux kernel driver.
252
253    Signed-off-by: Matt Turner <mattst88@gmail.com>
254
255commit 7050a255115b2c5a70083d2d4ad775548ef701f7
256Author: Matt Turner <mattst88@gmail.com>
257Date:   Sat Sep 11 16:22:23 2010 -0400
258
259    xf86-video-glint 1.2.5
260
261commit a2fa84df74b2c799b4bf992a212fa7c06dfa919f
262Author: Gaetan Nadon <memsize@videotron.ca>
263Date:   Wed Jul 21 16:49:04 2010 -0400
264
265    config: add comments for main statements
266
267commit ebd5eec763716b34f9c5759c9214c068e85c1ed7
268Author: Gaetan Nadon <memsize@videotron.ca>
269Date:   Wed Jul 21 16:07:00 2010 -0400
270
271    config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
272
273    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
274
275commit d4af4770f292539395ef9513fa3c7da6264ea90f
276Author: Gaetan Nadon <memsize@videotron.ca>
277Date:   Wed Jul 21 14:37:41 2010 -0400
278
279    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
280
281    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
282
283commit 9d2fe6766e9a4e48bbac0e6b2aa394f45859c460
284Author: Gaetan Nadon <memsize@videotron.ca>
285Date:   Wed Jul 21 14:05:22 2010 -0400
286
287    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
288
289    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
290
291commit 361ff8746407ec90a03e5c5bc43b3ddcd37a5162
292Author: Gaetan Nadon <memsize@videotron.ca>
293Date:   Wed Jul 21 09:27:42 2010 -0400
294
295    config: complete AC_INIT m4 quoting
296
297    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
298
299commit e98573f1167fd29f1a6ea4a6324eba4bb8c91468
300Author: Gaetan Nadon <memsize@videotron.ca>
301Date:   Tue Jul 20 21:54:11 2010 -0400
302
303    config: remove unrequired AC_SUBST([DRI_CFLAGS])
304
305    This macro is called by PKG_CHECK_MODULES
306
307    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
308
309commit 819acac0a1613296b3a15176e0061336bd99c120
310Author: Gaetan Nadon <memsize@videotron.ca>
311Date:   Tue Jul 20 21:44:57 2010 -0400
312
313    config: remove unrequired AC_SUBST([XORG_CFLAGS])
314
315    This macro is called by PKG_CHECK_MODULES
316
317    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
318
319commit 9bdca08b4d3728fb7addf2d7aa4c6288e3ad80f3
320Author: Gaetan Nadon <memsize@videotron.ca>
321Date:   Tue Jul 20 20:24:42 2010 -0400
322
323    config: remove unrequired AC_HEADER_STDC
324
325    Autoconf says:
326    "This macro is obsolescent, as current systems have conforming
327    header files. New programs need not use this macro".
328
329    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
330
331commit 2bfc9d4232fffcef0a61ad55683c0b8f517c281e
332Author: Gaetan Nadon <memsize@videotron.ca>
333Date:   Tue Jul 20 19:41:30 2010 -0400
334
335    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
336
337    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
338    AC_PROG_C_C99. This sets gcc with -std=gnu99.
339    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
340
341    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
342
343commit 7706c011e7b46b76ea91467f9446523458e0a8d9
344Author: Gaetan Nadon <memsize@videotron.ca>
345Date:   Tue Jul 20 18:45:19 2010 -0400
346
347    config: update AC_PREREQ statement to 2.60
348
349    Unrelated to the previous patches, the new value simply reflects
350    the reality that the minimum level for autoconf to configure
351    all x.org modules is 2.60 dated June 2006.
352
353    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
354
355    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
356
357commit 4582c1f184ed3718caed0b73e71f5198e8d4b8a6
358Author: Gaetan Nadon <memsize@videotron.ca>
359Date:   Tue Jul 20 16:15:29 2010 -0400
360
361    config: upgrade to util-macros 1.8 for additional man page support
362
363    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
364    The value of MAN_SUBST is the same for all X.Org packages.
365
366commit b2590514c4cb76d571e40dbab3e9bff357aaa461
367Author: Gaetan Nadon <memsize@videotron.ca>
368Date:   Sat Jun 12 15:59:54 2010 -0400
369
370    COPYING: replace stub file with actual Copyright notices.
371
372    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
373
374commit b333d1751eab5aaff9fb5764c4b7b6250f78d145
375Author: Matt Turner <mattst88@gmail.com>
376Date:   Wed Jun 9 01:56:27 2010 -0400
377
378    Remove another superfluous if(p) check around free(p)
379
380    Signed-off-by: Matt Turner <mattst88@gmail.com>
381
382commit 415b727c6a91bd788436f848bd7828930f2019e2
383Author: Matt Turner <mattst88@gmail.com>
384Date:   Wed Jun 9 01:26:50 2010 -0400
385
386    Move mem_barrier() outside of loop
387
388    This makes more sense, and is also how the pm3fb driver in the kernel
389    does it.
390
391    Signed-off-by: Matt Turner <mattst88@gmail.com>
392
393commit c8a03b63945a358bd895590a8ed2b817b9f08ce9
394Author: Matt Turner <mattst88@gmail.com>
395Date:   Wed Jun 9 01:23:36 2010 -0400
396
397    Remove superfluous if(p) checks around free(p)
398
399    Signed-off-by: Matt Turner <mattst88@gmail.com>
400
401commit 610703a0453e30354aae959a914200ca33012b4a
402Author: Matt Turner <mattst88@gmail.com>
403Date:   Wed Jun 9 01:20:21 2010 -0400
404
405    Use libc instead of deprecated libc wrappers for malloc/calloc/free.
406
407    Signed-off-by: Matt Turner <mattst88@gmail.com>
408
409commit febdcbe2df005e30bf62f9c3b7d12f8df1bf6481
410Author: Alan Coopersmith <alan.coopersmith@sun.com>
411Date:   Fri Jan 15 15:54:22 2010 -0800
412
413    Update Sun license notices to current X.Org standard form
414
415    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
416
417commit 61d5faed232a38c4d85900b123c3d8c14dda752a
418Author: Gaetan Nadon <memsize@videotron.ca>
419Date:   Tue Dec 15 21:46:36 2009 -0500
420
421    configure.ac: use backticks rather than $() for cmd subs
422
423    Use "$PKG_CONFIG" rather than hard coded "pkg-config"
424
425    Acked-by: Dan Nicholson <dbn.lists@gmail.com>
426    Acked-by: Daniel Stone <daniel@fooishbar.org>
427
428    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
429
430commit b1c16640e7ae9481866b76060f02127ef50bbde8
431Author: Gaetan Nadon <memsize@videotron.ca>
432Date:   Mon Nov 23 09:25:05 2009 -0500
433
434    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
435
436    Now that the INSTALL file is generated.
437    Allows running make maintainer-clean.
438
439commit 1380dcf9961225e39eadd07370023d768db0e432
440Author: Gaetan Nadon <memsize@videotron.ca>
441Date:   Wed Oct 28 14:41:41 2009 -0400
442
443    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
444
445    Automake 'foreign' option is specified in configure.ac.
446    Remove from Makefile.am
447
448commit b02ee1cce48c60c93e4b3cefd27ea7abeaf5f042
449Author: Gaetan Nadon <memsize@videotron.ca>
450Date:   Wed Oct 28 14:09:09 2009 -0400
451
452    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
453
454    Add missing INSTALL file. Use standard GNU file on building tarball
455    README may have been updated
456    Remove AUTHORS file as it is empty and no content available yet.
457    Remove NEWS file as it is empty and no content available yet.
458
459commit 430e6a1f5229e8a961431a20323066fa0e46edd1
460Author: Gaetan Nadon <memsize@videotron.ca>
461Date:   Mon Oct 26 12:54:21 2009 -0400
462
463    Several driver modules do not have a ChangeLog target in Makefile.am #23814
464
465    The git generated ChangeLog replaces the hand written one.
466    Update configure.ac to xorg-macros level 1.3.
467    Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
468    Update Makefile.am to add ChangeLog target if missing
469    Remove ChangeLog from EXTRA_DIST or *CLEAN variables
470    This is a pre-req for the INSTALL_CMD
471
472commit d29bde968e0cc6b6032f3d64f857ed68cf65216d
473Author: Gaetan Nadon <memsize@videotron.ca>
474Date:   Thu Oct 22 13:01:18 2009 -0400
475
476    .gitignore: use common defaults with custom section # 24239
477
478    Using common defaults will reduce errors and maintenance.
479    Only the very small or inexistent custom section need periodic maintenance
480    when the structure of the component changes. Do not edit defaults.
481
482commit 914a0c8f4ee599210c2d941a45ef009a13be09dc
483Author: Gaetan Nadon <memsize@videotron.ca>
484Date:   Thu Oct 22 12:34:17 2009 -0400
485
486    .gitignore: use common defaults with custom section # 24239
487
488    Using common defaults will reduce errors and maintenance.
489    Only the very small or inexistent custom section need periodic maintenance
490    when the structure of the component changes. Do not edit defaults.
491
492commit ab648787e729651e45e615cc05a1080ba46e9ce4
493Author: Dave Airlie <airlied@redhat.com>
494Date:   Thu Jul 30 12:04:27 2009 +1000
495
496    glint: bump for release 1.2.4
497
498commit d67bba116851bb4682df9fcbac12b0cda10aa28b
499Author: Dave Airlie <airlied@redhat.com>
500Date:   Tue Jul 28 15:22:40 2009 +1000
501
502    glint: change to using ABI version check
503
504commit a7c9dd7039005cc656108d00c95fc7eb75b74642
505Author: Dave Airlie <airlied@redhat.com>
506Date:   Tue Jul 28 13:32:30 2009 +1000
507
508    glint: update for resources/RAC API removal
509
510commit f74a51285651c2eea31efb43734600b79caa0507
511Author: Peter Hutterer <peter.hutterer@who-t.net>
512Date:   Thu Jul 16 11:39:13 2009 +1000
513
514    Update to xextproto 7.1 support.
515
516    DPMS header was split into dpms.h (client) and dpmsconst.h (server). Drivers
517    need to include dpmsconst.h if xextproto 7.1 is available.
518
519    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
520
521commit 833a4f3fcc859a80b4edc9d4c45061c11f8290ab
522Author: Adam Jackson <ajax@redhat.com>
523Date:   Thu Jul 2 11:12:21 2009 -0400
524
525    glint 1.2.3
526
527commit 599fd0c36e38014cf4611130d2f75847af549a95
528Author: Mark Kettenis <mark.kettenis@xs4all.nl>
529Date:   Fri Jun 5 14:28:57 2009 -0600
530
531    Don't set the default depth to 8bpp.
532
533    These days 24/32bpp makes much more sense.
534
535    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
536
537commit db324d0a4d9faf1df3a5c9be8f5a837e852e22cb
538Author: Mark Kettenis <mark.kettenis@xs4all.nl>
539Date:   Fri Jun 5 14:27:55 2009 -0600
540
541    Disable int10 code if __sparc__.
542
543    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
544
545commit fc258c28f99101f7a08bac3f08a66b70ba273161
546Author: Mark Kettenis <mark.kettenis@xs4all.nl>
547Date:   Thu Jun 4 11:29:10 2009 -0600
548
549    Fix DDC probe.
550
551    The driver tried to do DDC stuff without having its registers mapped.
552
553    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
554
555commit 2c022e126c027d20b4b060e31cccb012265cec6a
556Author: Mark Kettenis <mark.kettenis@xs4all.nl>
557Date:   Thu Jun 4 11:27:07 2009 -0600
558
559    Only map a 64k block of registers.
560
561    The driver tries to map a block of registers that is too large.  The
562    mmio registers consist of two blocks of 64k.  The first 64k provide a
563    little-endian view, the second 64k provide a big-endian view.  However
564    the driver always tries to map 128k.  And mapping 128k from the offset
565    where the big-endian view starts will fail on OpenBSD.
566
567    This changes things such that the driver maps just 64k.  There is no
568    reason to map the big-endian view on little-endian machines.
569
570    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
571
572commit 1b36ca0c453191e4837cea25794731b166df19f7
573Author: Mark Kettenis <mark.kettenis@xs4all.nl>
574Date:   Thu Jun 4 11:24:15 2009 -0600
575
576    Fix for big-endian machines.
577
578    The problem is that the card provides a big-endian view on its
579    registers, which the driver uses on big-endian machines.  However, the
580    driver uses MMIO_OUT32() and friends to access these registers.  And
581    on sparc64, these macros do byte swapping themselves.  The net result
582    of course is that no byte swapping gets done at all, and things fail
583    miserably.
584
585    The fix is to make the macros not do byte swapping, which can be done
586    by defining SPARC_MMIO_IS_BE.  There is a similar define for powerpc
587    as well.  I assume these defines were accidentally dropped in the
588    autoconfiscation of Xorg.
589
590    Other people came up with the same conclusion see:
591
592      http://www.mail-archive.com/opensolaris-discuss@opensolaris.org/msg20874.html
593
594    and
595
596      https://bugs.freedesktop.org/show_bug.cgi?id=10742
597
598    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
599
600commit 860e3c4bc40b6e130411b954f8945e8fbc42c9bb
601Author: Adam Jackson <ajax@redhat.com>
602Date:   Thu May 28 14:58:01 2009 -0400
603
604    Remove useless loader symbol lists.
605
606commit 6b6cca87d65d062035b156485e3865e1973115e4
607Author: Alan Coopersmith <alan.coopersmith@sun.com>
608Date:   Fri Jan 30 20:39:18 2009 -0800
609
610    Add README with pointers to mailing list, bugzilla & git repos
611
612commit 4a03cf57e4c8c998bca8bd4378777cf0008764bd
613Author: Alan Coopersmith <alan.coopersmith@sun.com>
614Date:   Fri Jan 9 16:28:39 2009 -0800
615
616    Remove xorgconfig & xorgcfg from See Also list in man page
617
618commit f0b4f9629c4c11c33f8c6d382b21da99a0c52570
619Author: Dave Airlie <airlied@redhat.com>
620Date:   Mon Dec 22 14:33:28 2008 +1000
621
622    glint 1.2.2
623
624commit ea4b1f56fdcdd88f111e9ecbb73cd6583ad01ac8
625Author: Adam Jackson <ajax@redhat.com>
626Date:   Sun Nov 23 17:43:34 2008 -0500
627
628    Remove bizarre use of ISA setup
629
630commit 9da29a371f7a12c5ebe225c94d0719d0cd6098e5
631Author: Dave Airlie <airlied@linux.ie>
632Date:   Mon Sep 15 02:33:25 2008 +1000
633
634    glint: fix build on alpha for pciaccess.
635
636    Redid patch from #17569 from jcristau@debian.org
637
638commit 986464aa29077a131304b407e4da565f85c144ab
639Author: Adam Jackson <ajax@redhat.com>
640Date:   Fri Aug 15 15:25:30 2008 -0400
641
642    Move DDC before mode validation so the EDID modes actually take effect.
643
644commit ad31d1bf886076776354e0e35f5eff8200296dbc
645Author: Adam Jackson <ajax@redhat.com>
646Date:   Fri Aug 15 14:05:53 2008 -0400
647
648    Uninclude xf86Version.h
649
650commit 7b6206e6ba9f1351e5c9fe45da14c18ef2b69ac9
651Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
652Date:   Tue Jul 29 14:03:09 2008 -0300
653
654    Remove dependency on cfb8_32.
655
656      This probably was not noticed because glint_driver.c doesn't include
657    the proper header file.
658
659commit a68acd796e14742615eb071819b2910f69346a2b
660Author: Julien Cristau <jcristau@debian.org>
661Date:   Mon Jun 30 17:56:27 2008 +0200
662
663    Bump to 1.2.1
664
665commit 9c4f5ec0c8a5b48b9b923798175cc6e66932f8ed
666Author: Julien Cristau <jcristau@debian.org>
667Date:   Tue Jun 24 03:17:32 2008 +0200
668
669    Fix regression from pciaccess conversion (bug#16060)
670
671commit 27da4e81ea2eceed69b37a5c6a19def9d1146258
672Author: Adam Jackson <ajax@redhat.com>
673Date:   Wed Mar 19 14:01:42 2008 -0400
674
675    glint 1.2.0
676
677commit 71635ce6e595705c8841f68668d3efd7db9cec57
678Author: Adam Jackson <ajax@redhat.com>
679Date:   Wed Mar 19 13:58:54 2008 -0400
680
681    Fix distcheck
682
683commit 7c0a6d5e978fbd3f635ba4a35dd24a9cb08ede92
684Author: Dave Airlie <airlied@clockmaker.usersys.redhat.com>
685Date:   Tue Mar 11 15:47:34 2008 +1000
686
687    fix regression in tinderbox
688
689commit bee9cba6766271c1e0e007eae8dcd853aa8ef361
690Author: Dave Airlie <airlied@panoply-rh.(none)>
691Date:   Tue Mar 11 10:15:00 2008 +1000
692
693    hey look a flying pig....
694
695    it builds, but it may or may not work at all.
696
697commit faabfbccbe0516f461590eee05cf44122135d9ee
698Author: Matthieu Herrb <matthieu@bluenote.herrb.net>
699Date:   Sat Mar 8 23:29:30 2008 +0100
700
701    Makefile.am: nuke RCS Id
702
703commit 6a56ee0b6b409c36d4f7e9b1f784ec3eeebd20b9
704Author: Dave Airlie <airlied@clockmaker.usersys.redhat.com>
705Date:   Mon Mar 3 10:47:24 2008 +1000
706
707    fix typos in dac code from last commit
708
709commit c4b0de8dc27ce4c3145dca36f75f3b3e4fdd20b9
710Author: Dave Airlie <airlied@redhat.com>
711Date:   Wed Feb 27 15:45:37 2008 +1000
712
713    half attempt at pciaccess conversion for glint - doesn't build yet
714
715    but this gets most of the mechanical changes
716
717commit f87b7c663c8ae2c4abf270f8f941a4c068da7e8b
718Author: Julien Cristau <jcristau@debian.org>
719Date:   Tue Feb 5 13:45:05 2008 +0100
720
721    Add missing #includes to fix compiler warnings.
722
723    Fixes the following warnings:
724    ../../src/glint_driver.c: In function 'GLINTScreenInit':
725    ../../src/glint_driver.c:2968: warning: implicit declaration of function 'cfb8_32ScreenInit'
726    ../../src/glint_driver.c:3147: warning: implicit declaration of function 'xf86Overlay8Plus32Init'
727    ../../src/pm2_video.c: In function 'StopVideoStream':
728    ../../src/pm2_video.c:1339: warning: implicit declaration of function 'usleep'
729    ../../src/pm2_video.c: In function 'xvipcHandshake':
730    ../../src/pm2_video.c:2413: warning: implicit declaration of function 'ioctl'
731    ../../src/pm2_video.c: In function 'xvipcOpen':
732    ../../src/pm2_video.c:2622: warning: implicit declaration of function 'close'
733
734commit 5b230db4e4884e3410b617cc161bf9b4a5a4a979
735Author: James Cloos <cloos@jhcloos.com>
736Date:   Mon Sep 3 05:52:33 2007 -0400
737
738    Add *~ to .gitignore to skip patch/emacs droppings
739
740commit 264b56d592e20a30a13273494430a7b618f4a8b5
741Author: James Cloos <cloos@jhcloos.com>
742Date:   Thu Aug 23 19:25:49 2007 -0400
743
744    Rename .cvsignore to .gitignore
745
746commit e80c3bea70d1196fcc518d4007d13b7b1adf56aa
747Author: Brice Goglin <bgoglin@debian.org>
748Date:   Tue Aug 7 11:15:15 2007 +0200
749
750    Define GLINT_*_VERSION* using PACKAGE_VERSION_*
751
752commit 90e9a4dc8639907d26f77ae40c89dc177bb87002
753Author: Alan Hourihane <alanh@fairlite.demon.co.uk>
754Date:   Fri Dec 1 14:08:23 2006 +0000
755
756    Fix --disable-dri for glint driver
757    Bug #7045.
758
759commit 0ee291b241e364f16eb7b274a0fd58a71e7646ef
760Author: Adam Jackson <ajax@nwnk.net>
761Date:   Sat Apr 8 01:23:07 2006 +0000
762
763    Bump to 1.1.1 for Xv changes.
764
765commit b606af1a3438209c085361573436a7742d0f2bc0
766Author: Aaron Plattner <aplattner@nvidia.com>
767Date:   Fri Apr 7 23:07:25 2006 +0000
768
769    Add a DrawablePtr argument to the XV functions to pave the way for
770        redirected video.
771
772commit 30814ce8d6d75f69cb56014150aa4b9d223b77ff
773Author: Adam Jackson <ajax@nwnk.net>
774Date:   Fri Apr 7 19:07:59 2006 +0000
775
776    Unlibcwrap. Bump server version requirement. Bump to 1.1.0.
777
778commit d20f62cf797cff41907d78efa9ce4ee78d5cbe49
779Author: Alan Hourihane <alanh@fairlite.demon.co.uk>
780Date:   Thu Feb 2 23:02:10 2006 +0000
781
782    Allocate more space for the dac registers on pm2v hardware.
783
784commit 393de63d8f99a20d932d0ecc58c013902d68e113
785Author: gravity <gravity>
786Date:   Tue Jan 10 03:20:06 2006 +0000
787
788    Convert manpage to utf-8
789
790commit 83b69c5cdecf098dd91d72cc05eb289edfde99e5
791Author: Kevin E Martin <kem@kem.org>
792Date:   Wed Dec 21 02:30:00 2005 +0000
793
794    Update package version for X11R7 release.
795
796commit 8bd9ccfa3db41d71498bf3813b7817c69509bc3a
797Author: Adam Jackson <ajax@nwnk.net>
798Date:   Mon Dec 19 16:25:53 2005 +0000
799
800    Stub COPYING files
801
802commit 21bd357ee7e4d8134e18be88c95e40a2ed900ffe
803Author: Kevin E Martin <kem@kem.org>
804Date:   Thu Dec 15 00:24:17 2005 +0000
805
806    Update package version number for final X11R7 release candidate.
807
808commit cf65e774e59aecd4e267f678e4a6a7b426c34fdc
809Author: Kevin E Martin <kem@kem.org>
810Date:   Tue Dec 6 22:48:34 2005 +0000
811
812    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
813
814commit 01eb136eb8edcc395c0058bb7ac9f80a9891c2ec
815Author: Kevin E Martin <kem@kem.org>
816Date:   Sat Dec 3 05:49:33 2005 +0000
817
818    Update package version number for X11R7 RC3 release.
819
820commit 5f3c185f44c1f8c8fda0eb69ed2f6d9fe81ae7b1
821Author: Kevin E Martin <kem@kem.org>
822Date:   Fri Dec 2 02:16:08 2005 +0000
823
824    Remove extraneous AC_MSG_RESULT.
825
826commit 8a628988507ecdad564e0effb29e7264e5fa6637
827Author: Adam Jackson <ajax@nwnk.net>
828Date:   Wed Nov 30 18:51:28 2005 +0000
829
830    Bump libdrm dep to 2.0.
831
832commit f8625abd39a9a60c4febdd145a432c156646a4e5
833Author: Adam Jackson <ajax@nwnk.net>
834Date:   Tue Nov 29 23:29:58 2005 +0000
835
836    Only build dlloader modules by default.
837
838commit ee629c6028588b5acd08b131f57d65d9ae0b5ba7
839Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
840Date:   Mon Nov 28 22:04:09 2005 +0000
841
842    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
843        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
844
845commit 21265a3e05734aa4519288f537dd0aa5693ec5e3
846Author: Eric Anholt <anholt@freebsd.org>
847Date:   Mon Nov 21 10:49:13 2005 +0000
848
849    Add .cvsignores for drivers.
850
851commit 7fba08f281423b88cb34608222279c3b5a725190
852Author: Kevin E Martin <kem@kem.org>
853Date:   Tue Nov 15 05:42:03 2005 +0000
854
855    Add check for DGA extension to fix issues when building with separate build
856        roots.
857
858commit 4d27cb49c29cb2157515a7fd518ff971c9ab8cb9
859Author: Kevin E Martin <kem@kem.org>
860Date:   Wed Nov 9 21:31:20 2005 +0000
861
862    Bump version numbers for X11R6.9/X11R7 RC2.
863
864commit 4a8e5e77c84f8bac7d4cd1b42b91a302017e692d
865Author: Kevin E Martin <kem@kem.org>
866Date:   Wed Nov 9 21:15:15 2005 +0000
867
868    Update package version number for X11R7 RC2 release.
869
870commit 14251292588e9245a414dffb94380a69ca115acb
871Author: Kevin E Martin <kem@kem.org>
872Date:   Tue Nov 1 15:08:52 2005 +0000
873
874    Update pkgcheck depedencies to work with separate build roots.
875
876commit 22fc017fd2b8755722e5456f12313e39f2873d66
877Author: Adam Jackson <ajax@nwnk.net>
878Date:   Fri Oct 21 18:40:18 2005 +0000
879
880    Bug #4829: Remove some useless DRI symbol checks.
881
882commit 12e0d4f8f932bcbbfef8d99bbf2e9f8543ff3b02
883Author: Kevin E Martin <kem@kem.org>
884Date:   Wed Oct 19 02:48:02 2005 +0000
885
886    Update package version number for RC1 release.
887
888commit a74ec74ec143738cfa1c0173ebeda1f3de0304e0
889Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
890Date:   Tue Oct 18 00:01:53 2005 +0000
891
892    Use @DRIVER_MAN_SUFFIX@ instead of $(DRIVER_MAN_SUFFIX) in macro
893        substitutions to work better with BSD make
894
895commit 5cfcf7473f33961b1fabe6a32fdabfbc2b900cf8
896Author: Adam Jackson <ajax@nwnk.net>
897Date:   Mon Oct 17 22:57:33 2005 +0000
898
899    More 1.7 braindamage: define EXTRA_DIST in terms of @DRIVER_NAME@ instead
900        of indirectly
901
902commit 8f91f7517192ac5bfbe8c843adf89487bdc93035
903Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
904Date:   Mon Oct 17 00:09:02 2005 +0000
905
906    Use sed & cpp to substitute variables in driver man pages
907
908commit c0ba03f97d900f5810c67678c213ac063f09e6f4
909Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
910Date:   Tue Sep 27 20:53:19 2005 +0000
911
912    Update build system for apm, chips, cirrus, glint, i740, mga, neomagic,
913        newport to accomodate various new documentation and utility files.
914
915commit fb9960e2373eb3bb89f80fe4767a7bd62a49b164
916Author: Daniel Stone <daniel@fooishbar.org>
917Date:   Sun Aug 21 18:31:47 2005 +0000
918
919    Fix test for DRI headers.
920
921commit bf488777b6a535adcfefe38f7e575eb34e146727
922Author: Daniel Stone <daniel@fooishbar.org>
923Date:   Thu Aug 18 09:03:46 2005 +0000
924
925    Update autogen.sh to one that does objdir != srcdir.
926
927commit f7af0c394229b978532781b7e08c603847a73a40
928Author: Alan Hourihane <alanh@fairlite.demon.co.uk>
929Date:   Mon Aug 15 07:30:05 2005 +0000
930
931    Egbert's 64bit fixes for mixed 32/64bit clients
932
933commit df6f4600c27cd4b4e7b68f1b75aca3fb1fc80464
934Author: Adam Jackson <ajax@nwnk.net>
935Date:   Sun Jul 31 17:19:27 2005 +0000
936
937    Post-merge fixups:
938    - Disable building the gamma driver
939    - Fix numerous Imakefiles to get header paths and subdirs right
940    - Symlink client-side GLX lib source from Mesa
941    - Add new shader subdirs to the Mesa core build
942    - Tweak the DDX drivers to not ask for "xf86dri.h"; they don't need it,
943        since they don't generate protocol, and it was breaking the build.
944
945commit 41dc9bd7a4e4a15a8e429c95ad34caba3ff5474d
946Author: Kevin E Martin <kem@kem.org>
947Date:   Fri Jul 29 21:22:43 2005 +0000
948
949    Various changes preparing packages for RC0:
950    - Verify and update package version numbers as needed
951    - Implement versioning scheme
952    - Change bug address to point to bugzilla bug entry form
953    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
954        reenable it)
955    - Fix makedepend to use pkgconfig and pass distcheck
956    - Update build script to build macros first
957    - Update modular Xorg version
958
959commit ca1e5c8e73c5e322258a2597f8ab8e25ed11126c
960Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
961Date:   Wed Jul 27 21:23:28 2005 +0000
962
963    Add xf86driproto to dependencies for drivers with DRI support. Patch from
964        Donnie Berkholz
965
966commit 8793f6c29d5b574e5047bf01f9f5d5b91441cb00
967Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
968Date:   Wed Jul 27 17:40:19 2005 +0000
969
970    Build system for gilnt
971
972commit 7240a099d97e6f2f569f78d3e40de2e690f0c427
973Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
974Date:   Tue Jul 26 18:29:39 2005 +0000
975
976    symlink.sh: add binding.h from mga/HALlib add nsc/gfx add nsc/panel
977        glint_driver.c: remove include of cfb8_32.h mga_driver.c: remove
978        include of cfb8_32.h modularizevideodriver.sh: fix typo
979
980commit ec644bfe186f27ea5fb9f2acc38ceb7cb30e9567
981Author: Adam Jackson <ajax@nwnk.net>
982Date:   Mon Jul 11 02:29:49 2005 +0000
983
984    Prep for modular builds by adding guarded #include "config.h" everywhere.
985
986commit c4086447dc0537c3ffdd6bdd78820a1d7daa84ca
987Author: Daniel Stone <daniel@fooishbar.org>
988Date:   Fri Jul 1 22:43:11 2005 +0000
989
990    Change all misc.h and os.h references to <X11/foo.h>.
991
992commit 98d825e0fa513e7ae6a601e25a20d94eba2c87b6
993Author: Adam Jackson <ajax@nwnk.net>
994Date:   Sat Jun 25 21:16:54 2005 +0000
995
996    Bug #3626: _X_EXPORT tags for video and input drivers.
997
998commit 35af6065ca0807c25bdba08ee0105b3074343c98
999Author: Adam Jackson <ajax@nwnk.net>
1000Date:   Wed May 18 17:47:35 2005 +0000
1001
1002    Bug #3163: Create new DRIINFO_*_VERSION macros to indicate the version
1003        number of the DRIInfoRec, disambiguating it from the XF86DRI protocol
1004        version number. Modify DRIQueryVersion to return the libdri version
1005        number, which all DDXes were requesting implicitly. Fix the DDXes to
1006        check for the DRIINFO version they were compiled against.
1007
1008commit bec37c1f7cc5ac88eb15b8e26998ba765224cd33
1009Author: Daniel Stone <daniel@fooishbar.org>
1010Date:   Wed Apr 20 12:25:24 2005 +0000
1011
1012    Fix includes right throughout the Xserver tree:
1013    change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
1014    change "foo.h", "extensions/foo.h" and "X11/foo.h" to
1015        <X11/extensions/foo.h> for extension headers, e.g. Xv.h;
1016    change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
1017
1018commit 8e88fe1b8aaf3476b2c236e0f816df8f25a60bcb
1019Author: Adam Jackson <ajax@nwnk.net>
1020Date:   Fri Feb 25 16:38:34 2005 +0000
1021
1022    Bug #2605: Make the cyrix, dummy, glint, neomagic, tga, and trident drivers
1023        build when BuildXF86DGA NO.
1024    (also fix some datestamps in the changelog)
1025
1026commit df394e737f937ac8f7e86de959b16ef7e47f8eb5
1027Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
1028Date:   Sat Dec 4 00:43:09 2004 +0000
1029
1030    Encoding of numerous files changed to UTF-8
1031
1032commit 5c9d83e0f38fbaaf01dd3593afc04ac0ecbef285
1033Author: Adam Jackson <ajax@nwnk.net>
1034Date:   Mon Aug 16 09:13:14 2004 +0000
1035
1036    Bug #1087: Make sure all the *Weak symbols are documented in the import
1037        list, so the loader knows not to complain about unresolved symbols when
1038        an optional module isn't loaded. This typically manifests as warnings
1039        about fbdevHW symbols when the user isn't using the framebuffer
1040        console.
1041
1042commit b2400d46e8f619f2677ef86e2453726c849ab0f9
1043Author: Adam Jackson <ajax@nwnk.net>
1044Date:   Tue Aug 3 02:44:20 2004 +0000
1045
1046    Bug #962: Remove LoaderSymbol calls introduced by the dlloader work so
1047        DoLoadableServer NO builds work again.
1048
1049commit 65df2a5577d8fd26e92c60f5b35328615695e7a9
1050Author: Adam Jackson <ajax@nwnk.net>
1051Date:   Sat Jul 31 01:21:18 2004 +0000
1052
1053    Change several LoaderSymbol calls introduced by the bug #400 patch to
1054    *Weak() resolver functions.
1055
1056commit fc56eac7f9e9ee6fdca34782e786b0d65b3db5d1
1057Author: Adam Jackson <ajax@nwnk.net>
1058Date:   Fri Jul 30 20:30:52 2004 +0000
1059
1060    Bug #400 (partial): Driver fixes for the dlloader. When using dlloader, all
1061        framebuffer formats except cfb and the overlay modes should work, and
1062        r128 and radeon need to be loaded from the ati driver (both issues to
1063        be fixed soon). Tested on i740, s3virge, mach64, tdfx, vesa, and vga
1064        drivers. elfloader users shouldn't be affected.
1065
1066commit 3ff738aee5c60a51cddb7ad08f7d96d0376590a0
1067Author: Eric Anholt <anholt@freebsd.org>
1068Date:   Wed Jun 16 09:43:59 2004 +0000
1069
1070    Merge DRI-trunk-20040613 changes in programs/Xserver/hw/xfree86/drivers,
1071        with the following notes:
1072    - Savage and Mach64 (= ati/ati*.[ch] changes) DRI not merged due to
1073        insecurity.
1074    - VIA driver converted to new drmContext and drmHandle names.
1075    - Radeon driver merge conflicted in many places, and MergedFB at least
1076        could probably use some checking at this point.
1077
1078commit 5363c1b9d3e0122ae0d6c9bcfda0720fb02be4cf
1079Author: Eric Anholt <anholt@freebsd.org>
1080Date:   Wed Jun 16 09:26:08 2004 +0000
1081
1082    DRI trunk-20040613 import
1083
1084commit 1d9588d47041e581a0acd7bbe38770ea31e61023
1085Author: Eric Anholt <anholt@freebsd.org>
1086Date:   Wed Jun 16 09:23:10 2004 +0000
1087
1088    DRI XFree86-4_3_99_12-merge import
1089
1090commit 049f110bcd0a331fbea35285504cef635254b036
1091Author: Egbert Eich <eich@suse.de>
1092Date:   Fri Apr 23 19:33:33 2004 +0000
1093
1094    Merging XORG-CURRENT into trunk
1095
1096commit 4638c881e76511b888c22806808ef739aaa742d7
1097Author: Egbert Eich <eich@suse.de>
1098Date:   Sun Mar 14 08:33:21 2004 +0000
1099
1100    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1101
1102commit d844c82d187ac4838c222a6a48f4f0286bf982b0
1103Author: Egbert Eich <eich@suse.de>
1104Date:   Wed Mar 3 12:12:18 2004 +0000
1105
1106    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1107
1108commit e2f268c61d3f094a2753dcf35248b0cc93341b2c
1109Author: Egbert Eich <eich@suse.de>
1110Date:   Thu Feb 26 13:35:52 2004 +0000
1111
1112    readding XFree86's cvs IDs
1113
1114commit 143539b7f4a2167ad9075e8d4b578ae9c16275ed
1115Author: Egbert Eich <eich@suse.de>
1116Date:   Thu Feb 26 09:23:18 2004 +0000
1117
1118    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1119
1120commit 6b337aef51c26437df7e65b4ddd1d267095a3fc1
1121Author: Kaleb Keithley <kaleb@freedesktop.org>
1122Date:   Tue Nov 25 19:28:37 2003 +0000
1123
1124    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1125
1126commit 26e5961d86c073d8c1f8332714c38856c6b86b38
1127Author: Kaleb Keithley <kaleb@freedesktop.org>
1128Date:   Fri Nov 14 16:48:55 2003 +0000
1129
1130    XFree86 4.3.0.1
1131
1132commit dc74177b8c1a750d4108ed0b9b5099399672dbb3
1133Author: Kaleb Keithley <kaleb@freedesktop.org>
1134Date:   Fri Nov 14 16:48:55 2003 +0000
1135
1136    Initial revision
1137