1commit 5c18f179c36d4eedd447d883385a1c93763e4b1a
2Author: Kevin Brace <kevinbrace@gmx.com>
3Date:   Thu Jul 25 10:03:33 2019 -0700
4
5    Version bumped to 0.7.0
6
7    Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
8
9commit 7dd4b94c8e3453d3b684dc22c338b5387d278c8f
10Author: Kevin Brace <kevinbrace@gmx.com>
11Date:   Tue Dec 18 17:41:03 2018 -0600
12
13    Eliminate unused variable compilation warning
14
15    Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
16
17commit 55a62ca2a9a6a6d59ac2aedbb23f40e0bc05402b
18Author: Kevin Brace <kevinbrace@gmx.com>
19Date:   Tue Dec 18 17:35:43 2018 -0600
20
21    Eliminate set but not used variable compilation warnings
22
23    Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
24
25commit 0626eaa962419fa702fae0020525d62f51bd9e2e
26Author: Kevin Brace <kevinbrace@gmx.com>
27Date:   Tue Dec 18 17:25:55 2018 -0600
28
29    Use const char for xf86GetOptValString return type
30
31    Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
32
33commit 159c850ba86bd580fd3e749dd4f43e3b4228d91b
34Author: Kevin Brace <kevinbrace@gmx.com>
35Date:   Tue Dec 18 15:30:34 2018 -0600
36
37    Discontinue the use of xf86PciInfo.h
38
39    Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
40
41commit 0da14645b6bd27787164001031bafaca551fcecd
42Author: Alan Coopersmith <alan.coopersmith@oracle.com>
43Date:   Fri Dec 7 19:06:54 2018 -0800
44
45    Update configure.ac bug URL for gitlab migration
46
47    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
48
49commit 49f69dedee27b54dcd58793886c36e6b1eaa2b07
50Author: Alan Coopersmith <alan.coopersmith@oracle.com>
51Date:   Sun Nov 18 16:07:49 2018 -0800
52
53    Update README for gitlab migration
54
55    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
56
57commit 9ee0976d25100d2090a5856361351d2c3750fe24
58Author: Mihail Konev <k.mvc@ya.ru>
59Date:   Thu Jan 26 14:00:22 2017 +1000
60
61    autogen: add default patch prefix
62
63    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
64
65commit c729d499f9f4305b21d989032aa7d1b3cde1fff3
66Author: Emil Velikov <emil.l.velikov@gmail.com>
67Date:   Mon Mar 9 12:00:52 2015 +0000
68
69    autogen.sh: use quoted string variables
70
71    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
72    fall-outs, when they contain space.
73
74    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
75    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
76    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
77
78commit 2684e25c3e1107df3627dca39df600935091a9e1
79Author: Peter Hutterer <peter.hutterer@who-t.net>
80Date:   Tue Jan 24 10:32:07 2017 +1000
81
82    autogen.sh: use exec instead of waiting for configure to finish
83
84    Syncs the invocation of configure with the one from the server.
85
86    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
87    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
88
89commit a32e5df1b515799414dc541aa1ec28fed32db152
90Author: Alan Coopersmith <alan.coopersmith@oracle.com>
91Date:   Sun Jun 1 21:03:14 2014 -0700
92
93    autogen.sh: Honor NOCONFIGURE=1
94
95    See http://people.gnome.org/~walters/docs/build-api.txt
96
97    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
98
99commit 9a8969cb5f9a87c19f075b500ad77bfdbac75d8e
100Author: Alan Coopersmith <alan.coopersmith@oracle.com>
101Date:   Sun Jun 1 21:03:13 2014 -0700
102
103    configure: Drop AM_MAINTAINER_MODE
104
105    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
106
107commit 9ede7835a2340400f72984c99b690e5c46189f0a
108Author: Alan Coopersmith <alan.coopersmith@oracle.com>
109Date:   Sat Sep 10 08:33:44 2016 -0700
110
111    Remove unused BIOS size & address macros
112
113    Use of them was removed by 82bd67a255fb
114
115    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
116
117commit 82bd67a255fb45847d8a10811641bc0b203ba864
118Author: Alan Coopersmith <alan.coopersmith@oracle.com>
119Date:   Thu Mar 17 10:27:51 2016 -0700
120
121    s3_bios.c: Simplify code for choosing between 16000 & 16000 for RefClock
122
123    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
124
125commit 7b454358082fc07985878fc92b902d7534144cae
126Author: Alan Coopersmith <alan.coopersmith@oracle.com>
127Date:   Sat Mar 12 10:54:22 2016 -0800
128
129    When checking malloc for success, it helps to use == NULL, instead of =
130
131    Fixes gcc 5.3 compiler warning:
132    s3_bios.c: In function 'find_bios_string':
133    s3_bios.c:49:2: warning: suggest parentheses around assignment used as
134        truth value [-Wparentheses]
135      if (bios = NULL)
136        ^
137
138    [Tested by compiling only, as I have no S3 hardware, but clearly no one
139     else has tested this code since commit c41a1188ce53 in 2009, as it would
140     be segfaulting if run.]
141
142    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
143
144commit ed0fbfd27609e897c42d7ab316481a9504746233
145Author: Gaetan Nadon <memsize@videotron.ca>
146Date:   Tue Jan 7 16:28:58 2014 -0500
147
148    Remove mibstore.h
149
150    As it was done in numerous other drivers. Fixes compile error.
151
152    Tested-by: Trevor Woerner <trevor.woerner@linaro.org>
153    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
154
155commit 92d10d5d6882c3db6695a8fff83c88fbaaa27a33
156Author: Eric S. Raymond <esr@thyrsus.com>
157Date:   Thu Aug 23 12:46:03 2012 -0400
158
159    Fix malformed list syntax.
160
161    TP without a body shouldn't really be used for an item list. Fixing this
162    makes structural translation to DocBook possible.
163
164    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
165
166commit 73304078ffd138ba642587af1131a80720bfe65c
167Author: Dave Airlie <airlied@redhat.com>
168Date:   Tue Jul 17 16:05:09 2012 +1000
169
170    xf86-video-s3: bump to version 0.6.5
171
172    Signed-off-by: Dave Airlie <airlied@redhat.com>
173
174commit 8f35d7311ee74e8eb8c4c957e793bf230941a7b5
175Author: Dave Airlie <airlied@redhat.com>
176Date:   Tue Jul 17 14:50:10 2012 +1000
177
178    s3: fixup scrn/screen conversion.
179
180    Signed-off-by: Dave Airlie <airlied@redhat.com>
181
182commit 2c02712a860abb0a8584290a197071b8c0aa3fed
183Author: Dave Airlie <airlied@redhat.com>
184Date:   Tue Jul 17 14:33:15 2012 +1000
185
186    s3: port to new X server compat API
187
188    Signed-off-by: Dave Airlie <airlied@redhat.com>
189
190commit 09c3c15aa3bfb44e35325c3beee1de08f9366734
191Author: Dave Airlie <airlied@redhat.com>
192Date:   Tue Jul 17 14:24:57 2012 +1000
193
194    s3: convert to XAA-less server world.
195
196    Signed-off-by: Dave Airlie <airlied@redhat.com>
197
198commit ba2e11464f17ba17d65214e0344422a5b00b1acb
199Author: Julien Cristau <jcristau@debian.org>
200Date:   Sat May 12 13:50:32 2012 +0200
201
202    xf86-video-s3 0.6.4
203
204commit 6a8cead012e36c9e709f0198af17a94dfae17048
205Author: Julien Cristau <jcristau@debian.org>
206Date:   Sat May 12 13:47:36 2012 +0200
207
208    Include unistd.h for usleep
209
210    Signed-off-by: Julien Cristau <jcristau@debian.org>
211
212commit db87c42485f7748a7a5ccdc94f4fc6065766bd0f
213Author: Julien Cristau <jcristau@debian.org>
214Date:   Sat May 12 13:44:58 2012 +0200
215
216    Use standard allocation functions
217
218    Signed-off-by: Julien Cristau <jcristau@debian.org>
219
220commit fb368727b9251b23f937a6432946dd376a153e27
221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
222Date:   Wed Dec 28 20:04:22 2011 -0800
223
224    If it couldn't allocate memory, don't attempt to write a bunch of values
225    to the NULL pointer before returning it, but just pass the NULL along
226    right away.
227
228    Resolves parfait warnings of the form:
229
230    Error: Null pointer dereference (CWE 476)
231       Write to null pointer 'adapt'
232            at line 248 of driver/xf86-video-s3/src/s3_video.c in function 'S3SetupImageVideoOverlay'.
233              Function 'S3AllocAdaptor' may return constant 'NULL' at line 218, called at line 246.
234              Null pointer introduced at line 218 in function 'S3AllocAdaptor'.
235
236    repeated for every line writing to the adapt pointer in the function.
237
238    [ This bug was found by the Parfait 0.4.2 bug checking tool.
239      For more information see http://labs.oracle.com/projects/parfait/ ]
240
241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
242
243commit e5c1c27b83e93d9cb2a74c7c4ee85b36eb1bbdef
244Author: Adam Jackson <ajax@redhat.com>
245Date:   Mon Dec 19 17:17:28 2011 -0500
246
247    Fix for new vgahw ABI
248
249    Signed-off-by: Adam Jackson <ajax@redhat.com>
250
251commit 1aa3e0413bcf89734083649c2057fc4065c8348d
252Author: Adam Jackson <ajax@redhat.com>
253Date:   Mon Dec 19 17:16:44 2011 -0500
254
255    Fall back to shadowfb if XAA is unavailable
256
257    Signed-off-by: Adam Jackson <ajax@redhat.com>
258
259commit 381ace93a17da291d4149fe0f98ee4b7386f67ee
260Author: Matt Turner <mattst88@gmail.com>
261Date:   Thu Dec 2 17:09:46 2010 -0500
262
263    Add missing call to vbeFree (bug 4417)
264
265    Reviewed-by: Adam Jackson <ajax@redhat.com>
266    Signed-off-by: Matt Turner <mattst88@gmail.com>
267
268commit bc10d3acae50db1303a5255c9211a9963a7f60ff
269Author: Gaetan Nadon <memsize@videotron.ca>
270Date:   Fri Jul 23 20:54:56 2010 -0400
271
272    config: add AM_PROG_CC_C_O for per-target compilation flags
273
274    The use of per-target compilation flags with C sources requires
275    that the macro AM_PROG_CC_C_O be called from configure.ac
276
277    If the C compiler does not accept the -c and -o options simultaneously,
278    define NO_MINUS_C_MINUS_O. This macro actually tests both the compiler
279    found by AC_PROG_CC, and, if different, the first cc in the path.
280    The test fails if one fails. This macro was created for GNU Make
281    to choose the default C compilation rule.
282
283    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
284
285commit eb2677eaa2880e99f3b731d45dab5274bda4cb99
286Author: Gaetan Nadon <memsize@videotron.ca>
287Date:   Wed Jul 21 16:49:04 2010 -0400
288
289    config: add comments for main statements
290
291commit edd93140a9330c886761b2207bdb2ca1d5c6a170
292Author: Gaetan Nadon <memsize@videotron.ca>
293Date:   Wed Jul 21 16:07:00 2010 -0400
294
295    config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
296
297    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
298
299commit 4fd39e6c68fe735d0a16a66267461472d78c15a7
300Author: Gaetan Nadon <memsize@videotron.ca>
301Date:   Wed Jul 21 14:37:41 2010 -0400
302
303    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
304
305    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
306
307commit 9e7e206334067b708d0c0d31f218309da9dbbb1e
308Author: Gaetan Nadon <memsize@videotron.ca>
309Date:   Wed Jul 21 14:05:23 2010 -0400
310
311    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
312
313    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
314
315commit 2852a8d1c587a473f1ba341458c0f97a2d494cb7
316Author: Gaetan Nadon <memsize@videotron.ca>
317Date:   Wed Jul 21 09:27:42 2010 -0400
318
319    config: complete AC_INIT m4 quoting
320
321    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
322
323commit d96305aee294efafb98cab1bf087791c1f87de20
324Author: Gaetan Nadon <memsize@videotron.ca>
325Date:   Tue Jul 20 21:44:58 2010 -0400
326
327    config: remove unrequired AC_SUBST([XORG_CFLAGS])
328
329    This macro is called by PKG_CHECK_MODULES
330
331    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
332
333commit bfa6c1607bab7d04aba747fc964608bc97ca43b4
334Author: Gaetan Nadon <memsize@videotron.ca>
335Date:   Tue Jul 20 20:24:42 2010 -0400
336
337    config: remove unrequired AC_HEADER_STDC
338
339    Autoconf says:
340    "This macro is obsolescent, as current systems have conforming
341    header files. New programs need not use this macro".
342
343    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
344
345commit 651282bbe144e094ce342a2433d8e2e0d2f96277
346Author: Gaetan Nadon <memsize@videotron.ca>
347Date:   Tue Jul 20 19:41:31 2010 -0400
348
349    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
350
351    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
352    AC_PROG_C_C99. This sets gcc with -std=gnu99.
353    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
354
355    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
356
357commit 0021ca4e9594eaf6cf7843bbbe34caedc5d66989
358Author: Gaetan Nadon <memsize@videotron.ca>
359Date:   Tue Jul 20 18:45:19 2010 -0400
360
361    config: update AC_PREREQ statement to 2.60
362
363    Unrelated to the previous patches, the new value simply reflects
364    the reality that the minimum level for autoconf to configure
365    all x.org modules is 2.60 dated June 2006.
366
367    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
368
369    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
370
371commit 51294ed2c413c6d64e88b099324e6027832fbe21
372Author: Gaetan Nadon <memsize@videotron.ca>
373Date:   Tue Jul 20 16:15:29 2010 -0400
374
375    config: upgrade to util-macros 1.8 for additional man page support
376
377    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
378    The value of MAN_SUBST is the same for all X.Org packages.
379
380commit 798a0017ebd8078a9e0be0c4571675c8056f1100
381Author: Gaetan Nadon <memsize@videotron.ca>
382Date:   Sun Jun 13 10:18:36 2010 -0400
383
384    COPYING: replace stub file with actual Copyright notices.
385
386    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
387
388commit 36776d8ab030d2c139a099ea6f7d39d1005faef3
389Author: Gaetan Nadon <memsize@videotron.ca>
390Date:   Fri Jan 29 16:11:25 2010 -0500
391
392    config: remove dead LINUXDOC macro usage
393
394    This module does not generate LINUXDOC documentation.
395
396    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
397
398commit 9d61ff1212e0ddaf89d9ce10f738f42fa08c5e9b
399Author: Alan Coopersmith <alan.coopersmith@sun.com>
400Date:   Fri Jan 15 13:55:12 2010 -0800
401
402    Update Sun license notices to current X.Org standard form
403
404    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
405
406commit 5d147f161c47e8eab97a6b4e9973000739dec7ef
407Author: Gaetan Nadon <memsize@videotron.ca>
408Date:   Tue Dec 15 22:01:02 2009 -0500
409
410    configure.ac: remove unused sdkdir=$(pkg-config...) statement
411
412    The sdkdir variable isn't use, so remove the statement.
413
414    Acked-by: Dan Nicholson <dbn.lists@gmail.com>
415
416    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
417
418commit cf940ced9d927d811c5d6babfc8e8f290d30c28c
419Author: Gaetan Nadon <memsize@videotron.ca>
420Date:   Mon Nov 23 09:25:05 2009 -0500
421
422    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
423
424    Now that the INSTALL file is generated.
425    Allows running make maintainer-clean.
426
427commit 2585a89902107be3bae5c38c9c8f5b0c18a46866
428Author: Gaetan Nadon <memsize@videotron.ca>
429Date:   Wed Oct 28 17:10:47 2009 -0400
430
431    Remove .cvsignore #23776
432
433    X.Org no longer use CVS
434
435commit a54a582f68477386f01e67c0753fce1b93cdc777
436Author: Gaetan Nadon <memsize@videotron.ca>
437Date:   Wed Oct 28 14:41:41 2009 -0400
438
439    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
440
441    Automake 'foreign' option is specified in configure.ac.
442    Remove from Makefile.am
443
444commit 43e7114b140a97279d556cb6ec0a631df488dae1
445Author: Gaetan Nadon <memsize@videotron.ca>
446Date:   Wed Oct 28 14:09:09 2009 -0400
447
448    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
449
450    Add missing INSTALL file. Use standard GNU file on building tarball
451    README may have been updated
452    Remove AUTHORS file as it is empty and no content available yet.
453    Remove NEWS file as it is empty and no content available yet.
454
455commit 152368af1ed13e566a91880e8b123803fdef040d
456Author: Gaetan Nadon <memsize@videotron.ca>
457Date:   Mon Oct 26 12:54:22 2009 -0400
458
459    Several driver modules do not have a ChangeLog target in Makefile.am #23814
460
461    The git generated ChangeLog replaces the hand written one.
462    Update configure.ac to xorg-macros level 1.3.
463    Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
464    Update Makefile.am to add ChangeLog target if missing
465    Remove ChangeLog from EXTRA_DIST or *CLEAN variables
466    This is a pre-req for the INSTALL_CMD
467
468commit b3bcda3cc69641a216f32fb764c61c242423d00c
469Author: Gaetan Nadon <memsize@videotron.ca>
470Date:   Thu Oct 22 12:34:18 2009 -0400
471
472    .gitignore: use common defaults with custom section # 24239
473
474    Using common defaults will reduce errors and maintenance.
475    Only the very small or inexistent custom section need periodic maintenance
476    when the structure of the component changes. Do not edit defaults.
477
478commit d096fd94d8064a08895d34f978830240bfdc9616
479Author: Dave Airlie <airlied@redhat.com>
480Date:   Thu Jul 30 12:04:29 2009 +1000
481
482    s3: bump for release 0.6.3
483
484commit 3e974443b5b2906d1b82b7c27c83062715f925e9
485Author: Dave Airlie <airlied@redhat.com>
486Date:   Tue Jul 28 15:22:41 2009 +1000
487
488    s3: change to using ABI version check
489
490commit f047dffb193ffc52a358bfb0a3ae595acf4726b2
491Author: Dave Airlie <airlied@redhat.com>
492Date:   Tue Jul 28 10:49:36 2009 +1000
493
494    s3: fixup resources under pci access
495
496commit b8d3e448a8debbc2c77dee8e590a564a010ede59
497Author: Dave Airlie <airlied@redhat.com>
498Date:   Tue Jul 28 10:48:48 2009 +1000
499
500    s3: remove unneeded include
501
502commit c5c69f9de5d11fd2cadc4ccf00bcf2e8cf65f2eb
503Author: Dave Airlie <airlied@redhat.com>
504Date:   Tue Jul 28 10:03:14 2009 +1000
505
506    s3: switch to using config pci entity instead of active
507
508commit c41a1188ce53b8975e6d5c34c54a77a3f3c291bc
509Author: Adam Hoka <ahoka@NetBSD.org>
510Date:   Sun Jul 5 22:01:46 2009 +0200
511
512    Handle libpciaccess errors more gently and report any problems
513    encountered in Xorg.log (server crash versus log entry).
514
515    This fixes PR 22510.  Report and fix by Adam Hoka <ahoka@NetBSD.org>,
516    many thanks.
517
518    Reviewed-by: Matthieu Herrb <herrb@laas.fr>
519    Signed-off-by: Marc Balmer <marc@msys.ch>
520
521commit aa955eda7b6fddd12b163ee66367ecc998f82ae0
522Author: Adam Jackson <ajax@redhat.com>
523Date:   Thu Jul 2 11:33:54 2009 -0400
524
525    s3 0.6.2
526
527commit 2b83d07b90efd15756cf8c4c80f7f60c0e7cee2a
528Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
529Date:   Thu Jun 25 19:48:34 2009 +0400
530
531    Revert the using of BIOS defaults for the VRAM/DRAM timings
532
533commit bf6bdcc1220f3ed8c636e869c4b13e27923a139e
534Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
535Date:   Thu Jun 25 01:57:06 2009 +0400
536
537    Add manual page.
538
539commit 003d36e18e32b656c1dc309c5238fa5b4804c58e
540Author: Adam Jackson <ajax@redhat.com>
541Date:   Thu May 28 15:14:38 2009 -0400
542
543    Remove useless loader symbol lists.
544
545commit 061d5f51141323ea2f4e8e597e3d4bd7e3b7cbfa
546Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
547Date:   Mon May 25 14:34:27 2009 +0400
548
549    Trio64V+ now using NewMMIO. Enable Xv for Trio64V+ and Trio64UV+
550
551commit a1d6d9bec68c3bf47af69b73c875836bc46db3a1
552Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
553Date:   Mon May 4 15:10:17 2009 +0400
554
555    shadowFB option. Interlace mode support. Close bug #14999.
556
557commit dd2e8e7a5f0bbb0f6fc3cb32161a0024545179bc
558Author: Alan Coopersmith <alan.coopersmith@sun.com>
559Date:   Wed Apr 29 18:48:52 2009 -0700
560
561    Raise minimum xorg-server required to 1.4 for miGetPointerPosition
562
563    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
564
565commit 1fdb00594ed3ea18cb24e19f23813e9cc495fda3
566Author: Alan Coopersmith <alan.coopersmith@sun.com>
567Date:   Fri Jan 30 20:59:25 2009 -0800
568
569    Add README with pointers to mailing list, bugzilla & git repos
570
571commit 695868128746b7d8545fd78d1c42ebc2eac00a75
572Author: Dave Airlie <airlied@redhat.com>
573Date:   Mon Dec 22 15:30:39 2008 +1000
574
575    s3: fix build by including inputstr.h
576
577commit 51e77345fdb5423db233f26d6af4af36887c7059
578Author: Dave Airlie <airlied@redhat.com>
579Date:   Mon Dec 22 15:25:45 2008 +1000
580
581    s3 0.6.1
582
583commit 115436e1ec83e43b1e7727903036720cb109abef
584Author: Andrew Randrianasulu <randrik@mail.ru>
585Date:   Mon Nov 24 12:46:48 2008 -0500
586
587    Fix typo in map setup
588
589    fixes bug 18688
590
591commit ef1ca4800ee75044243d0eb2346240c50c28f0aa
592Author: Adam Jackson <ajax@redhat.com>
593Date:   Fri Aug 15 14:07:28 2008 -0400
594
595    Uninclude xf86Version.h
596
597commit 565c1ad65277080968c188a635dfd743be7ea2a3
598Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
599Date:   Thu Jul 17 18:54:17 2008 -0300
600
601    Correct unresolved symbol and incorrect assignment.
602
603      Function miPointerPosition is deprecated and not available anymore.
604      Correct "if (test = value)" -> "if (test == value)".
605
606commit 2128de2ad9fa67537d8ed56ff173b8a7b0422e0e
607Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
608Date:   Mon Jul 7 14:31:10 2008 -0400
609
610    S3: various fixes
611
612            * src/s3_video.c:
613
614            Streams Processor initialization.
615
616            XVideo support for 16, 24 and 32 bpp (only for TRIO64V2).
617
618            * src/s3_driver.c:
619
620            Add XVideo option (enabled by default).
621
622            Replace "swcursor" by "hwcursor" option (HW cursor
623            not implemented yet for all chipsets).
624
625            Close bug #5527: 24-bit colour depth support (24bpp and
626            32bpp framebuffer) for TRIO64V2. Acceleration doesn't work
627            with packed colour mode (24 bpp FB) but works with 32bpp
628            framebuffer mode (hardware limitation? -- need data).
629
630            Fix system hang-up when switching between console and X session.
631
632            Some minor changes of driver messages.
633
634commit 7edc59e33bfa152e124bc8dd25f7fc4b22e44bd8
635Author: Adam Jackson <ajax@redhat.com>
636Date:   Wed Mar 19 15:00:28 2008 -0400
637
638    s3 0.6.0
639
640commit 081bf87a55b65f12d0339b4f48a13b8113661dc7
641Author: Adam Jackson <ajax@redhat.com>
642Date:   Wed Mar 19 14:55:06 2008 -0400
643
644    Fix distcheck
645
646commit 773959298037b5b86e87d0fed530f1924d5d2208
647Author: Adam Jackson <ajax@redhat.com>
648Date:   Wed Mar 19 14:53:10 2008 -0400
649
650    Death to RCS tags.
651
652commit a0d6e3ff590f3704918339dc2b9aa0f820b24b75
653Author: Dave Airlie <airlied@redhat.com>
654Date:   Mon Mar 10 11:47:10 2008 +1000
655
656    s3: pciaccess conversion
657
658commit 7985d0148c766475c04f8481b0a9ddcea807d990
659Author: Evgeny M. Zubok <evgeny.zubok@tochka.ru>
660Date:   Mon Feb 25 11:52:09 2008 -0500
661
662    Add non-vbe DPMS support for TRIOs, adjust max clock on Trio64V2
663
664commit 4cf015311015b0e2267d7195c3795a337a466508
665Author: Brice Goglin <bgoglin@debian.org>
666Date:   Tue Aug 7 12:50:34 2007 +0200
667
668    Define VERSION* using PACKAGE_VERSION*
669
670commit 9465c594e919bd2ac3e41ac96e72a432daf81fa7
671Author: Alan Coopersmith <alan.coopersmith@sun.com>
672Date:   Tue Jan 9 19:33:45 2007 -0800
673
674    Was previously done in monolith Imakefile as:
675    SpecialCObjectRule(s3_video,$(_NOOP_), -DS3_NEWMMIO)
676
677    Needed to get definitions of GET_PSTREAM_*, GET_SSTREAM_*, etc.
678
679commit 3470935b099daed7ed2a31791267b9087672f3f7
680Author: Alan Coopersmith <alan.coopersmith@sun.com>
681Date:   Tue Jan 9 19:30:36 2007 -0800
682
683    renamed: .cvsignore -> .gitignore
684
685commit 658f0fcdb9d6494c99dcb9bf61b8f8d3ba830618
686Author: Alex Deucher <alex@t41p.(none)>
687Date:   Mon Nov 27 14:20:10 2006 -0500
688
689    bump version for release
690
691commit d4ce4d3f91690a61511b2d13943e5d0073917377
692Author: Evgeny M. Zubok <zoubok@mail.ru>
693Date:   Sat Nov 25 23:35:28 2006 -0500
694
695    full fix for older cards.
696
697commit 1f2426bf8aad082f6f232d3b8c497acdd9892810
698Author: Evgeny M. Zubok <zoubok@mail.ru>
699Date:   Thu Nov 23 13:36:04 2006 -0500
700
701    Make S3 driver work again.  Bug 7112.
702
703commit 921ff3112b0fa7ca95e9ef16d4ac980f86138594
704Author: Adam Jackson <ajax@nwnk.net>
705Date:   Sat Apr 8 01:39:50 2006 +0000
706
707    Bump to 0.4.1 for Xv changes.
708
709commit 0dd4f7377699b4d31a0cf34cc95a0bc8ae9a9391
710Author: Aaron Plattner <aplattner@nvidia.com>
711Date:   Fri Apr 7 23:11:42 2006 +0000
712
713    Add a DrawablePtr argument to the XV functions to pave the way for
714        redirected video.
715
716commit df44e7c257fdf15aa30c6b49d3a6116c01e396e4
717Author: Adam Jackson <ajax@nwnk.net>
718Date:   Fri Apr 7 19:51:30 2006 +0000
719
720    Unlibcwrap. Bump server version requirement. Bump to 0.4.0.
721
722commit 6adde374f8c1a1fd6573262d83e2810e5193c538
723Author: Kevin E Martin <kem@kem.org>
724Date:   Wed Dec 21 02:30:01 2005 +0000
725
726    Update package version for X11R7 release.
727
728commit c5d01fca0fb8c72dd69766eae41659bf4e6cb50e
729Author: Adam Jackson <ajax@nwnk.net>
730Date:   Mon Dec 19 16:25:54 2005 +0000
731
732    Stub COPYING files
733
734commit 18c0c40ce5f8142db7b12835f3c4dadcbbd063d5
735Author: Kevin E Martin <kem@kem.org>
736Date:   Thu Dec 15 00:24:18 2005 +0000
737
738    Update package version number for final X11R7 release candidate.
739
740commit d992241a8afda96025bae85fcc6d26132c5372ae
741Author: Kevin E Martin <kem@kem.org>
742Date:   Sat Dec 3 05:49:34 2005 +0000
743
744    Update package version number for X11R7 RC3 release.
745
746commit 8d185b334f89baccc9d1ba288c43099d420162bd
747Author: Kevin E Martin <kem@kem.org>
748Date:   Fri Dec 2 02:16:09 2005 +0000
749
750    Remove extraneous AC_MSG_RESULT.
751
752commit a8e40603f6f12adc12c85c3f6e2e16df661381ab
753Author: Adam Jackson <ajax@nwnk.net>
754Date:   Tue Nov 29 23:30:02 2005 +0000
755
756    Only build dlloader modules by default.
757
758commit be33c9a629feb4795006550e916cb1f27b4da69f
759Author: Eric Anholt <anholt@freebsd.org>
760Date:   Mon Nov 21 10:49:17 2005 +0000
761
762    Add .cvsignores for drivers.
763
764commit 610b28959e0222e652c826aebae4de4bd08b60da
765Author: Kevin E Martin <kem@kem.org>
766Date:   Wed Nov 9 21:15:20 2005 +0000
767
768    Update package version number for X11R7 RC2 release.
769
770commit 74b42054bf14a29df6629b4f3b295dd4f1f448ed
771Author: Kevin E Martin <kem@kem.org>
772Date:   Tue Nov 1 15:08:54 2005 +0000
773
774    Update pkgcheck depedencies to work with separate build roots.
775
776commit fe34c3a53ea040fb07de1edb0d0b5efba271c2ad
777Author: Kevin E Martin <kem@kem.org>
778Date:   Wed Oct 19 02:48:04 2005 +0000
779
780    Update package version number for RC1 release.
781
782commit 8af9770f05b485d9016a2f46a65423075091bc9b
783Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
784Date:   Mon Oct 17 00:09:04 2005 +0000
785
786    Use sed & cpp to substitute variables in driver man pages
787
788commit 527b5f01b56106ee43e1fdfec34a8da4a9cd250f
789Author: Daniel Stone <daniel@fooishbar.org>
790Date:   Thu Aug 18 09:03:48 2005 +0000
791
792    Update autogen.sh to one that does objdir != srcdir.
793
794commit 1304f6f06236eac7fc8b1c426ee3c67c88a9e4e5
795Author: Kevin E Martin <kem@kem.org>
796Date:   Fri Jul 29 21:22:44 2005 +0000
797
798    Various changes preparing packages for RC0:
799    - Verify and update package version numbers as needed
800    - Implement versioning scheme
801    - Change bug address to point to bugzilla bug entry form
802    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
803        reenable it)
804    - Fix makedepend to use pkgconfig and pass distcheck
805    - Update build script to build macros first
806    - Update modular Xorg version
807
808commit 7a4f0abfbb2d38e58b402d64c73c5e8b8f7ceed5
809Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
810Date:   Tue Jul 26 18:46:49 2005 +0000
811
812    Build system for s3
813
814commit f53881d942bcd463127d2e5bef18e6e422d361c4
815Author: Adam Jackson <ajax@nwnk.net>
816Date:   Mon Jul 11 02:29:58 2005 +0000
817
818    Prep for modular builds by adding guarded #include "config.h" everywhere.
819
820commit b826671f9e2dc702ab8537deb33f51fa7ede9c57
821Author: Daniel Stone <daniel@fooishbar.org>
822Date:   Fri Jul 1 22:43:12 2005 +0000
823
824    Change all misc.h and os.h references to <X11/foo.h>.
825
826commit 807527511814ff314c16d3c611d58a10d21c3369
827Author: Adam Jackson <ajax@nwnk.net>
828Date:   Sat Jun 25 21:16:55 2005 +0000
829
830    Bug #3626: _X_EXPORT tags for video and input drivers.
831
832commit 74df74c1f8b49e71e495af5ccad77600fd783f23
833Author: Daniel Stone <daniel@fooishbar.org>
834Date:   Wed Apr 20 12:25:29 2005 +0000
835
836    Fix includes right throughout the Xserver tree:
837    change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
838    change "foo.h", "extensions/foo.h" and "X11/foo.h" to
839        <X11/extensions/foo.h> for extension headers, e.g. Xv.h;
840    change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
841
842commit 0147cb45138ccd06477dc7f973ae20c1405f2bf5
843Author: Alex Deucher <agd5f@yahoo.com>
844Date:   Sun Oct 17 20:29:32 2004 +0000
845
846    - Add interlaced support to S3 driver (bug 332, Leo Savernik)
847    - EmulateWheelTimeout (bug 323, Mathias Fröhlich)
848    - single button double-click (bug 322, Rob Brown)
849
850commit b66a0081cec6427604758371907ac6c7dca532a3
851Author: Adam Jackson <ajax@nwnk.net>
852Date:   Fri Sep 17 03:04:53 2004 +0000
853
854    Bug #1192: Remove cfb support from drivers where its use is an option.
855        Delete xf24_32bpp, as s3virge was the last user. Fix up some comments
856        to refer to fb rather than cfb.
857
858commit 73537025414eb20771ee2337cf60016daafc0fc9
859Author: Adam Jackson <ajax@nwnk.net>
860Date:   Mon Aug 16 09:13:14 2004 +0000
861
862    Bug #1087: Make sure all the *Weak symbols are documented in the import
863        list, so the loader knows not to complain about unresolved symbols when
864        an optional module isn't loaded. This typically manifests as warnings
865        about fbdevHW symbols when the user isn't using the framebuffer
866        console.
867
868commit c431a14b6be0d9071b0fc95121260b33ab598f75
869Author: Adam Jackson <ajax@nwnk.net>
870Date:   Tue Aug 3 02:44:21 2004 +0000
871
872    Bug #962: Remove LoaderSymbol calls introduced by the dlloader work so
873        DoLoadableServer NO builds work again.
874
875commit d5c13acdc525296f3dd7b7fc99737be2423c1a01
876Author: Adam Jackson <ajax@nwnk.net>
877Date:   Fri Jul 30 20:30:54 2004 +0000
878
879    Bug #400 (partial): Driver fixes for the dlloader. When using dlloader, all
880        framebuffer formats except cfb and the overlay modes should work, and
881        r128 and radeon need to be loaded from the ati driver (both issues to
882        be fixed soon). Tested on i740, s3virge, mach64, tdfx, vesa, and vga
883        drivers. elfloader users shouldn't be affected.
884
885commit 1c466ae7996c3b3e7d3dba87458a056452bd3601
886Author: Eric Anholt <anholt@freebsd.org>
887Date:   Wed Jun 16 09:23:31 2004 +0000
888
889    DRI XFree86-4_3_99_12-merge import
890
891commit b1069acf6e9345c44f2a3cf7378590162e947042
892Author: Egbert Eich <eich@suse.de>
893Date:   Wed May 26 16:24:09 2004 +0000
894
895    Fixing setting of physical framebuffer base for several drivers. C&T
896        driver: Fixed setting of minimal clocks for HiQV chipsets. Neomagic
897        driver: improved support for lowres double scan modes.
898
899commit 143b16b20caba7c6f61784752b2ce766441ce170
900Author: Egbert Eich <eich@suse.de>
901Date:   Fri Apr 23 19:43:14 2004 +0000
902
903    Merging XORG-CURRENT into trunk
904
905commit c690296c3a9ea42e3beb8b97b2fe4654b5f0b7f7
906Author: Egbert Eich <eich@suse.de>
907Date:   Sun Mar 14 08:33:31 2004 +0000
908
909    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
910
911commit 55979da7b2d78bc8a2e85d0544d49801640e2617
912Author: Egbert Eich <eich@suse.de>
913Date:   Wed Mar 3 12:12:23 2004 +0000
914
915    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
916
917commit 05d3ef930b8b6dfde1eb4a272ad97e44625d9faf
918Author: Egbert Eich <eich@suse.de>
919Date:   Thu Feb 26 13:35:54 2004 +0000
920
921    readding XFree86's cvs IDs
922
923commit ce44f2000de918df33fa355aaccf3f4aaa82762c
924Author: Egbert Eich <eich@suse.de>
925Date:   Thu Feb 26 09:23:23 2004 +0000
926
927    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
928
929commit 44cec492e6684d44e3ddcee0570bf3c72b9e07e3
930Author: Kaleb Keithley <kaleb@freedesktop.org>
931Date:   Thu Dec 4 22:03:18 2003 +0000
932
933    XFree86 4.3.99.901 (RC 1)
934
935commit 22ef8a01ef4b9d7d9ce62e3646a8309f0d789e1f
936Author: Kaleb Keithley <kaleb@freedesktop.org>
937Date:   Tue Nov 25 19:28:38 2003 +0000
938
939    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
940
941commit 7a758184cd0a922e87909ccc54375a52bed792b8
942Author: Kaleb Keithley <kaleb@freedesktop.org>
943Date:   Fri Nov 14 16:48:55 2003 +0000
944
945    XFree86 4.3.0.1
946
947commit b8772dfb095f92bdedafae787f74a099182a4594
948Author: Kaleb Keithley <kaleb@freedesktop.org>
949Date:   Fri Nov 14 16:48:55 2003 +0000
950
951    Initial revision
952