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