Mercurial > mplayer.hg
annotate configure @ 235:6f96d4143806
verbose output changed
author | arpi_esp |
---|---|
date | Wed, 28 Mar 2001 21:43:21 +0000 |
parents | f62ccacbe1e5 |
children | abc78352e35e |
rev | line source |
---|---|
1 | 1 #!/bin/sh |
2 | |
3 # | |
4 # MPlayer configurator. (C) 2000 Pontscho/fresh!mindworkz | |
5 # pontscho@makacs.poliod.hu | |
6 # | |
4 | 7 # Changes in reversed order: |
1 | 8 # |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
9 # 2001/03/24 by Mike Graffam: |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
10 # - added autodetect code for XF86VidMode, along with explicit --enable-vm |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
11 # |
196 | 12 # 2001/03/22 by Bivanbi: |
13 # - new option: --cc (to specify C compiler path+name) | |
14 # | |
15 # 2001/03/08 by LGB: | |
59 | 16 # - DGA detection-o-matic :) |
17 # - '--disable-dga' option to force disabling DGA vo driver compiling into mplayer | |
18 # - line about '--enable-dga' is added to the help message | |
19 # | |
196 | 20 # 2001/02/26 by A'rpi: |
11 | 21 # - added DGA option: --enable-dga |
22 # - no notify if --with-win32libdir used [Tibcu] | |
23 # | |
196 | 24 # 2001/02/25 by LGB: |
4 | 25 # - TMPDIR or TEMPDIR variable is honored during tests for temporary files |
26 # - ChangeLog inside configure was reversed ;-) | |
1 | 27 # |
28 # some changes by A'rpi/ESP-team: | |
4 | 29 # - added 'athlon' target for the new athlongcc [Ian Kumlien] |
30 # - applied _win32libdir=-L patch by Magnus Pfeffer | |
1 | 31 # |
32 # some changes by LGB: | |
33 # - Ehhh, AMD K6-2 returns with cpuid 5 ;-) Changing back Arpi's last change :) | |
34 # More info: AMD K6-2 reports with family 5, duron with 6, so I attached | |
35 # much finer CPU type detection based on Linux kernel's one :) | |
36 # (k5: 5, model<6, k6: 5, model>=6, k7: 6, model=any) | |
37 # - On some exit point (error) temporary files were not deleted. Fixed. | |
38 # - $TMP and $TMP2 are renamed to $TMPC and $TMPO ;-) | |
39 # - Some useless { ... } are removed | |
40 # | |
41 # some changes by A'rpi/ESP-team: | |
11 | 42 # - the --with-win32libdir patch by Aaron Hope applied |
4 | 43 # - some english bugfix again :) |
44 # - cpu type selection changed: | |
45 # ( k7->k6->k5-> ) || (i686->pentiumpro-> ) pentium-> i486 -> i386 -> error! | |
46 # - cpu type for AMD/family=5 changed k6->k5 | |
47 # | |
48 # some changes by LGB (Gábor Lénárt): | |
49 # - SOME gcc may support 'k7', so I added tests for ALL CPU type optimization | |
50 # switches with the ability to find out the best optimization for your CPU. | |
51 # - Help moved to the begining to avoid tests if user only wants help. | |
52 # - A one lined help to indicate detailed help for users | |
53 # - Fixed /tmp race (PIDs can be predicted, I added random numbers as well) | |
54 # | |
55 # some changes by A'rpi/ESP-team: | |
56 # - some english bugfix :) | |
57 # - removed _??exists flags, _?? is enough... | |
58 # - creating only config.mak files instead of whole Makefiles | |
1 | 59 # |
60 # -- | |
61 | |
62 | |
63 # LGB: Help moved here. | |
64 | |
65 if [ "$1" = "--help" -o "$1" = "-help" -o "$1" = "-h" ]; then | |
66 cat << EOF | |
67 | |
68 usage: $0 [options] | |
69 | |
70 params: | |
196 | 71 --cc use this C compiler to build MPlayer [gcc] |
1 | 72 --enable-mmx build with mmx support [autodetect] |
73 --enable-3dnow build with 3dnow! support [autodetect] | |
74 --enable-sse build with sse support [autodetect] | |
75 --enable-gl build with OpenGL render support [autodetect] | |
59 | 76 --enable-dga build with DGA support [autodetect] |
1 | 77 --enable-sdl build with SDL render support [def.: disabled!] |
78 --enable-mga build with mga_vid support [autodetect, if /dev/mga_vid | |
79 is available] | |
80 --enable-xmga build with mga_vid X Window support [autodetect, | |
81 if both /dev/mga_vid and x11 are available] | |
82 --enable-xv build with Xv render support for X 4.x [autodetect] | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
83 --enable-vm build with XF86VidMode support for x11 driver |
1 | 84 --enable-x11 build with X11 render support [autodetect] |
225 | 85 --enable-fbdev build with FBDev render support [_not_ autodetected] |
1 | 86 --enable-mlib build with MLIB support ( only Solaris ) |
87 | |
88 --enable-termcap use termcap database for key codes | |
89 --enable-xmmp use XMMP audio drivers | |
90 --enable-lirc enable LIRC (remote control) support | |
91 | |
92 --with-x11libdir=DIR X library files are in DIR | |
93 --with-win32libdir=DIR windows codec files | |
94 | |
95 --size-x=SIZE default screen width | |
96 --size-y=SIZE default screen height | |
97 EOF | |
98 exit 0 | |
99 fi | |
100 | |
101 # LGB: Some inital help | |
102 | |
103 echo "You can get detailed help on configure with: $0 --help" | |
104 echo "Please wait while ./configure discovers your software and hardware environment!" | |
105 | |
106 # LGB: temporary files | |
107 | |
4 | 108 TMPC="mplayer-conf-${RANDOM}-$$-${RANDOM}.c" |
109 TMPO="mplayer-conf-${RANDOM}-$$-${RANDOM}.o" | |
1 | 110 |
4 | 111 if [ ! -z $TMPDIR ]; then |
112 TMPC="${TMPDIR}/${TMPC}" | |
113 TMPO="${TMPDIR}/${TMPO}" | |
114 elif [ ! -z $TEMPDIR ]; then | |
115 TMPC="${TEMPDIR}/${TMPC}" | |
116 TMPO="${TEMPDIR}/${TMPO}" | |
117 else | |
118 TMPC="/tmp/${TMPC}" | |
119 TMPO="/tmp/${TMPO}" | |
120 fi | |
1 | 121 |
122 # --- | |
123 | |
124 # config files | |
125 CCONF='config.h' | |
126 MCONF='config.mak' | |
127 | |
196 | 128 # --- Check for C compiler: |
129 | |
130 _cc=gcc | |
131 | |
132 for ac_option | |
133 do | |
134 case "$ac_option" in | |
135 --cc=*) | |
136 _cc=`echo $ac_option | cut -d '=' -f 2` | |
137 ;; | |
138 esac | |
139 done | |
140 | |
1 | 141 # --- |
142 | |
143 TAB=`echo -n -e "\t"` | |
144 pname=`cat /proc/cpuinfo | grep 'model name' | cut -d ':' -f 2` | |
145 pparam=`cat /proc/cpuinfo | grep 'features' | cut -d ':' -f 2` | |
146 if [ -z "$pparam" ]; then | |
147 pparam=`cat /proc/cpuinfo | grep 'flags' | cut -d ':' -f 2` | |
148 fi | |
149 pvendor=`cat /proc/cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
150 pfamily=`cat /proc/cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
151 pmodel=`cat /proc/cpuinfo | grep "model$TAB" | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
152 pstepping=`cat /proc/cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
153 | |
154 _mmx=no | |
155 _3dnow=no | |
156 _mtrr=no | |
157 _sse=no | |
158 _mga=no | |
159 _gl=no | |
160 _sdl=no | |
161 _xv=no | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
162 _vm=no |
1 | 163 _x11=no |
164 _3dfx=no | |
165 _syncfb=no | |
166 _mlib=no | |
167 _mpg123=no | |
168 _xmga=no | |
11 | 169 _dga=no |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
170 _dga2=no |
225 | 171 _fbdev=no |
1 | 172 _lirc=no |
173 | |
174 _x=1 | |
175 _y=1 | |
176 | |
177 _gllib= | |
178 _sdllib= | |
179 _x11lib= | |
180 _xvlib= | |
181 _xlibdir= | |
182 | |
183 for i in `echo $pparam`; do | |
184 | |
185 case "$i" in | |
186 3dnow) | |
187 _3dnow=yes | |
188 _mpg123=yes | |
189 ;; | |
190 mmx) | |
191 _mmx=yes | |
192 ;; | |
193 mtrr) | |
194 _mtrr=yes | |
195 ;; | |
196 k6_mtrr) | |
197 _mtrr=yes | |
198 ;; | |
199 xmm) | |
200 _sse=yes | |
201 ;; | |
202 sse) | |
203 _sse=yes | |
204 ;; | |
205 kni) | |
206 _sse=yes | |
207 ;; | |
208 esac | |
209 | |
210 done | |
211 | |
212 if [ -e /usr/X11R6 ]; then | |
213 _x11libdir=-L/usr/X11R6/lib | |
214 else | |
215 if [ -e /usr/X11 ]; then | |
216 _x11libdir=-L/usr/X11/lib | |
217 fi | |
218 fi | |
219 | |
220 _win32libdirnotify=no | |
221 if [ -e /usr/lib/win32 ]; then | |
222 _win32libdir=/usr/lib/win32 | |
223 else | |
224 if [ -e /usr/local/lib/win32 ]; then | |
225 _win32libdir=/usr/local/lib/win32 | |
226 else | |
227 # This is our default: | |
228 _win32libdir=/usr/lib/win32 | |
229 _win32libdirnotify=yes | |
230 fi | |
231 fi | |
232 | |
233 | |
234 if [ -e /dev/mga_vid ]; then | |
235 _mga=yes | |
236 _syncfb=yes | |
237 fi | |
238 | |
239 proc=pentium | |
240 | |
241 case "$pvendor" in | |
242 AuthenticAMD) | |
243 case "$pfamily" in | |
244 3) | |
245 proc=i386 | |
246 ;; | |
247 4) | |
248 proc=i486 | |
249 ;; | |
250 5) | |
251 if [ $pmodel -ge 6 ]; then # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3 | |
252 proc=k6 | |
253 else | |
254 proc=k5 | |
255 fi | |
256 ;; | |
257 6|7) # LGB: Though it seems Athlon CPUs returns with "6" | |
258 proc=k7 | |
259 ;; | |
260 *) | |
261 proc=pentium | |
262 ;; | |
263 esac | |
264 ;; | |
265 GenuineIntel) | |
266 case "$pfamily" in | |
267 3) | |
268 proc=i386 | |
269 ;; | |
270 4) | |
271 proc=i486 | |
272 ;; | |
273 5) | |
274 proc=pentium | |
275 ;; | |
276 6) | |
277 proc=i686 | |
278 ;; | |
279 *) | |
280 proc=pentium | |
281 ;; | |
282 esac | |
283 ;; | |
284 unknown) # added by Gabucino - upon Tibcu's request | |
285 case "$pfamily" in | |
286 3) | |
287 proc=i386 | |
288 ;; | |
289 4) | |
290 proc=i486 | |
291 ;; | |
292 *) | |
293 proc=pentium | |
294 ;; | |
295 esac | |
296 ;; | |
297 *) | |
298 proc=pentium | |
299 ;; | |
300 esac | |
301 | |
302 # --- | |
303 | |
304 cat > $TMPC << EOF | |
305 int main( void ) { return 0; } | |
306 EOF | |
307 | |
308 # check that gcc supports our cpu, if not, fallback to pentium | |
309 # LGB: check -mcpu and -march swithing step by step with enabling | |
310 # to fall back till 386. | |
311 | |
312 #echo -n "Checking your GCC CPU optimalization abilities: " | |
313 if [ "$proc" = "k7" ]; then | |
314 # echo -n "trying k7 " | |
196 | 315 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=athlon |
1 | 316 fi |
317 if [ "$proc" = "athlon" ]; then | |
318 # echo -n "trying athlon " | |
196 | 319 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=k6 |
1 | 320 fi |
321 if [ "$proc" = "k6" ]; then | |
322 # echo -n "trying k6 " | |
196 | 323 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=k5 |
1 | 324 fi |
325 if [ "$proc" = "k5" ]; then | |
326 # echo -n "trying k5 " | |
196 | 327 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentium |
1 | 328 fi |
329 if [ "$proc" = "i686" ]; then | |
330 # echo -n "trying i686 " | |
196 | 331 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentiumpro |
1 | 332 fi |
333 if [ "$proc" = "pentiumpro" ]; then | |
334 # echo -n "trying pentiumpro " | |
196 | 335 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentium |
1 | 336 fi |
337 if [ "$proc" = "pentium" ]; then | |
338 # echo -n "trying pentium " | |
196 | 339 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=i486 |
1 | 340 fi |
341 if [ "$proc" = "i486" ]; then | |
342 # echo -n "trying i486 " | |
196 | 343 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=i386 |
1 | 344 fi |
345 if [ "$proc" = "i386" ]; then | |
346 # echo -n "trying i386 " | |
196 | 347 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=error |
1 | 348 fi |
349 if [ "$proc" = "error" ]; then | |
350 echo | |
351 echo "Your gcc does not support even \"i386\" for '-march' and '-mcpu'." >&2 | |
352 rm -f $TMPC $TMPO | |
353 exit | |
354 fi | |
355 #echo "DONE (${proc})." | |
356 | |
357 | |
358 # check GL & X11 & Xext & Xv & SDL & termcap libs | |
359 | |
196 | 360 $_cc $TMPC -o $TMPO $_x11libdir/ -lGL &> /dev/null && _gl=yes |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
361 $_cc $TMPC -o $TMPO $_x11libdir/ -lXxf86vm &> /dev/null && _vm=yes |
196 | 362 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext &> /dev/null && _x11=yes |
363 $_cc $TMPC -o $TMPO $_x11libdir -lXv &> /dev/null && _xv=yes | |
364 $_cc $TMPC -o $TMPO $_x11libdir -L/usr/local/lib/ -lpthread &> /dev/null || \ | |
1 | 365 { echo "Lib pthread not found."; rm -f $TMPC $TMPO ; exit 1; } |
366 | |
367 # SDL disabled by default (0.11pre22-) because of the compilation problems | |
368 # this is very buggy & experimental code, use it only if you really need it!! | |
369 _have_sdl=no | |
196 | 370 $_cc $TMPC -o $TMPO $_x11libdir -L/usr/local/lib/ -lSDL -lpthread &> /dev/null && _have_sdl=yes |
1 | 371 |
372 _termcap=no | |
196 | 373 $_cc $TMPC -o $TMPO -ltermcap &> /dev/null && _termcap=yes |
1 | 374 |
375 _binutils=no | |
376 as libac3/downmix/downmix_i386.S -o $TMPO &> /dev/null && _binutils=yes | |
377 | |
59 | 378 # LGB: Check DGA |
379 | |
380 cat > $TMPC << EOF | |
381 #include <stdio.h> | |
382 #include <X11/Xlib.h> | |
383 #include <X11/extensions/xf86dga.h> | |
384 int main (void) { return 0;} | |
385 EOF | |
386 | |
387 _dga=no | |
196 | 388 $_cc $TMPC -o $TMPO -L/usr/X11R6/lib -L/usr/X11/lib -lX11 -lXext -lXxf86dga -lXxf86vm &> /dev/null && _dga=yes |
59 | 389 # Note: the -lXxf86vm library is the VideoMode extension and though it's |
390 # not needed for DGA, AFAIK every distribution packages together with DGA | |
391 # stuffs named 'X extensions' or something similar. This check can be usefull | |
392 # for further mplayer versions to set resolution by mplayer itself. | |
393 # If you run into problems, remove '-lXxf86vm'. | |
394 | |
395 # --- | |
396 | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
397 # Check if DGA is 2.0 or greater |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
398 cat > $TMPC << EOF |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
399 #include <stdio.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
400 #include <X11/Xlib.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
401 #include <X11/extensions/xf86dga.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
402 int main (void) { XDGAMode mode; XDGADevice device; return 0;} |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
403 EOF |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
404 |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
405 _dga2=no |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
406 $_cc $TMPC -o $TMPO -L/usr/X11R6/lib -L/usr/X11/lib -lX11 -lXext -lXxf86dga -lXxf86vm &> /dev/null && _dga2=yes |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
407 |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
408 |
1 | 409 cat > $TMPC << EOF |
410 #include <GL/gl.h> | |
411 int main( void ) { return 0; } | |
412 EOF | |
413 | |
196 | 414 $_cc $TMPC -o $TMPO $_x11libdir/ -lGL &> /dev/null || \ |
1 | 415 { _gl=no; echo "GL includes not found!";} |
416 | |
417 rm -f $TMPC $TMPO | |
418 | |
419 | |
420 if [ $_x11 = 'yes' ]; then | |
421 if [ $_mga = 'yes' ]; then | |
422 _xmga=yes | |
423 fi | |
424 fi | |
425 | |
426 # --- | |
427 | |
428 # check for the parameters. | |
429 | |
430 for ac_option | |
431 do | |
432 case "$ac_option" in | |
433 --enable-sse) | |
434 _sse=yes | |
435 ;; | |
436 --enable-3dnow) | |
437 _3dnow=yes | |
438 ;; | |
439 --enable-mmx) | |
440 _mmx=yes | |
441 ;; | |
72 | 442 --enable-mtrr) |
443 _mtrr=yes | |
444 ;; | |
1 | 445 --enable-gl) |
446 _gl=yes | |
447 ;; | |
448 --enable-sdl) | |
449 _sdl=yes | |
450 ;; | |
451 --enable-mga) | |
452 _mga=yes | |
453 ;; | |
454 --enable-xmga) | |
455 _xmga=yes | |
456 ;; | |
11 | 457 --enable-dga) |
458 _dga=yes | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
459 ;; |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
460 --enable-dga2) |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
461 _dga2=yes |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
462 ;; |
1 | 463 --enable-xv) |
464 _xv=yes | |
465 ;; | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
466 --enable-vm) |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
467 _vm=yes |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
468 ;; |
1 | 469 --enable-x11) |
470 _x11=yes | |
471 ;; | |
472 --enable-3dfx) | |
473 _3dfx=yes | |
474 ;; | |
475 --enable-syncfb) | |
476 _syncfb=yes | |
477 ;; | |
225 | 478 --enable-fbdev) |
479 _fbdev=yes | |
480 ;; | |
1 | 481 --enable-mlib) |
482 _mlib=yes | |
483 ;; | |
484 --enable-termcap) | |
485 _termcap=yes | |
486 ;; | |
487 --enable-xmmp) | |
488 _xmmp=yes | |
489 ;; | |
490 --enable-lirc) | |
491 _lirc=yes | |
492 ;; | |
493 --disable-sse) | |
494 _sse=no | |
495 ;; | |
496 --disable-3dnow) | |
497 _3dnow=no | |
498 ;; | |
499 --disable-mmx) | |
500 _mmx=no | |
501 ;; | |
72 | 502 --disable-mtrr) |
503 _mtrr=no | |
504 ;; | |
1 | 505 --disable-gl) |
506 _gl=no | |
507 ;; | |
508 --disable-sdl) | |
509 _sdl=no | |
510 ;; | |
511 --disable-mga) | |
512 _mga=no | |
513 ;; | |
514 --disable-xmga) | |
515 _xmga=no | |
516 ;; | |
517 --disable-xv) | |
518 _xv=no | |
519 ;; | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
520 --disable-vm) |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
521 _vm=no |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
522 ;; |
1 | 523 --disable-x11) |
524 _x11=no | |
525 ;; | |
526 --disable-mlib) | |
527 _mlib=no | |
528 ;; | |
59 | 529 --disable-dga) |
530 _dga=no | |
531 ;; | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
532 --disable-dga2) |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
533 _dga2=no |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
534 ;; |
225 | 535 --disable-fbdev) |
536 _fbdev=no | |
537 ;; | |
1 | 538 --disable-termcap) |
539 _termcap=no | |
540 ;; | |
541 --with-x11libdir=*) | |
542 _x11libdir=-L`echo $ac_option | cut -d '=' -f 2` | |
543 ;; | |
544 --with-win32libdir=*) | |
545 _win32libdir=`echo $ac_option | cut -d '=' -f 2` | |
11 | 546 _win32libdirnotify=no |
1 | 547 ;; |
548 --size-x=*) | |
549 _x=`echo $ac_option | cut -d '=' -f 2` | |
550 ;; | |
551 --size-y=*) | |
552 _y=`echo $ac_option | cut -d '=' -f 2` | |
553 ;; | |
196 | 554 --cc=*) |
555 ;; | |
1 | 556 esac |
557 done | |
558 | |
559 # to screen. | |
196 | 560 echo "Using C compiler: $_cc" |
1 | 561 echo "Checking for cpu vendor ... $pvendor ( $pfamily:$pmodel:$pstepping )" |
562 echo "Checking for cpu type ... $pname" | |
563 echo "Optimizing to ... $proc" | |
564 echo "Checking for mmx support ... $_mmx" | |
565 echo "Checking for 3dnow support ... $_3dnow" | |
566 echo "Checking for sse support ... $_sse" | |
567 echo "Checking for mtrr support ... $_mtrr" | |
568 echo "Screen size ... ${_x}x${_y}" | |
569 echo "Checking for X11 libs ... $_x11libdir" | |
570 echo "Checking mga_vid device ... $_mga" | |
571 echo "Checking for xmga ... $_xmga" | |
572 echo "Checking for SDL ... $_sdl" | |
573 echo "Checking for OpenGL ... $_gl" | |
574 echo "Checking for Xv ... $_xv" | |
575 echo "Checking for X11 ... $_x11" | |
59 | 576 echo "Checking for DGA ... $_dga" |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
577 echo "Checking for DGA 2.0 .. $_dga2" |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
578 echo "Checking for Xf86VM ... $_vm" |
225 | 579 echo "Checking for FBDev ... $_fbdev" |
1 | 580 # write conf files. |
581 | |
582 if [ $_gl = yes ]; then | |
583 _gllib='-lGL' | |
584 fi | |
585 | |
586 if [ $_x11 = yes ]; then | |
587 _x11lib='-lX11 -lXext' | |
588 fi | |
589 | |
590 if [ $_xv = yes ]; then | |
591 _xvlib='-lXv' | |
592 fi | |
593 | |
594 if [ $_sdl = yes ]; then | |
595 _sdllib='-lSDL -lpthread' | |
596 fi | |
597 | |
14 | 598 if [ $_dga = yes ]; then |
599 _dgalib='-lXxf86dga' | |
600 fi | |
601 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
602 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
603 _vmlib='-lXxf86vm' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
604 fi |
14 | 605 |
1 | 606 if [ "$_termcap" = "yes" ]; then |
607 _termcap='#define USE_TERMCAP' | |
608 _libtermcap='-ltermcap' | |
609 else | |
610 _termcap='#undef USE_TERMCAP' | |
611 _libtermcap='' | |
612 fi | |
613 | |
614 if [ "$_xmmp" = "yes" ]; then | |
615 _xmmpaudio='#define USE_XMMP_AUDIO' | |
616 _xmmplibs='-Llibxmm -lxmm' | |
617 else | |
618 _xmmpaudio='#undef USE_XMMP_AUDIO' | |
619 fi | |
620 | |
621 if [ "$_lirc" = "yes" ]; then | |
622 _lircdefs='#define HAVE_LIRC' | |
623 _lirclibs='-llirc_client' | |
624 else | |
625 _lircdefs='#undef HAVE_LIRC' | |
626 _lirclibs='' | |
627 fi | |
628 | |
629 | |
630 echo | |
631 echo "Creating $MCONF" | |
632 cat > $MCONF << EOF | |
633 | |
634 # -------- Generated by ./configure ----------- | |
635 | |
636 AR=ar | |
196 | 637 CC=$_cc |
1 | 638 # OPTFLAGS=-O4 -march=$proc -mcpu=$proc -pipe -fomit-frame-pointer -ffast-math |
639 OPTFLAGS=-O4 -march=$proc -mcpu=$proc -pipe -ffast-math | |
14 | 640 # LIBS=-L/usr/lib -L/usr/local/lib $_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
641 X_LIBS=$_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib $_vmlib |
1 | 642 TERMCAP_LIB=$_libtermcap |
643 XMM_LIBS = $_xmmplibs | |
644 LIRC_LIBS = $_lirclibs | |
645 WIN32_PATH=-DWIN32_PATH=\"$_win32libdir\" | |
646 | |
647 EOF | |
648 # echo 'CFLAGS=$(OPTFLAGS) -Wall -DMPG12PLAY' >> config.mak | |
649 | |
650 echo "Creating $CCONF" | |
651 | |
652 if [ "$_mmx" = "yes" ]; then | |
653 _mmx='#define HAVE_MMX' | |
654 else | |
655 _mmx='#undef HAVE_MMX' | |
656 fi | |
657 | |
658 if [ $_3dnow = yes ]; then | |
659 _3dnowm='#define HAVE_3DNOW' | |
660 else | |
661 _3dnowm='#undef HAVE_3DNOW' | |
662 fi | |
663 | |
664 if [ $_sse = yes ]; then | |
665 _ssem='#define HAVE_SSE' | |
666 else | |
667 _ssem='#undef HAVE_SSE' | |
668 fi | |
669 | |
670 # --- | |
671 | |
672 _vosrc='' | |
673 | |
674 if [ $_mlib = yes ]; then | |
675 _mlib='#define HAVE_MLIB' | |
676 _vosrc=$_vosrc' yuv2rgb_mlib.c' | |
677 else | |
678 _mlib='#undef HAVE_MLIB' | |
679 fi | |
680 | |
681 # --- | |
682 | |
683 if [ $_gl = yes ]; then | |
684 _gl='#define HAVE_GL' | |
685 _vosrc=$_vosrc' vo_gl.c' | |
686 else | |
687 _gl='#undef HAVE_GL' | |
688 fi | |
689 | |
690 if [ $_sdl = yes ]; then | |
691 _sdldef='#define HAVE_SDL' | |
692 _vosrc=$_vosrc' vo_sdl.c' | |
693 else | |
694 _sdldef='#undef HAVE_SDL' | |
695 fi | |
696 | |
697 if [ $_x11 = yes ]; then | |
698 _x11='#define HAVE_X11' | |
699 _vosrc=$_vosrc' vo_x11.c' | |
700 else | |
701 _x11='#undef HAVE_X11' | |
702 fi | |
703 | |
704 if [ $_xv = yes ]; then | |
705 _xv='#define HAVE_XV' | |
706 _vosrc=$_vosrc' vo_xv.c' | |
707 else | |
708 _xv='#undef HAVE_XV' | |
709 fi | |
710 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
711 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
712 _vm='#define HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
713 else |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
714 _vm='#undef HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
715 fi |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
716 |
1 | 717 # --- |
718 | |
719 if [ $_mga = yes ]; then | |
720 _mga='#define HAVE_MGA' | |
721 _vosrc=$_vosrc' vo_mga.c' | |
722 else | |
723 _mga='#undef HAVE_MGA' | |
724 fi | |
725 if [ $_xmga = yes ]; then | |
726 _vosrc=$_vosrc' vo_xmga.c' | |
727 fi | |
728 | |
729 if [ $_syncfb = yes ]; then | |
730 _syncfb='#define HAVE_SYNCFB' | |
731 _vosrc=$_vosrc' vo_syncfb.c' | |
732 else | |
733 _syncfb='#undef HAVE_SYNCFB' | |
734 fi | |
735 | |
736 if [ $_3dfx = yes ]; then | |
737 _3dfx='#define HAVE_3DFX' | |
738 _vosrc=$_vosrc' vo_3dfx.c' | |
739 else | |
740 _3dfx='#undef HAVE_3DFX' | |
741 fi | |
742 | |
11 | 743 if [ $_dga = yes ]; then |
744 _dga='#define HAVE_DGA' | |
38 | 745 _vosrc=$_vosrc' vo_dga.c vo_fsdga.c' |
11 | 746 else |
747 _dga='#undef HAVE_DGA' | |
748 fi | |
749 | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
750 if [ $_dga2 = yes ]; then |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
751 _dga2='#define HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
752 _vosrc=$_vosrc' vo_dga.c vo_fsdga.c' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
753 else |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
754 _dga2='#undef HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
755 fi |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
756 |
225 | 757 if [ $_fbdev = yes ]; then |
758 _fbdev='#define HAVE_FBDEV' | |
759 _vosrc=$_vosrc' vo_fbdev.c' | |
760 else | |
761 _fbdev='#undef HAVE_FBDEV' | |
762 fi | |
763 | |
1 | 764 if [ $_mpg123 = yes ]; then |
765 _mpg123='#define DEFAULT_MPG123' | |
766 else | |
767 _mpg123='#undef DEFAULT_MPG123' | |
768 fi | |
769 | |
770 cat > $CCONF << EOF | |
771 | |
772 /* -------- Generated by ./configure ----------- */ | |
773 | |
774 /* Define this to enable avg. byte/sec-based AVI sync method by default: | |
775 (use -bps or -nobps commandline option for run-time method selection) */ | |
776 #undef AVI_SYNC_BPS | |
777 | |
778 /* Undefine this if you want soundcard-only timing by default: | |
779 You can still change this with the -alsa or -noalsa command-line option! | |
780 (This function was originally impemented to solve ALSA driver's big | |
781 buffer problems, but it seems to be useful for every soundcard drivers) */ | |
782 #define ALSA_TIMER | |
783 | |
784 /* Undefine this if your soundcard driver has no working select(). | |
785 If you have kernel Oops, player hangups, or just no audio, you should | |
786 try to recompile MPlayer with this option disabled! */ | |
787 #define HAVE_AUDIO_SELECT | |
788 | |
789 /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) | |
790 #define this if you prefer mpg123 (with 3Dnow! support) than l3codeca.acm | |
791 (with mmx/sse optimizations) | |
792 You can still change it runtime using -afm 1 (mpg123) or -afm 4 (l3codeca)*/ | |
793 $_mpg123 | |
794 | |
795 /* XMMP support: (test code) */ | |
796 $_xmmpaudio | |
797 #define LIBDIR "/usr/local/lib" | |
798 #define PLUGINDIR LIBDIR "/xmmp/Plugins" | |
799 #define XMMP_AUDIO_DRIVER PLUGINDIR "/Sound/oss.so" | |
800 | |
801 /* LIRC (remote control, see www.lirc.org) support: */ | |
802 $_lircdefs | |
803 | |
41 | 804 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
805 #define MPEG12_POSTPROC | |
806 | |
1 | 807 /* Define if your processor stores words with the most significant |
808 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
809 /* #define WORDS_BIGENDIAN */ | |
810 | |
811 #define ARCH_X86 | |
812 | |
813 ///////////////////////////////////////////////////////////////////////////// | |
814 // | |
815 // NOTE: Instead of modifying these here, use the --enable/--disable options | |
816 // of the ./configure script! See ./configure --help for details. | |
817 // | |
818 ///////////////////////////////////////////////////////////////////////////// | |
819 | |
820 /* termcap flag for getch2.c */ | |
821 $_termcap | |
822 | |
823 /* Extension defines */ | |
824 $_mlib // available only on solaris | |
825 $_3dnowm // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) | |
826 $_mmx // only define if you have MMX | |
827 $_ssem // only define if you have SSE (Intel Pentium III or Celeron II) | |
828 | |
829 /* libvo options */ | |
830 #define SCREEN_SIZE_X $_x | |
831 #define SCREEN_SIZE_Y $_y | |
832 $_x11 | |
833 $_xv | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
834 $_vm |
1 | 835 $_gl |
11 | 836 $_dga |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
837 $_dga2 |
1 | 838 $_sdldef |
839 $_3dfx | |
840 $_mga | |
841 $_syncfb | |
225 | 842 $_fbdev |
1 | 843 |
23 | 844 #if defined(HAVE_GL)||defined(HAVE_X11)||defined(HAVE_XV) |
1 | 845 #define X11_FULLSCREEN |
846 #endif | |
847 | |
848 EOF | |
849 | |
850 echo "Creating libvo/config.mak" | |
851 | |
852 _voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'` | |
853 | |
854 cat > libvo/config.mak << EOF | |
855 | |
856 include ../config.mak | |
857 | |
858 OPTIONAL_SRCS=$_vosrc | |
859 OPTIONAL_OBJS=$_voobj | |
860 | |
861 EOF | |
862 | |
863 echo "Creating libac3/config.mak" | |
864 | |
865 if [ $_sse = yes ]; then | |
866 _downmixc='downmix/downmix_kni.S' | |
867 _downmixo='downmix/downmix_kni.o' | |
868 else | |
869 if [ $_binutils = yes ]; then | |
870 _downmixc='downmix/downmix_i386.S' | |
871 _downmixo='downmix/downmix_i386.o' | |
872 else | |
873 _downmixc='downmix/downmix.c' | |
874 _downmixo='downmix/downmix.o' | |
875 cat << EOF | |
876 | |
877 !!! Warning! fallback to slow downmix.c due the old binutils. | |
878 !!! Upgrade for better audio decoding performance. | |
879 | |
880 EOF | |
881 fi | |
882 fi | |
883 | |
884 cat > libac3/config.mak << EOF | |
885 | |
886 include ../config.mak | |
887 | |
888 OPTIONAL_SRCS = $_downmixc | |
889 OPTIONAL_OBJS = $_downmixo | |
890 | |
891 EOF | |
892 | |
893 echo "Creating mp3lib/config.mak" | |
894 | |
895 if [ $_3dnow = yes ]; then | |
896 _3dnowobjectsrcs='dct36_3dnow.s dct64_3dnow.s decode_3dnow.s' | |
897 _3dnowobjectobjs='dct36_3dnow.o dct64_3dnow.o decode_3dnow.o' | |
898 else | |
899 _3dnowobjectsrcs= | |
900 _3dnowobjectobjs= | |
901 fi | |
902 | |
903 cat > mp3lib/config.mak << EOF | |
904 | |
905 include ../config.mak | |
906 | |
907 OPTIONAL_SRCS = $_3dnowobjectsrcs | |
908 OPTIONAL_OBJS = $_3dnowobjectobjs | |
909 | |
910 EOF | |
911 | |
912 cat << EOF | |
913 | |
914 Config files successfully generated by ./configure ! | |
915 Please check config.h and config.mak files, tune CPU | |
916 and optimization flags if you don't like these defaults. | |
917 You can compile the program with 'make dep;make' and | |
918 install with 'make install'. Good luck! | |
919 | |
920 EOF | |
921 | |
922 if [ $_mtrr = yes ]; then | |
923 echo "Please check mtrr settings at /proc/mtrr (see DOCS/MTRR)" | |
924 echo | |
925 fi | |
926 | |
927 if [ $_sdl = no ]; then | |
928 if [ $_have_sdl = yes ]; then | |
929 echo "You have libSDL installed, but SDL support is disabled by default." | |
930 echo "If you want to compile MPlayer with SDL support, re-run ./configure" | |
931 echo "with --enable-sdl. But it's very buggy & experimental code, use it" | |
932 echo "only if you really need it! And it works(?) *ONLY* with SDL v1.1.7 !" | |
933 echo "(SDL driver is NOT supported, so do NOT report bugs relating to SDL!)" | |
934 echo | |
935 fi | |
936 fi | |
937 | |
938 if [ $_win32libdirnotify = yes ]; then | |
939 echo "Missing WIN32 codecs dir at $_win32libdir !" | |
940 echo "Make it and copy DLL files to there! (You can get them from your windows" | |
941 echo "directory or download ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip" | |
942 else | |
943 echo "Ok, Win32 codecs directory at $_win32libdir already exists." | |
944 fi | |
945 |