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