forked from ArcticaProject/nx-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
10475 lines (5937 loc) · 305 KB
/
ChangeLog
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
2017-05-05 00:16:41 +0200 Mike Gabriel (36b61e417)
* release 3.5.99.7 (HEAD -> 3.6.x, release-builds/3.6.x)
2017-05-04 23:54:31 +0200 Ulrich Sibiller (13753ddfd)
* Merge pull request #427 from sunweaver/pr/gnu-hurd-i386-support
(origin/HEAD, origin/3.6.x)
2017-04-13 12:01:07 +0200 Mike Gabriel (681069d7a)
* nxcompshad/Shadow.cpp: Use EBADF instead of EBADFD (which is not
portable to GNU/Hurd and GNU/kFreeBSD).
(gh-sunweaver/pr/gnu-hurd-i386-support)
2017-04-13 12:00:26 +0200 Mike Gabriel (d8a25946e)
* nx-X11/config/cf/gnu*: Re-introduce GNU/Hurd support to the nx-X11
buildflow.
2017-05-04 23:35:30 +0200 Ulrich Sibiller (c59710e8e)
* remove _X_DEPRECATED for XKeycodeToKeysym
2017-05-04 23:08:18 +0200 Mike Gabriel (f149e3626)
* Merge branch 'uli42-pr/fix_keyboard_delay' into 3.6.x
2017-05-04 22:38:08 +0200 Ulrich Sibiller (651d5e5ee)
* Revert "Switch from using libNX_X11's deprecated XKeycodeToKeysym()
function to using XGetKeyboardMapping()."
(uli42-pr/fix_keyboard_delay)
2017-04-25 14:20:55 +0200 Mihai Moldovan (60d7c02e0)
* nx-libs.spec: RPM does not support %elif/%elsif/%elseif/whatever.
2017-04-21 21:31:14 +0200 Mike Gabriel (776785afb)
* debian/copyright: Update copyright attributions (re-add
nx-X11/programs/Xserver/hw/nxagent/NXpicturestr_PictSolidFill.h).
2017-04-21 16:26:31 +0200 Mike Gabriel (06a6a5fca)
* release 3.5.99.6 (tag: 3.5.99.6, origin/release-builds/3.6.x)
2017-04-21 16:20:50 +0200 Mihai Moldovan (1c6217054)
* Merge branch 'sunweaver-pr/use-source-tree-nxcomp' into 3.6.x
2017-03-08 10:45:51 +0100 Mike Gabriel (e91132f3b)
* Xserver/Imakefile: Drop redundant library path option
-L../../../nx-X11/exports/lib when linking nxagent. As
-L../../exports/lib is already present and points to the
same location. (gh-sunweaver/pr/use-source-tree-nxcomp,
pr/use-source-tree-nxcomp)
2017-03-08 11:26:16 +0100 Mike Gabriel (4818c13e7)
* Xserver/Imakefile: Change order of linker options, so that
self-built components get mentioned first in the nxagent
linker command.
2017-04-21 16:14:27 +0200 Mihai Moldovan (22b6ac728)
* Merge branch 'sunweaver-pr/nxagent-dialog-fixes' into 3.6.x
2017-03-07 20:52:43 +0100 Mike Gabriel (0f67af9d7)
* nxcomp/Children.cpp: Don't generate warnings with duplicated NX
paths. (gh-sunweaver/pr/nxagent-dialog-fixes,
pr/nxagent-dialog-fixes)
2017-03-08 12:21:20 +0000 Mike Gabriel (522e743f6)
* hw/nxagent/Dialog.c: Drop unused dialog for
DIALOG_DISABLE_XKB_LOCAL.
2017-04-21 12:07:37 +0200 Mike Gabriel (61d5cd0b7)
* Revert "NXpicturestr_PictSolidFill.h: Drop file and revert db8705.
Not an issue anymore nowadays."
2017-04-20 18:27:11 +0200 Mihai Moldovan (f3d406109)
* nx-X11/programs/Xserver/os/connection.c: compact display
autodetection code.
2017-04-20 18:24:04 +0200 Mihai Moldovan (1ccc6be61)
* Merge branch 'sunweaver-pr/enhance-displayfd-auto-detection' into
3.6.x
2017-04-07 16:39:27 +0200 Mike Gabriel (9865f73be)
* man/nxagent.1: Document the nxagent specific usage pattern of the
displayfd cmdline option.
(gh-sunweaver/pr/enhance-displayfd-auto-detection,
pr/enhance-displayfd-auto-detection)
2017-04-07 15:27:50 +0200 Mike Gabriel (ec185d7f7)
* Xserver/os/connection.c: If -displayfd and an explicit display port
number are given, use the explicit display number as a
starting point for auto-detecting the next available
display number.
2017-04-07 15:26:45 +0200 Mike Gabriel (f4d7863f8)
* Xserver/os/connection.c: Accompany display number with some
human-readable (machine-parseable) text when -displayfd is
set to STDERR.
2017-04-20 14:06:18 +0200 Mike Gabriel (7d0b7055b)
* Merge branch 'uli42-pr/extend_manpage' into 3.6.x
2017-04-18 00:10:46 +0200 Ulrich Sibiller (394246855)
* nxagent.1: some more rephrasing (uli42-pr/extend_manpage)
2017-04-18 00:08:55 +0200 Ulrich Sibiller (4998c41de)
* nxagent.1: fix: "tolerancechecks" was documented as
"reconnectchecks"
2017-04-17 23:38:19 +0200 Ulrich Sibiller (0ccc2ee7a)
* nxagent.1: highlight nxagent
2017-04-17 23:15:13 +0200 Ulrich Sibiller (e18c95584)
* nxagent.1: use nxagent everywhere
2017-04-17 23:13:53 +0200 Ulrich Sibiller (5f88a2978)
* nxagent.1: rephrase description
2017-04-17 23:09:39 +0200 Ulrich Sibiller (14417c94b)
* nxagent.1: add -options, previously undocumented
2017-04-17 23:09:17 +0200 Ulrich Sibiller (baf7d39b8)
* nxagent.1: fix typo
2017-04-17 23:08:37 +0200 Ulrich Sibiller (9494062eb)
* nxagent.1: remove no longer existing -co option from manpage
2017-04-19 13:38:49 +0200 Mike Gabriel (ab0bc8158)
* Xserver/GL/glx/glxext.c: Fix for previous commit, re-adding a
comment starter '/*'.
2017-04-19 13:08:26 +0200 Mike Gabriel (4ad88de86)
* Clearing comments from $XFree86$ (et al.) header lines.
2017-04-18 22:45:11 +0200 Mike Gabriel (85b58daa8)
* Merge branch 'Ionic-add-xkbcomp-dep' into 3.6.x
2017-04-18 19:01:42 +0000 Mihai Moldovan (a2dca67a5)
* nx-libs.spec: sync up RPM builds after Xext proto change in
a51cb94559e9228a55e01956f242dabccc5e6b14.
(gh-Ionic/add-xkbcomp-dep, Ionic-add-xkbcomp-dep)
2017-04-18 17:21:53 +0000 Mihai Moldovan (adb2f80cc)
* {debian/control,nx-libs.spec}: add proper dependencies upon xkbcomp
for RPM and DEB packages.
2017-04-18 19:05:20 +0000 Mihai Moldovan (7c0a35916)
* nx-libs.spec: whitespace only.
2017-04-14 15:14:00 +0200 Mike Gabriel (cc17d89e2)
* debian/control: Add get-orig-source rule as in official Debian
package.
2017-04-14 15:11:06 +0200 Mike Gabriel (a51cb9455)
* debian/{rules,nx-x11proto-xext-dev}: More Xext header files belong
int nx-x11proto-xext-dev (instead of removing them in
debian/rules).
2017-04-14 15:07:53 +0200 Mike Gabriel (35ec402fd)
* debian/control: Pre-D (nx-x11-common) on versioned dpkg not
required anymore.
2017-04-14 15:05:06 +0200 Mike Gabriel (fdd66710f)
* debian/control: Pull-over latest changes on these files from the
official Debian package. Various improvements several
package descriptions.
2017-04-14 15:02:52 +0200 Mike Gabriel (0eb3bbd25)
* debian/copyright{,in}: Pull-over latest changes on these files from
the official Debian package.
2017-04-13 20:28:19 +0200 Mihai Moldovan (a1e309a0f)
* Merge branch 'sunweaver-pr/enable-mit-screen-saver-extension' into
3.6.x
2017-04-11 10:21:30 +0200 Mike Gabriel (244ce534a)
* Xserver: Build nxagent with MIT-SCREEN-SAVER extension enabled.
(gh-sunweaver/pr/enable-mit-screen-saver-extension,
pr/enable-mit-screen-saver-extension)
2017-04-13 17:05:32 +0200 Mihai Moldovan (680de79fb)
* Merge branch
'sunweaver-pr/Mesa-define-USE_IEEE-macro-for-more-platforms'
into 3.6.x
2017-04-13 14:09:12 +0200 Mike Gabriel (d4941a6a5)
* Mesa.patches: Define USE_IEEE for __aarch64__ and __mc68000__, as
well.
(gh-sunweaver/pr/Mesa-define-USE_IEEE-macro-for-more-platforms,
pr/Mesa-define-USE_IEEE-macro-for-more-platforms)
2017-04-13 16:13:04 +0200 Mike Gabriel (85b925e3f)
* nx-X11/config/cf: Clean-up left-overs from having our own
libNX_Xext shared library.
2017-04-13 16:00:16 +0200 Mike Gabriel (8a3605ffa)
* Makefile: Make sure that 'make all' only calls 'make build' and
_not_ the global '%:' ruleset afterwards.
(gh-sunweaver/pr/Makefile-only-call-build-on-make-all,
pr/clean-up-remnants-of-libNX_Xext,
pr/Makefile-only-call-build-on-make-all)
2017-04-13 15:58:46 +0200 Mike Gabriel (f843d1b14)
* Makefile: Remove nx-X11/config/cf/date.def on clean.
2017-04-13 15:58:14 +0200 Mike Gabriel (fa3734ff4)
* Makefile: Fix comment above special clean rules.
2017-04-13 14:45:22 +0200 Mihai Moldovan (a2b758458)
* Merge branch 'sunweaver-pr/fix-ftbfs-on-linux-sparc64' into 3.6.x
2017-04-13 10:24:19 +0200 Mike Gabriel (fb962f896)
* nx-X11/config/cf/linux.cf: Fix FTBFS on Linux SPARC64 due to
missing -D_XSERVER64 definition.
(gh-sunweaver/pr/fix-ftbfs-on-linux-sparc64,
pr/fix-ftbfs-on-linux-sparc64)
2017-04-13 14:02:22 +0200 Mihai Moldovan (138b52c9b)
* Merge branch 'sunweaver-pr/fix-ftbfs-on-aarch64' into 3.6.x
2017-04-12 19:23:37 +0200 Mike Gabriel (53dc4ba12)
* nx-X11/config/cf/linux.cf: Fix FTBFS on arm64 (aarch64) due to
missing -D_XSERVER64 definition.
(gh-sunweaver/pr/fix-ftbfs-on-aarch64,
pr/fix-ftbfs-on-hpppa, pr/fix-ftbfs-on-aarch64)
2017-04-11 17:01:25 +0200 Mike Gabriel (3a2ecb9a5)
* release 3.5.99.5 (tag: 3.5.99.5)
2017-04-10 20:54:19 +0000 Mike Gabriel (d6479c9f4)
* debian/patches: Update 016_nx-X11_install-location.debian.patch
(due to fuzziness).
2017-04-10 20:53:34 +0000 Mike Gabriel (d63b4a5ba)
* Regression fix for added libXfont2 API support:
2017-04-10 16:33:27 +0200 Mihai Moldovan (2d700b147)
* Merge branch 'sunweaver-pr/createpixmap-alloc-hints-abi-change'
into 3.6.x
2017-02-22 12:59:07 +0000 Mike Gabriel (8b5bb2cda)
* hw/nxagent/Pixmap.c et al.: Propagate usage_hint through
nxagentCreatePixmap, as well.
(gh-sunweaver/pr/createpixmap-alloc-hints-abi-change,
pr/createpixmap-alloc-hints-abi-change)
2017-03-11 01:13:58 +0100 Mike Gabriel (560c95643)
* Mesa.patches: Adapt Mesa to CreatePixmap allocation hint ABI bump.
2017-02-22 14:14:41 +0100 Aaron Plattner (aa50b35a5)
* Save pixmap allocation hints into the PixmapRec.
2017-02-22 13:30:48 +0100 Aaron Plattner (3ef6d5120)
* Add CreatePixmap allocation hints.
2017-04-10 16:20:51 +0200 Mihai Moldovan (cc24d8ba2)
* Merge branch 'sunweaver-pr/switch-to-libXfont2-API' into 3.6.x
2017-04-10 12:43:33 +0200 Mike Gabriel (c4c548547)
* nx-libs.spec: Prefer libXfont2-devel on RPM distro versions that
have it.~ (gh-sunweaver/pr/switch-to-libXfont2-API,
pr/switch-to-libXfont2-API)
2017-04-10 10:09:32 +0000 Mike Gabriel (a5432aac8)
* debian/control: Use B-D libxfont-dev only. Follow libXfont2
transition on Debian (and alike).
2017-04-10 10:08:14 +0000 Mike Gabriel (92979a4e8)
* Makefile: Tell Xserver build which Xfont API to use (v2 or v1)
depending on what's available in the build env.
2017-02-09 14:05:57 +0100 Mike Gabriel (f4c80a78c)
* Xserver: Support building against libXfont2 (v2) API and old
libXfont(1) API alike.
2017-02-16 08:19:40 +0000 Jamey Sharp (f743f9f74)
* SetFontPath: set client->errorValue on failure.
2017-02-16 08:21:56 +0000 Eamon Walsh (4768662b0)
* dix: pass a valid ClientPtr to SetFontPath in all cases.
2017-02-14 09:17:25 +0100 Mike Gabriel (523009b96)
* hw/nxagent/BitmapUtils.c: Derive from utilbitmap.c in deprecated
libXfont1 and ship as copy-of-code with nxagent.
2017-02-09 22:31:19 +0000 Mike Gabriel (6a06a6c81)
* dix: Move InitFonts up above screen initialization
2017-02-09 11:22:41 +0100 Mike Gabriel (03b772b5f)
* Xserver/Imakefile: Improve readability by introducing the NULL
variable and adding more line-breaks.
2017-04-10 16:01:02 +0200 Mike Gabriel (9e2588e56)
* Revert "regression fix for 52872a0: Keep index parameter in
AddScreen() for now. Requires proper ABI backport. (was:
copy+paste error)."
2017-04-10 15:01:39 +0200 Mihai Moldovan (5421dd444)
* Merge branch
'sunweaver-pr/remove-index-from-CloseScreen-ABI-backport'
into 3.6.x
2017-03-11 00:53:01 +0100 Dave Airlie (93ea74e53)
* xserver: remove index from CloseScreen (API/ABI breakage)
(gh-sunweaver/pr/remove-index-from-CloseScreen-ABI-backport,
pr/remove-index-from-CloseScreen-ABI-backport)
2017-04-07 16:20:47 +0200 Vadim Troshchinskiy (ab3974f22)
* Merge remote-tracking branch
'sunweaver-pr/pr/nxproxy-read-from-stdin' into 3.6.x
2017-02-05 23:29:41 +0100 Bernard Cafarelli (4c2fe0d97)
* nxproxy: Support communication over stdin. Allow nxcl to use
standard ssh instead of nxssh.
(gh-sunweaver/pr/nxproxy-read-from-stdin,
pr/nxproxy-read-from-stdin)
2017-04-07 13:48:56 +0200 Mike Gabriel (1441b02f0)
* nxcomp/Loop.cpp: Fix server/client mode info cerr printing in
PrintProcessInfo().
2017-04-07 10:32:28 +0200 Mike Gabriel (dcdbc102c)
* Merge branch 'sunweaver-pr/drop-render-fullcolor-workaround' into
3.6.x
2017-03-21 21:25:39 +0100 Mike Gabriel (6c8c95025)
* NXpicturestr_PictSolidFill.h: Drop file and revert db8705. Not an
issue anymore nowadays.
(gh-sunweaver/pr/drop-render-fullcolor-workaround,
sunweaver-pr/drop-render-fullcolor-workaround,
pr/drop-render-fullcolor-workaround)
2017-04-06 14:09:19 +0200 Erkki Seppälä (c8a4e1e75)
* record: avoid crash when calling RecordFlushReplyBuffer recursively
2017-04-06 12:17:54 +0200 Mihai Moldovan (0d7b4c365)
* Merge branch 'sunweaver-pr/mesa-patching-with-quilt' into 3.6.x
2017-02-20 12:54:14 +0100 Mike Gabriel (2c9effed2)
* Mesa subtree: Add quilt based patch system for bundled Mesa.
2017-04-05 11:19:54 +0200 Mike Gabriel (2767d32c0)
* roll-tarball.sh: Fix ChangeLog creation, always create ChangeLog
for the CHECKOUT, not the currently checked out branch.
2017-04-03 21:44:05 +0200 Mike Gabriel (25d38bf36)
* Merge branch 'uli42-pr/cleanup_keystroke' into 3.6.x
2017-03-27 22:58:38 +0200 Ulrich Sibiller (ee18cd43d)
* Keystrokes: rename left/up/right/down keystrokes to descriptive
names (uli42-pr/cleanup_keystroke)
2017-03-27 22:46:47 +0200 Ulrich Sibiller (d28cf5574)
* doc: rework keystroke documentation
2017-03-27 22:07:51 +0200 Ulrich Sibiller (9f0713c04)
* doc: document debugging keystrokes
2017-03-23 23:48:46 +0100 Ulrich Sibiller (e3240d6b3)
* keystrokes.cfg: remove debug keystrokes
2017-03-23 23:32:24 +0100 Ulrich Sibiller (bf27d58b7)
* Keystroke.c: move some vars to inner scope
2017-03-23 23:11:32 +0100 Ulrich Sibiller (ba5183f80)
* Init keystrokes at startup and reconnect
2017-03-23 23:01:09 +0100 Ulrich Sibiller (f12012b15)
* Keystroke.c: avoid use of comparisons on "False"
2017-03-23 22:54:34 +0100 Ulrich Sibiller (2b9d7d274)
* Keystroke.c: use Booleans where appropriate
2017-03-23 22:48:09 +0100 Ulrich Sibiller (076d458e7)
* Keystroke.h: improve parse_keystroke_file()
2017-03-23 22:46:35 +0100 Ulrich Sibiller (79520f9c6)
* Keystroke.c: introduce nxagentDumpKeystrokes()
2017-03-23 22:42:26 +0100 Ulrich Sibiller (a45a348c4)
* keystrokes.cfg: add missing keystrokes
2017-03-23 22:22:05 +0100 Ulrich Sibiller (3c921ccb4)
* Keystroke.c/h: completely disable keystrokes that are not active at
compile time
2017-03-23 22:21:00 +0100 Ulrich Sibiller (811ce4902)
* Keystroke.h: auto-enum keystrokes
2017-03-23 22:18:16 +0100 Ulrich Sibiller (4adb1911f)
* Keystroke.h/Keyboard.h: cleanup mask variables
2017-03-21 22:33:29 +0100 Ulrich Sibiller (c693df127)
* Keystroke.c: detect duplicate keystroke definitions
2017-03-21 22:32:00 +0100 Ulrich Sibiller (40f03399c)
* Keystroke.c: use KEYSTROKE_NOTHING
2017-03-21 21:52:05 +0100 Ulrich Sibiller (51782cb25)
* Args.c: add two missing options to help message
2017-04-03 20:52:05 +0200 Mike Gabriel (147371a28)
* Merge branch
'sunweaver-pr/xinerama-response-swapping-in-RRXineramaWriteMonitor'
into 3.6.x
2017-03-10 14:16:26 +0100 Michal Srb (f34eff0a2)
* xinerama: Swap the response in RRXineramaWriteMonitor
(sunweaver-pr/xinerama-response-swapping-in-RRXineramaWriteMonitor)
2017-04-03 20:39:06 +0200 Mike Gabriel (4e0e7c472)
* Merge branch 'mikedep333-pr/cygwin-nxcomp-ftbfs' into 3.6.x
2017-03-29 21:52:25 -0400 Mike DePaulo (1a2bea981)
* Remove EMX (MS-DOS & OS/2) support
(mikedep333-pr/cygwin-nxcomp-ftbfs)
2017-03-29 07:19:25 -0400 Mike DePaulo (995851206)
* Cygwin nxcomp: Use Cygwin un.h
2017-03-27 16:39:28 +0200 Mike Gabriel (342758254)
* regression fix for 52872a0: Keep index parameter in AddScreen() for
now. Requires proper ABI backport. (was: copy+paste
error).
2017-03-27 16:14:30 +0200 Mike Gabriel (d7d2aeea4)
* Merge branch 'uli42-pr/libX11-HEAD' into 3.6.x
2017-02-01 15:02:41 +0100 Arthur Huillet (00405b278)
* _XDefaultError: set XlibDisplayIOError flag before calling exit
(uli42-pr/libX11-HEAD)
2017-01-07 16:20:31 +0100 Julien Cristau (8ad49a03e)
* Fix wrong Xfree in XListFonts failure path
2017-03-26 14:34:48 +0200 Mihai Moldovan (ac03b5172)
* Merge branch 'sunweaver-pr/dix-dispatch-backports' into 3.6.x
2017-03-11 00:48:03 +0100 Mike Gabriel (c1fc4ba78)
* dix: Remove insane BC hacks
(gh-sunweaver/pr/dix-dispatch-backports,
pr/dix-dispatch-backports)
2017-03-10 16:48:54 +0100 Mike Gabriel (cb9e50c2f)
* Move AddScreen() comment where it actually belongs. Should be done
in X.org, too.
2017-03-10 16:29:24 +0100 Mike Gabriel (52872a0de)
* dix: Move AddScreen() over into dispatch.c and introduce
init_screen()
2017-03-22 00:40:55 +0100 Mihai Moldovan (f5e7d555a)
* Merge branch 'sunweaver-pr/various-os-backports' into 3.6.x
2017-03-20 13:22:50 +0100 Adam Jackson (565421ba1)
* os: Remove the useless -x option
(gh-sunweaver/pr/various-os-backports,
pr/various-os-backports)
2017-03-15 15:46:32 +0000 Keith Packard (a95cfdf48)
* os: FatalError if -displayfd writes fail AND Clear the -displayfd
option after closing the file
2017-03-15 15:42:10 +0000 Alan Coopersmith (e96e810c2)
* Use unique logfile names when starting server with -displayfd
2017-03-15 15:40:57 +0000 Jon TURNEY (faaba2661)
* os: -displayfd should check ports up to 65535
2017-03-15 15:16:37 +0000 Keith Packard (c468be804)
* os: Use NotifyFd interface for listen descriptors
2017-03-15 15:05:18 +0000 Jon TURNEY (3be144ffd)
* Handle -displayfd and an explicit display number sensibly
2017-03-15 15:00:27 +0000 Mike Gabriel (506aedbcd)
* Xserver/os/utils.c: Add NXAGENT_SERVER specific -nolisten
parameter: ANY.
2017-03-15 14:56:17 +0000 Kristian Høgsberg (e8bc4c7e2)
* os: Add a mechanism to prevent creating any listen sockets
2017-03-15 14:10:24 +0000 Chase Douglas (89496d987)
* os: Add -displayfd option
2017-03-15 11:42:30 +0100 Keith Packard (eb4999611)
* os: Use NotifyFd for ErrorConnMax
2017-03-15 12:08:46 +0100 Adam Jackson (f5301dee4)
* Move SIGUSR1 notification as late as possible.
2017-02-16 10:54:19 +0000 Adam Jackson (4f76ed19b)
* dix: Extend initial connection handshake for forwarding proxies
2017-02-16 10:51:40 +0000 Adam Jackson (ed52cb295)
* dix: Pull client-is-local flag up to the ClientRec
2017-02-16 10:35:39 +0100 Pauli Nieminen (349b6dec5)
* os: always check if client is local when connection is accepted
2017-02-15 16:42:14 +0100 Rami Ylimäki (239fe3d08)
* os: Add facilities for client ID tracking.
2017-02-16 15:21:34 +0000 Mike Gabriel (366067b7c)
* dix/os: backport various signal handling and smart scheduler
changes from X.org
2017-02-16 15:04:43 +0000 Keith Packard (f14f738a6)
* dix/os: Merge priority computation into SmartScheduleClient
2017-02-16 10:28:32 +0100 Pauli Nieminen (6c076cfe5)
* os: Fix a memory leak
2017-02-15 14:42:48 +0000 Alan Coopersmith (8996f80a5)
* Rework local client id finding code to be more uniform
2017-02-15 14:18:35 +0000 Alan Coopersmith (6bc37b980)
* AUDIT messages should contain uid for local accesses (X.org bug
#1997)
2017-02-15 14:11:46 +0000 Mike Gabriel (0338cbc3f)
* LBX clean-up: Drop forgotten passage in Xserver/os/connection.c.
2017-02-15 13:51:26 +0000 Mike Gabriel (104307dd6)
* Xserver/os/: Drop not-used-anymore MNX_TCPCONN macro.
2017-02-15 10:27:43 +0100 Mike Gabriel (7177caa70)
* Xserver/os/Imakefile: Introduce the NULL variable and line-wrap
various variable definitions for the sake of better
readability.
2017-02-15 09:41:36 +0100 Adam Jackson (eac0a8fad)
* Don't crash on unconfigured interfaces. (X.org bug #5218, Andrei
Barbu)
2017-02-14 18:01:17 +0000 Alan Coopersmith (f9123570d)
* Set padding bytes to 0 in WriteToClient
2017-02-14 15:47:10 +0000 Aaron Plattner (2ecd2a006)
* os: Return BadLength instead of disconnecting BigReq clients
(#4565)
2017-02-14 15:19:18 +0000 Peter Harris (cbc2d300b)
* Fix overflow of ConnectionOutput->size and ->count
2017-02-15 08:13:57 +0000 Michel Dänzer (65b6a62bc)
* dix: Pass ClientPtr to FlushCallback
2017-02-14 14:59:51 +0000 Keith Packard (af7c37500)
* Xserver/os/io.c: Bail out early from FlushClient if nothing needs
to be written.
2017-02-14 13:18:04 +0000 Chris Wilson (645b757df)
* os: Immediately queue initial WriteToClient
2017-03-15 13:27:12 +0000 Mike Gabriel (074646707)
* os/xdmcp: Remove dead 'restart' code
2017-03-19 22:24:59 +0100 Mike Gabriel (b7c389b9a)
* Merge branch 'uli42-pr/ignore_caps' into 3.6.x
2017-03-19 21:59:17 +0100 Ulrich Sibiller (7065e0bf2)
* Keystroke.c: ignore CapsLock and NumLock most of the time
(uli42-pr/ignore_caps)
2017-03-17 20:39:28 +0100 Mihai Moldovan (7fd5d934c)
* Merge branch 'sunweaver-pr/setnotifyfd-ABI' into 3.6.x
2017-02-24 13:03:30 +0000 Mike Gabriel (f315ae066)
* os: Initialize NotifyFds earlier in startup
(gh-sunweaver/pr/setnotifyfd-ABI, pr/setnotifyfd-ABI)
2017-02-09 23:33:44 +0000 Keith Packard (761d74a68)
* os: Implement support for NotifyFd X_NOTIFY_WRITE and removal of
AddEnabledDevices/RemoveEnabledDevices
2017-02-09 21:28:12 +0000 Fredrik Höglund (6307e6fc7)
* Move the code for resetting the DPMS mode in response to input
events, from WaitForSomething to mieqProcessInputEvents.
2017-02-09 23:35:00 +0000 Mike Gabriel (9b934a447)
* nxagent: Use SetNotifyFd to receive events.
2017-02-09 13:45:12 +0100 Keith Packard (86110d6ed)
* os: Add NotifyFd interfaces
2017-02-09 12:32:16 +0000 Mike Gabriel (289e8ce56)
* Xserver/include/list.h: Add list.h from X.org (from X.org commit
63f83d1).
2017-02-10 00:22:03 +0100 Keith Packard (9f0008429)
* os/xdmcp: Just send XDMCP keepalive packets once every three minute
2017-03-13 23:07:19 +0100 Mike Gabriel (6ac805ab4)
* Merge branch 'uli42-pr/cleanup_keystroke' into 3.6.x
2017-03-13 22:19:17 +0100 Ulrich Sibiller (6f4eb1540)
* Update keystroke readme (gh-uli42/pr/cleanup_keystroke)
2017-03-13 22:07:58 +0100 Ulrich Sibiller (cb40cc448)
* Keystroke.c: remove unneeded capital keys for default keystrokes
2017-03-13 22:00:23 +0100 Ulrich Sibiller (abf624212)
* Keystroke.c: add new keystroke to reread keystroke config
2017-03-13 21:42:24 +0100 Ulrich Sibiller (aadcac452)
* Keystroke.c: simplify parse_keystroke_file
2017-03-13 21:26:31 +0100 Ulrich Sibiller (f97bb3f13)
* Keystroke.c: fix formatting
2017-03-13 21:19:48 +0100 Ulrich Sibiller (c134b93ac)
* Keystroke.c: use an own environment variable for X2Go
2017-03-13 21:14:20 +0100 Ulrich Sibiller (8f2679abc)
* Keystroke.c: make nxagentKeystrokeFileParsed local
2017-03-13 20:50:53 +0100 Ulrich Sibiller (3042c5064)
* Keystroke.c: add missing Mod5 modifier
2017-03-13 20:27:50 +0100 Ulrich Sibiller (57081e55f)
* Keystroke.c: fix code order
2017-03-13 20:25:15 +0100 Ulrich Sibiller (2c721f484)
* Keystroke.h: sane struct init
2017-03-13 20:23:32 +0100 Ulrich Sibiller (d2c811564)
* Keyboard.c: Introduce separate masks for Alt and Meta
2017-03-13 20:21:57 +0100 Ulrich Sibiller (5595e3d16)
* Keystroke.c: Fix modifier handling
2017-03-13 20:20:53 +0100 Ulrich Sibiller (af5a83bba)
* Keystroke.c: more/fixed debug output
2017-03-13 20:17:51 +0100 Ulrich Sibiller (af8e5e03a)
* Keystroke: whitespace fixes
2017-03-11 00:21:53 +0100 Ulrich Sibiller (8f7b0b75b)
* Keystroke.c: arrange switch_all_screens and fullscreen close
together
2017-03-11 00:07:13 +0100 Ulrich Sibiller (8f0d885cd)
* Keystroke.c: print keystroke name in TEST mode
2017-03-10 23:49:49 +0100 Ulrich Sibiller (b39ec4c45)
* Keystroke.c: improve TEST output
2017-03-10 23:40:17 +0100 Ulrich Sibiller (93a360c5d)
* Keystroke.c: add another FIXME
2017-03-10 23:31:27 +0100 Ulrich Sibiller (25db7413a)
* Keystroke.c: Simplify read_binding_from_xmlnode
2017-03-10 23:30:02 +0100 Ulrich Sibiller (13a7c4a73)
* Keystroke.c: use symbols instead of integers
2017-03-10 23:29:11 +0100 Ulrich Sibiller (f78e673fb)
* Keystroke.c: Boolify read_binding_from_xmlnode
2017-03-10 23:09:24 +0100 Ulrich Sibiller (c80605a19)
* Keystroke.c: Boolify nxagentCheckSpecialKeystroke
2017-03-10 23:08:40 +0100 Ulrich Sibiller (ac3794c5f)
* Keystroke.c: reorder parse_keystroke_file
2017-03-10 22:58:27 +0100 Ulrich Sibiller (06c83be7e)
* Keystroke.c: handle parsing state in parse_keystroke_file()
2017-03-10 22:55:37 +0100 Ulrich Sibiller (7804c9c69)
* Keystroke.c: simplify nxagentCheckSpecialKeystroke
2017-03-10 22:53:09 +0100 Ulrich Sibiller (dfa8bb27b)
* Keystroke.c: fix code formatting
2017-03-10 22:48:18 +0100 Ulrich Sibiller (7a61c62cd)
* Keystroke.c: rework read_binding_from_xmlnode()
2017-03-10 22:47:18 +0100 Ulrich Sibiller (d8bc49135)
* Keystroke.c: use Bool type where appropriate
2017-03-10 20:19:19 +0100 Mihai Moldovan (320cece2e)
* Merge branch 'uli42-pr/misc_cherries' into 3.6.x
2017-03-04 01:12:24 +0100 Ulrich Sibiller (ee2a933c3)
* Xext: fix compiler warning (gh-uli42/pr/misc_cherries)
2017-03-04 00:28:01 +0100 Ulrich Sibiller (e021bc231)
* xfixes: fix compiler warning
2017-03-04 00:24:12 +0100 Ulrich Sibiller (914f78a23)
* xfixes: fix compiler warnings
2017-03-04 00:15:08 +0100 Ulrich Sibiller (e79d3ac6b)
* render/filter.c: add missing return value
2017-03-04 00:10:57 +0100 Ulrich Sibiller (a9d4a454b)
* record.c: fix compiler warnings
2017-03-03 23:52:20 +0100 Ulrich Sibiller (c1ed00569)
* fb: fix compiler warning
2017-03-03 23:43:50 +0100 Ulrich Sibiller (e17c42e55)
* dix: Fix compiler warning
2017-03-03 23:32:52 +0100 Ulrich Sibiller (fe887d68a)
* Display.c: remove unused logo code
2016-12-14 11:50:47 +0100 Ulrich Sibiller (2a6fcfc14)
* Rootless.c: improve debugging output
2016-12-14 11:50:21 +0100 Ulrich Sibiller (a83022a4a)
* Rootless.c: improve malloc failure handling
2016-12-14 11:49:40 +0100 Ulrich Sibiller (4e545710f)
* Rootless.c: fix possible memleak
2016-12-13 10:05:40 +0100 Ulrich Sibiller (1b6b76b5b)
* Display.c: pid is always 0, remove check
2016-12-13 02:02:29 +0100 Ulrich Sibiller (35e41467a)
* Window.c: Fix reference before check for null pointer
2016-12-13 02:00:40 +0100 Ulrich Sibiller (4a1095fff)
* Keyboard.c: Simplify if clause
2016-12-13 01:56:57 +0100 Ulrich Sibiller (fcb5e8a0e)
* Rootless.c: Fix wrongly negated comparisons
2016-12-13 01:56:10 +0100 Ulrich Sibiller (df0fea79b)
* Args.c: Fix missing parentheses
2017-03-09 09:22:03 +0100 Mihai Moldovan (dc8477f76)
* nxcomp/ChannelEndPoint.cpp: we're not really testing for a
character, but a pointer.
2017-03-07 23:53:21 +0100 Mihai Moldovan (d8a4f3be7)
* Merge branch 'uli42-pr/backup_null_rulesfile' into 3.6.x
2008-12-03 15:06:37 +1000 Peter Hutterer (2794e674c)
* xkb: Allow NULL as rulesFile in XkbSetRulesDflts.
(gh-uli42/pr/backup_null_rulesfile)
2017-03-07 22:34:09 +0100 Mihai Moldovan (c6f0e6b2c)
* Merge branch 'uli42-pr/cve-2017-2624' into 3.6.x
2017-03-04 16:10:38 +0100 Ulrich Sibiller (22f542626)
* os: add timingsafe_memcmp to Imake (gh-uli42/pr/cve-2017-2624)
2017-03-03 22:46:33 +0100 Ulrich Sibiller (65c5d8ad7)
* Backport CVE-2017-2624 (timingsafe_memcmp)
2017-03-03 22:44:58 +0100 Mike Gabriel (05aabb4e6)
* Merge branch 'uli42-pr/fix_validatestring' into 3.6.x
(pr/keystrokes-cfg-example)
2017-03-02 15:38:08 +0100 Ulrich Sibiller (06bb154df)
* replace (DE)ALLOCATE_LOCAL by malloc/free
2017-03-03 21:46:33 +0100 Mike Gabriel (96e255603)
* Merge branch 'uli42-pr/remove_allocate_local' into 3.6.x
2017-03-03 21:44:07 +0100 Ulrich Sibiller (6e8aee499)
* nxagent: move validateString as inline func to Utils.h
2017-03-03 21:24:59 +0100 Ulrich Sibiller (19065e75e)
* xkb: add missing const
2010-01-15 15:32:13 +1000 Peter Hutterer (9e29588dd)
* xkb: remove XkbAtomGetString, replace with NameForAtom.
2011-02-13 21:36:03 -0800 Alan Coopersmith (bdfb52193)
* Replace _XkbDupString with Xstrdup
2017-02-25 15:47:42 +0100 Ulrich Sibiller (e61e9795c)
* nxagent: half number of NameForAtom calls
2017-03-02 15:38:08 +0100 Ulrich Sibiller (09ef99919)
* replace (DE)ALLOCATE_LOCAL by malloc/free
(gh-uli42/pr/remove_allocate_local)
2017-03-03 16:21:33 +0100 Mihai Moldovan (89ccf26d6)
* Merge branch 'sunweaver-pr/really-enable-MITSHM-in-fboverlay-c'
into 3.6.x
2017-02-05 23:25:35 +0000 Mike Gabriel (1c7b45d57)