Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
#	 $NetBSD: mi,v 1.210.2.1 2020/10/22 11:26:42 martin Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
./etc/mtree/set.xcomp					xcomp-sys-root
./usr/X11R7/bin/freetype-config				-unknown-	xorg
./usr/X11R7/bin/xft-config				-unknown-	obsolete
./usr/X11R7/include/EGL/egl.h				-unknown-	xorg,xorg_glamor
./usr/X11R7/include/EGL/eglext.h			-unknown-	xorg,xorg_glamor
./usr/X11R7/include/EGL/eglextchromium.h		-unknown-	xorg,xorg_glamor
./usr/X11R7/include/EGL/eglmesaext.h			-unknown-	xorg,xorg_glamor
./usr/X11R7/include/EGL/eglplatform.h			-unknown-	xorg,xorg_glamor
./usr/X11R7/include/GL/GLwDrawA.h			-unknown-	xorg
./usr/X11R7/include/GL/GLwDrawAP.h			-unknown-	xorg
./usr/X11R7/include/GL/GLwMDrawA.h			-unknown-	xorg
./usr/X11R7/include/GL/GLwMDrawAP.h			-unknown-	xorg
./usr/X11R7/include/GL/gl.h				-unknown-	xorg
./usr/X11R7/include/GL/gl_mangle.h			-unknown-	xorg
./usr/X11R7/include/GL/glcorearb.h			-unknown-	xorg
./usr/X11R7/include/GL/glext.h				-unknown-	xorg
./usr/X11R7/include/GL/glu.h				-unknown-	xorg
./usr/X11R7/include/GL/glu_mangle.h			-unknown-	xorg
./usr/X11R7/include/GL/glut.h				-unknown-	xorg
./usr/X11R7/include/GL/glutf90.h			-unknown-	xorg
./usr/X11R7/include/GL/glx.h				-unknown-	xorg
./usr/X11R7/include/GL/glx_mangle.h			-unknown-	xorg
./usr/X11R7/include/GL/glxext.h				-unknown-	xorg
./usr/X11R7/include/GL/glxint.h				-unknown-	xorg
./usr/X11R7/include/GL/glxmd.h				-unknown-	xorg
./usr/X11R7/include/GL/glxproto.h			-unknown-	xorg
./usr/X11R7/include/GL/glxtokens.h			-unknown-	xorg
./usr/X11R7/include/GL/internal/dri_interface.h		-unknown-	xorg
./usr/X11R7/include/GL/internal/glcore.h		-unknown-	xorg
./usr/X11R7/include/GL/internal/sarea.h			-unknown-	obsolete
./usr/X11R7/include/GL/osmesa.h				-unknown-	xorg
./usr/X11R7/include/GL/wglext.h				-unknown-	xorg
./usr/X11R7/include/GL/wmesa.h				-unknown-	xorg,obsolete,mesa_ver=18
./usr/X11R7/include/GL/wmesa.h				-unknown-	xorg,mesa_ver=10
./usr/X11R7/include/GL/xmesa.h				-unknown-	obsolete
./usr/X11R7/include/GL/xmesa_x.h			-unknown-	obsolete
./usr/X11R7/include/GL/xmesa_xf86.h			-unknown-	obsolete
./usr/X11R7/include/KHR/khrplatform.h			-unknown-	xorg,mesa_ver=18
./usr/X11R7/include/X11/CallbackI.h			-unknown-	xorg
./usr/X11R7/include/X11/Composite.h			-unknown-	xorg
./usr/X11R7/include/X11/CompositeP.h			-unknown-	xorg
./usr/X11R7/include/X11/ConstrainP.h			-unknown-	xorg
./usr/X11R7/include/X11/Constraint.h			-unknown-	xorg
./usr/X11R7/include/X11/ConvertI.h			-unknown-	xorg
./usr/X11R7/include/X11/Core.h				-unknown-	xorg
./usr/X11R7/include/X11/CoreP.h				-unknown-	xorg
./usr/X11R7/include/X11/CreateI.h			-unknown-	xorg
./usr/X11R7/include/X11/DECkeysym.h			-unknown-	xorg
./usr/X11R7/include/X11/EventI.h			-unknown-	xorg
./usr/X11R7/include/X11/HPkeysym.h			-unknown-	xorg
./usr/X11R7/include/X11/HookObjI.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICE.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICEconn.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICElib.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICEmsg.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICEproto.h			-unknown-	xorg
./usr/X11R7/include/X11/ICE/ICEutil.h			-unknown-	xorg
./usr/X11R7/include/X11/ImUtil.h			-unknown-	xorg
./usr/X11R7/include/X11/InitialI.h			-unknown-	xorg
./usr/X11R7/include/X11/Intrinsic.h			-unknown-	xorg
./usr/X11R7/include/X11/IntrinsicI.h			-unknown-	xorg
./usr/X11R7/include/X11/IntrinsicP.h			-unknown-	xorg
./usr/X11R7/include/X11/Object.h			-unknown-	xorg
./usr/X11R7/include/X11/ObjectP.h			-unknown-	xorg
./usr/X11R7/include/X11/PM/PM.h				-unknown-	xorg
./usr/X11R7/include/X11/PM/PMproto.h			-unknown-	xorg
./usr/X11R7/include/X11/PassivGraI.h			-unknown-	xorg
./usr/X11R7/include/X11/RectObj.h			-unknown-	xorg
./usr/X11R7/include/X11/RectObjP.h			-unknown-	xorg
./usr/X11R7/include/X11/ResConfigP.h			-unknown-	xorg
./usr/X11R7/include/X11/ResourceI.h			-unknown-	xorg
./usr/X11R7/include/X11/SM/SM.h				-unknown-	xorg
./usr/X11R7/include/X11/SM/SMlib.h			-unknown-	xorg
./usr/X11R7/include/X11/SM/SMproto.h			-unknown-	xorg
./usr/X11R7/include/X11/SelectionI.h			-unknown-	xorg
./usr/X11R7/include/X11/Shell.h				-unknown-	xorg
./usr/X11R7/include/X11/ShellI.h			-unknown-	xorg
./usr/X11R7/include/X11/ShellP.h			-unknown-	xorg
./usr/X11R7/include/X11/StringDefs.h			-unknown-	xorg
./usr/X11R7/include/X11/Sunkeysym.h			-unknown-	xorg
./usr/X11R7/include/X11/ThreadsI.h			-unknown-	xorg
./usr/X11R7/include/X11/TranslateI.h			-unknown-	xorg
./usr/X11R7/include/X11/VarargsI.h			-unknown-	xorg
./usr/X11R7/include/X11/Vendor.h			-unknown-	xorg
./usr/X11R7/include/X11/VendorP.h			-unknown-	xorg
./usr/X11R7/include/X11/X.h				-unknown-	xorg
./usr/X11R7/include/X11/XF86keysym.h			-unknown-	xorg
./usr/X11R7/include/X11/XKBlib.h			-unknown-	xorg
./usr/X11R7/include/X11/XWDFile.h			-unknown-	xorg
./usr/X11R7/include/X11/Xalloca.h			-unknown-	xorg
./usr/X11R7/include/X11/Xarch.h				-unknown-	xorg
./usr/X11R7/include/X11/Xatom.h				-unknown-	xorg
./usr/X11R7/include/X11/Xauth.h				-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AllWidgets.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiSink.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiSinkP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiSrc.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiSrcP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiText.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/AsciiTextP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Box.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/BoxP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Cardinals.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Command.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/CommandP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Dialog.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/DialogP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Form.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/FormP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Grip.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/GripP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Label.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/LabelP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/List.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/ListP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MenuButtoP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MenuButton.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MultiSink.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MultiSinkP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MultiSrc.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/MultiSrcP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Paned.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/PanedP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Panner.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/PannerP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Porthole.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/PortholeP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Print.h			-unknown-	obsolete
./usr/X11R7/include/X11/Xaw/PrintSP.h			-unknown-	obsolete
./usr/X11R7/include/X11/Xaw/Repeater.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/RepeaterP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Reports.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Scrollbar.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/ScrollbarP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Simple.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SimpleMenP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SimpleMenu.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SimpleP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Sme.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SmeBSB.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SmeBSBP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SmeLine.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SmeLineP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/SmeP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/StripCharP.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/StripChart.h		-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Template.c			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Template.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TemplateP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Text.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TextP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TextSink.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TextSinkP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TextSrc.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TextSrcP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Tip.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TipP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Toggle.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/ToggleP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Tree.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/TreeP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/VendorEP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/Viewport.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/ViewportP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/XawImP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xaw/XawInit.h			-unknown-	xorg
./usr/X11R7/include/X11/Xcms.h				-unknown-	xorg
./usr/X11R7/include/X11/Xcmsint.h			-unknown-	xorg
./usr/X11R7/include/X11/Xcursor/Xcursor.h		-unknown-	xorg
./usr/X11R7/include/X11/Xdefs.h				-unknown-	xorg
./usr/X11R7/include/X11/Xdmcp.h				-unknown-	xorg
./usr/X11R7/include/X11/Xft/Xft.h			-unknown-	xorg
./usr/X11R7/include/X11/Xft/XftCompat.h			-unknown-	xorg
./usr/X11R7/include/X11/Xfuncproto.h			-unknown-	xorg
./usr/X11R7/include/X11/Xfuncs.h			-unknown-	xorg
./usr/X11R7/include/X11/Xlcint.h			-unknown-	xorg
./usr/X11R7/include/X11/Xlib-xcb.h			-unknown-	xorg
./usr/X11R7/include/X11/Xlib.h				-unknown-	xorg
./usr/X11R7/include/X11/XlibConf.h			-unknown-	xorg
./usr/X11R7/include/X11/Xlibint.h			-unknown-	xorg
./usr/X11R7/include/X11/Xlocale.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmd.h				-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Atoms.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/CharSet.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/CloseHook.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Converters.h		-unknown-	xorg
./usr/X11R7/include/X11/Xmu/CurUtil.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/CvtCache.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/DisplayQue.h		-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Drawing.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Editres.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/EditresP.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Error.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/ExtAgent.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Initer.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Lookup.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Misc.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/StdCmap.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/StdSel.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/SysUtil.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/WhitePoint.h		-unknown-	xorg
./usr/X11R7/include/X11/Xmu/WidgetNode.h		-unknown-	xorg
./usr/X11R7/include/X11/Xmu/WinUtil.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Xct.h			-unknown-	xorg
./usr/X11R7/include/X11/Xmu/Xmu.h			-unknown-	xorg
./usr/X11R7/include/X11/Xos.h				-unknown-	xorg
./usr/X11R7/include/X11/Xos_r.h				-unknown-	xorg
./usr/X11R7/include/X11/Xosdefs.h			-unknown-	xorg
./usr/X11R7/include/X11/Xpoll.h				-unknown-	xorg
./usr/X11R7/include/X11/XprintAppUtil/xpapputil.h	-unknown-	obsolete
./usr/X11R7/include/X11/XprintUtil/xprintutil.h		-unknown-	obsolete
./usr/X11R7/include/X11/Xproto.h			-unknown-	xorg
./usr/X11R7/include/X11/Xprotostr.h			-unknown-	xorg
./usr/X11R7/include/X11/Xregion.h			-unknown-	xorg
./usr/X11R7/include/X11/Xresource.h			-unknown-	xorg
./usr/X11R7/include/X11/Xthreads.h			-unknown-	xorg
./usr/X11R7/include/X11/Xtos.h				-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtrans.c			-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtrans.h			-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtransdnet.c		-unknown-	obsolete
./usr/X11R7/include/X11/Xtrans/Xtransint.h		-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtranslcl.c		-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtransos2.c		-unknown-	obsolete
./usr/X11R7/include/X11/Xtrans/Xtranssock.c		-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/Xtranstli.c		-unknown-	obsolete
./usr/X11R7/include/X11/Xtrans/Xtransutil.c		-unknown-	xorg
./usr/X11R7/include/X11/Xtrans/transport.c		-unknown-	xorg
./usr/X11R7/include/X11/Xutil.h				-unknown-	xorg
./usr/X11R7/include/X11/Xw32defs.h			-unknown-	xorg
./usr/X11R7/include/X11/Xwindows.h			-unknown-	xorg
./usr/X11R7/include/X11/Xwinsock.h			-unknown-	xorg
./usr/X11R7/include/X11/ap_keysym.h			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/1x1			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/2x2			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Dashes			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Down			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Excl			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/FlipHoriz		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/FlipVert		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Fold			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Left			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Right			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/RotateLeft		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/RotateRight		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Stipple			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Term			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/Up			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/black			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/black6			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/box6			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/boxes			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/calculator		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/cntr_ptr		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/cntr_ptrmsk		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/cross_weave		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/dimple1			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/dimple3			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/dot			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/dropbar7		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/dropbar8		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/escherknot		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/flagdown		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/flagup			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/flipped_gray		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/gray			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/gray1			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/gray3			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/grid16			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/grid2			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/grid4			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/grid8			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/hlines2			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/hlines3			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/icon			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/keyboard16		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/ldblarrow		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/left_ptr		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/left_ptrmsk		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/letters			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/light_gray		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/mailempty		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/mailemptymsk		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/mailfull		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/mailfullmsk		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/mensetmanus		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/menu10			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/menu12			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/menu16			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/menu6			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/menu8			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/noletters		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/opendot			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/opendotMask		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/plaid			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/rdblarrow		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/right_ptr		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/right_ptrmsk		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/root_weave		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/scales			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/sipb			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/star			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/starMask		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/stipple			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/target			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/terminal		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/tie_fighter		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/vlines2			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/vlines3			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/weird_size		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/wide_weave		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/wingdogs		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/woman			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xfd_icon		-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xlogo11			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xlogo16			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xlogo32			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xlogo64			-unknown-	xorg
./usr/X11R7/include/X11/bitmaps/xsnow			-unknown-	xorg
./usr/X11R7/include/X11/cursorfont.h			-unknown-	xorg
./usr/X11R7/include/X11/dri/xf86dri.h			-unknown-	xorg
./usr/X11R7/include/X11/dri/xf86driproto.h		-unknown-	xorg
./usr/X11R7/include/X11/dri/xf86dristr.h		-unknown-	xorg
./usr/X11R7/include/X11/drm/drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/drm_mode.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/drm_sarea.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/i915_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/mach64_drm.h		-unknown-	obsolete
./usr/X11R7/include/X11/drm/mga_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/nouveau_drm.h		-unknown-	obsolete
./usr/X11R7/include/X11/drm/r128_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/r300_reg.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/radeon_drm.h		-unknown-	obsolete
./usr/X11R7/include/X11/drm/savage_drm.h		-unknown-	obsolete
./usr/X11R7/include/X11/drm/sis_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/via_3d_reg.h		-unknown-	obsolete
./usr/X11R7/include/X11/drm/via_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/drm/xgi_drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/extensions/EVI.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/EVIproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/MITMisc.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Print.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/Printstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/XEVI.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XEVIstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/XI.h			-unknown-	xorg
./usr/X11R7/include/X11/extensions/XI2.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XI2proto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XInput.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XInput2.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XIproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKB.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBbells.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBconfig.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBfile.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBgeom.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBrules.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBsrv.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKBui.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKM.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XKMformat.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XLbx.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XRes.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XResproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XShm.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XTest.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xag.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xagstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/Xcomposite.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xcup.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xcupstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/Xdamage.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xdbe.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xdbeproto.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/Xevie.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xeviestr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xext.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xfixes.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xge.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xinerama.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xpresent.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xrandr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xrender.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xv.h			-unknown-	xorg
./usr/X11R7/include/X11/extensions/XvMC.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XvMClib.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/XvMCproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xvlib.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xvproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/Xxf86dga.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/ag.h			-unknown-	xorg
./usr/X11R7/include/X11/extensions/agproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/bigreqsproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/bigreqstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/composite.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/compositeproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/cup.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/cupproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/damageproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/damagewire.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dbe.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dbeproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dpms.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dpmsconst.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dpmsproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dpmsstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/dri2proto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dri2tokens.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/dri3proto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/evieproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/extutil.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/fontcache.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/fontcacheP.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/fontcachstr.h	-unknown-	obsolete
./usr/X11R7/include/X11/extensions/ge.h			-unknown-	xorg
./usr/X11R7/include/X11/extensions/geproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/lbx.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/lbxbuf.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbxbufstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbxdeltastr.h	-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbximage.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbxopts.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbxproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/lbxstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/lbxzlib.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/mitmiscconst.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/mitmiscproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/mitmiscstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/multibuf.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/multibufconst.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/multibufproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/multibufst.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/panoramiXext.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/panoramiXproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/presentproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/presenttokens.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/randr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/randrproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/record.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/recordconst.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/recordproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/recordstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/render.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/renderproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/saver.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/saverproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/scrnsaver.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/secur.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/security.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/securproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/securstr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/shape.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shapeconst.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shapeproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shapestr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shm.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shmproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/shmstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/sync.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/syncconst.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/syncproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/syncstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/vldXvMC.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xcmiscproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xcmiscstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86bigfont.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86bigfproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86bigfstr.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dga.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dga1.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dga1const.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dga1proto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dga1str.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dgaconst.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dgaproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86dgastr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86misc.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86mscstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86vm.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86vmode.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86vmproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xf86vmstr.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xfixesproto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xfixeswire.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtestconst.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtestext1.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtestext1const.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtestext1proto.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtestproto.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xteststr.h		-unknown-	obsolete
./usr/X11R7/include/X11/extensions/xtrapbits.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtrapddmi.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtrapdi.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtrapemacros.h	-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtraplib.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtraplibp.h		-unknown-	xorg
./usr/X11R7/include/X11/extensions/xtrapproto.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/FS.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/FSlib.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/FSproto.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/bdfint.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/bitmap.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/bufio.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/fntfil.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/fntfilio.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fntfilst.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/font.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontconf.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontenc.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontencc.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontmisc.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontmod.h			-unknown-	obsolete
./usr/X11R7/include/X11/fonts/fontproto.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontshow.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontstruct.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontutil.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fontxlfd.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/fsmasks.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/ft.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/ftfuncs.h			-unknown-	xorg
./usr/X11R7/include/X11/fonts/libxfont2.h		-unknown-	xorg
./usr/X11R7/include/X11/fonts/pcf.h			-unknown-	xorg
./usr/X11R7/include/X11/keysym.h			-unknown-	xorg
./usr/X11R7/include/X11/keysymdef.h			-unknown-	xorg
./usr/X11R7/include/X11/xf86drm.h			-unknown-	obsolete
./usr/X11R7/include/X11/xf86drmMode.h			-unknown-	obsolete
./usr/X11R7/include/X11/xf86mm.h			-unknown-	obsolete
./usr/X11R7/include/X11/xpm.h				-unknown-	xorg
./usr/X11R7/include/X11/xshmfence.h			-unknown-	xorg
./usr/X11R7/include/drm/drm.h				-unknown-	obsolete
./usr/X11R7/include/drm/drm_mode.h			-unknown-	obsolete
./usr/X11R7/include/drm/drm_sarea.h			-unknown-	obsolete
./usr/X11R7/include/drm/i915_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/mach64_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/mga_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/nouveau_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/r128_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/r300_reg.h			-unknown-	obsolete
./usr/X11R7/include/drm/radeon_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/savage_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/sis_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/via_3d_reg.h			-unknown-	obsolete
./usr/X11R7/include/drm/via_drm.h			-unknown-	obsolete
./usr/X11R7/include/drm/xgi_drm.h			-unknown-	obsolete
./usr/X11R7/include/epoxy/common.h			-unknown-	xorg
./usr/X11R7/include/epoxy/egl.h				-unknown-	xorg
./usr/X11R7/include/epoxy/egl_generated.h		-unknown-	xorg
./usr/X11R7/include/epoxy/gl.h				-unknown-	xorg
./usr/X11R7/include/epoxy/gl_generated.h		-unknown-	xorg
./usr/X11R7/include/epoxy/glx.h				-unknown-	xorg
./usr/X11R7/include/epoxy/glx_generated.h		-unknown-	xorg
./usr/X11R7/include/expat.h				-unknown-	obsolete
./usr/X11R7/include/expat_external.h			-unknown-	obsolete
./usr/X11R7/include/fontconfig/fcfreetype.h		-unknown-	xorg
./usr/X11R7/include/fontconfig/fcprivate.h		-unknown-	xorg
./usr/X11R7/include/fontconfig/fontconfig.h		-unknown-	xorg
./usr/X11R7/include/freetype2/config/ftconfig.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/config/ftheader.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/config/ftmodule.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/config/ftoption.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/config/ftstdlib.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/config/ftconfig.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/ftheader.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/ftmodule.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/ftoption.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/ftstdlib.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/integer-types.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/mac-support.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/config/public-macros.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/freetype.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftadvanc.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftautoh.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/ftbbox.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftbdf.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftbitmap.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftbzip2.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftcache.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftcffdrv.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/ftchapters.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftcid.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftcolor.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftdriver.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/fterrdef.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/fterrors.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftfntfmt.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftgasp.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftglyph.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftgxval.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftgzip.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftimage.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftincrem.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftlcdfil.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftlist.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftlzw.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftmac.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftmm.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftmodapi.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftmoderr.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftotval.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftoutln.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftparams.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftpfr.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftrender.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftsizes.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftsnames.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftstroke.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftsynth.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftsystem.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/fttrigon.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftttdrv.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/fttypes.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftwinfnt.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ftxf86.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/autohint.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftcalc.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftdebug.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftdriver.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftgloadr.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftmemory.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftobjs.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftrfork.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftserv.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/ftstream.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/fttrace.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/internal.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/pcftypes.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/psaux.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/pshints.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svbdf.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svgldict.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svmm.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svpfr.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svpostnm.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svpscmap.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svpsinfo.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svsfnt.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svttcmap.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svwinfnt.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/services/svxf86nm.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/sfnt.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/t1types.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/internal/tttypes.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/freetype/t1tables.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ttnameid.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/tttables.h	-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/tttags.h		-unknown-	xorg
./usr/X11R7/include/freetype2/freetype/ttunpat.h	-unknown-	obsolete
./usr/X11R7/include/freetype2/ft2build.h		-unknown-	xorg
./usr/X11R7/include/freetype2/ftadvanc.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftautoh.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftbbox.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftbdf.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftbitmap.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftbzip2.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftcache.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftcffdrv.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftchapters.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftcid.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/fterrdef.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/fterrors.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftfntfmt.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftgasp.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftglyph.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftgxval.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftgzip.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftimage.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftincrem.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftlcdfil.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftlist.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftlzw.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftmac.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftmm.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftmodapi.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftmoderr.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftotval.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftoutln.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftpfr.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftrender.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftsizes.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftsnames.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftstroke.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftsynth.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftsystem.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/fttrigon.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftttdrv.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/fttypes.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ftwinfnt.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ftxf86.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/t1tables.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/ttnameid.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/tttables.h		-unknown-	obsolete
./usr/X11R7/include/freetype2/tttags.h			-unknown-	obsolete
./usr/X11R7/include/freetype2/ttunpat.h			-unknown-	obsolete
./usr/X11R7/include/ft2build.h				xcomp-obsolete	obsolete
./usr/X11R7/include/gbm.h				-unknown-	xorg
./usr/X11R7/include/libdrm/amdgpu.h			-unknown-	xorg
./usr/X11R7/include/libdrm/amdgpu_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/drm_fourcc.h			-unknown-	xorg
./usr/X11R7/include/libdrm/drm_mode.h			-unknown-	xorg
./usr/X11R7/include/libdrm/drm_sarea.h			-unknown-	xorg
./usr/X11R7/include/libdrm/i915_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/intel_aub.h			-unknown-	xorg
./usr/X11R7/include/libdrm/intel_bufmgr.h		-unknown-	xorg
./usr/X11R7/include/libdrm/intel_debug.h		-unknown-	xorg
./usr/X11R7/include/libdrm/mach64_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/mga_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/nouveau.h			-unknown-	xorg
./usr/X11R7/include/libdrm/nouveau_drm.h		-unknown-	xorg
./usr/X11R7/include/libdrm/qxl_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/r128_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/r600_pci_ids.h		-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_bo.h			-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_bo_gem.h		-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_bo_int.h		-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_cs.h			-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_cs_gem.h		-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_cs_int.h		-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/radeon_surface.h		-unknown-	xorg
./usr/X11R7/include/libdrm/savage_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/sis_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/via_drm.h			-unknown-	xorg
./usr/X11R7/include/libdrm/virtgpu_drm.h		-unknown-	xorg
./usr/X11R7/include/libkms/libkms.h			-unknown-	xorg
./usr/X11R7/include/libsync.h				-unknown-	xorg
./usr/X11R7/include/pciaccess.h				-unknown-	xorg
./usr/X11R7/include/pixman-1/pixman-version.h		-unknown-	xorg
./usr/X11R7/include/pixman-1/pixman.h			-unknown-	xorg
./usr/X11R7/include/xcb/bigreq.h			-unknown-	xorg
./usr/X11R7/include/xcb/composite.h			-unknown-	xorg
./usr/X11R7/include/xcb/damage.h			-unknown-	xorg
./usr/X11R7/include/xcb/dpms.h				-unknown-	xorg
./usr/X11R7/include/xcb/dri2.h				-unknown-	xorg
./usr/X11R7/include/xcb/dri3.h				-unknown-	xorg
./usr/X11R7/include/xcb/ge.h				-unknown-	xorg
./usr/X11R7/include/xcb/glx.h				-unknown-	xorg
./usr/X11R7/include/xcb/present.h			-unknown-	xorg
./usr/X11R7/include/xcb/randr.h				-unknown-	xorg
./usr/X11R7/include/xcb/record.h			-unknown-	xorg
./usr/X11R7/include/xcb/render.h			-unknown-	xorg
./usr/X11R7/include/xcb/res.h				-unknown-	xorg
./usr/X11R7/include/xcb/screensaver.h			-unknown-	xorg
./usr/X11R7/include/xcb/shape.h				-unknown-	xorg
./usr/X11R7/include/xcb/shm.h				-unknown-	xorg
./usr/X11R7/include/xcb/sync.h				-unknown-	xorg
./usr/X11R7/include/xcb/xc_misc.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb.h				-unknown-	xorg
./usr/X11R7/include/xcb/xcb_atom.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_aux.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_bitops.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_event.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_icccm.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_image.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_keysyms.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_pixel.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_property.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcb_renderutil.h		-unknown-	xorg
./usr/X11R7/include/xcb/xcb_reply.h			-unknown-	xorg
./usr/X11R7/include/xcb/xcbext.h			-unknown-	xorg
./usr/X11R7/include/xcb/xevie.h				-unknown-	obsolete
./usr/X11R7/include/xcb/xf86dri.h			-unknown-	xorg
./usr/X11R7/include/xcb/xf86vidmode.h			-unknown-	xorg
./usr/X11R7/include/xcb/xfixes.h			-unknown-	xorg
./usr/X11R7/include/xcb/xinerama.h			-unknown-	xorg
./usr/X11R7/include/xcb/xinput.h			-unknown-	xorg
./usr/X11R7/include/xcb/xkb.h				-unknown-	xorg
./usr/X11R7/include/xcb/xproto.h			-unknown-	xorg
./usr/X11R7/include/xcb/xselinux.h			-unknown-	xorg
./usr/X11R7/include/xcb/xtest.h				-unknown-	xorg
./usr/X11R7/include/xcb/xv.h				-unknown-	xorg
./usr/X11R7/include/xcb/xvmc.h				-unknown-	xorg
./usr/X11R7/include/xf86drm.h				-unknown-	xorg
./usr/X11R7/include/xf86drmMode.h			-unknown-	xorg
./usr/X11R7/include/xorg/BT.h				-unknown-	xorg
./usr/X11R7/include/xorg/IBM.h				-unknown-	xorg
./usr/X11R7/include/xorg/TI.h				-unknown-	xorg
./usr/X11R7/include/xorg/XIstubs.h			-unknown-	xorg
./usr/X11R7/include/xorg/Xprintf.h			-unknown-	xorg
./usr/X11R7/include/xorg/afb.h				-unknown-	obsolete
./usr/X11R7/include/xorg/assyntax.h			-unknown-	obsolete
./usr/X11R7/include/xorg/atKeynames.h			-unknown-	obsolete
./usr/X11R7/include/xorg/bstore.h			-unknown-	obsolete
./usr/X11R7/include/xorg/bstorestr.h			-unknown-	obsolete
./usr/X11R7/include/xorg/bt829.h			-unknown-	xorg,obsolete,xorg_server_ver=120
./usr/X11R7/include/xorg/bt829.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/callback.h			-unknown-	xorg
./usr/X11R7/include/xorg/cfb.h				-unknown-	obsolete
./usr/X11R7/include/xorg/cfb16.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfb32.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfb8_16.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfb8_32.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfbmap.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfbmskbits.h			-unknown-	obsolete
./usr/X11R7/include/xorg/cfbunmap.h			-unknown-	obsolete
./usr/X11R7/include/xorg/client.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/closestr.h			-unknown-	xorg
./usr/X11R7/include/xorg/closure.h			-unknown-	xorg
./usr/X11R7/include/xorg/colormap.h			-unknown-	xorg
./usr/X11R7/include/xorg/colormapst.h			-unknown-	xorg
./usr/X11R7/include/xorg/compiler.h			-unknown-	xorg
./usr/X11R7/include/xorg/compositeext.h			-unknown-	xorg
./usr/X11R7/include/xorg/cursor.h			-unknown-	xorg
./usr/X11R7/include/xorg/cursorstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/damage.h			-unknown-	xorg
./usr/X11R7/include/xorg/damagestr.h			-unknown-	xorg
./usr/X11R7/include/xorg/dbestruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/dgaproc.h			-unknown-	xorg
./usr/X11R7/include/xorg/displaymode.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/dix-config.h			-unknown-	xorg,obsolete
./usr/X11R7/include/xorg/dix.h				-unknown-	xorg
./usr/X11R7/include/xorg/dixaccess.h			-unknown-	xorg
./usr/X11R7/include/xorg/dixevents.h			-unknown-	xorg
./usr/X11R7/include/xorg/dixfont.h			-unknown-	xorg
./usr/X11R7/include/xorg/dixfontstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/dixgrabs.h			-unknown-	xorg
./usr/X11R7/include/xorg/dixstruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/dri.h				-unknown-	xorg
./usr/X11R7/include/xorg/dri2.h				-unknown-	xorg
./usr/X11R7/include/xorg/dri3.h				-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/dristruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/edid.h				-unknown-	xorg
./usr/X11R7/include/xorg/eventconvert.h			-unknown-	xorg
./usr/X11R7/include/xorg/events.h			-unknown-	xorg
./usr/X11R7/include/xorg/eventstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/exa.h				-unknown-	xorg
./usr/X11R7/include/xorg/exevents.h			-unknown-	xorg
./usr/X11R7/include/xorg/extension.h			-unknown-	xorg
./usr/X11R7/include/xorg/extinit.h			-unknown-	xorg
./usr/X11R7/include/xorg/extnsionst.h			-unknown-	xorg
./usr/X11R7/include/xorg/fb.h				-unknown-	xorg
./usr/X11R7/include/xorg/fbdevhw.h			-unknown-	xorg
./usr/X11R7/include/xorg/fboverlay.h			-unknown-	xorg
./usr/X11R7/include/xorg/fbpict.h			-unknown-	xorg
./usr/X11R7/include/xorg/fbpseudocolor.h		-unknown-	obsolete
./usr/X11R7/include/xorg/fbrop.h			-unknown-	xorg
./usr/X11R7/include/xorg/fi1236.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/fi1236.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/fourcc.h			-unknown-	xorg
./usr/X11R7/include/xorg/gc.h				-unknown-	xorg
./usr/X11R7/include/xorg/gcstruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/geext.h			-unknown-	xorg
./usr/X11R7/include/xorg/glamor.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/globals.h			-unknown-	xorg
./usr/X11R7/include/xorg/glx_extinit.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/glxvndabi.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/glyphstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/hotplug.h			-unknown-	xorg
./usr/X11R7/include/xorg/i2c_def.h			-unknown-	xorg
./usr/X11R7/include/xorg/input.h			-unknown-	xorg
./usr/X11R7/include/xorg/inputstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/inpututils.h			-unknown-	xorg
./usr/X11R7/include/xorg/list.h				-unknown-	xorg
./usr/X11R7/include/xorg/mfb.h				-unknown-	obsolete
./usr/X11R7/include/xorg/mfbmap.h			-unknown-	obsolete
./usr/X11R7/include/xorg/mfbunmap.h			-unknown-	obsolete
./usr/X11R7/include/xorg/mi.h				-unknown-	xorg
./usr/X11R7/include/xorg/mibank.h			-unknown-	obsolete
./usr/X11R7/include/xorg/mibstore.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/mibstore.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/micmap.h			-unknown-	xorg
./usr/X11R7/include/xorg/micoord.h			-unknown-	xorg
./usr/X11R7/include/xorg/mifillarc.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/mifillarc.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/mifpoly.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/mifpoly.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/migc.h				-unknown-	xorg
./usr/X11R7/include/xorg/miline.h			-unknown-	xorg
./usr/X11R7/include/xorg/mipict.h			-unknown-	xorg
./usr/X11R7/include/xorg/mipointer.h			-unknown-	xorg
./usr/X11R7/include/xorg/mipointrst.h			-unknown-	xorg
./usr/X11R7/include/xorg/misc.h				-unknown-	xorg
./usr/X11R7/include/xorg/miscstruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/mispans.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/mispans.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/mistruct.h			-unknown-	xorg
./usr/X11R7/include/xorg/misync.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/misyncfd.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/misyncshm.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/misyncstr.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/miwideline.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/miwideline.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/mizerarc.h			-unknown-	xorg
./usr/X11R7/include/xorg/msp3430.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/msp3430.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/nonsdk_extinit.h		-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/opaque.h			-unknown-	xorg
./usr/X11R7/include/xorg/optionstr.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/os.h				-unknown-	xorg
./usr/X11R7/include/xorg/picture.h			-unknown-	xorg
./usr/X11R7/include/xorg/picturestr.h			-unknown-	xorg
./usr/X11R7/include/xorg/pixmap.h			-unknown-	xorg
./usr/X11R7/include/xorg/pixmapstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/present.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/presentext.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/privates.h			-unknown-	xorg
./usr/X11R7/include/xorg/property.h			-unknown-	xorg
./usr/X11R7/include/xorg/propertyst.h			-unknown-	xorg
./usr/X11R7/include/xorg/protocol-versions.h		-unknown-	xorg
./usr/X11R7/include/xorg/ptrveloc.h			-unknown-	xorg
./usr/X11R7/include/xorg/randrstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/region.h			-unknown-	xorg
./usr/X11R7/include/xorg/regionstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/registry.h			-unknown-	xorg
./usr/X11R7/include/xorg/renderedge.h			-unknown-	obsolete
./usr/X11R7/include/xorg/resource.h			-unknown-	xorg
./usr/X11R7/include/xorg/rgb.h				-unknown-	xorg
./usr/X11R7/include/xorg/rrtransform.h			-unknown-	xorg
./usr/X11R7/include/xorg/sarea.h			-unknown-	xorg
./usr/X11R7/include/xorg/screenint.h			-unknown-	xorg
./usr/X11R7/include/xorg/scrnintstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/securitysrv.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/selection.h			-unknown-	xorg
./usr/X11R7/include/xorg/servermd.h			-unknown-	xorg
./usr/X11R7/include/xorg/set.h				-unknown-	xorg
./usr/X11R7/include/xorg/shadow.h			-unknown-	xorg
./usr/X11R7/include/xorg/shadowfb.h			-unknown-	xorg
./usr/X11R7/include/xorg/shmint.h			-unknown-	xorg
./usr/X11R7/include/xorg/site.h				-unknown-	xorg
./usr/X11R7/include/xorg/swaprep.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/swaprep.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/swapreq.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/swapreq.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/tda8425.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/tda8425.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/tda9850.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/tda9850.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/tda9885.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/tda9885.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/uda1380.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/uda1380.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/validate.h			-unknown-	xorg
./usr/X11R7/include/xorg/vbe.h				-unknown-	xorg
./usr/X11R7/include/xorg/vbeModes.h			-unknown-	xorg
./usr/X11R7/include/xorg/version-config.h		-unknown-	xorg
./usr/X11R7/include/xorg/vgaHW.h			-unknown-	xorg
./usr/X11R7/include/xorg/vndserver.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/window.h			-unknown-	xorg
./usr/X11R7/include/xorg/windowstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/xaa.h				-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/xaa.h				-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/xaaWrapper.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xaalocal.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/xaalocal.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/xaarop.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf1bpp.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf4bpp.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86-mouse-properties.h	-unknown-	xorg,xorg_server
./usr/X11R7/include/xorg/xf86.h				-unknown-	xorg
./usr/X11R7/include/xorg/xf86Crtc.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Cursor.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86DDC.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86MatchDrivers.h		-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/xf86Modes.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Module.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86OSmouse.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86Opt.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Optionstr.h		-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/xf86Optrec.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Parser.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Pci.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86PciInfo.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Priv.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Privstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86RAC.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86RamDac.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86RandR12.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86Rename.h			-unknown-	xorg,xorg_server_ver=110
./usr/X11R7/include/xorg/xf86Rename.h			-unknown-	xorg,xorg_server_ver=120,obsolete
./usr/X11R7/include/xorg/xf86Resources.h		-unknown-	obsolete
./usr/X11R7/include/xorg/xf86Version.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86Xinput.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86_OSlib.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86_OSproc.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86_ansic.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86_libc.h			-unknown-	obsolete
./usr/X11R7/include/xorg/xf86cmap.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86fbman.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86i2c.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86int10.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86platformBus.h		-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/xf86sbusBus.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86str.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86xv.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86xvmc.h			-unknown-	xorg
./usr/X11R7/include/xorg/xf86xvpriv.h			-unknown-	xorg
./usr/X11R7/include/xorg/xisb.h				-unknown-	xorg
./usr/X11R7/include/xorg/xkb.h				-unknown-	xorg
./usr/X11R7/include/xorg/xkbDflts.h			-unknown-	xorg
./usr/X11R7/include/xorg/xkbfile.h			-unknown-	xorg
./usr/X11R7/include/xorg/xkbrules.h			-unknown-	xorg
./usr/X11R7/include/xorg/xkbsrv.h			-unknown-	xorg
./usr/X11R7/include/xorg/xkbstr.h			-unknown-	xorg
./usr/X11R7/include/xorg/xorg-server.h			-unknown-	xorg
./usr/X11R7/include/xorg/xorgVersion.h			-unknown-	xorg
./usr/X11R7/include/xorg/xserver-properties.h		-unknown-	xorg
./usr/X11R7/include/xorg/xserver_poll.h			-unknown-	xorg,xorg_server_ver=120
./usr/X11R7/include/xorg/xsha1.h			-unknown-	xorg
./usr/X11R7/include/xorg/xvdix.h			-unknown-	xorg
./usr/X11R7/include/xorg/xvmcext.h			-unknown-	xorg
./usr/X11R7/lib						-unknown-	xorg,compatx11dir
./usr/X11R7/lib/X11/config/Amoeba.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/DGUX.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/FreeBSD.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/Imake.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/Imake.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/Imake.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/Library.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/Mips.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/Motif.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/Motif.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/NetBSD.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/Oki.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/OpenBSD.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/QNX4.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/QNX4.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/Server.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/ServerLib.tmpl		-unknown-	xorg
./usr/X11R7/lib/X11/config/Threads.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/Win32.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/Win32.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/WinLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/X11.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/X11.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/apollo.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/bsd.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/bsdLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/bsdLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/bsdi.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/cde.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/cde.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/convex.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/cray.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/cygwin.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/cygwin.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/cygwin.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/darwin.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/darwinLib.rules		-unknown-	xorg
./usr/X11R7/lib/X11/config/darwinLib.tmpl		-unknown-	xorg
./usr/X11R7/lib/X11/config/date.def			-unknown-	xorg
./usr/X11R7/lib/X11/config/fujitsu.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/generic.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/gnu.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/gnuLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/gnuLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/host.def			-unknown-	xorg
./usr/X11R7/lib/X11/config/hp.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/hpLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/hpLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/ibm.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/ibmLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/ibmLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/isc.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/linux.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/lnxLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/lnxLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/lnxdoc.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/lnxdoc.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/luna.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/lynx.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/macII.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/mach.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/minix.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/moto.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/ncr.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/nec.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/necLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/necLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/noop.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/nto.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/nto.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/oldlib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/os2.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/os2.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/os2Lib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/os2Lib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/osf1.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/osfLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/osfLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/pegasus.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sco.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sco5.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/scoLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/sequent.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sgi.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sgiLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/sgiLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/site.def			-unknown-	xorg
./usr/X11R7/lib/X11/config/sony.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sun.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/sunLib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/sunLib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/sv3Lib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/sv3Lib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/sv4Lib.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/sv4Lib.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/svr3.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/svr4.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/ultrix.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/usl.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/version.def			-unknown-	obsolete
./usr/X11R7/lib/X11/config/x386.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/xf86.rules			-unknown-	xorg
./usr/X11R7/lib/X11/config/xf86.tmpl			-unknown-	xorg
./usr/X11R7/lib/X11/config/xf86site.def			-unknown-	xorg
./usr/X11R7/lib/X11/config/xfree86.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/xorg.cf			-unknown-	xorg
./usr/X11R7/lib/X11/config/xorgsite.def			-unknown-	xorg
./usr/X11R7/lib/X11/config/xorgversion.def		-unknown-	xorg
./usr/X11R7/lib/libEGL.a				-unknown-	xorg,compatx11file,xorg_glamor
./usr/X11R7/lib/libEGL_p.a				-unknown-	profile,xorg,compatx11file,xorg_glamor
./usr/X11R7/lib/libFS.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libFS_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libGL.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libGLU.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libGLU_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libGL_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libGLw.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libGLw_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libICE.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libICE_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libOSMesa.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libOSMesa_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libSM.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libSM_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libX11-xcb.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libX11-xcb_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libX11.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libX11_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXRes.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXRes_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXTrap.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXTrap_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXau.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXau_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXaw.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXaw7.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXaw7_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXaw8.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXaw8_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXaw_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXcomposite.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXcomposite_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXcursor.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXcursor_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXdamage.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXdamage_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXdmGreet.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXdmGreet_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXdmcp.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXdmcp_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXevie.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXevie_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXext.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXext_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXfixes.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXfixes_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXfont.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXfont2.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXfont2_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXfont_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXfontcache.a				-unknown-	obsolete
./usr/X11R7/lib/libXfontcache_p.a			-unknown-	obsolete
./usr/X11R7/lib/libXft.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXft_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXi.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXi_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXinerama.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXinerama_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXmu.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXmu_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXmuu.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXmuu_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXp.a					-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXp_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXpm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXpm_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXpresent.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXpresent_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXprintAppUtil.a			-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXprintAppUtil_p.a			-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXprintUtil.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXprintUtil_p.a			-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXrandr.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXrandr_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXrender.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXrender_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXres.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXres_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libXss.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXss_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXt.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXt_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXtst.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXtst_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXv.a					-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXvMC.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXvMCW.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXvMCW_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXvMC_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXv_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXxf86dga.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXxf86dga_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXxf86misc.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXxf86misc_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libXxf86vm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libXxf86vm_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libdrm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libdrm_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libdrm_radeon.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libdrm_radeon_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libepoxy.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libepoxy_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libexpat.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libexpat_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/libfontconfig.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libfontconfig_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libfontenc.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libfontenc_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libfreetype.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libfreetype_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libgbm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libgbm_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libglapi.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libglapi_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libglut.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libglut_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/liblbxutil.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/liblbxutil_p.a				-unknown-	obsolete,compatx11file
./usr/X11R7/lib/liblisp.a				-unknown-	obsolete
./usr/X11R7/lib/liblisp_p.a				-unknown-	obsolete
./usr/X11R7/lib/libmp.a					-unknown-	obsolete
./usr/X11R7/lib/libmp_p.a				-unknown-	obsolete
./usr/X11R7/lib/libpciaccess.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libpciaccess_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libpixman-1.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libpixman-1_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libpthread-stubs.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libpthread-stubs_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libre.a					-unknown-	obsolete
./usr/X11R7/lib/libre_p.a				-unknown-	obsolete
./usr/X11R7/lib/libxcb-atom.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-atom_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-aux.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-aux_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-composite.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-composite_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-damage.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-damage_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-dpms.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-dpms_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-dri2.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-dri2_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-dri3.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-dri3_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-event.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-event_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-glx.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-glx_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-icccm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-icccm_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-image.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-image_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-keysyms.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-keysyms_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-present.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-present_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-property.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-property_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-randr.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-randr_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-record.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-record_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-render-util.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-render-util_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-render.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-render_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-reply.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-reply_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-res.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-res_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-screensaver.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-screensaver_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-shape.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-shape_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-shm.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-shm_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-sync.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-sync_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xevie.a				-unknown-	obsolete
./usr/X11R7/lib/libxcb-xevie_p.a			-unknown-	obsolete
./usr/X11R7/lib/libxcb-xf86dri.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xf86dri_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xfixes.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xfixes_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xinerama.a			-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xinerama_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xinput.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xinput_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xkb.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xkb_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xtest.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xtest_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xv.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xv_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb-xvmc.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb-xvmc_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxcb.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxcb_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxkbfile.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxkbfile_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxkbui.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxkbui_p.a				-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/libxshmfence.a				-unknown-	xorg,compatx11file
./usr/X11R7/lib/libxshmfence_p.a			-unknown-	profile,xorg,compatx11file
./usr/X11R7/lib/pkgconfig/bigreqsproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/compositeproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/damageproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/dri.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/dri2proto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/dri3proto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/epoxy.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/evieproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/fixesproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/fontcacheproto.pc		-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/fontconfig.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/fontenc.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/fontsproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/fontutil.pc			-unknown-	xorg,x11fonts
./usr/X11R7/lib/pkgconfig/freetype2.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/gbm.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/gl.pc				-unknown-	xorg
./usr/X11R7/lib/pkgconfig/glproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/glu.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/glut.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/glw.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/ice.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/inputproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/kbproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/lbxutil.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/libdrm.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/libdrm_radeon.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/libfs.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/pciaccess.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/pixman-1.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/presentproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/printproto.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/pthread-stubs.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/randrproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/recordproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/renderproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/resourceproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/scrnsaverproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/sm.pc				-unknown-	xorg
./usr/X11R7/lib/pkgconfig/trapproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/videoproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/x11-xcb.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/x11.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xau.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xaw6.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xaw7.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xaw8.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xbitmaps.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-atom.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-aux.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-composite.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-damage.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-dpms.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-dri2.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-dri3.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-event.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-glx.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-icccm.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-image.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-keysyms.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-present.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-property.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-proto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-randr.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-record.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-render.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-renderutil.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-reply.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-res.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-screensaver.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-shape.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-shm.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-sync.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xevie.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xcb-xf86dri.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xfixes.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xinerama.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xinput.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xkb.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xtest.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xv.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb-xvmc.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcb.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcmiscproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcomposite.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xcursor.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xdamage.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xdmcp.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xevie.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xext.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xextproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xf86bigfontproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xf86dgaproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xf86driproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xf86miscproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xf86vidmodeproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xfixes.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xfont.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xfont2.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xfontcache.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xft.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xi.pc				-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xinerama.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xineramaproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xkbfile.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xkbui.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xkeyboard-config.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xmu.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xmuu.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xorg-mouse.pc			-unknown-	xorg,xorg_server
./usr/X11R7/lib/pkgconfig/xorg-server.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xp.pc				-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xpm.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xpresent.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xprintapputil.pc		-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xprintutil.pc			-unknown-	obsolete
./usr/X11R7/lib/pkgconfig/xproto.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xproxymngproto.pc		-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xrandr.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xrender.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xres.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xscrnsaver.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xshmfence.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xt.pc				-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xtrans.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xtrap.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xtst.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xv.pc				-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xvmc.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xxf86dga.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xxf86misc.pc			-unknown-	xorg
./usr/X11R7/lib/pkgconfig/xxf86vm.pc			-unknown-	xorg
./usr/X11R7/man/cat1/mergelib.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat1/xft-config.0			-unknown-	obsolete
./usr/X11R7/man/cat3/AllPlanes.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/BlackPixelOfScreen.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DBE.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSCapable.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSDisable.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSEnable.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSForceLevel.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSGetTimeouts.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSGetVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSInfo.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DPMSSetTimeouts.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/DisplayOfCCC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicDeleteNew.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicLock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicNewFile.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicOrigFile.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicReplaceOrig.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcAtomicUnlock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcBlanksAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcBlanksCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcBlanksDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcBlanksIsMember.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheCopySet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheCreateTagFile.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheDir.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheNumFont.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheNumSubdir.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCacheSubdir.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetAddChar.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetCopy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetCount.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetCoverage.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetDelChar.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetFirstPage.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetHasChar.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetIntersect.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetIntersectCount.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetIsSubset.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetMerge.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetNew.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetNextPage.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetSubtract.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetSubtractCount.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcCharSetUnion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigAppFontAddDir.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigAppFontAddFile.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigAppFontClear.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigBuildFonts.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigEnableHome.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigFileInfoIterGet.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigFileInfoIterInit.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigFileInfoIterNext.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigFilename.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetBlanks.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetCache.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetCacheDirs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetConfigDirs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetConfigFiles.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetCurrent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetFontDirs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetFonts.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetRescanInterval.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigGetSysRoot.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigHome.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigParseAndLoad.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigParseAndLoadFromMemory.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigReference.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigSetCurrent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigSetRescanInterval.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigSetSysRoot.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigSubstitute.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigSubstituteWithPat.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcConfigUptoDate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDefaultSubstitute.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheClean.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheCreateUUID.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheDeleteUUID.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheLoad.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheLoadFile.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheRead.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheRescan.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheUnlink.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheUnload.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirCacheValid.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirSave.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcDirScan.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFileIsDir.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFileScan.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFini.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontList.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontMatch.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontRenderPrepare.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetList.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetMatch.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetPrint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetSort.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSetSortDestroy.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFontSort.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeCharIndex.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeCharSet.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeCharSetAndSpacing.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeQuery.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeQueryAll.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcFreeTypeQueryFace.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcGetDefaultLangs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcGetLangs.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcGetVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcInit.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcInitBringUptoDate.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcInitLoadConfig.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcInitLoadConfigAndFonts.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcInitReinitialize.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcIsLower.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcIsUpper.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangGetCharSet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangNormalize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetCompare.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetContains.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetCopy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetDel.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetGetLangs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetHasLang.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetHash.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetSubtract.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcLangSetUnion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixCopy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixInit.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixMultiply.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixRotate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixScale.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcMatrixShear.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameConstant.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameGetConstant.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameGetObjectType.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameParse.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameRegisterConstants.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameRegisterObjectTypes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameUnparse.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameUnregisterConstants.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcNameUnregisterObjectTypes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcObjectSetAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcObjectSetBuild.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcObjectSetCreate.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcObjectSetDestroy.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternAdd-Type.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternAddWeak.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternBuild.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternDel.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternDuplicate.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternEqualSubset.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternFilter.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternFindIter.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternFormat.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternGet-Type.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternGet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternGetWithBinding.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternHash.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterEqual.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterGetObject.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterGetValue.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterIsValid.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterNext.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterStart.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternIterValueCount.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternObjectCount.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternPrint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternReference.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcPatternRemove.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcRangeCopy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcRangeCreateDouble.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcRangeCreateInteger.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcRangeDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcRangeGetDouble.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrBasename.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrCmp.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrCmpIgnoreCase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrCopy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrCopyFilename.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrDirname.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrDowncase.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrFree.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrListCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrListDone.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrListFirst.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrListNext.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrPlus.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetAdd.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetAddFilename.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetCreate.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetDel.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrSetMember.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrStr.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcStrStrIgnoreCase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcToLower.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcUcs4ToUtf8.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcUtf16Len.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcUtf16ToUcs4.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcUtf8Len.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcUtf8ToUcs4.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcValueDestroy.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcValueEqual.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcValuePrint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcValueSave.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcWeightFromOpenType.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcWeightFromOpenTypeDouble.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcWeightToOpenType.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FcWeightToOpenTypeDouble.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/FontCacheChangeCacheSettings.0	-unknown-	obsolete
./usr/X11R7/man/cat3/FontCacheGetCacheSettings.0	-unknown-	obsolete
./usr/X11R7/man/cat3/FontCacheGetCacheStatistics.0	-unknown-	obsolete
./usr/X11R7/man/cat3/FontCacheQueryExtension.0		-unknown-	obsolete
./usr/X11R7/man/cat3/FontCacheQueryVersion.0		-unknown-	obsolete
./usr/X11R7/man/cat3/ImageByteOrder.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/IsCursorKey.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/MenuPopdown.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/MenuPopup.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAddConnectionWatch.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAddHost.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocClassHint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocIconSize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocSizeHints.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocStandardColormap.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllocWMHints.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAllowDeviceEvents.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XAllowEvents.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XAnyEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XButtonEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XChangeDeviceControl.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeDeviceDontPropagateList.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeDeviceKeyMapping.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeFeedbackControl.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeKeyboardControl.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XChangeKeyboardDevice.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeKeyboardMapping.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XChangePointerControl.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XChangePointerDevice.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XChangeSaveSet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XChangeWindowAttributes.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCirculateEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCirculateRequestEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XClearArea.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XClientMessageEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCloseDevice.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XColormapEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeCreateRegionFromBorderClip.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeGetOverlayWindow.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeNameWindowPixmap.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeRedirectSubwindows.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeRedirectWindow.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeReleaseOverlayWindow.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeUnredirectSubwindows.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeUnredirectWindow.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCompositeVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XConfigureEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XConfigureRequestEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XConfigureWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCopyArea.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateColormap.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateFontCursor.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateFontSet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateGC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateIC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateOC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreatePixmap.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateRegion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCreateWindowEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XCrossingEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGA.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAChangePixmapMode.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGACloseFramebuffer.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGACopyArea.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGACopyTransparentArea.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGACreateColormap.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAFillRectangle.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAGetViewportStatus.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAInstallColormap.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAKeyEventToXKeyEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAOpenFramebuffer.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAQueryModes.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGAQueryVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGASelectInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGASetClientVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGASetMode.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGASetViewport.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDGASync.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDefineCursor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDestroyWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDestroyWindowEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDeviceBell.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XDeviceTimeCoord.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XDrawArc.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawImageString.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawLine.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawPoint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawRectangle.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawString.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XDrawText.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XEmptyRegion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XErrorEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XExposeEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XExtentsOfFontSet.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86DGA.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86Misc.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscGetKbdSettings.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscGetMouseSettings.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscGetSaver.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscSetKbdSettings.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscSetMouseSettings.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86MiscSetSaver.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VM.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeDeleteModeLine.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetAllModeLines.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetDotClocks.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetGamma.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetGammaRamp.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetGammaRampSize.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetModeLine.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetMonitor.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetPermissions.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeGetViewPort.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeLockModeSwitch.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeModModeLine.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeQueryExtension.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSetClientVersion.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSetGamma.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSetGammaRamp.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSetViewPort.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSwitchMode.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeSwitchToMode.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XF86VidModeValidateModeLine.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFillRectangle.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFilterEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFlush.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFocusChangeEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFontSetExtents.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFontsOfFontSet.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFree.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFree86-DGA.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XFreeDeviceList.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceButtonMapping.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceControl.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceDontPropagateList.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceFocus.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceKeyMapping.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceModifierMapping.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceMotionEvents.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetDeviceProperty.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetExtensionVersion.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetFeedbackControl.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGetSelectedExtensionEvents.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XGetVisualInfo.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGetWindowAttributes.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGetWindowProperty.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGetXCBConnection.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGrabButton.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGrabDevice.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XGrabDeviceButton.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XGrabDeviceKey.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XGrabKey.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGrabKeyboard.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGrabPointer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGrabServer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGraphicsExposeEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XGravityEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XIconifyWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XIfEvent.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XInitImage.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XInitThreads.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XInstallColormap.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XInternAtom.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XIntersectRegion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XKeymapEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XListDeviceProperties.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XListFonts.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XListInputDevices.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XLoadFont.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XLookupKeysym.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XMapEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XMapRequestEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XMapWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XNextEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XNoOp.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XOpenDevice.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XOpenDisplay.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XOpenIM.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XOpenOM.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XParseGeometry.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XPolygonRegion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XPropertyEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XPutBackEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XPutImage.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XQueryBestSize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XQueryColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XQueryDeviceState.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XQueryExtension.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XQueryPointer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XQueryTree.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XRaiseWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XReadBitmapFile.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XRecolorCursor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XReparentEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XReparentWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XRes.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResQueryClientPixmapBytes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResQueryClientResources.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResQueryClients.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResQueryVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResizeRequestEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XResourceManagerString.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSaveContext.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverAllocInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverGetRegistered.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverQueryExtension.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverQueryInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverRegister.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverSelectInput.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverSetAttributes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverSuspend.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverUnregister.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XScreenSaverUnsetAttributes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSelectExtensionEvent.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XSelectInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSelectionClearEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSelectionEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSelectionRequestEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSendEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSendExtensionEvent.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XSetArcMode.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetClipOrigin.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetCloseDownMode.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetCommand.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetDeviceButtonMapping.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XSetDeviceFocus.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XSetDeviceMode.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XSetDeviceModifierMapping.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XSetDeviceValuators.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XSetErrorHandler.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetEventQueueOwner.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetFillStyle.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetFont.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetFontPath.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetICFocus.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetICValues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetInputFocus.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetLineAttributes.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetPointerMapping.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetScreenSaver.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetSelectionOwner.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetState.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetTextProperty.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetTile.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetTransientForHint.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMClientMachine.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMColormapWindows.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMIconName.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMName.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMProperties.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSetWMProtocols.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShape.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeCombineMask.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeCombineRectangles.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeCombineRegion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeCombineShape.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeGetRectangles.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeInputSelected.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeOffsetShape.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeQueryExtensionXShapeQueryVersion.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeQueryExtents.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShapeSelectInput.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShm.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmAttach.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmCreateImage.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmCreatePixmap.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmDetach.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmGetEventBase.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmGetImage.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmPixmapFormat.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmPutImage.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XShmQueryVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XStoreBytes.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XStoreColors.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XStringListToTextProperty.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XStringToKeysym.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSupportsLocale.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XSynchronize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XTestCompareCurrentCursorWithWindow.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XTestCompareCursorWithWindow.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XTestDiscard.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XTestFakeButtonEvent.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTestFakeKeyEvent.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTestFakeMotionEvent.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTestFakeRelativeMotionEvent.0	-unknown-	obsolete
./usr/X11R7/man/cat3/XTestGrabControl.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XTestQueryExtension.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTestSetGContextOfGC.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTestSetVisualIDOfVisual.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XTextExtents.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XTextWidth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XTranslateCoordinates.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XUngrabDevice.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XUngrabDeviceButton.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XUngrabDeviceKey.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XUnmapEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XUnmapWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XVaCreateNestedList.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XVisibilityEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XWarpPointer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xau.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauDisposeAuth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauFileName.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauGetAuthByAddr.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauGetBestAuthByAddr.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauLockAuth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauReadAuth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauUnlockAuth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XauWriteAuth.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xaw.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsAllocColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsCCCOfColormap.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsCIELabQueryMaxC.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsCIELuvQueryMaxC.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsConvertColors.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsCreateCCC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsDefaultCCC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsQueryBlack.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsQueryColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsSetWhitePoint.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsStoreColor.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcmsTekHVCQueryMaxC.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xcomposite.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcupGetReservedColormapEntries.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcupQueryVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XcupStoreColors.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xcursor.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeAllocateBackBufferName.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeBeginIdiom.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeDeallocateBackBufferName.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeEndIdiom.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeFreeVisualInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeGetBackBufferAttributes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeGetVisualInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XdbeSwapBuffers.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xevi.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XeviGetVisualInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XeviQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XeviQueryVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xevie.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XevieEnd.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XevieQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XevieSelectInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XevieSendEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XevieStart.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xfixes.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xfontcache.0			-unknown-	obsolete
./usr/X11R7/man/cat3/Xft.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xinerama.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XineramaIsActive.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XineramaQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XineramaQueryScreens.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XineramaQueryVersion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbDrawImageString.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbDrawString.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbDrawText.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbLookupString.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbResetIC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbTextEscapement.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbTextExtents.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbTextListToTextProperty.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbTextPerCharExtents.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xmbuf.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufChangeBufferAttributes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufChangeWindowAttributes.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufCreateBuffers.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufCreateStereoWindow.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufDestroyBuffers.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufDisplayBuffers.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufGetBufferAttributes.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufGetScreenInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufGetVersion.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufGetWindowAttributes.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XmbufQueryExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XpCancelDoc.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpCancelJob.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpCancelPage.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpCreateContext.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpDestroyContext.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpEndDoc.0				-unknown-	obsolete
./usr/X11R7/man/cat3/XpEndJob.0				-unknown-	obsolete
./usr/X11R7/man/cat3/XpEndPage.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpFreePrinterList.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetAttributes.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetContext.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetDocumentData.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetImageResolution.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetLocaleHinter.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetOneAttribute.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetPageDimensions.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetPdmStartParams.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetPrinterList.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpGetScreenOfContext.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpInputSelected.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpPutDocumentData.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpQueryExtension.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpQueryScreens.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpQueryVersion.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpRehashPrinterList.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpSelectInput.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpSetAttributes.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpSetContext.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpSetImageResolution.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpSetLocaleHinter.0		-unknown-	obsolete
./usr/X11R7/man/cat3/XpStartDoc.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpStartJob.0			-unknown-	obsolete
./usr/X11R7/man/cat3/XpStartPage.0			-unknown-	obsolete
./usr/X11R7/man/cat3/Xpresent.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xrandr.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmEnumerateDatabase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmGetFileDatabase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmGetResource.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmInitialize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmMergeDatabases.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmPutResource.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XrmUniqueQuark.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xss.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddActions.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddCallback.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddCallbacks.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddConverter.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddExposureToRegion.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddGrab.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddRawEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddTimeOut.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAddWorkProc.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAllocateGC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddActionHook.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddActions.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddBlockHook.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddConverter.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddSignal.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddTimeOut.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppAddWorkProc.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppCreateShell.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppError.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppErrorMsg.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppGetErrorDatabase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppGetErrorDatabaseText.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppGetExitFlag.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppGetSelectionTimeout.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppInitialize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppLock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppMainLoop.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppNextEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppPeekEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppPending.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppProcessEvent.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppReleaseCacheRefs.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetErrorHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetErrorMsgHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetExitFlag.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetFallbackResources.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetSelectionTimeout.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetTypeConverter.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetWarningHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppSetWarningMsgHandler.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppUnlock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppWarning.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAppWarningMsg.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAsprintf.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtAugmentTranslations.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtBuildEventMask.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallAcceptFocus.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallActionProc.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallCallbackList.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallCallbacks.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallConverter.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallbackExclusive.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallbackNone.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallbackNonexclusive.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCallbackPopdown.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCalloc.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCancelSelectionRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtChangeManagedSet.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCheckSubclass.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtClass.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCloseDisplay.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtConfigureWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtConvert.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtConvertAndStore.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtConvertCase.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateApplicationContext.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateApplicationShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateManagedWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreatePopupShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateSelectionRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtCreateWindow.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDatabase.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDestroyApplicationContext.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDestroyWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDirectConvert.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisownSelection.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDispatchEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDispatchEventToWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisplay.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisplayInitialize.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisplayOfObject.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisplayStringConversionWarning.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtDisplayToApplicationContext.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtError.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtErrorMsg.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtFindFile.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtFree.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetActionKeysym.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetActionList.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetApplicationNameAndClass.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetApplicationResources.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetClassExtension.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetConstraintResourceList.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetDisplays.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetErrorDatabase.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetErrorDatabaseText.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetGC.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetKeyboardFocusWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetKeysymTable.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetMultiClickTime.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetResourceList.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionParameters.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionTimeout.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionValue.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionValueIncremental.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionValues.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSelectionValuesIncremental.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSubresources.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetSubvalues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGetValues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGrabButton.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGrabKey.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGrabKeyboard.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtGrabPointer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtHasCallbacks.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtHooksOfDisplay.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInitialize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInitializeWidgetClass.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInsertEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInsertEventTypeHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInsertRawEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInstallAccelerators.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtInstallAllAccelerators.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsApplicationShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsComposite.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsConstraint.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsManaged.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsObject.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsOverrideShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsRealized.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsRectObj.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsSensitive.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsSessionShell.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsShell.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsSubclass.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsTopLevelShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsTransientShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsVendorShell.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsWMShell.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtIsWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtKeysymToKeycodeList.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtLastEventProcessed.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtLastTimestampProcessed.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMainLoop.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMakeGeometryRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMakeResizeRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMalloc.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtManageChild.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtManageChildren.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMapWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMergeArgLists.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtMoveWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtName.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNameToWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNew.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNewString.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNextEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNoticeSignal.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtNumber.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOffset.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOffsetOf.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOpenApplication.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOpenDisplay.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOverrideTranslations.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOwnSelection.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtOwnSelectionIncremental.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtParent.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtParseAcceleratorTable.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtParseTranslationTable.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtPeekEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtPending.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtPopdown.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtPopup.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtPopupSpringLoaded.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtProcessEvent.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtProcessLock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtProcessUnlock.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtQueryGeometry.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRealizeWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRealloc.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRegisterCaseConverter.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRegisterDrawable.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRegisterExtensionSelector.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRegisterGrabAction.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtReleaseGC.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtReleasePropertyAtom.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveActionHook.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveAllCallbacks.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveBlockHook.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveCallback.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveCallbacks.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveEventTypeHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveGrab.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveInput.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveRawEventHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveSignal.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveTimeOut.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtRemoveWorkProc.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtReservePropertyAtom.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtResizeWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtResolvePathname.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtScreen.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtScreenDatabase.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtScreenOfObject.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSendSelectionRequest.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSessionGetToken.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSessionReturnToken.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetArg.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetErrorHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetErrorMsgHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetEventDispatcher.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetKeyTranslator.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetKeyboardFocus.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetLanguageProc.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetMappedWhenManaged.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetMultiClickTime.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetSelectionParameters.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetSelectionTimeout.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetSensitive.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetSubvalues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetTypeConverter.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetValues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetWMColormapWindows.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetWarningHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSetWarningMsgHandler.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtStringConversionWarning.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtSuperclass.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtToolkitInitialize.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtToolkitThreadInitialize.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtTranslateCoords.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtTranslateKeycode.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUngrabButton.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUngrabKey.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUngrabKeyboard.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUngrabPointer.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUninstallTranslations.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUnmanageChild.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUnmanageChildren.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUnmapWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUnrealizeWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtUnregisterDrawable.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaAppCreateShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaAppInitialize.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaCreateArgsList.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaCreateManagedWidget.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaCreatePopupShell.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaCreateWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaGetApplicationResources.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaGetSubresources.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaGetSubvalues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaGetValues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaOpenApplication.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaSetSubvalues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtVaSetValues.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWarning.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWarningMsg.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWidgetToApplicationContext.0	-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWindow.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWindowOfObject.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XtWindowToWidget.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/Xv.0				-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvFreeAdaptorInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvFreeEncodingInfo.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvGetPortAttribute.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvGetStill.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvGetVideo.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvGrabPort.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvPortNotify.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvPutStill.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvPutVideo.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvQueryAdaptors.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvQueryBestSize.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvQueryEncodings.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvQueryExtension.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvSelectPortNotify.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvSelectVideoNotify.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvSetPortAttribute.0		-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvStopVideo.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvUngrabPort.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/XvVideoNotify.0			-unknown-	.cat,xorg
./usr/X11R7/man/cat3/libXp.0				-unknown-	obsolete
./usr/X11R7/man/html1/mergelib.html			-unknown-	html,xorg
./usr/X11R7/man/html1/xft-config.html			-unknown-	obsolete
./usr/X11R7/man/html3/AllPlanes.html			-unknown-	html,xorg
./usr/X11R7/man/html3/BlackPixelOfScreen.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DBE.html				-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSCapable.html			-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSDisable.html			-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSEnable.html			-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSForceLevel.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSGetTimeouts.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSGetVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSInfo.html			-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DPMSSetTimeouts.html		-unknown-	html,xorg
./usr/X11R7/man/html3/DisplayOfCCC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicDeleteNew.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicLock.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicNewFile.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicOrigFile.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicReplaceOrig.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcAtomicUnlock.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcBlanksAdd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcBlanksCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcBlanksDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcBlanksIsMember.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheCopySet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheCreateTagFile.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheDir.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheNumFont.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheNumSubdir.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCacheSubdir.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetAddChar.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetCopy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetCount.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetCoverage.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetDelChar.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetFirstPage.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetHasChar.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetIntersect.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetIntersectCount.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetIsSubset.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetMerge.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetNew.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetNextPage.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetSubtract.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetSubtractCount.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcCharSetUnion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigAppFontAddDir.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigAppFontAddFile.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigAppFontClear.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigBuildFonts.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigEnableHome.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigFileInfoIterGet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigFileInfoIterInit.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigFileInfoIterNext.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigFilename.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetBlanks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetCache.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetCacheDirs.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetConfigDirs.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetConfigFiles.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetCurrent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetFontDirs.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetFonts.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetRescanInterval.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigGetSysRoot.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigHome.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigParseAndLoad.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigParseAndLoadFromMemory.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigReference.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigSetCurrent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigSetRescanInterval.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigSetSysRoot.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigSubstitute.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigSubstituteWithPat.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcConfigUptoDate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDefaultSubstitute.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheClean.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheCreateUUID.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheDeleteUUID.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheLoad.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheLoadFile.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheRead.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheRescan.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheUnlink.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheUnload.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirCacheValid.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirSave.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcDirScan.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFileIsDir.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFileScan.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFini.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontList.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontMatch.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontRenderPrepare.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetAdd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetMatch.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetPrint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetSort.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSetSortDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFontSort.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeCharIndex.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeCharSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeCharSetAndSpacing.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeQuery.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeQueryAll.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcFreeTypeQueryFace.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcGetDefaultLangs.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcGetLangs.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcGetVersion.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcInit.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcInitBringUptoDate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcInitLoadConfig.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcInitLoadConfigAndFonts.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcInitReinitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcIsLower.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcIsUpper.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangGetCharSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangNormalize.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetAdd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetCompare.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetContains.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetCopy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetDel.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetGetLangs.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetHasLang.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetHash.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetSubtract.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcLangSetUnion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixCopy.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixInit.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixMultiply.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixRotate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixScale.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcMatrixShear.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameConstant.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameGetConstant.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameGetObjectType.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameParse.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameRegisterConstants.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameRegisterObjectTypes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameUnparse.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameUnregisterConstants.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcNameUnregisterObjectTypes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcObjectSetAdd.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcObjectSetBuild.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcObjectSetCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcObjectSetDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternAdd-Type.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternAdd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternAddWeak.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternBuild.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternDel.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternDuplicate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternEqualSubset.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternFilter.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternFindIter.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternFormat.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternGet-Type.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternGet.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternGetWithBinding.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternHash.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterGetObject.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterGetValue.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterIsValid.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterNext.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterStart.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternIterValueCount.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternObjectCount.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternPrint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternReference.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcPatternRemove.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcRangeCopy.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcRangeCreateDouble.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcRangeCreateInteger.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcRangeDestroy.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcRangeGetDouble.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrBasename.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrCmp.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrCmpIgnoreCase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrCopy.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrCopyFilename.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrDirname.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrDowncase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrFree.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrListCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrListDone.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrListFirst.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrListNext.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrPlus.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetAdd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetAddFilename.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetCreate.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetDel.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetEqual.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrSetMember.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrStr.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcStrStrIgnoreCase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcToLower.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcUcs4ToUtf8.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcUtf16Len.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcUtf16ToUcs4.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcUtf8Len.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcUtf8ToUcs4.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcValueDestroy.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcValueEqual.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcValuePrint.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcValueSave.html			-unknown-	html,xorg
./usr/X11R7/man/html3/FcWeightFromOpenType.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcWeightFromOpenTypeDouble.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FcWeightToOpenType.html		-unknown-	html,xorg
./usr/X11R7/man/html3/FcWeightToOpenTypeDouble.html	-unknown-	html,xorg
./usr/X11R7/man/html3/FontCacheChangeCacheSettings.html	-unknown-	obsolete
./usr/X11R7/man/html3/FontCacheGetCacheSettings.html	-unknown-	obsolete
./usr/X11R7/man/html3/FontCacheGetCacheStatistics.html	-unknown-	obsolete
./usr/X11R7/man/html3/FontCacheQueryExtension.html	-unknown-	obsolete
./usr/X11R7/man/html3/FontCacheQueryVersion.html	-unknown-	obsolete
./usr/X11R7/man/html3/ImageByteOrder.html		-unknown-	html,xorg
./usr/X11R7/man/html3/IsCursorKey.html			-unknown-	html,xorg
./usr/X11R7/man/html3/MenuPopdown.html			-unknown-	html,xorg
./usr/X11R7/man/html3/MenuPopup.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XAddConnectionWatch.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XAddHost.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocClassHint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocColor.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocIconSize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocSizeHints.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocStandardColormap.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XAllocWMHints.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XAllowDeviceEvents.html		-unknown-	obsolete
./usr/X11R7/man/html3/XAllowEvents.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XAnyEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XButtonEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XChangeDeviceControl.html		-unknown-	obsolete
./usr/X11R7/man/html3/XChangeDeviceDontPropagateList.html	-unknown-	obsolete
./usr/X11R7/man/html3/XChangeDeviceKeyMapping.html	-unknown-	obsolete
./usr/X11R7/man/html3/XChangeFeedbackControl.html	-unknown-	obsolete
./usr/X11R7/man/html3/XChangeKeyboardControl.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XChangeKeyboardDevice.html	-unknown-	obsolete
./usr/X11R7/man/html3/XChangeKeyboardMapping.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XChangePointerControl.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XChangePointerDevice.html		-unknown-	obsolete
./usr/X11R7/man/html3/XChangeSaveSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XChangeWindowAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCirculateEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCirculateRequestEvent.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XClearArea.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XClientMessageEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCloseDevice.html			-unknown-	obsolete
./usr/X11R7/man/html3/XColormapEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeCreateRegionFromBorderClip.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeGetOverlayWindow.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeNameWindowPixmap.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeQueryExtension.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeQueryVersion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeRedirectSubwindows.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeRedirectWindow.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeReleaseOverlayWindow.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeUnredirectSubwindows.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeUnredirectWindow.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XCompositeVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XConfigureEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XConfigureRequestEvent.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XConfigureWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCopyArea.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateColormap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateFontCursor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateFontSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateGC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateIC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateOC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XCreatePixmap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateRegion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCreateWindowEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XCrossingEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGA.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAChangePixmapMode.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGACloseFramebuffer.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGACopyArea.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDGACopyTransparentArea.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XDGACreateColormap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAFillRectangle.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAGetViewportStatus.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAInstallColormap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAKeyEventToXKeyEvent.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAOpenFramebuffer.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAQueryModes.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGAQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGASelectInput.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGASetClientVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGASetMode.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDGASetViewport.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDGASync.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDefineCursor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDestroyWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDestroyWindowEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDeviceBell.html			-unknown-	obsolete
./usr/X11R7/man/html3/XDeviceTimeCoord.html		-unknown-	obsolete
./usr/X11R7/man/html3/XDrawArc.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawImageString.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawLine.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawPoint.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawRectangle.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawString.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XDrawText.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XEmptyRegion.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XErrorEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XExposeEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XExtentsOfFontSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86DGA.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XF86Misc.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscGetKbdSettings.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscGetMouseSettings.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscGetSaver.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscQueryExtension.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscSetKbdSettings.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscSetMouseSettings.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86MiscSetSaver.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VM.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeDeleteModeLine.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetAllModeLines.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetDotClocks.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetGamma.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetGammaRamp.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetGammaRampSize.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetModeLine.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetMonitor.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetPermissions.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeGetViewPort.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeLockModeSwitch.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeModModeLine.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeQueryExtension.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeQueryVersion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSetClientVersion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSetGamma.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSetGammaRamp.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSetViewPort.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSwitchMode.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeSwitchToMode.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XF86VidModeValidateModeLine.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XFillRectangle.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XFilterEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XFlush.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XFocusChangeEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XFontSetExtents.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XFontsOfFontSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XFree.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XFree86-DGA.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XFreeDeviceList.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceButtonMapping.html	-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceControl.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceDontPropagateList.html	-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceFocus.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceKeyMapping.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceModifierMapping.html	-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceMotionEvents.html	-unknown-	obsolete
./usr/X11R7/man/html3/XGetDeviceProperty.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetExtensionVersion.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetFeedbackControl.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGetSelectedExtensionEvents.html	-unknown-	obsolete
./usr/X11R7/man/html3/XGetVisualInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGetWindowAttributes.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGetWindowProperty.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGetXCBConnection.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGrabButton.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XGrabDevice.html			-unknown-	obsolete
./usr/X11R7/man/html3/XGrabDeviceButton.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGrabDeviceKey.html		-unknown-	obsolete
./usr/X11R7/man/html3/XGrabKey.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XGrabKeyboard.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGrabPointer.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XGrabServer.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XGraphicsExposeEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XGravityEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XIconifyWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XIfEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XInitImage.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XInitThreads.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XInstallColormap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XInternAtom.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XIntersectRegion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XKeymapEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XListDeviceProperties.html	-unknown-	obsolete
./usr/X11R7/man/html3/XListFonts.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XListInputDevices.html		-unknown-	obsolete
./usr/X11R7/man/html3/XLoadFont.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XLookupKeysym.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XMapEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XMapRequestEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XMapWindow.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XNextEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XNoOp.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XOpenDevice.html			-unknown-	obsolete
./usr/X11R7/man/html3/XOpenDisplay.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XOpenIM.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XOpenOM.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XParseGeometry.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XPolygonRegion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XPropertyEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XPutBackEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XPutImage.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XQueryBestSize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XQueryColor.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XQueryDeviceState.html		-unknown-	obsolete
./usr/X11R7/man/html3/XQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XQueryPointer.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XQueryTree.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XRaiseWindow.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XReadBitmapFile.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XRecolorCursor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XReparentEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XReparentWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XRes.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XResQueryClientPixmapBytes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XResQueryClientResources.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XResQueryClients.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XResQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XResQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XResizeRequestEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XResourceManagerString.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XSaveContext.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverAllocInfo.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverGetRegistered.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverQueryExtension.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverQueryInfo.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverQueryVersion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverRegister.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverSelectInput.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverSetAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverSuspend.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverUnregister.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XScreenSaverUnsetAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XSelectExtensionEvent.html	-unknown-	obsolete
./usr/X11R7/man/html3/XSelectInput.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSelectionClearEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSelectionEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSelectionRequestEvent.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XSendEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSendExtensionEvent.html		-unknown-	obsolete
./usr/X11R7/man/html3/XSetArcMode.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetClipOrigin.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetCloseDownMode.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetCommand.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetDeviceButtonMapping.html	-unknown-	obsolete
./usr/X11R7/man/html3/XSetDeviceFocus.html		-unknown-	obsolete
./usr/X11R7/man/html3/XSetDeviceMode.html		-unknown-	obsolete
./usr/X11R7/man/html3/XSetDeviceModifierMapping.html	-unknown-	obsolete
./usr/X11R7/man/html3/XSetDeviceValuators.html		-unknown-	obsolete
./usr/X11R7/man/html3/XSetErrorHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetEventQueueOwner.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetFillStyle.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetFont.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetFontPath.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetICFocus.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetICValues.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetInputFocus.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetLineAttributes.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetPointerMapping.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetScreenSaver.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetSelectionOwner.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetState.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetTextProperty.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetTile.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetTransientForHint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMClientMachine.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMColormapWindows.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMIconName.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMName.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMProperties.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSetWMProtocols.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShape.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeCombineMask.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeCombineRectangles.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeCombineRegion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeCombineShape.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeGetRectangles.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeInputSelected.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeOffsetShape.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeQueryExtensionXShapeQueryVersion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeQueryExtents.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShapeSelectInput.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShm.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XShmAttach.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XShmCreateImage.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShmCreatePixmap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShmDetach.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XShmGetEventBase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShmGetImage.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XShmPixmapFormat.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShmPutImage.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XShmQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XShmQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XStoreBytes.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XStoreColors.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XStringListToTextProperty.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XStringToKeysym.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSupportsLocale.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XSynchronize.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XTestCompareCurrentCursorWithWindow.html	-unknown-	obsolete
./usr/X11R7/man/html3/XTestCompareCursorWithWindow.html	-unknown-	obsolete
./usr/X11R7/man/html3/XTestDiscard.html			-unknown-	obsolete
./usr/X11R7/man/html3/XTestFakeButtonEvent.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestFakeKeyEvent.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestFakeMotionEvent.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestFakeRelativeMotionEvent.html	-unknown-	obsolete
./usr/X11R7/man/html3/XTestGrabControl.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestQueryExtension.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestSetGContextOfGC.html		-unknown-	obsolete
./usr/X11R7/man/html3/XTestSetVisualIDOfVisual.html	-unknown-	obsolete
./usr/X11R7/man/html3/XTextExtents.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XTextWidth.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XTranslateCoordinates.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XUngrabDevice.html		-unknown-	obsolete
./usr/X11R7/man/html3/XUngrabDeviceButton.html		-unknown-	obsolete
./usr/X11R7/man/html3/XUngrabDeviceKey.html		-unknown-	obsolete
./usr/X11R7/man/html3/XUnmapEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XUnmapWindow.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XVaCreateNestedList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XVisibilityEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XWarpPointer.html			-unknown-	html,xorg
./usr/X11R7/man/html3/Xau.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XauDisposeAuth.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XauFileName.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XauGetAuthByAddr.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XauGetBestAuthByAddr.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XauLockAuth.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XauReadAuth.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XauUnlockAuth.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XauWriteAuth.html			-unknown-	html,xorg
./usr/X11R7/man/html3/Xaw.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsAllocColor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsCCCOfColormap.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsCIELabQueryMaxC.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsCIELuvQueryMaxC.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsColor.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsConvertColors.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsCreateCCC.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsDefaultCCC.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsQueryBlack.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsQueryColor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsSetWhitePoint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsStoreColor.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcmsTekHVCQueryMaxC.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xcomposite.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XcupGetReservedColormapEntries.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XcupQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XcupStoreColors.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xcursor.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeAllocateBackBufferName.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeBeginIdiom.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeDeallocateBackBufferName.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeEndIdiom.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeFreeVisualInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeGetBackBufferAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeGetVisualInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XdbeSwapBuffers.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xevi.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XeviGetVisualInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XeviQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XeviQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xevie.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XevieEnd.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XevieQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XevieSelectInput.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XevieSendEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XevieStart.html			-unknown-	html,xorg
./usr/X11R7/man/html3/Xfixes.html			-unknown-	html,xorg
./usr/X11R7/man/html3/Xfontcache.html			-unknown-	obsolete
./usr/X11R7/man/html3/Xft.html				-unknown-	html,xorg
./usr/X11R7/man/html3/Xinerama.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XineramaIsActive.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XineramaQueryExtension.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XineramaQueryScreens.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XineramaQueryVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbDrawImageString.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbDrawString.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbDrawText.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XmbLookupString.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbResetIC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XmbTextEscapement.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbTextExtents.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbTextListToTextProperty.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbTextPerCharExtents.html	-unknown-	html,xorg
./usr/X11R7/man/html3/Xmbuf.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufChangeBufferAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufChangeWindowAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufCreateBuffers.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufCreateStereoWindow.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufDestroyBuffers.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufDisplayBuffers.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufGetBufferAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufGetScreenInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufGetVersion.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufGetWindowAttributes.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XmbufQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XpCancelDoc.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpCancelJob.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpCancelPage.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpCreateContext.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpDestroyContext.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpEndDoc.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpEndJob.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpEndPage.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpFreePrinterList.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetAttributes.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetContext.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpGetDocumentData.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetImageResolution.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetLocaleHinter.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetOneAttribute.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetPageDimensions.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetPdmStartParams.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetPrinterList.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpGetScreenOfContext.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpInputSelected.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpPutDocumentData.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpQueryExtension.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpQueryScreens.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpQueryVersion.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpRehashPrinterList.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpSelectInput.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpSetAttributes.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpSetContext.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpSetImageResolution.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpSetLocaleHinter.html		-unknown-	obsolete
./usr/X11R7/man/html3/XpStartDoc.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpStartJob.html			-unknown-	obsolete
./usr/X11R7/man/html3/XpStartPage.html			-unknown-	obsolete
./usr/X11R7/man/html3/Xpresent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/Xrandr.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XrmEnumerateDatabase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmGetFileDatabase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmGetResource.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmInitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmMergeDatabases.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmPutResource.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XrmUniqueQuark.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xss.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddActions.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddCallback.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddCallbacks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddConverter.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddEventHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddExposureToRegion.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddGrab.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddInput.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddRawEventHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddTimeOut.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAddWorkProc.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAllocateGC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddActionHook.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddActions.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddBlockHook.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddConverter.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddInput.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddSignal.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddTimeOut.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppAddWorkProc.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppCreateShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppError.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppErrorMsg.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppGetErrorDatabase.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppGetErrorDatabaseText.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppGetExitFlag.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppGetSelectionTimeout.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppInitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppLock.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppMainLoop.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppNextEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppPeekEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppPending.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppProcessEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppReleaseCacheRefs.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetErrorHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetErrorMsgHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetExitFlag.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetFallbackResources.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetSelectionTimeout.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetTypeConverter.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetWarningHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppSetWarningMsgHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppUnlock.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppWarning.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAppWarningMsg.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtAsprintf.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtAugmentTranslations.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtBuildEventMask.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallAcceptFocus.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallActionProc.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallCallbackList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallCallbacks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallConverter.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallbackExclusive.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallbackNone.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallbackNonexclusive.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtCallbackPopdown.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCalloc.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtCancelSelectionRequest.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtChangeManagedSet.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCheckSubclass.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtClass.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtCloseDisplay.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtConfigureWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtConvert.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtConvertAndStore.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtConvertCase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateApplicationContext.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateApplicationShell.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateManagedWidget.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreatePopupShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateSelectionRequest.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtCreateWindow.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDatabase.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtDestroyApplicationContext.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtDestroyWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDirectConvert.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisownSelection.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDispatchEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDispatchEventToWidget.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisplay.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisplayInitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisplayOfObject.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisplayStringConversionWarning.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtDisplayToApplicationContext.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtError.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtErrorMsg.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtFindFile.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtFree.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetActionKeysym.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetActionList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetApplicationNameAndClass.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetApplicationResources.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetClassExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetConstraintResourceList.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetDisplays.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetErrorDatabase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetErrorDatabaseText.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetGC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetKeyboardFocusWidget.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetKeysymTable.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetMultiClickTime.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetResourceList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionParameters.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionRequest.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionTimeout.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionValue.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionValueIncremental.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionValues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSelectionValuesIncremental.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSubresources.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetSubvalues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGetValues.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtGrabButton.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtGrabKey.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtGrabKeyboard.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtGrabPointer.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtHasCallbacks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtHooksOfDisplay.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtInitialize.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtInitializeWidgetClass.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtInsertEventHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtInsertEventTypeHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtInsertRawEventHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtInstallAccelerators.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtInstallAllAccelerators.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsApplicationShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsComposite.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsConstraint.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsManaged.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsObject.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsOverrideShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsRealized.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsRectObj.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsSensitive.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsSessionShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsShell.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsSubclass.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsTopLevelShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsTransientShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsVendorShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsWMShell.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtIsWidget.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtKeysymToKeycodeList.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtLastEventProcessed.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtLastTimestampProcessed.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtMainLoop.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtMakeGeometryRequest.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtMakeResizeRequest.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtMalloc.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtManageChild.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtManageChildren.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtMapWidget.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtMergeArgLists.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtMoveWidget.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtName.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtNameToWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtNew.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtNewString.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtNextEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtNoticeSignal.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtNumber.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtOffset.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtOffsetOf.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtOpenApplication.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtOpenDisplay.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtOverrideTranslations.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtOwnSelection.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtOwnSelectionIncremental.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtParent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtParseAcceleratorTable.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtParseTranslationTable.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtPeekEvent.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtPending.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtPopdown.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtPopup.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtPopupSpringLoaded.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtProcessEvent.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtProcessLock.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtProcessUnlock.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtQueryGeometry.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRealizeWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRealloc.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtRegisterCaseConverter.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtRegisterDrawable.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRegisterExtensionSelector.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtRegisterGrabAction.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtReleaseGC.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtReleasePropertyAtom.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveActionHook.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveAllCallbacks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveBlockHook.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveCallback.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveCallbacks.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveEventHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveEventTypeHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveGrab.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveInput.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveRawEventHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveSignal.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveTimeOut.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtRemoveWorkProc.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtReservePropertyAtom.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtResizeWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtResolvePathname.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtScreen.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtScreenDatabase.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtScreenOfObject.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSendSelectionRequest.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSessionGetToken.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSessionReturnToken.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetArg.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetErrorHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetErrorMsgHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetEventDispatcher.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetKeyTranslator.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetKeyboardFocus.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetLanguageProc.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetMappedWhenManaged.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetMultiClickTime.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetSelectionParameters.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetSelectionTimeout.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetSensitive.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetSubvalues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetTypeConverter.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetValues.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetWMColormapWindows.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetWarningHandler.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtSetWarningMsgHandler.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtStringConversionWarning.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtSuperclass.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtToolkitInitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtToolkitThreadInitialize.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtTranslateCoords.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtTranslateKeycode.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUngrabButton.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUngrabKey.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtUngrabKeyboard.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUngrabPointer.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUninstallTranslations.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtUnmanageChild.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUnmanageChildren.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUnmapWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUnrealizeWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtUnregisterDrawable.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaAppCreateShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaAppInitialize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaCreateArgsList.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaCreateManagedWidget.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaCreatePopupShell.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaCreateWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaGetApplicationResources.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaGetSubresources.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaGetSubvalues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaGetValues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaOpenApplication.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaSetSubvalues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtVaSetValues.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtWarning.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtWarningMsg.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtWidgetToApplicationContext.html	-unknown-	html,xorg
./usr/X11R7/man/html3/XtWindow.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XtWindowOfObject.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XtWindowToWidget.html		-unknown-	html,xorg
./usr/X11R7/man/html3/Xv.html				-unknown-	html,xorg
./usr/X11R7/man/html3/XvFreeAdaptorInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvFreeEncodingInfo.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvGetPortAttribute.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvGetStill.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvGetVideo.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvGrabPort.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvPortNotify.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvPutStill.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvPutVideo.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvQueryAdaptors.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvQueryBestSize.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvQueryEncodings.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvQueryExtension.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvSelectPortNotify.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvSelectVideoNotify.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvSetPortAttribute.html		-unknown-	html,xorg
./usr/X11R7/man/html3/XvStopVideo.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvUngrabPort.html			-unknown-	html,xorg
./usr/X11R7/man/html3/XvVideoNotify.html		-unknown-	html,xorg
./usr/X11R7/man/html3/libXp.html			-unknown-	obsolete
./usr/X11R7/man/man1/xft-config.1			-unknown-	obsolete
./usr/X11R7/man/man3/AllPlanes.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/BlackPixelOfScreen.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/DBE.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSCapable.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSDisable.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSEnable.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSForceLevel.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSGetTimeouts.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSGetVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSInfo.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/DPMSSetTimeouts.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/DisplayOfCCC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicDeleteNew.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicLock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicNewFile.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicOrigFile.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicReplaceOrig.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcAtomicUnlock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcBlanksAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcBlanksCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcBlanksDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcBlanksIsMember.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheCopySet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheCreateTagFile.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheDir.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheNumFont.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheNumSubdir.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCacheSubdir.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetAddChar.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetCopy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetCount.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetCoverage.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetDelChar.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetFirstPage.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetHasChar.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetIntersect.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetIntersectCount.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetIsSubset.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetMerge.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetNew.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetNextPage.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetSubtract.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetSubtractCount.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcCharSetUnion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigAppFontAddDir.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigAppFontAddFile.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigAppFontClear.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigBuildFonts.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigEnableHome.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigFileInfoIterGet.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigFileInfoIterInit.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigFileInfoIterNext.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigFilename.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetBlanks.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetCache.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetCacheDirs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetConfigDirs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetConfigFiles.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetCurrent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetFontDirs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetFonts.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetRescanInterval.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigGetSysRoot.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigHome.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigParseAndLoad.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigParseAndLoadFromMemory.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigReference.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigSetCurrent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigSetRescanInterval.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigSetSysRoot.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigSubstitute.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigSubstituteWithPat.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcConfigUptoDate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDefaultSubstitute.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheClean.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheCreateUUID.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheDeleteUUID.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheLoad.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheLoadFile.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheRead.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheRescan.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheUnlink.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheUnload.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirCacheValid.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirSave.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcDirScan.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFileIsDir.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFileScan.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFini.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontList.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontMatch.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontRenderPrepare.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetList.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetMatch.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetPrint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetSort.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSetSortDestroy.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFontSort.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeCharIndex.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeCharSet.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeCharSetAndSpacing.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeQuery.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeQueryAll.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcFreeTypeQueryFace.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcGetDefaultLangs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcGetLangs.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcGetVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcInit.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/FcInitBringUptoDate.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcInitLoadConfig.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcInitLoadConfigAndFonts.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcInitReinitialize.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcIsLower.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcIsUpper.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangGetCharSet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangNormalize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetCompare.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetContains.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetCopy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetDel.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetGetLangs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetHasLang.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetHash.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetSubtract.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcLangSetUnion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixCopy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixInit.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixMultiply.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixRotate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixScale.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcMatrixShear.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameConstant.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameGetConstant.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameGetObjectType.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameParse.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameRegisterConstants.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameRegisterObjectTypes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameUnparse.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameUnregisterConstants.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcNameUnregisterObjectTypes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcObjectSetAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcObjectSetBuild.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcObjectSetCreate.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcObjectSetDestroy.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternAdd-Type.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternAddWeak.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternBuild.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternDel.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternDuplicate.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternEqualSubset.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternFilter.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternFindIter.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternFormat.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternGet-Type.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternGet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternGetWithBinding.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternHash.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterEqual.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterGetObject.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterGetValue.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterIsValid.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterNext.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterStart.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternIterValueCount.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternObjectCount.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternPrint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternReference.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcPatternRemove.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcRangeCopy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcRangeCreateDouble.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcRangeCreateInteger.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcRangeDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcRangeGetDouble.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrBasename.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrCmp.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrCmpIgnoreCase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrCopy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrCopyFilename.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrDirname.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrDowncase.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrFree.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrListCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrListDone.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrListFirst.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrListNext.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrPlus.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetAdd.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetAddFilename.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetCreate.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetDel.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrSetMember.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrStr.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/FcStrStrIgnoreCase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcToLower.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcUcs4ToUtf8.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcUtf16Len.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcUtf16ToUcs4.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcUtf8Len.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcUtf8ToUcs4.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcValueDestroy.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcValueEqual.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcValuePrint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcValueSave.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/FcWeightFromOpenType.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcWeightFromOpenTypeDouble.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/FcWeightToOpenType.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FcWeightToOpenTypeDouble.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/FontCacheChangeCacheSettings.3	-unknown-	obsolete
./usr/X11R7/man/man3/FontCacheGetCacheSettings.3	-unknown-	obsolete
./usr/X11R7/man/man3/FontCacheGetCacheStatistics.3	-unknown-	obsolete
./usr/X11R7/man/man3/FontCacheQueryExtension.3		-unknown-	obsolete
./usr/X11R7/man/man3/FontCacheQueryVersion.3		-unknown-	obsolete
./usr/X11R7/man/man3/ImageByteOrder.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/IsCursorKey.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/MenuPopdown.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/MenuPopup.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAddConnectionWatch.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XAddHost.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocClassHint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocIconSize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocSizeHints.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocStandardColormap.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllocWMHints.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAllowDeviceEvents.3		-unknown-	obsolete
./usr/X11R7/man/man3/XAllowEvents.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XAnyEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XButtonEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XChangeDeviceControl.3		-unknown-	obsolete
./usr/X11R7/man/man3/XChangeDeviceDontPropagateList.3	-unknown-	obsolete
./usr/X11R7/man/man3/XChangeDeviceKeyMapping.3		-unknown-	obsolete
./usr/X11R7/man/man3/XChangeFeedbackControl.3		-unknown-	obsolete
./usr/X11R7/man/man3/XChangeKeyboardControl.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XChangeKeyboardDevice.3		-unknown-	obsolete
./usr/X11R7/man/man3/XChangeKeyboardMapping.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XChangePointerControl.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XChangePointerDevice.3		-unknown-	obsolete
./usr/X11R7/man/man3/XChangeSaveSet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XChangeWindowAttributes.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCirculateEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCirculateRequestEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XClearArea.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XClientMessageEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCloseDevice.3			-unknown-	obsolete
./usr/X11R7/man/man3/XColormapEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeCreateRegionFromBorderClip.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeGetOverlayWindow.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeNameWindowPixmap.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeRedirectSubwindows.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeRedirectWindow.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeReleaseOverlayWindow.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeUnredirectSubwindows.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeUnredirectWindow.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XCompositeVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XConfigureEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XConfigureRequestEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XConfigureWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCopyArea.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateColormap.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateFontCursor.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateFontSet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateGC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateIC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateOC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreatePixmap.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateRegion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XCreateWindowEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XCrossingEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGA.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAChangePixmapMode.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGACloseFramebuffer.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGACopyArea.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGACopyTransparentArea.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGACreateColormap.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAFillRectangle.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAGetViewportStatus.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAInstallColormap.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAKeyEventToXKeyEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAOpenFramebuffer.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAQueryModes.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGAQueryVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGASelectInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGASetClientVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGASetMode.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGASetViewport.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDGASync.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XDefineCursor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDestroyWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDestroyWindowEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XDeviceBell.3			-unknown-	obsolete
./usr/X11R7/man/man3/XDeviceTimeCoord.3			-unknown-	obsolete
./usr/X11R7/man/man3/XDrawArc.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawImageString.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawLine.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawPoint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawRectangle.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawString.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XDrawText.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XEmptyRegion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XErrorEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XExposeEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XExtentsOfFontSet.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86DGA.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86Misc.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscGetKbdSettings.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscGetMouseSettings.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscGetSaver.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscSetKbdSettings.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscSetMouseSettings.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86MiscSetSaver.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VM.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeDeleteModeLine.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetAllModeLines.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetDotClocks.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetGamma.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetGammaRamp.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetGammaRampSize.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetModeLine.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetMonitor.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetPermissions.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeGetViewPort.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeLockModeSwitch.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeModModeLine.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeQueryExtension.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSetClientVersion.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSetGamma.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSetGammaRamp.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSetViewPort.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSwitchMode.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeSwitchToMode.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XF86VidModeValidateModeLine.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XFillRectangle.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XFilterEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XFlush.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XFocusChangeEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XFontSetExtents.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XFontsOfFontSet.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XFree.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XFree86-DGA.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XFreeDeviceList.3			-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceButtonMapping.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceControl.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceDontPropagateList.3	-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceFocus.3			-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceKeyMapping.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceModifierMapping.3	-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceMotionEvents.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetDeviceProperty.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetExtensionVersion.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetFeedbackControl.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGetSelectedExtensionEvents.3	-unknown-	obsolete
./usr/X11R7/man/man3/XGetVisualInfo.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XGetWindowAttributes.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XGetWindowProperty.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XGetXCBConnection.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XGrabButton.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XGrabDevice.3			-unknown-	obsolete
./usr/X11R7/man/man3/XGrabDeviceButton.3		-unknown-	obsolete
./usr/X11R7/man/man3/XGrabDeviceKey.3			-unknown-	obsolete
./usr/X11R7/man/man3/XGrabKey.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XGrabKeyboard.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XGrabPointer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XGrabServer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XGraphicsExposeEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XGravityEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XIconifyWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XIfEvent.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XInitImage.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XInitThreads.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XInstallColormap.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XInternAtom.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XIntersectRegion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XKeymapEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XListDeviceProperties.3		-unknown-	obsolete
./usr/X11R7/man/man3/XListFonts.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XListInputDevices.3		-unknown-	obsolete
./usr/X11R7/man/man3/XLoadFont.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XLookupKeysym.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XMapEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XMapRequestEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XMapWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XNextEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XNoOp.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XOpenDevice.3			-unknown-	obsolete
./usr/X11R7/man/man3/XOpenDisplay.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XOpenIM.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XOpenOM.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XParseGeometry.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XPolygonRegion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XPropertyEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XPutBackEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XPutImage.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XQueryBestSize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XQueryColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XQueryDeviceState.3		-unknown-	obsolete
./usr/X11R7/man/man3/XQueryExtension.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XQueryPointer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XQueryTree.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XRaiseWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XReadBitmapFile.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XRecolorCursor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XReparentEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XReparentWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XRes.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XResQueryClientPixmapBytes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XResQueryClientResources.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XResQueryClients.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XResQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XResQueryVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XResizeRequestEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XResourceManagerString.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSaveContext.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverAllocInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverGetRegistered.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverQueryExtension.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverQueryInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverRegister.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverSelectInput.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverSetAttributes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverSuspend.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverUnregister.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XScreenSaverUnsetAttributes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XSelectExtensionEvent.3		-unknown-	obsolete
./usr/X11R7/man/man3/XSelectInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSelectionClearEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSelectionEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSelectionRequestEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSendEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSendExtensionEvent.3		-unknown-	obsolete
./usr/X11R7/man/man3/XSetArcMode.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetClipOrigin.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetCloseDownMode.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetCommand.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetDeviceButtonMapping.3		-unknown-	obsolete
./usr/X11R7/man/man3/XSetDeviceFocus.3			-unknown-	obsolete
./usr/X11R7/man/man3/XSetDeviceMode.3			-unknown-	obsolete
./usr/X11R7/man/man3/XSetDeviceModifierMapping.3	-unknown-	obsolete
./usr/X11R7/man/man3/XSetDeviceValuators.3		-unknown-	obsolete
./usr/X11R7/man/man3/XSetErrorHandler.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetEventQueueOwner.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetFillStyle.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetFont.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetFontPath.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetICFocus.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetICValues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetInputFocus.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetLineAttributes.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetPointerMapping.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetScreenSaver.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetSelectionOwner.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetState.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetTextProperty.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetTile.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetTransientForHint.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMClientMachine.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMColormapWindows.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMIconName.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMName.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMProperties.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSetWMProtocols.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShape.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeCombineMask.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeCombineRectangles.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeCombineRegion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeCombineShape.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeGetRectangles.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeInputSelected.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeOffsetShape.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeQueryExtensionXShapeQueryVersion.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeQueryExtents.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShapeSelectInput.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShm.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmAttach.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmCreateImage.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmCreatePixmap.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmDetach.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmGetEventBase.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmGetImage.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmPixmapFormat.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmPutImage.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XShmQueryVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XStoreBytes.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XStoreColors.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XStringListToTextProperty.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XStringToKeysym.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSupportsLocale.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XSynchronize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XTestCompareCurrentCursorWithWindow.3	-unknown-	obsolete
./usr/X11R7/man/man3/XTestCompareCursorWithWindow.3	-unknown-	obsolete
./usr/X11R7/man/man3/XTestDiscard.3			-unknown-	obsolete
./usr/X11R7/man/man3/XTestFakeButtonEvent.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTestFakeKeyEvent.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTestFakeMotionEvent.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTestFakeRelativeMotionEvent.3	-unknown-	obsolete
./usr/X11R7/man/man3/XTestGrabControl.3			-unknown-	obsolete
./usr/X11R7/man/man3/XTestQueryExtension.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTestSetGContextOfGC.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTestSetVisualIDOfVisual.3		-unknown-	obsolete
./usr/X11R7/man/man3/XTextExtents.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XTextWidth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XTranslateCoordinates.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XUngrabDevice.3			-unknown-	obsolete
./usr/X11R7/man/man3/XUngrabDeviceButton.3		-unknown-	obsolete
./usr/X11R7/man/man3/XUngrabDeviceKey.3			-unknown-	obsolete
./usr/X11R7/man/man3/XUnmapEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XUnmapWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XVaCreateNestedList.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XVisibilityEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XWarpPointer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xau.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XauDisposeAuth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauFileName.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauGetAuthByAddr.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauGetBestAuthByAddr.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XauLockAuth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauReadAuth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauUnlockAuth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XauWriteAuth.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xaw.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsAllocColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsCCCOfColormap.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsCIELabQueryMaxC.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsCIELuvQueryMaxC.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsConvertColors.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsCreateCCC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsDefaultCCC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsQueryBlack.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsQueryColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsSetWhitePoint.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsStoreColor.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcmsTekHVCQueryMaxC.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/Xcomposite.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcupGetReservedColormapEntries.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XcupQueryVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XcupStoreColors.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xcursor.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeAllocateBackBufferName.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeBeginIdiom.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeDeallocateBackBufferName.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeEndIdiom.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeFreeVisualInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeGetBackBufferAttributes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeGetVisualInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XdbeSwapBuffers.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xevi.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XeviGetVisualInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XeviQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XeviQueryVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xevie.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XevieEnd.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XevieQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XevieSelectInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XevieSendEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XevieStart.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xfixes.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/Xfontcache.3			-unknown-	obsolete
./usr/X11R7/man/man3/Xft.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/Xinerama.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XineramaIsActive.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XineramaQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XineramaQueryScreens.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XineramaQueryVersion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbDrawImageString.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbDrawString.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbDrawText.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbLookupString.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbResetIC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbTextEscapement.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbTextExtents.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbTextListToTextProperty.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbTextPerCharExtents.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/Xmbuf.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufChangeBufferAttributes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufChangeWindowAttributes.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufCreateBuffers.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufCreateStereoWindow.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufDestroyBuffers.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufDisplayBuffers.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufGetBufferAttributes.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufGetScreenInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufGetVersion.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufGetWindowAttributes.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XmbufQueryExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XpCancelDoc.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpCancelJob.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpCancelPage.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpCreateContext.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpDestroyContext.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpEndDoc.3				-unknown-	obsolete
./usr/X11R7/man/man3/XpEndJob.3				-unknown-	obsolete
./usr/X11R7/man/man3/XpEndPage.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpFreePrinterList.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetAttributes.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpGetContext.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpGetDocumentData.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetImageResolution.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetLocaleHinter.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetOneAttribute.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetPageDimensions.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetPdmStartParams.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpGetPrinterList.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpGetScreenOfContext.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpInputSelected.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpPutDocumentData.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpQueryExtension.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpQueryScreens.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpQueryVersion.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpRehashPrinterList.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpSelectInput.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpSetAttributes.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpSetContext.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpSetImageResolution.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpSetLocaleHinter.3		-unknown-	obsolete
./usr/X11R7/man/man3/XpStartDoc.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpStartJob.3			-unknown-	obsolete
./usr/X11R7/man/man3/XpStartPage.3			-unknown-	obsolete
./usr/X11R7/man/man3/Xpresent.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/Xrandr.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmEnumerateDatabase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmGetFileDatabase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmGetResource.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmInitialize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmMergeDatabases.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmPutResource.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XrmUniqueQuark.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xss.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddActions.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddCallback.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddCallbacks.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddConverter.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddExposureToRegion.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddGrab.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddRawEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddTimeOut.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAddWorkProc.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAllocateGC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddActionHook.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddActions.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddBlockHook.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddConverter.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddSignal.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddTimeOut.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppAddWorkProc.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppCreateShell.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppError.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppErrorMsg.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppGetErrorDatabase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppGetErrorDatabaseText.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppGetExitFlag.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppGetSelectionTimeout.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppInitialize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppLock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppMainLoop.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppNextEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppPeekEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppPending.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppProcessEvent.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppReleaseCacheRefs.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetErrorHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetErrorMsgHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetExitFlag.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetFallbackResources.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetSelectionTimeout.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetTypeConverter.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetWarningHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppSetWarningMsgHandler.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppUnlock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppWarning.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAppWarningMsg.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAsprintf.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtAugmentTranslations.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtBuildEventMask.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallAcceptFocus.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallActionProc.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallCallbackList.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallCallbacks.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallConverter.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallbackExclusive.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallbackNone.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallbackNonexclusive.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCallbackPopdown.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCalloc.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCancelSelectionRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtChangeManagedSet.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCheckSubclass.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtClass.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCloseDisplay.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtConfigureWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtConvert.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtConvertAndStore.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtConvertCase.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateApplicationContext.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateApplicationShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateManagedWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreatePopupShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateSelectionRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtCreateWindow.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDatabase.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDestroyApplicationContext.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDestroyWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDirectConvert.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisownSelection.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDispatchEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDispatchEventToWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisplay.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisplayInitialize.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisplayOfObject.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisplayStringConversionWarning.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtDisplayToApplicationContext.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtError.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtErrorMsg.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtFindFile.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtFree.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetActionKeysym.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetActionList.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetApplicationNameAndClass.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetApplicationResources.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetClassExtension.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetConstraintResourceList.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetDisplays.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetErrorDatabase.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetErrorDatabaseText.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetGC.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetKeyboardFocusWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetKeysymTable.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetMultiClickTime.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetResourceList.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionParameters.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionTimeout.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionValue.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionValueIncremental.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionValues.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSelectionValuesIncremental.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSubresources.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetSubvalues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGetValues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGrabButton.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGrabKey.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGrabKeyboard.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtGrabPointer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtHasCallbacks.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtHooksOfDisplay.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInitialize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInitializeWidgetClass.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInsertEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInsertEventTypeHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInsertRawEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInstallAccelerators.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtInstallAllAccelerators.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsApplicationShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsComposite.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsConstraint.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsManaged.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsObject.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsOverrideShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsRealized.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsRectObj.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsSensitive.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsSessionShell.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsShell.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsSubclass.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsTopLevelShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsTransientShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsVendorShell.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsWMShell.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtIsWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtKeysymToKeycodeList.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtLastEventProcessed.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtLastTimestampProcessed.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMainLoop.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMakeGeometryRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMakeResizeRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMalloc.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtManageChild.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtManageChildren.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMapWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMergeArgLists.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtMoveWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtName.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNameToWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNew.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNewString.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNextEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNoticeSignal.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtNumber.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOffset.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOffsetOf.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOpenApplication.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOpenDisplay.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOverrideTranslations.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOwnSelection.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtOwnSelectionIncremental.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtParent.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtParseAcceleratorTable.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtParseTranslationTable.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtPeekEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtPending.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtPopdown.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtPopup.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtPopupSpringLoaded.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtProcessEvent.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtProcessLock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtProcessUnlock.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtQueryGeometry.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRealizeWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRealloc.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRegisterCaseConverter.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRegisterDrawable.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRegisterExtensionSelector.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRegisterGrabAction.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtReleaseGC.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtReleasePropertyAtom.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveActionHook.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveAllCallbacks.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveBlockHook.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveCallback.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveCallbacks.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveEventTypeHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveGrab.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveInput.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveRawEventHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveSignal.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveTimeOut.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtRemoveWorkProc.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtReservePropertyAtom.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtResizeWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtResolvePathname.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtScreen.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtScreenDatabase.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtScreenOfObject.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSendSelectionRequest.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSessionGetToken.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSessionReturnToken.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetArg.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetErrorHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetErrorMsgHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetEventDispatcher.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetKeyTranslator.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetKeyboardFocus.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetLanguageProc.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetMappedWhenManaged.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetMultiClickTime.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetSelectionParameters.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetSelectionTimeout.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetSensitive.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetSubvalues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetTypeConverter.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetValues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetWMColormapWindows.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetWarningHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSetWarningMsgHandler.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtStringConversionWarning.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtSuperclass.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtToolkitInitialize.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtToolkitThreadInitialize.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtTranslateCoords.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtTranslateKeycode.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUngrabButton.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUngrabKey.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUngrabKeyboard.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUngrabPointer.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUninstallTranslations.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUnmanageChild.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUnmanageChildren.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUnmapWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUnrealizeWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtUnregisterDrawable.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaAppCreateShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaAppInitialize.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaCreateArgsList.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaCreateManagedWidget.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaCreatePopupShell.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaCreateWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaGetApplicationResources.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaGetSubresources.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaGetSubvalues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaGetValues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaOpenApplication.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaSetSubvalues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtVaSetValues.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWarning.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWarningMsg.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWidgetToApplicationContext.3	-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWindow.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWindowOfObject.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XtWindowToWidget.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/Xv.3				-unknown-	.man,xorg
./usr/X11R7/man/man3/XvFreeAdaptorInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvFreeEncodingInfo.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvGetPortAttribute.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvGetStill.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvGetVideo.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvGrabPort.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvPortNotify.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvPutStill.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvPutVideo.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvQueryAdaptors.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvQueryBestSize.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvQueryEncodings.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvQueryExtension.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvSelectPortNotify.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvSelectVideoNotify.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvSetPortAttribute.3		-unknown-	.man,xorg
./usr/X11R7/man/man3/XvStopVideo.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvUngrabPort.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/XvVideoNotify.3			-unknown-	.man,xorg
./usr/X11R7/man/man3/libXp.3				-unknown-	obsolete
./usr/X11R7/share/aclocal/xtrans.m4			-unknown-	xorg
./usr/X11R7/share/xcb/bigreq.xml			-unknown-	xorg
./usr/X11R7/share/xcb/composite.xml			-unknown-	xorg
./usr/X11R7/share/xcb/damage.xml			-unknown-	xorg
./usr/X11R7/share/xcb/dpms.xml				-unknown-	xorg
./usr/X11R7/share/xcb/dri2.xml				-unknown-	xorg
./usr/X11R7/share/xcb/dri3.xml				-unknown-	xorg
./usr/X11R7/share/xcb/ge.xml				-unknown-	xorg
./usr/X11R7/share/xcb/glx.xml				-unknown-	xorg
./usr/X11R7/share/xcb/present.xml			-unknown-	xorg
./usr/X11R7/share/xcb/randr.xml				-unknown-	xorg
./usr/X11R7/share/xcb/record.xml			-unknown-	xorg
./usr/X11R7/share/xcb/render.xml			-unknown-	xorg
./usr/X11R7/share/xcb/res.xml				-unknown-	xorg
./usr/X11R7/share/xcb/screensaver.xml			-unknown-	xorg
./usr/X11R7/share/xcb/shape.xml				-unknown-	xorg
./usr/X11R7/share/xcb/shm.xml				-unknown-	xorg
./usr/X11R7/share/xcb/sync.xml				-unknown-	xorg
./usr/X11R7/share/xcb/xc_misc.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xcb.xsd				-unknown-	xorg
./usr/X11R7/share/xcb/xevie.xml				-unknown-	obsolete
./usr/X11R7/share/xcb/xf86dri.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xf86vidmode.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xfixes.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xinerama.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xinput.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xkb.xml				-unknown-	xorg
./usr/X11R7/share/xcb/xprint.xml			-unknown-	obsolete
./usr/X11R7/share/xcb/xproto.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xselinux.xml			-unknown-	xorg
./usr/X11R7/share/xcb/xtest.xml				-unknown-	xorg
./usr/X11R7/share/xcb/xv.xml				-unknown-	xorg
./usr/X11R7/share/xcb/xvmc.xml				-unknown-	xorg
./usr/libdata/lint/llib-lFS.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lGLU.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lGLw.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lICE.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lOSMesa.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lSM.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lX11.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXRes.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXTrap.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXau.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXaw7.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXaw8.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lXcomposite.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXcursor.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXdamage.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXdmGreet.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXdmcp.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXevie.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXext.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXfixes.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXfont.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXfont2.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXfontcache.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lXft.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXi.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXinerama.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXmu.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXmuu.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXp.ln				-unknown-	obsolete,xorg
./usr/libdata/lint/llib-lXpm.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXpresent.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXprintAppUtil.ln		-unknown-	obsolete
./usr/libdata/lint/llib-lXprintUtil.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lXrandr.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXrender.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXres.ln			comp-obsolete	obsolete
./usr/libdata/lint/llib-lXss.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXt.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXtst.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXv.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lXvMC.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXvMCW.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXxf86dga.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXxf86misc.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lXxf86vm.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-ldrm.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-ldrm_radeon.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lepoxy.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lfontconfig.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lfontenc.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lfreetype.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lgbm.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lglut.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-llbxutil.ln			-unknown-	obsolete,xorg
./usr/libdata/lint/llib-llisp.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lmp.ln				-unknown-	obsolete
./usr/libdata/lint/llib-lpciaccess.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lpthread-stubs.ln		-unknown-	lint,xorg
./usr/libdata/lint/llib-lre.ln				-unknown-	obsolete
./usr/libdata/lint/llib-lxcb-composite.ln		-unknown-	obsolete
./usr/libdata/lint/llib-lxcb-damage.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-dpms.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-dri2.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-dri3.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-glx.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-present.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-randr.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-record.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-render.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-res.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-screensaver.ln		-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-shape.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-shm.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-sync.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xevie.ln			-unknown-	obsolete
./usr/libdata/lint/llib-lxcb-xf86dri.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xfixes.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xinerama.ln		-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xinput.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xkb.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xtest.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xv.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb-xvmc.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxcb.ln				-unknown-	lint,xorg
./usr/libdata/lint/llib-lxkbfile.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxkbui.ln			-unknown-	lint,xorg
./usr/libdata/lint/llib-lxshmfence.ln			-unknown-	lint,xorg
./var/db/obsolete/xcomp					xbase-sys-root	xorg