File: ChangeLog

package info (click to toggle)
xserver-xorg-video-vesa 1%3A2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,796 kB
  • sloc: sh: 4,135; ansic: 1,547; makefile: 40
file content (1285 lines) | stat: -rw-r--r-- 41,771 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
commit 07e4a0f0b3bd6308da2e000c12230b1e171e65a7
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Feb 15 14:33:38 2018 -0500

    vesa 2.4.0
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit f7876ce62c751c9b28d5750e1d01def877e666fb
Author: Ian Lepore <freebsd-xorg@damnhippie.dyndns.org>
Date:   Wed Jan 31 10:48:09 2018 -0500

    Honor Option "NoDDC" correctly
    
    Move xf86CollectOptions before the DDC code so it can actually hear us
    when we ask to disable DDC.
    
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=46541
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 2cb984533fd7a36151bb8be18a63f678a552ad71
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Jan 31 10:48:08 2018 -0500

    Use VBEFreeVBEInfo not free
    
    A VbeInfoBlock has substructure, just freeing the object will leak.
    Unfortunately VBEFreeVBEInfo does not check for NULL first so we have
    to.
    
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=25029
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 9c4f6c7ab011435a492dd5cb1847bf00f290c219
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Jan 31 10:48:07 2018 -0500

    Fall back to VGA if the palette API isn't supported
    
    I ported vesa to use the VBE service back in:
    
        commit 55f585a15f42ffe028ff37ea1f63543795dbf56e
        Author: Adam Jackson <ajax@redhat.com>
        Date:   Fri Sep 18 17:02:16 2009 -0400
    
            Use VBE palette load, not VGA banging.
    
    I'm reasonably sure that worked on all the hardware I had handy at the
    time. But it doesn't work in seabios, which means 8bpp is broken under
    qemu.
    
    We query this API early in initialization, and if it fails ->savedPal
    will be NULL, so use that as the hint to fall back to VGA banging.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>
    Reviewed-by: Dave Airlie <airlied@redhat.com>

commit c6fdaad9649d3fb6a13a8180c17ea8181aabd375
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Jan 31 10:48:06 2018 -0500

    Don't build old probe method on sufficiently new servers
    
    If we have pciaccess and not ISA support VESAProbe is effectively return
    FALSE, and the server will issue a potentially confusing fallback
    message if VESAPciProbe failed and ->Probe is non-NULL.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit b9f9c95ca2383460aa283adeeee6e0a66eed722b
Author: Mihail Konev <k.mvc@ya.ru>
Date:   Thu Jan 26 14:00:22 2017 +1000

    autogen: add default patch prefix
    
    Signed-off-by: Mihail Konev <k.mvc@ya.ru>

commit 8912f4afd4903cf383e32a32e2a5c878e5a9fe03
Author: Emil Velikov <emil.l.velikov@gmail.com>
Date:   Mon Mar 9 12:00:52 2015 +0000

    autogen.sh: use quoted string variables
    
    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    fall-outs, when they contain space.
    
    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 109fb7b040b009dcaba05d36200f9bba97aad2bc
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue Jan 24 10:32:07 2017 +1000

    autogen.sh: use exec instead of waiting for configure to finish
    
    Syncs the invocation of configure with the one from the server.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>

commit 0400b332a90f53b7a1361f832b60f1d4e90fd6e7
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Thu Apr 28 13:56:52 2016 +0200

    Use default refresh by default
    
    This seems to be a feature that isn't tested well. Too many VBE 3.0
    BIOSes are incorrectly implemented.
    
    Reviewed-by: Adam Jackson <ajax@redhat.com>
    Signed-off-by: Stefan Dirsch <sndirsch@suse.de>

commit 2792ba7535dc9cc1c5bb2b37c1f862be36710a32
Author: Matthew Green <mrg@NetBSD.org>
Date:   Mon Jul 20 10:55:09 2015 +0200

    When debugging, print the VGAbase as well.
    
    Just in case it ends up zero and causes a segmentation fault.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>

commit b49c293e67cd88424ff40a2ca4e58b28528691d7
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jun 16 11:56:32 2015 -0400

    vesa 2.3.4
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 190fdaaa1d6d317be3ef78855df805b3b3e5a239
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jun 16 11:57:59 2015 -0400

    Don't include deprecated xf86PciInfo.h
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit e667a9a2e5b61b2edd8643c7eed1d64d3948bc42
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 11 09:56:59 2015 -0400

    configure: Drop PanelID test
    
    vbe grew PanelID support in xserver 1.4; since we now require 1.6 we can
    remove the test.  Which is good, because it appears to have been broken
    by the scrnIndex->pScrn conversion, as vbe.h doesn't include xf86str.h
    so ScrnInfoPtr was never defined and the test failed.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit e36a0a8bcfd2bfa0b3878068f16361b3fd34b5d4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jan 30 15:42:52 2014 -0800

    Raise required version of xorg-server to >= 1.6
    
    Needed for Xorg to define/export xf86GTFMode(), introduced in
    xorg-server release 1.6.0 / commit ca5625b911e65fdfd4.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3e5d56d94720db7a9b97809f15e2432014d94553
Author: Julien Cristau <jcristau@debian.org>
Date:   Mon Sep 9 21:14:03 2013 +0200

    Bump to 2.3.3
    
    Signed-off-by: Julien Cristau <jcristau@debian.org>

commit ad0864d4fae1db24d32e95abff8a37d7eebea7ef
Author: Egbert Eich <eich@freedesktop.org>
Date:   Wed May 25 13:35:21 2011 +0200

    Make bool option parsing clearer and more consistent
    
    When there's no need to know whether the user has set the value
    of a configurable option (for logging for instance) the return
    of xf86ReturnOptValBool() can be assigned directly.
    
    Signed-off-by: Egbert Eich <eich@freedesktop.org>
    Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

commit 29a149544e2120a582043738d5b09dd80e896345
Author: Colin Walters <walters@verbum.org>
Date:   Wed Jan 4 17:37:06 2012 -0500

    autogen.sh: Implement GNOME Build API
    
    http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit d6042a43b6cedc7bbd7c1cb1b2f7b9df9fce1102
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Jan 16 13:18:23 2013 -0500

    configure: Drop AM_MAINTAINER_MODE
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 60d2dc115c4b6210d3b1e05f5b0c39d1f7917cbc
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Sep 25 08:55:03 2012 -0400

    Remove mibstore.h
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 7aafaf56fbca97f36c775462c1ceea3e03700c42
Author: Alexandr Shadchin <alexandr.shadchin@gmail.com>
Date:   Sat Aug 18 20:53:34 2012 +0600

    Fix check function in VESASaveRestore
    
    Signed-off-by: Alexandr Shadchin <Alexandr.Shadchin@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 4cb7fa8191ca41491330e4adc8c8188648ed7e11
Author: Alexandr Shadchin <alexandr.shadchin@gmail.com>
Date:   Sat Aug 18 20:53:33 2012 +0600

    Remove unneeded AM_CONDITIONAL
    
    Signed-off-by: Alexandr Shadchin <Alexandr.Shadchin@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 0249d01a2623c4f7769914fc0a7b50657a50560f
Author: Dave Airlie <airlied@gmail.com>
Date:   Wed Jul 18 20:02:49 2012 +1000

    vesa: bump to 2.3.2
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 86f1d894cd3c06a61abbd16e3e73d60db2c98621
Author: Dave Airlie <airlied@redhat.com>
Date:   Fri Jun 1 12:55:19 2012 +0100

    vesa: add api 13 compat layer.
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 378e55e375cbb659d66d6739891553d7a83e6a65
Author: Dave Airlie <airlied@redhat.com>
Date:   Wed May 23 11:30:51 2012 +0100

    vesa: fix make distcheck.
    
    Add missing compat-api header
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 18bf00600c75b1dc055d174c8ba9ec1dc4ae8b5a
Author: Dave Airlie <airlied@redhat.com>
Date:   Wed May 23 11:25:14 2012 +0100

    vesa: convert to new screen conversion APIs.
    
    Generated by util/modular/x-driver-screen-scrn-conv.sh
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 76c67b2735a5b0ee1cf231ff85eb3273a30b4ccc
Author: Dave Airlie <airlied@redhat.com>
Date:   Wed May 23 11:24:57 2012 +0100

    vesa: add compat-api.h
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 8cd553551767c0f970912fb73cae3aa733434106
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Mar 22 17:32:22 2012 -0400

    vesa 2.3.1
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 4ba7306fd0c9533750d389829e2cbf0522e149b3
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Wed Oct 19 01:49:38 2011 -0700

    configure.ac: Require a newer version of libpciaccess
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit efe1792818be463dd0367178f0233bc502b7a584
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Wed Oct 19 01:38:49 2011 -0700

    Code style cleanup to make the map and unmap blocks more consistent
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 1f84310ddf49778f776a39810aa98211c812e8ab
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Wed Oct 19 01:33:07 2011 -0700

    Build fix for ABI Version 12
    
    ABI Version 12 removes support for multiple PCI domains.  If you need to
    use this driver on a system with more than one PCI domain, you should
    either port this driver to using libpciaccess directly or stick with an
    older server.
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 1a60e9068284e1ef22d8c470a85410a54ee668e8
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Wed Oct 19 01:15:13 2011 -0700

    Use unsigned long rather than deprecated IOADDRESS
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 463886df688d3521afc47ec88f9aaf67e924ec7f
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Wed Oct 19 01:15:03 2011 -0700

    Build fix for ABI Version 12
    
    ABI Version 12 removes support for multiple PCI domains.  If you need to
    use this driver on a system with more than one PCI domain, you should
    either port this driver to using libpciaccess directly or stick with an
    older server.
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 0b02c68581f48c3239bc150df137623053794a3e
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Feb 14 11:44:02 2011 -0500

    Be forgiving of character-cell size mismatches in mode sizes
    
    Reviewed-by: Julien Cristau <jcristau@debian.org>
    Reviewed-by: Matt Turner <mattst88@gmail.com>
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 8e32d9d23c64ed700d3e9c5e6709a4b3c46b204a
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Feb 14 10:28:51 2011 -0500

    Fix memory leak in mode validation
    
    Reviewed-by: Julien Cristau <jcristau@debian.org>
    Reviewed-by: Matt Turner <mattst88@gmail.com>
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit b1f7f190f9d4f2ab63d3e9ade3e7e04bb4b1f89f
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Dec 8 13:45:32 2010 -0500

    Refuse to load if there's a kernel driver bound to the device
    
    Ported from the equivalent check in nv.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit fba7f460838624f55ade074e1c7690f4aa7aed4d
Author: Trevor Woerner <twoerner@gmail.com>
Date:   Fri Oct 22 15:23:46 2010 -0400

    Convert x+m/calloc/free to m/calloc/free.
    
    Signed-off-by: Trevor Woerner <twoerner@gmail.com>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 8532158308ef6445ac44276e5c989d343f851431
Author: Jesse Adkins <jesserayadkins@gmail.com>
Date:   Tue Sep 28 13:29:52 2010 -0700

    Purge cvs tags.
    
    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 32e50178f9e12112ab09af442770d43c5fa2ec9a
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 16:49:04 2010 -0400

    config: add comments for main statements

commit 61328ed613f9bb822227d5c80d773bdb8eba2742
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 16:07:00 2010 -0400

    config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 79e954f1c06ab45ac1a59bbb54bd4a98b15e11e7
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 14:05:23 2010 -0400

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 12c859a302e6c42b319f660af03c9718adffe699
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 09:27:42 2010 -0400

    config: complete AC_INIT m4 quoting
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit bda55aa468b43731e5bd1b5ebc1d9a2d927f9b79
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 20:24:42 2010 -0400

    config: remove unrequired AC_HEADER_STDC
    
    Autoconf says:
    "This macro is obsolescent, as current systems have conforming
    header files. New programs need not use this macro".
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 8e53d57f165365b0a084f410d2f08a3073d1bece
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 19:41:31 2010 -0400

    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
    
    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
    AC_PROG_C_C99. This sets gcc with -std=gnu99.
    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit bcdce845e1b2d48d66e1655bc86e13f3297b1916
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 18:45:19 2010 -0400

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

commit ba8aaea71ea7c0f3dcb2bfb3bda6534d3e1c104e
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 16:15:30 2010 -0400

    config: upgrade to util-macros 1.8 for additional man page support
    
    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    The value of MAN_SUBST is the same for all X.Org packages.

commit fa1fcd483cc60b5f4e82e3f1fe1a84459cf0eaee
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sun Jun 13 13:04:25 2010 -0400

    COPYING: update file with Copyright notices from source code.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit d82f2e6e52a7cac2f15a20ab91f50f06eaea7e6a
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Feb 15 13:39:02 2010 -0500

    config: Move compiler flags from configure.ac to Makefile.am
    
    Remove unused XORG_INCS variable.
    Remove unused INCLUDES='-I$(top_srcdir)/src'
    This statement is redundant and not used in the makefile
    
    Remove unrequired '-I$(top_srcdir)/src'
    The current dir is already included by default in the makefile
    top_builddir = ..
    DEFAULT_INCLUDES = -I. -I$(top_builddir)
    
    Move compiler flags from configure.ac to Makefile.am
    CFLAGS is an automake defined variable that should not be set
    by the module. It should not be AC_SUBST either, it already is.
    Use AM_CFLAGS in Makefile.am. This will allow the user to override
    the flags as they will be in the right order.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 069c1f82149031328bb48479732b0a21be5248dd
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 15 13:46:10 2010 -0800

    Update Sun license notices to current X.Org standard form
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit ba6527d2695574f6f7808ada39f6caed7a688f39
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Jan 4 14:19:13 2010 -0500

    vesa 2.3.0
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 1d0e73302d4c4eda56f32e129920ccd263f524ce
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Jan 4 14:16:42 2010 -0500

    Make the VBESetVBEMode fallback message slightly clearer
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 4b625d15b2bb3dc337924f0703db7ddd47c08434
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Dec 30 11:48:27 2009 -0500

    Remove support for non-shadowfb banked framebuffer
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 1a31829b966ceed444a3b3f7e91c5ae04d82c3ba
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Dec 30 11:27:53 2009 -0500

    Use own thunk function instead of shadowUpdatePackedWeak
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit ad1e7b4a4cacc1a157eb533e2a55a54b386949da
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Dec 30 11:24:37 2009 -0500

    Warning fix when !HAVE_ISA
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 3c73bfc96817348449e5ab6a7f7b03ac6c85bd47
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Dec 30 11:23:16 2009 -0500

    Code motion
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 2c8da9b4e703678b0f0f16edb1c48a523c8442fd
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Dec 15 21:00:15 2009 -0500

    configure.ac: sdkdir usage duplicates the sdk include dir
    
    The sdkdir variable provides a duplicate copy of the include/xorg
    directory. The statement is removed as this was it's only used.
    In the Makefile, there is now only one instance of the -I sdkdir
    The sdkdir is provided in XORG_CFLAGS.
    
    Acked-by: Dan Nicholson <dbn.lists@gmail.com>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 5833d01faac576016ac90a06ccb4af2fac23b718
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Dec 8 17:51:00 2009 -0500

    configure.ac: remove -I$(prefix)/include from INCLUDES #24676
    
    Using $prefix for any purpose will yield incorrect results
    as not all modules uses the same prefix and that modules can use
    different directory which is configurable.
    
    The main include dir comes from XORG_CFLAGS
    
    Reported-By: Michael Olbrich <m.olbrich@pengutronix.de>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 4509305138d04d1e2e670b6d21b54b28b69405ba
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Dec 1 15:25:52 2009 -0500

    Don't artificially limit the screen size to 2k
    
    VBE lets you specify sizes in uint16_t.  X won't work above 32k though,
    so clamp to that instead of the arbitrary 2k.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 2fbedf7be67e98170a17118c958568439d1613cc
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Nov 23 09:25:06 2009 -0500

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

commit 168971773075042625b6d233192fcc0ed85183d5
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:41:41 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Automake 'foreign' option is specified in configure.ac.
    Remove from Makefile.am

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

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

commit 82a87ff811214c20a1cd8c41f6e05e472f5e947e
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Oct 26 12:54:22 2009 -0400

    Several driver modules do not have a ChangeLog target in Makefile.am #23814
    
    The git generated ChangeLog replaces the hand written one.
    Update configure.ac to xorg-macros level 1.3.
    Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
    Update Makefile.am to add ChangeLog target if missing
    Remove ChangeLog from EXTRA_DIST or *CLEAN variables
    This is a pre-req for the INSTALL_CMD

commit 8e49958aba94062b757a7558e2d0a22cd59771af
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 13:05:24 2009 -0400

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

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

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

commit 13c8350893eb32c34603cbcf8a829db3f22fd1ce
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Mon Oct 5 21:02:28 2009 +0200

    Add missing shadowRemove() in VESACloseScreen().
    
    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
    Acked-by: Daniel Stone <daniel@fooishbar.org>

commit b2c938bf08daec061341deec768135846f702f7a
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Sep 18 17:08:24 2009 -0400

    Remove unused variable.

commit 55f585a15f42ffe028ff37ea1f63543795dbf56e
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Sep 18 17:02:16 2009 -0400

    Use VBE palette load, not VGA banging.

commit 7bfa6d08d6df4b76ed01ddab1a543ffc8bf08886
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Sep 18 16:40:14 2009 -0400

    Fix a comment

commit fdf653a99f53306efcd48658caf657af48ea916d
Author: Dave Airlie <airlied@redhat.com>
Date:   Thu Jul 30 12:04:30 2009 +1000

    vesa: bump for release 2.2.1

commit 869a9c8058c16734af5c8771a0c32df0be7bba36
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 28 15:22:42 2009 +1000

    vesa: change to using ABI version check

commit aad538f06852e5bf011597a574785d525ed1b0c4
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 28 13:32:40 2009 +1000

    vesa: update for resources/RAC API removal

commit 49f6a2f902473692f6541ee32e018b64d74e7ece
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Jul 16 11:58:39 2009 +1000

    Update to xextproto 7.1 support.
    
    DPMS header was split into dpms.h (client) and dpmsconst.h (server). Drivers
    need to include dpmsconst.h if xextproto 7.1 is available.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 69b3eb4f8a9b93f1b2a73e395d4d7c29c6c18b41
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Feb 26 14:33:52 2009 -0500

    Attempt VBE PanelID if DDC fails

commit 68ca3d10ab33ee2347928b0340198aff4f620144
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Feb 17 18:04:29 2009 -0500

    vesa 2.2.0

commit 817fb65fc3a95d6c34952f241c92ba2d3760968e
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Feb 5 16:09:32 2009 -0500

    Add yet another pass to mode validation.
    
    Now it's: exact intersection, range based, optimistic range based.  The
    final pass tries to stretch out the bottom of the sync ranges to fit
    down to 640x480.  We'll skip the last pass if the sync range is already
    that optimistic though.

commit 5522f06c2305d52b12d6934133f46f7b7927ebf7
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 30 21:06:38 2009 -0800

    Add README with pointers to mailing list, bugzilla & git repos

commit 566270b780a3f68b02d39f913372dc558ac931f2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 9 16:38:18 2009 -0800

    Remove xorgconfig & xorgcfg from See Also list in man page

commit c7f6d282ccbe1931f5ae6472cbfb4f80fc749525
Author: Dave Airlie <airlied@redhat.com>
Date:   Mon Dec 22 12:36:21 2008 +1000

    vesa 2.1.0

commit d994a9abbda582ccd6d38447ca2201de10cc36a5
Author: Adam Jackson <ajax@redhat.com>
Date:   Sun Nov 23 17:28:33 2008 -0500

    Make ISA support optional.

commit 38431c99ccb625d0fd784f86f6a8a9cdbfbf872e
Author: Luc Verhaegen <lverhaegen@ridcully.suse.de>
Date:   Thu Sep 18 16:58:59 2008 +0200

    VESASetMode: be verbose about the mode that's being set.

commit e670b3e4a1102a36a01edf1fd38676b9b13fb957
Author: Julien Cristau <jcristau@debian.org>
Date:   Tue Jul 15 00:26:12 2008 +0200

    Properly define the driver version
    
    Define VESA_VERSION_MAJOR/MINOR/PATCHLEVEL using the version from
    configure.ac.

commit 4939ada882feeafe4b2f233a4a27d6ad38d5bf99
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 14:27:48 2008 -0400

    Default VESAValidMode to returning MODE_BAD.

commit 9d27e31dca8e0bddbf82ef2f19064160cff3a59e
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 14:19:04 2008 -0400

    Add a TODO list.

commit bcf3514b99431b6935ea568b59d94f266ccd7aeb
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 14:09:00 2008 -0400

    Warning cleanup.

commit ea57dcf423ebc3cb24060eebfc1943703448c320
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 14:07:15 2008 -0400

    Use VBE services for DPMS instead of banging VGA registers manually.

commit 3631892e0c53568b9f6b0c4aeacd2354305376e6
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 13:41:07 2008 -0400

    vesa 2.0.0

commit eb4216dbb392a78d15cde8232d4d951ad876518e
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 13:40:16 2008 -0400

    Un-duplicate some init code.

commit 8ec1f02475bc4267050239c6840fa6738b0caefb
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jul 1 13:23:31 2008 -0400

    Remove unused ->device

commit 1f1e72fd965443e61ec10442044f554afd77db36
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 15:22:14 2008 -0400

    vesa 1.99.1

commit 419b7d46f2abab5506c89f3b2b3e7a50a5dbf3a7
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 14:30:51 2008 -0400

    Update copyright.

commit f807c82506f42c1e1fa63cfa56d7c79b653e46f8
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 14:19:12 2008 -0400

    Clean up memory model checking, and properly refuse unsupported models.

commit 99d2cc8676a93ec21f5ca1cec3525a8dff8a6acd
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 14:16:52 2008 -0400

    Add semi-reasonable mode validation.

commit 1a256385169d61c6f42cb6f6d0eb1688570fd79e
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 12:06:04 2008 -0400

    Prefer a more modern depth/bpp selection.
    
    24+32, then 24+24, then 16, 15, 8, 4, 1.
    
    See also Red Hat bugs #427383, #445566.

commit 2760e3e9163768aea85d188ae23b7d9e4e89944b
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 11:31:00 2008 -0400

    Remove some useless module loading cruft.

commit 6ac8eca0063576a64827ca74dfe78ac1a1e53188
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Jun 12 11:18:07 2008 -0400

    Fix boolean inversion in VBE screen clear.
    
    From the VESA VBE doc: "If bit D15 is not set, all reported image pages,
    based on Function 00h returned information NumberOfImagePages, will be
    cleared to 00h in graphics mode, and 20 07 in text mode. Memory over and
    above the reported image pages will not be changed. If bit D15 is set,
    then the contents of the frame buffer after the mode change is undefined."
    
    D15 here means the high bit of %bx.

commit f8a2b6470406415e96b5d03afa2129acd33b1d91
Author: Julien Cristau <jcristau@debian.org>
Date:   Thu Apr 17 01:36:48 2008 +0200

    Planar video is gone
    
    xf1bpp and xf4bpp were removed from the server, so
    don't try to use them.  The afb code was disabled
    for years and nobody noticed, remove that too.

commit 837e6382cfb54fdfe65355e2b0c21b2949cebc32
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Sun Mar 9 00:05:06 2008 +0100

    Makefile.am: nuke RCS Id

commit f374ef206a31c0208072bcd12386860429e78f40
Author: Julien Cristau <jcristau@debian.org>
Date:   Fri Mar 7 17:12:52 2008 +0100

    fixup pciaccess version detect

commit 89d1940bc2aa05e20527bb11224fd3ce0156a593
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Feb 29 17:05:09 2008 -0500

    Bug #10004: Fix palette initialization in 8bpp modes.
    
    MemoryModel is an enum, not a bitfield; use == not & for the test.

commit 8e8efd5de2b3f5985b6df814392e6eecff2f97a3
Author: Daniel Drake <ddrake@brontes3d.com>
Date:   Tue May 29 12:17:00 2007 -0800

    Bug #11090: xf86-video-vesa COPYING file
    
    X.Org Bugzilla #11090 <https://bugs.freedesktop.org/show_bug.cgi?id=11090>

commit d6908078506fe2e47fe1293d717d1c99deb8038a
Author: Ian Romanick <idr@us.ibm.com>
Date:   Tue Sep 4 16:38:37 2007 -0700

    Use pci_device_map_range instead of pci_device_map_memory_range

commit e1bd1a12455497608aa5a071a071b1b0fb0c9ce2
Author: Ian Romanick <idr@us.ibm.com>
Date:   Tue Sep 4 16:33:09 2007 -0700

    Use XSERVER_LIBPCIACCESS to autodetect libpciaccess usage.

commit d4e58d9b8dc9dd97a2f3a4c16e27ecce72bf19e1
Author: James Cloos <cloos@jhcloos.com>
Date:   Mon Sep 3 05:52:49 2007 -0400

    Add *~ to .gitignore to skip patch/emacs droppings

commit 07a1bb0ed32ab10abce160e6b506614564c54f49
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Aug 23 19:26:01 2007 -0400

    Rename .cvsignore to .gitignore

commit f5315667c0d827cca56a0a855b33e0efe83e3fa0
Author: Aaron Plattner <aplattner@nvidia.com>
Date:   Fri May 11 15:06:50 2007 -0700

    Don't disable FB access when it's already disabled.
    
    Fixes a server segfault during xrandr resize.

commit 5133cd1063e4cebbec9e7bcc85917f328ffe52f4
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date:   Thu Mar 1 17:42:06 2007 -0500

    Remove all trace of mfb

commit 9bbe1c49b9d22736eded05909e144cc6e03050b4
Author: Ian Romanick <idr@us.ibm.com>
Date:   Mon Jan 15 17:31:18 2007 -0800

    Correct '#ifdef' to '#ifndef'.  Oops.

commit 824ccaab986e1c2be6229350731b43f8831ebef7
Author: Ian Romanick <idr@us.ibm.com>
Date:   Mon Jan 15 13:16:52 2007 -0800

    Add conditional support for pci-rework branch.
    
    To build VESA driver for use with pci-rework Xserver, add
    --enable-pciacces to the configure command line.  Otherwise, the
    "traditional" VESA driver will be built.

commit 7f4f198b21bc1df254912adb9592339b21d121f5
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date:   Thu Nov 30 16:04:26 2006 -0500

    Bump to 1.3.0

commit 7777730e7749fe6921e76a4a1738e0e2a0b16376
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date:   Thu Nov 30 16:03:35 2006 -0500

    Fix shadow support yet again.

commit 7664016db9869d57d4279a9cb32a6ae0086c5b28
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date:   Fri Oct 13 18:48:08 2006 -0400

    Bump to 1.2.2

commit 3b07dd7f43be7c1263f80eb279605a89c860dc4b
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Sat Jun 3 09:46:27 2006 +0000

    Don't call VBEGetSetDACPaletteFormat when running in direct colour or YUV
        modes. (David Sterratt) Bump to 1.2.1.

commit a7315a314fa647a427805dc51f29558f6c607faa
Author: Adam Jackson <ajax@nwnk.net>
Date:   Fri May 19 19:10:12 2006 +0000

    Bump to 1.2.0

commit 2f586dac58dfa30246c7d404a3b08f6e287e5975
Author: Kevin E Martin <kem@kem.org>
Date:   Thu May 18 21:14:44 2006 +0000

    Fix ShadowFB support to work with recent miext/shadow changes from bug
        #5460.

commit 4129d5a0c0648afcf36b004e7f7b5b2de9b7ac27
Author: Adam Jackson <ajax@nwnk.net>
Date:   Fri Apr 7 21:47:15 2006 +0000

    Unlibcwrap. Bump server version requirement. Bump to 1.1.0.

commit fba272fcbedd2c03760646f587144ab4c111c7df
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Dec 21 02:30:04 2005 +0000

    Update package version for X11R7 release.

commit 1bfb30439eccfa39a021cf84b630fe8b2a51bf3c
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Dec 19 16:25:56 2005 +0000

    Stub COPYING files

commit 6eae0ead000939ee39967e580d9d356fa00bc236
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Dec 19 09:07:51 2005 +0000

    Typo fixes, mailing list & url updates, and other changes to prepare for
        X11R6.9 & 7.0 releases.

commit 14a6c4cb9adde5f5f6009bd4eb30f6649eeea540
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Dec 15 00:24:21 2005 +0000

    Update package version number for final X11R7 release candidate.

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

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

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

    Update package version number for X11R7 RC3 release.

commit 45d73281a9efe09292eab995c9796eb613edd6d1
Author: Kevin E Martin <kem@kem.org>
Date:   Fri Dec 2 02:16:11 2005 +0000

    Remove extraneous AC_MSG_RESULT.

commit ea8c88acd1cc1962cf8360144d4ea1c4b222ba17
Author: Adam Jackson <ajax@nwnk.net>
Date:   Tue Nov 29 23:30:06 2005 +0000

    Only build dlloader modules by default.

commit 62a4b6d0ec9b2ace7660cefd7d4aef6162c0d54d
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Nov 28 22:04:14 2005 +0000

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

commit 415fa60ef3a042851e93de5842312a8a695131b8
Author: Eric Anholt <anholt@freebsd.org>
Date:   Mon Nov 21 10:49:22 2005 +0000

    Add .cvsignores for drivers.

commit 10f025468598dafe646013cddafc43d90f6cbf0c
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Nov 9 21:31:21 2005 +0000

    Bump version numbers for X11R6.9/X11R7 RC2.

commit e559685ed6f0e5ab2d947ea02dea11129623a37d
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Nov 9 21:15:22 2005 +0000

    Update package version number for X11R7 RC2 release.

commit 0eb288746f85c73e7ae21838dfc52f177b963b29
Author: Kevin E Martin <kem@kem.org>
Date:   Tue Nov 1 15:08:57 2005 +0000

    Update pkgcheck depedencies to work with separate build roots.

commit 4e79cb7dd2d91af9777f4bea952c962c4e6c3a24
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Wed Oct 26 21:36:25 2005 +0000

    Don't try to restore savedPal in CloseScreen if savedPal is NULL, to avoid
        segfault.

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

    Update package version number for RC1 release.

commit 12cd0de9c963f61347ffde4513d5ed7deced79cc
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Oct 18 00:01:55 2005 +0000

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

commit 849b2b280720536ba318a3fb79b34b0eb920245d
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Oct 17 22:57:37 2005 +0000

    More 1.7 braindamage: define EXTRA_DIST in terms of @DRIVER_NAME@ instead
        of indirectly

commit 08beda07409160136c8fbe846144731af699a66f
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Oct 17 00:09:08 2005 +0000

    Use sed & cpp to substitute variables in driver man pages

commit ff8c7b0b4d3c6789d9ff8d37e84f9c5a445c3515
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Fri Aug 26 07:39:03 2005 +0000

    Wrap afb calls in #ifdef USE_AFB. (Debian #015)

commit 58313d626fbd332209f28e345aa8bdcc47113729
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Fri Aug 26 06:55:35 2005 +0000

    Wrap afb calls in #ifdef USE_AFB. (Debian #015)

commit 0a3e6b28c75312d42ed5dc5db3d31262d7ec3b75
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Thu Aug 18 09:03:55 2005 +0000

    Update autogen.sh to one that does objdir != srcdir.

commit 3251a5e09646f88a80b40385d2bb8e5417bdc388
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Wed Aug 10 14:07:25 2005 +0000

    Don\'t lose existing CFLAGS in all the input drivers and some of the video
        drivers

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

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

commit dfe2847e4720793b4ff80d717aba31079a065392
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Wed Jul 13 21:51:06 2005 +0000

    add Makefile.am

commit 8100f70d79c0d1a405eeb576898a182cef8d4c3b
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Wed Jul 13 21:50:33 2005 +0000

    add Makefile.am

commit be230c6144ff1dd12b0d7acce4a2a478c0be3527
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Wed Jul 13 21:46:36 2005 +0000

    Build system for vesa video driver

commit af35fdc8d552424cc74872aac364e48f42d5e409
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Jul 11 02:30:06 2005 +0000

    Prep for modular builds by adding guarded #include "config.h" everywhere.

commit b3ef5c7885d59f81847e2e7394683c91617b5cc1
Author: Adam Jackson <ajax@nwnk.net>
Date:   Sat Jun 25 21:17:00 2005 +0000

    Bug #3626: _X_EXPORT tags for video and input drivers.

commit 9f2b6b63add7822dea966f489f496c7a2edfa19c
Author: Egbert Eich <eich@suse.de>
Date:   Mon May 9 17:40:51 2005 +0000

    VBE Set Mode (0x02) to not clear the screen causes problems on some BIOSes.
        This fix adds an option to disable it (Bugzilla #3246).

commit 0b142fd735496c72ead409e1f89caa1da8d80f6e
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Wed Apr 20 12:25:32 2005 +0000

    Fix includes right throughout the Xserver tree:
    change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
    change "foo.h", "extensions/foo.h" and "X11/foo.h" to
        <X11/extensions/foo.h> for extension headers, e.g. Xv.h;
    change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.

commit 16af3cc966b0f79388e9a8a68f75f62f6c30a756
Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
Date:   Sat Dec 4 00:43:10 2004 +0000

    Encoding of numerous files changed to UTF-8

commit 160cc48048a4944d0a8d0b8a42c22bae61de0319
Author: Adam Jackson <ajax@nwnk.net>
Date:   Fri Sep 17 03:04:54 2004 +0000

    Bug #1192: Remove cfb support from drivers where its use is an option.
        Delete xf24_32bpp, as s3virge was the last user. Fix up some comments
        to refer to fb rather than cfb.

commit 09f88863a0bdf236200107631ff93f27bb03f6f4
Author: Adam Jackson <ajax@nwnk.net>
Date:   Wed Aug 11 19:52:13 2004 +0000

    Fix vesa.c's shadow symbol list.

commit 088edb719db194dd352c09ae3fa799e4653de9e6
Author: Adam Jackson <ajax@nwnk.net>
Date:   Tue Aug 3 02:44:21 2004 +0000

    Bug #962: Remove LoaderSymbol calls introduced by the dlloader work so
        DoLoadableServer NO builds work again.

commit a6a753d5a5c1c167670a4144c7ace39d688fd1e5
Author: Adam Jackson <ajax@nwnk.net>
Date:   Fri Jul 30 20:30:55 2004 +0000

    Bug #400 (partial): Driver fixes for the dlloader. When using dlloader, all
        framebuffer formats except cfb and the overlay modes should work, and
        r128 and radeon need to be loaded from the ati driver (both issues to
        be fixed soon). Tested on i740, s3virge, mach64, tdfx, vesa, and vga
        drivers. elfloader users shouldn't be affected.

commit 03b2fd85a09d9787d1895cdb7e418e7543288fd9
Author: Eric Anholt <anholt@freebsd.org>
Date:   Wed Jun 16 09:24:10 2004 +0000

    DRI XFree86-4_3_99_12-merge import

commit 283c0359be82bfac45781ad06d2ff0965daef73e
Author: Egbert Eich <eich@suse.de>
Date:   Fri Apr 23 19:52:54 2004 +0000

    Merging XORG-CURRENT into trunk

commit fd59c1875f4f249cf42b46cfa763a1d221463f74
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:33:41 2004 +0000

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

commit 3837d4b3421a71c631b6f17813c747446bf49246
Author: Egbert Eich <eich@suse.de>
Date:   Wed Mar 3 12:12:28 2004 +0000

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

commit acd0b5c42b504749bb6bd3f0c416fc838fc31b05
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:35:55 2004 +0000

    readding XFree86's cvs IDs

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

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

commit 617431e758a198202ba5f54347492e9b25084c07
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:28:43 2003 +0000

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

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

    XFree86 4.3.0.1

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

    Initial revision