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
|
commit d419928942dbf1897c9627475aa4a2828a81240f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Dec 4 15:43:12 2022 -0800
libXv 1.0.12
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 7afb4d5b020780f8081564bfcc8ed3df7515899f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 20 13:23:07 2022 -0800
Handle implicit conversion warnings from clang
Clears 62 -Wimplicit-int-conversion, 38 -Wshorten-64-to-32, and
11 -Wsign-conversion warnings.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 4b1f9d0914833c671887fdedb8b0d8169618ed62
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Nov 20 13:01:26 2022 -0800
Variable scope reductions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 9744d1f77b092eb4982c60e4750136fb19683545
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Mon Oct 17 18:16:29 2022 -0700
XvGetReq: remove trailing semicolon that caller is expected to provide
Clears 20 clang warnings of the form:
Xv.c:126:34: warning: empty expression statement has no effect;
remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
XvGetReq(QueryExtension, req);
^
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit ee48980aca0bc9deb61458fdb5ebda3928d944a0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Jul 17 18:27:19 2022 -0700
gitlab CI: add a basic build test
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit d478f60475e2ae50ce57bb9cc27d6a835dfa200c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Jul 17 18:26:23 2022 -0700
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 2f0952f5f78f80463810e7dc41c944d2c03e99ab
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sun Jul 17 18:25:35 2022 -0700
Build xz tarballs instead of bzip2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 03a6f599d060591a9a7cd8558bd2143a1c7c70d7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Dec 7 19:55:25 2018 -0800
Update configure.ac bug URL for gitlab migration
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 5af31d2a24abe5a41995c792012e5dc489ec2674
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Mon Nov 19 22:48:06 2018 -0800
Update README for gitlab migration
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 3d64daf31207c9162acf2999ee566fde448b178d
Author: Mihail Konev <k.mvc@ya.ru>
Date: Thu Jan 26 13:52:49 2017 +1000
autogen: add default patch prefix
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
commit 83c2f46c8e31dceda674a759b872282fb06b67c7
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 d5bae4a90c0c627d91c7bb97f607d3da7e7ba055
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 ef2a282876acc2316d338f8b66344ad5a2947057
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date: Tue Oct 4 21:29:55 2016 +0200
libXv 1.0.11
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
commit d9da580b46a28ab497de2e94fdc7b9ff953dab17
Author: Tobias Stoeckmann <tobias@stoeckmann.org>
Date: Sun Sep 25 21:30:03 2016 +0200
Protocol handling issues in libXv - CVE-2016-5407
The Xv query functions for adaptors and encodings suffer from out of
boundary accesses if a hostile X server sends a maliciously crafted
response.
A previous fix already checks the received length against fixed values
but ignores additional length specifications which are stored inside
the received data.
These lengths are accessed in a for-loop. The easiest way to guarantee
a correct processing is by validating all lengths against the
remaining size left before accessing referenced memory.
This makes the previously applied check obsolete, therefore I removed
it.
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
commit cf8cc328f1e370a548b71581bada7e1ee073c756
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jul 26 14:07:26 2014 -0700
Fix typo in dependencies for lint library
Breaks out of tree lintlib builds by causing VPATH lookup to fail.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 736d7ac5a94c7aa6761d50ab58339a3d9a116c51
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Sep 7 22:19:48 2013 -0700
libXv 1.0.10
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 4a7d2ca2438649e61b7dcb9491391ff6fbd482ac
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Jul 5 21:19:29 2013 -0700
Remove fallback for _XEatDataWords, require libX11 1.6 for it
_XEatDataWords was orignally introduced with the May 2013 security
patches, and in order to ease the process of delivering those,
fallback versions of _XEatDataWords were included in the X extension
library patches so they could be applied to older versions that didn't
have libX11 1.6 yet. Now that we're past that hurdle, we can drop
the fallbacks and just require libX11 1.6 for building new versions
of the extension libraries.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 06d275959b5dd78c319d5200ca6d986934b18920
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 23:43:58 2013 -0700
Refactor error handling
Reduce code duplication, make error checking & cleanup more consistent
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 29b23d387e32d09e1b34682f01cee899a08a1176
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 21:47:34 2013 -0700
Add missing calls to _XEatDataWords when we are skipping _XRead
If we failed to allocate the buffer to _XRead into, discard the
rest of the reply, instead of leaving it to confuse the reading
of the next reply.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 5a09a55b5b13280990465d83205e796bb8cd68ac
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 21:04:06 2013 -0700
Replace custom copy of GetReq macro with call to Xlib 1.5's _XGetRequest
xvproto.h names don't match those required by the Xlibint.h GetReq* macros,
but at least we can rely on the _XGetRequest function for the bulk of the
work now, instead of duplicating it.
Also clears clang warnings repeated for every request function:
Xv.c:137:5: warning: cast from 'char *' to 'xvQueryExtensionReq *' increases re
quired alignment from 1 to 2 [-Wcast-align]
XvGetReq(QueryExtension, req);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Xvlibint.h:52:8: note: expanded from macro 'XvGetReq'
req = (xv##name##Req *)(dpy->last_req = dpy->bufptr);\
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Xv.c:137:5: warning: implicit conversion loses integer precision: 'int' to 'CAR
D8' (aka 'unsigned char') [-Wconversion]
XvGetReq(QueryExtension, req);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Xvlibint.h:53:30: note: expanded from macro 'XvGetReq'
req->reqType = info->codes->major_opcode;\
~ ~~~~~~~~~~~~~^~~~~~~~~~~~
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit ef2722e10b275d13d754d2b92e67f72b0716d070
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 20:33:13 2013 -0700
Require ANSI C89 pre-processor, drop pre-C89 token pasting support
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
commit e73a2199f039e9ae772efb6be8d1db68eb346fa4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 13:35:12 2013 -0700
Use pad_to_int32 macro instead of repeated (x + 3) & ~3 pattern
Makes code clearer, and using ~3U instead of ~3 clears some signed int
warnings.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 4ced44196d6636006c9724a373c0d2ca0c12dc1e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 11:20:13 2013 -0700
Fix sign conversion & comparison warnings from clang
Clears up:
Xv.c:196:21: warning: implicit conversion changes signedness: 'CARD32' (aka 'unsigned int') to 'int' [-Wsign-conversion]
size = rep.length << 2;
~ ~~~~~~~~~~~^~~~
Xv.c:212:41: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if ((pas=(XvAdaptorInfo *)Xmalloc(size))==NULL) {
~~~~~~~~^~~~~
Xv.c:236:43: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
pa->num_adaptors = rep.num_adaptors - ii;
~ ~~~~~~~~~~~~~~~~~^~~~
Xv.c:243:40: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if ( (name = (char *)Xmalloc(size+1)) == NULL)
~~~~~~~~~~~~^~~
Xv.c:251:37: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
(void)strncpy(name, u.string, size);
~~~~~~~ ^~~~
Xv.c:260:36: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if ((pfs=(XvFormat *)Xmalloc(size))==NULL) {
~~~~~~~~^~~~~
Xv.c:269:20: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
for (jj=0; jj<pa->num_formats; jj++) {
~~^~~~~~~~~~~~~~~~
Xv.c:259:29: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
size = pa->num_formats*sizeof(XvFormat);
~ ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
Xv.c:305:16: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
for (ii=0; ii<pAdaptors->num_adaptors; ii++, pa++)
~~^~~~~~~~~~~~~~~~~~~~~~~~
Xv.c:356:21: warning: implicit conversion changes signedness: 'CARD32' (aka 'unsigned int') to 'int' [-Wsign-conversion]
size = rep.length << 2;
~ ~~~~~~~~~~~^~~~
Xv.c:369:41: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if ( (pes = (XvEncodingInfo *)Xmalloc(size)) == NULL) {
~~~~~~~~^~~~~
Xv.c:392:45: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
pe->num_encodings = rep.num_encodings - jj;
~ ~~~~~~~~~~~~~~~~~~^~~~
Xv.c:397:40: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if ( (name = (char *)Xmalloc(size+1)) == NULL) {
~~~~~~~~~~~~^~~
Xv.c:404:31: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
strncpy(name, u.string, size);
~~~~~~~ ^~~~
Xv.c:433:16: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
for (ii=0; ii<pEncodings->num_encodings; ii++, pe++) {
~~^~~~~~~~~~~~~~~~~~~~~~~~~~
Xv.c:886:27: warning: comparison of integers of different signs: 'int' and 'CAR
D32' (aka 'unsigned int') [-Wsign-compare]
for (i = 0; i < rep.num_attributes; i++) {
~ ^ ~~~~~~~~~~~~~~~~~~
Xv.c:946:27: warning: comparison of integers of different signs: 'int' and 'CAR
D32' (aka 'unsigned int') [-Wsign-compare]
for (i = 0; i < rep.num_formats; i++) {
~ ^ ~~~~~~~~~~~~~~~
Xv.c:1100:5: warning: comparison of integers of different signs: 'int' and 'unsigned int' [-Wsign-compare]
SetReqLen(req, len, len);
^~~~~~~~~~~~~~~~~~~~~~~~
X11/Xlibint.h:530:27: note: expanded from macro 'SetReqLen'
if ((req->length + n) > (unsigned)65535) { \
^ ~~~~~~~~~~~~~~~
Xv.c:1100:20: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion]
SetReqLen(req, len, len);
~~~~~~~~~~~~~~~^~~~~~~~~
X11/Xlibint.h:532:21: note: expanded from macro 'SetReqLen'
MakeBigReq(req,n) \
^
X11/Xlibint.h:505:35: note: expanded from macro 'MakeBigReq'
((CARD32 *)req)[1] = _BRlen + n + 2; \
~ ^
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 89dc3ff457644271b1c633efa9682ae45e55d9d8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 11:07:13 2013 -0700
Remove unnecessary casts from Xmalloc calls
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
commit 54851e0e72e2017c14c504459078c97d6112696b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 19:58:20 2013 -0700
Adopt X.Org standard code style, with consistent indentation
Having differing indent levels of 2, 3, & 4 spaces hurts my eyes.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit d58f74ebfd0c56ffeb8e288c65592228af197a2e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 22 19:06:09 2013 -0700
libXv 1.0.9
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 22cc0c897a28a41d49fe68277bb3c002f54bbb48
Author: Daphne Pfister <daphnediane@mac.com>
Date: Sat Jun 1 22:27:23 2013 -0400
Bug 65252: Ensure final name is nil-terminated & none point to uninitialized memory.
This patch attempts to fix this bug by ensuring that there is at least one
nil byte at the end of all the name strings. This should prevent reading
past the end of the allocation as well as exposing uninitialized memory.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit edfb6fc397686c1892603d0f86a9aadf14dbc12e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Jun 1 17:26:11 2013 -0700
XvQueryPortAttributes: add a comment explaining memory strategy
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 179ed259e75a62e74532e36f52f3838deb2aac92
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri May 31 17:49:24 2013 -0700
libXv 1.0.8
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 50fc4cb18069cb9450a02c13f80223ef23511409
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Apr 13 00:03:03 2013 -0700
integer overflow in XvCreateImage() [CVE-2013-1989 3/3]
num_planes is a CARD32 and needs to be bounds checked before bit shifting
and adding to sizeof(XvImage) to come up with the total size to allocate,
to avoid integer overflow leading to underallocation and writing data from
the network past the end of the allocated buffer.
Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 59301c1b5095f7dc6359d5b396dbbcdee7038270
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Apr 13 00:03:03 2013 -0700
integer overflow in XvListImageFormats() [CVE-2013-1989 2/3]
num_formats is a CARD32 and needs to be bounds checked before multiplying
by sizeof(XvImageFormatValues) to come up with the total size to allocate,
to avoid integer overflow leading to underallocation and writing data from
the network past the end of the allocated buffer.
Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 15ab7dec17d686c38f2c82ac23a17cac5622322a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Apr 13 00:16:14 2013 -0700
buffer overflow in XvQueryPortAttributes() [CVE-2013-2066]
Each attribute returned in the reply includes the number of bytes
to read for its marker. We had been always trusting it, and never
validating that it wouldn't cause us to write past the end of the
buffer we allocated based on the reported text_size.
Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 6e1b743a276651195be3cd68dff41e38426bf3ab
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Apr 13 00:03:03 2013 -0700
integer overflow in XvQueryPortAttributes() [CVE-2013-1989 1/3]
The num_attributes & text_size members of the reply are both CARD32s
and need to be bounds checked before multiplying & adding them together
to come up with the total size to allocate, to avoid integer overflow
leading to underallocation and writing data from the network past the
end of the allocated buffer.
Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 79362c764a6df7e7fbe5247756bdbf60f3a58baf
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Sat Apr 13 00:28:34 2013 -0700
Use _XEatDataWords to avoid overflow of rep.length shifting
rep.length is a CARD32, so rep.length << 2 could overflow in 32-bit builds
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit ed13edeac5adc2e6afcd87f63b5ae1ff9ad47958
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 1006d44b8674b5d9c5d7e893878776fbd34dbed2
Author: Adam Jackson <ajax@redhat.com>
Date: Tue Jan 15 14:28:48 2013 -0500
configure: Remove AM_MAINTAINER_MODE
Signed-off-by: Adam Jackson <ajax@redhat.com>
commit ddec3b412e1d857d1a2daa75df61de377e1de9bd
Author: Thomas Klausner <wiz@NetBSD.org>
Date: Tue Jul 17 21:56:28 2012 +0200
Uppercase SH arguments.
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 0f4fa1820041394e879517abb49c0391ecc796f7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Wed Mar 7 21:25:38 2012 -0800
libXv 1.0.7
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit de5e2271b54b7fe8bb3f8b66a70b5b87853f51a2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Thu Nov 10 21:45:11 2011 -0800
Fix gcc -Wwrite-strings warnings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit ff45155aa59c22aa5abc5ffe941dfe3b0f4c288f
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date: Wed Oct 5 20:59:37 2011 -0700
XvQueryExtension doesn't return XvBadAlloc
https://bugs.freedesktop.org/show_bug.cgi?id=22829
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
commit 21ce77de0fc1b92bb55699df7e93dd1aae988fc5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Sep 16 22:56:12 2011 -0700
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
git diff -w & git diff -b show no diffs from this change
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 7091e73f39b813adcc8fa5e61ad336ba063d7e00
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Feb 2 11:43:45 2011 -0500
config: comment, minor upgrade, quote and layout configure.ac
Group statements per section as per Autoconf standard layout
Quote statements where appropriate.
Autoconf recommends not using dnl instead of # for comments
Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
Add AC_CONFIG_SRCDIR([Makefile.am])
Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS
No functional configuration changes
This helps automated maintenance and release activities.
Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
commit 50a2f154f20763c9e98bdcf705fa366c87c6bae4
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Fri Jan 28 19:41:37 2011 -0500
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit b9b6680cbc95501af70c3597bfdd51d17aace695
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Jan 27 18:50:15 2011 -0500
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 e34fff44ebc4f8c258df127f6f80d0a1aa86a25d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Oct 29 17:52:32 2010 -0700
libXv 1.0.6
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 6e0da1da31552faaba26a351be0a4cf2d5964b05
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Fri Oct 29 17:51:53 2010 -0700
Sun's copyrights now belong to Oracle
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 4c2bc9a94ee759423adbc4e7c99b9bf9fea692ec
Author: Jesse Adkins <jesserayadkins@gmail.com>
Date: Tue Sep 28 13:30:04 2010 -0700
Purge cvs tags.
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit ec92e24e86363fcbc14f8dce9739a430f68b998f
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Aug 18 17:29:15 2010 -0400
man: whitespace management
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 7bb70e6f8f394775d5d7ed7035a6d4b2accd2892
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Wed Aug 18 17:23:31 2010 -0400
man: remove unrequired local fix for bug 5628
Local fix in CVS for bug 5628 is not required
as the problem has been fixed in
util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 14cf5e3d19488f9a36824a01d4aba4a7f5ebc1cd
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date: Thu Jul 8 15:21:36 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
Enables use of platform appropriate version of sed.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit e106f955dfc23798975ef14b3d3400aff39eced9
Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
Date: Thu Jul 1 07:07:12 2010 -0300
Purge macro NEED_REPLIES
Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
commit 481033e52111a42ae80c2814a499a068d7dc4771
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Mar 29 16:50:34 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 ea333fad90bce73c95a5ac310c127e22d6b41c6c
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Mar 29 14:53:49 2010 -0400
config: remove the pkgconfig pc.in file from EXTRA_DIST
Automake always includes it in the tarball.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
commit 917a09fe40630d9ba2ac7f2f48636989f3163580
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Thu Jan 14 20:55:17 2010 -0800
Update Sun license notices to current X.Org standard form
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit f0225573605729797a0edd00276f4704f9cda3c2
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Fri Nov 27 20:56:04 2009 -0500
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Now that the INSTALL file is generated.
Allows running make maintainer-clean.
commit f6ab500cf3d00bfa49070007c006e500253b6d84
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 fec734de503d63bb0abce9088be2e6655e82f800
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Tue Oct 27 15:07:26 2009 -0400
Deploy the new XORG_DEFAULT_OPTIONS #24242
This macro aggregate a number of existing macros that sets commmon
X.Org components configuration options. It shields the configuration file from
future changes.
commit f0b191321146550b88a94233b9677e32044b6c0e
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Mon Oct 26 22:08:43 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 9ae8551458ee56b7ea19066023da64c7e24ea9f3
Author: Gaetan Nadon <memsize@videotron.ca>
Date: Thu Oct 22 12:34:19 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 05974c72286a9556ebf5ff541967fa53f75a55a8
Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
Date: Wed Oct 21 12:47:26 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 5be9a0099a83d1acf464640e930518a4c46c0920
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Sat Oct 3 02:12:52 2009 -0700
libXv 1.0.5
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 5aa62bb376608cd0350e46263dec74f861019431
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Sat Oct 3 01:53:56 2009 -0700
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 4d189188c913e6956344689802a582589db04abe
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Sat Oct 3 01:31:44 2009 -0700
Convert documentation from xv-library-v2.2.txt into man pages
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 7303af622984579e600893934a3958c0654d57bf
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Fri Oct 2 08:55:52 2009 -0700
Man page cleanups and formatting fixes
- Convert man page section headings to traditional style/names
Make them all caps, and use 'synopsis' instead of 'syntax'
- Strip trailing whitespace from man pages
- Add return types to function prototypes
- Fix unbalanced quoting and other formatting issues
- Use .BR for formatting man page references
- Add "libXv Functions" to man page header
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit ea79759a6940855dab10472a876e784fb8494eee
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Thu Oct 1 23:04:56 2009 -0700
Move xv-library-v2.2.txt document from xorg-docs
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit dbf88774a77d91f3f7996071dfccf61636afa77b
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Sat May 9 17:13:11 2009 -0700
Adjust flags definitions to fix lint library build
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 7cc28e8ae807e69663e0a73cd12edf9963277a2d
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Feb 2 20:34:37 2009 -0800
Add README with pointers to mailing list, bugzilla & git repos
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
commit 245b7cffe78203eeb265ac73177ed258471cb227
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date: Mon Feb 2 13:58:34 2009 -0200
Janitor: make distcheck, compiler warnings, .gitignore.
commit 2c0dc990a1ad96b71c95800d83378413eab63dbb
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Mar 17 20:01:01 2008 -0700
Version bump: 1.0.4
commit acb78abb510e7e69e74fb3bba80d8ceaf2af7ce4
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date: Sun Mar 9 08:43:44 2008 +0100
nuke RCS Ids
commit d455a1d9ae336a397a1b1a08228b7faa1024c1aa
Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
Date: Mon Aug 20 19:02:40 2007 -0300
get rid of ancient XFree86 CVS Id tags
commit 8b0752135f84edebc5e476f19069c8d78676f416
Author: Ademar de Souza Reis Jr <ademar@mandriva.com.br>
Date: Mon Aug 20 18:58:44 2007 -0300
convert manpages prototypes to C ANSI format
Closes: #8360 (libXv man pages should be
converted to ANSI prototypes)
commit 20d07bb9ba2bca56e3f02b4b878377eded241059
Author: Daniel Stone <daniel@fooishbar.org>
Date: Sat Dec 16 01:31:51 2006 +0200
bump to 1.0.3
commit 2f0089d24ab28f3325a5da7a136873eefb0bd97f
Author: Daniel Stone <daniel@fooishbar.org>
Date: Wed Dec 6 19:00:07 2006 +0200
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
commit 978e98c43245671b4fdedb42371260f5fa139f14
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 25 14:49:45 2006 -0700
Bump version number to 1.0.2
commit 1dd351499ee692bb71eee4cffc305431843cfb87
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Fri Sep 22 19:06:30 2006 -0700
Fill in AUTHORS & COPYING files
commit e5cb03cfa7386e13bede2d33d06be5369ab2a5d2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Tue Sep 19 15:06:27 2006 -0700
Correct description of dpy argument in libXv function man pages
(Previous description applies to programs, not functions - you must supply a
valid Display pointer to functions, there is no fallback to $DISPLAY.)
commit 5dc20e33bc29f1efd88ed1cf5e83943ab53b9ac6
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Tue Sep 19 13:25:27 2006 -0700
Fix man page typos
commit dd25684d6f67b8c5a836b98d224ac6bf21076972
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 18 16:29:46 2006 -0700
Coverity CID #580: XvQueryEncodings Returned without freeing storage "pes"
Free the portion of the encoding list we had already filled in if we get
an error allocating memory for a list entry.
commit 8681d431516979dcffd1ca7a65d47026d8ad0336
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 18 16:14:11 2006 -0700
Add hooks for running code checkers like sparse & lint over the source
commit d19e0d1fe15de6b9a2bfffe30bd041497c021eaf
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 18 16:13:16 2006 -0700
Add argument types to static function prototypes to clear sparse & lint warnings
commit 3c80665e7c53db021b52ad267c12c6b4f43e7c3a
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 18 15:45:50 2006 -0700
Replace static Changelog with dist-hook to generate from git log
commit d968d8b6777f21b799a99c9652c27e39da319b00
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Mon Sep 18 15:43:59 2006 -0700
Add *~ to .gitignore to skip emacs droppings
commit abab8955bdb30ffe74dc3b8fe2e6b009a2d2cf3d
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date: Thu Jul 13 14:59:10 2006 -0700
renamed: .cvsignore -> .gitignore
commit 8bf896eb20d6752f31b7d966ff6d8c3f905b536d
Author: Kevin E Martin <kem@kem.org>
Date: Wed Dec 21 02:30:06 2005 +0000
Update package version for X11R7 release.
commit d54ce4a8f14bcb3d027c1bf8f46e215caf596dad
Author: Adam Jackson <ajax@nwnk.net>
Date: Mon Dec 19 16:28:27 2005 +0000
Stub COPYING files
commit 6561f50b1ac74ebb02ec13d434af1e8bef50fd99
Author: Kevin E Martin <kem@kem.org>
Date: Thu Dec 15 00:24:35 2005 +0000
Update package version number for final X11R7 release candidate.
commit e495ba278269a66eab6829b796e7fa32b79dbc2e
Author: Kevin E Martin <kem@kem.org>
Date: Tue Dec 6 22:48:45 2005 +0000
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
commit 4cf396de99b15b48751ece43e74f0aeb60ab5d50
Author: Kevin E Martin <kem@kem.org>
Date: Sat Dec 3 05:49:45 2005 +0000
Update package version number for X11R7 RC3 release.
commit 4ff8025f6d0c9ef14e500d123613ccee45c8c23e
Author: Kevin E Martin <kem@kem.org>
Date: Sat Dec 3 04:41:51 2005 +0000
Add check and cflags for malloc(0) returning NULL.
commit 4c738dba961b3eae69e466a0bfcd8e6e3e539675
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Mon Nov 28 22:03:06 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 9460f736b6f61687b20e91e0a02aa81c879d7e4f
Author: Eric Anholt <anholt@freebsd.org>
Date: Sun Nov 20 23:17:41 2005 +0000
Add/improve libs .cvsignores.
commit ed2d19981e048a31d3a594341787f0505d4dd6a8
Author: Kevin E Martin <kem@kem.org>
Date: Sat Nov 19 07:15:43 2005 +0000
Update pkgconfig files to separate library build-time dependencies from
application build-time dependencies, and update package deps to work
with separate build roots.
commit 768933f26103bd9324e3c3efbc287ca21a2776b3
Author: Kevin E Martin <kem@kem.org>
Date: Wed Oct 19 02:48:12 2005 +0000
Update package version number for RC1 release.
commit 6159966aa69254620b25552bb09ae00ef31798ef
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Tue Oct 18 00:00:09 2005 +0000
Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to
work better with BSD make
commit 0b5be2efbcd3d405f1d84b6b31add361a39f411d
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Thu Oct 13 05:13:36 2005 +0000
doc/man/Xv/Xv.man
doc/man/Xv/XvFreeAdaptorInfo.man
doc/man/Xv/XvFreeEncodingInfo.man
doc/man/Xv/XvGetPortAttribute.man
doc/man/Xv/XvGetStill.man
doc/man/Xv/XvGetVideo.man
doc/man/Xv/XvGrabPort.man
doc/man/Xv/XvPortNotify.man
doc/man/Xv/XvPutStill.man
doc/man/Xv/XvPutVideo.man
doc/man/Xv/XvQueryAdaptors.man
doc/man/Xv/XvQueryBestSize.man
doc/man/Xv/XvQueryEncodings.man
doc/man/Xv/XvQueryExtension.man
doc/man/Xv/XvSelectPortNotify.man
doc/man/Xv/XvSelectVideoNotify.man
doc/man/Xv/XvSetPortAttribute.man
doc/man/Xv/XvStopVideo.man
doc/man/Xv/XvUngrabPort.man
doc/man/Xv/XvVideoNotify.man Convert hardcoded 3X to substitutable
__libmansuffix__ like other library man pages.
commit 0b0ae11e4d5872f55bd412f7876c4b526d420fe0
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date: Thu Oct 13 04:47:38 2005 +0000
[lib/Xv]
Use sed to fill in variables in man pages
commit bc34a489531d1a71857a5d68e4c256d1dacb89ae
Author: Adam Jackson <ajax@nwnk.net>
Date: Wed Aug 3 03:28:02 2005 +0000
Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with
a global configure cache don't get confused.
commit 45bb17c155ce80c817e29144e960b02596ed7214
Author: Kevin E Martin <kem@kem.org>
Date: Fri Jul 29 21:22:53 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 ca932bc2cfaa0a7faaf9c0d870ea4314de24855e
Author: Daniel Stone <daniel@fooishbar.org>
Date: Sat Jul 16 07:41:25 2005 +0000
Set soversion to 1.0.0 with -version-number.
commit 2ece1ee39d248966d2399b30b9de6307db86f4b5
Author: Daniel Stone <daniel@fooishbar.org>
Date: Tue Jul 12 01:10:57 2005 +0000
Add Xvlib.h, change soversion to 1.0.0.
commit 6ed09fe071574abdf5f7c08d9f1de41f4177e5df
Author: Daniel Stone <daniel@fooishbar.org>
Date: Tue Jul 12 00:35:54 2005 +0000
Change version to 2.2.0.
commit f27ed2a7dfd43345ae820186a033c301d77861ad
Author: Daniel Stone <daniel@fooishbar.org>
Date: Tue Jul 12 00:34:54 2005 +0000
Typo fix.
commit 9db3c882e7571eebc98d0070c3ccbc7633b57604
Author: Keith Packard <keithp@keithp.com>
Date: Sat Jul 9 06:53:49 2005 +0000
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
commit 1b0c54229a5259677eab3f80cf8baedc1ca802e5
Author: Daniel Stone <daniel@fooishbar.org>
Date: Sun Jul 3 07:00:57 2005 +0000
Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
source files in the xserver/xorg tree, predicated on defines of
HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
<X11/fonts/foo.h>.
commit a0abd747a0203ddf590fd0f4973f12dd0a5fc48d
Author: Kevin E Martin <kem@kem.org>
Date: Sat Jul 2 06:35:03 2005 +0000
Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems
commit 9064f83cdb11b1515fec1c9f33bd7397ad7f492b
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date: Fri Jul 1 20:09:12 2005 +0000
xtrap.pc.in: s/Xfixes/XTrap/ xi.pc.in: s/Xt/Xi/ Xv/src/Makefile.am: remove
whitespace after backslash modularizeapp.sh: s/destkop/desktop/
modular/symlink.sh: Add bitmaps for xeyes, system.xsm for xsm, and
Xvidtune.cpp for xvidtune. Also comment out non-existing mga_bios.h
Check in buildsystems for xsetroot, xsm, xstdcmap, xtrap, and xvinfo
commit dd829239e989de7b7affc504fc29da673d1d46d5
Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
Date: Tue Jun 21 15:41:36 2005 +0000
lib/XScrnSaver/configure.ac
lib/XScrnSaver/src/Makefile.am
lib/Xfontcache/configure.ac
lib/Xfontcache/src/Makefile.am
lib/Xinerama/configure.ac
lib/Xinerama/src/Makefile.am
lib/Xtst/configure.ac
lib/Xv/configure.ac
lib/XvMC/configure.ac
lib/dmx/configure.ac Add missing xext.pc and xextproto.pc Add DEP_CFLAGS to
src/Makefile.am
commit ea1bfd2bef80ed33740916dfc8118ca8ac94a0eb
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date: Mon Jun 13 20:30:01 2005 +0000
- Add Xv man pages
commit 3e71b1e06264f84428e04264b740a634cd7a5499
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
Date: Mon Jun 13 19:55:32 2005 +0000
- Add Xv to symlink.sh
- Add Xv build system
commit 7306d726bfd8ba10d7ad75f8167dc3ddd85b65e6
Author: Egbert Eich <eich@suse.de>
Date: Fri Apr 23 18:43:55 2004 +0000
Merging XORG-CURRENT into trunk
commit 71d90c59573b4ef0f90e3f9bde03efd6dcf2912e
Author: Egbert Eich <eich@suse.de>
Date: Sun Mar 14 08:32:27 2004 +0000
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
commit 7cb88c27d6784873439ae6bdd22d78784eae41da
Author: Egbert Eich <eich@suse.de>
Date: Wed Mar 3 12:11:32 2004 +0000
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
commit 1faf3c691266e6f9a40914900eb6c94bd639ffb0
Author: Egbert Eich <eich@suse.de>
Date: Thu Feb 26 13:35:34 2004 +0000
readding XFree86's cvs IDs
commit e2399deda299a091cbd99cebf363595534a8ea55
Author: Egbert Eich <eich@suse.de>
Date: Thu Feb 26 09:22:48 2004 +0000
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
commit fe30a03a47c336d508667bb0477383f389e13b5e
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Thu Dec 4 22:02:57 2003 +0000
XFree86 4.3.99.901 (RC 1)
commit 22a0d01c7610f366cf3cec9e7f7cf5968dcc285e
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Tue Nov 25 19:28:16 2003 +0000
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
commit ddef819383953954d9514eab7803367ef20dee82
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Fri Nov 14 16:48:49 2003 +0000
XFree86 4.3.0.1
commit 355f676a4ff26d8fcdfdbe64e791e60bc579e339
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date: Fri Nov 14 16:48:49 2003 +0000
Initial revision
|