aboutsummaryrefslogtreecommitdiff
path: root/configure
blob: 38f57e57a839e4055d7fc1a3a18bf0ed5de2af1e (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
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
#!/bin/sh
#
# configure -- custom configure script for ScummVM.
#
# ScummVM is the legal property of its developers, whose names
# are too numerous to list here. Please refer to the COPYRIGHT
# file distributed with this source distribution.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#

# NLS nuisances.
LC_ALL=C
export LC_ALL
LANGUAGE=C
export LANGUAGE

# Save the current environment variables for next runs
SAVED_CONFIGFLAGS=$@
SAVED_AR=$AR
SAVED_AS=$AS
SAVED_ASFLAGS=$ASFLAGS
SAVED_CPPFLAGS=$CPPFLAGS
SAVED_CXX=$CXX
SAVED_CXXFLAGS=$CXXFLAGS
SAVED_DWP=$DWP
SAVED_LD=$LD
SAVED_LDFLAGS=$LDFLAGS
SAVED_PKG_CONFIG_LIBDIR=${PKG_CONFIG_LIBDIR:-unset}
SAVED_RANLIB=$RANLIB
SAVED_SDL_CONFIG=$SDL_CONFIG
SAVED_STRIP=$STRIP
SAVED_WINDRES=$WINDRES
SAVED_WINDRESFLAGS=$WINDRESFLAGS

# Use environment vars if set
CXXFLAGS="$CXXFLAGS $CPPFLAGS"

# Backslashes into forward slashes:
# The following OS/2 specific code is performed to deal with handling of backslashes by ksh.
# Borrowed from the Sane configure script

if test "$ac_emxsupport" != "no" -a "$ac_emxsupport" != "NO"; then
	ac_save_IFS="$IFS"
	IFS="\\"
	ac_TEMP_PATH=
	for ac_dir in $PATH; do
		IFS=$ac_save_IFS
		if test -z "$ac_TEMP_PATH"; then
			ac_TEMP_PATH="$ac_dir"
		else
			ac_TEMP_PATH="$ac_TEMP_PATH/$ac_dir"
		fi
	done
	PATH="$ac_TEMP_PATH"
	export PATH
	unset ac_TEMP_PATH
fi

set_var() {
	eval ${1}='${2}'
}

get_var() {
	eval echo \$${1}
}

append_var() {
	VAR=${1}
	shift
	if eval test -z \"\$${VAR}\" ; then
		eval ${VAR}='$@'
	else
		eval ${VAR}=\"\$${VAR} \"'$@'
	fi
}

prepend_var() {
	VAR=${1}
	shift
	if eval test -z \"\$${VAR}\" ; then
		eval ${VAR}='$@'
	else
		eval ${VAR}='$@'\" \$${VAR}\"
	fi
}

# Add an engine: id name build subengines base-games dependencies
add_engine() {
	_engines="${_engines} ${1}"
	if test "${3}" = "no" ; then
		set_var _wip_engines "${_wip_engines} ${1}"
	fi
	set_var _engine_${1}_name "${2}"
	set_var _engine_${1}_build "${3}"
	set_var _engine_${1}_build_default "${3}"
	set_var _engine_${1}_subengines "${4}"
	set_var _engine_${1}_base "${5}"
	set_var _engine_${1}_deps "${6}"
	for sub in ${4}; do
		set_var _engine_${sub}_sub "yes"
		set_var _engine_${sub}_parent "${1}"
	done
}

# Add a feature: id name settings-list
add_feature() {
	set_var _feature_${1}_name "${2}"
	# This is a list of settings, where one must be "yes" for the feature to
	# be enabled
	set_var _feature_${1}_settings "${3}"
}

_srcdir=`dirname $0`

# Read list of engines
for i in $_srcdir/engines/*/configure.engine; do
	. "$i"
done

#
# Default settings
#
# Default lib behavior yes/no/auto
_sdl=no
_ogg=auto
_vorbis=auto
_sdlnet=auto
_libcurl=auto
_tremor=auto
_tremolo=no
_flac=auto
_mad=auto
_opl2lpt=no
_alsa=auto
_seq_midi=auto
_sndio=auto
_timidity=auto
_zlib=auto
_mpeg2=auto
_a52=auto
_sparkle=auto
_osxdockplugin=auto
_jpeg=auto
_png=auto
_theoradec=auto
_faad=auto
_fluidsynth=auto
_opengl_mode=auto
_readline=auto
_freetype2=auto
_taskbar=auto
_updates=no
_libunity=auto
_dialogs=auto
_iconv=auto
_tts=auto
# Default option behavior yes/no
_debug_build=auto
_release_build=auto
_optimizations=auto
_use_cxx11=no
_verbose_build=no
_text_console=no
_mt32emu=yes
_lua=yes
_build_scalers=yes
_build_hq_scalers=yes
_enable_prof=no
_global_constructors=no
_no_undefined_var_template=no
_no_pragma_pack=no
_bink=yes
_cloud=auto
_pandoc=no
# Default vkeybd/keymapper/eventrec options
_vkeybd=no
_keymapper=no
_eventrec=auto
# GUI translation options
_translation=yes
# Default platform settings
_backend=sdl
_16bit=auto
_highres=auto
_savegame_timestamp=auto
_dynamic_modules=no
_elf_loader=no
_plugins_default=static
_plugin_prefix=
_plugin_suffix=
_nasm=auto
_optimization_level=
_default_optimization_level=-O2
_nuked_opl=yes
# Default commands
_ranlib=ranlib
_strip=strip
_ar="ar cru"
_as="as"
_dwp=dwp
_windres=windres
_stagingpath="staging"
_win32path="c:/scummvm"
_amigaospath="Games:ScummVM"
_staticlibpath=
_xcodetoolspath=
_sparklepath=
_pkgconfig=pkg-config
_sdlconfig=sdl2-config
_libcurlconfig=curl-config
_freetypeconfig=freetype-config
_freetype_found="false"
_sdlpath="$PATH"
_freetypepath="$PATH"
_libcurlpath="$PATH"
_nasmpath="$PATH"
NASMFLAGS=""
NASM=""
_tainted_build=no
PANDOC=""
_pandocpath="$PATH"
_pandocformat="default"
_pandocext="default"
# The following variables are automatically detected, and should not
# be modified otherwise. Consider them read-only.
_posix=no
_has_posix_spawn=no
_endian=unknown
_need_memalign=yes
_have_x86=no

# Add (virtual) features
add_feature 16bit "16bit color" "_16bit"
add_feature bink "Bink" "_bink"
add_feature cloud "cloud" "_cloud"
add_feature faad "libfaad" "_faad"
add_feature flac "FLAC" "_flac"
add_feature freetype2 "FreeType2" "_freetype2"
add_feature highres "high resolution" "_highres"
add_feature mad "MAD" "_mad"
add_feature jpeg "JPEG" "_jpeg"
add_feature png "PNG" "_png"
add_feature theoradec "libtheoradec" "_theoradec"
add_feature vorbis "Vorbis file support" "_vorbis _tremor"
add_feature zlib "zlib" "_zlib"
add_feature lua "lua" "_lua"

# Directories for installing ScummVM.
# This list is closely based on what GNU autoconf does,
# although the default value for datadir differs.
# Like GNU autoconf, we distinguish datadir and datarootdir
# to make it possible to change e.g. the location of the
# man pages independently of that of the engine data files,
# which are placed inside $datadir/scummvm
prefix=NONE
exec_prefix=NONE
bindir='${exec_prefix}/bin'
libdir='${exec_prefix}/lib'
datarootdir='${prefix}/share'
datadir='${datarootdir}/scummvm'
mandir='${datarootdir}/man'
docdir='${datarootdir}/doc/scummvm'
#localedir='${datarootdir}/locale'

# For cross compiling
_host=""
_host_cpu=""
_host_vendor=""
_host_os=""
_host_alias=""

_port_mk="ports.mk"

# Use temp files in the build directory
TMPO=./scummvm-conf
TMPC=${TMPO}.cpp
TMPLOG=config.log

cc_check_no_clean() {
	echo >> "$TMPLOG"
	cat "$TMPC" >> "$TMPLOG"
	echo >> "$TMPLOG"
	echo "$CXX $LDFLAGS $CXXFLAGS $TMPC -o $TMPO$HOSTEXEEXT $@" >> "$TMPLOG"
	rm -f "$TMPO$HOSTEXEEXT"
	if test "-c" = "$*" ; then
		( $CXX $CXXFLAGS "$TMPC" -o "$TMPO$HOSTEXEEXT" "$@" ) >> "$TMPLOG" 2>&1
	else
		( $CXX $LDFLAGS $CXXFLAGS "$TMPC" -o "$TMPO$HOSTEXEEXT" "$@" ) >> "$TMPLOG" 2>&1
	fi
	TMPR="$?"
	echo "return code: $TMPR" >> "$TMPLOG"
	echo >> "$TMPLOG"
	return "$TMPR"
}

cc_check_clean() {
	rm -rf $TMPC $TMPO $TMPO.o $TMPO.dwo $TMPO.dSYM $TMPO$HOSTEXEEXT "$@"
}

cc_check() {
	cc_check_no_clean "$@"
	TMPR="$?"
	cc_check_clean
	return "$TMPR"
}

cc_check_define() {
cat > $TMPC << EOF
int main(void) {
	#ifndef $1
	syntax error
	#endif
	return 0;
}
EOF
	cc_check -c
	return $?
}

gcc_get_define() {
	echo "" | $CXX -dM -E - | fgrep "$1" | head -n1 | cut -d ' ' -f 3-
}

#
# Function to provide echo -n for bourne shells that don't have it
#
echo_n() {
	printf "$@"
}

echocheck() {
	echo_n "Checking for $@... "
}

# Add a line of data to config.mk.
add_line_to_config_mk() {
	_config_mk_data="$_config_mk_data"'
'"$1"
}

# Add a line of data to config.h.
add_line_to_config_h() {
	_config_h_data="$_config_h_data"'
'"$1"
}

# Conditionally add a line of data to config.h. Takes two parameters:
# The first one can be set to 'no' to "comment out" the line, i.e.
# make it ineffective, use 'yes' otherwise.
# The second param is the line to insert.
add_to_config_h_if_yes() {
	if test "$1" = yes ; then
		add_line_to_config_h "$2"
	else
		add_line_to_config_h "/* $2 */"
	fi
}

# Conditionally add a line of data to config.mk. Takes two parameters:
# The first one can be set to 'no' to "comment out" the line, i.e.
# make it ineffective, use 'yes' otherwise.
# The second param is the line to insert.
add_to_config_mk_if_yes() {
	if test "$1" = yes ; then
		add_line_to_config_mk "$2"
	else
		add_line_to_config_mk "# $2"
	fi
}

# Conditionally add a '#define' line to config.h. Takes two parameters:
# The first one can be set to 'yes' or 'no'. If 'yes' is used, then
# the line "#define $2" is added to config.h, otherwise "#undef $2".
define_in_config_h_if_yes() {
	if test "$1" = yes ; then
		add_line_to_config_h "#define $2"
	else
		add_line_to_config_h "#undef $2"
	fi
}

# Conditionally add definitions to config.h and config.mk. Takes two parameters:
# The first one can be set to 'yes' or 'no'. If 'yes' is used, then
# the line "#define $2" is added to config.h and "$2 = 1" to config.mk.
# Otherwise "#undef $2" is added to config.h and "# $2 = 1" to config.mk
define_in_config_if_yes() {
	if test "$1" = yes ; then
		add_line_to_config_h "#define $2"
		add_line_to_config_mk "$2 = 1"
	else
		add_line_to_config_h "#undef $2"
		add_line_to_config_mk "# $2 = 1"
	fi
}

define_in_config_if_no() {
	if test "$1" = no ; then
		add_line_to_config_h "#define $2"
		add_line_to_config_mk "$2 = 1"
	else
		add_line_to_config_h "#undef $2"
		add_line_to_config_mk "# $2 = 1"
	fi
}

#
# Determine sdl-config
#
# TODO: small bit of code to test sdl usability
find_sdlconfig() {
	echo_n "Looking for sdl-config... "
	sdlconfigs="$SDL_CONFIG:$_sdlconfig:sdl2-config:sdl12-config:sdl11-config:sdl-config"
	_sdlconfig=

	IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$SEPARATOR"
	for path_dir in $_sdlpath; do
		#reset separator to parse sdlconfigs
		IFS=":"
		for sdlconfig in $sdlconfigs; do
			if test -f "$path_dir/$sdlconfig" ; then
				_sdlconfig="$path_dir/$sdlconfig"
				echo $_sdlconfig
				# Save the prefix
				_sdlpath=$path_dir
				if test `basename $path_dir` = bin ; then
					_sdlpath=`dirname $path_dir`
				fi
				# break at first sdl-config found in path
				break 2
			fi
		done
	done

	IFS="$ac_save_ifs"

	if test -z "$_sdlconfig"; then
		echo "none found!"
		exit 1
	fi
}

#
# Determine freetype-config
#
find_freetypeconfig() {
	echo_n "Looking for freetype-config... "
	freetypeconfigs="$_freetypeconfig"
	_freetypeconfig=

	IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$SEPARATOR"
	for path_dir in $_freetypepath; do
		#reset separator to parse freetypeconfigs
		IFS=":"
		for freetypeconfig in $freetypeconfigs; do
			if test -f "$path_dir/$freetypeconfig" ; then
				_freetypeconfig="$path_dir/$freetypeconfig"
				echo $_freetypeconfig
				# Save the prefix
				_freetypepath=$path_dir
				if test `basename $path_dir` = bin ; then
					_freetypepath=`dirname $path_dir`
				fi
				# break at first freetype-config found in path
				break 2
			fi
		done
	done

	IFS="$ac_save_ifs"

	if test -z "$_freetypeconfig"; then
		echo "none found!"
	fi
}

#
# Determine curl-config
#
find_libcurlconfig() {
	echo_n "Looking for curl-config... "
	libcurlconfigs="$_libcurlconfig"
	_libcurlconfig=

	IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="$SEPARATOR"
	for path_dir in $_libcurlpath; do
		#reset separator to parse sdlconfigs
		IFS=":"
		for libcurlconfig in $libcurlconfigs; do
			if test -f "$path_dir/$libcurlconfig" ; then
				_libcurlconfig="$path_dir/$libcurlconfig"
				echo $_libcurlconfig
				# Save the prefix
				_libcurlpath=$path_dir
				if test `basename $path_dir` = bin ; then
					_libcurlpath=`dirname $path_dir`
				fi
				# break at first curl-config found in path
				break 2
			fi
		done
	done

	IFS="$ac_save_ifs"

	if test -z "$_libcurlconfig"; then
		echo "none found!"
	fi
}

#
# Determine extension used for executables
#
get_system_exe_extension() {
	case $1 in
	riscos)
		_exeext=",e1f"
		;;
	3ds | dreamcast | ds | gamecube | n64 | ps2 | psp | switch | wii)
		_exeext=".elf"
		;;
	gph-linux)
		_exeext=".gph"
		;;
	mingw* | *os2-emx)
		_exeext=".exe"
		;;
	*)
		_exeext=""
		;;
	esac
}

#
# Generic options functions
#

# Show the configure help line for an option
option_help() {
	if test "${3}" != "" ; then
		tmpopt_prefix="${3}"
	else
		tmpopt_prefix="--"
	fi
	tmpopt=`echo $1 | sed 's/_/-/g'`
	option=`echo "${tmpopt_prefix}${tmpopt}                       " | sed "s/\(.\{23\}\).*/\1/"`
	echo "  ${option}  ${2}"
}

# Show an error about an unknown option
option_error() {
	echo "error: unrecognized option: $ac_option
Try \`$0 --help' for more information." >&2
	exit 1
}

# Show an error about an unknown engine
engine_option_error() {
	echo "error: unrecognized engine: $1
Try \`$0 --help' for more information." >&2
	exit 1
}

# Show an error about an invalid subengine option
subengine_option_error() {
	echo "error: this option is invalid for the subengine $1: $ac_option
Try \`$0 --help' for more information." >&2
	exit 1
}


#
# Feature handling functions
#

# Get the name of the feature
get_feature_name() {
	get_var _feature_$1_name
}

# Check whether the feature is enabled
get_feature_state() {
	for i in `get_var _feature_$1_settings`; do
		if test `get_var $i` = "yes"; then
			echo "yes"
			return
		fi
	done
	echo "no"
}


#
# Engine handling functions
#

# Get the name of the engine
get_engine_name() {
	get_var _engine_$1_name
}

# Will this engine be built?
get_engine_build() {
	get_var _engine_$1_build
}

# Was this engine set to be built by default?
get_engine_build_default() {
	get_var _engine_$1_build_default
}

# Get the subengines
get_engine_subengines() {
	get_var _engine_$1_subengines
}

# Get the dependencies
get_engine_dependencies() {
	get_var _engine_$1_deps
}

# Get the base engine game support description
get_engine_base() {
	get_var _engine_$1_base
}

# Ask if this is a subengine
get_engine_sub() {
	sub=`get_var _engine_$1_sub`
	if test -z "$sub" ; then
		sub=no
	fi
	echo $sub
}

# Get a subengine's parent (undefined for non-subengines)
get_subengine_parent() {
	get_var _engine_$1_parent
}

# Enable *all* engines
engine_enable_all() {
	for engine in $_engines; do
		set_var _engine_${engine}_build "yes"
	done
}

# Disable *all* engines
engine_disable_all() {
	for engine in $_engines; do
		set_var _engine_${engine}_build "no"
	done
}

# Enable all unstable engines
engine_enable_all_unstable() {
	for engine in $_engines; do
		engine_build_default=`get_engine_build_default $engine`
		if test $engine_build_default = no ; then
			set_var _engine_${engine}_build "yes"
		fi
	done
}

# Disable all unstable engines
engine_disable_all_unstable() {
	for engine in $_engines; do
		engine_build_default=`get_engine_build_default $engine`
		if test $engine_build_default = no ; then
			set_var _engine_${engine}_build "no"
		fi
	done
}

# Enable the given engine
engine_enable() {
	# Get the parameter
	if ( echo $1 | grep ':' ) 2> /dev/null > /dev/null ; then
		eng=`echo $1 | cut -d ':' -f 1`
		opt=`echo $1 | cut -d ':' -f 2`
	else
		eng=$1
		opt=yes
	fi
	engine=`echo $eng | sed 's/-/_/g'`

	# Filter the parameter for the subengines
	if test "`get_engine_sub ${engine}`" != "no" ; then
		if test "$opt" != "yes" ; then
			subengine_option_error ${engine}
			return
		fi
		parent=`get_subengine_parent ${engine}`
		if test `get_engine_build ${parent}` = "no" ; then
			set_var _engine_${parent}_build "yes"
		fi
	fi

	if test "$opt" = "static" -o "$opt" = "dynamic" -o "$opt" = "yes" ; then
		if test "`get_engine_name ${engine}`" != "" ; then
			set_var _engine_${engine}_build "$opt"
		else
			engine_option_error ${engine}
		fi
	else
		option_error
	fi
}

# Disable the given engine
engine_disable() {
	# Filter malformed options
	if ( echo $1 | grep '=' ) 2> /dev/null > /dev/null ; then
		option_error
		return
	fi

	engine=`echo $1 | sed 's/-/_/g'`
	if test "`get_engine_name ${engine}`" != "" ; then
		set_var _engine_${engine}_build "no"
	else
		engine_option_error ${engine}
	fi
}

# Check whether the engine's dependencies are met
# If that is not the case disable the engine
check_engine_deps() {
	unmet_deps=""

	# Check whether the engine is enabled
	if test `get_engine_build $1` != "no" ; then
		# Collect unmet dependencies
		for dep in `get_engine_dependencies $1`; do
			if test `get_feature_state $dep` = "no"; then
				feature_name=`get_feature_name $dep`
				unmet_deps="${unmet_deps}${feature_name} "
			fi
		done

		# Check whether there is any unmet dependency
		if test -n "$unmet_deps"; then
			echo "WARNING: Disabling engine "`get_engine_name $1`" because the following dependencies are unmet: "$unmet_deps
			engine_disable $1
		fi
	fi
}

# Show the configure help line for a given engine
show_engine_help() {
	name=`get_engine_name $1`
	option_help "${1}" "${name} engine" "  "
	for sub in `get_engine_subengines $1`; do
		show_subengine_help $sub $1
	done
}

# Show the configure help line for a given subengine
show_subengine_help() {
	name=`get_engine_name $1`
	parent=`get_engine_name $2`
	option_help "${1}" "${name} in ${parent} engine" "  "
}

# Prepare the strings about the engines to build
prepare_engine_build_strings() {
	string=`get_engine_build_string $1 static`
	if test -n "$string" ; then
		_engines_built_static="${_engines_built_static}#$string@"
	fi

	string=`get_engine_build_string $1 dynamic`
	if test -n "$string" ; then
		_engines_built_dynamic="${_engines_built_dynamic}#$string@"
	fi

	string=`get_engine_build_string $1 no`
	if test -n "$string" ; then
		_engines_skipped="${_engines_skipped}#$string@"
	fi

	string=`get_engine_build_string $1 wip`
	if test -n "$string" ; then
		_engines_built_wip="${_engines_built_wip}#$string@"
	fi

}

# Get the string about building an engine
get_engine_build_string() {
	engine=$1
	request_status=$2
	engine_string=""
	engine_build=`get_engine_build $1`
	engine_build_default=`get_engine_build_default $engine`
	show=no

	# Convert static/dynamic to yes to ease the check of subengines
	if test $engine_build = no; then
		subengine_filter=no
	else
		subengine_filter=yes
	fi

	# Check if the current engine should be shown for the current status
	if test $engine_build = $request_status ; then
		show=yes
	else
		# Test for disabled sub-engines
		if test $request_status = no ; then
			for subeng in `get_engine_subengines $engine` ; do
				if test `get_engine_build $subeng` = no ; then
					# In this case we to display _disabled_ subengines
					subengine_filter=no
					show=yes
				fi
			done
		fi
		# Test for enabled wip sub-engines
		if test $request_status = wip ; then
			for subeng in `get_engine_subengines $engine` ; do
				if test `get_engine_build $subeng` != no -a `get_engine_build_default $subeng` = no ; then
					show=yes
				fi
			done
		fi
	fi


	# Check if it is a wip engine
	if test "$request_status" = "wip" -a "$engine_build" != "no" -a  "$engine_build_default" = no; then
		show=yes
	fi

	# The engine should be shown, build the string
	if test $show = yes ; then
		engine_string=`get_subengines_build_string $engine $subengine_filter $request_status`
		engine_string="`get_engine_name $engine` $engine_string"
	fi

	echo "$engine_string"
}

# Get the string about building subengines
get_subengines_build_string() {
	parent_engine=$1
	subengine_filter=$2
	request_status=$3
	parent_engine_build_default=`get_engine_build_default $parent_engine`
	subengine_string=""

	# If the base engine isn't built at all, no need to list subengines
	# in any of the possible categories.
	if test `get_engine_build $parent_engine` = no; then
		return
	fi

	all=yes
	# If there are no subengines, never display "[all games]" (for brevity).
	if test -z "`get_engine_subengines $parent_engine`"; then
		all=no
	fi
	# If the base engine does not fit the category we're displaying here
	# (WIP or Skipped), we should never show "[all games]"
	if test "$request_status" = wip; then
		if test $parent_engine_build_default = yes; then
			all=no
		fi
	fi
	if test "$request_status" = no; then
		# If we're here, the parent engine is built, so no need to check that.
		all=no
	fi


	# In the static/dynamic categories, also display the engine's base games.
	if test -n "`get_engine_subengines $parent_engine`" -a $request_status != no -a $request_status != wip; then
		subengine_string="[`get_engine_base $parent_engine`]"
	fi

	for subeng in `get_engine_subengines $parent_engine` ; do
		subengine_build=`get_engine_build $subeng`
		subengine_build_default=`get_engine_build_default $subeng`

		# Display this subengine if it matches the filter, unless it is
		# a stable subengine in the WIP request.
		if test $subengine_build = $subengine_filter -a \! \( "$request_status" = wip -a "$subengine_build_default" = yes \) ; then
			s="[`get_engine_name $subeng`]"
			if test -n "$subengine_string"; then
				subengine_string="$subengine_string $s"
			else
				subengine_string="$s"
			fi
		else
			all=no
		fi
	done

	# Summarize the full list, where applicable
	if test $all = yes ; then
		subengine_string="[all games]"
	fi

	echo "$subengine_string"
}

#
# Check any parameters we received
#
# TODO:
# * Change --disable-mad / --enable-mad to the way it's done in autoconf:
#  That is, --without-mad / --with-mad=/prefix/to/mad. Useful for people
#  who have Mad/Vorbis/ALSA installed in a non-standard locations.
#

for parm in "$@" ; do
	if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
		for engine in $_engines; do
			if test `get_engine_sub $engine` = no ; then
				engines_help="$engines_help`show_engine_help $engine`
"
			fi
		done
		cat << EOF

Usage: $0 [OPTIONS]...

Configuration:
  -h, --help              display this help and exit
  --backend=BACKEND       backend to build (3ds, android, dc, dingux, ds, gcw0,
                          gph, iphone, ios7, linuxmoto, maemo, n64, null, openpandora,
                          ps2, psp, psp2, samsungtv, sdl, switch, tizen, webos, wii) [sdl]

Installation directories:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [PREFIX]

By default, \`make install' will install all the files in
\`/usr/local/bin', \`/usr/local/lib' etc.  You can specify
an installation prefix other than \`/usr/local' using \`--prefix',
for instance \`--prefix=\$HOME'.

For better control, use the options below.

Fine tuning of the installation directories:
  --bindir=DIR            user executables [EPREFIX/bin]
  --libdir=DIR            object code libraries [EPREFIX/lib]
  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
  --datadir=DIR           read-only architecture-independent data
                          [DATAROOTDIR/scummvm]
  --mandir=DIR            man documentation [DATAROOTDIR/man]
  --docdir=DIR            documentation root [DATAROOTDIR/doc/scummvm]

Special configuration feature:
  --host=HOST             cross-compile to target HOST (arm-linux, ...)
                          special targets: 3ds for Nintendo 3DS
                                           android or android-arm for Android ARMv5TE (armeabi)
                                           android-v7a or android-arm-v7a for Android ARMv7-A (armeabi-v7a)
                                           android-arm64-v8a for Android ARMv8-A (arm64-v8a)
                                           android-x86 for Android x86
                                           android-x86_64 for Android x86_64
                                           android-mips for Android MIPS
                                           android-mips64 for Android MIPS64
                                           androidsdl for Android with SDL backend
                                           caanoo for Caanoo
                                           dingux for Dingux
                                           miyoo for Miyoo
                                           raspberrypi for Raspberry Pi
                                           dreamcast for Sega Dreamcast
                                           ds for Nintendo DS
                                           gamecube for Nintendo GameCube
                                           gcw0 for GCW Zero
                                           gp2x for GP2X
                                           gp2xwiz for GP2X Wiz
                                           iphone for Apple iPhone (iOS <= 6)
                                           ios7 for Apple iPhone / iPad (iOS >= 7)
                                           maemo for Nokia Maemo
                                           motoezx for MotoEZX
                                           motomagx for MotoMAGX
                                           n64 for Nintendo 64
                                           openpandora for OpenPandora
                                           ouya for OUYA
                                           ps2 for PlayStation 2
                                           ps3 for PlayStation 3
                                           psp2 for PlayStation Vita
                                           psp for PlayStation Portable
                                           samsungtv for Samsung TV
                                           switch for Nintendo Switch
                                           tizen for Samsung Tizen
																					 trimui for TrimUI S
                                           webos for HP Palm WebOS
                                           wii for Nintendo Wii

Game engines:
  --enable-all-engines     enable all engines, including those which are
                           broken or unsupported
  --disable-all-engines    disable all engines
  --enable-all-unstable-engines     enable the engines which are
                                    broken or unsupported
  --disable-all-unstable-engines    disable only the engines which are
                                    broken or unsupported
  --enable-engine=<engine name>[,<engine name>...] enable engine(s) listed
  --disable-engine=<engine name>[,<engine name>...] disable engine(s) listed
  --enable-engine-static=<engine name>[,<engine name>...]
      enable engine(s) listed as static builtin (when plugins are enabled)
  --enable-engine-dynamic=<engine name>[,<engine name>...]
      enable engine(s) listed as dynamic plugin (when plugins are enabled)
    The values of <engine name> for these options are as follows:
$engines_help
Optional Features:
  --enable-static          build a static binary instead of using shared objects
  --enable-c++11           build as C++11 if the compiler allows that
  --disable-debug          disable building with debugging symbols
  --enable-Werror          treat warnings as errors
  --enable-release         enable building in release mode (this activates
                           optimizations)
  --enable-release-mode    enable building in release mode (without optimizations)
  --enable-optimizations   enable optimizations
  --enable-profiling       enable profiling
  --enable-plugins         enable the support for dynamic plugins
  --default-dynamic        make plugins dynamic by default
  --disable-mt32emu        don't enable the integrated MT-32 emulator
  --disable-lua            don't enable Lua support
  --disable-nuked-opl      don't build Nuked OPL driver
  --disable-16bit          don't enable 16bit color support
  --disable-highres        don't enable support for high resolution engines >320x240
  --disable-savegame-timestamp don't use timestamps for blank savegame descriptions
  --disable-scalers        exclude scalers
  --disable-hq-scalers     exclude HQ2x and HQ3x scalers
  --disable-translation    don't build support for translated messages
  --disable-taskbar        don't build support for taskbar and launcher integration
  --disable-cloud          don't build cloud support
  --disable-system-dialogs don't build support for system dialogs
  --enable-vkeybd          build virtual keyboard support
  --enable-keymapper       build key mapper support
  --enable-eventrecorder   enable event recording functionality
  --disable-eventrecorder  disable event recording functionality
  --enable-updates         build support for updates
  --enable-text-console    use text console instead of graphical console
  --enable-verbose-build   enable regular echoing of commands during build
                           process
  --enable-tts             build support for text to speech
  --disable-tts            don't build support for text to speech
  --disable-bink           don't build with Bink video support
  --opengl-mode=MODE       OpenGL (ES) mode to use for OpenGL output [auto]
                           available modes: auto for autodetection
                                            none for disabling any OpenGL usage
                                            any for runtime detection
                                            gl for forcing OpenGL
                                            gles for forcing OpenGL ES
                                            gles2 for forcing OpenGL ES 2
                           WARNING: only specify this manually if you know what
                           you are doing!

Optional Libraries:
  --with-alsa-prefix=DIR   prefix where alsa is installed (optional)
  --disable-alsa           disable ALSA midi sound support [autodetect]

  --with-ogg-prefix=DIR    prefix where libogg is installed (optional)
  --disable-ogg            disable Ogg support [autodetect]

  --with-vorbis-prefix=DIR prefix where libvorbis is installed (optional)
  --disable-vorbis         disable Vorbis support [autodetect]

  --with-tremor-prefix=DIR prefix where tremor is installed (optional)
  --disable-tremor         disable tremor support [autodetect]

  --with-mad-prefix=DIR    prefix where libmad is installed (optional)
  --disable-mad            disable libmad (MP3) support [autodetect]

  --with-flac-prefix=DIR   prefix where libFLAC is installed (optional)
  --disable-flac           disable FLAC support [autodetect]

  --with-zlib-prefix=DIR   prefix where zlib is installed (optional)
  --disable-zlib           disable zlib (compression) support [autodetect]

  --with-mpeg2-prefix=DIR  prefix where libmpeg2 is installed (optional)
  --enable-mpeg2           enable mpeg2 codec for cutscenes [autodetect]

  --with-a52-prefix=DIR    Prefix where liba52 is installed (optional)
  --enable-a52             enable a52 codec for MPEG decoder [autodetect]

  --with-jpeg-prefix=DIR   Prefix where libjpeg is installed (optional)
  --disable-jpeg           disable JPEG decoder [autodetect]

  --with-png-prefix=DIR    prefix where libpng is installed (optional)
  --disable-png            disable PNG decoder [autodetect]

  --with-theoradec-prefix=DIR  prefix where libtheoradec is installed (optional)
  --disable-theoradec      disable Theora decoder [autodetect]

  --with-faad-prefix=DIR   prefix where libfaad is installed (optional)
  --disable-faad           disable AAC decoder [autodetect]

  --with-fluidsynth-prefix=DIR prefix where libfluidsynth is
                           installed (optional)
  --disable-fluidsynth     disable fluidsynth MIDI driver [autodetect]

  --with-ieee1284-prefix=DIR prefix where libieee1284 is installed (optional)
  --enable-opl2lpt         enable OPL2LPT support

  --with-sparkle-prefix=DIR    prefix where sparkle is installed
                           (OS X/Windows only - optional)
  --disable-sparkle        disable sparkle automatic update support
                           [OS X/Windows only - autodetect]

  --disable-osx-dock-plugin    disable the NSDockTilePlugin support
                               [Mac OS X only - autodetect]

  --with-sdl-prefix=DIR    prefix where the sdl-config script is
                           installed (optional)

  --with-freetype2-prefix=DIR  prefix where the freetype-config script is
                               installed (optional)
  --disable-freetype2      disable freetype2 TTF library usage [autodetect]

  --with-nasm-prefix=DIR   prefix where nasm executable is installed (optional)
  --disable-nasm           disable assembly language optimizations [autodetect]

  --with-pandoc-format=FORMAT   pandoc format to use during the conversion (optional)

  --with-readline-prefix=DIR   prefix where readline is installed (optional)
  --disable-readline       disable readline support in text console [autodetect]

  --with-libunity-prefix=DIR   prefix where libunity is installed (optional)
  --disable-libunity       disable Unity launcher integration [autodetect]

  --with-sndio-prefix=DIR  prefix where sndio is installed (optional)
  --disable-sndio          disable sndio MIDI driver [autodetect]

  --with-sdlnet-prefix=DIR prefix where SDL_Net is installed (optional)
  --disable-sdlnet         disable SDL_Net networking library [autodetect]

  --with-libcurl-prefix=DIR    prefix where libcurl is installed (optional)
  --disable-libcurl        disable libcurl networking library [autodetect]

  --with-iconv-prefix=DIR    prefix where libiconv is installed (optional)
  --disable-iconv        disable libiconv encoding conversion library [autodetect]

Some influential environment variables:
  AR                 archiver command
  AS                 assembler command
  ASFLAGS            assembler flags
  CPPFLAGS           C++ preprocessor flags, e.g. -I<include dir> if you have
                     headers in a nonstandard directory <include dir>
  CXX                C++ compiler command
  CXXFLAGS           C++ compiler flags
  DWP                DWARF packing utility command
  LD                 linker command
  LDFLAGS            linker flags, e.g. -L<lib dir> if you have libraries in a
                     nonstandard directory <lib dir>
  PKG_CONFIG_LIBDIR  list of directories where pkg-config ‘.pc’ files are
                     looked up
  RANLIB             archive indexer command
  SDL_CONFIG         SDL configurer script name (not path)
  STRIP              symbol stripper command
  WINDRES            Windows resource compiler command
  WINDRESFLAGS       Windows resource compiler flags

EOF
		exit 0
	fi
done # for parm in ...


#
# If we're not showing help, greet the user and start the log file
#
echo "Running ScummVM configure..."
echo "Configure run on" `date` > $TMPLOG
cat >> $TMPLOG <<EOF
Invocation command line was:
$0 $@
Saved environment variables:
AR="$SAVED_AR" AS="$SAVED_AS" ASFLAGS="$SAVED_ASFLAGS" CPPFLAGS="$SAVED_CPPFLAGS" CXX="$SAVED_CXX" CXXFLAGS="$SAVED_CXXFLAGS" DWP="$SAVED_DWP" LD="$SAVED_LD" LDFLAGS="$SAVED_LDFLAGS" PKG_CONFIG_LIBDIR="$SAVED_PKG_CONFIG_LIBDIR" RANLIB="$SAVED_RANLIB" SDL_CONFIG="$SAVED_SDL_CONFIG" STRIP="$SAVED_STRIP" WINDRES="$SAVED_WINDRES" WINDRESFLAGS="$SAVED_WINDRESFLAGS"
EOF


for ac_option in $@; do
	case "$ac_option" in
	--enable-static)              _static_build=yes      ;;
	--disable-16bit)              _16bit=no              ;;
	--enable-highres)             _highres=yes           ;;
	--disable-highres)            _highres=no            ;;
	--disable-savegame-timestamp) _savegame_timestamp=no ;;
	--disable-scalers)            _build_scalers=no      ;;
	--disable-hq-scalers)         _build_hq_scalers=no   ;;
	--enable-alsa)                _alsa=yes              ;;
	--disable-alsa)               _alsa=no               ;;
	--enable-seq-midi)            _seq_midi=yes          ;;
	--disable-seq-midi)           _seq_midi=no           ;;
	--enable-sndio)               _sndio=yes             ;;
	--disable-sndio)              _sndio=no              ;;
	--enable-timidity)            _timidity=yes          ;;
	--disable-timidity)           _timidity=no           ;;
	--enable-ogg)                 _ogg=yes               ;;
	--disable-ogg)                _ogg=no                ;;
	--enable-vorbis)              _vorbis=yes            ;;
	--disable-vorbis)             _vorbis=no             ;;
	--enable-tremor)              _tremor=yes            ;;
	--disable-tremor)             _tremor=no             ;;
	--enable-opl2lpt)             _opl2lpt=yes           ;;
	--disable-opl2lpt)            _opl2lpt=no            ;;
	--enable-flac)                _flac=yes              ;;
	--disable-flac)               _flac=no               ;;
	--enable-mad)                 _mad=yes               ;;
	--disable-mad)                _mad=no                ;;
	--enable-zlib)                _zlib=yes              ;;
	--disable-zlib)               _zlib=no               ;;
	--enable-sparkle)             _sparkle=yes           ;;
	--disable-sparkle)            _sparkle=no            ;;
	--enable-osx-dock-plugin)     _osxdockplugin=yes     ;;
	--disable-osx-dock-plugin)    _osxdockplugin=no      ;;
	--enable-nasm)                _nasm=yes              ;;
	--disable-nasm)               _nasm=no               ;;
	--enable-mpeg2)               _mpeg2=yes             ;;
	--disable-mpeg2)              _mpeg2=no              ;;
	--enable-a52)                 _a52=yes               ;;
	--disable-a52)                _a52=no                ;;
	--disable-jpeg)               _jpeg=no               ;;
	--enable-jpeg)                _jpeg=yes              ;;
	--disable-png)                _png=no                ;;
	--enable-png)                 _png=yes               ;;
	--disable-theoradec)          _theoradec=no          ;;
	--enable-theoradec)           _theoradec=yes         ;;
	--disable-faad)               _faad=no               ;;
	--enable-faad)                _faad=yes              ;;
	--disable-fluidsynth)         _fluidsynth=no         ;;
	--enable-readline)            _readline=yes          ;;
	--disable-readline)           _readline=no           ;;
	--enable-freetype2)           _freetype2=yes         ;;
	--disable-freetype2)          _freetype2=no          ;;
	--enable-taskbar)             _taskbar=yes           ;;
	--disable-taskbar)            _taskbar=no            ;;
	--enable-system-dialogs)      _dialogs=yes           ;;
	--disable-system-dialogs)     _dialogs=no            ;;
	--enable-sdlnet)              _sdlnet=yes            ;;
	--disable-sdlnet)             _sdlnet=no             ;;
	--enable-libcurl)             _libcurl=yes           ;;
	--disable-libcurl)            _libcurl=no            ;;
	--enable-cloud)               _cloud=yes             ;;
	--disable-cloud)              _cloud=no              ;;
	--enable-updates)             _updates=yes           ;;
	--disable-updates)            _updates=no            ;;
	--enable-libunity)            _libunity=yes          ;;
	--disable-libunity)           _libunity=no           ;;
	--enable-tts)                 _tts=yes               ;;
	--disable-tts)                _tts=no                ;;
	--enable-bink)                _bink=yes              ;;
	--disable-bink)               _bink=no               ;;
	--opengl-mode=*)
		_opengl_mode=`echo $ac_option | cut -d '=' -f 2`
		;;
	--enable-verbose-build)      _verbose_build=yes      ;;
	--enable-plugins)            _dynamic_modules=yes    ;;
	--default-dynamic)           _plugins_default=dynamic;;
	--enable-mt32emu)            _mt32emu=yes            ;;
	--disable-mt32emu)           _mt32emu=no             ;;
	--enable-lua)                _lua=yes                ;;
	--disable-lua)               _lua=no                 ;;
	--enable-nuked-opl)          _nuked_opl=yes          ;;
	--disable-nuked-opl)         _nuked_opl=no           ;;
	--enable-translation)        _translation=yes        ;;
	--disable-translation)       _translation=no         ;;
	--enable-vkeybd)             _vkeybd=yes             ;;
	--disable-vkeybd)            _vkeybd=no              ;;
	--enable-keymapper)          _keymapper=yes          ;;
	--disable-keymapper)         _keymapper=no           ;;
	--enable-eventrecorder)      _eventrec=yes           ;;
	--disable-eventrecorder)     _eventrec=no            ;;
	--enable-text-console)       _text_console=yes       ;;
	--disable-text-console)      _text_console=no        ;;
	--enable-iconv)              _iconv=yes              ;;
	--disable-iconv)             _iconv=no               ;;
	--with-fluidsynth-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		FLUIDSYNTH_CFLAGS="-I$arg/include"
		FLUIDSYNTH_LIBS="-L$arg/lib"
		;;
	--with-mpeg2-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		MPEG2_CFLAGS="-I$arg/include"
		MPEG2_LIBS="-L$arg/lib"
		;;
	--with-a52-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		A52_CFLAGS="-I$arg/include"
		A52_LIBS="-L$arg/lib"
		;;
	--with-alsa-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		ALSA_CFLAGS="-I$arg/include"
		ALSA_LIBS="-L$arg/lib"
		;;
	--with-sndio-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		SNDIO_CFLAGS="-I$arg/include"
		SNDIO_LIBS="-L$arg/lib"
		;;
	--with-ogg-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		OGG_CFLAGS="-I$arg/include"
		OGG_LIBS="-L$arg/lib"
		;;
	--with-vorbis-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		VORBIS_CFLAGS="-I$arg/include"
		VORBIS_LIBS="-L$arg/lib"
		;;
	--with-tremor-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		TREMOR_CFLAGS="-I$arg/include"
		TREMOR_LIBS="-L$arg/lib"
		;;
	--with-ieee1284-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		IEEE1284_CFLAGS="-I$arg/include"
		IEEE1284_LIBS="-L$arg/lib"
		;;
	--with-flac-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		FLAC_CFLAGS="-I$arg/include"
		FLAC_LIBS="-L$arg/lib"
		;;
	--with-mad-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		MAD_CFLAGS="-I$arg/include"
		MAD_LIBS="-L$arg/lib"
		;;
	--with-jpeg-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		JPEG_CFLAGS="-I$arg/include"
		JPEG_LIBS="-L$arg/lib"
		;;
	--with-png-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		PNG_CFLAGS="-I$arg/include"
		PNG_LIBS="-L$arg/lib"
		;;
	--with-theoradec-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		THEORADEC_CFLAGS="-I$arg/include"
		THEORADEC_LIBS="-L$arg/lib"
		;;
	--with-faad-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		FAAD_CFLAGS="-I$arg/include"
		FAAD_LIBS="-L$arg/lib"
		;;
	--with-zlib-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		ZLIB_CFLAGS="-I$arg/include"
		ZLIB_LIBS="-L$arg/lib"
		;;
	--with-sparkle-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_sparklepath=$arg
		;;
	--with-readline-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		READLINE_CFLAGS="-I$arg/include"
		READLINE_LIBS="-L$arg/lib"
		;;
	--with-libunity-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		LIBUNITY_CFLAGS="-I$arg/include"
		LIBUNITY_LIBS="-L$arg/lib"
		;;
	--with-sdlnet-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		SDL_NET_CFLAGS="-I$arg/include"
		SDL_NET_LIBS="-L$arg/lib"
		;;
	--with-iconv-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		ICONV_CFLAGS="-I$arg/include"
		ICONV_LIBS="-L$arg/lib"
		;;
	--backend=*)
		_backend=`echo $ac_option | cut -d '=' -f 2`
		;;
	--enable-c++11)
		_use_cxx11=yes
		;;
	--disable-c++11)
		_use_cxx11=no
		;;
	--enable-debug)
		_debug_build=yes
		;;
	--disable-debug)
		_debug_build=no
		;;
	--enable-Werror)
		append_var CXXFLAGS "-Werror"
		;;
	--enable-release-mode)
		_release_build=yes
		;;
	--disable-release-mode)
		_release_build=no
		;;
	--enable-release)
		_release_build=yes
		_optimizations=yes
		_updates=yes
		;;
	--disable-release)
		_release_build=no
		_optimizations=no
		;;
	--enable-optimizations)
		_optimizations=yes
		;;
	--disable-optimizations)
		_optimizations=no
		;;
	--enable-profiling)
		_enable_prof=yes
		;;
	--with-sdl-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_sdlpath="$arg:$arg/bin"
		;;
	--with-freetype2-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_freetypepath="$arg:$arg/bin"
		;;
	--with-libcurl-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_libcurlpath="$arg:$arg/bin"
		;;
	--with-nasm-prefix=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_nasmpath="$arg:$arg/bin"
		;;
	--with-pandoc-format=*)
		arg=`echo $ac_option | cut -d '=' -f 2`
		_pandocformat="$arg"
		_pandoc=yes
		;;
	--with-staticlib-prefix=*)
		_staticlibpath=`echo $ac_option | cut -d '=' -f 2`
		;;
	--with-xcodetools-path=*)
		_xcodetoolspath=`echo $ac_option | cut -d '=' -f 2`
		;;
	--host=*)
		_host=`echo $ac_option | cut -d '=' -f 2`
		;;
	--prefix=*)
		prefix=`echo $ac_option | cut -d '=' -f 2`
		;;
	--exec-prefix=*)
		exec_prefix=`echo $ac_option | cut -d '=' -f 2`
		;;
	--bindir=*)
		bindir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--libdir=*)
		libdir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--datarootdir=*)
		datarootdir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--datadir=*)
		datadir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--mandir=*)
		mandir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--docdir=*)
		docdir=`echo $ac_option | cut -d '=' -f 2`
		;;
	--enable-all-engines)
		engine_enable_all
		;;
	--disable-all-engines)
		engine_disable_all
		;;
	--enable-all-unstable-engines)
		engine_enable_all_unstable
		;;
	--disable-all-unstable-engines)
		engine_disable_all_unstable
		;;
	--enable-engine=* | --enable-engines=*)
		for engine_name in `echo $ac_option | cut -d '=' -f 2- | tr ',' '\n'`; do
			engine_enable "${engine_name}"
		done
		;;
	--enable-engine-static=* | --enable-engines-static=*)
		for engine_name in `echo $ac_option | cut -d '=' -f 2- | tr ',' '\n'`; do
			engine_enable "${engine_name}:static"
		done
		;;
	--enable-engine-dynamic=* | --enable-engines-dynamic=*)
		for engine_name in `echo $ac_option | cut -d '=' -f 2- | tr ',' '\n'`; do
			engine_enable "${engine_name}:dynamic"
		done
		;;
	--disable-engine=* | --disable-engines=*)
		for engine_name in `echo $ac_option | cut -d '=' -f 2 | tr ',' '\n'`; do
			engine_disable ${engine_name}
		done
		;;
	*)
		option_error
		;;
	esac;
done;

guessed_host=`$_srcdir/config.guess`
get_system_exe_extension $guessed_host
NATIVEEXEEXT=$_exeext

case $_host in
3ds)
	_host_os=3ds
	_host_cpu=arm
	_host_alias=arm-none-eabi

	test "x$prefix" = xNONE && prefix=romfs:

	datarootdir='${prefix}'
	datadir='${datarootdir}'
	docdir='${prefix}/doc'
	;;
android | android-arm | android-v7a | android-arm-v7a | ouya)
	_host_os=android
	_host_cpu=arm
	_host_alias=arm-linux-androideabi
	;;
android-arm64-v8a)
	_host_os=android
	_host_cpu=aarch64
	_host_alias=aarch64-linux-android
	;;
android-mips)
	_host_os=android
	_host_cpu=mipsel
	_host_alias=mipsel-linux-android
	;;
android-mips64)
	_host_os=android
	_host_cpu=mips64el
	_host_alias=mips64el-linux-android
	;;
android-x86)
	_host_os=android
	_host_cpu=i686
	_host_alias=i686-linux-android
	;;
android-x86_64)
	_host_os=android
	_host_cpu=x86_64
	_host_alias=x86_64-linux-android
	;;
androidsdl-armeabi | androidsdl-armeabi-v7a)
	_host_os=androidsdl
	_host_cpu=arm
	_host_alias=arm-linux-androideabi
	;;
androidsdl-arm64-v8a)
	_host_os=androidsdl
	_host_cpu=aarch64
	_host_alias=aarch64-linux-android
	;;
androidsdl-mips)
	_host_os=androidsdl
	_host_cpu=mipsel
	_host_alias=mipsel-linux-android
	;;
androidsdl-x86)
	_host_os=androidsdl
	_host_cpu=i686
	_host_alias=i686-linux-android
	;;
androidsdl-x86_64)
	_host_os=androidsdl
	_host_cpu=x86_64
	_host_alias=x86_64-linux-android
	;;
arm-*riscos)
	_host_os=riscos
	_host_cpu=arm
	_host_alias=$_host
	datarootdir='/\<ScummVM\$$Dir\>'
	datadir='${datarootdir}/data'
	docdir='${datarootdir}/docs'
	;;
raspberrypi)
	_host_os=linux
	_host_cpu=arm
	# This tuple is the one used by the official Rpi toolchain.
	# It may change in the future.
	_host_alias=arm-linux-gnueabihf
	;;
caanoo)
	_host_os=gph-linux
	_host_cpu=arm
	_host_alias=arm-none-linux-gnueabi
	;;
dingux | gcw0)
	_host_os=linux
	_host_cpu=mipsel
	_host_alias=mipsel-linux
	;;
miyoo)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-linux
	;;
dreamcast)
	_host_os=dreamcast
	_host_cpu=sh
	_host_alias=sh-elf
	append_var CXXFLAGS "-ml -m4-single-only"
	append_var LDFLAGS "-ml -m4-single-only"
	;;
ds)
	_host_os=ds
	_host_cpu=arm
	_host_alias=arm-none-eabi
	;;
gamecube)
	_host_os=gamecube
	_host_cpu=powerpc
	_host_alias=powerpc-eabi
	;;
gp2x)
	_host_os=gph-linux
	_host_cpu=arm
	_host_alias=arm-open2x-linux
	;;
gp2xwiz)
	_host_os=gph-linux
	_host_cpu=arm
	_host_alias=arm-open2x-linux
	;;
i586-mingw32msvc)
	_host_os=mingw32msvc
	_host_cpu=i586
	;;
iphone)
	_host_os=iphone
	_host_cpu=arm
	_host_alias=arm-apple-darwin9
	;;
ios7)
	_host_os=iphone
	_host_cpu=arm
	_host_alias=arm-apple-darwin11
	;;
maemo)
	_host_os=maemo
	_host_cpu=arm
	_host_alias=arm-none-linux-gnueabi

	# The prefix is always the same on Maemo so we hardcode the default
	# here. It is still possible to define a custom prefix which is
	# needed when packaging the app with a user-specific app ID.
	test "x$prefix" = xNONE && prefix=/opt/scummvm
	# Maemo apps are installed into app-specific directories. The
	# default directory structure of ScummVM makes no sense here so we
	# hardcode Maemo specific directories here.
	datarootdir='${prefix}/share'
	datadir=/opt/scummvm/share
	docdir='${datarootdir}/doc/scummvm'
	;;
motoezx)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-linux-gnu
	;;
motomagx)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-linux-gnueabi
	;;
n64)
	_host_os=n64
	_host_cpu=mips
	_host_alias=mips64
	;;
neuros)
	_host_os=linux
	_host_cpu=arm
	;;
openpandora)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-angstrom-linux-gnueabi
	;;
ppc-amigaos)
	_host_os=amigaos
	_host_cpu=powerpc
	_host_alias=$_host
	;;
ps2)
	_host_os=ps2
	_host_cpu=mips64r5900el
	_host_alias=ee
	# PS2 bogus dirs: they actually depend on launch medium
	datadir='host:data'
	docdir='host:docs'
	;;
ps3)
	_host_os=ps3
	_host_cpu=powerpc
	_host_alias=powerpc64-ps3-elf

	# The prefix is always the same on PS3 so we hardcode the default
	# here. It is still possible to define a custom prefix which is
	# needed when packaging the app with a user-specific app ID.
	test "x$prefix" = xNONE && prefix=/dev_hdd0/game/SCUM12000/USRDIR
	# PS3 apps are installed into app-specific directories. The
	# default directory structure of ScummVM makes no sense here so we
	# hardcode PS3 specific directories here.
	datarootdir='${prefix}/data'
	datadir='${datarootdir}'
	docdir='${prefix}/doc'
	;;
psp2)
	_host_os=psp2
	_host_cpu=arm
	_host_alias=arm-vita-eabi

	# The prefix is always the same on PSP2 so we hardcode the default
	# here. It is still possible to define a custom prefix which is
	# needed when packaging the app with a user-specific app ID.
	test "x$prefix" = xNONE && prefix=app0:
	# PSP2 apps are installed into app-specific directories. The
	# default directory structure of ScummVM makes no sense here so we
	# hardcode PSP2 specific directories here.
	datarootdir='${prefix}/data'
	datadir='${datarootdir}'
	docdir='${prefix}/doc'
	;;
psp)
	_host_os=psp
	_host_cpu=mipsallegrexel
	_host_alias=psp
	;;
samsungtv)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-linux-gnueabi
	;;
switch)
	_host_os=switch
	_host_cpu=aarch64
	_host_alias=aarch64-none-elf
	test "x$prefix" = xNONE && prefix=.
	datarootdir='${prefix}/data'
	datadir='${datarootdir}'
	docdir='${prefix}/doc'
	;;
tizen)
 	_host_os=tizen
	_host_cpu=arm
	_host_alias=arm-linux-gnueabi
	;;
trimui)
	_host_os=linux
	_host_cpu=arm
	_host_alias=arm-buildroot-linux-gnueabi
	;;
webos)
	_host_os=webos
	_host_cpu=arm
	_host_alias=arm-none-linux-gnueabi
	# The prefix is always the same on WebOS so we hardcode the default
	# here. It is still possible to define a custom prefix which is
	# needed when packaging the app with a user-specific app ID.
	test "x$prefix" = xNONE && prefix=/media/cryptofs/apps/usr/palm/applications/org.scummvm.scummvm
	# WebOS apps are installed into app-specific directories. The
	# default directory structure of ScummVM makes no sense here so we
	# hardcode WebOS specific directories here.
	datarootdir='${prefix}/data'
	datadir='${datarootdir}'
	docdir='${prefix}/doc'
	;;
wii)
	_host_os=wii
	_host_cpu=powerpc
	_host_alias=powerpc-eabi
	;;
*)
	if test -n "$_host"; then
		guessed_host=`$_srcdir/config.sub $_host`
	fi
	_host_cpu=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
	_host_vendor=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
	_host_os=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
	;;
esac

if test -z "$_host_alias"; then
	_host_alias="$_host_cpu-$_host_os"
else
	# if _host_alias was set, default to the standard GNU tools
	_ranlib=$_host_alias-ranlib
	_strip=$_host_alias-strip
	_ar="$_host_alias-ar cru"
	_as="$_host_alias-as"
	_dwp=$_host_alias-dwp
	_windres=$_host_alias-windres
fi

case $_host in
arm-*riscos | caanoo | gp2x | gp2xwiz | openpandora | ps2 | psp | psp2 | switch)
	if test "$_debug_build" = auto; then
		# If you want to debug one of these platforms, use '--disable-optimizations --enable-debug'
		_debug_build=no
	fi

	if test "$_optimizations" = auto; then
		# Enable optimizations by default.
		_optimizations=yes
	fi
	;;
esac

#
# Determine extension used for executables
#
get_system_exe_extension $_host_os
HOSTEXEPRE=
HOSTEXEEXT=$_exeext

#
# Determine separator used for $PATH
#
case $_host_os in
os2-emx*)
	SEPARATOR=";"
	;;
*)
	SEPARATOR=":"
	;;
esac

#
# Platform specific sanity checks
#
case $_host_os in
android)
	if test -z "$ANDROID_SDK"; then
		# $ANDROID_SDK must be the path to the root of the Android SDK folder;
		# The SDK should have installed the target SDK platform version as specified
		# in the Android port's manifest files and project.properties
		echo "Please set ANDROID_SDK in your environment. Export ANDROID_SDK=<path to Android SDK>"
		exit 1
	fi
	if test -z "$ANDROID_NDK"; then
		# $ANDROID_NDK must be the path to the root of the NDK folder;
		# A ndk-build script should reside (in r14b this calls the actual ndk-build in the build subfolder)
		echo "Please set ANDROID_NDK in your environment. Export ANDROID_NDK=<path to Android NDK>"
		exit 1
	fi
	;;
3ds | ds | gamecube | switch | wii)
	if test -z "$DEVKITPRO"; then
		echo "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to devkitPRO>"
		exit 1
	fi
	;;
dreamcast)
	if test -z "$RONINDIR"; then
		echo "Please set RONINDIR in your environment. export RONINDIR=<path to libronin>"
		exit 1
	fi
	;;
n64)
	if test -z "$N64SDK"; then
		echo "Please set N64SDK in your environment. export N64SDK=<path to n64 sdk>"
		exit 1
	fi
	;;
ps2)
	if test -z "$PS2SDK"; then
		echo "Please set PS2SDK in your environment. export PS2SDK=<path to ps2 sdk>"
		exit 1
	fi
	;;
ps3)
	if test -z "$PS3DEV"; then
		echo "Please set PS3DEV in your environment. export PS3DEV=<path to ps3 toolchain>"
		exit 1
	fi
	if test -z "$PSL1GHT"; then
		echo "Please set PSL1GHT in your environment. export PSL1GHT=<path to psl1ght>"
		exit 1
	fi
	;;
psp2)
	if test -z "$VITASDK"; then
		echo "Please set VITASDK in your environment. export VITASDK=<path to psp2 toolchain>"
		exit 1
	fi
	;;
psp)
	if test -z "$PSPDEV"; then
		PSPDEV=`psp-config --pspdev-path`
	fi
	# TODO: Should we also insist on a valid PSPDEV value?
	if test -z "$PSPSDK"; then
		PSPSDK=`psp-config --pspsdk-path`
	fi
	if test -z "$PSPSDK"; then
		echo "Please set PSPSDK in your environment. export PSPSDK=<path to psp sdk>"
		exit 1
	fi

	# These have to be set early because the compiler will not link successfully
	# during testing otherwise
	if test -d "$PSPDEV/psp/lib"; then
		append_var LDFLAGS "-L$PSPDEV/psp/lib"
	fi
	append_var LDFLAGS "-L$PSPSDK/lib"
	append_var LDFLAGS "-specs=$_srcdir/backends/platform/psp/psp.spec"

	;;
riscos)
	if test -z "$GCCSDK_INSTALL_ENV"; then
		echo "Please set GCCSDK_INSTALL_ENV in your environment. export GCCSDK_INSTALL_ENV=<path to GCCSDK_INSTALL_ENV>"
		exit 1
	fi

	if test -e "$GCCSDK_INSTALL_ENV/bin/tokenize"; then
		add_line_to_config_mk "TOKENIZE := $GCCSDK_INSTALL_ENV/bin/tokenize"
	elif `which tokenize >/dev/null 2>&1`; then
		add_line_to_config_mk "TOKENIZE := tokenize"
	fi
	if test -e "$GCCSDK_INSTALL_ENV/bin/bindhelp"; then
		add_line_to_config_mk "BINDHELP := $GCCSDK_INSTALL_ENV/bin/bindhelp"
	elif `which bindhelp >/dev/null 2>&1`; then
		add_line_to_config_mk "BINDHELP := bindhelp"
	fi
	;;
tizen)
	if test -z "$TIZEN_ROOTSTRAP"; then
		echo "Please set TIZEN_ROOTSTRAP in your environment. export TIZEN_ROOTSTRAP=<path to Tizen SDK device profile>"
		exit 1
	fi
	;;
webos)
	if test -z "$WEBOS_SDK"; then
		echo "Please set WEBOS_SDK in your environment. export WEBOS_SDK=<path to WebOS SDK>"
		exit 1
	fi
	if test -z "$WEBOS_PDK"; then
		echo "Please set WEBOS_PDK in your environment. export WEBOS_PDK=<path to WebOS PDK>"
		exit 1
	fi
	;;
*)
	;;
esac

#
# Determine the C++ compiler
#
echo_n "Looking for C++ compiler... "

# Check whether the given command is a working C++ compiler
test_compiler() {
	cat > tmp_cxx_compiler.cpp << EOF
	class Foo { int a; };
	int main(int argc, char **argv) {
		Foo *a = new Foo(); delete a; return 0;
	}
EOF

	echo "testing compiler: $1" >> "$TMPLOG"

	if test -n "$_host"; then
		# In cross-compiling mode, we cannot run the result
		eval "$1 $CXXFLAGS -o $TMPO.o -c tmp_cxx_compiler.cpp" 2>> "$TMPLOG" && cc_check_clean tmp_cxx_compiler.cpp
	else
		eval "$1 $CXXFLAGS $LDFLAGS -o $TMPO$HOSTEXEEXT tmp_cxx_compiler.cpp" 2>> "$TMPLOG" && eval "$TMPO$HOSTEXEEXT 2>> $TMPLOG" && cc_check_clean tmp_cxx_compiler.cpp
	fi
}

# Prepare a list of candidates for the C++ compiler
if test -n "$CXX" && test_compiler "$CXX"; then
	# Use the compiler specified in CXX
	echo $CXX
else
	if test -n "$_host"; then
		compilers="$_host_alias-g++ $_host_alias-c++ $_host-g++ $_host-c++"
	else
		compilers="g++ c++"
	fi

	# Iterate over all candidates, pick the first working one
	CXX=
	for compiler in $compilers; do
		if test_compiler $compiler; then
			echo "success testing compiler: $compiler" >> "$TMPLOG"
			CXX=$compiler
			echo $CXX
			break
		else
			echo "failure testing compiler: $compiler" >> "$TMPLOG"
		fi
	done
fi

if test -z "$CXX"; then
	echo "none found!"
	exit 1
fi

if test -n "$RANLIB"; then
	_ranlib=$RANLIB
fi

if test -n "$STRIP"; then
	_strip=$STRIP
fi

if test -n "$AR"; then
	_ar="$AR cru"
fi

if test -n "$AS"; then
	_as=$AS
fi

if test -n "$DWP"; then
	_dwp=$DWP
fi

if test -n "$WINDRES"; then
	_windres=$WINDRES
fi

LD=$CXX

#
# Determine the compiler version
#
echocheck "compiler version"

# Some compilers pretend to be gcc to ease compatibility with
# common Linux etc. programs. We first check for some of these here.
have_gcc=no
cc_check_define __GNUC__ && have_gcc=yes
have_icc=no
cc_check_define __INTEL_COMPILER && have_icc=yes
have_clang=no
cc_check_define __clang__ && have_clang=yes

if test "$have_icc" = yes; then
	add_line_to_config_mk 'HAVE_ICC = 1'

	# Make ICC error out on unknown command line options instead of printing
	# a warning. This is for example required to make the -Wglobal-destructors
	# detection work correctly.
	append_var CXXFLAGS "-diag-error 10006,10148"

	# ICC doesn't accept all gcc options, so we disable have_gcc, even if
	# ICC does have the gcc-compatibility defines.
	have_gcc=no
fi

if test "$have_clang" = yes; then
	add_line_to_config_mk 'HAVE_CLANG = 1'

	# clang does accept all gcc options we use, so we keep have_gcc
fi

if test "$have_gcc" = yes; then
	add_line_to_config_mk 'HAVE_GCC = 1'
	_cxx_major=`gcc_get_define __GNUC__`
	_cxx_minor=`gcc_get_define __GNUC_MINOR__`
	cxx_version="`( $CXX -dumpversion ) 2>&1`"

	if test "$have_clang" = yes; then
		# Clang sets a gcc version number for compatibility.
		# We keep that as _cxx_minor/_cxx_major for later
		# compiler version checks.

		# For the version reported in the configure log (cxx_version),
		# we get the actual clang version.
		cxx_version=`gcc_get_define __clang_version__`
		cxx_version="`echo "${cxx_version}" | sed -e 's/"\([^ ]*\) .*/\1/'`"
		cxx_version="clang $cxx_version, ok"
	elif test "$_cxx_major" -eq 2 && test "$_cxx_minor" -ge 95 || \
	   test "$_cxx_major" -gt 2 ; then
		cxx_version="$cxx_version, ok"
		cxx_verc_fail=no
	else
		cxx_version="$cxx_version, bad"
		cxx_verc_fail=yes
	fi
elif test "$have_icc" = yes; then
	cxx_version="`( $CXX -dumpversion ) 2>/dev/null`"
	_cxx_major="`echo "${cxx_version}" | sed -ne 's/\([0-9][0-9]*\)\..*/\1/gp'`"
	_cxx_minor="`echo "${cxx_version}" | sed -ne 's/[0-9][0-9]*\.\([0-9][0-9]*\)/\1/gp'`"
	cxx_version="ICC $cxx_version, ok"
else
	# TODO: Big scary warning about unsupported compilers
	cxx_version=`( $CXX -version ) 2>&1`
	if test "$?" -eq 0; then
		cxx_version="`echo "${cxx_version}" | sed -ne 's/^.*[^0-9]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/gp'`"
		if test -z "${cxx_version}"; then
			cxx_version="not found"
			cxx_verc_fail=yes
		fi
		echo non-gcc compiler version ${cxx_version}
	else
		cxx_version="not found"
		cxx_verc_fail=yes
		echo found non-gcc compiler version ${cxx_version}
	fi

	case $_host_os in
		irix*)
			case $cxx_version in
				7.4.4*)
					# We just assume this is SGI MIPSpro
					_cxx_major=7
					_cxx_minor=4
					cxx_verc_fail=no
					add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MDupdate "$(*D)/$(DEPDIR)/$(*F).d"'
					add_line_to_config_mk '-include Makedepend'
					;;
				*)
					cxx_version="$cxx_version, bad"
					cxx_verc_fail=yes
					;;
			esac
			;;
		*)
			cxx_version="$cxx_version, bad"
			cxx_verc_fail=yes
			;;
	esac
fi

echo "$cxx_version"

#
# Bail out now if no useable compiler was found.
#
if test "$cxx_verc_fail" = yes ; then
	echo
	echo "The version of your compiler is not supported at this time"
	echo "Please ensure you are using GCC >= 2.95"
	exit 1
fi

#
# Check whether the compiler supports C++11
#
have_cxx11=no
cat > $TMPC << EOF
int main(int argc, char *argv[]) { if (argv == nullptr) return -1; else return 0; }
EOF
cc_check -std=c++11 && have_cxx11=yes
if test "$_use_cxx11" = "yes" ; then
	_use_cxx11=$have_cxx11
fi

#
# Setup compiler specific CXXFLAGS now that we know the compiler version.
# Foremost, this means enabling various warnings.
# In addition, we set CXX_UPDATE_DEP_FLAG for GCC >= 3.0 and for ICC.
#
if test "$have_gcc" = yes ; then
	if test "$_cxx_major" -ge "3" ; then
		# Try to use ANSI mode when C++11 is disabled.
		if test "$_use_cxx11" = "no" ; then
			case $_host_os in
			# newlib-based system include files suppress non-C89 function
			# declarations under __STRICT_ANSI__
			3ds | amigaos* | android | androidsdl | dreamcast | ds | gamecube | mingw* | mint* | n64 | psp | ps2 | ps3 | psp2 | switch | tizen | wii )
				;;
			*)
				append_var CXXFLAGS "-ansi"
				;;
			esac
		fi
		append_var CXXFLAGS "-W -Wno-unused-parameter"
		add_line_to_config_mk 'HAVE_GCC3 = 1'
		add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" -MQ "$@" -MP'
	fi;

	if test "$_cxx_major" -eq 4 && test "$_cxx_minor" -ge 3 || \
	   test "$_cxx_major" -gt 4 ; then
		append_var CXXFLAGS "-Wno-empty-body"
	else
		append_var CXXFLAGS "-Wconversion"
	fi;
elif test "$have_icc" = yes ; then
	add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" -MQ "$@" -MP'
fi;

#
# Update status about C++11 mode
#
echo_n "Building as C++11... "
if test "$_use_cxx11" = "yes" ; then
	append_var CXXFLAGS "-std=c++11"
fi
echo $_use_cxx11

#
# Determine extra build flags for debug and/or release builds
#
if test "$_debug_build" != no; then
	# debug mode not explicitly disabled -> compile with debug information
	echo_n "Checking best debug mode... "

	debug_mode=-g
	test "$_host_os" = amigaos && debug_mode=-gstabs
	append_var CXXFLAGS "$debug_mode"
	echo_n -- "$debug_mode"

	echo "int main() { return 0; }" > $TMPC
	if `which $_dwp >/dev/null 2>&1` && cc_check_no_clean $debug_mode -gsplit-dwarf && `$_dwp -e $TMPO -o /dev/null >/dev/null 2>&1`; then
		append_var CXXFLAGS "-gsplit-dwarf"
		add_line_to_config_mk "SPLIT_DWARF = 1"
		echo_n -- " + split DWARF"
		if cc_check_no_clean $debug_mode -gsplit-dwarf -fuse-ld=gold -Wl,--gdb-index; then
			append_var LDFLAGS "-fuse-ld=gold"
			append_var LDFLAGS "-Wl,--gdb-index"
			echo_n -- " + Gold"
		fi
	fi

	if cc_check_no_clean $debug_mode -fvar-tracking-assignments; then
		append_var CXXFLAGS "-fvar-tracking-assignments"
		echo_n -- " + var tracking"
	fi
	cc_check_clean
	echo ""
fi

if test "$_release_build" = yes; then
	# Add a define, which indicates we are doing
	# an build for a release version.
	append_var DEFINES "-DRELEASE_BUILD"
fi

# By default, we add -pedantic to the CXXFLAGS to catch some potentially
# non-portable constructs, like use of GNU extensions.
# However, some platforms use GNU extensions in system header files, so
# for these we must not use -pedantic.
case $_host_os in
3ds | android | androidsdl | gamecube | ps2 | psp | switch | tizen | wii | webos)
	;;
*)
	# ICC does not support pedantic, while GCC and clang do.
	if test "$have_icc" = no ; then
		# We *do* want the 'long long' extension.
		append_var CXXFLAGS "-pedantic -Wno-long-long"
	fi
	;;
esac

# If possible, we want to use -Wglobal-constructors
# However, not all compilers support that, so check whether the active one does.
echocheck "whether C++ compiler accepts -Wglobal-constructors"
cat > $TMPC << EOF
int main() { return 0; }
EOF
cc_check -Wglobal-constructors -Werror && _global_constructors=yes

if test "$_global_constructors" = yes; then
	append_var CXXFLAGS "-Wglobal-constructors"
fi
echo $_global_constructors

# If the compiler supports the -Wundefined-var-template flag, silence that warning.
# We get this warning a lot with regard to the Singleton class as we explicitly
# instantiate each specialisation. An alternate way to deal with it would be to
# change the way we instantiate the singleton classes as done in PR #967.
# Note: we check the -Wundefined-var-template as gcc does not error out on unknown
# -Wno-xxx flags.
echocheck "whether C++ compiler accepts -Wno-undefined-var-template"
cat > $TMPC << EOF
int main() { return 0; }
EOF
cc_check -Wundefined-var-template -Werror && _no_undefined_var_template=yes

if test "$_no_undefined_var_template" = yes; then
	append_var CXXFLAGS "-Wno-undefined-var-template"
fi
echo $_no_undefined_var_template

# Vanilla clang 6 enables the new -Wpragma-pack which warns when leaving an
# included file which changes the current alignment.
# As our common/pack-{start,end}.h trigger this we disable this warning.
# Because there is no correlation between the version reported by Apple Xcode
# clang and vanilla clang we cannot rely on the __clang_major__/clang_minor__
# macros.
# Note: as above, we check for -Wpragma-pack as not all compilers error out on
# unknown -Wno-xxx flags.
echocheck "whether C++ compiler accepts -Wno-pragma-pack"
echo "int main() { return 0; }" >$TMPC
cc_check -Wpragma-pack -Werror && _no_pragma_pack=yes
test "$_no_pragma_pack" = yes && append_var CXXFLAGS "-Wno-pragma-pack"
echo $_no_pragma_pack

if test -n "$STRINGS"; then
	_strings=$STRINGS
else
	echo_n "Checking for $_host_alias-strings... " >> "$TMPLOG"
	if `which $_host_alias-strings >/dev/null 2>&1`; then
		_strings=$_host_alias-strings
		echo yes >> "$TMPLOG"
	else
		_strings=strings
		echo no >> "$TMPLOG"
	fi
fi

#
# Check for endianness
#
echo_n "Checking endianness... "
cat > tmp_endianness_check.cpp << EOF
unsigned short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
unsigned short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
const char * _ascii() { char* s = (char*) ascii_mm; s = (char*) ascii_ii; return s; }
unsigned short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
unsigned short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
const char * _ebcdic() { char* s = (char*) ebcdic_mm; s = (char*) ebcdic_ii; return s; }
int main() { _ascii (); _ebcdic (); return 0; }
EOF
$CXX $LDFLAGS $CXXFLAGS -o $TMPO$HOSTEXEEXT tmp_endianness_check.cpp
if $_strings $TMPO$HOSTEXEEXT | grep BIGenDianSyS >/dev/null; then
	_endian=big
elif $_strings $TMPO$HOSTEXEEXT | grep LiTTleEnDian >/dev/null; then
	_endian=little
fi
echo $_endian;
cc_check_clean tmp_endianness_check.cpp tmp_endianness_check.dwo

case $_endian in
	big)
		add_line_to_config_h '#undef SCUMM_LITTLE_ENDIAN'
		add_line_to_config_h '#define SCUMM_BIG_ENDIAN'
		;;
	little)
		add_line_to_config_h '#define SCUMM_LITTLE_ENDIAN'
		add_line_to_config_h '#undef SCUMM_BIG_ENDIAN'
		;;
	*)
		exit 1
		;;
esac

#
# Determine a data type with the given length
#
find_type_with_size() {
	for datatype in int short char long "long long" __int64 "long long int" unknown; do
		cat > tmp_find_type_with_size.cpp << EOF
typedef $datatype ac__type_sizeof_;
int main() {
	static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) == $1)];
	test_array [0] = 0;
	return 0;
}
EOF
		if $CXX $CXXFLAGS -c -o $TMPO.o tmp_find_type_with_size.cpp 2>/dev/null ; then
			break
		else
			if test "$datatype" = "unknown"; then
				echo "couldn't find data type with $1 bytes"
				exit 1
			fi
			continue
		fi
	done
	cc_check_clean tmp_find_type_with_size.cpp
	echo $datatype
}

#
# Check whether the system is 32-bit
#
pointer_is_32bit() {
	cat > tmp_pointer_is_32bit.cpp << EOF
int main() {
	static int test_array[1 - 2 * !(sizeof(void *) == 4)];
	test_array[0] = 0;
	return 0;
}
EOF
	$CXX $CXXFLAGS -c -o $TMPO.o tmp_pointer_is_32bit.cpp 2>/dev/null
	status=$?
	cc_check_clean tmp_pointer_is_32bit.cpp
	return $status
}

echo_n "Checking 64-bitness... "
pointer_is_32bit
if test $? -eq 0; then
	type_ptr=uint32
	echo "no"
else
	type_ptr=uint64
	echo "yes"
fi

#
# Determine data type sizes
#
echo_n "Type with 1 byte... "
type_1_byte=`find_type_with_size 1`
TMPR="$?"
echo "$type_1_byte"
test $TMPR -eq 0 || exit 1	# check exit code of subshell

echo_n "Type with 2 bytes... "
type_2_byte=`find_type_with_size 2`
TMPR="$?"
echo "$type_2_byte"
test $TMPR -eq 0 || exit 1	# check exit code of subshell

echo_n "Type with 4 bytes... "
type_4_byte=`find_type_with_size 4`
TMPR="$?"
echo "$type_4_byte"
test $TMPR -eq 0 || exit 1	# check exit code of subshell

echo_n "Type with 8 bytes... "
type_8_byte=`find_type_with_size 8`
TMPR="$?"
echo "$type_8_byte"
test $TMPR -eq 0 || exit 1	# check exit code of subshell

#
# Check whether memory alignment is required
#
# For some CPU types, unaligned memory access is either not supported at
# all (and so leads to a crash), requires a super-slow emulation via an
# exception handler, or just results in incorrect results.
# On the other hand, accessing data in a manner that works regardless of
# alignment can be a lot slower than regular access, so we don't want
# to use it if we don't have to.
#
# So we do the following: For CPU families where we know whether unaligned
# access is safe & fast, we enable / disable unaligned access accordingly.
# Otherwise, we just disable memory alignment.
#
# NOTE: In the past, for non-cross compiled builds, we would also run some code
# which would try to test whether unaligned access worked or not. But this test
# could not reliably determine whether unaligned access really worked in all
# situations (and across different implementations of the target CPU arch), nor
# whether it was fast (as opposed to slowly emulated by fault handlers). Hence,
# we do not use this approach anymore.
#
# NOTE: The only kinds of unaligned access we allow are for 2 byte and 4
# byte loads / stores. No promises are made for bigger sizes, such as 8
# or 16 byte loads, for which architectures may behave differently than
# for the smaller sizes.
echo_n "Alignment required... "
case $_host_cpu in
	i[3-6]86 | amd64 | x86_64 | powerpc* | ppc*)
		# Unaligned access should work
		_need_memalign=no
		;;
	alpha* | arm* | bfin* | hp* | mips* | sh* | sparc* | ia64 | nv1*)
		# Unaligned access is not supported or extremely slow.
		_need_memalign=yes
		;;
	*)
		# Status of unaligned access is unknown, so assume the worst.
		_need_memalign=yes
		;;
esac
echo "$_need_memalign"

define_in_config_h_if_yes $_need_memalign 'SCUMM_NEED_ALIGNMENT'

#
# Check the CPU architecture
#
echo_n "Checking host CPU architecture... "
case $_host_cpu in
	arm*)
		echo "ARM"
		case $_host in
			openpandora)
				define_in_config_if_yes yes 'USE_ARM_NEON_ASPECT_CORRECTOR'
				;;
			android | android-arm | androidsdl-armeabi | arm-*riscos | caanoo | ds | gp2x | gp2xwiz | maemo | tizen)
				define_in_config_if_yes yes 'USE_ARM_SCALER_ASM'
				# FIXME: The following feature exhibits a bug. It produces distorted
				# sound since 9003ce517ff9906b0288f9f7c02197fd091d4554. The ARM
				# assembly will need to be properly adapted to the changes to the C
				# code in 8f5a7cde2f99de9fef849b0ff688906f05f4643e.
				# See bug #6957: "AUDIO: ARM ASM sound code causes distorted audio on 32 bit armv6"
				#define_in_config_if_yes yes 'USE_ARM_SOUND_ASM'
				define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM'
				define_in_config_if_yes yes 'USE_ARM_GFX_ASM'
				# FIXME: The following feature exhibits a bug during the intro scene of Indy 4
				# (on Pandora and iPhone at least)
				#define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM'
				;;
		esac

		append_var DEFINES "-DARM_TARGET"
		;;
	i[3-6]86)
		echo "x86"
		_have_x86=yes
		define_in_config_h_if_yes $_have_x86 'HAVE_X86'
		;;
	mips*)
		echo "MIPS"
		append_var DEFINES "-DMIPS_TARGET"
		;;
	powerpc* | ppc*)
		echo "PowerPC"
		append_var DEFINES "-DPPC_TARGET"
		;;
	amd64 | x86_64)
		echo "x86_64"
		;;
	*)
		echo "unknown ($_host_cpu)"
		;;
esac


#
# Determine build settings
#
echo_n "Checking hosttype... "
echo $_host_os
case $_host_os in
	3ds)
		_optimization_level=-O2
		append_var DEFINES "-D__3DS__"
		append_var DEFINES "-DARM"
		append_var DEFINES "-DARM11"
		append_var CXXFLAGS "-march=armv6k"
		append_var CXXFLAGS "-mtune=mpcore"
		append_var CXXFLAGS "-mword-relocations"
		append_var CXXFLAGS "-mfloat-abi=hard"
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-fomit-frame-pointer"
		append_var CXXFLAGS "-I$DEVKITPRO/libctru/include"
		append_var CXXFLAGS "-I$DEVKITPRO/portlibs/3ds/include"
		append_var LDFLAGS "-L$DEVKITPRO/libctru/lib"
		append_var LDFLAGS "-L$DEVKITPRO/portlibs/3ds/lib"
		append_var LIBS "-lcitro3d -lctru"
		;;
	amigaos*)
		append_var LDFLAGS "-Wl,--export-dynamic"
		append_var LDFLAGS "-L/sdk/local/newlib/lib"
		# We have to use 'long' for our 4 byte typedef because AmigaOS already typedefs (u)int32
		# as (unsigned) long, and consequently we'd get a compiler error otherwise.
		type_4_byte='long'
		# Supress format warnings as the long 4 byte causes noisy warnings.
		append_var CXXFLAGS "-Wno-format"
		add_line_to_config_mk 'AMIGAOS = 1'
		_port_mk="backends/platform/sdl/amigaos/amigaos.mk"
		_nuked_opl=no
		;;
	android)
		case $_host in
			android | android-arm)
				append_var CXXFLAGS "-march=armv5te"
				append_var CXXFLAGS "-mtune=xscale"
				append_var CXXFLAGS "-mfloat-abi=softfp"
				ABI="armeabi"
				;;
			android-v7a | android-arm-v7a)
				append_var CXXFLAGS "-march=armv7-a"
				append_var CXXFLAGS "-mfloat-abi=softfp"
				append_var CXXFLAGS "-mfpu=vfp"
				append_var LDFLAGS "-march=armv7-a"
				append_var LDFLAGS "-Wl,--fix-cortex-a8"
				ABI="armeabi-v7a"
				;;
			android-arm64-v8a)
				ABI="arm64-v8a"
				;;
			android-mips)
				append_var CXXFLAGS "-march=mips32"
				append_var CXXFLAGS "-mtune=mips32"
				ABI="mips"
				# Platform version 9 is needed as earlier versions of platform do not support this arch.
				;;
			android-mips64)
				ABI="mips64"
				;;
			android-x86)
				append_var CXXFLAGS "-march=i686"
				append_var CXXFLAGS "-mtune=intel"
				ABI="x86"
				# Platform version 9 is needed as earlier versions of platform do not support this arch.
				;;
			android-x86_64)
				append_var CXXFLAGS "-march=x86-64"
				append_var CXXFLAGS "-mtune=intel"
				ABI="x86_64"
				;;
			ouya)
				append_var CXXFLAGS "-march=armv7-a"
				append_var CXXFLAGS "-mtune=cortex-a9"
				append_var CXXFLAGS "-mfloat-abi=softfp"
				append_var CXXFLAGS "-mfpu=neon"
				ABI="armeabi-v7a"
				;;
		esac

		append_var CXXFLAGS "-fpic"
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-funwind-tables"
		if test "$_debug_build" = yes; then
			append_var CXXFLAGS "-fno-omit-frame-pointer"
			append_var CXXFLAGS "-fno-strict-aliasing"
		else
			append_var CXXFLAGS "-fomit-frame-pointer"
			append_var CXXFLAGS "-fstrict-aliasing"
		fi
		_optimization_level=-Os

		add_line_to_config_mk "ANDROID_SDK = $ANDROID_SDK"
		_seq_midi=no
		;;
	beos*)
		append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
		# Needs -lbind -lsocket for the timidity MIDI driver
		LDFLAGS="-L/boot/home/config/lib"
		CFLAGS="-I/boot/home/config/include"
		append_var CXXFLAGS "-fhuge-objects"
		append_var LIBS "-lbind -lsocket"
		_seq_midi=no
		;;
	cygwin*)
		echo ERROR: Cygwin building is not supported by ScummVM anymore. Consider using MinGW.
		exit 1
		;;
	darwin*)
		# Pass -mlongcall to gcc so that it emits long calls
		# which will allow for calls larger than 32MB. The linker
		# will discard the calls if they are not needed, but we
		# need to ensure the compiler emits them in the first place.
		case $_host_cpu in
		powerpc*)
			append_var CFLAGS "-mlongcall"
			append_var CXXFLAGS "-mlongcall"
			;;
		esac

		append_var DEFINES "-DMACOSX"
		append_var LIBS "-framework AudioUnit -framework AudioToolbox -framework Carbon -framework CoreMIDI"
		# SDL2 doesn't seem to add Cocoa for us.
		append_var LIBS "-framework Cocoa"
		add_line_to_config_mk 'MACOSX = 1'

		# Now we may have MacPorts or Fink installed
		# Which put libraries and headers in non-standard places
		# Checking them here

		# MacPorts
		# There is no way to get the prefix, so implementing a hack here
		macport_version=`port version 2>/dev/null`
		if test "$?" -eq 0; then
			macport_version="`echo "${macport_version}" | sed -ne 's/Version: \([0-9]\.[0-9]\.[0-9]\)/\1/gp'`"
			echo_n "You seem to be running MacPorts version ${macport_version}..."

			macport_prefix=`which port`
			# strip off /bin/port from /opt/local/bin/port
			macport_prefix=`dirname ${macport_prefix}`
			macport_prefix=`dirname ${macport_prefix}`

			echo "adding ${macport_prefix} to paths"

			LDFLAGS="-L${macport_prefix}/lib $LDFLAGS"
			CXXFLAGS="-I${macport_prefix}/include $CXXFLAGS"

			if test -z "$_staticlibpath"; then
				_staticlibpath=${macport_prefix}
				echo "Set staticlib-prefix to ${_staticlibpath}"
			fi
		fi

		# Fink
		# There is no way to get the prefix, so implementing a hack here
		fink_version=`fink -V 2>/dev/null`
		if test "$?" -eq 0; then
			fink_version="`echo "${fink_version}" | sed -ne 's/Package manager version: \([0-9.]*\)/\1/gp'`"
			echo_n "You seem to be running Fink version ${fink_version}..."

			fink_prefix=`which fink`
			# strip off /bin/fink from /sw/bin/port
			fink_prefix=`dirname ${fink_prefix}`
			fink_prefix=`dirname ${fink_prefix}`

			echo "adding ${fink_prefix} to paths"

			LDFLAGS="-L${fink_prefix}/lib $LDFLAGS"
			CXXFLAGS="-I${fink_prefix}/include $CXXFLAGS"

			if test -z "$_staticlibpath"; then
				_staticlibpath=${fink_prefix}
				echo "Set staticlib-prefix to ${_staticlibpath}"
			fi
		fi

		# Homebrew
		brew_version=`brew -v 2>/dev/null`
		if test "$?" -eq 0; then
			brew_version="`echo "${brew_version}" | sed -ne 's/Homebrew \([0-9.]*\)/\1/gp'`"
			echo_n "You seem to be running Homebrew version ${brew_version}..."

			brew_prefix=`brew --prefix`

			echo "adding ${brew_prefix} to paths"

			LDFLAGS="-L${brew_prefix}/lib $LDFLAGS"
			CXXFLAGS="-I${brew_prefix}/include $CXXFLAGS"

			if test -z "$_staticlibpath"; then
				_staticlibpath=${brew_prefix}
				echo "Set staticlib-prefix to ${_staticlibpath}"
			fi
		fi

		# If _staticlibpath is not set yet try first /sw (fink) then /usr/local
		# (the macports case is handled above).
		if test -z "$_staticlibpath"; then
			if test -d "/sw"; then
				_staticlibpath=/sw
				echo "Set staticlib-prefix to ${_staticlibpath}"
			elif test -d "/usr/local"; then
				_staticlibpath=/usr/local
				echo "Set staticlib-prefix to ${_staticlibpath}"
			else
				echo "Could not determine prefix for static libraries"
			fi
		fi

		# If _xcodetoolspath is not set yet use xcode-select to get the path
		if test -z "$_xcodetoolspath"; then
			_xcodetoolspath=`xcode-select -print-path`/Tools
			if test -d "$_xcodetoolspath"; then
				echo "Set xcodetools-path to ${_xcodetoolspath}"
			else
				_xcodetoolspath=
				echo "Could not determine path for Xcode Tools"
			fi
		fi

		# Use pandoc to generate README and NEWS file for the bundle
		# Also default to  HTML rather than plain text as it gives a nicer
		# formating, especially for the README. We could consider using RTF
		# as well, but TextEdit does not support links within the document,
		# and having a TOC with links, which we do with html, is quite convenient.
		_pandoc=yes
		if test "$_pandocformat" = "default"; then
			_pandocformat="html"
		fi
		;;
	dreamcast)
		append_var DEFINES "-D__DC__"
		append_var DEFINES "-DNONSTANDARD_PORT"
		;;
	ds)
		append_var DEFINES "-D__DS__"
		append_var DEFINES "-DNDS"
		append_var DEFINES "-DARM9"
		append_var DEFINES "-DARM"
		append_var DEFINES "-DNONSTANDARD_PORT"
		append_var CXXFLAGS "-isystem $DEVKITPRO/libnds/include"
		append_var CXXFLAGS "-isystem $DEVKITPRO/portlibs/nds/include"
		append_var CXXFLAGS "-isystem $DEVKITPRO/portlibs/armv5te/include"
		append_var CXXFLAGS "-mcpu=arm9tdmi"
		append_var CXXFLAGS "-mtune=arm9tdmi"
		append_var CXXFLAGS "-fomit-frame-pointer"
		append_var CXXFLAGS "-mthumb-interwork"
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-fdata-sections"
		append_var CXXFLAGS "-fno-strict-aliasing"
		append_var CXXFLAGS "-fuse-cxa-atexit"
		append_var LDFLAGS "-mthumb-interwork"
		append_var LDFLAGS "-mfloat-abi=soft"
		append_var LDFLAGS "-Wl,-Map,map.txt"
		if test "$_dynamic_modules" = no ; then
			append_var LDFLAGS "-Wl,--gc-sections"
		else
			append_var LDFLAGS "-Wl,--no-gc-sections"
			# TODO automate this required 2 step linking phase
			# append_var LDFLAGS "-Wl,--retain-symbols-file,ds.syms"
		fi
		append_var LDFLAGS "-L$DEVKITPRO/libnds/lib"
		append_var LDFLAGS "-L$DEVKITPRO/portlibs/nds/lib"
		append_var LDFLAGS "-L$DEVKITPRO/portlibs/armv5te/lib"
		append_var LIBS "-specs=ds_arm9.specs"
		append_var LIBS "-lnds9"
		;;
	freebsd*)
		append_var LDFLAGS "-L/usr/local/lib"
		append_var CXXFLAGS "-I/usr/local/include"
		;;
	gamecube)
		_optimization_level=-Os
		append_var CXXFLAGS "-mogc"
		append_var CXXFLAGS "-mcpu=750"
		append_var CXXFLAGS "-meabi"
		append_var CXXFLAGS "-mhard-float"
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-fdata-sections"
		append_var CXXFLAGS "-fmodulo-sched"
		append_var CXXFLAGS "-fuse-cxa-atexit"
		append_var CXXFLAGS "-I$DEVKITPRO/libogc/include"
		append_var CXXFLAGS "-I$DEVKITPRO/portlibs/ppc/include"
		# libogc is required to link the cc tests (includes _start())
		append_var LDFLAGS "-mogc"
		append_var LDFLAGS "-mcpu=750"
		append_var LDFLAGS "-L$DEVKITPRO/libogc/lib/cube"
		append_var LDFLAGS "-L$DEVKITPRO/portlibs/ppc/lib"
		append_var LDFLAGS "-logc"
		if test "$_dynamic_modules" = "yes" ; then
			# retarded toolchain patch forces --gc-sections, overwrite it
			append_var LDFLAGS "-Wl,--no-gc-sections"
		fi
		;;
	haiku*)
		append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
		# Needs -lnetwork for the timidity MIDI driver
		append_var LIBS "-lnetwork"
		_seq_midi=no
		;;
	irix*)
		append_var DEFINES "-DIRIX"
		append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
		append_var LIBS "-lmd -lfastm -lm"
		_ranlib=:
		;;
	linux* | uclinux*)
		# When not cross-compiling, enable large file support, but don't
		# care if getconf doesn't exist or doesn't recognize LFS_CFLAGS.
		if test -z "$_host"; then
			append_var CXXFLAGS "`getconf LFS_CFLAGS 2>/dev/null`"
		fi
		;;
	maemo)
		append_var DEFINES "-DMAEMO"
		;;
	mingw*)
		append_var DEFINES "-DWIN32"
		# append_var DEFINES "-D__USE_MINGW_ANSI_STDIO=0"  # Modern MinGW does not need it
		append_var LDFLAGS "-static-libgcc -static-libstdc++"
		append_var LIBS "-lmingw32 -lwinmm -lgdi32"
		append_var OBJS "dists/scummvm.o"
		add_line_to_config_mk 'WIN32 = 1'
		_port_mk="backends/platform/sdl/win32/win32.mk"
		;;
	mint*)
		append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
		append_var DEFINES "-D_GNU_SOURCE"
		append_var DEFINES "-D_ISOC11_SOURCE"
		;;
	msys)
		echo ERROR: Using the MSYS shell in msys mode is not supported. Please use the MSYS shell in mingw mode instead.
		exit 1
		;;
	n64)
		append_var DEFINES "-D__N64__"
		append_var DEFINES "-DLIMIT_FPS"
		append_var DEFINES "-DNONSTANDARD_PORT"
		append_var DEFINES "-DDISABLE_COMMAND_LINE"
		append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER"
		append_var DEFINES "-DDISABLE_DOSBOX_OPL"
		append_var DEFINES "-DDISABLE_FANCY_THEMES"
		append_var DEFINES "-DDISABLE_NES_APU"
		append_var DEFINES "-DDISABLE_SID"
		append_var DEFINES "-DREDUCE_MEMORY_USAGE"
		add_line_to_config_mk 'N64 = 1'
		_nuked_opl=no
		;;
	ps2)
		append_var CXXFLAGS "-G2"
		append_var DEFINES "-D_EE"
		append_var DEFINES "-D__PLAYSTATION2__"
		if test -z "$PS2SDK_OLD"; then
			append_var DEFINES "-D__NEW_PS2SDK__"
		fi
		;;
	ps3)
		# Force use of SDL and freetype from the ps3 toolchain
		_sdlpath="$PS3DEV/portlibs/ppu:$PS3DEV/portlibs/ppu/bin"
		_freetypepath="$PS3DEV/portlibs/ppu:$PS3DEV/portlibs/ppu/bin"
		_libcurlpath="$PS3DEV/portlibs/ppu:$PS3DEV/portlibs/ppu/bin"

		append_var DEFINES "-DPLAYSTATION3"
		append_var CXXFLAGS "-mcpu=cell -mno-fp-in-toc -I$PSL1GHT/ppu/include -I$PS3DEV/portlibs/ppu/include"
		append_var LDFLAGS "-L$PSL1GHT/ppu/lib -L$PS3DEV/portlibs/ppu/lib"
		# The network libraries are statically linked and need to be specified in the following order
		append_var SDL_NET_LIBS "-lSDL_net -lnet -lsysmodule"
		add_line_to_config_mk 'PLAYSTATION3 = 1'
		add_line_to_config_h "#define PREFIX \"${prefix}\""
		;;
	psp2)
		_freetypepath="$VITASDK/arm-vita-eabi/bin"
		_freetype2=yes
		_libcurlpath="$VITASDK/arm-vita-eabi/bin"
		append_var CXXFLAGS "--sysroot=$VITASDK/arm-vita-eabi"
		append_var LDFLAGS "--sysroot=$VITASDK/arm-vita-eabi"
		append_var DEFINES "-DPSP2 -DSYSTEM_NOT_SUPPORTING_D_TYPE"
		append_var CXXFLAGS "-Wl,-q -I$VITASDK/arm-vita-eabi/include"
		append_var CXXFLAGS "-march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard"
		append_var LDFLAGS "-Wl,-q -L$VITASDK/arm-vita-eabi/lib"
		#the next line fixes a crash when starting scumm-7-8 games (The Dig etc.)
		#when either -O2, -O3 or -Os optimizations are enabled
		append_var CXXFLAGS "-fno-optimize-sibling-calls"
		#the next line fixes "branch out of range" error in gob engine when -Os is used
		append_var CXXFLAGS "-mlong-calls"
		if test "$_debug_build" = no; then
		#optimize for smallest file size. This is necessary to prevent a crash on startup
		#due to the large executable file size when many engines are enabled
		#for example when --enable-all-engines is used to enable all the unstable engines
			_optimization_level=-Os
		fi
		if test "$_debug_build" = yes; then
			_optimization_level=-O0
			append_var DEFINES "-D__PSP2_DEBUG__"
			append_var LIBS "-lpsp2shell"
		fi
		add_line_to_config_mk 'PSP2 = 1'
		add_line_to_config_h "#define PREFIX \"${prefix}\""
		;;
	psp)
		_optimization_level=-O2
		append_var CXXFLAGS "-I$PSPSDK/include"
		# FIXME: Why is the following in CXXFLAGS and not in DEFINES? Change or document this.
		append_var CXXFLAGS "-D_PSP_FW_VERSION=150"
		add_line_to_config_mk 'PSP = 1'
		;;
	riscos)
		define_in_config_if_yes yes 'RISCOS'
		append_var LDFLAGS "-L$GCCSDK_INSTALL_ENV/lib"
		append_var CXXFLAGS "-isystem $GCCSDK_INSTALL_ENV/include"
		_pkgconfig=$GCCSDK_INSTALL_ENV/ro-pkg-config
		_sdlpath=$GCCSDK_INSTALL_ENV/bin
		_freetypepath=$GCCSDK_INSTALL_ENV/bin
		_libcurlpath=$GCCSDK_INSTALL_ENV/bin
		append_var CXXFLAGS "-march=armv3m"
		append_var CXXFLAGS "-mtune=xscale"
		append_var LDFLAGS "-static"
		_optimization_level=-O2
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-fdata-sections"
		append_var LDFLAGS "-Wl,--gc-sections"
		_port_mk="backends/platform/sdl/riscos/riscos.mk"
		_pandoc=yes
		;;
	solaris*)
		append_var DEFINES "-DSOLARIS"
		append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
		# Needs -lbind -lsocket for the timidity MIDI driver
		append_var LIBS "-lnsl -lsocket"
		;;
	switch)
		_pkgconfig="$DEVKITPRO/portlibs/switch/bin/aarch64-none-elf-pkg-config"
		_libcurlpath="$DEVKITPRO/portlibs/switch/bin"
		_sdlpath="$DEVKITPRO/portlibs/switch/bin"
		append_var DEFINES "-DSWITCH -D__SWITCH__ -DNINTENDO_SWITCH"
		append_var CXXFLAGS "-march=armv8-a -mtune=cortex-a57 -mtp=soft -fPIE -ftls-model=local-exec"
		append_var CXXFLAGS "-ffunction-sections -fdata-sections"
		append_var CXXFLAGS "-I$DEVKITPRO/libnx/include -I$DEVKITPRO/portlibs/switch/include"
		append_var LDFLAGS "-L$DEVKITPRO/libnx/lib -L$DEVKITPRO/portlibs/switch/lib"
		append_var LIBS "-specs=$DEVKITPRO/libnx/switch.specs"
		add_line_to_config_mk 'SWITCH = 1'
		if test "$_debug_build" = yes; then
			append_var DEFINES "-D__SWITCH_DEBUG__"
		else
			_optimization_level=-O3
		fi
		;;
	tizen)
		add_line_to_config_mk "TIZEN_ROOTSTRAP = $TIZEN_ROOTSTRAP"
		append_var LDFLAGS "--sysroot=${TIZEN_ROOTSTRAP}"
		append_var LDFLAGS "-L${TIZEN_LIBS}/lib"
		append_var CXXFLAGS "-I${TIZEN_LIBS}/include"
		;;
	webos)
		append_var CXXFLAGS "--sysroot=$WEBOS_PDK/arm-gcc/sysroot"
		append_var CXXFLAGS "-I$WEBOS_PDK/include"
		append_var CXXFLAGS "-I$WEBOS_PDK/include/SDL"
		append_var CXXFLAGS "-I$WEBOS_PDK/device/usr/include"
		# These compiler options are needed to support the Palm Pixi
		append_var CXXFLAGS "-mcpu=arm1136jf-s"
		append_var CXXFLAGS "-mfpu=vfp "
		append_var CXXFLAGS "-mfloat-abi=softfp"
		append_var LDFLAGS "-L$WEBOS_PDK/device/lib"
		append_var LDFLAGS "-L$WEBOS_PDK/device/usr/lib"
		append_var LDFLAGS "-Wl,--allow-shlib-undefined"
		append_var LDFLAGS "--sysroot=$WEBOS_PDK/arm-gcc/sysroot"
		add_line_to_config_mk "WEBOS_SDK = $WEBOS_SDK"
		_seq_midi=no
		;;
	wii)
		_optimization_level=-Os
		append_var CXXFLAGS "-mrvl"
		append_var CXXFLAGS "-mcpu=750"
		append_var CXXFLAGS "-meabi"
		append_var CXXFLAGS "-mhard-float"
		append_var CXXFLAGS "-ffunction-sections"
		append_var CXXFLAGS "-fdata-sections"
		append_var CXXFLAGS "-fmodulo-sched"
		append_var CXXFLAGS "-fuse-cxa-atexit"
		append_var CXXFLAGS "-I$DEVKITPRO/libogc/include"
		append_var CXXFLAGS "-I$DEVKITPRO/portlibs/ppc/include"
		# libogc is required to link the cc tests (includes _start())
		append_var LDFLAGS "-mrvl"
		append_var LDFLAGS "-mcpu=750"
		append_var LDFLAGS "-L$DEVKITPRO/libogc/lib/wii"
		append_var LDFLAGS "-L$DEVKITPRO/portlibs/ppc/lib"
		append_var LDFLAGS "-logc"
		if test "$_dynamic_modules" = "yes" ; then
			# retarded toolchain patch forces --gc-sections, overwrite it
			append_var LDFLAGS "-Wl,--no-gc-sections"
		fi
		;;
esac

if test -n "$_host"; then
	# Cross-compiling mode - add your target here if needed
	echo "Cross-compiling to $_host"
	case "$_host" in
		3ds)
			append_var DEFINES "-DDISABLE_FANCY_THEMES"
			append_var DEFINES "-DDISABLE_SID"
			append_var DEFINES "-DDISABLE_NES_APU"
			_backend="3ds"
			_build_scalers=no
			_vkeybd=yes
			_mt32emu=no
			# Should use Tremor instead of Vorbis
			_vorbis=no
			_port_mk="backends/platform/3ds/3ds.mk"
			;;
		android | android-arm | android-v7a | android-arm-v7a | android-arm64-v8a | android-mips | android-mips64 | android-x86 | android-x86_64 | ouya)
			# also __ANDROID__ is defined by Clang in the NDK
			DEFINES="$DEFINES -D__ANDROID_PLAIN_PORT__ -DANDROID_PLAIN_PORT"
			# we link a .so as default
			append_var LDFLAGS "-shared"
			append_var LDFLAGS "-Wl,-Bsymbolic,--no-undefined"
			HOSTEXEPRE=lib
			HOSTEXEEXT=.so
			_backend="android"
			_port_mk="backends/platform/android/android.mk"
			_build_scalers=no
			_seq_midi=no
			_timidity=no
			;;
		androidsdl | androidsdl-armeabi | androidsdl-armeabi-v7a | androidsdl-mips | androidsdl-x86 | androidsdl-arm64-v8a | androidsdl-x86_64)
			DEFINES="$DEFINES -DANDROIDSDL"
			_unix=yes
			_seq_midi=no
			_timidity=no
			_backend="androidsdl"
			_port_mk="backends/platform/androidsdl/androidsdl.mk"
			;;
		arm-linux|arm*-linux-gnueabi|arm-*-linux)
			;;
		arm-*riscos)
			_opengl_mode=none
			_vorbis=no
			;;
		bfin*)
			;;
		caanoo)
			append_var DEFINES "-DCAANOO"
			if test "$_debug_build" = no; then
				# Use -O3 on the Caanoo for non-debug builds.
				_optimization_level=-O3
			fi
			append_var CXXFLAGS "-mcpu=arm926ej-s"
			append_var CXXFLAGS "-mtune=arm926ej-s"
			_backend="gph"
			_build_hq_scalers=no
			_savegame_timestamp=no
			_vkeybd=yes
			_seq_midi=no
			_mt32emu=no
			_timidity=no
			_port_mk="backends/platform/gph/caanoo-bundle.mk"
			;;
		*darwin*)
			_ranlib=$_host-ranlib
			_strip=$_host-strip
			;;
		dingux)
			append_var DEFINES "-DDINGUX"
			append_var DEFINES "-DDISABLE_DOSBOX_OPL"
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			append_var CXXFLAGS "-msoft-float"
			append_var CXXFLAGS "-mips32"
			_backend="dingux"
			_mt32emu=no
			_nuked_opl=no
			_optimization_level=-O3
			# Disable alsa midi to get the port build on OpenDingux toolchain
			_alsa=no
			# Disable cloud and SDL_Net due to outdated toolchain
			_cloud=no
			_sdlnet=no
			_libcurl=no
			_vkeybd=yes
			_build_hq_scalers=no
			_keymapper=no
			# Force disable vorbis on dingux, it has terrible performance compared to tremor
			_vorbis=no
			# Force disable seq on dingux, no way to use it and it would get enabled by default with configure
			_seq_midi=no
			_port_mk="backends/platform/dingux/dingux.mk"
			;;
		miyoo)
			_sysroot=`$CXX --print-sysroot`
			_sdlpath=$_sysroot/usr/bin
			append_var DEFINES "-DDINGUX -DGCW0"
			append_var DEFINES "-DDISABLE_DOSBOX_OPL" 
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			append_var CXXFLAGS "-msoft-float"
			_backend="dingux"
			_mt32emu=no
			_nuked_opl=no
			_optimization_level=-O3
			# Disable alsa midi to get the port build on OpenDingux toolchain
			_alsa=no
			# Disable cloud and SDL_Net due to outdated toolchain
			_cloud=no
			_sdlnet=no
			_libcurl=no
			_vkeybd=yes			
			_build_hq_scalers=no
			_mad=yes
			_build_scalers=yes
			# Force disable vorbis on dingux, it has terrible performance compared to tremor
			_vorbis=no				
			# Force disable seq on dingux, no way to use it and it would get enabled by default with configure
			_seq_midi=no
			_sdlconfig=sdl-config
			_port_mk="backends/platform/dingux/dingux.mk"
			;;
		raspberrypi)
			# This is needed because the official cross compiler doesn't have multiarch enabled
			# but Raspbian does.
			# Be careful as it's the linker (LDFLAGS) which must know about sysroot.
			# These are needed to build against Raspbian's libSDL.
			append_var LDFLAGS "--sysroot=$RPI_ROOT"
			append_var LDFLAGS "-B$RPI_ROOT/usr/lib/arm-linux-gnueabihf"
			append_var LDFLAGS "-Xlinker --rpath-link=$RPI_ROOT/usr/lib/arm-linux-gnueabihf"
			append_var LDFLAGS "-Xlinker --rpath-link=$RPI_ROOT/lib/arm-linux-gnueabihf"
			append_var LDFLAGS "-Xlinker --rpath-link=$RPI_ROOT/opt/vc/lib"
			append_var LDFLAGS "-L$RPI_ROOT/opt/vc/lib"
			# This is so optional OpenGL ES includes are found.
			append_var CXXFLAGS "-I$RPI_ROOT/opt/vc/include"
			_savegame_timestamp=no
			_eventrec=no
			_build_scalers=no
			_build_hq_scalers=no
			# We prefer SDL2 on the Raspberry Pi: acceleration now depends on it
			# since SDL2 manages dispmanx/GLES2 very well internally.
			# SDL1 is bit-rotten on this platform.
			_sdlconfig=sdl2-config
			# OpenGL ES support is mature enough as to be the best option on
			# the Raspberry Pi, so it's enabled by default.
			# The Raspberry Pi always supports OpenGL ES 2.0 contexts, thus we
			# take advantage of those.
			_opengl_mode=gles2
			;;
		dreamcast)
			append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER"
			append_var DEFINES "-DDISABLE_TEXT_CONSOLE"
			append_var DEFINES "-DDISABLE_COMMAND_LINE"
			# Enable serial debugging output only when --enable-debug is passed
			if test "$_release_build" = yes -o "$_debug_build" != yes; then
				append_var DEFINES "-DNOSERIAL"
			fi
			_optimization_level=-O3
			append_var CXXFLAGS "-funroll-loops"
			append_var CXXFLAGS "-fschedule-insns2"
			append_var CXXFLAGS "-fomit-frame-pointer"
			append_var CXXFLAGS "-fdelete-null-pointer-checks"
			_backend="dc"
			_build_scalers=no
			# These two are needed due to shortcomings of the
			# detection systems.  Do not remove until auto-
			# detection works correctly.
			_mad=yes
			_zlib=yes
			_port_mk="backends/platform/dc/dreamcast.mk"
			;;
		ds)
			append_var DEFINES "-DDISABLE_COMMAND_LINE"
			append_var DEFINES "-DDISABLE_DEFAULT_SAVEFILEMANAGER"
			append_var DEFINES "-DDISABLE_DOSBOX_OPL"
			append_var DEFINES "-DDISABLE_FANCY_THEMES"
			append_var DEFINES "-DDISABLE_SID"
			append_var DEFINES "-DDISABLE_NES_APU"
			append_var DEFINES "-DDISABLE_TEXT_CONSOLE"
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			append_var DEFINES "-DSTREAM_AUDIO_FROM_DISK"
			append_var DEFINES "-DVECTOR_RENDERER_FORMAT=1555"
			_backend="ds"
			_build_scalers=no
			_mt32emu=no
			_nuked_opl=no
			_bink=no
			_lua=no
			_port_mk="backends/platform/ds/ds.mk"
			;;
		gamecube)
			_backend="wii"
			_build_scalers=no
			_vkeybd=yes
			_mt32emu=no
			_port_mk="backends/platform/wii/wii.mk"
			add_line_to_config_mk 'GAMECUBE = 1'
			add_line_to_config_h '#define AUDIO_REVERSE_STEREO'
			add_line_to_config_h '#define GAMECUBE'
			add_line_to_config_h "/* #define DEBUG_WII_USBGECKO */"
			add_line_to_config_h "/* #define DEBUG_WII_MEMSTATS */"
			add_line_to_config_h "/* #define DEBUG_WII_GDB */"
			add_line_to_config_h "#define USE_WII_DI"
			;;
		gcw0)
			_sysroot=`$CXX --print-sysroot`
			_sdlpath=$_sysroot/usr/bin
			append_var DEFINES "-DDINGUX -DGCW0"
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			append_var CXXFLAGS "-mips32"
			_backend="dingux"
			_alsa=no
			_mt32emu=no
			_seq_midi=no
			_timidity=no
			_mad=yes
			_build_scalers=yes
			_optimization_level=-O3
			_vkeybd=yes
			_keymapper=yes
			_vorbis=no
			_sdlconfig=sdl-config
			_port_mk="backends/platform/dingux/dingux.mk"
			;;
		gp2x)
			append_var DEFINES "-DGP2X"
			append_var CXXFLAGS "-march=armv4t"
			append_var ASFLAGS "-mfloat-abi=soft"
			append_var LDFLAGS "-static"
			_backend="gph"
			_build_hq_scalers=no
			_savegame_timestamp=no
			_vkeybd=yes
			_seq_midi=no
			_mt32emu=no
			_timidity=no
			_port_mk="backends/platform/gph/gp2x-bundle.mk"
			;;
		gp2xwiz)
			append_var DEFINES "-DGP2XWIZ"
			append_var CXXFLAGS "-mcpu=arm926ej-s"
			append_var CXXFLAGS "-mtune=arm926ej-s"
			append_var ASFLAGS "-mfloat-abi=soft"
			_backend="gph"
			_build_hq_scalers=no
			_savegame_timestamp=no
			_vkeybd=yes
			_seq_midi=no
			_mt32emu=no
			_timidity=no
			_port_mk="backends/platform/gph/gp2xwiz-bundle.mk"
			;;
		iphone)
			append_var DEFINES "-DIPHONE"
			append_var ASFLAGS "-arch armv6"
			_backend="iphone"
			_build_scalers=no
			_mt32emu=no
			_seq_midi=no
			_timidity=no
			;;
		ios7)
			append_var DEFINES "-DIPHONE"
			_backend="ios7"
			_seq_midi=no
			_timidity=no
			;;
		m68k-atari-mint)
			_seq_midi=no
			_timidity=no
			;;
		maemo)
			_optimization_level=-Os
			append_var CXXFLAGS "-mcpu=arm926ej-s"
			append_var CXXFLAGS "-fomit-frame-pointer"
			append_var INCLUDES "-I/usr/X11R6/include"
			append_var LIBS "-lX11"
			append_var LIBS "-L/usr/lib"

			_backend="maemo"
			_vkeybd=yes
			_keymapper=yes
			_build_hq_scalers=no
			_mt32emu=no
			_alsa=no
			_mad=yes
			_tremor=yes
			_zlib=yes
			;;
		*mingw32*)
			_sdlconfig=$_host-sdl-config
			_windres=$_host-windres
			_ar="$_host-ar cr"
			_ranlib=$_host-ranlib
			;;
		mips-sgi*)
			append_var LDFLAGS "-static-libgcc"
			append_var LIBS "-laudio"
			;;
		motoezx)
			append_var DEFINES "-DMOTOEZX"
			append_var ASFLAGS "-mfpu=vfp"
			_backend="linuxmoto"
			_build_hq_scalers=no
			_mt32emu=no
			_vkeybd=yes
			_seq_midi=no
			_port_mk="backends/platform/linuxmoto/linuxmoto.mk"
			;;
		motomagx)
			append_var DEFINES "-DMOTOMAGX"
			append_var ASFLAGS "-mfpu=vfp"
			_backend="linuxmoto"
			_build_hq_scalers=no
			_mt32emu=no
			_vkeybd=yes
			_seq_midi=no
			_port_mk="backends/platform/linuxmoto/linuxmoto.mk"
			;;
		n64)
			append_var CXXFLAGS "-mno-extern-sdata"
			append_var CXXFLAGS "--param max-inline-insns-auto=20"
			append_var CXXFLAGS "-fomit-frame-pointer"
			append_var CXXFLAGS "-march=vr4300"
			append_var CXXFLAGS "-mtune=vr4300"
			append_var CXXFLAGS "-mhard-float"
			append_var LDFLAGS "-march=vr4300"
			append_var LDFLAGS "-mtune=vr4300"
			append_var LDFLAGS "-nodefaultlibs"
			append_var LDFLAGS "-nostartfiles"
			append_var LDFLAGS "-mno-crt0"
			append_var LDFLAGS "-L$N64SDK/hkz-libn64"
			append_var LDFLAGS "-L$N64SDK/lib"
			append_var LDFLAGS "-T n64ld_cpp.x -Xlinker -Map -Xlinker scummvm.map"
			_backend="n64"
			_mt32emu=no
			_build_scalers=no
			_savegame_timestamp=no
			_translation=no
			_keymapper=no
			_text_console=no
			_vkeybd=yes
			_dynamic_modules=no
			_plugins_default=static
			# Force use of libmad, libtremor and zlib
			_mad=no
			_tremor=yes
			_zlib=yes
			_port_mk="backends/platform/n64/n64.mk"
			;;
		neuros)
			append_var DEFINES "-DNEUROS"
			_backend='null'
			_build_hq_scalers=no
			_mt32emu=no
			;;
		openpandora)
			append_var DEFINES "-DOPENPANDORA"
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			if test "$_release_build" = no; then
				append_var DEFINES "-DOP_DEBUG"
			fi

			# Use -O3 on the OpenPandora for optimized builds.
			if test "$_optimizations" = yes; then
				_optimization_level=-O3
			fi

			append_var CXXFLAGS "-march=armv7-a"
			append_var CXXFLAGS "-mtune=cortex-a8"
			append_var CXXFLAGS "-mfloat-abi=softfp"
			append_var CXXFLAGS "-mfpu=neon"
			append_var CXXFLAGS "-fsingle-precision-constant"
			append_var ASFLAGS "-mfloat-abi=softfp"
			_backend="openpandora"
			_build_hq_scalers=yes
			_vkeybd=no
			_mt32emu=no
			_seq_midi=no
			_port_mk="backends/platform/openpandora/op-bundle.mk"
			;;
		ppc-amigaos)
			# PPC Linker requires this to fix relocation errors
			append_var CXXFLAGS "-mlongcall"

			# Only static builds link successfully on buildbot
			LDFLAGS=`echo $LDFLAGS | sed 's/-use-dynld//'`
			append_var LDFLAGS "-static"

			_port_mk="backends/platform/sdl/amigaos/amigaos.mk"
			;;
		ps2)
			append_var DEFINES "-DDISABLE_TEXT_CONSOLE"
			append_var DEFINES "-DDISABLE_COMMAND_LINE"
			append_var DEFINES "-DDISABLE_DOSBOX_OPL"
			append_var DEFINES "-DDISABLE_SID"
			append_var DEFINES "-DDISABLE_NES_APU"
			append_var CXXFLAGS "-fno-exceptions"
			append_var CXXFLAGS "-fno-rtti"
			_backend="ps2"
			_build_scalers=no
			_mt32emu=no
			_nuked_opl=no
			# HACK to enable mad & zlib (they are not properly detected due to linker issues).
			# This trick doesn't work for tremor right now, as the PS2 port the resulting library
			# libtremor, while our code later on expects it to be called libvorbisidec.
			# TODO: Enable tremor, e.g. by adding  -ltremor or by renaming the lib.
			# Disable this for older SDK as this breaks the build otherwise...
			if test -z "$PS2SDK_OLD" && test "$_tremor" = auto; then
				_tremor=yes
			fi
			_mad=yes
			_zlib=yes
			# HACK to fix compilation of C source files for now.
			add_line_to_config_mk 'CC := ee-gcc'
			add_line_to_config_mk 'CFLAGS := -std=c99 -W -Wno-unused-parameter -Wconversion -pedantic -G2 -s -O2 -Wuninitialized'
			# HACK to fix linking for now. It seems ee-g++ does not handle linking correctly.
			LD=ee-gcc

			if test "$_debug_build" = yes; then
				# TODO: Setup debug build properly
				append_var DEFINES "-D__PS2_DEBUG__"
				#append_var INCLUDES "-I$(PS2GDB)/ee"
				#append_var LDFLAGS "-L$(PS2GDB)/lib"
				append_var LDFLAGS "-lps2gdbStub"
				append_var LDFLAGS "-lps2ip"
				append_var LDFLAGS "-ldebug"
			else
				# If not building for debug mode, strip binaries.
				append_var CXXFLAGS "-s"
			fi
			;;
		ps3)
			_timidity=no
			_vkeybd=yes
			_eventrec=no
			_port_mk="backends/platform/sdl/ps3/ps3.mk"
			;;
		psp2)
			_backend="psp2"
			_vkeybd=yes
			_build_scalers=yes
			_build_hq_scalers=no
			_mt32emu=no
			_timidity=no
			_eventrec=no
			_port_mk="backends/platform/sdl/psp2/psp2.mk"
			;;
		psp)
			_backend="psp"
			_build_scalers=no
			_mt32emu=no
			_port_mk="backends/platform/psp/psp.mk"
			;;
		samsungtv)
			append_var DEFINES "-DSAMSUNGTV"
			append_var DEFINES "-DDISABLE_COMMAND_LINE"
			append_var ASFLAGS "-mfpu=vfp"
			HOSTEXEEXT=".so"
			_backend="samsungtv"
			_mt32emu=no
			_vkeybd=yes
			;;
		switch)
			_backend="switch"
			# Switch port crashes when switching between SDL2 and OpenGL
			# graphics. But OpenGL works when it is enabled from the start.
			# This might be related to a known crash on OpenGL de-init due
			# to the OpenGL implementation on this platform.
			_opengl_mode=gles2
			_vkeybd=yes
			_port_mk="backends/platform/sdl/switch/switch.mk"
			;;
		tizen)
			_unix=yes
			_backend="tizen"
			_port_mk="backends/platform/tizen/tizen.mk"
			_build_scalers=no
			_seq_midi=no
			_mt32emu=no
			_timidity=no
			_vkeybd=yes
			# Tizen relies on the OpenGL ES output thus we always enable it.
			_opengl_mode=gles
			;;
		trimui)
			_sysroot=`$CXX --print-sysroot`
			_sdlpath=$_sysroot/usr/bin
			append_var DEFINES "-DTRIMUI -DDINGUX -DGCW0"
			append_var DEFINES "-DDISABLE_DOSBOX_OPL"
			append_var DEFINES "-DREDUCE_MEMORY_USAGE"
			append_var CXXFLAGS "-msoft-float"
			_backend="dingux"
			_mt32emu=no
			_nuked_opl=no
			_optimization_level=-Ofast
			# Disable alsa midi to get the port build on OpenDingux toolchain
			_alsa=no
			# Disable cloud and SDL_Net due to outdated toolchain
			_cloud=no
			_sdlnet=no
			_libcurl=no
			_vkeybd=yes
			_build_hq_scalers=no
			_mad=yes
			_build_scalers=yes
			# Force disable vorbis on dingux, it has terrible performance compared to tremor
			_vorbis=no
			# Force disable seq on dingux, no way to use it and it would get enabled by default with configure
			_seq_midi=no
			_sdlconfig=sdl-config
			_savegame_timestamp=no
			_port_mk="backends/platform/dingux/dingux.mk"
			static_libs=''
			dynamic_libs=''
			;;
		webos)
			_backend="webos"
			_port_mk="backends/platform/webos/webos.mk"
			_build_scalers=yes
			_build_hq_scalers=no
			_timidity=no
			_mt32emu=no
			_seq_midi=no
			_vkeybd=no
			_keymapper=yes
			add_line_to_config_mk "HOST_COMPILER = `uname`"
			;;
		wii)
			_backend="wii"
			_build_scalers=no
			_vkeybd=yes
			_port_mk="backends/platform/wii/wii.mk"
			add_line_to_config_mk 'GAMECUBE = 0'
			add_line_to_config_h '#define AUDIO_REVERSE_STEREO'
			add_line_to_config_h "#define DEBUG_WII_USBGECKO"
			add_line_to_config_h "/* #define DEBUG_WII_MEMSTATS */"
			add_line_to_config_h "/* #define DEBUG_WII_GDB */"
			add_line_to_config_h "#define USE_WII_DI"
			add_line_to_config_h "#define USE_WII_SMB"
			add_line_to_config_h "#define USE_WII_KBD"
			;;
		*)
			echo "WARNING: Unknown target, continuing with auto-detected values"
			;;
	esac
fi

#
# Backend related stuff
#
case $_backend in
	3ds)
		;;
	android)
		append_var DEFINES "-DREDUCE_MEMORY_USAGE"
		append_var DEFINES "-DNONSTANDARD_PORT"
		append_var INCLUDES '-I$(srcdir)/backends/platform/android'
		append_var CXXFLAGS "-Wa,--noexecstack"
		append_var LDFLAGS "-Wl,-z,noexecstack"
		# removed the following directive - was causing compilation issues when not also explicitly using --disable-mt32emu
#		append_var INCLUDES "-isystem $ANDROID_NDK/sources/cxx-stl/system/include"
		_sdl=no
		if test "$_host" = ouya; then
			_sdlnet=no
		fi
		;;
	androidsdl)
		_sdl=auto
		;;
	dc)
		append_var INCLUDES '-I$(srcdir)/backends/platform/dc'
		append_var INCLUDES "-isystem $RONINDIR/include"
		append_var LDFLAGS "-Wl,-Ttext,0x8c010000"
		append_var LDFLAGS "-nostartfiles"
		append_var LDFLAGS "-L$RONINDIR/lib"
		append_var LDFLAGS "$RONINDIR/lib/crt0.o"
		# Enable serial debugging output only when --enable-debug is passed
		if test "$_release_build" = yes -o "$_debug_build" != yes; then
			append_var LIBS "-lronin-noserial -lm"
			append_var LDFLAGS "-lronin-noserial -lm"
		else
			append_var LIBS "-lronin -lm"
			append_var LDFLAGS "-lronin -lm"
		fi
		;;
	dingux | miyoo | trimui)
		append_var DEFINES "-DDINGUX"
		_sdl=auto
		;;
	ds)
		append_var INCLUDES '-I$(srcdir)/backends/platform/ds/arm9/source'
		append_var INCLUDES '-I$(srcdir)/backends/platform/ds/commoninclude'
		append_var INCLUDES '-Ibackends/platform/ds/arm9/data'
		;;
	gph)
		# On the GPH devices we want fancy themes but do not want the load/save thumbnail grid.
		append_var DEFINES "-DDISABLE_SAVELOADCHOOSER_GRID"
		append_var DEFINES "-DGPH_DEVICE"
		append_var DEFINES "-DREDUCE_MEMORY_USAGE"
		if test "$_debug_build" = yes; then
			append_var DEFINES "-DGPH_DEBUG"
		fi
		_sdl=auto
		;;
	iphone)
		append_var LIBS "-lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES"
		append_var LIBS "-framework QuartzCore -framework CoreFoundation -framework Foundation"
		append_var LIBS "-framework AudioToolbox -framework CoreAudio"
		;;
	ios7)
		append_var LIBS "-lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES"
		append_var LIBS "-framework QuartzCore -framework CoreFoundation -framework Foundation"
		append_var LIBS "-framework AudioToolbox -framework CoreAudio -framework SystemConfiguration "
		append_var LDFLAGS "-miphoneos-version-min=7.1 -arch armv7"
		append_var CFLAGS "-miphoneos-version-min=7.1 -arch armv7"
		append_var CXXFLAGS "-miphoneos-version-min=7.1 -arch armv7"
		if test -n "$SDKROOT"; then
			append_var LDFLAGS "-mlinker-version=134.9 -B/usr/local/bin/arm-apple-darwin11-"
			append_var CFLAGS "-isysroot $SDKROOT -F$SDKROOT/System/Library/Frameworks"
			append_var CXXFLAGS "-isysroot $SDKROOT -I$SDKROOT/usr/include/c++/4.2.1 -F$SDKROOT/System/Library/Frameworks"
		fi
		;;
	linuxmoto)
		append_var DEFINES "-DLINUXMOTO"
		_sdl=auto
		;;
	maemo)
		append_var DEFINES "-DMAEMO"
		_sdl=auto
		;;
	n64)
		append_var INCLUDES '-I$(N64SDK)/include'
		append_var INCLUDES '-I$(N64SDK)/mips64/include'
		append_var INCLUDES '-I$(N64SDK)/hkz-libn64'
		append_var INCLUDES '-I$(srcdir)/backends/platform/n64'
		append_var LIBS "-lpakfs -lframfs -ln64 -ln64utils -lromfs"
		append_var LIBS "-lm -lstdc++ -lz"
		;;
	null)
		append_var DEFINES "-DUSE_NULL_DRIVER"
		;;
	openpandora)
		_sdl=auto
		;;
	ps2)
		append_var DEFINES "-D_EE"
		append_var DEFINES "-DFORCE_RTL"
		append_var INCLUDES "-I$PS2SDK/ee/include"
		append_var INCLUDES "-I$PS2SDK/common/include"
		append_var INCLUDES "-I$PS2SDK/ports/include"
		if test "$_dynamic_modules" = no ; then
			append_var LDFLAGS "-mno-crt0"
			append_var LDFLAGS "$PS2SDK/ee/startup/crt0.o"
			append_var LDFLAGS "-T $PS2SDK/ee/startup/linkfile"
		fi
		append_var LDFLAGS "-L$PS2SDK/ee/lib"
		append_var LDFLAGS "-L$PS2SDK/ports/lib"
		if test -d "$PS2DEV/isjpcm"; then
			append_var INCLUDES "-I$PS2DEV/isjpcm/include"
			append_var LDFLAGS "-L$PS2DEV/isjpcm/lib"
		fi
		append_var LIBS "-lmc -lpad -lmouse -lhdd -lpoweroff -lsjpcm"
		append_var LIBS "-lm -lc -lfileXio -lkernel -lstdc++"
		;;
	psp)
		append_var DEFINES "-D__PSP__"
		append_var DEFINES "-DDISABLE_COMMAND_LINE"
		append_var DEFINES "-DDISABLE_DOSBOX_OPL"
		append_var LIBS "-lpng"
		append_var LIBS "-Wl,-Map,mapfile.txt"
		_nuked_opl=no
		;;
	psp2)
		append_var LIBS "-lvitashaders -lSDL2 -lvita2d_fbo -lSceCommonDialog_stub"
		append_var LIBS "-lSceSysmodule_stub -lSceDisplay_stub -lSceGxm_stub"
		append_var LIBS "-lSceAudio_stub -lSceCtrl_stub -lScePower_stub"
		append_var LIBS "-lSceNet_stub -lSceNetCtl_stub -lSceAppMgr_stub -lScePgf_stub"
		append_var LIBS "-lSceTouch_stub -lSceHid_stub"
		_sdl=yes
		_sdlversion=2.0.0
		append_var MODULES "backends/platform/sdl"
		append_var INCLUDES "-I$VITASDK/arm-vita-eabi/include/SDL2"
		;;
	samsungtv)
		append_var DEFINES "-DSAMSUNGTV"
		append_var LDFLAGS "-shared"
		append_var LDFLAGS "-fpic"
		_sdl=auto
		;;
	sdl)
		_sdl=auto
		;;
	switch)
		_sdl=auto
		append_var MODULES "backends/platform/sdl"
		;;
	tizen)
		# dirent.h not available. NONSTANDARD_PORT==ensure portdefs.h is included
		append_var DEFINES "-DTIZEN -DDISABLE_STDIO_FILESTREAM -DNONSTANDARD_PORT"
		append_var DEFINES "-DNO_STDERR_STDOUT"
		append_var DEFINES "-DDISABLE_COMMAND_LINE"
		append_var INCLUDES '-I$(srcdir)/backends/platform/tizen'
		append_var INCLUDES '-I$(TIZEN_ROOTSTRAP)/usr/include'
		append_var INCLUDES '-I$(TIZEN_ROOTSTRAP)/usr/include/osp'
		if test "$_debug_build" = yes; then
			append_var CXXFLAGS "-D_DEBUG -DBUILD_DLL -O0 -g3"
		fi
		# created a shared library for inclusion via the eclipse build
		append_var CXXFLAGS "-Wno-psabi"
		append_var CXXFLAGS "--sysroot=${TIZEN_ROOTSTRAP}"
		append_var CXXFLAGS "-fmessage-length=0"
		append_var CXXFLAGS "-fPIC"
		HOSTEXEPRE=lib
		HOSTEXEEXT=.a
		;;
	webos)
		# There is no sdl-config in the WebOS PDK so we don't use find_sdlconfig here.
		# The PDL library acts as the WebOS device toolchain, and is required to control the virtual keyboard among other OS-level events.
		append_var LIBS "-lSDL -lpdl"
		append_var DEFINES "-DWEBOS"
		append_var MODULES "backends/platform/sdl"
		_sdl=yes
		_sdlversion=1.2.0
		;;
	wii)
		append_var DEFINES "-D__WII__"
		append_var DEFINES "-DGEKKO"
		case $_host_os in
		gamecube)
			append_var LIBS "-lgxflux -liso9660 -lfat -logc -ldb"
			;;
		*)
			append_var LIBS "-lgxflux -ldi -liso9660 -ltinysmb -lfat -lwiiuse -lbte -logc -lwiikeyboard -ldb"
			;;
		esac
		;;
	*)
		echo "support for $_backend backend not implemented in configure script yet"
		exit 1
		;;
esac
append_var MODULES "backends/platform/$_backend"

#
# Check for pkg-config
#
echocheck "pkg-config"
_pkg_config=no
command -v $_pkgconfig >/dev/null 2>&1 && _pkg_config=yes
echo "$_pkg_config"

if test "$_pkg_config" = yes && test -n "$_host" && test -z "$PKG_CONFIG_LIBDIR"; then
	echo "WARNING: When cross-compiling PKG_CONFIG_LIBDIR must be set to the location of the .pc files for the target"
fi

#
# Setup SDL specifics for SDL based backends
#
if test "$_sdl" = auto ; then
	find_sdlconfig
	append_var SDL_CFLAGS "`$_sdlconfig --prefix="$_sdlpath" --cflags`"
	if test "$_static_build" = yes ; then
		append_var SDL_LIBS "`$_sdlconfig --prefix="$_sdlpath" --static-libs`"
	else
		append_var SDL_LIBS "`$_sdlconfig --prefix="$_sdlpath" --libs`"
	fi
	_sdlversion=`$_sdlconfig --version`

	echocheck "SDL"
	_sdl=no
	cat > $TMPC << EOF
#include "SDL.h"
int main(int argc, char *argv[]) { SDL_Init(0); return 0; }
EOF
	cc_check $LIBS $SDL_LIBS $INCLUDES $SDL_CFLAGS && _sdl=yes
	echo "$_sdl"
	if test "$_sdl" = no ; then
		exit 1
	fi
fi

_sdlMajorVersionNumber=0
if test "$_sdl" = yes ; then
	append_var DEFINES "-DSDL_BACKEND"
	add_line_to_config_mk "SDL_BACKEND = 1"
	append_var INCLUDES "$SDL_CFLAGS"
	append_var LIBS "$SDL_LIBS"
	case $_sdlversion in
		2.0.*)
			add_line_to_config_mk "USE_SDL2 = 1"
			_sdlMajorVersionNumber=2
			;;
		*)
			_sdlMajorVersionNumber=1
			;;
	esac
fi

#
# Some platforms (eg. Android, iOS) may use an edited version
# of SDL-net or SDL2-net that does not require SDL or SDL2 respectively
#
if test "$_sdlnet" = auto ; then
	# If SDL2 was detected, then test for SDL2_net exclusively
	# If SDL was detected, then test for SDL_net exclusively
	# If neither SDL nor SDL2 detected, then test for both (SDL2_net success takes priority)
	set_var SDL2_NET_LIBS   "$SDL_NET_LIBS"
	set_var SDL2_NET_CFLAGS "$SDL_NET_CFLAGS"
	set_var SDL1_NET_LIBS   "$SDL_NET_LIBS"
	set_var SDL1_NET_CFLAGS "$SDL_NET_CFLAGS"

	if test "$_sdl" = no || test "$_sdlMajorVersionNumber" = 2; then
		if test "$_pkg_config" = "yes" && $_pkgconfig --exists SDL2_net; then
			append_var SDL2_NET_LIBS "`$_pkgconfig --libs SDL2_net`"
			append_var SDL2_NET_CFLAGS "`$_pkgconfig --cflags SDL2_net`"
		else
			append_var SDL2_NET_LIBS "-lSDL2_net"
		fi
	fi

	if test "$_sdl" = no || test "$_sdlMajorVersionNumber" = 1; then
		if test "$_pkg_config" = "yes" && $_pkgconfig --exists SDL_net; then
			append_var SDL1_NET_LIBS "`$_pkgconfig --libs SDL_net`"
			append_var SDL1_NET_CFLAGS "`$_pkgconfig --cflags SDL_net`"
		else
			append_var SDL1_NET_LIBS "-lSDL_net"
		fi
	fi

	# Check for SDL_Net
	echocheck "SDL_Net"
	_sdlnet=no
	cat > $TMPC << EOF
#include "SDL_net.h"
int main(int argc, char *argv[]) { SDLNet_Init(); return 0; }
EOF

	cc_check $SDL2_NET_LIBS $LIBS $INCLUDES $SDL2_NET_CFLAGS && _sdlnet=yes
	if test "$_sdlnet" = yes ; then
		set_var SDL_NET_LIBS   "$SDL2_NET_LIBS"
		set_var SDL_NET_CFLAGS "$SDL2_NET_CFLAGS"
	else
		cat > $TMPC << EOF
#include "SDL_net.h"
int main(int argc, char *argv[]) { SDLNet_Init(); return 0; }
EOF
		cc_check $SDL1_NET_LIBS $LIBS $INCLUDES $SDL1_NET_CFLAGS && _sdlnet=yes
		set_var SDL_NET_LIBS   "$SDL1_NET_LIBS"
		set_var SDL_NET_CFLAGS "$SDL1_NET_CFLAGS"
	fi

	if test "$_sdlnet" = yes ; then
		# Some platforms require SDL to be after SDL_Net, thus we prepend var
		prepend_var LIBS "$SDL_NET_LIBS"
		append_var INCLUDES "$SDL_NET_CFLAGS"
	fi
	define_in_config_if_yes "$_sdlnet" 'USE_SDL_NET'
	echo "$_sdlnet"
fi


#
# Enable 16bit support only for backends which support it
#
case $_backend in
	3ds | android | androidsdl | dingux | miyoo | dc | gph | iphone | ios7 | maemo | openpandora | psp | psp2 | samsungtv | sdl | switch | tizen | trimui | webos | wii)
		if test "$_16bit" = auto ; then
			_16bit=yes
		else
			_16bit=no
		fi
		;;
	*)
		_16bit=no
		;;
esac

#
# Enable High resolution engines (>320x240) support only for backends which support it
#
case $_host in
	ds)
		if test "$_highres" = yes ; then
			_highres=yes
		else
			_highres=no
		fi
		;;
	*)
		if test "$_highres" = no ; then
			_highres=no
		else
			_highres=yes
		fi
		;;
esac

#
# Enable Event Recorder only for backends that support it
#
case $_backend in
	sdl)
		if test "$_eventrec" = auto ; then
			_eventrec=yes
		fi
		;;
	*)
		_eventrec=no
		;;
esac

#
# Disable savegame timestamp support for backends which don't have a reliable real time clock
#
case $_backend in
	gph | n64)
		if test "$_savegame_timestamp" = auto ; then
			_savegame_timestamp=no
		else
			_savegame_timestamp=yes
		fi
		;;
	*)
		if test "$_savegame_timestamp" = auto ; then
			_savegame_timestamp=yes
		else
			_savegame_timestamp=no
		fi
		;;
esac

#
# Determine whether host is POSIX compliant, or at least POSIX
# compatible enough to support our POSIX code (including dlsym(),
# mkdir() and some other APIs).
#
# TODO: Instead of basing this on the host name, we should really base
# this on the presence of features (such as the dlsym and mkdir APIs).
#
echo_n "Checking if host is POSIX compliant... "
case $_host_os in
	amigaos* | cygwin* | dreamcast | ds | gamecube | mingw* | n64 | ps2 | ps3 | psp2 | psp | riscos | wii)
		_posix=no
		;;
	3ds | android | androidsdl | beos* | bsd* | darwin* | freebsd* | gnu* | gph-linux | haiku* | hpux* | iphone | ios7 | irix*| k*bsd*-gnu* | linux* | maemo | mint* | netbsd* | openbsd* | solaris* | sunos* | switch | uclinux* | webos)
		_posix=yes
		;;
	os2-emx*)
		_posix=yes	# FIXME: Really???
		;;
	*)
		# given this is a shell script, we might assume some type of posix.
		# However, the host system might be a totally different one, so
		# we can assume nothing about it.
		# Indeed, as mentioned further above, we really should test for the
		# presences of relevant APIs on the host anyway...
		_posix=no
		;;
esac
echo $_posix

if test "$_posix" = yes ; then
	append_var DEFINES "-DPOSIX"
	add_line_to_config_mk 'POSIX = 1'

	echo_n "Checking if posix_spawn is supported... "
		cat > $TMPC << EOF
#include <spawn.h>
int main(void) { return posix_spawn(0, 0, 0, 0, 0, 0); }
EOF
	cc_check && _has_posix_spawn=yes
	echo $_has_posix_spawn
	if test "$_has_posix_spawn" = yes ; then
		append_var DEFINES "-DHAS_POSIX_SPAWN"
	fi
fi

#
# Check whether to enable a verbose build
#
echo_n "Checking whether to have a verbose build... "
echo "$_verbose_build"
add_to_config_mk_if_yes "$_verbose_build" 'VERBOSE_BUILD = 1'


#
# If a specific optimization level was requested, enable optimizations
#
if test -n "$_optimization_level" ; then
	# Ports will specify an optimization level and expect that to be enabled
	if test "$_optimizations" != no ; then
		_optimizations=yes
	fi
else
	_optimization_level=$_default_optimization_level
fi

#
# Check whether to enable optimizations
#
if test "$_optimizations" = yes ; then
	# Enable optimizations. This also
	# makes it possible to use -Wuninitialized, so let's do that.
	append_var CXXFLAGS "$_optimization_level"
	append_var CXXFLAGS "-Wuninitialized"
fi

#
# Check whether plugin support is requested and possible
#
echo_n "Checking whether building plugins was requested... "
echo "$_dynamic_modules"
_mak_plugins=

if test "$_dynamic_modules" = yes ; then
	echo_n "Checking whether building plugins is supported... "
	case $_host_os in
	3ds)
		_elf_loader=yes
		append_var DEFINES "-DUNCACHED_PLUGINS"
_mak_plugins='
PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/3ds/plugin.ld -march=armv6k -mfloat-abi=hard
'
		;;
	amigaos)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fPIC"
		append_var LIBS "-use-dynld"
_mak_plugins='
PLUGIN_EXTRA_DEPS =
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	android)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fpic"
		append_var LIBS "-ldl"
# Work around an Android 2.0+ run-time linker bug:
# The linker doesn't actually look in previously
# loaded libraries when trying to resolve symbols -
# effectively turning all dlopen(RTLD_GLOBAL) calls
# into dlopen(RTLD_LOCAL).  It *does* look in
# DT_NEEDED libraries, so the workaround is to add an
# (otherwise unnecessary) dependency from plugins back
# to the main libscummvm.so.
_mak_plugins='
PLUGIN_EXTRA_DEPS = libscummvm.so
PLUGIN_LDFLAGS  += $(LDFLAGS) -L. -lscummvm
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	darwin*)
		_plugin_prefix=""
		_plugin_suffix=".plugin"
		append_var LIBS "-ldl"
_mak_plugins='
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
PLUGIN_LDFLAGS  += -bundle -bundle_loader $(EXECUTABLE) -exported_symbols_list "$(srcdir)/plugin.exp"
PRE_OBJS_FLAGS  := -all_load
POST_OBJS_FLAGS :=
'
		;;
	dreamcast)
		_plugin_prefix=""
		_plugin_suffix=".plg"
_mak_plugins='
PLUGIN_EXTRA_DEPS	= $(abspath $(srcdir)/backends/platform/dc/plugin.x $(srcdir)/backends/platform/dc/plugin.syms) $(EXECUTABLE) backends/platform/dc/plugin_head.o
PLUGIN_LDFLAGS		= -ml -m4-single-only -nostartfiles -Wl,-q,-T$(srcdir)/backends/platform/dc/plugin.x,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/platform/dc/plugin.syms backends/platform/dc/plugin_head.o
PRE_OBJS_FLAGS		:= -Wl,--whole-archive
POST_OBJS_FLAGS		:= -Wl,--no-whole-archive
'
		;;
	ds)
		_elf_loader=yes
		append_var DEFINES "-DELF_LOADER_CXA_ATEXIT"
		append_var DEFINES "-DUNCACHED_PLUGINS"
		append_var DEFINES "-DELF_NO_MEM_MANAGER"
_mak_plugins='
PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/ds/plugin.ld -mthumb-interwork -mfloat-abi=soft
'
		;;
	freebsd*)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fPIC"
_mak_plugins='
PLUGIN_EXTRA_DEPS =
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	gamecube | wii)
		_elf_loader=yes
		append_var DEFINES "-DELF_LOADER_CXA_ATEXIT"
		append_var DEFINES "-DUNCACHED_PLUGINS"
_mak_plugins='
PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/wii/plugin.ld
'
		;;
	gph*)
		_plugin_prefix=""
		_plugin_suffix=".plugin"
		append_var CXXFLAGS "-fpic"
		append_var LIBS "-ldl"
_mak_plugins='
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	irix*)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fpic"
		append_var LIBS "-ldl"
_mak_plugins='
PLUGIN_EXTRA_DEPS =
PLUGIN_LDFLAGS  += -shared -static-libgcc
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;

	linux* | gnu* | k*bsd*-gnu*)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fPIC"
		append_var LIBS "-ldl"
_mak_plugins='
PLUGIN_EXTRA_DEPS =
PLUGIN_LDFLAGS  += -shared
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	*mingw32* | mingw64)
		_plugin_prefix=""
		_plugin_suffix=".dll"
_mak_plugins='
PLUGIN_EXTRA_DEPS	= $(EXECUTABLE)
PLUGIN_LDFLAGS		:= -Wl,--enable-auto-import -shared ./libscummvm.a
PRE_OBJS_FLAGS		:= -Wl,--whole-archive
POST_OBJS_FLAGS		:= -Wl,--export-all-symbols -Wl,--no-whole-archive -Wl,--out-implib,./libscummvm.a
'
		;;
	ps2)
		_elf_loader=yes
		append_var DEFINES "-DUNCACHED_PLUGINS"
_mak_plugins='
LDFLAGS         += -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backends/plugins/ps2/main_prog.ld
PLUGIN_LDFLAGS  += -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backends/plugins/ps2/plugin.ld -lstdc++ -lc
'
		;;
	psp)
		_elf_loader=yes
		append_var DEFINES "-DUNCACHED_PLUGINS"
_mak_plugins='
LDFLAGS				+= -Wl,-T$(srcdir)/backends/plugins/psp/main_prog.ld
PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/psp/plugin.ld -lstdc++ -lc
'
		;;
	webos)
		_plugin_prefix="lib"
		_plugin_suffix=".so"
		append_var CXXFLAGS "-fpic"
		append_var LIBS "-ldl"
_mak_plugins='
PLUGIN_EXTRA_DEPS =
PLUGIN_LDFLAGS  += -shared $(LDFLAGS)
PRE_OBJS_FLAGS  := -Wl,-export-dynamic -Wl,-whole-archive
POST_OBJS_FLAGS := -Wl,-no-whole-archive
'
		;;
	*)
		_dynamic_modules=no
		_mak_plugins=
		;;
	esac
	echo "$_dynamic_modules"
fi

#
# Check whether integrated ELF loader support is requested
#
define_in_config_if_yes "$_elf_loader" 'USE_ELF_LOADER'

if test "$_elf_loader" = yes; then
	_plugin_prefix=""
	_plugin_suffix=".plg"
	_mak_plugins='
PLUGIN_EXTRA_DEPS	= $(EXECUTABLE)
PLUGIN_LDFLAGS		= -nostartfiles backends/plugins/elf/version.o -Wl,-q,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/plugins/elf/plugin.syms
PRE_OBJS_FLAGS		:= -Wl,--whole-archive
POST_OBJS_FLAGS		:= -Wl,--no-whole-archive
'"$_mak_plugins"
fi

#
# Set up some common plugin settings in config.h and config.mk, if enabled
#
define_in_config_if_yes "$_dynamic_modules" 'DYNAMIC_MODULES'

if test "$_dynamic_modules" = yes ; then
	add_line_to_config_h "#define PLUGIN_PREFIX	\"$_plugin_prefix\""
	add_line_to_config_h "#define PLUGIN_SUFFIX	\"$_plugin_suffix\""
	add_line_to_config_mk "PLUGIN_PREFIX := $_plugin_prefix"
	add_line_to_config_mk "PLUGIN_SUFFIX := $_plugin_suffix"
fi


#
# Check whether integrated MT-32 emulator support is requested
#
define_in_config_if_yes "$_mt32emu" 'USE_MT32EMU'

#
# Check whether Lua support is requested
#
define_in_config_if_yes "$_lua" 'USE_LUA'

#
# Check whether Nuked OPL emulator support is disabled
#
define_in_config_if_no "$_nuked_opl" 'DISABLE_NUKED_OPL'

#
# Check whether 16bit color support is requested
#
define_in_config_if_yes "$_16bit" 'USE_RGB_COLOR'

#
# Check whether High resolution graphics support is requested
#
define_in_config_if_yes "$_highres" 'USE_HIGHRES'

#
# Check whether save games use the current time as default description
#
define_in_config_if_yes "$_savegame_timestamp" 'USE_SAVEGAME_TIMESTAMP'

#
# Check whether to enable the (hq) scalers
#
if test "$_build_scalers" = no ; then
	_build_hq_scalers=no
fi
define_in_config_if_yes "$_build_scalers" 'USE_SCALERS'

define_in_config_if_yes "$_build_hq_scalers" 'USE_HQ_SCALERS'

#
# Check for math lib
#
cat > $TMPC << EOF
int main(void) { return 0; }
EOF
cc_check -lm && append_var LIBS "-lm"

#
# Check for Ogg
#
echocheck "Ogg"
if test "$_ogg" = auto ; then
	_ogg=no
	cat > $TMPC << EOF
#include <ogg/ogg.h>
int main(void) { return 0; }
EOF
	cc_check $OGG_CFLAGS $OGG_LIBS -logg && _ogg=yes
fi
define_in_config_if_yes "$_ogg" 'USE_OGG'
echo "$_ogg"
#
# Check for TTS
#
echocheck "TTS libraries"
if test "$_tts" = auto ; then
	_tts=no
	case $_host_os in
		mingw*)
			cat > $TMPC << EOF
#include <windows.h>
#include <Servprov.h>
#include <sapi.h>
int main(void) { return 0; }
EOF
			cc_check -lsapi -lole32 && _tts=yes
			;;
		linux*)
			cat > $TMPC << EOF
#include <speech-dispatcher/libspeechd.h>
int main(void) { return 0; }
EOF
			cc_check -lspeechd && _tts=yes
			;;
		darwin*)
			# Check the API is available. The most recent API we need is for the NSSpeechSynthesizerDelegate protocole
			cat > $TMPC << EOF
#include <AppKit/NSSpeechSynthesizer.h>
@interface SpeechDelegate : NSObject<NSSpeechSynthesizerDelegate> {
}
@end
int main(void) { return 0; }
EOF
			cc_check -ObjC++ -lobjc && _tts=yes
			;;
	esac
fi
echo "$_tts"

#
# Check for Vorbis
#
echocheck "Vorbis"
if test "$_vorbis" = auto ; then
	_vorbis=no
	cat > $TMPC << EOF
#include <vorbis/codec.h>
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
EOF
	if test "$_ogg" = yes ; then
		cc_check $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \
			-lvorbisfile -lvorbis -logg && _vorbis=yes
	else
		cc_check $VORBIS_CFLAGS $VORBIS_LIBS \
			-lvorbisfile -lvorbis && _vorbis=yes
	fi
fi
if test "$_vorbis" = yes ; then
	append_var LIBS "$VORBIS_LIBS -lvorbisfile -lvorbis"
	append_var INCLUDES "$VORBIS_CFLAGS"
fi
define_in_config_if_yes "$_vorbis" 'USE_VORBIS'
echo "$_vorbis"

#
# Check for Tremor
#
echocheck "Tremor"
if test "$_tremolo" = yes ; then
	_tremor=yes
fi

if test "$_tremor" = auto ; then
	_tremor=no
	cat > $TMPC << EOF
#include <tremor/ivorbiscodec.h>
int main(void) { vorbis_info_init(0); return 0; }
EOF
	if test "$_ogg" = yes ; then
		cc_check $TREMOR_CFLAGS $TREMOR_LIBS $OGG_CFLAGS $OGG_LIBS \
			-lvorbisidec -logg && _tremor=yes
	else
		cc_check $TREMOR_CFLAGS $TREMOR_LIBS -lvorbisidec && \
		_tremor=yes
	fi
fi
if test "$_tremor" = yes && test "$_vorbis" = no; then
	add_line_to_config_h '#define USE_TREMOR'
	add_line_to_config_h '#define USE_VORBIS'
	if test "$_tremolo" = yes ; then
		add_line_to_config_h '#define USE_TREMOLO'
		append_var LIBS "$TREMOR_LIBS -ltremolo"
	elif test "$_host" = ps2 ; then
		LIBS="-ltremor $LIBS"
	else
		append_var LIBS "$TREMOR_LIBS -lvorbisidec"
	fi
	append_var INCLUDES "$TREMOR_CFLAGS"
else
	if test "$_vorbis" = yes; then
		_tremor="no (Vorbis/Tremor support is mutually exclusive)"
	fi
	add_line_to_config_h '#undef USE_TREMOR'
fi
add_to_config_mk_if_yes "$_tremor" 'USE_TREMOR = 1'
echo "$_tremor"

#
# Check for IEEE1284 for OPL2lPT
#
echocheck "OPL2LPT"
if test "$_opl2lpt" = yes ; then
	_opl2lpt=no
	cat > $TMPC << EOF
#include <ieee1284.h>
struct parport_list parports;
int main(void) { ieee1284_find_ports(&parports, 0); return 0; }
EOF
	cc_check $IEEE1284_CFLAGS $IEEE1284_LIBS -lieee1284 && \
	_opl2lpt=yes
fi
if test "$_opl2lpt" = yes; then
	append_var LIBS "$IEEE1284_LIBS -lieee1284"
	append_var INCLUDES "$IEEE1284_CFLAGS"
fi
define_in_config_if_yes "$_opl2lpt" 'ENABLE_OPL2LPT'
echo "$_opl2lpt"

#
# Check for FLAC
#
echocheck "FLAC >= 1.0.1"
if test "$_flac" = auto ; then
	_flac=no
	cat > $TMPC << EOF
#include <FLAC/stream_decoder.h>
#include <FLAC/format.h>
int main(void) {
	FLAC__StreamDecoder *decoder = FLAC__stream_decoder_new();
	FLAC__stream_decoder_delete(decoder);
	return FLAC__STREAM_SYNC_LEN >> 30; /* guaranteed to be 0 */
}
EOF
	if test "$_ogg" = yes ; then
		cc_check $FLAC_CFLAGS $FLAC_LIBS $OGG_CFLAGS $OGG_LIBS \
			-lFLAC -logg && _flac=yes
	else
		cc_check $FLAC_CFLAGS $FLAC_LIBS \
			-lFLAC && _flac=yes
	fi
fi
if test "$_flac" = yes ; then
	append_var LIBS "$FLAC_LIBS -lFLAC"
	append_var INCLUDES "$FLAC_CFLAGS"
fi
define_in_config_if_yes "$_flac" 'USE_FLAC'
echo "$_flac"

# Add the link to ogg only after vorbis, tremor and flac as it might be used by those.
if test "$_ogg" = yes ; then
	append_var LIBS "$OGG_LIBS -logg"
	append_var INCLUDES "$OGG_CFLAGS"
fi

#
# Check for MAD (MP3 library)
#
echocheck "MAD"
if test "$_mad" = auto ; then
	_mad=no
	cat > $TMPC << EOF
#include <mad.h>
int main(void) { return 0; }
EOF
	cc_check $MAD_CFLAGS $MAD_LIBS -lmad && _mad=yes
fi
if test "$_mad" = yes ; then
	append_var LIBS "$MAD_LIBS -lmad"
	append_var INCLUDES "$MAD_CFLAGS"
fi
define_in_config_if_yes "$_mad" 'USE_MAD'
echo "$_mad"

#
# Check for ALSA
#
echocheck "ALSA >= 0.9"
if test "$_alsa" = auto ; then
	_alsa=no
	cat > $TMPC << EOF
#include <alsa/asoundlib.h>
int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); }
EOF
	cc_check $ALSA_CFLAGS $ALSA_LIBS -lasound && _alsa=yes
fi
if test "$_alsa" = yes ; then
	append_var LIBS "$ALSA_LIBS -lasound"
	append_var INCLUDES "$ALSA_CFLAGS"
fi
define_in_config_if_yes "$_alsa" 'USE_ALSA'
echo "$_alsa"

#
# Check for libjpeg
#
echocheck "libjpeg >= v6b"
if test "$_jpeg" = auto ; then
	_jpeg=no
	cat > $TMPC << EOF
#include <stdio.h>
#include <jpeglib.h>
int main(void) {
#if JPEG_LIB_VERSION >= 62
#else
  syntax error
#endif
  return 0;
}
EOF
	cc_check $JPEG_CFLAGS $JPEG_LIBS -ljpeg && _jpeg=yes
fi
if test "$_jpeg" = yes ; then
	append_var LIBS "$JPEG_LIBS -ljpeg"
	append_var INCLUDES "$JPEG_CFLAGS"
fi
define_in_config_if_yes "$_jpeg" 'USE_JPEG'
echo "$_jpeg"

#
# Check for PNG
#
echocheck "PNG >= 1.2.8"
if test "$_pkg_config" = "yes" && $_pkgconfig --exists libpng; then
	append_var PNG_LIBS "`$_pkgconfig --libs libpng`"
	append_var PNG_CFLAGS "`$_pkgconfig --cflags libpng`"
else
	append_var PNG_LIBS "-lpng -lz"
fi
if test "$_png" = auto ; then
	_png=no
	cat > $TMPC << EOF
#include <png.h>
int main(void) {
#if PNG_LIBPNG_VER >= 10208
#else
  syntax error
#endif
  return 0;
}
EOF
	cc_check $PNG_CFLAGS $PNG_LIBS && _png=yes
fi
if test "$_png" = yes ; then
	append_var LIBS "$PNG_LIBS"
	append_var INCLUDES "$PNG_CFLAGS"
fi
define_in_config_if_yes "$_png" 'USE_PNG'
echo "$_png"

#
# Check for Theora Decoder
#
echocheck "libtheoradec >= 1.0"
if test "$_vorbis" = no && test "$_tremor" = no ; then
	echo "skipping. no vorbis"
	_theoradec=notsupported
fi
if test "$_theoradec" = auto ; then
	_theoradec=no
	cat > $TMPC << EOF
#include <theora/theoradec.h>
int main(void) { th_ycbcr_buffer yuv; th_decode_ycbcr_out(NULL, yuv);  }
EOF
	cc_check $THEORADEC_CFLAGS $THEORADEC_LIBS -ltheoradec && _theoradec=yes
fi
if test "$_theoradec" = yes ; then
	append_var LIBS "$THEORADEC_LIBS -ltheoradec"
	append_var INCLUDES "$THEORADEC_CFLAGS"
fi
define_in_config_if_yes "$_theoradec" 'USE_THEORADEC'
if test ! "$_theoradec" = notsupported ; then
	echo "$_theoradec"
fi

#
# Check for the AAC decoder
#
echocheck "libfaad"
if test "$_faad" = auto ; then
	_faad=no
	cat > $TMPC << EOF
#include <neaacdec.h>
int main(void) { NeAACDecGetCapabilities(); return 0; }
EOF
	cc_check $FAAD_CFLAGS $FAAD_LIBS -lfaad && _faad=yes
fi
if test "$_faad" = yes ; then
	append_var LIBS "$FAAD_LIBS -lfaad"
	append_var INCLUDES "$FAAD_CFLAGS"
fi
define_in_config_if_yes "$_faad" 'USE_FAAD'
echo "$_faad"

#
# Check for SEQ MIDI
#
echocheck "SEQ MIDI"
if test "$_seq_midi" = auto ; then
	# TODO: Test for /dev/sequencer presence? Or maybe just for /dev ?
	# For now, we just always enable it when "posix" mode is on (backends
	# that do not want it can disable it by setting _seq_midi=no).
	_seq_midi="$_posix"
fi
define_in_config_h_if_yes "$_seq_midi" 'USE_SEQ_MIDI'
echo "$_seq_midi"

#
# Check for sndio
#
echocheck "sndio"
if test "$_sndio" = auto ; then
	_sndio=no
	cat > $TMPC << EOF
#include <sndio.h>
int main(void) { struct sio_par par; sio_initpar(&par); return 0; }
EOF
	cc_check $SNDIO_CFLAGS $SNDIO_LIBS -lsndio && _sndio=yes
fi
if test "$_sndio" = yes ; then
	append_var LIBS "$SNDIO_LIBS -lsndio"
	append_var INCLUDES "$SNDIO_CFLAGS"
fi
define_in_config_h_if_yes "$_sndio" 'USE_SNDIO'
echo "$_sndio"

#
# Check for TiMidity(++)
#
echocheck "TiMidity"
if test "$_timidity" = auto ; then
	# TODO: Is there a good possibility of auto detecting whether we
	# should include TiMidity support? It can only be used on Unix
	# currently so we use that as "detection" for now.
	_timidity="$_posix"
fi
define_in_config_h_if_yes "$_timidity" 'USE_TIMIDITY'
echo "$_timidity"

#
# Check for ZLib
#
echocheck "zlib"
if test "$_zlib" = auto ; then
	_zlib=no
	cat > $TMPC << EOF
#include <string.h>
#include <zlib.h>
int main(void) { return strcmp(ZLIB_VERSION, zlibVersion()); }
EOF
	cc_check $ZLIB_CFLAGS $ZLIB_LIBS -lz && _zlib=yes
fi
if test "$_zlib" = yes ; then
	append_var ZLIB_LIBS "-lz"
	append_var LIBS "$ZLIB_LIBS"
	append_var INCLUDES "$ZLIB_CFLAGS"
fi
define_in_config_if_yes "$_zlib" 'USE_ZLIB'
echo "$_zlib"

#
# Check for LibMPEG2
#
echocheck "libmpeg2 >= 0.4.0"
if test "$_mpeg2" = auto ; then
	_mpeg2=no
	cat > $TMPC << EOF
typedef signed $type_1_byte int8_t;
typedef signed $type_2_byte int16_t;
typedef signed $type_4_byte int32_t;

typedef unsigned $type_1_byte uint8_t;
typedef unsigned $type_2_byte uint16_t;
typedef unsigned $type_4_byte uint32_t;

extern "C" {
#include <mpeg2dec/mpeg2.h>
}

int main(void) {
	#if MPEG2_RELEASE < MPEG2_VERSION(0, 4, 0)
	#error libmpeg2 version too low
	#endif

	/* mpeg2_state_t first appears in 0.4.0 */
	mpeg2_state_t state;

	return 0;
}
EOF

	if test -n "$_host"; then
		# don't execute while cross compiling
		cc_check $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && _mpeg2=yes
	else
		cc_check_no_clean $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && $TMPO$HOSTEXEEXT && _mpeg2=yes
		cc_check_clean
	fi
fi
if test "$_mpeg2" = yes ; then
	append_var INCLUDES "$MPEG2_CFLAGS"
	append_var LIBS "$MPEG2_LIBS -lmpeg2"
fi
define_in_config_if_yes "$_mpeg2" 'USE_MPEG2'
echo "$_mpeg2"

#
# Check for liba52
#
echocheck "liba52"
if test "$_a52" = auto ; then
	_a52=no
	cat > $TMPC << EOF
typedef signed $type_1_byte int8_t;
typedef signed $type_2_byte int16_t;
typedef signed $type_4_byte int32_t;

typedef unsigned $type_1_byte uint8_t;
typedef unsigned $type_2_byte uint16_t;
typedef unsigned $type_4_byte uint32_t;

extern "C" {
#include <a52dec/a52.h>
}

int main(void) {
	a52_state_t *state = a52_init(0);
	a52_free(state);
	return 0;
}
EOF

	if test -n "$_host"; then
		# don't execute while cross compiling
		cc_check $A52_CFLAGS $A52_LIBS -la52 && _a52=yes
	else
		cc_check_no_clean $A52_CFLAGS $A52_LIBS -la52 && $TMPO$HOSTEXEEXT && _a52=yes
		cc_check_clean
	fi
fi
if test "$_a52" = yes ; then
	INCLUDES="$INCLUDES $A52_FLAGS"
	LIBS="$LIBS $A52_LIBS -la52"
fi
define_in_config_if_yes "$_a52" 'USE_A52'
echo "$_a52"

#
# Check for Sparkle if updates support is enabled
#
case $_host_os in
	darwin*)
		echocheck "Sparkle"
		if test "$_updates" = no; then
			_sparkle=no
		else
			if test -z $_sparklepath; then
				_sparklepath=/Library/Frameworks
			fi
			SPARKLE_CFLAGS="-F$_sparklepath"
			SPARKLE_LIBS="-F$_sparklepath"
			if test "$_sparkle" = auto ; then
				_sparkle=no
				cat > $TMPC << EOF
#include <Cocoa/Cocoa.h>
#include <Sparkle/Sparkle.h>
int main(void) { SUUpdater *updater = [SUUpdater sharedUpdater]; return 0; }
EOF
				cc_check $SPARKLE_CFLAGS $SPARKLE_LIBS -framework Sparkle -ObjC++ -lobjc && _sparkle=yes
			fi
			if test "$_sparkle" = yes ; then
				append_var LIBS "$SPARKLE_LIBS -framework Sparkle"
				append_var INCLUDES "$SPARKLE_CFLAGS"
			fi
			define_in_config_if_yes "$_sparkle" 'USE_SPARKLE'
		fi
		echo "$_sparkle"
	;;
	mingw*)
		echocheck "Sparkle"
		if test "$_updates" = no; then
			_sparkle=no
		else
			if test ! -z $_sparklepath ; then
				SPARKLE_CFLAGS="-I$_sparklepath/include"
				SPARKLE_LIBS="-L$_sparklepath/Release -L$_sparklepath/x64/Release"
			fi
			if test "$_sparkle" = auto ; then
				_sparkle=no
				cat > $TMPC << EOF
#include <winsparkle.h>
int main(void) { win_sparkle_get_update_check_interval(); return 0; }
EOF
				cc_check $SPARKLE_CFLAGS $SPARKLE_LIBS -lWinSparkle && _sparkle=yes
			fi
			if test "$_sparkle" = yes ; then
				append_var LIBS "$SPARKLE_LIBS -lWinSparkle"
				append_var INCLUDES "$SPARKLE_CFLAGS"
			fi
			define_in_config_if_yes "$_sparkle" 'USE_SPARKLE'
		fi
		echo "$_sparkle"
	;;
	*)
		_sparkle=no
	;;
esac

#
# Check for libcurl to be present
#
if test "$_libcurl" != "no"; then

	# Look for the curl-config script
	find_libcurlconfig

	if test -z "$_libcurlconfig"; then
		_libcurl=no
	else
		if test -n "$_staticlibpath"; then
			LIBCURL_LIBS=`$_libcurlconfig --static-libs`
		else
			LIBCURL_LIBS=`$_libcurlconfig --libs`
		fi
		LIBCURL_CFLAGS=`$_libcurlconfig --cflags`

		case $_host_os in
			amigaos*)
				append_var LIBCURL_LIBS "-lpthread"
			;;
			# macOS does not allow static libs, overriding
			darwin*)
				LIBCURL_LIBS=`$_libcurlconfig --libs`
			;;
			psp2*)
				append_var LIBCURL_LIBS "-lssl -lcrypto"
			;;
		esac

		if test "$_libcurl" = "auto"; then
			_libcurl=no

			cat > $TMPC << EOF
			#include <curl/curl.h>
			int main(int argc, char *argv[]) {
				int x;
				curl_easy_setopt(NULL,CURLOPT_URL,NULL);
				x=CURL_ERROR_SIZE;
				x=CURLOPT_WRITEFUNCTION;
				x=CURLOPT_WRITEDATA;
				x=CURLOPT_ERRORBUFFER;
				x=CURLOPT_STDERR;
				x=CURLOPT_VERBOSE;

				curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
				if (data->features & CURL_VERSION_SSL)
					return 0;
				return 1;
			}
EOF

			cc_check_no_clean $LIBCURL_CFLAGS $LIBCURL_LIBS
			if test "$?" -eq 0; then
				if test -n "$_host"; then
					# In cross-compiling mode, we cannot run the result, assume SSL is available
					_libcurl=yes
				else
					$TMPO$HOSTEXEEXT
					if test "$?" -eq 0; then
						_libcurl=yes
					else
						_libcurl="no SSL support"
					fi
				fi
			fi
			cc_check_clean
		fi

		if test "$_libcurl" = "yes"; then
			append_var LIBS "$LIBCURL_LIBS"
			append_var INCLUDES "$LIBCURL_CFLAGS"
		fi
	fi

fi

echocheck "libcurl"
echo "$_libcurl"

define_in_config_if_yes "$_libcurl" "USE_LIBCURL"

#
# Check whether to build cloud integration support
#
echo_n "Cloud integration... "
if test "$_cloud" = "no"; then
	echo "no"
else
	_cloud=no
	if test "$_sdlnet" = "yes"; then
		_cloud=yes
		echo_n "local"
	fi
	if test "$_libcurl" = "yes"; then
		if test "$_cloud" = "yes"; then echo_n ", "; fi
		_cloud=yes
		echo_n "servers"
	fi
	if test "$_cloud" = "no"; then
		echo_n "no"
	fi
	echo  # newline
fi
define_in_config_if_yes $_cloud 'USE_CLOUD'

#
# Check is NSDockTilePlugIn protocol is supported
#
case $_host_os in
	darwin*)
		# NSDockTilePlugIn was added in OS X 10.6, so will not be available when compiling on older OS X versions.
		echocheck "DockTilePlugin"
		if test "$_osxdockplugin" = auto ; then
			_osxdockplugin=no
			cat > $TMPC << EOF
#include <Cocoa/Cocoa.h>
@interface ScummVMDockTilePlugIn : NSObject <NSDockTilePlugIn> {
}
@end
EOF
			cc_check -c -ObjC++ && _osxdockplugin=yes
		fi
		define_in_config_if_yes "$_osxdockplugin" 'USE_DOCKTILEPLUGIN'
		echo "$_osxdockplugin"
	;;
	*)
		_osxdockplugin=no
	;;
esac

#
# Check for FluidSynth
#
echocheck "FluidSynth"

append_var FLUIDSYNTH_LIBS "-lfluidsynth"
case $_host_os in
	mingw*)
		FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -lglib-2.0 -lintl -liconv -lws2_32 -lole32 -lshlwapi -lpcre -ldsound -lwinmm"
	;;

	darwin*)
		FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -framework Foundation -framework CoreMIDI -framework CoreAudio -lglib-2.0 -lintl -liconv -lreadline"
	;;

	iphone)
		FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -framework Foundation -framework CoreMIDI -lglib-2.0 -lintl -liconv"
	;;

	*)
		FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -lglib-2.0 -lintl -liconv"
	;;
esac

if test "$_fluidsynth" = auto; then
	_fluidsynth=no
	cat > $TMPC << EOF
#include <fluidsynth.h>
int main(void) { delete_fluid_settings(new_fluid_settings()); return 0; }
EOF
	cc_check_no_clean $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS && _fluidsynth=yes
	if test "$_fluidsynth" != yes; then
		FLUIDSYNTH_LIBS="$FLUIDSYNTH_STATIC_LIBS"
		cc_check_no_clean $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS && _fluidsynth=yes
	fi
	cc_check_clean
fi
if test "$_fluidsynth" = yes; then
	append_var LIBS "$FLUIDSYNTH_LIBS"
	append_var INCLUDES "$FLUIDSYNTH_CFLAGS"
fi
define_in_config_if_yes "$_fluidsynth" 'USE_FLUIDSYNTH'
echo "$_fluidsynth"

#
# Check for readline if text_console is enabled
#
echocheck "readline"
if test "$_text_console" = yes ; then
	_READLINE_LIBS="-lreadline"
	if test "$_readline" = auto ; then
		_readline=no
		cat > $TMPC << EOF
#include <stdio.h>
#include <readline/readline.h>
#include <readline/history.h>

int main(void) {
	char *x = readline("");
}
EOF
		cc_check_no_clean $READLINE_CFLAGS $READLINE_LIBS $_READLINE_LIBS && _readline=yes
		if test "$_readline" = no ; then
			_READLINE_LIBS="-lreadline -ltermcap"
			cc_check_no_clean $READLINE_CFLAGS $READLINE_LIBS $_READLINE_LIBS && _readline=yes
		fi
	fi
	cc_check_clean
	echo "$_readline"
else
	_readline=no
	echo "skipping (text console disabled)"
fi

if test "$_readline" = yes ; then
	append_var LIBS "$READLINE_LIBS $_READLINE_LIBS"
	append_var INCLUDES "$READLINE_CFLAGS"

	#
	# Check the type of rl_completion_entry_function.
	# It can be int(*)(const char *, int) or char *(*)(const char *, int).
	#
	cat > $TMPC << EOF
#include <stdio.h>
#include <readline/readline.h>
#include <readline/history.h>

int readline_completionFunction(const char *, int);

int main(void) {
	char *x = readline("");
	rl_completion_entry_function = &readline_completionFunction;
}
EOF
	cc_check -c && add_line_to_config_h '#define USE_READLINE_INT_COMPLETION'

fi
define_in_config_h_if_yes "$_readline" 'USE_READLINE'

define_in_config_h_if_yes "$_text_console" 'USE_TEXT_CONSOLE_FOR_DEBUGGER'

#
# Check for Unity if taskbar integration is enabled
#
echocheck "libunity"
if test "$_unix" = no || test "$_taskbar" = no || test "$_pkg_config" = no; then
	_libunity=no
else
if test "$_libunity" = auto ; then
	case $_host_os in
		mingw*)
			# pkgconfig and unity are not supported on mingw
			_libunity=no
			;;
		*)
			# Unity has a lots of dependencies, update the libs and cflags var with them
			LIBUNITY_LIBS="$LIBUNITY_LIBS `$_pkgconfig --libs 'unity > 3.8.1' 2>> "$TMPLOG"`"
			LIBUNITY_CFLAGS="$LIBUNITY_CFLAGS `$_pkgconfig --cflags 'unity > 3.8.1' 2>> "$TMPLOG"`"
			_libunity=no
			cat > $TMPC << EOF
#include <unity.h>
int main(void) {
	unity_launcher_entry_get_for_desktop_id("scummvm.desktop");
	return 0;
}
EOF
			cc_check $LIBUNITY_CFLAGS $LIBUNITY_LIBS && _libunity=yes
			;;
	esac
fi
if test "$_libunity" = yes ; then
	if test "$LIBUNITY_CFLAGS" = "" || test "$LIBUNITY_LIBS" = ""; then
		LIBUNITY_LIBS="$LIBUNITY_LIBS `$_pkgconfig --libs 'unity > 3.8.1' 2>> "$TMPLOG"`"
		LIBUNITY_CFLAGS="$LIBUNITY_CFLAGS `$_pkgconfig --cflags 'unity > 3.8.1' 2>> "$TMPLOG"`"
	fi
	append_var LIBS "$LIBUNITY_LIBS"
	append_var CXXFLAGS "$LIBUNITY_CFLAGS"
fi
define_in_config_h_if_yes "$_libunity" 'USE_UNITY'
fi
echo "$_libunity"

#
# Check for FreeType2 to be present
#
find_freetype() {
        # Wrapper function which tries to find freetype
        # either by calling freetype-config or by using
        # pkg-config.
        # As of freetype-2.9.1 the freetype-config file
        # no longer gets installed by default.
	if test "$_pkg_config" = "yes" && $_pkgconfig --exists freetype2; then
		FREETYPE2_LIBS=`$_pkgconfig --libs freetype2`
		FREETYPE2_CFLAGS=`$_pkgconfig --cflags freetype2`
		FREETYPE2_STATIC_LIBS=`$_pkgconfig --static --libs freetype2`
		_freetype_found="true"
	else
		# Look for the freetype-config script
		find_freetypeconfig
		if test -n "$_freetypeconfig"; then
			# Since 2.3.12, freetype-config prepends $SYSROOT to everything.
			# This means we can't pass it a --prefix that includes $SYSROOT.
			freetypeprefix="$_freetypepath"
			if test -n "$SYSROOT" -a "$SYSROOT" != "/"; then
				teststring=VeryImplausibleSysrootX1Y2Z3
				if ( env SYSROOT=/$teststring "$_freetypeconfig" --cflags | grep $teststring 2> /dev/null > /dev/null ); then
					echo "Adapting FreeType prefix to SYSROOT" >> "$TMPLOG"
					freetypeprefix="${freetypeprefix##$SYSROOT}"
				fi
			fi
			FREETYPE2_LIBS=`$_freetypeconfig --prefix="$freetypeprefix" --libs`
			FREETYPE2_CFLAGS=`$_freetypeconfig --prefix="$freetypeprefix" --cflags`
			FREETYPE2_STATIC_LIBS=`$_freetypeconfig --prefix="$freetypeprefix" --static --libs 2>/dev/null`
			_freetype_found="true"
		fi
	fi
}

if test "$_freetype2" != "no"; then
	find_freetype
	if test $_freetype_found != true; then
		_freetype2=no
	else
		if test "$_freetype2" = "auto"; then
			_freetype2=no

			cat > $TMPC << EOF
#include <ft2build.h>
#include FT_FREETYPE_H

int main(int argc, char *argv[]) {
	FT_Library library;
	FT_Error error = FT_Init_FreeType(&library);
	FT_Done_FreeType(library);
}
EOF

			cc_check_no_clean $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes
			# Modern freetype-config scripts accept --static to get all
			# required flags for static linking. We abuse this to detect
			# FreeType2 builds which are static themselves.
			if test "$_freetype2" != "yes"; then
				FREETYPE2_LIBS="$FREETYPE2_STATIC_LIBS"
				cc_check_no_clean $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes
			fi
			cc_check_clean
		fi

		if test "$_freetype2" = "yes"; then
			append_var LIBS "$FREETYPE2_LIBS"
			append_var CXXFLAGS "$FREETYPE2_CFLAGS"
		fi
	fi

fi

echocheck "FreeType2"
echo "$_freetype2"

define_in_config_if_yes "$_freetype2" "USE_FREETYPE2"

#
# Check for OpenGL (ES)
#
echocheck "OpenGL"

case $_backend in
	openpandora)
		# Only enable OpenGL ES on the OpanPandora if --opengl-mode=gles is passed in explicitly.
		if test "$_opengl_mode" = "gles" ; then
			append_var LIBS "-lGLES_CM -lEGL -lX11"
		else
			_opengl_mode=none
		fi
		;;
esac

if test "$_opengl_mode" = auto ; then
	case $_backend in
		android)
			# Android always runs in GLES mode
			_opengl_mode=gles
			;;
		sdl)
			case $_sdlversion in
				1.2.*)
					# Stock SDL 1.2 only supports OpenGL contexts.
					_opengl_mode=gl
					;;

				2.0.*)
					# SDL2 supports both OpenGL + OpenGL ES contexts.
					# However, Mac OS X only allows OpenGL context creation at
					# this time, thus we limit us to OpenGL on that platform.
					case $_host_os in
						darwin*)
							_opengl_mode=gl
							;;

						*)
							_opengl_mode=any
							;;
					esac
					;;
			esac
			;;

		tizen)
			# Tizen always runs in GLES mode
			_opengl_mode=gles
			;;

		*)
			_opengl_mode=none
			;;
	esac
fi

_opengl=yes
case $_opengl_mode in
	auto)
		# This case should never occur but better safe than sorry.
		echo "no"
		_opengl=no
		;;

	none)
		echo "no"
		_opengl=no
		;;

	any)
		echo "yes (runtime detection)"
		add_line_to_config_h "#undef USE_GLES_MODE"
		;;

	gl)
		echo "yes (OpenGL)"
		add_line_to_config_h "#define USE_GLES_MODE 0"
		;;

	gles)
		echo "yes (OpenGL ES)"
		add_line_to_config_h "#define USE_GLES_MODE 1"
		;;

	gles2)
		echo "yes (OpenGL ES 2)"
		add_line_to_config_h "#define USE_GLES_MODE 2"
		;;

	*)
		echo "invalid mode specification '$_opengl_mode'. Aborting."
		exit 1
		;;
esac

define_in_config_if_yes "$_opengl" "USE_OPENGL"

#
# Check for iconv
#
echo_n "Checking whether iconv.h is present... "
if test "$_iconv" = auto ; then
	_iconv=no
	cat > $TMPC << EOF
#include <iconv.h>
int main(int, char **) {
	return 0;
}
EOF
	cc_check $ICONV_CFLAGS $ICONV_LIBS && _iconv=yes
fi

create_iconv_test() {
	cat > $TMPC << EOF
#include <iconv.h>
int main(int, char **) {
	iconv_t iconv = iconv_open("UTF-32", "SJIS");
	iconv_close(iconv);
	return 0;
}
EOF
}
echo "$_iconv"

if test "$_iconv" = yes ; then
	echo_n "Checking whether iconv needs linking against libiconv... "

	needs_iconvlib='auto'
	create_iconv_test
	cc_check $ICONV_CFLAGS $ICONV_LIBS -liconv && needs_iconvlib='yes'
	# We do check linking without -liconv here too, just in case
	# it would fail otherwise too
	create_iconv_test
	cc_check $ICONV_CFLAGS $ICONV_LIBS && needs_iconvlib='no'

	if test "$needs_iconvlib" = auto ; then
		_iconv=no
		echo "does not link at all"
	else
		if test "$needs_iconvlib" = yes ; then
			append_var ICONV_LIBS "-liconv"
		fi
		echo "$needs_iconvlib"

		echo_n "Checking signature of iconv... "
		uses_const=no

		cat > $TMPC << EOF
#include <iconv.h>
int main(int argc, char **argv) {
	iconv_t iconvP;
	const char **inbuf = 0;
	iconv(iconvP, inbuf, 0, 0, 0);
	return 0;
}
EOF
		cc_check $ICONV_CFLAGS $ICONV_LIBS && uses_const=yes

		if test "$uses_const" = yes ; then
			echo "iconv_t, const char **, size_t *, char **, size_t *"
		else
			echo "iconv_t, char **, size_t *, char **, size_t *"
		fi

		define_in_config_if_yes "$uses_const" 'ICONV_USES_CONST'
	fi
fi

if test "$_iconv" = yes ; then
	append_var LIBS "$ICONV_LIBS"
	append_var INCLUDES "$ICONV_CFLAGS"
fi

echocheck "iconv"
define_in_config_if_yes "$_iconv" 'USE_ICONV'
echo "$_iconv"

#
# Check for Linux CD-ROM support
#
case $_host_os in
	*linux*)
		echocheck "Linux CD-ROM"
		linuxcd=no
		cat > $TMPC << EOF
#include <linux/cdrom.h>
#include <sys/types.h>
int main(void) {
	int x = CDROMREADAUDIO;
	dev_t dev;
	return major(dev) + x;
}
EOF
		cc_check && linuxcd=yes
		define_in_config_if_yes "$linuxcd" 'USE_LINUXCD'
		echo "$linuxcd"
		;;
esac


#
# Check for nasm
#
if test "$_have_x86" = yes ; then
	echocheck "nasm"
	if test "$_nasm" = no ; then
		echo "disabled"
	else
		IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=$SEPARATOR

		for path_dir in $_nasmpath; do
			if test -x "$path_dir/nasm$NATIVEEXEEXT" ; then
				NASM="$path_dir/nasm$NATIVEEXEEXT"
				NASMFLAGS="-O1 -g"
				echo $NASM
				break
			fi
		done

		# fallback to the nasm compatible yasm
		if test x$NASM = x -o x$NASM = x'"$NASM"'; then
			for path_dir in $_nasmpath; do
				if test -x "$path_dir/yasm$NATIVEEXEEXT" ; then
					NASM="$path_dir/yasm$NATIVEEXEEXT"
					NASMFLAGS="-a x86 -m x86"
					echo $NASM
					break
				fi
			done
		fi

		IFS="$ac_save_ifs"

		if test x$NASM = x -o x$NASM = x'"$NASM"'; then
			echo "not found"
			_nasm=no
		else
			case $_host_os in
				darwin*)
					append_var NASMFLAGS "-f macho"
				;;
				mingw*)
					append_var NASMFLAGS "-f win32"
				;;
				os2-emx*)
					append_var NASMFLAGS "-f aout"
				;;
				*)
					append_var NASMFLAGS "-f elf"
				;;
			esac
			_nasm=yes
		fi
	fi
fi

define_in_config_if_yes $_nasm 'USE_NASM'

#
# Check for pandoc
#
if test "$_pandoc" = yes ; then
	echocheck "pandoc"

	IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=$SEPARATOR

	for path_dir in $_pandocpath; do
		if test -x "$path_dir/pandoc$NATIVEEXEEXT" ; then
			PANDOC="$path_dir/pandoc$NATIVEEXEEXT"
			break
		fi
	done

	IFS="$ac_save_ifs"

	if ! test "$PANDOC" ; then
		_pandoc=no
	fi

	echo $_pandoc
fi

define_in_config_if_yes $_pandoc 'USE_PANDOC'

# Default to plain text output for pandoc
if test -z "$_pandocformat" -o "$_pandocformat" = "default"; then
	_pandocformat="plain"
fi

if test "$_pandocext" = "default"; then
	if test "$_pandocformat" = plain; then
		_pandocext=""
	else
		_pandocext=".$_pandocformat"
	fi
fi

#
# Enable vkeybd / keymapper / event recorder
#
define_in_config_if_yes $_vkeybd 'ENABLE_VKEYBD'
define_in_config_if_yes $_keymapper 'ENABLE_KEYMAPPER'
define_in_config_if_yes $_eventrec 'ENABLE_EVENTRECORDER'

#
# Check if the keymapper and the event recorder are enabled simultaneously
#
if test "$_keymapper" = yes ; then
	if test "$_eventrec" = yes ; then
		echo "ERROR: The keymapper and the event recorder cannot be enabled simultaneously currently, please disable one of the two"
		exit 1
	fi
fi

# Check whether to build translation support
#
echo_n "Building translation support... "
define_in_config_if_yes $_translation 'USE_TRANSLATION'
if test "$_translation" = no ; then
	echo "no"
else
	echo_n "yes ("

	if test "$_detectlang" != yes ; then
		cat > $TMPC << EOF
#include <locale.h>
int main(void) { setlocale(LC_ALL, ""); return 0; }
EOF
		_detectlang=no
		cc_check && _detectlang=yes
	fi

	define_in_config_h_if_yes $_detectlang 'USE_DETECTLANG'
	if test "$_detectlang" = yes ; then
		echo "with runtime language detection)"
	else
		echo "without runtime language detection)"
	fi
fi

#
# Check whether to build taskbar integration support
#
echo_n "Building taskbar integration support... "
if test "$_taskbar" = "no"; then
	echo "no"
else
	case $_host_os in
	mingw*)
		append_var LIBS "-lole32 -luuid"
		echo "win32"
		_taskbar=yes
		;;
	darwin*)
		echo "osx"
		_taskbar=yes
		;;
	*)
		if test "$_libunity" = yes; then
			echo "unity"
			_taskbar=yes
		else
			echo "no"
			_taskbar=no
		fi
		;;
	esac
fi
define_in_config_if_yes $_taskbar 'USE_TASKBAR'

#
# Check whether to build system dialogs support
#
echo_n "Building system dialogs support... "
if test "$_dialogs" = "no"; then
	echo "no"
else
	case $_host_os in
	mingw*)
		append_var LIBS "-lole32 -luuid"
		echo "win32"
		_dialogs=yes
		;;
	darwin*)
		echo "osx"
		_dialogs=yes
		;;
	*)
		echo "no"
		_dialogs=no
		;;
	esac
fi
define_in_config_if_yes $_dialogs 'USE_SYSDIALOGS'

#
# Check whether to build TTS integration support
#
echo_n "Building text-to-speech support... "
if test "$_tts" = "no"; then
	echo "no"
else
	case $_host_os in
	linux*)
		echo "linux"
		_tts=yes
		define_in_config_if_yes $_tts 'USE_SPEECH_DISPATCHER'
		append_var LIBS '-lspeechd -lpthread'
		;;
	mingw*)
		echo "win32"
		_tts=yes
		append_var LIBS '-lsapi -lole32'
		;;
	darwin*)
		echo "osx"
		_tts=yes
		;;
	*)
		echo "no"
		_tts=no
		;;
	esac
fi
define_in_config_if_yes $_tts 'USE_TTS'

#
# Check whether to build Bink video support
#
echo_n "Building Bink video support... "
define_in_config_if_yes $_bink 'USE_BINK'
echo "$_bink"

#
# Check whether to build updates support
#
echo_n "Building updates support... "
if test "$_updates" = yes; then
	if test "$_sparkle" = yes; then
		echo "Sparkle"
	else
		_updates=no;
		echo "$_updates"
	fi
else
	echo "$_updates"
fi
define_in_config_if_yes $_updates 'USE_UPDATES'

#
# Figure out installation directories
#
test "x$prefix" = xNONE && prefix=/usr/local
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'

case $_host_os in
	mingw*)
		# Windows stores all the external data files in executable file.
		;;
	*)
		append_var DEFINES "-DDATA_PATH=\\\"$datadir\\\""
		;;
esac

case $_backend in
	3ds)
		append_var DEFINES "-DPLUGIN_DIRECTORY=\\\"$datadir/plugins\\\""
		;;
	openpandora)
		# Add ../plugins as a path so plugins can be found when running from a .PND.
		append_var DEFINES "-DPLUGIN_DIRECTORY=\\\"../plugins\\\""
		;;
	maemo | webos)
		# The WebOS and Maemo apps want the plugins in the "lib" directory
		# without a scummvm sub directory.
		append_var DEFINES "-DPLUGIN_DIRECTORY=\\\"$libdir\\\""
		;;
	ps2)
		# PS2 bogus dir: it actually depends on launch medium
		append_var DEFINES "-DPLUGIN_DIRECTORY=\\\"host:plugins\\\""
		;;
	*)
		append_var DEFINES "-DPLUGIN_DIRECTORY=\\\"$libdir/scummvm\\\""
		;;
esac

#
# Set variables for profiling.
# We need to do it here to prevent mess-ups with the tests e.g. on the PSP
#
if test "$_enable_prof" = yes ; then
	append_var CXXFLAGS "-pg"
	append_var LDFLAGS "-pg"
	append_var DEFINES "-DENABLE_PROFILING"
fi

echo_n "Backend... "
echo_n "$_backend"

if test "$_backend" = "sdl" -a -n "$_sdlversion"; then
	echo_n " ($_sdlversion)"
fi

if test "$_nasm" = yes ; then
	echo_n ", assembly routines"
fi

if test "$_16bit" = yes ; then
	echo_n ", 16bit color"
fi

if test "$_highres" = yes ; then
	echo_n ", high resolution"
fi

if test "$_savegame_timestamp" = yes ; then
	echo_n ", savegame timestamp"
fi

if test "$_build_scalers" = yes ; then
	if test "$_build_hq_scalers" = yes ; then
		echo_n ", HQ scalers"
	else
		echo_n ", scalers"
	fi
fi

if test "$_mt32emu" = yes ; then
	echo_n ", MT-32 emulator"
fi

if test "$_lua" = yes ; then
	echo_n ", Lua"
fi

if test "$_nuked_opl" = yes ; then
	echo_n ", Nuked OPL emulator"
fi

if test "$_text_console" = yes ; then
	echo_n ", text console"
fi

if test "$_vkeybd" = yes ; then
	echo_n ", virtual keyboard"
fi

if test "$_keymapper" = yes ; then
	echo_n ", keymapper"
fi

if test "$_eventrec" = yes ; then
	echo_n ", event recorder"
fi

if test "$_cloud" = yes ; then
	echo ", cloud"
else
	echo
fi

#
# Some last-minute backend specific stuff, executed
# after all of CXXFLAGS, LDFLAGS, LIBS etc. have been setup
#
case $_backend in
	3ds)
		if test "$_freetype2" = yes -a "$_png" = yes; then
			append_var LIBS "-lbz2"
			append_var LIBS "-lpng"
		fi
		if test "$_tremor" = yes -o "$_flac" = yes; then
			append_var LIBS "-logg"
		fi

		# Moved -Wl,--gc-sections here to avoid it interfering with the library checks
		if test "$_dynamic_modules" = no ; then
			append_var LDFLAGS "-Wl,--gc-sections"
		else
			append_var LDFLAGS "-Wl,--no-gc-sections"
		fi
		;;
	android)
		# ssp at this point so the cxxtests link
		if test "$_debug_build" = yes; then
			append_var CXXFLAGS "-fstack-protector"
		else
			append_var CXXFLAGS "-fno-stack-protector"
		fi

		static_libs=''
		system_libs=''
		for lib in $LIBS; do
			case $lib in
			-lz|-lm|-ldl)
				system_libs="$system_libs $lib"
				;;
			*)
				static_libs="$static_libs $lib"
				;;
			esac
		done

		# -lgcc is carefully placed here - we want to catch
		# all toolchain symbols in *our* libraries rather
		# than pick up anything unhygenic from the Android libs.
		LIBS="-Wl,-Bstatic $static_libs -Wl,-Bdynamic -lgcc $system_libs -llog -landroid -lGLESv1_CM"
		;;
	dingux)
		if test "$_host" = trimui; then
			for lib in $LIBS; do
				case $lib in
					-lmad|-lvorbisidec|-logg)
						static_libs="$static_libs $lib"
						;;
					*)
						dynamic_libs="$dynamic_libs $lib"
						;;
				esac
			done

			LIBS="-Wl,-Bstatic $static_libs -Wl,-Bdynamic $dynamic_libs"
		fi
		;;
	n64)
		# Move some libs down here, otherwise some symbols requires by libvorbis aren't found
		# during linking stage
		append_var LIBS "-lc -lgcc -lnosys"
		;;
esac


#
# Engine selection
#
_engines_built_static=""
_engines_built_dynamic=""
_engines_skipped=""

# Show a message if looping over engines takes longer than 5 secs
sh -c "
	touch config.gnomes
	sleep 5
	if test -f config.gnomes; then
		printf 'Employing little gnomes...'
		rm -f config.gnomes
	fi" 2>/dev/null &

for engine in $_engines; do
	# Check whether all dependencies are available
	check_engine_deps $engine

	if test "`get_engine_sub $engine`" = "no" ; then
		# It's a main engine
		if test `get_engine_build $engine` = no ; then
			isbuilt=no
		else
			# If dynamic plugins aren't supported, mark
			# all the engines as static
			if test $_dynamic_modules = no ; then
				set_var _engine_${engine}_build "static"
			else
				# If it wasn't explicitly marked as static or
				# dynamic, use the configured default
				if test `get_engine_build $engine` = yes ; then
					set_var _engine_${engine}_build "${_plugins_default}"
				fi
			fi

			# Prepare the defines
			if test `get_engine_build $engine` = dynamic ; then
				isbuilt=DYNAMIC_PLUGIN
			else
				set_var _engine_${engine}_build "static"
				isbuilt=STATIC_PLUGIN
			fi
		fi
	else
		# It's a subengine, just say yes or no
		if test "`get_engine_build $engine`" = "no" ; then
			isbuilt=no
		else
			isbuilt=1
		fi
	fi

	# Save the settings
	defname="ENABLE_`echo $engine | tr '[a-z]' '[A-Z]'`"
	if test "$isbuilt" = "no" ; then
		add_line_to_config_mk "# $defname"
	else
		add_line_to_config_mk "$defname = $isbuilt"
	fi
done

# Sort engines to place our headline engine at start...
# No technical reason, just historical convention
headline_engine=scumm
_sorted_engines="${headline_engine}"
for engine in $_engines; do
	if test "${engine}" != "${headline_engine}" ; then
		_sorted_engines="${_sorted_engines} ${engine}"
	fi
done

# Prepare the information to be shown
for engine in $_sorted_engines; do
	if test "`get_engine_sub $engine`" = "no" ; then
		# It's a main engine
		prepare_engine_build_strings $engine
	fi
done

#
# Detection of WIP/unstable engines
#
for engine in $_engines; do
	engine_build=`get_engine_build $engine`
	engine_build_default=`get_engine_build_default $engine`
	if test $engine_build != no -a $engine_build_default = no ; then
		set_var _tainted_build "yes"
	fi
done

add_to_config_h_if_yes `get_var _tainted_build` '#define TAINTED_BUILD'

# Complete the message on slow systems
if test -f config.gnomes ; then
	# Kill does not work well here as it produces nasty 'Killed' message
	rm -rf config.gnomes
else
	echo " work is done"
fi

#
# Show which engines ("frontends") are to be built
#
echo
if test -n "$_engines_built_static" ; then
	echo "Engines (builtin):"
	echo "$_engines_built_static" | sed 's/@/\
/g
s/#/    /g'
fi

if test -n "$_engines_built_dynamic" ; then
	echo "Engines (plugins):"
	echo "$_engines_built_dynamic" | sed 's/@/\
/g
s/#/    /g'
fi

if test -n "$_engines_skipped" ; then
	echo "Engines Skipped:"
	echo "$_engines_skipped" | sed 's/@/\
/g
s/#/    /g'
fi

if test -n "$_engines_built_wip" ; then
	echo "WARNING: This ScummVM build contains the following UNSTABLE engines:"
	echo "$_engines_built_wip" | sed 's/@/\
/g
s/#/    /g'
fi

echo
echo "Creating config.h"
cat > config.h << EOF
/* This file is automatically generated by configure */
/* DO NOT EDIT MANUALLY */

#ifndef CONFIG_H
#define CONFIG_H

$_config_h_data

/* Data types */
#ifndef SCUMMVM_DONT_DEFINE_TYPES
typedef unsigned $type_1_byte byte;
typedef unsigned int uint;
typedef unsigned $type_1_byte uint8;
typedef unsigned $type_2_byte uint16;
typedef unsigned $type_4_byte uint32;
typedef unsigned $type_8_byte uint64;
typedef signed $type_1_byte int8;
typedef signed $type_2_byte int16;
typedef signed $type_4_byte int32;
typedef signed $type_8_byte int64;
#endif

typedef $type_ptr  uintptr;

#if defined(__APPLE__) && !defined(__ppc__)
#ifndef _UINT64
#define _UINT64
#endif
#endif

#endif /* CONFIG_H */
EOF

echo "Creating config.mk"
cat > config.mk << EOF
# -------- Generated by configure -----------

CXX := $CXX
CXXFLAGS := $CXXFLAGS
LD := $LD
LIBS += $LIBS
RANLIB := $_ranlib
STRIP := $_strip
AR := $_ar
AS := $_as
ASFLAGS := $ASFLAGS
DWP := $_dwp
WINDRES := $_windres
WINDRESFLAGS := $WINDRESFLAGS
STAGINGPATH=$_stagingpath
WIN32PATH=$_win32path
AMIGAOSPATH=$_amigaospath
STATICLIBPATH=$_staticlibpath
XCODETOOLSPATH=$_xcodetoolspath
SPARKLEPATH=$_sparklepath
SDLCONFIG=$_sdlconfig

ABI := $ABI

BACKEND := $_backend
MODULES += $MODULES
MODULE_DIRS += $MODULE_DIRS
EXEPRE := $HOSTEXEPRE
EXEEXT := $HOSTEXEEXT
NASM := $NASM
NASMFLAGS := $NASMFLAGS
PANDOC := $PANDOC
PANDOCFORMAT := $_pandocformat
PANDOCEXT := $_pandocext
ZLIB_LIBS := $ZLIB_LIBS
ZLIB_CFLAGS := $ZLIB_CFLAGS

prefix = $prefix
exec_prefix = $exec_prefix
bindir = $bindir
libdir = $libdir
datarootdir = $datarootdir
datadir = $datadir
mandir = $mandir
docdir = $docdir

$_config_mk_data

INCLUDES += $INCLUDES
OBJS += $OBJS
DEFINES += $DEFINES
LDFLAGS += $LDFLAGS

$_mak_plugins

port_mk = $_port_mk

SAVED_CONFIGFLAGS       := $SAVED_CONFIGFLAGS
SAVED_AR                := $SAVED_AR
SAVED_AS                := $SAVED_AS
SAVED_ASFLAGS           := $SAVED_ASFLAGS
SAVED_CPPFLAGS          := $SAVED_CPPFLAGS
SAVED_CXX               := $SAVED_CXX
SAVED_CXXFLAGS          := $SAVED_CXXFLAGS
SAVED_DWP               := $SAVED_DWP
SAVED_LD                := $SAVED_LD
SAVED_LDFLAGS           := $SAVED_LDFLAGS
SAVED_PKG_CONFIG_LIBDIR := $SAVED_PKG_CONFIG_LIBDIR
SAVED_RANLIB            := $SAVED_RANLIB
SAVED_SDL_CONFIG        := $SAVED_SDL_CONFIG
SAVED_STRIP             := $SAVED_STRIP
SAVED_WINDRES           := $SAVED_WINDRES
SAVED_WINDRESFLAGS      := $SAVED_WINDRESFLAGS
EOF

#
# Create a custom Makefile when building outside the source tree
# TODO: Add a better check than just looking for 'Makefile'
#
if test ! -f Makefile.common ; then
echo "Creating Makefile"

cat > Makefile << EOF
# -------- Generated by configure -----------
srcdir = $_srcdir
vpath %.h \$(srcdir)
vpath %.cpp \$(srcdir)
vpath %.c \$(srcdir)
vpath %.m \$(srcdir)
vpath %.mm \$(srcdir)
vpath %.asm \$(srcdir)
vpath %.s \$(srcdir)
vpath %.S \$(srcdir)
vpath %.rc \$(srcdir)
vpath %.md \$(srcdir)
include \$(srcdir)/Makefile
EOF

fi

# Ensure engines folder exists prior to trying to generate
# files into it (used for out-of-tree-builds)
mkdir -p engines

echo "Creating engines/engines.mk"
cat > engines/engines.mk << EOF
# This file is automatically generated by configure
# DO NOT EDIT MANUALLY
# This file is being included by "Makefile.common"
EOF

for engine in $_sorted_engines; do
	j=`echo $engine | tr '[:lower:]' '[:upper:]'`
	if test "`get_engine_sub $engine`" = "no" ; then
		# main engine
		cat >> engines/engines.mk << EOF

ifdef ENABLE_$j
DEFINES += -DENABLE_$j=\$(ENABLE_$j)
MODULES += engines/$engine
EOF

	for subeng in `get_engine_subengines $engine` ; do
		k=`echo $subeng | tr '[:lower:]' '[:upper:]'`
		cat >> engines/engines.mk << EOF

ifdef ENABLE_$k
DEFINES += -DENABLE_$k
endif
EOF
	done

	cat >> engines/engines.mk << EOF
endif
EOF
	fi
done

echo "Creating engines/plugins_table.h"
cat > engines/plugins_table.h << EOF
/* This file is automatically generated by configure */
/* DO NOT EDIT MANUALLY */
// This file is being included by "base/plugins.cpp"
EOF

for engine in $_sorted_engines; do
	if test "`get_engine_sub $engine`" = "no" ; then
		j=`echo $engine | tr '[:lower:]' '[:upper:]'`
		cat >> engines/plugins_table.h << EOF
#if PLUGIN_ENABLED_STATIC($j)
LINK_PLUGIN($j)
#endif
EOF
	fi
done