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