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