Mercurial > mplayer.hg
annotate configure @ 734:bab1d9b1056a
K7 3dnow-dsp detection
author | nickols_k |
---|---|
date | Wed, 09 May 2001 07:54:56 +0000 |
parents | e14114170e01 |
children | cd1f0d4de0b8 |
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 # |
492 | 9 # 2001/04/16 by LGB |
10 # - added libcss stuffs | |
11 # | |
463 | 12 # 2001/04/15 by Pontscho |
13 # - added --disable-select option | |
14 # - added X11DIR variable in config.mak and fix syncfb Makefile -L/usr/X11/lib bug | |
15 # | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
16 # 2001/03/24 by Mike Graffam: |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
17 # - 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
|
18 # |
196 | 19 # 2001/03/22 by Bivanbi: |
20 # - new option: --cc (to specify C compiler path+name) | |
21 # | |
22 # 2001/03/08 by LGB: | |
492 | 23 # - DGA detect-o-matic :) |
59 | 24 # - '--disable-dga' option to force disabling DGA vo driver compiling into mplayer |
25 # - line about '--enable-dga' is added to the help message | |
26 # | |
196 | 27 # 2001/02/26 by A'rpi: |
11 | 28 # - added DGA option: --enable-dga |
29 # - no notify if --with-win32libdir used [Tibcu] | |
30 # | |
196 | 31 # 2001/02/25 by LGB: |
4 | 32 # - TMPDIR or TEMPDIR variable is honored during tests for temporary files |
33 # - ChangeLog inside configure was reversed ;-) | |
1 | 34 # |
35 # some changes by A'rpi/ESP-team: | |
4 | 36 # - added 'athlon' target for the new athlongcc [Ian Kumlien] |
37 # - applied _win32libdir=-L patch by Magnus Pfeffer | |
1 | 38 # |
39 # some changes by LGB: | |
40 # - Ehhh, AMD K6-2 returns with cpuid 5 ;-) Changing back Arpi's last change :) | |
41 # More info: AMD K6-2 reports with family 5, duron with 6, so I attached | |
42 # much finer CPU type detection based on Linux kernel's one :) | |
43 # (k5: 5, model<6, k6: 5, model>=6, k7: 6, model=any) | |
44 # - On some exit point (error) temporary files were not deleted. Fixed. | |
45 # - $TMP and $TMP2 are renamed to $TMPC and $TMPO ;-) | |
46 # - Some useless { ... } are removed | |
47 # | |
48 # some changes by A'rpi/ESP-team: | |
11 | 49 # - the --with-win32libdir patch by Aaron Hope applied |
4 | 50 # - some english bugfix again :) |
51 # - cpu type selection changed: | |
52 # ( k7->k6->k5-> ) || (i686->pentiumpro-> ) pentium-> i486 -> i386 -> error! | |
53 # - cpu type for AMD/family=5 changed k6->k5 | |
54 # | |
55 # some changes by LGB (Gábor Lénárt): | |
56 # - SOME gcc may support 'k7', so I added tests for ALL CPU type optimization | |
57 # switches with the ability to find out the best optimization for your CPU. | |
58 # - Help moved to the begining to avoid tests if user only wants help. | |
59 # - A one lined help to indicate detailed help for users | |
60 # - Fixed /tmp race (PIDs can be predicted, I added random numbers as well) | |
61 # | |
62 # some changes by A'rpi/ESP-team: | |
63 # - some english bugfix :) | |
64 # - removed _??exists flags, _?? is enough... | |
65 # - creating only config.mak files instead of whole Makefiles | |
1 | 66 # |
67 # -- | |
68 | |
69 | |
70 # LGB: Help moved here. | |
71 | |
72 if [ "$1" = "--help" -o "$1" = "-help" -o "$1" = "-h" ]; then | |
73 cat << EOF | |
74 | |
75 usage: $0 [options] | |
76 | |
77 params: | |
196 | 78 --cc use this C compiler to build MPlayer [gcc] |
717 | 79 --enable-debug[=1-3] compile debugging information into mplayer [disable] |
80 --enable-profile compile profiling information into mplayer [disable] | |
1 | 81 --enable-mmx build with mmx support [autodetect] |
350 | 82 --enable-mmx2 build with mmx2 support (PIII, Athlon) [autodetect] |
1 | 83 --enable-3dnow build with 3dnow! support [autodetect] |
734 | 84 --enable-3dnowex build with 3dnow-dsp! support (K7) [autodetect] |
1 | 85 --enable-sse build with sse support [autodetect] |
86 --enable-gl build with OpenGL render support [autodetect] | |
59 | 87 --enable-dga build with DGA support [autodetect] |
287 | 88 --enable-svga build with SVGAlib support [autodetect] |
548
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
89 --enable-sdl build with SDL render support [autodetect] |
1 | 90 --enable-mga build with mga_vid support [autodetect, if /dev/mga_vid |
91 is available] | |
92 --enable-xmga build with mga_vid X Window support [autodetect, | |
93 if both /dev/mga_vid and x11 are available] | |
94 --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
|
95 --enable-vm build with XF86VidMode support for x11 driver |
1 | 96 --enable-x11 build with X11 render support [autodetect] |
225 | 97 --enable-fbdev build with FBDev render support [_not_ autodetected] |
1 | 98 --enable-mlib build with MLIB support ( only Solaris ) |
99 | |
100 --enable-termcap use termcap database for key codes | |
101 --enable-xmmp use XMMP audio drivers | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
102 --enable-lirc enable LIRC (remote control) support |
1 | 103 |
463 | 104 --disable-select disable audio select() support ( for example required this |
105 option ALSA or Vortex2 driver ) | |
106 | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
107 --disable-dshow disable DirectShow support (if you don't have |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
108 C++ compiler&libs, or you've found dshow codecs |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
109 slower than old VfW ones) |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
110 |
642 | 111 --disable-fastmemcpy disable 3dnow/sse/mmx optimized memcpy() |
112 | |
1 | 113 --with-x11libdir=DIR X library files are in DIR |
114 --with-win32libdir=DIR windows codec files | |
492 | 115 --with-csslibdir=DIR directory contains libcss.so shared library |
116 --with-cssincdir=DIR directory contains libcss header file (css.h) | |
661 | 117 (--with-css* only needed, if libCSS autodetect fails) |
1 | 118 |
119 --size-x=SIZE default screen width | |
120 --size-y=SIZE default screen height | |
121 EOF | |
122 exit 0 | |
123 fi | |
124 | |
125 # LGB: Some inital help | |
126 | |
127 echo "You can get detailed help on configure with: $0 --help" | |
128 echo "Please wait while ./configure discovers your software and hardware environment!" | |
129 | |
130 # LGB: temporary files | |
131 | |
4 | 132 TMPC="mplayer-conf-${RANDOM}-$$-${RANDOM}.c" |
133 TMPO="mplayer-conf-${RANDOM}-$$-${RANDOM}.o" | |
1 | 134 |
4 | 135 if [ ! -z $TMPDIR ]; then |
136 TMPC="${TMPDIR}/${TMPC}" | |
137 TMPO="${TMPDIR}/${TMPO}" | |
138 elif [ ! -z $TEMPDIR ]; then | |
139 TMPC="${TEMPDIR}/${TMPC}" | |
140 TMPO="${TEMPDIR}/${TMPO}" | |
141 else | |
142 TMPC="/tmp/${TMPC}" | |
143 TMPO="/tmp/${TMPO}" | |
144 fi | |
1 | 145 |
146 # --- | |
147 | |
148 # config files | |
149 CCONF='config.h' | |
150 MCONF='config.mak' | |
151 | |
196 | 152 # --- Check for C compiler: |
153 | |
154 _cc=gcc | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
155 _x11=auto |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
156 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
157 _x11libdir= |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
158 if [ -e /usr/X11R6 ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
159 _x11libdir=-L/usr/X11R6/lib |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
160 else |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
161 if [ -e /usr/X11 ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
162 _x11libdir=-L/usr/X11/lib |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
163 fi |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
164 fi |
196 | 165 |
166 for ac_option | |
167 do | |
168 case "$ac_option" in | |
169 --cc=*) | |
170 _cc=`echo $ac_option | cut -d '=' -f 2` | |
171 ;; | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
172 --with-x11libdir=*) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
173 _x11libdir=-L`echo $ac_option | cut -d '=' -f 2` |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
174 ;; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
175 --enable-x11) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
176 _x11=yes |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
177 ;; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
178 --disable-x11) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
179 _x11=no |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
180 ;; |
196 | 181 esac |
182 done | |
183 | |
1 | 184 # --- |
185 | |
186 TAB=`echo -n -e "\t"` | |
187 pname=`cat /proc/cpuinfo | grep 'model name' | cut -d ':' -f 2` | |
188 pparam=`cat /proc/cpuinfo | grep 'features' | cut -d ':' -f 2` | |
189 if [ -z "$pparam" ]; then | |
190 pparam=`cat /proc/cpuinfo | grep 'flags' | cut -d ':' -f 2` | |
191 fi | |
192 pvendor=`cat /proc/cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
193 pfamily=`cat /proc/cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
194 pmodel=`cat /proc/cpuinfo | grep "model$TAB" | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
195 pstepping=`cat /proc/cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2` | |
196 | |
197 _mmx=no | |
350 | 198 _mmx2=no |
1 | 199 _3dnow=no |
734 | 200 _3dnowex=no |
1 | 201 _mtrr=no |
202 _sse=no | |
525 | 203 |
1 | 204 _mga=no |
205 _gl=no | |
206 _sdl=no | |
207 _xv=no | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
208 _vm=no |
525 | 209 _xdpms=no |
1 | 210 _3dfx=no |
211 _syncfb=no | |
212 _mlib=no | |
213 _mpg123=no | |
214 _xmga=no | |
11 | 215 _dga=no |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
216 _dga2=no |
287 | 217 _svga=no |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
218 _fbdev=yes |
1 | 219 _lirc=no |
525 | 220 _css=no |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
221 _dshow=yes |
642 | 222 _fastmemcpy=yes |
1 | 223 |
224 _x=1 | |
225 _y=1 | |
226 | |
227 _gllib= | |
228 _sdllib= | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
229 _xvlib= |
440
d19a3da6ac13
Pontscho's mixer, select, and hell-a-lot-of-stuff patch ;)
gabucino
parents:
417
diff
changeset
|
230 _x11lib= |
1 | 231 |
463 | 232 _select='#define HAVE_AUDIO_SELECT' |
233 | |
723 | 234 _gui=no; |
235 | |
1 | 236 for i in `echo $pparam`; do |
237 | |
238 case "$i" in | |
239 3dnow) | |
240 _3dnow=yes | |
241 _mpg123=yes | |
242 ;; | |
734 | 243 3dnowext) |
244 _3dnow=yes | |
245 _3dnowex=yes | |
246 _mpg123=yes | |
247 ;; | |
1 | 248 mmx) |
249 _mmx=yes | |
250 ;; | |
350 | 251 mmxext) |
252 _mmx2=yes | |
253 ;; | |
1 | 254 mtrr) |
255 _mtrr=yes | |
256 ;; | |
257 k6_mtrr) | |
258 _mtrr=yes | |
259 ;; | |
260 xmm) | |
261 _sse=yes | |
356 | 262 _mmx2=yes |
1 | 263 ;; |
264 sse) | |
265 _sse=yes | |
356 | 266 _mmx2=yes |
1 | 267 ;; |
268 kni) | |
269 _sse=yes | |
356 | 270 _mmx2=yes |
1 | 271 ;; |
272 esac | |
273 | |
274 done | |
275 | |
276 | |
277 _win32libdirnotify=no | |
278 if [ -e /usr/lib/win32 ]; then | |
279 _win32libdir=/usr/lib/win32 | |
280 else | |
281 if [ -e /usr/local/lib/win32 ]; then | |
282 _win32libdir=/usr/local/lib/win32 | |
283 else | |
284 # This is our default: | |
285 _win32libdir=/usr/lib/win32 | |
286 _win32libdirnotify=yes | |
287 fi | |
288 fi | |
289 | |
290 | |
291 if [ -e /dev/mga_vid ]; then | |
292 _mga=yes | |
293 _syncfb=yes | |
294 fi | |
295 | |
296 proc=pentium | |
297 | |
298 case "$pvendor" in | |
299 AuthenticAMD) | |
300 case "$pfamily" in | |
301 3) | |
302 proc=i386 | |
303 ;; | |
304 4) | |
305 proc=i486 | |
306 ;; | |
307 5) | |
308 if [ $pmodel -ge 6 ]; then # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3 | |
309 proc=k6 | |
310 else | |
311 proc=k5 | |
312 fi | |
313 ;; | |
314 6|7) # LGB: Though it seems Athlon CPUs returns with "6" | |
315 proc=k7 | |
316 ;; | |
317 *) | |
318 proc=pentium | |
319 ;; | |
320 esac | |
321 ;; | |
322 GenuineIntel) | |
323 case "$pfamily" in | |
324 3) | |
325 proc=i386 | |
326 ;; | |
327 4) | |
328 proc=i486 | |
329 ;; | |
330 5) | |
331 proc=pentium | |
332 ;; | |
333 6) | |
334 proc=i686 | |
335 ;; | |
336 *) | |
337 proc=pentium | |
338 ;; | |
339 esac | |
340 ;; | |
341 unknown) # added by Gabucino - upon Tibcu's request | |
342 case "$pfamily" in | |
343 3) | |
344 proc=i386 | |
345 ;; | |
346 4) | |
347 proc=i486 | |
348 ;; | |
349 *) | |
350 proc=pentium | |
351 ;; | |
352 esac | |
353 ;; | |
354 *) | |
355 proc=pentium | |
356 ;; | |
357 esac | |
358 | |
359 # --- | |
360 | |
361 cat > $TMPC << EOF | |
362 int main( void ) { return 0; } | |
363 EOF | |
364 | |
365 # check that gcc supports our cpu, if not, fallback to pentium | |
366 # LGB: check -mcpu and -march swithing step by step with enabling | |
367 # to fall back till 386. | |
368 | |
369 #echo -n "Checking your GCC CPU optimalization abilities: " | |
370 if [ "$proc" = "k7" ]; then | |
371 # echo -n "trying k7 " | |
196 | 372 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=athlon |
1 | 373 fi |
374 if [ "$proc" = "athlon" ]; then | |
375 # echo -n "trying athlon " | |
196 | 376 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=k6 |
1 | 377 fi |
378 if [ "$proc" = "k6" ]; then | |
379 # echo -n "trying k6 " | |
196 | 380 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=k5 |
1 | 381 fi |
382 if [ "$proc" = "k5" ]; then | |
383 # echo -n "trying k5 " | |
196 | 384 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentium |
1 | 385 fi |
386 if [ "$proc" = "i686" ]; then | |
387 # echo -n "trying i686 " | |
196 | 388 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentiumpro |
1 | 389 fi |
390 if [ "$proc" = "pentiumpro" ]; then | |
391 # echo -n "trying pentiumpro " | |
196 | 392 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=pentium |
1 | 393 fi |
394 if [ "$proc" = "pentium" ]; then | |
395 # echo -n "trying pentium " | |
196 | 396 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=i486 |
1 | 397 fi |
398 if [ "$proc" = "i486" ]; then | |
399 # echo -n "trying i486 " | |
196 | 400 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=i386 |
1 | 401 fi |
402 if [ "$proc" = "i386" ]; then | |
403 # echo -n "trying i386 " | |
196 | 404 $_cc $TMPC -o $TMPO -march=$proc -mcpu=$proc &> /dev/null || proc=error |
1 | 405 fi |
406 if [ "$proc" = "error" ]; then | |
407 echo | |
408 echo "Your gcc does not support even \"i386\" for '-march' and '-mcpu'." >&2 | |
409 rm -f $TMPC $TMPO | |
410 exit | |
411 fi | |
412 #echo "DONE (${proc})." | |
413 | |
414 | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
415 $_cc $TMPC -o $TMPO -lvgagl -lvga &> /dev/null && _svga=yes |
1 | 416 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
417 $_cc $TMPC -o $TMPO -lpthread &> /dev/null || \ |
1 | 418 { echo "Lib pthread not found."; rm -f $TMPC $TMPO ; exit 1; } |
419 | |
548
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
420 # Atmosfear: added SDL versioncheck and autodetect; removed warnings. |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
421 _sdl=no |
558
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
422 if $_cc $TMPC -o $TMPO -L/usr/lib/ -L/usr/local/lib/ -lSDL -lpthread &> /dev/null ; then |
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
423 if test `sdl-config --version | sed s/[=[:punct:]=]//g` -gt 116 ; then |
704 | 424 if test `sdl-config --version | sed s/[=[:punct:]=]//g` -lt 121 ; then |
425 _sdlbuggy='#define BUGGY_SDL' | |
426 else | |
427 _sdlbuggy='#undef BUGGY_SDL' | |
428 fi | |
558
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
429 _sdl=yes |
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
430 else |
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
431 _sdl=outdated |
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
432 fi |
30d9f61e9c0b
fixed sdl detection (showed outdated even if not detected)
atmosfear
parents:
548
diff
changeset
|
433 fi |
1 | 434 |
661 | 435 # Atmosfear: added libcss autodetect |
436 _css=no | |
437 if test -e "/usr/local/lib/libcss.so" ; then | |
438 _csslibdir="/usr/local/lib/" | |
439 if test -e "/usr/local/include/css.h" ; then | |
440 _cssincdir="/usr/local/include" | |
441 _css=yes | |
710 | 442 fi |
443 else | |
444 if test -e "/usr/lib/libcss.so" ; then | |
445 _csslibdir="/usr/lib/" | |
661 | 446 if test -e "/usr/include/css.h" ; then |
447 _cssincdir="/usr/include/" | |
448 _css=yes | |
449 fi | |
710 | 450 fi |
661 | 451 fi |
452 | |
1 | 453 _termcap=no |
196 | 454 $_cc $TMPC -o $TMPO -ltermcap &> /dev/null && _termcap=yes |
1 | 455 |
525 | 456 _png=no |
660
29c9635aa144
Changed vo png to use -lz which is needed on some systems.
atmosfear
parents:
642
diff
changeset
|
457 $_cc $TMPC -o $TMPO -lpng -lz&> /dev/null && _png=yes |
525 | 458 |
1 | 459 _binutils=no |
460 as libac3/downmix/downmix_i386.S -o $TMPO &> /dev/null && _binutils=yes | |
461 | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
462 # ----------- Check X11 and related libs (GL, Xxf86vm, Xv, DGA) -------------- |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
463 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
464 if [ $_x11 = auto ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
465 _x11=no |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
466 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext &> /dev/null && _x11=yes |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
467 fi |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
468 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
469 if [ $_x11 = yes ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
470 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
471 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXdpms &> /dev/null && _xdpms=yes |
525 | 472 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXv &> /dev/null && _xv=yes |
590 | 473 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lXxf86vm &> /dev/null && _vm=yes |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
474 |
525 | 475 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL &> /dev/null && _gl=yes |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
476 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
477 cat > $TMPC << EOF |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
478 #include <GL/gl.h> |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
479 int main( void ) { return 0; } |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
480 EOF |
525 | 481 $_cc $TMPC -o $TMPO $_x11libdir -lX11 -lXext -lGL &> /dev/null || \ |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
482 { _gl=no; echo "GL includes not found!";} |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
483 |
59 | 484 cat > $TMPC << EOF |
485 #include <stdio.h> | |
486 #include <X11/Xlib.h> | |
487 #include <X11/extensions/xf86dga.h> | |
488 int main (void) { return 0;} | |
489 EOF | |
490 | |
196 | 491 $_cc $TMPC -o $TMPO -L/usr/X11R6/lib -L/usr/X11/lib -lX11 -lXext -lXxf86dga -lXxf86vm &> /dev/null && _dga=yes |
59 | 492 # Note: the -lXxf86vm library is the VideoMode extension and though it's |
493 # not needed for DGA, AFAIK every distribution packages together with DGA | |
494 # stuffs named 'X extensions' or something similar. This check can be usefull | |
495 # for further mplayer versions to set resolution by mplayer itself. | |
496 # If you run into problems, remove '-lXxf86vm'. | |
497 | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
498 # 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
|
499 cat > $TMPC << EOF |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
500 #include <stdio.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
501 #include <X11/Xlib.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
502 #include <X11/extensions/xf86dga.h> |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
503 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
|
504 EOF |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
505 |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
506 _dga2=no |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
507 $_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
|
508 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
509 fi |
1 | 510 |
511 rm -f $TMPC $TMPO | |
512 | |
513 # --- | |
514 | |
515 # check for the parameters. | |
516 | |
517 for ac_option | |
518 do | |
519 case "$ac_option" in | |
717 | 520 --enable-profile) |
521 _profile='-p' | |
522 ;; | |
711
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
523 --enable-debug) |
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
524 _debug='-g' |
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
525 ;; |
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
526 --enable-debug=*) |
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
527 _debug=`echo -n '-g'; echo $ac_option | cut -d '=' -f 2` |
d73d1b2a565a
Added --enable-debug[=1-3] to compile debugging info into mplayer (specifies -gn switch).
atmosfear
parents:
710
diff
changeset
|
528 ;; |
492 | 529 --enable-css) |
530 _css=yes | |
531 ;; | |
525 | 532 --enable-png) |
533 _png=yes | |
534 ;; | |
1 | 535 --enable-sse) |
536 _sse=yes | |
537 ;; | |
538 --enable-3dnow) | |
539 _3dnow=yes | |
540 ;; | |
734 | 541 --enable-3dnowex) |
542 _3dnow=yes | |
543 _3dnowex=yes | |
544 ;; | |
1 | 545 --enable-mmx) |
546 _mmx=yes | |
547 ;; | |
350 | 548 --enable-mmx2) |
549 _mmx2=yes | |
550 ;; | |
72 | 551 --enable-mtrr) |
552 _mtrr=yes | |
553 ;; | |
1 | 554 --enable-gl) |
555 _gl=yes | |
556 ;; | |
557 --enable-sdl) | |
558 _sdl=yes | |
559 ;; | |
560 --enable-mga) | |
561 _mga=yes | |
562 ;; | |
563 --enable-xmga) | |
564 _xmga=yes | |
565 ;; | |
287 | 566 --enable-svga) |
567 _svga=yes | |
568 ;; | |
11 | 569 --enable-dga) |
570 _dga=yes | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
571 ;; |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
572 --enable-dga2) |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
573 _dga2=yes |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
574 ;; |
1 | 575 --enable-xv) |
576 _xv=yes | |
577 ;; | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
578 --enable-vm) |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
579 _vm=yes |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
580 ;; |
1 | 581 --enable-3dfx) |
582 _3dfx=yes | |
583 ;; | |
584 --enable-syncfb) | |
585 _syncfb=yes | |
586 ;; | |
225 | 587 --enable-fbdev) |
588 _fbdev=yes | |
589 ;; | |
1 | 590 --enable-mlib) |
591 _mlib=yes | |
592 ;; | |
593 --enable-termcap) | |
594 _termcap=yes | |
595 ;; | |
596 --enable-xmmp) | |
597 _xmmp=yes | |
598 ;; | |
599 --enable-lirc) | |
600 _lirc=yes | |
601 ;; | |
463 | 602 --enable-select) |
603 _select='#define HAVE_AUDIO_SELECT' | |
604 ;; | |
723 | 605 --enable-gui) |
606 _gui=yes | |
607 ;; | |
492 | 608 --disable-css) |
609 _css=no | |
610 ;; | |
525 | 611 --disable-png) |
612 _png=no | |
613 ;; | |
1 | 614 --disable-sse) |
615 _sse=no | |
616 ;; | |
617 --disable-3dnow) | |
618 _3dnow=no | |
734 | 619 _3dnowex=no |
620 ;; | |
621 --disable-3dnowex) | |
622 _3dnowex=no | |
1 | 623 ;; |
624 --disable-mmx) | |
625 _mmx=no | |
350 | 626 _mmx2=no |
1 | 627 ;; |
696 | 628 --disable-mmx2) |
629 _mmx2=no | |
630 ;; | |
72 | 631 --disable-mtrr) |
632 _mtrr=no | |
633 ;; | |
1 | 634 --disable-gl) |
635 _gl=no | |
636 ;; | |
637 --disable-sdl) | |
638 _sdl=no | |
639 ;; | |
640 --disable-mga) | |
641 _mga=no | |
642 ;; | |
643 --disable-xmga) | |
644 _xmga=no | |
645 ;; | |
646 --disable-xv) | |
647 _xv=no | |
648 ;; | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
649 --disable-vm) |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
650 _vm=no |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
651 ;; |
1 | 652 --disable-mlib) |
653 _mlib=no | |
654 ;; | |
287 | 655 --disable-svga) |
656 _svga=no | |
657 ;; | |
59 | 658 --disable-dga) |
659 _dga=no | |
660 ;; | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
661 --disable-dga2) |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
662 _dga2=no |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
663 ;; |
225 | 664 --disable-fbdev) |
665 _fbdev=no | |
666 ;; | |
1 | 667 --disable-termcap) |
668 _termcap=no | |
669 ;; | |
463 | 670 --disable-select) |
671 _select='#undef HAVE_AUDIO_SELECT' | |
672 ;; | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
673 --disable-dshow) |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
674 _dshow=no |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
675 ;; |
642 | 676 --disable-fastmemcpy) |
677 _fastmemcpy=no | |
678 ;; | |
723 | 679 --disable-gui) |
680 _gui=no | |
681 ;; | |
1 | 682 --with-win32libdir=*) |
683 _win32libdir=`echo $ac_option | cut -d '=' -f 2` | |
11 | 684 _win32libdirnotify=no |
1 | 685 ;; |
492 | 686 --with-csslibdir=*) |
687 _csslibdir=`echo $ac_option | cut -d '=' -f 2` | |
688 _css='yes'; | |
689 ;; | |
690 --with-cssincdir=*) | |
691 _cssincdir=`echo $ac_option | cut -d '=' -f 2` | |
692 _css='yes'; | |
693 ;; | |
1 | 694 --size-x=*) |
695 _x=`echo $ac_option | cut -d '=' -f 2` | |
696 ;; | |
697 --size-y=*) | |
698 _y=`echo $ac_option | cut -d '=' -f 2` | |
699 ;; | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
700 --with-x11libdir=*) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
701 ;; |
196 | 702 --cc=*) |
703 ;; | |
1 | 704 esac |
705 done | |
706 | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
707 if [ $_x11 = 'yes' ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
708 if [ $_mga = 'yes' ]; then |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
709 _xmga=yes |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
710 fi |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
711 fi |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
712 |
1 | 713 # to screen. |
196 | 714 echo "Using C compiler: $_cc" |
1 | 715 echo "Checking for cpu vendor ... $pvendor ( $pfamily:$pmodel:$pstepping )" |
716 echo "Checking for cpu type ... $pname" | |
717 echo "Optimizing to ... $proc" | |
718 echo "Checking for mmx support ... $_mmx" | |
350 | 719 echo "Checking for mmx2 support ... $_mmx2" |
1 | 720 echo "Checking for 3dnow support ... $_3dnow" |
734 | 721 echo "Checking for 3dnowex support ... $_3dnowex" |
1 | 722 echo "Checking for sse support ... $_sse" |
723 echo "Checking for mtrr support ... $_mtrr" | |
724 echo "Screen size ... ${_x}x${_y}" | |
725 echo "Checking for X11 libs ... $_x11libdir" | |
726 echo "Checking mga_vid device ... $_mga" | |
727 echo "Checking for xmga ... $_xmga" | |
728 echo "Checking for SDL ... $_sdl" | |
729 echo "Checking for OpenGL ... $_gl" | |
730 echo "Checking for Xv ... $_xv" | |
731 echo "Checking for X11 ... $_x11" | |
59 | 732 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
|
733 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
|
734 echo "Checking for Xf86VM ... $_vm" |
287 | 735 echo "Checking for SVGAlib ... $_svga" |
225 | 736 echo "Checking for FBDev ... $_fbdev" |
492 | 737 echo "Checking for DeCSS support ... $_css" |
525 | 738 echo "Checking for PNG support ... $_png" |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
739 echo "Checking for DirectShow ... $_dshow" |
642 | 740 echo "Checking for fastmemcpy ... $_fastmemcpy" |
1 | 741 # write conf files. |
742 | |
743 if [ $_gl = yes ]; then | |
744 _gllib='-lGL' | |
745 fi | |
746 | |
492 | 747 if [ $_css = yes ]; then |
748 if [ ! -z $_csslibdir ]; then | |
749 _csslib="-L${_csslibdir} -lcss" | |
750 else | |
751 _csslib='-lcss' | |
752 fi | |
753 _css='#define HAVE_LIBCSS' | |
754 if [ ! -z $_cssincdir ]; then | |
755 _cssinc="-I${_cssincdir}" | |
756 else | |
757 _cssinc="" | |
758 fi | |
759 else | |
760 _css='#undef HAVE_LIBCSS' | |
761 _csslib='' | |
762 _cssinc='' | |
763 fi | |
764 | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
765 if [ $_dshow = yes ]; then |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
766 _dshowlib='-Lloader/DirectShow -lDS_Filter -lstdc++' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
767 _dshowdep='loader/DirectShow/libDS_Filter.a' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
768 _dshow='#define USE_DIRECTSHOW' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
769 else |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
770 _dshowlib='' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
771 _dshowdep='' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
772 _dshow='#undef USE_DIRECTSHOW' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
773 fi |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
774 |
642 | 775 if [ $_fastmemcpy = yes ]; then |
776 _fastmemcpy='#define USE_FASTMEMCPY' | |
777 else | |
778 _fastmemcpy='#undef USE_FASTMEMCPY' | |
779 fi | |
780 | |
1 | 781 if [ $_x11 = yes ]; then |
330 | 782 if [ $_xdpms = yes ]; then |
783 _x11lib='-lX11 -lXext -lXdpms' | |
784 else | |
785 _x11lib='-lX11 -lXext' | |
786 fi | |
1 | 787 fi |
788 | |
789 if [ $_xv = yes ]; then | |
790 _xvlib='-lXv' | |
791 fi | |
792 | |
793 if [ $_sdl = yes ]; then | |
794 _sdllib='-lSDL -lpthread' | |
795 fi | |
796 | |
14 | 797 if [ $_dga = yes ]; then |
798 _dgalib='-lXxf86dga' | |
799 fi | |
800 | |
287 | 801 if [ $_svga = yes ]; then |
289 | 802 _svgalib='-lvgagl -lvga' |
287 | 803 fi |
804 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
805 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
806 _vmlib='-lXxf86vm' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
807 fi |
14 | 808 |
1 | 809 if [ "$_termcap" = "yes" ]; then |
810 _termcap='#define USE_TERMCAP' | |
811 _libtermcap='-ltermcap' | |
812 else | |
813 _termcap='#undef USE_TERMCAP' | |
814 _libtermcap='' | |
815 fi | |
816 | |
817 if [ "$_xmmp" = "yes" ]; then | |
818 _xmmpaudio='#define USE_XMMP_AUDIO' | |
819 _xmmplibs='-Llibxmm -lxmm' | |
820 else | |
821 _xmmpaudio='#undef USE_XMMP_AUDIO' | |
822 fi | |
823 | |
824 if [ "$_lirc" = "yes" ]; then | |
825 _lircdefs='#define HAVE_LIRC' | |
826 _lirclibs='-llirc_client' | |
827 else | |
828 _lircdefs='#undef HAVE_LIRC' | |
829 _lirclibs='' | |
830 fi | |
831 | |
525 | 832 if [ $_png = yes ]; then |
660
29c9635aa144
Changed vo png to use -lz which is needed on some systems.
atmosfear
parents:
642
diff
changeset
|
833 _libpng='-lpng -lz' |
525 | 834 fi |
1 | 835 |
697 | 836 # Checking for CFLAGS |
717 | 837 if [ "$_profile" != "" ] || [ "$_debug" != "" ]; then |
838 CFLAGS="-O2 -march=$proc -mcpu=$proc $_debug $_profile" | |
839 else | |
840 if test -z "$CFLAGS"; then | |
841 CFLAGS="-O4 -march=$proc -mcpu=$proc -pipe -ffast-math -fomit-frame-pointer" | |
697 | 842 fi |
717 | 843 fi |
1 | 844 echo |
845 echo "Creating $MCONF" | |
846 cat > $MCONF << EOF | |
847 | |
848 # -------- Generated by ./configure ----------- | |
849 | |
850 AR=ar | |
196 | 851 CC=$_cc |
518 | 852 X11DIR=$_x11libdir |
717 | 853 # OPTFLAGS=-O4 $_profile $_debug -march=$proc -mcpu=$proc -pipe -fomit-frame-pointer -ffast-math |
697 | 854 OPTFLAGS=$CFLAGS |
14 | 855 # LIBS=-L/usr/lib -L/usr/local/lib $_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib |
525 | 856 X_LIBS=$_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib $_vmlib $_svgalib $_libpng |
1 | 857 TERMCAP_LIB=$_libtermcap |
858 XMM_LIBS = $_xmmplibs | |
859 LIRC_LIBS = $_lirclibs | |
492 | 860 CSS_LIB = $_csslib |
861 CSS_INC = $_cssinc | |
1 | 862 WIN32_PATH=-DWIN32_PATH=\"$_win32libdir\" |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
863 DS_DEP = $_dshowdep |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
864 DS_LIB = $_dshowlib |
1 | 865 |
866 EOF | |
867 # echo 'CFLAGS=$(OPTFLAGS) -Wall -DMPG12PLAY' >> config.mak | |
868 | |
869 echo "Creating $CCONF" | |
870 | |
871 if [ "$_mmx" = "yes" ]; then | |
872 _mmx='#define HAVE_MMX' | |
873 else | |
874 _mmx='#undef HAVE_MMX' | |
875 fi | |
876 | |
350 | 877 if [ "$_mmx2" = "yes" ]; then |
878 _mmx2='#define HAVE_MMX2' | |
879 else | |
880 _mmx2='#undef HAVE_MMX2' | |
881 fi | |
882 | |
1 | 883 if [ $_3dnow = yes ]; then |
884 _3dnowm='#define HAVE_3DNOW' | |
885 else | |
886 _3dnowm='#undef HAVE_3DNOW' | |
887 fi | |
888 | |
734 | 889 if [ $_3dnowex = yes ]; then |
890 _3dnowexm='#define HAVE_3DNOWEX' | |
891 else | |
892 _3dnowexm='#undef HAVE_3DNOWEX' | |
893 fi | |
894 | |
1 | 895 if [ $_sse = yes ]; then |
896 _ssem='#define HAVE_SSE' | |
897 else | |
898 _ssem='#undef HAVE_SSE' | |
899 fi | |
900 | |
901 # --- | |
902 | |
903 _vosrc='' | |
904 | |
525 | 905 if [ $_png = yes ]; then |
906 _png='#define HAVE_PNG' | |
907 _vosrc=$_vosrc' vo_png.c' | |
908 else | |
909 _png='#undef HAVE_PNG' | |
910 fi | |
911 | |
912 | |
1 | 913 if [ $_mlib = yes ]; then |
914 _mlib='#define HAVE_MLIB' | |
915 _vosrc=$_vosrc' yuv2rgb_mlib.c' | |
916 else | |
917 _mlib='#undef HAVE_MLIB' | |
918 fi | |
919 | |
920 # --- | |
921 | |
922 if [ $_gl = yes ]; then | |
923 _gl='#define HAVE_GL' | |
924 _vosrc=$_vosrc' vo_gl.c' | |
925 else | |
926 _gl='#undef HAVE_GL' | |
927 fi | |
928 | |
929 if [ $_sdl = yes ]; then | |
930 _sdldef='#define HAVE_SDL' | |
931 _vosrc=$_vosrc' vo_sdl.c' | |
932 else | |
933 _sdldef='#undef HAVE_SDL' | |
934 fi | |
935 | |
936 if [ $_x11 = yes ]; then | |
937 _x11='#define HAVE_X11' | |
938 _vosrc=$_vosrc' vo_x11.c' | |
939 else | |
940 _x11='#undef HAVE_X11' | |
941 fi | |
942 | |
943 if [ $_xv = yes ]; then | |
944 _xv='#define HAVE_XV' | |
945 _vosrc=$_vosrc' vo_xv.c' | |
946 else | |
947 _xv='#undef HAVE_XV' | |
948 fi | |
949 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
950 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
951 _vm='#define HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
952 else |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
953 _vm='#undef HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
954 fi |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
955 |
1 | 956 # --- |
957 | |
958 if [ $_mga = yes ]; then | |
959 _mga='#define HAVE_MGA' | |
960 _vosrc=$_vosrc' vo_mga.c' | |
961 else | |
962 _mga='#undef HAVE_MGA' | |
963 fi | |
964 if [ $_xmga = yes ]; then | |
965 _vosrc=$_vosrc' vo_xmga.c' | |
966 fi | |
967 | |
968 if [ $_syncfb = yes ]; then | |
969 _syncfb='#define HAVE_SYNCFB' | |
970 _vosrc=$_vosrc' vo_syncfb.c' | |
971 else | |
972 _syncfb='#undef HAVE_SYNCFB' | |
973 fi | |
974 | |
975 if [ $_3dfx = yes ]; then | |
976 _3dfx='#define HAVE_3DFX' | |
977 _vosrc=$_vosrc' vo_3dfx.c' | |
978 else | |
979 _3dfx='#undef HAVE_3DFX' | |
980 fi | |
981 | |
287 | 982 if [ $_svga = yes ]; then |
983 _svga='#define HAVE_SVGALIB' | |
984 _vosrc=$_vosrc' vo_svga.c' | |
985 else | |
986 _svga='#undef HAVE_SVGALIB' | |
987 fi | |
988 | |
11 | 989 if [ $_dga = yes ]; then |
990 _dga='#define HAVE_DGA' | |
38 | 991 _vosrc=$_vosrc' vo_dga.c vo_fsdga.c' |
11 | 992 else |
993 _dga='#undef HAVE_DGA' | |
994 fi | |
995 | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
996 if [ $_dga2 = yes ]; then |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
997 _dga2='#define HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
998 _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
|
999 else |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1000 _dga2='#undef HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1001 fi |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1002 |
225 | 1003 if [ $_fbdev = yes ]; then |
1004 _fbdev='#define HAVE_FBDEV' | |
1005 _vosrc=$_vosrc' vo_fbdev.c' | |
1006 else | |
1007 _fbdev='#undef HAVE_FBDEV' | |
1008 fi | |
1009 | |
1 | 1010 if [ $_mpg123 = yes ]; then |
1011 _mpg123='#define DEFAULT_MPG123' | |
1012 else | |
1013 _mpg123='#undef DEFAULT_MPG123' | |
1014 fi | |
1015 | |
723 | 1016 if [ $_gui = yes ]; then |
1017 _gui='#define HAVE_GUI' | |
1018 else | |
1019 _gui='#undef HAVE_GUI' | |
1020 fi | |
1021 | |
1 | 1022 cat > $CCONF << EOF |
1023 | |
1024 /* -------- Generated by ./configure ----------- */ | |
1025 | |
1026 /* Define this to enable avg. byte/sec-based AVI sync method by default: | |
1027 (use -bps or -nobps commandline option for run-time method selection) */ | |
1028 #undef AVI_SYNC_BPS | |
1029 | |
1030 /* Undefine this if you want soundcard-only timing by default: | |
1031 You can still change this with the -alsa or -noalsa command-line option! | |
1032 (This function was originally impemented to solve ALSA driver's big | |
1033 buffer problems, but it seems to be useful for every soundcard drivers) */ | |
1034 #define ALSA_TIMER | |
1035 | |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1036 /* Undefine this if you don't want to select mono audio (left or right) |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1037 with a stereo MPEG layer 2/3 audio stream. The command-line option |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1038 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1039 right-only), with 0 being the default. |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1040 */ |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1041 #define USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1042 |
1 | 1043 /* Undefine this if your soundcard driver has no working select(). |
1044 If you have kernel Oops, player hangups, or just no audio, you should | |
1045 try to recompile MPlayer with this option disabled! */ | |
463 | 1046 $_select |
1 | 1047 |
1048 /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) | |
1049 #define this if you prefer mpg123 (with 3Dnow! support) than l3codeca.acm | |
1050 (with mmx/sse optimizations) | |
1051 You can still change it runtime using -afm 1 (mpg123) or -afm 4 (l3codeca)*/ | |
1052 $_mpg123 | |
1053 | |
1054 /* XMMP support: (test code) */ | |
1055 $_xmmpaudio | |
1056 #define LIBDIR "/usr/local/lib" | |
1057 #define PLUGINDIR LIBDIR "/xmmp/Plugins" | |
1058 #define XMMP_AUDIO_DRIVER PLUGINDIR "/Sound/oss.so" | |
1059 | |
586 | 1060 /* set up audio OUTBURST. Do not change this! */ |
1061 #ifdef USE_XMMP_AUDIO | |
1062 #define OUTBURST 4096 | |
1063 #else | |
1064 //#define OUTBURST 1024 | |
1065 #define OUTBURST 512 | |
1066 #endif | |
1067 | |
1 | 1068 /* LIRC (remote control, see www.lirc.org) support: */ |
1069 $_lircdefs | |
1070 | |
492 | 1071 /* DeCSS support using libcss */ |
1072 $_css | |
1073 | |
41 | 1074 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
1075 #define MPEG12_POSTPROC | |
1076 | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1077 /* DirectShow support */ |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1078 $_dshow |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1079 |
642 | 1080 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ |
1081 $_fastmemcpy | |
1082 | |
723 | 1083 /* gui support, please do not edit this option */ |
1084 $_gui | |
1085 | |
1 | 1086 /* Define if your processor stores words with the most significant |
1087 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
1088 /* #define WORDS_BIGENDIAN */ | |
1089 | |
1090 #define ARCH_X86 | |
1091 | |
1092 ///////////////////////////////////////////////////////////////////////////// | |
1093 // | |
1094 // NOTE: Instead of modifying these here, use the --enable/--disable options | |
1095 // of the ./configure script! See ./configure --help for details. | |
1096 // | |
1097 ///////////////////////////////////////////////////////////////////////////// | |
1098 | |
1099 /* termcap flag for getch2.c */ | |
1100 $_termcap | |
525 | 1101 $_png |
1 | 1102 |
1103 /* Extension defines */ | |
1104 $_mlib // available only on solaris | |
1105 $_3dnowm // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) | |
734 | 1106 $_3dnowexm // only define if you have 3DNOWEX (AMD Athlon, etc.) |
1 | 1107 $_mmx // only define if you have MMX |
350 | 1108 $_mmx2 // only define if you have MMX2 |
1 | 1109 $_ssem // only define if you have SSE (Intel Pentium III or Celeron II) |
1110 | |
1111 /* libvo options */ | |
1112 #define SCREEN_SIZE_X $_x | |
1113 #define SCREEN_SIZE_Y $_y | |
1114 $_x11 | |
1115 $_xv | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1116 $_vm |
1 | 1117 $_gl |
11 | 1118 $_dga |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1119 $_dga2 |
1 | 1120 $_sdldef |
704 | 1121 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */ |
1122 $_sdlbuggy | |
1 | 1123 $_3dfx |
1124 $_mga | |
1125 $_syncfb | |
225 | 1126 $_fbdev |
287 | 1127 $_svga |
1 | 1128 |
23 | 1129 #if defined(HAVE_GL)||defined(HAVE_X11)||defined(HAVE_XV) |
1 | 1130 #define X11_FULLSCREEN |
1131 #endif | |
1132 | |
1133 EOF | |
1134 | |
1135 echo "Creating libvo/config.mak" | |
1136 | |
1137 _voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'` | |
1138 | |
1139 cat > libvo/config.mak << EOF | |
1140 | |
1141 include ../config.mak | |
1142 | |
1143 OPTIONAL_SRCS=$_vosrc | |
1144 OPTIONAL_OBJS=$_voobj | |
1145 | |
1146 EOF | |
1147 | |
1148 echo "Creating libac3/config.mak" | |
1149 | |
1150 if [ $_sse = yes ]; then | |
1151 _downmixc='downmix/downmix_kni.S' | |
1152 _downmixo='downmix/downmix_kni.o' | |
1153 else | |
1154 if [ $_binutils = yes ]; then | |
1155 _downmixc='downmix/downmix_i386.S' | |
1156 _downmixo='downmix/downmix_i386.o' | |
1157 else | |
1158 _downmixc='downmix/downmix.c' | |
1159 _downmixo='downmix/downmix.o' | |
1160 cat << EOF | |
1161 | |
1162 !!! Warning! fallback to slow downmix.c due the old binutils. | |
1163 !!! Upgrade for better audio decoding performance. | |
1164 | |
1165 EOF | |
1166 fi | |
1167 fi | |
1168 | |
1169 cat > libac3/config.mak << EOF | |
1170 | |
1171 include ../config.mak | |
1172 | |
1173 OPTIONAL_SRCS = $_downmixc | |
1174 OPTIONAL_OBJS = $_downmixo | |
1175 | |
1176 EOF | |
1177 | |
1178 echo "Creating mp3lib/config.mak" | |
1179 | |
734 | 1180 if [ $_3dnowex = yes ]; then |
1181 _3dnowobjectsrcs='dct36_k7.s dct64_k7.s decode_k7.s dct36_3dnow.s dct64_3dnow.s decode_3dnow.s' | |
1182 _3dnowobjectobjs='dct36_k7.o dct64_k7.o decode_k7.o dct36_3dnow.o dct64_3dnow.o decode_3dnow.o' | |
1183 else | |
1 | 1184 if [ $_3dnow = yes ]; then |
1185 _3dnowobjectsrcs='dct36_3dnow.s dct64_3dnow.s decode_3dnow.s' | |
1186 _3dnowobjectobjs='dct36_3dnow.o dct64_3dnow.o decode_3dnow.o' | |
1187 else | |
1188 _3dnowobjectsrcs= | |
1189 _3dnowobjectobjs= | |
1190 fi | |
734 | 1191 fi |
1 | 1192 |
1193 cat > mp3lib/config.mak << EOF | |
1194 | |
1195 include ../config.mak | |
1196 | |
1197 OPTIONAL_SRCS = $_3dnowobjectsrcs | |
1198 OPTIONAL_OBJS = $_3dnowobjectobjs | |
1199 | |
1200 EOF | |
1201 | |
1202 cat << EOF | |
1203 | |
1204 Config files successfully generated by ./configure ! | |
1205 Please check config.h and config.mak files, tune CPU | |
1206 and optimization flags if you don't like these defaults. | |
1207 You can compile the program with 'make dep;make' and | |
1208 install with 'make install'. Good luck! | |
1209 | |
1210 EOF | |
1211 | |
1212 if [ $_mtrr = yes ]; then | |
1213 echo "Please check mtrr settings at /proc/mtrr (see DOCS/MTRR)" | |
1214 echo | |
1215 fi | |
1216 | |
548
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1217 if [ $_sdl = outdated ]; then |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1218 echo "You have libSDL installed, but your version is outdated (earlier then" |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1219 echo "v.1.1.7), SDL support has been disabled please update, if you want to" |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1220 echo "use it (libSDL v1.1.8 and v1.2.0 are tested and known to work, recent" |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1221 echo "versions are available from http://www.libsdl.org/)." |
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1222 echo "After updating you need to re-run ./configure and recompile to enable SDL." |
1 | 1223 echo |
1224 fi | |
1225 | |
1226 if [ $_win32libdirnotify = yes ]; then | |
1227 echo "Missing WIN32 codecs dir at $_win32libdir !" | |
1228 echo "Make it and copy DLL files to there! (You can get them from your windows" | |
1229 echo "directory or download ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip" | |
1230 else | |
1231 echo "Ok, Win32 codecs directory at $_win32libdir already exists." | |
1232 fi | |
1233 |