summaryrefslogtreecommitdiff
path: root/RELNOTES.PS
blob: 97e3513d099e45aef7215517e729fe223ca8a14d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
%!PS-Adobe-3.0
%%Creator: groff version 1.09
%%CreationDate: Thu Apr 21 18:01:23 1994
%%DocumentNeededResources: font Times-Bold
%%+ font Times-Italic
%%+ font Times-Roman
%%DocumentSuppliedResources: procset grops 1.09 0
%%Pages: 41
%%PageOrder: Ascend
%%Orientation: Portrait
%%EndComments
%%BeginProlog
%%BeginResource: procset grops 1.09 0
%!PS-Adobe-3.0 Resource-ProcSet
/setpacking where{
pop
currentpacking
true setpacking
}if
/grops 120 dict dup begin
/SC 32 def
/A/show load def
/B{0 SC 3 -1 roll widthshow}bind def
/C{0 exch ashow}bind def
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
/E{0 rmoveto show}bind def
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
/G{0 rmoveto 0 exch ashow}bind def
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/I{0 exch rmoveto show}bind def
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
/K{0 exch rmoveto 0 exch ashow}bind def
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/M{rmoveto show}bind def
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
/O{rmoveto 0 exch ashow}bind def
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/Q{moveto show}bind def
/R{moveto 0 SC 3 -1 roll widthshow}bind def
/S{moveto 0 exch ashow}bind def
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/SF{
findfont exch
[exch dup 0 exch 0 exch neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/MF{
findfont
[5 2 roll
0 3 1 roll
neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/level0 0 def
/RES 0 def
/PL 0 def
/LS 0 def
/PLG{
gsave newpath clippath pathbbox grestore
exch pop add exch pop
}bind def
/BP{
/level0 save def
1 setlinecap
1 setlinejoin
72 RES div dup scale
LS{
90 rotate
}{
0 PL translate
}ifelse
1 -1 scale
}bind def
/EP{
level0 restore
showpage
}bind def
/DA{
newpath arcn stroke
}bind def
/SN{
transform
.25 sub exch .25 sub exch
round .25 add exch round .25 add exch
itransform
}bind def
/DL{
SN
moveto
SN
lineto stroke
}bind def
/DC{
newpath 0 360 arc closepath
}bind def
/TM matrix def
/DE{
TM currentmatrix pop
translate scale newpath 0 0 .5 0 360 arc closepath
TM setmatrix
}bind def
/RC/rcurveto load def
/RL/rlineto load def
/ST/stroke load def
/MT/moveto load def
/CL/closepath load def
/FL{
currentgray exch setgray fill setgray
}bind def
/BL/fill load def
/LW/setlinewidth load def
/RE{
findfont
dup maxlength 1 index/FontName known not{1 add}if dict begin
{
1 index/FID ne{def}{pop pop}ifelse
}forall
/Encoding exch def
dup/FontName exch def
currentdict end definefont pop
}bind def
/DEFS 0 def
/EBEGIN{
moveto
DEFS begin
}bind def
/EEND/end load def
/CNT 0 def
/level1 0 def
/PBEGIN{
/level1 save def
translate
div 3 1 roll div exch scale
neg exch neg exch translate
0 setgray
0 setlinecap
1 setlinewidth
0 setlinejoin
10 setmiterlimit
[]0 setdash
/setstrokeadjust where{
pop
false setstrokeadjust
}if
/setoverprint where{
pop
false setoverprint
}if
newpath
/CNT countdictstack def
userdict begin
/showpage{}def
}bind def
/PEND{
clear
countdictstack CNT sub{end}repeat
level1 restore
}bind def
end def
/setpacking where{
pop
setpacking
}if
%%EndResource
%%EndProlog
%%BeginSetup
%%IncludeResource: font Times-Bold
%%IncludeResource: font Times-Italic
%%IncludeResource: font Times-Roman
grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
/scaron/zcaron/Ydieresis/trademark/quotesingle/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/Times-Roman@0 ENC0/Times-Roman RE/Times-Italic@0 ENC0/Times-Italic RE
/Times-Bold@0 ENC0/Times-Bold RE
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
BP
%%EndPageSetup
/F0 15/Times-Bold@0 SF 3.75(XW)176.137 123 S(indo)-4.02 E 3.75(wS)-.15 G
(ystem, V)-3.75 E(ersion 11, Release 6)-1.5 E/F1 14/Times-Bold@0 SF
(Release Notes)264.987 153 Q/F2 11/Times-Italic@0 SF(Stephen Gildea)
272.241 249 Q/F3 11/Times-Roman@0 SF 2.75(XC)274.677 279 S(onsortium)
-2.75 E(April 21, 1994)273.764 363 Q EP
%%Page: 2 2
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF(Cop)72 84 Q(yright \251 1994 X Consortium)-.11 E
/F1 9/Times-Roman@0 SF .464(Permission is hereby granted, free of char)
72 98.6 R .464(ge, to an)-.162 F 2.714(yp)-.135 G .464
(erson obtaining a cop)-2.714 F 2.714(yo)-.09 G 2.714(ft)-2.714 G .463
(his softw)-2.714 F .463(are and associated documentation \214les)-.09 F
.48(\(the \231Softw)72 109.6 R .48(are\232\), to deal in the Softw)-.09
F .48(are without restriction, including without limitation the rights \
to use, cop)-.09 F 1.65 -.585(y, m)-.09 H(odify).585 E 2.73(,m)-.585 G
(er)-2.73 E(ge,)-.162 E .346(publish, distrib)72 120.6 R .345
(ute, sublicense, and/or sell copies of the Softw)-.18 F .345
(are, and to permit persons to whom the Softw)-.09 F .345
(are is furnished to do)-.09 F(so, subject to the follo)72 131.6 Q
(wing conditions:)-.225 E(The abo)72 146.2 Q .27 -.135(ve c)-.135 H(op)
.135 E(yright notice and this permission notice shall be included in al\
l copies or substantial portions of the Softw)-.09 E(are.)-.09 E .106
(THE SOFTW)72 160.8 R .106(ARE IS PR)-1.08 F -.45(OV)-.36 G .106
(IDED \231).45 F .107(AS IS\232, WITHOUT W)-.72 F .107
(ARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING)-1.08 F -.09(BU)72
171.8 S 2.757(TN).09 G 1.226 -.36(OT L)-2.757 H .506(IMITED T).36 F
2.756(OT)-.162 G .506(HE W)-2.756 F .506(ARRANTIES OF MERCHANT)-1.08 F
(ABILITY)-.837 E 2.756(,F)-1.161 G .506(ITNESS FOR A P)-2.756 F(AR)-.828
E .506(TICULAR PURPOSE AND)-.54 F(NONINFRINGEMENT)72 182.8 Q 5.48(.I)
-.666 G 3.23(NN)-5.48 G 3.23(OE)-3.23 G .98(VENT SHALL THE X CONSOR)
-3.23 F .981(TIUM BE LIABLE FOR ANY CLAIM, D)-.54 F(AMA)-.36 E .981
(GES OR)-.36 F -.36(OT)72 193.8 S .175(HER LIABILITY).36 F 2.425(,W)
-1.161 G .175(HETHER IN AN A)-2.425 F .175(CTION OF CONTRA)-.36 F(CT)
-.36 E 2.425(,T)-.666 G(OR)-2.587 E 2.425(TO)-.54 G 2.424(RO)-2.425 G
(THER)-2.784 E .174(WISE, ARISING FR)-.495 F .174(OM, OUT OF OR)-.36 F
(IN CONNECTION WITH THE SOFTW)72 204.8 Q(ARE OR THE USE OR O)-1.08 E
(THER DEALINGS IN THE SOFTW)-.36 E(ARE.)-1.08 E .815(Except as containe\
d in this notice, the name of the X Consortium shall not be used in adv)
72 219.4 R .815(ertising or otherwise to promote the)-.135 F
(sale, use or other dealings in this Softw)72 230.4 Q
(are without prior written authorization from the X Consortium.)-.09 E
/F2 9/Times-Italic@0 SF 2.25(XW)72 245 S(indow System)-2.745 E F1
(is a trademark of X Consortium, Inc.)2.25 E EP
%%Page: 1 3
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Bold@0 SF 2.75(1. Easy)72 85 R(Build Instructions)2.75 E/F1
11/Times-Roman@0 SF
(This quick summary is no substitute for reading the full b)72 101.6 Q
(uild instructions later in this document.)-.22 E(Edit)72 118.2 Q F0
(xc/con\214g/site.def)2.912 E F1 .162(for local preferences.)2.912 F
.162(If you w)5.662 F .162(ant to b)-.11 F .162(uild with)-.22 F/F2 11
/Times-Italic@0 SF(gcc)2.911 E F1 .161(uncomment the)2.911 F F0(HasGcc2)
2.911 E F1(line.)2.911 E(If you w)72 131.2 Q(ant to install some)-.11 E
(where other than)-.275 E F0(/usr/X11R6)2.75 E F1 2.75(,c)C(hange)-2.75
E F0(Pr)2.75 E(ojectRoot)-.198 E F1 5.5(.\()C(Do)-5.5 E F2(not)2.75 E F1
(use)2.75 E F0(DESTDIR)2.75 E F1(.\))A .886(If an)72 147.8 R 3.636<798c>
-.165 G -.165(xe)-3.636 G 3.636(sh).165 G -2.475 -.22(av e)-3.636 H .886
(been released by the X Consortium, stop here and follo)3.856 F 3.636
(wt)-.275 G .886(he instructions at the top of)-3.636 F(each patch, b)72
160.8 Q(ut don')-.22 E 2.75(td)-.198 G 2.75(oa)-2.75 G .33 -.165(ny o)
-2.75 H 2.75(ft).165 G(he)-2.75 E F2(mak)2.75 E(e)-.11 E F1
(commands suggested in the patches.)2.75 E(Then continue here.)5.5 E
.206(Check the appropriate)72 177.4 R F0(xc/con\214g/)2.956 E F2(vendor)
A F0(.cf)A F1 .206(\214le to mak)2.956 F 2.955(es)-.11 G .205(ure that)
-2.955 F F0(OSMajorV)2.955 E(ersion)-1.1 E F1(and)2.955 E F0(OSMinorV)
2.955 E(ersion)-1.1 E F1
(are set correctly for your system \(change them if necessary\).)72
190.4 Q .415(See if there is a)72 207 R F0(BootstrapCFlags)3.166 E F1
.416(mentioned in the comments in the)3.166 F F2(vendor)3.166 E F0(.cf)A
F1 3.166(\214le. If)3.166 F .416(there isn')3.166 F 3.166(to)-.198 G
(ne,)-3.166 E F2(cd)3.166 E F1(to the)72 220 Q F0(xc)2.75 E F1
(directory and type:)2.75 E(mak)108 239 Q 2.75(eW)-.11 G(orld >& w)-3.63
E(orld.log)-.11 E(If there is a)72 261.6 Q F0(BootstrapCFlags)2.75 E F1
2.75(,t)C(ak)-2.75 E 2.75(ei)-.11 G(ts v)-2.75 E(alue and type:)-.275 E
(mak)108 280.6 Q 2.75(eW)-.11 G(orld BOO)-3.63 E(TSTRAPCFLA)-.44 E(GS=")
-.44 E F2(value)A F1 2.75(">)C 2.75(&w)-2.75 G(orld.log)-2.86 E
(Do not call the output \214le \231mak)72 303.2 Q 2.75(e.log\232. If)
-.11 F(the b)2.75 E
(uild is successful, you can install most of it with:)-.22 E(mak)108
322.2 Q 2.75(ei)-.11 G(nstall >& install.log)-2.75 E -1.21(Yo)72 344.8 S
2.75(uc)1.21 G(an install manual pages with:)-2.75 E(mak)108 363.8 Q
2.75(ei)-.11 G(nstall.man >& man.log)-2.75 E(While the system is b)72
386.4 Q(uilding \(or if things f)-.22 E
(ail\), read the rest of these Release Notes.)-.11 E F0 2.75(2. What)72
425.4 R(Is Release 6)2.75 E F1(This is the 6th release of X W)72 455 Q
(indo)-.44 E 2.75(wS)-.275 G(ystem softw)-2.75 E
(are from the X Consortium.)-.11 E .47
(The X Consortium is an independent, not-for)72 471.6 R .469
(-pro\214t corporation, the successor to the MIT X Consortium,)-.22 F
1.574(which w)72 484.6 R 1.574
(as part of the MIT Laboratory for Computer Science.)-.11 F 1.574
(See the)7.074 F F2(XConsortium)4.324 E F1 1.574(manual page for)4.324 F
(details.)72 497.6 Q F0 2.75(2.1. Ov)72 536.6 R(er)-.11 E
(view of the X Consortium Release)-.11 E F1 .853(There are tw)72 566.2 R
3.603(op)-.11 G .853(arts to Release 6: X Consortium softw)-3.603 F .853
(are and documentation, and user)-.11 F(-contrib)-.22 E .852(uted soft-)
-.22 F -.11(wa)72 579.2 S(re and documentation.).11 E
(The X Consortium part contains the follo)5.5 E(wing:)-.275 E F0 2.75
(XC)72 595.8 S(onsortium Standards)-2.75 E F1 1.049
(The X Consortium produces standards:)97 608.8 R 1.049
(documents which de\214ne netw)6.549 F 1.049(ork protocols, programming)
-.11 F(interf)97 621.8 Q 1.15(aces, and other aspects of the X en)-.11 F
3.9(vironment. See)-.44 F(the)3.9 E F2(XStandar)3.9 E(ds)-.407 E F1 1.15
(manual page for a list of)3.9 F(standards.)97 634.8 Q F0
(Sample Implementations)72 651.4 Q F1 -.165(Fo)97 664.4 S 4.255(rm).165
G 1.506(ost of our standards, we pro)-4.255 F(vide)-.165 E F2(sample)
4.256 E F1 1.506(implementations to demonstrate proof of concept.)4.256
F(These are not)97 677.4 Q F2 -.407(re)2.75 G(fer).407 E(ence)-.407 E F1
(implementations; the written speci\214cations de\214ne the standards.)
2.75 E F0 -.275(Fo)72 694 S(nts).275 E F1 2.878(Ac)97 707 S .128
(ollection of bitmap and outline fonts are included in the distrib)
-2.878 F .127(ution, contrib)-.22 F .127(uted by v)-.22 F .127
(arious indi-)-.275 F(viduals and companies.)97 720 Q(1)303.25 769 Q EP
%%Page: 2 4
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF(Utility Libraries)72 85 Q F0 2.987(An)97
98 S .237(umber of libraries, such as the)-2.987 F/F2 11/Times-Italic@0
SF .237(Athena W)2.987 F(idg)-.605 E .237(et Set)-.11 F F0 2.987(,a)C
.237(re included.)-2.987 F .238(These are not standards, b)5.737 F .238
(ut are)-.22 F(used in b)97 111 Q
(uilding X Consortium applications and may be useful in b)-.22 E
(uilding other applications.)-.22 E F1(Sample Pr)72 127.6 Q(ograms)-.198
E F0 2.38 -.88(We a)97 140.6 T .62(lso pro).88 F .619
(vide a number of application programs.)-.165 F 3.369(Af)6.119 G 1.169
-.275(ew o)-3.369 H 3.369(ft).275 G .619(hese programs, such as)-3.369 F
F2(xdm)3.369 E F0 3.369(,s)C(hould)-3.369 E .214
(be considered essential in almost all en)97 153.6 R 2.964
(vironments. The)-.44 F .214
(rest of the applications carry no special sta-)2.964 F .898(tus; the)97
166.6 R 3.648(ya)-.165 G .898(re simply programs that ha)-3.648 F 1.228
-.165(ve b)-.22 H .898(een de).165 F -.165(ve)-.275 G .898
(loped and/or maintained by X Consortium staf).165 F(f.)-.275 E(In some\
 cases, you will \214nd better substitutes for these programs in the us\
er)97 179.6 Q(-contrib)-.22 E(uted part.)-.22 E .025(The user)72 196.2 R
(-contrib)-.22 E .025(uted part contains whate)-.22 F -.165(ve)-.275 G
2.775(rp).165 G .025(eople contrib)-2.775 F 2.775(ute. Y)-.22 F(ou')
-1.21 E .026(ll \214nd a v)-.11 F .026(ariety of softw)-.275 F .026
(are and docu-)-.11 F(mentation here: programs, demos, g)72 209.2 Q
(ames, libraries, X serv)-.055 E(er e)-.165 E(xtensions, etc.)-.165 E F1
2.75(2.2. Supported)72 248.2 R(Systems)2.75 E F0 1.76 -.88(We b)72 277.8
T(uilt and tested this release on the follo).66 E(wing systems:)-.275 E
(A/UX 3.0.1)108 309.8 Q(AIX 3.2.5)108 322.8 Q(BSD/386 1.0)108 335.8 Q
(HP-UX 9.1)108 348.8 Q(IRIX 5.2)108 361.8 Q(Mach 2.5 V)108 374.8 Q
(ers 2.00.1)-1.221 E(Microsoft W)108 387.8 Q(indo)-.44 E(ws NT 3.1)-.275
E(NCR Unix System V Release 4/MP-RAS)108 400.8 Q(NEWS-OS 6.0)108 413.8 Q
(OSF/1 1.3)108 426.8 Q(OSF/1 1.0)108 439.8 Q(SunOS 4.1.3)108 452.8 Q
(SunOS 5.3)108 465.8 Q(UNICOS 8.0)108 478.8 Q
(UNIX System V/386 Release 4.2 V)108 491.8 Q(ersion 1)-1.221 E
(Unix System V/860 Release 4.0 V)108 504.8 Q(ersion 3)-1.221 E
(Ultrix-32 4.3)108 517.8 Q .621(On NT)72 549.8 R 3.371(,m)-.814 G .621
(ost of the release b)-3.371 F .621(uilds with the Microsoft SDK.)-.22 F
.621(Missing are)6.121 F F2 -1.947 -.605(Fr e)3.371 H(sco).605 E F0(,)A
F2(twm)3.371 E F0(,)A F2(xterm)3.37 E F0(,)A F2(xdm)3.37 E F0(,)A F2
(xcon-)3.37 E(sole)72 562.8 Q F0(,)A F2(xinit)2.922 E F0(,)A F2(xhost)
2.922 E F0(,)A F2(xsm)2.922 E F0 2.922(,a)C .173(nd the X serv)-2.922 F
(er)-.165 E 5.673(.X)-.605 G .173(t, Xa)-5.673 F 1.603 -.715(w, a)-.165
H .173(nd Xmu libraries are not b).715 F .173(uilt as DLLs.)-.22 F(Imak)
5.673 E 2.923(ew)-.11 G(orks,)-3.033 E(albeit with some restrictions.)72
575.8 Q F1 2.75(2.3. The)72 614.8 R(XC T)2.75 E -.198(re)-.814 G(e).198
E F0 1.251(The \214rst thing you may notice is that you can')72 644.4 R
4.001<748c>-.198 G 1.251(nd an)-4.001 F 4(ything. The)-.165 F 1.25
(source tree has under)4 F 1.25(gone a major)-.198 F(reor)72 657.4 Q
-.055(ga)-.198 G(nization since R5.).055 E(The top-le)5.5 E -.165(ve)
-.275 G 2.75(ld).165 G(irectory has been renamed from)-2.75 E F1(mit/)
2.75 E F0(to)2.75 E F1(xc/)2.75 E F0(.)A(The general layout under)72
683.4 Q F1(xc/)2.75 E F0(is no)2.75 E 2.75(wa)-.275 G 2.75(sf)-2.75 G
(ollo)-2.75 E(ws:)-.275 E(2)303.25 769 Q EP
%%Page: 3 5
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E 110.692(con\214g/ con\214g)72 85 R(\214les,)2.75 E/F1 11
/Times-Italic@0 SF(imak)2.75 E(e)-.11 E F0(,)A F1(mak)2.75 E(edepend)
-.11 E F0 2.75(,b)C(uild utilities)-2.97 E 122.308(doc/ all)72 98 R
(documentation other than per)2.75 E(-program manual pages)-.22 E
116.192(fonts/ BDF)72 111 R 2.75(,S)-.88 G(peedo, T)-2.75 E(ype1 fonts)
-.88 E 105.808(include/ include)72 124 R
(\214les shared by multiple directories)2.75 E 126.576(lib/ all)72 137 R
(libraries)2.75 E 125.355(nls/ localization)72 150 R(\214les)2.75 E
96.645(programs/ all)72 163 R(programs, including the X serv)2.75 E
(er and)-.165 E F1 -.407(rg)2.75 G(b).407 E F0 122.913(test/ X)72 176 R
-.77(Te)2.75 G(st Suite and other test suites).77 E(util/)72 189 Q F1
(patc)126.268 E(h)-.165 E F0(,)A F1(compr)2.75 E(ess)-.407 E F0 2.75(,o)
C(ther utilities)-2.75 E -.11(wo)72 202 S 68.65(rkInProgress/ snapshots)
.11 F(of w)2.75 E(ork in progress)-.11 E -.22(bu)72 215 S 95.039
(g-report b).22 F(ug reporting template)-.22 E(re)72 228 Q 107.81
(gistry X)-.165 F(Re)2.75 E(gistry)-.165 E/F2 11/Times-Bold@0 SF 2.75
(2.3.1. con\214g/)72 273 R F0(The)72 302.6 Q F2(xc/con\214g)2.75 E F0
(directory no)2.75 E 2.75(wh)-.275 G(as subdirectories:)-2.75 E 99.087
(con\214g/cf/ all)72 321.6 R(the con\214g \214les: Imak)2.75 E
(e.tmpl, Project.tmpl, etc.)-.11 E(con\214g/imak)72 334.6 Q 80.86
(e/ the)-.11 F F1(imak)2.75 E(e)-.11 E F0(program)2.75 E(con\214g/mak)72
347.6 Q 52.15(edepend/ the)-.11 F F1(mak)2.75 E(edepend)-.11 E F0
(program)2.75 E 92.96(con\214g/util/ other)72 360.6 R
(con\214guration utility programs and scripts)2.75 E F2 2.75
(2.3.2. lib/)72 405.6 R F0(Xlib sources are in)72 435.2 Q F2(xc/lib/X11)
2.75 E F0 2.75(;w)C(e')-2.75 E .33 -.165(ve r)-.55 H
(enamed directories to match the lib).165 E F1(name)A F0(.a names.)A F2
2.75(2.3.3. doc/)72 474.2 R F0 95.424(doc/specs/ X)72 509.8 R
(Consortium standards and other speci\214cations)2.75 E 100.308
(doc/man/ manual)72 522.8 R
(pages for libraries and general manual pages)2.75 E 104.576
(doc/util/ macro)72 535.8 R(packages and utilities for formatting)2.75 E
(doc/hardcop)72 548.8 Q 78.429(y/ PostScript)-.11 F -.165(ve)2.75 G
(rsions of the documentation).165 E(The)72 571.4 Q F2(xc/doc/hardcopy)
2.83 E F0 .08(directory contains compressed, pre-formatted PostScript v)
2.83 F .08(ersions of documentation)-.165 F(else)72 584.4 Q .903
(where in the)-.275 F F2(doc)3.653 E F0 .903
(tree and the program manual pages, which are in each program')3.653 F
3.653(ss)-.605 G .903(ource directory)-3.653 F(.)-.715 E
(These \214les can be uncompressed with the)72 597.4 Q F1(compr)2.75 E
(ess)-.407 E F0(program, which is included in)2.75 E F2(xc/util/compr)
2.75 E(ess)-.198 E F0(.)A F2 2.75(2.3.4. extensions)72 636.4 R F0 1.978
(There is no longer a top-le)72 666 R -.165(ve)-.275 G 4.729(le).165 G
1.979(xtensions directory)-4.894 F 7.479(.E)-.715 G 1.979
(xtension libraries are no)-7.479 F 4.729(wu)-.275 G(nder)-4.729 E F2
(xc/lib/)4.729 E F0 4.729(,s)C(erv)-4.729 E(er)-.165 E -.165(ex)72 679 S
7.132(tension code is under).165 F F2(xc/pr)9.882 E(ograms/Xser)-.198 E
-.11(ve)-.11 G(r/Xext/).11 E F0 9.882(,a)C 7.132(nd e)-9.882 F 7.132
(xtension header \214les are under)-.165 F F2(xc/include/extensions/)72
692 Q F0(.)A(3)303.25 769 Q EP
%%Page: 4 6
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF 2.75(2.4. Extensions)72 85 R(supported)
2.75 E F0 3.418(The core distrib)72 114.6 R 3.418
(ution includes the follo)-.22 F 3.418(wing e)-.275 F 3.418
(xtensions: BIG-REQ)-.165 F 3.418(UESTS, LBX, MIT)-.11 F 3.419
(-SHM, MIT)-1.012 F(-)-1.012 E(SUNDR)72 127.6 Q -1.221(Y-)-.715 G(NONST)
1.221 E(AND)-1.023 E 1.167(ARD, Multi-Buf)-.44 F 1.167
(fering, RECORD, SHAPE, SYNC, X3D-PEX, XC-MISC, XIE,)-.275 F
(XInputExtension, XKEYBO)72 140.6 Q(ARD, XTEST)-.385 E 2.75(,a)-.814 G
(nd XT)-2.75 E(estExtension1.)-.77 E F1 2.75(2.5. Implementation)72
179.6 R -.11(Pa)2.75 G(rameters).11 E F0 1.653
(Some of the speci\214cations de\214ne some beha)72 209.2 R 1.654
(vior as implementation-dependent.)-.22 F 1.654(Implementations of X)
7.154 F(Consortium standards need to document ho)72 222.2 Q 2.75(wt)
-.275 G(hose parameters are implemented; this section does so.)-2.75 E
(XFILESEARCHP)72 238.8 Q -1.221(AT)-1.012 G 2.75(Hd)1.221 G(ef)-2.75 E
(ault)-.11 E 3.085(This def)97 251.8 R 3.085(ault can be set at b)-.11 F
3.085(uild time by setting the)-.22 F/F2 11/Times-Italic@0 SF(imak)5.835
E(e)-.11 E F0 -.275(va)5.834 G 3.084(riables XFileSearchP).275 F(athDef)
-.165 E(ault,)-.11 E(XAppLoadDir)97 264.8 Q 4.481(,X)-.44 G(FileSearchP)
-4.481 E 1.731(athBase, and ProjectRoot in)-.165 F F1(site.def)4.481 E
F0 7.232(.S)C(ee)-7.232 E F1(xc/con\214g/cf/Pr)4.482 E(oject.tmpl)-.198
E F0(for ho)97 277.8 Q 2.75(wt)-.275 G(he)-2.75 E 2.75(ya)-.165 G
(re used.)-2.75 E(By def)97 294.4 Q(ault, XFILESEARCHP)-.11 E -1.221(AT)
-1.012 G 2.75(Hh)1.221 G(as these components:)-2.75 E
(/usr/X11R6/lib/X11/%L/%T/%N%C%S)133 313.4 Q
(/usr/X11R6/lib/X11/%l/%T/%N%C%S)133 326.4 Q
(/usr/X11R6/lib/X11/%T/%N%C%S)133 339.4 Q(/usr/X11R6/lib/X11/%L/%T/%N%S)
133 352.4 Q(/usr/X11R6/lib/X11/%l/%T/%N%S)133 365.4 Q
(/usr/X11R6/lib/X11/%T/%N%S)133 378.4 Q(XUSERFILESEARCHP)72 401 Q -1.221
(AT)-1.012 G 2.75(Hd)1.221 G(ef)-2.75 E(ault)-.11 E .21(If the en)97 414
R .21(vironment v)-.44 F .21(ariable XAPPLRESDIR is de\214ned, the def)
-.275 F .209(ault v)-.11 F .209(alue of XUSERFILESEARCH-)-.275 F -1.012
(PA)97 427 S(TH has the follo)-.209 E(wing components:)-.275 E
($XAPPLRESDIR/%L/%N%C)133 446 Q($XAPPLRESDIR/%l/%N%C)133 459 Q
($XAPPLRESDIR/%N%C)133 472 Q($HOME/%N%C)133 485 Q($XAPPLRESDIR/%L/%N)133
498 Q($XAPPLRESDIR/%l/%N)133 511 Q($XAPPLRESDIR/%N)133 524 Q($HOME/%N)
133 537 Q(Otherwise it has these components:)97 556 Q($HOME/%L/%N%C)133
575 Q($HOME/%l/%N%C)133 588 Q($HOME/%N%C)133 601 Q($HOME/%L/%N)133 614 Q
($HOME/%l/%N)133 627 Q($HOME/%N)133 640 Q(XKEYSYMDB def)72 662.6 Q(ault)
-.11 E(Def)97 675.6 Q(aults to)-.11 E F1(/usr/X11R6/lib/X11/XK)2.75 E
(eysymDB)-.275 E F0 2.75(,a)C(ssuming)-2.75 E F1(Pr)2.75 E(ojectRoot)
-.198 E F0(is set to)2.75 E F1(/usr/X11R6)2.75 E F0(.)A(XCMSDB def)72
692.2 Q(ault)-.11 E(Def)97 705.2 Q(aults to)-.11 E F1
(/usr/X11R6/lib/X11/Xcms.txt)2.75 E F0 2.75(,a)C(ssuming)-2.75 E F1(Pr)
2.75 E(ojectRoot)-.198 E F0(is set to)2.75 E F1(/usr/X11R6)2.75 E F0(.)A
(4)303.25 769 Q EP
%%Page: 5 7
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(XLOCALEDIR def)72 85 Q(ault)-.11 E(Def)97 98 Q(aults to the directory)
-.11 E/F1 11/Times-Bold@0 SF(/usr/X11R6/lib/X11/locale)2.75 E F0 2.75
(,a)C(ssuming)-2.75 E F1(Pr)2.75 E(ojectRoot)-.198 E F0(is set to)2.75 E
F1(/usr/X11R6)2.75 E F0(.)A(XErrorDB location)72 114.6 Q 1.979
(The Xlib error database \214le is)97 127.6 R F1
(/usr/X11R6/lib/X11/XErr)4.73 E(orDB)-.198 E F0 4.73(,a)C(ssuming)-4.73
E F1(Pr)4.73 E(ojectRoot)-.198 E F0 1.98(is set to)4.73 F F1(/usr/X11R6)
97 140.6 Q F0(.)A(XtErrorDB location)72 157.2 Q 2.425
(The Xt error database \214le is)97 170.2 R F1(/usr/X11R6/lib/X11/XtErr)
5.175 E(orDB)-.198 E F0 5.175(,a)C(ssuming)-5.175 E F1(Pr)5.175 E
(ojectRoot)-.198 E F0 2.424(is set to)5.174 F F1(/usr/X11R6)97 183.2 Q
F0(.)A(Supported Locales)72 199.8 Q -.165(Fo)97 212.8 S 4.527(ral).165 G
1.777(ist of locales supported, see the \214les)-4.527 F F1(locale.dir)
4.527 E F0(and)4.527 E F1(locale.alias)4.527 E F0 1.777(in the)4.527 F
F1(xc/nls/X11/locale/)4.528 E F0(directory)97 225.8 Q(.)-.715 E
(Input Methods supported)72 242.4 Q 1.301(The core distrib)97 255.4 R
1.301(ution does not include an)-.22 F 4.051(yi)-.165 G 1.301
(nput methods serv)-4.051 F 4.051(ers. Ho)-.165 F(we)-.275 E -.165(ve)
-.275 G 2.181 -.44(r, i).165 H 4.051(nL).44 G 1.301(atin-1 locales, a)
-4.051 F(def)97 268.4 Q 12.2
(ault method that supports European compose processing is enabled.)-.11
F(See)17.7 E F1(xc/nls/X11/locale/Compose/iso8859-1)97 281.4 Q F0 2.517
(for the supported compositions.)5.268 F 2.517(There are input method)
8.017 F(serv)97 294.4 Q(ers in contrib)-.165 E(.)-.44 E F1 2.75
(3. Building)72 333.4 R(X)2.75 E F0 .233(This section gi)72 363 R -.165
(ve)-.275 G 2.983(sd).165 G .233(etailed instructions for b)-2.983 F
.234(uilding Release 6: getting it of)-.22 F 2.984(ft)-.275 G .234
(he distrib)-2.984 F .234(ution medium, con-)-.22 F
(\214guring, compiling, installing, running, and updating.)72 376 Q F1
2.75(3.1. Unpacking)72 415 R(the Distrib)2.75 E(ution)-.22 E F0 .023
(The distrib)72 444.6 R .023(ution normally comes as multiple tar \214l\
es, either on tape or across a netw)-.22 F .023(ork, or as a CD-R)-.11 F
(OM.)-.44 E
(If you are unpacking tar \214les, you will need about 150 me)72 461.2 Q
-.055(ga)-.165 G(bytes to hold the).055 E F1(xc/)2.75 E F0(part.)2.75 E
F1 2.75(3.1.1. Unpacking)72 500.2 R 2.75(aC)2.75 G(ompr)-2.75 E
(essed FTP Distrib)-.198 E(ution)-.22 E F0 .64(If you ha)72 529.8 R .97
-.165(ve o)-.22 H .64(btained compressed tar \214les o).165 F -.165(ve)
-.165 G 3.39(rt).165 G .64(he netw)-3.39 F .64
(ork, create a directory to hold the sources and)-.11 F/F2 11
/Times-Italic@0 SF(cd)3.391 E F0(into it:)72 542.8 Q(mkdir)108 561.8 Q
F2(sour)2.75 E(cedir)-.407 E F0(cd)108 574.8 Q F2(sour)2.75 E(cedir)
-.407 E F0(Then for each tar \214le)72 593.8 Q F1(xc\255*.tar)2.75 E(.Z)
-1.1 E F0 2.75(,e)C -.165(xe)-2.915 G(cute this:).165 E(zcat)108 612.8 Q
F2(ftp-dir)5.5 E F0(/xc\255)A F2(N)A F0(.tar)A(.Z | tar xpf)-.605 E<ad>
5.5 E -.165(Fo)72 635.4 S 2.75(re).165 G(ach tar \214le)-2.75 E F1
(contrib\255*.tar)2.75 E(.Z)-1.1 E F0 2.75(,e)C -.165(xe)-2.915 G
(cute this:).165 E(zcat)108 654.4 Q F2(ftp-dir)5.5 E F0(/contrib\255)A
F2(N)A F0(.tar)A(.Z | tar xpf)-.605 E<ad>5.5 E F1 2.75(3.1.2. Unpacking)
72 699.4 R 2.75(ag)2.75 G(zipped FTP Distrib)-2.75 E(ution)-.22 E F0
.462(If you ha)72 729 R .791 -.165(ve o)-.22 H .461
(btained gzipped tar \214les o).165 F -.165(ve)-.165 G 3.211(rt).165 G
.461(he netw)-3.211 F .461
(ork, create a directory to hold the sources and)-.11 F F2(cd)3.211 E F0
(into)3.211 E(5)303.25 769 Q EP
%%Page: 6 8
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E(it:)72 85 Q(mkdir)108 104 Q/F1 11/Times-Italic@0 SF(sour)2.75 E
(cedir)-.407 E F0(cd)108 117 Q F1(sour)2.75 E(cedir)-.407 E F0
(Then for each tar \214le)72 136 Q/F2 11/Times-Bold@0 SF(xc\255*.tar)
2.75 E(.gz)-1.1 E F0 2.75(,e)C -.165(xe)-2.915 G(cute this:).165 E 2.75
(gunzip \255c)108 155 R F1(ftp-dir)5.5 E F0(/xc\255)A F1(N)A F0(.tar)A
(.gz | tar xpf)-.605 E<ad>5.5 E -.165(Fo)72 177.6 S 2.75(re).165 G
(ach tar \214le)-2.75 E F2(contrib\255*.tar)2.75 E(.gz)-1.1 E F0 2.75
(,e)C -.165(xe)-2.915 G(cute this:).165 E 2.75(gunzip \255c)108 196.6 R
F1(ftp-dir)5.5 E F0(/contrib\255)A F1(N)A F0(.tar)A(.gz | tar xpf)-.605
E<ad>5.5 E F2 2.75(3.1.3. Unpacking)72 241.6 R 2.75(aS)2.75 G
(plit Compr)-2.75 E(essed FTP Distrib)-.198 E(ution)-.22 E F0 2.276
(If you ha)72 271.2 R 2.606 -.165(ve o)-.22 H 2.276
(btained compressed and split tar \214les o).165 F -.165(ve)-.165 G
5.026(rt).165 G 2.276(he netw)-5.026 F 2.276
(ork, create a directory to hold the)-.11 F(sources:)72 284.2 Q(mkdir)
108 303.2 Q F1(sour)2.75 E(cedir)-.407 E F0(Then for each directory)72
322.2 Q F2(xc\255*)2.75 E F0(:)A(cd)108 341.2 Q F1(ftp-dir)2.75 E F0
(/xc\255)A F1(N)A F0(cat xc\255)108 354.2 Q F1(N)A F0
(.?? | uncompress | \(cd)A F1(sour)2.75 E(cedir)-.407 E F0 2.75(;t)1.833
G(ar xpf)-2.75 E 1.833<ad29>5.5 G -.165(Fo)72 376.8 S 2.75(re).165 G
(ach directory)-2.75 E F2(contrib\255*)2.75 E F0 2.75(,e)C -.165(xe)
-2.915 G(cute this:).165 E(cd)108 395.8 Q F1(ftp-dir)2.75 E F0
(/contrib\255)A F1(N)A F0(cat contrib\255)108 408.8 Q F1(N)A F0
(.?? | uncompress | \(cd)A F1(sour)2.75 E(cedir)-.407 E F0 2.75(;t)1.833
G(ar xpf)-2.75 E 1.833<ad29>5.5 G F2 2.75(3.1.4. Unpacking)72 453.8 R
(the T)2.75 E(ape Distrib)-1.012 E(ution)-.22 E F0(If you ha)72 483.4 Q
.33 -.165(ve o)-.22 H
(btained a tape, create a directory to hold the sources and untar e).165
E -.165(ve)-.275 G(rything into that directory:).165 E(mkdir)108 502.4 Q
F1(sour)2.75 E(cedir)-.407 E F0(cd)108 515.4 Q F1(sour)2.75 E(cedir)
-.407 E F0(tar xpf)108 528.4 Q F1(tape-de)2.75 E(vice)-.165 E F2 2.75
(3.1.5. Using)72 573.4 R(the CD-R)2.75 E(OM)-.33 E F0 .435(If you ha)72
603 R .765 -.165(ve o)-.22 H .435(btained a CD-R).165 F .435
(OM, you don')-.44 F 3.185(th)-.198 G -2.475 -.22(av e)-3.185 H .434
(to do an)3.405 F .434(ything to unpack it.)-.165 F(Ho)5.934 E(we)-.275
E -.165(ve)-.275 G 1.314 -.44(r, y).165 H .434(ou will ha).44 F .764
-.165(ve t)-.22 H(o).165 E(create a symbolic link tree to b)72 616 Q
(uild X.)-.22 E(See the ne)5.5 E(xt section.)-.165 E F2 2.75(3.2. A)72
655 R(pply P)-.275 E(atches)-.11 E F0 .473(If there are \214x)72 684.6 R
.474(es released, apply them no)-.165 F 4.654 -.715(w. F)-.275 H(ollo)
.55 E 3.224(wt)-.275 G .474(he instructions at the top of each patch, b)
-3.224 F .474(ut don')-.22 F 3.224(td)-.198 G(o)-3.224 E(an)72 697.6 Q
2.75(ym)-.165 G(ak)-2.75 E 2.75(ec)-.11 G 2.75(ommands. Then)-2.75 F
(continue here.)2.75 E(6)303.25 769 Q EP
%%Page: 7 9
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(3.3. Symbolic)72 85 R(Link T)2.75 E -.198
(re)-.814 G(es).198 E F0 .964(If you e)72 114.6 R .963(xpect to b)-.165
F .963(uild the distrib)-.22 F .963
(ution on more than one machine using a shared source tree, or you are)
-.22 F -.22(bu)72 127.6 S .419(ilding from CD-R).22 F .419
(OM, or you just w)-.44 F .419(ant to k)-.11 F .42
(eep the source tree pure, you may w)-.11 F .42(ant to use the program)
-.11 F F1(xc/con\214g/util/lndir)72 140.6 Q(.c)-1.1 E F0 .976
(to create a symbolic link tree on each b)3.726 F .976(uild machine.)
-.22 F .976(The links may use an addi-)6.476 F(tional 10 me)72 153.6 Q
-.055(ga)-.165 G(bytes, b).055 E(ut it is cheaper than ha)-.22 E
(ving multiple copies of the source tree.)-.22 E .617(It may be trick)72
170.2 R 3.367(yt)-.165 G 3.367(oc)-3.367 G(ompile)-3.367 E/F2 11
/Times-Italic@0 SF(lndir)3.367 E F0 .617(before the distrib)3.367 F .617
(ution is b)-.22 F 3.367(uilt. If)-.22 F .618(you ha)3.367 F .948 -.165
(ve a c)-.22 H(op).165 E 3.368(yf)-.11 G .618(rom Release 5, use)-3.368
F(that.)72 183.2 Q F1(Mak)10.797 E(e\214le.ini)-.11 E F0 5.297
(can be used for b)8.047 F(uilding)-.22 E F2(lndir)8.047 E F0 5.296
(the \214rst time.)8.046 F -1.21(Yo)10.796 G 8.046(um)1.21 G 5.296
(ay ha)-8.046 F 5.626 -.165(ve t)-.22 H 8.046(os).165 G(pecify)-8.046 E
F1(OSFLA)72 196.2 Q(GS=\255D)-.605 E F2(something)A F0 .668
(to get it to compile.)3.418 F .669(What you w)6.169 F .669
(ould pass as)-.11 F F1(BOO)3.419 E(TSTRAPCFLA)-.44 E(GS)-.605 E F0
(might)3.419 E -.11(wo)72 209.2 S 2.75(rk. The).11 F
(command line looks something lik)2.75 E 2.75(et)-.11 G(his:)-2.75 E
(mak)108 228.2 Q 5.5<65ad>-.11 G 5.5(fM)-5.5 G(ak)-5.5 E 2.75
(e\214le.ini OSFLA)-.11 F(GS=\255D)-.44 E F2<8d61>A(g)-.11 E F0 1.76
-.88(To u)72 250.8 T
(se a symbolic link tree, create a directory for the b).88 E(uild,)-.22
E F2(cd)2.75 E F0(to it, and type this:)2.75 E(lndir)108 269.8 Q F2
(sour)2.75 E(cedir)-.407 E F0(where)72 292.4 Q F2(sour)3.451 E(cedir)
-.407 E F0 .701
(is the pathname of the directory where you stored the sources.)3.451 F
.7(All of the b)6.2 F .7(uild instruc-)-.22 F .881(tions gi)72 305.4 R
-.165(ve)-.275 G 3.631(nb).165 G(elo)-3.631 E 3.631(ws)-.275 G .881
(hould then be done in the b)-3.631 F .882
(uild directory on each machine, rather than in the source)-.22 F
(directory)72 318.4 Q(.)-.715 E F1(xc/con\214g/util/mkshado)72 335 Q(w/)
-.11 E F0(contains)2.75 E F2(mkshadow)2.75 E F0 2.75(,a)C 2.75(na)-2.75
G(lternati)-2.75 E .33 -.165(ve p)-.275 H(rogram to).165 E F2(lndir)2.75
E F0(.)A F1 2.75(3.4. Con\214guration)72 374 R -.11(Pa)2.75 G(rameters)
.11 E F0 .907
(Build information for each source directory is in \214les called)72
403.6 R F1(Imak)3.657 E(e\214le)-.11 E F0 6.407(.A)C(n)-6.407 E F1(Imak)
3.656 E(e\214le)-.11 E F0 3.656(,a)C .906(long with local)-3.656 F
(con\214guration information in)72 416.6 Q F1(xc/con\214g/cf/)2.75 E F0
2.75(,i)C 2.75(su)-2.75 G(sed by the program)-2.75 E F2(imak)2.75 E(e)
-.11 E F0(to generate a)2.75 E F1(Mak)2.75 E(e\214le)-.11 E F0(.)A .441
(Most of the con\214guration w)72 433.2 R .441(ork prior to b)-.11 F
.442(uilding the release is to set parameters so that)-.22 F F2(imak)
3.192 E(e)-.11 E F0 .442(will gener)3.192 F(-)-.22 E .034
(ate correct \214les.)72 446.2 R .034
(Most of those parameters are set in)5.534 F F1(xc/con\214g/cf/site.def)
2.784 E F0 5.534(.Y)C .034(ou will also need to check the)-6.744 F
(appropriate)72 459.2 Q F1(xc/con\214g/cf/)7.509 E F2(vendor)A F1(.cf)A
F0 4.76(\214le to mak)7.51 F 7.51(es)-.11 G 4.76(ure that OSMajorV)-7.51
F 4.76(ersion, OSMinorV)-1.221 F 4.76(ersion, and)-1.221 F(OsT)72 472.2
Q(een)-.77 E(yV)-.165 E
(ersion are set correctly for your system \(change them if necessary\).)
-1.221 E(The)72 488.8 Q F1(site.def)3.445 E F0 .694(\214le has tw)3.444
F 3.444(op)-.11 G .694(arts, one protected with \231#ifdef BeforeV)
-3.444 F .694(endorCF\232 and one with \231#ifdef After)-1.221 F(-)-.22
E -1.221(Ve)72 501.8 S 3.486(ndorCF\232. The)1.221 F .736
(\214le is actually processed twice, once before the)3.486 F F1(.cf)
3.486 E F0 .736(\214le and once after)3.486 F 6.236(.A)-.605 G .736
(bout the only)-6.236 F 1.452
(thing you need to set in the \231before\232 section is)72 514.8 R F1
(HasGcc2)4.202 E F0 4.202(;j)C 1.452(ust about e)-4.202 F -.165(ve)-.275
G 1.451(rything else can be set in the).165 F(\231after\232 section.)72
527.8 Q .647(The sample)72 544.4 R F1(site.def)3.397 E F0 .648
(also has commented out support to include another \214le,)3.398 F F1
(host.def)3.398 E F0 6.148(.T)C .648(his scheme may)-6.148 F 2.309
(be useful if you w)72 557.4 R 2.308
(ant to set most parameters site-wide, b)-.11 F 2.308
(ut some parameters v)-.22 F 2.308(ary from machine to)-.275 F 4.68
(machine. If)72 570.4 R 1.93
(you use a symbolic link tree, you can share)4.68 F F1(site.def)4.681 E
F0 1.931(across all machines, and gi)4.681 F 2.261 -.165(ve e)-.275 H
(ach).165 E(machine its o)72 583.4 Q(wn cop)-.275 E 2.75(yo)-.11 G(f)
-2.75 E F1(host.def)2.75 E F0(.)A 2.131
(The con\214g parameters are listed in)72 600 R F1
(xc/con\214g/cf/README)4.881 E F0 4.88(,b)C 2.13
(ut here are some of the more common)-5.1 F
(parameters that you may wish to set in)72 613 Q F1(site.def)2.75 E F0
(.)A F1(Pr)72 629.6 Q(ojectRoot)-.198 E F0 .748
(The destination where X will be installed.)97 642.6 R .748(This v)6.248
F .749(ariable needs to be set before you b)-.275 F .749(uild, as some)
-.22 F .769(programs that read \214les at run-time ha)97 655.6 R 1.098
-.165(ve t)-.22 H .768(he installation directory compiled in to them.)
.165 F(Assuming)6.268 E 5.956(you ha)97 668.6 R 6.286 -.165(ve s)-.22 H
5.956(et the v).165 F 5.956(ariable to some v)-.275 F 5.956(alue /)-.275
F F2(path)A F0 8.706<2c8c>C 5.957(les will be installed into /)-8.706 F
F2(path)A F0(/bin,)A(/)97 681.6 Q F2(path)A F0(/include/X11, /)A F2
(path)A F0(/lib, and /)A F2(path)A F0(/man.)A F1(HasGcc)72 698.2 Q F0
(Set to)97 711.2 Q F1(YES)2.75 E F0(to b)2.75 E(uild with)-.22 E F2(gcc)
2.75 E F0 -.165(ve)2.75 G(rsion 1.).165 E(7)303.25 769 Q EP
%%Page: 8 10
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF(HasGcc2)72 85 Q F0 .936(Set to)97 98 R F1
(YES)3.686 E F0 .936(to b)3.686 F .936(uild with)-.22 F/F2 11
/Times-Italic@0 SF(gcc)3.686 E F0 -.165(ve)3.686 G .936(rsion 2.).165 F
.935(Both this option and)6.435 F F1(HasGcc)3.685 E F0 .935
(look for a compiler named)3.685 F F2(gcc)97 111 Q F0 3.336(,b)C(ut)
-3.556 E F1(HasGcc2)3.336 E F0 .586(will cause the b)3.336 F .586
(uild to use more features of)-.22 F F2(gcc)3.336 E F0 .587
(2, such as the ability to compile)3.336 F(shared libraries.)97 124 Q F1
(HasCplusplus)72 140.6 Q F0 .416(Declares the system has a C++ compiler)
97 153.6 R 5.916(.C)-.605 G .416(++ is necessary to b)-5.916 F(uild)-.22
E F2 -1.947 -.605(Fr e)3.166 H(sco).605 E F0 5.915(.O)C 3.165(ns)-5.915
G .415(ome systems, you)-3.165 F(may also ha)97 166.6 Q .33 -.165(ve t)
-.22 H 2.75(os).165 G(et additional v)-2.75 E
(ariables to say what C++ compiler you ha)-.275 E -.165(ve)-.22 G(.).165
E F1(DefaultUsrBin)72 183.2 Q F0 .726
(This is a directory where programs will be found e)97 196.2 R -.165(ve)
-.275 G 3.476(ni).165 G 3.476(fP)-3.476 G -1.221(AT)-4.488 G 3.477(Hi)
1.221 G 3.477(sn)-3.477 G .727(ot set in the en)-3.477 F 3.477
(vironment. It)-.44 F(is)3.477 E .325
(independent of ProjectRoot and def)97 209.2 R .324(aults to)-.11 F F1
(/usr/bin)3.074 E F0 5.824(.I)C 3.074(ti)-5.824 G 3.074(su)-3.074 G .324
(sed, for e)-3.074 F .324(xample, when connecting from)-.165 F 2.75(ar)
97 222.2 S(emote system via)-2.75 E F2 -.11(rs)2.75 G(h).11 E F0 5.5(.T)
C(he)-5.5 E F2 -.11(rs)2.75 G(tart).11 E F0(program installs its serv)
2.75 E(er in this directory)-.165 E(.)-.715 E F1(InstallSer)72 238.8 Q
-.11(ve)-.11 G(rSetUID).11 E F0 .153(Some systems require the X serv)97
251.8 R .154(er to run as root to access the de)-.165 F .154
(vices it needs.)-.275 F .154(If you are on such a)5.654 F .586
(system and will not be using)97 264.8 R F2(xdm)3.336 E F0 3.336(,y)C
.586(ou can set this v)-3.336 F .586(ariable to)-.275 F F1(YES)3.335 E
F0 .585(to install the X serv)3.335 F .585(er setuid to)-.165 F 4.118
(root. Note)97 277.8 R 1.368(that the X serv)4.118 F 1.368
(er has not been analyzed by the X Consortium for security in such an)
-.165 F(installation; talk to your system manager before setting this v)
97 290.8 Q(ariable.)-.275 E F1(MotifBC)72 307.4 Q F0 .716
(Causes Xlib and Xt to w)97 320.4 R .716(ork around some b)-.11 F .715
(ugs in older v)-.22 F .715(ersions of Motif.)-.165 F .715(Set to)6.215
F F1(YES)3.465 E F0 .715(only if you)3.465 F
(will be linking with Motif v)97 333.4 Q(ersion 1.1.1, 1.1.2, or 1.1.3.)
-.165 E F1(GetV)72 350 Q(aluesBC)-1.012 E F0 .373(Setting this v)97 363
R .373(ariable to)-.275 F F1(YES)3.123 E F0(allo)3.123 E .373(ws ille)
-.275 F -.055(ga)-.165 G 3.123(lX).055 G(tGetV)-3.123 E .373
(alues requests with NULL Ar)-1.221 F(gV)-.198 E .373
(al to usually suc-)-1.221 F 1.928(ceed, as R5 did.)97 376 R 1.928
(Some applications erroneously rely on this beha)7.428 F(vior)-.22 E
7.428(.S)-.605 G 1.927(upport for this will be)-7.428 F(remo)97 389 Q
-.165(ve)-.165 G 2.75(di).165 G 2.75(naf)-2.75 G(uture release.)-2.75 E
.231(The follo)72 405.6 R(wing)-.275 E F2(vendor)2.982 E F1(.cf)A F0
.232(\214les are in the release b)2.982 F .232(ut ha)-.22 F .562 -.165
(ve n)-.22 H .232(ot been tested recently and hence probably need).165 F
4.279(changes to w)72 418.6 R(ork:)-.11 E F1(DGUX.cf)7.029 E F0(,)A F1
(Mips.cf)7.029 E F0(,)A F1(apollo.cf)7.028 E F0(,)A F1(bsd.cf)7.028 E F0
(,)A F1(con)7.028 E -.11(ve)-.44 G(x.cf).11 E F0(,)A F1(moto.cf)7.028 E
F0(,)A F1(pegasus.cf)7.028 E F0(,)A F1(x386.cf)7.028 E F0(.)A F1
(Amoeba.cf)72 431.6 Q F0(is kno)2.75 E
(wn to require additional patches.)-.275 E .271(The \214le)72 448.2 R F1
(xc/lib/Xdmcp/Wraphelp.c)3.021 E F0 3.021(,f)C .271(or XDM-A)-3.021 F
(UTHORIZA)-.605 E .272(TION-1, is not included in this release.)-1.221 F
(The)5.772 E 1.257(\214le is a)72 461.2 R -.275(va)-.22 G 1.257
(ilable within the US; for details get).275 F F1
(/pub/R6/xdm-auth/README)4.007 E F0 1.257(from ftp.x.or)4.007 F 4.007
(gv)-.198 G 1.256(ia anon)-4.007 F(y-)-.165 E(mous FTP)72 474.2 Q(.)
-1.221 E F1 2.75(3.5. System)72 513.2 R(Notes)2.75 E F0
(This section contains hints on b)72 542.8 Q
(uilding X with speci\214c compilers and operating systems.)-.22 E F1
2.75(3.5.1. gcc)72 581.8 R F2(gcc)72 611.4 Q F0 -.165(ve)3.341 G .591
(rsion 2 is in re).165 F .591(gular use at the X Consortium.)-.165 F
-1.21(Yo)6.092 G 3.342(us)1.21 G .592(hould ha)-3.342 F .922 -.165(ve n)
-.22 H 3.342(op).165 G .592(roblems using it to b)-3.342 F 3.342
(uild. Set)-.22 F .418(the v)72 624.4 R(ariable)-.275 E F1(HasGcc2)3.168
E F0 5.918(.X)C .418(will not compile on some systems with)-2.75 F F2
(gcc)3.168 E F0 -.165(ve)3.167 G .417
(rsion 2.5, 2.5.1, or 2.5.2 because).165 F
(of an incorrect declaration of memmo)72 637.4 Q -.165(ve)-.165 G
(\(\) in a gcc include \214le.).165 E F1 2.75(3.5.2. Spar)72 676.4 R(cW)
-.198 E(orks 2.0)-.825 E F0 .259(If you ha)72 706 R .589 -.165(ve a n)
-.22 H .259(on-threaded program and w).165 F .259(ant to deb)-.11 F .259
(ug it with the old SparcW)-.22 F .259(orks 2.0 dbx, you will need)-.88
F(to use the thread stubs library in)72 719 Q F1
(xc/util/misc/thr_stubs.c)2.75 E F0 5.5(.C)C(ompile it as follo)-5.5 E
(ws:)-.275 E(8)303.25 769 Q EP
%%Page: 9 11
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(cc -c thr_stubs.c)108 85 Q(ar cq libthr_stubs.a thr_stubs.o)108 98 Q
(ranlib libthr_stubs.a)108 111 Q 1.519(Install libthr_stubs.a in the sa\
me directory with your X libraries \(e.g.,)72 130 R/F1 11/Times-Bold@0
SF(/usr/X11R6/lib/libthr_stubs.a)4.268 E F0(\).)A(Add the follo)72 143 Q
(wing line to)-.275 E F1(site.def)2.75 E F0(:)A
(#de\214ne ExtraLibraries)108 162 Q(\255lsock)5.5 E 2.75(et \255lnsl)
-.11 F($\(CDEB)2.75 E(UGFLA)-.11 E(GS:\255g=\255lthr_stubs\))-.44 E
(This e)72 181 Q(xample uses a)-.165 E/F2 11/Times-Italic@0 SF(mak)2.75
E(e)-.11 E F0(macro substitution; not all)2.75 E F2(mak)2.75 E(e)-.11 E
F0(implementations support this feature.)2.75 E F1 2.75
(3.5.3. CenterLine)72 220 R 2.75(Cu)2.75 G(nder Solaris 2.3)-2.75 E F0
.115(If you are using the CenterLine C compiler to compile the distrib)
72 249.6 R .116(ution under Solaris 2.3, place the follo)-.22 F(w-)-.275
E(ing line in your)72 262.6 Q F1(site.def)2.75 E F0(:)A
(#de\214ne HasCenterLineC YES)108 281.6 Q(If clcc is not in your def)72
300.6 Q(ault search path, add this line to)-.11 E F1(site.def)2.75 E F0
(:)A(#de\214ne CcCmd /path/to/your/clcc)108 319.6 Q
(If you are using CodeCenter 4.0.4 or earlier)72 342.2 Q 2.75(,t)-.44 G
(he follo)-2.75 E(wing \214les trigger b)-.275 E(ugs in the)-.22 E F2
(clcc)2.75 E F0(optimizer:)2.75 E(xc/programs/Xserv)108 361.2 Q
(er/cfb16/cfbgetsp.c)-.165 E(xc/programs/Xserv)108 374.2 Q
(er/cfb16/cfb\214llsp.c)-.165 E(xc/programs/Xserv)108 387.2 Q
(er/cfb/cfbgetsp.c)-.165 E(Thus to b)72 409.8 Q(uild the serv)-.22 E(er)
-.165 E 2.75(,y)-.44 G(ou will ha)-2.75 E .33 -.165(ve t)-.22 H 2.75(oc)
.165 G(ompile these \214les by hand with the)-2.75 E F1<ad67>2.75 E F0
(\215ag:)2.75 E 2.75(%c)108 428.8 S 2.75(dx)-2.75 G(c/programs/Xserv)
-2.75 E(er/cfb16)-.165 E 2.75(%m)108 441.8 S(ak)-2.75 E 2.75(eC)-.11 G
(DEB)-2.75 E(UGFLA)-.11 E(GS="\255g" cfbgetsp.o cfb\214llsp.o)-.44 E
2.75(%c)108 454.8 S 2.75(d.)-2.75 G(./cfb)-2.75 E 2.75(%m)108 467.8 S
(ak)-2.75 E 2.75(eC)-.11 G(DEB)-2.75 E(UGFLA)-.11 E
(GS="\255g" cfbgetsp.o)-.44 E(This optimizer b)72 486.8 Q
(ug appears to be \214x)-.22 E(ed in CodeCenter 4.0.6.)-.165 E F1 2.75
(3.5.4. Micr)72 525.8 R(osoft W)-.198 E(indo)-.198 E(ws NT)-.11 E F0
.313(The set of operating systems that the client-side code will run on\
 has been e)72 555.4 R .312(xpanded to include Microsoft)-.165 F -.44
(Wi)72 568.4 S(ndo).44 E .41(ws NT)-.275 F 5.91(.A)-.814 G .411(ll of t\
he base libraries are supported, including multi-threading in Xlib and \
Xt, b)-5.91 F .411(ut some)-.22 F
(of the more complicated applications, speci\214cally)72 581.4 Q F2
(xterm)2.75 E F0(and)2.75 E F2(xdm)2.75 E F0 2.75(,a)C
(re not supported.)-2.75 E .544(There are also some other rough edges i\
n the implementation, such as lack of support for non-sock)72 598 R .543
(et \214le)-.11 F 1.095
(descriptors as Xt alternate inputs and not using the re)72 611 R 1.095
(gistry for con\214gurable parameters lik)-.165 F 3.846(et)-.11 G 1.096
(he system)-3.846 F(\214lenames and search paths.)72 624 Q F1 2.75
(3.6. The)72 663 R(Build)2.75 E F0(On NT)72 692.6 Q 2.75(,t)-.814 G(ype)
-2.75 E(nmak)108 711.6 Q 2.75(eW)-.11 G(orld.W)-3.63 E(in32 > w)-.44 E
(orld.log)-.11 E
(On other systems, \214nd the BootstrapCFlags line, if an)72 730.6 Q
1.43 -.715(y, i)-.165 H 2.75(nt).715 G(he)-2.75 E F2(vendor)2.75 E F1
(.cf)A F0 2.75(\214le. If)2.75 F(there isn')2.75 E 2.75(to)-.198 G
(ne, type)-2.75 E(9)303.25 769 Q EP
%%Page: 10 12
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E(mak)108 85 Q 2.75(eW)-.11 G(orld >& w)-3.63 E(orld.log)-.11 E
(otherwise type)72 104 Q(mak)108 123 Q 2.75(eW)-.11 G(orld BOO)-3.63 E
(TSTRAPCFLA)-.44 E(GS="v)-.44 E(alue" >& w)-.275 E(orld.log)-.11 E -1.21
(Yo)72 145.6 S 3.347(uc)1.21 G .597
(an call the output \214le something other than \231w)-3.347 F .597
(orld.log\232, b)-.11 F .597(ut do not call it \231mak)-.22 F .596
(e.log\232 because \214les)-.11 F(with this name are automatically dele\
ted during the \231cleaning\232 stage of the b)72 158.6 Q(uild.)-.22 E
.47(Because the b)72 175.2 R .47(uild can tak)-.22 F 3.221(es)-.11 G
-2.365 -.275(ev e)-3.221 H .471
(ral hours to complete, you will probably w).275 F .471
(ant to run it in the background)-.11 F(and k)72 188.2 Q(eep a w)-.11 E
(atch on the output.)-.11 E -.165(Fo)5.5 G 2.75(re).165 G(xample:)-2.915
E(mak)108 207.2 Q 2.75(eW)-.11 G(orld >& w)-3.63 E(orld.log &)-.11 E
2.75(tail \255f w)108 220.2 R(orld.log)-.11 E .079
(If something goes wrong, the easiest thing is to just start o)72 242.8
R -.165(ve)-.165 G 2.828(r\().165 G .078(typing \231mak)-2.828 F 2.828
(eW)-.11 G .078(orld\232 ag)-3.708 F .078(ain\) once you ha)-.055 F
-.165(ve)-.22 G 1.089(corrected the problem.)72 255.8 R 1.089
(It is possible that a f)6.589 F 1.089(ailure will corrupt the top-le)
-.11 F -.165(ve)-.275 G(l).165 E/F1 11/Times-Bold@0 SF(Mak)3.84 E
(e\214le)-.11 E F0 6.59(.I)C 3.84(ft)-6.59 G 1.09(hat happens,)-3.84 F
(simply delete the \214le and recreate a w)72 268.8 Q
(orkable substitute:)-.11 E(cp Mak)108 287.8 Q(e\214le.ini Mak)-.11 E
(e\214le)-.11 E F1 2.75(3.7. Installing)72 332.8 R(X)2.75 E F0(If e)72
362.4 Q -.165(ve)-.275 G(rything is b).165 E(uilt successfully)-.22 E
2.75(,y)-.715 G(ou can install the softw)-2.75 E
(are by typing the follo)-.11 E(wing as root:)-.275 E(mak)108 381.4 Q
2.75(ei)-.11 G(nstall >& install.log)-2.75 E(Ag)72 404 Q
(ain, you might w)-.055 E(ant to run this in the background and use)-.11
E/F2 11/Times-Italic@0 SF(tail)2.75 E F0(to w)2.75 E(atch the progress.)
-.11 E -1.21(Yo)72 420.6 S 2.75(uc)1.21 G
(an install the manual pages by typing the follo)-2.75 E(wing as root:)
-.275 E(mak)108 439.6 Q 2.75(ei)-.11 G(nstall.man >& man.log)-2.75 E F1
2.75(3.8. Shar)72 484.6 R(ed Libraries)-.198 E F0 .769
(Except on SunOS 4, the v)72 514.2 R .769
(ersion number of all the shared libraries has changed to)-.165 F F1
(6.0)3.518 E F0 6.268(.I)C 3.518(fy)-6.268 G .768(ou w)-3.518 F .768
(ant pro-)-.11 F .828(grams link)72 527.2 R .829(ed ag)-.11 F .829
(ainst pre)-.055 F .829(vious v)-.275 F .829(ersions of the libraries t\
o use the R6 libraries, create a link from the old)-.165 F
(name to the ne)72 540.2 Q 2.75(wn)-.275 G(ame.)-2.75 E F1 2.75
(3.9. Setting)72 579.2 R(Up xterm)2.75 E F0 .004(If your)72 608.8 R F1
(/etc/termcap)2.754 E F0(and)2.754 E F1(/usr/lib/terminf)2.754 E(o)-.275
E F0 .003(databases do not ha)2.753 F .333 -.165(ve c)-.22 H .003
(orrect entries for).165 F F2(xterm)2.753 E F0 2.753(,u)C .003
(se the sample)-2.753 F .808(entries pro)72 621.8 R .808
(vided in the directory)-.165 F F1(xc/pr)3.558 E(ograms/xterm/)-.198 E
F0 6.308(.S)C .808(ystem V users may need to compile and install)-6.308
F(the)72 634.8 Q F1(terminf)2.75 E(o)-.275 E F0(entry with the)2.75 E F2
(tic)2.75 E F0(utility)2.75 E(.)-.715 E .44(Since each)72 651.4 R F2
(xterm)3.19 E F0 .44(will need a separate pseudoterminal, you need a re\
asonable number of them for normal)3.19 F -.165(exe)72 664.4 S 3.471
(cution. Y).165 F .721(ou probably will w)-1.21 F .721
(ant at least 32 on a small, multiuser system.)-.11 F .721
(On most systems, each pty)6.221 F 6.167(has tw)72 677.4 R 8.917(od)-.11
G -.275(ev)-8.917 G 6.166(ices, a master and a sla).275 F -.165(ve)-.22
G 8.916(,w).165 G 6.166(hich are usually named /de)-8.916 F 6.166
(v/tty[pqrstu][0-f] and)-.275 F(/de)72 690.4 Q 6.451
(v/pty[pqrstu][0-f]. If)-.275 F 3.701(you don')6.451 F 6.451(th)-.198 G
-2.475 -.22(av e)-6.451 H 3.702(at least the \231p\232 and \231q\232 se\
ts con\214gured \(try typing \231ls)6.671 F(/de)72 703.4 Q .981
(v/?ty??\232\), you should ha)-.275 F 1.31 -.165(ve y)-.22 H .98
(our system administrator add them.).165 F .98
(This is commonly done by running)6.48 F(the)72 716.4 Q F2(MAKEDEV)2.75
E F0(script in the)2.75 E F1(/de)2.75 E(v)-.165 E F0
(directory with appropriate ar)2.75 E(guments.)-.198 E(10)300.5 769 Q EP
%%Page: 11 13
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(3.10. Starting)72 85 R(Ser)2.75 E -.11(ve)
-.11 G(rs at System Boot).11 E F0(The)72 114.6 Q/F2 11/Times-Italic@0 SF
(xfs)2.946 E F0(and)2.946 E F2(xdm)2.946 E F0 .196
(programs are designed to be run automatically at system startup.)2.946
F .197(Please read the manual)5.697 F 9.874(pages for details on settin\
g up con\214guration \214les; reasonable sample \214les are in)72 127.6
R F1(xc/pr)72 140.6 Q(ograms/xdm/con\214g/)-.198 E F0(and)2.75 E F1
(xc/pr)2.75 E(ograms/xfs/)-.198 E F0(.)A .33(If your system uses an)72
157.2 R F1(/etc/r)3.08 E(c)-.198 E F0 .33(\214le at boot time, you can \
usually enable these programs by placing the fol-)3.08 F(lo)72 170.2 Q
(wing at or near the end of the \214le:)-.275 E
(if [ \255f /usr/X11R6/bin/xfs ]; then)108 189.2 Q
(/usr/X11R6/bin/xfs &; echo \255n ' xfs')130 202.2 Q<8c>108 215.2 Q
(if [ \255f /usr/X11R6/bin/xdm ]; then)108 241.2 Q
(/usr/X11R6/bin/xdm; echo \255n ' xdm')130 254.2 Q<8c>108 267.2 Q(Since)
72 289.8 Q F2(xfs)2.982 E F0 .232(can serv)2.982 F 2.982(ef)-.165 G .232
(onts o)-2.982 F -.165(ve)-.165 G 2.982(rt).165 G .232(he netw)-2.982 F
.232(ork, you do not need to run a font serv)-.11 F .231(er on e)-.165 F
-.165(ve)-.275 G .231(ry machine with an).165 F 3.255(Xd)72 302.8 S
(isplay)-3.255 E 6.005(.Y)-.715 G .505(ou should start)-7.215 F F2(xfs)
3.255 E F0(before)3.255 E F2(xdm)3.256 E F0 3.256(,s)C(ince)-3.256 E F2
(xdm)3.256 E F0 .506(may start an X serv)3.256 F .506
(er which is a client of the font)-.165 F(serv)72 315.8 Q(er)-.165 E(.)
-.605 E .616(The e)72 332.4 R .616(xamples here use)-.165 F F1
(/usr/X11R6/bin)3.366 E F0 3.366(,b)C .616(ut if you ha)-3.586 F .946
-.165(ve i)-.22 H .615(nstalled into a dif).165 F .615
(ferent directory by setting \(or)-.275 F(unsetting\))72 345.4 Q F1(Pr)
2.75 E(ojectRoot)-.198 E F0
(then you need to substitute the correct directory)2.75 E(.)-.715 E .494
(If you are unsure about ho)72 362 R 3.244(ws)-.275 G .495(ystem boot w)
-3.244 F .495(orks, or if your system does not use)-.11 F F1(/etc/r)
3.245 E(c)-.198 E F0 3.245(,c)C .495(onsult your sys-)-3.245 F
(tem administrator for help.)72 375 Q F1 2.75(3.11. Using)72 414 R
(OPEN LOOK applications)2.75 E F0 -1.21(Yo)72 443.6 S 5.518(uc)1.21 G
2.768(an use the X11R6 Xsun serv)-5.518 F 2.767
(er with OPEN LOOK applications, b)-.165 F 2.767
(ut you must pass the ne)-.22 F(w)-.275 E F1(\255swapLk)72 456.6 Q(eys)
-.11 E F0 1.118(\215ag to the serv)3.868 F 1.118
(er on startup, or the OPEN LOOK Undo, Cop)-.165 F 2.549 -.715(y, P)-.11
H 1.119(aste, Find, and Cut k).55 F -.165(ey)-.11 G(s).165 E 2.081
(may not w)72 469.6 R 2.081(ork correctly)-.11 F 7.581(.F)-.715 G 2.081
(or e)-7.746 F 2.081(xample, to run Sun')-.165 F 4.831(sO)-.605 G(penW)
-4.831 E(indo)-.44 E 2.081(ws 3.3 desktop en)-.275 F 2.081
(vironment with an)-.44 F(X11R6 serv)72 482.6 Q(er)-.165 E 2.75(,u)-.44
G(se the command:)-2.75 E 2.75(%o)108 501.6 S 2.75(penwin \255serv)-2.75
F 2.75(er /usr/X11R6/bin/Xsun \255sw)-.165 F(apLk)-.11 E -.165(ey)-.11 G
(s).165 E 1.021(The k)72 524.2 R -.165(ey)-.11 G 1.021
(syms reported by k).165 F -.165(ey)-.11 G 3.771(so).165 G 3.771(nt)
-3.771 G 1.021(he numeric k)-3.771 F -.165(ey)-.11 G 1.021(pad ha).165 F
1.351 -.165(ve a)-.22 H 1.022
(lso changed since X11R5; if you \214nd that).165 F(OpenW)72 537.2 Q
(indo)-.44 E 1.342(ws applications do not respond to k)-.275 F -.165(ey)
-.11 G 1.342(pad k).165 F -.165(ey)-.11 G 4.092(sa).165 G 1.341
(nd cursor control k)-4.092 F -.165(ey)-.11 G 4.091(sw).165 G 1.341
(hen using the R6)-4.091 F(serv)72 550.2 Q(er)-.165 E 2.924(,y)-.44 G
.174(ou can remap the k)-2.924 F -.165(ey)-.11 G .174
(pad to generate R5 style k).165 F -.165(ey)-.11 G .174
(syms using the follo).165 F(wing)-.275 E F2(xmodmap)2.925 E F0
(commands:)2.925 E -.11(ke)108 569.2 S(ysym P)-.055 E(ause = F21)-.165 E
-.11(ke)108 582.2 S(ysym Print = F22)-.055 E -.11(ke)108 595.2 S
(ysym Break = F23)-.055 E -.11(ke)108 608.2 S(ysym KP_Equal = F24)-.055
E -.11(ke)108 621.2 S(ysym KP_Di)-.055 E(vide = F25)-.275 E -.11(ke)108
634.2 S(ysym KP_Multiply = F26)-.055 E -.11(ke)108 647.2 S
(ysym KP_Home = F27)-.055 E -.11(ke)108 660.2 S(ysym KP_Up = Up)-.055 E
-.11(ke)108 673.2 S(ysym KP_Prior = F29)-.055 E -.11(ke)108 686.2 S
(ysym KP_Left = Left)-.055 E -.11(ke)108 699.2 S(ycode 100 = F31)-.055 E
-.11(ke)108 712.2 S(ysym KP_Right = Right)-.055 E -.11(ke)108 725.2 S
(ysym KP_End = F33)-.055 E(11)300.5 769 Q EP
%%Page: 12 14
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E -.11(ke)108 85 S(ysym KP_Do)-.055 E(wn = Do)-.275 E(wn)-.275 E
-.11(ke)108 98 S(ysym KP_Ne)-.055 E(xt = F35)-.165 E -.11(ke)108 111 S
(ysym KP_Insert = Insert)-.055 E -.11(ke)108 124 S
(ysym KP_Delete = Delete)-.055 E/F1 11/Times-Bold@0 SF 2.75(3.12. Reb)72
169 R(uilding after P)-.22 E(atches)-.11 E F0 -1.21(Yo)72 198.6 S 2.808
(us)1.21 G(houldn')-2.808 E 2.808(tn)-.198 G .058(eed this right a)
-2.808 F -.11(wa)-.165 G 1.488 -.715(y, b).11 H .058(ut e).495 F -.165
(ve)-.275 G .058(ntually you are probably going to mak).165 F 2.808(ec)
-.11 G .057(hanges to the sources,)-2.808 F(for e)72 211.6 Q
(xample by applying X Consortium public patches.)-.165 E .343
(Each patch comes with e)72 228.2 R .344
(xplicit instructions at the top of it saying what to do.)-.165 F .344
(Thus the procedure here is)5.844 F(only an o)72 241.2 Q -.165(ve)-.165
G(rvie).165 E 2.75(wo)-.275 G 2.75(ft)-2.75 G
(he types of commands that might be necessary to reb)-2.75 E
(uild X after changing it.)-.22 E .152(If you are b)72 257.8 R .152
(uilding from CD-R)-.22 F .152
(OM, apply the patches to the symbolic link tree.)-.44 F .151
(The links to changed \214les)5.652 F
(will be replaced with a local \214le containing the ne)72 270.8 Q 2.75
(wc)-.275 G(ontents.)-2.75 E .971
(If only source \214les are changed, you should be able to reb)72 287.4
R .971(uild just by going to the)-.22 F F1(xc)3.721 E F0 .971
(directory in your)3.721 F -.22(bu)72 300.4 S(ild tree and typing:).22 E
(mak)108 319.4 Q 2.75(e>)-.11 G 2.75(&m)-2.75 G(ak)-2.75 E(e.log)-.11 E
(If con\214guration \214les are changed, the safest thing to do is type\
:)72 342 Q(mak)108 361 Q 2.75(eE)-.11 G -.165(ve)-2.75 G(rything >& e)
.165 E -.165(ve)-.275 G(ry).165 E(.log)-.715 E(\231Ev)72 383.6 Q .031
(erything\232 is similar to \231W)-.165 F .031(orld\232 in that it reb)
-.88 F .031(uilds e)-.22 F -.165(ve)-.275 G(ry).165 E F1(Mak)2.781 E
(e\214le)-.11 E F0 2.781(,b)C .031(ut unlik)-3.001 F 2.78<6599>-.11 G
-.88(Wo)-2.78 G .03(rld\232 it does not delete).88 F(the e)72 396.6 Q
(xisting objects, libraries, and e)-.165 E -.165(xe)-.165 G
(cutables, and only reb).165 E(uilds what is out of date.)-.22 E .711
(Note that in both kinds of reb)72 413.2 R .711
(uilds you do not need to supply the)-.22 F F1(BootstrapCFlags)3.461 E
F0 -.275(va)3.461 G .711(lue an).275 F 3.461(ym)-.165 G .711(ore; the)
-3.461 F(information is already recorded.)72 426.2 Q F1 2.75
(3.13. Building)72 465.2 R(Contrib)2.75 E(uted Softwar)-.22 E(e)-.198 E
F0 .779(The softw)72 494.8 R .779(are in)-.11 F F1(contrib)3.529 E F0
.778(is not set up to ha)3.529 F 1.108 -.165(ve e)-.22 H -.165(ve)-.11 G
.778(rything b).165 F .778(uilt automatically)-.22 F 6.278(.I)-.715 G
3.528(ti)-6.278 G 3.528(sa)-3.528 G .778(ssumed that you will)-3.528 F
-.22(bu)72 507.8 S .905(ild indi).22 F .906
(vidual pieces as you \214nd the desire, time, and/or disk space.)-.275
F -1.21(Yo)6.406 G 3.656(un)1.21 G .906(eed to ha)-3.656 F 1.236 -.165
(ve t)-.22 H .906(he X Consor).165 F(-)-.22 E 1.221(tium part b)72 520.8
R 1.221(uilt and installed before b)-.22 F 1.221(uilding the contrib)
-.22 F 1.221(uted softw)-.22 F 3.971(are. T)-.11 F 3.97(ob)-.88 G 1.22
(uild a program or library in)-4.19 F F1(contrib)72 533.8 Q F0 3.583(,l)
C .833(ook in its directory for an)-3.583 F 3.583(ys)-.165 G .834
(pecial b)-3.583 F .834(uild instructions \(for e)-.22 F .834(xample, a)
-.165 F F1(README)3.584 E F0 3.584(\214le\). If)3.584 F(there)3.584 E
(are none, and there is an)72 546.8 Q F1(Imak)2.75 E(e\214le)-.11 E F0
(,)A/F2 11/Times-Italic@0 SF(cd)2.75 E F0(to the directory and type:)
2.75 E 2.75(xmkmf \255a)108 565.8 R(mak)108 578.8 Q 2.75(e>)-.11 G 2.75
(&m)-2.75 G(ak)-2.75 E(e.log)-.11 E .199(This will b)72 601.4 R .199
(uild a)-.22 F F1(Mak)2.949 E(e\214le)-.11 E F0 .198
(in the directory and all subdirectories, and then b)2.949 F .198
(uild the softw)-.22 F 2.948(are. If)-.11 F .198(the b)2.948 F(uild)-.22
E(is successful, you should be able to install it using the same comman\
ds used for the)72 614.4 Q F1(xc)2.75 E F0(softw)2.75 E(are:)-.11 E(mak)
108 633.4 Q 2.75(ei)-.11 G(nstall >& install.log)-2.75 E(mak)108 646.4 Q
2.75(ei)-.11 G(nstall.man >& man.log)-2.75 E F1 2.75(4. What)72 691.4 R
(Is New in Release 6)2.75 E F0 1.844
(This section describes changes in the X Consortium distrib)72 721 R
1.845(ution since Release 5.)-.22 F 1.845(Release 6 contains)7.345 F(12)
300.5 769 Q EP
%%Page: 13 15
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E .218(much ne)72 85 R 2.967(wf)-.275 G .217(unctionality in man)-2.967
F 2.967(ya)-.165 G 2.967(reas. In)-2.967 F .217(addition, man)2.967 F
2.967(yb)-.165 G .217(ugs ha)-3.187 F .547 -.165(ve b)-.22 H .217
(een \214x).165 F 2.967(ed. Ho)-.165 F(we)-.275 E -.165(ve)-.275 G 1.097
-.44(r, i).165 H 2.967(nt).44 G .217(he ef)-2.967 F .217(fort to)-.275 F
(de)72 98 Q -.165(ve)-.275 G(lop the ne).165 E 2.75(wt)-.275 G
(echnology in this release, some b)-2.75 E
(ugs, particularly in client programs, did not get \214x)-.22 E(ed.)
-.165 E .771(Except where noted, all libraries, protocols, and serv)72
114.6 R .771(ers are upw)-.165 F .771(ard compatible with Release 5.)
-.11 F .772(That is,)6.271 F
(R5 clients and applications should continue to w)72 127.6 Q
(ork with R6 libraries and serv)-.11 E(ers.)-.165 E/F1 11/Times-Bold@0
SF 2.75(4.1. New)72 166.6 R(Standards)2.75 E F0(The follo)72 196.2 Q
(wing are ne)-.275 E 2.75(wXC)-.275 G(onsortium standards in Release 6.)
-2.75 E(Each is described in its o)5.5 E(wn section belo)-.275 E -.715
(w.)-.275 G 2.75(XI)108 215.2 S(mage Extension)-2.75 E(Inter)108 228.2 Q
(-Client Communications Con)-.22 E -.165(ve)-.44 G
(ntions Manual \(update\)).165 E(Inter)108 241.2 Q
(-Client Exchange Protocol)-.22 E(Inter)108 254.2 Q
(-Client Exchange Library)-.22 E 2.75(XS)108 267.2 S
(ession Management Protocol)-2.75 E 2.75(XS)108 280.2 S
(ession Management Library)-2.75 E(Input Method Protocol)108 293.2 Q
2.75(XL)108 306.2 S(ogical F)-2.75 E(ont Descriptions \(update\))-.165 E
(SYNC e)108 319.2 Q(xtension)-.165 E(XTEST e)108 332.2 Q(xtension)-.165
E(PEX 5.1 Protocol \(released after R5\))108 345.2 Q
(PEXlib \(released after R5\))108 358.2 Q(BIG-REQ)108 371.2 Q(UESTS e)
-.11 E(xtension)-.165 E(XC-MISC e)108 384.2 Q(xtension)-.165 E F1 2.75
(4.2. XIE)72 429.2 R(\(X Image Extension\))2.75 E F0 1.005(The sample i\
mplementation in Release 6 is a complete implementation of full XIE 5.0\
 protocol, e)72 458.8 R(xcept)-.165 E(for the follo)72 471.8 Q
(wing techniques that are e)-.275 E(xcluded from the SI:)-.165 E 88.692
(ColorAlloc: Match,)108 490.8 R(Requantize)2.75 E(Con)108 503.8 Q -.22
(vo)-.44 G(lv).22 E 96.238(e: Replicate)-.165 F 104.598(Decode: JPEG)108
516.8 R(lossless)2.75 E 105.203(Encode: JPEG)108 529.8 R(lossless)2.75 E
94.203(Geometry: AntialiasByArea,)108 542.8 R(AntialiasByLo)2.75 E
(wpass)-.275 E/F2 11/Times-Italic@0 SF(xieperf)72 565.4 Q F0 -.165(exe)
4.802 G 2.052(rcises the serv).165 F 2.052(er functionality; it pro)
-.165 F 2.053(vides unit testing and a reasonable measure of multi-)
-.165 F(element photo\215o testing.)72 578.4 Q 2.954(Ad)72 595 S .204(r\
aft standard of the XIElib speci\214cation is included in this release \
and is open for Public Re)-2.954 F(vie)-.275 E 4.383 -.715(w. T)-.275 H
(he).715 E(XIElib code matches the 5.0 protocol.)72 608 Q .652(The JPEG\
 compression and decompression code is based on the Independent JPEG Gr\
oup')72 624.6 R 3.402(s\()-.605 G .652(IJG\) JPEG)-3.402 F(softw)72
637.6 Q .155(are, Release 4.)-.11 F .155(This softw)5.655 F .155
(are pro)-.11 F .154(vides baseline Huf)-.165 F .154
(fman DCT encoding as de\214ned by ISO/IEC DIS)-.275 F 1.278(10918-1, \
\231Digital Compression and Coding of Continuous-tone Still Images, P)72
650.6 R 1.279(art 1: Requirements and)-.165 F .638
(guidelines\232, and w)72 663.6 R .638(as chosen as a basis for our imp\
lementation of JPEG compression and decompression)-.11 F 1.595
(primarily because the IJG')72 676.6 R 4.345(sd)-.605 G 1.595
(esign goals matched ours for the implementation of the XIE SI: achie)
-4.345 F -.165(ve)-.275 G 1.157(portability and \215e)72 689.6 R 1.157
(xibility without sacri\214cing performance.)-.165 F 1.157
(Less than half of the \214les distrib)6.657 F 1.157(uted by the)-.22 F
.824(IJG ha)72 702.6 R 1.154 -.165(ve b)-.22 H .824
(een incorporated into the XIE SI.).165 F .825(The IJG')6.325 F 3.575
(ss)-.605 G(oftw)-3.575 E .825(are is made a)-.11 F -.275(va)-.22 G .825
(ilable with restrictions; see).275 F F1(xc/pr)72 715.6 Q(ograms/Xser)
-.198 E -.11(ve)-.11 G(r/XIE/mixie/jpeg/README).11 E F0(.)A(13)300.5 769
Q EP
%%Page: 14 16
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF 2.75(4.3. Inter)72 85 R
(-Client Communications Con)-.407 E -.11(ve)-.44 G(ntions Manual).11 E
F0 .173(Release 6 includes v)72 114.6 R .173(ersion 2.0 of the ICCCM.)
-.165 F .173(This v)5.673 F .173(ersion contains a lar)-.165 F .173
(ge number of changes and clari-)-.198 F
(\214cations in the areas of windo)72 127.6 Q 2.75(wm)-.275 G
(anagement, selections, session management, and resource sharing.)-2.75
E F1 2.75(4.3.1. W)72 166.6 R(indo)-.198 E 2.75(wM)-.11 G(anagement)
-2.75 E F0 .123(The circumstances under which the windo)72 196.2 R 2.873
(wm)-.275 G .123
(anager is required to send synthetic Con\214gureNotify e)-2.873 F -.165
(ve)-.275 G(nts).165 E(ha)72 209.2 Q .815 -.165(ve b)-.22 H .485
(een clari\214ed to ensure that an).165 F 3.235(yC)-.165 G(on\214gureW)
-3.235 E(indo)-.44 E 3.235(wr)-.275 G .485
(equest issued by the client will result in a Con-)-3.235 F .191
(\214gureNotify e)72 222.2 R -.165(ve)-.275 G .191
(nt, either from the serv).165 F .191(er or from the windo)-.165 F 2.942
(wm)-.275 G(anager)-2.942 E 5.692(.W)-.605 G 2.942(eh)-6.572 G -2.475
-.22(av e)-2.942 H .192(also added advice about)3.162 F(ho)72 235.2 Q
3.058(wac)-.275 G .308(lient should inspect e)-3.058 F -.165(ve)-.275 G
.308(nts so as to minimize the number of situations where it is necessa\
ry to use).165 F(the T)72 248.2 Q(ranslateCoordinates request.)-.385 E
.059(The windo)72 264.8 R(w_gra)-.275 E .059
(vity \214eld of WM_NORMAL_HINTS has a ne)-.22 F 2.809(wv)-.275 G .059
(alue, StaticGra)-3.084 F(vity)-.22 E 2.809(,w)-.715 G .059
(hich speci\214es that)-2.809 F(the windo)72 277.8 Q 2.75(wm)-.275 G
(anager should not shift the client windo)-2.75 E(w')-.275 E 2.75(sl)
-.605 G(ocation when reparenting the windo)-2.75 E -.715(w.)-.275 G .78
(The base size in the WM_NORMAL_HINTS property is no)72 294.4 R 3.529
(wt)-.275 G 3.529(ob)-3.529 G 3.529(ei)-3.529 G .779
(ncluded in the aspect ratio calcula-)-3.529 F(tion.)72 307.4 Q
(The WM_ST)72 324 Q -1.221(AT)-1.023 G 2.75(Ep)1.221 G(roperty no)-2.75
E 2.75(wh)-.275 G(as a formal de\214nition \(it w)-2.75 E(as pre)-.11 E
(viously only suggested\).)-.275 E F1 2.75(4.3.2. Selections)72 363 R F0
3.26 -.88(We h)72 392.6 T -2.475 -.22(av e).88 H 1.5
(clari\214ed the CLIENT_WINDO)4.47 F 3.524 -1.012(W, L)-.385 H 1.501
(ENGTH, and MUL)1.012 F 1.501(TIPLE tar)-1.012 F 4.251(gets. W)-.198 F
4.251(eh)-.88 G -2.475 -.22(av e)-4.251 H 1.501(also added a)4.471 F
.163(number of ne)72 405.6 R 2.913(wt)-.275 G(ar)-2.913 E .162(gets for\
 Encapsulated PostScript and for the Apple Macintosh PICT structured gr\
aphics)-.198 F 3.895(format. W)72 418.6 R 3.895(eh)-.88 G -2.475 -.22
(av e)-3.895 H 1.145(also de\214ned a ne)4.115 F 3.895(ws)-.275 G 1.145
(election property type C_STRING, which is a string of non-zero)-3.895 F
2.75(bytes. \(This)72 431.6 R
(is in contrast to the STRING type, which e)2.75 E(xcludes man)-.165 E
2.75(yc)-.165 G(ontrol characters.\))-2.75 E 2.75(As)72 448.2 S
(election requester can no)-2.75 E 2.75(wp)-.275 G
(ass parameters in with the request.)-2.75 E .881(Another ne)72 464.8 R
3.631(wf)-.275 G .881(acility is manager selections.)-3.741 F .881
(This use of the selection mechanism is not to transfer data,)6.381 F
-.22(bu)72 477.8 S 2.856(tt).22 G 2.856(oa)-2.856 G(llo)-2.856 E 2.856
(wc)-.275 G .106(lients kno)-2.856 F .106(wn as)-.275 F/F2 11
/Times-Italic@0 SF(mana)2.856 E -.11(ge)-.11 G -.11(rs).11 G F0 .106
(to pro)2.966 F .106(vide services to other clients.)-.165 F -1.221(Ve)
5.607 G .107(rsion 2.0 also speci\214es that)1.221 F(windo)72 490.8 Q
2.785(wm)-.275 G .035(anagers should hold a manager selection.)-2.785 F
.035(At present, the only service de\214ned for windo)5.535 F 2.784(wm)
-.275 G(an-)-2.784 E 1.453(agers is to report the ICCCM v)72 503.8 R
1.454(ersion number to which the windo)-.165 F 4.204(wm)-.275 G 1.454
(anager complies.)-4.204 F(No)6.954 E 4.204(wt)-.275 G 1.454(hat this)
-4.204 F -.11(fa)72 516.8 S
(cility is in place, additional services can be added in the future.).11
E F1 2.75(4.3.3. Resour)72 555.8 R(ce Sharing)-.198 E F0 3.64(Ap)72
585.4 S .89(rominent ne)-3.64 F 3.64(wa)-.275 G .89(ddition in v)-3.64 F
.89(ersion 2.0 is the ability of clients to tak)-.165 F 3.64(ec)-.11 G
.89(ontrol of colormap installation)-3.64 F 2.076
(under certain circumstances.)72 598.4 R 2.077(Earlier v)7.577 F 2.077
(ersions of the ICCCM speci\214ed that the windo)-.165 F 4.827(wm)-.275
G 2.077(anager had)-4.827 F -.165(ex)72 611.4 S(clusi).165 E .438 -.165
(ve c)-.275 H .108(ontrol o).165 F -.165(ve)-.165 G 2.858(rc).165 G .108
(olormap installation.)-2.858 F .108(This pro)5.608 F -.165(ve)-.165 G
2.858(st).165 G 2.858(ob)-2.858 G 2.858(ei)-2.858 G(ncon)-2.858 E -.165
(ve)-.44 G .108(nient for certain situations, such as).165 F .069
(when a client has the serv)72 624.4 R .069(er grabbed.)-.165 F -1.221
(Ve)5.569 G .069(rsion 2.0 allo)1.221 F .069
(ws clients to install colormaps themselv)-.275 F .069(es after ha)-.165
F(v-)-.22 E 1.155(ing informed the windo)72 637.4 R 3.905(wm)-.275 G
(anager)-3.905 E 6.655(.C)-.605 G 1.155
(lients must hold a pointer grab for the entire time the)-6.655 F 3.904
(ya)-.165 G 1.154(re doing)-3.904 F(their o)72 650.4 Q
(wn colormap installation.)-.275 E -1.221(Ve)72 667 S 1.154
(rsion 2.0 also clari\214es a number of rules about ho)1.221 F 3.905(wc)
-.275 G 1.155(lients can e)-3.905 F 1.155(xchange resources.)-.165 F
1.155(These rules are)6.655 F 1.222(important when a client places a re\
source ID into a hints property or passes a resource ID through the)72
680 R(selection mechanism.)72 693 Q(14)300.5 769 Q EP
%%Page: 15 17
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(4.3.4. Session)72 85 R(Management)2.75 E F0
.367(Some of the properties in section 5 of ICCCM 1.1 are no)72 114.6 R
3.118(wo)-.275 G .368(bsolete, and ne)-3.118 F 3.118(wp)-.275 G .368
(roperties for session man-)-3.118 F(agement ha)72 127.6 Q .33 -.165
(ve b)-.22 H(een de\214ned.).165 E F1 2.75(4.4. ICE)72 166.6 R(\(Inter)
2.75 E(-Client Exchange\))-.407 E F0 .609(ICE pro)72 196.2 R .609
(vides a common frame)-.165 F -.11(wo)-.275 G .609(rk to b).11 F .609
(uild protocols on.)-.22 F .608
(It supplies authentication, byte order ne)6.108 F(gotia-)-.165 E 1.841
(tion, v)72 209.2 R 1.841(ersion ne)-.165 F 1.841
(gotiation, and error reporting con)-.165 F -.165(ve)-.44 G 4.592
(ntions. It).165 F 1.842(supports multiple)4.592 F 1.842
(xing multiple protocols)-.165 F -.165(ove)72 222.2 S 3.053(ras).165 G
.303(ingle transport connection.)-3.053 F .303(ICElib pro)5.803 F .302
(vides a common interf)-.165 F .302
(ace to these mechanisms so that pro-)-.11 F
(tocol implementors need not rein)72 235.2 Q -.165(ve)-.44 G(nt them.)
.165 E(An)72 251.8 Q/F2 11/Times-Italic@0 SF(iceauth)3.677 E F0 .928
(program w)3.678 F .928
(as written to manipulate an ICE authority \214le; it is v)-.11 F .928
(ery similar to the)-.165 F F2(xauth)3.678 E F0(pro-)3.678 E(gram.)72
264.8 Q F1 2.75(4.5. SM)72 303.8 R(\(Session Management\))2.75 E F0
2.262(The X Session Management Protocol \(XSMP\) pro)72 333.4 R 2.261
(vides a uniform mechanism for users to sa)-.165 F 2.591 -.165(ve a)-.22
H(nd).165 E .357(restore their sessions using the services of a netw)72
346.4 R .357(ork-based session manager)-.11 F 5.857(.I)-.605 G 3.107(ti)
-5.857 G 3.107(sb)-3.107 G .357(uilt on ICE.)-3.327 F .357(SMlib is)
5.857 F(the C interf)72 359.4 Q(ace to the protocol.)-.11 E
(There is also support for XSMP in Xt.)5.5 E 2.75(As)72 376 S
(imple session manager)-2.75 E(,)-.44 E F2(xsm)2.75 E F0(is included in)
2.75 E F1(xc/w)2.75 E(orkInPr)-.11 E(ogr)-.198 E(ess/xsm)-.198 E F0(.)A
3.426(An)72 392.6 S 1.226 -.275(ew p)-3.426 H .675(rotocol, rstart, gre\
atly simpli\214es the task of starting applications on remote machines.)
.275 F .675(It is b)6.175 F(uilt)-.22 E .645(upon already e)72 405.6 R
.645(xisting remote e)-.165 F -.165(xe)-.165 G .645
(cution protocols such as).165 F F2 -.11(rs)3.395 G(h).11 E F0 6.145(.T)
C .645(he most important feature that it adds is)-6.145 F
(the ability to pass en)72 418.6 Q(vironment v)-.44 E
(ariables and authentication data to the applications being started.)
-.275 E F1 2.75(4.6. Input)72 457.6 R(Method Pr)2.75 E(otocol)-.198 E F0
.16(Some languages need comple)72 474.2 R 2.91(xp)-.165 G .16
(re-editing input methods, and such an input method may be implemented)
-2.91 F .249(separately from applications in a process called an Input \
Method \(IM\) Serv)72 487.2 R(er)-.165 E 5.749(.T)-.605 G .249
(he IM Serv)-5.749 F .25(er handles the)-.165 F .681
(display of pre-edit te)72 500.2 R .68(xt and the user')-.165 F 3.43(si)
-.605 G .68(nput operation.)-3.43 F .68
(The Input Method \(IM\) Protocol standardizes the)6.18 F
(communication between the IM Serv)72 513.2 Q
(er and the IM library link)-.165 E(ed with the application.)-.11 E .9
(The IM Protocol is a completely ne)72 529.8 R 3.65(wp)-.275 G .9
(rotocol, based on e)-3.65 F .9(xperience with R5')-.165 F 3.65(ss)-.605
G .9(ample implementations.)-3.65 F(The follo)72 542.8 Q(wing ne)-.275 E
2.75(wf)-.275 G(eatures are added, be)-2.75 E
(yond the mechanisms in the R5 sample implementations:)-.165 E 21.15
<8354>72 559.4 S(he IM Serv)-21.15 E(er can support an)-.165 E 2.75(yo)
-.165 G 2.75(fs)-2.75 G -2.365 -.275(ev e)-2.75 H
(ral transports for connection with the IM library).275 E(.)-.715 E
21.15<8342>72 576 S(oth the IM Serv)-21.15 E
(er and clients can authenticate each other for security)-.165 E(.)-.715
E 21.15<8341>72 592.6 S(client can connect to an IM Serv)-18.4 E
(er without restarting e)-.165 E -.165(ve)-.275 G 2.75(ni).165 G 2.75
(fi)-2.75 G 2.75(ts)-2.75 G(tarts up before the IM Serv)-2.75 E(er)-.165
E(.)-.605 E 21.15<8341>72 609.2 S(client can initiate string con)-18.4 E
-.165(ve)-.44 G(rsion to the IM Serv).165 E(er for re-con)-.165 E -.165
(ve)-.44 G(rsion of te).165 E(xt.)-.165 E 21.15<8341>72 625.8 S 1.441
(client can specify some k)-16.959 F -.165(ey)-.11 G 4.191(sa).165 G
4.191(sh)-4.191 G 1.441(ot k)-4.191 F -.165(ey)-.11 G 1.441
(s, which can be used to escape from the normal input).165 F
(method processing re)97 638.8 Q -.055(ga)-.165 G
(rdless of the input method state.).055 E 1.154(The R6 sample implement\
ation for the internationalization support in Xlib has a ne)72 655.4 R
3.905(wp)-.275 G(lugg)-3.905 E 1.155(able frame-)-.055 F -.11(wo)72
668.4 S 1.726(rk, with the capability of loading and switching locale o\
bject modules dynamically).11 F 7.225(.F)-.715 G 1.725(or backw)-7.39 F
(ard)-.11 E(compatibility)72 681.4 Q 3.731(,t)-.715 G .982(he R6 sample\
 implementation can support the R5 protocols by switching to IM modules)
-3.731 F .41(supporting those protocols.)72 694.4 R .41
(In addition, the frame)5.91 F -.11(wo)-.275 G .41(rk pro).11 F .41
(vides the follo)-.165 F .41(wing ne)-.275 F 3.16(wf)-.275 G .41
(unctions and mecha-)-3.16 F(nisms:)72 707.4 Q(15)300.5 769 Q EP
%%Page: 16 18
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E 2.75(XL)72 85 S(ocale database format:)-2.75 E .812
(An X Locale database format is de\214ned, and the subset of a user')97
98 R 3.563(se)-.605 G -.44(nv)-3.563 G .813(ironment dependent on lan-)
.44 F .086(guage is pro)97 111 R .086(vided as a plain ASCII te)-.165 F
.086(xt \214le.)-.165 F -1.21(Yo)5.586 G 2.836(uc)1.21 G .086
(an customize the beha)-2.836 F .086(vior of Xlib without chang-)-.22 F
(ing Xlib itself.)97 124 Q(ANSI C and non-ANSI C bindings)72 140.6 Q
1.929(The common set of methods and structures are de\214ned, which bin\
d the X locale to the system)97 153.6 R 1.403
(locales within libc, and a frame)97 166.6 R -.11(wo)-.275 G 1.402
(rk for implementing this common set under non-ANSI C base).11 F
(system is pro)97 179.6 Q(vided.)-.165 E(Con)72 196.2 Q -.165(ve)-.44 G
(rters).165 E .205
(The sample implementation has a mechanism to support v)97 209.2 R .205
(arious encodings by plugg)-.275 F .206(able con)-.055 F -.165(ve)-.44 G
(rters,).165 E(and pro)97 222.2 Q(vides the follo)-.165 E(wing con)-.275
E -.165(ve)-.44 G(rters:).165 E 2.75(-L)141.25 241.2 S(ight weight con)
-2.75 E -.165(ve)-.44 G(rter for C and ISO 8859).165 E 2.75(-G)141.25
254.2 S(eneric con)-2.75 E -.165(ve)-.44 G(rter \(relati).165 E -.165
(ve)-.275 G(ly slo).165 E(w\) for other encoding)-.275 E 2.75(-H)141.25
267.2 S(igh performance con)-2.75 E -.165(ve)-.44 G
(rter for Shift-JIS and EUC).165 E 2.75(-C)141.25 280.2 S(on)-2.75 E
-.165(ve)-.44 G(rter for UCS-2 de\214ned in ISO/IEC 10646-1).165 E -1.21
(Yo)97 299.2 S 2.75(uc)1.21 G(an add your con)-2.75 E -.165(ve)-.44 G
(rter using this mechanism for your speci\214c performance requirement.)
.165 E(Locale modules)72 315.8 Q .388(The library is implemented such t\
hat input methods and output methods are separated and are inde-)97
328.8 R 1.72(pendent of each other)97 341.8 R 7.22(.T)-.605 G 1.72
(herefore, an output-only client does not link with the IM code, and an)
-7.22 F .557(input-only client does not link with the OM code.)97 354.8
R .557(Locale modules can be loaded on demand if the)6.057 F
(platform supports dynamic loading.)97 367.8 Q -.385(Tr)72 384.4 S
(ansport Layer).385 E .347(There are se)97 397.4 R -.165(ve)-.275 G .347
(ral kinds of transports for connection between the IM library and the \
IM Serv).165 F(er)-.165 E 5.847(.T)-.605 G(he)-5.847 E .022(IM Protocol\
 is independent of a speci\214c transport layer protocol, and the sampl\
e implementation has)97 410.4 R 3.294(am)97 423.4 S .544
(echanism to permit an IM Serv)-3.294 F .544
(er to de\214ne the transports which the IM Serv)-.165 F .545
(er is willing to use.)-.165 F
(The sample implementation supports transport o)97 436.4 Q -.165(ve)
-.165 G 2.75(rt).165 G(he X protocol, TCP/IP and DECnet.)-2.75 E .342
(There are IM Serv)72 453 R .341(ers for Japanese and for K)-.165 F .341
(orean, internationalized clients using IM services, and an IM)-.385 F
(Serv)72 466 Q .615(er de)-.165 F -.165(ve)-.275 G(loper').165 E 3.365
(sk)-.605 G .615(it in contrib)-3.365 F 6.115(.T)-.44 G .615(he IM Serv)
-6.115 F .616(er de)-.165 F -.165(ve)-.275 G(loper').165 E 3.366(sk)
-.605 G .616(it hides the details of the IM Protocol and)-3.366 F 1.486
(the transport layer protocols, and hides the dif)72 479 R 1.486
(ferences between the R5 and R6 protocols from the IM)-.275 F(Serv)72
492 Q(er de)-.165 E -.165(ve)-.275 G(loper).165 E 2.75(,s)-.44 G 2.75
(ot)-2.75 G(hat an IM de)-2.75 E -.165(ve)-.275 G
(loper has an easier task in de).165 E -.165(ve)-.275 G(loping ne).165 E
2.75(wI)-.275 G 2.75(MS)-2.75 G(erv)-2.75 E(ers.)-.165 E/F1 11
/Times-Bold@0 SF 2.75(4.7. X)72 531 R(Logical F)2.75 E(ont Description)
-.275 E F0 .47(The X Logical F)72 560.6 R .47(ont Description has been \
enhanced to include general 2D linear transformations, charac-)-.165 F
(ter set subsets, and support for polymorphic fonts.)72 573.6 Q(See)5.5
E F1(xc/doc/specs/XLFD/xlfd.tbl.ms)2.75 E F0(for details.)2.75 E F1 2.75
(4.8. SYNC)72 612.6 R(extension)2.75 E F0 1.793(The Synchronization e)72
642.2 R 1.793(xtension lets clients synchronize via the X serv)-.165 F
(er)-.165 E 7.292(.T)-.605 G 1.792(his eliminates the netw)-7.292 F(ork)
-.11 E .834(delays and the dif)72 655.2 R .834
(ferences in synchronization primiti)-.275 F -.165(ve)-.275 G 3.585(sb)
.165 G .835(etween operating systems.)-3.585 F .835(The e)6.335 F .835
(xtension pro-)-.165 F .853
(vides a general Counter resource; clients can alter the v)72 668.2 R
.852(alue of a Counter)-.275 F 3.602(,a)-.44 G .852
(nd can block their e)-3.602 F -.165(xe)-.165 G(cution).165 E .015
(until a Counter reaches a speci\214c threshold.)72 681.2 R .015
(Thus, for e)5.515 F .016(xample, tw)-.165 F 2.766(oc)-.11 G .016
(lients can share a Counter initialized)-2.766 F .237
(to zero, one client can dra)72 694.2 R 2.987(ws)-.165 G .237
(ome graphics and then increment the Counter)-2.987 F 2.987(,a)-.44 G
.236(nd the other client can block)-2.987 F
(until the Counter reaches a v)72 707.2 Q(alue of one and then dra)-.275
E 2.75(ws)-.165 G(ome additional graphics.)-2.75 E(16)300.5 769 Q EP
%%Page: 17 19
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(4.9. BIG-REQ)72 85 R(UESTS extension)-.11 E
F0 1.851(The standard X protocol only allo)72 114.6 R 1.851
(ws requests up to 2)-.275 F/F2 8/Times-Roman@0 SF(18)-4 I F0 1.852
(bytes long.)4.602 4 N 4.602(An)7.352 G 2.402 -.275(ew p)-4.602 H 1.852
(rotocol e).275 F 1.852(xtension, BIG-)-.165 F(REQ)72 127.6 Q 1.165
(UESTS, has been added that allo)-.11 F 1.165(ws a client to e)-.275 F
1.164(xtend the length \214eld in protocol requests to be a)-.165 F
(32-bit v)72 140.6 Q 2.75(alue. This)-.275 F(useful for PEX and other e)
2.75 E(xtensions that transmit comple)-.165 E 2.75(xi)-.165 G
(nformation to the serv)-2.75 E(er)-.165 E(.)-.605 E F1 2.75
(4.10. XC-MISC)72 179.6 R(extension)2.75 E F0 2.96(An)72 209.2 S .76
-.275(ew e)-2.96 H .21(xtension, XC-MISC, allo).11 F .211
(ws clients to get back ID ranges from the serv)-.275 F(er)-.165 E 5.711
(.X)-.605 G .211(lib handles this auto-)-5.711 F .278
(matically under the co)72 222.2 R -.165(ve)-.165 G 3.028(rs. This).165
F .278(is useful for long-running applications that use man)3.028 F
3.028(yI)-.165 G .278(Ds o)-3.028 F -.165(ve)-.165 G 3.028(rt).165 G
.278(heir life-)-3.028 F(time.)72 235.2 Q F1 2.75(4.11. XTEST)72 274.2 R
(extension)2.75 E F0(The XTEST e)72 303.8 Q
(xtension, which \214rst shipped as a patch to Release 5, is included.)
-.165 E F1 2.75(4.12. T)72 342.8 R -.198(re)-.814 G 2.75(eR).198 G(eor)
-2.75 E(ganization)-.11 E F0(Man)72 372.4 Q 3.382(yo)-.165 G 3.382(ft)
-3.382 G .632(he directories under)-3.382 F F1(xc/)3.382 E F0 .632
(\(renamed from)3.382 F F1(mit/)3.382 E F0 3.382(\)h)C -2.475 -.22(av e)
-3.382 H .633(been mo)3.603 F -.165(ve)-.165 G 3.383(d. See).165 F .633
(the section)3.383 F F1 .633(The XC T)3.383 F -.198(re)-.814 G(e).198 E
F0 1.005(for the ne)72 385.4 R 3.755(wl)-.275 G 3.755(ayout. The)-3.755
F(reor)3.755 E -.055(ga)-.198 G 1.005
(nization has simpli\214ed dependencies in the b).055 F 1.005
(uild process.)-.22 F 1.005(Once you get)6.505 F(used to the ne)72 398.4
Q 2.75(wl)-.275 G(ayout, things will be easier to \214nd.)-2.75 E -1.221
(Va)72 415 S .21(rious \214lenames ha)1.221 F .54 -.165(ve b)-.22 H .21
(een changed to minimize name con\215icts on systems that limit \214le \
names to eight).165 F(characters, a period, and three more characters.)
72 428 Q(Con\215icts remain for v)5.5 E(arious header \(.h\) \214les.)
-.275 E F1 2.75(4.13. Con\214guration)72 467 R(Files)2.75 E F0 .35
(The con\214guration \214les ha)72 496.6 R .68 -.165(ve c)-.22 H .35
(hanged quite a bit, we hope in a mostly compatible f).165 F 3.099
(ashion. The)-.11 F .349(main con-)3.099 F 1.076(\214g \214les are no)72
509.6 R 3.827(wi)-.275 G(n)-3.827 E F1(xc/con\214g/cf)3.827 E F0 3.827
(,i)C(mak)-3.827 E 3.827(es)-.11 G 1.077(ources are in)-3.827 F F1
(xc/con\214g/imak)3.827 E(e)-.11 E F0 3.827(,a)C 1.077(nd mak)-3.827 F
1.077(edepend sources are in)-.11 F F1(xc/con\214g/mak)72 522.6 Q
(edepend)-.11 E F0 5.947(.T)C(he)-5.947 E/F3 11/Times-Italic@0 SF(lndir)
3.197 E F0 .447(program \(for creating link trees\) is in)3.197 F F1
(xc/con\214g/util)3.196 E F0 3.196(;t)C .446(here is a)-3.196 F F1(Mak)
3.196 E(e-)-.11 E(\214le.ini)72 535.6 Q F0 .366
(in that directory that may be useful to get)3.115 F F3(lndir)3.116 E F0
-.22(bu)3.116 G .366(ilt the \214rst time \(before you b).22 F .366
(uild the rest of the)-.22 F(tree\).)72 548.6 Q .534(The rules for b)72
565.2 R .534(uilding libraries ha)-.22 F .864 -.165(ve c)-.22 H .534
(hanged a lot; it is no).165 F 3.283(wm)-.275 G .533
(uch easier to add a ne)-3.283 F 3.283(wl)-.275 G .533
(ibrary to the sys-)-3.283 F(tem.)72 578.2 Q(The selection of)72 594.8 Q
F3(vendor)2.75 E F1(.cf)A F0(\214le has mo)2.75 E -.165(ve)-.165 G 2.75
(df).165 G(rom)-2.75 E F1(Imak)2.75 E(e.tmpl)-.11 E F0(to a ne)2.75 E(w)
-.275 E F1(Imak)2.75 E(e.cf)-.11 E F0(.)A .421(The con\214g v)72 611.4 R
.421(ariable that w)-.275 F .421(as called Serv)-.11 F .422
(erOSDe\214nes in R5 has been renamed to Serv)-.165 F .422
(erExtraDe\214nes, and)-.165 F .779(applies globally to all X serv)72
624.4 R .779(er sources.)-.165 F .779(The v)6.279 F .779(ariable Serv)
-.275 F .778(erOSDe\214nes no)-.165 F 3.528(wa)-.275 G .778
(pplies just to the os direc-)-3.528 F(tory of the serv)72 637.4 Q(er)
-.165 E(.)-.605 E 1.48(There are a number of ne)72 654 R 4.23(wc)-.275 G
1.48(on\214g v)-4.23 F 1.48(ariables dealing with C++, all of which ha)
-.275 F 1.81 -.165(ve \231)-.22 H 1.481(Cplusplus\232 in their).165 F
(names.)72 667 Q(\231#\232 should no longer be thought of as a v)72
683.6 Q(alid comment character in Imak)-.275 E
(e\214les; use \231XCOMM\232 instead.)-.11 E .738(There are ne)72 700.2
R 3.488(wv)-.275 G .738(ariables \(e.g., HasPoll, HasBSD44Sock)-3.763 F
.737(ets, ThreadedX\) and rules \(SpecialCObjectRule\).)-.11 F(Read)72
713.2 Q F1(xc/con\214g/cf/README)2.75 E F0(for details.)2.75 E(17)300.5
769 Q EP
%%Page: 18 20
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E .538(The w)72 85 R .538(ay libraries get b)-.11 F .539
(uilt has changed: the unshared library .o')-.22 F 3.289(sa)-.605 G .539
(re no)-3.289 F 3.289(wp)-.275 G .539(laced in a subdirectory rather)
-3.289 F(than the shared library .o')72 98 Q(s.)-.605 E .782
(Multi-threaded programs can often just include)72 114.6 R/F1 11
/Times-Bold@0 SF(Thr)3.532 E(eads.tmpl)-.198 E F0 .782(in their)3.532 F
F1(Imak)3.532 E(e\214le)-.11 E F0 .782(to get the correct com-)3.532 F
(pile-time de\214nes and libraries.)72 127.6 Q F1 2.75(4.14. K)72 166.6
R(erber)-.275 E(os)-.198 E F0 .997(There is a ne)72 196.2 R 3.747(wa)
-.275 G .997(uthorization scheme for X clients, MIT)-3.747 F(-KERBER)
-1.012 E 3.747(OS-5. It)-.44 F .998(implements MIT')3.747 F 3.748(sK)
-.605 G(erberos)-4.023 E -1.221(Ve)72 209.2 S .586(rsion 5 user)1.221 F
.586(-to-user authentication.)-.22 F .586(See the)6.086 F/F2 11
/Times-Italic@0 SF(Xsecurity)3.336 E F0 .586
(manual page for details on ho)3.336 F 3.335(wK)-.275 G .585(erberos w)
-3.61 F(orks)-.11 E .309(in X.)72 222.2 R .309(As with an)5.809 F 3.059
(yo)-.165 G .309(ther authentication protocol,)-3.059 F F2(xdm)3.059 E
F0 .31(sets it up at login time, and Xlib uses it to authenti-)3.059 F
(cate the client to the X serv)72 235.2 Q(er)-.165 E(.)-.605 E .284
(If you ha)72 251.8 R .614 -.165(ve K)-.22 H .283
(erberos 5 on your system, set the HasKrb5 con\214g v)-.11 F .283
(ariable in)-.275 F F1(site.def)3.033 E F0 .283(to YES to enable K)3.033
F(er)-.275 E(-)-.22 E(beros support.)72 264.8 Q F1 2.75(4.15. X)72 303.8
R -.814(Tr)2.75 G(ansport Library \(xtrans\)).814 E F0 .397(The X T)72
333.4 R .398(ransport Library is intended to combine all system and tra\
nsport speci\214c code into a single place)-.385 F .35
(in the source tree.)72 346.4 R .349
(This API should be used by all libraries, clients and serv)5.85 F .349
(ers of the X W)-.165 F(indo)-.44 E 3.099(wS)-.275 G(ystem.)-3.099 E
.894(Note that this API is)72 359.4 R F2(not)3.644 E F0 .894(an X Conso\
rtium standard; it is merely in internal part of our implementation.)
3.644 F .416(Use of this API should allo)72 372.4 R 3.166(wt)-.275 G
.416(he addition of ne)-3.166 F 3.166(wt)-.275 G .416
(ypes of transports and support for ne)-3.166 F 3.165(wp)-.275 G .415
(latforms with-)-3.165 F(out making an)72 385.4 Q 2.75(yc)-.165 G
(hanges to the source e)-2.75 E(xcept in the X T)-.165 E
(ransport Interf)-.385 E(ace code.)-.11 E(The follo)72 402 Q
(wing areas ha)-.275 E .33 -.165(ve b)-.22 H(een updated to use xtrans:)
.165 E(lib/X11 \(including the Input Method code\))108 421 Q(lib/ICE)108
434 Q(lib/font/fc)108 447 Q(lib/FS)108 460 Q(XServ)108 473 Q(er/os)-.165
E(xfs/os)108 486 Q(The XDMCP code in xdm and the X serv)72 508.6 Q
(er has not been modi\214ed to use xtrans.)-.165 E
(No testing has been done for DECnet.)72 525.2 Q F1 2.75(4.16. Xlib)72
564.2 R F0 .8(Xlib no)72 593.8 R 3.55(ws)-.275 G .8
(upports multi-threaded access to a single display connection.)-3.55 F
.801(Xlib functions lock the display)6.3 F 2.134(structure, causing oth\
er threads calling Xlib functions to be suspended until the \214rst thr\
ead unlocks.)72 606.8 R .802(Threads inside Xlib w)72 619.8 R .802
(aiting to read to or write from the X serv)-.11 F .802(er do not k)
-.165 F .802(eep the display lock)-.11 F .803(ed, so for)-.11 F -.165
(ex)72 632.8 S(ample a thread hanging on XNe).165 E(xtEv)-.165 E
(ent will not pre)-.165 E -.165(ve)-.275 G
(nt other threads from doing output to the serv).165 E(er)-.165 E(.)
-.605 E .606
(Multi-threaded Xlib runs on SunOS 5.3, DEC OSF/1 1.3, Mach 2.5 V)72
649.4 R .606(ers 2.00.1, AIX 2.3, and Microsoft)-1.221 F -.44(Wi)72
662.4 S(ndo).44 E .4(ws NT 3.1.)-.275 F .4
(Locking for Xcms and I18N support has not been re)5.9 F(vie)-.275 E
3.151(wed. A)-.275 F -.165(ve)3.151 G .401(rsion of ico that can).165 F
(be compiled to use threads is in)72 675.4 Q F1(contrib/pr)2.75 E
(ograms/ico)-.198 E F0(.)A .572(The Display and GC structures ha)72 692
R .902 -.165(ve b)-.22 H .571
(een made opaque to normal application code; references to pri).165 F
-.275(va)-.275 G(te).275 E 6.331(\214elds will get compiler errors.)72
705 R -1.21(Yo)11.831 G 9.082(uc)1.21 G 6.332(an w)-9.082 F 6.332
(ork around some of these by compiling with)-.11 F(\255DXLIB_ILLEGAL_A)
72 718 Q(CCESS, b)-.44 E(ut better to \214x the of)-.22 E(fending code.)
-.275 E(18)300.5 769 Q EP
%%Page: 19 21
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E 1.342(The Xlib implementation has been changed to support a form of a\
synchronous replies, meaning that a)72 85 R .277(request can be sent of)
72 98 R 3.027(ft)-.275 G 3.027(ot)-3.027 G .277(he serv)-3.027 F(er)
-.165 E 3.027(,a)-.44 G .277
(nd then other requests can be generated without w)-3.027 F .277
(aiting for the \214rst)-.11 F 1.793(reply to come back.)72 111 R 1.793
(This is used to adv)7.293 F 1.793(antage in tw)-.275 F 4.542(on)-.11 G
2.342 -.275(ew f)-4.542 H 1.792(unctions, XInternAtoms and XGetAtom-)
.275 F 1.082(Names, which reduce what w)72 124 R 1.082
(ould otherwise require multiple round trips to the serv)-.11 F 1.083
(er do)-.165 F 1.083(wn to a single)-.275 F 1.808(round trip.)72 137 R
1.807(It is also used in some e)7.308 F 1.807
(xisting functions, such as XGetW)-.165 F(indo)-.44 E(wAttrib)-.275 E
1.807(utes, to reduce tw)-.22 F(o)-.11 E(round trips to just one.)72 150
Q .479(Lots of Xlib source \214les were renamed to \214t better on syst\
ems with short \214lenames.)72 166.6 R .479(The \231X\232 pre\214x w)
5.979 F(as)-.11 E
(dropped from most \214le names, and \231CIE\232 and \231T)72 179.6 Q
(ekHVC\232 pre\214x)-.77 E(es were dropped.)-.165 E(Support for using p\
oll\(\) rather than select\(\) is implemented, selected by the HasPoll \
con\214g option.)72 196.2 Q(The BIG-REQ)72 212.8 Q(UESTS e)-.11 E
(xtension is supported.)-.165 E(The follo)72 229.4 Q
(wing Xlib functions are ne)-.275 E 2.75(wi)-.275 G 2.75(nR)-2.75 G
(elease 6:)-2.75 E(XInternAtoms, XGetAtomNames)108 248.4 Q
(XExtendedMaxRequestSize)108 261.4 Q(XInitImage)108 274.4 Q
(XReadBitmapFileData)108 287.4 Q(IsPri)108 300.4 Q -.275(va)-.275 G(teK)
.275 E -.165(ey)-.275 G(padK).165 E -.165(ey)-.275 G(XCon)108 313.4 Q
-.165(ve)-.44 G(rtCase).165 E(XAddConnectionW)108 326.4 Q(atch, XRemo)
-.88 E -.165(ve)-.165 G(ConnectionW).165 E
(atch, XProcessInternalConnection)-.88 E(XInternalConnectionNumbers)108
339.4 Q(XInitThreads, XLockDisplay)108 352.4 Q 2.75(,X)-.715 G
(UnlockDisplay)-2.75 E(XOpenOM, XCloseOM)108 378.4 Q(XSetOMV)108 391.4 Q
(alues, XGetOMV)-1.221 E(alues)-1.221 E(XDisplayOfOM, XLocaleOfOM)108
404.4 Q(XCreateOC, XDestro)108 417.4 Q(yOC)-.11 E(XOMOfOC)108 430.4 Q
(XSetOCV)108 443.4 Q(alues, XGetOCV)-1.221 E(alues)-1.221 E
(XDirectionalDependentDra)108 456.4 Q(wing, XConte)-.165 E(xtualDra)
-.165 E(wing)-.165 E(XRe)108 469.4 Q(gisterIMInstantiateCallback, XUnre)
-.165 E(gisterIMInstantiateCallback)-.165 E(XSetIMV)108 482.4 Q(alues)
-1.221 E(XAllocIDs)108 508.4 Q(XESetBeforeFlush)108 521.4 Q(_XAllocT)108
534.4 Q(emp, _XFreeT)-.77 E(emp)-.77 E(Support for MIT)72 557 Q(-KERBER)
-1.012 E(OS-5 has been added.)-.44 E/F1 11/Times-Bold@0 SF 2.75
(4.17. Inter)72 596 R(nationalization)-.165 E F0 1.136
(Internationalization \(also kno)72 625.6 R 1.135
(wn as I18N, there being 18 letters between the)-.275 F/F2 11
/Times-Italic@0 SF(i)3.885 E F0(and)3.885 E F2(n)3.885 E F0 3.885(\)o)C
3.885(ft)-3.885 G 1.135(he X W)-3.885 F(indo)-.44 E(w)-.275 E 1.225
(System, which w)72 638.6 R 1.226
(as originally introduced in Release 5, has been signi\214cantly impro)
-.11 F -.165(ve)-.165 G 3.976(di).165 G 3.976(nR)-3.976 G 3.976(6. The)
-3.976 F(R6)3.976 E .623(I18N architecture follo)72 651.6 R .623(ws tha\
t in R5, being based on the locale model used in ANSI C and POSIX, with)
-.275 F .373(most of the I18N capability pro)72 664.6 R .373
(vided by Xlib)-.165 F 5.874(.R)-.44 G 3.124(5i)-5.874 G .374
(ntroduced a fundamental frame)-3.124 F -.11(wo)-.275 G .374
(rk for international-).11 F 1.087(ized input and output.)72 677.6 R
1.087(It could enable basic localization for left-to-right, non-conte)
6.587 F 1.087(xt sensiti)-.165 F -.165(ve)-.275 G 3.837(,8).165 G 1.087
(-bit or)-3.837 F 1.496(multi-byte codeset languages and cultural con)72
690.6 R -.165(ve)-.44 G 4.246(ntions. Ho).165 F(we)-.275 E -.165(ve)
-.275 G 2.376 -.44(r, i).165 H 4.246(td).44 G 1.497
(id not deal with all possible lan-)-4.246 F .478
(guages and cultural con)72 703.6 R -.165(ve)-.44 G 3.228(ntions. R6)
.165 F .477(also does not co)3.227 F -.165(ve)-.165 G 3.227(ra).165 G
.477(ll possible languages and cultural con)-3.227 F -.165(ve)-.44 G
(ntions,).165 E -.22(bu)72 716.6 S 3.765(tR).22 G 3.765(6c)-3.765 G
1.015(ontains substantial ne)-3.765 F 3.765(wX)-.275 G 1.015(lib interf)
-3.765 F 1.015
(aces to support I18N enhancements, in order to enable addi-)-.11 F
(tional language support and more practical localization.)72 729.6 Q(19)
300.5 769 Q EP
%%Page: 20 22
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E .371(The additional support is mainly in the area of te)72 85 R
.371(xt display)-.165 F 5.871(.I)-.715 G 3.121(no)-5.871 G .371
(rder to support multi-byte encodings, the)-3.121 F 1.559
(concept of a F)72 98 R 1.559(ontSet w)-.165 F 1.56
(as introduced in R5.)-.11 F 1.56
(In R6, Xlib enhances this concept to a more generalized)7.06 F .413
(notion of output methods and output conte)72 111 R 3.163(xts. Just)
-.165 F .412(as input methods and input conte)3.162 F .412
(xts support comple)-.165 F(x)-.165 E(te)72 124 Q .396
(xt input, output methods and output conte)-.165 F .396
(xts support comple)-.165 F 3.146(xa)-.165 G .397
(nd more intelligent te)-3.146 F .397(xt display)-.165 F 3.147(,d)-.715
G(ealing)-3.147 E 1.343(not only with multiple fonts b)72 137 R 1.343
(ut also with conte)-.22 F 1.343(xt dependencies.)-.165 F 1.343
(The result is a general frame)6.843 F -.11(wo)-.275 G 1.343(rk to).11 F
(enable bi-directional te)72 150 Q(xt and conte)-.165 E(xt sensiti)-.165
E .33 -.165(ve t)-.275 H -.165(ex).165 G 2.75(td).165 G(isplay)-2.75 E
(.)-.715 E/F1 11/Times-Bold@0 SF 2.75(4.18. Xt)72 189 R F0 .137(Support\
 has been added for participation in session management, with callbacks\
 to application functional-)72 218.6 R
(ity in response to messages from the session manager)72 231.6 Q(.)-.605
E 1.434(The entire library is no)72 248.2 R 4.184(wt)-.275 G 1.434
(hread-safe, allo)-4.184 F 1.433
(wing one thread at a time to enter the library and protecting)-.275 F
(global data as necessary from concurrent use.)72 261.2 Q .578
(Support is pro)72 277.8 R .579(vided for re)-.165 F .579(gistering e)
-.165 F -.165(ve)-.275 G .579(nt handlers for e).165 F -.165(ve)-.275 G
.579(nts generated by X protocol e).165 F .579(xtensions, and for)-.165
F(dispatching those e)72 290.8 Q -.165(ve)-.275 G
(nts to the appropriate widget.).165 E 2.776(Am)72 307.4 S .026
(echanism has also been added for dispatching e)-2.776 F -.165(ve)-.275
G .026(nts for non-widget dra).165 F -.11(wa)-.165 G .026
(bles \(such as pixmaps used).11 F(within a widget\) to a widget.)72
320.4 Q -1.1 -.88(Tw o)72 337 T(ne)5.245 E 4.365(ww)-.275 G 1.615
(idget methods for instance allocation and deallocation allo)-4.365 F
4.365(ww)-.275 G 1.615(idgets to be treated as C++)-4.365 F
(objects in a C++ en)72 350 Q(vironment.)-.44 E 4.313(An)72 366.6 S
2.113 -.275(ew i)-4.313 H(nterf).275 E 1.563(ace allo)-.11 F 1.563(ws b)
-.275 F 1.562(undled changes to the managed set of children of a Compos\
ite, reducing the)-.22 F
(visual disruption of multiple changes to geometry layout.)72 379.6 Q
(Se)72 396.2 Q -.165(ve)-.275 G .238(ral ne).165 F 2.988(wr)-.275 G .239
(esources ha)-2.988 F .569 -.165(ve b)-.22 H .239(een added to Shell wi\
dgets, making the library compliant with the Release 6).165 F 3.187
(ICCCM. P)72 409.2 R .437(arameterized tar)-.165 F .437
(gets of selections \(ne)-.198 F 3.187(wi)-.275 G 3.186(nR)-3.187 G .436
(elease 6\) and the MUL)-3.186 F .436(TIPLE tar)-1.012 F .436
(get are supported)-.198 F(with ne)72 422.2 Q 2.75(wA)-.275 G(PIs.)-2.75
E(Safe handling of POSIX signals and other asynchronous noti\214cations\
 is no)72 438.8 Q 2.75(wp)-.275 G(ro)-2.75 E(vided.)-.165 E 2.75(Ah)72
455.4 S(ook has been added to gi)-2.75 E .33 -.165(ve n)-.275 H
(oti\214cation of blocking in the e).165 E -.165(ve)-.275 G(nt manager)
.165 E(.)-.605 E 1.302(The client will be able to re)72 472 R 1.302
(gister callbacks on a per)-.165 F 1.303
(-display basis for noti\214cation of a lar)-.22 F 1.303(ge v)-.198 F
1.303(ariety of)-.275 F(operations in the X T)72 485 Q 2.75
(oolkit. This)-.88 F(feature is useful to e)2.75 E
(xternal agents such as screen readers.)-.165 E(Ne)72 501.6 Q 2.75(wS)
-.275 G(tring resource con)-2.75 E -.165(ve)-.44 G(rters: XtStringT).165
E(oGra)-.88 E(vity and XtCvtStringT)-.22 E(oRestartStyle.)-.88 E .444
(The \214le search path syntax has a ne)72 518.2 R 3.193(w%)-.275 G
3.193(Ds)-3.193 G .443(ubstitution that inserts the def)-3.193 F .443
(ault search path, making it easy)-.11 F
(to prepend and append to the def)72 531.2 Q(ault search path.)-.11 E
.718(The Xt implementation allo)72 547.8 R .718
(ws a con\214guration choice of poll or select for I/O multiple)-.275 F
.719(xing, selectable at)-.165 F
(compile time by the HasPoll con\214g option.)72 560.8 Q 1.169
(The Release 6 Xt implementation requires Release 6 Xlib)72 577.4 R
6.668(.S)-.44 G(peci\214cally)-6.668 E 3.918(,i)-.715 G 3.918(tu)-3.918
G 1.168(ses the follo)-3.918 F 1.168(wing ne)-.275 F 3.918(wX)-.275 G
(lib)-3.918 E 2.327(features: XInternAtoms instead of multiple XInternA\
tom calls where possible, input method support)72 590.4 R
(\(Xlib internal connections\), and tests for the XV)72 603.4 Q
(isibleHint in the \215ags of XWMHints.)-.66 E .199
(When linking with Xt, you no)72 620 R 2.948(wn)-.275 G .198
(eed to also link with SMlib and ICElib)-2.948 F 5.698(.T)-.44 G .198
(his is automatic if you use the)-5.698 F(XT)72 633 Q(OOLLIB mak)-.198 E
2.75(ev)-.11 G(ariable or Xa)-3.025 E(wClientLibs)-.165 E/F2 11
/Times-Italic@0 SF(imak)2.75 E(e)-.11 E F0 -.275(va)2.75 G
(riable in your).275 E F1(Imak)2.75 E(e\214les)-.11 E F0(.)A .213
(This implementation no longer allo)72 649.6 R .213
(ws NULL to be passed as the v)-.275 F .213(alue in the name/v)-.275 F
.213(alue pair in a request)-.275 F .667(to XtGetV)72 662.6 R 3.417
(alues. The)-1.221 F(def)3.417 E .666(ault beha)-.11 F .666
(vior is to print the error message \231NULL Ar)-.22 F(gV)-.198 E .666
(al In XtGetV)-1.221 F .666(alues\232 and)-1.221 F -.165(ex)72 675.6 S
3.298(it. T).165 F 3.299(or)-.88 G .549(estore the R5 beha)-3.299 F
(vior)-.22 E 3.299(,s)-.44 G .549(et the con\214g v)-3.299 F(ariable)
-.275 E F1(GetV)3.299 E(aluesBC)-1.012 E F0(in)3.299 E F1(site.def)3.299
E F0 6.049(.T)C .549(he old beha)-6.049 F .549(vior w)-.22 F(as)-.11 E
(ne)72 688.6 Q -.165(ve)-.275 G 2.75(rp).165 G
(art of the Xt speci\214cation, b)-2.75 E
(ut some applications erroneously rely on it.)-.22 E 2.368
(Motif 1.2 de\214nes the types XtT)72 705.2 R(ypedAr)-.88 E 5.118(ga)
-.198 G 2.368(nd XtT)-5.118 F(ypedAr)-.88 E 2.368(gList in V)-.198 F
(aSimpleP)-1.221 E 5.118(.h. These)-1.221 F 2.368(types are no)5.118 F
(w)-.275 E 1.323(de\214ned in IntrinsicP)72 718.2 R 4.073(.h. T)-1.221 F
4.073(ow)-.88 G 1.323(ork around the con\215ict, in Motif V)-4.183 F
1.323(aSimple.c, if IntrinsicP)-1.221 F 1.324(.h is not already)-1.221 F
4.601(included before V)72 731.2 R(aSimpleP)-1.221 E 4.6(.h, do so.)
-1.221 F 4.6(In V)10.1 F(aSimpleP)-1.221 E 4.6(.h, fence of)-1.221 F
7.35(ft)-.275 G 4.6(he type declarations with #if)-7.35 F(20)300.5 769 Q
EP
%%Page: 21 23
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(\(XT_REVISION < 6\) and #endif.)72 85 Q
(See Chapter 13 of the Xt speci\214cation for more details.)72 101.6 Q
/F1 11/Times-Bold@0 SF 2.75(4.19. Xaw)72 140.6 R F0 .169(Some minor b)72
170.2 R .169(ugs ha)-.22 F .499 -.165(ve b)-.22 H .169(een \214x).165 F
2.919(ed. Please)-.165 F .17(note that the Athena W)2.919 F .17
(idgets ha)-.44 F .5 -.165(ve b)-.22 H .17(een and continue to be lo)
.165 F(w)-.275 E 1.996(on our priority list; therefore man)72 183.2 R
4.746(yb)-.165 G 1.996(ugs remain and man)-4.966 F 4.746(yr)-.165 G
1.995(equests for enhancements ha)-4.746 F 2.325 -.165(ve n)-.22 H 1.995
(ot been).165 F(implemented.)72 196.2 Q -1.375 -.77(Te x)72 212.8 T
3.547(ta).77 G .797(nd P)-3.547 F .797(anner widget translations ha)
-.165 F 1.127 -.165(ve b)-.22 H .797(een augmented to include k).165 F
-.165(ey)-.11 G .797(pad cursor k).165 F -.165(ey)-.11 G .797
(syms in addition).165 F(to the normal cursor k)72 225.8 Q -.165(ey)-.11
G(syms.).165 E(The Clock, Logo, and Mailbox widgets ha)72 242.4 Q .33
-.165(ve m)-.22 H -.165(ove).165 G 2.75(dt).165 G 2.75(ot)-2.75 G
(heir respecti)-2.75 E .33 -.165(ve a)-.275 H(pplications.).165 E 1.277
(Internationalization support is no)72 259 R 4.027(wi)-.275 G 4.027
(ncluded. Xa)-4.027 F 4.026(wu)-.165 G 1.276(ses nati)-4.026 F 1.606
-.165(ve w)-.275 H 1.276(idechar support when a).165 F -.275(va)-.22 G
1.276(ilable, other).275 F(-)-.22 E
(wise it uses the Xlib widechar routines.)72 272 Q
(Per system speci\214cs are set in Xa)5.5 E(wI18n.h.)-.165 E
(The shared library major v)72 288.6 Q(ersion number on SunOS 4 has bee\
n incremented because of these changes.)-.165 E F1 2.75(4.19.1. AsciiT)
72 327.6 R(ext)-1.012 E F0 2.436(The name AsciiT)72 357.2 R -.165(ex)
-.77 G 5.186(ti).165 G 5.186(sn)-5.186 G 2.986 -.275(ow a m)-5.186 H
(isnomer).275 E 5.186(,b)-.44 G 2.437(ut has been retained for backw)
-5.406 F 2.437(ard compatibility)-.11 F 7.937(.A)-.715 G(ne)-2.75 E(w)
-.275 E 1.341(resource, XtNinternational, has been added.)72 370.2 R
1.341(If the v)6.841 F 1.341(alue of the XtNinternational resource is F)
-.275 F 1.34(alse \(the)-.165 F(def)72 383.2 Q .495(ault\) AsciiSrc and\
 AsciiSink source and sink widgets are created, and the widget beha)-.11
F -.165(ve)-.22 G 3.246(sa).165 G 3.246(si)-3.246 G 3.246(td)-3.246 G
.496(id for)-3.246 F 3.002(R5. If)72 396.2 R .252(the v)3.002 F .252
(alue is T)-.275 F .251
(rue, MultiSrc and MultiSink source and sink widgets are created.)-.385
F .251(The MultiSrc wid-)5.751 F .367
(get will connect to an Input Method Serv)72 409.2 R .367
(er if one is a)-.165 F -.275(va)-.22 G .368(ilable, or if one isn').275
F 3.118(ta)-.198 G -.275(va)-3.338 G .368(ilable, it will use an Xlib)
.275 F 1.216(internal pseudo input method that, at a minimum, does comp\
ose processing.)72 422.2 R 1.215(Application programmers)6.716 F(who wi\
sh to use this feature will need to add a call to XtSetLanguageProc to \
their programs.)72 435.2 Q .859
(The symbolic constant FMT8BIT has been changed to Xa)72 451.8 R .859
(wFmt8Bit to be consistent with the ne)-.165 F 3.61(ws)-.275 G(ym-)-3.61
E .218(bolic constant Xa)72 464.8 R(wFmtW)-.165 E 2.968(ide. FMT8BIT)
-.44 F .218(remains for backw)2.968 F .218(ards compatibility)-.11 F
2.968(,h)-.715 G -.275(ow)-2.968 G -2.365 -.275(ev e).275 H 2.967(ri)
.275 G .217(ts use is discour)-2.967 F(-)-.22 E(aged as it will e)72
477.8 Q -.165(ve)-.275 G(ntually be remo).165 E -.165(ve)-.165 G 2.75
(df).165 G(rom the implementation.)-2.75 E(See the Xa)5.5 E 2.75(wm)
-.165 G(anual for details.)-2.75 E F1 2.75(4.19.2. Command,)72 516.8 R
(Label, List, MenuButton, Repeater)2.75 E 2.75(,S)-1.012 G(meBSB, and T)
-2.75 E(oggle)-1.012 E F0 -1.1 -.88(Tw o)72 546.4 T(ne)3.883 E 3.003(wr)
-.275 G .253(esources ha)-3.003 F .583 -.165(ve b)-.22 H .253
(een added, XtNinternational and XtNfontSet.).165 F .254
(If XtNinternational is set to T)5.753 F(rue)-.385 E
(the widget displays its te)72 559.4 Q
(xt using the speci\214ed fontset.)-.165 E(See the Xa)5.5 E 2.75(wm)
-.165 G(anual for details.)-2.75 E F1 2.75(4.20. PEX)72 598.4 R F0 .074
(In discussing PEX it is important to understand the nature of 3D graph\
ics and the purpose of the e)72 628 R(xistence)-.165 E 1.212
(of the PEX SI.)72 641 R 1.212(The type of graphics for which PEX pro)
6.712 F 1.212(vides support, while capable of being done in)-.165 F
(softw)72 654 Q .307
(are, is most commonly found in high performance hardw)-.11 F 3.057
(are. Creation)-.11 F .306(and maintenance of softw)3.056 F(are)-.11 E
1.558(rendering code is costly and resource consumpti)72 667 R -.165(ve)
-.275 G 7.058(.T).165 G 1.558
(he original Sample Implementation for the PEX)-7.058 F 1.113
(Protocol 5.0 w)72 680 R 1.113
(as primarily intended for consumption by v)-.11 F 1.113
(endors of the X Consortium who intended to)-.165 F(pro)72 693 Q .831
(vide PEX products for sale.)-.165 F .831(This implementation w)6.331 F
.831(as intended to be f)-.11 F .831(airly complete ho)-.11 F(we)-.275 E
-.165(ve)-.275 G 3.582(ri).165 G 3.582(tw)-3.582 G(as)-3.692 E 1.366
(understood that v)72 706 R 1.366
(endors who intended to commercialize it w)-.165 F 1.366
(ould dispose of portions of it, often f)-.11 F(airly)-.11 E 1.537
(substantial ones.)72 719 R 1.537(It w)7.037 F 1.537
(as therefore understood that functionality most lik)-.11 F 1.538
(ely to be disposed of by them)-.11 F 1.701(might be ne)72 732 R 1.701
(glected in the de)-.165 F -.165(ve)-.275 G 1.701
(lopment of a Sample Implementation.).165 F 1.7(As PEX is no)7.2 F 4.45
(waf)-.275 G 1.7(airly mature)-4.56 F(21)300.5 769 Q EP
%%Page: 22 24
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E .156(standard distrib)72 85 R .156
(uted by most if not all major v)-.22 F .157
(endors, and the standard itself has e)-.165 F -.22(vo)-.275 G(lv).22 E
.157(ed from the 5.0 pro-)-.165 F .387(tocol le)72 98 R -.165(ve)-.275 G
3.137(lt).165 G 3.137(ot)-3.137 G .387(he 5.1 protocol le)-3.137 F -.165
(ve)-.275 G .387(l, the X Consortium and its supporting v).165 F .386
(endors ha)-.165 F .716 -.165(ve r)-.22 H .386(ecognized a need).165 F(\
to focus on certain portions of the PEX technology while deemphasizing \
others.)72 111 Q 1.359
(This release incorporates PEX functionality based upon the PEX 5.1 le)
72 127.6 R -.165(ve)-.275 G 4.109(lp).165 G 4.109(rotocol. The)-4.109 F
1.359(PEX Sample)4.109 F 1.769(Implementation \(SI\) is composed of se)
72 140.6 R -.165(ve)-.275 G 1.769(ral parts.).165 F 1.769
(The major components are the e)7.269 F 1.769(xtension to the X)-.165 F
(Serv)72 153.6 Q(er)-.165 E 3.061(,w)-.44 G .312(hich implements the PE\
X 5.1 protocol, and the client side API, which pro)-3.061 F .312
(vides a mechanism by)-.165 F(which clients can generate PEX protocol.)
72 166.6 Q 1.064(The API no)72 183.2 R 3.814(wp)-.275 G(ro)-3.814 E
1.064(vided with the PEX-SI is called PEXlib)-.165 F 6.564(.T)-.44 G
1.063(his is a change from R5 which shipped an)-6.564 F .556
(API based upon the ISO IS PHIGS and PHIGS PLUS Bindings.)72 196.2 R
.557(That API has been mo)6.056 F -.165(ve)-.165 G 3.307(dt).165 G 3.307
(oc)-3.307 G .557(ontrib in)-3.307 F -.11(fa)72 209.2 S -.22(vo)-.11 G
3.712(ro).22 G 3.712(ft)-3.712 G .962(he PEXlib API based upon the PEXl\
ib 5.1 binding, which itself is an X Consortium standard.)-3.712 F 1.986
(The PEXlib binding is a lo)72 222.2 R(wer)-.275 E(-le)-.22 E -.165(ve)
-.275 G 4.736(li).165 G(nterf)-4.736 E 1.986(ace than the pre)-.11 F
1.986(vious PHIGS binding w)-.275 F 1.987(as and maps more)-.11 F .264
(closely to the PEX protocol itself.)72 235.2 R .263
(It supports immediate mode rendering functionality as well as the pre-)
5.764 F .416(vious PHIGS w)72 248.2 R .416(orkstation modes and is ther\
efore suited to a wider range of applications.)-.11 F .417
(It is also suited)5.917 F .981(for the de)72 261.2 R -.165(ve)-.275 G
.981(lopment of higher le).165 F -.165(ve)-.275 G 3.731(lA).165 G 3.731
(PIs. There)-3.731 F .981(are in f)3.731 F .98
(act commercial implementations of the PHIGS)-.11 F
(API which utilize the PEXlib API.)72 274.2 Q .121
(The PHIGS API based v)72 290.8 R .121
(eri\214cation tool called InsPEX is mo)-.165 F -.165(ve)-.165 G 2.871
(dt).165 G 2.871(oc)-2.871 G(ontrib)-2.871 E 5.621(.A)-.44 G .122
(prototype of a possible ne)-2.749 F(w)-.275 E(tool called suspe)72
303.8 Q 2.75(xi)-.165 G 2.75(si)-2.75 G 2.75(nt)-2.75 G(he directory)
-2.75 E/F1 11/Times-Bold@0 SF(contrib/test/suspex)2.75 E F0 5.5(.S)C
(uspe)-5.5 E 2.75(xi)-.165 G 2.75(sP)-2.75 G(EXlib based.)-2.75 E
(Demo programs are no longer supported and ha)72 320.4 Q .33 -.165(ve m)
-.22 H -.165(ove).165 G 2.75(dt).165 G 2.75(oc)-2.75 G(ontrib)-2.75 E(.)
-.44 E F1 2.75(4.20.1. PEX)72 359.4 R(Standards and Functionality)2.75 E
F0 .969(This release conforms to the PEX Protocol Speci\214cation 5.1 t\
hough it does not implement all the func-)72 389 R
(tionality speci\214ed therein.)72 402 Q
(The release comes with 2 fonts, Roman and Roman_M \(see the)72 418.6 Q
/F2 11/Times-Italic@0 SF(User')2.75 E 2.75(sG)-.44 G(uide)-2.75 E F0
(for more details\).)2.75 E .229(As discussed brie\215y abo)72 435.2 R
.559 -.165(ve c)-.165 H .23
(ertain functionality is not implemented in this Sample Implementation.)
.165 F(Most)5.73 E .604(notably Hidden Line, Hidden Surf)72 448.2 R .603
(ace Remo)-.11 F -.275(va)-.165 G 3.353(li).275 G 3.353(sn)-3.353 G .603
(ot implemented.)-3.353 F .603(This is a result of both architectural)
6.103 F .673(decisions and the f)72 461.2 R .674(act that it surely w)
-.11 F .674(ould ha)-.11 F 1.004 -.165(ve b)-.22 H .674
(een replaced by v).165 F .674(endors with proprietary code.)-.165 F
3.424(Ac)6.174 G(on-)-3.424 E(trib)72 474.2 Q .177(uted implementation \
which supports some of the HLHSR functionality utilizing a Z b)-.22 F
(uf)-.22 E .177(fer based tech-)-.275 F(nique is a)72 487.2 Q -.275(va)
-.22 G(ilable for ftp from ftp.x.or).275 E 2.75(gi)-.198 G 2.75(nt)-2.75
G(he directory contrib/PEX_HLHSR.)-2.75 E(This release does not support\
 monochrome displays, though it does support 8 bit and 24 bit color)72
503.8 Q(.)-.605 E(Other functionality not complete in this release is:)
72 520.4 Q(Backf)108 539.4 Q(ace Attrib)-.11 E
(utes and Distinguish Flag)-.22 E -.165(Fo)108 552.4 S
(nt sharing between clients).165 E -.165(Pa)108 565.4 S
(tterns, Hatches and associated attrib).165 E(utes)-.22 E -.385(Tr)108
578.4 S(ansparenc).385 E(y)-.165 E(Depth Cueing for Mark)108 591.4 Q
(ers)-.11 E .906(Double Buf)72 614 R .906(fering is a)-.275 F -.275(va)
-.22 G .906(ilable for the PHIGS W).275 F .907
(orkstation subsets directly through the w)-.88 F 3.657(orkstation. The)
-.11 F -.22(bu)72 627 S -.275(ff).22 G .265
(er mode should be set on when creating the w).275 F 3.015
(orkstation. F)-.11 F .265(or immediate mode users double b)-.165 F(uf)
-.22 E(fering)-.275 E(is achie)72 640 Q -.165(ve)-.275 G 2.75(dv).165 G
(ia the Multi Buf)-2.75 E
(fering Extension \(aka MBX\) found in the directory)-.275 E F1
(xc/lib/Xext)2.75 E F0(.)A 1.373
(PEX 5.1 protocol adds certain functionality to the Serv)72 656.6 R
1.373(er e)-.165 F 1.373(xtension, accessible directly via the PEXlib)
-.165 F 3.053(API. This)72 669.6 R .302(functionality includes Picking \
via the Immediate Mode Renderer \(Render Elements and Accu-)3.053 F .506
(mulate State commands in Chapter 6, all of Chapter 7\); ne)72 682.6 R
3.256(wE)-.275 G .507(scape requests to allo)-3.256 F 3.257(wv)-.275 G
.507(endors to support)-3.422 F .737
(optional functionality; a Match Rendering T)72 695.6 R(ar)-.88 E .736
(gets request to return information about visuals, depth and)-.198 F
(dra)72 708.6 Q -.11(wa)-.165 G 1.724(bles the serv).11 F 1.724(er can \
support; a noop Output command; Hierarchical HLHSR control \(i.e., duri\
ng)-.165 F(tra)72 721.6 Q -.165(ve)-.22 G(rsals\); and renderer clearin\
g controls are the most important features.).165 E(22)300.5 769 Q EP
%%Page: 23 25
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(4.21. Header)72 85 R(Files)2.75 E F0 -1.1
-.88(Tw o)72 114.6 T(ne)4.39 E 3.51(wm)-.275 G .76
(acros are de\214ned in)-3.51 F F1(Xos.h)3.509 E F0 3.509(:X)C
(_GETTIMEOFD)-3.509 E 3.069 -1.155(AY a)-.44 H .759(nd strerror)1.155 F
6.259(.X)-.605 G(_GETTIMEOFD)-6.259 E 3.069 -1.155(AY i)-.44 H 3.509(sl)
1.155 G(ik)-3.509 E(e)-.11 E 1.897(gettimeofday\(\) b)72 127.6 R 1.897
(ut tak)-.22 F 1.897(es one ar)-.11 F 1.897(gument on all systems.)-.198
F 1.898(strerror is de\214ned only on systems that don')7.397 F(t)-.198
E(already ha)72 140.6 Q .33 -.165(ve i)-.22 H(t.).165 E 3.533(An)72
157.2 S 1.333 -.275(ew h)-3.533 H .783(eader \214le).275 F F1(Xthr)3.532
E(eads.h)-.198 E F0(pro)3.532 E .782
(vides a platform-independent interf)-.165 F .782
(ace to threads functions on v)-.11 F(arious)-.275 E 3.358
(systems. Include)72 170.2 R .608
(it instead of the system threads header \214le.)3.358 F .609
(Use the macros de\214ned in it instead of the)6.108 F
(system threads functions.)72 183.2 Q F1 2.75(4.22. F)72 235.2 R(onts)
-.275 E F0(There are three ne)72 264.8 Q 2.75(wC)-.275 G
(hinese bdf fonts in)-2.75 E F1(xc/f)2.75 E(onts/bdf/misc)-.275 E F0(\()
2.75 E F1(gb16fs.bdf)A F0(,)A F1(gb16st.bdf)2.75 E F0(,)A F1(gb24st.bdf)
2.75 E F0(\).)A .633(Bitmap Charter fonts that are identical to the out\
put generated from the outline font ha)72 281.4 R .962 -.165(ve b)-.22 H
.632(een mo).165 F -.165(ve)-.165 G 3.382(dt).165 G(o)-3.382 E F1(xc/f)
72 294.4 Q(onts/bdf/unnec_)-.275 E F0({)A F1(75)A F0(,)A F1(100)A F0(})A
F1(dpi)A F0(.)A 1.216(The T)72 311 R 1.216(ype 1 fonts contrib)-.88 F
1.216(uted by Bitstream, IBM, and Adobe that shipped in contrib in Rele\
ase 5 ha)-.22 F -.165(ve)-.22 G(been mo)72 324 Q -.165(ve)-.165 G 2.75
(di).165 G(nto the core.)-2.75 E .37(Some of the)72 340.6 R F1(misc)
3.119 E F0 .369(fonts, mostly in the)3.119 F/F2 11/Times-Italic@0 SF
(Clean)3.119 E F0 -.11(fa)3.119 G(mily).11 E 3.119(,h)-.715 G -2.475
-.22(av e)-3.119 H .369(only the ASCII characters, b)3.339 F .369
(ut were incorrectly)-.22 F .174(labeled \231ISO8859-1\232.)72 353.6 R
.174(These fonts ha)5.674 F .505 -.165(ve b)-.22 H .175
(een renamed to be \231ISO646.1991-IR).165 F 2.925(V\232. Aliases)-.88 F
(ha)2.925 E .505 -.165(ve b)-.22 H .175(een pro-).165 F
(vided for the Release 5 names.)72 366.6 Q(The)72 383.2 Q F1(9x15)3.756
E F0 1.006(font has ne)3.756 F 3.755(ws)-.275 G 1.005
(hapes for some characters.)-3.755 F(The)6.505 E F1(6x10)3.755 E F0
1.005(font has the entire ISO 8859-1 character)3.755 F(set.)72 396.2 Q
F1 2.75(4.23. F)72 435.2 R(ont library)-.275 E F0(The T)72 464.8 Q
(ype1 rasterizer that shipped in contrib in Release 5 is no)-.88 E 2.75
(wp)-.275 G(art of the core.)-2.75 E .798(There is an option to ha)72
481.4 R 1.129 -.165(ve t)-.22 H .799(he X serv).165 F .799
(er request glyphs only as it needs them.)-.165 F .799(The X serv)6.299
F .799(er then caches)-.165 F(the glyphs for future use.)72 494.4 Q .419
(Aliases in a)72 511 R F1 -.275(fo)3.169 G(nts.alias).275 E F0 .419
(\214le can allo)3.169 F 3.169(wo)-.275 G .419
(ne scalable alias name to match all instances of another font.)-3.169 F
(The)5.918 E(\231!\232 character introduces a comment line in)72 524 Q
F1 -.275(fo)2.75 G(nts.alias).275 E F0(\214les.)2.75 E 3.186(As)72 540.6
S .437(ample font authorization protocol, \231hp-hostname-1\232 has bee\
n added.)-3.186 F .437(It is based on host names and is)5.937 F 3.646
(non-authenticating. The)72 553.6 R .896
(client requesting a font from a font serv)3.646 F .896(er pro)-.165 F
.895(vides \(or passes through from its)-.165 F .471
(client\) the host name of the ultimate client of the font.)72 566.6 R
.472(There is no check that this host name is accurate,)5.972 F
(as this is a sample protocol only)72 579.6 Q(.)-.715 E .686
(The Speedo rasterizer can no)72 596.2 R 3.435(wr)-.275 G .685
(ead fonts with retail encryption.)-3.435 F .685
(This means that fonts bought o)6.185 F -.165(ve)-.165 G -.22(r-).165 G
(the-).22 E(counter at a computer store can be used by the font serv)72
609.2 Q(er and X serv)-.165 E(er)-.165 E(.)-.605 E(Man)72 625.8 Q 1.43
-.715(y, m)-.165 H(an).715 E 2.75(yb)-.165 G(ugs ha)-2.97 E .33 -.165
(ve b)-.22 H(een \214x).165 E(ed.)-.165 E F1 2.75(4.24. F)72 664.8 R
(ont ser)-.275 E -.11(ve)-.11 G(r).11 E F0 .988(The font serv)72 694.4 R
.988(er has been renamed from)-.165 F F2(fs)3.738 E F0(to)3.738 E F2
(xfs)3.738 E F0 .989(to a)3.738 F -.22(vo)-.22 G .989
(id confusion with an AFS program.).22 F .989(The def)6.489 F(ault)-.11
E .996
(port has changed from 7000 \(used by AFS\) to 7100 and has been re)72
707.4 R .996(gistered with the Internet Assigned)-.165 F
(Numbers Authority)72 720.4 Q(.)-.715 E(23)300.5 769 Q EP
%%Page: 24 26
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E .389(The font serv)72 85 R .389(er no)-.165 F 3.139(wi)-.275 G
.389(mplements a ne)-3.139 F 3.139(wm)-.275 G .389(ajor protocol v)
-3.139 F .389(ersion, v)-.165 F .389(ersion 2.)-.165 F .389
(This change w)5.889 F .39(as made only to)-.11 F
(correct errors in the implementation of v)72 98 Q(ersion 1.)-.165 E
-1.221(Ve)5.5 G(rsion 1 is still accepted by)1.221 E/F1 11
/Times-Italic@0 SF(xfs)2.75 E F0(.)A -1.21(Yo)72 114.6 S 2.75(uc)1.21 G
(an no)-2.75 E 2.75(wc)-.275 G(onnect to)-2.75 E F1(xfs)2.75 E F0
(using the)2.75 E/F2 11/Times-Bold@0 SF(local/)2.75 E F0(transport.)2.75
E(Man)72 131.2 Q 1.43 -.715(y, m)-.165 H(an).715 E 2.75(yb)-.165 G
(ugs ha)-2.97 E .33 -.165(ve b)-.22 H(een \214x).165 E(ed.)-.165 E F2
2.75(4.25. X)72 170.2 R(ser)2.75 E -.11(ve)-.11 G(r).11 E F0 .627
(The serv)72 199.8 R .627(er sources ha)-.165 F .957 -.165(ve m)-.22 H
-.165(ove).165 G 3.377(dt).165 G(o)-3.377 E F2(xc/pr)3.377 E
(ograms/Xser)-.198 E -.11(ve)-.11 G(r).11 E F0 6.126(.S)C(erv)-6.126 E
(er)-.165 E .626(-side e)-.22 F .626(xtension code e)-.165 F .626
(xists as subdirec-)-.165 F 2.842(tories. The)72 212.8 R F2(ddx)2.842 E
F0 .092(directory is gone;)2.842 F F2(mi)2.842 E F0(,)A F2(cfb)2.842 E
F0 2.842(,a)C(nd)-2.842 E F2(mfb)2.842 E F0 .092(are at the top le)2.842
F -.165(ve)-.275 G .093(l, and a).165 F F2(hw)2.843 E F0(\(hardw)2.843 E
.093(are\) subdirectory)-.11 F(no)72 225.8 Q 2.85(we)-.275 G .1
(xists for holding v)-3.015 F(endor)-.165 E .1(-speci\214c ddx code.)
-.22 F .1(Note: the absence of a ddx directory does not imply that)5.6 F
(the conceptual split between dix and ddx is gone.)72 238.8 Q .41
(Function prototypes ha)72 255.4 R .74 -.165(ve b)-.22 H .411
(een added to header \214les in).165 F F2(xc/pr)3.161 E(ograms/Xser)
-.198 E -.11(ve)-.11 G(r/include).11 E F0(,)A F2(cfb)3.161 E F0(,)A F2
(mfb)3.161 E F0(,)A F2(mi)3.161 E F0 3.161(,a)C(nd)-3.161 E F2(os)72
268.4 Q F0(.)A .925(Support for pixmap pri)72 285 R -.275(va)-.275 G
.925(tes has been added.).275 F .924(It is turned of)6.424 F 3.674(fb)
-.275 G 3.674(yd)-3.674 G(ef)-3.674 E .924(ault, b)-.11 F .924
(ut can be acti)-.22 F -.275(va)-.275 G .924(ted by putting).275 F .52
(\255DPIXPRIV in the Serv)72 298 R .521
(erExtraDe\214nes parameter in your)-.165 F F1(vendor)3.271 E F2(.cf)A
F0 3.271(\214le. See)3.271 F .521(the porting layer document)3.271 F
(for details.)72 311 Q(Ne)72 327.6 Q 3.008(ws)-.275 G .258
(creen functions, called primarily by code in windo)-3.008 F -.715(w.)
-.275 G .258(c, ha).715 F .588 -.165(ve b)-.22 H .258(een added to mak)
.165 F 3.008(el)-.11 G .257(ife easier for v)-3.008 F(en-)-.165 E .854
(dors with multi-layered frameb)72 340.6 R(uf)-.22 E 3.604(fers. Se)
-.275 F -.165(ve)-.275 G .854
(ral functions and some pieces of functions ha).165 F 1.185 -.165(ve m)
-.22 H -.165(ove).165 G 3.605(df).165 G(rom)-3.605 E(windo)72 353.6 Q
-.715(w.)-.275 G 3.326(ct).715 G 3.326(om)-3.326 G(iwindo)-3.326 E -.715
(w.)-.275 G 3.326(c. See).715 F .576
(the porting layer document for details.)3.326 F .576
(Also, the contents of union _V)6.076 F(ali-)-1.221 E(date \(v)72 366.6
Q(alidate.h\) are no)-.275 E 2.75(wd)-.275 G -.275(ev)-2.75 G
(ice dependent; mi).275 E -.275(va)-.275 G
(lidate.h contains a sample de\214nition.).275 E 2.258
(An implementation of the SYNC e)72 383.2 R 2.258(xtension is in)-.165 F
F2(xc/pr)5.008 E(ograms/Xser)-.198 E -.11(ve)-.11 G(r/Xext/sync.c).11 E
F0 7.758(.A)C 5.008(sp)-7.758 G 2.259(art of this)-5.008 F -.11(wo)72
396.2 S .683(rk, client priorities ha).11 F 1.013 -.165(ve a)-.22 H .682
(lso been implemented; see the tail end of W).165 F(aitF)-.88 E .682
(orSomething\(\) in W)-.165 F(aitF)-.88 E(or)-.165 E(.c.)-.605 E .076
(The priority scheme is)72 409.2 R F1(strict)2.826 E F0 .076
(in that the client\(s\) with the highest priority al)2.826 F -.11(wa)
-.11 G .076(ys runs.).11 F F1(twm)5.576 E F0 .076(has been mod-)2.826 F
(i\214ed to pro)72 422.2 Q(vide simple f)-.165 E
(acilities for setting client priorities.)-.11 E 4.685(The serv)72 438.8
R 4.685(er can no)-.165 F 7.435(wf)-.275 G 4.685
(etch font glyphs on demand instead of loading them all at once.)-7.435
F(See)10.184 E F2(xc/pr)72 451.8 Q(ograms/Xser)-.198 E -.11(ve)-.11 G
(r/dix/dixf).11 E(onts.c)-.275 E F0(,)A F2(xc/lib/f)5.313 E(ont/fc/fser)
-.275 E -.11(ve)-.11 G(.c).11 E F0 5.314(,a)C(nd)-5.314 E F2(xc/lib/f)
5.314 E(ont/fc/fscon)-.275 E -.11(ve)-.44 G(rt.c).11 E F0 8.064(.A)C(ne)
-2.75 E 5.314(wX)-.275 G(serv)72 464.8 Q .786(er command line option,)
-.165 F F2(\255defer)3.536 E(glyphs)-.11 E F0 3.536(,c)C .785
(ontrols which types of fonts \(8 vs. 16 bit\) to demand load;)-3.536 F
(see the X manual page for details.)72 477.8 Q .252(The os layer no)72
494.4 R 3.002(wu)-.275 G .252(ses sig)-3.002 F .252
(action on POSIX systems; a ne)-.055 F 3.002(wf)-.275 G .252
(unction OsSignal w)-3.002 F .252(as added for con)-.11 F -.165(ve)-.44
G(nience,).165 E(which you should use in your ddx code.)72 507.4 Q 3.259
(An)72 524 S 1.059 -.275(ew t)-3.259 H .509(imer interf).275 F .509
(ace has been added to the os layer; see the functions in os/W)-.11 F
(aitF)-.88 E(or)-.165 E 3.258(.c. This)-.605 F(interf)3.258 E .508
(ace is)-.11 F(used by XKB, b)72 537 Q(ut we ha)-.22 E -.165(ve)-.22 G
(n').165 E 2.75(tt)-.198 G(ried to use it an)-2.75 E
(ywhere else \(such as Xe)-.165 E(xt/sleepuntil.c\) yet.)-.165 E .743
(Redundant code for GC funcs w)72 553.6 R .743(as mo)-.11 F -.165(ve)
-.165 G 3.493(df).165 G .743(rom cfbgc.c and mfbgc.c to migc.c.)-3.493 F
.743(This \214le also contains a)6.243 F(fe)72 566.6 Q 3.965(wu)-.275 G
1.214(tility functions such as miComputeCompositeClip, which replaces t\
he chunk of code that used to)-3.965 F(appear near the top of most v)72
579.6 Q(ersions of V)-.165 E(alidateGC.)-1.221 E 1.513
(The cfb code can no)72 596.2 R 4.264(wb)-.275 G 4.264(ec)-4.264 G 1.514
(ompiled multiple times to pro)-4.264 F 1.514
(vide support for multiple depths in the same)-.165 F(serv)72 609.2 Q
(er)-.165 E 3.54(,e)-.44 G .79(.g., 8, 12, and 24.)-3.54 F(See)6.29 E F2
(Imak)3.54 E(e\214le)-.11 E F0(and)3.54 E F2(cfb/cfbmskbits.h)3.54 E F0
.79(under the)3.54 F F2(xc/pr)3.539 E(ograms/Xser)-.198 E -.11(ve)-.11 G
(r/).11 E F0(direc-)3.539 E(tory for starters.)72 622.2 Q .963
(The cfb and mfb code ha)72 638.8 R 1.293 -.165(ve b)-.22 H .963
(een modi\214ed to perform 64 bit reads and writes of the frameb).165 F
(uf)-.22 E .963(fer on the)-.275 F .613(Alpha AXP)72 651.8 R 6.113(.T)
-1.221 G .613(hese modi\214cations should be usable on other 64 bit arc\
hitectures as well, though we ha)-6.113 F -.165(ve)-.22 G 1.156
(not tested it on an)72 664.8 R 3.906(yo)-.165 G 3.906(thers. There)
-3.906 F 1.157(are a fe)3.906 F 3.907(wh)-.275 G 1.157
(acks in dix, notably ProcPutImage and ProcGetImage, to)-3.907 F -.11
(wo)72 677.8 S .793(rk around the f).11 F .793
(act that the protocol doesn')-.11 F 3.542(ta)-.198 G(llo)-3.542 E 3.542
(wy)-.275 G .792(ou to specify 64 bit padding.)-3.542 F .792
(Note that the serv)6.292 F(er)-.165 E
(will still not run on a machine such as a Cray that does not ha)72
690.8 Q .33 -.165(ve a 3)-.22 H 2.75(2b).165 G(it data type.)-2.75 E
-.165(Fo)72 707.4 S 3.25(rp).165 G .5(erformance, all re)-3.25 F .5
(gion operations are no)-.165 F 3.25(wi)-.275 G -2.09 -.44(nv o)-3.25 H
-.11(ke).44 G 3.25(dv).11 G .5(ia macros which by def)-3.25 F .5
(ault mak)-.11 F 3.25(ed)-.11 G .501(irect calls to)-3.25 F .519
(the appropriate mi functions.)72 720.4 R -1.21(Yo)6.019 G 3.269(uc)1.21
G .519
(an conditionally compile them to continue calling through the screen)
-3.269 F(24)300.5 769 Q EP
%%Page: 25 27
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E 2.75(structure. The)72 85 R(follo)2.75 E(wing change w)-.275 E
(as made throughout the serv)-.11 E(er:)-.165 E(\231\(*pScreen->Re)108
104 Q(gionOp\)\(...\)\232 changes to \231REGION_OP\(pScreen, ...\)\232)
-.165 E 1.391(Some of the tri)72 126.6 R 1.392(vial re)-.275 F 1.392
(gion ops ha)-.165 F 1.722 -.165(ve b)-.22 H 1.392
(een inlined in the macros.).165 F -.165(Fo)6.892 G 4.142(rc).165 G
(ompatibility)-4.142 E 4.142(,t)-.715 G 1.392(he re)-4.142 F 1.392
(gion function)-.165 F 1.634(pointers remain in the screen structure e)
72 139.6 R -.165(ve)-.275 G 4.384(ni).165 G 4.384(ft)-4.384 G 1.634
(he serv)-4.384 F 1.634(er is compiled to mak)-.165 F 4.384(ed)-.11 G
1.633(irect calls to mi.)-4.384 F(See)7.133 E(include/re)72 152.6 Q
(gionstr)-.165 E(.h.)-.605 E 3.523(Ag)72 169.2 S .773(eneric callback m\
anager is included and can be used to add noti\214cation-style hooks an)
-3.523 F .773(ywhere in the)-.165 F(serv)72 182.2 Q(er)-.165 E 5.68(.S)
-.605 G .18(ee dixutils.c.)-5.68 F .18(The callback manager is no)5.68 F
2.93(wb)-.275 G .18(eing used to pro)-2.93 F .179
(vide noti\214cation of when the serv)-.165 F(er)-.165 E .368
(is grabbed/ungrabbed, when a client')72 195.2 R 3.119(ss)-.605 G .369
(tate changes, and when an e)-3.119 F -.165(ve)-.275 G .369
(nt is sent to a client.).165 F .369(The latter tw)5.869 F(o)-.11 E
(are used by the RECORD e)72 208.2 Q(xtension.)-.165 E 2.75(An)72 224.8
S .55 -.275(ew o)-2.75 H(ption has been added,).275 E/F1 11/Times-Bold@0
SF(\255con\214g)2.75 E/F2 11/Times-Italic@0 SF(\214lename)2.75 E F0 5.5
(.T)C(his lets you put serv)-5.5 E(er options in a \214le.)-.165 E(See)
5.5 E F1(os/utils.c)2.75 E F0(.)A 1.411
(Xtrans has been installed into the os layer)72 241.4 R 6.91(.S)-.605 G
1.41(ee os/connection.c, io.c, and transport.c.)-6.91 F 1.41
(As a result, the)6.91 F(serv)72 254.4 Q(er no)-.165 E 2.75(ws)-.275 G
(upports the man)-2.75 E 2.75<798d>-.165 G -.22(avo)-2.75 G
(rs of SVR4 local connections.).22 E 3.914(The client structure no)72
271 R 6.664(wh)-.275 G 3.914(as pri)-6.664 F -.275(va)-.275 G 3.915
(tes lik).275 F 6.665(ew)-.11 G(indo)-6.665 E 3.915
(ws, pixmaps, and GCs.)-.275 F 3.915(See include/dixstruct.h,)9.415 F
(dix/pri)72 284 Q -.275(va)-.275 G(tes.c, and dispatch.c.).275 E .768
(Thin line pix)72 300.6 R .767(elization is no)-.165 F 3.517(wc)-.275 G
.767(onsistent across cfb, mfb, and mi.)-3.517 F .767(It is also re)
6.267 F -.165(ve)-.275 G .767(rsible, meaning the same).165 F(pix)72
313.6 Q .747(els are touched when dra)-.165 F .747
(wing from point A to point B as are touched when dra)-.165 F .747
(wing from point B to)-.165 F .27(point A.)72 326.6 R 3.02(An)5.77 G .82
-.275(ew h)-3.02 H .269
(eader \214le, miline.h, consolidates some miscellaneous line dra).275 F
.269(wing utilities that had pre-)-.165 F
(viously been duplicated in a number of places.)72 339.6 Q F1 2.75
(4.25.1. Xnest)72 378.6 R F0 3.648(An)72 408.2 S 1.448 -.275(ew s)-3.648
H(erv).275 E(er)-.165 E 3.648(,X)-.44 G .899
(nest, uses Xlib to implement ddx rendering.)-3.648 F .899
(See xc/programs/Xserv)6.399 F 3.649(er/hw/xnest. Xnest)-.165 F 1.823
(lets you run an X serv)72 421.2 R 1.823(er in a windo)-.165 F 4.573(wo)
-.275 G 4.573(na)-4.573 G 1.823(nother X serv)-4.573 F(er)-.165 E 7.322
(.U)-.605 G 1.822(ses include testing dix and e)-7.322 F(xtensions,)
-.165 E(deb)72 434.2 Q .349(ugging client protocol errors, deb)-.22 F
.35(ugging grabs, and testing interacti)-.22 F .68 -.165(ve p)-.275 H
.35(rograms in a hardw).165 F(are-starv)-.11 E(ed)-.165 E(en)72 447.2 Q
(vironment.)-.44 E F1 2.75(4.25.2. Xvfb)72 486.2 R F0 .994(Another ne)72
515.8 R 3.744(ws)-.275 G(erv)-3.744 E(er)-.165 E 3.744(,X)-.44 G .993
(vfb, uses cfb or mfb code to render into a frameb)-3.744 F(uf)-.22 E
.993(fer that is allocated in virtual)-.275 F(memory)72 528.8 Q 8.513
(.S)-.715 G(ee)-8.513 E F1(xc/pr)5.763 E(ograms/Xser)-.198 E -.11(ve)
-.11 G(r/hw/vfb).11 E F0 8.513(.T)C 3.013(he frameb)-8.513 F(uf)-.22 E
3.014(fer can be allocated in normal memory)-.275 F(,)-.715 E .459
(shared memory)72 541.8 R 3.209(,o)-.715 G 3.209(ra)-3.209 G 3.208(sam)
-3.209 G .458(emory mapped \214le.)-3.208 F(Xvfb')5.958 E 3.208(ss)-.605
G .458(creen is normally not visible; ho)-3.208 F(we)-.275 E -.165(ve)
-.275 G 1.338 -.44(r, w).165 H .458(hen allo-).44 F .298
(cated as a memory mapped \214le,)72 554.8 R F2(xwd)3.048 E F0 .298
(can display the screen by specifying the frameb)3.048 F(uf)-.22 E .298
(fer \214le as its input.)-.275 F F1 2.75(4.25.3. ddx)72 593.8 R
(Sun ddx)72 627 Q F0 1.987(Expanded de)97 640 R 1.987
(vice probe table \214nds multiple frame b)-.275 F(uf)-.22 E 1.986
(fers of the same type.)-.275 F 1.986(Expanded k)7.486 F -.165(ey)-.11 G
(map).165 E .183(tables pro)97 653 R .183
(vide support for European and Asian k)-.165 F -.165(ey)-.11 G 2.933
(boards. Added).165 F(per)2.933 E(-k)-.22 E .513 -.165(ey a)-.11 H .183
(utorepeat support.).165 F(Con-)5.684 E 1.354
(siderable cleanup and duplicate code eliminated.)97 666 R 1.354
(Deletion of SunV)6.854 F(ie)-.66 E 4.103(ws)-.275 G 4.103(upport. GX)
-4.103 F 1.353(source code)4.103 F(no)97 679 Q 2.75(wi)-.275 G(ncluded.)
-2.75 E F1(HP ddx)72 695.6 Q F0(cfb-based sources included as)97 708.6 Q
F1(xc/pr)2.75 E(ograms/Xser)-.198 E -.11(ve)-.11 G(r/hw/hp).11 E F0(.)A
(25)300.5 769 Q EP
%%Page: 26 28
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF(svga ddx)72 85 Q F0(ne)97 98 Q 2.75(ws)
-.275 G(vg)-2.75 E 2.75(ad)-.055 G(dx for SVR4 included as)-2.75 E F1
(xc/pr)2.75 E(ograms/Xser)-.198 E -.11(ve)-.11 G(r/hw/svga).11 E F0(.)A
F1(xfr)72 114.6 Q(ee86 ddx)-.198 E F0(ddx)97 127.6 Q
(en from XFree86, Inc. included as)-.165 E F1(xc/pr)2.75 E(ograms/Xser)
-.198 E -.11(ve)-.11 G(r/hw/xfr).11 E(ee86)-.198 E F0(.)A F1(Amoeba ddx)
72 144.2 Q F0 16.148(ddx for Sun serv)97 157.2 R 16.149
(er on the Amoeba operating system included as)-.165 F F1(xc/pr)97 170.2
Q(ograms/Xser)-.198 E -.11(ve)-.11 G(r/hw/sunAmoeba).11 E F0 7.332(.T)C
1.832(he serv)-7.332 F 1.831
(er will require additional patches for this to be)-.165 F(usable.)97
183.2 Q F1 2.75(4.26. New)72 222.2 R(Pr)2.75 E(ograms)-.198 E
(xc/con\214g/util/mkshado)72 251.8 Q(w/)-.11 E F0 2.75(,ar)C
(eplacement for)-2.75 E/F2 11/Times-Italic@0 SF(lndir)2.75 E F0(.)A F1
2.75(4.27. Old)72 290.8 R(Softwar)2.75 E(e)-.198 E F0 1.898 -.88(We h)72
320.4 T -2.475 -.22(av e).88 H .138(dropped support for the follo)3.108
F .139(wing libraries and programs and ha)-.275 F .469 -.165(ve m)-.22 H
-.165(ove).165 G 2.889(dt).165 G .139(hem to)-2.889 F F1(contrib)2.889 E
F0 2.889(:C)C(LX)-2.889 E(library)72 333.4 Q 3.824(,P)-.715 G 1.074
(HIGS library)-3.824 F(,)-.715 E F2(MacFS)3.824 E F0(,)A F2(auto_box)
3.824 E F0(,)A F2(beac)3.824 E(h_ball)-.165 E F0(,)A F2(gpc)3.824 E F0
(,)A F2(ico)3.824 E F0(,)A F2(listr)3.824 E(es)-.407 E F0(,)A F2(maze)
3.824 E F0(,)A F2(puzzle)3.824 E F0(,)A F2(showfont)3.823 E F0(,)A F2
(vie)3.823 E(wr)-.165 E(es)-.407 E F0(,)A F2(xbif)72 346.4 Q(f)-.198 E
F0(,)A F2(xcalc)2.75 E F0(,)A F2(xditvie)2.75 E(w)-.165 E F0(,)A F2
(xedit)2.75 E F0(,)A F2(xe)2.75 E(v)-.165 E F0(,)A F2(xe)2.75 E(yes)-.33
E F0(,)A F2(xfontsel)2.75 E F0(,)A F2(xgas)2.75 E F0(,)A F2(xgc)2.75 E
F0(,)A F2(xload)2.75 E F0(,)A F2(xman)2.75 E F0 2.75(,a)C(nd)-2.75 E F2
(xpr)2.75 E F0(.)A F1 2.75(4.28. xhost)72 385.4 R F0 -1.1 -.88(Tw o)72
415 T(ne)5.198 E 4.318(wf)-.275 G 1.568(amilies ha)-4.428 F 1.898 -.165
(ve b)-.22 H 1.568(een re).165 F 1.568
(gistered: LocalHost, for connections o)-.165 F -.165(ve)-.165 G 4.319
(ran).165 G(on-netw)-4.319 E 1.569(ork transport, and)-.11 F
(Krb5Principal, for K)72 428 Q(erberos V5 principals.)-.275 E 2.989 -.88
(To d)72 444.6 T 1.229(istinguish between dif).88 F 1.228(ferent host f)
-.275 F 1.228(amilies, a ne)-.11 F 3.978(wx)-.275 G 1.228
(host syntax \231f)-3.978 F 1.228(amily:name\232 has been introduced.)
-.11 F(Names are as before; f)72 457.6 Q(amilies are as follo)-.11 E
(ws:)-.275 E 49.692(inet: Internet)108 476.6 R(host)2.75 E 47.25
(dnet: DECnet)108 489.6 R(host)2.75 E 53.355(nis: Secure)108 502.6 R
(RPC netw)2.75 E(ork name)-.11 E 51.529(krb: K)108 515.6 R
(erberos V5 principal)-.275 E 44.808(local: contains)108 528.6 R
(only one name, \231)2.75 E<9a>.916 E(The old-style syntax for names is\
 still supported when the name does not contain a colon.)72 547.6 Q F1
2.75(4.29. xrdb)72 586.6 R F0(Man)72 616.2 Q 2.75(yn)-.165 G .55 -.275
(ew s)-2.75 H(ymbols are de\214ned to tell you what e).275 E
(xtensions and visual classes are a)-.165 E -.275(va)-.22 G(ilable.).275
E F1 2.75(4.30. twm)72 655.2 R F0(An interf)72 684.8 Q
(ace for setting client priorities with the Sync e)-.11 E
(xtension has been added.)-.165 E(Man)72 701.4 Q 2.75(yb)-.165 G(ugs ha)
-2.97 E .33 -.165(ve n)-.22 H(ot been \214x).165 E(ed yet.)-.165 E(26)
300.5 769 Q EP
%%Page: 27 29
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(4.31. xdm)72 85 R F0 .385(There is a ne)72
114.6 R 3.136(wr)-.275 G(esource,)-3.136 E F1(choiceT)3.136 E(imeout)
-.198 E F0 3.136(,t)C .386(hat controls ho)-3.136 F 3.136(wl)-.275 G
.386(ong to w)-3.136 F .386(ait for a display to respond after the)-.11
F(user has selected a host from the chooser)72 127.6 Q(.)-.605 E .837
(Support has been added for a modular)72 144.2 R 3.586(,d)-.44 G .836
(ynamically-loaded greeter library)-3.586 F 6.336(.T)-.715 G .836
(his feature allo)-6.336 F .836(ws dif)-.275 F(ferent)-.275 E 1.009
(dynamic libraries to by loaded by)72 157.2 R/F2 11/Times-Italic@0 SF
(xdm)3.759 E F0 1.009(at run-time to pro)3.759 F 1.01(vide dif)-.165 F
1.01(ferent login windo)-.275 F 3.76(wi)-.275 G(nterf)-3.76 E 1.01
(aces without)-.11 F .793(access to the)72 170.2 R F2(xdm)3.543 E F0
3.543(sources. It)3.543 F -.11(wo)3.542 G .792
(rks on DEC OSF/1 and SVR4.).11 F .792
(The name of the greeter library is con-)6.292 F(trolled by another ne)
72 183.2 Q 2.75(wr)-.275 G(esource,)-2.75 E F1(gr)2.75 E(eeterLib)-.198
E F0(.)A .055(When you log in via)72 199.8 R F2(xdm)2.805 E F0(,)A F2
(xdm)2.805 E F0 .055(will use your passw)2.805 F .055
(ord to obtain the initial K)-.11 F .056(erberos tick)-.275 F .056
(ets and store them)-.11 F(in a local credentials cache \214le.)72 212.8
Q(The credentials cache is destro)5.5 E(yed when the session ends.)-.11
E F1 2.75(4.32. xterm)72 251.8 R F0(No)72 281.4 Q 8.854(ws)-.275 G 6.104
(upports a fe)-8.854 F 8.854(we)-.275 G 6.104
(scape sequences from HP terminals, such as memory locking.)-8.854 F
(See)11.603 E F1(xc/doc/specs/xterm/ctlseqs.ms)72 294.4 Q F0
(for details.)2.75 E(The)72 311 Q F1(termcap)2.75 E F0(and)2.75 E F1
(terminf)2.75 E(o)-.275 E F0(\214les ha)2.75 E .33 -.165(ve b)-.22 H
(een updated.).165 E F1(ctlseqs.ms)72 327.6 Q F0(has mo)2.75 E -.165(ve)
-.165 G 2.75(do).165 G(ut of the xterm source directory into)-2.75 E F1
(xc/doc/specs/xterm)2.75 E F0(.)A
(The logging mis-feature of xterm is remo)72 344.2 Q -.165(ve)-.165 G
2.75(d. This).165 F
(change \214rst appeared as a public patch to Release 5.)2.75 E(Man)72
360.8 Q 2.75(yb)-.165 G(ugs ha)-2.97 E .33 -.165(ve n)-.22 H
(ot been \214x).165 E(ed yet.)-.165 E F1 2.75(4.33. xset)72 399.8 R F0
.469(The screen sa)72 429.4 R -.165(ve)-.22 G 3.219(rc).165 G .469
(ontrol option has tw)-3.219 F 3.22(on)-.11 G 1.02 -.275(ew s)-3.22 H
.47(ub-options to immediately acti).275 F -.275(va)-.275 G .47
(te or deacti).275 F -.275(va)-.275 G .47(te the screen).275 F(sa)72
442.4 Q -.165(ve)-.22 G(r:).165 E F1(xset s acti)2.75 E -.11(va)-.11 G
(te).11 E F0(and)2.75 E F1(xset s r)2.75 E(eset)-.198 E F0(.)A F1 2.75
(4.34. X)72 481.4 R -1.012(Te)2.75 G(st Suite)1.012 E F0(The X T)72 511
Q(est Suite, shipped separately from R5, is no)-.77 E 2.75(wp)-.275 G
(art of the core distrib)-2.75 E(ution in R6.)-.22 E 1.391
(The code has been \214x)72 527.6 R 1.391(ed to w)-.165 F 1.39
(ork on Alpha AXP)-.11 F 6.89(.T)-1.221 G 1.39(he Xi tests contrib)-6.89
F 1.39(uted by HP and XIM tests con-)-.22 F(trib)72 540.6 Q
(uted by Sun are inte)-.22 E(grated.)-.165 E F1 2.75(4.35. W)72 579.6 R
(ork in Pr)-.825 E(ogr)-.198 E(ess)-.198 E F0(Ev)72 609.2 Q
(erything under)-.165 E F1(xc/w)2.75 E(orkInPr)-.11 E(ogr)-.198 E(ess)
-.198 E F0(represents a w)2.75 E(ork in progress of the X Consortium.)
-.11 E .087(Fresco, Lo)72 625.8 R 2.837(wB)-.275 G .087
(andwidth X \(LBX\), the Record e)-2.837 F .088(xtension, and the X K)
-.165 F -.165(ey)-.275 G .088(board e).165 F .088
(xtension \(Xkb, which logi-)-.165 F .036(cally belongs here b)72 638.8
R .035(ut w)-.22 F .035(as too tightly coupled into Xlib and the serv)
-.11 F .035(er to e)-.165 F .035(xtract\) are neither standards nor)
-.165 F .452(draft standards, are kno)72 651.8 R .453
(wn to need design and/or implementation w)-.275 F .453
(ork, are still e)-.11 F -.22(vo)-.275 G .453(lving, and will not be).22
F 1.381(compatible with an)72 664.8 R 4.131<798c>-.165 G 1.381
(nal standard should such a standard e)-4.131 F -.165(ve)-.275 G 1.38
(ntually be agreed upon.).165 F 3.14 -.88(We a)6.88 H 1.38(re making).88
F .637(them a)72 677.8 R -.275(va)-.22 G .637
(ilable in early form in order to g).275 F .638(ather broader e)-.055 F
.638(xperimentation and feedback from those willing)-.165 F(to in)72
690.8 Q -.165(ve)-.44 G(st the time and ener).165 E
(gy to help us produce better standards.)-.198 E(An)72 707.4 Q 3.072(yu)
-.165 G .322(se of these interf)-3.072 F .321(aces in commercial produc\
ts runs the risk of later source and binary incompatibili-)-.11 F(ties.)
72 720.4 Q(27)300.5 769 Q EP
%%Page: 28 30
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E/F1 11/Times-Bold@0 SF 2.75(4.35.1. Fr)72 85 R(esco)-.198 E F0
1.099
(R6 includes the \214rst sample implementation of Fresco, a user interf)
72 114.6 R 1.1(ace system speci\214ed using CORB)-.11 F(A)-.385 E .151
(IDL and implemented in C++.)72 127.6 R .151
(Fresco is not yet a Consortium standard or draft standard, b)5.651 F
.15(ut is being dis-)-.22 F(trib)72 140.6 Q 1.169(uted as a w)-.22 F
1.17(ork in progress to demonstrate our current directions and to g)-.11
F 1.17(ather feedback on require-)-.055 F(ments for a Fresco standard.)
72 153.6 Q .973(The Fresco Sample Implementation has been inte)72 170.2
R .973(grated into the X11R6 b)-.165 F .972(uild process, and will be b)
-.22 F(uilt)-.22 E 3.538(automatically if you ha)72 183.2 R 3.868 -.165
(ve a C)-.22 H 3.538(++ compiler a).165 F -.275(va)-.22 G 6.288
(ilable. Documentation).275 F 3.539(on Fresco can be found in)6.289 F F1
(xc/doc/specs/Fr)72 196.2 Q(esco)-.198 E F0 9.927(.T)C 4.427
(he Fresco and Xtf libraries are found in)-9.927 F F1(xc/w)7.177 E
(orkInPr)-.11 E(ogr)-.198 E(ess/Fr)-.198 E(esco)-.198 E F0(and)7.176 E
F1(xc/w)72 209.2 Q(orkInPr)-.11 E(ogr)-.198 E(ess/Xtf)-.198 E F0 7.238
(,r)C(especti)-7.238 E -.165(ve)-.275 G(ly).165 E 9.988(.T)-.715 G 4.488
(here are some simple Fresco e)-9.988 F 4.489(xample programs in)-.165 F
F1(con-)7.239 E(trib/examples/Fr)72 222.2 Q(esco)-.198 E F0 2.75(,a)C
(nd a number of related programs in)-2.75 E F1(contrib/pr)2.75 E(ograms)
-.198 E F0 2.75(,i)C(ncluding:)-2.75 E F1(ixx)72 238.8 Q F0
(An IDL to C++ translator)10.942 E F1(i2mif)72 255.4 Q F0 2.75(Ap)97
268.4 S(rogram to generate FrameMak)-2.75 E
(er MIF documents from comments in an IDL speci\214cation)-.11 E F1
(fdraw)72 285 Q F0 2.75(As)97 298 S(imple Fresco dra)-2.75 E
(wing editor)-.165 E F1(dish)72 314.6 Q F0 2.75(AT)97 327.6 S
(CL interpreter with hooks to Fresco)-2.75 E -.88(Wo)72 344.2 S
(rking Imak).88 E(e\214les are pro)-.11 E
(vided for all of the utilities and e)-.165 E(xamples.)-.165 E 3.266(Ad)
72 360.8 S .516(emo program \(dish\) is included that sho)-3.266 F .516
(ws ho)-.275 F 3.266(was)-.275 G .516
(cripting language \(Tcl\) can rather easily be bound)-3.266 F 2.495
(to Fresco through the CORB)72 373.8 R 5.246(Ad)-.385 G 2.496(ynamic in)
-5.246 F -.22(vo)-.44 G 2.496(cation mechanism.).22 F 5.246(Ac)7.996 G
(op)-5.246 E 5.246(yo)-.11 G 5.246(fT)-5.246 G 2.496(cl is included in)
-5.246 F F1(con-)5.246 E(trib/lib/tcl)72 386.8 Q F0(.)A 1.808 -.88(To b)
72 403.4 T .047(uild Fresco you must de\214ne HasCplusplus in).66 F F1
(site.def)2.797 E F0 2.797(;i)C 2.797(na)-2.797 G .047
(ddition, you may ha)-2.797 F .377 -.165(ve t)-.22 H 2.797(os).165 G
.047(et CplusplusCmd)-2.797 F 1.573
(and/or CplusplusDependIncludes to in)72 416.4 R -.22(vo)-.44 G 1.793
-.11(ke t).22 H 1.574
(he appropriate C++ compiler and \214nd the required header).11 F .291
(\214les during mak)72 429.4 R 3.041(ed)-.11 G 3.041(epend. Finally)
-3.041 F 3.041(,y)-.715 G .291(ou should check the)-3.041 F/F2 11
/Times-Italic@0 SF(vendor)3.041 E F1(.cf)A F0 .291
(to see if there are an)3.041 F 3.04(yo)-.165 G .29(ther con\214gura-)
-3.04 F(tion v)72 442.4 Q(ariables you should set to pro)-.275 E
(vide information about your C++ compiler)-.165 E(.)-.605 E .125
(Fresco requires a C++ compiler that implements v)72 459 R .126
(ersion 3 of the C++ language \(as approximately de\214ned)-.165 F 1.458
(by USL cfront v)72 472 R 1.457(ersion 3\).)-.165 F 1.457
(While Fresco does not currently use templates or e)6.957 F 1.457
(xceptions, it does mak)-.165 F(e)-.11 E -.165(ex)72 485 S(tensi).165 E
.33 -.165(ve u)-.275 H
(se of nested types, which were inadequately supported in earlier v).165
E(ersions of the language.)-.165 E(Fresco has been b)72 501.6 Q
(uilt with the follo)-.22 E(wing platforms and C++ compilers:)-.275 E
(SP)108 520.6 Q 56.477(ARCstation SunOS)-1.012 F 34.926
(4.1.3 CenterLine)2.75 F(C++)2.75 E(SP)108 533.6 Q 56.477
(ARCstation Solaris)-1.012 F 43.792(2.3 CenterLine)2.75 F
(C++ \(requires v2.0.6\))2.75 E(SP)108 546.6 Q 56.477
(ARCstation Solaris)-1.012 F 43.792(2.3 SP)2.75 F(ARCCompiler C++ v4.0)
-1.012 E(HP 9000/700)108 559.6 Q(HPUX 9.0.1)64.034 E(CenterLine C++)
38.908 E(SGI Indy)108 572.6 Q(IRIX 5.2)81.766 E(SGI C++)54.495 E
(IBM RS/6000)108 585.6 Q(AIX 3.2.5)60.36 E(IBM xlC)49.303 E(Son)108
598.6 Q 2.75(yN)-.165 G 63.286(EWS NEWSOS)-2.75 F 29.129(6.0 Son)2.75 F
2.75(yC)-.165 G(++)-2.75 E 1.016
(Fresco has also been compiled on the DEC Alpha under OSF/1 v)72 621.2 R
1.017(ersion 2.0 using a beta test v)-.165 F 1.017(ersion of)-.165 F
.774(DEC C++ 1.3.)72 634.2 R .774(Fresco cannot be b)6.274 F .773
(uilt with the Gnu C++ compiler \(v)-.22 F .773
(ersion 2.5.8 or earlier\) due to b)-.165 F(ugs)-.22 E
(and limitations in g++.)72 647.2 Q .269
(Building Fresco with CenterLine C++ requires that you pass the)72 663.8
R F1(\255Xa)3.02 E F0 .27(\215ag to the C++ compiler)3.02 F 5.77(.P)
-.605 G .27(lace the)-5.77 F(follo)72 676.8 Q
(wing lines in your site.def:)-.275 E
(#de\214ne HasCenterLineCplusplus YES)108 695.8 Q
(#de\214ne CplusplusOptions)108 708.8 Q(\255Xa)5.5 E
(If CC is not in your def)72 727.8 Q(ault search path, add this line to)
-.11 E F1(site.def)2.75 E F0(:)A(28)300.5 769 Q EP
%%Page: 29 31
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(#de\214ne CplusplusCmd)108 85 Q/F1 11/Times-Italic@0 SF
(/path/to/your/CC)2.75 E F0 .161(If you are b)72 107.6 R .161
(uilding under Solaris 2, you must use ObjectCenter v)-.22 F .16
(ersion 2.0.6 or later; the C++ compiler in)-.165 F(ObjectCenter 2.0.4 \
will produce Fresco applications that dump core on startup.)72 120.6 Q
(Fresco does not yet b)72 137.2 Q(uild under Microsoft W)-.22 E(indo)
-.44 E(ws/NT)-.275 E(.)-.814 E/F2 11/Times-Bold@0 SF 2.75(4.35.2. XKB)72
176.2 R(\(X K)2.75 E(eyboard Extension\))-.275 E F0 .465
(Support for XKB is not compiled in to Xlib by def)72 205.8 R 3.215
(ault. It)-.11 F .466(is compiled in the X serv)3.215 F .466(er by def)
-.165 F .466(ault only on)-.11 F(Sun and Omron Luna machines.)72 218.8 Q
-1.21(Yo)5.5 G 2.75(uc)1.21 G(an compile it in by setting)-2.75 E
(#de\214ne BuildXKB YES)108 237.8 Q(/* for support in the X serv)109.663
E(er */)-.165 E(#de\214ne BuildXKBLib YES)108 250.8 Q
(/* for support in the X library */)94.384 E .553(in the \214le)72 269.8
R F2(xc/con\214g/cf/site.def)3.303 E F0 6.053(.N)C .553
(ote that enabling XKB in the X serv)-6.053 F .553(er is a perv)-.165 F
(asi)-.275 E .883 -.165(ve c)-.275 H .552(hange; you need).165 F
(to clean the serv)72 282.8 Q(er and reb)-.165 E(uild e)-.22 E -.165(ve)
-.275 G(rything if you change this option.).165 E -.495(Tu)72 299.4 S
.368(rning on XKB in the X serv).495 F .368
(er usually requires changes to the v)-.165 F .369(endor ddx k)-.165 F
-.165(ey)-.11 G .369(board handling.).165 F .369(There is)5.869 F
(currently support only in the Sun and Omron ddx.)72 312.4 Q .728
(If you turn on)72 329 R F2(BuildXKBLib)3.478 E F0 3.478(,a)C .728
(dditional functions are added to Xlib)-3.478 F 6.228(.S)-.44 G .727
(ince the resulting library is non-)-6.228 F .263(standard, it is gi)72
342 R -.165(ve)-.275 G 3.013(nad).165 G(if)-3.013 E .263(ferent name:)
-.275 F F2(libX11kb)3.014 E F0 .264(instead of)3.014 F F2(libX11)3.014 E
F0 5.764(.A)C .264(ll Mak)-5.764 F .264(e\214les produced by)-.11 F F1
(imak)3.014 E(e)-.11 E F0(will)3.014 E(use)72 355 Q F2(\255lX11kb)2.75 E
F0(to link Xlib)2.75 E(.)-.44 E .679
(The library changes for XKB are kno)72 371.6 R .679(wn not to w)-.275 F
.679(ork on the Cray; man)-.11 F 3.428(yo)-.165 G .678(ther systems ha)
-3.428 F 1.008 -.165(ve b)-.22 H .678(een tested,).165 F
(including the Alpha AXP)72 384.6 Q(.)-1.221 E
(There are some XKB test programs in)72 401.2 Q F2(contrib/test/Xkb)2.75
E F0(.)A .87
(The XKB support in Xlib is still at an early stage of formal re)72
417.8 R(vie)-.275 E 3.621(wa)-.275 G .871(nd could change.)-3.621 F
2.631 -.88(We e)6.371 H .871(xpect some).715 F .974(additions in an e)72
430.8 R -.165(ve)-.275 G .974(ntual standard, b).165 F .974(ut fe)-.22 F
3.724(wc)-.275 G .973(hanges to the interf)-3.724 F .973(aces pro)-.11 F
.973(vided in this implementation.)-.165 F(A)6.473 E -.11(wo)72 443.8 S
(rking draft of the protocol is in).11 E F2(/xc/doc/specs/Xkb/)2.75 E F0
(.)A F2 2.75(4.35.3. LBX)72 482.8 R(\(Lo)2.75 E 2.75(wB)-.11 G(and)-2.75
E(width X\))-.165 E F0 .49(The X Consortium is w)72 512.4 R .491
(orking to de\214ne a standard for running X applications o)-.11 F -.165
(ve)-.165 G 3.241(rs).165 G .491(erial lines, wide area)-3.241 F(netw)72
525.4 Q .324(orks, and other slo)-.11 F 3.074(wl)-.275 G 3.074
(inks. This)-3.074 F(ef)3.074 E .324(fort, called Lo)-.275 F 3.073(wB)
-.275 G .323(andwidth X \(LBX\), aims to impro)-3.073 F .653 -.165(ve t)
-.165 H .323(he startup).165 F(time, performance, and interacti)72 538.4
Q .33 -.165(ve f)-.275 H(eel of X applications run o).165 E -.165(ve)
-.165 G 2.75(rl).165 G .55 -.275(ow b)-2.75 H(andwidth transports.).275
E .648(LBX does this by interposing a)72 555 R F1(pseudo-server)3.398 E
F0 .649(\(called the)3.399 F F1(pr)3.399 E(oxy)-.495 E F0 3.399(\)b)C
.649(etween the X clients and the X serv)-3.399 F(er)-.165 E(.)-.605 E
1.3(The proxy caches data \215o)72 568 R 1.3(wing between the serv)-.275
F 1.3(er and the clients, mer)-.165 F 1.299
(ges the X protocol streams, and)-.198 F .041
(compresses the data that is sent o)72 581 R -.165(ve)-.165 G 2.792(rt)
.165 G .042(he lo)-2.792 F 2.792(wb)-.275 G .042(andwidth wire.)-2.792 F
.042(The X serv)5.542 F .042(er at the other end uncompresses)-.165 F
.873(the data and splits it back out into separate request streams.)72
594 R .872(The tar)6.372 F .872(get is to mak)-.198 F 3.622(em)-.11 G
(an)-3.622 E 3.622(yXa)-.165 G(pplications)-3.622 E
(transparently usable o)72 607 Q -.165(ve)-.165 G 2.75(r9).165 G
(600 bps modems.)-2.75 E 3.646(As)72 623.6 S .896
(napshot of the code for this ef)-3.646 F .896(fort is included in)-.275
F F2(xc/w)3.646 E(orkInPr)-.11 E(ogr)-.198 E(ess/lbx/)-.198 E F0 .896
(for people to e)3.646 F .897(xamine and)-.165 F(be)72 636.6 Q(gin e)
-.165 E(xperimenting with.)-.165 E(It contains the follo)5.5 E
(wing features:)-.275 E 21.15<834c>72 653.2 S 1.906
(ZW compression of the binary data stream.)-21.15 F 1.906
(Since commercial use of LZW requires licensing)7.406 F 1.664
(patented technology)97 666.2 R 4.414(,w)-.715 G 4.414(ea)-4.414 G 1.665
(re also looking for an unencumbered algorithm and implementation to)
-4.414 F(pro)97 679.2 Q(vide as well.)-.165 E 21.15<8344>72 695.8 S
(elta compression of X pack)-21.15 E(ets \(representing pack)-.11 E
(ets as dif)-.11 E(ferences from pre)-.275 E(viously sent pack)-.275 E
(ets\).)-.11 E 21.15<8352>72 712.4 S
(e-encoding of some graphics requests \(points, lines, se)-21.15 E
(gments, rectangles, and arcs\).)-.165 E(29)300.5 769 Q EP
%%Page: 30 32
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E 21.15<834d>72 85 S(otion e)-21.15 E -.165(ve)-.275 G
(nt throttling \(to k).165 E(eep from \215ooding the wire\).)-.11 E
21.15<8343>72 101.6 S .093(aching of data in the proxy for lar)-21.15 F
.093(ge data objects that otherwise w)-.198 F .093
(ould be transmitted o)-.11 F -.165(ve)-.165 G 2.843(rt).165 G .093
(he wire)-2.843 F(multiple times \(e.g., properties, font metrics, k)97
114.6 Q -.165(ey)-.11 G
(board mappings, connection startup data, etc.\).).165 E 21.15<8353>72
131.2 S 1.02(hort-circuiting of requests for constant data \(e.g., atom\
s, colorname/r)-21.15 F 1.02(gb mappings, and read-only)-.198 F
(color cells\).)97 144.2 Q(Ho)72 160.8 Q(we)-.275 E -.165(ve)-.275 G .88
-.44(r, t).165 H(he follo).44 E(wing items ha)-.275 E .33 -.165(ve y)
-.22 H(et to be implemented \(which is wh).165 E 2.75(yi)-.055 G 2.75
(ti)-2.75 G(sn')-2.75 E 2.75(tas)-.198 G(tandard yet\):)-2.75 E 21.15
<8352>72 177.4 S(e-encoding of a number of requests \(e.g., QueryF)
-21.15 E(ont\), e)-.165 E -.165(ve)-.275 G(nts, etc.).165 E 21.15<8353>
72 194 S(upport for BIG-REQ)-21.15 E(UESTS e)-.11 E(xtension.)-.165 E
21.15<8341>72 210.6 S(non-netw)-17.23 E(ork)-.11 E 1.17
(ed serial protocol for en)-.11 F 1.17
(vironments which cannot support os-le)-.44 F -.165(ve)-.275 G 3.919(ln)
.165 G(etw)-3.919 E 1.169(orking o)-.11 F -.165(ve)-.165 G(r).165 E
(serial lines.)97 223.6 Q 21.15<8341>72 240.2 S .273
(full speci\214cation needs to be written describing the netw)-18.127 F
.274(ork protocol used between the proxy and)-.11 F(the serv)97 253.2 Q
(er)-.165 E(.)-.605 E .594(The X Consortium is continuing to w)72 269.8
R .593
(ork on both the implementation of the remaining items and the full)-.11
F 2.943(speci\214cation. The)72 282.8 R .193(goal is to ha)2.943 F .523
-.165(ve a)-.22 H .193(ll of the pieces ready for public re).165 F(vie)
-.275 E 2.943(wl)-.275 G .193(ater this year)-2.943 F 5.693(.S)-.605 G
.193(ince the speci-)-5.693 F .776(\214cation for LBX)72 295.8 R/F1 11
/Times-Italic@0 SF(will)3.526 E F0 .776
(change, we strongly recommend ag)3.526 F .776(ainst an)-.055 F .776
(yone incorporating LBX into a product)-.165 F .991
(based on this prototype.)72 308.8 R .991(But, the)6.491 F 3.742(ya)
-.165 G .992(re encouraged to start looking at the code, e)-3.742 F .992
(xamining the concepts,)-.165 F(and pro)72 321.8 Q
(viding feedback on its design.)-.165 E/F2 11/Times-Bold@0 SF 2.75
(4.35.4. RECORD)72 360.8 R(extension)2.75 E F0 1.032
(RECORD is an X protocol e)72 390.4 R 1.032(xtension that supports the \
recording of all core X protocol and arbitrary X)-.165 F -.165(ex)72
403.4 S(tension protocol.).165 E 2.989(Av)72 420 S .239(ersion of the e)
-3.154 F .239(xtension is included in)-.165 F F2(xc/w)2.989 E(orkInPr)
-.11 E(ogr)-.198 E(ess/r)-.198 E(ecord)-.198 E F0 5.739(.T)C .239
(he implementation does not quite)-5.739 F .536(match the v)72 433 R
.536(ersion 1.2 draft speci\214cation, b)-.165 F .536
(ut the spec is going to change an)-.22 F(yw)-.165 E .535(ay; the v)-.11
F .535(ersion 1.3 draft is)-.165 F(in)72 446 Q F2(xc/doc/specs/Xext/r)
3.464 E(ecord.ms)-.198 E F0 6.214(.T)C .714
(he GetCon\214g request is not fully implemented.)-6.214 F 3.465(At)
6.215 G .715(est program is in)-3.465 F F2(contrib/test/r)72 459 Q
(ecord)-.198 E F0(.)A F2 2.75(4.35.5. Simple)72 498 R(Session Manager)
2.75 E F0 4.526(As)72 527.6 S 1.776(imple session manager has been de)
-4.526 F -.165(ve)-.275 G 1.776(loped to test the ne).165 F 4.526(wS)
-.275 G 1.775(ession Management protocol.)-4.526 F 1.775(At the)7.275 F
.502(moment, it does not e)72 540.6 R -.165(xe)-.165 G .502
(rcise the complete XSMP protocol and the user interf).165 F .503
(ace is rather simple.)-.11 F(While)6.003 E .638(it does ha)72 553.6 R
.968 -.165(ve e)-.22 H .638(nough functionality to mak).165 F 3.388(ei)
-.11 G 3.388(tu)-3.388 G .638(seful, it needs more w)-3.388 F .637
(ork before we w)-.11 F .637(ould w)-.11 F .637(ant people to)-.11 F
(depend on it or use it as a good e)72 566.6 Q(xample of ho)-.165 E 2.75
(wt)-.275 G 2.75(oi)-2.75 G(mplement the session protocol.)-2.75 E 21.15
<8348>72 583.2 S(andles accepting connections from clients)-21.15 E
21.15<8348>72 599.8 S(andles graceful or une)-21.15 E
(xpected termination of clients)-.165 E 21.15<834d>72 616.4 S
(aintains database of all properties set by clients)-21.15 E 21.15<8355>
72 633 S(ser interf)-21.15 E(ace pro)-.11 E(vides a w)-.165 E
(ay to issue checkpoint and shutdo)-.11 E(wn messages to clients)-.275 E
21.15<834d>72 649.6 S(anages client interaction with the user)-21.15 E
21.15<8343>72 666.2 S(an restart clients.)-21.15 E
(Clients running on remote machines are handled using the ne)5.5 E(w)
-.275 E F1 -.11(rs)2.75 G(tart).11 E F0(protocol.)2.75 E 21.15<8352>72
682.8 S(equires MIT)-21.15 E(-MA)-1.012 E
(GIC-COOKIE-1 authentication from clients.)-.44 E 1.76 -.88(We h)72
699.4 T -2.475 -.22(av e).88 H(not yet written a proxy for connecting I\
CCCM 1.0 clients to the session manager)2.97 E(.)-.605 E 2.75(As)72 716
S(ample client,)-2.75 E F1(xsmclient)2.75 E F0 2.75(,h)C
(as been written to demonstrate the session support in Xt.)-2.75 E(30)
300.5 769 Q EP
%%Page: 31 33
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E/F1 11/Times-Bold@0 SF 2.75(4.35.6. Multi-Thr)72 85 R(eaded X Ser)-.198
E -.11(ve)-.11 G(r).11 E F0 1.575(An attempt has been made to mer)72
114.6 R 1.575(ge the multi-threaded serv)-.198 F 1.575
(er source with the single-threaded source.)-.165 F 1.119
(The result is in the)72 127.6 R F1(xc/w)3.869 E(orkInPr)-.11 E(ogr)
-.198 E(ess/MTXser)-.198 E -.11(ve)-.11 G(r).11 E F0(directory)3.869 E
6.619(.T)-.715 G 1.119(he sources here include only \214les that)-6.619
F 1.81(were changed from the single-threaded serv)72 140.6 R(er)-.165 E
7.31(.T)-.605 G 1.81(he multi-threaded serv)-7.31 F 1.81
(er may not compile.)-.165 F(Unfortu-)7.31 E(nately)72 153.6 Q 3.313(,t)
-.715 G .563(he single-threaded serv)-3.313 F .563(er sources ha)-.165 F
.893 -.165(ve c)-.22 H .563(ontinued to e).165 F -.22(vo)-.275 G(lv).22
E 3.313(es)-.165 G .563(ince this snapshot of the MTXserv)-3.313 F(er)
-.165 E -.11(wa)72 166.6 S 3.098(sp).11 G .348(roduced, so there is w)
-3.098 F .348(ork to be done to get the MTXserv)-.11 F .349
(er sources back into a state where the)-.165 F 3.099(yc)-.165 G(an)
-3.099 E(be compiled.)72 179.6 Q F1 2.75(4.36. ANSI\214cation)72 218.6 R
F0 -.88(We)72 248.2 S -1.815 -.55('v e).88 H 1.008
(changed our sources to stop using the BSD function names inde)4.308 F
1.007(x, rinde)-.165 F 1.007(x, bcop)-.165 F 2.437 -.715(y, b)-.11 H
1.007(cmp; we no).715 F(w)-.275 E 1.041(use strchr)72 261.2 R 3.791(,s)
-.44 G(trrchr)-3.791 E 3.791(,m)-.44 G(emcp)-3.791 E(y/memmo)-.11 E
-.165(ve)-.165 G 3.791(,a).165 G 1.041(nd memcmp.)-3.791 F 2.802 -.88
(We s)6.542 H 1.042(till use the name bzero \(because there is no).88 F
3.404(BSD equi)72 274.2 R -.275(va)-.275 G 3.403
(lent for the general case of memset\) b).275 F 3.403
(ut it is translated to memset via a #de\214ne in)-.22 F 2.75
(<X11/Xfuncs.h>. The)72 287.2 R(BSD function names are still supported \
in <X11/Xos.h> and <X11/Xfuncs.h>.)2.75 E
(Most client-side uses of caddr_t should no)72 303.8 Q 2.75(wb)-.275 G
2.75(eg)-2.75 G(one from our sources.)-2.75 E
(Explicit declarations of errno are no)72 320.4 Q 2.75(wo)-.275 G
(nly used on non-ANSI systems.)-2.75 E
(The libraries use more standard POSIX *_t types.)72 337 Q F1 2.75
(4.37. Miscellaneous)72 376 R F0 2.851(An)72 405.6 S .651 -.275(ew v)
-2.851 H .102(ersion of the).11 F/F2 11/Times-Italic@0 SF(patc)2.852 E
(h)-.165 E F0 .102(program is in)2.852 F F1(xc/util/patch)2.852 E F0
2.852(;i)C 2.852(tu)-2.852 G .102(nderstands the uni\214ed dif)-2.852 F
2.852(ff)-.275 G .102(ormat produced by)-2.852 F(GNU)72 418.6 Q F2(dif)
2.75 E(f)-.198 E F0(.)A F1 2.75(5. Filing)72 457.6 R(Bug Reports)2.75 E
F0 .145(If you \214nd a reproducible b)72 487.2 R .145(ug in softw)-.22
F .145(are in the)-.11 F F1(xc)2.895 E F0(directory)2.895 E 2.895(,o)
-.715 G 2.895<728c>-2.895 G .145(nd b)-2.895 F .145(ugs in the)-.22 F F1
(xc)2.895 E F0 .145(documentation, please)2.895 F 1.919(send a b)72
500.2 R 1.919
(ug report to the X Consortium using the form in the \214le)-.22 F F1
(xc/b)4.67 E(ug-r)-.22 E(eport)-.198 E F0 1.92(and this destination)4.67
F(address:)72 513.2 Q(xb)108 532.2 Q(ugs@x.or)-.22 E(g)-.198 E .867
(Please try to pro)72 554.8 R .866(vide all of the information requeste\
d on the form if it is applicable; the little e)-.165 F .866(xtra time)
-.165 F .038(you spend on the report will mak)72 567.8 R 2.788(ei)-.11 G
2.788(tm)-2.788 G .039
(uch easier for us to reproduce, \214nd, and \214x the b)-2.788 F 2.789
(ug. Receipt)-.22 F .039(of b)2.789 F(ug)-.22 E
(reports is generally ackno)72 580.8 Q(wledged, b)-.275 E
(ut sometimes it can be delayed by a fe)-.22 E 2.75(ww)-.275 G(eeks.)
-2.75 E .231(Bugs in)72 597.4 R F1(contrib)2.981 E F0(softw)2.981 E .231
(are should not be reported to the X Consortium.)-.11 F .23
(Consult the documentation for the)5.73 F(indi)72 610.4 Q(vidual softw)
-.275 E(are to see where \(if an)-.11 E(ywhere\) to report the b)-.165 E
(ug.)-.22 E F1 2.75(6. Public)72 649.4 R(Fixes)2.75 E F0 2.66 -.88(We o)
72 679 T .9(ccasionally put out patches to X Consortium softw).88 F .9
(are, to \214x an)-.11 F 3.65(ys)-.165 G .901
(erious problems that are disco)-3.65 F(v-)-.165 E 2.993(ered. Such)72
692 R<8c78>2.993 E .243(es \(if an)-.165 F .243(y\) can be found on)
-.165 F F1(ftp.x.or)2.993 E(g)-.11 E F0 2.993(,i)C 2.993(nt)-2.993 G
.243(he directory)-2.993 F F1(pub/R6/\214xes)2.993 E F0 2.993(,u)C .243
(sing anon)-2.993 F .243(ymous FTP)-.165 F(.)-1.221 E -.165(Fo)72 708.6
S 2.817(rt).165 G .067(hose without FTP access, indi)-2.817 F .067
(vidual \214x)-.275 F .068
(es can be obtained by electronic mail by sending a message to)-.165 F
(xstuf)108 727.6 Q(f@x.or)-.275 E(g)-.198 E(31)300.5 769 Q EP
%%Page: 32 34
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E .664(In the usual case, the message should ha)72 85 R .994
-.165(ve a s)-.22 H .664(ubject line and no body).165 F 3.414(,o)-.715 G
3.414(ras)-3.414 G .664(ingle-line body and no sub-)-3.414 F
(ject, in either case the line looking lik)72 98 Q(e:)-.11 E(send \214x)
108 117 Q(es)-.165 E/F1 11/Times-Italic@0 SF(number)2.75 E F0(where)72
139.6 Q F1(number)2.762 E F0 .012(is a decimal number)2.762 F 2.762(,s)
-.44 G .012(tarting from one.)-2.762 F 1.773 -.88(To g)5.512 H .013
(et a summary of a).88 F -.275(va)-.22 G .013(ilable \214x).275 F .013
(es, mak)-.165 F 2.763(et)-.11 G .013(he line:)-2.763 F(inde)108 158.6 Q
2.75<788c>-.165 G -.165(xe)-2.75 G(s).165 E(If you need help, mak)72
181.2 Q 2.75(et)-.11 G(he line:)-2.75 E(help)108 200.2 Q .927
(Some mailers produce mail headers that are unusable for e)72 222.8 R
.927(xtracting return addresses.)-.165 F .927(If you use such a)6.427 F
(mailer)72 235.8 Q 4.642(,y)-.44 G 1.893(ou w)-4.642 F(on')-.11 E 4.643
(tg)-.198 G 1.893(et an)-4.643 F 4.643(yr)-.165 G 4.643(esponse. If)
-4.643 F 1.893(you happen to kno)4.643 F 4.643(wa)-.275 G 4.643(ne)
-4.643 G 1.893(xplicit return path, you can include)-4.808 F
(include one in the body of your message, and the daemon will use it.)72
248.8 Q -.165(Fo)5.5 G 2.75(re).165 G(xample:)-2.915 E(path)108 267.8 Q
F1(user)2.75 E F0(%)A F1(host)A F0(.bitnet@mitvma.mit.edu)A/F2 11
/Times-Bold@0 SF 2.75(7. Ackno)72 312.8 R(wledgements)-.11 E F0 1.604
(Release 6 of X V)72 342.4 R 1.604
(ersion 11 is brought to you by X Consortium, Inc: Bob Schei\215er)
-1.221 F 4.353(,J)-.44 G 1.603(anet O'Halloran,)-4.353 F 1.67
(Ralph Swick, Matt Landau, Donna Con)72 355.4 R -.165(ve)-.44 G 1.67
(rse, Stephen Gildea, Jay Hersh, Kaleb K).165 F(eithle)-.275 E 3.1 -.715
(y, R)-.165 H 1.67(alph Mor).715 F(,)-.44 E(Da)72 368.4 Q .33 -.165
(ve W)-.22 H(iggins, and Gary Cutbill.)-.275 E(Man)72 385 Q 3.104(yc)
-.165 G .353(ompanies and indi)-3.104 F .353(viduals ha)-.275 F .683
-.165(ve c)-.22 H .353(ooperated and w).165 F(ork)-.11 E .353(ed e)-.11
F .353(xtremely hard to mak)-.165 F 3.103(et)-.11 G .353
(his release a real-)-3.103 F(ity)72 398 Q 3.93(,a)-.715 G 1.18
(nd our thanks go out to them.)-3.93 F -1.21(Yo)6.681 G 3.931(uw)1.21 G
1.181(ill \214nd man)-3.931 F 3.931(yo)-.165 G 3.931(ft)-3.931 G 1.181
(hem listed in the ackno)-3.931 F 1.181(wledgements in the)-.275 F(indi)
72 411 Q .683(vidual speci\214cations.)-.275 F .683
(Major implementation contrib)6.183 F .682
(utions come from Data General, Digital, Fujitsu,)-.22 F(HP)72 424 Q
2.75(,N)-1.221 G(CD, NCR, Omron, SGI, Son)-2.75 E 1.43 -.715(y, S)-.165
H(unSoft, and XFree86.).715 E(Contrib)72 440.6 Q .818(utions were recei)
-.22 F -.165(ve)-.275 G 3.568(df).165 G .818(rom the follo)-3.568 F
3.569(wp)-.275 G .819(eople at v)-3.569 F .819
(arious X Consortium member companies.)-.275 F(Each)6.319 E 2.75(XW)72
453.6 S(indo)-3.19 E 2.75(wS)-.275 G(ystem release is the w)-2.75 E
(ork of man)-.11 E 1.43 -.715(y, m)-.165 H(an).715 E 2.75(yp)-.165 G
(eople, and this list is surely incomplete.)-2.75 E(Fresco)72 470.2 Q
1.01(Mark Linton \(Silicon Graphics\); Chuck Price \(SunSoft\); Charles\
 Brauer \(Fujitsu\); Ste)97 483.2 R 1.339 -.165(ve C)-.275 H(hurchill)
.165 E(\(Fujitsu\); Ste)97 496.2 Q .33 -.165(ve T)-.275 H
(ang \(Stanford Uni)-.715 E -.165(ve)-.275 G(rsity\); Douglas P).165 E
(an \(Fujitsu\); Jean-Daniel Fek)-.165 E(ete \(2001 S.A.\))-.11 E(Xlib)
72 512.8 Q(Courtne)97 525.8 Q 2.75(yL)-.165 G(oomis \(He)-2.75 E
(wlett-P)-.275 E(ackard Compan)-.165 E
(y\); Daniel Dardailler \(Open Softw)-.165 E(are F)-.11 E(oundation\))
-.165 E(Xlib internationalization)72 542.4 Q .519
(The manager of the internationalization project is Masahik)97 555.4 R
3.27(oN)-.11 G .52(arita \(Fujitsu\).)-3.27 F .52(The principal authors)
6.02 F .126(of Input Method Protocol document are Hideki Hiura \(SunSof\
t\) and Masahik)97 568.4 R 2.876(oN)-.11 G .125(arita \(Fujitsu\).)
-2.876 F(The)5.625 E .673(principal authors of Xlib speci\214cation Cha\
pter 13 are Hideki Hiura \(SunSoft\) and Shigeru Y)97 581.4 R(amada)-1.1
E 1.36(\(Fujitsu OSSI\).)97 594.4 R 1.36(The principal producers of the\
 sample implementation of the internationalization)6.86 F -.11(fa)97
607.4 S .304(cilities are Jef).11 F(fre)-.275 E 3.054(yB)-.165 G .305
(loom\214eld \(Fujitsu OSSI\), T)-3.054 F .305(akashi Fujiw)-.88 F .305
(ara \(Fujitsu\), Hideki Hiura \(SunSoft\),)-.11 F -1.21(Yo)97 620.4 S
1.033(shio Horiuchi \(IBM\), Mak)1.21 F 1.033
(oto Inada \(Digital\), Hiromu Inukai \(Nihon SunSoft\), Song JaeK)-.11
F(yung)-.275 E .235(\(KAIST\), Riki Ka)97 633.4 R -.11(wa)-.165 G .235
(guchi \(Fujitsu\), Frank).11 F 2.985(yL)-.165 G .235
(ing \(Digital\), Hiro)-2.985 F .235
(yuki Miyamoto \(Digital\), Hidetoshi)-.11 F -.88(Ta)97 646.4 S 1.985
(jima \(HP\), T).88 F 1.984(oshimitsu T)-.88 F 1.984
(erazono \(Fujitsu\), Mak)-.77 F 1.984(oto W)-.11 F 1.984
(akamatsu \(Son)-.88 F 1.984(y\), Masaki W)-.165 F 1.984(akao \(IBM\),)
-.88 F .347(Shigeru Y)97 659.4 R .347
(amada \(Fujitsu OSSI\) and Katsuhisa Y)-1.1 F .347(ano \(T)-1.1 F 3.097
(oshiba\). The)-.88 F .348(coordinators of the inte)3.097 F(gration,)
-.165 E 1.488(testing, and release of this implementation are Nob)97
672.4 R 1.487(uyuki T)-.22 F 1.487(anaka \(Son)-.88 F 1.487(y\) and Mak)
-.165 F 1.487(oto W)-.11 F(akamatsu)-.88 E(\(Son)97 685.4 Q 2.936
(y\). Others)-.165 F .186(who ha)2.936 F .517 -.165(ve c)-.22 H(ontrib)
.165 E .187
(uted on the architectural design or the testing of sample implemen-)
-.22 F .925(tation are Hector Chan \(Digital\), Michael K)97 698.4 R
.925(ung \(IBM\), Joseph Kw)-.165 F .924(ok \(Digital\), Hiro)-.11 F
.924(yuki Machida)-.11 F(\(Son)97 711.4 Q .874
(y\), Nelson Ng \(SunSoft\), Frank Rojas \(IBM\), Y)-.165 F .874
(oshiyuki Se)-1.21 F -.055(ga)-.165 G 1.094 -.11(wa \()-.11 H .875
(Fujitsu OSSI\), Makik).11 F 3.625(oS)-.11 G(hi-)-3.625 E .398(mamura \
\(Fujitsu\), Shoji Sugiyama \(IBM\), Lining Sun \(SGI\), Masaki T)97
724.4 R(ak)-.88 E .397(euchi \(Son)-.11 F .397(y\), Jinsoo Y)-.165 F
(oon)-1.21 E(32)300.5 769 Q EP
%%Page: 33 35
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(\(KAIST\) and Akiyasu Zen \(HP\).)97 85 Q(Xt Intrinsics)72 101.6 Q
.381(Douglas Rand \(Open Softw)97 114.6 R .381(are F)-.11 F .381
(oundation\), parameterized selections; P)-.165 F .382
(aul Asente \(Adobe Systems)-.165 F 1.975(Incorporated\), e)97 127.6 R
1.975(xtension e)-.165 F -.165(ve)-.275 G 1.974(nt handling; Ajay V).165
F 1.974(ohra \(SunSoft\), support for multithreading; Sam)-1.419 F .184
(Chang \(No)97 140.6 R -.165(ve)-.165 G .184(ll\), widget caching resea\
rch; Larry Cable \(SunSoft\), object allocation and change man-).165 F
1.767(aged set; V)97 153.6 R 1.767(ania Jolobof)-1.221 F 4.516(f\()-.275
G 1.766(Open Softw)-4.516 F 1.766(are F)-.11 F 1.766
(oundation\); Courtne)-.165 F 4.516(yL)-.165 G 1.766(oomis \(He)-4.516 F
(wlett-P)-.275 E 1.766(ackard Com-)-.165 F(pan)97 166.6 Q 1.705
(y\); Daniel Dardailler \(Open Softw)-.165 F 1.706(are F)-.11 F 1.706
(oundation\); and Ellis Cohen \(Open Softw)-.165 F 1.706(are F)-.11 F
(ounda-)-.165 E 3.438(tion\). The)97 179.6 R(follo)3.438 E .688
(wing people at Geor)-.275 F .688(gia T)-.198 F .688(ech contrib)-.77 F
.688(uted the e)-.22 F .687(xtensions for disability access: K)-.165 F
(eith)-.275 E(Edw)97 192.6 Q(ards, Susan Liebeskind, Beth Mynatt, and T)
-.11 E(om Rodriguez.)-.88 E(Athena W)72 209.2 Q(idget Set)-.44 E
(Frank Sheeran \(Omron Data General\))97 222.2 Q 2.75(XL)72 238.8 S
(ogical F)-2.75 E(ont Description)-.165 E -.165(Pa)97 251.8 S .586
(ul Asente \(Adobe Systems Incorporated\); Nathan Me).165 F .586
(yers \(He)-.165 F(wlett-P)-.275 E .586(ackard Compan)-.165 F .586
(y\); Jim Gra-)-.165 F
(ham \(Sun\); Perry A. Caro \(Adobe Systems Incorporated\))97 264.8 Q
-.165(Fo)72 281.4 S(nt Support Enhancments).165 E 4.682(Nathan Me)97
294.4 R 4.682(yers \(He)-.165 F(wlett-P)-.275 E 4.682(ackard Compan)
-.165 F 4.681(y\), implementation of matrix enhancement, glyph)-.165 F
(caching, scalable aliases, sample authorization protocol)97 307.4 Q
2.75(XT)72 324 S(ransport Library)-3.135 E(Stuart R. Anderson \(A)97 337
Q(T&T Global Information Solutions\))-1.221 E 2.75(XK)72 353.6 S -.165
(ey)-3.025 G(board Extension).165 E 1.664(Erik F)97 366.6 R 1.664(ortun\
e \(Silicon Graphics\), design and sample implementation; Jordan Bro)
-.165 F 1.664(wn \(Quarterdeck)-.275 F(Of)97 379.6 Q 2.568
(\214ce Systems\); W)-.275 F 2.567(ill W)-.44 F(alk)-.88 E 2.567
(er \(Digital Equipment Corporation\), AccessX portion; Mark No)-.11 F
-.275(va)-.165 G(k).275 E(\(T)97 392.6 Q(race Center\), AccessX portion)
-.385 E(Lo)72 409.2 Q(w-Bandwidth X)-.275 E .111(Jim Fulton \(Netw)97
422.2 R .111(ork Computing De)-.11 F .112(vices\); Da)-.275 F .442 -.165
(ve L)-.22 H(emk).165 E 2.862(e\()-.11 G(Netw)-2.862 E .112
(ork Computing De)-.11 F .112(vices\); Dale T)-.275 F(ono-)-.88 E -.055
(ga)97 435.2 S 3.333(i\().055 G(Netw)-3.333 E .583(ork Computing De)-.11
F .583(vices\); K)-.275 F .583(eith P)-.275 F .583(ackard \(Netw)-.165 F
.583(ork Computing De)-.11 F .582(vices\); Chris Kantarjie)-.275 F(v)
-.275 E(\(Xerox P)97 448.2 Q(ARC\))-1.012 E 2.75(XI)72 464.8 S
(mage Extension)-2.75 E 2.403(Bob Shelle)97 477.8 R 5.153(y\()-.165 G
-.44(AG)-5.153 G 5.153(EL).44 G 2.404(ogic\), protocol architect, lead \
implementation architect; Larry Hare \(A)-5.153 F(GE)-.44 E 1.491
(Logic\), serv)97 490.8 R 1.49(er implementation; Dean V)-.165 F 1.49
(erheiden \(A)-1.221 F 1.49(GE Logic\), serv)-.44 F 1.49
(er implementation; Syd Log)-.165 F(an)-.055 E(\(A)97 503.8 Q 1.697
(GE Logic\), xieperf; Gary Rogers \(A)-.44 F 1.698
(GE Logic\), JPEG code, XIElib documentation; Ben F)-.44 F(ah)-.165 E(y)
-.055 E(\(A)97 516.8 Q(GE Logic\), client and serv)-.44 E
(er implementation)-.165 E(ICCCM)72 533.4 Q 2.207
(Stuart Marks \(SunSoft\); Gabe Be)97 546.4 R(ged-Do)-.165 E 4.957(v\()
-.165 G(He)-4.957 E(wlett-P)-.275 E 2.207(ackard Compan)-.165 F 2.207
(y\); Chan Benson \(He)-.165 F(wlett-)-.275 E -.165(Pa)97 559.4 S 2.716
(ckard Compan).165 F 2.716(y\); Jordan Bro)-.165 F 2.717
(wn \(Quarterdeck Of)-.275 F 2.717
(\214ce Systems\); Larry Cable \(SunSoft\); Ellis)-.275 F .109
(Cohen \(Open Softw)97 572.4 R .109(are F)-.11 F .109
(oundation\); Brian Cripe \(He)-.165 F(wlett-P)-.275 E .108
(ackard Compan)-.165 F .108(y\); Susan Dahlber)-.165 F 2.858(g\()-.198 G
(Sil-)-2.858 E 1.767
(icon Graphics\); Peter Daifuku \(Silicon Graphics\); Andre)97 585.4 R
4.518(wd)-.275 G 1.768(eBlois \(Open Softw)-4.518 F 1.768(are F)-.11 F
(oundation\);)-.165 E(Cli)97 598.4 Q 1.729 -.165(ve F)-.275 H 1.399
(eather \(IXI\); Christian Jacobi \(Xerox P).165 F 1.398
(ARC\); Bill Janssen \(Xerox P)-1.012 F 1.398(ARC\); V)-1.012 F 1.398
(ania Jolobof)-1.221 F(f)-.275 E 1.431(\(Open Softw)97 611.4 R 1.432
(are F)-.11 F 1.432(oundation\); Phil Karlton \(Silicon Graphics\); Mar\
k Manasse \(Digital Equipment)-.165 F 2.26(Corporation\); T)97 624.4 R
2.26(odd Ne)-.88 F 2.26(wman \(Silicon Graphics\); K)-.275 F 2.259
(eith T)-.275 F 2.259(aylor \(He)-.88 F(wlett-P)-.275 E 2.259
(ackard Compan)-.165 F 2.259(y\); Jim)-.165 F -1.221(Va)97 637.4 S 1.788
(nGilder \(Digital Equipment Corporation\); Mik)1.221 F 4.538(eW)-.11 G
-.165(ex)-5.418 G 1.788(ler \(K).165 F 1.788(ubota P)-.165 F 1.789
(aci\214c\); Michael Y)-.165 F 1.789(ee \(Apple)-1.1 F(Computer\))97
650.4 Q(ICE)72 667 Q 1.64(Jordan Bro)97 680 R 1.64(wn \(Quarterdeck Of)
-.275 F 1.64(\214ce Systems\); V)-.275 F 1.64(ania Jolobof)-1.221 F 4.39
(f\()-.275 G 1.64(Open Softw)-4.39 F 1.639(are F)-.11 F 1.639
(oundation\); Stuart)-.165 F(Marks \(SunSoft\))97 693 Q(XSMP)72 709.6 Q
(Mik)97 722.6 Q 4.742(eW)-.11 G -.165(ex)-5.622 G 1.992(ler \(K).165 F
1.992(ubota P)-.165 F 1.993(aci\214c\); Jordan Bro)-.165 F 1.993
(wn \(Quarterdeck Of)-.275 F 1.993(\214ce Systems\); Ellis Cohen \(Open)
-.275 F(33)300.5 769 Q EP
%%Page: 34 36
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E(Softw)97 85 Q(are F)-.11 E(oundation\); V)-.165 E(ania Jolobof)
-1.221 E 2.75(f\()-.275 G(Open Softw)-2.75 E(are F)-.11 E
(oundation\); Stuart Marks \(SunSoft\))-.165 E(SYNC Extension)72 101.6 Q
-.385(Ti)97 114.6 S 3.069(mG).385 G .319(lauert \(Oli)-3.069 F -.165(ve)
-.275 G .319(tti Research Limited\); Da).165 F .649 -.165(ve C)-.22 H
(arv).165 E .318(er \(Digital Equipment Corporation\); Jim Gettys)-.165
F(\(Digital Equipment Corporation\); Pete Snider \(Digital Equipment Co\
rporation\))97 127.6 Q(RECORD)72 144.2 Q 4.776(Martha Zimet \(Netw)97
157.2 R 4.776(ork Computing De)-.11 F 4.776
(vices\); Robert Chesler \(Absol-puter\); Kieron Drak)-.275 F(e)-.11 E
.463(\(UniSoft\); Marc Ev)97 170.2 R .463(ans \(Syner)-.275 F .463
(gytics\); Jim Fulton \(Netw)-.198 F .463(ork Computing De)-.11 F .462
(vices\); K)-.275 F .462(en Miller \(Digi-)-.275 F
(tal Equipment Corporation\))97 183.2 Q 2.75(XI)72 199.8 S
(nput Extension tests)-2.75 E(Geor)97 212.8 Q(ge Sachs \(He)-.198 E
(wlett-P)-.275 E(ackard Compan)-.165 E(y\))-.165 E(PEX)72 229.4 Q -.275
(Ke)97 242.4 S 5.798(nG).275 G 3.049(arnett \(Shographics\); Cheryl Hun\
tington \(Sun Microsystems\); Karl Schultz \(IBM\); Jef)-5.798 F(f)-.275
E(Ste)97 255.4 Q -.165(ve)-.275 G(nson \(He).165 E(wlett-P)-.275 E
(ackard Compan)-.165 E(y\); P)-.165 E(aula W)-.165 E
(omack \(Digital Equipment Corporation\))-.88 E(Multi-Buf)72 272 Q
(fering Extension)-.275 E .344(Eng-Shien W)97 285 R 3.094(u\()-.55 G
.344(IBM\); John Marks \(He)-3.094 F(wlett-P)-.275 E .344(ackard Compan)
-.165 F .344(y\); Ian Elliott \(He)-.165 F(wlett-P)-.275 E .344
(ackard Com-)-.165 F(pan)97 298 Q(y\))-.165 E 2.75(Xs)72 314.6 S(erv)
-2.75 E(er)-.165 E 1.47(Milind P)97 327.6 R 1.47
(ansare \(SunSoft\), pixmap pri)-.165 F -.275(va)-.275 G 1.471
(tes; Peter Daifuku \(SGI\), layered windo).275 F 4.221(ws)-.275 G 1.471
(upport; Da)-4.221 F(vid)-.22 E 1.768
(Lister \(Adobe Systems Incorporated\), callback manager; K)97 340.6 R
1.768(en Whale)-.275 F 4.518(y\()-.165 G -.165(Ku)-4.518 G 1.767(bota P)
.165 F 1.767(aci\214c\), thin line)-.165 F(pix)97 353.6 Q .792(elizatio\
n; Joel McCormack \(Digital Equipment Corporation\), 64-bit mfb and cfb\
; Rob Lembree)-.165 F .541
(\(Digital Equipment Corporation\), 64-bit mfb and cfb; Da)97 366.6 R
-.22(vo)-.22 G 3.29(rM).22 G .54(atic \(MIT\), xnest ddx; Nathan Me)
-3.29 F(y-)-.165 E .424(ers \(He)97 379.6 R(wlett-P)-.275 E .424
(ackard Compan)-.165 F .424(y\), font support; Jordan Bro)-.165 F .424
(wn \(Quarterdeck Of)-.275 F .425(\214ce Systems\), -con\214g)-.275 F(o\
ption; Michael Brenner \(Apple Computer\), macII ddx; Thomas Roell, svg)
97 392.6 Q 2.75(ad)-.055 G(dx)-2.75 E(Multi-Threaded X Serv)72 409.2 Q
(er)-.165 E 2.934(John A. Smith \(while at Data General\), team leader;\
 H. Chiba \(Omron\), ddx; Ak)97 422.2 R 2.934(eio Harada)-.11 F 1.699
(\(Omron\), ddx; Mik)97 435.2 R 4.449(eH)-.11 G 1.699
(aynes \(Data General\), dix; Hidenob)-4.449 F 4.449(uK)-.22 G 1.7
(anaoka \(Omron\), ddx; P)-4.449 F 1.7(aul Layne)-.165 F .742
(\(Data General\), dix and ddx; T)97 448.2 R .741(akayuki Miyak)-.88 F
3.491(e\()-.11 G .741(Omron\), ddx; K)-3.491 F .741(eith P)-.275 F .741
(ackard \(Netw)-.165 F .741(ork Computing)-.11 F(De)97 461.2 Q 2.15(vic\
es\), design; Richard Potts \(Data General\), dix; Sid Manning \(IBM\),\
 inte)-.275 F 2.151(gration with core)-.165 F(serv)97 474.2 Q
(er; Rob Chesler \(Absol-puter\), inte)-.165 E(gration with core serv)
-.165 E(er)-.165 E(xdm modular loadable greeter)72 490.8 Q
(Peter Derr \(Digital Equipment Corporation\))97 503.8 Q(x11perf)72
520.4 Q 1.039(Joel McCormack \(Digital Equipment Corporation\); Graeme \
Gill \(Labtam Australia\); Mark Martin)97 533.4 R(\(CETIA\))97 546.4 Q
(con\214g)72 563 Q .765(Stuart R. Anderson \(A)97 576 R .766
(T&T Global Information Solutions\); Da)-1.221 F .766
(vid Brooks \(Open Softw)-.22 F .766(are F)-.11 F(ounda-)-.165 E .829
(tion\); K)97 589 R .829(endall Collett \(Motorola\); John Freeman \(Cr\
ay\); John Freitas \(Digital Equipment Corpora-)-.275 F 1.104(tion\); P)
97 602 R 1.104(atrick E. Kane \(Motorola\); Mark Kilg)-.165 F 1.104
(ard \(Silicon Graphics\); Akira K)-.055 F 1.105(on \(NEC\); Masahik)
-.385 F(o)-.11 E(Narita \(Fujitsu\); P)97 615 Q
(aul Shearer \(Sequent\); Mark Snitily \(SGCS\))-.165 E(XFree86 port)72
631.6 Q .796(Stuart R. Anderson \(A)97 644.6 R .796
(T&T Global Information Solutions\); Doug Anson; Gertjan Akk)-1.221 F
.795(erman; Mik)-.11 F(e)-.11 E .24(Bernson; Da)97 657.6 R .24(vid Da)
-.22 F .241(wes; Marc Ev)-.165 F .241(ans; P)-.275 F .241
(ascal Haible; Matthieu Herrb; Dirk Hohndel; Da)-.165 F .241
(vid Holland;)-.22 F 1.07(Alan Hourihane; Jef)97 670.6 R(fre)-.275 E
3.82(yH)-.165 G 1.069(su; Glenn Lai; T)-3.82 F 1.069
(ed Lemon; Rich Murphe)-.77 F 1.069(y; Hans Nasten; Mark Snitily;)-.165
F 2.152(Randy T)97 683.6 R(erb)-.77 E 2.152(ush; Jon T)-.22 F 2.152
(ombs; K)-.88 F 2.152(ees V)-.275 F 2.152(erstoep; P)-1.221 F 2.152
(aul V)-.165 F 2.152(ixie; Mark W)-.66 F(ea)-.88 E -.165(ve)-.22 G 2.152
(r; Da).165 F 2.152(vid W)-.22 F -.165(exe)-.88 G 2.153(lblat; Philip)
.165 F(Wheatle)97 696.6 Q(y; Thomas W)-.165 E(olfram; Orest Zboro)-.88 E
(wski)-.275 E(fonts)72 713.2 Q(Under)97 726.2 Q/F1 11/Times-Bold@0 SF
(xc/f)3.463 E(onts/)-.275 E F0 3.463(,t)C(he)-3.463 E F1(misc/)3.463 E
F0 .712(directory contains a f)3.462 F .712(amily of \214x)-.11 F .712
(ed-width fonts from Dale Schumacher)-.165 F(,)-.44 E(34)300.5 769 Q EP
%%Page: 35 37
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(se)97 85 Q -.165(ve)-.275 G 3.106(ral Kana fonts from Son).165 F 5.856
(yC)-.165 G 3.106(orporation, tw)-5.856 F 5.856(oH)-.11 G 3.107
(angul fonts from Dae)-5.856 F -.11(wo)-.275 G 5.857(oE).11 G 3.107
(lectronics, tw)-5.857 F(o)-.11 E(Hebre)97 98 Q 4.361(wf)-.275 G 1.611
(onts from Joseph Friedman, tw)-4.361 F 4.36(oc)-.11 G 1.61
(ursor fonts from Digital Equipment Corporation, and)-4.36 F .915
(cursor and glyph fonts from Sun Microsystems.)97 111 R(The)6.415 E/F1
11/Times-Bold@0 SF(Speedo)3.665 E F0 .916
(directory contains outline fonts con-)3.665 F(trib)97 124 Q 1.065
(uted by Bitstream, Inc.)-.22 F(The)6.565 E F1(75dpi)3.815 E F0(and)
3.815 E F1(100dpi)3.815 E F0 1.065
(directories contain bitmap fonts contrib)3.815 F 1.065(uted by)-.22 F
1.717(Adobe Systems, Inc., Digital Equipment Corporation, Bitstream, In\
c., Bigelo)97 137 R 4.467(wa)-.275 G 1.717(nd Holmes, and)-4.467 F
(Sun Microsystems, Inc.)97 150 Q(35)300.5 769 Q EP
%%Page: 36 38
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E(36)300.5 769 Q EP
%%Page: 1 39
%%BeginPageSetup
BP
%%EndPageSetup
/F0 13/Times-Bold@0 SF -1.196(Ta)269.626 85 S(ble of Contents)1.196 E/F1
11/Times-Roman@0 SF(1. Easy Build Instructions)97 127.6 Q -2.75 11
(...................... 1)9.721 H(2. What Is Release 6)97 144.2 Q -2.75
11(........................ 1)5.772 H(2.1. Ov)97 160.8 Q(ervie)-.165 E
2.75(wo)-.275 G 2.75(ft)-2.75 G(he X Consortium Release)-2.75 E -2.75 11
(................ 1)13.857 H(2.2. Supported Systems)97 177.4 Q -2.75 11
(....................... 2)6.355 H(2.3. The XC T)97 194 Q 3.099(ree .)
-.385 F -2.75 11(........................ 2)11 H(2.3.1. con\214g/)97
210.6 Q -2.75 11(.......................... 3)10.942 H(2.3.2. lib/)97
227.2 Q -2.75 11(........................... 3)13.076 H(2.3.3. doc/)97
243.8 Q -2.75 11(........................... 3)8.808 H(2.3.4. e)97 260.4
Q 6.223(xtensions .)-.165 F -2.75 11(........................ 3)11 H
(2.4. Extensions supported)97 277 Q -2.75 11(...................... 4)
10.337 H(2.5. Implementation P)97 293.6 Q 8.379(arameters .)-.165 F
-2.75 11(................... 4)11 H(3. Building X)97 310.2 Q -2.75 11
(.......................... 5)8.797 H(3.1. Unpacking the Distrib)97
326.8 Q 9.336(ution .)-.22 F -2.75 11(................... 5)11 H
(3.1.1. Unpacking a Compressed FTP Distrib)97 343.4 Q 13.307(ution .)
-.22 F -2.75 11(............. 5)11 H
(3.1.2. Unpacking a gzipped FTP Distrib)97 360 Q 5.365(ution .)-.22 F
-2.75 11(............... 5)11 H
(3.1.3. Unpacking a Split Compressed FTP Distrib)97 376.6 Q 3.517
(ution .)-.22 F -2.75 11(............ 6)11 H(3.1.4. Unpacking the T)97
393.2 Q(ape Distrib)-.88 E 4.727(ution .)-.22 F -2.75 11
(................. 6)11 H(3.1.5. Using the CD-R)97 409.8 Q 4.969(OM .)
-.44 F -2.75 11(..................... 6)11 H(3.2. Apply P)97 426.4 Q
10.81(atches .)-.165 F -2.75 11(....................... 6)11 H
(3.3. Symbolic Link T)97 443 Q 9.501(rees .)-.385 F -2.75 11
(..................... 7)11 H(3.4. Con\214guration P)97 459.6 Q 3.176
(arameters .)-.165 F -2.75 11(.................... 7)11 H
(3.5. System Notes)97 476.2 Q -2.75 11(........................ 8)16.442
H(3.5.1. gcc)97 492.8 Q -2.75 11(........................... 8)12.482 H
(3.5.2. SparcW)97 509.4 Q(orks 2.0)-.88 E -2.75 11
(....................... 8)12.757 H
(3.5.3. CenterLine C under Solaris 2.3)97 526 Q -2.75 11
(.................. 9)14.319 H(3.5.4. Microsoft W)97 542.6 Q(indo)-.44 E
(ws NT)-.275 E -2.75 11(..................... 9)5.255 H(3.6. The Build)
97 559.2 Q -2.75 11(.......................... 9)5.442 H
(3.7. Installing X)97 575.8 Q -8.25 11(......................... 1)11.25
H(0)-11 E(3.8. Shared Libraries)97 592.4 Q -8.25 11
(........................ 1)4.243 H(0)-11 E(3.9. Setting Up xterm)97 609
Q -8.25 11(....................... 1)15.221 H(0)-11 E
(3.10. Starting Serv)97 625.6 Q(ers at System Boot)-.165 E -8.25 11
(.................. 1)13.857 H(1)-11 E
(3.11. Using OPEN LOOK applications)97 642.2 Q -8.25 11
(.................. 1)7.29 H(1)-11 E(3.12. Reb)97 658.8 Q
(uilding after P)-.22 E 2.483(atches .)-.165 F -8.25 11
(.................... 1)11 H(2)-11 E(3.13. Building Contrib)97 675.4 Q
(uted Softw)-.22 E 1.801(are .)-.11 F -8.25 11(.................. 1)11 H
(2)-11 E(4. What Is Ne)97 692 Q 2.75(wi)-.275 G 2.75(nR)-2.75 G
(elease 6)-2.75 E -8.25 11(..................... 1)12.471 H(2)-11 E
(4.1. Ne)97 708.6 Q 2.75(wS)-.275 G 7.873(tandards .)-2.75 F -8.25 11
(....................... 1)11 H(3)-11 E(4.2. XIE \(X Image Extension\))
97 725.2 Q -8.25 11(..................... 1)5.167 H(3)-11 E(i)304.471
769 Q EP
%%Page: 2 40
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XW)72 49 S(indo)-3.19 E 2.75(wS)-.275 G
(ystem Release Notes)-2.75 E 2.75(XV)213.614 G(ersion 11, Release 6)
-3.971 E(4.3. Inter)97 85 Q(-Client Communications Con)-.22 E -.165(ve)
-.44 G(ntions Manual).165 E -8.25 11(............. 1)5.354 H(4)-11 E
(4.3.1. W)97 101.6 Q(indo)-.44 E 2.75(wM)-.275 G 10.15(anagement .)-2.75
F -8.25 11(.................... 1)11 H(4)-11 E(4.3.2. Selections)97
118.2 Q -8.25 11(......................... 1)10.029 H(4)-11 E
(4.3.3. Resource Sharing)97 134.8 Q -8.25 11(....................... 1)
4.848 H(4)-11 E(4.3.4. Session Management)97 151.4 Q -8.25 11
(..................... 1)16.453 H(5)-11 E(4.4. ICE \(Inter)97 168 Q
(-Client Exchange\))-.22 E -8.25 11(.................... 1)7.224 H(5)-11
E(4.5. SM \(Session Management\))97 184.6 Q -8.25 11
(.................... 1)12.482 H(5)-11 E(4.6. Input Method Protocol)97
201.2 Q -8.25 11(...................... 1)4.529 H(5)-11 E
(4.7. X Logical F)97 217.8 Q(ont Description)-.165 E -8.25 11
(.................... 1)11.118 H(6)-11 E(4.8. SYNC e)97 234.4 Q .415
(xtension .)-.165 F -8.25 11(....................... 1)11 H(6)-11 E
(4.9. BIG-REQ)97 251 Q(UESTS e)-.11 E 6.641(xtension .)-.165 F -8.25 11
(................... 1)11 H(7)-11 E(4.10. XC-MISC e)97 267.6 Q 5.915
(xtension .)-.165 F -8.25 11(..................... 1)11 H(7)-11 E
(4.11. XTEST e)97 284.2 Q 3.781(xtension .)-.165 F -8.25 11
(...................... 1)11 H(7)-11 E(4.12. T)97 300.8 Q(ree Reor)-.385
E -.055(ga)-.198 G 7.026(nization .).055 F -8.25 11
(..................... 1)11 H(7)-11 E(4.13. Con\214guration Files)97
317.4 Q -8.25 11(...................... 1)13.989 H(7)-11 E(4.14. K)97
334 Q 1.46(erberos .)-.275 F -8.25 11(......................... 1)11 H
(8)-11 E(4.15. X T)97 350.6 Q(ransport Library \(xtrans\))-.385 E -8.25
11(................... 1)14.726 H(8)-11 E(4.16. Xlib)97 367.2 Q -8.25 11
(........................... 1)10.942 H(8)-11 E
(4.17. Internationalization)97 383.8 Q -8.25 11
(...................... 1)13.098 H(9)-11 E(4.18. Xt)97 400.4 Q -8.25 11
(............................ 2)5.75 H(0)-11 E(4.19. Xa)97 417 Q -11.544
9.897(w. . . . . . . . . . . . . . . . . . . . . . . . . . .)-.165 H(21)
6.603 E(4.19.1. AsciiT)97 433.6 Q -.165(ex)-.77 G -6.352 7.301
(t. . . . . . . . . . . . . . . . . . . . . . . . .).165 H(21)9.199 E
(4.19.2. Command, Label, List, MenuButton, Repeater)97 450.2 Q 2.75(,S)
-.44 G(meBSB, and T)-2.75 E 3.715(oggle .)-.88 F -8.25 11(..... 2)11 H
(1)-11 E(4.20. PEX)97 466.8 Q -8.25 11(........................... 2)
9.721 H(1)-11 E(4.20.1. PEX Standards and Functionality)97 483.4 Q -8.25
11(................. 2)12.779 H(2)-11 E(4.21. Header Files)97 500 Q
-8.25 11(........................ 2)15.848 H(3)-11 E(4.22. F)97 516.6 Q
3.462(onts .)-.165 F -8.25 11(.......................... 2)11 H(3)-11 E
(4.23. F)97 533.2 Q(ont library)-.165 E -8.25 11
(......................... 2)5.915 H(3)-11 E(4.24. F)97 549.8 Q
(ont serv)-.165 E 5.783(er .)-.165 F -8.25 11
(........................ 2)11 H(3)-11 E(4.25. X serv)97 566.4 Q 4.1
(er .)-.165 F -8.25 11(......................... 2)11 H(4)-11 E
(4.25.1. Xnest)97 583 Q -8.25 11(.......................... 2)10.337 H
(5)-11 E(4.25.2. Xvfb)97 599.6 Q -8.25 11(.......................... 2)
13.395 H(5)-11 E(4.25.3. ddx)97 616.2 Q -8.25 11
(........................... 2)5.75 H(5)-11 E(4.26. Ne)97 632.8 Q 2.75
(wP)-.275 G 3.594(rograms .)-2.75 F -8.25 11(....................... 2)
11 H(6)-11 E(4.27. Old Softw)97 649.4 Q 10.15(are .)-.11 F -8.25 11
(....................... 2)11 H(6)-11 E(4.28. xhost)97 666 Q -8.25 11
(........................... 2)6.663 H(6)-11 E(4.29. xrdb)97 682.6 Q
-8.25 11(........................... 2)10.337 H(6)-11 E(4.30. twm)97
699.2 Q -8.25 11(........................... 2)10.942 H(6)-11 E
(4.31. xdm)97 715.8 Q -8.25 11(........................... 2)10.942 H(7)
-11 E(4.32. xterm)97 732.4 Q -8.25 11(........................... 2)
4.837 H(7)-11 E(ii)302.942 769 Q EP
%%Page: 3 41
%%BeginPageSetup
BP
%%EndPageSetup
/F0 11/Times-Roman@0 SF 2.75(XV)72 49 S(ersion 11, Release 6)-3.971 E
2.75(XW)213.614 G(indo)-3.19 E 2.75(wS)-.275 G(ystem Release Notes)-2.75
E(4.33. xset)97 85 Q -8.25 11(........................... 2)12.779 H(7)
-11 E(4.34. X T)97 101.6 Q(est Suite)-.77 E -8.25 11
(......................... 2)3.77 H(7)-11 E(4.35. W)97 118.2 Q
(ork in Progress)-.88 E -8.25 11(....................... 2)9.391 H(7)-11
E(4.35.1. Fresco)97 134.8 Q -8.25 11(.......................... 2)6.674
H(8)-11 E(4.35.2. XKB \(X K)97 151.4 Q -.165(ey)-.275 G
(board Extension\)).165 E -8.25 11(.................. 2)12.328 H(9)-11 E
(4.35.3. LBX \(Lo)97 168 Q 2.75(wB)-.275 G(andwidth X\))-2.75 E -8.25 11
(.................... 2)4.815 H(9)-11 E(4.35.4. RECORD e)97 184.6 Q
12.636(xtension .)-.165 F -8.25 11(.................... 3)11 H(0)-11 E
(4.35.5. Simple Session Manager)97 201.2 Q -8.25 11
(.................... 3)9.116 H(0)-11 E(4.35.6. Multi-Threaded X Serv)97
217.8 Q 4.111(er .)-.165 F -8.25 11(................... 3)11 H(1)-11 E
(4.36. ANSI\214cation)97 234.4 Q -8.25 11(........................ 3)
13.087 H(1)-11 E(4.37. Miscellaneous)97 251 Q -8.25 11
(........................ 3)8.203 H(1)-11 E(5. Filing Bug Reports)97
267.6 Q -8.25 11(....................... 3)14.902 H(1)-11 E
(6. Public Fix)97 284.2 Q .712(es .)-.165 F -8.25 11
(......................... 3)11 H(1)-11 E(7. Ackno)97 300.8 Q 9.402
(wledgements .)-.275 F -8.25 11(...................... 3)11 H(2)-11 E
(iii)301.413 769 Q EP
%%Trailer
end
%%EOF