forked from ArcticaProject/nx-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
13782 lines (7812 loc) · 401 KB
/
Copy pathChangeLog
File metadata and controls
13782 lines (7812 loc) · 401 KB
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
2018-03-16 23:52:03 +0100 Mike Gabriel (ec23e1dad)
* release 3.5.99.16 (HEAD -> 3.6.x)
2018-03-15 21:30:43 +0100 Mike Gabriel (3b05d0de6)
* Merge branch 'Ionic-feature/use-libtirpc' into 3.6.x (origin/HEAD,
origin/3.6.x)
2018-03-15 12:46:12 +0100 Mihai Moldovan (2e1e9158e)
* nx-libs.spec: stop needlessly exporting variables that we pass down
directly anyway. (Ionic-feature/use-libtirpc)
2018-03-09 09:11:06 +0100 Mihai Moldovan (9b1d00d30)
* nx-libs.spec: force usage of libtirpc on Fedora > 27 and OpenSuSE
Tumbleweed+ (soon to be Leap 15).
2018-03-09 09:09:05 +0100 Mihai Moldovan (0cd1392de)
* nx-X11/config/cf/README: document new UseTIRPC macro.
2018-03-09 09:08:35 +0100 Mihai Moldovan (25cc6fce5)
* nx-X11/programs/Xserver/{,os/}Imakefile: implement libtirpc forcing
via UseTIRPC.
2018-03-09 09:06:11 +0100 Mihai Moldovan (090d4d19b)
* nx-X11/config/cf/Imake.tmpl: implement new UseTIRPC macro,
defaulting to NO.
2018-03-15 12:18:21 +0100 Mihai Moldovan (daebc8b6a)
* nx-X11/programs/Xserver/Imakefile: move $(PIXMANLIB) to
NXAGENTSYSLIBS, since libXcompext doesn't actually need
it.
2018-03-09 09:07:15 +0100 Mihai Moldovan (32dac66c6)
* nx-X11/programs/Xserver/Imakefile: use printf with no trailing
newline instead of echo for variable value.
2018-03-15 12:15:27 +0100 Mihai Moldovan (7a901039c)
* Makefile: pass down IMAKE_DEFINES to nx-X11/programs/Xserver build
system.
2018-03-10 02:04:25 +0100 Mihai Moldovan (63a359313)
* nx-X11/programs/Xserver/Imakefile: drop system libraries out of
target list for nxagent regeneration.
2018-03-09 09:04:32 +0100 Mihai Moldovan (a47a73872)
* nx-libs.spec: sync removed files with debian/rules.
2018-03-15 08:45:54 +0100 Mihai Moldovan (15e955545)
* nx-X11/programs/Xserver/hw/nxagent/Screen.c: do not try to set a
NULL mode if the output was disconnected before.
2018-03-15 08:45:00 +0100 Mihai Moldovan (6f8cdebc6)
* nx-X11/programs/Xserver/hw/nxagent/Screen.c: initialize pointers to
NULL to avoid referencing random data.
2018-03-07 23:46:48 +0100 Mike Gabriel (63e113de9)
* release 3.5.99.15 (tag: 3.5.99.15, origin/release-builds/3.6.x,
release-builds/3.6.x)
2018-03-07 21:55:36 +0100 Mihai Moldovan (18630e5dd)
* Merge branch
'sunweaver-pr/saver-unvalidated-lengths-ProcScreenSaverUnsetAttributes'
into 3.6.x
2018-03-05 11:01:49 +0100 Nathan Kidd (7017c22c2)
* Xserver/Xext/saver.c Unvalidated lengths (X.org CVE-2017-12185).
2018-03-07 21:35:51 +0100 Mihai Moldovan (f3231601b)
* nxcompshad/configure.ac: blindly copy-pasting might not be the
smartest idea; it's *COMPSHAD* here.
2018-03-07 21:15:18 +0100 Ulrich Sibiller (570d3fea4)
* Merge branch 'sunweaver-pr/xinerama-bbox-corner-cases' into 3.6.x
2018-03-05 15:34:52 +0100 Mike Gabriel (4b7b214a7)
* Xserver/hw/nxagent/Screen.c: Drop commented out code. Functionality
now implemented in intersect_bb() function.
(gh-sunweaver/pr/xinerama-bbox-corner-cases,
pr/xinerama-bbox-corner-cases)
2018-03-02 14:01:29 +0100 Mike Gabriel (9117a5bf0)
* hw/nxagent/Screen.c: Cover Xinerama bounding box corner cases.
2018-03-07 19:00:39 +0100 Mihai Moldovan (3352cfaba)
* nxcomp{,shad}/configure.ac: replace versionating non-portable sed
construct with hopefully more portable awk construct.
2018-03-07 02:01:39 +0100 Mihai Moldovan (76e7d26b8)
* nx-X11/programs/Xserver/hw/nxagent/Init.c: disable DPMS support
within nxagent.
2018-03-06 12:55:22 +0100 Mihai Moldovan (adb582abd)
* Makefile: we don't need $(BINDIR)/bin.
2018-03-02 05:51:17 +0100 Mihai Moldovan (ed9512ed1)
* nxcomp{,shad}/configure.ac: pass more portable -E option to sed
instead of -r.
2018-03-01 21:46:32 +0100 Mike Gabriel (ae40bb9c4)
* Merge branch 'mjtrangoni-WIP-travis' into 3.6.x
2018-01-09 20:03:17 +0100 Mario Trangoni (66ef3e46f)
* README.md: Add travis badge (mjtrangoni-WIP-travis)
2018-01-01 17:51:31 +0100 Mario Trangoni (ffadec783)
* Fix clang error: ordered comparison between pointer and zero ("char
*" and "int")
2018-01-01 17:19:33 +0100 Mario Trangoni (d14d5838b)
* Fix clang error: comparison of array authCookie not equal to a null
pointer is always true
2017-12-31 17:00:43 +0100 Mario Trangoni (e1ad1d473)
* Add travis yaml configuration file
2018-03-01 08:31:23 +0100 Simon Matter (a5a0a5c29)
* hw/nxagent/Screen.c: Settle down with 96 DPI as the default
resolution, if nothing better can be detected.
2018-02-28 10:53:45 +0100 Mike Gabriel (153be794d)
* release 3.5.99.14 (tag: 3.5.99.14)
2018-02-28 01:03:53 +0100 Mihai Moldovan (5c4777b2d)
* Merge branch 'uli42-pr/fix_autodpi_in_usage' into 3.6.x
2018-02-27 23:00:08 +0100 Ulrich Sibiller (809206d0c)
* os: hide ttyxx option
2018-02-27 22:56:12 +0100 Ulrich Sibiller (9822e9703)
* nxagent: rearrange nx options in usage
2018-02-28 00:55:13 +0100 Mihai Moldovan (1918bcb9c)
* Merge branch 'uli42-pr/update_xkb' into 3.6.x
2018-02-28 00:52:10 +0100 Ulrich Sibiller (00e3e95e5)
* Lift xkb to xorg-xserver-7.1/1.1.0 state - non-functional changes
only
2017-11-05 02:02:58 +0100 Ulrich Sibiller (9e6f87e20)
* Lift xkb to xorg-xserver-7.1/1.1.0 state
2018-02-27 09:42:09 +0100 Mike Gabriel (a6cb8583a)
* Revert "nx-libs.spec: Starting with Fedora 28 / RHEL 8, SunRPC
support is being split out into a separate libraries
(libtirpc)."
2018-02-27 09:37:58 +0100 Mike Gabriel (9f93e96ec)
* nx-libs.spec: Starting with Fedora 28 / RHEL 8, SunRPC support is
being split out into a separate libraries (libtirpc).
2018-02-27 09:33:19 +0100 Mihai Moldovan (6d4049640)
* Merge branch 'sunweaver-pr/autodetect-dpi' into 3.6.x
2018-02-21 22:21:15 +0100 Mike Gabriel (29c166dbe)
* nxagent: Also provide auto DPI feature via nx/nx option 'autodpi',
taking only effect on session startups.
2017-10-09 11:36:23 +0200 Simon Matter (9dd2830e0)
* nxagent: Auto-detect client-side DPI at session startup.
2018-02-27 07:47:49 +0100 Mike Gabriel (a88ca2717)
* nxcomp/src/Loop.cpp: Harmonize log output. Uniformly, embrace port
values by single quotes.
2018-02-27 07:48:18 +0100 Mihai Moldovan (0ef6b0d59)
*
{nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1,nxproxy/man/nxproxy.1}:
magicpixel takes a boolean argument for now.
2018-02-27 07:39:57 +0100 Mihai Moldovan (842bb0f45)
* nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1: remove empty line
on top of file.
2018-02-27 07:34:54 +0100 Mike Gabriel (ea17fd059)
* nxcomp/src/Loop.cpp: Make know the agent option 'keyconv' to nxcomp
and tolerate it as a valid option.
2018-02-27 05:11:06 +0100 Mihai Moldovan (f963593c7)
* nx-X11/programs/Xserver/{include/globals.h,mi/miinitext.c}: remove
DPSEXT left-overs.
2018-02-27 03:20:46 +0100 Mihai Moldovan (7a4aa75de)
* Merge branch 'uli42-pr/update_os' into 3.6.x
2018-02-27 03:13:55 +0100 Ulrich Sibiller (41ff6b034)
* Lift os to XORG-7_1 state - non-functional changes only
2017-11-05 13:26:04 +0100 Ulrich Sibiller (2d59daca2)
* Lift os to XORG-7_1 state
2018-02-27 03:02:00 +0100 Mihai Moldovan (78724c486)
* Remove unused X11R4 DDX compatibility function miClipNotify.
2018-02-27 02:56:01 +0100 Mihai Moldovan (3fffa5bd8)
* Merge branch 'uli42-pr/update_mi' into 3.6.x
2018-02-27 02:47:11 +0100 Ulrich Sibiller (7368b4540)
* Lift mi to xorg-xserver-7.1/1.1.0 state - non-functional changes
only
2017-11-05 21:25:49 +0100 Ulrich Sibiller (6b0a1738f)
* Lift mi to xorg-xserver-7.1/1.1.0 state
2017-11-05 13:45:31 +0100 Ulrich Sibiller (23dd2959b)
* Lift miext to xorg-xserver-7.1/1.1.10 state
2018-02-27 02:14:07 +0100 Mihai Moldovan (eaae96101)
* Merge branch 'uli42-pr/update_record' into 3.6.x
2017-11-05 23:24:55 +0100 Ulrich Sibiller (e5833a6a1)
* Lift record to xorg-server-1.4.2 state
2018-02-27 01:47:50 +0100 Ulrich Sibiller (39a56dea4)
* Lift record to xorg-server-1.2.0/xorg-server-1.3.0.0 state -
non-functional changes only
2017-11-05 23:15:07 +0100 Ulrich Sibiller (1c7abb05b)
* Lift record to xorg-server-1.2.0/xorg-server-1.3.0.0 state
2018-02-27 01:38:29 +0100 Ulrich Sibiller (0b6259900)
* Lift record to xorg-xserver-7.1/1.1.0 state - non-functional
changes only
2017-11-05 12:39:05 +0100 Ulrich Sibiller (db836fd78)
* Lift record to xorg-xserver-7.1/1.1.0 state
2018-02-27 01:07:02 +0100 Mihai Moldovan (92d806399)
* Merge branch 'sunweaver-pr/version-cmdline-option' into 3.6.x
2018-02-26 12:50:12 +0100 Mike Gabriel (0371276fb)
* hw/nxagent/: Stop using non-portable '__progname', set up our own
'nxagentProgName' instead and pass it around where needed.
(gh-sunweaver/pr/version-cmdline-option,
pr/version-cmdline-option)
2018-02-26 12:22:15 +0100 Mike Gabriel (99fb9817f)
* hw/nxagent/: Use <function>(void) rather than <function>().
2018-02-21 23:46:55 +0100 Simon Matter (deeac7e0f)
* nxagent/Args.c: Mention new -options cmdline parameter in usage
info.
2018-02-21 23:49:55 +0100 Simon Matter (eded33173)
* nxagent: Print correct application in usage message.
2018-02-21 23:39:23 +0100 Simon Matter (7c32938ac)
* nxagent: Add -version cmdline option.
2018-02-26 07:46:22 +0100 Mihai Moldovan (751760421)
* nx-libs.spec: also package extensions/shapeconst.h in RPM packages.
2018-02-26 06:17:08 +0100 Mihai Moldovan (711fd2447)
* Merge branch 'uli42-pr/update_dbe' into 3.6.x
2018-01-22 22:44:54 +0100 Ulrich Sibiller (f1f2a360f)
* dbe: add NXAGENT_SERVER guard for DixLookup
2018-02-26 06:15:49 +0100 Ulrich Sibiller (d364ea933)
* Lift dbe to xorg-xserver-1.4.2 state - non-functional changes only
2018-01-22 22:26:59 +0100 Ulrich Sibiller (95b5cf795)
* Lift dbe to xorg-xserver-1.4.2 state
2018-02-26 06:11:56 +0100 Ulrich Sibiller (4c5e9a295)
* Lift dbe to xorg-xserver-7.1/1.1.0 state - non-functional changes
only
2017-11-05 22:00:44 +0100 Ulrich Sibiller (c529873d9)
* Lift dbe to xorg-xserver-7.1/1.1.0 state
2018-02-26 05:18:12 +0100 Mihai Moldovan (3d8f8d7ab)
* debian/nx-x11proto-xext-dev.install: install new file
extensions/shapeconst.h.
2018-02-26 05:12:20 +0100 Mihai Moldovan (a9787fc2e)
* Merge branch 'uli42-pr/update_dix' into 3.6.x
2018-02-03 00:19:29 +0100 Ulrich Sibiller (6dcfcbabe)
* Transfer previous dix changes into hw/nxagent
2018-02-26 05:03:53 +0100 Ulrich Sibiller (1b54f6462)
* Lift dix to xorg-xserver-1.3.0.0 state - non-functional changes
only
2018-01-23 00:47:38 +0100 Ulrich Sibiller (485d62676)
* Lift dix to xorg-xserver-1.3.0.0 state
2018-02-26 04:56:21 +0100 Ulrich Sibiller (2853ab292)
* Lift dix to xorg-xserver-7.1/1.1.0 state - non-functional changes
only
2017-11-04 23:51:30 +0100 Ulrich Sibiller (50a337940)
* Lift dix to xorg-xserver-7.1/1.1.0 state
2018-02-26 03:00:24 +0100 Mihai Moldovan (b40dec982)
* Merge branch 'uli42-pr/update_xfixes' into 3.6.x
2018-02-26 02:56:58 +0100 Ulrich Sibiller (35d166b80)
* Lift XFIXES to xorg-xserver-1.4.2 state - non-functional changes
only
2017-11-05 23:59:22 +0100 Ulrich Sibiller (d59e8d7f4)
* Lift XFIXES to xorg-xserver-1.4.2 state
2018-02-26 02:44:10 +0100 Ulrich Sibiller (5706005f7)
* Lift XFIXES to xorg-xserver-7.1/1.1.0 state (XFIXES 4.0) -
non-functional changes only
2017-10-31 01:54:47 +0100 Ulrich Sibiller (a667131e2)
* Lift XFIXES to xorg-xserver-7.1/1.1.0 state (XFIXES 4.0)
2018-02-26 01:09:05 +0100 Mihai Moldovan (164263e1a)
* Merge branch 'sunweaver-pr/nomagicpixel' into 3.6.x
2018-02-21 10:39:46 +0100 Mike Gabriel (8d00456ad)
* nxagent: Add support for optionally enabling/disabling the magic
pixel feature.
2018-02-26 01:00:54 +0100 Mihai Moldovan (05152b788)
* Merge branch 'uli42-pr/update_xi' into arctica-3.6.x
2018-02-15 21:56:52 +0100 Ulrich Sibiller (4598c0c3d)
* Xi: change () prototypes to (void)
2018-02-15 21:42:51 +0100 Ulrich Sibiller (ebe1c2f22)
* Xi/getbmap.c: remove unnecessary cast
2018-02-15 21:41:19 +0100 Ulrich Sibiller (8e188629f)
* Xi: small formatting changes to match Xorg 7.1's Xi
2018-02-15 21:25:27 +0100 Ulrich Sibiller (b0abdf7bd)
* Xi: reformat
2018-02-15 15:14:14 +0100 Ulrich Sibiller (7aca428ff)
* Xi: ansify function prototypes
2018-02-11 22:01:11 +0100 Ulrich Sibiller (41a0ba729)
* Xi: reformat code, ansify
2018-02-08 23:44:10 +0100 Ulrich Sibiller (5bfafee50)
* Xi: Adapt include sections to match Xorg 7.1
2018-02-25 19:47:00 +0100 Mike Gabriel (e247900ed)
* debian/control: Don't B-D on build-essential packages.
2018-02-25 19:46:08 +0100 Mike Gabriel (b18477eb4)
* debian/copyright: Update copyright attributions.
2018-02-25 19:45:01 +0100 Mike Gabriel (4b81b8b38)
* debian/watch: Drop file. Not really useful in native /
upstream-provided package.
2018-02-25 19:44:34 +0100 Mike Gabriel (7986787c1)
* debian/control: Bump Standards-Version: to 4.1.3. No changes
needed.
2018-02-25 19:36:21 +0100 Mike Gabriel (e8552b7bb)
* nxcompshad: Regression fix for 990e61cc. Add missing $(NULL) in 'if
TARGET_ELF' clause.
2018-02-25 15:03:52 +0100 Mike Gabriel (a653aed4c)
* Merge branch 'Ionic-bugfix/FTBFS-non-ELF' into 3.6.x
2018-02-25 04:35:07 +0100 Mihai Moldovan (06c14b831)
* nxproxy/{configure.ac,src/Makefile.am}: only enable new ELF dtags
if target system actually is ELF-based.
(Ionic-bugfix/FTBFS-non-ELF)
2018-02-25 04:33:52 +0100 Mihai Moldovan (990e61cc8)
* nxcompshad/{configure.ac,src/Makefile.am}: only enable new ELF
dtags if target system actually is ELF-based.
2018-02-25 04:32:15 +0100 Mihai Moldovan (be1ae7087)
* m4/nx-macros.m4: add NX_TARGET_USE_ELF macro, setting TARGET_ELF
automake conditional if target compiler is generating ELF
binaries.
2018-02-25 04:29:52 +0100 Mihai Moldovan (dd1ae1769)
* nxcomp{,shad}/configure.ac: trailing whitespace removal only.
2018-02-09 03:41:22 +0100 Mihai Moldovan (7af47b583)
* Revert "NXhsm.c: add missing code"
(3.6.x-nxcomp-amend-compiler-warnings)
2018-02-08 20:40:32 +0100 Mihai Moldovan (f76d4b541)
* nx-X11/config/cf/{Imake.{cf,tmpl},{linux,xorg}.cf}: support ppc64le
alongside ppc64(be).
2018-02-07 23:19:33 +0100 Mihai Moldovan (aecdb5266)
* Merge branch 'uli42-pr/update_xext' into 3.6.x
2017-10-21 02:54:33 +0200 Ulrich Sibiller (5ec2366c4)
* Xext: lift xvmain.c to xorg-xserver-7.1/1.1 state
(gh-uli42/pr/update_xext)
2017-10-21 02:47:07 +0200 Ulrich Sibiller (8ebb5d23c)
* Xext: lift xres.c to xorg-xserver-7.1/1.1 state
2017-10-21 02:43:20 +0200 Ulrich Sibiller (e85c6885e)
* Xext: lift sync.c to xorg-xserver-7.1/1.1 state
2017-10-21 02:42:58 +0200 Ulrich Sibiller (62373d428)
* Xext: lift sleeputil.c to xorg-xserver-7.1/1.1 state
2017-10-21 02:12:01 +0200 Ulrich Sibiller (d9c3a7249)
* Xext: lift panoramiX to xorg-xserver-7.1/1.1 state
2017-10-21 02:04:30 +0200 Ulrich Sibiller (31900d41a)
* Xext: lift DPMS extension to xorg-xserver-7.1/1.1 state
2017-10-21 01:47:40 +0200 Ulrich Sibiller (4ab18725c)
* Xext: lift screensaver extension to XORG-7_1 state
2018-02-07 22:29:41 +0100 Mihai Moldovan (cbdae3b71)
* nx-libs.spec: delete useless cond_noarch macro that has never been
used.
2018-02-07 22:28:02 +0100 Mihai Moldovan (6449b5548)
* nx-libs.spec: build-depend on libtirpc-devel for rpc/rpc.h and
friends on Fedora 28+.
2018-02-07 22:21:35 +0100 Mihai Moldovan (88efaf8af)
* nx-libs.spec: only apply ppc64le workaround when compiled against
RHEL/EPEL 7.
2018-02-05 14:07:27 +0100 Mike Gabriel (a110b0c45)
* Merge branch 'uli42-pr/update_fb' into 3.6.x
2017-11-05 21:41:08 +0100 Ulrich Sibiller (f7207bcdc)
* Lift fb to xorg-xserver-7.1/1.1 state (gh-uli42/pr/update_fb,
uli42-pr/update_fb, pr/update_fb)
2018-02-05 13:02:30 +0100 Mike Gabriel (b1c42dc98)
* Merge branch 'uli42-pr/some_cleanups' into 3.6.x
2018-01-05 01:51:02 +0100 Ulrich Sibiller (7db6cff1c)
* Window.c: fix TEST/DEBUG output (gh-uli42/pr/some_cleanups,
uli42-pr/some_cleanups, pr/some_cleanups)
2018-01-05 01:45:15 +0100 Ulrich Sibiller (ffc363c54)
* Split.c: make nxagentWaitDrawable TEST messages look like all the
others
2018-01-05 01:44:58 +0100 Ulrich Sibiller (e3d749f68)
* Split.c: Fix wrong function names in TEST output
2018-01-05 01:41:52 +0100 Ulrich Sibiller (0a2a9da33)
* Splash.c: Fix wrong function names in TEST/DEBUG output
2018-01-05 01:39:00 +0100 Ulrich Sibiller (0e54be636)
* Screen.c: Fix wrong function names in TEST output
2018-01-05 01:36:12 +0100 Ulrich Sibiller (1930f184c)
* Rootless.c: Fix wrong function name in WARNING output
2018-01-05 01:34:11 +0100 Ulrich Sibiller (f511fba34)
* Reconnect.c: Fix wrong function names in TEST output
2018-01-05 01:31:44 +0100 Ulrich Sibiller (87afc32f9)
* Pixmap.c: Fix wrong function names in TEST/WARNING output
2018-01-05 01:19:40 +0100 Ulrich Sibiller (1c020ea9c)
* Events.c: change scope of XButtonEvent struct and clear it before
use
2018-01-05 01:19:26 +0100 Ulrich Sibiller (1997c04ab)
* Events.c: Fix wrong function name in TEST output
2018-01-05 01:08:18 +0100 Ulrich Sibiller (5cee71a3c)
* Dialog.c: Fix wrong function names in TEST output
2018-01-05 01:05:44 +0100 Ulrich Sibiller (61e4d2949)
* Composite.c: Fix wrong function names in TEST output
2018-01-05 00:50:29 +0100 Ulrich Sibiller (876063ce1)
* Client.c: Fix wrong function names in DEBUG/WARNING output
2018-01-05 00:47:32 +0100 Ulrich Sibiller (9e22a10a5)
* NXdispatch.c: add FIXME
2018-01-05 00:47:11 +0100 Ulrich Sibiller (acbc9cd31)
* NXdispatch.c: fix wrong indentation
2018-01-05 00:46:34 +0100 Ulrich Sibiller (99b114370)
* Handlers.c: Fix wrong function names in TEST output
2018-02-05 12:14:39 +0100 Mike Gabriel (995350d14)
* Merge branch 'uli42-pr/shm_missing_code' into 3.6.x
2018-02-02 22:39:06 +0100 Ulrich Sibiller (9fb582f42)
* NXhsm.c: drop setting of sequence number
(gh-uli42/pr/shm_missing_code, uli42-pr/shm_missing_code)
2018-02-02 22:40:23 +0100 Ulrich Sibiller (c804d99f2)
* NXhsm.c: add missing code
2018-01-28 21:36:03 +0100 Helmut Grohne (ef0a3d636)
* debian/rules: Fix FTCBFS: (see Debian bug #875867) Fix build/host
confusion in debian/rules. Pass --host to ./configure.
2018-01-20 14:03:28 +0100 Mike Gabriel (949b91c64)
* nxcomp/src/Loop.cpp: Typo fix in error msg.
2018-01-16 15:19:42 +0100 Mike Gabriel (61265ff61)
* release 3.5.99.13 (tag: 3.5.99.13)
2018-01-16 15:08:07 +0100 Mike Gabriel (9772277c6)
* Merge branch
'sunweaver-pr/keep-disabled-rrxinerama-disabled-on-reconnects'
into 3.6.x
2018-01-16 14:52:43 +0100 Mike Gabriel (05dd84256)
* hw/nxagent/Screen.c: Additionally check for noRRXineramaExtension
set to FALSE before using the nxagentAdjustRandRXinerama()
function and providing a Xinerama-like user experience.
(sunweaver-pr/keep-disabled-rrxinerama-disabled-on-reconnects)
2018-01-11 10:01:18 +0100 Mihai Moldovan (7c43682e8)
* nx-X11/config/cf/{gnu,lnx}Lib.rules: add RPATH entries for
temporary nxcomp and nxcompshad libraries.
2018-01-09 01:08:17 +0100 Mihai Moldovan (1086c4aa5)
* Merge branch 'Ionic-bugfix/ctime' into 3.6.x
2017-12-30 09:30:03 +0100 Mihai Moldovan (2eb2f2e6c)
* nxcomp/src/Timestamp.{cpp,h}: use ::ctime_s or ::ctime_r instead of
plain ctime, on-stack buffers and return std::string
objects.
2017-12-30 09:25:26 +0100 Mihai Moldovan (df8908b9d)
* nxcomp/configure.ac: add check for ::ctime_s.
2018-01-08 23:43:28 +0100 Mihai Moldovan (70e1e6a01)
* Merge branch 'uli42-pr/fix_xext_includes' into 3.6.x
2018-01-08 23:08:51 +0100 Ulrich Sibiller (f66820b57)
* panoramiX: fix includes (gh-uli42/pr/fix_xext_includes)
2018-01-08 22:58:26 +0100 Mihai Moldovan (47ef330c5)
* Merge branch 'uli42-pr/reenable_xc-misc' into 3.6.x
2018-01-08 22:25:35 +0100 Ulrich Sibiller (43456713b)
* Re-enable XC-MISC extension (gh-uli42/pr/reenable_xc-misc)
2018-01-07 01:29:13 +0100 Mihai Moldovan (5f9f744cd)
* Merge branch 'uli42-pr/fix_strings' into 3.6.x
2018-01-03 22:28:43 +0100 Ulrich Sibiller (23c36c2d2)
* Display.c: drop helper variable in loop (gh-uli42/pr/fix_strings)
2018-01-03 02:34:10 +0100 Ulrich Sibiller (b89b80949)
* Error.c: replace malloc+strcpy by strdup
2018-01-03 02:29:55 +0100 Ulrich Sibiller (27a31d0ce)
* Events.c: add FIXME
2018-01-03 02:22:11 +0100 Ulrich Sibiller (11b2b067e)
* Keyboard.c: rework string allocation/building
2018-01-03 01:55:32 +0100 Ulrich Sibiller (a0e985fb6)
* Keystroke.c: replace calloc + 2 * strcpy by asprintf
2018-01-03 01:31:52 +0100 Ulrich Sibiller (185470072)
* Font.c: replace malloc + strcpy by strdup + fix memleak
2018-01-03 01:17:59 +0100 Ulrich Sibiller (054ae8447)
* Font.c: free possibly allocated mem
2018-01-03 01:11:34 +0100 Ulrich Sibiller (56fa23485)
* Font.c: replace memcpy by sprintf preventing possible buffer
overflows
2018-01-03 00:59:59 +0100 Ulrich Sibiller (cac1af52d)
* Args.c: simplify nxagentGetDialogName()
2018-01-03 00:59:20 +0100 Ulrich Sibiller (74c21e9e2)
* Args.c, Error.[ch]: introduce own length macro for
nxagentClientsLogName
2018-01-03 00:32:14 +0100 Ulrich Sibiller (dc61b6cca)
* Args.c: use strdup instead of malloc
2018-01-03 00:18:39 +0100 Ulrich Sibiller (96e430069)
* Error.c: update nxagentPrintError
2018-01-03 00:06:39 +0100 Ulrich Sibiller (525e15168)
* Error.c: replace strcpy/strcat by snprintf
2018-01-03 00:05:49 +0100 Ulrich Sibiller (7d87e5a0c)
* Error.c: use standard file descriptor macros
2018-01-03 00:05:09 +0100 Ulrich Sibiller (654422a04)
* Error.c: remove trailing whitespace
2018-01-02 23:53:14 +0100 Ulrich Sibiller (6c080c839)
* Error.c: remove empty ifdef
2018-01-02 21:02:41 +0100 Ulrich Sibiller (a8a693817)
* Font.c: pass down size
2018-01-02 19:24:49 +0100 Ulrich Sibiller (19a3918a7)
* Display.c: pass down buffer size to nxagentLookForIconFile
2018-01-02 19:23:20 +0100 Ulrich Sibiller (ea1e0bea3)
* Replace hardcoded string lengths by macros
2017-12-08 00:30:32 +0100 Ulrich Sibiller (9a6b90c31)
* Font.c: make nxagentGetFontServerPath more readable
2017-12-08 00:19:50 +0100 Ulrich Sibiller (677da7fd3)
* Screen.c: string handling improvements
2017-12-08 00:17:24 +0100 Ulrich Sibiller (9d5c83e2f)
* Font.c: shorten string handling
2017-11-24 00:54:14 +0100 Ulrich Sibiller (2836c72f7)
* Keyboard.c: replace malloc + strcpy by asprintf
2017-11-24 00:49:17 +0100 Ulrich Sibiller (08912ef30)
* Keyboard.c: improve user messages for keyboard file handling
2017-11-24 00:48:42 +0100 Ulrich Sibiller (0e2c4df8e)
* Keyboard.c: fix memory leak
2017-11-23 23:18:44 +0100 Ulrich Sibiller (3de6bc749)
* Dialog.c: fix possible buffer overflows
2017-11-24 00:25:25 +0100 Ulrich Sibiller (4a345786c)
* Dialog.c,Display.c,NXdixfonts.c: replace strncpy() by snprintf
where appropriate
2017-11-23 21:25:26 +0100 Ulrich Sibiller (5987a7b1a)
* Dialog.c,Display.c,Font.c,NXdixfonts.c: don't use hardcoded string
buffer lengths
2018-01-05 23:21:52 +0100 Mihai Moldovan (3c8189971)
* Merge branch 'Ionic-bugfix/rpath' into 3.6.x
2018-01-03 03:22:31 +0100 Mihai Moldovan (1c1431c0f)
* nxproxy/src/Makefile.am: build library using RUNPATH instead of
RPATH.
2018-01-03 03:18:12 +0100 Mihai Moldovan (d1897719a)
* nxproxy/configure.ac: enable libtool support.
2018-01-03 03:17:10 +0100 Mihai Moldovan (4d481bf99)
* nxproxy/configure.ac: drop --enable-cxx11.
2017-12-30 00:40:06 +0100 Mihai Moldovan (b91b13b37)
* Makefile: only try to copy/dereference libNX* files when installing
data.
2017-12-30 00:17:57 +0100 Mihai Moldovan (ecaa13ce6)
* nx-X11: reintroduce creation of libX11 compat symlinks.
2017-12-29 22:35:58 +0100 Mihai Moldovan (3d17c665b)
* Makefile: install relinked program binary instead of the
"temporary" one.
2017-12-29 21:44:56 +0100 Mihai Moldovan (ffc09a73d)
* nx-X11: build programs with a temporary RPATH/RUNPATH value and a
relinked version with the system location.
2017-12-28 23:16:32 +0100 Mihai Moldovan (44f8c424e)
* nxcompshad/src/Makefile.am: enable new ELF dtags to force RUNPATH
creation for libXcompshad.
2017-12-28 23:12:50 +0100 Mihai Moldovan (4b153f5b0)
* nx-X11/config/cf/{gnu,lnx}Lib.rules: enable new ELF dtags to force
RUNPATH creation for nxagent.
2017-12-26 04:10:27 +0100 Mihai Moldovan (b13bf675a)
* nxcompshad/src/Makefile.am: implement libX11 RPATH/RUNPATH
override.
2017-12-26 04:06:40 +0100 Mihai Moldovan (26ab7b8a7)
* nxagent: implement RPATH/RUNPATH override for libX11.
2017-12-30 03:31:20 +0100 Mihai Moldovan (e13e31f75)
* Merge branch 'uli42-pr/fix_abstract' into 3.6.x
2017-12-29 14:25:53 +0100 Ulrich Sibiller (367bec595)
* EncodeBuffer.cpp: add another VALGRIND guard
(gh-uli42/pr/fix_abstract)
2017-12-28 11:19:44 +0100 Ulrich Sibiller (6e98e35cf)
* nxcomp: drop strncpy in favour of snprintf
2017-12-27 21:13:39 +0100 Ulrich Sibiller (9e8bd2e1b)
* Loop.cpp: fix memleak happening with unknown tcp host
2017-12-27 19:16:15 +0100 Ulrich Sibiller (ce293647d)
* ChannelEndPoint.cpp: fix possible memleak in getUnixPath()
2017-12-27 19:15:23 +0100 Ulrich Sibiller (17d045826)
* ChannelEndPoint.cpp: remove unneccessary code
2017-12-27 17:06:43 +0100 Ulrich Sibiller (eae64c4a4)
* ChannelEndPoint.cpp: fix another memleak
2017-12-27 15:23:33 +0100 Ulrich Sibiller (96879dc69)
* EncodeBuffer.cpp: add VALGRIND guard
2017-12-27 14:53:58 +0100 Ulrich Sibiller (6198e0376)
* nxcomp: implement correct length handling for unix socket structs
2017-12-27 14:43:50 +0100 Ulrich Sibiller (2367fc714)
* Loop.cpp: drop ugly ifdef indentation
2017-12-27 14:43:22 +0100 Ulrich Sibiller (6d8fe661e)
* Loop.cpp: create xServerAddrUNIX only if required
2017-12-27 13:16:35 +0100 Ulrich Sibiller (14a558918)
* Loop.cpp: improve/fix usage of s(n)printf
2017-12-27 13:09:25 +0100 Ulrich Sibiller (3066195d7)
* Loop.cpp: some reformatting/simplification/FIXMEs
2017-12-27 12:54:30 +0100 Ulrich Sibiller (c31c54c1b)
* Loop.cpp: delete passed object prior to overwriting it
2017-12-27 12:18:28 +0100 Ulrich Sibiller (c48748ba0)
* ChannelEndPoint.cpp: re-scope/improve getSpec
2017-12-27 12:15:47 +0100 Ulrich Sibiller (f1905c864)
* Loop.cpp: delete structs when no longer required
2017-12-27 12:14:38 +0100 Ulrich Sibiller (b593edeb2)
* Loop.cpp: always close testSocketFD
2017-12-27 12:13:43 +0100 Ulrich Sibiller (4107159e2)
* Loop.cpp: free display before leaving SetupDisplaySocket()
2017-12-27 12:12:20 +0100 Ulrich Sibiller (604e09686)
* Loop.cpp: Fix memset (size was 0)
2017-12-28 19:32:22 +0100 Mihai Moldovan (2d44051aa)
* Merge branch 'uli42-pr/silence_nxcompshad_warnings' into 3.6.x
2017-12-27 23:54:34 +0100 Ulrich Sibiller (2cade632b)
* nxcompshad: silence GCC warnings
(gh-uli42/pr/silence_nxcompshad_warnings)
2017-12-28 00:18:58 +0100 Mihai Moldovan (061c35772)
* Merge branch 'uli42-pr/reduce_uninitialised' into 3.6.x
2017-12-10 23:57:35 +0100 Ulrich Sibiller (6acbfab33)
* reduce usage of uninitialised bytes
(gh-uli42/pr/reduce_uninitialised)
2017-12-27 22:09:29 +0100 Mihai Moldovan (bc5f9a236)
* nxcomp/src/Log.h: take a reference-type in generic has_newline()
function.
2017-12-27 20:12:26 +0100 Mihai Moldovan (8036f6914)
* nxcomp/src/Log.cpp: don't confuse users with useless warning
messages in case that a log line append operation was
requested, but the message level has lower precedence than
the current log filter.
2017-12-27 19:49:25 +0100 Mihai Moldovan (56dbc2156)
* nxcomp/src/Log.h: make sure we don't pass NULL pointers to
strstr().
2017-12-25 17:39:40 +0100 Mihai Moldovan (57845ced5)
* nxcomp/src/Loop.cpp: whitespace in log messages only.
2017-12-25 02:19:17 +0100 Mihai Moldovan (970704ca4)
* nxcomp/src/Loop.cpp: use new log continuation mechanism.
2017-12-25 02:18:46 +0100 Mihai Moldovan (fe447bb6d)
* nxcomp/src/Loop.cpp: whitespace only.
2017-12-24 22:16:38 +0100 Mihai Moldovan (dccf5901e)
* nxcomp/src/Log.{cpp,h}: provide infrastructure for appending to