summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 01e76b186b7024c63f9ae7559fef8b09b4ab5a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
<!DOCTYPE html>
<html>
<head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">

    <title>MXE (M cross environment)</title>

    <link rel="stylesheet" href="docs/assets/common.css">

</head>
<body>

<div id="navigation">
<h1>MXE (M&nbsp;cross&nbsp;environment)</h1>

    <ul>
        <li><a href="#introduction"     >Introduction</a></li>
        <li><a href="#screenshots"      >Screenshots</a></li>
        <li><a href="#tutorial"         >Tutorial</a></li>
        <li><a href="#download"         >Download</a></li>
        <li><a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">Mailing List</a></li>
        <li><a href="https://github.com/mxe/mxe/issues">Issue Tracker</a></li>
    </ul>
    <ul>
        <li><a href="#requirements"     >Requirements</a></li>
        <li><a href="#usage"            >Usage</a></li>
        <li><a href="#packages"         >List of Packages</a></li>
        <li><a href="#creating-packages">Creating Packages</a></li>
        <li><a href="#copyright"        >Copyright</a></li>
        <li><a href="#legal"            >Legal</a></li>
        <li><a href="#history"          >History</a></li>
    </ul>
    <ul>
        <li><a href="#see-also"         >See also</a></li>
        <li><a href="#used-by"          >Used by</a></li>
    </ul>
</div>

<div class="section">
<h2 id="introduction">Introduction</h2>

    <p>
    MXE (M cross environment) is a Makefile that
    compiles a cross compiler and cross compiles
    many free libraries such as SDL and Qt. Thus,
    it provides a nice cross compiling environment
    for various target platforms, which
    </p>

    <ul>
    <li>
        is designed to
        <a href="#requirements">run on any Unix system</a>
    </li>
    <li>
        is easy to adapt and to extend
    </li>
    <li>
        builds
        <a href="#packages">many free libraries</a>
        in addition to the cross compiler
    </li>
    <li>
        can also
        <a href="#usage">build just a subset</a>
        of the packages,
        and automatically builds their dependencies
    </li>
    <li>
        downloads all needed packages
        and verifies them by their checksums
    </li>
    <li>
        is able to update the version numbers of all packages automatically
    </li>
    <li>
        directly uses source packages,
        thus ensuring the whole build mechanism is transparent
    </li>
    <li>
        allows inter-package and intra-package
        <a href="#usage">parallel builds</a>
        whenever possible
    </li>
    <li>
        integrates well with <a href="#tutorial-5a">autotools</a>,
        <a href="#tutorial-5b">cmake</a>, <a href="#tutorial-5c">qmake</a>,
        and <a href="#tutorial-5d">hand-written makefiles</a>
    </li>
    <li>
        has been in continuous development <a href="#history">since 2007</a>
        and is <a href="#used-by">used by several projects</a>
    </li>
    <li>
        has <a href="http://pkg.mxe.cc/">pre-compiled binaries</a>
        that <a href="https://github.com/zer0main/battleship">can be used
        in Continuous Integration systems</a>
    </li>
    </ul>

    <h3>Supported Toolchains</h3>

    <table id="supported-toolchains">
    <tr>
        <th rowspan="2">Runtime</th>
        <th rowspan="2">Host Triplet</th>
        <th colspan="2">Packages</th>
    </tr>
    <tr>
        <th>Static</th>
        <th>Shared</th>
    </tr>
    <tr>
        <td rowspan="2">MinGW-w64</td>
        <td>i686-w64-mingw32</td>
        <td style='text-align:center'>99% (379/381)</td>
        <td style='text-align:center'>72% (273/381)</td>
    </tr>
    <tr>
        <td>x86_64-w64-mingw32</td>
        <td style='text-align:center'>94% (360/381)</td>
        <td style='text-align:center'>71% (271/381)</td>
    </tr>
    </table>
    <p>
        These numbers were last updated on December 16, 2015.
        See the <a href="docs/build-matrix.html">current status</a>
        for individual packages.
    </p>
    <p>
        OpenMP (<a href="http://gcc.gnu.org/projects/gomp/">libgomp</a>)
        and pthreads (<a href="http://mingw-w64.sourceforge.net/">winpthreads</a>)
        are always available.
    </p>
    <p>
        Experimental support for GCC with posix threads was
        added in <a href="https://github.com/mxe/mxe/pull/958">November 2015</a>.
    </p>

</div>

<div class="section">
<h2 id="screenshots">Screenshots</h2>

    <p>
    Cross compiling
    <a href="http://thebeez.home.xs4all.nl/4tH/">4tH</a>:
    </p>
    <a href="docs/assets/screenshot-4th-compile.png">
        <img src="docs/assets/screenshot-4th-compile-small.png" alt="4th-compile">
    </a>

    <p>
    and running it:
    </p>
    <a href="docs/assets/screenshot-4th-run.png">
        <img src="docs/assets/screenshot-4th-run-small.png" alt="4th-run">
    </a>
</div>

<div class="section">
<h2 id="tutorial">Tutorial</h2>

    <h3 id="tutorial-1">Step 1: Requirements and Download</h3>

    <p>
    First, you should ensure that your system meets
    MXE's
    <a href="#requirements">requirements</a>.
    You will almost certainly have to install some stuff.
    </p>

    <p>
    When everything is fine, download the
    <a href="#download">current version</a>:
    </p>
    <pre>git clone https://github.com/mxe/mxe.git</pre>

    <p>
    If you don't mind installing it in your home directory,
    just skip the following step and go straight to step 3.
    </p>

    <p>
    MXE builds and installs everything under the same
    top-level directory and is not relocatable after
    the first packages are built.
    </p>

    <p>
    Due to limitations of GNU Make, the path of MXE is not allowed
    to contain any whitespace characters.
    </p>

    <h3 id="tutorial-2">Step 2: System-wide Installation (optional)</h3>

    <p>
    Now you should save any previous installation
    of the MXE.
    Assuming you've installed it under
    /opt/mxe (any other directory will do as well),
    you should execute the following commands:
    </p>
    <pre>su
mv /opt/mxe /opt/mxe.old
exit</pre>

    <p>
    Then you need to transfer the entire directory to its definitive location.
    We will assume again you use /opt/mxe,
    but feel free to use any other directory if you like.
    </p>
    <pre>su
mv mxe /opt/mxe
exit</pre>

    <p>
    We're almost done.
    Just change to your newly created directory and get going:
    </p>
    <pre>cd /opt/mxe</pre>

    <h3 id="tutorial-3">Step 3a: Build MXE</h3>

    <p>
    Enter the directory where you've downloaded MXE.
    Now it depends on what you actually want &ndash; or need.
    </p>

    <p>
    If you choose to enter:
    </p>
    <pre>make</pre>
    <p>
    you're in for a long wait,
    because it compiles
    <a href="#packages">a lot of packages</a>.
    On the other hand it doesn't require any intervention,
    so you're free to do whatever you like
    &ndash; like watch a movie or go for a night on the town.
    When it's done you'll find that you've installed
    a very capable Win32 cross compiler onto your system.
    </p>

    <p>
    If you only need the most basic tools you can also use:
    </p>
    <pre>make gcc</pre>
    <p>
    and add any additional packages you need later on.
    You can also supply a host of packages on the
    <a href="#usage">command line</a>,
    e.g.:
    </p>
    <pre>make gtk lua libidn</pre>
    <p>
    Targets can also be specified on the command line.
    By default, only i686-w64-mingw32.static is built, but you can
    build your toolchain(s) of choice with:
    </p>
    <pre>make MXE_TARGETS='x86_64-w64-mingw32.static i686-w64-mingw32.static'</pre>
    <p>
    or by adjusting the <code>MXE_TARGETS</code> variable
    in <code>settings.mk</code>.
    </p>
    <p>
    You'll always end up with a consistent cross compiling environment.
    </p>

    <p>
    If you have trouble here, please feel free to
    contact the mxe team through the
    <a href="https://github.com/mxe/mxe/issues">issue tracker</a> or
    <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">mailing list</a>.
    </p>

    <p>
    After you're done it just needs a little post-installation.
    </p>

    <h3 id="tutorial-3b">Step 3b: Install MXE from the binary distribution</h3>

    <p>
    Instead of building MXE packages from source, you can
    download precompiled packages. There are two options:
    tar archives and Debian packages.
    See <a href="http://pkg.mxe.cc/">pkg.mxe.cc</a>.
    </p>

    <h3 id="tutorial-4">Step 4: Environment Variables</h3>

    <p>
    Edit your .bashrc script in order to change $PATH:
    </p>
    <pre>export PATH=/<em>where MXE is installed</em>/usr/bin:$PATH</pre>

    <p>
    You may be tempted to also add <code>$(TARGET)/bin</code>
    to your path. You <strong>never</strong> want to do this,
    the executables and scripts in there will cause conflicts
    with your native toolchain.
    </p>

    <p>
    In case you are using custom $PKG_CONFIG_PATH entries,
    you can add separate entries for cross builds:
    </p>
    <pre>export PKG_CONFIG_PATH="<em>entries for native builds</em>"</pre>
    <pre>export PKG_CONFIG_PATH_i686_w64_mingw32_static="<em>entries for MXE builds</em>"</pre>
    <p>
    Remember to use i686-w64-mingw32.static-pkg-config
    instead of pkg-config for cross builds.
    The Autotools do that automatically for you.
    </p>

    <p>
    Note that any other compiler related environment variables
    (like $CC, $LDFLAGS, etc.)
    may spoil your compiling pleasure,
    so be sure to delete or disable those.
    </p>
    <p>
    For the most isolated and repeatable environment,
    use a white-list approach:
    </p>
    <pre>unset `env | \
    grep -vi '^EDITOR=\|^HOME=\|^LANG=\|MXE\|^PATH=' | \
    grep -vi 'PKG_CONFIG\|PROXY\|^PS1=\|^TERM=' | \
    cut -d '=' -f1 | tr '\n' ' '`</pre>
    <!-- update mxe-activate also -->
    <p>
    Congratulations!
    You're ready to cross compile anything you like.
    </p>

    <h3 id="tutorial-5a">Step 5a: Cross compile your Project (Autotools)</h3>

    <p>
    If you use the
    <a href="https://www.lrde.epita.fr/~adl/autotools.html">Autotools</a>,
    all you have to do is:
    </p>
    <pre>./configure --host=i686-w64-mingw32.static
make</pre>

    <p>
    If you build a library, you might also want to enforce a static build:
    </p>
    <pre>./configure --host=i686-w64-mingw32.static --enable-static --disable-shared
make</pre>

    <p>
    Don't worry about a warning like this:
    </p>
    <pre>configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.</pre>
    <p>
    Everything will be just fine.
    </p>

    <h3 id="tutorial-5b">Step 5b: Cross compile your Project (CMake)</h3>

    <p>
    If you have a
    <a href="http://www.cmake.org/">CMake</a> project,
    you can use the provided cmake wrapper:
    </p>
    <pre>i686-w64-mingw32.static-cmake ...</pre>
    <p>
    This will automatically use the MXE version of cmake
    and locate the toolchain file.
    </p>

    <h3 id="tutorial-5c">Step 5c: Cross compile your Project (Qt)</h3>

    <p>
    If you have a
    <a href="https://qt-project.org/">Qt</a> application,
    all you have to do is:
    </p>
    <pre>/where MXE is installed/usr/i686-w64-mingw32.static/qt/bin/qmake
make</pre>
    <p>
    Note that Qt 4 is in the "qt" subdirectory. Qt 5 is in the "qt5" subdirectory
    and its qmake can be invoked similarly.
    </p>
    <p>
    If you are using Qt plugins
    such as the svg or ico image handlers,
    you should also have a look at the
    <a href="https://qt-project.org/doc/qt-4.8/plugins-howto.html#static-plugins">Qt documentation about static plugins</a>.
    </p>
    <p>
    Note the sql drivers (-qt-sql-*)
    and the image handlers for jpeg, tiff, gif and mng
    are built-in, <em>not</em> plugins.
    </p>

    <h3 id="tutorial-5d">Step 5d: Cross compile your Project (Makefile)</h3>

    <p>
    If you have a handwritten Makefile,
    you probably will have to make a few adjustments to it:
    </p>
    <pre>CC=$(CROSS)gcc
LD=$(CROSS)ld
AR=$(CROSS)ar
PKG_CONFIG=$(CROSS)pkg-config</pre>
    <p>
    You may have to add a few others, depending on your project.
    </p>

    <p>
    Then, all you have to do is:
    </p>
    <pre>make CROSS=i686-w64-mingw32.static-</pre>
    <p>
    That's it!
    </p>

    <h3 id="tutorial-5e">Step 5e: Cross compile your Project (OSG)</h3>

    <p>
    Using static OpenSceneGraph libraries requires a few changes to your source.
    The graphics subsystem and all plugins required by your application must be
    referenced explicitly. Use a code block like the following:
    </p>
    <pre>#ifdef OSG_LIBRARY_STATIC
USE_GRAPHICSWINDOW()
USE_OSGPLUGIN(&lt;plugin1&gt;)
USE_OSGPLUGIN(&lt;plugin2&gt;)
...
#endif</pre>
    <p>
    Look at <code>examples/osgstaticviewer/osgstaticviewer.cpp</code> in the
    OpenSceneGraph source distribution for an example. This example can be
    compiled with the following command:
    </p>
    <pre>i686-w64-mingw32.static-g++ \
    -o osgstaticviewer.exe examples/osgstaticviewer/osgstaticviewer.cpp \
    `i686-w64-mingw32.static-pkg-config --cflags openscenegraph-osgViewer openscenegraph-osgPlugins` \
    `i686-w64-mingw32.static-pkg-config --libs openscenegraph-osgViewer openscenegraph-osgPlugins`</pre>
    <p>
    The <code>i686-w64-mingw32.static-pkg-config</code> command from MXE will
    automatically add <code>-DOSG_LIBRARY_STATIC</code> to your compiler flags.
    </p>

    <h3>Further Steps</h3>

    <p>
    If you need further assistance,
    feel free to join the
    <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">mailing list</a>
    where you'll get in touch with
    the MXE developers
    and other users.
    </p>
</div>

<div class="section">
<div id="latest-release"></div>
<div id="latest-version"></div>
<div id="development"></div>
<h2 id="download">Download</h2>

    <p>
    To obtain the current version, run:
    </p>

    <pre>git clone https://github.com/mxe/mxe.git</pre>

    <p>
    To retrieve updates, run:
    </p>

    <pre>git pull</pre>

    <p>
    You can also browse the
    <a href="https://github.com/mxe/mxe">web repository</a>.
    </p>

    <p>
    In addition,
    feel free to join the
    <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">mailing list</a>
    and to <a href="#creating-packages">propose new packages</a>.
    </p>
</div>

<div class="section">
<h2 id="requirements">Requirements</h2>

    <p>
    MXE requires a recent Unix system where
    all components as stated in the table below
    are installed. It also needs roughly 2 GiB of
    RAM to link gcc and at least 700 MB of disk
    space per target (counted with only gcc
    built).
    </p>
    <p>
    Detailed instructions are available for:
    </p>

    <ul class="compact-list">
        <li><a href="#requirements-debian">Debian</a></li>
        <li><a href="#requirements-fedora">Fedora</a></li>
        <li><a href="#requirements-freebsd">FreeBSD</a></li>
        <li><a href="#requirements-frugalware">Frugalware</a></li>
        <li><a href="#requirements-gentoo">Gentoo</a></li>
        <li><a href="#requirements-macos">Mac OS X</a></li>
        <li><a href="#requirements-opensuse">openSUSE</a></li>
    </ul>

    <table class="requirements">
    <tr>
        <td><a href="https://www.gnu.org/software/autoconf/">Autoconf</a></td>
        <td>≥ 2.68</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/automake/">Automake</a></td>
        <td>≥ 1.11.3</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/bash/">Bash</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/bison/">Bison</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://www.bzip.org/">Bzip2</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://flex.sourceforge.net/">Flex</a></td>
        <td>≥ 2.5.31</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/gcc/">GCC</a> (gcc, g++)</td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://www.gdk-pixbuf.org/">gdk-pixbuf</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://git-scm.com/">Git</a></td>
        <td>≥ 1.7</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/coreutils/">GNU Coreutils</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/gettext/">GNU Gettext</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/gperf/">GNU gperf</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/make/">GNU Make</a></td>
        <td>≥ 3.81</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/sed/">GNU Sed</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/tar/">GNU Tar</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://freedesktop.org/wiki/Software/intltool/">Intltool</a></td>
        <td>≥ 0.40</td>
    </tr>
    <tr>
        <td><a href="https://en.wikipedia.org/wiki/C_standard_library">LibC</a> for 32-bit</td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://sourceware.org/libffi/">libffi</a></td>
        <td>≥ 3.0.0</td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/libtool/">Libtool</a></td>
        <td>≥ 2.2</td>
    </tr>
    <tr>
        <td><a href="https://www.openssl.org/">OpenSSL</a>-dev</td>
        <td>≥ 1.01</td>
    </tr>
    <tr>
        <td><a href="http://p7zip.sourceforge.net/">p7zip (7-Zip)</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/patch/">Patch</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://www.perl.org/">Perl</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://search.cpan.org/dist/XML-Parser/Parser.pm">Perl XML::Parser</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://www.freedesktop.org/wiki/Software/pkg-config/">Pkg-config</a></td>
        <td>≥ 0.16</td>
    </tr>
    <tr>
        <td><a href="https://www.python.org/">Python</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.ruby-lang.org/">Ruby</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://www.scons.org/">SCons</a></td>
        <td>≥ 0.98</td>
    </tr>
    <tr>
        <td><a href="http://www.info-zip.org/UnZip.html">UnZip</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="https://www.gnu.org/software/wget/">Wget</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://tukaani.org/xz/">XZ Utils</a></td>
        <td></td>
    </tr>
    <tr>
        <td><a href="http://zlib.net/">zlib</a></td>
        <td>≥ 1.20</td>
    </tr>
    </table>

    <h3 id="requirements-debian">Debian and derivatives</h3>

    <!-- http://www.debian.org/distrib/packages#search_packages -->
    <pre>apt-get install \
    autoconf automake autopoint bash bison bzip2 flex gettext\
    git g++ gperf intltool libffi-dev libgdk-pixbuf2.0-dev \
    libtool libltdl-dev libssl-dev libxml-parser-perl make \
    openssl p7zip-full patch perl pkg-config python ruby scons \
    sed unzip wget xz-utils</pre>

    <p>
    On 64-bit Debian, install also:
    </p>
    <pre>apt-get install g++-multilib libc6-dev-i386</pre>

    <p>
    On Debian Jessie (8) or Ubuntu Utopic (14.10) or later,
    install also:
    </p>
    <pre>apt-get install libtool-bin</pre>

    <p>
    Only the <a href="https://www.debian.org/releases/stable/">latest Debian stable series</a> is supported.
    </p>

    <p>
    You can install a precompiled MXE via Debian packages.
    See <a href="http://pkg.mxe.cc/">pkg.mxe.cc</a>.
    </p>

    <h3 id="requirements-fedora">Fedora</h3>

    <!-- https://admin.fedoraproject.org/pkgdb/ -->
    <pre>yum install \
    autoconf automake bash bison bzip2 flex gcc-c++ \
    gdk-pixbuf2-devel gettext git gperf intltool make \
    sed libffi-devel libtool openssl-devel p7zip patch \
    perl pkgconfig python ruby scons unzip wget xz</pre>

    <p>
    On 64-bit Fedora,
    there are <a href="#issue-non-multilib">issues without a 32-bit compiler</a>.
    </p>

    <h3 id="requirements-freebsd">FreeBSD</h3>

    <!-- http://www.freshports.org/ -->
    <pre>pkg install \
    automake autoconf bash bison coreutils flex \
    gcc gdk-pixbuf2 gettext git glib gmake gperf gsed intltool libffi \
    libtool openssl p5-XML-Parser p7zip patch perl5 \
    pkgconf python ruby scons unzip wget</pre>

    <p>
    Use gmake instead of make.
    </p>
    <p>
    Install file(1) from ports, because file(1) from base
    <a href="https://forums.freebsd.org/threads/usr-bin-file-works-very-slow.52958/">works</a>
    very-very-very slow with long text files.
    </p>
    <p>
    Do not build as root. See
    <a href="https://github.com/mxe/mxe/issues/902">#902</a>.
    </p>
    <p>
    Ensure that /usr/local/bin precedes /usr/bin in your $PATH:
    </p>
    <p>
    For C style shells, edit .cshrc
    </p>
    <pre>setenv PATH /usr/local/bin:$PATH</pre>
    <p>
    For Bourne shells, edit .profile
    </p>
    <pre>export PATH=/usr/local/bin:$PATH</pre>
    <p>
    On 64-bit FreeBSD,
    there are <a href="#issue-non-multilib">issues without a 32-bit compiler</a>.
    </p>
    <p>
    <strong>N.B. FreeBSD is no longer fully supported</strong>
    </p>
    <p>
    to build the remainder of MXE, run:
    </p>
    <pre>gmake EXCLUDE_PKGS='gtksourceviewmm2 ocaml% openexr pcl qtbase'</pre>
    <p>
    to see a list of all dependent downstream packages that
    will be excluded, run:
    </p>
    <pre>gmake show-downstream-deps-'gtksourceviewmm2 ocaml% openexr \
                            pcl qtbase'</pre>

    <h3 id="requirements-frugalware">Frugalware</h3>

    <!-- http://www.frugalware.org/packages -->
    <pre>pacman-g2 -S \
    autoconf automake bash bzip2 bison flex gcc gdk-pixbuf2\
    gettext git gperf intltool make sed libffi libtool \
    openssl patch perl perl-xml-parser pkgconfig python \
    ruby scons unzip wget xz xz-lzma</pre>

    <p>
    On 64-bit Frugalware,
    there are <a href="#issue-non-multilib">issues without a 32-bit compiler</a>.
    </p>

    <h3 id="requirements-gentoo">Gentoo</h3>

    <!-- http://packages.gentoo.org/ -->
    <pre>emerge \
    sys-devel/autoconf sys-devel/automake app-shells/bash \
    sys-devel/bison app-arch/bzip2 \
    sys-devel/flex sys-devel/gcc sys-devel/gettext \
    dev-vcs/git dev-util/gperf dev-util/intltool \
    sys-devel/make sys-apps/sed dev-libs/libffi \
    sys-devel/libtool dev-libs/openssl app-arch/p7zip \
    sys-devel/patch dev-lang/perl dev-perl/XML-Parser \
    dev-util/pkgconfig dev-lang/python dev-lang/ruby \
    dev-util/scons app-arch/unzip net-misc/wget \
    app-arch/xz-utils x11-libs/gdk-pixbuf</pre>

    <h3 id="requirements-macos">Mac OS X</h3>

    <p>
    Install
    <a href="http://developer.apple.com/xcode/">the latest Xcode</a>
    </p>
    <h5 id="requirements-macos-method-1">Method 1 - MacPorts</h5>
    <p>
    Install <a href="http://www.macports.org/">MacPorts</a>,
    then run:
    </p>
    <!-- http://www.macports.org/ports.php -->
    <pre>sudo port install \
    autoconf automake bison coreutils flex gettext \
    gdk-pixbuf2 glib2 gnutar gsed intltool libffi libtool \
    openssl p5-xml-parser p7zip pkgconfig scons wget xz</pre>

    <h5 id="requirements-macos-method-2">Method 2 - Rudix</h5>
    <p>
    Install <a href="http://rudix.org/">Rudix</a>,
    then run:
    </p>
    <!-- http://rudix.org/packages/index.html -->
    <pre>sudo rudix install \
    autoconf automake coreutils gettext glib intltool \
    libtool p7zip scons sed tar wget xz</pre>
    <p>
    Note: <b>gdk-pixbuf2</b> is not installed in method 2,
    so you can not build <b>gtk3</b>. Other packages may be
    missing on Rudix - please open an issue if you find any.
    </p>

    <h5 id="requirements-macos-method-3">Method 3 - Homebrew</h5>
    <p>
    Install <a href="http://brew.sh/">Homebrew</a>,
    then run:
    </p>
    <!-- http://braumeister.org/ -->
    <pre>brew install \
    autoconf automake coreutils gdk-pixbuf gettext \
    gnu-sed gnu-tar intltool libtool p7zip wget xz</pre>
    <p>
    Some formulae are
    <a href="https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/FAQ.md#what-does-keg-only-mean"><code>keg-only</code></a>
    and will need <code>brew link</code> to be found.
    </p>

    <h5 id="requirements-macos-genaral">Genral Notes</h5>
    <p>
    You may be prompted to install a java runtime
    - this is not required.
    </p>
    <p>
    Mac OS X versions ≤ 10.9 are no longer tested.
    </p>
    <p>
    <h5>Certain packages have open issues on OS X</h5>
    </p>
    <p>
    For Xcode <7.3, run:
    </p>
    <pre>make EXCLUDE_PKGS='nsis'</pre>
    <p>
    For Xcode ≥7.3, run:
    </p>
    <pre>make EXCLUDE_PKGS='gsoap'</pre>

    <h3 id="requirements-opensuse">openSUSE</h3>

    <!-- http://software.opensuse.org/131/en -->
    <pre>zypper install -R \
    autoconf automake bash bison bzip2 flex gcc-c++ \
    gdk-pixbuf-devel gettext-tools git gperf intltool \
    libffi-devel libtool make openssl libopenssl-devel \
    p7zip patch perl perl-XML-Parser pkg-config python \
    ruby scons sed unzip wget xz</pre>

    <p>
    On 64-bit openSUSE, install also:
    </p>
    <pre>zypper install -R \
    gcc-32bit glibc-devel-32bit libgcc46-32bit \
    libgomp46-32bit libstdc++46-devel-32bit</pre>

    <h3 id="issue-non-multilib">Issues without a 32-bit compiler</h3>

    <p>
    Certain packages contain native tools that are
    currently 32-bit only. In order to build these on a
    64-bit system, multi-lib support must be enabled in the
    compiler toolchain. However, not all operating systems
    support this.
    </p>
    <p>
    To build the remainder of MXE, specify the affected
    packages to exclude:
    </p>
    <pre>make EXCLUDE_PKGS='ocaml%'</pre>
</div>

<div class="section">
<h2 id="usage">Usage</h2>

    <p>
    All build commands also download the packages if necessary.
    </p>
    <p>
    In a BSD userland, substitute "make" with "gmake"
    as all commands are based on
    <a href="https://www.gnu.org/software/make/manual/make.html">GNU Make</a>.
    </p>
    <dl class="usage">

    <dt>make</dt>

        <dd>
        build all packages,
        non-parallel
        </dd>

    <dt>make gcc</dt>

        <dd>
        build a minimal useful set of packages,
        i.e. the cross compilers
        and the most basic packages,
        non-parallel
        </dd>

    <dt>make foo bar</dt>

        <dd>
        build packages "foo", "bar" and their dependencies,
        non-parallel
        </dd>

        <dd>
        the package list can also be set in
        <code>settings.mk</code>
        <pre>LOCAL_PKG_LIST := foo bar
.DEFAULT local-pkg-list:
local-pkg-list: $(LOCAL_PKG_LIST)</pre>
        </dd>
        <dd>
        so a call to <code>make</code> will only build those packages (and their
        dependencies, of course)
        </dd>

    <dt>make foo bar --touch</dt>

        <dd>
        mark packages "foo" and "bar" as up-to-date after
        a trivial change in one of their dependencies
        (short option "-t")
        </dd>

    <dt>make foo bar --jobs=4 JOBS=2</dt>

        <dd>
        build packages "foo", "bar" and their dependencies,
        where up to 4 packages are built in parallel
        (short option "-j 4"),
        each with up to 2 compiler processes running in parallel
        </dd>
        <dd>
        the JOBS variable can also be defined in
        <code>settings.mk</code> and defaults to the number
        of CPUs up to a max of 6 to prevent runaway system
        load with diminishing returns - see the
        <a href="https://www.gnu.org/software/make/manual/make.html#Parallel">GNU Make manual</a>
        for more details on parallel execution
        </dd>

    <dt>make --jobs=4 --keep-going</dt>

        <dd>
        build all packages with 4 inter-package parallel
        jobs and continue as much as possible after an error
        (short option "-j 4 -k")
        </dd>

    <dt>make EXCLUDE_PKGS='foo bar'</dt>

        <dd>
        build all packages excluding foo, bar, and all downstream
        packages that depend on them - mostly used when there are
        <a href="#issue-non-multilib">known issues</a>
        </dd>

    <dt>make foo_SOURCE_TREE=/path/to/local/source</dt>

        <dd>
        build using local source tree for package "foo", bypassing
        download, checksum and patching
        </dd>
        <dd>
        <strong>N.B.</strong> ensure "foo" has an out-of-source
        build configured to avoid generation of build artefacts
        in local tree
        </dd>

    <dt>make check-requirements</dt>

        <dd>
        check most of the
        <a href="#requirements">requirements</a>
        if necessary
        &ndash; executed automatically
        before building packages
        </dd>

    <dt>make download</dt>

        <dd>
        download all packages,
        non-parallel,
        such that subsequent builds work without internet access
        </dd>

    <dt>make download-foo download-bar</dt>

        <dd>
        download packages "foo", "bar" and their dependencies,
        non-parallel
        </dd>

    <dt>make download-foo download-bar -j 4</dt>

        <dd>
        download packages "foo", "bar" and their dependencies,
        where up to 4 packages are downloaded in parallel
        </dd>

    <dt>make download-only-foo download-only-bar</dt>

        <dd>
        download packages "foo", "bar", without their dependencies,
        non-parallel
        </dd>

    <dt>make clean</dt>

        <dd>
        remove all package builds
        &ndash; use with caution!
        </dd>

    <dt>make clean-junk</dt>

        <dd>
        remove all unused files, including unused package
        files, temporary folders, and logs
        </dd>

    <dt>make clean-pkg</dt>

        <dd>
        remove all unused package files,
        handy after a successful update
        </dd>

    <dt>make show-deps-foo</dt>

        <dd>
        print a list of upstream dependencies
        and downstream dependents
        </dd>

    <dt>make show-downstream-deps-foo</dt>

        <dd>
        print a list of downstream dependents
        suitable for usage in shell scripts
        </dd>

    <dt>make show-upstream-deps-foo</dt>

        <dd>
        print a list of upstream dependencies
        suitable for usage in shell scripts
        </dd>

    <dt>make docs/build-matrix.html</dt>

        <dd>
        generate a report of what packages are
        supported on what targets to
        <a href="docs/build-matrix.html">docs/build-matrix.html</a>
        </dd>

    <dt>make update</dt>

        <dd>
        for internal use only!
        &ndash;
        update the version numbers of all packages,
        download the new versions and note their checksums
        </dd>

    <dt>make update UPDATE_DRYRUN=true</dt>

        <dd>
        for internal use only!
        &ndash;
        show list of update candidates without downloading
        </dd>

    <dt>make update-package-foo</dt>

        <dd>
        for internal use only!
        &ndash;
        update the version numbers of package foo,
        download the new version and note its checksum
        </dd>

    <dt>make update-checksum-foo</dt>

        <dd>
        for internal use only!
        &ndash;
        download package foo and update its checksum
        </dd>

    <dt>make cleanup-style</dt>

        <dd>
        for internal use only!
        &ndash;
        cleanup coding style
        </dd>

    </dl>
</div>

<div class="section">
<h2 id="packages">List of Packages</h2>

    <p>
    See something missing? Feel free to <a href="#creating-packages">create a new package</a>.
    </p>
    <table id="package-list" class="old">
    <tr>
        <td class="package">a52dec</td>
        <td class="website"><a href="http://liba52.sourceforge.net/">a52dec (aka. liba52)</a></td>
    </tr>
    <tr>
        <td class="package">agg</td>
        <td class="website"><a href="http://agg.sourceforge.net/">Anti-Grain Geometry</a></td>
    </tr>
    <tr>
        <td class="package">alure</td>
        <td class="website"><a href="http://kcat.strangesoft.net/alure.html">alure</a></td>
    </tr>
    <tr>
        <td class="package">apr</td>
        <td class="website"><a href="http://apr.apache.org/">APR</a></td>
    </tr>
    <tr>
        <td class="package">apr-util</td>
        <td class="website"><a href="http://apr.apache.org/">APR-util</a></td>
    </tr>
    <tr>
        <td class="package">armadillo</td>
        <td class="website"><a href="http://arma.sourceforge.net/">Armadillo C++ linear algebra library</a></td>
    </tr>
    <tr>
        <td class="package">aspell</td>
        <td class="website"><a href="http://aspell.net/">Aspell</a></td>
    </tr>
    <tr>
        <td class="package">assimp</td>
        <td class="website"><a href="http://assimp.sourceforge.net/">Assimp Open Asset Import Library</a></td>
    </tr>
    <tr>
        <td class="package">atk</td>
        <td class="website"><a href="http://www.gtk.org/">ATK</a></td>
    </tr>
    <tr>
        <td class="package">atkmm</td>
        <td class="website"><a href="http://www.gtkmm.org/">ATKmm</a></td>
    </tr>
    <tr>
        <td class="package">aubio</td>
        <td class="website"><a href="http://www.aubio.org/">aubio</a></td>
    </tr>
    <tr>
        <td class="package">bfd</td>
        <td class="website"><a href="https://www.gnu.org/software/binutils/">Binary File Descriptor library</a></td>
    </tr>
    <tr>
        <td class="package">binutils</td>
        <td class="website"><a href="https://www.gnu.org/software/binutils/">GNU Binutils</a></td>
    </tr>
    <tr>
        <td class="package">blas</td>
        <td class="website"><a href="http://www.netlib.org/blas/">blas</a></td>
    </tr>
    <tr>
        <td class="package">boost</td>
        <td class="website"><a href="http://www.boost.org/">Boost C++ Library</a></td>
    </tr>
    <tr>
        <td class="package">box2d</td>
        <td class="website"><a href="http://www.box2d.org/">Box2D</a></td>
    </tr>
    <tr>
        <td class="package">bullet</td>
        <td class="website"><a href="http://bulletphysics.org/">Bullet physics, version 2</a></td>
    </tr>
    <tr>
        <td class="package">bzip2</td>
        <td class="website"><a href="http://www.bzip.org/">bzip2</a></td>
    </tr>
    <tr>
        <td class="package">cairo</td>
        <td class="website"><a href="http://cairographics.org/">cairo</a></td>
    </tr>
    <tr>
        <td class="package">cairomm</td>
        <td class="website"><a href="http://cairographics.org/cairomm/">cairomm</a></td>
    </tr>
    <tr>
        <td class="package">cblas</td>
        <td class="website"><a href="http://www.netlib.org/blas/">cblas</a></td>
    </tr>
    <tr>
        <td class="package">ccfits</td>
        <td class="website"><a href="http://heasarc.gsfc.nasa.gov/fitsio/ccfits">CCfits</a></td>
    </tr>
    <tr>
        <td class="package">cegui</td>
        <td class="website"><a href="http://cegui.org.uk/">Crazy Eddie’s GUI System (CEGUI)</a></td>
    </tr>
    <tr>
        <td class="package">cfitsio</td>
        <td class="website"><a href="http://heasarc.gsfc.nasa.gov/fitsio/">cfitsio</a></td>
    </tr>
    <tr>
        <td class="package">cgal</td>
        <td class="website"><a href="http://www.cgal.org/">cgal</a></td>
    </tr>
    <tr>
        <td class="package">check</td>
        <td class="website"><a href="http://check.sourceforge.net/">check</a></td>
    </tr>
    <tr>
        <td class="package">chipmunk</td>
        <td class="website"><a href="https://chipmunk-physics.net/">Chipmunk Physics</a></td>
    </tr>
    <tr>
        <td class="package">chromaprint</td>
        <td class="website"><a href="http://acoustid.org/chromaprint">Chromaprint</a></td>
    </tr>
    <tr>
        <td class="package">cimg</td>
        <td class="website"><a href="http://cimg.eu/">CImg Library</a></td>
    </tr>
    <tr>
        <td class="package">cloog</td>
        <td class="website"><a href="http://www.cloog.org/">CLooG Code Generator</a></td>
    </tr>
    <tr>
        <td class="package">cmake</td>
        <td class="website"><a href="http://www.cmake.org/">cmake</a></td>
    </tr>
    <tr>
        <td class="package">cminpack</td>
        <td class="website"><a href="http://devernay.free.fr/hacks/cminpack/cminpack.html">cminpack</a></td>
    </tr>
    <tr>
        <td class="package">coda</td>
        <td class="website"><a href="https://stcorp.nl/coda/">CODA</a></td>
    </tr>
    <tr>
        <td class="package">coin</td>
        <td class="website"><a href="https://bitbucket.org/Coin3D/">Coin3D</a></td>
    </tr>
    <tr>
        <td class="package">cpp-netlib</td>
        <td class="website"><a href="http://cpp-netlib.org/">Boost C++ Networking Library</a></td>
    </tr>
    <tr>
        <td class="package">cppunit</td>
        <td class="website"><a href="http://www.freedesktop.org/wiki/Software/cppunit/">CppUnit</a></td>
    </tr>
    <tr>
        <td class="package">cryptopp</td>
        <td class="website"><a href="https://www.cryptopp.com/">Crypto++ Library</a></td>
    </tr>
    <tr>
        <td class="package">crystalhd</td>
        <td class="website"><a href="http://www.broadcom.com/support/crystal_hd/">Broadcom Crystal HD Headers</a></td>
    </tr>
    <tr>
        <td class="package">cunit</td>
        <td class="website"><a href="http://cunit.sourceforge.net/">cunit</a></td>
    </tr>
    <tr>
        <td class="package">curl</td>
        <td class="website"><a href="http://curl.haxx.se/libcurl/">cURL</a></td>
    </tr>
    <tr>
        <td class="package">db</td>
        <td class="website"><a href="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html">Oracle Berkeley DB</a></td>
    </tr>
    <tr>
        <td class="package">dbus</td>
        <td class="website"><a href="http://dbus.freedesktop.org/">dbus</a></td>
    </tr>
    <tr>
        <td class="package">dcmtk</td>
        <td class="website"><a href="http://dicom.offis.de/dcmtk.php.en">DCMTK</a></td>
    </tr>
    <tr>
        <td class="package">devil</td>
        <td class="website"><a href="http://openil.sourceforge.net/">DevIL</a></td>
    </tr>
    <tr>
        <td class="package">djvulibre</td>
        <td class="website"><a href="http://djvu.sourceforge.net/">DjVuLibre</a></td>
    </tr>
    <tr>
        <td class="package">dlfcn-win32</td>
        <td class="website"><a href="https://code.google.com/p/dlfcn-win32/">POSIX dlfcn wrapper for Windows</a></td>
    </tr>
    <tr>
        <td class="package">eigen</td>
        <td class="website"><a href="http://eigen.tuxfamily.org/">eigen</a></td>
    </tr>
    <tr>
        <td class="package">exiv2</td>
        <td class="website"><a href="http://www.exiv2.org/">Exiv2</a></td>
    </tr>
    <tr>
        <td class="package">expat</td>
        <td class="website"><a href="http://expat.sourceforge.net/">Expat XML Parser</a></td>
    </tr>
    <tr>
        <td class="package">faad2</td>
        <td class="website"><a href="http://www.audiocoding.com/">faad2</a></td>
    </tr>
    <tr>
        <td class="package">fdk-aac</td>
        <td class="website"><a href="https://github.com/mstorsjo/fdk-aac">FDK-AAC</a></td>
    </tr>
    <tr>
        <td class="package">ffmpeg</td>
        <td class="website"><a href="http://www.ffmpeg.org/">ffmpeg</a></td>
    </tr>
    <tr>
        <td class="package">fftw</td>
        <td class="website"><a href="http://www.fftw.org/">fftw</a></td>
    </tr>
    <tr>
        <td class="package">file</td>
        <td class="website"><a href="http://www.darwinsys.com/file/">file</a></td>
    </tr>
    <tr>
        <td class="package">flac</td>
        <td class="website"><a href="http://www.xiph.org/flac/">FLAC</a></td>
    </tr>
    <tr>
        <td class="package">flann</td>
        <td class="website"><a href="http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN">FLANN</a></td>
    </tr>
    <tr>
        <td class="package">fltk</td>
        <td class="website"><a href="http://www.fltk.org/">FLTK</a></td>
    </tr>
    <tr>
        <td class="package">fontconfig</td>
        <td class="website"><a href="http://fontconfig.org/">fontconfig</a></td>
    </tr>
    <tr>
        <td class="package">freeglut</td>
        <td class="website"><a href="http://freeglut.sourceforge.net/">freeglut</a></td>
    </tr>
    <tr>
        <td class="package">freeimage</td>
        <td class="website"><a href="http://freeimage.sourceforge.net/">FreeImage</a></td>
    </tr>
    <tr>
        <td class="package">freetds</td>
        <td class="website"><a href="http://www.freetds.org/">FreeTDS</a></td>
    </tr>
    <tr>
        <td class="package">freetype</td>
        <td class="website"><a href="http://www.freetype.org/">freetype</a></td>
    </tr>
    <tr>
        <td class="package">freetype-bootstrap</td>
        <td class="website"><a href="http://www.freetype.org/">freetype (without harfbuzz)</a></td>
    </tr>
    <tr>
        <td class="package">fribidi</td>
        <td class="website"><a href="http://fribidi.org/">FriBidi</a></td>
    </tr>
    <tr>
        <td class="package">ftgl</td>
        <td class="website"><a href="http://sourceforge.net/projects/ftgl/">ftgl</a></td>
    </tr>
    <tr>
        <td class="package">gc</td>
        <td class="website"><a href="http://www.hpl.hp.com/personal/Hans_Boehm/gc/">gc</a></td>
    </tr>
    <tr>
        <td class="package">gcc</td>
        <td class="website"><a href="http://gcc.gnu.org/">GCC</a></td>
    </tr>
    <tr>
        <td class="package">gd</td>
        <td class="website"><a href="http://www.libgd.org/">GD  (without support for xpm)</a></td>
    </tr>
    <tr>
        <td class="package">gdal</td>
        <td class="website"><a href="http://www.gdal.org/">GDAL</a></td>
    </tr>
    <tr>
        <td class="package">gdb</td>
        <td class="website"><a href="https://www.gnu.org/software/gdb/">gdb</a></td>
    </tr>
    <tr>
        <td class="package">gdk-pixbuf</td>
        <td class="website"><a href="http://www.gdk-pixbuf.org/">GDK-pixbuf</a></td>
    </tr>
    <tr>
        <td class="package">gendef</td>
        <td class="website"><a href="http://sourceforge.net/p/mingw-w64/wiki2/gendef/">gendef</a></td>
    </tr>
    <tr>
        <td class="package">geoip-database</td>
        <td class="website"><a href="http://www.maxmind.com">GeoIP Legacy Database</a></td>
    </tr>
    <tr>
        <td class="package">geos</td>
        <td class="website"><a href="http://trac.osgeo.org/geos/">GEOS</a></td>
    </tr>
    <tr>
        <td class="package">gettext</td>
        <td class="website"><a href="https://www.gnu.org/software/gettext/">gettext</a></td>
    </tr>
    <tr>
        <td class="package">ghostscript</td>
        <td class="website"><a href="http://www.ghostscript.com/">ghostscript</a></td>
    </tr>
    <tr>
        <td class="package">giflib</td>
        <td class="website"><a href="http://sourceforge.net/projects/libungif/">giflib</a></td>
    </tr>
    <tr>
        <td class="package">glew</td>
        <td class="website"><a href="http://glew.sourceforge.net/">GLEW</a></td>
    </tr>
    <tr>
        <td class="package">glfw2</td>
        <td class="website"><a href="http://www.glfw.org/">GLFW 2.x</a></td>
    </tr>
    <tr>
        <td class="package">glfw3</td>
        <td class="website"><a href="http://www.glfw.org/">GLFW 3.x</a></td>
    </tr>
    <tr>
        <td class="package">glib</td>
        <td class="website"><a href="http://www.gtk.org/">GLib</a></td>
    </tr>
    <tr>
        <td class="package">glibmm</td>
        <td class="website"><a href="http://www.gtkmm.org/">GLibmm</a></td>
    </tr>
    <tr>
        <td class="package">glm</td>
        <td class="website"><a href="http://glm.g-truc.net">GLM - OpenGL Mathematics</a></td>
    </tr>
    <tr>
        <td class="package">gmp</td>
        <td class="website"><a href="http://www.gmplib.org/">GMP</a></td>
    </tr>
    <tr>
        <td class="package">gnutls</td>
        <td class="website"><a href="https://www.gnu.org/software/gnutls/">GnuTLS</a></td>
    </tr>
    <tr>
        <td class="package">graphicsmagick</td>
        <td class="website"><a href="http://www.graphicsmagick.org/">GraphicsMagick</a></td>
    </tr>
    <tr>
        <td class="package">gsl</td>
        <td class="website"><a href="https://www.gnu.org/software/gsl/">GSL</a></td>
    </tr>
    <tr>
        <td class="package">gsoap</td>
        <td class="website"><a href="http://gsoap2.sourceforge.net/">gSOAP</a></td>
    </tr>
    <tr>
        <td class="package">gst-plugins-bad</td>
        <td class="website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-bad</a></td>
    </tr>
    <tr>
        <td class="package">gst-plugins-base</td>
        <td class="website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-base</a></td>
    </tr>
    <tr>
        <td class="package">gst-plugins-good</td>
        <td class="website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-good</a></td>
    </tr>
    <tr>
        <td class="package">gst-plugins-ugly</td>
        <td class="website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-ugly</a></td>
    </tr>
    <tr>
        <td class="package">gstreamer</td>
        <td class="website"><a href="http://gstreamer.freedesktop.org/">gstreamer</a></td>
    </tr>
    <tr>
        <td class="package">gta</td>
        <td class="website"><a href="http://www.nongnu.org/gta/">gta</a></td>
    </tr>
    <tr>
        <td class="package">gtk2</td>
        <td class="website"><a href="http://www.gtk.org/">GTK+</a></td>
    </tr>
    <tr>
        <td class="package">gtk3</td>
        <td class="website"><a href="http://www.gtk.org/">GTK+</a></td>
    </tr>
    <tr>
        <td class="package">gtkglarea</td>
        <td class="website"><a href="http://www.mono-project.com/GtkGLArea/">GtkGLArea</a></td>
    </tr>
    <tr>
        <td class="package">gtkglext</td>
        <td class="website"><a href="http://gtkglext.sourceforge.net/">GtkGLExt</a></td>
    </tr>
    <tr>
        <td class="package">gtkglextmm</td>
        <td class="website"><a href="http://gtkglext.sourceforge.net/">GtkGLExtmm</a></td>
    </tr>
    <tr>
        <td class="package">gtkimageview</td>
        <td class="website"><a href="http://trac.bjourne.webfactional.com/">GtkImageView</a></td>
    </tr>
    <tr>
        <td class="package">gtkmm2</td>
        <td class="website"><a href="http://www.gtkmm.org/">GTKMM</a></td>
    </tr>
    <tr>
        <td class="package">gtkmm3</td>
        <td class="website"><a href="http://www.gtkmm.org/">GTKMM</a></td>
    </tr>
    <tr>
        <td class="package">gtksourceview</td>
        <td class="website"><a href="http://projects.gnome.org/gtksourceview/">GTKSourceView</a></td>
    </tr>
    <tr>
        <td class="package">gtksourceviewmm2</td>
        <td class="website"><a href="http://projects.gnome.org/gtksourceviewmm/">GtkSourceViewmm</a></td>
    </tr>
    <tr>
        <td class="package">guile</td>
        <td class="website"><a href="https://www.gnu.org/software/guile/">GNU Guile</a></td>
    </tr>
    <tr>
        <td class="package">harfbuzz</td>
        <td class="website"><a href="http://harfbuzz.sourceforge.net/">HarfBuzz</a></td>
    </tr>
    <tr>
        <td class="package">hdf-eos2</td>
        <td class="website"><a href="https://hdfeos.org/software/library.php">HDF-EOS2</a></td>
    </tr>
    <tr>
        <td class="package">hdf-eos5</td>
        <td class="website"><a href="https://hdfeos.org/software/library.php">HDF-EOS5</a></td>
    </tr>
    <tr>
        <td class="package">hdf4</td>
        <td class="website"><a href="http://www.hdfgroup.org/products/hdf4/">HDF4</a></td>
    </tr>
    <tr>
        <td class="package">hdf5</td>
        <td class="website"><a href="http://www.hdfgroup.org/products/hdf5/">HDF5</a></td>
    </tr>
    <tr>
        <td class="package">hunspell</td>
        <td class="website"><a href="http://hunspell.sourceforge.net/">Hunspell</a></td>
    </tr>
    <tr>
        <td class="package">hyperscan</td>
        <td class="website"><a href="https://01.org/hyperscan">Hyperscan</a></td>
    </tr>
    <tr>
        <td class="package">icu4c</td>
        <td class="website"><a href="http://site.icu-project.org/">ICU4C</a></td>
    </tr>
    <tr>
        <td class="package">id3lib</td>
        <td class="website"><a href="http://id3lib.sourceforge.net/">id3lib</a></td>
    </tr>
    <tr>
        <td class="package">ilmbase</td>
        <td class="website"><a href="http://www.openexr.com/">IlmBase</a></td>
    </tr>
    <tr>
        <td class="package">imagemagick</td>
        <td class="website"><a href="http://www.imagemagick.org/">ImageMagick</a></td>
    </tr>
    <tr>
        <td class="package">isl</td>
        <td class="website"><a href="http://isl.gforge.inria.fr/">Integer Set Library</a></td>
    </tr>
    <tr>
        <td class="package">itk</td>
        <td class="website"><a href="http://www.itk.org/">Insight Segmentation and Registration Toolkit (ITK)</a></td>
    </tr>
    <tr>
        <td class="package">jack</td>
        <td class="website"><a href="http://jackaudio.org/">JACK Audio Connection Kit</a></td>
    </tr>
    <tr>
        <td class="package">jansson</td>
        <td class="website"><a href="http://www.digip.org/jansson/">Jansson</a></td>
    </tr>
    <tr>
        <td class="package">jasper</td>
        <td class="website"><a href="http://www.ece.uvic.ca/~mdadams/jasper/">JasPer</a></td>
    </tr>
    <tr>
        <td class="package">jpeg</td>
        <td class="website"><a href="http://www.ijg.org/">jpeg</a></td>
    </tr>
    <tr>
        <td class="package">json-c</td>
        <td class="website"><a href="https://github.com/json-c/json-c/wiki">json-c</a></td>
    </tr>
    <tr>
        <td class="package">json-glib</td>
        <td class="website"><a href="https://wiki.gnome.org/action/show/Projects/JsonGlib">JSON-Glib</a></td>
    </tr>
    <tr>
        <td class="package">json_spirit</td>
        <td class="website"><a href="https://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-JSON-Parser-Generator-Implemented">json_spirit</a></td>
    </tr>
    <tr>
        <td class="package">jsoncpp</td>
        <td class="website"><a href="https://github.com/open-source-parsers/jsoncpp">jsoncpp</a></td>
    </tr>
    <tr>
        <td class="package">lame</td>
        <td class="website"><a href="http://lame.sourceforge.net/">lame</a></td>
    </tr>
    <tr>
        <td class="package">lapack</td>
        <td class="website"><a href="http://www.netlib.org/lapack/">lapack</a></td>
    </tr>
    <tr>
        <td class="package">lcms</td>
        <td class="website"><a href="http://www.littlecms.com/">lcms</a></td>
    </tr>
    <tr>
        <td class="package">lcms1</td>
        <td class="website"><a href="http://www.littlecms.com/">lcms1</a></td>
    </tr>
    <tr>
        <td class="package">lensfun</td>
        <td class="website"><a href="http://lensfun.sourceforge.net/">lensfun</a></td>
    </tr>
    <tr>
        <td class="package">levmar</td>
        <td class="website"><a href="http://www.ics.forth.gr/~lourakis/levmar">levmar</a></td>
    </tr>
    <tr>
        <td class="package">libaacs</td>
        <td class="website"><a href="http://www.videolan.org/developers/libaacs.html">libaacs</a></td>
    </tr>
    <tr>
        <td class="package">libarchive</td>
        <td class="website"><a href="http://www.libarchive.org/">Libarchive</a></td>
    </tr>
    <tr>
        <td class="package">libass</td>
        <td class="website"><a href="http://code.google.com/p/libass/">libass</a></td>
    </tr>
    <tr>
        <td class="package">libbluray</td>
        <td class="website"><a href="http://www.videolan.org/developers/libbluray.html">libbluray</a></td>
    </tr>
    <tr>
        <td class="package">libbs2b</td>
        <td class="website"><a href="http://bs2b.sourceforge.net/">Bauer Stereophonic-to-Binaural library</a></td>
    </tr>
    <tr>
        <td class="package">libcaca</td>
        <td class="website"><a href="http://caca.zoy.org/wiki/libcaca">libcaca</a></td>
    </tr>
    <tr>
        <td class="package">libcdio</td>
        <td class="website"><a href="https://www.gnu.org/software/libcdio/">Libcdio</a></td>
    </tr>
    <tr>
        <td class="package">libcdio-paranoia</td>
        <td class="website"><a href="https://www.gnu.org/software/libcdio/">Libcdio-paranoia</a></td>
    </tr>
    <tr>
        <td class="package">libcomm14cux</td>
        <td class="website"><a href="https://github.com/colinbourassa/libcomm14cux/">libcomm14cux</a></td>
    </tr>
    <tr>
        <td class="package">libcroco</td>
        <td class="website"><a href="http://www.freespiders.org/projects/libcroco/">Libcroco</a></td>
    </tr>
    <tr>
        <td class="package">libdnet</td>
        <td class="website"><a href="http://libdnet.sourceforge.net/">libdnet</a></td>
    </tr>
    <tr>
        <td class="package">libdvbpsi</td>
        <td class="website"><a href="http://www.videolan.org/developers/libdvbpsi.html">libdvbpsi</a></td>
    </tr>
    <tr>
        <td class="package">libdvdcss</td>
        <td class="website"><a href="http://www.videolan.org/developers/libdvdcss.html">libdvdcss</a></td>
    </tr>
    <tr>
        <td class="package">libdvdnav</td>
        <td class="website"><a href="https://dvdnav.mplayerhq.hu/">libdvdnav</a></td>
    </tr>
    <tr>
        <td class="package">libdvdread</td>
        <td class="website"><a href="https://dvdnav.mplayerhq.hu/">libdvdread</a></td>
    </tr>
    <tr>
        <td class="package">libechonest</td>
        <td class="website"><a href="https://github.com/lfranchi/libechonest">libechonest</a></td>
    </tr>
    <tr>
        <td class="package">libepoxy</td>
        <td class="website"><a href="https://github.com/anholt/libepoxy">libepoxy</a></td>
    </tr>
    <tr>
        <td class="package">libevent</td>
        <td class="website"><a href="http://libevent.org/">libevent</a></td>
    </tr>
    <tr>
        <td class="package">libf2c</td>
        <td class="website"><a href="http://www.netlib.org/f2c/">libf2c</a></td>
    </tr>
    <tr>
        <td class="package">libffi</td>
        <td class="website"><a href="https://sourceware.org/libffi/">libffi</a></td>
    </tr>
    <tr>
        <td class="package">libftdi</td>
        <td class="website"><a href="http://www.intra2net.com/en/developer/libftdi/index.php">LibFTDI</a></td>
    </tr>
    <tr>
        <td class="package">libftdi1</td>
        <td class="website"><a href="http://www.intra2net.com/en/developer/libftdi/index.php">LibFTDI1</a></td>
    </tr>
    <tr>
        <td class="package">libgcrypt</td>
        <td class="website"><a href="ftp://ftp.gnupg.org/gcrypt/libgcrypt/">libgcrypt</a></td>
    </tr>
    <tr>
        <td class="package">libgda</td>
        <td class="website"><a href="http://www.gnome-db.org/">libgda</a></td>
    </tr>
    <tr>
        <td class="package">libgdamm</td>
        <td class="website"><a href="https://launchpad.net/libgdamm">libgdamm</a></td>
    </tr>
    <tr>
        <td class="package">libgee</td>
        <td class="website"><a href="http://live.gnome.org/Libgee">libgee</a></td>
    </tr>
    <tr>
        <td class="package">libgeotiff</td>
        <td class="website"><a href="http://trac.osgeo.org/geotiff/">GeoTiff</a></td>
    </tr>
    <tr>
        <td class="package">libgit2</td>
        <td class="website"><a href="https://libgit2.github.com/">libgit2</a></td>
    </tr>
    <tr>
        <td class="package">libglade</td>
        <td class="website"><a href="http://glade.gnome.org/">glade</a></td>
    </tr>
    <tr>
        <td class="package">libgnurx</td>
        <td class="website"><a href="http://sourceforge.net/projects/mingw/files/UserContributed/regex/">libgnurx</a></td>
    </tr>
    <tr>
        <td class="package">libgpg_error</td>
        <td class="website"><a href="ftp://ftp.gnupg.org/gcrypt/libgpg-error/">libgpg-error</a></td>
    </tr>
    <tr>
        <td class="package">libgsasl</td>
        <td class="website"><a href="https://www.gnu.org/software/gsasl/">Libgsasl</a></td>
    </tr>
    <tr>
        <td class="package">libgsf</td>
        <td class="website"><a href="http://projects.gnome.org/libgsf/">libgsf</a></td>
    </tr>
    <tr>
        <td class="package">libharu</td>
        <td class="website"><a href="http://libharu.org/">libharu</a></td>
    </tr>
    <tr>
        <td class="package">libiberty</td>
        <td class="website"><a href="http://gcc.gnu.org/onlinedocs/libiberty/">libiberty</a></td>
    </tr>
    <tr>
        <td class="package">libical</td>
        <td class="website"><a href="http://freeassociation.sourceforge.net/">libical</a></td>
    </tr>
    <tr>
        <td class="package">libiconv</td>
        <td class="website"><a href="https://www.gnu.org/software/libiconv/">libiconv</a></td>
    </tr>
    <tr>
        <td class="package">libid3tag</td>
        <td class="website"><a href="http://sourceforge.net/projects/mad/files/libid3tag/">libid3tag</a></td>
    </tr>
    <tr>
        <td class="package">libidn</td>
        <td class="website"><a href="https://www.gnu.org/software/libidn/">Libidn</a></td>
    </tr>
    <tr>
        <td class="package">libieee1284</td>
        <td class="website"><a href="http://cyberelk.net/tim/software/libieee1284/">libieee1284</a></td>
    </tr>
    <tr>
        <td class="package">libircclient</td>
        <td class="website"><a href="http://sourceforge.net/projects/libircclient/">libircclient</a></td>
    </tr>
    <tr>
        <td class="package">libjpeg-turbo</td>
        <td class="website"><a href="http://libjpeg-turbo.virtualgl.org/">libjpeg-turbo</a></td>
    </tr>
    <tr>
        <td class="package">liblaxjson</td>
        <td class="website"><a href="https://github.com/andrewrk/liblaxjson">liblaxjson</a></td>
    </tr>
    <tr>
        <td class="package">liblo</td>
        <td class="website"><a href="http://liblo.sourceforge.net/">liblo</a></td>
    </tr>
    <tr>
        <td class="package">liblqr-1</td>
        <td class="website"><a href="http://liblqr.wikidot.com/">liblqr-1</a></td>
    </tr>
    <tr>
        <td class="package">liblsmash</td>
        <td class="website"><a href="https://l-smash.github.io/l-smash/">L-SMASH</a></td>
    </tr>
    <tr>
        <td class="package">libltdl</td>
        <td class="website"><a href="http://www.gnu.org/software/libtool/manual/html_node/Using-libltdl.html#Using-libltdl">GNU Libtool Library (libltdl)</a></td>
    </tr>
    <tr>
        <td class="package">libmad</td>
        <td class="website"><a href="http://www.underbit.com/products/mad/">libmad</a></td>
    </tr>
    <tr>
        <td class="package">libmicrohttpd</td>
        <td class="website"><a href="http://www.gnu.org/software/libmicrohttpd/">GNU Libmicrohttpd</a></td>
    </tr>
    <tr>
        <td class="package">libmikmod</td>
        <td class="website"><a href="http://mikmod.raphnet.net/">libMikMod</a></td>
    </tr>
    <tr>
        <td class="package">libmng</td>
        <td class="website"><a href="http://www.libmng.com/">libmng</a></td>
    </tr>
    <tr>
        <td class="package">libmodplug</td>
        <td class="website"><a href="http://modplug-xmms.sourceforge.net/">libmodplug</a></td>
    </tr>
    <tr>
        <td class="package">libmpcdec</td>
        <td class="website"><a href="http://www.musepack.net/">libmpcdec</a></td>
    </tr>
    <tr>
        <td class="package">libmysqlclient</td>
        <td class="website"><a href="https://dev.mysql.com/downloads/connector/c/">libmysqlclient</a></td>
    </tr>
    <tr>
        <td class="package">libntlm</td>
        <td class="website"><a href="http://www.nongnu.org/libntlm/">Libntlm</a></td>
    </tr>
    <tr>
        <td class="package">liboauth</td>
        <td class="website"><a href="http://liboauth.sourceforge.net/">liboauth</a></td>
    </tr>
    <tr>
        <td class="package">libodbc++</td>
        <td class="website"><a href="http://libodbcxx.sourceforge.net/">libodbc++</a></td>
    </tr>
    <tr>
        <td class="package">liboil</td>
        <td class="website"><a href="http://liboil.freedesktop.org/">liboil</a></td>
    </tr>
    <tr>
        <td class="package">libpano13</td>
        <td class="website"><a href="http://panotools.sourceforge.net/">libpano13</a></td>
    </tr>
    <tr>
        <td class="package">libpaper</td>
        <td class="website"><a href="http://packages.debian.org/unstable/libpaper1">libpaper</a></td>
    </tr>
    <tr>
        <td class="package">libplist</td>
        <td class="website"><a href="https://github.com/libimobiledevice/libplist">libplist</a></td>
    </tr>
    <tr>
        <td class="package">libpng</td>
        <td class="website"><a href="http://www.libpng.org/">libpng</a></td>
    </tr>
    <tr>
        <td class="package">librosco</td>
        <td class="website"><a href="https://github.com/colinbourassa/librosco/">librosco</a></td>
    </tr>
    <tr>
        <td class="package">librsvg</td>
        <td class="website"><a href="http://librsvg.sourceforge.net/">librsvg</a></td>
    </tr>
    <tr>
        <td class="package">librtmp</td>
        <td class="website"><a href="http://rtmpdump.mplayerhq.hu/">librtmp</a></td>
    </tr>
    <tr>
        <td class="package">libsamplerate</td>
        <td class="website"><a href="http://www.mega-nerd.com/SRC/">libsamplerate</a></td>
    </tr>
    <tr>
        <td class="package">libshout</td>
        <td class="website"><a href="http://www.icecast.org/">libshout</a></td>
    </tr>
    <tr>
        <td class="package">libsigc++</td>
        <td class="website"><a href="http://libsigc.sourceforge.net/">libsigc++</a></td>
    </tr>
    <tr>
        <td class="package">libsndfile</td>
        <td class="website"><a href="http://www.mega-nerd.com/libsndfile/">libsndfile</a></td>
    </tr>
    <tr>
        <td class="package">libsodium</td>
        <td class="website"><a href="https://download.libsodium.org/doc/">libsodium</a></td>
    </tr>
    <tr>
        <td class="package">libsoup</td>
        <td class="website"><a href="https://github.com/GNOME/libsoup">libsoup</a></td>
    </tr>
    <tr>
        <td class="package">libspectre</td>
        <td class="website"><a href="https://libspectre.freedesktop.org">libspectre</a></td>
    </tr>
    <tr>
        <td class="package">libssh2</td>
        <td class="website"><a href="http://www.libssh2.org">libssh2</a></td>
    </tr>
    <tr>
        <td class="package">libsvm</td>
        <td class="website"><a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm">libsvm</a></td>
    </tr>
    <tr>
        <td class="package">libtool</td>
        <td class="website"><a href="https://www.gnu.org/software/libtool/">GNU Libtool</a></td>
    </tr>
    <tr>
        <td class="package">libtorrent-rasterbar</td>
        <td class="website"><a href="http://www.rasterbar.com/products/libtorrent/">libtorrent-rasterbar</a></td>
    </tr>
    <tr>
        <td class="package">libunistring</td>
        <td class="website"><a href="https://www.gnu.org/software/libunistring/">libunistring</a></td>
    </tr>
    <tr>
        <td class="package">libusb</td>
        <td class="website"><a href="http://libusb-win32.sourceforge.net/">LibUsb</a></td>
    </tr>
    <tr>
        <td class="package">libusb1</td>
        <td class="website"><a href="http://libusb.org/">LibUsb-1.0</a></td>
    </tr>
    <tr>
        <td class="package">libuv</td>
        <td class="website"><a href="http://libuv.org/">libuv</a></td>
    </tr>
    <tr>
        <td class="package">libvpx</td>
        <td class="website"><a href="http://code.google.com/p/webm/">vpx</a></td>
    </tr>
    <tr>
        <td class="package">libwebp</td>
        <td class="website"><a href="https://developers.google.com/speed/webp/">libwebp</a></td>
    </tr>
    <tr>
        <td class="package">libwebsockets</td>
        <td class="website"><a href="http://libwebsockets.org/">libwebsockets</a></td>
    </tr>
    <tr>
        <td class="package">libxml++</td>
        <td class="website"><a href="http://libxmlplusplus.sourceforge.net/">libxml2</a></td>
    </tr>
    <tr>
        <td class="package">libxml2</td>
        <td class="website"><a href="http://www.xmlsoft.org/">libxml2</a></td>
    </tr>
    <tr>
        <td class="package">libxslt</td>
        <td class="website"><a href="http://xmlsoft.org/XSLT/">libxslt</a></td>
    </tr>
    <tr>
        <td class="package">libzip</td>
        <td class="website"><a href="http://www.nih.at/libzip/">libzip</a></td>
    </tr>
    <tr>
        <td class="package">llvm</td>
        <td class="website"><a href="http://llvm.org/">llvm</a></td>
    </tr>
    <tr>
        <td class="package">log4cxx</td>
        <td class="website"><a href="http://logging.apache.org/log4cxx/">log4cxx</a></td>
    </tr>
    <tr>
        <td class="package">lua</td>
        <td class="website"><a href="http://www.lua.org/">Lua</a></td>
    </tr>
    <tr>
        <td class="package">luabind</td>
        <td class="website"><a href="http://www.rasterbar.com/products/luabind.html">Luabind</a></td>
    </tr>
    <tr>
        <td class="package">luajit</td>
        <td class="website"><a href="http://luajit.org/luajit.html">LuaJIT</a></td>
    </tr>
    <tr>
        <td class="package">lzma</td>
        <td class="website"><a href="http://www.7-zip.org/sdk.html">LZMA SDK</a></td>
    </tr>
    <tr>
        <td class="package">lzo</td>
        <td class="website"><a href="http://www.oberhumer.com/opensource/lzo/">lzo</a></td>
    </tr>
    <tr>
        <td class="package">matio</td>
        <td class="website"><a href="http://sourceforge.net/projects/matio/">matio</a></td>
    </tr>
    <tr>
        <td class="package">mdbtools</td>
        <td class="website"><a href="http://sourceforge.net/projects/mdbtools/">mdbtools</a></td>
    </tr>
    <tr>
        <td class="package">mingw-w64</td>
        <td class="website"><a href="http://mingw-w64.sourceforge.net/">MinGW-w64 Runtime</a></td>
    </tr>
    <tr>
        <td class="package">miniupnpc</td>
        <td class="website"><a href="http://miniupnp.free.fr/">miniupnpc</a></td>
    </tr>
    <tr>
        <td class="package">minizip</td>
        <td class="website"><a href="http://www.winimage.com/zLibDll/minizip.html">minizip</a></td>
    </tr>
    <tr>
        <td class="package">mman-win32</td>
        <td class="website"><a href="https://code.google.com/p/mman-win32/">MMA-Win32</a></td>
    </tr>
    <tr>
        <td class="package">mpc</td>
        <td class="website"><a href="http://www.multiprecision.org/">GNU MPC</a></td>
    </tr>
    <tr>
        <td class="package">mpfr</td>
        <td class="website"><a href="http://www.mpfr.org/">mpfr</a></td>
    </tr>
    <tr>
        <td class="package">mpg123</td>
        <td class="website"><a href="http://www.mpg123.de/">mpg123</a></td>
    </tr>
    <tr>
        <td class="package">muparser</td>
        <td class="website"><a href="http://muparser.beltoforion.de/">muParser</a></td>
    </tr>
    <tr>
        <td class="package">muparserx</td>
        <td class="website"><a href="http://muparserx.beltoforion.de/">muParserX</a></td>
    </tr>
    <tr>
        <td class="package">mxml</td>
        <td class="website"><a href="http://www.msweet.org/projects.php?Z3">Mini-XML</a></td>
    </tr>
    <tr>
        <td class="package">ncurses</td>
        <td class="website"><a href="https://www.gnu.org/software/ncurses/">Ncurses</a></td>
    </tr>
    <tr>
        <td class="package">netcdf</td>
        <td class="website"><a href="http://www.unidata.ucar.edu/software/netcdf/">NetCDF</a></td>
    </tr>
    <tr>
        <td class="package">netpbm</td>
        <td class="website"><a href="http://netpbm.sourceforge.net/">Netpbm</a></td>
    </tr>
    <tr>
        <td class="package">nettle</td>
        <td class="website"><a href="http://www.lysator.liu.se/~nisse/nettle/">nettle</a></td>
    </tr>
    <tr>
        <td class="package">nlopt</td>
        <td class="website"><a href="http://ab-initio.mit.edu/wiki/index.php/NLopt">NLopt</a></td>
    </tr>
    <tr>
        <td class="package">nsis</td>
        <td class="website"><a href="http://nsis.sourceforge.net/">NSIS</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-cairo</td>
        <td class="website"><a href="http://cairographics.org/cairo-ocaml/">cairo-ocaml</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-camlimages</td>
        <td class="website"><a href="http://gallium.inria.fr/camlimages">camlimages</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-core</td>
        <td class="website"><a href="http://caml.inria.fr/">ocaml</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-findlib</td>
        <td class="website"><a href="http://download.camlcity.org/">findlib</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-flexdll</td>
        <td class="website"><a href="http://alain.frisch.fr/">flexdll</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-lablgl</td>
        <td class="website"><a href="http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html">lablgl</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-lablgtk2</td>
        <td class="website"><a href="http://forge.ocamlcore.org/">lablgtk2</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-native</td>
        <td class="website"><a href="http://caml.inria.fr/">ocaml</a></td>
    </tr>
    <tr>
        <td class="package">ocaml-xml-light</td>
        <td class="website"><a href="http://tech.motion-twin.com/xmllight.html">xml-light</a></td>
    </tr>
    <tr>
        <td class="package">oce</td>
        <td class="website"><a href="https://github.com/tpaviot/oce">Open CASCADE Community Edition</a></td>
    </tr>
    <tr>
        <td class="package">ogg</td>
        <td class="website"><a href="http://www.xiph.org/ogg/">OGG</a></td>
    </tr>
    <tr>
        <td class="package">old</td>
        <td class="website"><a href="http://blitiri.com.ar/p/old/">old</a></td>
    </tr>
    <tr>
        <td class="package">openal</td>
        <td class="website"><a href="http://kcat.strangesoft.net/openal.html">openal</a></td>
    </tr>
    <tr>
        <td class="package">openblas</td>
        <td class="website"><a href="http://www.openblas.net/">OpenBLAS</a></td>
    </tr>
    <tr>
        <td class="package">opencore-amr</td>
        <td class="website"><a href="http://opencore-amr.sourceforge.net/">opencore-amr</a></td>
    </tr>
    <tr>
        <td class="package">opencsg</td>
        <td class="website"><a href="http://www.opencsg.org/">opencsg</a></td>
    </tr>
    <tr>
        <td class="package">opencv</td>
        <td class="website"><a href="http://opencv.org/">OpenCV</a></td>
    </tr>
    <tr>
        <td class="package">openexr</td>
        <td class="website"><a href="http://www.openexr.com/">OpenEXR</a></td>
    </tr>
    <tr>
        <td class="package">openjpeg</td>
        <td class="website"><a href="http://www.openjpeg.org/">OpenJPEG</a></td>
    </tr>
    <tr>
        <td class="package">openmp-validation</td>
        <td class="website"><a href="http://web.cs.uh.edu/~openuh/">OpenMP Validation Suite</a></td>
    </tr>
    <tr>
        <td class="package">openscenegraph</td>
        <td class="website"><a href="http://www.openscenegraph.org/">OpenSceneGraph</a></td>
    </tr>
    <tr>
        <td class="package">openssl</td>
        <td class="website"><a href="https://www.openssl.org/">openssl</a></td>
    </tr>
    <tr>
        <td class="package">openthreads</td>
        <td class="website"><a href="http://www.openscenegraph.org/">OpenThreads</a></td>
    </tr>
    <tr>
        <td class="package">opus</td>
        <td class="website"><a href="http://opus-codec.org/">opus</a></td>
    </tr>
    <tr>
        <td class="package">opusfile</td>
        <td class="website"><a href="http://opus-codec.org/">opusfile</a></td>
    </tr>
    <tr>
        <td class="package">ossim</td>
        <td class="website"><a href="http://trac.osgeo.org/ossim">OSSIM</a></td>
    </tr>
    <tr>
        <td class="package">pango</td>
        <td class="website"><a href="http://www.pango.org/">Pango</a></td>
    </tr>
    <tr>
        <td class="package">pangomm</td>
        <td class="website"><a href="http://www.pango.org/">Pangomm</a></td>
    </tr>
    <tr>
        <td class="package">pcl</td>
        <td class="website"><a href="http://www.pointclouds.org/">PCL (Point Cloud Library)</a></td>
    </tr>
    <tr>
        <td class="package">pcre</td>
        <td class="website"><a href="http://www.pcre.org/">PCRE</a></td>
    </tr>
    <tr>
        <td class="package">pdcurses</td>
        <td class="website"><a href="http://pdcurses.sourceforge.net/">PDcurses</a></td>
    </tr>
    <tr>
        <td class="package">pdflib_lite</td>
        <td class="website"><a href="http://www.pdflib.com/download/free-software/pdflib-lite-7/">PDFlib Lite</a></td>
    </tr>
    <tr>
        <td class="package">pfstools</td>
        <td class="website"><a href="http://pfstools.sourceforge.net/">pfstools</a></td>
    </tr>
    <tr>
        <td class="package">physfs</td>
        <td class="website"><a href="http://icculus.org/physfs/">physfs</a></td>
    </tr>
    <tr>
        <td class="package">picomodel</td>
        <td class="website"><a href="http://code.google.com/p/picomodel/">picomodel</a></td>
    </tr>
    <tr>
        <td class="package">pire</td>
        <td class="website"><a href="https://github.com/yandex/pire">PIRE</a></td>
    </tr>
    <tr>
        <td class="package">pixman</td>
        <td class="website"><a href="http://cairographics.org/">pixman</a></td>
    </tr>
    <tr>
        <td class="package">pkgconf</td>
        <td class="website"><a href="https://github.com/pkgconf/pkgconf">pkgconf</a></td>
    </tr>
    <tr>
        <td class="package">plib</td>
        <td class="website"><a href="http://plib.sourceforge.net/">Plib</a></td>
    </tr>
    <tr>
        <td class="package">plibc</td>
        <td class="website"><a href="http://plibc.sourceforge.net/">Plibc</a></td>
    </tr>
    <tr>
        <td class="package">plotmm</td>
        <td class="website"><a href="http://plotmm.sourceforge.net/">PlotMM</a></td>
    </tr>
    <tr>
        <td class="package">plotutils</td>
        <td class="website"><a href="https://www.gnu.org/software/plotutils/">plotutils</a></td>
    </tr>
    <tr>
        <td class="package">poco</td>
        <td class="website"><a href="http://pocoproject.org/">POCO C++ Libraries</a></td>
    </tr>
    <tr>
        <td class="package">polarssl</td>
        <td class="website"><a href="https://polarssl.org/">Polar SSL Library</a></td>
    </tr>
    <tr>
        <td class="package">poppler</td>
        <td class="website"><a href="http://poppler.freedesktop.org/">poppler</a></td>
    </tr>
    <tr>
        <td class="package">popt</td>
        <td class="website"><a href="http://freshmeat.net/projects/popt/">popt</a></td>
    </tr>
    <tr>
        <td class="package">portablexdr</td>
        <td class="website"><a href="http://people.redhat.com/~rjones/portablexdr/">PortableXDR</a></td>
    </tr>
    <tr>
        <td class="package">portaudio</td>
        <td class="website"><a href="http://www.portaudio.com/">portaudio</a></td>
    </tr>
    <tr>
        <td class="package">portmidi</td>
        <td class="website"><a href="http://portmedia.sourceforge.net/portmidi/">portmidi</a></td>
    </tr>
    <tr>
        <td class="package">postgresql</td>
        <td class="website"><a href="http://www.postgresql.org/">PostgreSQL</a></td>
    </tr>
    <tr>
        <td class="package">primesieve</td>
        <td class="website"><a href="http://primesieve.org/">Primesieve</a></td>
    </tr>
    <tr>
        <td class="package">proj</td>
        <td class="website"><a href="http://trac.osgeo.org/proj/">proj</a></td>
    </tr>
    <tr>
        <td class="package">protobuf</td>
        <td class="website"><a href="https://github.com/google/protobuf">protobuf</a></td>
    </tr>
    <tr>
        <td class="package">pthreads</td>
        <td class="website"><a href="https://en.wikipedia.org/wiki/POSIX_Threads">POSIX Threads</a></td>
    </tr>
    <tr>
        <td class="package">qdbm</td>
        <td class="website"><a href="http://fallabs.com/qdbm/">QDBM</a></td>
    </tr>
    <tr>
        <td class="package">qhttpengine</td>
        <td class="website"><a href="https://github.com/nitroshare/qhttpengine">qhttpengine</a></td>
    </tr>
    <tr>
        <td class="package">qjson</td>
        <td class="website"><a href="http://qjson.sourceforge.net/">QJson</a></td>
    </tr>
    <tr>
        <td class="package">qscintilla2</td>
        <td class="website"><a href="http://www.riverbankcomputing.com/software/qscintilla/intro">QScintilla2</a></td>
    </tr>
    <tr>
        <td class="package">qt</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qt3d</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qt5</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtactiveqt</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtbase</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtcanvas3d</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtcharts</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtconnectivity</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtdatavis3d</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtdeclarative</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtdeclarative-render2d</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtgamepad</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtgraphicaleffects</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtimageformats</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtlocation</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtmultimedia</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtofficeopenxml</td>
        <td class="website"><a href="https://github.com/dbzhang800/QtOfficeOpenXml/">QtOfficeOpenXml</a></td>
    </tr>
    <tr>
        <td class="package">qtpurchasing</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtquickcontrols</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtquickcontrols2</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtscript</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtscxml</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtsensors</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtserialbus</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtserialport</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtserialport_qt4</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtservice</td>
        <td class="website"><a href="https://qt.gitorious.org/qt-solutions/">Qt Solutions</a></td>
    </tr>
    <tr>
        <td class="package">qtsparkle_qt4</td>
        <td class="website"><a href="https://github.com/davidsansome/qtsparkle">qtsparkle</a></td>
    </tr>
    <tr>
        <td class="package">qtsvg</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtsystems</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qttools</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qttranslations</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtvirtualkeyboard</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwebchannel</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwebengine</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwebkit</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwebsockets</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwebview</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtwinextras</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qtxlsxwriter</td>
        <td class="website"><a href="https://github.com/dbzhang800/QtXlsxWriter/">QtXlsxWriter</a></td>
    </tr>
    <tr>
        <td class="package">qtxmlpatterns</td>
        <td class="website"><a href="http://qt-project.org/">Qt</a></td>
    </tr>
    <tr>
        <td class="package">qwt</td>
        <td class="website"><a href="http://qwt.sourceforge.net/">Qwt</a></td>
    </tr>
    <tr>
        <td class="package">qwt_qt4</td>
        <td class="website"><a href="http://qwt.sourceforge.net/">Qwt-qt4</a></td>
    </tr>
    <tr>
        <td class="package">qwtplot3d</td>
        <td class="website"><a href="http://qwtplot3d.sourceforge.net/">QwtPlot3D</a></td>
    </tr>
    <tr>
        <td class="package">ragel</td>
        <td class="website"><a href="https://www.colm.net/open-source/ragel/">Ragel</a></td>
    </tr>
    <tr>
        <td class="package">readline</td>
        <td class="website"><a href="http://tiswww.case.edu/php/chet/readline/rltop.html">Readline</a></td>
    </tr>
    <tr>
        <td class="package">rubberband</td>
        <td class="website"><a href="http://breakfastquay.com/rubberband/">Rubberband</a></td>
    </tr>
    <tr>
        <td class="package">rucksack</td>
        <td class="website"><a href="https://github.com/andrewrk/rucksack">rucksack</a></td>
    </tr>
    <tr>
        <td class="package">sdl</td>
        <td class="website"><a href="http://www.libsdl.org/">SDL</a></td>
    </tr>
    <tr>
        <td class="package">sdl2</td>
        <td class="website"><a href="http://www.libsdl.org/">SDL2</a></td>
    </tr>
    <tr>
        <td class="package">sdl2_gfx</td>
        <td class="website"><a href="http://www.ferzkopp.net/joomla/content/view/19/14/">SDL2_gfx</a></td>
    </tr>
    <tr>
        <td class="package">sdl2_image</td>
        <td class="website"><a href="http://www.libsdl.org/">SDL2_image</a></td>
    </tr>
    <tr>
        <td class="package">sdl2_mixer</td>
        <td class="website"><a href="http://www.libsdl.org/">SDL2_mixer</a></td>
    </tr>
    <tr>
        <td class="package">sdl2_net</td>
        <td class="website"><a href="http://www.libsdl.org/">sdl2_net</a></td>
    </tr>
    <tr>
        <td class="package">sdl2_ttf</td>
        <td class="website"><a href="http://www.libsdl.org/">SDL2_ttf</a></td>
    </tr>
    <tr>
        <td class="package">sdl_gfx</td>
        <td class="website"><a href="http://www.ferzkopp.net/joomla/content/view/19/14/">SDL_gfx</a></td>
    </tr>
    <tr>
        <td class="package">sdl_image</td>
        <td class="website"><a href="http://www.libsdl.org/projects/SDL_image/">SDL_image</a></td>
    </tr>
    <tr>
        <td class="package">sdl_mixer</td>
        <td class="website"><a href="http://www.libsdl.org/projects/SDL_mixer/">SDL_mixer</a></td>
    </tr>
    <tr>
        <td class="package">sdl_net</td>
        <td class="website"><a href="http://www.libsdl.org/projects/SDL_net/">SDL_net</a></td>
    </tr>
    <tr>
        <td class="package">sdl_pango</td>
        <td class="website"><a href="http://sdlpango.sourceforge.net/">SDL_Pango</a></td>
    </tr>
    <tr>
        <td class="package">sdl_rwhttp</td>
        <td class="website"><a href="http://github.com/mgerhardy/SDL_rwhttp/">SDL_rwhttp</a></td>
    </tr>
    <tr>
        <td class="package">sdl_sound</td>
        <td class="website"><a href="http://icculus.org/SDL_sound/">SDL_sound</a></td>
    </tr>
    <tr>
        <td class="package">sdl_ttf</td>
        <td class="website"><a href="http://www.libsdl.org/projects/SDL_ttf/">SDL_ttf</a></td>
    </tr>
    <tr>
        <td class="package">sfml</td>
        <td class="website"><a href="http://www.sfml-dev.org/">SFML</a></td>
    </tr>
    <tr>
        <td class="package">smpeg</td>
        <td class="website"><a href="http://icculus.org/smpeg/">smpeg</a></td>
    </tr>
    <tr>
        <td class="package">smpeg2</td>
        <td class="website"><a href="http://icculus.org/smpeg/">smpeg</a></td>
    </tr>
    <tr>
        <td class="package">sox</td>
        <td class="website"><a href="http://sox.sourceforge.net/">SoX</a></td>
    </tr>
    <tr>
        <td class="package">sparsehash</td>
        <td class="website"><a href="https://github.com/sparsehash/sparsehash">sparsehash</a></td>
    </tr>
    <tr>
        <td class="package">speex</td>
        <td class="website"><a href="http://www.speex.org/">Speex</a></td>
    </tr>
    <tr>
        <td class="package">speexdsp</td>
        <td class="website"><a href="http://www.speex.org/">SpeexDSP</a></td>
    </tr>
    <tr>
        <td class="package">sqlite</td>
        <td class="website"><a href="http://www.sqlite.org/">SQLite</a></td>
    </tr>
    <tr>
        <td class="package">subversion</td>
        <td class="website"><a href="http://subversion.apache.org">subversion</a></td>
    </tr>
    <tr>
        <td class="package">suitesparse</td>
        <td class="website"><a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">SuiteSparse</a></td>
    </tr>
    <tr>
        <td class="package">t4k_common</td>
        <td class="website"><a href="http://tux4kids.alioth.debian.org/">t4k_common</a></td>
    </tr>
    <tr>
        <td class="package">taglib</td>
        <td class="website"><a href="http://developer.kde.org/~wheeler/taglib.html">TagLib</a></td>
    </tr>
    <tr>
        <td class="package">tclap</td>
        <td class="website"><a href="http://tclap.sourceforge.net/">tclap</a></td>
    </tr>
    <tr>
        <td class="package">teem</td>
        <td class="website"><a href="http://teem.sourceforge.net/">Teem</a></td>
    </tr>
    <tr>
        <td class="package">termcap</td>
        <td class="website"><a href="https://www.gnu.org/software/termutils/">Termcap</a></td>
    </tr>
    <tr>
        <td class="package">theora</td>
        <td class="website"><a href="http://theora.org/">Theora</a></td>
    </tr>
    <tr>
        <td class="package">tiff</td>
        <td class="website"><a href="http://www.remotesensing.org/libtiff/">LibTIFF</a></td>
    </tr>
    <tr>
        <td class="package">tinyxml</td>
        <td class="website"><a href="http://sourceforge.net/projects/tinyxml/">tinyxml</a></td>
    </tr>
    <tr>
        <td class="package">tinyxml2</td>
        <td class="website"><a href="http://grinninglizard.com/tinyxml2/">tinyxml2</a></td>
    </tr>
    <tr>
        <td class="package">tre</td>
        <td class="website"><a href="http://laurikari.net/tre/">TRE</a></td>
    </tr>
    <tr>
        <td class="package">twolame</td>
        <td class="website"><a href="http://www.twolame.org/">TwoLAME</a></td>
    </tr>
    <tr>
        <td class="package">ucl</td>
        <td class="website"><a href="http://www.oberhumer.com/opensource/ucl/">UCL</a></td>
    </tr>
    <tr>
        <td class="package">unrtf</td>
        <td class="website"><a href="https://www.gnu.org/software/unrtf/">unRTF</a></td>
    </tr>
    <tr>
        <td class="package">upx</td>
        <td class="website"><a href="http://upx.sourceforge.net/">UPX</a></td>
    </tr>
    <tr>
        <td class="package">vamp-plugin-sdk</td>
        <td class="website"><a href="http://vamp-plugins.org/">Vamp Plugins SDK</a></td>
    </tr>
    <tr>
        <td class="package">vcdimager</td>
        <td class="website"><a href="https://www.gnu.org/software/vcdimager/">vcdimager</a></td>
    </tr>
    <tr>
        <td class="package">vidstab</td>
        <td class="website"><a href="http://public.hronopik.de/vid.stab/features.php?lang=en">vid.stab video stablizer</a></td>
    </tr>
    <tr>
        <td class="package">vigra</td>
        <td class="website"><a href="http://hci.iwr.uni-heidelberg.de/vigra">vigra</a></td>
    </tr>
    <tr>
        <td class="package">vmime</td>
        <td class="website"><a href="http://www.vmime.org/">VMime</a></td>
    </tr>
    <tr>
        <td class="package">vo-aacenc</td>
        <td class="website"><a href="https://github.com/mstorsjo/vo-aacenc">VO-AACENC</a></td>
    </tr>
    <tr>
        <td class="package">vo-amrwbenc</td>
        <td class="website"><a href="https://github.com/mstorsjo/vo-amrwbenc">VO-AMRWBENC</a></td>
    </tr>
    <tr>
        <td class="package">vorbis</td>
        <td class="website"><a href="http://www.vorbis.com/">Vorbis</a></td>
    </tr>
    <tr>
        <td class="package">vtk</td>
        <td class="website"><a href="http://www.vtk.org/">vtk</a></td>
    </tr>
    <tr>
        <td class="package">vtk6</td>
        <td class="website"><a href="http://www.vtk.org/">VTK6</a></td>
    </tr>
    <tr>
        <td class="package">waf</td>
        <td class="website"><a href="https://waf.io/">Waf: the meta build system</a></td>
    </tr>
    <tr>
        <td class="package">wavpack</td>
        <td class="website"><a href="http://www.wavpack.com/">WavPack</a></td>
    </tr>
    <tr>
        <td class="package">wget</td>
        <td class="website"><a href="https://www.gnu.org/software/wget/">wget</a></td>
    </tr>
    <tr>
        <td class="package">widl</td>
        <td class="website"><a href="https://www.winehq.org/docs/widl/">Wine IDL Compiler</a></td>
    </tr>
    <tr>
        <td class="package">winpcap</td>
        <td class="website"><a href="http://www.winpcap.org/">WinPcap</a></td>
    </tr>
    <tr>
        <td class="package">wt</td>
        <td class="website"><a href="http://www.webtoolkit.eu">Wt</a></td>
    </tr>
    <tr>
        <td class="package">wxwidgets</td>
        <td class="website"><a href="http://www.wxwidgets.org/">wxWidgets</a></td>
    </tr>
    <tr>
        <td class="package">x264</td>
        <td class="website"><a href="http://www.videolan.org/developers/x264.html">x264</a></td>
    </tr>
    <tr>
        <td class="package">xapian-core</td>
        <td class="website"><a href="http://xapian.org/">Xapian-Core</a></td>
    </tr>
    <tr>
        <td class="package">xerces</td>
        <td class="website"><a href="http://xerces.apache.org/xerces-c/">Xerces-C++</a></td>
    </tr>
    <tr>
        <td class="package">xmlrpc-c</td>
        <td class="website"><a href="http://xmlrpc-c.sourceforge.net/">xmlrpc-c</a></td>
    </tr>
    <tr>
        <td class="package">xmlwrapp</td>
        <td class="website"><a href="http://sourceforge.net/projects/xmlwrapp/">xmlwrapp</a></td>
    </tr>
    <tr>
        <td class="package">xorg-macros</td>
        <td class="website"><a href="http://cgit.freedesktop.org/xorg/util/macros/">X.org utility macros</a></td>
    </tr>
    <tr>
        <td class="package">xvidcore</td>
        <td class="website"><a href="http://www.xvid.org/">xvidcore</a></td>
    </tr>
    <tr>
        <td class="package">xxhash</td>
        <td class="website"><a href="http://cyan4973.github.io/xxHash/">xxHash</a></td>
    </tr>
    <tr>
        <td class="package">xz</td>
        <td class="website"><a href="http://tukaani.org/xz/">XZ</a></td>
    </tr>
    <tr>
        <td class="package">yaml-cpp</td>
        <td class="website"><a href="https://github.com/jbeder/yaml-cpp">A YAML parser and emitter for C++</a></td>
    </tr>
    <tr>
        <td class="package">yasm</td>
        <td class="website"><a href="http://yasm.tortall.net//">Yasm</a></td>
    </tr>
    <tr>
        <td class="package">zlib</td>
        <td class="website"><a href="http://zlib.net/">zlib</a></td>
    </tr>
    <tr>
        <td class="package">zziplib</td>
        <td class="website"><a href="http://zziplib.sourceforge.net/">ZZIPlib</a></td>
    </tr>
    </table>

    <script>
        function getPackageElements() {
            var packageElements = {};
            var elements = document.getElementById('package-list').getElementsByTagName('td');
            for (var i = 0; i < elements.length; i++) {
                var element = elements[i];
                if (element.className === 'package') {
                    var package = element.textContent;
                    packageElements[package] = element;
                }
            }
            return packageElements;
        }
        function parseVersion(mkfile) {
            var matchResult = mkfile.match(/^\$\(PKG\)_VERSION\s*:?=\s*(.+)\s*$/m);
            return matchResult[1];
        }
        function loadVersions(packageElements, doneCallback) {
            var versions = {};
            var packageCount = 0;
            for (var package in packageElements) {
                packageCount++;
            }
            var loadCount = 0;
            for (var packageIndex in packageElements) {
                (function handlePackage(){
                    var package = packageIndex;
                    var request = new XMLHttpRequest();
                    request.open('GET', 'src/' + package + '.mk', true);
                    request.onreadystatechange = function reqCallback() {
                        if (request.readyState === 4) {
                            versions[package] = parseVersion(request.responseText);
                            loadCount++;
                            if (loadCount === packageCount) {
                                doneCallback(versions);
                            }
                        }
                    }
                    request.send();
                })();
            }
        }
        function loadVersionCache(doneCallback, errCallback) {
            var request = new XMLHttpRequest();
            request.open('GET', 'docs/versions.json', true);
            request.onreadystatechange = function reqCallback() {
                if (request.readyState === 4) {
                    if (request.status === 200) {
                        try {
                            var versions = JSON.parse(request.responseText);
                            doneCallback(versions);
                        } catch (e) {
                            errCallback();
                        }
                    } else {
                        errCallback();
                    }
                }
            }
            request.send();
        }
        function resolveVersions(versions) {
            var resolvedVersions = {};
            for (var package in versions) {
                var version = versions[package];
                var matchResult = version.match(/^\$\((.+)_VERSION\)$/);
                if (matchResult) {
                    resolvedVersions[package] = versions[matchResult[1]];
                } else {
                    resolvedVersions[package] = versions[package];
                }
            }
            return resolvedVersions;
        }
        function showVersions(packageElements, resolvedVersions) {
            for (package in packageElements) {
                var element = packageElements[package];
                var version = resolvedVersions[package];
                var shorten = version.length > 12;
                if (shorten) {
                    version = version.substring(0, 12);
                }
                var versionEscaped = version.replace('&', '&amp;').replace('<', '&lt;').replace('>', '&gt;');
                if (shorten) {
                    versionEscaped += '&hellip;';
                }
                var versionHtml = '<td class="version">' + versionEscaped + '</td>';
                element.insertAdjacentHTML('afterend', versionHtml);
            }
        }
        (function main() {
            var packageElements = getPackageElements();
            loadVersionCache(function doneCallback(versions) {
                showVersions(packageElements, versions);
            }, function errCallback() {
                loadVersions(packageElements, function doneCallback(versions) {
                    var resolvedVersions = resolveVersions(versions);
                    showVersions(packageElements, resolvedVersions);
                });
            });
        })();
    </script>
</div>

<div class="section">
<h2 id="creating-packages">Guidelines for Creating Packages</h2>

    <ol>
    <li>
        <p>
        The package should be a
        <a href="https://www.gnu.org/philosophy/free-sw.html">free</a>
        <a href="http://www.debian.org/social_contract#guidelines">software</a>
        <a href="http://www.opensource.org/osd.html">library</a>
        that is really used by one of your applications. Please also review our
        <a href="#legal">legal notes</a>.
        </p>

        <p>
        BTW, we're always curious about the applications people are porting.
        We maintain a
        <a href="#used-by">list of projects</a>
        which use MXE.
        No matter whether your project is free or proprietary
        &ndash; as long as it has its own website,
        we'd be happy to link to it.
        </p>

        <p>
        Also, feel free to link to us. :-)
        </p>
    </li>

    <li>
        <p>
        Grep through the <code>src/*.mk</code> files
        to find a project that is most similar to yours.
        (Really, <code>grep</code> is your friend here.)
        </p>

        <p>
        For instance,
        when adding a GNU library,
        you should take a package like
        <a href="https://github.com/mxe/mxe/blob/master/src/gettext.mk">gettext.mk</a>
        or
        <a href="https://github.com/mxe/mxe/blob/master/src/libiconv.mk">libiconv.mk</a>
        as the base of your work.
        When using a SourceForge project,
        you could start with a copy of
        <a href="https://github.com/mxe/mxe/blob/master/src/xmlwrapp.mk">xmlwrapp.mk</a>.
        And so on.
        </p>

        <p>
        The <a href="docs/gmsl.html">GNU Make Standard Library</a> is also
        available (though it should be unnecessary for most packages).
        </p>

        <p>
        Alternatively you can use tool <code>tools/skeleton.py</code> to
        create a skeleton of new MXE package. It fills most of the fields
        of <code>.mk</code> file automatically and supports typical
        build scenarios through option <code>--builder</code>. It also
        adds a package to the <a href="#packages">list of packages</a>
        (see below).
        </p>
    </li>

    <li>
        <p>
        Adjust the comments,
        fill in the <code>$(PKG)_*</code> fields.
        </p>

        <p>
        To fill the <code>$(PKG)_CHECKSUM</code> field, use a command such as (for file gettext.mk):
        </p>
        <pre>make update-checksum-gettext</pre>
        <p>or:</p>
        <pre>openssl sha256 pkg/gettext-x.y.z.tar.gz</pre>
        <p>
        if you have already downloaded the package.
        </p>

        <p>
        Be especially careful with the <code>$(PKG)_DEPS</code> section.
        The easiest way to get the dependencies right
        is to start with a minimal setup.
        That is,
        initialize MXE with <code>make gcc</code> only,
        then check whether your package builds successfully.
        </p>

        <p>
        Always list the dependency on <code>gcc</code> explicitly:
        </p>
        <pre>$(PKG)_DEPS     := gcc ...</pre>

        <p>
        Things not to do:
        </p>
        <ul>
            <li>
            <b>do not run target executables with Wine</b>, as Wine is
            not guaranteed to be installed. Instead build the needed tool
            natively or (if it is too huge to build one more time) add
            to MXE's dependencies. This policy is forced by setting
            WINEPREFIX to an empty directory, which breaks Wine;
            </li>

            <li>
            <b>do not download anything while building</b>, as all files
            downloaded should be verified by checksums. Instead create a
            package which installs the needed file. This policy is forced
            on Linux by <a href="https://github.com/starius/nonetwork/"
            >LD_PRELOAD trick</a>, breaking network functions.
            </li>
        </ul>

    </li>

    <li>
        <p>
            Add your package to the <a href="#packages">list of packages</a>.
        </p>
        <p>
            Each package gets its own table row element with table cells
            specifying your package name, official name and website:
        </p>
        <pre>
&lt;tr&gt;
    &lt;td class="package"&gt;gettext&lt;/td&gt;
    &lt;td class="website"&gt;&lt;a href="https://www.gnu.org/software/gettext/"&gt;gettext&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;</pre>
        <p>
            Always look for the SSL version of a website, that is,
            prefer <code>https://</code> URLs over <code>http://</code> URLs.
        </p>
    </li>

    <li>
        <p>
        Write your <code>$(PKG)_BUILD</code>.
        If your library has a <code>./configure</code> script,
        enable/disable all dependency libraries explicitly
        via "<code>--enable-*</code>" and "<code>--disable-*</code>" options.
        </p>
    </li>

    <li>
        <p>
        You might also have to provide a patch for it.
        In that case, have a look at other patches such as
        <a href="https://github.com/mxe/mxe/blob/master/src/sdl2-2-libtool.patch">sdl2-2-libtool.patch</a>.
        In particular, each patch file should be named as:
        </p>
        <pre>PACKAGE-PATCHNUMBER-DESCRIPTION.patch</pre>
        <p>
        and should start with:
        </p>
        <pre>This file is part of MXE. See LICENSE.md for licensing information.

This patch has been taken from:
https://...</pre>
        <p>
        where the URL points to the
        bugtracker entry,
        mailing list entry or
        website
        you took the patch from.
        </p>

        <p>
        If you created the patch yourself,
        please offer it to the upstream project first,
        and point to <em>that</em> URL,
        using the same wording:
        "This patch has been taken from:".
        </p>

        <p>
        Depending on the feedback you get from the upstream project,
        you might want to improve your patch.
        </p>
    </li>

    <li>
        <p>
        If you find some time,
        please provide a minimal test program for it.
        It should be
        simple,
        stand alone and
        should work unmodified for many (all?) future versions of the library.
        Test programs are named as:
        </p>
        <pre>PACKAGE-test.c</pre>
        or
        <pre>PACKAGE-test.cpp</pre>
        <p>
        depending on whether it is a C or C++ library.
        To get a clue,
        please have a look at existing test programs such as
        <a href="https://github.com/mxe/mxe/blob/master/src/sdl-test.c">sdl-test.c</a>.
        </p>

        <p>
        At the very end of your <code>*.mk</code> file
        you should build the test program in a generic way,
        using strict compiler flags.
        The last few lines of
        <a href="https://github.com/mxe/mxe/blob/master/src/sdl.mk">sdl.mk</a>
        will give you a clue.
        </p>
    </li>

    <li>
        <p>
        You could also try to provide a <code>$(PKG)_UPDATE</code> section.
        However, that requires some experience and "feeling" for it.
        So it is perfectly okay if you leave a placeholder:
        </p>
        <pre>define $(PKG)_UPDATE
    echo 'TODO: write update script for $(PKG).' &gt;&amp;2;
    echo $($(PKG)_VERSION)
endef</pre>
        <p>
        We'll fill that in for you.
        It's a funny exercise.
        </p>
    </li>

    <li>
        <p>
        Check that you don't have "dirty stuff" in your <code>*.mk</code> files,
        such as TAB characters or trailing spaces at lines endings. Run:
        </p>
        <pre>make cleanup-style</pre>
        <p>
        to remove these.
        Have a look at random <code>*.mk</code> files
        to get a feeling for the coding style.
        </p>

        <p>
        The same holds for your test program.
        </p>

        <p>
        However, patch files should always appear
        in the same coding style as the files they are patching.
        </p>

        <p>
        When patching sources with crlf line endings, the patch
        file itself should also have the same eol style. Use the
        convention of naming the file as <code>*crlf.patch</code>
        to instruct git not to normalise the line endings (defined
        in <code>.gitattributes</code>).
        </p>

        <p>
        Finally, in your <code>$(PKG)_BUILD</code> section,
        please check that you use our portability variables:
        </p>
        <table class="translation old">
            <tr><td><code>bash</code></td>      <td>&rarr;</td><td><code>$(SHELL)</code></td></tr>
            <tr><td><code>date</code></td>      <td>&rarr;</td><td><code>$(DATE)</code></td></tr>
            <tr><td><code>install</code></td>   <td>&rarr;</td><td><code>$(INSTALL)</code></td></tr>
            <tr><td><code>libtool</code></td>   <td>&rarr;</td><td><code>$(LIBTOOL)</code></td></tr>
            <tr><td><code>libtoolize</code></td><td>&rarr;</td><td><code>$(LIBTOOLIZE)</code></td></tr>
            <tr><td><code>make</code></td>      <td>&rarr;</td><td><code>$(MAKE)</code></td></tr>
            <tr><td><code>patch</code></td>     <td>&rarr;</td><td><code>$(PATCH)</code></td></tr>
            <tr><td><code>sed</code></td>       <td>&rarr;</td><td><code>$(SED)</code></td></tr>
            <tr><td><code>sort</code></td>      <td>&rarr;</td><td><code>$(SORT)</code></td></tr>
            <tr><td><code>wget</code></td>      <td>&rarr;</td><td><code>$(WGET)</code></td></tr>
        </table>
    </li>

    <li>
        <p>
        Check whether everything runs fine.
        If you have some trouble,
        don't hesitate to ask on the
        <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">mailing list</a>,
        providing your <code>*.mk</code> file so far.
        </p>
    </li>

    <li>
        <p>
        Issue a
        <a href="https://help.github.com/articles/creating-a-pull-request">pull request</a>
        to propose your final <code>*.mk</code> file to us.
        If you have trouble with pull requests,
        send your file to the mailing list instead.
        </p>
        <p>
        Either way,
        don't forget to tell us
        if there are some pieces in your <code>*.mk</code> file
        you feel unsure about.
        We'll then have a specific look at those parts,
        which avoids trouble for you and us in the future.
        </p>
    </li>
    </ol>
</div>

<div class="section">
<h2 id="copyright">Copyright © <span class="years">2007–2015</span></h2>

    <ul id="authors-list" class="compact-list">
    <li>Volker Diels-Grabsch</li>
    <li>Mark Brand</li>
    <li>Tony Theodore</li>
    <li>Martin Gerhardy</li>
    <li>Tiancheng "Timothy" Gu</li>
    <li>Boris Nagaev</li>
    <li><a href="https://github.com/mxe/mxe/graphs/contributors">... and many other contributors</a></li>
    </ul>

    <p>(contact via the
       <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">project mailing list</a>)</p>

    <p>
    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:
    </p>

    <p>
    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.
    </p>

    <p>
    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.
    </p>
</div>

<div class="section">
<h2 id="legal">Legal</h2>

    <h3>Disclaimer - it's all code...</h3>

    <p>
    Modern legal systems are like any other large, complex, and evolving body
    of code you're likely to encounter.
    </p>

    <p>
    They have their own language with quirky parsers, compilers, and
    interpreters (though these tend to be human). Their issue trackers are
    a backlog of court cases. They have bugs. They have traps for the
    uninitiated that may potentially do more than waste your time.
    </p>

    <p>
    We currently limit ourselves to:
    </p>
    <pre>--enable-languages='c,c++,objc,fortran'</pre>
    <p>
    so nothing mentioned here or on the mailing list should be taken as
    legal advice. :-)
    </p>

    <h3>Choosing the right compiler</h3>

    <p>
    The best starting point for any legal questions would be the
    </p>
    <p>
    <a href="http://fsfe.org/projects/ftf/">FTF (Freedom Task Force of the FSFE (Free Software Foundation Europe)).</a>
    </p>
    <p>
    They have been very helpful in the past, and maintain an
    <a href="http://fsfe.org/projects/ftf/network.en.html">extensive network</a>
    of legal contacts, both within and outside Europe.
    </p>

    <p>Your local jurisdiction may be a signatory to various
    <a href="http://en.wikipedia.org/wiki/List_of_parties_to_international_copyright_agreements">international agreements,</a>
    so be sure to mention where you are in any correspondence (much like any
    detailed bug report really).
    </p>

    <p>Additionally, you should also do some background reading from the
    <a href="http://www.gnu.org/licenses/gpl-faq.html#GPLIncompatibleLibs">FSF (Free Software Foundation)</a>
    and
    <a href="http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License">Wikipedia</a>
    to familiarise yourself with some of the potential issues (and experience
    some context-switching overhead).
    </p>

    <h3 id="contributions">Contributions</h3>

    <p>
    Contributions are always welcome!
    </p>

    <p>
    Ownership of all contributions (bug fixes, new packages, doc updates, etc.)
    remain with the author. All we require is a real name (no l33t handles,
    please), and that you release your work under
    <a href="#copyright">our licence</a>.
    </p>

    <p>If you prefer not to be credited with a contribution, please notify
    the committer.
    </p>

    <h3 id="package-licenses">Package Licences</h3>

    <p>
    Each package is individually licensed under terms specified by the
    authors of that package. Please see the respective source tarball
    and/or project website for details.
    </p>

    <p>
    Packages that are
    <a href="http://www.audiocoding.com/faac.html">non-free</a>
    or
    <a href="http://glaros.dtc.umn.edu/gkhome/metis/metis/faq#distribute">ambiguous</a>
    will be
    <a href="http://lists.nongnu.org/archive/html/mingw-cross-env-list/2010-12/msg00049.html">removed</a>
    or
    <a href="http://lists.nongnu.org/archive/html/mingw-cross-env-list/2010-09/msg00063.html">rejected</a>.
    </p>

    <p>
    The definition of free must be one of:
    </p>
    <ul>
    <li><a href="http://www.gnu.org/philosophy/free-sw.html">The Free Software Definition</a></li>
    <li><a href="http://www.debian.org/social_contract#guidelines">The Debian Free Software Guidelines (DFSG)</a></li>
    <li><a href="http://www.opensource.org/osd.html">The Open Source Definition</a></li>
    </ul>

    <p>
    Please contact the
    <a href="http://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">mailing list</a>
    if you notice a package that doesn't meet these guidlines.
    </p>

    <h3 id="other-legal-considerations">Other Considerations</h3>

    <p>
    In addition to the usual considerations (copyrights, patents,
    trademarks, export regulations etc.), building
    <a href="http://lists.nongnu.org/archive/html/mingw-cross-env-list/2010-12/msg00025.html">statically linked</a>
    libraries
    <a href="http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-02/msg00018.html">for Windows</a>
    exposes some edge cases that you may not have encountered before.
    </p>

    <p>
    According to
    <a href="http://www.gnu.org/philosophy/free-sw.html">freedom 0</a> and our
    <a href="#copyright">own licence</a>,
    you can use mxe in countless different
    environments, each with it's own special legal considerations. The
    configuration options of certain packages (e.g ffmpeg) allow the use of
    non-free software and/or combinations that cause license violations.
    </p>

    <p>
    For these packages, we will provide sensible defaults aimed
    at achieving the following goals:
    </p>
    <ol>
        <li>avoid causing inherent licensing issues with conflicting options</li>
        <li>make the package as feature complete as possible</li>
    </ol>

    <p>
    Note that this does not prevent downstream violations, or affect any
    further obligations a licence may impose on you.
    </p>

    <h3 id="potential-legal-issues">Potential Issues - Non Exhaustive List</h3>

    <h4>GNU Licenses</h4>
    <p>
    Review the
    <a href="http://www.gnu.org/licenses/gpl-faq.html#content">FAQ</a>
    </p>

    <h4>LGPL and Static Linking</h4>

    <p>
    Review the
    <a href="http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License#Differences_from_the_GPL">Differences from the GPL</a>
    section of the Wikipedia article mentioned above.
    </p>

    <h4>GPL and OpenSSL</h4>

    <p>
    See conflicting accounts from the
    <a href="http://www.gnu.org/licenses/license-list.html#OpenSSL">FSF</a>
    and the
    <a href="http://www.openssl.org/support/faq.html#LEGAL2">OpenSSL project</a>.
    </p>
    <p>
    A similar situation also exists for package fdk-aac.
    </p>
</div>

<div class="section">
<h2 id="history">History</h2>

    <dl>

    <dt>2015-05-04 &ndash; Retired the stable branch</dt>
    <dd>
        <p>
        The stable branch
        <a href="https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-05/msg00004.html">was retired</a>
        as it
        <a href="https://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-03/msg00002.html">did more harm than good</a>.
        Everybody is using the master branch,
        because it is always recent and well enough tested.
        For historical reference, the last commit to the stable branch was
        <a href="https://github.com/mxe/mxe/commits/0c6cc9c91cf94e445ec471a5beebb7199483cb9d" title="0c6cc9c91cf94e445ec471a5beebb7199483cb9d">0c6cc9c</a>,
        which was
        <a href="https://github.com/mxe/mxe/commits/eaac1a873f37bdc4f91e1b649e28b118acedc436" title="eaac1a873f37bdc4f91e1b649e28b118acedc436">fully merged into master</a>
        as usual.
        </p>

        <p>
        Added support for <a href="#supported-toolchains">shared toolchains</a> for over 50% of all the packages.
        </p>

        <p>
        Unfortunately, a number of factors have forced us to drop support
        for MinGW 3 (i.e. "<a href="http://mingw.org/">MinGW.org</a>"),
        in favor of the MinGW-w64 toolchain. This decision was made in a
        large part because of the dropping of support for MinGW by <a
        href="https://github.com/mxe/mxe/pull/453#issuecomment-51703048">
        GLib</a> and <a
        href="https://github.com/mxe/mxe/issues/492#issue-41366666">Qt5</a>,
        which arguably are two of the most important packages in MXE.
        Other considerations have also been taken, like the <a
        href="https://github.com/mxe/mxe/pull/323#issuecomment-39463810">lack
        of maintainership in MinGW</a> and <a
        href="https://github.com/mxe/mxe/issues/400">potential legal
        challenges</a> that comes with using supplemental DirectX
        headers in MinGW in order to support Qt4. Worse yet, having to
        support the unsupported MinGW toolchain impedes adding or
        updating packages, as shown in the <a
        href="https://github.com/mxe/mxe/pull/453#issuecomment-51703048">pull
        request of updating GLib</a>.
        </p>

        <p>
        Please note that dropping support for MinGW <strong>DOES NOT
        MEAN</strong> dropping support for the 32-bit architecture. MinGW-w64
        also supports 32-bit target through i686-w64-mingw32.
        </p>

        <p>
        To ease migration to the supported MinGW-w64 target, we have
        finished porting all packages that were MinGW-only to at least
        i686-w64-mingw32 (32-bit target of MinGW-w64). Hence your existing
        commands should work out-of-the-box assuming the
        <code>MXE_TARGETS</code> environmental variable is set correctly.
        </p>
    </dd>

    <dt>2013-07-27 &ndash; Release 2.23</dt>
    <dd>
        <p>
        The stable branch was updated
        to the current development version after a thorough
        <a href="https://lists.nongnu.org/archive/html/mingw-cross-env-list/2013-07/msg00021.html">testing phase</a>.
        </p>

        <p>
        Current users are <strong>strongly</strong> encouraged to
        start with a clean tree as the toolchain has been
        updated and requires a full rebuild:
        </p>
        <pre>git pull && make clean && make</pre>

        <p>
        Most packages were updated to their latest version.
        </p>

        <p>
        Many new packages are supported:
        alure, apr-util, apr, armadillo, cegui, cfitsio, cminpack,
        flann, gtkglarea, gtkimageview, harfbuzz, hdf4, hdf5, hunspell,
        icu4c, itk, lensfun, levmar, libf2c, libftdi, libgda, libgdamm,
        libglade, liblqr-1, libmodplug, librtmp, libzip, log4cxx, mdbtools,
        ncurses, netcdf, netpbm, ocaml-cairo, ocaml-camlimages, ocaml-core,
        ocaml-findlib, ocaml-flexdll, ocaml-lablgl, ocaml-lablgtk2,
        ocaml-native, ocaml-xml-light, opencv, opus, opusfile, pcl,
        picomodel, plib, plibc, poppler, portablexdr, portmidi, protobuf,
        qdbm, qt5, qtactiveqt, qtbase, qtdeclarative, qtgraphicaleffects,
        qtimageformats, qtjsbackend, qtmultimedia, qtquick1, qtquickcontrols,
        qtscript, qtsensors, qtserialport, qtsvg, qttools, qttranslations,
        qtxmlpatterns, qwt, sdl_gfx, sfml, sox, teem, twolame, vtk6, wavpack,
        wget, winpthreads, xapian-core, yasm
        </p>

        <p>
        Added support for <a href="#supported-toolchains">mingw-w64 based toolchains</a>
        targeting 32 &amp; 64-bit architectures.
        </p>

        <p>
        With the addition of Qt5, there is no longer a prefixed version of
        qmake, see the <a href="#tutorial-5c">Qt section of the tutorial</a>
        for the new way to invoke qmake.
        </p>

        <p>
        <a href="#requirements-freebsd">FreeBSD</a> is no longer fully supported.
        Qt5, ocaml*, and 8 other packages are excluded from the build.
        </p>
    </dd>

    <dt id="branches">2012-04-12 &ndash; Release 2.22</dt>
    <dd>
        <p>
        The release tarballs have been replaced with a stable branch
        that conforms to the new branch concept:
        </p>

        <ul class="compact-list">
            <li>
                Any change of a build script goes into "master".
            </li>
            <li>
                Any package upgrade goes into "master".
            </li>
            <li>
                Any documentation upgrade that refers to a feature
                not present in stable goes into "master".
            </li>
            <li>
                Anything else that doesn't affect the build goes
                into "stable".
            </li>
            <li>
                Any non-critical improvement to the main Makefile
                goes into "stable".
            </li>
            <li>
                Any improvement in the package download URLs or
                package version recognition goes into "stable".
            </li>
            <li>
                When in doubt, "master" is used rather than "stable".
            </li>
            <li>
                Every change to the "stable" branch
                will be merged into "master".
            </li>
            <li>
                After a successful testing phase,
                the "stable" branch
                will be fast-forwarded to "master".
            </li>
        </ul>

        <p>
        The project has been
        <a href="http://lists.nongnu.org/archive/html/mingw-cross-env-list/2012-03/msg00101.html">renamed</a>
        from
        mingw-cross-env (MinGW cross compiling environment)
        to
        MXE (M&nbsp;cross&nbsp;environment).
        </p>

        <p>
        Most packages were updated to their latest version.
        </p>

        <p>
        New packages are supported:
        agg, cgal, eigen, file, gta, json-c, libgnurx, libharu,
        libircclient, libssh2, libxml++, llvm, lzo, mpfr, nettle,
        opencsg, qjson, qwtplot3d, vtk, and wt.
        </p>
    </dd>

    <dt>2011-06-07 &ndash; Release 2.21</dt>
    <dd>
        <p>
        <a href="https://bitbucket.org/vog/mingw-cross-env/downloads/mingw-cross-env-2.21.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.21">Changelog</a>
        </p>

        <p>
        Minor bugfixes in several packages.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        Packages gtkmm and gtksourceviewmm have been renamed to gtkmm2 and gtksourceviewmm2.
        </p>

        <p>
        New packages are supported:
        libass, poco, and t4k_common.
        </p>
    </dd>

    <dt>2011-04-05 &ndash; Release 2.20</dt>
    <dd>
        <p>
        <a href="https://bitbucket.org/vog/mingw-cross-env/downloads/mingw-cross-env-2.20.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.20">Changelog</a>
        </p>

        <p>
        This release fixes a download error caused by the pixman project
        (a sudden change of their URL scheme without proper redirects).
        <a href="http://www.w3.org/Provider/Style/URI">That sort of thing should never happen!</a>
        </p>
    </dd>

    <dt>2011-03-19 &ndash; Release 2.19</dt>
    <dd>
        <p>
        <a href="https://bitbucket.org/vog/mingw-cross-env/downloads/mingw-cross-env-2.19.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.19">Changelog</a>
        </p>

        <p>
        The download mechanisms are improved.
        </p>

        <p>
        A CMake toolchain file is provided
        to simplify cross-compiling projects which use CMake.
        </p>

        <p>
        Support for Debian/Lenny is dropped.
        </p>

        <p>
        Package gtk is renamed to gtk2.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        New packages are supported:
        dbus, graphicsmagick, libical, liboauth, physfs, and vigra.
        </p>

        <p>
        Note for <code>boost::filesystem</code> users:
        <a href="http://beta.boost.org/doc/libs/1_46_1/libs/filesystem/v3/doc/index.htm">Version 3 is a major revision</a>
        and now the default in 1.46.
        </p>
    </dd>

    <dt>2010-12-15 &ndash; Release 2.18</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.18.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.18">Changelog</a>
        </p>

        <p>
        This release fixes a checksum error caused by the atkmm project
        (a sudden change of their current source tarball).
        <a href="http://www.w3.org/Provider/Style/URI">That sort of thing should never happen!</a>
        </p>
    </dd>

    <dt>2010-12-11 &ndash; Release 2.17</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.17.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.17">Changelog</a>
        </p>

        <p>
        This release provides some improvements of the build system
        such as an automatic check for most of the requirements.
        </p>

        <p>
        All packages are updated to their latest version.
        </p>

        <p>
        New packages are supported:
        bfd, blas, cblas, dcmtk, ftgl, lapack, lcms1,
        mingw-utils, mxml, suitesparse and tinyxml.
        </p>
    </dd>

    <dt>2010-10-27 &ndash; Release 2.16</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.16.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.16">Changelog</a>
        </p>

        <p>
        This release provides lots of improvements to
        the build system as well as the documentation.
        </p>

        <p>
        Support for OpenSolaris is dropped.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        Many new packages are supported:
        atkmm, cairomm, cunit, faac, faad2, ffmpeg, gdk-pixbuf, glibmm,
        gtkglextmm, gtkmm, gtksourceview, gtksourceviewmm, imagemagick,
        lame, libiberty, libsigc++, libvpx, matio, openal, opencore-amr,
        pangomm, pfstools, plotmm, sdl_sound and x264.
        </p>
    </dd>

    <dt>2010-06-16 &ndash; Release 2.15</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.15.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.15">Changelog</a>
        </p>

        <p>
        This release fixes download errors caused by the Qt project
        (a sudden change of their current source tarball).
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>
    </dd>

    <dt>2010-06-08 &ndash; Release 2.14</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.14.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.14">Changelog</a>
        </p>

        <p>
        This release fixes download errors caused by the MinGW project
        (a sudden change of their URL scheme without proper redirects).
        <a href="http://www.w3.org/Provider/Style/URI">That sort of thing should never happen!</a>
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        New packages are supported:
        libarchive, libgee and xvidcore.
        </p>
    </dd>

    <dt>2010-05-31 &ndash; Release 2.13</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.13.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.13">Changelog</a>
        </p>

        <p>
        This release switches back from TDM to the official GCC,
        thus supporting the current GCC&nbsp;4.5.
        </p>

        <p>
        The set of DirectX headers is improved and more complete.
        </p>

        <p>
        The deadlock issues with Pthreads-w32 are fixed.
        </p>

        <p>
        A static build of GDB is provided,
        i.e. a standalone "gdb.exe"
        that doesn't require any extra DLLs.
        </p>

        <p>
        More packages are backed by test programs.
        </p>

        <p>
        Many "sed hacks" are replaced by proper portability patches.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        Many new packages are supported:
        fribidi, gc, gdb, gmp, gsl, gst-plugins-base, gst-plugins-good,
        gstreamer, gtkglext, guile, libcroco, libffi, liboil, libpaper,
        libshout, libunistring and xine-lib.
        </p>
    </dd>

    <dt>2010-02-21 &ndash; Release 2.12</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.12.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.12">Changelog</a>
        </p>

        <p>
        This release fixes some minor build issues,
        and contains a first small set of test programs
        to check the package builds.
        </p>

        <p>
        The build rules are simplified
        by calling generators like Autotools and Flex,
        instead of patching the generated files.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        Many new packages are supported:
        aubio, devil, directx, exiv2, fftw, freeimage, gsoap,
        id3lib, liblo, libpano13, librsvg, libsamplerate,
        muparser, openscenegraph, portaudio and sdl_pango.
        </p>
    </dd>

    <dt>2010-02-20 &ndash; Release 2.11</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.11.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.11">Changelog</a>
        </p>

        <p>
        This release contains a packaging bug.
        Please use release 2.12 instead.
        </p>
    </dd>

    <dt>2009-12-23 &ndash; Release 2.10</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.10.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.10">Changelog</a>
        </p>

        <p>
        This release adds support for many new packages:
        flac, libmad, libsndfile, sdl_net, speex, postgresql,
        freetds, openssl, plotutils, taglib, lcms, freeglut,
        xerces and zziplib.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        In addition to the libraries
        some command line tools such as psql.exe are built, too.
        </p>

        <p>
        The placements of logfiles, as well as many other build details, have been improved.
        </p>
    </dd>

    <dt>2009-10-24 &ndash; Release 2.9</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.9.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.9">Changelog</a>
        </p>

        <p>
        This release adds support for Qt, VMime and libmng.
        </p>

        <p>
        The target triplet is updated to i686-pc-mingw32.
        </p>

        <p>
        OpenMP support is enabled in GCC.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>
    </dd>

    <dt>2009-09-11 &ndash; Release 2.8</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.8.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.8">Changelog</a>
        </p>

        <p>
        This release comes with a better look &amp; feel
        by providing a highlevel overview of the build process.
        </p>

        <p>
        The detailed build messages are stored into
        separate log files for each package,
        so parallel builds don't intermix them anymore.
        </p>

        <p>
        The download URLs of SourceForge packages
        are adjusted to ensure that
        the selected SourceForge mirror is really used
        and not circumvalented via HTTP redirects to other mirrors.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        The whole mingw-cross-env project has moved to
        <a href="https://savannah.nongnu.org/">Savannah</a>.
        So all URIs have changed,
        but the old URIs
        redirect to the new locations seamlessly.
        </p>

        <p>
        Everyone is invited to join the freshly created
        <a href="https://lists.nongnu.org/mailman/listinfo/mingw-cross-env-list">project mailing list</a>.
        </p>
    </dd>

    <dt>2009-08-11 &ndash; Release 2.7</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.7.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.7">Changelog</a>
        </p>

        <p>
        This release
        provides an improved version recognition
        for SourceForge packages.
        SourceForge changed their page layout
        in a way that makes it much harder
        to identify the current version of a package.
        </p>

        <p>
        Additionally,
        almost all packages are updated to their latest version.
        </p>
    </dd>

    <dt>2009-06-19 &ndash; Release 2.6</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.6.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.6">Changelog</a>
        </p>

        <p>
        This release contains some portability fixes
        which allow it to run on a wider range of systems
        such as Frugalware.
        </p>

        <p>
        The documentation and website are completely revised.
        </p>

        <p>
        New packages such as
        CppUnit, libUsb, NSIS, Popt, SQLite and Theora
        are supported.
        </p>

        <p>
        Almost all packages are updated to their latest version.
        </p>

        <p>
        A new command "make download" is implemented.
        </p>
    </dd>

    <dt>2009-04-06 &ndash; Release 2.5</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.5.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.5">Changelog</a>
        </p>

        <p>
        This release fixes a download error caused by the MinGW project.
        They suddenly changed the names of their source tarballs.
        <a href="http://www.w3.org/Provider/Style/URI">That sort of thing should never happen!</a>
        </p>

        <p>
        This release also contains some bugfixes
        which allow it to run on a wider range of systems.
        </p>

        <p>
        All downloaded files are now
        verified by their SHA-1 checksums.
        </p>

        <p>
        New versions of various packages are supported.
        </p>
    </dd>

    <dt>2009-03-08 &ndash; Release 2.4</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.4.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.4">Changelog</a>
        </p>

        <p>
        This release provides many new libraries such as
        wxWidgets, GTK+ and OpenEXR.
        </p>

        <p>
        In addition, new versions of various packages
        are supported.
        </p>
    </dd>

    <dt>2009-02-09 &ndash; Release 2.3</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.3.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.3">Changelog</a>
        </p>

        <p>
        This release fixes some serious build problems on FreeBSD and MacOS-X.
        </p>

        <p>
        The Makefile has a new target "clean-pkg"
        and allows to be called from a separate build directory
        via "make -f .../Makefile".
        </p>

        <p>
        Some new versions of the packages are supported,
        especially GCC-4.3 by switching from MinGW GCC to
        <a href="http://www.tdragon.net/recentgcc/">TDM-GCC</a>.
        </p>
    </dd>

    <dt>2009-01-31 &ndash; Release 2.2</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.2.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.2">Changelog</a>
        </p>

        <p>
        This release fixes some minor build problems.
        </p>

        <p>
        It also supports some new packages and
        some newer versions of the already supported packages.
        </p>

        <p>
        Parallelization is now disabled by default.
        </p>
    </dd>

    <dt>2008-12-13 &ndash; Release 2.1</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.1.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.1">Changelog</a>
        </p>

        <p>
        This release fixes a download error caused by the GDAL project.
        They suddenly changed their download URLs.
        <a href="http://www.w3.org/Provider/Style/URI">That sort of thing should never happen!</a>
        </p>

        <p>
        In addition, some newer versions of various packages are supported.
        </p>

        <p>
        There is also a small compatibility fix for OS X.
        </p>
    </dd>

    <dt>2008-11-10 &ndash; Release 2.0</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-2.0.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/2.0">Changelog</a>
        </p>

        <p>
        The shell script has been rewritten as Makefile
        and supports partial builds and parallel builds.
        </p>

        <p>
        As usual,
        this release also supports some new packages and
        some newer versions of the already supported packages.
        </p>
    </dd>

    <dt>2008-01-11 &ndash; Release 1.4</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-1.4.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/1.4">Changelog</a>
        </p>

        <p>
        This release now includes a tutorial by Hans Bezemer
        and has improved compile options of FLTK.
        As usual, it supports some newer versions of the libraries.
        </p>

        <p>
        At the <a href="http://www.fefe.de/nowindows/">request of its author</a>,
        libowfat is no longer supported from this release on.
        </p>

        <p>
        The script now uses a specific SourceForge mirror
        instead of randomly chosen ones,
        because the download phase
        often stumbled on some very slow mirrors.
        </p>
    </dd>

    <dt>2007-12-23 &ndash; Release 1.3</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-1.3.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/1.3">Changelog</a>
        </p>

        <p>
        A sudden change in the download URLs of GEOS
        made the automatic download fail.
        <a href="http://www.w3.org/Provider/Style/URI">Such changes should never happen!</a>
        But it happened,
        and this quick release is an attempt to limit the damage.
        </p>

        <p>
        This release also supports some newer versions of the libraries
        including support for fontconfig-2.5.0.
        </p>
    </dd>

    <dt>2007-12-13 &ndash; Release 1.2</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-1.2.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/1.2">Changelog</a>
        </p>

        <p>
        This release is a switch from gcc-3 to gcc-4.
        It also supports a new library and
        some newer versions of the already supported libraries.
        </p>
    </dd>

    <dt>2007-07-24 &ndash; Release 1.1</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-1.1.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/1.1">Changelog</a>
        </p>

        <p>
        This release is the result of the public attention the release 1.0 got.
        It contains many improvements suggested by its first users,
        and adds support for many new libraries.
        </p>

        <p>
        Thanks to Rocco Rutte who contributed many code snippets.
        </p>
    </dd>

    <dt>2007-06-19 &ndash; Release 1.0</dt>
    <dd>
        <p>
        <a href="http://download.savannah.nongnu.org/releases/mingw-cross-env/mingw-cross-env-1.0.tar.gz">Download</a> |
        <a href="http://hg.savannah.nongnu.org/hgweb/mingw-cross-env/log/1.0">Changelog</a>
        </p>

        <p>
        This first release has been created in a 7-day-sprint.
        </p>
    </dd>

    <dt>2007-06-12 &ndash; Project start</dt>
    <dd>
    </dd>

    </dl>
</div>

<div class="section">
<h2 id="see-also">See also</h2>

    <h3>This project</h3>

    <ul class="compact-list">
    <li>
        <a href="http://mxe.cc">Website</a>
    </li>
    <li>
        <a href="https://github.com/mxe/mxe">Project on GitHub</a>
    </li>
    <li>
        <a href="http://pkg.mxe.cc/">Binary distribution of packages</a>
    </li>
    <li>
        <a href="https://www.openhub.net/p/mxe">Entry on Open Hub</a>
    </li>
    <li>
        <a href="https://savannah.nongnu.org/projects/mingw-cross-env">Entry on Savannah</a>
    </li>
    <li>
        <a href="http://lists.debian.org/debian-embedded/2007/06/msg00007.html">First release anouncement</a>
        and the discussion around it
    </li>
    </ul>

    <h3>Related articles</h3>

    <ul>
    <li>
        <a href="http://www.valdyas.org/fading/index.cgi/hacking/krita/mxe_krita.html">Cross-compiling Krita using MXE</a>
        <br>
        Experience report of the
        <a href="https://krita.org/">Krita project</a>
    </li>
    <li>
        <a href="http://thebeezspeaks.blogspot.com/2009/04/cross-compilers-new-wave.html">Cross compilers, the new wave</a>
        <br>
        Appeared on
        <a href="http://lxer.com/module/newswire/view/118868">LXer</a>
        and
        <a href="http://www.linuxtoday.com/developer/2009041501335RVSWDV">Linux Today</a>
    </li>
    <li>
        <a href="http://www.mingw.org/wiki/LinuxCrossMinGW">MinGW cross compiler for Linux build environment</a>
        <br>
        Official tutorial of the
        <a href="http://www.mingw.org/">MinGW project</a>
    </li>
    <li>
        <a href="http://wiki.wxwidgets.org/Cross-Compiling_Under_Linux#Cross-compiling_under_Linux_for_MS_Windows">Cross-compiling under Linux for MS Windows</a>
        <br>
        Old tutorial provided by the
        <a href="http://www.wxwidgets.org/">wxWidgets project</a>
    </li>
    </ul>

    <h3>Related projects</h3>

    <ul>
    <li>
        <a href="https://www.archlinux.org/groups/x86_64/mingw-w64/">Arch Linux mingw-w64 packages</a>
        <br>
        Win32 cross compiling packages by Arch Linux
    </li>
    <li>
        <a href="http://packages.debian.org/stable/devel/mingw32">Debian mingw32 package</a>
        <br>
        Bare win32 cross compiler
    </li>
    <li>
        <a href="https://admin.fedoraproject.org/pkgdb/packages/mingw*/">Fedora MinGW packages</a>
        <br>
        Win32 cross compiling packages by Fedora
    </li>
    <li>
        <a href="https://msys2.github.io/">MSYS2</a>
        <br>
        Win32/64 ports of many free software packages
    </li>
    <li>
        <a href="http://gnuwin32.sourceforge.net/">GnuWin32</a>
        <br>
        Win32 ports of many free software packages
    </li>
    <li>
        <a href="http://www.sandroid.org/imcross/">IMCROSS</a>
        <br>
        Another project with similar goal
    </li>
    <li>
        <a href="http://www.libsdl.org/extras/win32/cross/README.txt">MinGW cross-compiler build script</a>
        <br>
        Old script provided by the
        <a href="http://www.libsdl.org/">SDL project</a>
    </li>
    <li>
        <a href="http://comments.gmane.org/gmane.comp.gnu.octave.maintainers/30358">mxe-octave</a>
        <br>
        Fork of MXE specialized on building
        <a href="https://www.gnu.org/software/octave/">GNU Octave</a>
    </li>
    <li>
        <a href="https://software.opensuse.org/search?q=mingw&baseproject=openSUSE%3A13.2&search_devel=false&search_unsupported=false">openSUSE MinGW packages</a>
        <br>
        Win32 cross compiling packages by openSUSE
    </li>
    <li>
        <a href="http://win-builds.org/">Win-builds</a>
        <br>
        Creates binary packages, runs on both Linux and Windows
    </li>
    </ul>
</div>

<div class="section">
<h2 id="used-by">Projects which use MXE (alphabetical order)</h2>

    <ul class="compact-list">
    <li>
        <a href="http://sourceforge.net/projects/aorta/">Aorta</a>
    </li>
    <li>
        <a href="https://github.com/zer0main/battleship">Battleship game</a>
    </li>
    <li>
        <a href="https://bino3d.org/">Bino</a>
    </li>
    <li>
        <a href="http://biosig.sourceforge.net/">BioSig</a>
    </li>
    <li>
        <a href="http://en.cataclysmdda.com/">Cataclysm: Dark Days Ahead</a>
    </li>
    <li>
        <a href="http://cvtool.sourceforge.net/">cvtool</a>
    </li>
    <li>
        <a href="http://www.qtrac.eu/diffpdf.html">DiffPDF</a>
    </li>
    <li>
        <a href="https://github.com/eiskaltdcpp/eiskaltdcpp">EiskaltDC++</a>
    </li>
    <li>
        <a href="http://www.ros.org/wiki/eros">Eros</a>
    </li>
    <li>
        <a href="http://www.nongnu.org/galois/">Galois</a>
    </li>
    <li>
        <a href="http://gcompris.net/">GCompris</a>
    </li>
    <li>
        <a href="http://www.nongnu.org/gta/">Generic Tagged Arrays</a>
    </li>
    <li>
        <a href="https://www.gnu.org/software/freedink/">GNU FreeDink</a>
    </li>
    <li>
        <a href="http://ifwiki.org/index.php/Hugor">Hugor</a>
    </li>
    <li>
        <a href="https://krita.org/">Krita</a>
    </li>
    <li>
        <a href="http://lightspark.github.com/">Lightspark</a>
    </li>
    <li>
        <a href="http://marathon.sourceforge.net/">Marathon Aleph One</a>
    </li>
    <li>
        <a href="https://www.maxr.org/">Mechanized Assault and eXploration Reloaded</a>
    </li>
    <li>
        <a href="https://www.bunkus.org/videotools/mkvtoolnix/">MKVToolNix</a>
    </li>
    <li>
        <a href="http://mpop.sourceforge.net/">mpop</a>
    </li>
    <li>
        <a href="http://msmtp.sourceforge.net/">msmtp</a>
    </li>
    <li>
        <a href="http://www.openscad.org/">OpenSCAD</a>
    </li>
    <li>
        <a href="http://pdfgrep.sourceforge.net/">Pdfgrep</a>
    </li>
    <li>
        <a href="http://www.pokerth.net/">PokerTH</a>
    </li>
    <li>
        <a href="http://pushover.sourceforge.net/">Pushover</a>
    </li>
    <li>
        <a href="http://qtads.sourceforge.net/">QTads</a>
    </li>
    <li>
        <a href="http://sigrok.org/">sigrok</a>
    </li>
    <li>
        <a href="http://spek-project.org/">Spek</a>
    </li>
    <li>
        <a href="http://springrts.com/">Spring RTS</a>
    </li>
    <li>
        <a href="http://www.xs4all.nl/~thebeez/4tH/">The 4tH Compiler</a>
    </li>
    <li>
        <a href="https://www.tug.org/texworks/">TeXworks</a>
    </li>
    <li>
        <a href="http://toppler.sourceforge.net/">Tower Toppler</a>
    </li>
    <li>
        <a href="http://tux4kids.alioth.debian.org/tuxtype/">Tux Typing</a>
    </li>
    <li>
        <a href="http://tux4kids.alioth.debian.org/tuxmath/">Tux Math</a>
    </li>
    <li>
        <a href="http://ph.on.things.free.fr/projects/ube/">Ube</a>
    </li>
    <li>
        <a href="http://ufoai.org/">UFO: Alien Invasion</a>
    </li>
    <li>
        <a href="http://violetland.github.io/">Violetland</a>
    </li>
    <li>
        <a href="http://wz2100.net/">Warzone 2100</a>
    </li>
    <li>
        <a href="https://sourceforge.net/projects/xfemm/">xfemm</a>
    </li>
    </ul>
</div>

</body>
</html>