aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
blob: a6f1d02125c36d5bbf142b25804e14e1d9f5a3f8 (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
#!/bin/sh

#
# MPlayer configurator.   (C) 2000 Pontscho/fresh!mindworkz
#				   pontscho@makacs.poliod.hu
#
# Changes in reversed order:
#
# 2001/07/31 by Steve Davies
# - added --enable-largefiles
#
# 2001/07/12 by Juergen Keil
#  - add support for non-x86 targets
#  - add autoconf checks for loader/wine
#  - fix linux 2.2.x kernel check vs. SSE usage
#
# 2001/07/04 by Juergen Keil
#  - autodetect the assembler binary used by the GCC C compiler
#
# 2001/07/03 by Nick Kurshev
# - added universal way of configuring SUBDIRS
# - moved configurable stuff of depended SUBDIRS to SUBDIRS
#
# 2001/06/05 by Pontscho
# - added alsa and esd detection
#
# 2001/06/05 by Nick Kurshev
# - added checking of kernel version
#
# 2001/06/04 by Nick Kurshev
# - added hard checking of gcc and soft of assembler
#
# 2001/05/30 by LGB
#  - added --prefix support
#
# 2001/05/?? by Juergen Keil
#  - autodetect OSS & Sun style audio
#  - cpu feature detection for non-linux x86 systems
#  - converted from bash to bourne shell script
#
# 2001/05/22 by Nick Kurshev
#  - added definition of CPU clone
#
# 2001/04/16 by LGB
#  - added libcss stuffs
#
# 2001/04/15 by Pontscho
#  - added --disable-select option
#  - added X11DIR variable in config.mak and fix syncfb Makefile -L/usr/X11/lib bug 
#
# 2001/03/24 by Mike Graffam:
#  - added autodetect code for XF86VidMode, along with explicit --enable-vm
#
# 2001/03/22 by Bivanbi:
#  - new option: --cc  (to specify C compiler path+name)
#
# 2001/03/08 by LGB:
#  - DGA detect-o-matic :)
#  - '--disable-dga' option to force disabling DGA vo driver compiling into mplayer
#  - line about '--enable-dga' is added to the help message
#
# 2001/02/26 by A'rpi:
#  - added DGA option:  --enable-dga
#  - no notify if --with-win32libdir used [Tibcu]
#
# 2001/02/25 by LGB:
#  - TMPDIR or TEMPDIR variable is honored during tests for temporary files
#  - ChangeLog inside configure was reversed ;-)
#
# some changes by A'rpi/ESP-team:
#  - added 'athlon' target for the new athlongcc [Ian Kumlien]
#  - applied _win32libdir=-L patch by Magnus Pfeffer
#
# some changes by LGB:
#  - Ehhh, AMD K6-2 returns with cpuid 5 ;-) Changing back Arpi's last change :)
#    More info: AMD K6-2 reports with family 5, duron with 6, so I attached
#    much finer CPU type detection based on Linux kernel's one :)
#    (k5: 5, model<6, k6: 5, model>=6, k7: 6, model=any)
#  - On some exit point (error) temporary files were not deleted. Fixed.
#  - $TMP and $TMP2 are renamed to $TMPC and $TMPO ;-)
#  - Some useless { ... } are removed
#
# some changes by A'rpi/ESP-team:
#  - the --with-win32libdir patch by Aaron Hope applied
#  - some english bugfix again :)
#  - cpu type selection changed:
#    ( k7->k6->k5-> ) || (i686->pentiumpro-> ) pentium-> i486 -> i386 -> error!
#  - cpu type for AMD/family=5 changed k6->k5
#
# some changes by LGB (Gábor Lénárt):
#  - SOME gcc may support 'k7', so I added tests for ALL CPU type optimization
#    switches with the ability to find out the best optimization for your CPU.
#  - Help moved to the begining to avoid tests if user only wants help.
#  - A one lined help to indicate detailed help for users
#  - Fixed /tmp race (PIDs can be predicted, I added random numbers as well)
#
# some changes by A'rpi/ESP-team:
#  - some english bugfix :)
#  - removed _??exists flags, _?? is enough...
#  - creating only config.mak files instead of whole Makefiles
#
# --


# Check how echo works in this /bin/sh
case `echo -n` in
-n)     _echo_n=   _echo_c='\c';;	# seems to be a SysV echo
*)      _echo_n=-n _echo_c=;;		# OK, a BSD style echo
esac


# LGB: Help moved here.

for parm in "$@" ; do
if [ "$parm" = "--help" -o "$parm" = "-help" -o "$parm" = "-h" ]; then
cat << EOF

usage: $0 [options]

params:
        --cc                    use this C compiler to build MPlayer [gcc]
	--target=PLATFORM       target platform (i386-linux, arm-linux, etc)
	--prefix=DIR		use this prefix for installing mplayer [/usr/local]
	--datadir=DIR           use this prefix for installing machine independent
				data [/usr/local/share/mplayer] 
	--enable-debug[=1-3]	compile debugging information into mplayer [disable]
	--enable-profile	compile profiling information into mplayer [disable]
	--enable-largefiles	build with support for files >2^32 bytes long [disable]
        --enable-mmx            build with mmx support [autodetect]
        --enable-mmx2           build with mmx2 support (PIII, Athlon) [autodetect]
        --enable-3dnow          build with 3dnow! support [autodetect]
        --enable-3dnowex        build with 3dnow-dsp! support (K7) [autodetect]
        --enable-sse            build with sse support [autodetect]
        --enable-gl             build with OpenGL render support [autodetect]
        --enable-dga            build with DGA support [autodetect]
        --enable-svga           build with SVGAlib support [autodetect]
        --enable-sdl            build with SDL render support [autodetect]
        --enable-aa             build with AAlib render support [autodetect]
        --enable-ggi            build with GGI render support [autodetect]
        --enable-mga            build with mga_vid support [autodetect, if /dev/mga_vid
                                is available]
	--enable-xmga           build with mga_vid X Window support [autodetect,
				if both /dev/mga_vid and x11 are available]
        --enable-xv             build with Xv render support for X 4.x [autodetect]
	--enable-vm		build with XF86VidMode support for x11 driver
        --enable-x11            build with X11 render support [autodetect]
	--enable-fbdev		build with FBDev render support [_not_ autodetected]
	--enable-mlib		build with MLIB support ( only Solaris )

	--enable-termcap	use termcap database for key codes
	--enable-xmmp	        use XMMP audio drivers
	--enable-lirc	        enable LIRC (remote control) support

        --disable-ossaudio      disable OSS sound support [autodetect]
        --disable-alsa          disable alsa sound support [autodetect]
	--disable-esd           disable esd sound support [autodetect]
        --disable-sunaudio      disable Sun sound support [autodetect]
		
	--disable-gcc-checking  disable gcc version checking
	--disable-kernel-extchk disables checking for CPU extension support in
	                        your kernel (MMX, SSE, ...)

	--disable-select        disable audio select() support ( for example required this
	                        option ALSA or Vortex2 driver )

	--disable-win32         disable Win32 DLL support
	--disable-dshow         disable DirectShow support (if you don't have
                                C++ compiler&libs, or you've found dshow codecs
                                slower than old VfW ones)

	--disable-fastmemcpy    disable 3dnow/sse/mmx optimized memcpy()

        --with-x11libdir=DIR    X library files are in DIR
        --with-x11incdir=DIR    X headerss are in DIR
                                (only needed if autodetection fails)
        --with-win32libdir=DIR  windows codec files
        --with-csslibdir=DIR    directory contains libcss.so shared library
        --with-cssincdir=DIR    directory contains libcss header file (css.h)
                                (--with-css* only needed, if libCSS autodetect fails)
        --with-sdl-config=PATH  specify location of sdl-config if it's not in your PATH
                                (example: --with-sdl-config=/usr/sdl/bin/sdl-config)
        --with-extralibdir=DIR  extra library files (png, SDL) are in DIR
                                (only needed if autodetection fails)
        --with-extraincdir=DIR extra headers (png, SDL) are in DIR
                                (only needed if autodetection fails)
	--size-x=SIZE		default screen width
	--size-y=SIZE		default screen height
EOF
exit 0
fi
done # for parm in ...

if [ "$CC" != "" ]; then
  _cc=$CC
else
  _cc=gcc
fi

_as=auto
_x11=auto

for ac_option do
 case "$ac_option" in
  --target=*)
        _target=`echo $ac_option | cut -d '=' -f 2`
        ;;
  --cc=*)
        _cc=`echo $ac_option | cut -d '=' -f 2`
        ;;
  --as=*)
        _as=`echo $ac_option | cut -d '=' -f 2`
        ;;
  --disable-gcc-checking)
        _skip_cc_check=yes
	;;
  --disable-as-checking)
        _skip_as_check=yes
	;;
  --with-x11libdir=*)
        _x11libdir=-L`echo $ac_option | cut -d '=' -f 2`
        ;;
  --with-x11incdir=*)
        _x11incdir=-I`echo $ac_option | cut -d '=' -f 2`
        ;;
  --enable-x11)
        _x11=yes
        ;;
  --disable-x11)
        _x11=no
        ;;
  --with-sdl-config=*)
        _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
        ;;
  --with-extralibdir=*)
        _extralibdir=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
        ;;
  --with-extraincdir=*)
        _extraincdir=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'`
        ;;
 esac
done

# LGB: Some inital help

echo "You can get detailed help on configure with: $0 --help"
echo "Please wait while ./configure discovers your software and hardware environment!"

# Determine our OS name and CPU architecture
if [ "$_target" = "" ]; then
   system_name=`uname -s 2>&1` # name of operating system: Linux, FreeBSD, NetBSD, OpenBSD, SunOS
   host_arch=`uname -p 2>&1`   # host's instruction set or processor type

   case "$host_arch" in
   i386|sparc|ppc|alpha|arm)
       # fine, uname -p output looks good, it has returned
       # something this configure script recognizes
       ;;

   *)  # uname -p on Linux returns 'unknown' for the processor type,
       # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'

       # Maybe uname -m (machine hardware name) returns something we
       # recognize.

       case "`uname -m 2>&1`" in
       i[3-9]86)
           host_arch=i386;;
       ppc)
           host_arch=ppc;;
       alpha)
           host_arch=alpha;;
       sparc*)
           host_arch=sparc;;
       arm*)
           host_arch=arm;;
       esac
       ;;
   esac
else
   system_name=`echo $_target | cut -d '-' -f 2`
   host_arch=`echo $_target | cut -d '-' -f 1`
fi

echo "Detected operating system: $system_name"
echo "Detected host architecture: $host_arch"

# Determine OS dependent libs
_confcygwin="TARGET_CYGWIN=no"
_confwin32=
if [ "$system_name" = "FreeBSD" -o "$system_name" = "OpenBSD" ]; then
    _archlibs="-rdynamic -pthread"
elif [ `echo $system_name | sed 's/[cC][yY][gG][wW][iI][nN].*/CYGWIN/'` = "CYGWIN" ]; then
    _confcygwin="TARGET_CYGWIN=yes"
    _confwin32="#define WIN32"
    _archlibs="-lpthread"
else
    _archlibs="-ldl -lpthread"
fi

# LGB: temporary files

TMPC="mplayer-conf-${RANDOM}-$$-${RANDOM}.c"
TMPO="mplayer-conf-${RANDOM}-$$-${RANDOM}.o"
TMPS="mplayer-conf-${RANDOM}-$$-${RANDOM}.S"

if [ ! -z "$TMPDIR" ]; then
	TMPC="${TMPDIR}/${TMPC}"
	TMPO="${TMPDIR}/${TMPO}"
	TMPS="${TMPDIR}/${TMPS}"
elif [ ! -z "$TEMPDIR" ]; then
	TMPC="${TEMPDIR}/${TMPC}"
	TMPO="${TEMPDIR}/${TMPO}"
	TMPS="${TEMPDIR}/${TMPS}"
else
	TMPC="/tmp/${TMPC}"
	TMPO="/tmp/${TMPO}"
	TMPS="/tmp/${TMPS}"
fi

cat > $TMPC << EOF
int main( void ) { return 0; }
EOF

# ---

# config files
CCONF='config.h'
MCONF='config.mak'

# ---  Check for C compiler:

if [ "$_x11libdir" = "" ]; then
   if [ -d /usr/X11R6 ]; then
      _x11libdir=-L/usr/X11R6/lib
   else
      if [ -d /usr/X11 ]; then
         _x11libdir=-L/usr/X11/lib
      fi
   fi
fi

if [ "$_x11incdir" = "" ]; then
   if [ -d /usr/include/X11 ]; then
      _x11incdir=
   elif [ -d /usr/X11R6 ]; then
      _x11incdir=-I/usr/X11R6/include
   elif [ -d /usr/X11 ]; then
      _x11incdir=-I/usr/X11/include
   fi
fi

# Lots of stuff are installed under /usr/local

if [ "$_extralibdir" = "" ]; then
_extralibdir=-L/usr/local/lib
fi
if [ "$_extraincdir" = "" ]; then
_extraincdir=-I/usr/local/include
fi

if [ "$_sdlconfig" = "" ]; then
   if [ "$system_name" = "FreeBSD" ]; then
      _sdlconfig='sdl11-config'
   else
      _sdlconfig='sdl-config'
   fi
fi

# ---

# Checking CC version...
# Q: what's with egcs, pgcc? - Atmos
# A: same as with agcc! These compilers always were introduced as experimental
# ones. Now gcc-3.0 should introduce all features of these compilers.
# Since 3.0 is almost released we don't need to support them. - Nick 05 jun 2001
if test "$_skip_cc_check" != "yes"; then
echo $_echo_n "Checking version of $_cc ... $_echo_c"
cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'`
case $cc_version in
    '') cc_version="v. ?.??, bad"; cc_verc_fail=yes;;
    2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9]|3.[0-9].[0-9])
       cc_version="$cc_version, ok";;
    *) cc_version="$cc_version, bad"; cc_verc_fail=yes;;
esac
echo "$cc_version"
if [ ! -z "$cc_verc_fail" ] ; then
echo "Please downgrade(upgrade) gcc compiler to gcc-2.95.2+ or gcc-3.0+ version"
exit
fi
else
echo "YOU'VE SELECTED '--disable-gcc-checking'. PLEASE DON'T SEND US ANY BUGREPORTS!"
fi
# ---

# now that we know what compiler should be used for compilation, try to find
# out which assembler is used by the $_cc compiler
if [ "$_as" = auto ]; then
  _as=`$_cc -print-prog-name=as`
  if [ "$_as" = "" ]; then
    _as=as
  fi
fi


if [ "$host_arch" = i386 ]; then
    if [ -r /proc/cpuinfo ]; then
	# linux with /proc mounted, extract cpu information from it
	_cpuinfo="cat /proc/cpuinfo"
    elif [ -r /compat/linux/proc/cpuinfo ]; then
        # FreeBSD with linux emulation /proc mounted, 
	# extract cpu information from it
        _cpuinfo="cat /compat/linux/proc/cpuinfo"
    else
	# all other OS try to extract cpu information from a small helper
	# program TOOLS/cpuinfo instead
	$_cc -o TOOLS/cpuinfo TOOLS/cpuinfo.c
	_cpuinfo="TOOLS/cpuinfo"
    fi

    pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1`
    pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1`
    if [ -z "$pparam" ]; then
	pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1`
    fi
    pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2  | cut -d ' ' -f 2 | head -1`
    pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
    pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
    pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
else
    # not an x86 host, cpuinfo stuff is not relevant
    pname= pparam= pvendor= pfamily= pmodel= pstepping=
fi

_mmx=no
_mmx2=no
_3dnow=no
_3dnowex=no
_mtrr=no
_sse=no

_mga=no
_gl=no
_sdl=no
_aa=no
_ggi=no
_xv=no
_vm=no
_xdpms=no
_3dfx=no
_syncfb=no
_mlib=no
_xmga=autodetect
_dga=no
_dga2=no
_svga=no
_fbdev=no
[ "$system_name" = Linux ] && _fbdev=yes
_lirc=no
_css=no
_win32dll=yes _dshow=yes
[ "$host_arch" != i386 ] && _dshow=no _win32dll=no
_fastmemcpy=yes
_streaming=no
_libavcodec=no
_kernelextcheck=yes

_x=1
_y=1

_gllib=
_sdllib=
_sdlcflags=
_aalib=
_ggilib=
_xvlib=
_x11lib=

_select='#define HAVE_AUDIO_SELECT'

_gui=no;

_alsa=yes
_esd=yes

for i in $pparam; do

 case "$i" in
  3dnow)
        _3dnow=yes
        ;;
  3dnowext)
        _3dnow=yes
        _3dnowex=yes
        ;;
  mmx)
        _mmx=yes
        ;;
  mmxext)
        _mmx2=yes
        ;;
  mtrr|k6_mtrr)
        _mtrr=yes
        ;;
  xmm|sse|kni)
        _sse=yes
        _mmx2=yes
        ;;
 esac

done


_win32libdirnotify=no
if [ $_win32dll = yes ]; then
    if [ -d /usr/lib/win32 ]; then
	_win32libdir=/usr/lib/win32
    elif [ -d /usr/local/lib/win32 ]; then
	_win32libdir=/usr/local/lib/win32
    else
	# This is our default:
	_win32libdir=/usr/lib/win32
	_win32libdirnotify=yes
    fi
fi


if [ -d libavcodec -a -f libavcodec/Makefile ]; then
    _libavcodec=yes
fi


if [ -c /dev/mga_vid ]; then
 _mga=yes
 _syncfb=yes
fi



case "$host_arch" in
i386)
    _arch="#define ARCH_X86 1"
    _target_arch="TARGET_ARCH_X86=yes"
    _words_endian="#undef WORDS_BIGENDIAN"
    proc=pentium
    iproc=586

    case "$pvendor" in
    AuthenticAMD)
	case "$pfamily" in
	3)
	    proc=i386
	    iproc=386
	    ;;
	4)
	    proc=i486
	    iproc=486
	    ;;
	5)
	    if [ $pmodel -ge 6 ]; then	# LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3 
		proc=k6
	    else
		proc=k5
	    fi
	    iproc=586
	    ;;
	6|7)				# LGB: Though it seems Athlon CPUs returns with "6"
	    proc=k7
	    iproc=686
	    ;;
	*)
	    proc=pentium
	    iproc=586
	    ;;
	esac
	;;
    GenuineIntel)
	case "$pfamily" in
	3)
	    proc=i386
	    iproc=386
	    ;;
	4)
	    proc=i486
	    iproc=486
	    ;;
	5)
	    proc=pentium
	    iproc=586
	    ;;
	6)
	    proc=i686
	    iproc=686
	    ;;
	*)
	    proc=pentium
	    iproc=586
	    ;;
	esac
	;;
    unknown)              # added by Gabucino - upon Tibcu's request
	case "$pfamily" in
	3)
	    proc=i386
	    iproc=386
	    ;;
	4)
	    proc=i486
	    iproc=486
	    ;;
	*)
	    proc=pentium
	    iproc=586
	    ;;
	esac
	;;
    *)
	proc=pentium
	iproc=586
	;;
    esac

    # check that gcc supports our cpu, if not, fallback to pentium
    # LGB: check -mcpu and -march swithing step by step with enabling
    # to fall back till 386.

    #echo -n "Checking your GCC CPU optimalization abilities: "
    if [ "$proc" = "k7" ]; then
	#echo -n "trying k7  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=athlon
    fi
    if [ "$proc" = "athlon" ]; then
	#echo -n "trying athlon  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=pentiumpro
    fi
    if [ "$proc" = "k6" ]; then
	#echo -n "trying k6  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=k5
    fi
    if [ "$proc" = "k5" ]; then
	#echo -n "trying k5  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=pentium
    fi
    if [ "$proc" = "i686" ]; then
	#echo -n "trying i686  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=pentiumpro
    fi
    if [ "$proc" = "pentiumpro" ]; then
	#echo -n "trying pentiumpro  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=pentium
    fi
    if [ "$proc" = "pentium" ]; then
	#echo -n "trying pentium  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=i486
    fi
    if [ "$proc" = "i486" ]; then
	#echo -n "trying i486  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=i386
    fi
    if [ "$proc" = "i386" ]; then
	#echo -n "trying i386  "
	$_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc > /dev/null 2>&1 || proc=error
    fi
    if [ "$proc" = "error" ]; then
	echo
	echo "Your gcc does not support even \"i386\" for '-march' and '-mcpu'." >&2
	rm -f $TMPC $TMPO $TMPS
	exit
    fi

    _march="-march=$proc"
    _mcpu="-mcpu=$proc"
    #echo "DONE (${proc})."
    ;;


sparc)
    _arch="#define ARCH_SPARC 1"
    _target_arch="TARGET_ARCH_SPARC=yes"
    _words_endian="#define WORDS_BIGENDIAN 1"
    iproc=sparc
    proc=v8
    _march=""
    _mcpu="-mcpu=$proc"
    ;;

arm)
    _arch="#define ARCH_ARM 1"
    _target_arch="TARGET_ARCH_ARM=yes"
    _words_endian="#undef WORDS_BIGENDIAN"
    iproc=arm
    proc=
    _march=""
    _mcpu=""
    ;;

# Untested:
#ppc)
#    _arch="#define ARCH_PPC 1"
#    _target_arch="TARGET_ARCH_PPC=yes"
#    _words_endian="#define WORDS_BIGENDIAN 1"
#    iproc=ppc
#    proc=
#    _march=""
#    _mcpu=""
#    ;;

# Untested:
#alpha)
#    _arch="#define ARCH_ALPHA 1"
#    _target_arch="TARGET_ARCH_ALPHA=yes"
#    _words_endian="#undef WORDS_BIGENDIAN"
#    iproc=alpha
#    proc=
#    _march=""
#    _mcpu=""
#    ;;

*)
    echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
    echo "It seems, as if noone has ported MPlayer to your OS or CPU type yet."
    exit 1
    ;;
esac

# ---



$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -lvgagl -lvga > /dev/null 2>&1 && _svga=yes

if [ "$system_name" = "FreeBSD" -o "$system_name" = "OpenBSD" ]; then
$_cc $TMPC -o $TMPO -pthread > /dev/null 2>&1 || \
 { echo "Lib pthread not found."; rm -f $TMPC $TMPO $TMPS ; exit 1; }
else
$_cc $TMPC -o $TMPO -lpthread > /dev/null 2>&1 || \
 { echo "Lib pthread not found."; rm -f $TMPC $TMPO $TMPS ; exit 1; }
fi

# Atmosfear: added SDL versioncheck and autodetect; removed warnings.
_sdl=no
if test ! -z "`($_sdlconfig --version) 2>/dev/null`" ; then
if $_cc `$_sdlconfig --cflags` $TMPC -o $TMPO `$_sdlconfig --libs` > /dev/null 2>&1 ; then
	_sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
	if test "$_sdlversion" -gt 116 ; then
		if test "$_sdlversion" -lt 121 ; then

			_sdlbuggy='#define BUGGY_SDL'
		else	
			_sdlbuggy='#undef BUGGY_SDL'
		fi	
		_sdl=yes
	else
		_sdl=outdated
	fi
fi	
fi


# Atmosfear: added libcss autodetect
_css=no
if test -s "/usr/local/lib/libcss.so" ; then
	_csslibdir="/usr/local/lib/"
	if test -s "/usr/local/include/css.h" ; then
		_cssincdir="/usr/local/include"
		_css=yes
	fi	
else
	if test -s "/usr/lib/libcss.so" ; then
		_csslibdir="/usr/lib/"
		if test -s "/usr/include/css.h" ; then
			_cssincdir="/usr/include/"
			_css=yes
		fi	
	fi
fi


_aa=no
$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -laa > /dev/null 2>&1 && _aa=yes

_divx4linux=no
$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -ldivxdecore > /dev/null 2>&1 && _divx4linux=yes

_termcap=no
$_cc  $_extraincdir $_extralibdir $TMPC -o $TMPO -ltermcap > /dev/null 2>&1 && _termcap=yes

_png=no
$_cc  $_extraincdir $_extralibdir $TMPC -o $TMPO -lpng -lz -lm > /dev/null 2>&1 && _png=yes

_ggi=no
$_cc  $_extraincdir $_extralibdir $TMPC -o $TMPO -lggi > /dev/null 2>&1 && _ggi=yes

_kstat=no
$_cc $TMPC -o $TMPO -lkstat >/dev/null 2>&1 && _kstat=yes _archlibs="-lkstat $_archlibs"
$_cc $TMPC -o $TMPO -lposix4 >/dev/null 2>&1 && _archlibs="-lposix4 $_archlibs"

_binutils=no
$_as libac3/downmix/downmix_i386.S -o $TMPO > /dev/null 2>&1 && _binutils=yes

# echo binutils: $_binutils


# ----------- Check X11 and related libs (GL, Xxf86vm, Xv, DGA) --------------

# for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
_socklib=
$_cc $TMPC -o $TMPO $_socklib -lsocket >/dev/null 2>&1 && _socklib="$_socklib -lsocket"
$_cc $TMPC -o $TMPO $_socklib -lnsl >/dev/null 2>&1 && _socklib="$_socklib -lnsl"

if [ $_x11 = auto ]; then
  _x11=no
  $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext $_socklib > /dev/null 2>&1 && _x11=yes
fi

if [ $_x11 = yes ]; then

$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXdpms $_socklib > /dev/null 2>&1 && _xdpms=yes
$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXv $_socklib > /dev/null 2>&1 && _xv=yes
$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXxf86vm $_socklib > /dev/null 2>&1 && _vm=yes

# this is not yet checked with OpenBSD - atmos
if [ "$system_name" = "FreeBSD" -o "$system_name" = "OpenBSD" ]; then
$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL -pthread $_socklib > /dev/null 2>&1 && _gl=yes
else
$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL $_socklib > /dev/null 2>&1 && _gl=yes
fi

cat > $TMPC << EOF
#include <GL/gl.h>
int main( void ) { return 0; }
EOF
# this is not yet checked with OpenBSD - atmos
if [ "$system_name" = "FreeBSD" -o "$system_name" = "OpenBSD" ]; then
$_cc $_x11incdir $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL -pthread $_socklib > /dev/null 2>&1 || \
 { _gl=no; echo "GL includes not found!";}
else
$_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL $_socklib > /dev/null 2>&1 || \
 { _gl=no; echo "GL includes not found!";}
fi

cat > $TMPC << EOF
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/extensions/xf86dga.h>
int main (void) { return 0;}
EOF

$_cc $_x11incdir $TMPC -o $TMPO -L/usr/X11R6/lib -L/usr/X11/lib -lX11 -lXext -lXxf86dga -lXxf86vm $_socklib > /dev/null 2>&1 && _dga=yes
# Note: the -lXxf86vm library is the VideoMode extension and though it's
# not needed for DGA, AFAIK every distribution packages together with DGA
# stuffs named 'X extensions' or something similar. This check can be usefull
# for further mplayer versions to set resolution by mplayer itself.
# If you run into problems, remove '-lXxf86vm'.

# Check if DGA is 2.0 or greater
cat > $TMPC << EOF
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/extensions/xf86dga.h>
int main (void) { XDGAMode mode; XDGADevice device; return 0;}
EOF

_dga2=no
$_cc $_x11incdir $TMPC -o $TMPO -L/usr/X11R6/lib -L/usr/X11/lib -lX11 -lXext -lXxf86dga -lXxf86vm $_socklib > /dev/null 2>&1 && _dga2=yes

fi

cat > $TMPC << EOF
#include <decore.h>
int main( void ) { return DEC_OPT_FRAME_311; }
EOF
$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -ldivxdecore > /dev/null 2>&1 || \
 { _divx4linux=no; echo "DivX4Linux includes (decore.h) not found!";}

rm -f $TMPC $TMPO


# ---
# check availability of some header files

cat > $TMPC << EOF
#include <malloc.h>
int main( void ) { return 0; }
EOF

_malloc_h=no
$_cc -o $TMPO $TMPC 2> /dev/null && _malloc_h=yes


cat > $TMPC << EOF
#include <alloca.h>
int main( void ) { return 0; }
EOF

_alloca_h=no
$_cc -o $TMPO $TMPC 2> /dev/null && _alloca_h=yes


cat > $TMPC << EOF
#include <sys/types.h>
#include <sys/mman.h>
int main( void ) { return 0; }
EOF

_sys_mman_h=no
$_cc -o $TMPO $TMPC 2> /dev/null && _sys_mman_h=yes


cat > $TMPC << EOF
#include <dlfcn.h>
int main( void ) {  return 0; }
EOF

_libdl=no
$_cc -o $TMPO $TMPC -ldl 2> /dev/null && _libdl=yes


cat > $TMPC << EOF
#include <sys/soundcard.h>
int main( void ) { return 0; }
EOF

_sys_soundcard_h=no
$_cc -o $TMPO $TMPC 2> /dev/null && _sys_soundcard_h=yes


# ---
# try to detect type of audio supported on this machine

cat > $TMPC << EOF
#include <sys/soundcard.h>
int main( void ) {  int arg = SNDCTL_DSP_SETFRAGMENT; }
EOF

_oss_audio=no
$_cc -o $TMPO $TMPC 2> /dev/null && _oss_audio=yes


cat > $TMPC << EOF
#include <sys/types.h>
#include <sys/audioio.h>
int main( void ) {  audio_info_t info; AUDIO_INITINFO(&info); }
EOF

_sun_audio=no
$_cc -o $TMPO $TMPC 2> /dev/null && _sun_audio=yes


# ---

cat > $TMPC << EOF
#include <sys/asoundlib.h>
#include <sys/soundcard.h>
int main( void ) { if(SND_LIB_MAJOR==0&&SND_LIB_MINOR==5)return 0; return 1; }
EOF

_alsaver='no'
$_cc -o $TMPO -lasound -ldl -lpthread $TMPC 2> /dev/null || _alsa=no
[ $_alsa = 'yes' ] && $TMPO && { _alsaver='0.5.x'; }

if [ "$_alsaver" = 'no' ]; then
cat > $TMPC << EOF
#include <sys/asoundlib.h>
#include <sys/soundcard.h>
int main( void ) { if(SND_LIB_MAJOR==0&&SND_LIB_MINOR==9)return 0; return 1; }
EOF

_alsaver='no'
$_cc -o $TMPO -lasound -ldl -lpthread $TMPC 2> /dev/null || _alsa=no
[ $_alsa = 'yes' ] && $TMPO && { _alsaver='0.9.x'; }
fi

# ---

cat > $TMPC << EOF
#include <esd.h>
int main( void ){ return 0; }
EOF

$_cc $_extraincdir $_extralibdir -o $TMPO -lesd $TMPC 2> /dev/null || { _esd=no; }

# ---

# check for the parameters.

_prefix="/usr/local"

for ac_option do
 case "$ac_option" in
  --enable-profile)
  	_profile='-p'
	;;
  --enable-debug)
  	_debug='-g'
	;;
  --enable-largefiles)
	_largefiles=yes
	;;
  --enable-debug=*)
        _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
	;;
  --enable-css)
	_css=yes
	;;
  --enable-png)
	_png=yes
	;;
  --enable-sse)
        _sse=yes
        ;;
  --enable-3dnow)
        _3dnow=yes
        ;;
  --enable-3dnowex)
        _3dnow=yes
        _3dnowex=yes
        ;;
  --enable-mmx)
        _mmx=yes
        ;;
  --enable-mmx2)
        _mmx2=yes
        ;;
  --enable-mtrr)
  	_mtrr=yes
	;;
  --enable-gl)
        _gl=yes
        ;;
  --enable-sdl)
        _sdl=yes
        ;;
  --enable-aa)
        _aa=yes
        ;;
  --enable-ggi)
        _ggi=yes
        ;;
  --enable-mga)
        _mga=yes
        ;;
  --enable-xmga)
        _xmga=yes
        ;;	
  --enable-svga)
        _svga=yes
        ;;
  --enable-dga)
        _dga=yes
        ;;
  --enable-dga2)
        _dga2=yes
        ;;
  --enable-xv)
        _xv=yes
        ;;
  --enable-vm)
        _vm=yes
        ;;
  --enable-3dfx)
        _3dfx=yes
        ;;
  --enable-syncfb)
        _syncfb=yes
        ;;
  --enable-fbdev)
  	_fbdev=yes
	;;
  --enable-mlib)
	_mlib=yes
	;;
  --enable-termcap)
	_termcap=yes
	;;
  --enable-xmmp)
	_xmmp=yes
	;;
  --enable-ossaudio)
  	_oss_audio=yes
	;;
  --enable-sunaudio)
  	_sun_audio=yes
	;;
  --enable-lirc)
	_lirc=yes
	;;
  --enable-select)
        _select='#define HAVE_AUDIO_SELECT'
	;;
  --enable-gui)
  	_gui=yes
	;;
  --enable-streaming)
  	_streaming=yes
	;;
  --disable-css)
	_css=no
	;;
  --disable-png)
	_png=no
	;;
  --disable-kernel-extchk)
        _kernelextcheck=no
	;;
  --disable-sse)
        _sse=no
        ;;
  --disable-3dnow)
        _3dnow=no
        _3dnowex=no
        ;;
  --disable-3dnowex)
        _3dnowex=no
        ;;
  --disable-mmx)
        # without mmx 3Dnow! and stuff is also not possible
        _3dnow=no
        _3dnowex=no
        _mmx=no
	_mmx2=no
        ;;
  --disable-mmx2)
	_mmx2=no
        ;;
  --disable-mtrr)
  	_mtrr=no
	;;
  --disable-gl)
        _gl=no
        ;;
  --disable-sdl)
        _sdl=no
        ;;
  --disable-aa)
        _aa=no
        ;;
  --disable-ggi)
        _ggi=no
        ;;
  --disable-mga)
        _mga=no
        ;;
  --disable-xmga)
        _xmga=no
        ;;
  --disable-xv)
        _xv=no
        ;;
  --disable-vm)
        _vm=no
        ;;
  --disable-mlib)
	_mlib=no
	;;
  --disable-svga)
	_svga=no
	;;
  --disable-dga)
	_dga=no
	;;
  --disable-dga2)
        _dga2=no
        ;;
  --disable-fbdev)
  	_fbdev=no
	;;
  --disable-termcap)
	_termcap=no
	;;
  --disable-select)
        _select='#undef HAVE_AUDIO_SELECT'
	;;
  --disable-win32)
        _win32dll=no
        _dshow=no # no dshow without win32dlls
	;;
  --disable-dshow)
        _dshow=no
	;;
  --disable-fastmemcpy)
        _fastmemcpy=no
	;;
  --disable-gui)
  	_gui=no
	;;
  --disable-alsa)
	_alsaver='notfound'
        _alsa=no
	;;
  --disable-esd)
        _esd=no
        ;;
  --disable-ossaudio)
  	_oss_audio=no
	;;
  --disable-sunaudio)
  	_sun_audio=no
	;;
  --disable-divx4)
  	_divx4linux=no
	;;
  --enable-divx4)
  	_divx4linux=yes
	;;
  --with-win32libdir=*)
        _win32libdir=`echo $ac_option | cut -d '=' -f 2`
	_win32libdirnotify=no
        ;;
  --with-csslibdir=*)
        _csslibdir=`echo $ac_option | cut -d '=' -f 2`
	_css='yes';
	;;
  --with-cssincdir=*)
        _cssincdir=`echo $ac_option | cut -d '=' -f 2`
        _css='yes';
        ;;
  --size-x=*)
	_x=`echo $ac_option | cut -d '=' -f 2`
	;;
  --size-y=*)
	_y=`echo $ac_option | cut -d '=' -f 2`
	;;
  --with-x11libdir=*)
	;;
  --with-x11incdir=*)
        ;;
  --with-extralibdir=*)
        ;;
  --with-extraincdir=*)
        ;;
  --prefix=*)
	_prefix=`echo $ac_option | cut -d '=' -f 2`
        ;;
  --datadir=*)
	_datadir=`echo $ac_option | cut -d '=' -f 2`
	;;
  --cc=*)
	;;
  --as=*)
	;;
 esac
done

# Atmos: moved this here, to be correct, if --prefix is specified
if test x"$_datadir" = x; then
	_datadir=$_prefix"/share/mplayer"
fi

# Checking assembler (_as) compatibility...
# Added workaround for older as that reads from stdin by default - atmos
as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'`
echo $_echo_n "Checking assembler ($_as) ... $as_version, $_echo_c"
_pref_as_version='2.9.1'
### this test disabled, see _binutils test above!  --A'rpi
# cat > astest.S <<EOF
# filds -2(%ebp)
# EOF
# $_as astest.S -o astest.o > /dev/null 2>&1 || as_verc_fail=yes

cat > $TMPS <<EOF
nop
EOF

if [ $_mmx = 'yes' ]; then
cat >> $TMPS <<EOF
emms
EOF
fi

if [ $_3dnow = 'yes' ]; then
_pref_as_version='2.10.1'
cat >> $TMPS <<EOF
femms
EOF
fi

if [ $_3dnowex = 'yes' ]; then
_pref_as_version='2.10.1'
cat >> $TMPS <<EOF
pswapd %mm0, %mm0
EOF
fi

if [ $_mmx2 = 'yes' ]; then
_pref_as_version='2.10.1'
cat >> $TMPS <<EOF
movntq	%mm0, (%eax)
EOF
fi

if [ $_sse = 'yes' ]; then
_pref_as_version='2.10.1'
cat >> $TMPS <<EOF
xorps %xmm0, %xmm0
EOF
fi
# Note: for SSE2 assembler v2.11 should be preferred --Nick
#if [ $_sse2 = 'yes' ]; then
#_pref_as_version='2.11'
#cat >> $TMPS <<EOF
#xorpd %xmm0, %xmm0
#EOF
#fi
$_as $TMPS -o $TMPO > /dev/null 2>&1 || as_verc_fail=yes
rm -f $TMPS $TMPO $TMPC

if test "$as_verc_fail" != "yes"; then
  echo "ok"
else
  echo "failed"
  echo "Please upgrade(downgrade) binutils to "$_pref_as_version"..."
  if [ "$_skip_as_check" != "yes" ]; then
    exit
  else
    echo "YOU'VE SELECTED '--disable-as-checking'. PLEASE DON'T SEND US ANY BUGREPORTS!"
  fi
fi

# Atmosfear: Checking kernel support for cpu extensions ...
extcheck() {
if test "$1" = "yes" ; then
echo $_echo_n "Checking $2 support in Kernel ... $_echo_c"
cat > $TMPC <<EOF
int main(void){__asm__ __volatile__ ("$3":::"memory");return(0);}
EOF

if ($_cc $TMPC -o $TMPO && $TMPO) > /dev/null 2>&1 ; then 
	echo "ok"
	return 1
else
	echo "failed"
	echo "It seems that your kernel does not correctly support $2. To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
	return 0
fi
fi
return 1
}
if [ "$_kernelextcheck" = "yes" ];then
if extcheck $_mmx "mmx" "emms" ; then _mmx=no ; fi
if extcheck $_3dnow "3dnow" "femms" ; then _3dnow=no ; fi
if extcheck $_3dnowex "3dnowex" "pswapd %%mm0, %%mm0" ; then _3dnowex=no ; fi
if extcheck $_mmx2 "mmx2" "sfence" ; then _mmx2=no ; fi
if extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" ; then _sse=no ; fi
#if extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" ; then _sse2=no ; fi
rm -f $TMPS $TMPO $TMPC
fi

# Checking kernel version...
if [ "$system_name" = "Linux" ];then
    _k_verc_problem=no
    kernel_version=`uname -r 2>&1`
    echo $_echo_n "Checking $system_name kernel version ... $_echo_c"
    case "$kernel_version" in
	'') kernel_version="?.??"; _k_verc_fail=yes;;
	[0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
	    _k_verc_problem=yes;;
    esac
    if [ $_k_verc_problem = 'yes' ] && [ "$_sse" = 'yes' ]; then
	_k_verc_fail=yes
    fi
    if [ ! -z "$_k_verc_fail" ]; then
	echo "$kernel_version, fail"
	echo "WARNING! If you want to run mplayer on this system, be prepared for problems!"
	echo "(SSE support of 2.2.x series is limited. Upgrade kernel or use --disable-sse)"
    else
	echo "$kernel_version, ok"
    fi
fi

if [ "$_xmga" = "autodetect" ]; then
 if [ $_x11 = 'yes' ] && [ $_mga = 'yes' ]; then
  _xmga=yes
 else
  _xmga=no
 fi
fi

# to screen.
echo "Install prefix: $_prefix"
echo "Data directory: $_datadir"
if [ "$host_arch" = i386 ]; then
    echo "Checking for cpu vendor ... $pvendor ( $pfamily:$pmodel:$pstepping )"
    echo "Checking for cpu type ... $pname"
fi
echo "Optimizing to ... $proc"
if [ "$host_arch" = i386 ]; then
    echo "Checking for mmx support ... $_mmx"
    echo "Checking for mmx2 support ... $_mmx2"
    echo "Checking for 3dnow support ... $_3dnow"
    echo "Checking for 3dnowex support ... $_3dnowex"
    echo "Checking for sse support ... $_sse"
    echo "Checking for mtrr support ... $_mtrr"
fi
echo "Screen size ... ${_x}x${_y}"
echo "Checking for X11 libs ... $_x11libdir"
echo "Checking for X11 headers ... $_x11incdir"
echo "Checking mga_vid device ... $_mga"
echo "Checking for xmga ... $_xmga" 
echo "Checking for SDL ... $_sdl"
echo "Checking for AA ... $_aa"
echo "Checking for GGI ... $_ggi"
echo "Checking for OpenGL ... $_gl"
echo "Checking for Xv ... $_xv"
echo "Checking for X11 ... $_x11"
echo "Checking for DGA ... $_dga"
echo "Checking for DGA 2.0 .. $_dga2"
echo "Checking for Xf86VM ... $_vm"
echo "Checking for SVGAlib ... $_svga"
echo "Checking for FBDev ... $_fbdev"
echo "Checking for OSS Audio ... $_oss_audio"
echo "Checking for ALSA Audio ... $_alsaver"
echo "Checking for ESD Audio ... $_esd"
echo "Checking for Sun Audio ... $_sun_audio"
echo "Checking for DeCSS support ... $_css"
echo "Checking for PNG support ... $_png"
echo "Checking for Win32 DLL support ... $_win32dll"
echo "Checking for DirectShow ... $_dshow"
echo "Checking for libavcodec ... $_libavcodec"
echo "Checking for divx4linux ... $_divx4linux"
echo "Checking for fastmemcpy ... $_fastmemcpy"
echo "Extra libs : $_extralibdir"
echo "Extra headers : $_extraincdir"
# write conf files.

_streamingdef='#undef STREAMING'
if [ $_streaming = yes ]; then
   _streamingsrcs='asf_streaming.c network.c url.c http.c'
   _streamingdef='#define STREAMING'
fi

if [ $_gl = yes ]; then
   # niot yet etsted on OpenBSD - atmos	
   if [ "$system_name" = "FreeBSD" -o "$system_name" = "OpenBSD" ]; then
      # Under XFree86 4.x GL port is poorly designed
      if [ -r /usr/X11R6/bin/XFree86 ]; then
         _gllib='-lGL -pthread'
      else
         _gllib='-lGL'
      fi
   else
   _gllib='-lGL'
   fi
fi

if [ $_css = yes ]; then
   if [ ! -z "$_csslibdir" ]; then
     _csslib="-L${_csslibdir} -lcss"
   else
     _csslib='-lcss'
   fi
   _css='#define HAVE_LIBCSS'
   if [ ! -z "$_cssincdir" ]; then
     _cssinc="-I${_cssincdir}"
   else
     _cssinc=""
   fi
else
   _css='#undef HAVE_LIBCSS'
   _csslib=''
   _cssinc=''
fi



if [ $_win32dll = yes ]; then
    _win32dll='#define USE_WIN32DLL 1'
    _win32lib='-Lloader -lloader'
    _win32dep='loader/libloader.a'
    if [ $_dshow = yes ]; then
	_dshow='#define USE_DIRECTSHOW'
	_dshowlib='-Lloader/DirectShow -lDS_Filter -lstdc++'
	_dshowdep='loader/DirectShow/libDS_Filter.a'
    else
	_dshow='#undef USE_DIRECTSHOW' _dshowlib='' _dshowdep=''
    fi
else
    _win32dll='#undef USE_WIN32DLL' _win32lib='' _win32dep=''
    _dshow='#undef USE_DIRECTSHOW' _dshowlib='' _dshowdep=''
fi


if [ $_libavcodec = yes ]; then
   _lavclib='-Llibavcodec -lavcodec'
   _lavcdep='libavcodec/libavcodec.a'
   _libavcodec='#define USE_LIBAVCODEC'
else
   _lavclib=''
   _lavcdep=''
   _libavcodec='#undef USE_LIBAVCODEC'
fi

if [ $_fastmemcpy = yes ]; then
   _fastmemcpy='#define USE_FASTMEMCPY'
else
   _fastmemcpy='#undef USE_FASTMEMCPY'
fi

if [ $_x11 = yes ]; then
  if [ $_xdpms = yes ]; then
    _x11lib='-lX11 -lXext -lXdpms'
    _have_xdpms='#define HAVE_XDPMS 1'
  else
    _x11lib='-lX11 -lXext'
    _have_xdpms='#undef HAVE_XDPMS'
  fi
fi

if [ $_xv = yes ]; then
  _xvlib='-lXv'
fi

if [ $_sdl = yes ]; then
  _sdllib=`$_sdlconfig --libs` 
  _sdlcflags=`$_sdlconfig --cflags` 
fi

if [ $_ggi = yes ]; then
  _ggilib='-lggi'
fi

if [ $_dga = yes ]; then
  _dgalib='-lXxf86dga'
fi

if [ $_svga = yes ]; then
  _svgalib='-lvgagl -lvga'
fi

if [ $_vm = yes ]; then
  _vmlib='-lXxf86vm'
fi

if [ "$_termcap" = "yes" ]; then
 _termcap='#define USE_TERMCAP'
 _libtermcap='-ltermcap'
else
 _termcap='#undef USE_TERMCAP'
 _libtermcap=''
fi

if [ "$_kstat" = "yes" ]; then
  _have_libkstat="#define HAVE_LIBKSTAT 1"
else
  _have_libkstat="#undef HAVE_LIBKSTAT"
fi

if [ "$_xmmp" = "yes" ]; then
 _xmmpaudio='#define USE_XMMP_AUDIO'
 _xmmplibs='-Llibxmm -lxmm'
else
 _xmmpaudio='#undef USE_XMMP_AUDIO'
fi

if [ "$_lirc" = "yes" ]; then
 _lircdefs='#define HAVE_LIRC'
 _lirclibs='-llirc_client'
else
 _lircdefs='#undef HAVE_LIRC'
 _lirclibs=''
fi

if [ $_png = yes ]; then
   _libpng='-lpng -lz'
fi

_aosrc=''

_alsa5='#undef HAVE_ALSA5'
_alsa9='#undef HAVE_ALSA9'
if [ $_alsa = 'yes' ]; then
 [ $_alsaver = '0.5.x' ] && { _aosrc="$_aosrc ao_alsa5.c"; _alsa5='#define HAVE_ALSA5'; _alsalib='-lasound'; }
 [ $_alsaver = '0.9.x' ] && { _aosrc="$_aosrc ao_alsa9.c"; _alsa9='#define HAVE_ALSA9'; _alsalib='-lasound'; }
fi
  
_esdd='#undef HAVE_ESD'
#if [ $_esd = 'yes' ]; then
# _esdd='#define HAVE_ESD'
# _aosrc="$_aosrc ao_esd.c"
# _esdlib='-lesd'
#fi

if [ "$_oss_audio" = "yes" ]; then
 _ossaudio='#define USE_OSS_AUDIO'
 _aosrc="$_aosrc ao_oss.c"
else
 _ossaudio='#undef USE_OSS_AUDIO'
fi

if [ "$_sun_audio" = "yes" ]; then
 _sunaudio='#define USE_SUN_AUDIO'
 _aosrc="$_aosrc ao_sun.c"
else
 _sunaudio='#undef USE_SUN_AUDIO'
fi

if [ "$_sys_soundcard_h" = "yes" ]; then
 _have_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
else
 _have_soundcard_h='#undef  HAVE_SYS_SOUNDCARD_H'
fi

if [ "$_malloc_h" = "yes" ]; then
 _have_malloc_h='#define HAVE_MALLOC_H 1'
else
 _have_malloc_h='#undef  HAVE_MALLOC_H'
fi

if [ "$_alloca_h" = "yes" ]; then
 _have_alloca_h='#define HAVE_ALLOCA_H 1'
else
 _have_alloca_h='#undef  HAVE_ALLOCA_H'
fi

if [ "$_sys_mman_h" = "yes" ]; then
 _have_mman_h='#define HAVE_SYS_MMAN_H 1'
else
 _have_mman_h='#undef  HAVE_SYS_MMAN_H'
fi

if [ "$_libdl" = "yes" ]; then
 _have_libdl='#define HAVE_LIBDL 1'
else
 _have_libdl='#undef  HAVE_LIBDL'
fi


# Checking for CFLAGS
if [ "$_profile" != "" ] || [ "$_debug" != "" ]; then
 CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile"
else
if test -z "$CFLAGS"; then
 CFLAGS="-O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer"
fi
fi
# Under FreeBSD (maybe other systems as well?) we have to add to CFLAGS
# for MT applications: 
if [ "$system_name" = "FreeBSD" ]; then
CFLAGS="$CFLAGS -D_THREAD_SAFE"
fi

# 64 bit file offsets?
if [ "$_largefiles" = "yes" -o "$system_name" = "FreeBSD" ]; then
CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
fi

# echo 'CFLAGS=$(OPTFLAGS) -Wall -DMPG12PLAY' >> config.mak

echo "Creating $CCONF"

if [ "$_mmx" = "yes" ]; then
 _mmx='#define HAVE_MMX'
 _cfg_mmx='yes'
else
 _mmx='#undef HAVE_MMX'
 _cfg_mmx='no'
fi

if [ "$_mmx2" = "yes" ]; then
 _mmx2='#define HAVE_MMX2'
 _cfg_mmx2='yes'
else
 _mmx2='#undef HAVE_MMX2'
 _cfg_mmx2='no'
fi

if [ $_3dnow = yes ]; then
 _3dnowm='#define HAVE_3DNOW'
 _cfg_3dnow='yes'
else
 _3dnowm='#undef HAVE_3DNOW'
 _cfg_3dnow='no'
fi

if [ $_3dnowex = yes ]; then
 _3dnowexm='#define HAVE_3DNOWEX'
 _cfg_3dnowex='yes'
else
 _3dnowexm='#undef HAVE_3DNOWEX'
 _cfg_3dnowex='no'
fi

if [ $_sse = yes ]; then
 _ssem='#define HAVE_SSE'
 _cfg_sse='yes'
else
 _ssem='#undef HAVE_SSE'
 _cfg_sse='no'
fi

# ---

_vosrc=''
#_aosrc=''

if [ $_aa = yes ]; then
 _aa='#define HAVE_AA'
 _vosrc=$_vosrc' vo_aa.c'
 _aalib='-laa'
else
 _aa='#undef HAVE_AA'
 _aalib=''
fi

if [ $_png = yes ]; then
 _png='#define HAVE_PNG'
 _vosrc=$_vosrc' vo_png.c'
else
   _png='#undef HAVE_PNG'
fi


if [ $_mlib = yes ]; then
 _mlib='#define HAVE_MLIB'
 _vosrc=$_vosrc' yuv2rgb_mlib.c'
else
 _mlib='#undef HAVE_MLIB'
fi

# ---

if [ $_gl = yes ]; then
 _gl='#define HAVE_GL'
 _vosrc=$_vosrc' vo_gl.c'
else
 _gl='#undef HAVE_GL'
fi

if [ $_sdl = yes ]; then
 _sdldef='#define HAVE_SDL'
 _vosrc=$_vosrc' vo_sdl.c'
 _aosrc=$_aosrc' ao_sdl.c'
else
 _sdldef='#undef HAVE_SDL'
fi

if [ $_ggi = yes ]; then
 _ggi='#define HAVE_GGI'
 _vosrc=$_vosrc' vo_ggi.c'
else
 _ggi='#undef HAVE_GGI'
fi

if [ $_x11 = yes ]; then
 _x11='#define HAVE_X11'
 _vosrc=$_vosrc' vo_x11.c'
else
 _x11='#undef HAVE_X11'
fi

if [ $_xv = yes ]; then
 _xv='#define HAVE_XV'
 _vosrc=$_vosrc' vo_xv.c'
else
 _xv='#undef HAVE_XV'
fi

if [ $_vm = yes ]; then
 _vm='#define HAVE_XF86VM'
else
 _vm='#undef HAVE_XF86VM'
fi

# ---

if [ $_mga = yes ]; then
 _mga='#define HAVE_MGA'
 _vosrc=$_vosrc' vo_mga.c'
else
 _mga='#undef HAVE_MGA'
fi

if [ $_xmga = yes ]; then
 _vosrc=$_vosrc' vo_xmga.c'
 _xmga='#define HAVE_XMGA'
else
 _xmga='#undef HAVE_XMGA' 
fi

if [ $_syncfb = yes ]; then
 _syncfb='#define HAVE_SYNCFB'
 _vosrc=$_vosrc' vo_syncfb.c'
else
 _syncfb='#undef HAVE_SYNCFB'
fi

if [ $_3dfx = yes ]; then
 _3dfx='#define HAVE_3DFX'
 _vosrc=$_vosrc' vo_3dfx.c'
else
 _3dfx='#undef HAVE_3DFX'
fi

if [ $_svga = yes ]; then
 _svga='#define HAVE_SVGALIB'
 _vosrc=$_vosrc' vo_svga.c'
else
 _svga='#undef HAVE_SVGALIB'
fi

if [ $_dga = yes ]; then
 _dga='#define HAVE_DGA'
# _vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
 _vosrc=$_vosrc' vo_dga.c'
else
 _dga='#undef HAVE_DGA'
fi

if [ $_dga2 = yes ]; then
 _dga2='#define HAVE_DGA2'
# _vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
 _vosrc=$_vosrc' vo_dga.c'
else
 _dga2='#undef HAVE_DGA2'
fi

if [ $_fbdev = yes ]; then
 _fbdev='#define HAVE_FBDEV'
 _vosrc=$_vosrc' vo_fbdev.c'
else
 _fbdev='#undef HAVE_FBDEV'
fi

if [ $_gui = yes ]; then
 _gui='#define HAVE_GUI'
else
 _gui='#undef HAVE_GUI'
fi

if [ $_divx4linux = yes ]; then
 _divx4def='#define NEW_DECORE'
 _decorelibs='-ldivxdecore opendivx/postprocess.o'
else
 _divx4def='#undef NEW_DECORE'
 _decorelibs='-Lopendivx -ldecore'
fi


echo
echo "Creating $MCONF"
cat > $MCONF << EOF

# -------- Generated by ./configure -----------

prefix = $_prefix
AR=ar
CC=$_cc
# OPTFLAGS=-O4 $_profile $_debug $_march $_mcpu -pipe -fomit-frame-pointer -ffast-math
OPTFLAGS=$CFLAGS
EXTRA_INC=$_extraincdir
WIN32_PATH=-DWIN32_PATH=\\"$_win32libdir\\"

X11_INC=$_x11incdir
X11DIR=$_x11libdir
X_LIBS=$_x11libdir $_extralibdir $_gllib $_ggilib $_sdllib $_dgalib $_x11lib $_xvlib $_vmlib $_svgalib $_libpng $_socklib $_aalib

TERMCAP_LIB=$_libtermcap
XMM_LIBS = $_xmmplibs
LIRC_LIBS = $_lirclibs
CSS_LIB = $_csslib
CSS_INC = $_cssinc
SDL_INC = $_sdlcflags
W32_DEP = $_win32dep
W32_LIB = $_win32lib
DS_DEP = $_dshowdep
DS_LIB = $_dshowlib
AV_DEP = $_lavcdep
AV_LIB = $_lavclib
ALSA_LIB = $_alsalib
ESD_LIB = $_esdlib
ARCH_LIBS = $_archlibs
STREAM_SRCS = $_streamingsrcs
DECORE_LIBS = $_decorelibs
DIVX4LINUX=$_divx4linux

# --- Some stuff for autoconfigure ----
$_target_arch
$_confcygwin
TARGET_CPU=$iproc
TARGET_MMX=$_cfg_mmx
TARGET_MMX2=$_cfg_mmx2
TARGET_3DNOW=$_cfg_3dnow
TARGET_3DNOWEX=$_cfg_3dnowex
TARGET_SSE=$_cfg_sse

BINUTILS=$_binutils
EOF
   
cat > $CCONF << EOF

/* -------- Generated by ./configure ----------- */

#define USE_OSD
#define USE_SUB

/* Common data directory (for fonts, etc) */
#define DATADIR "$_datadir"

/* Define for using new DivX4Linux library, instead of open-source OpenDivX */
/* You have to change DECORE_LIBS in config.mak too! */
$_divx4def

/* Define this to enable avg. byte/sec-based AVI sync method by default:
   (use -bps or -nobps commandline option for run-time method selection)    */
#undef AVI_SYNC_BPS

/* Undefine this if you want soundcard-only timing by default:
   You can still change this with the -alsa or -noalsa command-line option!
   (This function was originally impemented to solve ALSA driver's big
   buffer problems, but it seems to be useful for every soundcard drivers) */
#define ALSA_TIMER

/* Undefine this if you don't want to select mono audio (left or right)
   with a stereo MPEG layer 2/3 audio stream. The command-line option
   -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
   right-only), with 0 being the default.
   */
#define USE_FAKE_MONO

/* Undefine this if your soundcard driver has no working select().
   If you have kernel Oops, player hangups, or just no audio, you should
   try to recompile MPlayer with this option disabled! */
$_select

/* XMMP support: (test code) */
$_xmmpaudio
#define LIBDIR "/usr/local/lib"
#define PLUGINDIR LIBDIR "/xmmp/Plugins"
#define XMMP_AUDIO_DRIVER PLUGINDIR "/Sound/oss.so"

/* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
#define MAX_OUTBURST 65536

/* set up audio OUTBURST. Do not change this! */
#ifdef USE_XMMP_AUDIO
#define OUTBURST 4096
#else
//#define OUTBURST 1024
#define OUTBURST 512
#endif

/* Define this if your system has the header file for the OSS sound interface */
$_have_soundcard_h

/* Define this if your system has the "malloc.h" header file */
$_have_malloc_h

/* Define this if your system has the "alloca.h" header file */
$_have_alloca_h

/* Define this if your system has the "sys/mman.h" header file */
$_have_mman_h


/* Define this if you have the elf dynamic linker -ldl library */
$_have_libdl

/* Define this if you have the kstat kernel statistics library */
$_have_libkstat

/* LIRC (remote control, see www.lirc.org) support: */
$_lircdefs

/* DeCSS support using libcss */
$_css

/* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */
#define MPEG12_POSTPROC

/* Win32 DLL support */
$_win32dll

/* DirectShow support */
$_dshow

/* ffmpeg's libavcodec support (requires libavcodec source) */
$_libavcodec
/* use only decoders from libavcodec: */
#define CONFIG_DECODERS

/* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
$_fastmemcpy

/* gui support, please do not edit this option */
$_gui
#define PREFIX "$_prefix"

/* Audio lib drivers */
$_ossaudio
$_alsa5
$_alsa9
$_esdd
$_sunaudio

/* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
#undef FAST_OSD
#undef FAST_OSD_TABLE

/* Define if your processor stores words with the most significant
   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
$_words_endian

$_arch

$_confwin32

/* Define this to any prefered value from 386 up to infinity with step 100 */
#define __CPU__ $iproc

#ifdef sun
#define	DEFAULT_CDROM_DEVICE	"/vol/dev/aliases/cdrom0"
#else
#define DEFAULT_CDROM_DEVICE    "/dev/cdrom"
#endif

/*----------------------------------------------------------------------------
**
** NOTE: Instead of modifying these definitions here, use the
**       --enable/--disable options of the ./configure script!
**       See ./configure --help for details.
**
*---------------------------------------------------------------------------*/

/* termcap flag for getch2.c */
$_termcap

$_png

$_streamingdef

/* Extension defines */
$_mlib     // available only on solaris
$_3dnowm   // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.)
$_3dnowexm // only define if you have 3DNOWEX (AMD Athlon, etc.)
$_mmx      // only define if you have MMX (newer x86 chips, not P54C/PPro)
$_mmx2     // only define if you have MMX2 (Athlon/PIII/4/CelII)
$_ssem     // only define if you have SSE (Intel Pentium III/4 or Celeron II)

#ifdef HAVE_MMX
#define USE_MMX_IDCT
#endif

/* libvo options */
#define SCREEN_SIZE_X $_x
#define SCREEN_SIZE_Y $_y
$_x11
$_xv
$_vm
$_gl
$_dga
$_dga2
$_sdldef
/* defined for SDLlib with keyrepeat bugs (before 1.2.1) */
$_sdlbuggy
$_ggi
$_3dfx
$_mga
$_xmga
$_syncfb
$_fbdev
$_svga
$_have_xdpms
$_aa

#if defined(HAVE_GL)||defined(HAVE_X11)||defined(HAVE_XV)
#define X11_FULLSCREEN
#endif

EOF

echo "Creating libvo/config.mak"

_voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'`

cat > libvo/config.mak << EOF

include ../config.mak

OPTIONAL_SRCS=$_vosrc
OPTIONAL_OBJS=$_voobj

EOF

echo "Creating libao2/config.mak"

_aoobj=`echo $_aosrc | sed -e 's/\.c/\.o/g'`

cat > libao2/config.mak << EOF

include ../config.mak

OPTIONAL_SRCS=$_aosrc
OPTIONAL_OBJS=$_aoobj

EOF

cat << EOF

Config files successfully generated by ./configure !
Please check config.h and config.mak files, tune CPU
and optimization flags if you don't like these defaults.
You can compile the program with 'make' and
install with  'make install'. Good luck!
Note: On non-Linux systems you might need to use gmake
instead of make.

EOF

if [ $_mtrr = yes ]; then
 echo "Please check mtrr settings at /proc/mtrr (see DOCS/MTRR)"
 echo
fi

if [ $_sdl = outdated ]; then
 echo "You have an outdated version of libSDL installed (older than v1.1.7)"
 echo "and SDL support has therefore been disabled. Please upgrade to a more"
 echo "recent version (v1.1.8 and v1.2.[0-1] are known to work) from:"
 echo "http://www.libsdl.org"
 echo "You need to re-run ./configure and recompile after updating SDL."
 echo "If you are only interested in the libSDL audio drivers, then older"
 echo "version might work. Use --enable-sdl to force usage of libSDL."
fi

if [ "$host_arch" = i386 ]; then
    if [ $_win32libdirnotify = yes ]; then
	echo "Failed to find a WIN32 codecs dir at $_win32libdir!"
	echo "Create it and copy the DLL files there! (You can get them from your windows"
	echo "directory or download them from:"
	echo "ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip"
    else
	echo "Ok, found Win32 codecs directory at $_win32libdir."
    fi
else
    echo "NOTE: WIN32 codec DLLs are not supported on your CPU ($host_arch)."
    echo "You may encounter a few AVI files that cannot be played due to"
    echo "missing opensource video/audio codec support."
fi

# Last move:

rm -f $TMPO $TMPC $TMPS