Mercurial > mplayer.hg
annotate configure @ 1234:dfccdda074e5
OPTFLAGS vs. INCLUDES cleanup
author | arpi |
---|---|
date | Tue, 26 Jun 2001 23:15:58 +0000 |
parents | 7d30b57b6187 |
children | c823cb3a2608 |
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 | |
1182 | 665 $_cc $_x11incdir $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 |
1220 | 1077 if [ "$_xmga" = "autodetect" ]; then |
1178 | 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" | |
1234 | 1098 echo "Checking for X11 headers ... $_x11incdir" |
1 | 1099 echo "Checking mga_vid device ... $_mga" |
1100 echo "Checking for xmga ... $_xmga" | |
1101 echo "Checking for SDL ... $_sdl" | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1102 echo "Checking for GGI ... $_ggi" |
1 | 1103 echo "Checking for OpenGL ... $_gl" |
1104 echo "Checking for Xv ... $_xv" | |
1105 echo "Checking for X11 ... $_x11" | |
59 | 1106 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
|
1107 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
|
1108 echo "Checking for Xf86VM ... $_vm" |
287 | 1109 echo "Checking for SVGAlib ... $_svga" |
225 | 1110 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
|
1111 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
|
1112 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
|
1113 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
|
1114 echo "Checking for Sun Audio ... $_sun_audio" |
492 | 1115 echo "Checking for DeCSS support ... $_css" |
525 | 1116 echo "Checking for PNG support ... $_png" |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1117 echo "Checking for DirectShow ... $_dshow" |
642 | 1118 echo "Checking for fastmemcpy ... $_fastmemcpy" |
1234 | 1119 echo "Extra libs : $_extralibdir" |
1120 echo "Extra headers : $_extraincdir" | |
1 | 1121 # write conf files. |
1122 | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1123 _streamingdef='#undef STREAMING' |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1124 if [ $_streaming = yes ]; then |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1125 _streamingsrcs='asf_streaming.c network.c url.c http.c' |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1126 _streamingdef='#define STREAMING' |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1127 fi |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1128 |
1 | 1129 if [ $_gl = yes ]; then |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1130 if [ "$system_name" = "FreeBSD" ]; then |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1131 # Under XFree86 4.x GL port is poorly designed |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1132 if [ -r /usr/X11R6/bin/XFree86 ]; then |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1133 _gllib='-lGL -pthread' |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1134 else |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1135 _gllib='-lGL' |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1136 fi |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1137 else |
1 | 1138 _gllib='-lGL' |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1139 fi |
1 | 1140 fi |
1141 | |
492 | 1142 if [ $_css = yes ]; then |
1020
72cacd3b8f30
Solaris 8 support - patch by Marcus Comstedt <marcus@idonex.se>
arpi_esp
parents:
1019
diff
changeset
|
1143 if [ ! -z "$_csslibdir" ]; then |
492 | 1144 _csslib="-L${_csslibdir} -lcss" |
1145 else | |
1146 _csslib='-lcss' | |
1147 fi | |
1148 _css='#define HAVE_LIBCSS' | |
1020
72cacd3b8f30
Solaris 8 support - patch by Marcus Comstedt <marcus@idonex.se>
arpi_esp
parents:
1019
diff
changeset
|
1149 if [ ! -z "$_cssincdir" ]; then |
492 | 1150 _cssinc="-I${_cssincdir}" |
1151 else | |
1152 _cssinc="" | |
1153 fi | |
1154 else | |
1155 _css='#undef HAVE_LIBCSS' | |
1156 _csslib='' | |
1157 _cssinc='' | |
1158 fi | |
1159 | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1160 if [ $_dshow = yes ]; then |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1161 _dshowlib='-Lloader/DirectShow -lDS_Filter -lstdc++' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1162 _dshowdep='loader/DirectShow/libDS_Filter.a' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1163 _dshow='#define USE_DIRECTSHOW' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1164 else |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1165 _dshowlib='' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1166 _dshowdep='' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1167 _dshow='#undef USE_DIRECTSHOW' |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1168 fi |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1169 |
642 | 1170 if [ $_fastmemcpy = yes ]; then |
1171 _fastmemcpy='#define USE_FASTMEMCPY' | |
1172 else | |
1173 _fastmemcpy='#undef USE_FASTMEMCPY' | |
1174 fi | |
1175 | |
1 | 1176 if [ $_x11 = yes ]; then |
330 | 1177 if [ $_xdpms = yes ]; then |
1178 _x11lib='-lX11 -lXext -lXdpms' | |
1179 else | |
1180 _x11lib='-lX11 -lXext' | |
1181 fi | |
1 | 1182 fi |
1183 | |
1184 if [ $_xv = yes ]; then | |
1185 _xvlib='-lXv' | |
1186 fi | |
1187 | |
1188 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
|
1189 _sdllib=`$_sdlconfig --libs` |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1190 _sdlcflags=`$_sdlconfig --cflags` |
1 | 1191 fi |
1192 | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1193 if [ $_ggi = yes ]; then |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1194 _ggilib='-lggi' |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1195 fi |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1196 |
14 | 1197 if [ $_dga = yes ]; then |
1198 _dgalib='-lXxf86dga' | |
1199 fi | |
1200 | |
287 | 1201 if [ $_svga = yes ]; then |
289 | 1202 _svgalib='-lvgagl -lvga' |
287 | 1203 fi |
1204 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1205 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1206 _vmlib='-lXxf86vm' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1207 fi |
14 | 1208 |
1 | 1209 if [ "$_termcap" = "yes" ]; then |
1210 _termcap='#define USE_TERMCAP' | |
1211 _libtermcap='-ltermcap' | |
1212 else | |
1213 _termcap='#undef USE_TERMCAP' | |
1214 _libtermcap='' | |
1215 fi | |
1216 | |
1217 if [ "$_xmmp" = "yes" ]; then | |
1218 _xmmpaudio='#define USE_XMMP_AUDIO' | |
1219 _xmmplibs='-Llibxmm -lxmm' | |
1220 else | |
1221 _xmmpaudio='#undef USE_XMMP_AUDIO' | |
1222 fi | |
1223 | |
1224 if [ "$_lirc" = "yes" ]; then | |
1225 _lircdefs='#define HAVE_LIRC' | |
1226 _lirclibs='-llirc_client' | |
1227 else | |
1228 _lircdefs='#undef HAVE_LIRC' | |
1229 _lirclibs='' | |
1230 fi | |
1231 | |
525 | 1232 if [ $_png = yes ]; then |
660
29c9635aa144
Changed vo png to use -lz which is needed on some systems.
atmosfear
parents:
642
diff
changeset
|
1233 _libpng='-lpng -lz' |
525 | 1234 fi |
1 | 1235 |
1034 | 1236 _aosrc='' |
1237 | |
1033 | 1238 _alsa5='#undef HAVE_ALSA5' |
1239 _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
|
1240 if [ $_alsa = 'yes' ]; then |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1241 [ $_alsaver = '0.5.x' ] && { _aosrc="$_aosrc ao_alsa5.c"; _alsa5='#define HAVE_ALSA5'; _alsalib='-lasound'; } |
1114 | 1242 [ $_alsaver = '0.9.x' ] && { _aosrc="$_aosrc ao_alsa9.c"; _alsa9='#define HAVE_ALSA9'; _alsalib='-lasound'; } |
1033 | 1243 fi |
1244 | |
1245 _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
|
1246 #if [ $_esd = 'yes' ]; then |
1033 | 1247 # _esdd='#define HAVE_ESD' |
1034 | 1248 # _aosrc="$_aosrc ao_esd.c" |
1033 | 1249 # _esdlib='-lesd' |
1250 #fi | |
1251 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1252 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
|
1253 _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
|
1254 _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
|
1255 else |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1256 _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
|
1257 fi |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1258 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1259 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
|
1260 _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
|
1261 _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
|
1262 else |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1263 _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
|
1264 fi |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1265 |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1266 if [ "$_sys_soundcard_h" = "yes" ]; then |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1267 _have_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1' |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1268 else |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1269 _have_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H' |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1270 fi |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1271 |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1272 |
697 | 1273 # Checking for CFLAGS |
717 | 1274 if [ "$_profile" != "" ] || [ "$_debug" != "" ]; then |
1069
844e266c4ea9
For future development - the most warnings are enabled for --debug or --profile
nickols_k
parents:
1065
diff
changeset
|
1275 CFLAGS="-W -Wall -O2 -march=$proc -mcpu=$proc $_debug $_profile" |
717 | 1276 else |
1277 if test -z "$CFLAGS"; then | |
1278 CFLAGS="-O4 -march=$proc -mcpu=$proc -pipe -ffast-math -fomit-frame-pointer" | |
697 | 1279 fi |
717 | 1280 fi |
1182 | 1281 # Under FreeBSD (maybe other systems as well?) we have to add to CFLAGS |
1282 # for MT applications: | |
1283 if [ "$system_name" = "FreeBSD" ]; then | |
1284 CFLAGS="$CFLAGS -D_THREAD_SAFE" | |
1285 fi | |
1286 | |
1 | 1287 echo |
1288 echo "Creating $MCONF" | |
1289 cat > $MCONF << EOF | |
1290 | |
1291 # -------- Generated by ./configure ----------- | |
1292 | |
1234 | 1293 prefix = $_prefix |
1 | 1294 AR=ar |
196 | 1295 CC=$_cc |
1234 | 1296 # OPTFLAGS=-O4 $_profile $_debug -march=$proc -mcpu=$proc -pipe -fomit-frame-pointer -ffast-math |
1297 OPTFLAGS=$CFLAGS | |
1298 EXTRA_INC=$_extraincdir | |
1299 WIN32_PATH=-DWIN32_PATH=\"$_win32libdir\" | |
1300 | |
1301 X11_INC=$_x11incdir | |
518 | 1302 X11DIR=$_x11libdir |
1234 | 1303 X_LIBS=$_x11libdir $_extralibdir $_gllib $_ggilib $_sdllib $_dgalib $_x11lib $_xvlib $_vmlib $_svgalib $_libpng $_socklib |
1304 | |
1 | 1305 TERMCAP_LIB=$_libtermcap |
1306 XMM_LIBS = $_xmmplibs | |
1307 LIRC_LIBS = $_lirclibs | |
492 | 1308 CSS_LIB = $_csslib |
1309 CSS_INC = $_cssinc | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1310 SDL_INC = $_sdlcflags |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1311 DS_DEP = $_dshowdep |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1312 DS_LIB = $_dshowlib |
1033 | 1313 ALSA_LIB = $_alsalib |
1314 ESD_LIB = $_esdlib | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1315 ARCH_LIBS = $_archlibs |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1316 STREAM_SRCS = $_streamingsrcs |
1 | 1317 |
1318 EOF | |
1319 # echo 'CFLAGS=$(OPTFLAGS) -Wall -DMPG12PLAY' >> config.mak | |
1320 | |
1321 echo "Creating $CCONF" | |
1322 | |
1323 if [ "$_mmx" = "yes" ]; then | |
1324 _mmx='#define HAVE_MMX' | |
1325 else | |
1326 _mmx='#undef HAVE_MMX' | |
1327 fi | |
1328 | |
350 | 1329 if [ "$_mmx2" = "yes" ]; then |
1330 _mmx2='#define HAVE_MMX2' | |
1331 else | |
1332 _mmx2='#undef HAVE_MMX2' | |
1333 fi | |
1334 | |
1 | 1335 if [ $_3dnow = yes ]; then |
1336 _3dnowm='#define HAVE_3DNOW' | |
1337 else | |
1338 _3dnowm='#undef HAVE_3DNOW' | |
1339 fi | |
1340 | |
734 | 1341 if [ $_3dnowex = yes ]; then |
1342 _3dnowexm='#define HAVE_3DNOWEX' | |
1343 else | |
1344 _3dnowexm='#undef HAVE_3DNOWEX' | |
1345 fi | |
1346 | |
1 | 1347 if [ $_sse = yes ]; then |
1348 _ssem='#define HAVE_SSE' | |
1349 else | |
1350 _ssem='#undef HAVE_SSE' | |
1351 fi | |
1352 | |
1353 # --- | |
1354 | |
1355 _vosrc='' | |
1034 | 1356 #_aosrc='' |
1 | 1357 |
525 | 1358 if [ $_png = yes ]; then |
1359 _png='#define HAVE_PNG' | |
1360 _vosrc=$_vosrc' vo_png.c' | |
1361 else | |
1362 _png='#undef HAVE_PNG' | |
1363 fi | |
1364 | |
1365 | |
1 | 1366 if [ $_mlib = yes ]; then |
1367 _mlib='#define HAVE_MLIB' | |
1368 _vosrc=$_vosrc' yuv2rgb_mlib.c' | |
1369 else | |
1370 _mlib='#undef HAVE_MLIB' | |
1371 fi | |
1372 | |
1373 # --- | |
1374 | |
1375 if [ $_gl = yes ]; then | |
1376 _gl='#define HAVE_GL' | |
1377 _vosrc=$_vosrc' vo_gl.c' | |
1378 else | |
1379 _gl='#undef HAVE_GL' | |
1380 fi | |
1381 | |
1382 if [ $_sdl = yes ]; then | |
1383 _sdldef='#define HAVE_SDL' | |
1384 _vosrc=$_vosrc' vo_sdl.c' | |
965 | 1385 _aosrc=$_aosrc' ao_sdl.c' |
1 | 1386 else |
1387 _sdldef='#undef HAVE_SDL' | |
1388 fi | |
1389 | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1390 if [ $_ggi = yes ]; then |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1391 _ggi='#define HAVE_GGI' |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1392 _vosrc=$_vosrc' vo_ggi.c' |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1393 else |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1394 _ggi='#undef HAVE_GGI' |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1395 fi |
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1396 |
1 | 1397 if [ $_x11 = yes ]; then |
1398 _x11='#define HAVE_X11' | |
1399 _vosrc=$_vosrc' vo_x11.c' | |
1400 else | |
1401 _x11='#undef HAVE_X11' | |
1402 fi | |
1403 | |
1404 if [ $_xv = yes ]; then | |
1405 _xv='#define HAVE_XV' | |
1406 _vosrc=$_vosrc' vo_xv.c' | |
1407 else | |
1408 _xv='#undef HAVE_XV' | |
1409 fi | |
1410 | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1411 if [ $_vm = yes ]; then |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1412 _vm='#define HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1413 else |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1414 _vm='#undef HAVE_XF86VM' |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1415 fi |
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1416 |
1 | 1417 # --- |
1418 | |
1419 if [ $_mga = yes ]; then | |
1420 _mga='#define HAVE_MGA' | |
1421 _vosrc=$_vosrc' vo_mga.c' | |
1422 else | |
1423 _mga='#undef HAVE_MGA' | |
1424 fi | |
1178 | 1425 |
1 | 1426 if [ $_xmga = yes ]; then |
1427 _vosrc=$_vosrc' vo_xmga.c' | |
1178 | 1428 _xmga='#define HAVE_XMGA' |
1429 else | |
1430 _xmga='#undef HAVE_XMGA' | |
1 | 1431 fi |
1432 | |
1433 if [ $_syncfb = yes ]; then | |
1434 _syncfb='#define HAVE_SYNCFB' | |
1435 _vosrc=$_vosrc' vo_syncfb.c' | |
1436 else | |
1437 _syncfb='#undef HAVE_SYNCFB' | |
1438 fi | |
1439 | |
1440 if [ $_3dfx = yes ]; then | |
1441 _3dfx='#define HAVE_3DFX' | |
1442 _vosrc=$_vosrc' vo_3dfx.c' | |
1443 else | |
1444 _3dfx='#undef HAVE_3DFX' | |
1445 fi | |
1446 | |
287 | 1447 if [ $_svga = yes ]; then |
1448 _svga='#define HAVE_SVGALIB' | |
1449 _vosrc=$_vosrc' vo_svga.c' | |
1450 else | |
1451 _svga='#undef HAVE_SVGALIB' | |
1452 fi | |
1453 | |
11 | 1454 if [ $_dga = yes ]; then |
1455 _dga='#define HAVE_DGA' | |
38 | 1456 _vosrc=$_vosrc' vo_dga.c vo_fsdga.c' |
11 | 1457 else |
1458 _dga='#undef HAVE_DGA' | |
1459 fi | |
1460 | |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1461 if [ $_dga2 = yes ]; then |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1462 _dga2='#define HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1463 _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
|
1464 else |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1465 _dga2='#undef HAVE_DGA2' |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1466 fi |
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1467 |
225 | 1468 if [ $_fbdev = yes ]; then |
1469 _fbdev='#define HAVE_FBDEV' | |
1470 _vosrc=$_vosrc' vo_fbdev.c' | |
1471 else | |
1472 _fbdev='#undef HAVE_FBDEV' | |
1473 fi | |
1474 | |
1 | 1475 if [ $_mpg123 = yes ]; then |
1476 _mpg123='#define DEFAULT_MPG123' | |
1477 else | |
1478 _mpg123='#undef DEFAULT_MPG123' | |
1479 fi | |
1480 | |
723 | 1481 if [ $_gui = yes ]; then |
1482 _gui='#define HAVE_GUI' | |
1483 else | |
1484 _gui='#undef HAVE_GUI' | |
1485 fi | |
1486 | |
1029 | 1487 |
1 | 1488 cat > $CCONF << EOF |
1489 | |
1490 /* -------- Generated by ./configure ----------- */ | |
1491 | |
1492 /* Define this to enable avg. byte/sec-based AVI sync method by default: | |
1493 (use -bps or -nobps commandline option for run-time method selection) */ | |
1494 #undef AVI_SYNC_BPS | |
1495 | |
1496 /* Undefine this if you want soundcard-only timing by default: | |
1497 You can still change this with the -alsa or -noalsa command-line option! | |
1498 (This function was originally impemented to solve ALSA driver's big | |
1499 buffer problems, but it seems to be useful for every soundcard drivers) */ | |
1500 #define ALSA_TIMER | |
1501 | |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1502 /* 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
|
1503 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
|
1504 -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
|
1505 right-only), with 0 being the default. |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1506 */ |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1507 #define USE_FAKE_MONO |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
1508 |
1 | 1509 /* Undefine this if your soundcard driver has no working select(). |
1510 If you have kernel Oops, player hangups, or just no audio, you should | |
1511 try to recompile MPlayer with this option disabled! */ | |
463 | 1512 $_select |
1 | 1513 |
1514 /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) | |
1515 #define this if you prefer mpg123 (with 3Dnow! support) than l3codeca.acm | |
1516 (with mmx/sse optimizations) | |
1517 You can still change it runtime using -afm 1 (mpg123) or -afm 4 (l3codeca)*/ | |
1518 $_mpg123 | |
1519 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1520 |
1 | 1521 /* XMMP support: (test code) */ |
1522 $_xmmpaudio | |
1523 #define LIBDIR "/usr/local/lib" | |
1524 #define PLUGINDIR LIBDIR "/xmmp/Plugins" | |
1525 #define XMMP_AUDIO_DRIVER PLUGINDIR "/Sound/oss.so" | |
1526 | |
755 | 1527 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */ |
1528 #define MAX_OUTBURST 65536 | |
1529 | |
586 | 1530 /* set up audio OUTBURST. Do not change this! */ |
1531 #ifdef USE_XMMP_AUDIO | |
1532 #define OUTBURST 4096 | |
1533 #else | |
1534 //#define OUTBURST 1024 | |
1535 #define OUTBURST 512 | |
1536 #endif | |
1537 | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1538 /* 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
|
1539 $_have_soundcard_h |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1540 |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1541 |
1 | 1542 /* LIRC (remote control, see www.lirc.org) support: */ |
1543 $_lircdefs | |
1544 | |
492 | 1545 /* DeCSS support using libcss */ |
1546 $_css | |
1547 | |
41 | 1548 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
1549 #define MPEG12_POSTPROC | |
1550 | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1551 /* DirectShow support */ |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1552 $_dshow |
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
1553 |
642 | 1554 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ |
1555 $_fastmemcpy | |
1556 | |
723 | 1557 /* gui support, please do not edit this option */ |
1558 $_gui | |
1004 | 1559 #define PREFIX "$_prefix" |
723 | 1560 |
1029 | 1561 /* Audio lib drivers */ |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1562 $_ossaudio |
1029 | 1563 $_alsa5 |
1564 $_alsa9 | |
1565 $_esdd | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1566 $_sunaudio |
1008 | 1567 |
947
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
1568 /* 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
|
1569 #undef FAST_OSD |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
1570 #undef FAST_OSD_TABLE |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
1571 |
1 | 1572 /* Define if your processor stores words with the most significant |
1573 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
1574 /* #define WORDS_BIGENDIAN */ | |
1575 | |
1576 #define ARCH_X86 | |
1577 | |
849 | 1578 /* Define this to any prefered value from 386 up to infinity with step 100 */ |
1579 #define __CPU__ $iproc | |
1580 | |
1581 /*---------------------------------------------------------------------------- | |
1582 ** | |
1583 ** NOTE: Instead of modifying these definitions here, use the | |
1584 ** --enable/--disable options of the ./configure script! | |
1585 ** See ./configure --help for details. | |
1586 ** | |
1587 *---------------------------------------------------------------------------*/ | |
1 | 1588 |
1589 /* termcap flag for getch2.c */ | |
1590 $_termcap | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1591 |
525 | 1592 $_png |
1 | 1593 |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1594 $_streamingdef |
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1595 |
1 | 1596 /* Extension defines */ |
1597 $_mlib // available only on solaris | |
1598 $_3dnowm // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) | |
734 | 1599 $_3dnowexm // only define if you have 3DNOWEX (AMD Athlon, etc.) |
1 | 1600 $_mmx // only define if you have MMX |
350 | 1601 $_mmx2 // only define if you have MMX2 |
1 | 1602 $_ssem // only define if you have SSE (Intel Pentium III or Celeron II) |
1603 | |
1604 /* libvo options */ | |
1605 #define SCREEN_SIZE_X $_x | |
1606 #define SCREEN_SIZE_Y $_y | |
1607 $_x11 | |
1608 $_xv | |
209
26d2d4d3331a
Addes autodetection of XF86VidMode to configure, and adds a description of
mgraffam
parents:
196
diff
changeset
|
1609 $_vm |
1 | 1610 $_gl |
11 | 1611 $_dga |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
1612 $_dga2 |
1 | 1613 $_sdldef |
704 | 1614 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */ |
1615 $_sdlbuggy | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1616 $_ggi |
1 | 1617 $_3dfx |
1618 $_mga | |
1178 | 1619 $_xmga |
1 | 1620 $_syncfb |
225 | 1621 $_fbdev |
287 | 1622 $_svga |
1 | 1623 |
23 | 1624 #if defined(HAVE_GL)||defined(HAVE_X11)||defined(HAVE_XV) |
1 | 1625 #define X11_FULLSCREEN |
1626 #endif | |
1627 | |
1628 EOF | |
1629 | |
1630 echo "Creating libvo/config.mak" | |
1631 | |
1632 _voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'` | |
1633 | |
1634 cat > libvo/config.mak << EOF | |
1635 | |
1636 include ../config.mak | |
1637 | |
1638 OPTIONAL_SRCS=$_vosrc | |
1639 OPTIONAL_OBJS=$_voobj | |
1640 | |
1641 EOF | |
1642 | |
965 | 1643 echo "Creating libao2/config.mak" |
1644 | |
1645 _aoobj=`echo $_aosrc | sed -e 's/\.c/\.o/g'` | |
1646 | |
1647 cat > libao2/config.mak << EOF | |
1648 | |
1649 include ../config.mak | |
1650 | |
1651 OPTIONAL_SRCS=$_aosrc | |
1652 OPTIONAL_OBJS=$_aoobj | |
1653 | |
1654 EOF | |
1655 | |
1 | 1656 echo "Creating libac3/config.mak" |
1657 | |
1658 if [ $_sse = yes ]; then | |
1659 _downmixc='downmix/downmix_kni.S' | |
1660 _downmixo='downmix/downmix_kni.o' | |
1661 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
|
1662 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
|
1663 _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
|
1664 _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
|
1665 else |
1 | 1666 if [ $_binutils = yes ]; then |
1667 _downmixc='downmix/downmix_i386.S' | |
1668 _downmixo='downmix/downmix_i386.o' | |
1669 else | |
1670 _downmixc='downmix/downmix.c' | |
1671 _downmixo='downmix/downmix.o' | |
1672 cat << EOF | |
1673 | |
1674 !!! 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
|
1675 !!! Upgrade it for better AC3 audio decoding performance! |
1 | 1676 |
1677 EOF | |
1678 fi | |
1679 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
|
1680 fi |
1 | 1681 cat > libac3/config.mak << EOF |
1682 | |
1683 include ../config.mak | |
1684 | |
1685 OPTIONAL_SRCS = $_downmixc | |
1686 OPTIONAL_OBJS = $_downmixo | |
1687 | |
1688 EOF | |
1689 | |
1690 echo "Creating mp3lib/config.mak" | |
1691 | |
734 | 1692 if [ $_3dnowex = yes ]; then |
787 | 1693 _mp3libobjectsrcs='dct36_k7.s dct64_k7.s decode_k7.s dct36_3dnow.s dct64_3dnow.s decode_3dnow.s' |
1694 _mp3libobjectobjs='dct36_k7.o dct64_k7.o decode_k7.o dct36_3dnow.o dct64_3dnow.o decode_3dnow.o' | |
734 | 1695 else |
1 | 1696 if [ $_3dnow = yes ]; then |
787 | 1697 _mp3libobjectsrcs='dct36_3dnow.s dct64_3dnow.s decode_3dnow.s' |
1698 _mp3libobjectobjs='dct36_3dnow.o dct64_3dnow.o decode_3dnow.o' | |
1 | 1699 else |
787 | 1700 if [ $_sse = yes ]; then |
1701 _mp3libobjectsrcs='decode_sse.s' | |
1702 _mp3libobjectobjs='decode_sse.o' | |
1703 else | |
1704 _mp3libobjectsrcs= | |
1705 _mp3libobjectobjs= | |
1706 fi | |
1 | 1707 fi |
734 | 1708 fi |
1 | 1709 |
1710 cat > mp3lib/config.mak << EOF | |
1711 | |
1712 include ../config.mak | |
1713 | |
787 | 1714 OPTIONAL_SRCS = $_mp3libobjectsrcs |
1715 OPTIONAL_OBJS = $_mp3libobjectobjs | |
1 | 1716 |
1717 EOF | |
1718 | |
1719 cat << EOF | |
1720 | |
1721 Config files successfully generated by ./configure ! | |
1722 Please check config.h and config.mak files, tune CPU | |
1723 and optimization flags if you don't like these defaults. | |
1102 | 1724 You can compile the program with 'make' and |
1 | 1725 install with 'make install'. Good luck! |
1726 | |
1727 EOF | |
1728 | |
1729 if [ $_mtrr = yes ]; then | |
1730 echo "Please check mtrr settings at /proc/mtrr (see DOCS/MTRR)" | |
1731 echo | |
1732 fi | |
1733 | |
548
c5c2d4e41a4a
added sdl versiondetect and removed sdl warning (it's autodetect now)
atmosfear
parents:
525
diff
changeset
|
1734 if [ $_sdl = outdated ]; then |
1120 | 1735 echo "You have an outdated version of libSDL installed (older than v1.1.7)" |
1736 echo "and SDL support has therefore been disabled. Please upgrade to a more" | |
1737 echo "recent version (v1.1.8 and v1.2.[0-1] are known to work) from:" | |
1738 echo "http://www.libsdl.org" | |
1739 echo "You need to re-run ./configure and recompile after updating SDL." | |
1740 echo "If you are only interested in the libSDL audio drivers, then older" | |
1741 echo "version might work. Use --enable-sdl to force usage of libSDL." | |
1 | 1742 fi |
1743 | |
1744 if [ $_win32libdirnotify = yes ]; then | |
1120 | 1745 echo "Failed to find a WIN32 codecs dir at $_win32libdir!" |
1746 echo "Create it and copy the DLL files there! (You can get them from your windows" | |
1747 echo "directory or download them from:" | |
1748 echo "ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip" | |
1 | 1749 else |
1120 | 1750 echo "Ok, found Win32 codecs directory at $_win32libdir." |
1 | 1751 fi |
1752 | |
1021 | 1753 # Last move: |
1754 | |
1755 rm -f $TMPO $TMPC $TMPS |