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 | ~> locate glib
/etc/ld.so.conf.d/lib32-glibc.conf
/home/david/Downloads/glib-html-2.32.0.tar.gz
/home/david/Downloads/jtvlc-lin-0.41/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/internet/glib2reactor.pyc
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/dbus.glib_77rd.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/dbus.mainloop.glib_bwqt.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/gi._glib.__init___3dwv.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/gi._glib.option_2f84.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/glib.__init___40kt.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/glib.option_9qj2.v1_indexcache
/home/david/src/.metadata/.plugins/com.python.pydev.analysis/python_v1_3tswbhuj9gc4kibexhrzgzdx/v1_indexcache/twisted.internet.glib2reactor_ewzk.v1_indexcache
/home/david/src/.metadata/.plugins/org.eclipse.jst.jsp.core/taglibindex
/home/david/src/PythonForumIDE/pythonforumide/twisted/internet/glib2reactor.py
/home/david/src/VaEdit/.waf3-1.5.16-85d408283b52963393fc03a486167112/wafadmin/Tools/glib2.py
/home/david/src/XSIRC/.waf3-1.6.4-37059750328bf24b869521d97d29c0c1/waflib/Tools/glib2.py
/home/david/src/devhelp/m4/glibc2.m4
/home/david/src/devhelp/m4/glibc21.m4
/home/david/src/dexter-contacts/m4/glibc2.m4
/home/david/src/dexter-contacts/m4/glibc21.m4
/home/david/src/gedit/osx/jhbuild/patches/glib-iconv.patch
/home/david/src/midori/.waf-1.5.19-d046dea57dbefcabd071866ac51eb518/wafadmin/Tools/glib2.py
/home/david/src/midori/.waf-1.5.19-d046dea57dbefcabd071866ac51eb518/wafadmin/Tools/glib2.pyc
/home/david/src/nautilus/eel/eel-glib-extensions.c
/home/david/src/nautilus/eel/eel-glib-extensions.h
/home/david/src/pantheon-files/build/libcore/CMakeFiles/marlincore.dir/eel-glib-extensions.c.o
/home/david/src/pantheon-files/libcore/eel-glib-extensions.c
/home/david/src/pantheon-files/libcore/eel-glib-extensions.h
/home/david/src/unity/tests/test_glib_object.cpp
/home/david/src/unity/tests/test_glib_object_utils.cpp
/home/david/src/unity/tests/test_glib_object_utils.h
/home/david/src/unity/tests/test_glib_signals.cpp
/home/david/src/unity/tests/test_glib_signals_utils.cpp
/home/david/src/unity/tests/test_glib_signals_utils.h
/home/david/src/unity/tests/test_glib_signals_utils_marshal.list
/home/david/src/unity/tests/test_glib_source.cpp
/home/david/src/unity/tests/test_glib_variant.cpp
/home/david/src/unity/tools/build-compiz-glib
/home/david/src/vala-0.16.0/vapi/dbus-glib-1.vapi
/home/david/src/vala-0.16.0/vapi/glib-2.0.vapi
/home/david/src/vala-0.16.0/vapi/json-glib-1.0.deps
/home/david/src/vala-0.16.0/vapi/json-glib-1.0.vapi
/home/david/src/vala-0.16.0/vapi/poppler-glib.deps
/home/david/src/vala-0.16.0/vapi/poppler-glib.vapi
/home/david/src/vala-0.16.0/vapi/taglib_c.vapi
/home/david/src/vala-0.16.0/vapi/twitter-glib-1.0.deps
/home/david/src/vala-0.16.0/vapi/twitter-glib-1.0.vapi
/home/david/src/vala-0.18.0/vapi/dbus-glib-1.vapi
/home/david/src/vala-0.18.0/vapi/glib-2.0.vapi
/home/david/src/vala-0.18.0/vapi/json-glib-1.0.deps
/home/david/src/vala-0.18.0/vapi/json-glib-1.0.vapi
/home/david/src/vala-0.18.0/vapi/poppler-glib.deps
/home/david/src/vala-0.18.0/vapi/poppler-glib.vapi
/home/david/src/vala-0.18.0/vapi/taglib_c.vapi
/home/david/src/vala-0.18.0/vapi/twitter-glib-1.0.deps
/home/david/src/vala-0.18.0/vapi/twitter-glib-1.0.vapi
/usr/bin/eggdbus-glib-genmarshal
/usr/bin/glib-compile-resources
/usr/bin/glib-compile-schemas
/usr/bin/glib-config
/usr/bin/glib-genmarshal
/usr/bin/glib-gettextize
/usr/bin/glib-mkenums
/usr/bin/taglib-config
/usr/include/avahi-glib
/usr/include/ecpglib.h
/usr/include/glib-1.2
/usr/include/glib-2.0
/usr/include/glibmm-2.4
/usr/include/jpeglib.h
/usr/include/json-glib-1.0
/usr/include/libdbusmenu-glib-0.4
/usr/include/libnm-glib
/usr/include/libupower-glib
/usr/include/libvirt-glib-1.0
/usr/include/pnglibconf.h
/usr/include/taglib
/usr/include/avahi-glib/glib-malloc.h
/usr/include/avahi-glib/glib-watch.h
/usr/include/cogl/cogl/cogl-glib-source.h
/usr/include/dbus-1.0/dbus/dbus-glib-bindings.h
/usr/include/dbus-1.0/dbus/dbus-glib-lowlevel.h
/usr/include/dbus-1.0/dbus/dbus-glib.h
/usr/include/glib-1.2/glib.h
/usr/include/glib-1.2/gmodule.h
/usr/include/glib-2.0/gio
/usr/include/glib-2.0/glib
/usr/include/glib-2.0/glib-object.h
/usr/include/glib-2.0/glib-unix.h
/usr/include/glib-2.0/glib.h
/usr/include/glib-2.0/gmodule.h
/usr/include/glib-2.0/gobject
/usr/include/glib-2.0/gio/gaction.h
/usr/include/glib-2.0/gio/gactiongroup.h
/usr/include/glib-2.0/gio/gactiongroupexporter.h
/usr/include/glib-2.0/gio/gactionmap.h
/usr/include/glib-2.0/gio/gappinfo.h
/usr/include/glib-2.0/gio/gapplication.h
/usr/include/glib-2.0/gio/gapplicationcommandline.h
/usr/include/glib-2.0/gio/gasyncinitable.h
/usr/include/glib-2.0/gio/gasyncresult.h
/usr/include/glib-2.0/gio/gbufferedinputstream.h
/usr/include/glib-2.0/gio/gbufferedoutputstream.h
/usr/include/glib-2.0/gio/gcancellable.h
/usr/include/glib-2.0/gio/gcharsetconverter.h
/usr/include/glib-2.0/gio/gcontenttype.h
/usr/include/glib-2.0/gio/gconverter.h
/usr/include/glib-2.0/gio/gconverterinputstream.h
/usr/include/glib-2.0/gio/gconverteroutputstream.h
/usr/include/glib-2.0/gio/gcredentials.h
/usr/include/glib-2.0/gio/gdatainputstream.h
/usr/include/glib-2.0/gio/gdataoutputstream.h
/usr/include/glib-2.0/gio/gdbusactiongroup.h
/usr/include/glib-2.0/gio/gdbusaddress.h
/usr/include/glib-2.0/gio/gdbusauthobserver.h
/usr/include/glib-2.0/gio/gdbusconnection.h
/usr/include/glib-2.0/gio/gdbuserror.h
/usr/include/glib-2.0/gio/gdbusinterface.h
/usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h
/usr/include/glib-2.0/gio/gdbusintrospection.h
/usr/include/glib-2.0/gio/gdbusmenumodel.h
/usr/include/glib-2.0/gio/gdbusmessage.h
/usr/include/glib-2.0/gio/gdbusmethodinvocation.h
/usr/include/glib-2.0/gio/gdbusnameowning.h
/usr/include/glib-2.0/gio/gdbusnamewatching.h
/usr/include/glib-2.0/gio/gdbusobject.h
/usr/include/glib-2.0/gio/gdbusobjectmanager.h
/usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h
/usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h
/usr/include/glib-2.0/gio/gdbusobjectproxy.h
/usr/include/glib-2.0/gio/gdbusobjectskeleton.h
/usr/include/glib-2.0/gio/gdbusproxy.h
/usr/include/glib-2.0/gio/gdbusserver.h
/usr/include/glib-2.0/gio/gdbusutils.h
/usr/include/glib-2.0/gio/gdrive.h
/usr/include/glib-2.0/gio/gemblem.h
/usr/include/glib-2.0/gio/gemblemedicon.h
/usr/include/glib-2.0/gio/gfile.h
/usr/include/glib-2.0/gio/gfileattribute.h
/usr/include/glib-2.0/gio/gfileenumerator.h
/usr/include/glib-2.0/gio/gfileicon.h
/usr/include/glib-2.0/gio/gfileinfo.h
/usr/include/glib-2.0/gio/gfileinputstream.h
/usr/include/glib-2.0/gio/gfileiostream.h
/usr/include/glib-2.0/gio/gfilemonitor.h
/usr/include/glib-2.0/gio/gfilenamecompleter.h
/usr/include/glib-2.0/gio/gfileoutputstream.h
/usr/include/glib-2.0/gio/gfilterinputstream.h
/usr/include/glib-2.0/gio/gfilteroutputstream.h
/usr/include/glib-2.0/gio/gicon.h
/usr/include/glib-2.0/gio/ginetaddress.h
/usr/include/glib-2.0/gio/ginetaddressmask.h
/usr/include/glib-2.0/gio/ginetsocketaddress.h
/usr/include/glib-2.0/gio/ginitable.h
/usr/include/glib-2.0/gio/ginputstream.h
/usr/include/glib-2.0/gio/gio.h
/usr/include/glib-2.0/gio/gioenums.h
/usr/include/glib-2.0/gio/gioenumtypes.h
/usr/include/glib-2.0/gio/gioerror.h
/usr/include/glib-2.0/gio/giomodule.h
/usr/include/glib-2.0/gio/gioscheduler.h
/usr/include/glib-2.0/gio/giostream.h
/usr/include/glib-2.0/gio/giotypes.h
/usr/include/glib-2.0/gio/gloadableicon.h
/usr/include/glib-2.0/gio/gmemoryinputstream.h
/usr/include/glib-2.0/gio/gmemoryoutputstream.h
/usr/include/glib-2.0/gio/gmenu.h
/usr/include/glib-2.0/gio/gmenuexporter.h
/usr/include/glib-2.0/gio/gmenumodel.h
/usr/include/glib-2.0/gio/gmount.h
/usr/include/glib-2.0/gio/gmountoperation.h
/usr/include/glib-2.0/gio/gnativevolumemonitor.h
/usr/include/glib-2.0/gio/gnetworkaddress.h
/usr/include/glib-2.0/gio/gnetworkmonitor.h
/usr/include/glib-2.0/gio/gnetworkservice.h
/usr/include/glib-2.0/gio/goutputstream.h
/usr/include/glib-2.0/gio/gpermission.h
/usr/include/glib-2.0/gio/gpollableinputstream.h
/usr/include/glib-2.0/gio/gpollableoutputstream.h
/usr/include/glib-2.0/gio/gpollableutils.h
/usr/include/glib-2.0/gio/gproxy.h
/usr/include/glib-2.0/gio/gproxyaddress.h
/usr/include/glib-2.0/gio/gproxyaddressenumerator.h
/usr/include/glib-2.0/gio/gproxyresolver.h
/usr/include/glib-2.0/gio/gremoteactiongroup.h
/usr/include/glib-2.0/gio/gresolver.h
/usr/include/glib-2.0/gio/gresource.h
/usr/include/glib-2.0/gio/gseekable.h
/usr/include/glib-2.0/gio/gsettings.h
/usr/include/glib-2.0/gio/gsettingsbackend.h
/usr/include/glib-2.0/gio/gsettingsschema.h
/usr/include/glib-2.0/gio/gsimpleaction.h
/usr/include/glib-2.0/gio/gsimpleactiongroup.h
/usr/include/glib-2.0/gio/gsimpleasyncresult.h
/usr/include/glib-2.0/gio/gsimplepermission.h
/usr/include/glib-2.0/gio/gsocket.h
/usr/include/glib-2.0/gio/gsocketaddress.h
/usr/include/glib-2.0/gio/gsocketaddressenumerator.h
/usr/include/glib-2.0/gio/gsocketclient.h
/usr/include/glib-2.0/gio/gsocketconnectable.h
/usr/include/glib-2.0/gio/gsocketconnection.h
/usr/include/glib-2.0/gio/gsocketcontrolmessage.h
/usr/include/glib-2.0/gio/gsocketlistener.h
/usr/include/glib-2.0/gio/gsocketservice.h
/usr/include/glib-2.0/gio/gsrvtarget.h
/usr/include/glib-2.0/gio/gtcpconnection.h
/usr/include/glib-2.0/gio/gtcpwrapperconnection.h
/usr/include/glib-2.0/gio/gtestdbus.h
/usr/include/glib-2.0/gio/gthemedicon.h
/usr/include/glib-2.0/gio/gthreadedsocketservice.h
/usr/include/glib-2.0/gio/gtlsbackend.h
/usr/include/glib-2.0/gio/gtlscertificate.h
/usr/include/glib-2.0/gio/gtlsclientconnection.h
/usr/include/glib-2.0/gio/gtlsconnection.h
/usr/include/glib-2.0/gio/gtlsdatabase.h
/usr/include/glib-2.0/gio/gtlsfiledatabase.h
/usr/include/glib-2.0/gio/gtlsinteraction.h
/usr/include/glib-2.0/gio/gtlspassword.h
/usr/include/glib-2.0/gio/gtlsserverconnection.h
/usr/include/glib-2.0/gio/gvfs.h
/usr/include/glib-2.0/gio/gvolume.h
/usr/include/glib-2.0/gio/gvolumemonitor.h
/usr/include/glib-2.0/gio/gzlibcompressor.h
/usr/include/glib-2.0/gio/gzlibdecompressor.h
/usr/include/glib-2.0/glib/deprecated
/usr/include/glib-2.0/glib/galloca.h
/usr/include/glib-2.0/glib/garray.h
/usr/include/glib-2.0/glib/gasyncqueue.h
/usr/include/glib-2.0/glib/gatomic.h
/usr/include/glib-2.0/glib/gbacktrace.h
/usr/include/glib-2.0/glib/gbase64.h
/usr/include/glib-2.0/glib/gbitlock.h
/usr/include/glib-2.0/glib/gbookmarkfile.h
/usr/include/glib-2.0/glib/gbytes.h
/usr/include/glib-2.0/glib/gcharset.h
/usr/include/glib-2.0/glib/gchecksum.h
/usr/include/glib-2.0/glib/gconvert.h
/usr/include/glib-2.0/glib/gdataset.h
/usr/include/glib-2.0/glib/gdate.h
/usr/include/glib-2.0/glib/gdatetime.h
/usr/include/glib-2.0/glib/gdir.h
/usr/include/glib-2.0/glib/genviron.h
/usr/include/glib-2.0/glib/gerror.h
/usr/include/glib-2.0/glib/gfileutils.h
/usr/include/glib-2.0/glib/ggettext.h
/usr/include/glib-2.0/glib/ghash.h
/usr/include/glib-2.0/glib/ghmac.h
/usr/include/glib-2.0/glib/ghook.h
/usr/include/glib-2.0/glib/ghostutils.h
/usr/include/glib-2.0/glib/gi18n-lib.h
/usr/include/glib-2.0/glib/gi18n.h
/usr/include/glib-2.0/glib/giochannel.h
/usr/include/glib-2.0/glib/gkeyfile.h
/usr/include/glib-2.0/glib/glist.h
/usr/include/glib-2.0/glib/gmacros.h
/usr/include/glib-2.0/glib/gmain.h
/usr/include/glib-2.0/glib/gmappedfile.h
/usr/include/glib-2.0/glib/gmarkup.h
/usr/include/glib-2.0/glib/gmem.h
/usr/include/glib-2.0/glib/gmessages.h
/usr/include/glib-2.0/glib/gnode.h
/usr/include/glib-2.0/glib/goption.h
/usr/include/glib-2.0/glib/gpattern.h
/usr/include/glib-2.0/glib/gpoll.h
/usr/include/glib-2.0/glib/gprimes.h
/usr/include/glib-2.0/glib/gprintf.h
/usr/include/glib-2.0/glib/gqsort.h
/usr/include/glib-2.0/glib/gquark.h
/usr/include/glib-2.0/glib/gqueue.h
/usr/include/glib-2.0/glib/grand.h
/usr/include/glib-2.0/glib/gregex.h
/usr/include/glib-2.0/glib/gscanner.h
/usr/include/glib-2.0/glib/gsequence.h
/usr/include/glib-2.0/glib/gshell.h
/usr/include/glib-2.0/glib/gslice.h
/usr/include/glib-2.0/glib/gslist.h
/usr/include/glib-2.0/glib/gspawn.h
/usr/include/glib-2.0/glib/gstdio.h
/usr/include/glib-2.0/glib/gstrfuncs.h
/usr/include/glib-2.0/glib/gstring.h
/usr/include/glib-2.0/glib/gstringchunk.h
/usr/include/glib-2.0/glib/gtestutils.h
/usr/include/glib-2.0/glib/gthread.h
/usr/include/glib-2.0/glib/gthreadpool.h
/usr/include/glib-2.0/glib/gtimer.h
/usr/include/glib-2.0/glib/gtimezone.h
/usr/include/glib-2.0/glib/gtrashstack.h
/usr/include/glib-2.0/glib/gtree.h
/usr/include/glib-2.0/glib/gtypes.h
/usr/include/glib-2.0/glib/gunicode.h
/usr/include/glib-2.0/glib/gurifuncs.h
/usr/include/glib-2.0/glib/gutils.h
/usr/include/glib-2.0/glib/gvariant.h
/usr/include/glib-2.0/glib/gvarianttype.h
/usr/include/glib-2.0/glib/gversion.h
/usr/include/glib-2.0/glib/gversionmacros.h
/usr/include/glib-2.0/glib/gwin32.h
/usr/include/glib-2.0/glib/deprecated/gallocator.h
/usr/include/glib-2.0/glib/deprecated/gcache.h
/usr/include/glib-2.0/glib/deprecated/gcompletion.h
/usr/include/glib-2.0/glib/deprecated/gmain.h
/usr/include/glib-2.0/glib/deprecated/grel.h
/usr/include/glib-2.0/glib/deprecated/gthread.h
/usr/include/glib-2.0/gobject/gbinding.h
/usr/include/glib-2.0/gobject/gboxed.h
/usr/include/glib-2.0/gobject/gclosure.h
/usr/include/glib-2.0/gobject/genums.h
/usr/include/glib-2.0/gobject/glib-types.h
/usr/include/glib-2.0/gobject/gmarshal.h
/usr/include/glib-2.0/gobject/gobject.h
/usr/include/glib-2.0/gobject/gobjectnotifyqueue.c
/usr/include/glib-2.0/gobject/gparam.h
/usr/include/glib-2.0/gobject/gparamspecs.h
/usr/include/glib-2.0/gobject/gsignal.h
/usr/include/glib-2.0/gobject/gsourceclosure.h
/usr/include/glib-2.0/gobject/gtype.h
/usr/include/glib-2.0/gobject/gtypemodule.h
/usr/include/glib-2.0/gobject/gtypeplugin.h
/usr/include/glib-2.0/gobject/gvalue.h
/usr/include/glib-2.0/gobject/gvaluearray.h
/usr/include/glib-2.0/gobject/gvaluecollector.h
/usr/include/glib-2.0/gobject/gvaluetypes.h
/usr/include/glibmm-2.4/glibmm
/usr/include/glibmm-2.4/glibmm.h
/usr/include/glibmm-2.4/glibmm_generate_extra_defs
/usr/include/glibmm-2.4/glibmm/arrayhandle.h
/usr/include/glibmm-2.4/glibmm/balancedtree.h
/usr/include/glibmm-2.4/glibmm/bytes.h
/usr/include/glibmm-2.4/glibmm/checksum.h
/usr/include/glibmm-2.4/glibmm/class.h
/usr/include/glibmm-2.4/glibmm/containerhandle_shared.h
/usr/include/glibmm-2.4/glibmm/containers.h
/usr/include/glibmm-2.4/glibmm/convert.h
/usr/include/glibmm-2.4/glibmm/date.h
/usr/include/glibmm-2.4/glibmm/datetime.h
/usr/include/glibmm-2.4/glibmm/debug.h
/usr/include/glibmm-2.4/glibmm/dispatcher.h
/usr/include/glibmm-2.4/glibmm/error.h
/usr/include/glibmm-2.4/glibmm/exception.h
/usr/include/glibmm-2.4/glibmm/exceptionhandler.h
/usr/include/glibmm-2.4/glibmm/fileutils.h
/usr/include/glibmm-2.4/glibmm/helperlist.h
/usr/include/glibmm-2.4/glibmm/i18n-lib.h
/usr/include/glibmm-2.4/glibmm/i18n.h
/usr/include/glibmm-2.4/glibmm/init.h
/usr/include/glibmm-2.4/glibmm/interface.h
/usr/include/glibmm-2.4/glibmm/iochannel.h
/usr/include/glibmm-2.4/glibmm/keyfile.h
/usr/include/glibmm-2.4/glibmm/listhandle.h
/usr/include/glibmm-2.4/glibmm/main.h
/usr/include/glibmm-2.4/glibmm/markup.h
/usr/include/glibmm-2.4/glibmm/miscutils.h
/usr/include/glibmm-2.4/glibmm/module.h
/usr/include/glibmm-2.4/glibmm/nodetree.h
/usr/include/glibmm-2.4/glibmm/object.h
/usr/include/glibmm-2.4/glibmm/objectbase.h
/usr/include/glibmm-2.4/glibmm/optioncontext.h
/usr/include/glibmm-2.4/glibmm/optionentry.h
/usr/include/glibmm-2.4/glibmm/optiongroup.h
/usr/include/glibmm-2.4/glibmm/pattern.h
/usr/include/glibmm-2.4/glibmm/priorities.h
/usr/include/glibmm-2.4/glibmm/private
/usr/include/glibmm-2.4/glibmm/property.h
/usr/include/glibmm-2.4/glibmm/propertyproxy.h
/usr/include/glibmm-2.4/glibmm/propertyproxy_base.h
/usr/include/glibmm-2.4/glibmm/quark.h
/usr/include/glibmm-2.4/glibmm/random.h
/usr/include/glibmm-2.4/glibmm/refptr.h
/usr/include/glibmm-2.4/glibmm/regex.h
/usr/include/glibmm-2.4/glibmm/sarray.h
/usr/include/glibmm-2.4/glibmm/shell.h
/usr/include/glibmm-2.4/glibmm/signalproxy.h
/usr/include/glibmm-2.4/glibmm/signalproxy_connectionnode.h
/usr/include/glibmm-2.4/glibmm/slisthandle.h
/usr/include/glibmm-2.4/glibmm/spawn.h
/usr/include/glibmm-2.4/glibmm/streamiochannel.h
/usr/include/glibmm-2.4/glibmm/stringutils.h
/usr/include/glibmm-2.4/glibmm/thread.h
/usr/include/glibmm-2.4/glibmm/threadpool.h
/usr/include/glibmm-2.4/glibmm/threads.h
/usr/include/glibmm-2.4/glibmm/timer.h
/usr/include/glibmm-2.4/glibmm/timeval.h
/usr/include/glibmm-2.4/glibmm/timezone.h
/usr/include/glibmm-2.4/glibmm/unicode.h
/usr/include/glibmm-2.4/glibmm/uriutils.h
/usr/include/glibmm-2.4/glibmm/ustring.h
/usr/include/glibmm-2.4/glibmm/utility.h
/usr/include/glibmm-2.4/glibmm/value.h
/usr/include/glibmm-2.4/glibmm/value_basictypes.h
/usr/include/glibmm-2.4/glibmm/value_custom.h
/usr/include/glibmm-2.4/glibmm/valuearray.h
/usr/include/glibmm-2.4/glibmm/variant.h
/usr/include/glibmm-2.4/glibmm/variant_basictypes.h
/usr/include/glibmm-2.4/glibmm/variantiter.h
/usr/include/glibmm-2.4/glibmm/varianttype.h
/usr/include/glibmm-2.4/glibmm/vectorutils.h
/usr/include/glibmm-2.4/glibmm/wrap.h
/usr/include/glibmm-2.4/glibmm/wrap_init.h
/usr/include/glibmm-2.4/glibmm/private/balancedtree_p.h
/usr/include/glibmm-2.4/glibmm/private/bytes_p.h
/usr/include/glibmm-2.4/glibmm/private/checksum_p.h
/usr/include/glibmm-2.4/glibmm/private/convert_p.h
/usr/include/glibmm-2.4/glibmm/private/date_p.h
/usr/include/glibmm-2.4/glibmm/private/datetime_p.h
/usr/include/glibmm-2.4/glibmm/private/fileutils_p.h
/usr/include/glibmm-2.4/glibmm/private/interface_p.h
/usr/include/glibmm-2.4/glibmm/private/iochannel_p.h
/usr/include/glibmm-2.4/glibmm/private/keyfile_p.h
/usr/include/glibmm-2.4/glibmm/private/markup_p.h
/usr/include/glibmm-2.4/glibmm/private/module_p.h
/usr/include/glibmm-2.4/glibmm/private/nodetree_p.h
/usr/include/glibmm-2.4/glibmm/private/object_p.h
/usr/include/glibmm-2.4/glibmm/private/optioncontext_p.h
/usr/include/glibmm-2.4/glibmm/private/optionentry_p.h
/usr/include/glibmm-2.4/glibmm/private/optiongroup_p.h
/usr/include/glibmm-2.4/glibmm/private/regex_p.h
/usr/include/glibmm-2.4/glibmm/private/shell_p.h
/usr/include/glibmm-2.4/glibmm/private/spawn_p.h
/usr/include/glibmm-2.4/glibmm/private/thread_p.h
/usr/include/glibmm-2.4/glibmm/private/threads_p.h
/usr/include/glibmm-2.4/glibmm/private/timezone_p.h
/usr/include/glibmm-2.4/glibmm/private/unicode_p.h
/usr/include/glibmm-2.4/glibmm/private/uriutils_p.h
/usr/include/glibmm-2.4/glibmm/private/valuearray_p.h
/usr/include/glibmm-2.4/glibmm/private/variant_p.h
/usr/include/glibmm-2.4/glibmm/private/variantiter_p.h
/usr/include/glibmm-2.4/glibmm/private/varianttype_p.h
/usr/include/glibmm-2.4/glibmm_generate_extra_defs/generate_extra_defs.h
/usr/include/grantlee/taglibraryinterface.h
/usr/include/gstreamer-0.10/gst/glib-compat.h
/usr/include/gstreamer-1.0/gst/glib-compat.h
/usr/include/harfbuzz/hb-glib.h
/usr/include/json-glib-1.0/json-glib
/usr/include/json-glib-1.0/json-glib/json-builder.h
/usr/include/json-glib-1.0/json-glib/json-enum-types.h
/usr/include/json-glib-1.0/json-glib/json-generator.h
/usr/include/json-glib-1.0/json-glib/json-glib.h
/usr/include/json-glib-1.0/json-glib/json-gobject.h
/usr/include/json-glib-1.0/json-glib/json-gvariant.h
/usr/include/json-glib-1.0/json-glib/json-parser.h
/usr/include/json-glib-1.0/json-glib/json-path.h
/usr/include/json-glib-1.0/json-glib/json-reader.h
/usr/include/json-glib-1.0/json-glib/json-types.h
/usr/include/json-glib-1.0/json-glib/json-version.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/client.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/dbusmenu-glib.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/enum-types.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/menuitem-proxy.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/menuitem.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/server.h
/usr/include/libdbusmenu-glib-0.4/libdbusmenu-glib/types.h
/usr/include/libgtop-2.0/glibtop
/usr/include/libgtop-2.0/glibtop.h
/usr/include/libgtop-2.0/glibtop_machine.h
/usr/include/libgtop-2.0/glibtop_server.h
/usr/include/libgtop-2.0/glibtop/close.h
/usr/include/libgtop-2.0/glibtop/command.h
/usr/include/libgtop-2.0/glibtop/cpu.h
/usr/include/libgtop-2.0/glibtop/fsusage.h
/usr/include/libgtop-2.0/glibtop/global.h
/usr/include/libgtop-2.0/glibtop/gnuserv.h
/usr/include/libgtop-2.0/glibtop/loadavg.h
/usr/include/libgtop-2.0/glibtop/mem.h
/usr/include/libgtop-2.0/glibtop/mountlist.h
/usr/include/libgtop-2.0/glibtop/msg_limits.h
/usr/include/libgtop-2.0/glibtop/netlist.h
/usr/include/libgtop-2.0/glibtop/netload.h
/usr/include/libgtop-2.0/glibtop/open.h
/usr/include/libgtop-2.0/glibtop/parameter.h
/usr/include/libgtop-2.0/glibtop/ppp.h
/usr/include/libgtop-2.0/glibtop/procaffinity.h
/usr/include/libgtop-2.0/glibtop/procargs.h
/usr/include/libgtop-2.0/glibtop/prockernel.h
/usr/include/libgtop-2.0/glibtop/proclist.h
/usr/include/libgtop-2.0/glibtop/procmap.h
/usr/include/libgtop-2.0/glibtop/procmem.h
/usr/include/libgtop-2.0/glibtop/procopenfiles.h
/usr/include/libgtop-2.0/glibtop/procsegment.h
/usr/include/libgtop-2.0/glibtop/procsignal.h
/usr/include/libgtop-2.0/glibtop/procstate.h
/usr/include/libgtop-2.0/glibtop/proctime.h
/usr/include/libgtop-2.0/glibtop/procuid.h
/usr/include/libgtop-2.0/glibtop/procwd.h
/usr/include/libgtop-2.0/glibtop/sem_limits.h
/usr/include/libgtop-2.0/glibtop/shm_limits.h
/usr/include/libgtop-2.0/glibtop/signal.h
/usr/include/libgtop-2.0/glibtop/swap.h
/usr/include/libgtop-2.0/glibtop/sysdeps.h
/usr/include/libgtop-2.0/glibtop/sysinfo.h
/usr/include/libgtop-2.0/glibtop/union.h
/usr/include/libgtop-2.0/glibtop/uptime.h
/usr/include/libgtop-2.0/glibtop/version.h
/usr/include/libnm-glib/libnm_glib.h
/usr/include/libnm-glib/nm-access-point.h
/usr/include/libnm-glib/nm-active-connection.h
/usr/include/libnm-glib/nm-client.h
/usr/include/libnm-glib/nm-device-adsl.h
/usr/include/libnm-glib/nm-device-bond.h
/usr/include/libnm-glib/nm-device-bt.h
/usr/include/libnm-glib/nm-device-ethernet.h
/usr/include/libnm-glib/nm-device-infiniband.h
/usr/include/libnm-glib/nm-device-modem.h
/usr/include/libnm-glib/nm-device-olpc-mesh.h
/usr/include/libnm-glib/nm-device-vlan.h
/usr/include/libnm-glib/nm-device-wifi.h
/usr/include/libnm-glib/nm-device-wimax.h
/usr/include/libnm-glib/nm-device.h
/usr/include/libnm-glib/nm-dhcp4-config.h
/usr/include/libnm-glib/nm-dhcp6-config.h
/usr/include/libnm-glib/nm-glib-enum-types.h
/usr/include/libnm-glib/nm-ip4-config.h
/usr/include/libnm-glib/nm-ip6-config.h
/usr/include/libnm-glib/nm-object.h
/usr/include/libnm-glib/nm-remote-connection.h
/usr/include/libnm-glib/nm-remote-settings.h
/usr/include/libnm-glib/nm-secret-agent.h
/usr/include/libnm-glib/nm-types.h
/usr/include/libnm-glib/nm-vpn-connection.h
/usr/include/libnm-glib/nm-vpn-enum-types.h
/usr/include/libnm-glib/nm-vpn-plugin-ui-interface.h
/usr/include/libnm-glib/nm-vpn-plugin-utils.h
/usr/include/libnm-glib/nm-vpn-plugin.h
/usr/include/libnm-glib/nm-wimax-nsp.h
/usr/include/libpng15/pnglibconf.h
/usr/include/libupower-glib/up-client.h
/usr/include/libupower-glib/up-device.h
/usr/include/libupower-glib/up-history-item.h
/usr/include/libupower-glib/up-qos-item.h
/usr/include/libupower-glib/up-stats-item.h
/usr/include/libupower-glib/up-types.h
/usr/include/libupower-glib/up-version.h
/usr/include/libupower-glib/up-wakeup-item.h
/usr/include/libupower-glib/up-wakeups.h
/usr/include/libupower-glib/upower.h
/usr/include/marlincore/eel-glib-extensions.h
/usr/include/php/ext/iconv/php_have_glibc_iconv.h
/usr/include/pulse/glib-mainloop.h
/usr/include/pygtk-2.0/pyglib.h
/usr/include/taglib/aifffile.h
/usr/include/taglib/aiffproperties.h
/usr/include/taglib/apefile.h
/usr/include/taglib/apefooter.h
/usr/include/taglib/apeitem.h
/usr/include/taglib/apeproperties.h
/usr/include/taglib/apetag.h
/usr/include/taglib/asfattribute.h
/usr/include/taglib/asffile.h
/usr/include/taglib/asfpicture.h
/usr/include/taglib/asfproperties.h
/usr/include/taglib/asftag.h
/usr/include/taglib/attachedpictureframe.h
/usr/include/taglib/audioproperties.h
/usr/include/taglib/commentsframe.h
/usr/include/taglib/fileref.h
/usr/include/taglib/flacfile.h
/usr/include/taglib/flacmetadatablock.h
/usr/include/taglib/flacpicture.h
/usr/include/taglib/flacproperties.h
/usr/include/taglib/generalencapsulatedobjectframe.h
/usr/include/taglib/id3v1genres.h
/usr/include/taglib/id3v1tag.h
/usr/include/taglib/id3v2extendedheader.h
/usr/include/taglib/id3v2footer.h
/usr/include/taglib/id3v2frame.h
/usr/include/taglib/id3v2framefactory.h
/usr/include/taglib/id3v2header.h
/usr/include/taglib/id3v2synchdata.h
/usr/include/taglib/id3v2tag.h
/usr/include/taglib/itfile.h
/usr/include/taglib/itproperties.h
/usr/include/taglib/modfile.h
/usr/include/taglib/modfilebase.h
/usr/include/taglib/modproperties.h
/usr/include/taglib/modtag.h
/usr/include/taglib/mp4atom.h
/usr/include/taglib/mp4coverart.h
/usr/include/taglib/mp4file.h
/usr/include/taglib/mp4item.h
/usr/include/taglib/mp4properties.h
/usr/include/taglib/mp4tag.h
/usr/include/taglib/mpcfile.h
/usr/include/taglib/mpcproperties.h
/usr/include/taglib/mpegfile.h
/usr/include/taglib/mpegheader.h
/usr/include/taglib/mpegproperties.h
/usr/include/taglib/oggfile.h
/usr/include/taglib/oggflacfile.h
/usr/include/taglib/oggpage.h
/usr/include/taglib/oggpageheader.h
/usr/include/taglib/ownershipframe.h
/usr/include/taglib/popularimeterframe.h
/usr/include/taglib/privateframe.h
/usr/include/taglib/relativevolumeframe.h
/usr/include/taglib/rifffile.h
/usr/include/taglib/s3mfile.h
/usr/include/taglib/s3mproperties.h
/usr/include/taglib/speexfile.h
/usr/include/taglib/speexproperties.h
/usr/include/taglib/tag.h
/usr/include/taglib/tag_c.h
/usr/include/taglib/taglib.h
/usr/include/taglib/taglib_config.h
/usr/include/taglib/taglib_export.h
/usr/include/taglib/tbytevector.h
/usr/include/taglib/tbytevectorlist.h
/usr/include/taglib/tbytevectorstream.h
/usr/include/taglib/textidentificationframe.h
/usr/include/taglib/tfile.h
/usr/include/taglib/tfilestream.h
/usr/include/taglib/tiostream.h
/usr/include/taglib/tlist.h
/usr/include/taglib/tlist.tcc
/usr/include/taglib/tmap.h
/usr/include/taglib/tmap.tcc
/usr/include/taglib/tpropertymap.h
/usr/include/taglib/trueaudiofile.h
/usr/include/taglib/trueaudioproperties.h
/usr/include/taglib/tstring.h
/usr/include/taglib/tstringlist.h
/usr/include/taglib/uniquefileidentifierframe.h
/usr/include/taglib/unknownframe.h
/usr/include/taglib/unsynchronizedlyricsframe.h
/usr/include/taglib/urllinkframe.h
/usr/include/taglib/vorbisfile.h
/usr/include/taglib/vorbisproperties.h
/usr/include/taglib/wavfile.h
/usr/include/taglib/wavpackfile.h
/usr/include/taglib/wavpackproperties.h
/usr/include/taglib/wavproperties.h
/usr/include/taglib/xingheader.h
/usr/include/taglib/xiphcomment.h
/usr/include/taglib/xmfile.h
/usr/include/taglib/xmproperties.h
/usr/include/telepathy-1.0/telepathy-glib
/usr/include/telepathy-1.0/telepathy-glib/_gen
/usr/include/telepathy-1.0/telepathy-glib/account-channel-request.h
/usr/include/telepathy-1.0/telepathy-glib/account-manager.h
/usr/include/telepathy-1.0/telepathy-glib/account-request.h
/usr/include/telepathy-1.0/telepathy-glib/account.h
/usr/include/telepathy-1.0/telepathy-glib/add-dispatch-operation-context.h
/usr/include/telepathy-1.0/telepathy-glib/automatic-client-factory.h
/usr/include/telepathy-1.0/telepathy-glib/automatic-proxy-factory.h
/usr/include/telepathy-1.0/telepathy-glib/base-call-channel.h
/usr/include/telepathy-1.0/telepathy-glib/base-call-content.h
/usr/include/telepathy-1.0/telepathy-glib/base-call-stream.h
/usr/include/telepathy-1.0/telepathy-glib/base-channel.h
/usr/include/telepathy-1.0/telepathy-glib/base-client.h
/usr/include/telepathy-1.0/telepathy-glib/base-connection-manager.h
/usr/include/telepathy-1.0/telepathy-glib/base-connection.h
/usr/include/telepathy-1.0/telepathy-glib/base-contact-list.h
/usr/include/telepathy-1.0/telepathy-glib/base-media-call-channel.h
/usr/include/telepathy-1.0/telepathy-glib/base-media-call-content.h
/usr/include/telepathy-1.0/telepathy-glib/base-media-call-stream.h
/usr/include/telepathy-1.0/telepathy-glib/base-password-channel.h
/usr/include/telepathy-1.0/telepathy-glib/base-protocol.h
/usr/include/telepathy-1.0/telepathy-glib/base-room-config.h
/usr/include/telepathy-1.0/telepathy-glib/basic-proxy-factory.h
/usr/include/telepathy-1.0/telepathy-glib/call-channel.h
/usr/include/telepathy-1.0/telepathy-glib/call-content-media-description.h
/usr/include/telepathy-1.0/telepathy-glib/call-content.h
/usr/include/telepathy-1.0/telepathy-glib/call-misc.h
/usr/include/telepathy-1.0/telepathy-glib/call-stream-endpoint.h
/usr/include/telepathy-1.0/telepathy-glib/call-stream.h
/usr/include/telepathy-1.0/telepathy-glib/capabilities.h
/usr/include/telepathy-1.0/telepathy-glib/channel-dispatch-operation.h
/usr/include/telepathy-1.0/telepathy-glib/channel-dispatcher.h
/usr/include/telepathy-1.0/telepathy-glib/channel-factory-iface.h
/usr/include/telepathy-1.0/telepathy-glib/channel-iface.h
/usr/include/telepathy-1.0/telepathy-glib/channel-manager.h
/usr/include/telepathy-1.0/telepathy-glib/channel-request.h
/usr/include/telepathy-1.0/telepathy-glib/channel.h
/usr/include/telepathy-1.0/telepathy-glib/client-channel-factory.h
/usr/include/telepathy-1.0/telepathy-glib/client-message.h
/usr/include/telepathy-1.0/telepathy-glib/client.h
/usr/include/telepathy-1.0/telepathy-glib/cm-message.h
/usr/include/telepathy-1.0/telepathy-glib/connection-contact-list.h
/usr/include/telepathy-1.0/telepathy-glib/connection-manager.h
/usr/include/telepathy-1.0/telepathy-glib/connection.h
/usr/include/telepathy-1.0/telepathy-glib/contact-operations.h
/usr/include/telepathy-1.0/telepathy-glib/contact-search-result.h
/usr/include/telepathy-1.0/telepathy-glib/contact-search.h
/usr/include/telepathy-1.0/telepathy-glib/contact.h
/usr/include/telepathy-1.0/telepathy-glib/contacts-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/dbus-daemon.h
/usr/include/telepathy-1.0/telepathy-glib/dbus-properties-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/dbus-tube-channel.h
/usr/include/telepathy-1.0/telepathy-glib/dbus.h
/usr/include/telepathy-1.0/telepathy-glib/debug-ansi.h
/usr/include/telepathy-1.0/telepathy-glib/debug-client.h
/usr/include/telepathy-1.0/telepathy-glib/debug-message.h
/usr/include/telepathy-1.0/telepathy-glib/debug-sender.h
/usr/include/telepathy-1.0/telepathy-glib/debug.h
/usr/include/telepathy-1.0/telepathy-glib/defs.h
/usr/include/telepathy-1.0/telepathy-glib/dtmf.h
/usr/include/telepathy-1.0/telepathy-glib/enums.h
/usr/include/telepathy-1.0/telepathy-glib/errors.h
/usr/include/telepathy-1.0/telepathy-glib/exportable-channel.h
/usr/include/telepathy-1.0/telepathy-glib/file-transfer-channel.h
/usr/include/telepathy-1.0/telepathy-glib/gnio-util.h
/usr/include/telepathy-1.0/telepathy-glib/group-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/gtypes.h
/usr/include/telepathy-1.0/telepathy-glib/handle-channels-context.h
/usr/include/telepathy-1.0/telepathy-glib/handle-repo-dynamic.h
/usr/include/telepathy-1.0/telepathy-glib/handle-repo-static.h
/usr/include/telepathy-1.0/telepathy-glib/handle-repo.h
/usr/include/telepathy-1.0/telepathy-glib/handle.h
/usr/include/telepathy-1.0/telepathy-glib/heap.h
/usr/include/telepathy-1.0/telepathy-glib/interfaces.h
/usr/include/telepathy-1.0/telepathy-glib/intset.h
/usr/include/telepathy-1.0/telepathy-glib/media-interfaces.h
/usr/include/telepathy-1.0/telepathy-glib/message-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/message.h
/usr/include/telepathy-1.0/telepathy-glib/observe-channels-context.h
/usr/include/telepathy-1.0/telepathy-glib/presence-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/properties-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/protocol.h
/usr/include/telepathy-1.0/telepathy-glib/proxy-subclass.h
/usr/include/telepathy-1.0/telepathy-glib/proxy.h
/usr/include/telepathy-1.0/telepathy-glib/room-info.h
/usr/include/telepathy-1.0/telepathy-glib/room-list.h
/usr/include/telepathy-1.0/telepathy-glib/run.h
/usr/include/telepathy-1.0/telepathy-glib/signalled-message.h
/usr/include/telepathy-1.0/telepathy-glib/simple-approver.h
/usr/include/telepathy-1.0/telepathy-glib/simple-client-factory.h
/usr/include/telepathy-1.0/telepathy-glib/simple-handler.h
/usr/include/telepathy-1.0/telepathy-glib/simple-observer.h
/usr/include/telepathy-1.0/telepathy-glib/simple-password-manager.h
/usr/include/telepathy-1.0/telepathy-glib/stream-tube-channel.h
/usr/include/telepathy-1.0/telepathy-glib/stream-tube-connection.h
/usr/include/telepathy-1.0/telepathy-glib/svc-account-manager.h
/usr/include/telepathy-1.0/telepathy-glib/svc-account.h
/usr/include/telepathy-1.0/telepathy-glib/svc-call.h
/usr/include/telepathy-1.0/telepathy-glib/svc-channel-dispatch-operation.h
/usr/include/telepathy-1.0/telepathy-glib/svc-channel-dispatcher.h
/usr/include/telepathy-1.0/telepathy-glib/svc-channel-request.h
/usr/include/telepathy-1.0/telepathy-glib/svc-channel.h
/usr/include/telepathy-1.0/telepathy-glib/svc-client.h
/usr/include/telepathy-1.0/telepathy-glib/svc-connection-manager.h
/usr/include/telepathy-1.0/telepathy-glib/svc-connection.h
/usr/include/telepathy-1.0/telepathy-glib/svc-debug.h
/usr/include/telepathy-1.0/telepathy-glib/svc-generic.h
/usr/include/telepathy-1.0/telepathy-glib/svc-media-interfaces.h
/usr/include/telepathy-1.0/telepathy-glib/svc-properties-interface.h
/usr/include/telepathy-1.0/telepathy-glib/svc-protocol.h
/usr/include/telepathy-1.0/telepathy-glib/svc-tls.h
/usr/include/telepathy-1.0/telepathy-glib/telepathy-glib-dbus.h
/usr/include/telepathy-1.0/telepathy-glib/telepathy-glib.h
/usr/include/telepathy-1.0/telepathy-glib/text-channel.h
/usr/include/telepathy-1.0/telepathy-glib/text-mixin.h
/usr/include/telepathy-1.0/telepathy-glib/tls-certificate-rejection.h
/usr/include/telepathy-1.0/telepathy-glib/tls-certificate.h
/usr/include/telepathy-1.0/telepathy-glib/util.h
/usr/include/telepathy-1.0/telepathy-glib/variant-util.h
/usr/include/telepathy-1.0/telepathy-glib/verify.h
/usr/include/telepathy-1.0/telepathy-glib/version.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/error-str.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/genums.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/gtypes.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/telepathy-enums.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/telepathy-interfaces.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-account-manager.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-account.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-call-content-media-description.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-call-content.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-call-stream-endpoint.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-call-stream.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-channel-dispatch-operation.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-channel-dispatcher.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-channel-request.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-channel.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-client.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-connection-manager.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-connection.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-dbus-daemon.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-debug.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-generic.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-media-session-handler.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-media-stream-handler.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-protocol.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-cli-tls-cert.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-account-manager.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-account.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-call-content-media-description.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-call-content.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-call-stream-endpoint.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-call-stream.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-channel-dispatch-operation.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-channel-dispatcher.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-channel-request.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-channel.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-client.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-connection-manager.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-connection.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-debug.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-generic.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-media-session-handler.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-media-stream-handler.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-protocol.h
/usr/include/telepathy-1.0/telepathy-glib/_gen/tp-svc-tls-cert.h
/usr/include/tumbler-1/tumbler/tumbler-glib-extensions.h
/usr/lib/glib
/usr/lib/glib-2.0
/usr/lib/glib-networking
/usr/lib/glibmm-2.4
/usr/lib/libavahi-glib.so
/usr/lib/libavahi-glib.so.1
/usr/lib/libavahi-glib.so.1.0.2
/usr/lib/libdbus-glib-1.so
/usr/lib/libdbus-glib-1.so.2
/usr/lib/libdbus-glib-1.so.2.2.2
/usr/lib/libdbusmenu-glib.so
/usr/lib/libdbusmenu-glib.so.4
/usr/lib/libdbusmenu-glib.so.4.0.12
/usr/lib/libglib-1.2.so.0
/usr/lib/libglib-1.2.so.0.0.10
/usr/lib/libglib-2.0.so
/usr/lib/libglib-2.0.so.0
/usr/lib/libglib-2.0.so.0.3400.1
/usr/lib/libglib.a
/usr/lib/libglib.so
/usr/lib/libglibmm-2.4.so
/usr/lib/libglibmm-2.4.so.1
/usr/lib/libglibmm-2.4.so.1.3.0
/usr/lib/libglibmm_generate_extra_defs-2.4.so
/usr/lib/libglibmm_generate_extra_defs-2.4.so.1
/usr/lib/libglibmm_generate_extra_defs-2.4.so.1.3.0
/usr/lib/libglibsharpglue-2.so
/usr/lib/libjson-glib-1.0.so
/usr/lib/libjson-glib-1.0.so.0
/usr/lib/libjson-glib-1.0.so.0.1502.0
/usr/lib/libnm-glib-vpn.so
/usr/lib/libnm-glib-vpn.so.1
/usr/lib/libnm-glib-vpn.so.1.1.0
/usr/lib/libnm-glib.so
/usr/lib/libnm-glib.so.4
/usr/lib/libnm-glib.so.4.4.0
/usr/lib/libntrack-glib.a
/usr/lib/libntrack-glib.so
/usr/lib/libntrack-glib.so.2
/usr/lib/libntrack-glib.so.2.0.1
/usr/lib/libpoppler-glib.so
/usr/lib/libpoppler-glib.so.8
/usr/lib/libpoppler-glib.so.8.4.0
/usr/lib/libpulse-mainloop-glib.so
/usr/lib/libpulse-mainloop-glib.so.0
/usr/lib/libpulse-mainloop-glib.so.0.0.4
/usr/lib/libpyglib-2.0-python2.so
/usr/lib/libpyglib-2.0-python2.so.0
/usr/lib/libpyglib-2.0-python2.so.0.0.0
/usr/lib/libpyglib-gi-2.0-python.so
/usr/lib/libpyglib-gi-2.0-python.so.0
/usr/lib/libpyglib-gi-2.0-python.so.0.0.0
/usr/lib/libpyglib-gi-2.0-python2.so
/usr/lib/libpyglib-gi-2.0-python2.so.0
/usr/lib/libpyglib-gi-2.0-python2.so.0.0.0
/usr/lib/libtelepathy-glib.so
/usr/lib/libtelepathy-glib.so.0
/usr/lib/libtelepathy-glib.so.0.78.0
/usr/lib/libupower-glib.so
/usr/lib/libupower-glib.so.1
/usr/lib/libupower-glib.so.1.0.2
/usr/lib/libvirt-glib-1.0.a
/usr/lib/libvirt-glib-1.0.so
/usr/lib/libvirt-glib-1.0.so.0
/usr/lib/libvirt-glib-1.0.so.0.1.3
/usr/lib/fpc/2.6.0/units/x86_64-linux/fpgtk/fpglib.o
/usr/lib/fpc/2.6.0/units/x86_64-linux/fpgtk/fpglib.ppu
/usr/lib/fpc/2.6.0/units/x86_64-linux/fpgtk/libpfpglib.a
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk1/glib.o
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk1/glib.ppu
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk1/libpglib.a
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk2/glib2.o
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk2/glib2.ppu
/usr/lib/fpc/2.6.0/units/x86_64-linux/gtk2/libpglib2.a
/usr/lib/fpc/2.6.0/units/x86_64-linux/pasjpeg/jpeglib.o
/usr/lib/fpc/2.6.0/units/x86_64-linux/pasjpeg/jpeglib.ppu
/usr/lib/fpc/2.6.0/units/x86_64-linux/pasjpeg/libpjpeglib.a
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.2/plugin/include/config/glibc-stdint.h
/usr/lib/glib/include
/usr/lib/glib/include/glibconfig.h
/usr/lib/glib-2.0/include
/usr/lib/glib-2.0/include/glibconfig.h
/usr/lib/glib-networking/glib-pacrunner
/usr/lib/glibmm-2.4/include
/usr/lib/glibmm-2.4/proc
/usr/lib/glibmm-2.4/include/glibmmconfig.h
/usr/lib/glibmm-2.4/proc/generate_wrap_init.pl
/usr/lib/glibmm-2.4/proc/gmmproc
/usr/lib/glibmm-2.4/proc/m4
/usr/lib/glibmm-2.4/proc/pm
/usr/lib/glibmm-2.4/proc/m4/base.m4
/usr/lib/glibmm-2.4/proc/m4/class_boxedtype.m4
/usr/lib/glibmm-2.4/proc/m4/class_boxedtype_static.m4
/usr/lib/glibmm-2.4/proc/m4/class_generic.m4
/usr/lib/glibmm-2.4/proc/m4/class_gobject.m4
/usr/lib/glibmm-2.4/proc/m4/class_interface.m4
/usr/lib/glibmm-2.4/proc/m4/class_opaque_copyable.m4
/usr/lib/glibmm-2.4/proc/m4/class_opaque_refcounted.m4
/usr/lib/glibmm-2.4/proc/m4/class_shared.m4
/usr/lib/glibmm-2.4/proc/m4/compare.m4
/usr/lib/glibmm-2.4/proc/m4/convert.m4
/usr/lib/glibmm-2.4/proc/m4/convert_base.m4
/usr/lib/glibmm-2.4/proc/m4/convert_gio.m4
/usr/lib/glibmm-2.4/proc/m4/convert_glib.m4
/usr/lib/glibmm-2.4/proc/m4/convert_glibmm.m4
/usr/lib/glibmm-2.4/proc/m4/ctor.m4
/usr/lib/glibmm-2.4/proc/m4/doc.m4
/usr/lib/glibmm-2.4/proc/m4/enum.m4
/usr/lib/glibmm-2.4/proc/m4/gerror.m4
/usr/lib/glibmm-2.4/proc/m4/initialize.m4
/usr/lib/glibmm-2.4/proc/m4/initialize_base.m4
/usr/lib/glibmm-2.4/proc/m4/initialize_gio.m4
/usr/lib/glibmm-2.4/proc/m4/initialize_glib.m4
/usr/lib/glibmm-2.4/proc/m4/initialize_glibmm.m4
/usr/lib/glibmm-2.4/proc/m4/list.m4
/usr/lib/glibmm-2.4/proc/m4/member.m4
/usr/lib/glibmm-2.4/proc/m4/method.m4
/usr/lib/glibmm-2.4/proc/m4/property.m4
/usr/lib/glibmm-2.4/proc/m4/signal.m4
/usr/lib/glibmm-2.4/proc/m4/vfunc.m4
/usr/lib/glibmm-2.4/proc/pm/DocsParser.pm
/usr/lib/glibmm-2.4/proc/pm/Enum.pm
/usr/lib/glibmm-2.4/proc/pm/Function.pm
/usr/lib/glibmm-2.4/proc/pm/FunctionBase.pm
/usr/lib/glibmm-2.4/proc/pm/GtkDefs.pm
/usr/lib/glibmm-2.4/proc/pm/Object.pm
/usr/lib/glibmm-2.4/proc/pm/Output.pm
/usr/lib/glibmm-2.4/proc/pm/Property.pm
/usr/lib/glibmm-2.4/proc/pm/Util.pm
/usr/lib/glibmm-2.4/proc/pm/WrapParser.pm
/usr/lib/gstreamer-0.10/libgsttaglib.so
/usr/lib/gstreamer-1.0/libgsttaglib.so
/usr/lib/mono/dbus-sharp-glib-1.0
/usr/lib/mono/dbus-sharp-glib-1.0/dbus-sharp-glib.dll
/usr/lib/mono/gac/dbus-sharp-glib
/usr/lib/mono/gac/glib-sharp
/usr/lib/mono/gac/policy.2.10.glib-sharp
/usr/lib/mono/gac/policy.2.4.glib-sharp
/usr/lib/mono/gac/policy.2.6.glib-sharp
/usr/lib/mono/gac/policy.2.8.glib-sharp
/usr/lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5
/usr/lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5/dbus-sharp-glib.dll
/usr/lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5/dbus-sharp-glib.dll.config
/usr/lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5/dbus-sharp-glib.dll.mdb
/usr/lib/mono/gac/glib-sharp/2.12.0.0__35e10195dab3c99f
/usr/lib/mono/gac/glib-sharp/2.12.0.0__35e10195dab3c99f/glib-sharp.dll
/usr/lib/mono/gac/glib-sharp/2.12.0.0__35e10195dab3c99f/glib-sharp.dll.config
/usr/lib/mono/gac/policy.2.10.glib-sharp/0.0.0.0__35e10195dab3c99f
/usr/lib/mono/gac/policy.2.10.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.10.config
/usr/lib/mono/gac/policy.2.10.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.10.glib-sharp.dll
/usr/lib/mono/gac/policy.2.4.glib-sharp/0.0.0.0__35e10195dab3c99f
/usr/lib/mono/gac/policy.2.4.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.4.config
/usr/lib/mono/gac/policy.2.4.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.4.glib-sharp.dll
/usr/lib/mono/gac/policy.2.6.glib-sharp/0.0.0.0__35e10195dab3c99f
/usr/lib/mono/gac/policy.2.6.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.6.config
/usr/lib/mono/gac/policy.2.6.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.6.glib-sharp.dll
/usr/lib/mono/gac/policy.2.8.glib-sharp/0.0.0.0__35e10195dab3c99f
/usr/lib/mono/gac/policy.2.8.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.8.config
/usr/lib/mono/gac/policy.2.8.glib-sharp/0.0.0.0__35e10195dab3c99f/policy.2.8.glib-sharp.dll
/usr/lib/mono/gtk-sharp-2.0/glib-sharp.dll
/usr/lib/mono/gtk-sharp-2.0/policy.2.10.glib-sharp.dll
/usr/lib/mono/gtk-sharp-2.0/policy.2.4.glib-sharp.dll
/usr/lib/mono/gtk-sharp-2.0/policy.2.6.glib-sharp.dll
/usr/lib/mono/gtk-sharp-2.0/policy.2.8.glib-sharp.dll
/usr/lib/pkgconfig/avahi-glib.pc
/usr/lib/pkgconfig/dbus-glib-1.pc
/usr/lib/pkgconfig/dbus-sharp-glib-1.0.pc
/usr/lib/pkgconfig/dbusmenu-glib-0.4.pc
/usr/lib/pkgconfig/glib-2.0.pc
/usr/lib/pkgconfig/glib-sharp-2.0.pc
/usr/lib/pkgconfig/glib.pc
/usr/lib/pkgconfig/glibmm-2.4.pc
/usr/lib/pkgconfig/json-glib-1.0.pc
/usr/lib/pkgconfig/libnm-glib-vpn.pc
/usr/lib/pkgconfig/libnm-glib.pc
/usr/lib/pkgconfig/libntrack-glib.pc
/usr/lib/pkgconfig/libpulse-mainloop-glib.pc
/usr/lib/pkgconfig/libvirt-glib-1.0.pc
/usr/lib/pkgconfig/poppler-glib.pc
/usr/lib/pkgconfig/taglib.pc
/usr/lib/pkgconfig/taglib_c.pc
/usr/lib/pkgconfig/telepathy-glib.pc
/usr/lib/pkgconfig/upower-glib.pc
/usr/lib/python2.7/site-packages/_dbus_glib_bindings.so
/usr/lib/python2.7/site-packages/glib
/usr/lib/python2.7/site-packages/libvirtglib.py
/usr/lib/python2.7/site-packages/libvirtglibmod.a
/usr/lib/python2.7/site-packages/libvirtglibmod.so
/usr/lib/python2.7/site-packages/dbus/glib.py
/usr/lib/python2.7/site-packages/dbus/glib.pyc
/usr/lib/python2.7/site-packages/dbus/glib.pyo
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.py
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.pyc
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.pyo
/usr/lib/python2.7/site-packages/gi/_glib
/usr/lib/python2.7/site-packages/gi/_glib/__init__.py
/usr/lib/python2.7/site-packages/gi/_glib/__init__.pyc
/usr/lib/python2.7/site-packages/gi/_glib/__init__.pyo
/usr/lib/python2.7/site-packages/gi/_glib/_glib.so
/usr/lib/python2.7/site-packages/gi/_glib/option.py
/usr/lib/python2.7/site-packages/gi/_glib/option.pyc
/usr/lib/python2.7/site-packages/gi/_glib/option.pyo
/usr/lib/python2.7/site-packages/glib/__init__.py
/usr/lib/python2.7/site-packages/glib/__init__.pyc
/usr/lib/python2.7/site-packages/glib/__init__.pyo
/usr/lib/python2.7/site-packages/glib/_glib.so
/usr/lib/python2.7/site-packages/glib/option.py
/usr/lib/python2.7/site-packages/glib/option.pyc
/usr/lib/python2.7/site-packages/glib/option.pyo
/usr/lib/python2.7/site-packages/twisted/internet/_glibbase.py
/usr/lib/python2.7/site-packages/twisted/internet/_glibbase.pyc
/usr/lib/python2.7/site-packages/twisted/internet/_glibbase.pyo
/usr/lib/python2.7/site-packages/twisted/internet/glib2reactor.py
/usr/lib/python2.7/site-packages/twisted/internet/glib2reactor.pyc
/usr/lib/python2.7/site-packages/twisted/internet/glib2reactor.pyo
/usr/lib/python2.7/site-packages/twisted/internet/test/test_glibbase.py
/usr/lib/python2.7/site-packages/twisted/internet/test/test_glibbase.pyc
/usr/lib/python2.7/site-packages/twisted/internet/test/test_glibbase.pyo
/usr/lib/python3.3/site-packages/_dbus_glib_bindings.so
/usr/lib/python3.3/site-packages/dbus/glib.py
/usr/lib/python3.3/site-packages/dbus/glib.pyc
/usr/lib/python3.3/site-packages/dbus/glib.pyo
/usr/lib/python3.3/site-packages/dbus/mainloop/glib.py
/usr/lib/python3.3/site-packages/dbus/mainloop/glib.pyc
/usr/lib/python3.3/site-packages/dbus/mainloop/glib.pyo
/usr/lib/python3.3/site-packages/gi/_glib
/usr/lib/python3.3/site-packages/gi/_glib/__init__.py
/usr/lib/python3.3/site-packages/gi/_glib/__init__.pyc
/usr/lib/python3.3/site-packages/gi/_glib/__init__.pyo
/usr/lib/python3.3/site-packages/gi/_glib/_glib.so
/usr/lib/python3.3/site-packages/gi/_glib/option.py
/usr/lib/python3.3/site-packages/gi/_glib/option.pyc
/usr/lib/python3.3/site-packages/gi/_glib/option.pyo
/usr/lib/tracker-0.14/writeback-modules/libwriteback-taglib.so
/usr/lib/vlc/plugins/meta_engine/libtaglib_plugin.so
/usr/lib32/glib-2.0
/usr/lib32/libglib-2.0.a
/usr/lib32/libglib-2.0.so
/usr/lib32/libglib-2.0.so.0
/usr/lib32/libglib-2.0.so.0.3400.1
/usr/lib32/glib-2.0/include
/usr/lib32/glib-2.0/include/glibconfig.h
/usr/lib32/pkgconfig/glib-2.0.pc
/usr/local/bin/glib-compile-resources
/usr/local/bin/glib-compile-schemas
/usr/local/bin/glib-genmarshal
/usr/local/bin/glib-gettextize
/usr/local/bin/glib-mkenums
/usr/local/include/glib-2.0
/usr/local/include/glib-2.0/gio
/usr/local/include/glib-2.0/glib
/usr/local/include/glib-2.0/glib-object.h
/usr/local/include/glib-2.0/glib-unix.h
/usr/local/include/glib-2.0/glib.h
/usr/local/include/glib-2.0/gmodule.h
/usr/local/include/glib-2.0/gobject
/usr/local/include/glib-2.0/gio/gaction.h
/usr/local/include/glib-2.0/gio/gactiongroup.h
/usr/local/include/glib-2.0/gio/gactiongroupexporter.h
/usr/local/include/glib-2.0/gio/gactionmap.h
/usr/local/include/glib-2.0/gio/gappinfo.h
/usr/local/include/glib-2.0/gio/gapplication.h
/usr/local/include/glib-2.0/gio/gapplicationcommandline.h
/usr/local/include/glib-2.0/gio/gasyncinitable.h
/usr/local/include/glib-2.0/gio/gasyncresult.h
/usr/local/include/glib-2.0/gio/gbufferedinputstream.h
/usr/local/include/glib-2.0/gio/gbufferedoutputstream.h
/usr/local/include/glib-2.0/gio/gcancellable.h
/usr/local/include/glib-2.0/gio/gcharsetconverter.h
/usr/local/include/glib-2.0/gio/gcontenttype.h
/usr/local/include/glib-2.0/gio/gconverter.h
/usr/local/include/glib-2.0/gio/gconverterinputstream.h
/usr/local/include/glib-2.0/gio/gconverteroutputstream.h
/usr/local/include/glib-2.0/gio/gcredentials.h
/usr/local/include/glib-2.0/gio/gdatainputstream.h
/usr/local/include/glib-2.0/gio/gdataoutputstream.h
/usr/local/include/glib-2.0/gio/gdbusactiongroup.h
/usr/local/include/glib-2.0/gio/gdbusaddress.h
/usr/local/include/glib-2.0/gio/gdbusauthobserver.h
/usr/local/include/glib-2.0/gio/gdbusconnection.h
/usr/local/include/glib-2.0/gio/gdbuserror.h
/usr/local/include/glib-2.0/gio/gdbusinterface.h
/usr/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h
/usr/local/include/glib-2.0/gio/gdbusintrospection.h
/usr/local/include/glib-2.0/gio/gdbusmenumodel.h
/usr/local/include/glib-2.0/gio/gdbusmessage.h
/usr/local/include/glib-2.0/gio/gdbusmethodinvocation.h
/usr/local/include/glib-2.0/gio/gdbusnameowning.h
/usr/local/include/glib-2.0/gio/gdbusnamewatching.h
/usr/local/include/glib-2.0/gio/gdbusobject.h
/usr/local/include/glib-2.0/gio/gdbusobjectmanager.h
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h
/usr/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h
/usr/local/include/glib-2.0/gio/gdbusobjectproxy.h
/usr/local/include/glib-2.0/gio/gdbusobjectskeleton.h
/usr/local/include/glib-2.0/gio/gdbusproxy.h
/usr/local/include/glib-2.0/gio/gdbusserver.h
/usr/local/include/glib-2.0/gio/gdbusutils.h
/usr/local/include/glib-2.0/gio/gdrive.h
/usr/local/include/glib-2.0/gio/gemblem.h
/usr/local/include/glib-2.0/gio/gemblemedicon.h
/usr/local/include/glib-2.0/gio/gfile.h
/usr/local/include/glib-2.0/gio/gfileattribute.h
/usr/local/include/glib-2.0/gio/gfileenumerator.h
/usr/local/include/glib-2.0/gio/gfileicon.h
/usr/local/include/glib-2.0/gio/gfileinfo.h
/usr/local/include/glib-2.0/gio/gfileinputstream.h
/usr/local/include/glib-2.0/gio/gfileiostream.h
/usr/local/include/glib-2.0/gio/gfilemonitor.h
/usr/local/include/glib-2.0/gio/gfilenamecompleter.h
/usr/local/include/glib-2.0/gio/gfileoutputstream.h
/usr/local/include/glib-2.0/gio/gfilterinputstream.h
/usr/local/include/glib-2.0/gio/gfilteroutputstream.h
/usr/local/include/glib-2.0/gio/gicon.h
/usr/local/include/glib-2.0/gio/ginetaddress.h
/usr/local/include/glib-2.0/gio/ginetaddressmask.h
/usr/local/include/glib-2.0/gio/ginetsocketaddress.h
/usr/local/include/glib-2.0/gio/ginitable.h
/usr/local/include/glib-2.0/gio/ginputstream.h
/usr/local/include/glib-2.0/gio/gio.h
/usr/local/include/glib-2.0/gio/gioenums.h
/usr/local/include/glib-2.0/gio/gioenumtypes.h
/usr/local/include/glib-2.0/gio/gioerror.h
/usr/local/include/glib-2.0/gio/giomodule.h
/usr/local/include/glib-2.0/gio/gioscheduler.h
/usr/local/include/glib-2.0/gio/giostream.h
/usr/local/include/glib-2.0/gio/giotypes.h
/usr/local/include/glib-2.0/gio/gloadableicon.h
/usr/local/include/glib-2.0/gio/gmemoryinputstream.h
/usr/local/include/glib-2.0/gio/gmemoryoutputstream.h
/usr/local/include/glib-2.0/gio/gmenu.h
/usr/local/include/glib-2.0/gio/gmenuexporter.h
/usr/local/include/glib-2.0/gio/gmenumodel.h
/usr/local/include/glib-2.0/gio/gmount.h
/usr/local/include/glib-2.0/gio/gmountoperation.h
/usr/local/include/glib-2.0/gio/gnativevolumemonitor.h
/usr/local/include/glib-2.0/gio/gnetworkaddress.h
/usr/local/include/glib-2.0/gio/gnetworkmonitor.h
/usr/local/include/glib-2.0/gio/gnetworkservice.h
/usr/local/include/glib-2.0/gio/goutputstream.h
/usr/local/include/glib-2.0/gio/gpermission.h
/usr/local/include/glib-2.0/gio/gpollableinputstream.h
/usr/local/include/glib-2.0/gio/gpollableoutputstream.h
/usr/local/include/glib-2.0/gio/gproxy.h
/usr/local/include/glib-2.0/gio/gproxyaddress.h
/usr/local/include/glib-2.0/gio/gproxyaddressenumerator.h
/usr/local/include/glib-2.0/gio/gproxyresolver.h
/usr/local/include/glib-2.0/gio/gremoteactiongroup.h
/usr/local/include/glib-2.0/gio/gresolver.h
/usr/local/include/glib-2.0/gio/gresource.h
/usr/local/include/glib-2.0/gio/gseekable.h
/usr/local/include/glib-2.0/gio/gsettings.h
/usr/local/include/glib-2.0/gio/gsettingsbackend.h
/usr/local/include/glib-2.0/gio/gsettingsschema.h
/usr/local/include/glib-2.0/gio/gsimpleaction.h
/usr/local/include/glib-2.0/gio/gsimpleactiongroup.h
/usr/local/include/glib-2.0/gio/gsimpleasyncresult.h
/usr/local/include/glib-2.0/gio/gsimplepermission.h
/usr/local/include/glib-2.0/gio/gsocket.h
/usr/local/include/glib-2.0/gio/gsocketaddress.h
/usr/local/include/glib-2.0/gio/gsocketaddressenumerator.h
/usr/local/include/glib-2.0/gio/gsocketclient.h
/usr/local/include/glib-2.0/gio/gsocketconnectable.h
/usr/local/include/glib-2.0/gio/gsocketconnection.h
/usr/local/include/glib-2.0/gio/gsocketcontrolmessage.h
/usr/local/include/glib-2.0/gio/gsocketlistener.h
/usr/local/include/glib-2.0/gio/gsocketservice.h
/usr/local/include/glib-2.0/gio/gsrvtarget.h
/usr/local/include/glib-2.0/gio/gtcpconnection.h
/usr/local/include/glib-2.0/gio/gtcpwrapperconnection.h
/usr/local/include/glib-2.0/gio/gthemedicon.h
/usr/local/include/glib-2.0/gio/gthreadedsocketservice.h
/usr/local/include/glib-2.0/gio/gtlsbackend.h
/usr/local/include/glib-2.0/gio/gtlscertificate.h
/usr/local/include/glib-2.0/gio/gtlsclientconnection.h
/usr/local/include/glib-2.0/gio/gtlsconnection.h
/usr/local/include/glib-2.0/gio/gtlsdatabase.h
/usr/local/include/glib-2.0/gio/gtlsfiledatabase.h
/usr/local/include/glib-2.0/gio/gtlsinteraction.h
/usr/local/include/glib-2.0/gio/gtlspassword.h
/usr/local/include/glib-2.0/gio/gtlsserverconnection.h
/usr/local/include/glib-2.0/gio/gvfs.h
/usr/local/include/glib-2.0/gio/gvolume.h
/usr/local/include/glib-2.0/gio/gvolumemonitor.h
/usr/local/include/glib-2.0/gio/gzlibcompressor.h
/usr/local/include/glib-2.0/gio/gzlibdecompressor.h
/usr/local/include/glib-2.0/glib/deprecated
/usr/local/include/glib-2.0/glib/galloca.h
/usr/local/include/glib-2.0/glib/garray.h
/usr/local/include/glib-2.0/glib/gasyncqueue.h
/usr/local/include/glib-2.0/glib/gatomic.h
/usr/local/include/glib-2.0/glib/gbacktrace.h
/usr/local/include/glib-2.0/glib/gbase64.h
/usr/local/include/glib-2.0/glib/gbitlock.h
/usr/local/include/glib-2.0/glib/gbookmarkfile.h
/usr/local/include/glib-2.0/glib/gbytes.h
/usr/local/include/glib-2.0/glib/gcharset.h
/usr/local/include/glib-2.0/glib/gchecksum.h
/usr/local/include/glib-2.0/glib/gconvert.h
/usr/local/include/glib-2.0/glib/gdataset.h
/usr/local/include/glib-2.0/glib/gdate.h
/usr/local/include/glib-2.0/glib/gdatetime.h
/usr/local/include/glib-2.0/glib/gdir.h
/usr/local/include/glib-2.0/glib/genviron.h
/usr/local/include/glib-2.0/glib/gerror.h
/usr/local/include/glib-2.0/glib/gfileutils.h
/usr/local/include/glib-2.0/glib/ggettext.h
/usr/local/include/glib-2.0/glib/ghash.h
/usr/local/include/glib-2.0/glib/ghmac.h
/usr/local/include/glib-2.0/glib/ghook.h
/usr/local/include/glib-2.0/glib/ghostutils.h
/usr/local/include/glib-2.0/glib/gi18n-lib.h
/usr/local/include/glib-2.0/glib/gi18n.h
/usr/local/include/glib-2.0/glib/giochannel.h
/usr/local/include/glib-2.0/glib/gkeyfile.h
/usr/local/include/glib-2.0/glib/glist.h
/usr/local/include/glib-2.0/glib/gmacros.h
/usr/local/include/glib-2.0/glib/gmain.h
/usr/local/include/glib-2.0/glib/gmappedfile.h
/usr/local/include/glib-2.0/glib/gmarkup.h
/usr/local/include/glib-2.0/glib/gmem.h
/usr/local/include/glib-2.0/glib/gmessages.h
/usr/local/include/glib-2.0/glib/gnode.h
/usr/local/include/glib-2.0/glib/goption.h
/usr/local/include/glib-2.0/glib/gpattern.h
/usr/local/include/glib-2.0/glib/gpoll.h
/usr/local/include/glib-2.0/glib/gprimes.h
/usr/local/include/glib-2.0/glib/gprintf.h
/usr/local/include/glib-2.0/glib/gqsort.h
/usr/local/include/glib-2.0/glib/gquark.h
/usr/local/include/glib-2.0/glib/gqueue.h
/usr/local/include/glib-2.0/glib/grand.h
/usr/local/include/glib-2.0/glib/gregex.h
/usr/local/include/glib-2.0/glib/gscanner.h
/usr/local/include/glib-2.0/glib/gsequence.h
/usr/local/include/glib-2.0/glib/gshell.h
/usr/local/include/glib-2.0/glib/gslice.h
/usr/local/include/glib-2.0/glib/gslist.h
/usr/local/include/glib-2.0/glib/gspawn.h
/usr/local/include/glib-2.0/glib/gstdio.h
/usr/local/include/glib-2.0/glib/gstrfuncs.h
/usr/local/include/glib-2.0/glib/gstring.h
/usr/local/include/glib-2.0/glib/gstringchunk.h
/usr/local/include/glib-2.0/glib/gtestutils.h
/usr/local/include/glib-2.0/glib/gthread.h
/usr/local/include/glib-2.0/glib/gthreadpool.h
/usr/local/include/glib-2.0/glib/gtimer.h
/usr/local/include/glib-2.0/glib/gtimezone.h
/usr/local/include/glib-2.0/glib/gtrashstack.h
/usr/local/include/glib-2.0/glib/gtree.h
/usr/local/include/glib-2.0/glib/gtypes.h
/usr/local/include/glib-2.0/glib/gunicode.h
/usr/local/include/glib-2.0/glib/gurifuncs.h
/usr/local/include/glib-2.0/glib/gutils.h
/usr/local/include/glib-2.0/glib/gvariant.h
/usr/local/include/glib-2.0/glib/gvarianttype.h
/usr/local/include/glib-2.0/glib/gversion.h
/usr/local/include/glib-2.0/glib/gversionmacros.h
/usr/local/include/glib-2.0/glib/gwin32.h
/usr/local/include/glib-2.0/glib/deprecated/gallocator.h
/usr/local/include/glib-2.0/glib/deprecated/gcache.h
/usr/local/include/glib-2.0/glib/deprecated/gcompletion.h
/usr/local/include/glib-2.0/glib/deprecated/gmain.h
/usr/local/include/glib-2.0/glib/deprecated/grel.h
/usr/local/include/glib-2.0/glib/deprecated/gthread.h
/usr/local/include/glib-2.0/gobject/gbinding.h
/usr/local/include/glib-2.0/gobject/gboxed.h
/usr/local/include/glib-2.0/gobject/gclosure.h
/usr/local/include/glib-2.0/gobject/genums.h
/usr/local/include/glib-2.0/gobject/glib-types.h
/usr/local/include/glib-2.0/gobject/gmarshal.h
/usr/local/include/glib-2.0/gobject/gobject.h
/usr/local/include/glib-2.0/gobject/gobjectnotifyqueue.c
/usr/local/include/glib-2.0/gobject/gparam.h
/usr/local/include/glib-2.0/gobject/gparamspecs.h
/usr/local/include/glib-2.0/gobject/gsignal.h
/usr/local/include/glib-2.0/gobject/gsourceclosure.h
/usr/local/include/glib-2.0/gobject/gtype.h
/usr/local/include/glib-2.0/gobject/gtypemodule.h
/usr/local/include/glib-2.0/gobject/gtypeplugin.h
/usr/local/include/glib-2.0/gobject/gvalue.h
/usr/local/include/glib-2.0/gobject/gvaluearray.h
/usr/local/include/glib-2.0/gobject/gvaluecollector.h
/usr/local/include/glib-2.0/gobject/gvaluetypes.h
/usr/local/man/man1/glib-compile-resources.1
/usr/local/man/man1/glib-compile-schemas.1
/usr/local/man/man1/glib-genmarshal.1
/usr/local/man/man1/glib-gettextize.1
/usr/local/man/man1/glib-mkenums.1
/usr/local/share/glib-2.0
/usr/local/share/aclocal/glib-2.0.m4
/usr/local/share/aclocal/glib-gettext.m4
/usr/local/share/gdb/auto-load/libglib-2.0.so.0.3200.1-gdb.py
/usr/local/share/glib-2.0/gdb
/usr/local/share/glib-2.0/gettext
/usr/local/share/glib-2.0/schemas
/usr/local/share/glib-2.0/gdb/glib.py
/usr/local/share/glib-2.0/gdb/gobject.py
/usr/local/share/glib-2.0/gettext/mkinstalldirs
/usr/local/share/glib-2.0/gettext/po
/usr/local/share/glib-2.0/gettext/po/Makefile.in.in
/usr/local/share/glib-2.0/schemas/apps.lingo.gschema.xml
/usr/local/share/glib-2.0/schemas/gschema.dtd
/usr/local/share/glib-2.0/schemas/gschemas.compiled
/usr/local/share/glib-2.0/schemas/org.gnome.Evince.gschema.xml
/usr/local/share/glib-2.0/schemas/org.yorba.geary.gschema.xml
/usr/local/share/locale/af/LC_MESSAGES/glib20.mo
/usr/local/share/locale/am/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ar/LC_MESSAGES/glib20.mo
/usr/local/share/locale/as/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ast/LC_MESSAGES/glib20.mo
/usr/local/share/locale/az/LC_MESSAGES/glib20.mo
/usr/local/share/locale/be/LC_MESSAGES/glib20.mo
/usr/local/share/locale/be@latin/LC_MESSAGES/glib20.mo
/usr/local/share/locale/bg/LC_MESSAGES/glib20.mo
/usr/local/share/locale/bn/LC_MESSAGES/glib20.mo
/usr/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo
/usr/local/share/locale/bs/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ca/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo
/usr/local/share/locale/cs/LC_MESSAGES/glib20.mo
/usr/local/share/locale/cy/LC_MESSAGES/glib20.mo
/usr/local/share/locale/da/LC_MESSAGES/glib20.mo
/usr/local/share/locale/de/LC_MESSAGES/glib20.mo
/usr/local/share/locale/dz/LC_MESSAGES/glib20.mo
/usr/local/share/locale/el/LC_MESSAGES/glib20.mo
/usr/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo
/usr/local/share/locale/en_CA/LC_MESSAGES/glib20.mo
/usr/local/share/locale/en_GB/LC_MESSAGES/glib20.mo
/usr/local/share/locale/eo/LC_MESSAGES/glib20.mo
/usr/local/share/locale/es/LC_MESSAGES/glib20.mo
/usr/local/share/locale/et/LC_MESSAGES/glib20.mo
/usr/local/share/locale/eu/LC_MESSAGES/glib20.mo
/usr/local/share/locale/fa/LC_MESSAGES/glib20.mo
/usr/local/share/locale/fi/LC_MESSAGES/glib20.mo
/usr/local/share/locale/fr/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ga/LC_MESSAGES/glib20.mo
/usr/local/share/locale/gl/LC_MESSAGES/glib20.mo
/usr/local/share/locale/gu/LC_MESSAGES/glib20.mo
/usr/local/share/locale/he/LC_MESSAGES/glib20.mo
/usr/local/share/locale/hi/LC_MESSAGES/glib20.mo
/usr/local/share/locale/hr/LC_MESSAGES/glib20.mo
/usr/local/share/locale/hu/LC_MESSAGES/glib20.mo
/usr/local/share/locale/hy/LC_MESSAGES/glib20.mo
/usr/local/share/locale/id/LC_MESSAGES/glib20.mo
/usr/local/share/locale/is/LC_MESSAGES/glib20.mo
/usr/local/share/locale/it/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ja/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ka/LC_MESSAGES/glib20.mo
/usr/local/share/locale/kk/LC_MESSAGES/glib20.mo
/usr/local/share/locale/kn/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ko/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ku/LC_MESSAGES/glib20.mo
/usr/local/share/locale/lt/LC_MESSAGES/glib20.mo
/usr/local/share/locale/lv/LC_MESSAGES/glib20.mo
/usr/local/share/locale/mai/LC_MESSAGES/glib20.mo
/usr/local/share/locale/mg/LC_MESSAGES/glib20.mo
/usr/local/share/locale/mk/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ml/LC_MESSAGES/glib20.mo
/usr/local/share/locale/mn/LC_MESSAGES/glib20.mo
/usr/local/share/locale/mr/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ms/LC_MESSAGES/glib20.mo
/usr/local/share/locale/nb/LC_MESSAGES/glib20.mo
/usr/local/share/locale/nds/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ne/LC_MESSAGES/glib20.mo
/usr/local/share/locale/nl/LC_MESSAGES/glib20.mo
/usr/local/share/locale/nn/LC_MESSAGES/glib20.mo
/usr/local/share/locale/oc/LC_MESSAGES/glib20.mo
/usr/local/share/locale/or/LC_MESSAGES/glib20.mo
/usr/local/share/locale/pa/LC_MESSAGES/glib20.mo
/usr/local/share/locale/pl/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ps/LC_MESSAGES/glib20.mo
/usr/local/share/locale/pt/LC_MESSAGES/glib20.mo
/usr/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ro/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ru/LC_MESSAGES/glib20.mo
/usr/local/share/locale/rw/LC_MESSAGES/glib20.mo
/usr/local/share/locale/si/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sk/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sl/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sq/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sr/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo
/usr/local/share/locale/sv/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ta/LC_MESSAGES/glib20.mo
/usr/local/share/locale/te/LC_MESSAGES/glib20.mo
/usr/local/share/locale/th/LC_MESSAGES/glib20.mo
/usr/local/share/locale/tl/LC_MESSAGES/glib20.mo
/usr/local/share/locale/tr/LC_MESSAGES/glib20.mo
/usr/local/share/locale/tt/LC_MESSAGES/glib20.mo
/usr/local/share/locale/ug/LC_MESSAGES/glib20.mo
/usr/local/share/locale/uk/LC_MESSAGES/glib20.mo
/usr/local/share/locale/vi/LC_MESSAGES/glib20.mo
/usr/local/share/locale/wa/LC_MESSAGES/glib20.mo
/usr/local/share/locale/xh/LC_MESSAGES/glib20.mo
/usr/local/share/locale/yi/LC_MESSAGES/glib20.mo
/usr/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo
/usr/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo
/usr/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo
/usr/local/share/vala-0.18/vapi/dbus-glib-1.vapi
/usr/local/share/vala-0.18/vapi/glib-2.0.vapi
/usr/local/share/vala-0.18/vapi/json-glib-1.0.deps
/usr/local/share/vala-0.18/vapi/json-glib-1.0.vapi
/usr/local/share/vala-0.18/vapi/poppler-glib.deps
/usr/local/share/vala-0.18/vapi/poppler-glib.vapi
/usr/local/share/vala-0.18/vapi/taglib_c.vapi
/usr/local/share/vala-0.18/vapi/twitter-glib-1.0.deps
/usr/local/share/vala-0.18/vapi/twitter-glib-1.0.vapi
/usr/share/glib-2.0
/usr/share/aclocal/glib-2.0.m4
/usr/share/aclocal/glib-gettext.m4
/usr/share/aclocal/glib.m4
/usr/share/aclocal/glibc2.m4
/usr/share/aclocal/glibc21.m4
/usr/share/doc/mutt/samples/iconv/iconv.glibc-2.1.3.rc
/usr/share/doc/mutt/samples/iconv/iconv.glibc-2.1.90.rc
/usr/share/gapi-2.0/glib-api.xml
/usr/share/gdb/auto-load/usr/lib/libglib-2.0.so.0.3400.1-gdb.py
/usr/share/glib-2.0/gdb
/usr/share/glib-2.0/gettext
/usr/share/glib-2.0/schemas
/usr/share/glib-2.0/gdb/glib.py
/usr/share/glib-2.0/gdb/glib.pyc
/usr/share/glib-2.0/gdb/gobject.py
/usr/share/glib-2.0/gdb/gobject.pyc
/usr/share/glib-2.0/gettext/mkinstalldirs
/usr/share/glib-2.0/gettext/po
/usr/share/glib-2.0/gettext/po/Makefile.in.in
/usr/share/glib-2.0/schemas/ca.desrt.dconf-editor.gschema.xml
/usr/share/glib-2.0/schemas/com.canonical.NotifyOSD.gschema.xml
/usr/share/glib-2.0/schemas/gschema.dtd
/usr/share/glib-2.0/schemas/gschemas.compiled
/usr/share/glib-2.0/schemas/im.telepathy.MissionControl.FromEmpathy.gschema.xml
/usr/share/glib-2.0/schemas/org.a11y.atspi.gschema.xml
/usr/share/glib-2.0/schemas/org.elementary.pantheon-terminal.gschema.xml
/usr/share/glib-2.0/schemas/org.elementary.scratch.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Telepathy.Logger.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.DB.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.Extract.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.FTS.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.Miner.Files.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.Store.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.Writeback.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.enums.xml
/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.folks.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml
/usr/share/glib-2.0/schemas/org.freedesktop.ibus.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Bluetooth.nst.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Charmap.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.Charmap.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Cheese.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Contacts.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Disks.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Documents.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.Empathy.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Epiphany.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.Evince.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Evolution.DefaultSources.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.FileRoller.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.GWeather.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.GWeather.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Nautilus.Sendto.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Patience.WindowState.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.SimpleScan.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Vinagre.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.Vino.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.cvs.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.document-manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.file-manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.build.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.cpp.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.debug-manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.indent-c.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.indent-python.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.js.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.message-manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.parser-cxx.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.python.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.run.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.sourceview.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.plugins.vala.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.snippets.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.symbol-db.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.terminal.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.anjuta.tools.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.antler.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.applets.GWeatherApplet.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.baobab.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.brasero.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.caribou.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.crypto.cache.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.crypto.pgp.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.a11y.applications.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.a11y.keyboard.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.a11y.magnifier.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.a11y.mouse.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.background.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.default-applications.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.input-sources.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.interface.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.lockdown.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.media-handling.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.screensaver.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.session.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.sound.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.thumbnail-cache.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.thumbnailers.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.wm.keybindings.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.desktop.wm.preferences.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.dictionary.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.documents.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.plugins.exif-display.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.plugins.export-to-folder.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.plugins.fullscreenbg.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.eog.plugins.pythonconsole.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.epiphany.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution-data-server.addressbook.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution-data-server.calendar.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.addressbook.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.bogofilter.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.calendar.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.eds-shell.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.importer.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.mail.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.attachment-reminder.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.autocontacts.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.email-custom-header.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.external-editor.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.face-picture.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.itip.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.mail-notification.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.prefer-plain.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.publish-calendar.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.plugin.templates.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.shell.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.shell.network-config.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.evolution.spamassassin.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gcalctool.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.drawspaces.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.externaltools.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.projects.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.pythonconsole.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.restoretabs.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.sourcecodebrowser.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.terminal.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.time.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.time.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.vala-toys.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.glchess.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.glines.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnect.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnibbles.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnobots2.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-mahjongg.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-nettool.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.applet.clock.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.applet.fish.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.applet.window-list.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.launcher.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.menu-button.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.object.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-panel.toplevel.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-screenshot.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-search-tool.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-sudoku.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-system-log.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-system-monitor.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.gnome-system-monitor.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnomine.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnotravex.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gnotski.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.gtali.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.iagno.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.libgnomekbd.desktop.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.libgnomekbd.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.libgnomekbd.keyboard.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.lightsoff.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.marlin.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.marlin.plugins.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.metacity.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.mousetweaks.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.mousetweaks.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.mutter.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.nautilus.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.power-manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.quadrapassel.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.rhythmbox.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.seahorse.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.seahorse.manager.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.seahorse.window.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.peripherals.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.peripherals.wacom.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.color.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.housekeeping.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.keyboard.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.media-keys.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.orientation.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.power.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.print-notifications.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.xrandr.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.xsettings.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.shell.extensions.weather.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.shell.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.sushi.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.swell-foop.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.system.dns_sd.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.system.gvfs.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.system.locale.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.system.proxy.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.totem.enums.xml
/usr/share/glib-2.0/schemas/org.gnome.totem.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.totem.plugins.opensubtitles.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.totem.plugins.pythonconsole.gschema.xml
/usr/share/glib-2.0/schemas/org.gnome.yelp.gschema.xml
/usr/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml
/usr/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml
/usr/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml
/usr/share/glib-2.0/schemas/org.pantheon.Maya.gschema.xml
/usr/share/glib-2.0/schemas/org.pantheon.audience.gschema.xml
/usr/share/glib-2.0/schemas/org.pantheon.noise.LastFM.gschema.xml
/usr/share/glib-2.0/schemas/org.pantheon.noise.gschema.xml
/usr/share/glib-2.0/schemas/org.pantheon.scratch.gschema.xml
/usr/share/glib-2.0/schemas/org.yorba.shotwell-extras.gschema.xml
/usr/share/glib-2.0/schemas/org.yorba.shotwell.gschema.xml
/usr/share/gtk-doc/html/Libvirt-glib
/usr/share/gtk-doc/html/dbus-glib
/usr/share/gtk-doc/html/json-glib
/usr/share/gtk-doc/html/telepathy-glib
/usr/share/gtk-doc/html/dbus-glib/ch01.html
/usr/share/gtk-doc/html/dbus-glib/ch02.html
/usr/share/gtk-doc/html/dbus-glib/ch03.html
/usr/share/gtk-doc/html/dbus-glib/dbus-binding-tool.html
/usr/share/gtk-doc/html/dbus-glib/dbus-glib-dbus-glib-lowlevel.html
/usr/share/gtk-doc/html/dbus-glib/dbus-glib-dbus-gtype-specialized.html
/usr/share/gtk-doc/html/dbus-glib/dbus-glib.devhelp2
/usr/share/gtk-doc/html/dbus-glib/home.png
/usr/share/gtk-doc/html/dbus-glib/index.html
/usr/share/gtk-doc/html/dbus-glib/index.sgml
/usr/share/gtk-doc/html/dbus-glib/left.png
/usr/share/gtk-doc/html/dbus-glib/right.png
/usr/share/gtk-doc/html/dbus-glib/style.css
/usr/share/gtk-doc/html/dbus-glib/up.png
/usr/share/gtk-doc/html/gi/glib.html
/usr/share/gtk-doc/html/json-glib/JsonBuilder.html
/usr/share/gtk-doc/html/json-glib/JsonGenerator.html
/usr/share/gtk-doc/html/json-glib/JsonParser.html
/usr/share/gtk-doc/html/json-glib/JsonPath.html
/usr/share/gtk-doc/html/json-glib/JsonReader.html
/usr/share/gtk-doc/html/json-glib/annotation-glossary.html
/usr/share/gtk-doc/html/json-glib/ch01.html
/usr/share/gtk-doc/html/json-glib/ch02.html
/usr/share/gtk-doc/html/json-glib/ch03.html
/usr/share/gtk-doc/html/json-glib/ch04.html
/usr/share/gtk-doc/html/json-glib/home.png
/usr/share/gtk-doc/html/json-glib/index.html
/usr/share/gtk-doc/html/json-glib/index.sgml
/usr/share/gtk-doc/html/json-glib/ix01.html
/usr/share/gtk-doc/html/json-glib/ix02.html
/usr/share/gtk-doc/html/json-glib/ix03.html
/usr/share/gtk-doc/html/json-glib/ix04.html
/usr/share/gtk-doc/html/json-glib/ix05.html
/usr/share/gtk-doc/html/json-glib/ix06.html
/usr/share/gtk-doc/html/json-glib/ix07.html
/usr/share/gtk-doc/html/json-glib/ix08.html
/usr/share/gtk-doc/html/json-glib/json-advanced.html
/usr/share/gtk-doc/html/json-glib/json-base.html
/usr/share/gtk-doc/html/json-glib/json-glib-Boxed-Types-Serialization.html
/usr/share/gtk-doc/html/json-glib/json-glib-GObject-Serialization.html
/usr/share/gtk-doc/html/json-glib/json-glib-JSON-Array.html
/usr/share/gtk-doc/html/json-glib/json-glib-JSON-GVariant-Integration.html
/usr/share/gtk-doc/html/json-glib/json-glib-JSON-Node.html
/usr/share/gtk-doc/html/json-glib/json-glib-JSON-Object.html
/usr/share/gtk-doc/html/json-glib/json-glib-Serializable-Interface.html
/usr/share/gtk-doc/html/json-glib/json-glib-Versioning-information.html
/usr/share/gtk-doc/html/json-glib/json-glib.devhelp2
/usr/share/gtk-doc/html/json-glib/json-glib.html
/usr/share/gtk-doc/html/json-glib/json-streams.html
/usr/share/gtk-doc/html/json-glib/json-tools.html
/usr/share/gtk-doc/html/json-glib/left.png
/usr/share/gtk-doc/html/json-glib/license.html
/usr/share/gtk-doc/html/json-glib/right.png
/usr/share/gtk-doc/html/json-glib/style.css
/usr/share/gtk-doc/html/json-glib/up.png
/usr/share/gtk-doc/html/pygobject/class-glibmaincontext.html
/usr/share/gtk-doc/html/pygobject/class-glibmainloop.html
/usr/share/gtk-doc/html/pygobject/glib-class-reference.html
/usr/share/gtk-doc/html/pygobject/glib-constants.html
/usr/share/gtk-doc/html/pygobject/glib-functions.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseCallChannel.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseCallContent.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseCallStream.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseChannel.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseConnection.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseConnectionManager.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseMediaCallChannel.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseMediaCallContent.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseMediaCallStream.html
/usr/share/gtk-doc/html/telepathy-glib/TpBaseRoomConfig.html
/usr/share/gtk-doc/html/telepathy-glib/TpCMMessage.html
/usr/share/gtk-doc/html/telepathy-glib/TpCallContentMediaDescription.html
/usr/share/gtk-doc/html/telepathy-glib/TpCallStreamEndpoint.html
/usr/share/gtk-doc/html/telepathy-glib/TpChannelFactoryIface.html
/usr/share/gtk-doc/html/telepathy-glib/TpChannelIface.html
/usr/share/gtk-doc/html/telepathy-glib/TpChannelManager.html
/usr/share/gtk-doc/html/telepathy-glib/TpClientMessage.html
/usr/share/gtk-doc/html/telepathy-glib/TpDebugClient.html
/usr/share/gtk-doc/html/telepathy-glib/TpDebugMessage.html
/usr/share/gtk-doc/html/telepathy-glib/TpDynamicHandleRepo.html
/usr/share/gtk-doc/html/telepathy-glib/TpExportableChannel.html
/usr/share/gtk-doc/html/telepathy-glib/TpIntset.html
/usr/share/gtk-doc/html/telepathy-glib/TpMessage.html
/usr/share/gtk-doc/html/telepathy-glib/TpSignalledMessage.html
/usr/share/gtk-doc/html/telepathy-glib/TpStaticHandleRepo.html
/usr/share/gtk-doc/html/telepathy-glib/TpTLSCertificate.html
/usr/share/gtk-doc/html/telepathy-glib/TpTLSCertificateRejection.html
/usr/share/gtk-doc/html/telepathy-glib/annotation-glossary.html
/usr/share/gtk-doc/html/telepathy-glib/ch-client.html
/usr/share/gtk-doc/html/telepathy-glib/ch-dbus.html
/usr/share/gtk-doc/html/telepathy-glib/ch-obsolete.html
/usr/share/gtk-doc/html/telepathy-glib/ch-protocol.html
/usr/share/gtk-doc/html/telepathy-glib/ch-service-base.html
/usr/share/gtk-doc/html/telepathy-glib/ch-service-dbus.html
/usr/share/gtk-doc/html/telepathy-glib/ch-service-handles.html
/usr/share/gtk-doc/html/telepathy-glib/ch-utilities.html
/usr/share/gtk-doc/html/telepathy-glib/home.png
/usr/share/gtk-doc/html/telepathy-glib/index.html
/usr/share/gtk-doc/html/telepathy-glib/index.sgml
/usr/share/gtk-doc/html/telepathy-glib/left.png
/usr/share/gtk-doc/html/telepathy-glib/right.png
/usr/share/gtk-doc/html/telepathy-glib/style.css
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpContactsMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpGroupMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpHeap.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpMessageMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpPresenceMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpPropertiesMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-TpTextMixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-account-channel-request.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-account-manager.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-account-request.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-account.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-add-dispatch-operation-context.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-asv.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-automatic-client-factory.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-automatic-proxy-factory.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-base-client.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-base-contact-list.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-base-password-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-base-protocol.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-basic-proxy-factory.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-call-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-call-content.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-call-misc.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-call-stream.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-capabilities.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-auth.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-contactsearch.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-dispatch-operation.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-dispatcher.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-file-transfer.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-group.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-media.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-request.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-room.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-roomlist.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-text.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-tube.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel-tubes.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-anonymity.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-call-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-call-content.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-call-misc.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-call-stream.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-cli-service-point.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-client-channel-factory.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-client.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-addressing.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-aliasing.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-avatars.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-balance.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-caps.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-cellular.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-client-types.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-contact-info.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-contact-list.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-contacts.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-location.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-mail.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-manager.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-powersaving.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-presence.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-requests.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection-simple-presence.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-connection.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-contact-search-result.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-contact-search.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-contact.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-dbus-properties-mixin.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-dbus-tube-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-dbus.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-debug-ansi.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-debug-sender.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-debug.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-defs.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-dtmf.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-enums.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-errors.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-file-transfer-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-gnio-util.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-gtypes.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-handle-channels-context.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-handle-repo.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-handle.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-interfaces.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-media-interfaces.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-observe-channels-context.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-protocol.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-proxy-dbus-core.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-proxy-subclass.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-proxy-tp-properties.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-proxy.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-room-info.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-room-list.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-run.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-simple-approver.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-simple-client-factory.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-simple-handler.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-simple-observer.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-simple-password-manager.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-stream-tube-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-stream-tube-connection.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-account-manager.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-account.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-anonymity.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-auth.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-call.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-contactlist.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-contactsearch.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-dispatch-operation.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-dispatcher.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-file-transfer.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-ft-metadata.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-group.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-media.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-request.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-room.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-roomlist.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-securable.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-text.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-tube.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel-tubes.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-client.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-connection-manager.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-connection.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-debug.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-generic.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-media-interfaces.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-protocol.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-service-point.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc-tls.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-svc.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-text-channel.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-util.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-vardict.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-variant-util.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib-version.html
/usr/share/gtk-doc/html/telepathy-glib/telepathy-glib.devhelp2
/usr/share/gtk-doc/html/telepathy-glib/up.png
/usr/share/info/glib.info.gz
/usr/share/intellijidea-ce/lib/cglib-2.2.2.jar
/usr/share/libtool/libltdl/libltdl/lt__glibc.h
/usr/share/licenses/dbus-sharp-glib
/usr/share/licenses/dbus-sharp-glib/COPYING
/usr/share/locale/af/LC_MESSAGES/glib20.mo
/usr/share/locale/am/LC_MESSAGES/glib20.mo
/usr/share/locale/ar/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ar/LC_MESSAGES/glib20.mo
/usr/share/locale/as/LC_MESSAGES/glib-networking.mo
/usr/share/locale/as/LC_MESSAGES/glib20.mo
/usr/share/locale/ast/LC_MESSAGES/glib20.mo
/usr/share/locale/az/LC_MESSAGES/glib20.mo
/usr/share/locale/be/LC_MESSAGES/glib-networking.mo
/usr/share/locale/be/LC_MESSAGES/glib20.mo
/usr/share/locale/be@latin/LC_MESSAGES/glib20.mo
/usr/share/locale/bg/LC_MESSAGES/glib-networking.mo
/usr/share/locale/bg/LC_MESSAGES/glib20.mo
/usr/share/locale/bn/LC_MESSAGES/glib20.mo
/usr/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo
/usr/share/locale/bn_IN/LC_MESSAGES/glib20.mo
/usr/share/locale/bs/LC_MESSAGES/glib20.mo
/usr/share/locale/ca/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ca/LC_MESSAGES/glib20.mo
/usr/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ca@valencia/LC_MESSAGES/glib20.mo
/usr/share/locale/cs/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/cs/LC_MESSAGES/glib-networking.mo
/usr/share/locale/cs/LC_MESSAGES/glib20.mo
/usr/share/locale/cs/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/cy/LC_MESSAGES/glib20.mo
/usr/share/locale/da/LC_MESSAGES/glib-networking.mo
/usr/share/locale/da/LC_MESSAGES/glib20.mo
/usr/share/locale/de/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/de/LC_MESSAGES/glib-networking.mo
/usr/share/locale/de/LC_MESSAGES/glib20.mo
/usr/share/locale/de/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/dz/LC_MESSAGES/glib20.mo
/usr/share/locale/el/LC_MESSAGES/glib-networking.mo
/usr/share/locale/el/LC_MESSAGES/glib20.mo
/usr/share/locale/el/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/en@shaw/LC_MESSAGES/glib20.mo
/usr/share/locale/en_CA/LC_MESSAGES/glib-networking.mo
/usr/share/locale/en_CA/LC_MESSAGES/glib20.mo
/usr/share/locale/en_GB/LC_MESSAGES/glib-networking.mo
/usr/share/locale/en_GB/LC_MESSAGES/glib20.mo
/usr/share/locale/eo/LC_MESSAGES/glib-networking.mo
/usr/share/locale/eo/LC_MESSAGES/glib20.mo
/usr/share/locale/es/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/es/LC_MESSAGES/glib-networking.mo
/usr/share/locale/es/LC_MESSAGES/glib20.mo
/usr/share/locale/es/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/et/LC_MESSAGES/glib-networking.mo
/usr/share/locale/et/LC_MESSAGES/glib20.mo
/usr/share/locale/eu/LC_MESSAGES/glib-networking.mo
/usr/share/locale/eu/LC_MESSAGES/glib20.mo
/usr/share/locale/fa/LC_MESSAGES/glib-networking.mo
/usr/share/locale/fa/LC_MESSAGES/glib20.mo
/usr/share/locale/fi/LC_MESSAGES/glib-networking.mo
/usr/share/locale/fi/LC_MESSAGES/glib20.mo
/usr/share/locale/fr/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/fr/LC_MESSAGES/glib-networking.mo
/usr/share/locale/fr/LC_MESSAGES/glib20.mo
/usr/share/locale/ga/LC_MESSAGES/glib20.mo
/usr/share/locale/gl/LC_MESSAGES/glib-networking.mo
/usr/share/locale/gl/LC_MESSAGES/glib20.mo
/usr/share/locale/gl/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/gu/LC_MESSAGES/glib-networking.mo
/usr/share/locale/gu/LC_MESSAGES/glib20.mo
/usr/share/locale/he/LC_MESSAGES/glib-networking.mo
/usr/share/locale/he/LC_MESSAGES/glib20.mo
/usr/share/locale/hi/LC_MESSAGES/glib-networking.mo
/usr/share/locale/hi/LC_MESSAGES/glib20.mo
/usr/share/locale/hr/LC_MESSAGES/glib20.mo
/usr/share/locale/hu/LC_MESSAGES/glib-networking.mo
/usr/share/locale/hu/LC_MESSAGES/glib20.mo
/usr/share/locale/hy/LC_MESSAGES/glib20.mo
/usr/share/locale/id/LC_MESSAGES/glib-networking.mo
/usr/share/locale/id/LC_MESSAGES/glib20.mo
/usr/share/locale/id/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/is/LC_MESSAGES/glib20.mo
/usr/share/locale/it/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/it/LC_MESSAGES/glib-networking.mo
/usr/share/locale/it/LC_MESSAGES/glib20.mo
/usr/share/locale/it/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/ja/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/ja/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ja/LC_MESSAGES/glib20.mo
/usr/share/locale/ka/LC_MESSAGES/glib20.mo
/usr/share/locale/kk/LC_MESSAGES/glib20.mo
/usr/share/locale/km/LC_MESSAGES/glib-networking.mo
/usr/share/locale/kn/LC_MESSAGES/glib-networking.mo
/usr/share/locale/kn/LC_MESSAGES/glib20.mo
/usr/share/locale/ko/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ko/LC_MESSAGES/glib20.mo
/usr/share/locale/ku/LC_MESSAGES/glib20.mo
/usr/share/locale/lt/LC_MESSAGES/glib-networking.mo
/usr/share/locale/lt/LC_MESSAGES/glib20.mo
/usr/share/locale/lv/LC_MESSAGES/glib-networking.mo
/usr/share/locale/lv/LC_MESSAGES/glib20.mo
/usr/share/locale/mai/LC_MESSAGES/glib20.mo
/usr/share/locale/mg/LC_MESSAGES/glib20.mo
/usr/share/locale/mk/LC_MESSAGES/glib20.mo
/usr/share/locale/ml/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ml/LC_MESSAGES/glib20.mo
/usr/share/locale/mn/LC_MESSAGES/glib20.mo
/usr/share/locale/mr/LC_MESSAGES/glib-networking.mo
/usr/share/locale/mr/LC_MESSAGES/glib20.mo
/usr/share/locale/ms/LC_MESSAGES/glib20.mo
/usr/share/locale/nb/LC_MESSAGES/glib-networking.mo
/usr/share/locale/nb/LC_MESSAGES/glib20.mo
/usr/share/locale/nb/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/nds/LC_MESSAGES/glib20.mo
/usr/share/locale/ne/LC_MESSAGES/glib20.mo
/usr/share/locale/nl/LC_MESSAGES/glib-networking.mo
/usr/share/locale/nl/LC_MESSAGES/glib20.mo
/usr/share/locale/nn/LC_MESSAGES/glib20.mo
/usr/share/locale/oc/LC_MESSAGES/glib20.mo
/usr/share/locale/or/LC_MESSAGES/glib-networking.mo
/usr/share/locale/or/LC_MESSAGES/glib20.mo
/usr/share/locale/pa/LC_MESSAGES/glib-networking.mo
/usr/share/locale/pa/LC_MESSAGES/glib20.mo
/usr/share/locale/pa/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/pl/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/pl/LC_MESSAGES/glib-networking.mo
/usr/share/locale/pl/LC_MESSAGES/glib20.mo
/usr/share/locale/pl/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/ps/LC_MESSAGES/glib20.mo
/usr/share/locale/pt/LC_MESSAGES/glib-networking.mo
/usr/share/locale/pt/LC_MESSAGES/glib20.mo
/usr/share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo
/usr/share/locale/pt_BR/LC_MESSAGES/glib20.mo
/usr/share/locale/pt_BR/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/ro/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ro/LC_MESSAGES/glib20.mo
/usr/share/locale/ru/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/ru/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ru/LC_MESSAGES/glib20.mo
/usr/share/locale/ru/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/rw/LC_MESSAGES/glib20.mo
/usr/share/locale/si/LC_MESSAGES/glib20.mo
/usr/share/locale/sk/LC_MESSAGES/glib20.mo
/usr/share/locale/sl/LC_MESSAGES/glib-networking.mo
/usr/share/locale/sl/LC_MESSAGES/glib20.mo
/usr/share/locale/sl/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/sq/LC_MESSAGES/glib20.mo
/usr/share/locale/sr/LC_MESSAGES/glib-networking.mo
/usr/share/locale/sr/LC_MESSAGES/glib20.mo
/usr/share/locale/sr@ije/LC_MESSAGES/glib20.mo
/usr/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo
/usr/share/locale/sr@latin/LC_MESSAGES/glib20.mo
/usr/share/locale/sv/LC_MESSAGES/glib-networking.mo
/usr/share/locale/sv/LC_MESSAGES/glib20.mo
/usr/share/locale/sv/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/ta/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ta/LC_MESSAGES/glib20.mo
/usr/share/locale/te/LC_MESSAGES/glib-networking.mo
/usr/share/locale/te/LC_MESSAGES/glib20.mo
/usr/share/locale/th/LC_MESSAGES/glib-networking.mo
/usr/share/locale/th/LC_MESSAGES/glib20.mo
/usr/share/locale/tl/LC_MESSAGES/glib20.mo
/usr/share/locale/tr/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/tr/LC_MESSAGES/glib-networking.mo
/usr/share/locale/tr/LC_MESSAGES/glib20.mo
/usr/share/locale/tr/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/tt/LC_MESSAGES/glib20.mo
/usr/share/locale/ug/LC_MESSAGES/glib-networking.mo
/usr/share/locale/ug/LC_MESSAGES/glib20.mo
/usr/share/locale/uk/LC_MESSAGES/glib-networking.mo
/usr/share/locale/uk/LC_MESSAGES/glib20.mo
/usr/share/locale/vi/LC_MESSAGES/glib-networking.mo
/usr/share/locale/vi/LC_MESSAGES/glib20.mo
/usr/share/locale/vi/LC_MESSAGES/json-glib-1.0.mo
/usr/share/locale/wa/LC_MESSAGES/glib20.mo
/usr/share/locale/xh/LC_MESSAGES/glib20.mo
/usr/share/locale/yi/LC_MESSAGES/glib20.mo
/usr/share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.2.mo
/usr/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo
/usr/share/locale/zh_CN/LC_MESSAGES/glib20.mo
/usr/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo
/usr/share/locale/zh_HK/LC_MESSAGES/glib20.mo
/usr/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo
/usr/share/locale/zh_TW/LC_MESSAGES/glib20.mo
/usr/share/man/man1/glib-config.1.gz
/usr/share/man/man7/glibc.7.gz
/usr/share/netbeans/enterprise/modules/ext/struts/struts-taglib-1.3.10.jar
/usr/share/netbeans/java/config/Modules/org-netbeans-libs-cglib.xml
/usr/share/netbeans/java/modules/org-netbeans-libs-cglib.jar
/usr/share/netbeans/java/modules/ext/cglib-2.2.jar
/usr/share/netbeans/java/modules/ext/hibernate/cglib-2.1.3.jar
/usr/share/netbeans/java/modules/locale/org-netbeans-libs-cglib_ja.jar
/usr/share/netbeans/java/modules/locale/org-netbeans-libs-cglib_pt_BR.jar
/usr/share/netbeans/java/modules/locale/org-netbeans-libs-cglib_ru.jar
/usr/share/netbeans/java/modules/locale/org-netbeans-libs-cglib_zh_CN.jar
/usr/share/netbeans/java/update_tracking/org-netbeans-libs-cglib.xml
/usr/share/vala/vapi/libpulse-mainloop-glib.deps
/usr/share/vala/vapi/libpulse-mainloop-glib.vapi
/usr/share/vala/vapi/libvirt-glib-1.0.vapi
/usr/share/vala/vapi/telepathy-glib.deps
/usr/share/vala/vapi/telepathy-glib.vapi
/usr/share/vala-0.18/vapi/dbus-glib-1.vapi
/usr/share/vala-0.18/vapi/glib-2.0.vapi
/usr/share/vala-0.18/vapi/json-glib-1.0.deps
/usr/share/vala-0.18/vapi/json-glib-1.0.vapi
/usr/share/vala-0.18/vapi/poppler-glib.deps
/usr/share/vala-0.18/vapi/poppler-glib.vapi
/usr/share/vala-0.18/vapi/taglib_c.vapi
/usr/share/vala-0.18/vapi/twitter-glib-1.0.deps
/usr/share/vala-0.18/vapi/twitter-glib-1.0.vapi
/var/abs/local/yaourtbuild/pango-git/src/pango/pango/opentype/hb-glib.c
/var/abs/local/yaourtbuild/pango-git/src/pango/pango/opentype/hb-glib.h
/var/abs/local/yaourtbuild/pango-git/src/pango-build/pango/opentype/hb-glib.c
/var/abs/local/yaourtbuild/pango-git/src/pango-build/pango/opentype/hb-glib.h
~>
|