1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: qtbase-opensource-src
Source: https://download.qt.io/official_releases/qt/*/submodules/
Files-Excluded: src/3rdparty/zlib/doc/rfc*.txt
tests/auto/corelib/tools/qbytearray/rfc3252.txt
tests/auto/corelib/io/qtextstream/rfc3261.txt
tests/auto/network/access/qftp/rfc3252.txt
tests/auto/network/access/qnetworkreply/rfc3252.txt
tests/manual/network_stresstest/qtest/bigfile
tests/auto/network/access/qnetworkreply/bigfile
tests/auto/network/access/qnetworkreply/resource
examples/xml/htmlinfo
# Removed non-free files:
# * RFCs (see QTBUG-30544 and QTBUG-30545)
# * htmlinfo example which contains non-free websites snapshots
# Manual rules for The Qt Company copyrights
Files: *
Copyright: 2016-2017 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: configure
configure.bat
qmake/*
src/tools/*
tests/*
util/*
Copyright: 2016-2017 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: examples/*
doc/src/snippets/*
qmake/doc/snippets/*
src/*/doc/snippets/*
tests/manual/xembed*
tests/manual/qlocale/*
tests/manual/qtbug-52641/main.cpp
tests/manual/windowtransparency/*
src/winmain/qtmain_win.cpp
src/winmain/qtmain_winrt.cpp
tests/auto/corelib/global/qglobalstatic/tst_qglobalstatic.cpp
Copyright: 2016-2017 The Qt Company Ltd.
License: BSD-3-clause
Files: *.qdoc
Copyright: 2016-2017 The Qt Company Ltd.
License: GFDL-NIV-1.3
# Debian packaging copyright
Files: debian/*
Copyright: 2007-2013 Fathi Boudra <fabo@debian.org>
2007-2013 Sune Vuorela <debian@pusling.com>
2008-2012 Modestas Vainius <modax@debian.org>
2007-2009 Ana Beatriz Guerrero Lopez <ana@debian.org>
2005-2007 Brian Nelson <pyro@debian.org>
2012-2013 Zoltán Balogh <zoltan.balogh@canonical.com>
2012-2013 Timo Jyrinki <timo.jyrinki@canonical.com>
2013-2017 Dmitry Shachnev <mitya57@debian.org>
License: LGPL-3 or GPL-2+
# Auto-generated rules for non-3rdparty code
# Use debian/scripts/update-copyright in cleaned source tree root to update it.
## BEGIN AUTO GENERATED BLOCK
## BSD-3-clause
Files: examples/network/multistreamclient/chatconsumer.cpp
examples/network/multistreamclient/chatconsumer.h
examples/network/multistreamclient/client.cpp
examples/network/multistreamclient/client.h
examples/network/multistreamclient/consumer.h
examples/network/multistreamclient/main.cpp
examples/network/multistreamclient/movieconsumer.cpp
examples/network/multistreamclient/movieconsumer.h
examples/network/multistreamclient/timeconsumer.cpp
examples/network/multistreamclient/timeconsumer.h
examples/network/multistreamserver/chatprovider.cpp
examples/network/multistreamserver/chatprovider.h
examples/network/multistreamserver/main.cpp
examples/network/multistreamserver/movieprovider.cpp
examples/network/multistreamserver/movieprovider.h
examples/network/multistreamserver/provider.h
examples/network/multistreamserver/server.cpp
examples/network/multistreamserver/server.h
examples/network/multistreamserver/timeprovider.cpp
examples/network/multistreamserver/timeprovider.h
examples/network/shared/sctpchannels.h
src/network/doc/snippets/code/src_network_socket_qsctpsocket.cpp
Copyright: 2015-2016 Alex Trotsenko <alex1973tr@gmail.com>
License: BSD-3-clause
Files: src/corelib/doc/snippets/qmetaobject-revision/main.cpp
src/corelib/doc/snippets/qmetaobject-revision/window.cpp
src/corelib/doc/snippets/qmetaobject-revision/window.h
Copyright: 2016 BlackBerry Limited (formerly Research In Motion)
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_tools_qcommandlineoption.cpp
src/corelib/doc/snippets/code/src_corelib_tools_qcommandlineparser.cpp
src/corelib/doc/snippets/code/src_corelib_tools_qcommandlineparser_main.cpp
Copyright: 2016 David Faure <faure@kde.org>
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_tools_qregularexpression.cpp
Copyright: 2016 Giuseppe D'Angelo <dangelog@gmail.com>.
License: BSD-3-clause
Files: examples/widgets/itemviews/storageview/main.cpp
examples/widgets/itemviews/storageview/storagemodel.cpp
examples/widgets/itemviews/storageview/storagemodel.h
Copyright: 2016 Ivan Komissarov <ABBAPOH@gmail.com>
2016 The Qt Company Ltd.
License: BSD-3-clause
Files: examples/network/dnslookup/dnslookup.cpp
examples/network/dnslookup/dnslookup.h
src/network/doc/snippets/code/src_network_kernel_qdnslookup.cpp
Copyright: 2016 Jeremy Lainé <jeremy.laine@m4x.org>
License: BSD-3-clause
Files: src/corelib/doc/snippets/qversionnumber/main.cpp
Copyright: 2016 Keith Gardner <kreios4004@gmail.com>
2016 The Qt Company Ltd.
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_tools_qstringiterator.cpp
src/corelib/doc/snippets/code/src_gui_itemviews_qidentityproxymodel.cpp
src/openglextensions/qopenglextensions.cpp
src/openglextensions/qopenglextensions.h
util/glgen/qopenglextensions.cpp.header
util/glgen/qopenglextensions.h.header
Copyright: 2016 Klarälvdalens Datakonsult AB, a KDAB Group company
License: BSD-3-clause
Files: examples/widgets/tools/regularexpression/regularexpressiondialog.cpp
examples/widgets/tools/regularexpression/regularexpressiondialog.h
Copyright: 2016 Klarälvdalens Datakonsult AB, a KDAB Group company
2016 Samuel Gaist <samuel.gaist@edeltech.ch>
2016 The Qt Company Ltd.
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_kernel_qmath.cpp
Copyright: 2016 Laszlo Papp <lpapp@kde.org>
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_thread_qthread.cpp
Copyright: 2016 Olivier Goffart <ogoffart@woboq.com>
License: BSD-3-clause
Files: examples/widgets/widgets/mousebuttons/buttontester.cpp
examples/widgets/widgets/mousebuttons/buttontester.h
examples/widgets/widgets/mousebuttons/main.cpp
Copyright: 2016 Rick Stockton <rickstockton@reno-computerhelp.com>
2016 The Qt Company Ltd.
License: BSD-3-clause
Files: src/corelib/doc/snippets/qmessageauthenticationcode/main.cpp
Copyright: 2016 Ruslan Nigmatullin <euroelessar@yandex.ru>
License: BSD-3-clause
Files: src/corelib/doc/snippets/code/src_corelib_kernel_qabstractnativeeventfilter.h
src/corelib/doc/snippets/code/src_corelib_kernel_qabstractnativeeventfilter.mm
src/gui/doc/snippets/qfileopenevent/Info.plist
src/gui/doc/snippets/qfileopenevent/main.cpp
Copyright: 2015-2016 Samuel Gaist <samuel.gaist@edeltech.ch>
License: BSD-3-clause
## GFDL-NIV-1.3
Files: src/testlib/doc/src/qttestlib-manual.qdoc
Copyright: 2016 Intel Corporation.
2016 The Qt Company Ltd.
License: GFDL-NIV-1.3
Files: examples/widgets/doc/mousebuttons.qdoc
Copyright: 2016 Rick Stockton <rickstockton@reno-computerhelp.com>
2016 The Qt Company Ltd.
License: GFDL-NIV-1.3
## GPL-3 with Qt-1.0 exception
Files: tests/auto/network/socket/qsctpsocket/tst_qsctpsocket.cpp
Copyright: 2016 Alex Trotsenko <alex1973tr@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/cmake/test_add_binary_resources_delayed_file/main.cpp
Copyright: 2015 André Klitzing <aklitzing@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/io/qfileselector/tst_qfileselector.cpp
tests/auto/network/access/spdy/tst_spdy.cpp
tests/manual/qnetworkconfiguration/main.cpp
tests/manual/qsslsocket/main.cpp
Copyright: 2013-2014 BlackBerry Limited (formerly Research In Motion)
License: GPL-3 with Qt-1.0 exception
Files: tests/manual/qnetworkreply/main.cpp
Copyright: 2014 BlackBerry Limited (formerly Research In Motion)
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/android/runtests_androiddeployqt.pl
Copyright: 2012-2013 BogDan Vatra <bogdan@kde.org>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/manual/xembed-raster/gtk-embedder.py
tests/manual/xembed-widgets/gtk-embedder.py
Copyright: 2013 Canonical Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/benchmarks/corelib/io/qtextstream/main.cpp
tests/benchmarks/corelib/thread/qthreadpool/tst_qthreadpool.cpp
Copyright: 2013-2014 David Faure <david.faure@kdab.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/io/qlockfile/qlockfiletesthelper/qlockfile_test_helper.cpp
tests/auto/corelib/io/qlockfile/tst_qlockfile.cpp
Copyright: 2013 David Faure <faure+bluesystems@kde.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/io/qsavefile/tst_qsavefile.cpp
tests/auto/corelib/mimetypes/qmimedatabase/test.qml
tests/auto/corelib/tools/qcommandlineparser/testhelper/qcommandlineparser_test_helper.cpp
tests/auto/corelib/tools/qcommandlineparser/tst_qcommandlineparser.cpp
Copyright: 2012-2013 David Faure <faure@kde.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/tools/rcc/tst_rcc.cpp
Copyright: 2012 Giuseppe D'Angelo <dangelog@gmail.com>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qregularexpression/alwaysoptimize/tst_qregularexpression_alwaysoptimize.cpp
tests/auto/corelib/tools/qregularexpression/defaultoptimize/tst_qregularexpression_defaultoptimize.cpp
tests/auto/corelib/tools/qregularexpression/tst_qregularexpression.h
Copyright: 2012 Giuseppe D'Angelo <dangelog@gmail.com>.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qregularexpression/tst_qregularexpression.cpp
Copyright: 2015 Giuseppe D'Angelo <dangelog@gmail.com>.
2015 Klarälvdalens Datakonsult AB, a KDAB Group company
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/network/ssl/qsslellipticcurve/tst_qsslellipticcurve.cpp
Copyright: 2014 Governikus GmbH & Co. KG.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/network/access/hpack/tst_hpack.cpp
tests/auto/network/ssl/qsslsocket/tst_qsslsocket.cpp
Copyright: 2014 Governikus GmbH & Co. KG.
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qbytedatabuffer/tst_qbytedatabuffer.cpp
tests/benchmarks/network/access/qnetworkreply_from_cache/tst_qnetworkreply_from_cache.cpp
Copyright: 2012 Hewlett-Packard Development Company, L.P.
License: GPL-3 with Qt-1.0 exception
Files: tests/manual/qstorageinfo/main.cpp
tests/manual/qstorageinfo/printvolumes.cpp
Copyright: 2016 Intel Corporation
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/io/qipaddress/tst_qipaddress.cpp
tests/auto/corelib/io/qprocess-noapplication/tst_qprocessnoapplication.cpp
tests/auto/corelib/io/qprocess/testProcessHang/main.cpp
tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp
tests/auto/corelib/kernel/qdeadlinetimer/tst_qdeadlinetimer.cpp
tests/auto/corelib/plugin/qpluginloader/fakeplugin.cpp
tests/auto/corelib/plugin/qpluginloader/machtest/generate-bad.pl
tests/auto/corelib/plugin/qpluginloader/machtest/ppcconverter.pl
tests/auto/corelib/thread/qatomicinteger/tst_qatomicinteger.cpp
tests/auto/corelib/tools/qsharedpointer/nontracked.cpp
tests/auto/corelib/tools/qsharedpointer/nontracked.h
tests/auto/dbus/qdbusconnection_delayed/tst_qdbusconnection_delayed.cpp
tests/auto/dbus/qdbusconnection_no_app/tst_qdbusconnection_no_app.cpp
tests/auto/dbus/qdbusconnection_spyhook/tst_qdbusconnection_spyhook.cpp
tests/auto/network/kernel/qnetworkdatagram/tst_qnetworkdatagram.cpp
tests/auto/other/compiler/othersource.cpp
tests/auto/other/qprocess_and_guieventloop/tst_qprocess_and_guieventloop.cpp
tests/auto/other/qprocess_and_guieventloop/write-read-write/main.cpp
tests/auto/tools/moc/forward-declared-param.h
tests/auto/tools/qdbusxml2cpp/tst_qdbusxml2cpp.cpp
tests/benchmarks/corelib/tools/qcryptographichash/main.cpp
tests/manual/qdesktopservices/tst_qdesktopservices.cpp
tests/manual/qsysinfo/main.cpp
util/includemocs/includemocs.pl
Copyright: 2016-2017 Intel Corporation.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/network/kernel/qdnslookup/tst_qdnslookup.cpp
Copyright: 2016 Intel Corporation.
2012 Jeremy Lainé <jeremy.laine@m4x.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/kernel/qvariant/tst_qvariant.cpp
Copyright: 2016 Intel Corporation.
2016 Olivier Goffart <ogoffart@woboq.com>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: configure
configure.bat
qmake/generators/makefiledeps.cpp
qmake/generators/unix/unixmake2.cpp
qmake/main.cpp
src/tools/moc/main.cpp
tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp
tests/auto/corelib/codecs/utf8/tst_utf8.cpp
tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
tests/auto/corelib/io/qdebug/tst_qdebug.cpp
tests/auto/corelib/io/qdir/tst_qdir.cpp
tests/auto/corelib/io/qfile/tst_qfile.cpp
tests/auto/corelib/io/qprocess/tst_qprocess.cpp
tests/auto/corelib/io/qurl/tst_qurl.cpp
tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
tests/auto/corelib/kernel/qcoreapplication/tst_qcoreapplication.cpp
tests/auto/corelib/kernel/qcoreapplication/tst_qcoreapplication.h
tests/auto/corelib/kernel/qtimer/tst_qtimer.cpp
tests/auto/corelib/plugin/qpluginloader/tst_qpluginloader.cpp
tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp
tests/auto/corelib/thread/qatomicpointer/tst_qatomicpointer.cpp
tests/auto/corelib/thread/qmutex/tst_qmutex.cpp
tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
tests/auto/corelib/tools/qdate/tst_qdate.cpp
tests/auto/corelib/tools/qdatetime/tst_qdatetime.cpp
tests/auto/corelib/tools/qsharedpointer/forwarddeclared.cpp
tests/auto/corelib/tools/qsharedpointer/forwarddeclared.h
tests/auto/corelib/tools/qsharedpointer/tst_qsharedpointer.cpp
tests/auto/corelib/tools/qstring/tst_qstring.cpp
tests/auto/corelib/tools/qstringref/tst_qstringref.cpp
tests/auto/dbus/qdbusabstractadaptor/qmyserver/qmyserver.cpp
tests/auto/dbus/qdbusabstractadaptor/tst_qdbusabstractadaptor.cpp
tests/auto/dbus/qdbusabstractinterface/qpinger/qpinger.cpp
tests/auto/dbus/qdbusabstractinterface/tst_qdbusabstractinterface.cpp
tests/auto/dbus/qdbusconnection/tst_qdbusconnection.cpp
tests/auto/dbus/qdbusconnection/tst_qdbusconnection.h
tests/auto/dbus/qdbusinterface/qmyserver/qmyserver.cpp
tests/auto/dbus/qdbusmarshall/tst_qdbusmarshall.cpp
tests/auto/dbus/qdbuspendingcall/tst_qdbuspendingcall.cpp
tests/auto/dbus/qdbusservicewatcher/tst_qdbusservicewatcher.cpp
tests/auto/dbus/qdbustype/tst_qdbustype.cpp
tests/auto/network/kernel/qhostaddress/tst_qhostaddress.cpp
tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp
tests/auto/network/kernel/qnetworkinterface/tst_qnetworkinterface.cpp
tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp
tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
tests/auto/network/socket/qtcpsocket/tst_qtcpsocket.cpp
tests/auto/network/socket/qudpsocket/tst_qudpsocket.cpp
tests/auto/other/compiler/tst_compiler.cpp
tests/auto/testlib/selftests/tst_selftests.cpp
tests/benchmarks/corelib/tools/qbytearray/main.cpp
tests/benchmarks/corelib/tools/qhash/main.cpp
Copyright: 2016-2017 Intel Corporation.
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/global/qglobalstatic/tst_qglobalstatic.cpp
Copyright: 2016 Intel Corporation.
2016 Thiago Macieira <thiago@kde.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/io/qstorageinfo/tst_qstorageinfo.cpp
Copyright: 2014 Ivan Komissarov <ABBAPOH@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/network/kernel/qdnslookup_appless/tst_qdnslookup_appless.cpp
tests/auto/network/ssl/qasn1element/tst_qasn1element.cpp
Copyright: 2012-2014 Jeremy Lainé <jeremy.laine@m4x.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/gui/painting/qpagelayout/tst_qpagelayout.cpp
tests/auto/printsupport/kernel/qprintdevice/tst_qprintdevice.cpp
tests/manual/qprintdevice_dump/main.cpp
Copyright: 2014 John Layt <jlayt@kde.org>
License: GPL-3 with Qt-1.0 exception
Files: tests/manual/qtbug-52641/main.cpp
Copyright: 2016 Kai Pastor
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qversionnumber/tst_qversionnumber.cpp
Copyright: 2014 Keith Gardner <kreios4004@gmail.com>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/cmake/test(needsquoting)dirname/mywidget.cpp
tests/auto/cmake/test(needsquoting)dirname/mywidget.h
tests/auto/cmake/test_add_resource_options/myobject.cpp
tests/auto/cmake/test_add_resource_options/myobject.h
tests/auto/cmake/test_add_resources_delayed_file/main.cpp
tests/auto/cmake/test_concurrent_module/main.cpp
tests/auto/cmake/test_dbus_module/mydbusobject.cpp
tests/auto/cmake/test_dbus_module/mydbusobject.h
tests/auto/cmake/test_dependent_modules/mywidget.cpp
tests/auto/cmake/test_dependent_modules/mywidget.h
tests/auto/cmake/test_egl_lib/main.cpp
tests/auto/cmake/test_interface/main.cpp
tests/auto/cmake/test_interface/mainwindow.cpp
tests/auto/cmake/test_interface/mainwindow.h
tests/auto/cmake/test_interface_link_libraries/main.cpp
tests/auto/cmake/test_interface_link_libraries/somelib.cpp
tests/auto/cmake/test_interface_link_libraries/somelib.h
tests/auto/cmake/test_json_plugin_includes/plugin.cpp
tests/auto/cmake/test_json_plugin_includes/plugin.h
tests/auto/cmake/test_moc_macro_target/interface/myinterface.h
tests/auto/cmake/test_moc_macro_target/main_gen_test.cpp
tests/auto/cmake/test_moc_macro_target/main_wrap_test.cpp
tests/auto/cmake/test_moc_macro_target/mywrapobject.h
tests/auto/cmake/test_multiple_find_package/main.cpp
tests/auto/cmake/test_opengl_lib/main.cpp
tests/auto/cmake/test_openglextensions_module/main.cpp
tests/auto/cmake/test_platform_defs_include/main.cpp
tests/auto/cmake/test_private_includes/main.cpp
tests/auto/cmake/test_qtmainwin_library/myobject.cpp
tests/auto/cmake/test_qtmainwin_library/myobject.h
tests/auto/cmake/test_testlib_definitions/main.cpp
tests/auto/cmake/test_use_modules_function/three.cpp
tests/auto/cmake/test_use_modules_function/two.cpp
tests/auto/cmake/test_wrap_cpp_and_resources/myobject.cpp
tests/auto/cmake/test_wrap_cpp_and_resources/myobject.h
tests/auto/cmake/test_wrap_cpp_options/myobject.cpp
tests/auto/cmake/test_wrap_cpp_options/myobject.h
tests/auto/corelib/global/qhooks/tst_qhooks.cpp
tests/auto/corelib/itemmodels/qidentityproxymodel/tst_qidentityproxymodel.cpp
tests/auto/corelib/kernel/qsignalblocker/tst_qsignalblocker.cpp
tests/auto/corelib/tools/qlatin1string/tst_qlatin1string.cpp
tests/auto/corelib/tools/qpair/tst_qpair.cpp
tests/auto/corelib/tools/qregularexpression/forceoptimize/tst_qregularexpression_forceoptimize.cpp
tests/auto/corelib/tools/qstringapisymmetry/tst_qstringapisymmetry.cpp
tests/auto/corelib/tools/qstringiterator/tst_qstringiterator.cpp
tests/auto/tools/moc/cxx11-explicit-override-control.h
tests/auto/tools/moc/cxx11-final-classes.h
tests/auto/tools/moc/single-quote-digit-separator-n3781.h
tests/auto/tools/qdbuscpp2xml/test1.h
tests/auto/tools/qdbuscpp2xml/tst_qdbuscpp2xml.cpp
tests/auto/widgets/kernel/qwidgetmetatype/tst_qwidgetmetatype.cpp
tests/benchmarks/gui/painting/qcolor/tst_qcolor.cpp
tests/manual/cocoa/menus/main.cpp
tests/manual/qmetatype/declare_metatype_noninline.cpp
tests/manual/qmetatype/declare_metatype_noninline.h
tests/manual/qmetatype/tst_qmetatype.cpp
tests/manual/widgets/itemviews/tableview-span-navigation/main.cpp
util/glgen/codegenerator.cpp
util/glgen/codegenerator.h
util/glgen/legacyspecparser.cpp
util/glgen/legacyspecparser.h
util/glgen/main.cpp
util/glgen/qopenglversionfunctions.cpp.header
util/glgen/qopenglversionfunctions.h.header
util/glgen/qopenglversionfunctions__VERSION__.cpp.header
util/glgen/qopenglversionfunctions__VERSION__.h.header
util/glgen/qopenglversionfunctionsfactory.cpp.header
util/glgen/qopenglversionfunctionsfactory_p.h.header
util/glgen/specparser.h
util/glgen/xmlspecparser.cpp
util/glgen/xmlspecparser.h
Copyright: 2011-2016 Klarälvdalens Datakonsult AB, a KDAB Group company
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/gui/util/qregularexpressionvalidator/tst_qregularexpressionvalidator.cpp
tests/auto/widgets/widgets/qframe/tst_qframe.cpp
Copyright: 2012-2014 Klarälvdalens Datakonsult AB, a KDAB Group company
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/kernel/qmath/tst_qmath.cpp
Copyright: 2013 Laszlo Papp <lpapp@kde.org>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/network/ssl/qssldiffiehellmanparameters/tst_qssldiffiehellmanparameters.cpp
Copyright: 2015 Mikkel Krautz <mikkel@krautz.dk>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/kernel/qmetaenum/tst_qmetaenum.cpp
tests/auto/tools/moc/cxx11-enums.h
tests/auto/tools/moc/cxx17-namespaces.h
tests/auto/tools/moc/dollars.h
tests/benchmarks/corelib/thread/qreadwritelock/tst_qreadwritelock.cpp
Copyright: 2011-2016 Olivier Goffart <ogoffart@woboq.com>
License: GPL-3 with Qt-1.0 exception
Files: src/tools/moc/generator.cpp
src/tools/moc/moc.cpp
src/tools/moc/preprocessor.cpp
src/tools/moc/symbols.h
tests/auto/corelib/global/qlogging/tst_qlogging.cpp
tests/auto/corelib/kernel/qmetamethod/tst_qmetamethod.cpp
tests/auto/corelib/kernel/qmetaproperty/tst_qmetaproperty.cpp
tests/auto/corelib/kernel/qobject/tst_qobject.cpp
tests/auto/tools/moc/tst_moc.cpp
Copyright: 2013-2016 Olivier Goffart <ogoffart@woboq.com>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qdatetime/tst_qdatetime_mac.mm
Copyright: 2014 Petroules Corporation.
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/benchmarks/corelib/kernel/qcoreapplication/main.cpp
tests/benchmarks/corelib/tools/qstack/main.cpp
tests/benchmarks/gui/text/qtextdocument/main.cpp
Copyright: 2011-2016 Robin Burchell <robin.burchell@viroteck.net>
License: GPL-3 with Qt-1.0 exception
Files: tests/benchmarks/corelib/tools/qalgorithms/tst_qalgorithms.cpp
Copyright: 2012 Robin Burchell <robin.burchell@viroteck.net>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qmessageauthenticationcode/tst_qmessageauthenticationcode.cpp
Copyright: 2013 Ruslan Nigmatullin <euroelessar@yandex.ru>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qbytearray/tst_qbytearray_mac.mm
Copyright: 2014 Samuel Gaist <samuel.gaist@edeltech.ch>
2016 The Qt Company Ltd.
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/cmake/test_QFINDTESTDATA/tests/main.cpp
Copyright: 2016 Stephen Kelly <steveire@gmail,com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/cmake/test_private_targets/main.cpp
tests/auto/other/modeltest/dynamictreemodel.cpp
tests/auto/other/modeltest/dynamictreemodel.h
Copyright: 2009-2016 Stephen Kelly <steveire@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/widgets/itemviews/qheaderview/tst_qheaderview.cpp
Copyright: 2016 The Qt Company Ltd.
2012 Thorbjørn Lund Martsum <tmartsum@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/tools/qbytearraylist/tst_qbytearraylist.cpp
Copyright: 2016 The Qt Company Ltd.
2014 by Southwest Research Institute (R)
License: GPL-3 with Qt-1.0 exception
Files: tests/benchmarks/gui/itemviews/qheaderview/qheaderviewbench.cpp
tests/manual/corelib/tools/qhash/main.cpp
tests/manual/corelib/tools/qlist/main.cpp
tests/manual/corelib/tools/qmap/main.cpp
tests/manual/corelib/tools/qset/main.cpp
tests/manual/corelib/tools/qvarlengtharray/main.cpp
tests/manual/corelib/tools/qvector/main.cpp
tests/manual/dialogs/messageboxpanel.cpp
tests/manual/dialogs/messageboxpanel.h
tests/manual/widgets/itemviews/autoResizePrecision/tablehorz/testtable1.cpp
tests/manual/widgets/itemviews/autoResizePrecision/tablevert/testtable2.cpp
tests/manual/widgets/itemviews/autoResizePrecision/treeview/testtree.cpp
tests/manual/widgets/itemviews/delegate/example.cpp
tests/manual/widgets/itemviews/qheaderview/qheaderviewtest1.cpp
tests/manual/widgets/itemviews/qtreewidget/main.cpp
tests/manual/widgets/kernel/layoutreplace/main.cpp
tests/manual/widgets/kernel/qtooltip/main.cpp
tests/manual/widgets/kernel/sizeonhide/main.cpp
tests/manual/widgets/qgraphicsview/rubberband/rubberbandtest.cpp
Copyright: 2012-2013 Thorbjørn Lund Martsum <tmartsum@gmail.com>
License: GPL-3 with Qt-1.0 exception
Files: tests/auto/corelib/global/qfloat16/tst_qfloat16.cpp
Copyright: 2016 by Southwest Research Institute (R)
License: GPL-3 with Qt-1.0 exception
## LGPL-3 or GPL-2
Files: src/corelib/tools/qcollator_macx.cpp
src/corelib/tools/qcollator_posix.cpp
src/corelib/tools/qcollator_win.cpp
Copyright: 2013 Aleix Pol Gonzalez <aleixpol@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qcollator.cpp
src/corelib/tools/qcollator.h
src/corelib/tools/qcollator_icu.cpp
src/corelib/tools/qcollator_p.h
Copyright: 2013 Aleix Pol Gonzalez <aleixpol@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: config.tests/unix/sctp/sctp.cpp
src/network/socket/qsctpserver.cpp
src/network/socket/qsctpserver.h
src/network/socket/qsctpserver_p.h
src/network/socket/qsctpsocket.cpp
src/network/socket/qsctpsocket.h
src/network/socket/qsctpsocket_p.h
Copyright: 2016 Alex Trotsenko <alex1973tr@gmail.com>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qringbuffer.cpp
src/network/socket/qtcpserver_p.h
Copyright: 2015-2016 Alex Trotsenko <alex1973tr@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: config.tests/unix/lgmon/lgmon.cpp
config.tests/unix/objcopy/objcopy.cpp
config.tests/unix/pps/pps.cpp
config.tests/unix/qqnx_imf/qqnx_imf.cpp
config.tests/unix/slog2/slog2.cpp
mkspecs/common/qnx/qplatformdefs.h
mkspecs/qnx-armle-v7-qcc/qplatformdefs.h
mkspecs/qnx-x86-qcc/qplatformdefs.h
src/corelib/io/qfileselector.h
src/corelib/io/qfileselector_p.h
src/network/access/qabstractprotocolhandler.cpp
src/network/access/qabstractprotocolhandler_p.h
src/network/access/qspdyprotocolhandler_p.h
src/plugins/platforms/qnx/main.cpp
src/plugins/platforms/qnx/main.h
src/plugins/platforms/qnx/qqnxabstractcover.h
src/plugins/platforms/qnx/qqnxabstractnavigator.cpp
src/plugins/platforms/qnx/qqnxabstractnavigator.h
src/plugins/platforms/qnx/qqnxabstractvirtualkeyboard.cpp
src/plugins/platforms/qnx/qqnxabstractvirtualkeyboard.h
src/plugins/platforms/qnx/qqnxbuffer.cpp
src/plugins/platforms/qnx/qqnxbuffer.h
src/plugins/platforms/qnx/qqnxbuttoneventnotifier.cpp
src/plugins/platforms/qnx/qqnxbuttoneventnotifier.h
src/plugins/platforms/qnx/qqnxclipboard.cpp
src/plugins/platforms/qnx/qqnxclipboard.h
src/plugins/platforms/qnx/qqnxcursor.cpp
src/plugins/platforms/qnx/qqnxcursor.h
src/plugins/platforms/qnx/qqnxeglwindow.cpp
src/plugins/platforms/qnx/qqnxeglwindow.h
src/plugins/platforms/qnx/qqnxglcontext.cpp
src/plugins/platforms/qnx/qqnxglcontext.h
src/plugins/platforms/qnx/qqnxglobal.cpp
src/plugins/platforms/qnx/qqnxglobal.h
src/plugins/platforms/qnx/qqnxinputcontext_imf.cpp
src/plugins/platforms/qnx/qqnxinputcontext_imf.h
src/plugins/platforms/qnx/qqnxinputcontext_noimf.cpp
src/plugins/platforms/qnx/qqnxinputcontext_noimf.h
src/plugins/platforms/qnx/qqnxintegration.cpp
src/plugins/platforms/qnx/qqnxintegration.h
src/plugins/platforms/qnx/qqnxkeytranslator.h
src/plugins/platforms/qnx/qqnxlgmon.cpp
src/plugins/platforms/qnx/qqnxlgmon.h
src/plugins/platforms/qnx/qqnxnativeinterface.cpp
src/plugins/platforms/qnx/qqnxnativeinterface.h
src/plugins/platforms/qnx/qqnxnavigatoreventhandler.cpp
src/plugins/platforms/qnx/qqnxnavigatoreventhandler.h
src/plugins/platforms/qnx/qqnxnavigatoreventnotifier.cpp
src/plugins/platforms/qnx/qqnxnavigatoreventnotifier.h
src/plugins/platforms/qnx/qqnxnavigatorpps.cpp
src/plugins/platforms/qnx/qqnxnavigatorpps.h
src/plugins/platforms/qnx/qqnxrasterbackingstore.cpp
src/plugins/platforms/qnx/qqnxrasterbackingstore.h
src/plugins/platforms/qnx/qqnxrasterwindow.cpp
src/plugins/platforms/qnx/qqnxrasterwindow.h
src/plugins/platforms/qnx/qqnxscreen.cpp
src/plugins/platforms/qnx/qqnxscreen.h
src/plugins/platforms/qnx/qqnxscreeneventfilter.h
src/plugins/platforms/qnx/qqnxscreeneventhandler.cpp
src/plugins/platforms/qnx/qqnxscreeneventhandler.h
src/plugins/platforms/qnx/qqnxscreeneventthread.cpp
src/plugins/platforms/qnx/qqnxscreeneventthread.h
src/plugins/platforms/qnx/qqnxservices.cpp
src/plugins/platforms/qnx/qqnxservices.h
src/plugins/platforms/qnx/qqnxvirtualkeyboardpps.cpp
src/plugins/platforms/qnx/qqnxvirtualkeyboardpps.h
src/plugins/platforms/qnx/qqnxwindow.cpp
src/plugins/platforms/qnx/qqnxwindow.h
Copyright: 2011-2014 BlackBerry Limited (formerly Research In Motion)
License: LGPL-3 or GPL-2
Files: src/network/ssl/qsslcontext_openssl.cpp
Copyright: 2014 BlackBerry Limited (formerly Research In Motion)
2014 Governikus GmbH & Co. KG.
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/io/qfileselector.cpp
Copyright: 2013 BlackBerry Limited (formerly Research In Motion)
2016 Intel Corporation.
License: LGPL-3 or GPL-2
Files: src/widgets/styles/qpixmapstyle.cpp
src/widgets/styles/qpixmapstyle_p.h
Copyright: 2014 BlackBerry Limited (formerly Research In Motion)
2015 Klarälvdalens Datakonsult AB, a KDAB Group company
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/network/access/qhttpnetworkconnectionchannel.cpp
src/network/access/qhttpprotocolhandler.cpp
src/network/access/qhttpprotocolhandler_p.h
src/network/access/qspdyprotocolhandler.cpp
src/network/ssl/qsslconfiguration.cpp
src/network/ssl/qsslconfiguration.h
src/network/ssl/qsslconfiguration_p.h
src/network/ssl/qsslcontext_openssl_p.h
src/network/ssl/qsslsocket.cpp
src/network/ssl/qsslsocket_openssl_symbols.cpp
src/network/ssl/qsslsocket_openssl_symbols_p.h
Copyright: 2014 BlackBerry Limited (formerly Research In Motion)
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/android/jar/src/org/qtproject/qt5/android/ExtractStyle.java
src/plugins/platforms/android/androidjniclipboard.cpp
src/plugins/platforms/android/androidjniclipboard.h
src/plugins/platforms/android/androidjniinput.h
src/plugins/platforms/android/androidjnimenu.cpp
src/plugins/platforms/android/androidjnimenu.h
src/plugins/platforms/android/androidplatformplugin.cpp
src/plugins/platforms/android/androidsurfaceclient.h
src/plugins/platforms/android/extract.cpp
src/plugins/platforms/android/qandroidassetsfileenginehandler.cpp
src/plugins/platforms/android/qandroidassetsfileenginehandler.h
src/plugins/platforms/android/qandroideventdispatcher.cpp
src/plugins/platforms/android/qandroideventdispatcher.h
src/plugins/platforms/android/qandroidplatformclipboard.cpp
src/plugins/platforms/android/qandroidplatformclipboard.h
src/plugins/platforms/android/qandroidplatformdialoghelpers.cpp
src/plugins/platforms/android/qandroidplatformdialoghelpers.h
src/plugins/platforms/android/qandroidplatformfontdatabase.cpp
src/plugins/platforms/android/qandroidplatformfontdatabase.h
src/plugins/platforms/android/qandroidplatformintegration.cpp
src/plugins/platforms/android/qandroidplatformintegration.h
src/plugins/platforms/android/qandroidplatformmenu.cpp
src/plugins/platforms/android/qandroidplatformmenu.h
src/plugins/platforms/android/qandroidplatformmenubar.cpp
src/plugins/platforms/android/qandroidplatformmenubar.h
src/plugins/platforms/android/qandroidplatformmenuitem.cpp
src/plugins/platforms/android/qandroidplatformmenuitem.h
src/plugins/platforms/android/qandroidplatformservices.cpp
src/plugins/platforms/android/qandroidplatformservices.h
src/plugins/platforms/android/qandroidplatformtheme.cpp
src/plugins/platforms/android/qandroidplatformtheme.h
src/widgets/styles/qandroidstyle.cpp
src/widgets/styles/qandroidstyle_p.h
Copyright: 2012-2014 BogDan Vatra <bogdan@kde.org>
License: LGPL-3 or GPL-2
Files: src/plugins/platforms/android/androidjniinput.cpp
src/plugins/platforms/android/qandroidinputcontext.h
Copyright: 2012 BogDan Vatra <bogdan@kde.org>
2016 Olivier Goffart <ogoffart@woboq.com>
License: LGPL-3 or GPL-2
Files: src/android/jar/src/org/qtproject/qt5/android/QtActivityDelegate.java
src/plugins/platforms/android/qandroidinputcontext.cpp
Copyright: 2012-2017 BogDan Vatra <bogdan@kde.org>
2016 Olivier Goffart <ogoffart@woboq.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/android/jar/src/org/qtproject/qt5/android/QtEditText.java
src/android/jar/src/org/qtproject/qt5/android/QtInputConnection.java
src/android/jar/src/org/qtproject/qt5/android/QtLayout.java
src/android/jar/src/org/qtproject/qt5/android/QtNative.java
src/android/jar/src/org/qtproject/qt5/android/QtNativeLibrariesDir.java
src/android/jar/src/org/qtproject/qt5/android/QtServiceDelegate.java
src/android/jar/src/org/qtproject/qt5/android/QtSurface.java
src/plugins/platforms/android/androidjnimain.cpp
src/plugins/platforms/android/androidjnimain.h
src/plugins/platforms/android/qandroidplatformbackingstore.cpp
src/plugins/platforms/android/qandroidplatformbackingstore.h
src/plugins/platforms/android/qandroidplatformopenglcontext.cpp
src/plugins/platforms/android/qandroidplatformopenglcontext.h
src/plugins/platforms/android/qandroidplatformopenglwindow.cpp
src/plugins/platforms/android/qandroidplatformopenglwindow.h
src/plugins/platforms/android/qandroidplatformscreen.cpp
src/plugins/platforms/android/qandroidplatformscreen.h
src/plugins/platforms/android/qandroidplatformwindow.cpp
src/plugins/platforms/android/qandroidplatformwindow.h
Copyright: 2012-2016 BogDan Vatra <bogdan@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/testlib/qteamcitylogger.cpp
src/testlib/qteamcitylogger_p.h
Copyright: 2016 Borgar Ovsthus
License: LGPL-3 or GPL-2
Files: src/plugins/platforms/mirclient/qmirclientappstatecontroller.cpp
src/plugins/platforms/mirclient/qmirclientappstatecontroller.h
src/plugins/platforms/mirclient/qmirclientbackingstore.cpp
src/plugins/platforms/mirclient/qmirclientbackingstore.h
src/plugins/platforms/mirclient/qmirclientclipboard.cpp
src/plugins/platforms/mirclient/qmirclientclipboard.h
src/plugins/platforms/mirclient/qmirclientcursor.cpp
src/plugins/platforms/mirclient/qmirclientcursor.h
src/plugins/platforms/mirclient/qmirclientdebugextension.cpp
src/plugins/platforms/mirclient/qmirclientdebugextension.h
src/plugins/platforms/mirclient/qmirclientdesktopwindow.cpp
src/plugins/platforms/mirclient/qmirclientdesktopwindow.h
src/plugins/platforms/mirclient/qmirclientglcontext.cpp
src/plugins/platforms/mirclient/qmirclientglcontext.h
src/plugins/platforms/mirclient/qmirclientinput.cpp
src/plugins/platforms/mirclient/qmirclientinput.h
src/plugins/platforms/mirclient/qmirclientintegration.cpp
src/plugins/platforms/mirclient/qmirclientintegration.h
src/plugins/platforms/mirclient/qmirclientlogging.h
src/plugins/platforms/mirclient/qmirclientnativeinterface.cpp
src/plugins/platforms/mirclient/qmirclientnativeinterface.h
src/plugins/platforms/mirclient/qmirclientorientationchangeevent_p.h
src/plugins/platforms/mirclient/qmirclientplatformservices.cpp
src/plugins/platforms/mirclient/qmirclientplatformservices.h
src/plugins/platforms/mirclient/qmirclientplugin.cpp
src/plugins/platforms/mirclient/qmirclientplugin.h
src/plugins/platforms/mirclient/qmirclientscreen.cpp
src/plugins/platforms/mirclient/qmirclientscreen.h
src/plugins/platforms/mirclient/qmirclientscreenobserver.cpp
src/plugins/platforms/mirclient/qmirclientscreenobserver.h
src/plugins/platforms/mirclient/qmirclienttheme.cpp
src/plugins/platforms/mirclient/qmirclienttheme.h
src/plugins/platforms/mirclient/qmirclientwindow.cpp
src/plugins/platforms/mirclient/qmirclientwindow.h
Copyright: 2014-2016 Canonical, Ltd.
License: LGPL-3 or GPL-2
Files: mkspecs/common/android/qplatformdefs.h
src/corelib/kernel/qsharedmemory_android.cpp
src/corelib/kernel/qsystemsemaphore_android.cpp
src/network/kernel/qdnslookup_android.cpp
Copyright: 2012 Collabora Ltd, author <robin.burchell@collabora.co.uk>
License: LGPL-3 or GPL-2
Files: src/corelib/io/qlockfile.h
src/corelib/io/qlockfile_p.h
Copyright: 2013 David Faure <faure+bluesystems@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/io/qlockfile_unix.cpp
Copyright: 2013 David Faure <faure+bluesystems@kde.org>
2016 Intel Corporation.
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/io/qlockfile.cpp
src/corelib/io/qlockfile_win.cpp
Copyright: 2013 David Faure <faure+bluesystems@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/io/qsavefile.cpp
src/corelib/io/qsavefile.h
src/corelib/io/qsavefile_p.h
Copyright: 2012-2013 David Faure <faure@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qcommandlineoption.cpp
src/corelib/tools/qcommandlineparser.cpp
Copyright: 2013 David Faure <faure@kde.org>
2013 Laszlo Papp <lpapp@kde.org>
License: LGPL-3 or GPL-2
Files: src/platformsupport/themes/genericunix/dbusmenu/qdbusmenubar.cpp
src/platformsupport/themes/genericunix/dbusmenu/qdbusmenubar_p.h
src/platformsupport/themes/genericunix/dbusmenu/qdbusmenuregistrarproxy.cpp
src/platformsupport/themes/genericunix/dbusmenu/qdbusmenuregistrarproxy_p.h
Copyright: 2016 Dmitry Shachnev <mitya57@gmail.com>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qtimezoneprivate_android.cpp
Copyright: 2014 Drew Parsons <dparsons@emerall.com>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qhash.cpp
Copyright: 2012 Giuseppe D'Angelo <dangelog@gmail.com>.
2016 Intel Corporation.
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qregularexpression.h
Copyright: 2012 Giuseppe D'Angelo <dangelog@gmail.com>.
2012 Klarälvdalens Datakonsult AB, a KDAB Group company
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qregularexpression.cpp
Copyright: 2016 Giuseppe D'Angelo <dangelog@gmail.com>.
2016 Klarälvdalens Datakonsult AB, a KDAB Group company
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/network/ssl/qsslsocket_openssl.cpp
Copyright: 2014 Governikus GmbH & Co. KG
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/network/ssl/qsslellipticcurve.cpp
src/network/ssl/qsslellipticcurve.h
src/network/ssl/qsslellipticcurve_dummy.cpp
src/network/ssl/qsslellipticcurve_openssl.cpp
src/network/ssl/qsslpresharedkeyauthenticator.cpp
src/network/ssl/qsslpresharedkeyauthenticator.h
src/network/ssl/qsslpresharedkeyauthenticator_p.h
Copyright: 2014 Governikus GmbH & Co. KG.
License: LGPL-3 or GPL-2
Files: mkspecs/common/integrity/qplatformdefs.h
mkspecs/integrity-armv7-imx6/qplatformdefs.h
mkspecs/integrity-armv7/qplatformdefs.h
mkspecs/integrity-x86/qplatformdefs.h
src/platformsupport/input/integrityhid/qintegrityhidmanager.cpp
src/platformsupport/input/integrityhid/qintegrityhidmanager.h
src/plugins/platforms/integrity/qintegrityhidmanager.cpp
src/plugins/platforms/integrity/qintegrityhidmanager.h
Copyright: 2015 Green Hills Software
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qstring_mips_dsp_asm.S
src/gui/image/qimage_mips_dspr2.cpp
src/gui/image/qimage_mips_dspr2_asm.S
src/gui/painting/qdrawhelper_mips_dsp.cpp
src/gui/painting/qdrawhelper_mips_dsp_asm.S
src/gui/painting/qdrawhelper_mips_dsp_p.h
src/gui/painting/qdrawhelper_mips_dspr2_asm.S
src/gui/painting/qt_mips_asm_dsp_p.h
Copyright: 2013 Imagination Technologies Limited, www.imgtec.com
License: LGPL-3 or GPL-2
Files: config.tests/common/atomic64/atomic64.cpp
config.tests/common/atomicfptr/atomicfptr.cpp
config.tests/common/avx2/avx2.cpp
config.tests/common/avx512/avx512.cpp
config.tests/common/c++14/c++14.cpp
config.tests/common/c++1z/c++1z.cpp
config.tests/qpa/directfb/directfb.cpp
config.tests/unix/cloexec/cloexec.cpp
config.tests/unix/eventfd/main.cpp
mkspecs/features/data/unix/findclasslist.pl
src/corelib/global/qglobal_p.h
src/corelib/global/qglobalstatic.h
src/corelib/global/qglobalstatic.qdoc
src/corelib/global/qversiontagging.cpp
src/corelib/global/qversiontagging.h
src/corelib/io/forkfd_qt.cpp
src/corelib/io/qipaddress.cpp
src/corelib/io/qipaddress_p.h
src/corelib/io/qurlquery.cpp
src/corelib/io/qurlquery.h
src/corelib/io/qurlrecode.cpp
src/corelib/kernel/qdeadlinetimer.cpp
src/corelib/kernel/qdeadlinetimer.h
src/corelib/plugin/qmachparser.cpp
src/corelib/plugin/qmachparser_p.h
src/corelib/tools/qstring_compat.cpp
src/corelib/tools/qstringalgorithms_p.h
src/corelib/tools/qvector_msvc.cpp
src/dbus/dbus_minimal_p.h
src/network/kernel/qnetworkdatagram.cpp
src/network/kernel/qnetworkdatagram.h
src/network/kernel/qnetworkdatagram_p.h
src/opengl/qtopenglglobal.h
src/printsupport/kernel/qtprintsupportglobal.h
src/testlib/qbenchmarkperfevents.cpp
src/testlib/qbenchmarkperfevents_p.h
src/testlib/qcsvbenchmarklogger.cpp
src/testlib/qcsvbenchmarklogger_p.h
src/xml/qtxmlglobal.h
Copyright: 2015-2016 Intel Corporation.
License: LGPL-3 or GPL-2
Files: src/corelib/io/qstorageinfo_unix.cpp
Copyright: 2016 Intel Corporation.
2014 Ivan Komissarov <ABBAPOH@gmail.com>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qversionnumber.cpp
src/corelib/tools/qversionnumber.h
Copyright: 2016 Intel Corporation.
2014 Keith Gardner <kreios4004@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/global/qlogging.cpp
src/corelib/kernel/qobject.cpp
src/corelib/kernel/qvariant.cpp
src/corelib/thread/qmutex.cpp
src/corelib/thread/qmutex_p.h
src/corelib/thread/qreadwritelock.cpp
Copyright: 2016 Intel Corporation.
2012-2016 Olivier Goffart <ogoffart@woboq.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/io/qfilesystemengine_unix.cpp
Copyright: 2017 Intel Corporation.
2013 Samuel Gaist <samuel.gaist@edeltech.ch>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: bin/syncqt.pl
config.tests/arch/arch.cpp
src/corelib/arch/qatomic_msvc.h
src/corelib/codecs/qutfcodec.cpp
src/corelib/codecs/qutfcodec_p.h
src/corelib/global/archdetect.cpp
src/corelib/global/qcompilerdetection.h
src/corelib/global/qendian.h
src/corelib/global/qglobal.cpp
src/corelib/global/qglobal.h
src/corelib/global/qlibraryinfo.cpp
src/corelib/global/qnumeric_p.h
src/corelib/global/qprocessordetection.h
src/corelib/global/qsysinfo.h
src/corelib/global/qtypeinfo.h
src/corelib/io/qdebug.cpp
src/corelib/io/qdebug.h
src/corelib/io/qfile.h
src/corelib/io/qfsfileengine.cpp
src/corelib/io/qprocess.cpp
src/corelib/io/qprocess_p.h
src/corelib/io/qprocess_unix.cpp
src/corelib/io/qprocess_win.cpp
src/corelib/io/qstandardpaths.cpp
src/corelib/io/qtemporarydir.cpp
src/corelib/io/qtextstream.cpp
src/corelib/io/qtextstream_p.h
src/corelib/io/qurl.cpp
src/corelib/io/qurl.h
src/corelib/io/qurl_p.h
src/corelib/io/qurlidna.cpp
src/corelib/json/qjson_p.h
src/corelib/json/qjsonparser.cpp
src/corelib/json/qjsonwriter.cpp
src/corelib/kernel/qcore_unix.cpp
src/corelib/kernel/qcore_unix_p.h
src/corelib/kernel/qcoreapplication.cpp
src/corelib/kernel/qcoreevent.cpp
src/corelib/kernel/qelapsedtimer_unix.cpp
src/corelib/kernel/qeventdispatcher_unix.cpp
src/corelib/kernel/qeventdispatcher_win.cpp
src/corelib/kernel/qobjectdefs.h
src/corelib/kernel/qtimer.cpp
src/corelib/kernel/qtimerinfo_unix.cpp
src/corelib/kernel/qvariant_p.h
src/corelib/plugin/qlibrary.cpp
src/corelib/plugin/qlibrary_p.h
src/corelib/thread/qatomic.cpp
src/corelib/thread/qatomic.h
src/corelib/thread/qmutex_linux.cpp
src/corelib/thread/qthread.cpp
src/corelib/thread/qthread_p.h
src/corelib/thread/qthread_unix.cpp
src/corelib/thread/qwaitcondition_unix.cpp
src/corelib/tools/qarraydata.cpp
src/corelib/tools/qbitarray.cpp
src/corelib/tools/qbytearray.cpp
src/corelib/tools/qbytearray.h
src/corelib/tools/qdatetime.cpp
src/corelib/tools/qdatetime.h
src/corelib/tools/qdatetime_p.h
src/corelib/tools/qlist.cpp
src/corelib/tools/qlocale.cpp
src/corelib/tools/qlocale_p.h
src/corelib/tools/qlocale_tools.cpp
src/corelib/tools/qlocale_win.cpp
src/corelib/tools/qsharedpointer.cpp
src/corelib/tools/qsharedpointer_impl.h
src/corelib/tools/qsimd.cpp
src/corelib/tools/qsimd_p.h
src/corelib/tools/qstring.cpp
src/corelib/tools/qstring.h
src/corelib/tools/qstringlist.h
src/dbus/qdbus_symbols.cpp
src/dbus/qdbus_symbols_p.h
src/dbus/qdbusabstractadaptor.cpp
src/dbus/qdbusabstractinterface.cpp
src/dbus/qdbusabstractinterface_p.h
src/dbus/qdbusconnection.cpp
src/dbus/qdbusconnection.h
src/dbus/qdbusconnection_p.h
src/dbus/qdbusconnectionmanager_p.h
src/dbus/qdbusintegrator.cpp
src/dbus/qdbusintegrator_p.h
src/dbus/qdbusinternalfilters.cpp
src/dbus/qdbusmessage.cpp
src/dbus/qdbusmetaobject.cpp
src/dbus/qdbuspendingcall.cpp
src/dbus/qdbuspendingcall_p.h
src/dbus/qdbuspendingreply.cpp
src/dbus/qdbusserver.cpp
src/dbus/qdbusserver.h
src/dbus/qdbusthreaddebug_p.h
src/dbus/qdbusutil_p.h
src/gui/kernel/qguiapplication.cpp
src/gui/painting/qdrawhelper.cpp
src/gui/painting/qdrawhelper_sse2.cpp
src/network/kernel/qhostaddress.cpp
src/network/kernel/qhostaddress.h
src/network/kernel/qnetworkinterface.cpp
src/network/kernel/qnetworkinterface_unix.cpp
src/network/kernel/qnetworkinterface_win.cpp
src/network/socket/qabstractsocket.cpp
src/network/socket/qabstractsocketengine_p.h
src/network/socket/qnativesocketengine.cpp
src/network/socket/qnativesocketengine_p.h
src/network/socket/qnativesocketengine_unix.cpp
src/network/socket/qnativesocketengine_win.cpp
src/network/socket/qudpsocket.cpp
src/testlib/qbenchmarkmetric.cpp
src/testlib/qbenchmarkmetric.h
src/testlib/qtest.h
src/testlib/qtestcase.cpp
src/widgets/kernel/qwidget.cpp
Copyright: 2016 Intel Corporation.
2016-2017 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qbytearraylist.h
Copyright: 2016 Intel Corporation.
2016 The Qt Company Ltd.
2014 by Southwest Research Institute (R)
License: LGPL-3 or GPL-2
Files: src/corelib/arch/qatomic_cxx11.h
src/corelib/thread/qbasicatomic.h
src/corelib/thread/qgenericatomic.h
Copyright: 2016 Intel Corporation.
2011 Thiago Macieira <thiago@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/doc/snippets/code/src_corelib_io_qstorageinfo.cpp
src/corelib/io/qstorageinfo.cpp
src/corelib/io/qstorageinfo.h
src/corelib/io/qstorageinfo_mac.cpp
src/corelib/io/qstorageinfo_p.h
src/corelib/io/qstorageinfo_stub.cpp
src/corelib/io/qstorageinfo_win.cpp
Copyright: 2014 Ivan Komissarov <ABBAPOH@gmail.com>
License: LGPL-3 or GPL-2
Files: src/widgets/widgets/qkeysequenceedit.cpp
src/widgets/widgets/qkeysequenceedit.h
src/widgets/widgets/qkeysequenceedit_p.h
Copyright: 2013 Ivan Komissarov <ABBAPOH@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/network/kernel/qdnslookup.cpp
src/network/kernel/qdnslookup.h
src/network/kernel/qdnslookup_p.h
src/network/kernel/qdnslookup_unix.cpp
src/network/kernel/qdnslookup_win.cpp
src/network/ssl/qasn1element.cpp
src/network/ssl/qasn1element_p.h
src/network/ssl/qsslkey_mac.cpp
src/network/ssl/qsslkey_qt.cpp
src/network/ssl/qsslsocket_mac.cpp
src/network/ssl/qsslsocket_mac_p.h
Copyright: 2012-2014 Jeremy Lainé <jeremy.laine@m4x.org>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qtimezone.cpp
src/corelib/tools/qtimezone.h
src/corelib/tools/qtimezoneprivate.cpp
src/corelib/tools/qtimezoneprivate_data_p.h
src/corelib/tools/qtimezoneprivate_icu.cpp
src/corelib/tools/qtimezoneprivate_mac.mm
src/corelib/tools/qtimezoneprivate_p.h
src/corelib/tools/qtimezoneprivate_tz.cpp
src/corelib/tools/qtimezoneprivate_win.cpp
src/gui/painting/qpagelayout.cpp
src/gui/painting/qpagelayout.h
src/gui/painting/qpagesize.cpp
src/gui/painting/qpagesize.h
src/plugins/platforms/cocoa/qcocoaprintdevice.h
src/plugins/platforms/cocoa/qcocoaprintdevice.mm
src/plugins/printsupport/cups/qppdprintdevice.cpp
src/plugins/printsupport/cups/qppdprintdevice.h
src/plugins/printsupport/windows/qwindowsprintdevice.h
src/printsupport/kernel/qplatformprintdevice.cpp
src/printsupport/kernel/qplatformprintdevice.h
src/printsupport/kernel/qprint_p.h
src/printsupport/kernel/qprintdevice.cpp
src/printsupport/kernel/qprintdevice_p.h
Copyright: 2013-2014 John Layt <jlayt@kde.org>
License: LGPL-3 or GPL-2
Files: src/plugins/printsupport/cups/qcupsprintersupport.cpp
src/plugins/printsupport/cups/qcupsprintersupport_p.h
src/plugins/printsupport/windows/qwindowsprintdevice.cpp
Copyright: 2014 John Layt <jlayt@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/platformsupport/input/evdevtouch/qevdevtouchfilter_p.h
Copyright: 2016 Jolla Ltd, author: <gunnar.sletta@jollamobile.com>
License: LGPL-3 or GPL-2
Files: src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp
src/platformsupport/input/evdevtouch/qevdevtouchhandler_p.h
Copyright: 2016 Jolla Ltd, author: <gunnar.sletta@jollamobile.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: config.tests/unix/journald/journald.c
config.tests/unix/mtdev/mtdev.cpp
Copyright: 2013-2014 Jolla Ltd, author: <robin.burchell@jollamobile.com>
License: LGPL-3 or GPL-2
Files: config.tests/unix/pcre2/pcre2.cpp
mkspecs/haiku-g++/qplatformdefs.h
src/3rdparty/pcre2/import_from_pcre2_tarball.sh
src/corelib/global/qhooks.cpp
src/corelib/global/qhooks_p.h
src/corelib/global/qtypetraits.h
src/corelib/io/qstandardpaths_haiku.cpp
src/corelib/itemmodels/qidentityproxymodel.cpp
src/corelib/itemmodels/qidentityproxymodel.h
src/corelib/tools/qstringiterator.qdoc
src/gui/opengl/qopengldebug.cpp
src/gui/opengl/qopengldebug.h
src/gui/opengl/qopenglfunctions_1_0.cpp
src/gui/opengl/qopenglfunctions_1_1.cpp
src/gui/opengl/qopenglfunctions_1_2.cpp
src/gui/opengl/qopenglfunctions_1_3.cpp
src/gui/opengl/qopenglfunctions_1_4.cpp
src/gui/opengl/qopenglfunctions_1_5.cpp
src/gui/opengl/qopenglfunctions_2_0.cpp
src/gui/opengl/qopenglfunctions_2_1.cpp
src/gui/opengl/qopenglfunctions_3_0.cpp
src/gui/opengl/qopenglfunctions_3_1.cpp
src/gui/opengl/qopenglfunctions_3_2_compatibility.cpp
src/gui/opengl/qopenglfunctions_3_2_core.cpp
src/gui/opengl/qopenglfunctions_3_3_compatibility.cpp
src/gui/opengl/qopenglfunctions_3_3_core.cpp
src/gui/opengl/qopenglfunctions_4_0_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_0_core.cpp
src/gui/opengl/qopenglfunctions_4_1_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_1_core.cpp
src/gui/opengl/qopenglfunctions_4_2_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_2_core.cpp
src/gui/opengl/qopenglfunctions_4_3_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_3_core.cpp
src/gui/opengl/qopenglfunctions_4_4_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_4_core.cpp
src/gui/opengl/qopenglfunctions_4_5_compatibility.cpp
src/gui/opengl/qopenglfunctions_4_5_core.cpp
src/gui/opengl/qopenglfunctions_es2.cpp
src/gui/opengl/qopenglfunctions_es2.h
src/gui/opengl/qopenglpixeltransferoptions.cpp
src/gui/opengl/qopenglpixeltransferoptions.h
src/gui/opengl/qopenglqueryhelper_p.h
src/gui/opengl/qopengltexture.cpp
src/gui/opengl/qopengltexture.h
src/gui/opengl/qopengltexture_p.h
src/gui/opengl/qopengltexturehelper.cpp
src/gui/opengl/qopengltexturehelper_p.h
src/gui/opengl/qopengltimerquery.cpp
src/gui/opengl/qopengltimerquery.h
src/gui/opengl/qopenglversionfunctionsfactory.cpp
src/gui/opengl/qopenglversionfunctionsfactory_p.h
src/gui/opengl/qopenglvertexarrayobject.cpp
src/gui/opengl/qopenglvertexarrayobject.h
src/gui/opengl/qopenglvertexarrayobject_p.h
src/plugins/platforms/cocoa/qcocoamenu.mm
src/plugins/platforms/cocoa/qcocoamenubar.mm
src/plugins/platforms/cocoa/qcocoamenuitem.mm
src/plugins/platforms/haiku/main.cpp
src/plugins/platforms/haiku/main.h
src/plugins/platforms/haiku/qhaikuapplication.cpp
src/plugins/platforms/haiku/qhaikuapplication.h
src/plugins/platforms/haiku/qhaikubuffer.cpp
src/plugins/platforms/haiku/qhaikubuffer.h
src/plugins/platforms/haiku/qhaikuclipboard.cpp
src/plugins/platforms/haiku/qhaikuclipboard.h
src/plugins/platforms/haiku/qhaikucursor.cpp
src/plugins/platforms/haiku/qhaikucursor.h
src/plugins/platforms/haiku/qhaikuintegration.cpp
src/plugins/platforms/haiku/qhaikuintegration.h
src/plugins/platforms/haiku/qhaikukeymapper.cpp
src/plugins/platforms/haiku/qhaikukeymapper.h
src/plugins/platforms/haiku/qhaikurasterbackingstore.cpp
src/plugins/platforms/haiku/qhaikurasterbackingstore.h
src/plugins/platforms/haiku/qhaikurasterwindow.cpp
src/plugins/platforms/haiku/qhaikurasterwindow.h
src/plugins/platforms/haiku/qhaikuscreen.cpp
src/plugins/platforms/haiku/qhaikuscreen.h
src/plugins/platforms/haiku/qhaikuservices.cpp
src/plugins/platforms/haiku/qhaikuservices.h
src/plugins/platforms/haiku/qhaikuutils.cpp
src/plugins/platforms/haiku/qhaikuutils.h
src/plugins/platforms/haiku/qhaikuwindow.cpp
src/plugins/platforms/haiku/qhaikuwindow.h
Copyright: 2011-2016 Klarälvdalens Datakonsult AB, a KDAB Group company
License: LGPL-3 or GPL-2
Files: src/corelib/kernel/qsharedmemory_posix.cpp
src/corelib/kernel/qsystemsemaphore_posix.cpp
Copyright: 2015 Klarälvdalens Datakonsult AB, a KDAB Group company
2015 Konstantin Ritt <ritt.ks@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/mimetypes/qmimedatabase.cpp
src/corelib/mimetypes/qmimedatabase.h
src/corelib/mimetypes/qmimedatabase_p.h
src/corelib/mimetypes/qmimeprovider.cpp
src/corelib/mimetypes/qmimeprovider_p.h
src/corelib/mimetypes/qmimetype.cpp
src/corelib/mimetypes/qmimetype.h
src/corelib/tools/qhash.h
src/corelib/tools/qhashfunctions.h
src/corelib/tools/qstringiterator_p.h
src/gui/kernel/qplatformmenu.h
src/gui/kernel/qplatformsystemtrayicon.cpp
src/gui/kernel/qplatformsystemtrayicon.h
src/gui/opengl/qopenglfunctions_1_0.h
src/gui/opengl/qopenglfunctions_1_1.h
src/gui/opengl/qopenglfunctions_1_2.h
src/gui/opengl/qopenglfunctions_1_3.h
src/gui/opengl/qopenglfunctions_1_4.h
src/gui/opengl/qopenglfunctions_1_5.h
src/gui/opengl/qopenglfunctions_2_0.h
src/gui/opengl/qopenglfunctions_2_1.h
src/gui/opengl/qopenglfunctions_3_0.h
src/gui/opengl/qopenglfunctions_3_1.h
src/gui/opengl/qopenglfunctions_3_2_compatibility.h
src/gui/opengl/qopenglfunctions_3_2_core.h
src/gui/opengl/qopenglfunctions_3_3_compatibility.h
src/gui/opengl/qopenglfunctions_3_3_core.h
src/gui/opengl/qopenglfunctions_4_0_compatibility.h
src/gui/opengl/qopenglfunctions_4_0_core.h
src/gui/opengl/qopenglfunctions_4_1_compatibility.h
src/gui/opengl/qopenglfunctions_4_1_core.h
src/gui/opengl/qopenglfunctions_4_2_compatibility.h
src/gui/opengl/qopenglfunctions_4_2_core.h
src/gui/opengl/qopenglfunctions_4_3_compatibility.h
src/gui/opengl/qopenglfunctions_4_3_core.h
src/gui/opengl/qopenglfunctions_4_4_compatibility.h
src/gui/opengl/qopenglfunctions_4_4_core.h
src/gui/opengl/qopenglfunctions_4_5_compatibility.h
src/gui/opengl/qopenglfunctions_4_5_core.h
src/gui/opengl/qopenglversionfunctions.cpp
src/gui/opengl/qopenglversionfunctions.h
src/gui/util/qvalidator.cpp
src/gui/util/qvalidator.h
src/plugins/platforms/cocoa/qcocoamenu.h
src/plugins/platforms/cocoa/qcocoamenubar.h
src/plugins/platforms/cocoa/qcocoamenuitem.h
src/plugins/platforms/cocoa/qcocoasystemtrayicon.h
src/plugins/platforms/cocoa/qcocoasystemtrayicon.mm
Copyright: 2012-2015 Klarälvdalens Datakonsult AB, a KDAB Group company
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/gui/text/qharfbuzzng.cpp
src/gui/text/qharfbuzzng_p.h
Copyright: 2013 Konstantin Ritt
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/platformheaders/waylandfunctions/qwaylandwindowfunctions.h
Copyright: 2016 LG Electronics Ltd, author: mikko.levonmaa@lge.com
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qcommandlineoption.h
src/corelib/tools/qcommandlineparser.h
Copyright: 2013 Laszlo Papp <lpapp@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/kernel/qmath.cpp
Copyright: 2013 Laszlo Papp <lpapp@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/platformsupport/themes/genericunix/dbustray/qdbustraytypes.cpp
src/platformsupport/themes/genericunix/dbustray/qdbustraytypes_p.h
Copyright: 2009 Marco Martin <notmart@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/gui/kernel/qplatformmenu.cpp
Copyright: 2014 Martin Graesslin <mgraesslin@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/network/ssl/qssldiffiehellmanparameters.cpp
src/network/ssl/qssldiffiehellmanparameters.h
src/network/ssl/qssldiffiehellmanparameters_dummy.cpp
src/network/ssl/qssldiffiehellmanparameters_openssl.cpp
src/network/ssl/qssldiffiehellmanparameters_p.h
Copyright: 2015 Mikkel Krautz <mikkel@krautz.dk>
License: LGPL-3 or GPL-2
Files: src/plugins/generic/bsdkeyboard/main.cpp
src/plugins/generic/bsdkeyboard/qbsdkeyboard.cpp
src/plugins/generic/bsdkeyboard/qbsdkeyboard.h
src/plugins/generic/bsdmouse/main.cpp
src/plugins/generic/bsdmouse/qbsdmouse.cpp
src/plugins/generic/bsdmouse/qbsdmouse.h
Copyright: 2015-2016 Oleksandr Tymoshenko <gonzo@bluezbox.com>
License: LGPL-3 or GPL-2
Files: src/plugins/generic/bsdkeyboard/qbsdkeyboard_defaultmap.h
src/plugins/platforms/bsdfb/main.cpp
src/plugins/platforms/bsdfb/qbsdfbintegration.cpp
src/plugins/platforms/bsdfb/qbsdfbscreen.cpp
src/plugins/platforms/bsdfb/qbsdfbscreen.h
Copyright: 2015-2016 Oleksandr Tymoshenko <gonzo@bluezbox.com>
2017 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/android/jar/src/org/qtproject/qt5/android/CursorHandle.java
src/android/jar/src/org/qtproject/qt5/android/EditMenu.java
src/android/jar/src/org/qtproject/qt5/android/EditPopupMenu.java
Copyright: 2016 Olivier Goffart <ogoffart@woboq.com>
License: LGPL-3 or GPL-2
Files: src/corelib/kernel/qmetaobject.cpp
src/corelib/kernel/qmetaobject.h
src/corelib/kernel/qmetaobject_p.h
src/corelib/kernel/qmetatype.h
src/corelib/kernel/qobject.h
src/corelib/kernel/qobject_p.h
src/corelib/kernel/qobjectdefs_impl.h
src/corelib/thread/qmutex_unix.cpp
src/corelib/thread/qreadwritelock_p.h
src/gui/image/qicon.cpp
src/widgets/widgets/qdockarealayout.cpp
src/widgets/widgets/qmainwindowlayout.cpp
Copyright: 2013-2016 Olivier Goffart <ogoffart@woboq.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldevice.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldevice.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldevicescreen.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldevicescreen.h
Copyright: 2016 Pelagicore AG
License: LGPL-3 or GPL-2
Files: src/platformsupport/kmsconvenience/qkmsdevice.cpp
src/platformsupport/kmsconvenience/qkmsdevice_p.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmcursor.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmdevice.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmdevice.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsintegration.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsintegration.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsscreen.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsscreen.h
Copyright: 2016 Pelagicore AG
2015 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmmain.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldeviceintegration.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_egldevice/qeglfskmsegldeviceintegration.h
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsdevice.cpp
src/plugins/platforms/eglfs/deviceintegration/eglfs_kms_support/qeglfskmsdevice.h
Copyright: 2016 Pelagicore AG
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/kernel/qcore_foundation.mm
Copyright: 2014 Petroules Corporation.
2014 Samuel Gaist <samuel.gaist@edeltech.ch>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: mkspecs/qnx-aarch64le-qcc/qplatformdefs.h
mkspecs/qnx-x86-64-qcc/qplatformdefs.h
Copyright: 2016 QNX Software Systems. All rights reserved.
License: LGPL-3 or GPL-2
Files: src/network/ssl/qsslcertificateextension.cpp
src/network/ssl/qsslcertificateextension.h
src/network/ssl/qsslcertificateextension_p.h
Copyright: 2011 Richard J. Moore <rich@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qcryptographichash.cpp
src/corelib/tools/qcryptographichash.h
Copyright: 2013 Richard J. Moore <rich@kde.org>.
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/plugins/generic/tuiotouch/main.cpp
src/plugins/generic/tuiotouch/qoscbundle.cpp
src/plugins/generic/tuiotouch/qoscbundle_p.h
src/plugins/generic/tuiotouch/qoscmessage.cpp
src/plugins/generic/tuiotouch/qoscmessage_p.h
src/plugins/generic/tuiotouch/qtuio_p.h
src/plugins/generic/tuiotouch/qtuiocursor_p.h
src/plugins/generic/tuiotouch/qtuiohandler.cpp
src/plugins/generic/tuiotouch/qtuiohandler_p.h
Copyright: 2014 Robin Burchell <robin.burchell@viroteck.net>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qmessageauthenticationcode.cpp
src/corelib/tools/qmessageauthenticationcode.h
Copyright: 2013 Ruslan Nigmatullin <euroelessar@yandex.ru>
License: LGPL-3 or GPL-2
Files: src/widgets/itemviews/qlistview.cpp
Copyright: 2013 Samuel Gaist <samuel.gaist@deltech.ch>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/gui/kernel/qplatformsessionmanager.cpp
src/gui/kernel/qplatformsessionmanager.h
Copyright: 2013 Samuel Gaist <samuel.gaist@edeltech.ch>
2013 Teo Mrnjavac <teo@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/kernel/qcoreapplication_win.cpp
src/gui/image/qpnghandler.cpp
src/gui/kernel/qsessionmanager_p.h
src/platformsupport/eventdispatchers/qwindowsguieventdispatcher.cpp
src/plugins/platforms/windows/qtwindowsglobal.h
src/plugins/platforms/windows/qwindowscontext.cpp
src/plugins/platforms/windows/qwindowsintegration.cpp
src/plugins/platforms/windows/qwindowsintegration.h
src/plugins/platforms/windows/qwindowssessionmanager.cpp
src/plugins/platforms/windows/qwindowssessionmanager.h
Copyright: 2013 Samuel Gaist <samuel.gaist@edeltech.ch>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: config.tests/unix/syslog/syslog.c
Copyright: 2015 Tasuku Suzuki <stasuku@gmail.com>
License: LGPL-3 or GPL-2
Files: src/plugins/platforms/xcb/qxcbsessionmanager.cpp
src/plugins/platforms/xcb/qxcbsessionmanager.h
Copyright: 2013 Teo Mrnjavac <teo@kde.org>
2016 The Qt Company Ltd.
License: LGPL-3 or GPL-2
Files: src/corelib/arch/qatomic_bootstrap.h
Copyright: 2016 The Qt Company Ltd.
2011 Thiago Macieira <thiago@kde.org>
License: LGPL-3 or GPL-2
Files: src/corelib/tools/qbytearraylist.cpp
Copyright: 2016 The Qt Company Ltd.
2014 by Southwest Research Institute (R)
License: LGPL-3 or GPL-2
Files: src/network/ssl/qsslsocket_mac_shared.cpp
Copyright: 2016 The Qt Company Ltd.
2015 ownCloud Inc
License: LGPL-3 or GPL-2
Files: src/corelib/doc/snippets/qbytearraylist/main.cpp
src/corelib/global/qfloat16.cpp
src/corelib/global/qfloat16.h
src/corelib/global/qfloat16_p.h
src/tools/qfloat16-tables/gen_qfloat16_tables.cpp
Copyright: 2014-2016 by Southwest Research Institute (R)
License: LGPL-3 or GPL-2
## END AUTO GENERATED BLOCK
# Manual rules for some files with non-standard licenses
Files: tests/auto/corelib/xml/qxmlstream/XML-Test-Suite/*
Copyright: 1994-2002 World Wide Web Consortium
(Massachusetts Institute of Technology,
Institut National de Recherche en Informatique et en Automatique,
Keio University)
1998 Sun Microsystems, Inc.
1999-2001 OASIS
1997 Fuji Xerox Information Systems Co.,Ltd.
2000-2003 IBM Corp.
License: W3C
Copyright 1994-2002 World Wide Web Consortium, (Massachusetts
Institute of Technology, Institut National de Recherche en
Informatique et en Automatique, Keio University). All Rights
Reserved. http://www.w3.org/Consortium/Legal/
.
This W3C work (including software, documents, or other related items)
is being provided by the copyright holders under the following
license. By obtaining, using and/or copying this work, you (the
licensee) agree that you have read, understood, and will comply with
the following terms and conditions:
.
Permission to use, copy, modify, and distribute this software and its
documentation, with or without modification, for any purpose and
without fee or royalty is hereby granted, provided that you include
the following on ALL copies of the software and documentation or
portions thereof, including modifications, that you make:
.
1. The full text of this NOTICE in a location viewable to users of
the redistributed or derivative work.
.
2. Any pre-existing intellectual property disclaimers, notices, or
terms and conditions. If none exist, a short notice of the
following form (hypertext is preferred, text is permitted) should
be used within the body of any redistributed or derivative code:
"Copyright [$date-of-software] World Wide Web Consortium,
(Massachusetts Institute of Technology, Institut National de
Recherche en Informatique et en Automatique, Keio University). All
Rights Reserved. http://www.w3.org/Consortium/Legal/"
.
3. Notice of any changes or modifications to the W3C files, including
the date changes were made. (We recommend you provide URIs to the
location from which the code is derived.)
.
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT
HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR
DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,
TRADEMARKS OR OTHER RIGHTS.
.
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
DOCUMENTATION.
.
The name and trademarks of copyright holders may NOT be used in
advertising or publicity pertaining to the software without specific,
written prior permission. Title to copyright in this software and any
associated documentation will at all times remain with copyright
holders.
Files: tests/auto/corelib/tools/qchar/data/NormalizationTest.txt
tests/auto/corelib/tools/qtextboundaryfinder/data/*.txt
util/unicode/data/*.txt
Copyright: 1991-2012 Unicode, Inc.
License: Unicode
COPYRIGHT AND PERMISSION NOTICE
.
Copyright © 1991-2012 Unicode, Inc. All rights reserved.
Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
.
Permission is hereby granted, free of charge, to any person obtaining a
copy of the Unicode data files and any associated documentation (the "Data
Files") or Unicode software and any associated documentation (the "Software")
to deal in the Data Files or Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute,
and/or sell copies of the Data Files or Software, and to permit persons to
whom the Data Files or Software are furnished to do so, provided that (a)
the above copyright notice(s) and this permission notice appear with all
copies of the Data Files or Software, (b) both the above copyright
notice(s) and this permission notice appear in associated documentation,
and (c) there is clear notice in each modified Data File or in the
Software as well as in the documentation associated with the Data File(s)
or Software that the data or software has been modified.
.
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
.
Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale,
use or other dealings in these Data Files or Software without prior
written authorization of the copyright holder.
# Manual rules for 3rdparty copyrights
Files: src/testlib/3rdparty/callgrind_p.h
src/testlib/3rdparty/valgrind_p.h
Copyright: 2003-2007 Josef Weidendorfer
2000-2008 Julian Seward
License: Hybrid-BSD
Files: src/3rdparty/xcb/xcb-util-keysyms/keysyms.c
src/3rdparty/xcb/xcb-util/xcb_aux.c
src/3rdparty/xcb/include/xcb/xcb_renderutil.h
src/3rdparty/xcb/xcb-util-renderutil/util.c
src/3rdparty/xcb/xcb-util/xcb_aux.c
src/3rdparty/xcb/include/xcb/xcb_bitops.h
src/3rdparty/xcb/include/xcb/xcb_image.h
src/3rdparty/xcb/include/xcb/xcb_pixel.h
src/3rdparty/xcb/xcb-util-image/xcb_image.c
src/3rdparty/xcb/xcb-util/event.c
src/3rdparty/xcb/include/xcb/xcb_event.h
src/3rdparty/xcb/include/xcb/xcb_icccm.h
src/3rdparty/xcb/xcb-util-wm/icccm.c
Copyright: 2006-2008 Jamey Sharp
2008 Josh Triplett
2007 Bart Massey
2008 Ian Osgood
2000 Keith Packard
2008-2009 Julien Danjou
2007-2008 Vincent Torri
License: MIT
Files: src/3rdparty/angle/*
Copyright: 2002-2010 The ANGLE Project Authors.
2007-2012 The Khronos Group Inc.
2002 NVIDIA Corporation
License: BSD-3-clause
Files: src/3rdparty/forkfd/*
Copyright: 2014 Intel Corporation
2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
License: MIT
Files: src/3rdparty/xkbcommon/*
Copyright: 2012 Ran Benita <ran234@gmail.com>
2009 Dan Nicholson
2012 Intel Corporation
2006 Erdal Ronahî
2004 Gregory Mokhin <mokhin@bog.msu.ru>
2003-2004 Dmitry Golubev <lastguru@mail.ru>
1988 Digital Equipment Corporation, Maynard, Massachusetts.
1987-1998 The Open Group
1991 Oracle and/or its affiliates.
2012 Daniel Stone
1993 by Silicon Graphics Computer Systems, Inc.
2011 Joseph Adams <joeyadams3.14159@gmail.com>
1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
License: MIT
Files: src/3rdparty/iaccessible2/idl/*
Copyright: 2006 IBM Corporation
License: BSD-3-clause
Files: src/3rdparty/harfbuzz/*
Copyright: 1998-2005 David Turner
1998-2004 Werner Lemberg
2000-2007 Red Hat, Inc
2006 Behdad Esfahbod
2008-2012 Nokia Corporation and/or its subsidiary(-ies)
2012-2013 The Qt Company Ltd.
License: Harfbuzz
Files: src/3rdparty/harfbuzz-ng/*
Copyright: 2010-2012 Google, Inc.
2012 Mozilla Foundation
2011 Codethink Limited
2008-2010 Nokia Corporation and/or its subsidiary(-ies)
2009 Keith Stribley
2009 Martin Hosken and SIL International
2007 Chris Wilson
2006 Behdad Esfahbod
2005 David Turner
2004-2010 Red Hat, Inc.
1998-2004 David Turner and Werner Lemberg
License: Harfbuzz
License: Harfbuzz
Permission is hereby granted, without written agreement and without
license or royalty fees, to use, copy, modify, and distribute this
software and its documentation for any purpose, provided that the
above copyright notice and the following two paragraphs appear in
all copies of this software.
.
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
.
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
Files: src/3rdparty/freetype/*
Copyright: 1996-2012 David Turner, Robert Wilhelm, and Werner Lemberg
1996-2009 Just van Rossum
2002-2012 Roberto Alameda
2003 Huw D M Davies for Codeweavers
2003-2012 Masatake YAMATO, Redhat K.K.
2004-2012 Albert Chin-A-Young
2004-2012 Suzuki Toshiya
2007 Dmitry Timoshkov for Codeweavers
2007-2011 Rahul Bhalerao <rahul.bhalerao@redhat.com>
2007-2012 Derek Clegg, Michael Toftdal
2009-2011 Oran Agra, Mickey Gabel
2010, 2012 Joel Klinghed
License: GPL-2+ or FTL
Files: src/3rdparty/freetype/src/pcf/pcfutil.c
Copyright: 1990-1998 The Open Group
License: MIT
Files: src/3rdparty/freetype/src/bdf/*
Copyright: 2001-2002 Francesco Zappa Nardelli
2000 Computing Research Labs, New Mexico State University
License: MIT
Files: src/3rdparty/freetype/src/tools/ftrandom/ftrandom.c
src/3rdparty/freebsd/strtoull.c
src/3rdparty/freebsd/strtoll.c
Copyright: 1992-1993 The Regents of the University of California
2011 The FreeBSD Foundation
2005, 2007, 2008, 2013 George Williams
License: BSD-3-clause
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Files: src/3rdparty/libjpeg/*
Copyright: 1991-2011, Thomas G. Lane
1991-2011, Guido Vollbeding
License: libjpeg
In plain English:
.
1. We don't promise that this software works. (But if you find any bugs,
please let us know!)
2. You can use this software for whatever you want. You don't have to pay us.
3. You may not pretend that you wrote this software. If you use it in a
program, you must acknowledge somewhere in your documentation that
you've used the IJG code.
.
In legalese:
.
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.
.
This software is copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding.
All Rights Reserved except as specified below.
.
Permission is hereby granted to use, copy, modify, and distribute this
software (or portions thereof) for any purpose, without fee, subject to these
conditions:
(1) If any part of the source code for this software is distributed, then this
README file must be included, with this copyright and no-warranty notice
unaltered; and any additions, deletions, or changes to the original files
must be clearly indicated in accompanying documentation.
(2) If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the work of
the Independent JPEG Group".
(3) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
.
These conditions apply to any software derived from or based on the IJG code,
not just to the unmodified library. If you use our work, you ought to
acknowledge us.
.
Permission is NOT granted for the use of any IJG author's name or company name
in advertising or publicity relating to this software or products derived from
it. This software may be referred to only as "the Independent JPEG Group's
software".
.
We specifically permit and encourage the use of this software as the basis of
commercial products, provided that all warranty or liability claims are
assumed by the product vendor.
.
.
ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
ansi2knr.c is NOT covered by the above copyright and conditions, but instead
by the usual distribution terms of the Free Software Foundation; principally,
that you must include source code if you redistribute it. (See the file
ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
of any program generated from the IJG code, this does not limit you more than
the foregoing paragraphs do.
.
The Unix configuration script "configure" was produced with GNU Autoconf.
It is copyright by the Free Software Foundation but is freely distributable.
The same holds for its supporting scripts (config.guess, config.sub,
ltmain.sh). Another support script, install-sh, is copyright by X Consortium
but is also freely distributable.
.
The IJG distribution formerly included code to read and write GIF files.
To avoid entanglement with the Unisys LZW patent, GIF reading support has
been removed altogether, and the GIF writer has been simplified to produce
"uncompressed GIFs". This technique does not use the LZW algorithm; the
resulting GIF files are larger than usual, but are readable by all standard
GIF decoders.
.
We are required to state that
"The Graphics Interchange Format(c) is the Copyright property of
CompuServe Incorporated. GIF(sm) is a Service Mark property of
CompuServe Incorporated."
Files: src/3rdparty/libpng/*
Copyright: 1998-2015 Glenn Randers-Pehrson
Andreas Dilger
Dave Martindale
Guy Eric Schalnat
Paul Schmidt
Tim Wegner
License: libpng
The PNG Reference Library is supplied "AS IS". The Contributing Authors
and Group 42, Inc. disclaim all warranties, expressed or implied,
including, without limitation, the warranties of merchantability and of
fitness for any purpose. The Contributing Authors and Group 42, Inc.
assume no liability for direct, indirect, incidental, special, exemplary,
or consequential damages, which may result from the use of the PNG
Reference Library, even if advised of the possibility of such damage.
.
Permission is hereby granted to use, copy, modify, and distribute this
source code, or portions hereof, for any purpose, without fee, subject
to the following restrictions:
.
1. The origin of this source code must not be misrepresented.
.
2. Altered versions must be plainly marked as such and must not
be misrepresented as being the original source.
.
3. This Copyright notice may not be removed or altered from any
source or altered source distribution.
.
The Contributing Authors and Group 42, Inc. specifically permit, without
fee, and encourage the use of this source code as a component to
supporting the PNG file format in commercial products. If you use this
source code in a product, acknowledgment is not required but would be
appreciated.
Files: src/3rdparty/md4/* src/3rdparty/md5/*
Copyright: -
License: public-domain
placed in the public domain
Files: src/3rdparty/android/extract.h
mkspecs/features/data/android/dx.bat
Copyright: 2005 The Android Open Source Project
License: Apache-2.0
Files: src/3rdparty/pcre2/src/*
Copyright: 1997-2016 University of Cambridge
2007-2012 Google Inc.
2009-2012 Zoltan Herczeg
2013-2013 Tilera Corporation
License: BSD-3-clause
Files: src/3rdparty/pixman/*
Copyright: 2009 Nokia Corporation
License: Expat
Files: src/3rdparty/rfc6234/*
Copyright: 2011 IETF Trust
License: BSD-3-clause
Files: src/3rdparty/sha3/brg_endian.h
Copyright: 1998-2008, Brian Gladman, Worcester, UK
License: brg-endian
The redistribution and use of this software (with or without changes)
is allowed without the payment of fees or royalties provided that:
.
1. source code distributions include the above copyright notice, this
list of conditions and the following disclaimer;
.
2. binary distributions include the above copyright notice, this list
of conditions and the following disclaimer in their documentation;
.
3. the name of the copyright holder is not used to endorse products
built using this software without specific written permission.
.
DISCLAIMER
.
This software is provided 'as is' with no explicit or implied warranties
in respect of its properties, including, but not limited to, correctness
and/or fitness for purpose.
Files: src/3rdparty/sqlite/*
Copyright: -
License: public-domain
The author disclaims copyright to this source code.
Files: src/3rdparty/wintab/*
Copyright: 1991-1998 by LCS/Telegraphics
License: wintab
The text and information contained in this file may be freely used,
copied, or distributed without compensation or licensing restrictions.
Files: src/3rdparty/zlib/*
Copyright: 1995-2010 Jean-loup Gailly
1995-2010 Mark Adler
License: Zlib
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
# License texts
License: LGPL-3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 3
as published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 3 can be found in /usr/share/common-licenses/LGPL-3.
License: GPL-3 with Qt-1.0 exception
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as
published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian systems, the complete text of the GNU General Public License
version 3 can be found in /usr/share/common-licenses/GPL-3.
.
The Qt Company GPL Exception 1.0
Exception 1:
.
As a special exception you may create a larger work which contains the
output of this application and distribute that work under terms of your
choice, so long as the work is not otherwise derived from or based on
this application and so long as the work does not in itself generate
output that contains the output from this application in its original
or modified form.
.
Exception 2:
.
As a special exception, you have permission to combine this application
with Plugins licensed under the terms of your choice, to produce an
executable, and to copy and distribute the resulting executable under
the terms of your choice. However, the executable must be accompanied
by a prominent notice offering all users of the executable the entire
source code to this application, excluding the source code of the
independent modules, but including any changes you have made to this
application, under the terms of this license.
License: BSD-3-clause
You may use this file under the terms of the BSD license as follows:
.
"Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of The Qt Company Ltd nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
License: Hybrid-BSD
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
.
4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.
.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: GPL-2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
On Debian systems, the complete text of the GNU General Public
License version 2 can be found in /usr/share/common-licenses/GPL-2.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301, USA.
.
On Debian GNU/Linux systems, the complete text of the GNU General
Public License version 2 can be found in
`/usr/share/common-licenses/GPL-2'.
License: FTL
The FreeType Project LICENSE
----------------------------
.
2000-Feb-08
.
Copyright 1996-2000 by
David Turner, Robert Wilhelm, and Werner Lemberg
.
.
.
Introduction
============
.
The FreeType Project is distributed in several archive packages;
some of them may contain, in addition to the FreeType font engine,
various tools and contributions which rely on, or relate to, the
FreeType Project.
.
This license applies to all files found in such packages, and
which do not fall under their own explicit license. The license
affects thus the FreeType font engine, the test programs,
documentation and makefiles, at the very least.
.
This license was inspired by the BSD, Artistic, and IJG
(Independent JPEG Group) licenses, which all encourage inclusion
and use of free software in commercial and freeware products
alike. As a consequence, its main points are that:
.
o We don't promise that this software works. However, we will be
interested in any kind of bug reports. (`as is' distribution)
.
o You can use this software for whatever you want, in parts or
full form, without having to pay us. (`royalty-free' usage)
.
o You may not pretend that you wrote this software. If you use
it, or only parts of it, in a program, you must acknowledge
somewhere in your documentation that you have used the
FreeType code. (`credits')
.
We specifically permit and encourage the inclusion of this
software, with or without modifications, in commercial products.
We disclaim all warranties covering The FreeType Project and
assume no liability related to The FreeType Project.
.
.
Legal Terms
===========
.
0. Definitions
--------------
.
Throughout this license, the terms `package', `FreeType Project',
and `FreeType archive' refer to the set of files originally
distributed by the authors (David Turner, Robert Wilhelm, and
Werner Lemberg) as the `FreeType Project', be they named as alpha,
beta or final release.
.
`You' refers to the licensee, or person using the project, where
`using' is a generic term including compiling the project's source
code as well as linking it to form a `program' or `executable'.
This program is referred to as `a program using the FreeType
engine'.
.
This license applies to all files distributed in the original
FreeType Project, including all source code, binaries and
documentation, unless otherwise stated in the file in its
original, unmodified form as distributed in the original archive.
If you are unsure whether or not a particular file is covered by
this license, you must contact us to verify this.
.
The FreeType Project is copyright (C) 1996-2000 by David Turner,
Robert Wilhelm, and Werner Lemberg. All rights reserved except as
specified below.
.
1. No Warranty
--------------
.
THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
USE, OF THE FREETYPE PROJECT.
.
2. Redistribution
-----------------
.
This license grants a worldwide, royalty-free, perpetual and
irrevocable right and license to use, execute, perform, compile,
display, copy, create derivative works of, distribute and
sublicense the FreeType Project (in both source and object code
forms) and derivative works thereof for any purpose; and to
authorize others to exercise some or all of the rights granted
herein, subject to the following conditions:
.
o Redistribution of source code must retain this license file
(`LICENSE.TXT') unaltered; any additions, deletions or changes
to the original files must be clearly indicated in
accompanying documentation. The copyright notices of the
unaltered, original files must be preserved in all copies of
source files.
.
o Redistribution in binary form must provide a disclaimer that
states that the software is based in part of the work of the
FreeType Team, in the distribution documentation. We also
encourage you to put an URL to the FreeType web page in your
documentation, though this isn't mandatory.
.
These conditions apply to any software derived from or based on
the FreeType Project, not just the unmodified files. If you use
our work, you must acknowledge us. However, no fee need be paid
to us.
.
3. Advertising
--------------
.
Neither the FreeType authors and contributors nor you shall use
the name of the other for commercial, advertising, or promotional
purposes without specific prior written permission.
.
We suggest, but do not require, that you use one or more of the
following phrases to refer to this software in your documentation
or advertising materials: `FreeType Project', `FreeType Engine',
`FreeType library', or `FreeType Distribution'.
.
As you have not signed this license, you are not required to
accept it. However, as the FreeType Project is copyrighted
material, only this license, or another one contracted with the
authors, grants you the right to use, distribute, and modify it.
Therefore, by using, distributing, or modifying the FreeType
Project, you indicate that you understand and accept all the terms
of this license.
.
4. Contacts
-----------
.
There are two mailing lists related to FreeType:
.
o freetype@freetype.org
.
Discusses general use and applications of FreeType, as well as
future and wanted additions to the library and distribution.
If you are looking for support, start in this list if you
haven't found anything to help you in the documentation.
.
o devel@freetype.org
.
Discusses bugs, as well as engine internals, design issues,
specific licenses, porting, etc.
.
o http://www.freetype.org
.
Holds the current FreeType web page, which will allow you to
download our latest development version and read online
documentation.
.
You can also contact us individually at:
.
David Turner <david.turner@freetype.org>
Robert Wilhelm <robert.wilhelm@freetype.org>
Werner Lemberg <werner.lemberg@freetype.org>
License: GFDL-NIV-1.3
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
.
On Debian systems, the complete text of the GNU Free Documentation
License version 1.3 can be found in /usr/share/common-licenses/GFDL-1.3.
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License 2.0 can
be found in "/usr/share/common-licenses/Apache-2.0"
|