summaryrefslogtreecommitdiff
path: root/app/x11perf/ChangeLog
blob: 8228db3000410c05686a103d62c81032ebb9e564 (plain)
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
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
commit 82ee29eaa466dbdca6d8c075270896127944fc0d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Aug 1 17:33:00 2024 -0700

    x11perf 1.7.0
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 397cfd30aed296e1f3f7c37e0c65ecf558ca8baa
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jul 13 16:42:19 2024 -0700

    Include both option name & argument in invalid argument errors
    
    Found by gcc 14.1:
    x11perf.c: In function ‘invalid_arg’:
    x11perf.c:339:21: warning: too many arguments for format [-Wformat-extra-args]
      339 |     fprintf(stderr, "Error: invalid argument to %s\n", arg, option);
          |                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Fixes: e7a6545 ("When users give invalid arguments, tell them what they did wrong")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/11>

commit e7a65459a2f6ce9ea5fd3d0ac413043986c19471
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 14:26:38 2024 -0700

    When users give invalid arguments, tell them what they did wrong
    
    Don't just dump a usage message and leave them to figure it out
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit 6deca4cb7bd0293760d0f1e3678387d74ca72251
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 13:27:10 2024 -0700

    Add -help [options|tests|all] and remove tests from default usage message
    
    Previously, the error message when giving a bad option was over 350 lines
    long.  This moves the list of tests out into the `-help tests` option and
    makes the usage error message a much more reasonable 32 lines long.
    
    (Also accepts but does not document --help.)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit 7e24793ede11649a412413ff2567bf20670ba4ef
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 13:06:17 2024 -0700

    Mark tests introduced in version 1.6 as version 1.6 & later
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit 3fd3380e289717d657b7c42e6f6980d4207e5bbb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 13:04:16 2024 -0700

    Mark tests introduced since version 1.6 as version 1.7
    
    Also bumps package version to 1.6.99.0 to prepare for 1.7 release.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit cb073d318328d8ac2df64aed195d933cf64b5358
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 12:23:45 2024 -0700

    Add -version option
    
    (Also accepts but does not document --version)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit 16fda0825a0c6a51f800c225e66adce65e5f327c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 18 12:00:43 2024 -0700

    Add -v1.6 & -v1.7 to recognized version flags
    
    Also adds missing -v1.4 & -v1.5 to the man page.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/10>

commit 2454977d35ee9961ade650a8fa0e908d8feaf363
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 17:07:32 2024 -0700

    x11perf.man: Add missing tests inherited from XFree86 4.3
    
    Fixes: ee11b04 ("XFree86 4.3.0.1")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit bb2566b73b547fb6d097ff9b86c2e3a38808c35d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 17:03:40 2024 -0700

    x11perf.man: Add missing tests inherited from X11R6.6
    
    Fixes: d7d99c8 ("R6.6 is the Xorg base-line")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit 7964896807fa0bb608ce2d274b2ae5a56e16bc95
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:38:12 2024 -0700

    x11perf.man: Add tests for anti-aliased trapezoids
    
    Fixes: 9f86498 ("Add RenderAddTraps. Rewrite trapezoid rendering code.")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit 9b289139ffaf017857dc3cbb0ceea21a44da6f7d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:26:28 2024 -0700

    x11perf.man: Add tests for ShmGetImage
    
    Fixes: 7f46d58 ("Add tests for ShmGetImage")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit 3853dd4a66d1fb6c29965a6664f9a7e6a3fe7bf7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:15:14 2024 -0700

    x11perf.man: Add tiled text test
    
    Fixes: 0fcb26e ("Add tiled text test")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit 76df8ca88c6553a290e9e003b117ee800c165451
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:13:00 2024 -0700

    x11perf.man: Add xybitmap putimage tests
    
    Fixes: bd6b810 ("Add xybitmap putimage tests")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit c923e89b0756dd40c41b6969f400a248ca4d0b22
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:32:02 2024 -0700

    man pages: use .BR markup for references to other man pages
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit bcabb502977e3680b955c131f037f8d817a3af4f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 16:07:00 2024 -0700

    configure: use @-style substitutions for man pages instead of __-style
    
    Moves substitution of variables from Makefile.am to configure.ac
    in preparation for allowing meson.build to do the same.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/9>

commit ebab5f63aaab943a8e6495fbac0cd5c41869d286
Author: Mike A. Harris <mharris@redhat.com>
Date:   Thu Aug 27 13:09:49 2020 -0400

    Move x11perfcomp scripts into datadir
    
    These don't need to be in libdir, they're not arch-sensitive.
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/2>

commit 55e9fceffc45bb4cbbeabe8fd45028f50caec906
Author: Keith Packard <keithp@keithp.com>
Date:   Fri Apr 3 17:57:43 2020 -0700

    Fix core AA text tests which now fail due to change in fontconfig
    
    Xft can no longer support 'render' in font names due to a
    change in fontconfig. Work around this by removing that from
    the font names and apply it to the pattern manually whenever
    the 'bfont' name is not NULL.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit 95a84fd5584873885f3123f25b6424008409afc1
Author: Keith Packard <keithp@keithp.com>
Date:   Fri Apr 3 16:48:10 2020 -0700

    Validate fonts used in Xft tests
    
    This compares the font family from the loaded font with the requested
    family and skips tests where the requested family wasn't available.
    
    It's not perfect, as someone could have a mis-configured font family,
    but should catch most incorrect font usages.
    
    I've also switched from Charter to DejaVu Sans as that is more widely
    installed.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit c0ba2f7af7270f2e6edf1bc2386c97ed3f0783cb
Author: Keith Packard <keithp@keithp.com>
Date:   Mon Oct 3 15:12:34 2016 -0700

    Don't try to make XOR 'look good'. Best to make it visible.
    
    Attempts to pick 'good' pixel values to make XOR rendering look decent
    instead make it invisible on modern TrueColor visuals. Just use the
    defined fg/bg pixel values, which at least make it appear.
    
    Adapt to this change by drawing the lines for the blt tests in copy
    mode so they appear on the screen.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit bd6b8109b34e2effbe071b7881aebb8a7cfac53d
Author: Keith Packard <keithp@keithp.com>
Date:   Mon Oct 3 15:09:20 2016 -0700

    Add xybitmap putimage tests
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit ba26e97853d209663de8527cfefee16afe3b959b
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Apr 1 14:48:42 2014 -0700

    Make put image tests work with planemasks
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit 0fcb26e0efdab2a8662b50dd6957b681c87b6737
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Apr 1 15:38:22 2014 -0700

    Add tiled text test
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit c6bbcba1102cb4420303afa0f6c1338e5885cf3d
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Apr 1 15:37:51 2014 -0700

    Eliminate overlaps in rects and traps
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit bd0f1e637f960962203cb5bb7cf0c5ce58cb2cec
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Mar 25 16:59:02 2014 -0700

    Ensure that 100x100 rectangle outlines do not overlap
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit f0c5c1c49bfbae402b11367103acae7675edf779
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Mar 25 16:56:29 2014 -0700

    Ensure that 100x100 rectangles do not overlap
    
    This avoids the obvious optimization which catch overlapping
    rectangles to avoid re-rendering the same pixels.
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit a2f8e2cf966156b2ce93e16068c31e088c578eda
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Mar 25 16:54:40 2014 -0700

    Set position of the status window based on perf window pos
    
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit 3e9ee84d8ce39c3f8cbc598c4105dcc9da9a7c15
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Mar 25 16:52:02 2014 -0700

    Ensure that vertical/horizontal segments do not overlap
    
    Some drivers manage to optimize the solid block of segments into a
    single square fill operation, which is a nifty optimization, but
    doesn't really measure what we're interested here.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>

commit 688bebb13c9a82983f544ff415440321a721fd53
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 15:09:08 2024 -0700

    Strip trailing whitespace from source files
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 95ff3954dea7deb1cc995c09c404ebb22b6f18a0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 28 19:19:52 2022 -0700

    x11perf 1.6.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 74b90ae3c226295a6ff196b71273983da3e1a70e
Author: Aaron Plattner <aplattner@nvidia.com>
Date:   Wed Sep 14 10:20:47 2022 -0700

    tests: Skip trapezoids for unsupported XRender formats
    
    xserver commit 436fd7e8b4966c305ea9c43f3c14c2ca04c35539 removed support
    for PictStandardA4. x11perf assumes this format always exists, so trying
    to run the -aa4trap* tests causes a segmentation fault when
    `XRenderFindStandardFormat (xp->d, PictStandardA4)` returns NULL.
    
    Since the server change was intentional, skip the tests if
    XRenderFindStandardFormat() returns NULL.
    
    See also: https://gitlab.freedesktop.org/xorg/xserver/-/commit/436fd7e8b4966c305ea9c43f3c14c2ca04c35539

commit c420f450d0a2b1f26d4043334bb8b6524fea4b07
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 15 13:10:52 2022 -0700

    Stop casting return value of malloc() and calloc()
    
    Not needed in C89 and later, and may hide errors
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2900d7a7e7929414268cb142bf00c57d370e1396
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 15 13:00:22 2022 -0700

    Variable scope reductions as recommended by cppcheck
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f021fe33579e75bd19e7b5784858be14c3e3c4b6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jul 21 15:57:38 2022 -0700

    gitlab CI: add a basic build test
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e7d9ca95f3afacd4d14eccc9d3492d651b8936fe
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jul 21 15:52:42 2022 -0700

    Build xz tarballs instead of bzip2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8527d4cf67018d793e8912f66fde0cd8a19d30a5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 9 13:02:18 2022 -0800

    Fix spelling/wording issues
    
    Found by using:
        codespell --builtin clear,rare,usage,informal,code,names
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ed96e6ce90f8a2177db00c56c2af9311bc167cc4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 16 15:49:38 2019 -0700

    x11perf 1.6.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5e8ed9bbaf67aee3236ad78e5dc62ebf3d9714de
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 7 20:02:50 2018 -0800

    Update configure.ac bug URL for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 356f6e0bd5cb881f43200ff1db1eb257e261afdd
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 16 20:56:58 2018 -0800

    Update README for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 98648d7bac718b8401e4277f5fccdf53aa038834
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Mar 9 21:34:43 2018 -0800

    Update minpixwin info in man page to match implemenation
    
    Scales to 50x50 window since commit 920b070987c00b369bd6c77c6283f68dffbc7b83
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

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

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

commit 609c78d5b32732810062139be9cfdcf1a37041ea
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 4697ef8385836d1e5db0d9f5839e23a4f9ca8bc8
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 c8eb3414f68cdc1b02a64c5321d4b0abe9c70d1e
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Sun Jul 19 12:08:15 2015 +0200

    Make NameFromFormat() const.
    
    Fixes a const-discard warning.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 920b070987c00b369bd6c77c6283f68dffbc7b83
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Jul 15 11:10:59 2015 -0400

    tests: Fix thinko in minpixwin50
    
    The other minpixwin tests draw to a window 50% the size of the pixmap,
    it's clear this one was meant to too.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 01d77ac727032d003a7381ca2ee0f55022295d16
Author: Niveditha Rau <niveditha.rau@oracle.com>
Date:   Fri Apr 24 11:14:44 2015 -0700

    Add new options from 1.6.0 release to man page
    
    -pause, -compwinwin*, -comppixwin*, -magpixwin*, -minpixwin*
    
    Signed-off-by: Niveditha Rau <niveditha.rau@oracle.com>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 294ea038fe9cefd690f06f6b5f48507c266b4d24
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 16 22:42:25 2015 -0700

    x11perf 1.6.0
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bb2c3601b2bc1f4adcd21c79501fc514ae1688f3
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Sat Jan 10 10:46:46 2015 +0100

    remove srand(1) call as nothing calls any rand like functions in x11perf
    
    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
    Reviewed-by: Thomas Klausner  <wiz@NetBSD.org>

commit 2b5c1ff8926b82675c8db1f44de4c910dd9265a4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 25 14:10:02 2014 -0700

    Combine help_message array into a single string
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2179b566688838439d6388e1468af404e06d7350
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Oct 25 13:57:43 2014 -0700

    Mark bitmap data as const
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ebaf6141a9932f934c87fce0c6f91c5ca25d1f3c
Author: Peter Harris <pharris@opentext.com>
Date:   Wed Mar 26 13:45:59 2014 -0400

    Fix name collision in -rgb*text
    
    Prepend a c to the test names of the "core" versions, to match the
    -aa*text and -caa*text tests.
    
    Signed-off-by: Peter Harris <pharris@opentext.com>

commit cb8d37dc33f2044636a04b0f81ebb4023daa93a6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 2 22:08:51 2014 -0700

    autogen.sh: Honor NOCONFIGURE=1
    
    See http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6333588e55df50cea89171352dcf15db969af69d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 2 22:08:51 2014 -0700

    configure: Drop AM_MAINTAINER_MODE
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1999b37e12fc358aa21f8dac2d11edff43377fc0
Author: Keith Packard <keithp@keithp.com>
Date:   Mon Mar 10 09:12:45 2014 -0700

    Add '-pause' option to delay between runs
    
    This lets the package cool down to get more consistent performance numbers.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>

commit f640487e27a3904831ff85033a2869e981e9d942
Author: Keith Packard <keithp@keithp.com>
Date:   Wed Mar 5 19:11:25 2014 -0800

    Switch to 64-bit ints

commit 9ba0ce7d849bbd94644664b60b50bd1e2d5813b7
Author: Keith Packard <keithp@keithp.com>
Date:   Sat Mar 29 13:48:02 2008 -0700

    Add scaling composite tests

commit 21c0d1903161a88d09c64811cf97dda3a8a8e751
Author: Keith Packard <keithp@keithp.com>
Date:   Sat Mar 29 13:47:40 2008 -0700

    Fix reported pixmap format name

commit 734c164464a3b5d9d9dd2dc3993de85b1f63c2ff
Author: Keith Packard <keithp@keithp.com>
Date:   Sat Mar 29 11:45:29 2008 -0700

    Add up/down scaling composite tests

commit ccd5cd064817595cfd0e04a926b73fb17fe31092
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 23 10:09:59 2013 -0800

    Assume signal handlers return void, as C89 requires
    
    Drops use of autoconf's obsolete AC_TYPE_SIGNAL
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b1f22217f6c513be07612d8ed88fe5540ce7be48
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 20 23:25:16 2013 -0800

    Drop imake fallback for RETSIGTYPE definition
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 47479aabdb82907929d76ac87ca71f44819791f8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 20 23:22:29 2013 -0800

    Mark usage & AbortTest as _X_NORETURN
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5340bddccdd21fd34aae996ac3347ddb71f00de6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Sep 28 18:53:17 2011 -0700

    Add const attributes to fix gcc -Wwrite-strings warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 84bfc56a89929999db92925c078d9e2f801b1689
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jul 27 18:29:38 2011 -0700

    x11perf 1.5.4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d171454212bff8f4a32cf3cef08566e29237da9d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jul 7 22:40:14 2011 -0700

    Add MKTEMP to DIR_SUBSTS in Makefile
    
    Needed for commit 1188465112a1 to work after revert of 4af24b2f5b3f8f
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit 86cf2ab52ad5c6b4b262c1673ad5bd4c8713e3e8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jul 7 17:16:52 2011 -0700

    Revert "Let autoconf generate x11perfcomp directly instead of doing it via sed"
    
    This reverts commit 4af24b2f5b3f8f2c20271ae323b6fa528b9b2127.
    
    Letting autoconf do it failed to handle the recursive expansion needed,
    resulting in "PATH=${exec_prefix}/lib/X11/x11perfcomp:..." without having
    exec_prefix defined in x11perfcomp.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit be99f1c0ecac26255aa9b0bb0347bab1b6e0fb88
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jul 1 19:59:34 2011 -0700

    Remove stray remaining CVS id tag
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1188465112a1a3c6acce9d370d448df70fd4fa4d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jul 1 19:51:47 2011 -0700

    x11perfcomp should use mktemp instead of pid for tmp directory
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4af24b2f5b3f8f2c20271ae323b6fa528b9b2127
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jul 1 17:38:01 2011 -0700

    Let autoconf generate x11perfcomp directly instead of doing it via sed
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit fefc834c419085b2db3b2d7d57bdbfe240d1b75c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jul 1 17:30:14 2011 -0700

    x11perfcomp: use saner $PATH
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4e86c85ac8cf2fc6631be704de45f098d1a58ab3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Mar 11 14:46:00 2011 -0800

    Make Makefile.am's compatible with Solaris make
    
    Solaris make won't substitute $< in explicit rules, only implicit ones
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8b8f94bca1576e7365c492cfc8131d5aa7bcd7c8
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sat Jan 22 14:41:33 2011 -0500

    config: substitute x11perfcompdir using Autoconf @x11perfcompdir@
    
    Use the Autoconf recommended way of substituting bindir and friends, see
    http://www.gnu.org/software/autoconf/manual/autoconf.html
    
    Use # sign for comment in script.
    Only sed is used, drop the cpp terminology.
    
    Reviewed-by: Rémi Cardona <remi@gentoo.org>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 490ceddc3e97e8c5bf1ed61265525c213abf65d1
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 19 10:06:55 2011 -0500

    config: move man pages into their own directory
    
    Use services provided by XORG_MANPAGE_SECTIONS.
    Use standard Makefile for man pages.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 36d4517099505fac29a3c0b8c6c3779b3f05b8ff
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Jan 13 17:15:36 2011 -0500

    man: replace hard coded man page section with substitution strings
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 8ebaae2bf1350b9414d261fc8509fcd898d9b152
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Jan 13 11:15:47 2011 -0500

    man: remove trailing spaces and tabs
    
    Using s/[ \t]*$//
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 7f46d58f7523a07e9086b7c47534c37240d83409
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date:   Thu Jan 6 10:58:53 2011 +0000

    Add tests for ShmGetImage
    
    Similar to GetImage and ShmPutImage, test the performance of retrieving
    pixel data from the X server without the overhead of copying the pixels.
    In the upper bound, using XShmGetImage, the performance will be limited
    by the RTT latency (x11perf -prop). However, comparing the scaling factors
    of XShmGetImage and XGetImage will give some insight into the driver
    efficiency.
    
    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
    Reviewed-by: Adam Jackson <ajax@redhat.com>

commit c39d831d409537fce2f36c8672f908a7cc810519
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jan 5 16:33:36 2011 -0800

    x11perf 1.5.3
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e7917bbec06e5c8e17f07b0eb833602b33111f08
Merge: 5072fb4 cc84118
Author: Peter Harris <pharris@opentext.com>
Date:   Tue Nov 23 14:41:33 2010 -0500

    Merge fixes from git://anongit.freedesktop.org/~peterh/x11perf

commit cc84118bd700745f02c65b2d6900e512e4c333af
Author: Peter Harris <peter.harris@hummingbird.com>
Date:   Mon Oct 29 11:35:22 2007 -0400

    Avoid "rep" calculation overflow.
    
    On today's fast machines, "treps" can easily overflow a 32-bit number.
    Use "long long" to calculate reps.
    
    Signed-off-by: Peter Harris <pharris@opentext.com>
    Reviewed-by: Adam Jackson <ajax@redhat.com>

commit 17a30e7c65c0b03b71b5b1ac54ae3ba33ae3b42a
Author: Peter Harris <peter.harris@hummingbird.com>
Date:   Mon Oct 29 11:29:32 2007 -0400

    Clamp test time to positive values.
    
    If there is some jitter in the sync time, operations can complete in a
    negative amount of time (confusing both humans and x11perfcomp).
    
    Signed-off-by: Peter Harris <pharris@opentext.com>
    Reviewed-by: Adam Jackson <ajax@redhat.com>

commit 5072fb464ffebcd97ec3a33cbff7095c3ec16225
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 19 22:34:02 2010 -0800

    Remove unneccessary AC_SUBST of CFLAGS & LIBS vars from PKG_CHECK_MODULES
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2f6fa453f485739575296da9317243ddda25c4f6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 19 22:32:12 2010 -0800

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    Regroup AC statements under the Autoconf initialization section.
    Regroup AM statements under the Automake initialization section.
    Add missing AC_CONFIG_SRCDIR
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d970d9de1c98bc828365f15fb08aaa8dda214dd6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 19 22:28:22 2010 -0800

    Bug 31640 - x11perf: Doesn't build without libXft
    
    https://bugs.freedesktop.org/show_bug.cgi?id=31640
    
    Fix trapezoid checks to look for both render & xft
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3147d783925bb42c7af78c9f5508c0dc245b942b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Sep 21 20:48:33 2010 -0700

    x11perf 1.5.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 172260eee2180448594def3fcf719ce501528e56
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Sep 21 20:46:39 2010 -0700

    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: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c4b59fd280aa0f647f7f889122adf8b92b9e5cf8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Sep 21 20:43:58 2010 -0700

    config: use AC_PROG_CC & AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
    
    The existing statements can now be removed from the configuration file.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4ed4ff8d692293995910da29e4d05ad9191105ea
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Sep 21 20:42:54 2010 -0700

    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.
    
    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
    The existing statement can now be removed from the configuration file.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1f990bc605d520f58e0c321a1338da76d76529fa
Author: Timo Myyra <Timo.Myyra@gmail.com>
Date:   Sun Sep 19 10:54:40 2010 -0700

    Remove reference to xbench in x11perf.man (#29830)
    
    xbench isn't supported by fd.o, and searching for it shows the latest version released in 1995.
    
    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 05759c8550bf994f4ae4e87a658aa7ffdd9dd517
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Aug 6 08:34:31 2010 -0700

    Add HP notice to COPYING for Xmark script
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3b427a6c4cc1551ce445abd975f5a128ea53d9be
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Jan 7 21:25:09 2010 -0500

    COPYING: replace stub with actual copyright notice
    
    Refer to x11perf.c
    Copyright 1988, 1989 by Digital Equipment Corporation
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 374bee27ef4d45044f7562ffed162a5b6f095e40
Author: Adam Jackson <ajax@redhat.com>
Date:   Sat Jan 2 17:36:17 2010 -0500

    Add -falseprecision flag for ludicrously precise stats
    
    The normal round-to-three-significant-figures behaviour, while morally
    correct from a benchmarking perspective, makes it impossible to measure
    variances between runs of less than 1%.  Occasionally you really do need
    to measure that finely - for example, if tweaking the server's main
    dispatch loop.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit af29c01b5d41f08053263dfe251d0a2a26c7eb1f
Author: Adam Jackson <ajax@redhat.com>
Date:   Sat Jan 2 17:23:50 2010 -0500

    Death to RCS tags.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit f8193c3f472fb0b7357552d10a6033e8ac08b9fa
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Nov 26 09:19:52 2009 -0500

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

commit e6d0de5d8f13ca73753cb70b12b2f9b98f82b39f
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:09:08 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 5d3fb3c68c681cce10d3625bab85bb39c18e5e3b
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Oct 26 22:08:38 2009 -0400

    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    
    ChangeLog filename is known to Automake and requires no further
    coding in the makefile.

commit 6b8182c54689c67fa35ac471fcfc4e7ee73b7b91
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 12:34:15 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 1b811f2bf9c3cdef966b18ea802f1f79b5f34ef2
Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
Date:   Wed Oct 21 12:47:20 2009 -0700

    This is not a GNU project, so declare it foreign.
    
    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
    > > was quite annoying to work around since 'autoreconf -fvi' replaces
    > > it and git wants to commit it.  Should these files even be in git?
    > > Can I nuke them for the betterment of humanity and since they get
    > > created by autoreconf anyways?
    >
    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
    
    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
    of the INSTALL file. It is also part of the 24206 solution.
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>

commit 98ca2c35b05a2d248063047c50770a018e35e810
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Oct 16 17:19:36 2009 -0700

    x11perf 1.5.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 266da0b9c176cf0dc615005bb0ad4aa585892bd8
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Oct 16 17:17:41 2009 -0700

    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 9851abff574fe041f4e3f45b39c61d943e3a7f86
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Oct 1 14:54:20 2009 -0700

    Add README with pointers to mailing lists, bugzilla, & git
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit c7f3c6652e9507e4303fd9ed913c593afb7447f0
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Tue Jan 13 18:55:51 2009 -0200

    Ansification and compile warning fixes.
    
      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects
    make distcheck.

commit 828c0323450eadaf040749c010918679f5e4fe53
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Mar 7 16:51:53 2008 -0500

    x11perf-1.5

commit 1540dc21e1ef7bb473af7616294e5730e38f66ec
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Dec 6 16:37:08 2007 -0500

    Replace static ChangeLog with dist-hook to generate from git log

commit b1c5b72bb4bb5f3e116255f9d04b368137ff25f7
Author: Michel Dänzer <michel@tungstengraphics.com>
Date:   Thu Nov 1 09:13:43 2007 +0100

    Fix typos in descriptions of -compwinwin{1,5}00.

commit 569a5eaaef9a5c8bf50f1323fe39e81347976875
Merge: 55aa9c2 e906fe5
Author: Keith Packard <keithp@koto.keithp.com>
Date:   Mon Sep 10 16:56:06 2007 +0100

    Merge branch 'origin'

commit 55aa9c238c5d81c9dc0f679dfd2fea00f356247b
Author: Keith Packard <keithp@koto.keithp.com>
Date:   Mon Sep 10 16:12:29 2007 +0100

    Add Compositing tests.
    
    -compwinwinXX, -comppixwinXX where XX is 10, 100 or 500.
    
    -pop <POP> <POP> ... where <POP> is one of Clear, Src, Dst, Over,
    OverReverse, In, InReverse, Out, OutReverse, Atop, AtopReverse, Xor, Add or
    Saturate.
    
    -format <FORMAT> <FORMAT> ... where <FORMAT> is one of RGB24, ARGB32, A8,
    A4, A1 or NATIVE

commit 8b3b9d1d1d3a255000fb43bd09c62ef1e0798023
Author: Keith Packard <keithp@koto.keithp.com>
Date:   Mon Sep 10 16:08:51 2007 +0100

    Rename .cvsignore to .gitignore

commit e906fe589a852e9b4af4aac6c72580494139a0b7
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Tue Jan 2 10:07:00 2007 -0800

    Bug 9520: Markup problems in Xmark.1x
    
    X.Org Bugzilla #9520 <https://bugs.freedesktop.org/show_bug.cgi?id=9520>

commit d36c3c0e7db2254dc1385fe7ffc187797e109e0e
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Apr 11 15:45:48 2007 -0700

    Another man page typo fix: s/aprox./approx./

commit e9bb1f2d13cad8240cc95f1aae19316fe7568cbd
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Apr 11 15:41:27 2007 -0700

    renamed: .cvsignore -> .gitignore

commit ad4686b388da891ca07fba41a748ea90a3bb15cb
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Apr 11 15:39:23 2007 -0700

    Bug #10616: Man page typo: s/peform/perform/
    
    X.Org Bugzilla #10616 <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
    Reported upstream from
    Debian Bug #395445 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=395445>

commit fabb885e8db6dd54d31b7223e9bb4f5d9e835d8c
Author: Adam Jackson <ajax@nwnk.net>
Date:   Thu Mar 2 23:36:27 2006 +0000

    Bump to 1.4.1 (was 1.0.1 because we screwed up during modularising).

commit 21ce0f2bab1743ed15474ba1468286d6782bf781
Author: Keith Packard <keithp@keithp.com>
Date:   Tue Feb 14 16:33:38 2006 +0000

    Split detection of Xrender and Xft. Add detection of MIT-SHM. Clean up
        CFLAGS in Makefile.am

commit 32393ee83c8ad63dbb54aab709cdd4dc5802a74c
Author: Eric Anholt <anholt@freebsd.org>
Date:   Tue Feb 14 02:48:22 2006 +0000

    Detect when Render is available and turn those tests on.

commit d121367a04832aafb27800283bac5ce35365d84e
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Dec 21 02:29:48 2005 +0000

    Update package version for X11R7 release.

commit 883de694b5dac055f0d7fd33cb84ee10c080ba8c
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Dec 19 16:22:42 2005 +0000

    Stub COPYING files

commit 2c3643dc1503b7e9136f678e0af238d507acf262
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Dec 15 00:24:04 2005 +0000

    Update package version number for final X11R7 release candidate.

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

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

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

    Update package version number for X11R7 RC3 release.

commit 9a94217191edf8e719ff9d4fbf485b5c33d0bde3
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Nov 28 22:01:39 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 95895b619909e2b9f2e144e972b83aee6595d5f3
Author: Eric Anholt <anholt@freebsd.org>
Date:   Mon Nov 21 10:34:58 2005 +0000

    Another pass at .cvsignores for apps.

commit 67eaa3cc45db8ab1a9aedb4675a09d5a3db31a7f
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Nov 21 03:14:15 2005 +0000

    Change dependency from xmu to xmuu since the full xmu (with all its baggage
        like Xt) is not needed here.

commit 583d5d1c988ab24c61e2bbb21a5e5847328e86ec
Author: Eric Anholt <anholt@freebsd.org>
Date:   Sun Nov 20 22:08:50 2005 +0000

    Add/improve .cvsignore files for apps.

commit 2350482506abae44fcf656a3383c354ac2910d34
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Oct 19 02:47:50 2005 +0000

    Update package version number for RC1 release.

commit a489b54c63515aa2be297ef340501b1b7ef09423
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Oct 17 23:56:21 2005 +0000

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

commit 4ac6e7bffbd29ae179fbc053a8317db4fa2f3f75
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Fri Oct 14 00:25:42 2005 +0000

    Use sed to fill in variables in man page

commit 64a324c6ffd7ba8a9bce52d41db3e63d77b69eca
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Thu Oct 6 20:04:20 2005 +0000

    Strip .sh from filenames of scripts to match the way they are installed by
        the monolith

commit eb51653deaa7a8cac0bac02f4a1fe4cd8291590b
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Thu Oct 6 03:47:12 2005 +0000

    Fix file names of beforelight, x11perfcomp, and xlsclients man pages

commit eb44ab57c5e989429f94bb67d01abaef70b9174d
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Aug 1 20:25:28 2005 +0000

    Install man pages to section 1 instead of section m (Patch from Donnie
        Berkholz)

commit a1e27c9edcb4b99a0550e674dea66bd1d3111747
Author: Kevin E Martin <kem@kem.org>
Date:   Fri Jul 29 21:22:30 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 9dc00b804b6283a6371cae136f0c4abc743e3462
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Jul 28 15:57:12 2005 +0000

    Fix distcheck for remaining apps

commit 8b5dc957345bbee8349340e345a6a06ec42a16e8
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Jul 26 18:58:15 2005 +0000

    Use AC_TYPE_SIGNAL and AC_FUNC_VFORK to replace Imake's SIGNAL_DEFINES and
    -DHAS_VFORK

commit 74c819bed573af85aabd92f023c885e53fb0cf77
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Jul 26 18:55:42 2005 +0000

    Add config.h includes for modularization Use RETSIGTYPE if defined by
        autoconf in addition to Imake's SIGNALRETURNSINT. Use
        HAVE_WORKING_VFORK if defined by autoconf in addition to Imake's
        HAS_VFORK

commit 81a51fb38778c54442657142cf5d57fae4ac3e0e
Author: Adam Jackson <ajax@nwnk.net>
Date:   Wed Jul 20 19:31:51 2005 +0000

    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
        configure cache, you cache it, and the cached value is probably wrong.

commit 2975cf615c2e0b79c3392d6d95b393ce4b0fd312
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Sat Jul 16 23:29:38 2005 +0000

    x11perf/Makefile.am: xinit/Makefile.am: xvidtune/Makefile.am:
    - Replace $< with portable macro xinit/Makefile.am: xinit/configure.ac:
        xvidtune/Makefile.am: xvidtune/configure.ac:
    - Use more portable cpp invocations for pre-processing files
        xfs/configure.ac:
    - Add XTRANS_CONNECTION_FLAGS so xtrans transport type defines are set
        correctly

commit 68ebb5b755791822c2f1d9f9659c2ee94bb63f1c
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date:   Wed Jun 29 20:41:01 2005 +0000

    Add x11perf build system Add some x11perf shell script to symlink.sh

commit 21b7ff0b54fcf28e933738aaaedf5aef46880717
Author: Eric Anholt <anholt@freebsd.org>
Date:   Wed Aug 11 08:05:31 2004 +0000

    - Fix the build with old libXrender headers installed by including
        TOP_INCLUDES first in the INCLUDES line.
    - Drive-by fix of unused variables warnings in do_traps.c.

commit 9f86498395945e52accedc6bf3d938c2d21abd5d
Author: Keith Packard <keithp@keithp.com>
Date:   Fri Aug 6 23:42:11 2004 +0000

    Add RenderAddTraps. Rewrite trapezoid rendering code.

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

    Merging XORG-CURRENT into trunk

commit 3208453773436841fd97a5a841f75aea2a84ea07
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:34:59 2004 +0000

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

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

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

commit c501072fc6aae9867785226575d87b6a3d89ecaa
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:36:16 2004 +0000

    readding XFree86's cvs IDs

commit 767875979a99fba9d7c00fd9eb7da316d88596dc
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 09:23:58 2004 +0000

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

commit c3ee38aec0f064a3916ecef9a29ecf6538a794a1
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:29:03 2003 +0000

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

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

    XFree86 4.3.0.1

commit 76312369bde4267f6405a4e1d26697258cc06b32
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:58 2003 +0000

    Initial revision

commit d7d99c8433b3bd35c8bad352ebd1fc49cff45264
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 15:54:53 2003 +0000

    R6.6 is the Xorg base-line