forked from ArcticaProject/nx-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6611 lines (3805 loc) · 193 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
2016-07-06 10:38:25 +0200 Mike Gabriel (3f0e4c0)
* release 3.5.99.0 (HEAD, 3.6.x)
2016-07-06 10:02:37 +0200 Mike Gabriel (961fa2a)
* README.md: Add build howto for openSUSE based RPMs. (origin/HEAD,
origin/3.6.x)
2016-07-06 10:02:16 +0200 Mike Gabriel (b41369f)
* README.md: Status update of listed 3.6.x features.
2016-07-06 08:29:38 +0200 Mike Gabriel (98922f7)
* make-changelog.sh: Ship simple script for updating the upstream
ChangeLog file from Git history.
2016-07-06 01:14:56 +0200 Mike Gabriel (9b50e00)
* Merge branch 'sunweaver-pr/update-license-files' into 3.6.x
2016-07-05 16:32:57 +0200 Mike Gabriel (6144b61)
* VCS info lines: Remove ancient X.org / XFree86 VCS info line from
code files. (gh-sunweaver/pr/update-license-files,
sunweaver-pr/update-license-files,
pr/update-license-files)
2016-07-05 16:22:51 +0200 Mike Gabriel (51c3d42)
* Per-file copyright notices: Update copyright information in file
headers that NoMachine placed there own copyright
statement in.
2016-07-05 13:44:32 +0200 Mike Gabriel (3c79d5c)
* LICENSE files: Update copyright holders, FSF address and various
other minor things.
2016-07-06 00:40:36 +0200 Mike Gabriel (5cbc936)
* nxproxy.1 man page: Another rendering flaw fixed.
2016-07-06 00:25:06 +0200 Mike Gabriel (8ec78a0)
* debian/*.doc-base: Add .doc-base files for bin:packages containing
documentation.
2016-07-06 00:07:11 +0200 Ulrich Sibiller (196d38f)
* Xserver/dix/events.c: Drop unused i variable from TryClientEvents.
2016-07-06 00:04:05 +0200 Mike Gabriel (0369bf5)
* nxproxy.1 man page: Fix a typo + a rendering error. Detected by
lintian.
2016-07-05 23:47:49 +0200 Mike Gabriel (67f937c)
* debian/rules: Enable -fPIE / -pie hardening support for nxagent and
nxproxy.
2016-07-05 22:56:01 +0200 Ulrich Sibiller (d7655e1)
* Merge pull request #180 from uli42/pr/remove_need_events_replies
2016-07-04 21:11:21 +0200 Ulrich Sibiller (fa65199)
* remove unreferenced NEED_EVENTS/NEED_REPLIES
2016-07-05 22:23:27 +0200 Mike Gabriel (ff0d46e)
* bin/nxauth: Remove deprecated wrapper script "nxauth".
2016-07-05 22:18:40 +0200 Mike Gabriel (f397f3a)
* debian/nxagent.docs: whitespace only
2016-07-05 22:17:51 +0200 Mike Gabriel (754d33d)
* README.keystrokes: Move from base folder to doc/nxagent/.
2016-07-05 21:58:42 +0200 Mike Gabriel (a39c5c1)
* nx-libs.spec: Adapt RPM packaging to doc files having been moved
around.
2016-07-05 21:57:45 +0200 Mike Gabriel (cd9a6b9)
* debian/libxcomp3.docs: Install libxcomp3 documentation files into
bin:package.
2016-07-05 21:48:27 +0200 Mike Gabriel (3ec3f61)
* debian/nxproxy.docs: Fix FTBFS due to missing documentation files
(moved out of the way with recent commits).
2016-07-05 21:47:28 +0200 Mike Gabriel (2555bd5)
* documentation: Move README-VALGRIND out of doc/_attic_/ folder to
doc/nxproxy/.
2016-07-05 13:34:26 +0200 Mike Gabriel (381706a)
* Merge branch 'sunweaver-pr/no-more-type-casting-in-writetoclient'
into 3.6.x
2016-07-04 00:28:47 +0200 Alan Coopersmith (f6a1bda)
* Remove unneccesary casts from WriteToClient calls
(gh-sunweaver/pr/no-more-type-casting-in-writetoclient,
sunweaver-pr/no-more-type-casting-in-writetoclient,
pr/no-more-type-casting-in-writetoclient)
2016-07-04 00:21:45 +0200 Kristian Høgsberg (ff81a52)
* Make WriteToClient take a const void * like any decent IO write
function.
2016-07-05 13:25:48 +0200 Mike Gabriel (06a9785)
* nxcomp/Misc.cpp: The clipboard nx/nx option is a string option, not
int.
2016-07-05 13:25:17 +0200 Mike Gabriel (7e18fdf)
* Xserver.man: Drop original and old Xserver man page. Relevant parts
have now been added to nxagent.1 man page.
2016-07-05 13:24:16 +0200 Mike Gabriel (ebb2026)
* man pages: Greatly improve man pages nxagent.1 and nxproxy.1.
2016-07-05 10:47:55 +0200 Mike Gabriel (ee02822)
* File permission fixes: No executable bit on Imakefile files, *.c
and *.h files.
2016-07-05 10:41:55 +0200 Mike Gabriel (5214930)
* X2Go remnants: Drop x2goagent.1 man page. Shipped in X2Go Server
sources nowadays.
2016-07-05 10:41:24 +0200 Mike Gabriel (4017939)
* nxcomp licensing: Move README.on-retroactive-DXPC-license to
doc/nxcomp/ folder.
2016-07-05 10:40:11 +0200 Mike Gabriel (b38f010)
* NoMachine documentation files: Move to doc/_attic_/ folder.
2016-07-05 10:33:08 +0200 Mike Gabriel (d38ccd1)
* LICENSE files: Have a main LICENSE file and one for nxcomp in the
project's base folder.
2016-07-05 10:28:40 +0200 Mike Gabriel (cc4fdf6)
* X.org 6.9 documentation files: Move into doc/_attic_/.
2016-07-05 10:26:34 +0200 Mike Gabriel (4ad2943)
* Drop multiple COPYING files contaning the GPL-2 license text.
2016-07-05 10:16:00 +0200 Mike Gabriel (d14cc53)
* doc/_attic_/: Introduce an "_attic_" folder. Move diffs between
NoMachine's nx-X11 3.5 and X.org 6.9 here.
2016-07-05 10:15:12 +0200 Mike Gabriel (74a52dd)
* doc/ folder: Have one sub-folder per nx-libs component.
2016-07-05 10:11:19 +0200 Mike Gabriel (74edd6e)
* test scripts: Move to top folder "testscripts/" in source tree.
2016-07-05 10:08:03 +0200 Mike Gabriel (aa42107)
* Merge branch 'sunweaver-pr/rpm-packaging-updates' into 3.6.x
2016-07-05 09:54:47 +0200 Mike Gabriel (058ae3e)
* nx-libs.spec: Add Conflicts: fields for removed shared library
bin:packages. (gh-sunweaver/pr/rpm-packaging-updates,
sunweaver-pr/rpm-packaging-updates,
pr/rpm-packaging-updates)
2016-07-04 16:34:38 +0200 Mike Gabriel (1910142)
* nx-libs.spec: Let libNX_X11-6 and libNX_X11-devel conflict with
deprecated libXau6 and libXau-devel.
2016-07-04 16:31:18 +0200 Mike Gabriel (6dded30)
* nx-libs.spec: Let nxagent conflict with nxauth, which is not
provided anymore.
2016-07-04 16:27:34 +0200 Mike Gabriel (59eab0a)
* nx-libs.spec: Add correct Obsoletes:/Provides: fields for lib*
bin:packages.
2016-07-04 15:32:58 +0200 Mike Gabriel (5c65e9b)
* nx-libs.spec: Fix various issues since last testing the RPM builds
of nx-libs:
2016-07-05 09:46:45 +0200 Mike Gabriel (a1a7b1a)
* debian/control: Add some hard and exact-versioned dependencies for
our bin:packages. Assure that no old share lib packages
with the same set of symbols remain on the system when
upgrading.
2016-07-05 09:10:28 +0200 Mike Gabriel (bf08b99)
* Merge branch 'sunweaver-pr/writeeventstoclients-no-sequencenumber'
into 3.6.x
2016-07-03 22:52:13 +0200 Jamey Sharp (cb0089b)
* Set event sequence number in WriteEventsToClient instead of at
callers.
(gh-sunweaver/pr/writeeventstoclients-no-sequencenumber)
2016-07-03 22:06:43 +0200 Jamey Sharp (9ea8871)
* Make WriteEventsToClient/WriteToClient no-op on fake or dead
clients.
2016-07-05 08:34:17 +0200 Mike Gabriel (320a8cc)
* Merge branch 'sunweaver-pr/silencing-compiler-warnings' into 3.6.x
2016-07-05 08:16:09 +0200 Tomas Carnecky (b15fc63)
* Replace INITARGS with void
(gh-sunweaver/pr/silencing-compiler-warnings)
2016-06-29 15:07:16 +0200 Mike Gabriel (f0af82c)
* nx-X11/lib/X11/XKBMisc.c: Avoid warning about maybe non-assigned
variables (mask, newMask).
2016-06-29 15:02:00 +0200 Daniel Stone (d60297e)
* Remove INITARGS braindamage, change to void; add XkbExtensionInit
prototype to xkb.h. Explicitly initialise nTypes in xkb.c.
2016-06-29 14:58:47 +0200 Keith Packard (ecaf4df)
* Xserver/Xext/xres.c: Drop unused REQUEST macro call (for
xXResQueryVersionReq).
2016-06-29 14:28:49 +0200 Mike Gabriel (8949935)
* Xserver: Post-REGION-macros-to-inline-funcs clean-up.
2016-06-29 14:17:53 +0200 Mike Gabriel (8df1a67)
* Xserver/mi/mizerarc.c: Initialize oddPtrs as NULL before using it
(in miZeroPolyArc).
2016-06-29 14:14:15 +0200 Mike Gabriel (c08d030)
* Xserver/mi/miarc.c: Initialize dashRemaining with 0 before using
it.
2016-06-29 14:09:52 +0200 Mike Gabriel (a8fd16c)
* Xserver/os/xdmauth.c: Avoid compiler warnings due to -Wswitch being
enabled. Use if statement rather than switch.
2016-06-29 14:05:12 +0200 Mike Gabriel (141316a)
* Xserver/os/log.c: Make sure strlcpy is defined in log.c. Immitate
what is done in X.org.
2016-06-29 13:57:05 +0200 Adam Jackson (f46af7d)
* Restore compression of duplicate log file entries.
2016-06-29 13:45:20 +0200 Keith Packard (b5cceb7)
* os: Make sure that writing our pid to the lock file actually worked
2016-06-29 13:35:06 +0200 Mike Gabriel (bad0e8b)
* Xserver/os/connection.c: Drop unused variable 'restore_trans_conn'
from ClientAuthorized().
2016-06-29 13:33:51 +0200 Mike Gabriel (00ebfaf)
* Xserver/os/connection.c: Only define XSERV_t, TRANS_SERVER and
TRANS_REOPEN if not yet defined.
2016-06-29 13:30:08 +0200 Mike Gabriel (b34b47e)
* nx-X11/lib/X11/imTrX.c: Fix warning ‘len’ may be used uninitialized
in this function (_XimRead).
2016-06-29 13:28:23 +0200 Mike Gabriel (eddd487)
* nx-X11/lib/X11/imInsClbk.c: Fix warning 'right-hand operand of
comma expression has no effect' in
_XimFilterPropertyNotify.
2016-06-29 13:24:38 +0200 Mike Gabriel (3569ac1)
* nx-X11/lib/X11/lcFile.c: Drop conditional always evaluating as
True.
2016-06-29 13:20:30 +0200 Mike Gabriel (365fa4f)
* nx-X11/lib/X11/XKBMisc.c: Drop conditional always evaluating as
True.
2016-06-29 13:17:04 +0200 Mike Gabriel (ed61433)
* nx-X11/lib/X11/LiHosts.c: Drop unused variable (in XListHosts).
2016-06-29 13:10:08 +0200 Mike Gabriel (5e2e760)
* Avoid 'siAddr' maybe being used uninitialized in XAddHost and
XRemoveHost.
2016-06-29 12:53:21 +0200 Mike Gabriel (35dbbd7)
* hw/nxagent/Exrensions.c: Post-RandR 1.5 update fix. Properly set
rrProvider hook functions to NULL.
2016-06-29 12:50:14 +0200 Mike Gabriel (e02bdf9)
* hw/nxagent/Args.c: Fix fprintf placeholder (%u -> %lu).
2016-06-29 12:45:45 +0200 Adam Jackson (7e21611)
* Remove fbpseudocolor
2016-06-29 12:37:22 +0200 Cyril Brulebois (3a54da8)
* fb: Mark some variables as unused.
2016-06-29 12:38:31 +0200 Jeremy Huddleston (b91099b)
* Add _X_UNUSED attribute to designate unused variables and silence
warnings
2016-06-29 12:18:52 +0200 Mike Gabriel (cef6d72)
* Xserver/composite/compint.h: Disable debugging in Copmosite
extension.
2016-06-29 12:07:26 +0200 Mike Gabriel (f364bac)
* Xserver/xfixes/region.c: Don't declare and set PictureScreenPtr ps
(in ProcXFixesSetPictureClipRegion). Variable is not used.
2016-07-05 08:09:24 +0200 Mike Gabriel (854f3fa)
* Merge branch 'sunweaver-pr/proxy-to-proxy-over-unix-socket' into
3.6.x
2016-06-15 16:44:28 +0200 Mike Gabriel (5a22f2e)
* test scripts: Add test scripts for testing Unix file socket support
(i.e. proxy2proxy and proxy2agent sessions via Unix file
sockets).
(gh-sunweaver/pr/proxy-to-proxy-over-unix-socket)
2016-06-15 10:29:12 +0200 Mike Gabriel (c6e9565)
* nxcomp/Loop.cpp: Add Unix file socket support for proxy <-> proxy
connection.
2015-06-02 14:55:40 +0200 Salvador Fandino (b23dcd1)
* merge code paths depending on acceptHost being ""
2015-06-02 15:35:50 +0200 Salvador Fandino (f706d77)
* remove now unused function ParseListenOption
2015-06-02 13:25:34 +0200 Salvador Fandino (c92a102)
* rewrite WaitForRemote to build on top of ListenConnectionTCP
2015-06-02 12:54:15 +0200 Salvador Fandino (28736a8)
* remove unused listenHost parameter
2015-06-02 12:34:20 +0200 Salvador Fandino (d6edd7c)
* Remove work around for OS/X that was doing nothing
2015-06-02 12:30:49 +0200 Salvador Fandino (d2e8551)
* Simplify ParseListenOption
2015-06-02 10:31:53 +0200 Salvador Fandino (5ea2d90)
* rewrite SetupUnixSocket to use ListenConnectionUnix
2015-06-01 17:52:33 +0200 Salvador Fandino (c5a2cf8)
* Rework SetupTcpSocket to use ListenConnectionTCP
2016-07-04 22:55:23 +0200 Mike Gabriel (e0edae0)
* Merge branch 'sunweaver-pr/xerrordb-from-xorg' into 3.6.x
2016-06-28 20:30:42 +0200 Mike Gabriel (1bd2463)
* libNX_X11 data files: Install libNX_X11 related data files.
(gh-sunweaver/pr/xerrordb-from-xorg)
2016-07-04 16:37:55 +0200 Mike Gabriel (27b0b57)
* Merge branch 'sunweaver-pr/type-safe-swapping' into 3.6.x
2016-06-29 01:36:31 +0200 Mike Gabriel (286d832)
* Use internal temp variable for swap macros. Make swaps/swapl type
safe (introducing wrong_size check at build time).
(gh-sunweaver/pr/type-safe-swapping)
2016-06-15 16:46:10 +0200 Mike Gabriel (d1d859d)
* test scripts: Update copyright headers.
2016-06-15 16:42:25 +0200 Mike Gabriel (b767ca5)
* test scripts: Rename run-nxproxy2nxproxy-test ->
run-nxproxy2nxproxy.
2016-07-02 14:11:38 +0200 Mike Gabriel (1dbd3c8)
* Merge branch 'sunweaver-pr/backport-Xorg-memory-handling' into
3.6.x
2016-06-27 12:53:03 +0200 Mike Gabriel (e858082)
* debian/patches: Refresh patches after changes in upstream code.
(gh-sunweaver/pr/backport-Xorg-memory-handling)
2016-06-28 16:55:26 +0200 Mike Gabriel (40e3984)
* nx-X11/include/extensions/XKBsrv.h: Different memory handling when
built with Xserver and with Xlib.
2016-06-27 12:12:31 +0200 Mike Gabriel (f779b2e)
* os: Remove deprecated malloc/free wrappers, clean
{X,XNF}{alloc,calloc,realloc,free,strdup} from pre-C89
baggage
2016-06-27 11:51:31 +0200 Mike Gabriel (ce40aec)
* nx-X11/programs/Xserver: Drop {X,x}calloc() macros, use calloc()
instead.
2016-06-26 02:08:32 +0200 Mike Gabriel (74a5450)
* nx-X11/programs/Xserver: Drop {X,x}realloc() macros, use realloc()
instead.
2016-06-26 01:51:18 +0200 Mike Gabriel (2646fc2)
* nx-X11/programs/Xserver: Drop {X,x}alloc() macros, use malloc()
instead.
2016-06-26 01:38:22 +0200 Mike Gabriel (acf8714)
* nx-X11/programs/Xserver: Drop {X,x}free() macros, use free()
instead.
2016-07-02 13:53:16 +0200 Mike Gabriel (279d371)
* Merge branch 'sunweaver-pr/protocols-version-h' into 3.6.x
2016-06-28 12:07:10 +0200 Mike Gabriel (487870f)
* Xserver/include/protocol-versions.h: Switch to having an
Xserver-specific header file containing all use protocol
versions. (gh-sunweaver/pr/protocols-version-h)
2016-06-28 12:06:50 +0200 Mike Gabriel (a08e232)
* Xserver Imakefiles: Make sure NXAGENT_SERVER is defined for all
extensions.
2016-07-01 16:08:55 +0200 Mike Gabriel (dd5f5b5)
* Merge branch 'sunweaver-pr/ld-loading-libX11-hack' into 3.6.x
2016-06-30 23:50:12 +0200 Mike Gabriel (5934d03)
* Rework nxagent and nxproxy wrapper scripts.
(gh-sunweaver/pr/ld-loading-libX11-hack)
2016-07-01 16:00:04 +0200 Mike Gabriel (da7261c)
* Merge branch 'uli42-pr/drop_libNX_Xext' into 3.6.x
2016-07-01 13:54:11 +0200 Ulrich Sibiller (1cd7e35)
* finally drop libNX_Xext
2016-07-01 13:54:10 +0200 Ulrich Sibiller (e78c5bc)
* remove shm code from libNX_Xext
2016-07-01 00:55:53 +0200 Ulrich Sibiller (232c7ad)
* avoid conflicts when mixing own includes with upstream includes
2016-07-01 00:05:30 +0200 Ulrich Sibiller (e77e37f)
* remove XShape code from libNX_Xext
2016-07-01 15:48:55 +0200 Mike Gabriel (2f19f2f)
* Merge branch 'sunweaver-pr/libXau-cleanup' into 3.6.x
2016-06-23 10:46:48 +0200 Mike Gabriel (2045452)
* nxagent Xserver: Drop Kerberos code. Not used in nxagent.
(gh-sunweaver/pr/libXau-cleanup)
2016-06-23 10:31:42 +0200 Mike Gabriel (26bf48b)
* library-cleanup: Don't build libNX_Xau anymore. Use system's libXau
shared library.
2016-06-23 10:27:37 +0200 Mike Gabriel (b214c73)
* nxauth: Drop nxauth tool completely, xauth can be successfully used
with nxagent / nxproxy instead.
2016-07-01 14:02:52 +0200 Mike Gabriel (a3a2952)
* Merge branch 'sunweaver-pr/debian-packaging-updates' into 3.6.x
2016-07-01 00:00:29 +0200 Mike Gabriel (12ca29b)
* debian/*.dirs: Don't create directories in the Debian package. All
handled well by the upstream Makefile.
(gh-sunweaver/pr/debian-packaging-updates)
2016-06-23 21:33:23 +0200 Mike Gabriel (2d016f8)
* roll-tarball.sh: Move out of debian/ folder into project's base
folder.
2016-06-23 21:28:42 +0200 Mike Gabriel (82a8d59)
* debian/libxcompext3.symbols: Add symbols file for libXcompext3.
2016-06-23 21:13:20 +0200 Mike Gabriel (ba5f32c)
* nx-X11/extras/Mesa/src/mesa/shader/arbprogparse.c: Fix typo
(grammer -> grammar).
2016-06-23 21:09:19 +0200 Mike Gabriel (7d66941)
* debian/rules: Use buildflags.mk from dpkg-dev. Enable bindnow
hardening flag.
2016-06-23 21:08:47 +0200 Mike Gabriel (56f776c)
* debian/control: Versioned B-D: dpkg-dev (>= 1.16.1.1).
2016-06-23 15:45:33 +0200 Mike Gabriel (2a2d7f0)
* debian/control: Remove all Pre-Depends: fields from all bin:pkgs.
2016-06-22 12:14:00 +0200 Mike Gabriel (9663b1c)
* debian/control: Bump Standards: to 3.9.8. (Various changes were
needed).
2016-06-22 12:13:23 +0200 Mike Gabriel (87ce9b4)
* debian/{control,compat}: Bump to DH compat level 9.
2016-06-22 12:08:49 +0200 Mike Gabriel (2e1ec61)
* debian/control: Use my DD address in Uploaders: field.
2016-06-22 12:08:35 +0200 Mike Gabriel (24ff7db)
* debian/changelog: Suppress warnings from lintian about -0 revision
in version string.
2016-06-22 10:26:15 +0200 Mike Gabriel (b4d7b99)
* debian/control: Drop various not-used-anymore libNX_* related
packages. Add B:/R: to libnx-x11-{6,dev,6-dbg) to
uninstall those package when upgrading to nx-libs 3.6.x.
2016-06-22 10:12:33 +0200 Mike Gabriel (6b423ee)
* roll-tarball.sh: Don't ship doc/X11-symbols/ in the lite
(proxy-only) tarball derived from the nx-libs code tree.
2016-06-22 10:10:49 +0200 Mike Gabriel (908b930)
* debian/rules: Don't attempt at removing $(CURDIR)/.preserve/. Not
needed anymore since we removed the CODE-REDUCTION_* hacks
from debian/rules.
2016-06-22 10:09:17 +0200 Mike Gabriel (593e15c)
* debian/*: Drop non-multi-arch support (i.e. Debian squeeze, Ubuntu
10.04 and earlier).
2016-06-22 10:04:16 +0200 Mike Gabriel (3983b11)
* debian/*: Drop not-use-anymore CODE-REDUCTION_* files.
2016-07-01 13:46:26 +0200 Mike Gabriel (8307d4f)
* Merge branch
'sunweaver-pr/define-default-source-not-bsd+svid-source'
into 3.6.x
2016-06-23 20:52:27 +0200 Mike Gabriel (da4410c)
* build flags: Use -D_DEFAULT_SOURCE instead of deprecated
-D_BSD_SOURCE and -D_SVID_SOURCE.
(gh-sunweaver/pr/define-default-source-not-bsd+svid-source)
2016-07-01 13:13:48 +0200 Mike Gabriel (4b3081c)
* Merge branch 'sunweaver-pr/drop-really-old-X10-API-code' into 3.6.x
2016-06-23 09:58:54 +0200 Mike Gabriel (f0bf303)
* nx-X11/lib/X10: Drop really ancient X10 API code. Not used within
nxagent. (gh-sunweaver/pr/drop-really-old-X10-API-code)
2016-07-01 13:10:06 +0200 Mike Gabriel (b666a37)
* Merge branch 'sunweaver-pr/properly-apply-optflags-at-buildtime'
into 3.6.x
2016-06-23 14:27:15 +0200 Mike Gabriel (d650a0b)
* OPTFLAGS: Properly propagate build option flags to
nxcomp{,ext,shad} and the nx-X11 build scripts.
(gh-sunweaver/pr/properly-apply-optflags-at-buildtime)
2016-06-23 09:58:54 +0200 Mike Gabriel (4693c32)
* nx-X11/lib/X10: Drop really ancient X10 API code. Not used within
nxagent.
2016-06-23 14:27:15 +0200 Mike Gabriel (a1e9abc)
* OPTFLAGS: Properly propagate build option flags to
nxcomp{,ext,shad} and the nx-X11 build scripts.
2016-06-30 22:41:00 +0200 Mike Gabriel (4cbfc5f)
* debian/libnx-x11-6.symbols: Update symbols (added:
_XEatDataWords@Base 3.5.99.0, _XGetRequest@Base 3.5.99.0).
2016-06-30 15:41:03 +0200 Mike Gabriel (ba10cef)
* Merge branch 'sunweaver-pr/drop-embedded-imake-and-makedepend' into
3.6.x
2016-06-22 13:22:06 +0200 Mike Gabriel (298744e)
* nx-X11/Makefile: Drop build support for World.Win32 and World.OS2.
Not our target platforms.
(gh-sunweaver/pr/drop-embedded-imake-and-makedepend)
2016-06-22 12:41:50 +0200 Mike Gabriel (2f3d394)
* nx-X11/config/{imake,makedepend}: Use system-wide available imake
and makedepend tools.
2016-06-30 00:26:37 +0200 Mike Gabriel (5b36f64)
* Merge branch 'sunweaver-pr/backport-xgetrequest-and-xeatdatawords'
into 3.6.x
2016-06-29 21:44:08 +0200 Ulrich Sibiller (bd2650c)
* Port _XEatDataWords
(gh-sunweaver/pr/backport-xgetrequest-and-xeatdatawords)
2016-06-29 21:25:24 +0200 Ulrich Sibiller (36d0fac)
* Backport of _XGetRequest()
2016-06-29 11:21:09 +0200 Mike Gabriel (3314c24)
* Merge branch 'sunweaver-pr/drop-x2goagent' into 3.6.x
2016-06-22 08:16:35 +0200 Mike Gabriel (c355dc9)
* Makefile,debian/*,nx-libs.spec,<misc>: Drop references to X2Go
Project, esp. drop x2goagent.
(gh-sunweaver/pr/drop-x2goagent)
2016-06-29 11:13:34 +0200 Mike Gabriel (b9fb7a0)
* Merge branch 'sunweaver-pr/libnx-xext-drop-unused-extensions' into
3.6.x
2016-06-28 12:20:00 +0000 Mike Gabriel (f051b7a)
* libNX_Xext: Drop unused extensions: DPMS, XTestExt1, XSync,
XSecurity.
(gh-sunweaver/pr/libnx-xext-drop-unused-extensions)
2016-06-28 12:13:27 +0000 Mike Gabriel (e9857d5)
* nx-X11/lib/Xext/Imakefile: Serialize parameters and make Imakefile
changes more trackable.
2016-06-28 12:05:01 +0000 Mike Gabriel (d595125)
* fix wrong bin:package for Xext proto headers: Move dpmsstr.h and
securstr.h from Xext devel package into proto header
package.
2016-06-28 11:43:06 +0000 Mike Gabriel (3ded4a2)
* Fix linking order hack in nxagent.
(gh-sunweaver/pr/linking-order-fix)
2016-06-15 16:42:58 +0200 Mike Gabriel (b83a148)
* test scripts: Add run-nxagent test script.
2016-06-25 01:35:40 +0200 Mihai Moldovan (975511c)
* Merge branch
'sunweaver-pr/hw-nxagent-drop-duplicate-Xserver-code_disable-Xserver-code-and-include-in-nxagent'
into arctica-3.6.x
2016-05-02 12:14:14 +0200 Mike Gabriel (a5befd4)
* hw/nxagent: Drop code referring to the following removed Xserver
extensions: XAPPGROUP, LBX, XEVIE.
(gh-sunweaver/pr/hw-nxagent-drop-duplicate-Xserver-code_disable-Xserver-code-and-include-in-nxagent)
2016-05-02 11:29:53 +0200 Mike Gabriel (3bdcd17)
* hw/nxagent/NX*.c: Amend re-introduced nxagent warnings by fixing
the corresponding code section in files included from
"somewhere" in nx-X11/programs/Xserver/.
2016-05-01 23:02:20 +0200 Mike Gabriel (a5c7b24)
* hw/nxagent/NXdixfonts.c: Shrink file, drop duplicate code that can
identically be found in dix/dixfonts.c. Also remove NX'ish
code from dix/dixfonts.c.
2016-05-01 21:58:22 +0200 Mike Gabriel (2ba5008)
* hw/nxagent/NXdispatch.c: Shrink file, drop duplicate code that can
identically be found in dix/dispatch.c.
2016-04-26 05:59:56 +0200 Mike Gabriel (a434613)
* hw/nxagent/NXproperty.c: Shrink file, drop duplicate code that can
identically be found in dix/property.c.
2016-04-11 14:53:15 +0200 Mike Gabriel (c6f86b3)
* hw/nxagent/NXshm.c: Shrink file, drop duplicate code that can
identically be found in Xext/shm.c.
2016-04-10 01:57:57 +0200 Mike Gabriel (51e4ed0)
* hw/nxagent/NXxvdisp.c: Shrink file, drop duplicate code that can
identically be found in Xext/xvdisp.c.
2016-04-18 13:02:34 +0200 Mike Gabriel (add8819)
* hw/nxagent/NXevents.c: Shrink file, drop duplicate code that can
identically be found in dix/events.c.
2016-04-18 08:19:05 +0200 Mike Gabriel (0571ece)
* hw/nxagent/NXglyph.c: Shrink file, drop duplicate code that can
identically be found in render/glyph.c.
2016-04-18 08:10:08 +0200 Mike Gabriel (12130a4)
* hw/nxagent/NXglyphcurs.c: Shrink file, drop duplicate code that can
identically be found in dix/glyphcurs.c.
2016-04-13 15:29:32 +0200 Mike Gabriel (a648558)
* hw/nxagent/NXrender.c: Shrink file, drop duplicate code that can
identically be found in render/render.c.
2016-04-13 15:28:33 +0200 Mike Gabriel (778e83a)
* hw/nxagent/NX{glyphstr,picturestr}.h: Don't ship the complete
header files in nxagent's code base. Rather replace
structures we need modified only.
2016-04-13 11:33:33 +0200 Mike Gabriel (de03d62)
* NXrenderint.h: Move into subfolder X11/include/ and rename to
Xrender_nxagent.h. (Like we have done with all other
non-public Xlib related header files that are required for
building nxagent.
2016-04-11 16:37:00 +0200 Mike Gabriel (ab6bb89)
* hw/nxagent/NXresource.c: Shrink file, drop duplicate code that can
identically be found in dix/resource.c.
2016-04-11 13:46:36 +0200 Mike Gabriel (1384776)
* Xserver/dix/window.c: Don't reintroduce build warnings with
previous commit due to now-unnecessary assignements of
pScreen pointers.
2016-04-11 13:41:11 +0200 Mike Gabriel (4690d6b)
* hw/nxagent/NXwindow.c: Shrink file, drop duplicate code that can
identically be found in dix/window.c.
2016-04-10 02:45:24 +0200 Mike Gabriel (e60f281)
* hw/nxagent/NXglxext.c: Shrink file, drop duplicate code that can
identically be found in GL/glx/glxext.c.
2016-04-10 02:37:19 +0200 Mike Gabriel (b4e2ec7)
* Xserver/GL/glx/Imakefile: Serialize parameters and make Imakefile
changes more trackable.
2016-04-09 00:36:40 +0200 Mike Gabriel (0c29f81)
* hw/nxagent/NXpicture.c: Shrink file, drop duplicate code that can
identically be found in render/picture.c.
2016-04-08 13:53:36 +0200 Mike Gabriel (809fed6)
* hw/nxagent/NXmiexpose.c: Shrink file, drop duplicate code that can
identically be found in mi/miexpose.c.
2016-04-08 13:52:59 +0200 Mike Gabriel (69ac981)
* hw/nxagent/Pixmaps.h: Make RESTYPE well-defined by adding
resource.h to includes.
2016-04-08 10:01:30 +0200 Mike Gabriel (5088a6d)
* Xserver/mi/Imakefile: Serialize parameters and make Imakefile
changes more trackable.
2016-04-08 09:45:32 +0200 Mike Gabriel (ae1a218)
* hw/nxagent/NXmiglyph.c: Shrink file, drop code that can be
identically found in render/miglyph.c.
2016-04-08 09:38:20 +0200 Mike Gabriel (500544f)
* hw/nxagent/NXmitrap.c: Shrink file, drop duplicate code that can
identically be found in render/mitrap.c.
2016-04-08 09:26:12 +0200 Mike Gabriel (8fab4af)
* hw/nxagent/NXmiwindow.c: Drop complete file.
2016-04-07 12:22:51 +0200 Mike Gabriel (148f750)
* hw/nxagent/NXdamage.c: Shrink file, drop duplicate code that can
identically be found in miext/damage/damage.c.
2016-04-07 09:36:18 +0200 Mike Gabriel (fd31518)
* NXcomposite.h: Move fake header file NXcomposite.h to
hw/nxagent/X11/include/ and drop all symbols that are not
explicitly used by nxagent.
2016-04-07 00:54:44 +0200 Mike Gabriel (28acdaf)
* Xserver/hw/nxagent: Drop NXcompositeext.h, it is a duplicate of
nx-X11/include/extensions/composite.h.
2016-04-06 23:31:52 +0200 Mike Gabriel (ca1e857)
* hw/nxagent/NXextension.c: Shrink file, drop duplicate code that is
indentically found in dix/extension.c.
2016-04-06 23:18:07 +0200 Mike Gabriel (5d16046)
* Xserver/dix/Imakefile: Serialize parameters and make Imakefile
changes more trackable.
2016-06-25 00:38:01 +0200 Mike Gabriel (9df1536)
* Merge branch 'uli42-pr/run_xinerama_without_debug_output' into
3.6.x
2016-06-24 21:22:01 +0200 Ulrich Sibiller (b7d7ff3)
* libX11: Extend Event functions to handle IOErrors
2016-06-25 00:31:35 +0200 Ulrich Sibiller (e079b0b)
* Screen.c: fix RRGetInfo call
2016-06-25 00:31:05 +0200 Ulrich Sibiller (cec31e2)
* Xinerama: undef debug/test flags
2016-06-25 00:17:10 +0200 Mike Gabriel (9c1275f)
* Merge branch 'uli42-pr/fix-crash-in-XPeekEvent' into 3.6.x
2016-06-24 21:22:01 +0200 Ulrich Sibiller (5ee04c2)
* libX11: Extend Event functions to handle IOErrors
2016-06-21 04:12:07 +0200 Mike Gabriel (17f3e3b)
* Merge branch 'sunweaver-pr/xrandr-extension-upgrade-1.5' into 3.6.x
2016-06-20 17:21:33 +0200 Mike Gabriel (4c8fc6b)
* debian/patches: Update
102_xserver-xext_set-securitypolicy-path.debian.patch.
(gh-sunweaver/pr/xrandr-extension-upgrade-1.5)
2016-06-20 11:10:06 +0200 Mike Gabriel (c2b1f48)
* Backport RANDR proto version 1.5 to nx-X11's Xserver.
2016-06-20 15:53:20 +0200 Mike Gabriel (2e5b989)
* Move matrix operations from X server to pixman 0.13.2. Required
code de-duplication in nxagent. (Will be fixed by
ArcticaProject/nx-libs#120 later on).
2016-06-20 15:51:55 +0200 Mike Gabriel (36e17bd)
* [render] Split out filter finding from filter setting. Required
code de-duplication in nxagent. (Will be fixed by
ArcticaProject/nx-libs#120 later on).
2016-06-20 15:50:05 +0200 Mike Gabriel (3f4e503)
* nx-libs.spec, debian/control: versioned B-R / B-D: pixman-1 (>=
0.13.2).
2016-06-20 15:43:35 +0200 Mike Gabriel (f9dbc64)
* Move matrix operations from X server to pixman 0.13.2, handle RandR
transform matrices in floating point.
2016-06-20 15:36:52 +0200 Mike Gabriel (6859815)
* Call pScreen->ConstrainCursorHarder from the position update path
2016-06-20 15:29:28 +0200 Mike Gabriel (a60c22f)
* dix/randr: add a hooks into screen to (a) replace scanout pixmap
and (b) for additional cursor confinement
2016-06-20 13:25:23 +0200 Mike Gabriel (19ebd77)
* include: add version_compare helper function
2016-06-20 13:19:08 +0200 Mike Gabriel (21c3d20)
* [render] Split out filter finding from filter setting.
2016-06-20 12:21:39 +0200 Mike Gabriel (e383881)
* debian/patches-pending-evaluation: Adapt
fix-icon-and-clipboard.patch to removal of the WindowTable
array.
2016-06-20 16:51:59 +0200 Mike Gabriel (8c7d7be)
* hw/nxagent/NXresource.c: remove caching of drawables and graphics
contexts. The security checks simply bypass the cached
values so they are unused. Required code de-duplication in
nxagent. (Will be fixed by ArcticaProject/nx-libs#120
later on).
2016-06-20 16:45:38 +0200 Mike Gabriel (e6f2f64)
* dix: remove caching of drawables and graphics contexts. The
security checks simply bypass the cached values so they