Mercurial > mplayer.hg
annotate configure @ 3002:660026738a8f
there was a shitty warning
author | jaf |
---|---|
date | Mon, 19 Nov 2001 14:55:36 +0000 |
parents | 605efb97f981 |
children | cb81a27b00c6 |
rev | line source |
---|---|
2463 | 1 #! /bin/sh |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2 # |
2943 | 3 # Original version (C) 2000 Pontscho/fresh!mindworkz |
4 # pontscho@makacs.poliod.hu | |
2482 | 5 # |
2943 | 6 # History / Contributors: check the cvs log ! |
1618 | 7 # |
2943 | 8 # Cleanups all over the place (c) 2001 pl |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
9 # |
1258 | 10 # |
2943 | 11 # Guidelines: |
12 # If the option is named 'opt': | |
13 # _opt : should have a value in yes/no/auto | |
14 # _def_opt : '#define ... 1' or '#undef ...' that is: some C code | |
15 # _ld_opt : ' -L/path/dir -lopt ' that is: some GCC option | |
16 # _inc_opt : ' -I/path/dir/include ' | |
849 | 17 # |
2943 | 18 # GOTCHAS: |
19 # - config files are currently: | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
20 # config.h config.mak libvo/config.mak libao2/config.mak |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
21 # Gui/config.mak libvo2/config.mak |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
22 # - removed dvbincdir/madincdir/cssincdir: add them to extraincdir |
1 | 23 # |
2943 | 24 ############################################################################# |
1 | 25 |
2943 | 26 # Prefer these macros to full length text ! |
27 # These macros only return an error code - NO display is done | |
2193 | 28 cc_check() { |
2988 | 29 echo >> "$TMPLOG" |
2943 | 30 cat "$TMPC" >> "$TMPLOG" |
31 echo >> "$TMPLOG" | |
2988 | 32 echo "$_cc $_inc_extra $_ld_static $_ld_extra $TMPC -o $TMPO $@" >> "$TMPLOG" |
33 ( "$_cc" $_inc_extra $_ld_static $_ld_extra "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 2>&1 | |
34 TMP="$?" | |
35 echo >> "$TMPLOG" | |
36 echo "ldd $TMPO" >> "$TMPLOG" | |
37 ( ldd "$TMPO" ) >> "$TMPLOG" 2>&1 | |
38 echo >> "$TMPLOG" | |
39 return "$TMP" | |
2190 | 40 } |
41 | |
2943 | 42 # Display error message, flushes tempfile, exit |
2193 | 43 die () { |
2943 | 44 echo |
45 echo "Error: $@" >&2 | |
46 echo >&2 | |
47 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" | |
48 echo "Check "$TMPLOG" if you don't understand why it failed." | |
49 exit 1 | |
2190 | 50 } |
51 | |
2943 | 52 # OS test booleans functions |
2594 | 53 linux() { test "$system_name" = "Linux" ; return "$?" ; } |
54 sunos() { test "$system_name" = "SunOS" ; return "$?" ; } | |
55 irix() { test "$system_name" = "IRIX" ; return "$?" ; } | |
56 cygwin() { test "$system_name" = "CYGWIN" ; return "$?" ; } | |
57 freebsd() { test "$system_name" = "FreeBSD" ; return "$?" ; } | |
58 netbsd() { test "$system_name" = "NetBSD" ; return "$?" ; } | |
59 bsdos() { test "$system_name" = "BSD/OS" ; return "$?" ; } | |
60 openbsd() { test "$system_name" = "OpenBSD" ; return "$?" ; } | |
61 bsd() { freebsd || netbsd || bsdos || openbsd ; return "$?" ; } | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
62 qnx() { test "$system_name" = "QNX" ; return "$?" ; } |
2190 | 63 |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
64 # arch test boolean functions |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
65 x86() { |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
66 case "$host_arch" in |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
67 i[3-9]86|x86*) return 0 ;; |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
68 *) return 1 ;; |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
69 esac |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
70 } |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
71 |
2943 | 72 # Use this before starting a check |
73 echocheck() { | |
74 echo "============ Checking for $@ ============" >> "$TMPLOG" | |
75 echo "$_echo_n" "Checking for $@ ... $_echo_c" | |
76 } | |
77 | |
78 # Use this to echo the results of a check | |
79 echores() { | |
2961 | 80 echo "Result is: $@" >> "$TMPLOG" |
2943 | 81 echo "##########################################" >> "$TMPLOG" |
82 echo "" >> "$TMPLOG" | |
83 echo "$@" | |
84 } | |
85 ############################################################################# | |
1 | 86 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
87 # 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
|
88 case `echo -n` in |
2943 | 89 -n) _echo_n='' _echo_c='\c' ;; # SysV echo |
90 *) _echo_n=-n _echo_c='' ;; # BSD echo | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
91 esac |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
92 |
2435 | 93 LANGUAGES=`echo help_mp-??.h | sed "s/help_mp-\(..\).h/\1/g"` |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
94 |
1384
5665219136ce
Applied patch by pl <p_l@tfz.net> (help switch anywhere).
atmos4
parents:
1383
diff
changeset
|
95 for parm in "$@" ; do |
2435 | 96 if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then |
97 cat << EOF | |
98 | |
2943 | 99 Usage: $0 [OPTIONS]... |
1 | 100 |
2435 | 101 Configuration: |
102 -h, --help display this help and exit | |
1 | 103 |
2435 | 104 Installation directories: |
2190 | 105 --prefix=DIR use this prefix for installing mplayer [/usr/local] |
106 --datadir=DIR use this prefix for installing machine independent | |
2943 | 107 data [/usr/local/share/mplayer] |
2435 | 108 |
109 Optional features: | |
110 --enable-largefiles enable support for files >2^32 bytes long [disable] | |
2945 | 111 --enable-termcap use termcap database for key codes [autodetect] |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
112 --enable-lirc enable LIRC (remote control) support [autodetect] |
2435 | 113 --enable-gui enable GUI [disable] |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
114 --enable-tv enable TV Interface (tv/dvb grabbers) [disable] |
2435 | 115 --disable-win32 disable Win32 DLL support [autodetect] |
116 --disable-dshow disable DirectShow support (if no C++ compiler and | |
2943 | 117 libs are available or find the dshow codecs slower |
2435 | 118 than the old VfW ones) [autodetect] |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
119 --disable-xanim disable XAnim DLL support [autodetect] |
2435 | 120 --enable-vorbis build with OggVorbis support [autodetect] |
121 --disable-iconv do not use iconv(3) function [autodetect] | |
122 | |
123 Video: | |
2190 | 124 --enable-gl build with OpenGL render support [autodetect] |
125 --enable-dga build with DGA support [autodetect] | |
126 --enable-svga build with SVGAlib support [autodetect] | |
127 --enable-sdl build with SDL render support [autodetect] | |
128 --enable-aa build with AAlib render support [autodetect] | |
129 --enable-ggi build with GGI render support [autodetect] | |
2644 | 130 --enable-dxr3 build with DXR3/H+ render support [autodetect] |
2727 | 131 --enable-dvb build with support for output via DVB-Card [autodetect] |
2943 | 132 --enable-mga build with mga_vid support |
2435 | 133 (check for /dev/mga_vid) [autodetect] |
134 --enable-xmga build with mga_vid X Window support | |
135 (check for X & /dev/mga_vid) [autodetect] | |
2190 | 136 --enable-xv build with Xv render support for X 4.x [autodetect] |
2435 | 137 --enable-vm build with XF86VidMode support for x11 driver [disable] |
2190 | 138 --enable-xinerama build with Xinerama support for x11 driver [autodetect] |
139 --enable-x11 build with X11 render support [autodetect] | |
2435 | 140 --enable-fbdev build with FBDev render support [disable] |
141 --enable-mlib build with MLIB support (Solaris only) [disable] | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
142 --enable-3dfx build with 3dfx support [disable] |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
143 --enable-tdfxfb build with tdfxfb support [disable] |
1 | 144 |
2435 | 145 Audio: |
2190 | 146 --disable-ossaudio disable OSS sound support [autodetect] |
147 --disable-alsa disable alsa sound support [autodetect] | |
148 --disable-sunaudio disable Sun sound support [autodetect] | |
2435 | 149 --disable-mad disable mad audio support [autodetect] |
642 | 150 |
2594 | 151 Miscellaneous options: |
2458 | 152 --cc=COMPILER use this C compiler to build MPlayer [gcc] |
2435 | 153 --target=PLATFORM target platform (i386-linux, arm-linux, etc) |
2916
5ecae3e4db37
optional parameters can be added after --enable-static .
gabucino
parents:
2908
diff
changeset
|
154 --enable-static build a statically linked binary. If more linking |
5ecae3e4db37
optional parameters can be added after --enable-static .
gabucino
parents:
2908
diff
changeset
|
155 options needed : --enable-static="-lslang -lncurses" |
2435 | 156 --language=xx select a language [en] |
157 (Available: $LANGUAGES) | |
158 --disable-select disable audio select() support (for example, required | |
159 for ALSA or Vortex2 driver) [enable] | |
160 | |
161 Advanced options: | |
162 --enable-mmx build with mmx support [autodetect] | |
163 --enable-mmx2 build with mmx2 support (PIII, Athlon) [autodetect] | |
164 --enable-3dnow build with 3dnow! support [autodetect] | |
165 --enable-3dnowex build with 3dnow-dsp! support (K7) [autodetect] | |
166 --enable-sse build with sse support [autodetect] | |
167 --disable-fastmemcpy disable 3dnow/sse/mmx optimized memcpy() [enable] | |
168 --enable-debug[=1-3] compile debugging information into mplayer [disable] | |
169 --enable-profile compile profiling information into mplayer [disable] | |
170 | |
2943 | 171 Hazardous options a.k.a. "DO NOT BUGREPORT ANYTHING !" |
2435 | 172 --disable-gcc-checking disable gcc version checking |
173 | |
174 Use these options if autodetection fails: | |
2943 | 175 --with-extraincdir=DIR extra headers (png, dvb, mad, sdl, css, ...) in DIR |
176 --with-extralibdir=DIR extra library files (png, SDL, ...) in DIR | |
177 --with-x11incdir=DIR X headers in DIR | |
2435 | 178 --with-x11libdir=DIR X library files in DIR |
2988 | 179 --with-csslibdir=DIR libcss in DIR |
180 --with-madlibdir=DIR libmad (libmad shared lib.) in DIR | |
2435 | 181 --with-win32libdir=DIR W*ndows DLL files in DIR |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
182 --with-xanimlibdir=DIR XAnim DLL files in DIR |
2700 | 183 --with-sdl-config=PATH path to sdl*-config (e.g.: /opt/bin/sdl-config) |
184 --with-gtk-config=PATH path to gtk*-config (e.g.: /opt/bin/gtk-config) | |
185 --with-glib-config=PATH path to glib*-config (e.g.: /opt/bin/glib-config) | |
2435 | 186 |
1 | 187 EOF |
2435 | 188 exit 0 |
189 fi | |
1384
5665219136ce
Applied patch by pl <p_l@tfz.net> (help switch anywhere).
atmos4
parents:
1383
diff
changeset
|
190 done # for parm in ... |
1 | 191 |
2943 | 192 |
193 # 1st pass checking for vital options | |
2435 | 194 _cc=gcc |
195 test "$CC" && _cc="$CC" | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
196 _as=auto |
1424
2fcccb831d72
Solaris /bin/sh does not like the extra ; in a "for var do ... done" loop
jkeil
parents:
1422
diff
changeset
|
197 for ac_option do |
2943 | 198 case "$ac_option" in |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
199 --target=*) |
2943 | 200 _target=`echo $ac_option | cut -d '=' -f 2` |
201 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
202 --cc=*) |
2943 | 203 _cc=`echo $ac_option | cut -d '=' -f 2` |
204 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
205 --as=*) |
2943 | 206 _as=`echo $ac_option | cut -d '=' -f 2` |
207 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
208 --disable-gcc-checking) |
2943 | 209 _skip_cc_check=yes |
210 ;; | |
2988 | 211 --enable-static) |
212 _ld_static='-static' | |
213 ;; | |
214 --disable-static) | |
215 _ld_static='' | |
216 ;; | |
217 --enable-static=*) | |
218 _ld_static="-static `echo $ac_option | cut -d '=' -f 2`" | |
219 ;; | |
2943 | 220 --with-extraincdir=*) |
221 _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` | |
222 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
223 --with-extralibdir=*) |
2943 | 224 _ld_extra=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` |
225 ;; | |
226 esac | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
227 done |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
228 |
1 | 229 |
1323 | 230 # Determine our OS name and CPU architecture |
2171 | 231 if test -z "$_target" ; then |
2943 | 232 # OS name |
233 system_name=`( uname -s ) 2>&1` | |
234 case "$system_name" in | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
235 Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX) |
2943 | 236 ;; |
237 IRIX*) | |
238 system_name=IRIX | |
239 ;; | |
240 [cC][yY][gG][wW][iI][nN]*) | |
241 system_name=CYGWIN | |
242 ;; | |
243 *) | |
244 system_name="$system_name-UNKNOWN" | |
245 ;; | |
246 esac | |
2594 | 247 |
248 | |
2943 | 249 # host's CPU/instruction set |
2594 | 250 host_arch=`( uname -p ) 2>&1` |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
251 case "$host_arch" in |
2594 | 252 i386|sparc|ppc|alpha|arm|mips) |
2943 | 253 ;; |
1335
71c0f15c4712
Detect cpu architecture for a few more linux variants (linux/sparc, linux/ppc,
jkeil
parents:
1329
diff
changeset
|
254 |
2943 | 255 *) # uname -p on Linux returns 'unknown' for the processor type, |
256 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
257 |
2943 | 258 # Maybe uname -m (machine hardware name) returns something we |
259 # recognize. | |
1335
71c0f15c4712
Detect cpu architecture for a few more linux variants (linux/sparc, linux/ppc,
jkeil
parents:
1329
diff
changeset
|
260 |
2943 | 261 case "`( uname -m ) 2>&1`" in |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
262 i[3-9]86|x86*) host_arch=i386 ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
263 ppc) host_arch=ppc ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
264 alpha) host_arch=alpha ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
265 sparc*) host_arch=sparc ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
266 arm*) host_arch=arm ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
267 *) host_arch=UNKNOWN ;; |
2943 | 268 esac |
269 ;; | |
270 esac | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
271 else |
2943 | 272 system_name=`echo $_target | cut -d '-' -f 2` |
273 host_arch=`echo $_target | cut -d '-' -f 1` | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
274 fi |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
275 |
1412 | 276 echo "Detected operating system: $system_name" |
277 echo "Detected host architecture: $host_arch" | |
278 | |
1 | 279 # LGB: temporary files |
2190 | 280 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do |
2943 | 281 test "$I" && break |
2190 | 282 done |
1 | 283 |
2983 | 284 TMPLOG="configure.log" |
285 rm -f "$TMPLOG" | |
2943 | 286 TMPC="$I/mplayer-conf-$RANDOM-$$.c" |
287 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp" | |
288 TMPO="$I/mplayer-conf-$RANDOM-$$.o" | |
289 TMPS="$I/mplayer-conf-$RANDOM-$$.S" | |
1 | 290 |
291 # config files | |
196 | 292 |
2943 | 293 # FIXME: A lot of stuff is installed under /usr/local |
294 # NK: But we should never use this stuff implicitly since we call compiler | |
295 # from /usr we should be sure that there no effects from other compilers | |
296 # (libraries) which might be installed into /usr/local. Let users use this | |
297 # stuff explicitly as command line argument. In other words: It would be | |
298 # resonable have or only /usr/include or only /usr/local/include. | |
299 | |
300 if freebsd ; then | |
301 _ld_extra="$_ld_extra -L/usr/local/lib" | |
302 _inc_extra="$_inc_extra -I/usr/local/include" | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
303 fi |
196 | 304 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
305 |
1023 | 306 # Checking CC version... |
2435 | 307 # gcc-3.0 merges optimizations coming from egcs, pgcc, agcc, ... |
2171 | 308 if test "$_skip_cc_check" != yes ; then |
2943 | 309 echocheck "$_cc version" |
310 cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'` | |
311 case $cc_version in | |
312 '') | |
313 cc_version="v. ?.??, bad" | |
314 cc_verc_fail=yes | |
315 ;; | |
1388 | 316 2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9]|3.[0-9].[0-9]) |
2943 | 317 cc_version="$cc_version, ok" |
318 ;; | |
319 *) | |
320 cc_version="$cc_version, bad" | |
321 cc_verc_fail=yes | |
322 ;; | |
323 esac | |
324 echores "$cc_version" | |
325 if test "$cc_verc_fail" ; then | |
326 cat <<EOF | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
327 |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
328 *** Please downgrade/upgrade C compiler to gcc-2.95.x or gcc-3.x version! *** |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
329 |
2943 | 330 You are using a different compiler than ours. We do not have the time to make |
331 sure everything works with compilers than the one we use. Use either use the | |
332 same compiler as ours, or use --disable-gcc-checking but DO *NOT* REPORT BUGS | |
333 unless you can reproduce them after recompiling with 2.95.x or 3.0.x version! | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
334 |
2943 | 335 Note for gcc 2.96 users: some versions of this compiler are known to miscompile |
336 mplayer and lame (which is used for mencoder). If you get compile errors, | |
337 first upgrade to the latest 2.96 release (but minimum 2.96-85) and try again. | |
338 If the problem still exists, try with gcc 3.0.x (or 2.95.x) *BEFORE* reporting | |
339 bugs! | |
340 | |
341 GCC 2.96 IS NOT AND WILL NOT BE SUPPORTED BY US ! | |
342 | |
343 *** For details please read DOCS/gcc-2.96-3.0.html *** | |
2443 | 344 |
1766 | 345 EOF |
2943 | 346 die "Bad gcc version" |
347 fi | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
348 else |
2111 | 349 cat <<EOF |
350 | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
351 ****************************************************************************** |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
352 |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
353 Hmm. You really want to compile MPlayer with an *UNSUPPORTED* C compiler? |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
354 Ok. You know. Do it. But did you already read DOCS/gcc-2.96-3.0.html ??? |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
355 |
2943 | 356 DO NOT SEND BUGREPORTS OR COMPLAIN, it's *YOUR* compiler's fault! |
2442 | 357 Get ready for mysterious crashes, no-picture bugs, strange noises... REALLY! |
2943 | 358 Lame which is used by mencoder produces weird errors, too. |
2442 | 359 |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
360 If you have any problem, then install GCC 2.95.x or 3.x version and try again. |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
361 If the problem _still_ exists, then read DOCS/bugreports.html ! |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
362 |
2943 | 363 *** DO NOT SEND BUGREPORTS OR COMPLAIN it's *YOUR* compiler's fault! *** |
364 | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
365 ****************************************************************************** |
2111 | 366 |
367 EOF | |
368 | |
369 read _answer | |
370 | |
988
c6f88600d409
Enable to avoid checking version of gcc. New tests of as
nickols_k
parents:
987
diff
changeset
|
371 fi |
1 | 372 # --- |
373 | |
1272
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
374 # now that we know what compiler should be used for compilation, try to find |
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
375 # out which assembler is used by the $_cc compiler |
2171 | 376 if test "$_as" = auto ; then |
1272
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
377 _as=`$_cc -print-prog-name=as` |
2943 | 378 test -z "$_as" && _as=as |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
379 fi |
1 | 380 |
2943 | 381 # Try to find the available options for the current CPU |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
382 if x86 ; then |
2943 | 383 if test -r /proc/cpuinfo ; then |
384 # linux with /proc mounted, extract cpu information from it | |
385 _cpuinfo="cat /proc/cpuinfo" | |
386 elif test -r /compat/linux/proc/cpuinfo ; then | |
387 # FreeBSD with linux emulation /proc mounted, | |
388 # extract cpu information from it | |
389 _cpuinfo="cat /compat/linux/proc/cpuinfo" | |
390 else | |
391 # all other OS try to extract cpu information from a small helper | |
392 # program TOOLS/cpuinfo instead | |
393 $_cc -o TOOLS/cpuinfo TOOLS/cpuinfo.c | |
394 _cpuinfo="TOOLS/cpuinfo" | |
395 fi | |
525 | 396 |
2943 | 397 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1` |
398 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
399 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
400 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
401 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
1 | 402 |
2943 | 403 pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1` |
404 if test -z "$pparam" ; then | |
405 pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1` | |
406 fi | |
1 | 407 |
2943 | 408 _mmx=no |
409 _3dnow=no | |
410 _3dnowex=no | |
411 _mmx2=no | |
412 _sse=no | |
413 _sse2=no | |
1 | 414 |
2943 | 415 for i in $pparam ; do |
416 case "$i" in | |
417 3dnow) _3dnow=yes ;; | |
418 3dnowext) _3dnow=yes _3dnowex=yes ;; | |
419 mmx) _mmx=yes ;; | |
420 mmxext) _mmx2=yes ;; | |
421 mtrr|k6_mtrr) _mtrr=yes ;; | |
422 xmm|sse|kni) _sse=yes _mmx2=yes ;; | |
423 esac | |
424 done | |
1 | 425 |
2943 | 426 echocheck "CPU vendor" |
427 echores "$pvendor ($pfamily:$pmodel:$pstepping)" | |
428 | |
429 echocheck "CPU type" | |
430 echores "$pname" | |
431 | |
432 fi | |
1 | 433 |
434 | |
2500 | 435 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
436 case "$host_arch" in |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
437 i[3-9]86|x86*) |
2943 | 438 _def_arch="#define ARCH_X86 1" |
439 _target_arch="TARGET_ARCH_X86 = yes" | |
440 _def_words_endian="#undef WORDS_BIGENDIAN" | |
441 iproc=586 | |
442 proc=pentium | |
1 | 443 |
2943 | 444 case "$pvendor" in |
445 AuthenticAMD) | |
446 case "$pfamily" in | |
447 3) proc=i386 iproc=386 ;; | |
448 4) proc=i486 iproc=486 ;; | |
449 5) proc=k5 iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3 | |
450 test "$pmodel" -ge 6 && proc=k6 ;; | |
451 6|7) proc=k7 iproc=686 ;; | |
452 *) proc=pentium iproc=586 ;; | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
453 esac |
2943 | 454 ;; |
455 GenuineIntel) | |
456 case "$pfamily" in | |
457 3) proc=i386 iproc=386 ;; | |
458 4) proc=i486 iproc=486 ;; | |
459 5) proc=pentium iproc=586 ;; | |
460 6) proc=i686 iproc=686 ;; | |
461 *) proc=pentium iproc=586 ;; | |
462 esac | |
463 ;; | |
464 unknown) | |
465 case "$pfamily" in | |
466 3) proc=i386 iproc=386 ;; | |
467 4) proc=i486 iproc=486 ;; | |
468 *) proc=pentium iproc=586 ;; | |
469 esac | |
470 ;; | |
471 *) | |
472 proc=pentium iproc=586 ;; | |
473 esac | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
474 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
475 # check that gcc supports our cpu, if not, fallback to pentium |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
476 # LGB: check -mcpu and -march swithing step by step with enabling |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
477 # to fall back till 386. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
478 |
2943 | 479 echocheck "GCC & CPU optimization abilities" |
480 cat > $TMPC << EOF | |
481 int main(void) { return 0; } | |
482 EOF | |
483 | |
2171 | 484 if test "$proc" = "k7" ; then |
2943 | 485 cc_check -march=$proc -mcpu=$proc || proc=athlon |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
486 fi |
2171 | 487 if test "$proc" = "athlon" ; then |
2943 | 488 cc_check -march=$proc -mcpu=$proc || proc=pentiumpro |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
489 fi |
2171 | 490 if test "$proc" = "k6" ; then |
2943 | 491 cc_check -march=$proc -mcpu=$proc || proc=k5 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
492 fi |
2171 | 493 if test "$proc" = "k5" ; then |
2943 | 494 cc_check -march=$proc -mcpu=$proc || proc=pentium |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
495 fi |
2171 | 496 if test "$proc" = "i686" ; then |
2943 | 497 cc_check -march=$proc -mcpu=$proc || proc=pentiumpro |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
498 fi |
2171 | 499 if test "$proc" = "pentiumpro" ; then |
2943 | 500 cc_check -march=$proc -mcpu=$proc || proc=pentium |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
501 fi |
2171 | 502 if test "$proc" = "pentium" ; then |
2943 | 503 cc_check -march=$proc -mcpu=$proc || proc=i486 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
504 fi |
2171 | 505 if test "$proc" = "i486" ; then |
2943 | 506 cc_check -march=$proc -mcpu=$proc || proc=i386 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
507 fi |
2171 | 508 if test "$proc" = "i386" ; then |
2943 | 509 cc_check -march=$proc -mcpu=$proc || proc=error |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
510 fi |
2171 | 511 if test "$proc" = "error" ; then |
2943 | 512 die "Your $_cc does not support even \"i386\" for '-march' and '-mcpu'." |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
513 fi |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
514 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
515 _march="-march=$proc" |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
516 _mcpu="-mcpu=$proc" |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
517 |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
518 ## Gabucino : --target takes effect here (hopefully...) by overwriting |
2943 | 519 ## autodetected mcpu/march parameters |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
520 if test "$_target" ; then |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
521 _march="-march=$host_arch" |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
522 _mcpu="-mcpu=$host_arch" |
2943 | 523 proc="$_target" |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
524 fi |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
525 |
2943 | 526 echores "$proc" |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
527 ;; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
528 |
2943 | 529 sparc) |
530 _def_arch='#define ARCH_SPARC 1' | |
531 _target_arch='TARGET_ARCH_SPARC = yes' | |
532 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
533 iproc='sparc' | |
534 proc='v8' | |
535 _march='' | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
536 _mcpu="-mcpu=$proc" |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
537 ;; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
538 |
2943 | 539 arm) |
540 _def_arch="#define ARCH_ARM 1" | |
541 _target_arch='TARGET_ARCH_ARM = yes' | |
542 _def_words_endian='#undef WORDS_BIGENDIAN' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
543 iproc=arm |
2943 | 544 proc='' |
545 _march='' | |
546 _mcpu='' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
547 ;; |
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
548 |
2943 | 549 ppc) |
550 _def_arch='#define ARCH_PPC 1' | |
551 _target_arch='TARGET_ARCH_PPC = yes' | |
552 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
553 iproc='ppc' | |
554 proc='' | |
555 _march='' | |
556 _mcpu='' | |
1739
064c0acb7c39
Added C++ compiler/runtime enviroment detection and enabled ppc detection.
atmos4
parents:
1718
diff
changeset
|
557 ;; |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
558 |
2943 | 559 alpha) |
560 _def_arch='#define ARCH_ALPHA 1' | |
561 _target_arch='TARGET_ARCH_ALPHA = yes' | |
562 _def_words_endian='#undef WORDS_BIGENDIAN' | |
563 iproc='alpha' | |
564 proc='' | |
565 _march='' | |
566 _mcpu='-mcpu=ev56' | |
1908 | 567 ;; |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
568 |
2943 | 569 mips) |
570 _def_arch="#define ARCH_SGI_MIPS 1" | |
571 _target_arch="TARGET_ARCH_SGI_MIPS = yes" | |
572 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
573 iproc='sgi-mips' | |
574 proc='' | |
575 _march='' | |
576 _mcpu='' | |
2450 | 577 ;; |
578 | |
2943 | 579 *) |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
580 echo "The architecture of your CPU ($host_arch) is not supported by this configure script" |
2190 | 581 echo "It seems noone has ported MPlayer to your OS or CPU type yet." |
582 die "unsupported architecture $host_arch" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
583 ;; |
1 | 584 esac |
585 | |
2943 | 586 |
587 echocheck "binutils" | |
588 _binutils=no | |
589 $_as libac3/downmix/downmix_i386.S -o $TMPO > /dev/null 2>&1 && _binutils=yes | |
590 echores "$_binutils" | |
591 | |
1 | 592 |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
593 if x86 ; then |
2943 | 594 extcheck() { |
595 if test "$1" = yes ; then | |
596 echocheck "kernel support of $2" | |
597 cat > $TMPC <<EOF | |
598 int main(void){__asm__ __volatile__ ("$3":::"memory");return(0);} | |
599 EOF | |
2467 | 600 |
2943 | 601 if ( cc_check && $TMPO ) > /dev/null 2>&1 ; then |
602 echores "yes" | |
603 return 0 | |
604 else | |
605 echores "failed" | |
606 echo "It seems that your kernel does not correctly support $2." | |
607 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!" | |
608 return 1 | |
609 fi | |
610 fi | |
611 return 1 | |
612 } | |
1 | 613 |
2943 | 614 extcheck $_mmx "mmx" "emms" && _mmx=yes |
615 extcheck $_3dnow "3dnow" "femms" && _3dnow=yes | |
616 extcheck $_3dnowex "3dnowex" "pswapd %%mm0, %%mm0" && _3dnowex=yes | |
617 extcheck $_mmx2 "mmx2" "sfence" && _mmx2=yes | |
618 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" && _sse=yes | |
619 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" && _sse2=yes | |
620 echocheck "mtrr support" | |
621 echores "$_mtrr" | |
622 | |
623 fi | |
624 | |
1 | 625 |
2943 | 626 _prefix="/usr/local" |
627 | |
628 _libavcodec=auto | |
2945 | 629 _libavcodecso=auto |
2943 | 630 |
631 _x11=auto | |
632 _dga=auto | |
633 _dga2=auto | |
634 _xv=auto | |
635 _sdl=auto | |
636 _png=auto | |
637 _gl=auto | |
638 _ggi=auto | |
639 _aa=auto | |
640 _svga=auto | |
641 _fbdev=no | |
642 _dvb=auto | |
643 _dxr3=auto | |
644 _iconv=auto | |
645 _ossaudio=auto | |
646 _mad=auto | |
647 _vorbis=auto | |
648 _css=auto | |
649 _dvdread=auto | |
650 _xanim=auto | |
651 _xinerama=auto | |
652 _mga=auto | |
653 _xmga=auto | |
654 _vm=auto | |
655 _mlib=auto | |
656 _sgiaudio=auto | |
657 _sunaudio=auto | |
658 _alsa=auto | |
659 _fastmemcpy=yes | |
660 _win32=auto | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
661 _dshow=auto |
2943 | 662 _def_select='#define HAVE_AUDIO_SELECT' |
663 _tv=no | |
664 _streaming=no | |
665 _divx4linux=auto | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
666 _lirc=auto |
2943 | 667 _gui=no |
2945 | 668 _termcap=auto |
2943 | 669 _3dfx=no |
670 _tdfxfb=no | |
2961 | 671 _largefiles=no |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
672 _vo2=no |
2943 | 673 _language=en |
674 | |
675 | |
676 for ac_option do | |
677 case "$ac_option" in | |
678 # Skip 1st pass | |
679 --target=*) ;; | |
680 --cc=*) ;; | |
681 --as=*) ;; | |
682 --disable-gcc-checking) ;; | |
2989 | 683 --enable-static*) ;; |
2988 | 684 --disable-static*) ;; |
2943 | 685 --with-extraincdir=*) ;; |
686 --with-extralibdir=*) ;; | |
687 | |
2988 | 688 |
2943 | 689 # Real 2nd pass |
690 --enable-x11) _x11=yes ;; | |
691 --disable-x11) _x11=no ;; | |
692 --enable-dga) _dga=yes ;; | |
693 --disable-dga) _dga=no ;; | |
694 --enable-dga2) _dga2=yes ;; | |
695 --disable-dga2) _dga2=no ;; | |
696 --enable-xv) _xv=yes ;; | |
697 --disable-xv) _xv=no ;; | |
698 --enable-sdl) _sdl=yes ;; | |
699 --disable-sdl) _sdl=no ;; | |
700 --enable-png) _png=yes ;; | |
701 --disable-png) _png=no ;; | |
702 --enable-gl) _gl=yes ;; | |
703 --disable-gl) _gl=no ;; | |
704 --enable-ggi) _ggi=yes ;; | |
705 --disable-ggi) _ggi=no ;; | |
706 --enable-aa) _aa=yes ;; | |
707 --disable-aa) _aa=no ;; | |
708 --enable-svga) _svga=yes ;; | |
709 --disable-svga) _svga=no ;; | |
710 --enable-fbdev) _fbdev=yes ;; | |
711 --disable-fbdev) _fbdev=no ;; | |
712 --enable-dvb) _dvb=yes ;; | |
713 --disable-dvb) _dvb=no ;; | |
714 --enable-dxr3) _dxr3=yes ;; | |
715 --disable-dxr3) _dxr3=no ;; | |
716 --enable-iconv) _iconv=yes ;; | |
717 --disable-iconv) _iconv=no ;; | |
718 --enable-ossaudio) _ossaudio=yes ;; | |
719 --disable-ossaudio) _ossaudio=no ;; | |
720 --enable-mad) _mad=yes ;; | |
721 --disable-mad) _mad=no ;; | |
722 --enable-vorbis) _vorbis=yes ;; | |
723 --disable-vorbis) _vorbis=no ;; | |
724 --enable-css) _css=yes ;; | |
725 --disable-css) _css=no ;; | |
726 --enable-dvdread) _dvdread=yes ;; | |
727 --disable-dvdread) _dvdread=no ;; | |
728 --enable-xanim) _xanim=yes ;; | |
729 --disable-xanim) _xanim=no ;; | |
730 --enable-xinerama) _xinerama=yes ;; | |
731 --disable-xinerama) _xinerama=no ;; | |
732 --enable-mga) _mga=yes ;; | |
733 --disable-mga) _mga=no ;; | |
734 --enable-xmga) _xmga=yes ;; | |
735 --disable-xmga) _xmga=no ;; | |
736 --enable-vm) _vm=yes ;; | |
737 --disable-vm) _vm=no ;; | |
738 --enable-mlib) _mlib=yes ;; | |
739 --disable-mlib) _mlib=no ;; | |
740 --enable-sunaudio) _sunaudio=yes ;; | |
741 --disable-sunaudio) _sunaudio=no ;; | |
742 --enable-sgiaudio) _sgiaudio=yes ;; | |
743 --disable-sgiaudio) _sgiaudio=no ;; | |
744 --enable-alsa) _alsa=yes ;; | |
745 --disable-alsa) _alsa=no ;; | |
746 --enable-tv) _tv=yes ;; | |
747 --disable-tv) _tv=no ;; | |
748 --enable-fastmemcpy) _fastmemcpy=yes ;; | |
749 --disable-fastmemcpy) _fastmemcpy=no ;; | |
750 --enable-streaming) _streaming=yes ;; | |
751 --disable-streaming) _streaming=no ;; | |
752 --enable-divx4linux) _divx4linux=yes ;; | |
753 --disable-divx4linux) _divx4linux=no ;; | |
754 --enable-lirc) _lirc=yes ;; | |
755 --disable-lirc) _lirc=no ;; | |
756 --enable-gui) _gui=yes ;; | |
757 --disable-gui) _gui=no ;; | |
758 --enable-termcap) _termcap=yes ;; | |
759 --disable-termcap) _termcap=no ;; | |
760 --enable-3dfx) _3dfx=yes ;; | |
761 --disable-3dfx) _3dfx=no ;; | |
762 --enable-tdfxfb) _tdfxfb=yes ;; | |
763 --disable-tdfxfb) _tdfxfb=no ;; | |
764 --enable-mtrr) _mtrr=yes ;; | |
765 --disable-mtrr) _mtrr=no ;; | |
2961 | 766 --enable-largefiles) _largefiles=yes ;; |
2962 | 767 --disable-largefiles) _largefiles=no ;; |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
768 --enable-vo2) _vo2=yes ;; |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
769 --disable-vo2) _vo2=no ;; |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
770 |
2943 | 771 --enable-select) _def_select='#define HAVE_AUDIO_SELECT' ;; |
772 --disable-select) _def_select='#undef HAVE_AUDIO_SELECT' ;; | |
773 | |
774 | |
775 --language=*) | |
776 LINGUAS=`echo $ac_option | cut -d '=' -f 2` | |
777 ;; | |
778 | |
779 --with-win32libdir=*) | |
780 _win32libdir=`echo $ac_option | cut -d '=' -f 2` | |
781 _win32=yes | |
782 ;; | |
783 --with-xanimlibdir=*) | |
784 _xanimlibdir=`echo $ac_option | cut -d '=' -f 2` | |
785 _xanim=yes | |
786 ;; | |
787 --with-csslibdir=*) | |
788 _csslibdir=`echo $ac_option | cut -d '=' -f 2` | |
789 _css=yes | |
790 ;; | |
791 --with-mlibdir=*) | |
792 _mlibdir=`echo $ac_option | cut -d '=' -f 2` | |
793 _mlib=yes | |
794 ;; | |
795 | |
796 --enable-profile) | |
797 _profile='-p' | |
798 ;; | |
799 --enable-debug) | |
800 _debug='-g' | |
801 ;; | |
802 --enable-debug=*) | |
803 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2` | |
804 ;; | |
805 | |
806 --enable-sse) _sse=yes ;; | |
807 --disable-sse) _sse=no ;; | |
808 --enable-mmx2) _mmx2=yes ;; | |
809 --disable-mmx2) _mmx2=no ;; | |
810 --enable-3dnow) _3dnow=yes ;; | |
811 --disable-3dnow) _3dnow=no _3dnowex=no ;; | |
812 --enable-3dnowex) _3dnow=yes _3dnowex=yes ;; | |
813 --disable-3dnowex) _3dnowex=no ;; | |
814 --enable-mmx) _mmx=yes ;; | |
815 --disable-mmx) # without mmx 3Dnow! and stuff is also not possible | |
816 _3dnow=no _3dnowex=no _mmx=no _mmx2=no ;; | |
817 | |
818 --enable-win32) _win32=yes ;; | |
819 --disable-win32) _win32=no _dshow=no ;; | |
820 --enable-dshow) _win32=yes _dshow=yes ;; | |
821 --disable-dshow) _dshow=no ;; | |
822 | |
823 --with-x11incdir=*) | |
824 _inc_x11=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` | |
825 ;; | |
826 --with-x11libdir=*) | |
827 _ld_x11=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | |
828 ;; | |
829 --with-sdl-config=*) | |
830 _sdlconfig=`echo $ac_option | cut -d '=' -f 2` | |
831 ;; | |
832 --with-gtk-config=*) | |
833 _gtkconfig=`echo $ac_option | cut -d '=' -f 2` | |
834 ;; | |
835 --with-glib-config=*) | |
836 _glibconfig=`echo $ac_option | cut -d '=' -f 2` | |
837 ;; | |
838 --with-madlibdir=*) | |
839 _ld_mad=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | |
840 ;; | |
841 | |
842 --prefix=*) | |
843 _prefix=`echo $ac_option | cut -d '=' -f 2` | |
844 ;; | |
845 --datadir=*) | |
846 _datadir=`echo $ac_option | cut -d '=' -f 2` | |
847 ;; | |
848 | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
849 |
2943 | 850 *) |
851 echo "Unknown parameter: $ac_option" | |
852 ;; | |
853 | |
854 esac | |
855 done | |
856 | |
857 # Atmos: moved this here, to be correct, if --prefix is specified | |
858 test -z "$_datadir" && _datadir=$_prefix"/share/mplayer" | |
859 | |
860 | |
861 | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
862 if x86 ; then |
2943 | 863 # Checking assembler (_as) compatibility... |
864 # Added workaround for older as that reads from stdin by default - atmos | |
865 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'` | |
866 echocheck "assembler ($_as $as_version)" | |
867 | |
868 _pref_as_version='2.9.1' | |
869 echo 'nop' > $TMPS | |
870 if test "$_mmx" = yes ; then | |
871 echo 'emms' >> $TMPS | |
872 fi | |
873 if test "$_3dnow" = yes ; then | |
874 _pref_as_version='2.10.1' | |
875 echo 'femms' >> $TMPS | |
876 fi | |
877 if test "$_3dnowex" = yes ; then | |
878 _pref_as_version='2.10.1' | |
879 echo 'pswapd %mm0, %mm0' >> $TMPS | |
880 fi | |
881 if test "$_mmx2" = yes ; then | |
882 _pref_as_version='2.10.1' | |
883 echo 'movntq %mm0, (%eax)' >> $TMPS | |
884 fi | |
885 if test "$_sse" = yes ; then | |
886 _pref_as_version='2.10.1' | |
887 echo 'xorps %xmm0, %xmm0' >> $TMPS | |
888 fi | |
889 #if test "$_sse2" = yes ; then | |
890 # _pref_as_version='2.11' | |
891 # echo 'xorpd %xmm0, %xmm0' >> $TMPS | |
892 #fi | |
893 $_as $TMPS -o $TMPO > /dev/null 2>&1 || as_verc_fail=yes | |
894 | |
895 if test "$as_verc_fail" != yes ; then | |
896 echores "ok" | |
897 else | |
898 echores "failed" | |
899 echo "Upgrade binutils to ${_pref_as_version} ..." | |
900 die "obsolete binutils version" | |
901 fi | |
902 fi | |
903 | |
904 _def_mmx='#undef HAVE_MMX' | |
905 test "$_mmx" = yes && _def_mmx='#define HAVE_MMX 1' | |
906 _def_mmx2='#undef HAVE_MMX2' | |
907 test "$_mmx2" = yes && _def_mmx2='#define HAVE_MMX2 1' | |
908 _def_3dnow='#undef HAVE_3DNOW' | |
909 test "$_3dnow" = yes && _def_3dnow='#define HAVE_3DNOW 1' | |
910 _def_3dnowex='#undef HAVE_3DNOWEX' | |
911 test "$_3dnowex" = yes && _def_3dnowex='#define HAVE_3DNOWEX 1' | |
912 _def_sse='#undef HAVE_SSE' | |
913 test "$_sse" = yes && _def_sse='#define HAVE_SSE 1' | |
914 | |
915 | |
916 # Checking kernel version... | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
917 if x86 && linux ; then |
2943 | 918 _k_verc_problem=no |
919 kernel_version=`uname -r 2>&1` | |
920 echocheck "$system_name kernel version" | |
921 case "$kernel_version" in | |
922 '') kernel_version="?.??"; _k_verc_fail=yes;; | |
923 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*) | |
924 _k_verc_problem=yes;; | |
925 esac | |
926 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then | |
927 _k_verc_fail=yes | |
928 fi | |
929 if test "$_k_verc_fail" ; then | |
930 echores "$kernel_version, fail" | |
931 echo "WARNING! If you want to run mplayer on this system, get prepared for problems!" | |
3002 | 932 echo "2.2.x has a limited SSE support. Upgrade kernel or use --disable-sse" |
933 echo "Older kernel won't work correctly with mplayer" | |
2943 | 934 else |
935 echores "$kernel_version, ok" | |
936 fi | |
937 fi | |
938 | |
939 | |
940 | |
941 ###################### | |
942 # MAIN TESTS GO HERE # | |
943 ###################### | |
944 | |
945 | |
946 echocheck "Extra headers" | |
947 echores "$_extraincdir" | |
948 | |
949 | |
950 echocheck "Extra libs" | |
951 echores "$_extralibdir" | |
952 | |
953 | |
954 echocheck "kstat" | |
955 cat > $TMPC << EOF | |
956 int main(void) { return 0; } | |
957 EOF | |
958 _kstat=no | |
959 cc_check -lkstat && _kstat=yes | |
960 if test "$_kstat" = yes ; then | |
961 _ld_arch="-lkstat ${_ld_arch}" | |
962 fi | |
963 if test "$_kstat" = yes ; then | |
964 _def_kstat="#define HAVE_LIBKSTAT 1" | |
965 else | |
966 _def_kstat="#undef HAVE_LIBKSTAT" | |
967 fi | |
968 echores "$_kstat" | |
969 | |
970 | |
971 echocheck "posix4" | |
2948 | 972 cat > $TMPC << EOF |
973 int main(void) { return 0; } | |
974 EOF | |
2943 | 975 _posix4=no |
976 cc_check -lposix4 && _posix4=yes | |
977 if test "$_posix4" = yes ; then | |
978 _ld_arch="-lposix4 ${_ld_arch}" | |
979 fi | |
980 echores "$_posix4" | |
981 | |
982 | |
983 echocheck "socklib" | |
984 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl): | |
985 cat > $TMPC << EOF | |
986 int main(void) { return 0; } | |
987 EOF | |
988 cc_check $_ld_sock -lsocket && _ld_sock="$_ld_sock -lsocket" | |
989 cc_check $_ld_sock -lnsl && _ld_sock="$_ld_sock -lnsl" | |
2945 | 990 if test "$_ld_sock" ; then |
991 echores "$_ld_sock" | |
992 else | |
993 echores "not needed" | |
994 fi | |
2943 | 995 |
996 | |
997 echocheck "malloc.h" | |
998 cat > $TMPC << EOF | |
999 #include <malloc.h> | |
1000 int main(void) { return 0; } | |
1001 EOF | |
1002 _malloc=no | |
1003 cc_check && _malloc=yes | |
1004 if test "$_malloc" = yes ; then | |
1005 _def_malloc='#define HAVE_MALLOC_H 1' | |
1006 else | |
1007 _def_malloc='#undef HAVE_MALLOC_H' | |
1008 fi | |
1009 # malloc.h emits a warning in FreeBSD | |
1010 freebsd && _def_malloc='#undef HAVE_MALLOC_H' | |
1011 echores "$_malloc" | |
1012 | |
1013 | |
1014 echocheck "memalign()" | |
1015 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ? | |
1016 cat > $TMPC << EOF | |
1017 #include <malloc.h> | |
1018 int main (void) { | |
1019 char *string = memalign(64, sizeof(char)); | |
1020 return 0; | |
1021 } | |
1022 EOF | |
1023 _memalign=no | |
1024 cc_check && _memalign=yes | |
1025 if test "$_memalign" = yes ; then | |
1026 _def_memalign='#define HAVE_MEMALIGN 1' | |
1027 else | |
1028 _def_memalign='#undef HAVE_MEMALIGN' | |
1029 fi | |
1030 echores "$_memalign" | |
1031 | |
1032 | |
1033 echocheck "alloca.h" | |
1034 cat > $TMPC << EOF | |
1035 #include <alloca.h> | |
1036 int main(void) { return 0; } | |
1037 EOF | |
1038 _alloca=no | |
1039 cc_check && _alloca=yes | |
1040 if cc_check ; then | |
1041 _def_alloca='#define HAVE_ALLOCA_H 1' | |
1042 else | |
1043 _def_alloca='#undef HAVE_ALLOCA_H' | |
1044 fi | |
1045 echores "$_alloca" | |
1046 | |
1047 | |
1048 echocheck "mman.h" | |
1049 cat > $TMPC << EOF | |
1050 #include <sys/types.h> | |
1051 #include <sys/mman.h> | |
1052 int main(void) { return 0; } | |
1053 EOF | |
1054 _mman=no | |
1055 cc_check && _mman=yes | |
1056 if test "$_mman" = yes ; then | |
1057 _def_mman='#define HAVE_SYS_MMAN_H 1' | |
1058 else | |
1059 _def_mman='#undef HAVE_SYS_MMAN_H' | |
1060 fi | |
1061 echores "$_mman" | |
1062 | |
1063 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1064 echocheck "dynamic loader" |
2943 | 1065 cat > $TMPC << EOF |
1066 #include <dlfcn.h> | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1067 int main(void) { dlopen(0, 0); dlclose(0); dlsym(0, 0); return 0; } |
2943 | 1068 EOF |
1069 _dl=no | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1070 if cc_check ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1071 _dl=yes |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1072 elif cc_check -ldl ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1073 _dl=yes |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1074 _ld_dl='-ldl' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1075 fi |
2943 | 1076 if test "$_dl" = yes ; then |
1077 _def_dl='#define HAVE_LIBDL 1' | |
1078 else | |
1079 _def_dl='#undef HAVE_LIBDL' | |
1080 fi | |
1081 echores "$_dl" | |
1082 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1083 echocheck "pthread" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1084 cat > $TMPC << EOF |
3001 | 1085 #include <pthread.h> |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1086 int main(void) { (void) pthread_create (0, 0, 0, 0); return 0; } |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1087 EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1088 if cc_check -lpthread ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1089 _ld_pthread='-lpthread' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1090 elif cc_check -pthread ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1091 _ld_pthread='-pthread' |
3001 | 1092 elif cc_check ; then # QNX |
1093 _ld_pthread='' | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1094 else |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1095 die "Lib pthread not found." |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1096 fi |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1097 echores "using $_ld_pthread" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1098 |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1099 |
2943 | 1100 echocheck "sys/soundcard.h" |
1101 cat > $TMPC << EOF | |
1102 #include <sys/soundcard.h> | |
1103 int main(void) { return 0; } | |
1104 EOF | |
1105 _sys_soundcard=no | |
1106 cc_check && _sys_soundcard=yes | |
1107 if test "$_sys_soundcard" = yes ; then | |
1108 _def_sys_soundcard='#define HAVE_SYS_SOUNDCARD_H 1' | |
1109 else | |
1110 _def_sys_soundcard='#undef HAVE_SYS_SOUNDCARD_H' | |
1111 fi | |
1112 echores "$_sys_soundcard" | |
1113 | |
1114 | |
1115 echocheck "termcap" | |
2948 | 1116 if test "$_termcap" = auto ; then |
2943 | 1117 _termcap=no |
1118 cat > $TMPC <<EOF | |
1119 int main(void) { return 0; } | |
1120 EOF | |
2948 | 1121 cc_check -ltermcap && _termcap=yes |
2943 | 1122 else |
1123 _termcap=no | |
1124 fi | |
1125 if test "$_termcap" = yes ; then | |
1126 _def_termcap='#define USE_TERMCAP 1' | |
1127 _ld_termcap='-ltermcap' | |
1128 else | |
1129 _def_termcap='#undef USE_TERMCAP' | |
1130 fi | |
1131 echores "$_termcap" | |
1132 | |
1133 | |
1134 echocheck "3dfx" | |
1135 if test "$_3dfx" = yes ; then | |
1136 _def_3dfx='#define HAVE_3DFX 1' | |
1137 _vosrc="$_vosrc vo_3dfx.c" | |
1138 else | |
1139 _def_3dfx='#undef HAVE_3DFX' | |
1140 fi | |
1141 echores "$_3dfx" | |
1142 | |
1143 | |
1144 echocheck "tdfxfb" | |
1145 if test "$_tdfxfb" = yes ; then | |
1146 _def_tdfxfb='#define HAVE_TDFXFB 1' | |
1147 _vosrc="$_vosrc vo_tdfxfb.c" | |
1148 else | |
1149 _def_tdfxfb='#undef HAVE_TDFXFB' | |
1150 fi | |
1151 echores "$_tdfxfb" | |
1152 | |
1153 | |
1154 # Checking for localization ... | |
1155 echocheck "language" | |
1156 test -z "$LINGUAS" && LINGUAS="en" | |
1157 if test -f "help_mp-${LINGUAS}.h" ; then | |
1158 echores "using ${LINGUAS}" | |
1159 else | |
1160 echores "${LINGUAS} not found, using en" | |
1161 LINGUAS="en" | |
1162 fi | |
1163 _mp_help="help_mp-${LINGUAS}.h" | |
1164 test -f help_mp-${LINGUAS}.h || die "help_mp-${LINGUAS}.h not found" | |
1165 | |
1166 | |
1167 echocheck "vsscanf()" | |
1168 cat > $TMPC << EOF | |
1169 #include <stdarg.h> | |
1170 int main(void) { vsscanf(); return 0; } | |
1171 EOF | |
1172 _vsscanf=no | |
1173 cc_check && _vsscanf=yes | |
1174 if test "$_vsscanf" = yes ; then | |
1175 _def_vsscanf='#define HAVE_VSSCANF 1' | |
1176 else | |
1177 _def_vsscanf='#undef HAVE_VSSCANF' | |
1178 fi | |
1179 echores "$_vsscanf" | |
1180 | |
1181 | |
1182 echocheck "X11 headers" | |
1183 if test -z "$_x11incdir" ; then | |
1184 for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do | |
1185 if test -d "$I/X11" ; then | |
1186 _x11incdir="$I" | |
1187 echores "found $I" | |
1188 break | |
1189 fi | |
1190 done | |
1191 fi | |
1192 if test -z "$_x11incdir" ; then | |
1193 _x11=no | |
1194 echores "not found" | |
1195 elif test "$_x11incdir" != "/usr/include" ; then | |
1196 _inc_x11="-I$_x11incdir" | |
1197 fi | |
1198 | |
1199 | |
1200 echocheck "X11 libs" | |
1201 if test -z "$_x11libdir" ; then | |
1202 for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do | |
1203 if test -d "$I" ; then | |
1204 _x11libdir="$I" | |
1205 echores "found $I" | |
1206 break; | |
1207 fi | |
1208 done | |
1209 fi | |
1210 if test -z "$_x11libdir" ; then | |
1211 _x11=no | |
1212 echores "not found" | |
1213 fi | |
2988 | 1214 _ld_x11="-L$_x11libdir -lX11 -lXext $_ld_sock" |
2943 | 1215 |
1216 | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1217 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1218 # VIDEO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1219 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1220 |
2943 | 1221 echocheck "X11" |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1222 if test "$_x11" = auto || test "$_x11" = yes ; then |
2943 | 1223 cat > $TMPC <<EOF |
2988 | 1224 #include <X11/Xlib.h> |
1225 #include <X11/Xutil.h> | |
1226 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; } | |
2943 | 1227 EOF |
1228 _x11=no | |
2988 | 1229 cc_check $_inc_x11 $_ld_x11 && _x11=yes |
2943 | 1230 fi |
1231 if test "$_x11" = yes ; then | |
1232 _def_x11='#define HAVE_X11 1' | |
1233 _vosrc="$_vosrc vo_x11.c" | |
1234 else | |
1235 _def_x11='#undef HAVE_X11' | |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1236 _inc_x11='' |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1237 _ld_x11='' |
2943 | 1238 fi |
1239 echores "$_x11" | |
1240 | |
1241 | |
2945 | 1242 echocheck "DPMS" |
2943 | 1243 _xdpms3=no |
1244 if test "$_x11" = yes ; then | |
1245 cat > $TMPC <<EOF | |
1246 #include <X11/Xmd.h> | |
1247 #include <X11/Xlib.h> | |
1248 #include <X11/Xutil.h> | |
1249 #include <X11/Xatom.h> | |
1250 #include <X11/extensions/dpms.h> | |
1251 int main(void) { return 0; } | |
1252 EOF | |
2988 | 1253 cc_check $_inc_x11 $_ld_x11 -lXdpms && _xdpms3=yes |
2943 | 1254 fi |
1255 _xdpms4=no | |
1256 if test "$_x11" = yes ; then | |
1257 cat > $TMPC <<EOF | |
1258 #include <X11/Xmd.h> | |
1259 #include <X11/Xlib.h> | |
1260 #include <X11/Xutil.h> | |
1261 #include <X11/Xatom.h> | |
1262 #include <X11/extensions/dpms.h> | |
1263 int main(void) { | |
1264 (void) DPMSQueryExtension(0, 0, 0); | |
1265 } | |
1266 EOF | |
2945 | 1267 cc_check $_inc_x11 $_ld_x11 && _xdpms4=yes |
2943 | 1268 fi |
1269 | |
1270 if test "$_xdpms4" = yes ; then | |
1271 _def_xdpms='#define HAVE_XDPMS 1' | |
1272 echores "using xdpms4" | |
1273 elif test "$_xdpms3" = yes ; then | |
1274 _def_xdpms='#define HAVE_XDPMS 1' | |
1275 _ld_x11='$_ld_x11 -lXdpms' | |
1276 echores "using xdpms3" | |
1277 else | |
1278 _def_xdpms='#undef HAVE_XDPMS' | |
1279 echores "no" | |
1280 fi | |
1281 | |
1282 | |
1283 echocheck "Xv" | |
1284 if test "$_x11" = yes && test "$_xv" = auto ; then | |
1285 cat > $TMPC <<EOF | |
1286 int main(void) { return 0; } | |
1287 EOF | |
1288 _xv=no | |
2988 | 1289 cc_check $_inc_x11 $_ld_x11 -lXv && _xv=yes |
2943 | 1290 else |
1291 _xv=no | |
1292 fi | |
1293 if test "$_xv" = yes ; then | |
1294 _def_xv='#define HAVE_XV 1' | |
1295 _ld_xv='-lXv' | |
1296 _vosrc="$_vosrc vo_xv.c" | |
1297 else | |
1298 _def_xv='#undef HAVE_XV' | |
1299 fi | |
1300 echores "$_xv" | |
1301 | |
1302 | |
1303 echocheck "Xinerama" | |
1304 if test "$_x11" = yes && test "$_xinerama" = auto ; then | |
1305 cat > $TMPC <<EOF | |
1306 int main(void) { return 0; } | |
1307 EOF | |
1308 _xinerama=no | |
2988 | 1309 cc_check $_inc_x11 $_ld_x11 -lXinerama && _xinerama=yes |
2943 | 1310 else |
1311 _xinerama=no | |
1312 fi | |
1313 if test "$_xinerama" = yes ; then | |
1314 _def_xinerama='#define HAVE_XINERAMA 1' | |
1315 _ld_xinerama='-lXinerama' | |
1316 else | |
1317 _def_xinerama='#undef HAVE_XINERAMA' | |
1318 fi | |
1319 echores "$_xinerama" | |
1320 | |
1321 | |
1322 # Note: the -lXxf86vm library is the VideoMode extension and though it's not | |
1323 # needed for DGA, AFAIK every distribution packages together with DGA stuffs | |
1324 # named 'X extensions' or something similar. | |
1325 # This check may be useful for future mplayer versions (to change resolution) | |
1326 # If you run into problems, remove '-lXxf86vm'. | |
1327 echocheck "Xxf86vm" | |
1328 if test "$_x11" = yes && test "$_vm" = auto ; then | |
1329 cat > $TMPC <<EOF | |
1330 int main(void) { return 0; } | |
1331 EOF | |
1332 _vm=no | |
2988 | 1333 cc_check $_inc_x11 $_ld_x11 -lXxf86vm && _vm=yes |
2943 | 1334 else |
1335 _vm=no | |
1336 fi | |
1337 if test "$_vm" = yes ; then | |
1338 _def_vm='#define HAVE_XF86VM 1' | |
1339 _ld_vm='-lXxf86vm' | |
1340 else | |
1341 _def_vm='#undef HAVE_XF86VM' | |
1342 fi | |
1343 echores "$_vm" | |
1344 | |
1345 | |
1346 echocheck "DGA" | |
1347 if test "$_x11" = yes && test "$_dga" = auto ; then | |
1348 cat > $TMPC << EOF | |
1349 #include <stdio.h> | |
1350 #include <X11/Xlib.h> | |
1351 #include <X11/extensions/xf86dga.h> | |
1352 int main (void) { return 0; } | |
1353 EOF | |
1354 _dga=no | |
1355 cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga=yes | |
1356 else | |
1357 _dga=no | |
1358 fi | |
1359 if test "$_dga" = yes ; then | |
1360 _def_dga='#define HAVE_DGA 1' | |
1361 _ld_dga='-lXxf86dga' | |
1362 _vosrc="$_vosrc vo_dga.c" | |
1363 else | |
1364 _def_dga='#undef HAVE_DGA' | |
1365 fi | |
1366 echores "$_dga" | |
1367 | |
1368 | |
1369 echocheck "DGA 2.0" | |
1370 if test "$_x11" = yes && test "$_dga2" = auto ; then | |
1371 cat > $TMPC << EOF | |
1372 #include <stdio.h> | |
1373 #include <X11/Xlib.h> | |
1374 #include <X11/extensions/xf86dga.h> | |
1375 int main (void) { XDGAMode mode; XDGADevice device; return 0; } | |
1376 EOF | |
1377 _dga2=no | |
2988 | 1378 cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga2=yes |
2943 | 1379 else |
1380 _dga2=no | |
1381 fi | |
1382 if test "$_dga2" = yes ; then | |
1383 _def_dga2='#define HAVE_DGA2 1' | |
1384 _vosrc="$_vosrc vo_dga.c" | |
1385 else | |
1386 _def_dga2='#undef HAVE_DGA2' | |
1387 fi | |
1388 echores "$_dga2" | |
1389 | |
1390 | |
1391 echocheck "OpenGL" | |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1392 if test "$_x11" = yes && test "$_gl" = auto ; then |
2943 | 1393 cat > $TMPC << EOF |
1394 #include <GL/gl.h> | |
1395 int main(void) { return 0; } | |
1396 EOF | |
1397 _gl=no | |
2988 | 1398 if cc_check $_inc_x11 $_ld_x11 -lGL -lm ; then |
1399 _gl=yes | |
1400 _ld_gl="-lGL -lm" | |
1401 elif cc_check $_inc_x11 $_ld_x11 -lGL -lm $_ld_pthread ; then | |
1402 _gl=yes | |
1403 _ld_gl="-lGL -lm $_ld_pthread" | |
2943 | 1404 else |
2988 | 1405 _gl=no |
1406 cc_check $_inc_x11 $_ld_x11 -lGL -lm && _gl=yes | |
2190 | 1407 fi |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1408 else |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1409 _gl=no |
2943 | 1410 fi |
1411 if test "$_gl" = yes ; then | |
2988 | 1412 #FIXME ?? : bsd && test -r /usr/X11R6/bin/XFree86 && _ld_gl="-lGL $_ld_pthread" |
2943 | 1413 _def_gl='#define HAVE_GL 1' |
1414 _vosrc="$_vosrc vo_gl.c vo_gl2.c" | |
1415 else | |
1416 _def_gl='#undef HAVE_GL' | |
1417 fi | |
1418 echores "$_gl" | |
1515
624c9d5dad20
Use the standard mplayer config test for finding libraries, so that it can
jkeil
parents:
1511
diff
changeset
|
1419 |
1 | 1420 |
2943 | 1421 echocheck "/dev/mga_vid" |
1422 if test "$_mga" = auto ; then | |
1423 _mga=no | |
1424 test -c /dev/mga_vid && _mga=yes | |
1425 fi | |
1426 if test "$_mga" = yes ; then | |
1427 _def_mga='#define HAVE_MGA 1' | |
1428 _vosrc="$_vosrc vo_mga.c" | |
2464
4296c47ff209
The last irix64 patch looks broken to me, trying to fix.
jkeil
parents:
2463
diff
changeset
|
1429 else |
2943 | 1430 _def_mga='#undef HAVE_MGA' |
2463 | 1431 fi |
2943 | 1432 echores "$_mga" |
525 | 1433 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
1434 |
2943 | 1435 echocheck "syncfb" |
1436 _syncfb=no | |
1437 test "$_mga" = yes && _syncfb=yes | |
1438 if test "$_syncfb" = yes ; then | |
1439 _def_syncfb='#define HAVE_SYNCFB 1' | |
1440 _vosrc="$_vosrc vo_syncfb.c" | |
1441 else | |
1442 _def_syncfb='#undef HAVE_SYNCFB' | |
1443 fi | |
1444 echores "$_syncfb" | |
1445 | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1446 |
2943 | 1447 echocheck "xmga" |
1448 if test "$_xmga" = auto ; then | |
1449 _xmga=no | |
1450 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes | |
1451 fi | |
1452 if test "$_xmga" = yes ; then | |
1453 _def_xmga='#define HAVE_XMGA 1' | |
1454 _vosrc="$_vosrc vo_xmga.c" | |
1455 else | |
1456 _def_xmga='#undef HAVE_XMGA' | |
1457 fi | |
1458 echores "$_xmga" | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
1459 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1460 |
2943 | 1461 echocheck "GGI" |
1462 if test "$_ggi" = auto ; then | |
1463 cat > $TMPC << EOF | |
1464 #include <ggi/ggi.h> | |
1465 int main(void) { return 0; } | |
1466 EOF | |
1467 _ggi=no | |
1468 cc_check -lggi && _ggi=yes | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1469 fi |
2943 | 1470 if test "$_ggi" = yes ; then |
1471 _def_ggi='#define HAVE_GGI 1' | |
1472 _ld_ggi='-lggi' | |
1473 _vosrc="$_vosrc vo_ggi.c" | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1474 else |
2943 | 1475 _def_ggi='#undef HAVE_GGI' |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1476 fi |
2943 | 1477 echores "$_ggi" |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1478 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1479 |
2943 | 1480 echocheck "AA" |
1481 if test "$_aa" = auto ; then | |
1482 cat > $TMPC << EOF | |
1483 #include <aalib.h> | |
1484 int main(void) { return 0; } | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1485 EOF |
2943 | 1486 _aa=no |
1487 cc_check -laa && _aa=yes | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1488 fi |
2943 | 1489 if test "$_aa" = yes ; then |
1490 _def_aa='#define HAVE_AA 1' | |
1491 _ld_aa='-laa' | |
1492 _vosrc="$_vosrc vo_aa.c" | |
1493 else | |
1494 _def_aa='#undef HAVE_AA' | |
1495 fi | |
1496 echores "$_aa" | |
59 | 1497 |
1694 | 1498 |
2943 | 1499 echocheck "SVGAlib" |
1500 if test "$_svga" = auto ; then | |
1501 cat > $TMPC << EOF | |
1502 #include <vga.h> | |
1503 #include <vgagl.h> | |
1504 int main(void) { return 0; } | |
1694 | 1505 EOF |
2943 | 1506 _svga=no |
1507 cc_check -lvgagl -lvga && _svga=yes | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1508 fi |
2943 | 1509 if test "$_svga" = yes ; then |
1510 _def_svga='#define HAVE_SVGALIB 1' | |
1511 _ld_svga='-lvgagl -lvga' | |
1512 _vosrc="$_vosrc vo_svga.c" | |
1513 else | |
1514 _def_svga='#undef HAVE_SVGALIB' | |
1515 fi | |
1516 echores "$_svga" | |
1596 | 1517 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
1518 |
2943 | 1519 echocheck "FBDev" |
1520 if test "$_fbdev" = auto ; then | |
1521 _fbdev=no | |
1522 linux && _fbdev=yes | |
1523 fi | |
1524 if test "$_fbdev" = yes ; then | |
1525 _def_fbdev='#define HAVE_FBDEV 1' | |
1526 _vosrc="$_vosrc vo_fbdev.c" | |
1527 else | |
1528 _def_fbdev='#undef HAVE_FBDEV' | |
1529 fi | |
1530 echores "$_fbdev" | |
2774 | 1531 |
1532 | |
2943 | 1533 echocheck "DVB" |
1534 if test "$_dvb" != no ; then | |
1535 _dvb=no | |
1536 test -c /dev/ost/video && _dvb=yes | |
1537 fi | |
1538 if test "$_dvb" = yes ; then | |
1539 _def_dvb='#define HAVE_DVB 1' | |
1540 else | |
1541 _def_dvb='#undef HAVE_DVB' | |
1542 fi | |
1543 echores "$_dvb" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1544 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1545 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1546 echocheck "PNG support" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1547 if test "$_png" = auto ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1548 _png=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1549 if irix ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1550 # Don't check for -lpng on irix since it has its own libpng |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1551 # incompatible with the GNU libpng |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1552 echores "disabled on irix (not GNU libpng)" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1553 else |
2993 | 1554 cat > $TMPC << EOF |
1555 #include <png.h> | |
1556 int main(void) { return 0; } | |
1557 EOF | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1558 cc_check -lpng -lz -lm && _png=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1559 echores yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1560 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1561 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1562 echores "$_png" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1563 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1564 if test "$_png" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1565 _def_png='#define HAVE_PNG 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1566 _ld_png='-lpng -lz' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1567 _vosrc="$_vosrc vo_png.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1568 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1569 _def_png='#undef HAVE_PNG' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1570 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1571 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1572 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1573 ################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1574 # VIDEO + AUDIO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1575 ################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1576 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1577 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1578 echocheck "SDL" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1579 if test -z "$_sdlconfig" ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1580 if ( sdl-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1581 _sdlconfig="sdl-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1582 elif ( sdl11-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1583 _sdlconfig="sdl11-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1584 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1585 _sdlconfig=false |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1586 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1587 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1588 if test "$_sdl" = auto || test "$_sdl" = yes ; then |
2948 | 1589 cat > $TMPC << EOF |
1590 #include <SDL.h> | |
1591 int main(void) { return 0; } | |
1592 EOF | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1593 _sdl=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1594 if "$_sdlconfig" --version >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1595 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1596 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1597 if test "$_sdlversion" -gt 116 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1598 if test "$_sdlversion" -lt 121 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1599 _def_sdlbuggy='#define BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1600 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1601 _def_sdlbuggy='#undef BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1602 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1603 _sdl=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1604 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1605 _sdl=outdated |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1606 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1607 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1608 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1609 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1610 if test "$_sdl" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1611 _def_sdl='#define HAVE_SDL 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1612 _ld_sdl=`$_sdlconfig --libs` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1613 _inc_sdl=`$_sdlconfig --cflags` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1614 _vosrc="$_vosrc vo_sdl.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1615 _aosrc="$_aosrc ao_sdl.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1616 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1617 _def_sdl='#undef HAVE_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1618 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1619 echores "$_sdl (with $_sdlconfig)" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1620 |
2943 | 1621 echocheck "DXR3/H+" |
1622 if test "$_dxr3" = auto ; then | |
1623 cat > $TMPC << EOF | |
1624 #include <libdxr3/api.h> | |
1625 int main(void) { return 0; } | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1626 EOF |
2943 | 1627 _dxr3=no |
1628 cc_check -ldxr3 && _dxr3=yes | |
1629 fi | |
1630 if test "$_dxr3" = yes ; then | |
1631 _def_dxr3='#define HAVE_DXR3 1' | |
1632 _ld_dxr3='-ldxr3' | |
1633 _vosrc="$_vosrc vo_dxr3.c" | |
1634 _aosrc="$_aosrc ao_dxr3.c" | |
1635 else | |
1636 _def_dxr3='#undef HAVE_DXR3' | |
1637 fi | |
1638 echores "$_dxr3" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1639 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1640 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1641 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1642 # AUDIO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1643 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1644 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1645 |
2943 | 1646 echocheck "OSS Audio" |
1647 if test "$_ossaudio" = auto ; then | |
1648 cat > $TMPC << EOF | |
1649 #include <sys/soundcard.h> | |
1650 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; } | |
2482 | 1651 EOF |
2943 | 1652 _ossaudio=no |
1653 cc_check && _ossaudio=yes | |
1654 fi | |
1655 if test "$_ossaudio" = yes ; then | |
1656 _def_ossaudio='#define USE_OSS_AUDIO 1' | |
1657 _aosrc="$_aosrc ao_oss.c" | |
1658 else | |
1659 _def_ossaudio='#undef USE_OSS_AUDIO' | |
1660 fi | |
1661 echores "$_ossaudio" | |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
1662 |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1663 |
2943 | 1664 echocheck "ALSA audio" |
1665 if test "$_alsa" = auto || test "$_alsa" = yes; then | |
1666 _alsa=no | |
2190 | 1667 cat > $TMPC << EOF |
1004 | 1668 #include <sys/asoundlib.h> |
1029 | 1669 #include <sys/soundcard.h> |
2943 | 1670 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==5)); } |
1004 | 1671 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1672 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.5.x' |
1004 | 1673 |
2190 | 1674 cat > $TMPC << EOF |
1004 | 1675 #include <sys/asoundlib.h> |
1029 | 1676 #include <sys/soundcard.h> |
2943 | 1677 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); } |
1004 | 1678 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1679 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.9.x' |
2943 | 1680 if test "$_alsaver" ; then |
1681 _alsa=yes | |
1682 echores "yes ($_alsaver)" | |
1683 else | |
1684 echores "no" | |
1685 fi | |
1686 else | |
1687 echores "no" | |
2190 | 1688 fi |
2943 | 1689 _def_alsa5='#undef HAVE_ALSA5' |
1690 _def_alsa9='#undef HAVE_ALSA9' | |
1691 if test "$_alsa" = yes ; then | |
1692 if test "$_alsaver" = '0.5.x' ; then | |
1693 _aosrc="$_aosrc ao_alsa5.c" | |
1694 _def_alsa5='#define HAVE_ALSA5 1' | |
1695 elif test "$_alsaver" = '0.9.x' ; then | |
1696 _aosrc="$_aosrc ao_alsa9.c" | |
1697 _def_alsa9='#define HAVE_ALSA9 1' | |
1698 fi | |
1699 _ld_alsa='-lasound' | |
1700 fi | |
1004 | 1701 |
1702 | |
2943 | 1703 echocheck "Sun audio" |
1704 if test "$_sunaudio" = auto ; then | |
1705 cat > $TMPC << EOF | |
1706 #include <sys/types.h> | |
1707 #include <sys/audioio.h> | |
1708 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); } | |
1709 EOF | |
1710 _sunaudio=no | |
1711 cc_check && _sunaudio=yes | |
1712 fi | |
1713 if test "$_sunaudio" = yes ; then | |
1714 _def_sunaudio='#define USE_SUN_AUDIO 1' | |
1715 _aosrc="$_aosrc ao_sun.c" | |
1716 else | |
1717 _def_sunaudio='#undef USE_SUN_AUDIO' | |
1718 fi | |
1719 echores "$_sunaudio" | |
1720 | |
1721 | |
1722 echocheck "Sun mediaLib" | |
1723 if test "$_mlib" = auto ; then | |
1724 _mlib=no | |
1725 test -z "$_mlibdir" && _mlibdir=/opt/SUNWmlib | |
1726 cat > $TMPC << EOF | |
1727 #include <mlib.h> | |
1728 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; } | |
1029 | 1729 EOF |
2943 | 1730 cc_check -I${_mlibdir}/include -L${_mlibdir}/lib -lmlib && _mlib=yes |
1731 fi | |
1732 if test "$_mlib" = yes ; then | |
1733 _def_mlib='#define HAVE_MLIB 1' | |
1734 _inc_mlib=" -I${_mlibdir}/include " | |
1735 _ld_mlibl=" -L${_mlibdir}/lib -R${_mlibdir}/lib -lmlib " | |
1736 else | |
1737 _def_mlib='#undef HAVE_MLIB' | |
1738 fi | |
1739 echores "$_mlib" | |
1740 | |
1741 | |
1742 echocheck "SGI Audio" | |
1743 if test "$_sgiaudio" = auto ; then | |
1744 # check for SGI audio | |
1745 cat > $TMPC << EOF | |
1746 #include <dmedia/audio.h> | |
1747 int main(void) { return 0; } | |
1748 EOF | |
1749 _sgiaudio=no | |
1750 cc_check && _sgiaudio=yes | |
1751 fi | |
1752 if test "$_sgiaudio" = "yes" ; then | |
1753 _def_sgiaudio='#define USE_SGI_AUDIO 1' | |
1754 _ld_sgiaudio='-laudio' | |
1755 _aosrc="$_aosrc ao_sgi.c" | |
1756 else | |
1757 _def_sgiaudio='#undef USE_SGI_AUDIO' | |
1758 fi | |
1759 echores "$_sgiaudio" | |
1029 | 1760 |
2463 | 1761 |
2961 | 1762 echocheck "DVD support" |
2943 | 1763 if test "$_dvdread" = auto ; then |
1764 cat > $TMPC << EOF | |
1765 #include <dvdread/dvd_reader.h> | |
1766 #include <dvdread/ifo_types.h> | |
1767 #include <dvdread/ifo_read.h> | |
1768 #include <dvdread/nav_read.h> | |
1769 int main(void) { return 0; } | |
1770 EOF | |
1771 _dvdread=no | |
1772 cc_check \ | |
1773 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -ldvdread && \ | |
1774 _dvdread=yes | |
1775 fi | |
1776 if test "$_css" = auto ; then | |
1777 cat > $TMPC <<EOF | |
1778 #include <css.h> | |
1779 int main(void) { int i=CSSisEncrypted(0); return 0; } | |
2463 | 1780 EOF |
2943 | 1781 _css=no |
2961 | 1782 cc_check -lcss && _css=yes |
2943 | 1783 fi |
1784 # dvdread preferred to DeCSS | |
1785 if test "$_dvdread" = yes ; then | |
1786 _largefiles=yes | |
1787 _def_dvdread='#define USE_DVDREAD 1' | |
1788 _def_css='#undef HAVE_LIBCSS' | |
1789 _ld_css='-ldvdread' | |
2961 | 1790 echores "libdvdread" |
2943 | 1791 elif test "$_css" = yes ; then |
1792 _def_dvdread='#undef USE_DVDREAD' | |
1793 _def_css='#define HAVE_LIBCSS 1' | |
1794 test "$_csslibdir" && _ld_css="-L${_csslibdir} ${_ld_css}" | |
2961 | 1795 echores "libcss" |
2943 | 1796 else |
1797 _def_dvdread='#undef USE_DVDREAD' | |
1798 _def_css='#undef HAVE_LIBCSS' | |
2961 | 1799 echores "no" |
2943 | 1800 fi |
2463 | 1801 |
1802 | |
2943 | 1803 echocheck "zlib" |
2450 | 1804 cat > $TMPC << EOF |
2943 | 1805 #include <zlib.h> |
2983 | 1806 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; } |
2450 | 1807 EOF |
2943 | 1808 _zlib=no |
1809 cc_check -lz && _zlib=yes | |
1810 if test "$_zlib" = yes ; then | |
1811 _def_zlib='#define HAVE_ZLIB 1' | |
1812 _ld_zlib='-lz' | |
1813 else | |
1814 _def_zlib='#undef HAVE_ZLIB' | |
1815 fi | |
1816 echores "$_zlib" | |
2463 | 1817 |
1029 | 1818 |
2943 | 1819 echocheck "mad support" |
1820 if test "$_mad" = auto ; then | |
1821 _mad=no | |
1822 cat > $TMPC << EOF | |
2435 | 1823 #include <mad.h> |
1824 int main(void) { return 0; } | |
1825 EOF | |
2988 | 1826 cc_check $_madlibdir -lmad && _mad=yes |
2943 | 1827 fi |
1828 if test "$_mad" = yes ; then | |
1829 _def_mad='#define USE_LIBMAD 1' | |
1830 _ld_mad='-lmad' | |
1831 else | |
1832 _def_mad='#undef USE_LIBMAD' | |
1833 fi | |
1834 echores "$_mad" | |
1835 | |
1836 | |
1837 echocheck "OggVorbis support" | |
1838 if test "$_vorbis" = auto ; then | |
1839 _vorbis=no | |
1840 cat > $TMPC << EOF | |
1841 #include <vorbis/codec.h> | |
1842 int main(void) { return 0; } | |
1843 EOF | |
2988 | 1844 cc_check -lvorbis -logg -lm && _vorbis=yes |
2943 | 1845 fi |
1846 if test "$_vorbis" = yes ; then | |
1847 _def_vorbis='#define HAVE_OGGVORBIS 1' | |
2988 | 1848 _ld_vorbis='-lvorbis -logg -lm' |
2943 | 1849 else |
1850 _def_vorbis='#undef HAVE_OGGVORBIS' | |
1851 fi | |
1852 echores "$_vorbis" | |
1853 | |
1854 | |
1855 echocheck "Win32 DLL support" | |
1856 if test "$_win32" = auto ; then | |
1857 _win32=no | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1858 if x86 ; then |
2943 | 1859 if test -z "$_win32libdir" ; then |
1860 for I in /usr/local/lib/win32 /usr/lib/win32 ; do | |
1861 if test -d "$I" ; then | |
1862 _win32libdir="$I" | |
1863 break; | |
1864 fi; | |
1865 done | |
1866 fi | |
1867 test "$_win32libdir" && _win32=yes | |
1868 fi | |
1869 fi | |
1870 if test "$_win32" = yes ; then | |
1871 _def_win32='#define USE_WIN32DLL 1' | |
1872 _ld_win32='-Lloader -lloader' | |
1873 _dep_win32='loader/libloader.a' | |
1874 else | |
1875 _def_win32='#undef USE_WIN32DLL' | |
1876 fi | |
1877 echores "$_win32" | |
1878 | |
1879 | |
1880 echocheck "DirectShow" | |
1881 if test "$_win32" = yes && test "$_dshow" = auto ; then | |
1882 _dshow=no | |
1883 # check if compiler supports C++ and C++-libs are installed correctly | |
1884 cat > "$TMPCPP" << EOF | |
1885 #include <string> | |
1886 class myclass { | |
1887 private: int ret; | |
1888 public: int myreturn(void); | |
1889 }; | |
1890 int myclass::myreturn(void) { ret = 0; return ret ; } | |
1891 int main(void) { myclass myobject; return myobject.myreturn(); } | |
1892 EOF | |
1893 echo "------------------------------------------------" >> "$TMPLOG" | |
1894 cat "$TMPCPP" >> "$TMPLOG" | |
1895 if ( "$_cc" "$TMPCPP" -o "$TMPO" && "$TMPO" ) >> "$TMPLOG" 2>&1 ; then | |
1896 _dshow=yes | |
1897 echores "yes (C++ is ok)" | |
1898 else | |
1899 echores "no" | |
1900 cat << EOF | |
1901 | |
1902 Your C++ runtime environment is broken. | |
1903 | |
1904 Hints: Does $_cc support C++ ? Have you a C++ compiler installed ? | |
1905 Are the C++ libraries correctly installed ? | |
1906 Check for libstdc++ and in (/etc/)ld.so.conf | |
1907 | |
1908 If you don't need DirectShow support, you can also use: | |
1909 ./configure --disable-dshow <your-normal-configure-options> | |
1910 to disable building of the C++ based DirectShow code. | |
1911 | |
1912 EOF | |
1913 die "$_cc's C++ is broken" | |
1914 fi | |
1915 else | |
1916 _dshow=no | |
1917 echores "$_dshow" | |
1918 fi | |
1919 if test "$_dshow" = yes ; then | |
1920 _def_dshow='#define USE_DIRECTSHOW 1' | |
1921 _ld_dshow='-Lloader/DirectShow -lDS_Filter -lstdc++' | |
1922 _dep_dshow='loader/DirectShow/libDS_Filter.a' | |
1923 else | |
1924 _def_dshow='#undef USE_DIRECTSHOW' | |
1925 fi | |
2435 | 1926 |
1927 | |
2943 | 1928 echocheck "XAnim DLL" |
1929 if test "$_xanim" = auto ; then | |
1930 _xanim=no | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1931 if test "$_dl" = yes ; then |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1932 if x86 ; then |
2943 | 1933 if test -z "$_xanimlibdir" ; then |
1934 for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods ; do | |
1935 if test -d "$I" ; then | |
1936 _xanimlibdir="$I" | |
1937 break; | |
1938 fi; | |
1939 done | |
1940 fi | |
1941 test "$_xanimlibdir" && _xanim=yes | |
1942 echores "yes" | |
1943 else | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1944 echores "not supported on non x86" |
2943 | 1945 fi |
1946 else | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1947 echores "dl support needed" |
2943 | 1948 fi |
1949 else | |
1950 echores "$_xanim" | |
1951 fi | |
1952 if test "$_xanim" = yes ; then | |
1953 _def_xanim='#define USE_XANIM 1' | |
1954 _def_xanim_path="#define XACODEC_PATH \"$_xanimlibdir\"" | |
1955 else | |
1956 _def_xanim='#undef USE_XANIM' | |
1957 _def_xanim_path='#undef XACODEC_PATH' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
1958 fi |
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
1959 |
2943 | 1960 |
1961 echocheck "iconv" | |
1962 if test "$_iconv" = auto ; then | |
1963 if freebsd ; then | |
1964 _iconv_tmp='#include <giconv.h>' | |
1965 else | |
1966 _iconv_tmp='#include <iconv.h>' | |
1967 fi | |
1968 cat > $TMPC << EOF | |
1969 #include <stdio.h> | |
1970 #include <unistd.h> | |
1971 $_iconv_tmp | |
1972 #define INBUFSIZE 1024 | |
1973 #define OUTBUFSIZE 4096 | |
1974 | |
1975 char inbuffer[INBUFSIZE]; | |
1976 char outbuffer[OUTBUFSIZE]; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1977 |
2943 | 1978 int main(void) { |
1979 ssize_t numread; | |
1980 iconv_t icdsc; | |
1981 char *tocode="UTF-8"; | |
1982 char *fromcode="cp1250"; | |
1983 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) { | |
1984 while ((numread = read (0, inbuffer, INBUFSIZE))) { | |
1985 char *iptr=inbuffer; | |
1986 char *optr=outbuffer; | |
1987 size_t inleft=numread; | |
1988 size_t outleft=OUTBUFSIZE; | |
1989 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft) | |
1990 != (size_t)(-1)) { | |
1991 write (1, outbuffer, OUTBUFSIZE - outleft); | |
1992 } | |
1993 } | |
1994 if (iconv_close(icdsc) == -1) | |
1995 ; | |
1996 } | |
1997 } | |
987 | 1998 EOF |
2943 | 1999 _iconv=no |
2000 if freebsd ; then | |
2001 cc_check -lm -lgiconv && _iconv=yes | |
2002 elif bsdos ; then | |
2003 cc_check -lm -liconv && _iconv=yes | |
2004 else | |
2005 cc_check -lm && _iconv=yes | |
2006 fi | |
987 | 2007 fi |
2943 | 2008 if test "$_iconv" = yes ; then |
2009 _def_iconv='#define USE_ICONV 1' | |
2010 freebsd && _ld_iconv='-lgiconv' | |
2011 bsdos && _ld_iconv='-liconv' | |
2012 else | |
2013 _def_iconv='#undef USE_ICONV' | |
2014 fi | |
2015 echores "$_iconv" | |
2016 | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2017 |
2943 | 2018 echocheck "FFmpeg codec" |
2019 if test "$_libavcodec" = auto ; then | |
2020 # Note: static link is preferred to dynamic link | |
2021 _libavcodec=no | |
2022 test -d libavcodec && test -f libavcodec/Makefile && _libavcodec=yes | |
2023 fi | |
2945 | 2024 if test "$_libavcodecso" = auto ; then |
2025 _libavcodecso=no | |
2943 | 2026 cat > $TMPC << EOF |
2027 #include <libffmpeg/avcodec.h> | |
2028 int main(void) { return 0; } | |
987 | 2029 EOF |
2945 | 2030 cc_check -lffmpeg -lm && _libavcodecso=yes |
2943 | 2031 fi |
2032 _def_libavcodec='#undef USE_LIBAVCODEC' | |
2945 | 2033 _def_libavcodecso='#undef USE_LIBAVCODEC_SO' |
2943 | 2034 _def_ffpostprocess='#undef FF_POSTPROCESS' |
2035 if test "$_libavcodec" = yes ; then | |
2036 _def_libavcodec='#define USE_LIBAVCODEC 1' | |
2037 _ld_libavcodec='-Llibavcodec -lavcodec' | |
2038 _dep_libavcodec='libavcodec/libavcodec.a' | |
2039 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
2040 echores "static libavcodec" | |
2945 | 2041 elif test "$_libavcodecso" = yes ; then |
2042 _def_libavcodecso='#define USE_LIBAVCODEC_SO 1' | |
2943 | 2043 _ld_libavcodec='-lffmpeg' |
2044 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
2045 echores "dynamic libffmpeg.so" | |
2046 else | |
2047 echores "not found" | |
987 | 2048 fi |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2049 |
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2050 |
2943 | 2051 # FIXME : variables don't have a "standard" name so check this one day |
2052 if test "$_divx4linux" = auto ; then | |
2053 _divx4linux=no | |
2054 echocheck "Divx4linux decore" | |
2055 cat > $TMPC << EOF | |
2056 #include <decore.h> | |
2057 int main(void) { return DEC_OPT_FRAME_311; } | |
987 | 2058 EOF |
2943 | 2059 _divx4linux_decore=no |
2060 if cc_check -ldivxdecore -lm ; then | |
2061 _divx4linux_decore=yes | |
2062 else | |
2063 _divx4linux_decore='not found' | |
2064 fi | |
2065 echores "$_divx4linux_decore" | |
2066 test "$_divx4linux_decore" = yes && _divx4linux=yes | |
2067 echocheck "Divx4linux encore (for mencoder)" | |
2068 cat > $TMPC <<EOF | |
2069 #include <encore2.h> | |
2070 int main(void) { return 0; } | |
2071 EOF | |
2072 _divx4linux_encore=no | |
2073 cc_check -ldivxencore -lm && _divx4linux_encore=yes | |
2074 echores "$_divx4linux_encore" | |
1023 | 2075 fi |
2943 | 2076 _def_decore='#undef NEW_DECORE' |
2077 _ld_decore='-Lopendivx -ldecore' | |
2078 _def_encore='#undef NEW_ENCORE' | |
2079 if test "$_divx4linux_decore" = yes ; then | |
2080 _def_decore='#define NEW_DECORE 1' | |
2081 _ld_decore='-ldivxdecore opendivx/postprocess.o' | |
2082 if test "$_divx4linux_encore" = yes ; then | |
2083 _def_encore='#define NEW_ENCORE 1' | |
2084 _ld_encore='-ldivxencore' | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2085 fi |
987 | 2086 fi |
2087 | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2088 |
2943 | 2089 echocheck "lirc" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2090 if test "$_lirc" = auto ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2091 _lirc=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2092 test -c /dev/lirc && _lirc=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2093 fi |
2943 | 2094 if test "$_lirc" = yes ; then |
2095 _def_lirc='#define HAVE_LIRC 1' | |
2096 _ld_lirc='-llirc_client' | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2097 else |
2943 | 2098 _def_lirc='#undef HAVE_LIRC' |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2099 fi |
2943 | 2100 echores "$_lirc" |
2101 | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2102 |
2943 | 2103 echocheck "fastmemcpy" |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2104 # fastmemcpy check is done earlier with tests of CPU & binutils features |
2943 | 2105 if test "$_fastmemcpy" = yes ; then |
2106 _def_fastmemcpy='#define USE_FASTMEMCPY 1' | |
2107 else | |
2108 _def_fastmemcpy='#undef USE_FASTMEMCPY' | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
2109 fi |
2943 | 2110 echores "$_fastmemcpy" |
987 | 2111 |
2943 | 2112 |
2113 echocheck "TV interface" | |
2114 # FIXME tv check | |
2115 if test "$_tv" = yes ; then | |
2116 _def_tv='#define USE_TV 1' | |
2117 else | |
2118 _def_tv='#undef USE_TV' | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
2119 fi |
2943 | 2120 echores "$_tv" |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
2121 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2122 |
2943 | 2123 echocheck "streaming" |
2124 # FIXME streaming check | |
2125 if test "$_streaming" = yes ; then | |
2126 _def_streaming='#define STREAMING 1' | |
2127 # FIXME _streamingsrcs='asf_streaming.c network.c url.c http.c' | |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2128 else |
2943 | 2129 _def_streaming='#undef STREAMING' |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2130 fi |
2943 | 2131 echores "$_streaming" |
2132 | |
2133 | |
2134 | |
2135 # --------------- GUI specific tests begin ------------------- | |
2136 echocheck "GUI" | |
2137 echo "$_gui" | |
2138 if test "$_gui" = yes ; then | |
1740 | 2139 |
2943 | 2140 echocheck "XShape extension" |
2141 _xshape=no | |
2142 if test "$_x11" = yes ; then | |
2143 cat > $TMPC << EOF | |
2144 #include <X11/Xlib.h> | |
2145 #include <X11/Xproto.h> | |
2146 #include <X11/Xutil.h> | |
2147 #include <X11/extensions/shape.h> | |
2148 #include <stdlib.h> | |
1740 | 2149 int main(void) { |
2943 | 2150 char *name = ":0.0"; |
2151 Display *wsDisplay; | |
2152 int exitvar = 0; | |
2153 int eventbase, errorbase; | |
2154 if (getenv("DISPLAY")) | |
2155 name=getenv("DISPLAY"); | |
2156 wsDisplay=XOpenDisplay(name); | |
2157 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase)) | |
2158 exitvar=1; | |
2159 XCloseDisplay(wsDisplay); | |
2160 return exitvar; | |
1740 | 2161 } |
2162 EOF | |
2988 | 2163 cc_check $_inc_x11 $_ld_x11 && _xshape=yes |
1740 | 2164 fi |
2943 | 2165 if test "$_xshape" = yes ; then |
2166 _def_xshape='#define HAVE_XSHAPE 1' | |
2700 | 2167 else |
2943 | 2168 die "the GUI requires the X11 extension XShape (which was not found)" |
2700 | 2169 fi |
2943 | 2170 echores "$_xshape" |
2594 | 2171 |
2172 | |
2943 | 2173 # Check for GTK: |
2174 echocheck "gtk version" | |
2175 if test -z "$_gtkconfig" ; then | |
2176 if ( gtk-config --version ) >/dev/null 2>&1 ; then | |
2177 _gtkconfig="gtk-config" | |
2178 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then | |
2179 _gtkconfig="gtk12-config" | |
2180 else | |
2181 die "the GUI requires GTK (which was not found)" | |
2182 fi | |
2700 | 2183 fi |
2943 | 2184 _gtk=`$_gtkconfig --version 2>&1` |
2185 _inc_gtk=`$_gtkconfig --cflags 2>&1` | |
2186 _ld_gtk=`$_gtkconfig --libs 2>&1` | |
2187 echores "$_gtk (with $_gtkconfig)" | |
1694 | 2188 |
2943 | 2189 # Check for GLIB |
2190 echocheck "glib version" | |
2191 if test -z "$_glibconfig" ; then | |
2192 if ( glib-config --version ) >/dev/null 2>&1 ; then | |
2193 _glibconfig="glib-config" | |
2194 elif ( glib12-config --version ) >/dev/null 2>&1 ; then | |
2195 _glibconfig="glib12-config" | |
2196 else | |
2197 die "the GUI requires GLIB (which was not found)" | |
2198 fi | |
2199 fi | |
2200 _glib=`$_glibconfig --version 2>&1` | |
2201 _inc_glib=`$_glibconfig --cflags 2>&1` | |
2202 _ld_glib=`$_glibconfig --libs 2>&1` | |
2203 echores "$_glib (with $_glibconfig)" | |
1694 | 2204 |
2943 | 2205 _def_gui='#define HAVE_NEW_GUI 1' |
2206 _ld_gui='-LGui -lgui $(GTKLIB) $(GLIBLIB)' | |
2207 | |
2983 | 2208 echo |
2209 echo "Creating Gui/config.mak" | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2210 cat > Gui/config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2211 # -------- Generated by configure ----------- |
2943 | 2212 |
2213 GTKINC = $_inc_gtk | |
2214 GTKLIBS = $_ld_gtk | |
2215 GLIBINC = $_inc_glib | |
2216 GLIBLIBS = $_ld_glib | |
1694 | 2217 |
2218 EOF | |
2219 | |
2943 | 2220 else |
2221 _def_gui='#undef HAVE_NEW_GUI' | |
1 | 2222 fi |
2943 | 2223 # --------------- GUI specific tests end ------------------- |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2224 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2225 |
1279 | 2226 |
2943 | 2227 ############################################################################# |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2228 |
697 | 2229 # Checking for CFLAGS |
2171 | 2230 if test "$_profile" || test "$_debug" ; then |
2943 | 2231 CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile" |
2232 elif test -z "$CFLAGS" ; then | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2233 if test "$host_arch" != "mips" ; then |
2943 | 2234 CFLAGS="-O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer" |
2235 else | |
2236 CFLAGS="-O4 $_march $_mcpu -ffast-math -fomit-frame-pointer" | |
2237 fi | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2238 else |
2943 | 2239 cat <<EOF |
2240 | |
2241 MPlayer compilation will use CFLAGS set by you, but: | |
2242 DO NOT BUGREPORT IF IT DOES NOT WORK | |
2243 | |
2244 It is strongly recommended you let MPlayer choose the correct CFLAGS! | |
2245 To do so, execute 'CFLAGS= ./configure <options>' | |
2246 | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2247 EOF |
697 | 2248 fi |
2190 | 2249 |
2943 | 2250 # Thread support |
2190 | 2251 if linux ; then |
2252 CFLAGS="$CFLAGS -D_REENTRANT" | |
2253 elif bsd ; then | |
2943 | 2254 # FIXME bsd needs this so maybe other OS'es |
2190 | 2255 CFLAGS="$CFLAGS -D_THREAD_SAFE" |
1182 | 2256 fi |
2257 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2258 # 64 bit file offsets? |
2190 | 2259 if test "$_largefiles" = yes || freebsd ; then |
2260 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" | |
2171 | 2261 if test "$_dvdread" = yes ; then |
2190 | 2262 # dvdread support requires this (for off64_t) |
2263 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" | |
1596 | 2264 fi |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2265 fi |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2266 |
2943 | 2267 # Determine OS dependent libs |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2268 if cygwin ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2269 _confcygwin='TARGET_CYGWIN = yes' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2270 _def_confwin32='#define WIN32' |
2421 | 2271 else |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2272 _confcygwin="TARGET_CYGWIN = no" |
1 | 2273 fi |
2274 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2275 _ld_arch="$_ld_pthread $_ld_dl" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2276 bsd && _ld_arch="-rdynamic $_ld_arch" |
2943 | 2277 bsdos && _ld_arch="$_ld_arch -ldvd" |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1933
diff
changeset
|
2278 |
2943 | 2279 _def_debug='#undef MP_DEBUG' |
2280 test "$_debug" && _def_debug='#define MP_DEBUG 1' | |
287 | 2281 |
2943 | 2282 _def_linux='#undef TARGET_LINUX' |
2283 linux && _def_linux='#define TARGET_LINUX 1' | |
11 | 2284 |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
2285 |
2943 | 2286 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2287 echo "Creating config.mak" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2288 cat > config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2289 # -------- Generated by configure ----------- |
2727 | 2290 |
2943 | 2291 LANG = C |
2292 TARGET_OS = $system_name | |
2293 prefix = $_prefix | |
2294 AR = ar | |
2295 CC = $_cc | |
2296 # OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu -pipe -fomit-frame-pointer -ffast-math | |
2297 OPTFLAGS = $CFLAGS | |
2298 EXTRA_INC = $_inc_extra $_inc_gtk | |
2299 WIN32_PATH = -DWIN32_PATH=\\"$_win32libdir\\" | |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2300 |
2943 | 2301 STREAMING = $_streaming |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2302 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2303 VO2 = $_vo2 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2304 |
2943 | 2305 X11_INC = $_inc_x11 |
2988 | 2306 X11DIR = $_ld_static $_ld_x11 |
2307 X_LIBS = $_ld_static $_ld_x11 $_ld_extra $_ld_gl $_ld_ggi $_ld_dxr3 $_ld_sdl $_ld_dga $_ld_xv $_ld_vm $_ld_svga $_ld_png $_ld_sock $_ld_aa $_ld_vorbis $_ld_xinerama $_ld_mad $_ld_zlib | |
1258 | 2308 |
2988 | 2309 TERMCAP_LIB = $_ld_static $_ld_termcap |
2310 LIRC_LIBS = $_ld_static $_ld_lirc | |
2943 | 2311 CSS_USE = $_css |
2988 | 2312 CSS_LIB = $_ld_static $_ld_css |
2943 | 2313 SDL_INC = $_inc_sdl |
2314 W32_DEP = $_dep_win32 | |
2988 | 2315 W32_LIB = $_ld_static $_ld_win32 |
2943 | 2316 DS_DEP = $_dep_dshow |
2988 | 2317 DS_LIB = $_ld_static $_ld_dshow |
2949 | 2318 AV_DEP = $_dep_libavcodec |
2988 | 2319 AV_LIB = $_ld_static $_ld_libavcodec |
2943 | 2320 ALSA_LIB = $ld__alsa |
2321 SGI_AUDIO_LIB = $_ld_sgiaudio | |
2988 | 2322 ARCH_LIBS = $_ld_static $_ld_arch $_ld_iconv |
2323 DIVX4LINUX = $_ld_static $_divx4linux | |
2324 DECORE_LIBS = $_ld_static $_ld_decore | |
2325 ENCORE_LIBS = $_ld_static $_ld_encore | |
2943 | 2326 HAVE_MLIB = $_mlib |
2327 MLIB_INC = $_inc_mlib | |
2988 | 2328 MLIB_LIB = $_ld_static $_ld_mlib |
2421 | 2329 MADLIB_LIB = $_madlibdir |
2943 | 2330 STATIC = $_ld_static |
1258 | 2331 |
2332 # --- Some stuff for autoconfigure ---- | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2333 $_target_arch |
1436
42bd7f4c500b
Pre commit so I won't have to sync with later configure changes (cygwin stuff)
atmos4
parents:
1428
diff
changeset
|
2334 $_confcygwin |
1258 | 2335 TARGET_CPU=$iproc |
2943 | 2336 TARGET_MMX = $_mmx |
2337 TARGET_MMX2 = $_mmx2 | |
2338 TARGET_3DNOW = $_3dnow | |
2339 TARGET_3DNOWEX = $_3dnowex | |
2340 TARGET_SSE = $_sse | |
1258 | 2341 |
2943 | 2342 BINUTILS = $_binutils |
1718
3df3982c2c36
Fix "echo -n" problems on solaris for the new GUI stuff.
jkeil
parents:
1694
diff
changeset
|
2343 |
1694 | 2344 # --- GUI stuff --- |
2988 | 2345 GTKLIB = $_ld_static $_ld_gtk |
2346 GLIBLIB = $_ld_static $_ld_glib | |
2347 GUI_LIBS = $_ld_static $_ld_gui | |
2943 | 2348 GUI = $_gui |
2349 DEBUG = -DDEBUG | |
1694 | 2350 |
1258 | 2351 EOF |
1 | 2352 |
2943 | 2353 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2354 echo "Creating config.h" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2355 cat > config.h << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2356 /* -------- Generated by configure ----------- */ |
1 | 2357 |
2992
ef58de7a942f
Make description for SIMPLE_IDCT better and make #define consisten with others.
atmos4
parents:
2991
diff
changeset
|
2358 /* define this to use simple idct with patched libavcodec */ |
ef58de7a942f
Make description for SIMPLE_IDCT better and make #define consisten with others.
atmos4
parents:
2991
diff
changeset
|
2359 #define SIMPLE_IDCT 1 |
2991
ad107e7bb843
small "make it easier to compile" addition, enable SIMPLE_IDCT by default
atmos4
parents:
2990
diff
changeset
|
2360 |
2943 | 2361 #define USE_OSD 1 |
2362 #define USE_SUB 1 | |
1422 | 2363 |
2943 | 2364 $_def_debug |
1565 | 2365 |
2943 | 2366 $_def_dvdread |
1596 | 2367 |
1353 | 2368 /* Common data directory (for fonts, etc) */ |
2369 #define DATADIR "$_datadir" | |
2370 | |
2525 | 2371 /* Define this to compile stream-caching support, it can be enabled via |
2372 -cache <kilobytes> */ | |
2943 | 2373 #define USE_STREAM_CACHE 1 |
2525 | 2374 |
1349 | 2375 /* Define for using new DivX4Linux library, instead of open-source OpenDivX */ |
2376 /* You have to change DECORE_LIBS in config.mak too! */ | |
2943 | 2377 $_def_decore |
2378 $_def_encore | |
1349 | 2379 |
1 | 2380 /* Define this to enable avg. byte/sec-based AVI sync method by default: |
1599 | 2381 (use -bps or -nobps commandline option for run-time method selection) |
2382 -bps gives better sync for vbr mp3 audio, it is now default */ | |
2943 | 2383 #define AVI_SYNC_BPS 1 |
1 | 2384 |
2385 /* Undefine this if you want soundcard-only timing by default: | |
2386 You can still change this with the -alsa or -noalsa command-line option! | |
2387 (This function was originally impemented to solve ALSA driver's big | |
2388 buffer problems, but it seems to be useful for every soundcard drivers) */ | |
2943 | 2389 #define ALSA_TIMER 1 |
1 | 2390 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2391 /* 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
|
2392 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
|
2393 -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
|
2394 right-only), with 0 being the default. |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2395 */ |
2943 | 2396 #define USE_FAKE_MONO 1 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2397 |
1 | 2398 /* Undefine this if your soundcard driver has no working select(). |
2399 If you have kernel Oops, player hangups, or just no audio, you should | |
2400 try to recompile MPlayer with this option disabled! */ | |
2943 | 2401 $_def_select |
1 | 2402 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
2403 /* define this to use iconv(3) function to codepage conversions */ |
2943 | 2404 $_def_iconv |
1 | 2405 |
755 | 2406 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */ |
2407 #define MAX_OUTBURST 65536 | |
2408 | |
586 | 2409 /* set up audio OUTBURST. Do not change this! */ |
2410 #ifdef USE_XMMP_AUDIO | |
2411 #define OUTBURST 4096 | |
2412 #else | |
2413 //#define OUTBURST 1024 | |
2414 #define OUTBURST 512 | |
2415 #endif | |
2416 | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2417 /* Define this if your system has the header file for the OSS sound interface */ |
2943 | 2418 $_def_sys_soundcard |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2419 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2420 /* Define this if your system has the "malloc.h" header file */ |
2943 | 2421 $_def_malloc |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2422 |
2774 | 2423 /* memalign is mapped to malloc if unsupported */ |
2943 | 2424 $_def_memalign |
2774 | 2425 #ifndef HAVE_MEMALIGN |
2426 # define memalign(a,b) malloc(b) | |
2427 #endif | |
1678 | 2428 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2429 /* Define this if your system has the "alloca.h" header file */ |
2943 | 2430 $_def_alloca |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2431 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2432 /* Define this if your system has the "sys/mman.h" header file */ |
2943 | 2433 $_def_mman |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2434 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2435 /* Define this if you have the elf dynamic linker -ldl library */ |
2943 | 2436 $_def_dl |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2437 |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
2438 /* Define this if you have the kstat kernel statistics library */ |
2943 | 2439 $_def_kstat |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
2440 |
2482 | 2441 /* Define this if you have zlib */ |
2943 | 2442 $_def_zlib |
2482 | 2443 |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2444 /* Define this if your system has vsscanf */ |
2943 | 2445 $_def_vsscanf |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2446 |
1 | 2447 /* LIRC (remote control, see www.lirc.org) support: */ |
2943 | 2448 $_def_lirc |
1 | 2449 |
492 | 2450 /* DeCSS support using libcss */ |
2943 | 2451 $_def_css |
492 | 2452 |
41 | 2453 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
2943 | 2454 #define MPEG12_POSTPROC 1 |
41 | 2455 |
2228 | 2456 /* Define this to enable image postprocessing in libavcodec (requires FAST cpu!) */ |
2943 | 2457 $_def_ffpostprocess |
2228 | 2458 |
2943 | 2459 #define HAVE_ODIVX_POSTPROCESS 1 |
2184 | 2460 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2461 /* Win32 DLL support */ |
2943 | 2462 $_def_win32 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2463 |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
2464 /* DirectShow support */ |
2943 | 2465 $_def_dshow |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
2466 |
1279 | 2467 /* ffmpeg's libavcodec support (requires libavcodec source) */ |
2943 | 2468 $_def_libavcodec |
2945 | 2469 $_def_libavcodecso |
2943 | 2470 |
1383
d15d60e12bd3
added #define CONFIG_DECODERS to support latest ffmpeg CVS
arpi
parents:
1353
diff
changeset
|
2471 /* use only decoders from libavcodec: */ |
2943 | 2472 #define CONFIG_DECODERS 1 |
1279 | 2473 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2474 /* XAnim DLL support */ |
2943 | 2475 $_def_xanim |
2476 $_def_xanim_path | |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2477 |
642 | 2478 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ |
2943 | 2479 $_def_fastmemcpy |
642 | 2480 |
723 | 2481 /* gui support, please do not edit this option */ |
2943 | 2482 $_def_gui |
1004 | 2483 #define PREFIX "$_prefix" |
723 | 2484 |
1029 | 2485 /* Audio lib drivers */ |
2943 | 2486 $_def_ossaudio |
2487 $_def_alsa5 | |
2488 $_def_alsa9 | |
2489 $_def_sunaudio | |
2490 $_def_sgiaudio | |
1008 | 2491 |
947
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2492 /* 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
|
2493 #undef FAST_OSD |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2494 #undef FAST_OSD_TABLE |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2495 |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2496 /* Enable TV Interface support */ |
2943 | 2497 $_def_tv |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2498 |
1 | 2499 /* Define if your processor stores words with the most significant |
2500 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
2943 | 2501 $_def_words_endian |
1 | 2502 |
2943 | 2503 $_def_arch |
1 | 2504 |
2943 | 2505 /* Define this for Cygwin build for win32 */ |
2506 $_def_confwin32 | |
1441
039bd84a6c33
Make cygwin define WIN32 for compatibility with mingw and visualc, ...
atmos4
parents:
1438
diff
changeset
|
2507 |
849 | 2508 /* Define this to any prefered value from 386 up to infinity with step 100 */ |
2509 #define __CPU__ $iproc | |
2510 | |
2943 | 2511 $_def_linux |
2242 | 2512 |
1495 | 2513 #ifdef sun |
2514 #define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0" | |
1608
3005f75b82fd
Provide a better default for the DVD device on solaris.
jkeil
parents:
1601
diff
changeset
|
2515 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE |
1495 | 2516 #else |
2517 #define DEFAULT_CDROM_DEVICE "/dev/cdrom" | |
1608
3005f75b82fd
Provide a better default for the DVD device on solaris.
jkeil
parents:
1601
diff
changeset
|
2518 #define DEFAULT_DVD_DEVICE "/dev/dvd" |
1495 | 2519 #endif |
2520 | |
1596 | 2521 |
849 | 2522 /*---------------------------------------------------------------------------- |
2523 ** | |
2524 ** NOTE: Instead of modifying these definitions here, use the | |
2525 ** --enable/--disable options of the ./configure script! | |
2526 ** See ./configure --help for details. | |
2527 ** | |
2528 *---------------------------------------------------------------------------*/ | |
1 | 2529 |
2530 /* termcap flag for getch2.c */ | |
2943 | 2531 $_def_termcap |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2532 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2533 /* enable PNG support */ |
2943 | 2534 $_def_png |
1 | 2535 |
2421 | 2536 /* libmad support */ |
2943 | 2537 $_def_mad |
2421 | 2538 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2539 /* enable OggVorbis support */ |
2943 | 2540 $_def_vorbis |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2541 |
2943 | 2542 $_def_streaming |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2543 |
1 | 2544 /* Extension defines */ |
2943 | 2545 $_def_3dnow // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) |
2546 $_def_3dnowex // only define if you have 3DNOWEX (AMD Athlon, etc.) | |
2547 $_def_mmx // only define if you have MMX (newer x86 chips, not P54C/PPro) | |
2548 $_def_mmx2 // only define if you have MMX2 (Athlon/PIII/4/CelII) | |
2549 $_def_sse // only define if you have SSE (Intel Pentium III/4 or Celeron II) | |
1 | 2550 |
1438 | 2551 #ifdef HAVE_MMX |
2943 | 2552 #define USE_MMX_IDCT 1 |
1438 | 2553 #endif |
2554 | |
2943 | 2555 $_def_mlib // Sun mediaLib, available only on solaris |
1718
3df3982c2c36
Fix "echo -n" problems on solaris for the new GUI stuff.
jkeil
parents:
1694
diff
changeset
|
2556 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2557 /* libmpeg2 uses a different feature test macro for mediaLib */ |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2558 #ifdef HAVE_MLIB |
2943 | 2559 #define LIBMPEG2_MLIB 1 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2560 #endif |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2561 |
1 | 2562 /* libvo options */ |
2961 | 2563 #define SCREEN_SIZE_X 1 |
2564 #define SCREEN_SIZE_Y 1 | |
2943 | 2565 $_def_x11 |
2566 $_def_xv | |
2567 $_def_vm | |
2568 $_def_xinerama | |
2569 $_def_gl | |
2570 $_def_dga | |
2571 $_def_dga2 | |
2572 $_def_sdl | |
704 | 2573 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */ |
2943 | 2574 $_def_sdlbuggy |
2575 $_def_ggi | |
2576 $_def_3dfx | |
2577 $_def_tdfxfb | |
2578 $_def_mga | |
2579 $_def_xmga | |
2580 $_def_syncfb | |
2581 $_def_fbdev | |
2582 $_def_dxr3 | |
2583 $_def_dvb | |
2584 $_def_svga | |
2585 $_def_xdpms | |
2586 $_def_aa | |
1 | 2587 |
1694 | 2588 /* used by GUI: */ |
2943 | 2589 $_def_xshape |
1694 | 2590 |
2943 | 2591 #if defined(HAVE_GL) || defined(HAVE_X11) || defined(HAVE_XV) |
2592 #define X11_FULLSCREEN 1 | |
1 | 2593 #endif |
2594 | |
2595 EOF | |
2596 | |
2943 | 2597 ############################################################################# |
1 | 2598 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2599 echo "Creating libvo/config.mak" |
2943 | 2600 _voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2601 cat > libvo/config.mak << EOF |
1 | 2602 include ../config.mak |
2943 | 2603 OPTIONAL_SRCS = $_vosrc |
2604 OPTIONAL_OBJS = $_voobj | |
1 | 2605 EOF |
2606 | |
2943 | 2607 ############################################################################# |
965 | 2608 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2609 echo "Creating libvo2/config.mak" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2610 _vo2obj=`echo $_vo2src | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2611 cat > libvo2/config.mak << EOF |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2612 include ../config.mak |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2613 OPTIONAL_SRCS = $_vo2src |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2614 OPTIONAL_OBJS = $_vo2obj |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2615 EOF |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2616 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2617 ############################################################################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2618 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2619 echo "Creating libao2/config.mak" |
2943 | 2620 _aoobj=`echo $_aosrc | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2621 cat > libao2/config.mak << EOF |
965 | 2622 include ../config.mak |
2943 | 2623 OPTIONAL_SRCS = $_aosrc |
2624 OPTIONAL_OBJS = $_aoobj | |
2625 EOF | |
965 | 2626 |
2943 | 2627 ############################################################################# |
965 | 2628 |
2943 | 2629 echo "Creating help_mp.h" |
2630 cat > help_mp.h << EOF | |
2631 #include "$_mp_help" | |
965 | 2632 EOF |
2633 | |
2943 | 2634 ############################################################################# |
2635 | |
1 | 2636 cat << EOF |
2637 | |
2638 Config files successfully generated by ./configure ! | |
2943 | 2639 |
2640 Install prefix: $_prefix | |
2641 Data directory: $_datadir | |
2190 | 2642 |
2943 | 2643 'config.h' and 'config.mak' contain your configuration options. |
2644 Note: if you alter theses files (for instance CFLAGS) MPlayer may no longer | |
2645 compile *** DON'T BUGREPORT if you tweak these files *** | |
2646 | |
2647 'make' will now compile MPlayer and 'make install' will install it. | |
2190 | 2648 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'. |
1 | 2649 |
2650 EOF | |
2651 | |
1618 | 2652 |
2171 | 2653 if test "$_mtrr" = yes ; then |
2943 | 2654 echo "Please check mtrr settings at /proc/mtrr (see DOCS/video.html#2.2.1.1)" |
2655 echo | |
1 | 2656 fi |
2657 | |
2171 | 2658 if test "$_sdl" = "outdated" ; then |
2190 | 2659 cat <<EOF |
2660 You have an outdated version of libSDL installed (older than v1.1.7) and SDL | |
2661 support has therefore been disabled. | |
2662 | |
2663 Please upgrade to a more recent version (version 1.1.8 and above are known to | |
2664 work). You may get this library from: http://www.libsdl.org | |
2665 | |
2666 You need to re-run ./configure and recompile after updating SDL. If you are | |
2667 only interested in the libSDL audio drivers, then older version might work. | |
2668 | |
2669 Use --enable-sdl to force usage of libSDL. | |
2670 EOF | |
1 | 2671 fi |
2672 | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2673 if x86 ; then |
2425 | 2674 if test "$_win32" = no ; then |
2675 if test "$_win32libdir" ; then | |
2676 cat <<EOF | |
2190 | 2677 Failed to find a WIN32 codecs dir at $_win32libdir! |
2678 Create it and copy the DLL files there! (You can get them from your windows | |
2679 directory or download them from: | |
2225 | 2680 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip |
2190 | 2681 EOF |
2425 | 2682 fi |
2190 | 2683 else |
2943 | 2684 if test "$_win32libdir" ; then |
2427 | 2685 echo "Ok, found Win32 codecs directory at $_win32libdir." |
2686 else | |
2687 cat <<EOF | |
2594 | 2688 Failed to find a WIN32 codecs dir! |
2427 | 2689 Create it and copy the DLL files there! (You can get them from your windows |
2690 directory or download them from: | |
2691 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip | |
2692 EOF | |
2693 fi | |
2190 | 2694 fi |
1 | 2695 else |
2943 | 2696 cat <<EOF |
2190 | 2697 NOTE: WIN32 codec DLLs are not supported on your CPU ($host_arch). |
2698 You may encounter a few AVI files that cannot be played due to missing | |
2699 opensource video/audio codec support. | |
2700 EOF | |
1 | 2701 fi |
2702 | |
2943 | 2703 cat <<EOF |
2704 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2705 If you cannot understand why a test failed please check $TMPLOG. |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2706 If you believe it is a bug in configure, please report it. |
2943 | 2707 |
2708 EOF | |
2709 | |
1021 | 2710 # Last move: |
2190 | 2711 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" |
1021 | 2712 |