Mercurial > mplayer.hg
annotate configure @ 2998:535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
fix GL always detected even when x11 disabled
author | pl |
---|---|
date | Mon, 19 Nov 2001 12:29:48 +0000 |
parents | 49b34fdc48bb |
children | 605efb97f981 |
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!" | |
932 echo " 2.2.x has a limited (SSE support of 2.2.x series is limited. Upgrade kernel or use --disable-sse)" | |
933 echo "Older kernel won't work correctly with mplayer (in" | |
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 | |
1083 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1084 echocheck "pthread" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1085 cat > $TMPC << EOF |
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' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1092 else |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1093 die "Lib pthread not found." |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1094 fi |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1095 echores "using $_ld_pthread" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1096 |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1097 |
2943 | 1098 echocheck "sys/soundcard.h" |
1099 cat > $TMPC << EOF | |
1100 #include <sys/soundcard.h> | |
1101 int main(void) { return 0; } | |
1102 EOF | |
1103 _sys_soundcard=no | |
1104 cc_check && _sys_soundcard=yes | |
1105 if test "$_sys_soundcard" = yes ; then | |
1106 _def_sys_soundcard='#define HAVE_SYS_SOUNDCARD_H 1' | |
1107 else | |
1108 _def_sys_soundcard='#undef HAVE_SYS_SOUNDCARD_H' | |
1109 fi | |
1110 echores "$_sys_soundcard" | |
1111 | |
1112 | |
1113 echocheck "termcap" | |
2948 | 1114 if test "$_termcap" = auto ; then |
2943 | 1115 _termcap=no |
1116 cat > $TMPC <<EOF | |
1117 int main(void) { return 0; } | |
1118 EOF | |
2948 | 1119 cc_check -ltermcap && _termcap=yes |
2943 | 1120 else |
1121 _termcap=no | |
1122 fi | |
1123 if test "$_termcap" = yes ; then | |
1124 _def_termcap='#define USE_TERMCAP 1' | |
1125 _ld_termcap='-ltermcap' | |
1126 else | |
1127 _def_termcap='#undef USE_TERMCAP' | |
1128 fi | |
1129 echores "$_termcap" | |
1130 | |
1131 | |
1132 echocheck "3dfx" | |
1133 if test "$_3dfx" = yes ; then | |
1134 _def_3dfx='#define HAVE_3DFX 1' | |
1135 _vosrc="$_vosrc vo_3dfx.c" | |
1136 else | |
1137 _def_3dfx='#undef HAVE_3DFX' | |
1138 fi | |
1139 echores "$_3dfx" | |
1140 | |
1141 | |
1142 echocheck "tdfxfb" | |
1143 if test "$_tdfxfb" = yes ; then | |
1144 _def_tdfxfb='#define HAVE_TDFXFB 1' | |
1145 _vosrc="$_vosrc vo_tdfxfb.c" | |
1146 else | |
1147 _def_tdfxfb='#undef HAVE_TDFXFB' | |
1148 fi | |
1149 echores "$_tdfxfb" | |
1150 | |
1151 | |
1152 # Checking for localization ... | |
1153 echocheck "language" | |
1154 test -z "$LINGUAS" && LINGUAS="en" | |
1155 if test -f "help_mp-${LINGUAS}.h" ; then | |
1156 echores "using ${LINGUAS}" | |
1157 else | |
1158 echores "${LINGUAS} not found, using en" | |
1159 LINGUAS="en" | |
1160 fi | |
1161 _mp_help="help_mp-${LINGUAS}.h" | |
1162 test -f help_mp-${LINGUAS}.h || die "help_mp-${LINGUAS}.h not found" | |
1163 | |
1164 | |
1165 echocheck "vsscanf()" | |
1166 cat > $TMPC << EOF | |
1167 #include <stdarg.h> | |
1168 int main(void) { vsscanf(); return 0; } | |
1169 EOF | |
1170 _vsscanf=no | |
1171 cc_check && _vsscanf=yes | |
1172 if test "$_vsscanf" = yes ; then | |
1173 _def_vsscanf='#define HAVE_VSSCANF 1' | |
1174 else | |
1175 _def_vsscanf='#undef HAVE_VSSCANF' | |
1176 fi | |
1177 echores "$_vsscanf" | |
1178 | |
1179 | |
1180 echocheck "X11 headers" | |
1181 if test -z "$_x11incdir" ; then | |
1182 for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do | |
1183 if test -d "$I/X11" ; then | |
1184 _x11incdir="$I" | |
1185 echores "found $I" | |
1186 break | |
1187 fi | |
1188 done | |
1189 fi | |
1190 if test -z "$_x11incdir" ; then | |
1191 _x11=no | |
1192 echores "not found" | |
1193 elif test "$_x11incdir" != "/usr/include" ; then | |
1194 _inc_x11="-I$_x11incdir" | |
1195 fi | |
1196 | |
1197 | |
1198 echocheck "X11 libs" | |
1199 if test -z "$_x11libdir" ; then | |
1200 for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do | |
1201 if test -d "$I" ; then | |
1202 _x11libdir="$I" | |
1203 echores "found $I" | |
1204 break; | |
1205 fi | |
1206 done | |
1207 fi | |
1208 if test -z "$_x11libdir" ; then | |
1209 _x11=no | |
1210 echores "not found" | |
1211 fi | |
2988 | 1212 _ld_x11="-L$_x11libdir -lX11 -lXext $_ld_sock" |
2943 | 1213 |
1214 | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1215 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1216 # VIDEO # |
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 |
2943 | 1219 echocheck "X11" |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1220 if test "$_x11" = auto || test "$_x11" = yes ; then |
2943 | 1221 cat > $TMPC <<EOF |
2988 | 1222 #include <X11/Xlib.h> |
1223 #include <X11/Xutil.h> | |
1224 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; } | |
2943 | 1225 EOF |
1226 _x11=no | |
2988 | 1227 cc_check $_inc_x11 $_ld_x11 && _x11=yes |
2943 | 1228 fi |
1229 if test "$_x11" = yes ; then | |
1230 _def_x11='#define HAVE_X11 1' | |
1231 _vosrc="$_vosrc vo_x11.c" | |
1232 else | |
1233 _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
|
1234 _inc_x11='' |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1235 _ld_x11='' |
2943 | 1236 fi |
1237 echores "$_x11" | |
1238 | |
1239 | |
2945 | 1240 echocheck "DPMS" |
2943 | 1241 _xdpms3=no |
1242 if test "$_x11" = yes ; then | |
1243 cat > $TMPC <<EOF | |
1244 #include <X11/Xmd.h> | |
1245 #include <X11/Xlib.h> | |
1246 #include <X11/Xutil.h> | |
1247 #include <X11/Xatom.h> | |
1248 #include <X11/extensions/dpms.h> | |
1249 int main(void) { return 0; } | |
1250 EOF | |
2988 | 1251 cc_check $_inc_x11 $_ld_x11 -lXdpms && _xdpms3=yes |
2943 | 1252 fi |
1253 _xdpms4=no | |
1254 if test "$_x11" = yes ; then | |
1255 cat > $TMPC <<EOF | |
1256 #include <X11/Xmd.h> | |
1257 #include <X11/Xlib.h> | |
1258 #include <X11/Xutil.h> | |
1259 #include <X11/Xatom.h> | |
1260 #include <X11/extensions/dpms.h> | |
1261 int main(void) { | |
1262 (void) DPMSQueryExtension(0, 0, 0); | |
1263 } | |
1264 EOF | |
2945 | 1265 cc_check $_inc_x11 $_ld_x11 && _xdpms4=yes |
2943 | 1266 fi |
1267 | |
1268 if test "$_xdpms4" = yes ; then | |
1269 _def_xdpms='#define HAVE_XDPMS 1' | |
1270 echores "using xdpms4" | |
1271 elif test "$_xdpms3" = yes ; then | |
1272 _def_xdpms='#define HAVE_XDPMS 1' | |
1273 _ld_x11='$_ld_x11 -lXdpms' | |
1274 echores "using xdpms3" | |
1275 else | |
1276 _def_xdpms='#undef HAVE_XDPMS' | |
1277 echores "no" | |
1278 fi | |
1279 | |
1280 | |
1281 echocheck "Xv" | |
1282 if test "$_x11" = yes && test "$_xv" = auto ; then | |
1283 cat > $TMPC <<EOF | |
1284 int main(void) { return 0; } | |
1285 EOF | |
1286 _xv=no | |
2988 | 1287 cc_check $_inc_x11 $_ld_x11 -lXv && _xv=yes |
2943 | 1288 else |
1289 _xv=no | |
1290 fi | |
1291 if test "$_xv" = yes ; then | |
1292 _def_xv='#define HAVE_XV 1' | |
1293 _ld_xv='-lXv' | |
1294 _vosrc="$_vosrc vo_xv.c" | |
1295 else | |
1296 _def_xv='#undef HAVE_XV' | |
1297 fi | |
1298 echores "$_xv" | |
1299 | |
1300 | |
1301 echocheck "Xinerama" | |
1302 if test "$_x11" = yes && test "$_xinerama" = auto ; then | |
1303 cat > $TMPC <<EOF | |
1304 int main(void) { return 0; } | |
1305 EOF | |
1306 _xinerama=no | |
2988 | 1307 cc_check $_inc_x11 $_ld_x11 -lXinerama && _xinerama=yes |
2943 | 1308 else |
1309 _xinerama=no | |
1310 fi | |
1311 if test "$_xinerama" = yes ; then | |
1312 _def_xinerama='#define HAVE_XINERAMA 1' | |
1313 _ld_xinerama='-lXinerama' | |
1314 else | |
1315 _def_xinerama='#undef HAVE_XINERAMA' | |
1316 fi | |
1317 echores "$_xinerama" | |
1318 | |
1319 | |
1320 # Note: the -lXxf86vm library is the VideoMode extension and though it's not | |
1321 # needed for DGA, AFAIK every distribution packages together with DGA stuffs | |
1322 # named 'X extensions' or something similar. | |
1323 # This check may be useful for future mplayer versions (to change resolution) | |
1324 # If you run into problems, remove '-lXxf86vm'. | |
1325 echocheck "Xxf86vm" | |
1326 if test "$_x11" = yes && test "$_vm" = auto ; then | |
1327 cat > $TMPC <<EOF | |
1328 int main(void) { return 0; } | |
1329 EOF | |
1330 _vm=no | |
2988 | 1331 cc_check $_inc_x11 $_ld_x11 -lXxf86vm && _vm=yes |
2943 | 1332 else |
1333 _vm=no | |
1334 fi | |
1335 if test "$_vm" = yes ; then | |
1336 _def_vm='#define HAVE_XF86VM 1' | |
1337 _ld_vm='-lXxf86vm' | |
1338 else | |
1339 _def_vm='#undef HAVE_XF86VM' | |
1340 fi | |
1341 echores "$_vm" | |
1342 | |
1343 | |
1344 echocheck "DGA" | |
1345 if test "$_x11" = yes && test "$_dga" = auto ; then | |
1346 cat > $TMPC << EOF | |
1347 #include <stdio.h> | |
1348 #include <X11/Xlib.h> | |
1349 #include <X11/extensions/xf86dga.h> | |
1350 int main (void) { return 0; } | |
1351 EOF | |
1352 _dga=no | |
1353 cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga=yes | |
1354 else | |
1355 _dga=no | |
1356 fi | |
1357 if test "$_dga" = yes ; then | |
1358 _def_dga='#define HAVE_DGA 1' | |
1359 _ld_dga='-lXxf86dga' | |
1360 _vosrc="$_vosrc vo_dga.c" | |
1361 else | |
1362 _def_dga='#undef HAVE_DGA' | |
1363 fi | |
1364 echores "$_dga" | |
1365 | |
1366 | |
1367 echocheck "DGA 2.0" | |
1368 if test "$_x11" = yes && test "$_dga2" = auto ; then | |
1369 cat > $TMPC << EOF | |
1370 #include <stdio.h> | |
1371 #include <X11/Xlib.h> | |
1372 #include <X11/extensions/xf86dga.h> | |
1373 int main (void) { XDGAMode mode; XDGADevice device; return 0; } | |
1374 EOF | |
1375 _dga2=no | |
2988 | 1376 cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga2=yes |
2943 | 1377 else |
1378 _dga2=no | |
1379 fi | |
1380 if test "$_dga2" = yes ; then | |
1381 _def_dga2='#define HAVE_DGA2 1' | |
1382 _vosrc="$_vosrc vo_dga.c" | |
1383 else | |
1384 _def_dga2='#undef HAVE_DGA2' | |
1385 fi | |
1386 echores "$_dga2" | |
1387 | |
1388 | |
1389 echocheck "OpenGL" | |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1390 if test "$_x11" = yes && test "$_gl" = auto ; then |
2943 | 1391 cat > $TMPC << EOF |
1392 #include <GL/gl.h> | |
1393 int main(void) { return 0; } | |
1394 EOF | |
1395 _gl=no | |
2988 | 1396 if cc_check $_inc_x11 $_ld_x11 -lGL -lm ; then |
1397 _gl=yes | |
1398 _ld_gl="-lGL -lm" | |
1399 elif cc_check $_inc_x11 $_ld_x11 -lGL -lm $_ld_pthread ; then | |
1400 _gl=yes | |
1401 _ld_gl="-lGL -lm $_ld_pthread" | |
2943 | 1402 else |
2988 | 1403 _gl=no |
1404 cc_check $_inc_x11 $_ld_x11 -lGL -lm && _gl=yes | |
2190 | 1405 fi |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1406 else |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1407 _gl=no |
2943 | 1408 fi |
1409 if test "$_gl" = yes ; then | |
2988 | 1410 #FIXME ?? : bsd && test -r /usr/X11R6/bin/XFree86 && _ld_gl="-lGL $_ld_pthread" |
2943 | 1411 _def_gl='#define HAVE_GL 1' |
1412 _vosrc="$_vosrc vo_gl.c vo_gl2.c" | |
1413 else | |
1414 _def_gl='#undef HAVE_GL' | |
1415 fi | |
1416 echores "$_gl" | |
1515
624c9d5dad20
Use the standard mplayer config test for finding libraries, so that it can
jkeil
parents:
1511
diff
changeset
|
1417 |
1 | 1418 |
2943 | 1419 echocheck "/dev/mga_vid" |
1420 if test "$_mga" = auto ; then | |
1421 _mga=no | |
1422 test -c /dev/mga_vid && _mga=yes | |
1423 fi | |
1424 if test "$_mga" = yes ; then | |
1425 _def_mga='#define HAVE_MGA 1' | |
1426 _vosrc="$_vosrc vo_mga.c" | |
2464
4296c47ff209
The last irix64 patch looks broken to me, trying to fix.
jkeil
parents:
2463
diff
changeset
|
1427 else |
2943 | 1428 _def_mga='#undef HAVE_MGA' |
2463 | 1429 fi |
2943 | 1430 echores "$_mga" |
525 | 1431 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
1432 |
2943 | 1433 echocheck "syncfb" |
1434 _syncfb=no | |
1435 test "$_mga" = yes && _syncfb=yes | |
1436 if test "$_syncfb" = yes ; then | |
1437 _def_syncfb='#define HAVE_SYNCFB 1' | |
1438 _vosrc="$_vosrc vo_syncfb.c" | |
1439 else | |
1440 _def_syncfb='#undef HAVE_SYNCFB' | |
1441 fi | |
1442 echores "$_syncfb" | |
1443 | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1444 |
2943 | 1445 echocheck "xmga" |
1446 if test "$_xmga" = auto ; then | |
1447 _xmga=no | |
1448 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes | |
1449 fi | |
1450 if test "$_xmga" = yes ; then | |
1451 _def_xmga='#define HAVE_XMGA 1' | |
1452 _vosrc="$_vosrc vo_xmga.c" | |
1453 else | |
1454 _def_xmga='#undef HAVE_XMGA' | |
1455 fi | |
1456 echores "$_xmga" | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
1457 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1458 |
2943 | 1459 echocheck "GGI" |
1460 if test "$_ggi" = auto ; then | |
1461 cat > $TMPC << EOF | |
1462 #include <ggi/ggi.h> | |
1463 int main(void) { return 0; } | |
1464 EOF | |
1465 _ggi=no | |
1466 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
|
1467 fi |
2943 | 1468 if test "$_ggi" = yes ; then |
1469 _def_ggi='#define HAVE_GGI 1' | |
1470 _ld_ggi='-lggi' | |
1471 _vosrc="$_vosrc vo_ggi.c" | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1472 else |
2943 | 1473 _def_ggi='#undef HAVE_GGI' |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1474 fi |
2943 | 1475 echores "$_ggi" |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1476 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1477 |
2943 | 1478 echocheck "AA" |
1479 if test "$_aa" = auto ; then | |
1480 cat > $TMPC << EOF | |
1481 #include <aalib.h> | |
1482 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
|
1483 EOF |
2943 | 1484 _aa=no |
1485 cc_check -laa && _aa=yes | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1486 fi |
2943 | 1487 if test "$_aa" = yes ; then |
1488 _def_aa='#define HAVE_AA 1' | |
1489 _ld_aa='-laa' | |
1490 _vosrc="$_vosrc vo_aa.c" | |
1491 else | |
1492 _def_aa='#undef HAVE_AA' | |
1493 fi | |
1494 echores "$_aa" | |
59 | 1495 |
1694 | 1496 |
2943 | 1497 echocheck "SVGAlib" |
1498 if test "$_svga" = auto ; then | |
1499 cat > $TMPC << EOF | |
1500 #include <vga.h> | |
1501 #include <vgagl.h> | |
1502 int main(void) { return 0; } | |
1694 | 1503 EOF |
2943 | 1504 _svga=no |
1505 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
|
1506 fi |
2943 | 1507 if test "$_svga" = yes ; then |
1508 _def_svga='#define HAVE_SVGALIB 1' | |
1509 _ld_svga='-lvgagl -lvga' | |
1510 _vosrc="$_vosrc vo_svga.c" | |
1511 else | |
1512 _def_svga='#undef HAVE_SVGALIB' | |
1513 fi | |
1514 echores "$_svga" | |
1596 | 1515 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
1516 |
2943 | 1517 echocheck "FBDev" |
1518 if test "$_fbdev" = auto ; then | |
1519 _fbdev=no | |
1520 linux && _fbdev=yes | |
1521 fi | |
1522 if test "$_fbdev" = yes ; then | |
1523 _def_fbdev='#define HAVE_FBDEV 1' | |
1524 _vosrc="$_vosrc vo_fbdev.c" | |
1525 else | |
1526 _def_fbdev='#undef HAVE_FBDEV' | |
1527 fi | |
1528 echores "$_fbdev" | |
2774 | 1529 |
1530 | |
2943 | 1531 echocheck "DVB" |
1532 if test "$_dvb" != no ; then | |
1533 _dvb=no | |
1534 test -c /dev/ost/video && _dvb=yes | |
1535 fi | |
1536 if test "$_dvb" = yes ; then | |
1537 _def_dvb='#define HAVE_DVB 1' | |
1538 else | |
1539 _def_dvb='#undef HAVE_DVB' | |
1540 fi | |
1541 echores "$_dvb" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1542 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1543 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1544 echocheck "PNG support" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1545 if test "$_png" = auto ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1546 _png=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1547 if irix ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1548 # 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
|
1549 # incompatible with the GNU libpng |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1550 echores "disabled on irix (not GNU libpng)" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1551 else |
2993 | 1552 cat > $TMPC << EOF |
1553 #include <png.h> | |
1554 int main(void) { return 0; } | |
1555 EOF | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1556 cc_check -lpng -lz -lm && _png=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1557 echores yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1558 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1559 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1560 echores "$_png" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1561 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1562 if test "$_png" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1563 _def_png='#define HAVE_PNG 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1564 _ld_png='-lpng -lz' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1565 _vosrc="$_vosrc vo_png.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1566 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1567 _def_png='#undef HAVE_PNG' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1568 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1569 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1570 |
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 # VIDEO + AUDIO # |
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 |
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 echocheck "SDL" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1577 if test -z "$_sdlconfig" ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1578 if ( sdl-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1579 _sdlconfig="sdl-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1580 elif ( sdl11-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1581 _sdlconfig="sdl11-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1582 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1583 _sdlconfig=false |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1584 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1585 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1586 if test "$_sdl" = auto || test "$_sdl" = yes ; then |
2948 | 1587 cat > $TMPC << EOF |
1588 #include <SDL.h> | |
1589 int main(void) { return 0; } | |
1590 EOF | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1591 _sdl=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1592 if "$_sdlconfig" --version >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1593 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1594 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1595 if test "$_sdlversion" -gt 116 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1596 if test "$_sdlversion" -lt 121 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1597 _def_sdlbuggy='#define BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1598 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1599 _def_sdlbuggy='#undef BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1600 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1601 _sdl=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1602 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1603 _sdl=outdated |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1604 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1605 fi |
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 if test "$_sdl" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1609 _def_sdl='#define HAVE_SDL 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1610 _ld_sdl=`$_sdlconfig --libs` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1611 _inc_sdl=`$_sdlconfig --cflags` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1612 _vosrc="$_vosrc vo_sdl.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1613 _aosrc="$_aosrc ao_sdl.c" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1614 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1615 _def_sdl='#undef HAVE_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1616 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1617 echores "$_sdl (with $_sdlconfig)" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1618 |
2943 | 1619 echocheck "DXR3/H+" |
1620 if test "$_dxr3" = auto ; then | |
1621 cat > $TMPC << EOF | |
1622 #include <libdxr3/api.h> | |
1623 int main(void) { return 0; } | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1624 EOF |
2943 | 1625 _dxr3=no |
1626 cc_check -ldxr3 && _dxr3=yes | |
1627 fi | |
1628 if test "$_dxr3" = yes ; then | |
1629 _def_dxr3='#define HAVE_DXR3 1' | |
1630 _ld_dxr3='-ldxr3' | |
1631 _vosrc="$_vosrc vo_dxr3.c" | |
1632 _aosrc="$_aosrc ao_dxr3.c" | |
1633 else | |
1634 _def_dxr3='#undef HAVE_DXR3' | |
1635 fi | |
1636 echores "$_dxr3" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1637 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1638 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1639 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1640 # AUDIO # |
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 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1643 |
2943 | 1644 echocheck "OSS Audio" |
1645 if test "$_ossaudio" = auto ; then | |
1646 cat > $TMPC << EOF | |
1647 #include <sys/soundcard.h> | |
1648 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; } | |
2482 | 1649 EOF |
2943 | 1650 _ossaudio=no |
1651 cc_check && _ossaudio=yes | |
1652 fi | |
1653 if test "$_ossaudio" = yes ; then | |
1654 _def_ossaudio='#define USE_OSS_AUDIO 1' | |
1655 _aosrc="$_aosrc ao_oss.c" | |
1656 else | |
1657 _def_ossaudio='#undef USE_OSS_AUDIO' | |
1658 fi | |
1659 echores "$_ossaudio" | |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
1660 |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
1661 |
2943 | 1662 echocheck "ALSA audio" |
1663 if test "$_alsa" = auto || test "$_alsa" = yes; then | |
1664 _alsa=no | |
2190 | 1665 cat > $TMPC << EOF |
1004 | 1666 #include <sys/asoundlib.h> |
1029 | 1667 #include <sys/soundcard.h> |
2943 | 1668 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==5)); } |
1004 | 1669 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1670 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.5.x' |
1004 | 1671 |
2190 | 1672 cat > $TMPC << EOF |
1004 | 1673 #include <sys/asoundlib.h> |
1029 | 1674 #include <sys/soundcard.h> |
2943 | 1675 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); } |
1004 | 1676 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1677 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.9.x' |
2943 | 1678 if test "$_alsaver" ; then |
1679 _alsa=yes | |
1680 echores "yes ($_alsaver)" | |
1681 else | |
1682 echores "no" | |
1683 fi | |
1684 else | |
1685 echores "no" | |
2190 | 1686 fi |
2943 | 1687 _def_alsa5='#undef HAVE_ALSA5' |
1688 _def_alsa9='#undef HAVE_ALSA9' | |
1689 if test "$_alsa" = yes ; then | |
1690 if test "$_alsaver" = '0.5.x' ; then | |
1691 _aosrc="$_aosrc ao_alsa5.c" | |
1692 _def_alsa5='#define HAVE_ALSA5 1' | |
1693 elif test "$_alsaver" = '0.9.x' ; then | |
1694 _aosrc="$_aosrc ao_alsa9.c" | |
1695 _def_alsa9='#define HAVE_ALSA9 1' | |
1696 fi | |
1697 _ld_alsa='-lasound' | |
1698 fi | |
1004 | 1699 |
1700 | |
2943 | 1701 echocheck "Sun audio" |
1702 if test "$_sunaudio" = auto ; then | |
1703 cat > $TMPC << EOF | |
1704 #include <sys/types.h> | |
1705 #include <sys/audioio.h> | |
1706 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); } | |
1707 EOF | |
1708 _sunaudio=no | |
1709 cc_check && _sunaudio=yes | |
1710 fi | |
1711 if test "$_sunaudio" = yes ; then | |
1712 _def_sunaudio='#define USE_SUN_AUDIO 1' | |
1713 _aosrc="$_aosrc ao_sun.c" | |
1714 else | |
1715 _def_sunaudio='#undef USE_SUN_AUDIO' | |
1716 fi | |
1717 echores "$_sunaudio" | |
1718 | |
1719 | |
1720 echocheck "Sun mediaLib" | |
1721 if test "$_mlib" = auto ; then | |
1722 _mlib=no | |
1723 test -z "$_mlibdir" && _mlibdir=/opt/SUNWmlib | |
1724 cat > $TMPC << EOF | |
1725 #include <mlib.h> | |
1726 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; } | |
1029 | 1727 EOF |
2943 | 1728 cc_check -I${_mlibdir}/include -L${_mlibdir}/lib -lmlib && _mlib=yes |
1729 fi | |
1730 if test "$_mlib" = yes ; then | |
1731 _def_mlib='#define HAVE_MLIB 1' | |
1732 _inc_mlib=" -I${_mlibdir}/include " | |
1733 _ld_mlibl=" -L${_mlibdir}/lib -R${_mlibdir}/lib -lmlib " | |
1734 else | |
1735 _def_mlib='#undef HAVE_MLIB' | |
1736 fi | |
1737 echores "$_mlib" | |
1738 | |
1739 | |
1740 echocheck "SGI Audio" | |
1741 if test "$_sgiaudio" = auto ; then | |
1742 # check for SGI audio | |
1743 cat > $TMPC << EOF | |
1744 #include <dmedia/audio.h> | |
1745 int main(void) { return 0; } | |
1746 EOF | |
1747 _sgiaudio=no | |
1748 cc_check && _sgiaudio=yes | |
1749 fi | |
1750 if test "$_sgiaudio" = "yes" ; then | |
1751 _def_sgiaudio='#define USE_SGI_AUDIO 1' | |
1752 _ld_sgiaudio='-laudio' | |
1753 _aosrc="$_aosrc ao_sgi.c" | |
1754 else | |
1755 _def_sgiaudio='#undef USE_SGI_AUDIO' | |
1756 fi | |
1757 echores "$_sgiaudio" | |
1029 | 1758 |
2463 | 1759 |
2961 | 1760 echocheck "DVD support" |
2943 | 1761 if test "$_dvdread" = auto ; then |
1762 cat > $TMPC << EOF | |
1763 #include <dvdread/dvd_reader.h> | |
1764 #include <dvdread/ifo_types.h> | |
1765 #include <dvdread/ifo_read.h> | |
1766 #include <dvdread/nav_read.h> | |
1767 int main(void) { return 0; } | |
1768 EOF | |
1769 _dvdread=no | |
1770 cc_check \ | |
1771 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -ldvdread && \ | |
1772 _dvdread=yes | |
1773 fi | |
1774 if test "$_css" = auto ; then | |
1775 cat > $TMPC <<EOF | |
1776 #include <css.h> | |
1777 int main(void) { int i=CSSisEncrypted(0); return 0; } | |
2463 | 1778 EOF |
2943 | 1779 _css=no |
2961 | 1780 cc_check -lcss && _css=yes |
2943 | 1781 fi |
1782 # dvdread preferred to DeCSS | |
1783 if test "$_dvdread" = yes ; then | |
1784 _largefiles=yes | |
1785 _def_dvdread='#define USE_DVDREAD 1' | |
1786 _def_css='#undef HAVE_LIBCSS' | |
1787 _ld_css='-ldvdread' | |
2961 | 1788 echores "libdvdread" |
2943 | 1789 elif test "$_css" = yes ; then |
1790 _def_dvdread='#undef USE_DVDREAD' | |
1791 _def_css='#define HAVE_LIBCSS 1' | |
1792 test "$_csslibdir" && _ld_css="-L${_csslibdir} ${_ld_css}" | |
2961 | 1793 echores "libcss" |
2943 | 1794 else |
1795 _def_dvdread='#undef USE_DVDREAD' | |
1796 _def_css='#undef HAVE_LIBCSS' | |
2961 | 1797 echores "no" |
2943 | 1798 fi |
2463 | 1799 |
1800 | |
2943 | 1801 echocheck "zlib" |
2450 | 1802 cat > $TMPC << EOF |
2943 | 1803 #include <zlib.h> |
2983 | 1804 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; } |
2450 | 1805 EOF |
2943 | 1806 _zlib=no |
1807 cc_check -lz && _zlib=yes | |
1808 if test "$_zlib" = yes ; then | |
1809 _def_zlib='#define HAVE_ZLIB 1' | |
1810 _ld_zlib='-lz' | |
1811 else | |
1812 _def_zlib='#undef HAVE_ZLIB' | |
1813 fi | |
1814 echores "$_zlib" | |
2463 | 1815 |
1029 | 1816 |
2943 | 1817 echocheck "mad support" |
1818 if test "$_mad" = auto ; then | |
1819 _mad=no | |
1820 cat > $TMPC << EOF | |
2435 | 1821 #include <mad.h> |
1822 int main(void) { return 0; } | |
1823 EOF | |
2988 | 1824 cc_check $_madlibdir -lmad && _mad=yes |
2943 | 1825 fi |
1826 if test "$_mad" = yes ; then | |
1827 _def_mad='#define USE_LIBMAD 1' | |
1828 _ld_mad='-lmad' | |
1829 else | |
1830 _def_mad='#undef USE_LIBMAD' | |
1831 fi | |
1832 echores "$_mad" | |
1833 | |
1834 | |
1835 echocheck "OggVorbis support" | |
1836 if test "$_vorbis" = auto ; then | |
1837 _vorbis=no | |
1838 cat > $TMPC << EOF | |
1839 #include <vorbis/codec.h> | |
1840 int main(void) { return 0; } | |
1841 EOF | |
2988 | 1842 cc_check -lvorbis -logg -lm && _vorbis=yes |
2943 | 1843 fi |
1844 if test "$_vorbis" = yes ; then | |
1845 _def_vorbis='#define HAVE_OGGVORBIS 1' | |
2988 | 1846 _ld_vorbis='-lvorbis -logg -lm' |
2943 | 1847 else |
1848 _def_vorbis='#undef HAVE_OGGVORBIS' | |
1849 fi | |
1850 echores "$_vorbis" | |
1851 | |
1852 | |
1853 echocheck "Win32 DLL support" | |
1854 if test "$_win32" = auto ; then | |
1855 _win32=no | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1856 if x86 ; then |
2943 | 1857 if test -z "$_win32libdir" ; then |
1858 for I in /usr/local/lib/win32 /usr/lib/win32 ; do | |
1859 if test -d "$I" ; then | |
1860 _win32libdir="$I" | |
1861 break; | |
1862 fi; | |
1863 done | |
1864 fi | |
1865 test "$_win32libdir" && _win32=yes | |
1866 fi | |
1867 fi | |
1868 if test "$_win32" = yes ; then | |
1869 _def_win32='#define USE_WIN32DLL 1' | |
1870 _ld_win32='-Lloader -lloader' | |
1871 _dep_win32='loader/libloader.a' | |
1872 else | |
1873 _def_win32='#undef USE_WIN32DLL' | |
1874 fi | |
1875 echores "$_win32" | |
1876 | |
1877 | |
1878 echocheck "DirectShow" | |
1879 if test "$_win32" = yes && test "$_dshow" = auto ; then | |
1880 _dshow=no | |
1881 # check if compiler supports C++ and C++-libs are installed correctly | |
1882 cat > "$TMPCPP" << EOF | |
1883 #include <string> | |
1884 class myclass { | |
1885 private: int ret; | |
1886 public: int myreturn(void); | |
1887 }; | |
1888 int myclass::myreturn(void) { ret = 0; return ret ; } | |
1889 int main(void) { myclass myobject; return myobject.myreturn(); } | |
1890 EOF | |
1891 echo "------------------------------------------------" >> "$TMPLOG" | |
1892 cat "$TMPCPP" >> "$TMPLOG" | |
1893 if ( "$_cc" "$TMPCPP" -o "$TMPO" && "$TMPO" ) >> "$TMPLOG" 2>&1 ; then | |
1894 _dshow=yes | |
1895 echores "yes (C++ is ok)" | |
1896 else | |
1897 echores "no" | |
1898 cat << EOF | |
1899 | |
1900 Your C++ runtime environment is broken. | |
1901 | |
1902 Hints: Does $_cc support C++ ? Have you a C++ compiler installed ? | |
1903 Are the C++ libraries correctly installed ? | |
1904 Check for libstdc++ and in (/etc/)ld.so.conf | |
1905 | |
1906 If you don't need DirectShow support, you can also use: | |
1907 ./configure --disable-dshow <your-normal-configure-options> | |
1908 to disable building of the C++ based DirectShow code. | |
1909 | |
1910 EOF | |
1911 die "$_cc's C++ is broken" | |
1912 fi | |
1913 else | |
1914 _dshow=no | |
1915 echores "$_dshow" | |
1916 fi | |
1917 if test "$_dshow" = yes ; then | |
1918 _def_dshow='#define USE_DIRECTSHOW 1' | |
1919 _ld_dshow='-Lloader/DirectShow -lDS_Filter -lstdc++' | |
1920 _dep_dshow='loader/DirectShow/libDS_Filter.a' | |
1921 else | |
1922 _def_dshow='#undef USE_DIRECTSHOW' | |
1923 fi | |
2435 | 1924 |
1925 | |
2943 | 1926 echocheck "XAnim DLL" |
1927 if test "$_xanim" = auto ; then | |
1928 _xanim=no | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1929 if test "$_dl" = yes ; then |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1930 if x86 ; then |
2943 | 1931 if test -z "$_xanimlibdir" ; then |
1932 for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods ; do | |
1933 if test -d "$I" ; then | |
1934 _xanimlibdir="$I" | |
1935 break; | |
1936 fi; | |
1937 done | |
1938 fi | |
1939 test "$_xanimlibdir" && _xanim=yes | |
1940 echores "yes" | |
1941 else | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1942 echores "not supported on non x86" |
2943 | 1943 fi |
1944 else | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1945 echores "dl support needed" |
2943 | 1946 fi |
1947 else | |
1948 echores "$_xanim" | |
1949 fi | |
1950 if test "$_xanim" = yes ; then | |
1951 _def_xanim='#define USE_XANIM 1' | |
1952 _def_xanim_path="#define XACODEC_PATH \"$_xanimlibdir\"" | |
1953 else | |
1954 _def_xanim='#undef USE_XANIM' | |
1955 _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
|
1956 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
|
1957 |
2943 | 1958 |
1959 echocheck "iconv" | |
1960 if test "$_iconv" = auto ; then | |
1961 if freebsd ; then | |
1962 _iconv_tmp='#include <giconv.h>' | |
1963 else | |
1964 _iconv_tmp='#include <iconv.h>' | |
1965 fi | |
1966 cat > $TMPC << EOF | |
1967 #include <stdio.h> | |
1968 #include <unistd.h> | |
1969 $_iconv_tmp | |
1970 #define INBUFSIZE 1024 | |
1971 #define OUTBUFSIZE 4096 | |
1972 | |
1973 char inbuffer[INBUFSIZE]; | |
1974 char outbuffer[OUTBUFSIZE]; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1975 |
2943 | 1976 int main(void) { |
1977 ssize_t numread; | |
1978 iconv_t icdsc; | |
1979 char *tocode="UTF-8"; | |
1980 char *fromcode="cp1250"; | |
1981 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) { | |
1982 while ((numread = read (0, inbuffer, INBUFSIZE))) { | |
1983 char *iptr=inbuffer; | |
1984 char *optr=outbuffer; | |
1985 size_t inleft=numread; | |
1986 size_t outleft=OUTBUFSIZE; | |
1987 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft) | |
1988 != (size_t)(-1)) { | |
1989 write (1, outbuffer, OUTBUFSIZE - outleft); | |
1990 } | |
1991 } | |
1992 if (iconv_close(icdsc) == -1) | |
1993 ; | |
1994 } | |
1995 } | |
987 | 1996 EOF |
2943 | 1997 _iconv=no |
1998 if freebsd ; then | |
1999 cc_check -lm -lgiconv && _iconv=yes | |
2000 elif bsdos ; then | |
2001 cc_check -lm -liconv && _iconv=yes | |
2002 else | |
2003 cc_check -lm && _iconv=yes | |
2004 fi | |
987 | 2005 fi |
2943 | 2006 if test "$_iconv" = yes ; then |
2007 _def_iconv='#define USE_ICONV 1' | |
2008 freebsd && _ld_iconv='-lgiconv' | |
2009 bsdos && _ld_iconv='-liconv' | |
2010 else | |
2011 _def_iconv='#undef USE_ICONV' | |
2012 fi | |
2013 echores "$_iconv" | |
2014 | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2015 |
2943 | 2016 echocheck "FFmpeg codec" |
2017 if test "$_libavcodec" = auto ; then | |
2018 # Note: static link is preferred to dynamic link | |
2019 _libavcodec=no | |
2020 test -d libavcodec && test -f libavcodec/Makefile && _libavcodec=yes | |
2021 fi | |
2945 | 2022 if test "$_libavcodecso" = auto ; then |
2023 _libavcodecso=no | |
2943 | 2024 cat > $TMPC << EOF |
2025 #include <libffmpeg/avcodec.h> | |
2026 int main(void) { return 0; } | |
987 | 2027 EOF |
2945 | 2028 cc_check -lffmpeg -lm && _libavcodecso=yes |
2943 | 2029 fi |
2030 _def_libavcodec='#undef USE_LIBAVCODEC' | |
2945 | 2031 _def_libavcodecso='#undef USE_LIBAVCODEC_SO' |
2943 | 2032 _def_ffpostprocess='#undef FF_POSTPROCESS' |
2033 if test "$_libavcodec" = yes ; then | |
2034 _def_libavcodec='#define USE_LIBAVCODEC 1' | |
2035 _ld_libavcodec='-Llibavcodec -lavcodec' | |
2036 _dep_libavcodec='libavcodec/libavcodec.a' | |
2037 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
2038 echores "static libavcodec" | |
2945 | 2039 elif test "$_libavcodecso" = yes ; then |
2040 _def_libavcodecso='#define USE_LIBAVCODEC_SO 1' | |
2943 | 2041 _ld_libavcodec='-lffmpeg' |
2042 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
2043 echores "dynamic libffmpeg.so" | |
2044 else | |
2045 echores "not found" | |
987 | 2046 fi |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2047 |
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2048 |
2943 | 2049 # FIXME : variables don't have a "standard" name so check this one day |
2050 if test "$_divx4linux" = auto ; then | |
2051 _divx4linux=no | |
2052 echocheck "Divx4linux decore" | |
2053 cat > $TMPC << EOF | |
2054 #include <decore.h> | |
2055 int main(void) { return DEC_OPT_FRAME_311; } | |
987 | 2056 EOF |
2943 | 2057 _divx4linux_decore=no |
2058 if cc_check -ldivxdecore -lm ; then | |
2059 _divx4linux_decore=yes | |
2060 else | |
2061 _divx4linux_decore='not found' | |
2062 fi | |
2063 echores "$_divx4linux_decore" | |
2064 test "$_divx4linux_decore" = yes && _divx4linux=yes | |
2065 echocheck "Divx4linux encore (for mencoder)" | |
2066 cat > $TMPC <<EOF | |
2067 #include <encore2.h> | |
2068 int main(void) { return 0; } | |
2069 EOF | |
2070 _divx4linux_encore=no | |
2071 cc_check -ldivxencore -lm && _divx4linux_encore=yes | |
2072 echores "$_divx4linux_encore" | |
1023 | 2073 fi |
2943 | 2074 _def_decore='#undef NEW_DECORE' |
2075 _ld_decore='-Lopendivx -ldecore' | |
2076 _def_encore='#undef NEW_ENCORE' | |
2077 if test "$_divx4linux_decore" = yes ; then | |
2078 _def_decore='#define NEW_DECORE 1' | |
2079 _ld_decore='-ldivxdecore opendivx/postprocess.o' | |
2080 if test "$_divx4linux_encore" = yes ; then | |
2081 _def_encore='#define NEW_ENCORE 1' | |
2082 _ld_encore='-ldivxencore' | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2083 fi |
987 | 2084 fi |
2085 | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2086 |
2943 | 2087 echocheck "lirc" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2088 if test "$_lirc" = auto ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2089 _lirc=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2090 test -c /dev/lirc && _lirc=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2091 fi |
2943 | 2092 if test "$_lirc" = yes ; then |
2093 _def_lirc='#define HAVE_LIRC 1' | |
2094 _ld_lirc='-llirc_client' | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2095 else |
2943 | 2096 _def_lirc='#undef HAVE_LIRC' |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2097 fi |
2943 | 2098 echores "$_lirc" |
2099 | |
1404
1752eedd4f97
Added checking for x86 cpu extensions using test-programs.
atmos4
parents:
1399
diff
changeset
|
2100 |
2943 | 2101 echocheck "fastmemcpy" |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2102 # fastmemcpy check is done earlier with tests of CPU & binutils features |
2943 | 2103 if test "$_fastmemcpy" = yes ; then |
2104 _def_fastmemcpy='#define USE_FASTMEMCPY 1' | |
2105 else | |
2106 _def_fastmemcpy='#undef USE_FASTMEMCPY' | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
2107 fi |
2943 | 2108 echores "$_fastmemcpy" |
987 | 2109 |
2943 | 2110 |
2111 echocheck "TV interface" | |
2112 # FIXME tv check | |
2113 if test "$_tv" = yes ; then | |
2114 _def_tv='#define USE_TV 1' | |
2115 else | |
2116 _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
|
2117 fi |
2943 | 2118 echores "$_tv" |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
2119 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2120 |
2943 | 2121 echocheck "streaming" |
2122 # FIXME streaming check | |
2123 if test "$_streaming" = yes ; then | |
2124 _def_streaming='#define STREAMING 1' | |
2125 # 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
|
2126 else |
2943 | 2127 _def_streaming='#undef STREAMING' |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2128 fi |
2943 | 2129 echores "$_streaming" |
2130 | |
2131 | |
2132 | |
2133 # --------------- GUI specific tests begin ------------------- | |
2134 echocheck "GUI" | |
2135 echo "$_gui" | |
2136 if test "$_gui" = yes ; then | |
1740 | 2137 |
2943 | 2138 echocheck "XShape extension" |
2139 _xshape=no | |
2140 if test "$_x11" = yes ; then | |
2141 cat > $TMPC << EOF | |
2142 #include <X11/Xlib.h> | |
2143 #include <X11/Xproto.h> | |
2144 #include <X11/Xutil.h> | |
2145 #include <X11/extensions/shape.h> | |
2146 #include <stdlib.h> | |
1740 | 2147 int main(void) { |
2943 | 2148 char *name = ":0.0"; |
2149 Display *wsDisplay; | |
2150 int exitvar = 0; | |
2151 int eventbase, errorbase; | |
2152 if (getenv("DISPLAY")) | |
2153 name=getenv("DISPLAY"); | |
2154 wsDisplay=XOpenDisplay(name); | |
2155 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase)) | |
2156 exitvar=1; | |
2157 XCloseDisplay(wsDisplay); | |
2158 return exitvar; | |
1740 | 2159 } |
2160 EOF | |
2988 | 2161 cc_check $_inc_x11 $_ld_x11 && _xshape=yes |
1740 | 2162 fi |
2943 | 2163 if test "$_xshape" = yes ; then |
2164 _def_xshape='#define HAVE_XSHAPE 1' | |
2700 | 2165 else |
2943 | 2166 die "the GUI requires the X11 extension XShape (which was not found)" |
2700 | 2167 fi |
2943 | 2168 echores "$_xshape" |
2594 | 2169 |
2170 | |
2943 | 2171 # Check for GTK: |
2172 echocheck "gtk version" | |
2173 if test -z "$_gtkconfig" ; then | |
2174 if ( gtk-config --version ) >/dev/null 2>&1 ; then | |
2175 _gtkconfig="gtk-config" | |
2176 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then | |
2177 _gtkconfig="gtk12-config" | |
2178 else | |
2179 die "the GUI requires GTK (which was not found)" | |
2180 fi | |
2700 | 2181 fi |
2943 | 2182 _gtk=`$_gtkconfig --version 2>&1` |
2183 _inc_gtk=`$_gtkconfig --cflags 2>&1` | |
2184 _ld_gtk=`$_gtkconfig --libs 2>&1` | |
2185 echores "$_gtk (with $_gtkconfig)" | |
1694 | 2186 |
2943 | 2187 # Check for GLIB |
2188 echocheck "glib version" | |
2189 if test -z "$_glibconfig" ; then | |
2190 if ( glib-config --version ) >/dev/null 2>&1 ; then | |
2191 _glibconfig="glib-config" | |
2192 elif ( glib12-config --version ) >/dev/null 2>&1 ; then | |
2193 _glibconfig="glib12-config" | |
2194 else | |
2195 die "the GUI requires GLIB (which was not found)" | |
2196 fi | |
2197 fi | |
2198 _glib=`$_glibconfig --version 2>&1` | |
2199 _inc_glib=`$_glibconfig --cflags 2>&1` | |
2200 _ld_glib=`$_glibconfig --libs 2>&1` | |
2201 echores "$_glib (with $_glibconfig)" | |
1694 | 2202 |
2943 | 2203 _def_gui='#define HAVE_NEW_GUI 1' |
2204 _ld_gui='-LGui -lgui $(GTKLIB) $(GLIBLIB)' | |
2205 | |
2983 | 2206 echo |
2207 echo "Creating Gui/config.mak" | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2208 cat > Gui/config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2209 # -------- Generated by configure ----------- |
2943 | 2210 |
2211 GTKINC = $_inc_gtk | |
2212 GTKLIBS = $_ld_gtk | |
2213 GLIBINC = $_inc_glib | |
2214 GLIBLIBS = $_ld_glib | |
1694 | 2215 |
2216 EOF | |
2217 | |
2943 | 2218 else |
2219 _def_gui='#undef HAVE_NEW_GUI' | |
1 | 2220 fi |
2943 | 2221 # --------------- GUI specific tests end ------------------- |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2222 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2223 |
1279 | 2224 |
2943 | 2225 ############################################################################# |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2226 |
697 | 2227 # Checking for CFLAGS |
2171 | 2228 if test "$_profile" || test "$_debug" ; then |
2943 | 2229 CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile" |
2230 elif test -z "$CFLAGS" ; then | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2231 if test "$host_arch" != "mips" ; then |
2943 | 2232 CFLAGS="-O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer" |
2233 else | |
2234 CFLAGS="-O4 $_march $_mcpu -ffast-math -fomit-frame-pointer" | |
2235 fi | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2236 else |
2943 | 2237 cat <<EOF |
2238 | |
2239 MPlayer compilation will use CFLAGS set by you, but: | |
2240 DO NOT BUGREPORT IF IT DOES NOT WORK | |
2241 | |
2242 It is strongly recommended you let MPlayer choose the correct CFLAGS! | |
2243 To do so, execute 'CFLAGS= ./configure <options>' | |
2244 | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2245 EOF |
697 | 2246 fi |
2190 | 2247 |
2943 | 2248 # Thread support |
2190 | 2249 if linux ; then |
2250 CFLAGS="$CFLAGS -D_REENTRANT" | |
2251 elif bsd ; then | |
2943 | 2252 # FIXME bsd needs this so maybe other OS'es |
2190 | 2253 CFLAGS="$CFLAGS -D_THREAD_SAFE" |
1182 | 2254 fi |
2255 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2256 # 64 bit file offsets? |
2190 | 2257 if test "$_largefiles" = yes || freebsd ; then |
2258 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" | |
2171 | 2259 if test "$_dvdread" = yes ; then |
2190 | 2260 # dvdread support requires this (for off64_t) |
2261 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" | |
1596 | 2262 fi |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2263 fi |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2264 |
2943 | 2265 # Determine OS dependent libs |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2266 if cygwin ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2267 _confcygwin='TARGET_CYGWIN = yes' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2268 _def_confwin32='#define WIN32' |
2421 | 2269 else |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2270 _confcygwin="TARGET_CYGWIN = no" |
1 | 2271 fi |
2272 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2273 _ld_arch="$_ld_pthread $_ld_dl" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2274 bsd && _ld_arch="-rdynamic $_ld_arch" |
2943 | 2275 bsdos && _ld_arch="$_ld_arch -ldvd" |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1933
diff
changeset
|
2276 |
2943 | 2277 _def_debug='#undef MP_DEBUG' |
2278 test "$_debug" && _def_debug='#define MP_DEBUG 1' | |
287 | 2279 |
2943 | 2280 _def_linux='#undef TARGET_LINUX' |
2281 linux && _def_linux='#define TARGET_LINUX 1' | |
11 | 2282 |
233
f62ccacbe1e5
Changes to configure to autodetect DGA 2.0 functionality, and to only use
mgraffam
parents:
225
diff
changeset
|
2283 |
2943 | 2284 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2285 echo "Creating config.mak" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2286 cat > config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2287 # -------- Generated by configure ----------- |
2727 | 2288 |
2943 | 2289 LANG = C |
2290 TARGET_OS = $system_name | |
2291 prefix = $_prefix | |
2292 AR = ar | |
2293 CC = $_cc | |
2294 # OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu -pipe -fomit-frame-pointer -ffast-math | |
2295 OPTFLAGS = $CFLAGS | |
2296 EXTRA_INC = $_inc_extra $_inc_gtk | |
2297 WIN32_PATH = -DWIN32_PATH=\\"$_win32libdir\\" | |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2298 |
2943 | 2299 STREAMING = $_streaming |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2300 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2301 VO2 = $_vo2 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2302 |
2943 | 2303 X11_INC = $_inc_x11 |
2988 | 2304 X11DIR = $_ld_static $_ld_x11 |
2305 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 | 2306 |
2988 | 2307 TERMCAP_LIB = $_ld_static $_ld_termcap |
2308 LIRC_LIBS = $_ld_static $_ld_lirc | |
2943 | 2309 CSS_USE = $_css |
2988 | 2310 CSS_LIB = $_ld_static $_ld_css |
2943 | 2311 SDL_INC = $_inc_sdl |
2312 W32_DEP = $_dep_win32 | |
2988 | 2313 W32_LIB = $_ld_static $_ld_win32 |
2943 | 2314 DS_DEP = $_dep_dshow |
2988 | 2315 DS_LIB = $_ld_static $_ld_dshow |
2949 | 2316 AV_DEP = $_dep_libavcodec |
2988 | 2317 AV_LIB = $_ld_static $_ld_libavcodec |
2943 | 2318 ALSA_LIB = $ld__alsa |
2319 SGI_AUDIO_LIB = $_ld_sgiaudio | |
2988 | 2320 ARCH_LIBS = $_ld_static $_ld_arch $_ld_iconv |
2321 DIVX4LINUX = $_ld_static $_divx4linux | |
2322 DECORE_LIBS = $_ld_static $_ld_decore | |
2323 ENCORE_LIBS = $_ld_static $_ld_encore | |
2943 | 2324 HAVE_MLIB = $_mlib |
2325 MLIB_INC = $_inc_mlib | |
2988 | 2326 MLIB_LIB = $_ld_static $_ld_mlib |
2421 | 2327 MADLIB_LIB = $_madlibdir |
2943 | 2328 STATIC = $_ld_static |
1258 | 2329 |
2330 # --- Some stuff for autoconfigure ---- | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2331 $_target_arch |
1436
42bd7f4c500b
Pre commit so I won't have to sync with later configure changes (cygwin stuff)
atmos4
parents:
1428
diff
changeset
|
2332 $_confcygwin |
1258 | 2333 TARGET_CPU=$iproc |
2943 | 2334 TARGET_MMX = $_mmx |
2335 TARGET_MMX2 = $_mmx2 | |
2336 TARGET_3DNOW = $_3dnow | |
2337 TARGET_3DNOWEX = $_3dnowex | |
2338 TARGET_SSE = $_sse | |
1258 | 2339 |
2943 | 2340 BINUTILS = $_binutils |
1718
3df3982c2c36
Fix "echo -n" problems on solaris for the new GUI stuff.
jkeil
parents:
1694
diff
changeset
|
2341 |
1694 | 2342 # --- GUI stuff --- |
2988 | 2343 GTKLIB = $_ld_static $_ld_gtk |
2344 GLIBLIB = $_ld_static $_ld_glib | |
2345 GUI_LIBS = $_ld_static $_ld_gui | |
2943 | 2346 GUI = $_gui |
2347 DEBUG = -DDEBUG | |
1694 | 2348 |
1258 | 2349 EOF |
1 | 2350 |
2943 | 2351 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2352 echo "Creating config.h" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2353 cat > config.h << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2354 /* -------- Generated by configure ----------- */ |
1 | 2355 |
2992
ef58de7a942f
Make description for SIMPLE_IDCT better and make #define consisten with others.
atmos4
parents:
2991
diff
changeset
|
2356 /* 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
|
2357 #define SIMPLE_IDCT 1 |
2991
ad107e7bb843
small "make it easier to compile" addition, enable SIMPLE_IDCT by default
atmos4
parents:
2990
diff
changeset
|
2358 |
2943 | 2359 #define USE_OSD 1 |
2360 #define USE_SUB 1 | |
1422 | 2361 |
2943 | 2362 $_def_debug |
1565 | 2363 |
2943 | 2364 $_def_dvdread |
1596 | 2365 |
1353 | 2366 /* Common data directory (for fonts, etc) */ |
2367 #define DATADIR "$_datadir" | |
2368 | |
2525 | 2369 /* Define this to compile stream-caching support, it can be enabled via |
2370 -cache <kilobytes> */ | |
2943 | 2371 #define USE_STREAM_CACHE 1 |
2525 | 2372 |
1349 | 2373 /* Define for using new DivX4Linux library, instead of open-source OpenDivX */ |
2374 /* You have to change DECORE_LIBS in config.mak too! */ | |
2943 | 2375 $_def_decore |
2376 $_def_encore | |
1349 | 2377 |
1 | 2378 /* Define this to enable avg. byte/sec-based AVI sync method by default: |
1599 | 2379 (use -bps or -nobps commandline option for run-time method selection) |
2380 -bps gives better sync for vbr mp3 audio, it is now default */ | |
2943 | 2381 #define AVI_SYNC_BPS 1 |
1 | 2382 |
2383 /* Undefine this if you want soundcard-only timing by default: | |
2384 You can still change this with the -alsa or -noalsa command-line option! | |
2385 (This function was originally impemented to solve ALSA driver's big | |
2386 buffer problems, but it seems to be useful for every soundcard drivers) */ | |
2943 | 2387 #define ALSA_TIMER 1 |
1 | 2388 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2389 /* 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
|
2390 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
|
2391 -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
|
2392 right-only), with 0 being the default. |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2393 */ |
2943 | 2394 #define USE_FAKE_MONO 1 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
2395 |
1 | 2396 /* Undefine this if your soundcard driver has no working select(). |
2397 If you have kernel Oops, player hangups, or just no audio, you should | |
2398 try to recompile MPlayer with this option disabled! */ | |
2943 | 2399 $_def_select |
1 | 2400 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
2401 /* define this to use iconv(3) function to codepage conversions */ |
2943 | 2402 $_def_iconv |
1 | 2403 |
755 | 2404 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */ |
2405 #define MAX_OUTBURST 65536 | |
2406 | |
586 | 2407 /* set up audio OUTBURST. Do not change this! */ |
2408 #ifdef USE_XMMP_AUDIO | |
2409 #define OUTBURST 4096 | |
2410 #else | |
2411 //#define OUTBURST 1024 | |
2412 #define OUTBURST 512 | |
2413 #endif | |
2414 | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2415 /* Define this if your system has the header file for the OSS sound interface */ |
2943 | 2416 $_def_sys_soundcard |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2417 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2418 /* Define this if your system has the "malloc.h" header file */ |
2943 | 2419 $_def_malloc |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2420 |
2774 | 2421 /* memalign is mapped to malloc if unsupported */ |
2943 | 2422 $_def_memalign |
2774 | 2423 #ifndef HAVE_MEMALIGN |
2424 # define memalign(a,b) malloc(b) | |
2425 #endif | |
1678 | 2426 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2427 /* Define this if your system has the "alloca.h" header file */ |
2943 | 2428 $_def_alloca |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2429 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2430 /* Define this if your system has the "sys/mman.h" header file */ |
2943 | 2431 $_def_mman |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2432 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2433 /* Define this if you have the elf dynamic linker -ldl library */ |
2943 | 2434 $_def_dl |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2435 |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
2436 /* Define this if you have the kstat kernel statistics library */ |
2943 | 2437 $_def_kstat |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
2438 |
2482 | 2439 /* Define this if you have zlib */ |
2943 | 2440 $_def_zlib |
2482 | 2441 |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2442 /* Define this if your system has vsscanf */ |
2943 | 2443 $_def_vsscanf |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2444 |
1 | 2445 /* LIRC (remote control, see www.lirc.org) support: */ |
2943 | 2446 $_def_lirc |
1 | 2447 |
492 | 2448 /* DeCSS support using libcss */ |
2943 | 2449 $_def_css |
492 | 2450 |
41 | 2451 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
2943 | 2452 #define MPEG12_POSTPROC 1 |
41 | 2453 |
2228 | 2454 /* Define this to enable image postprocessing in libavcodec (requires FAST cpu!) */ |
2943 | 2455 $_def_ffpostprocess |
2228 | 2456 |
2943 | 2457 #define HAVE_ODIVX_POSTPROCESS 1 |
2184 | 2458 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2459 /* Win32 DLL support */ |
2943 | 2460 $_def_win32 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2461 |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
2462 /* DirectShow support */ |
2943 | 2463 $_def_dshow |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
2464 |
1279 | 2465 /* ffmpeg's libavcodec support (requires libavcodec source) */ |
2943 | 2466 $_def_libavcodec |
2945 | 2467 $_def_libavcodecso |
2943 | 2468 |
1383
d15d60e12bd3
added #define CONFIG_DECODERS to support latest ffmpeg CVS
arpi
parents:
1353
diff
changeset
|
2469 /* use only decoders from libavcodec: */ |
2943 | 2470 #define CONFIG_DECODERS 1 |
1279 | 2471 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2472 /* XAnim DLL support */ |
2943 | 2473 $_def_xanim |
2474 $_def_xanim_path | |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2475 |
642 | 2476 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ |
2943 | 2477 $_def_fastmemcpy |
642 | 2478 |
723 | 2479 /* gui support, please do not edit this option */ |
2943 | 2480 $_def_gui |
1004 | 2481 #define PREFIX "$_prefix" |
723 | 2482 |
1029 | 2483 /* Audio lib drivers */ |
2943 | 2484 $_def_ossaudio |
2485 $_def_alsa5 | |
2486 $_def_alsa9 | |
2487 $_def_sunaudio | |
2488 $_def_sgiaudio | |
1008 | 2489 |
947
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2490 /* 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
|
2491 #undef FAST_OSD |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2492 #undef FAST_OSD_TABLE |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
2493 |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2494 /* Enable TV Interface support */ |
2943 | 2495 $_def_tv |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
2496 |
1 | 2497 /* Define if your processor stores words with the most significant |
2498 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
2943 | 2499 $_def_words_endian |
1 | 2500 |
2943 | 2501 $_def_arch |
1 | 2502 |
2943 | 2503 /* Define this for Cygwin build for win32 */ |
2504 $_def_confwin32 | |
1441
039bd84a6c33
Make cygwin define WIN32 for compatibility with mingw and visualc, ...
atmos4
parents:
1438
diff
changeset
|
2505 |
849 | 2506 /* Define this to any prefered value from 386 up to infinity with step 100 */ |
2507 #define __CPU__ $iproc | |
2508 | |
2943 | 2509 $_def_linux |
2242 | 2510 |
1495 | 2511 #ifdef sun |
2512 #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
|
2513 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE |
1495 | 2514 #else |
2515 #define DEFAULT_CDROM_DEVICE "/dev/cdrom" | |
1608
3005f75b82fd
Provide a better default for the DVD device on solaris.
jkeil
parents:
1601
diff
changeset
|
2516 #define DEFAULT_DVD_DEVICE "/dev/dvd" |
1495 | 2517 #endif |
2518 | |
1596 | 2519 |
849 | 2520 /*---------------------------------------------------------------------------- |
2521 ** | |
2522 ** NOTE: Instead of modifying these definitions here, use the | |
2523 ** --enable/--disable options of the ./configure script! | |
2524 ** See ./configure --help for details. | |
2525 ** | |
2526 *---------------------------------------------------------------------------*/ | |
1 | 2527 |
2528 /* termcap flag for getch2.c */ | |
2943 | 2529 $_def_termcap |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2530 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2531 /* enable PNG support */ |
2943 | 2532 $_def_png |
1 | 2533 |
2421 | 2534 /* libmad support */ |
2943 | 2535 $_def_mad |
2421 | 2536 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2537 /* enable OggVorbis support */ |
2943 | 2538 $_def_vorbis |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
2539 |
2943 | 2540 $_def_streaming |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2541 |
1 | 2542 /* Extension defines */ |
2943 | 2543 $_def_3dnow // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) |
2544 $_def_3dnowex // only define if you have 3DNOWEX (AMD Athlon, etc.) | |
2545 $_def_mmx // only define if you have MMX (newer x86 chips, not P54C/PPro) | |
2546 $_def_mmx2 // only define if you have MMX2 (Athlon/PIII/4/CelII) | |
2547 $_def_sse // only define if you have SSE (Intel Pentium III/4 or Celeron II) | |
1 | 2548 |
1438 | 2549 #ifdef HAVE_MMX |
2943 | 2550 #define USE_MMX_IDCT 1 |
1438 | 2551 #endif |
2552 | |
2943 | 2553 $_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
|
2554 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2555 /* libmpeg2 uses a different feature test macro for mediaLib */ |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2556 #ifdef HAVE_MLIB |
2943 | 2557 #define LIBMPEG2_MLIB 1 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2558 #endif |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
2559 |
1 | 2560 /* libvo options */ |
2961 | 2561 #define SCREEN_SIZE_X 1 |
2562 #define SCREEN_SIZE_Y 1 | |
2943 | 2563 $_def_x11 |
2564 $_def_xv | |
2565 $_def_vm | |
2566 $_def_xinerama | |
2567 $_def_gl | |
2568 $_def_dga | |
2569 $_def_dga2 | |
2570 $_def_sdl | |
704 | 2571 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */ |
2943 | 2572 $_def_sdlbuggy |
2573 $_def_ggi | |
2574 $_def_3dfx | |
2575 $_def_tdfxfb | |
2576 $_def_mga | |
2577 $_def_xmga | |
2578 $_def_syncfb | |
2579 $_def_fbdev | |
2580 $_def_dxr3 | |
2581 $_def_dvb | |
2582 $_def_svga | |
2583 $_def_xdpms | |
2584 $_def_aa | |
1 | 2585 |
1694 | 2586 /* used by GUI: */ |
2943 | 2587 $_def_xshape |
1694 | 2588 |
2943 | 2589 #if defined(HAVE_GL) || defined(HAVE_X11) || defined(HAVE_XV) |
2590 #define X11_FULLSCREEN 1 | |
1 | 2591 #endif |
2592 | |
2593 EOF | |
2594 | |
2943 | 2595 ############################################################################# |
1 | 2596 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2597 echo "Creating libvo/config.mak" |
2943 | 2598 _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
|
2599 cat > libvo/config.mak << EOF |
1 | 2600 include ../config.mak |
2943 | 2601 OPTIONAL_SRCS = $_vosrc |
2602 OPTIONAL_OBJS = $_voobj | |
1 | 2603 EOF |
2604 | |
2943 | 2605 ############################################################################# |
965 | 2606 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2607 echo "Creating libvo2/config.mak" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2608 _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
|
2609 cat > libvo2/config.mak << EOF |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2610 include ../config.mak |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2611 OPTIONAL_SRCS = $_vo2src |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2612 OPTIONAL_OBJS = $_vo2obj |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2613 EOF |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2614 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2615 ############################################################################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2616 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2617 echo "Creating libao2/config.mak" |
2943 | 2618 _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
|
2619 cat > libao2/config.mak << EOF |
965 | 2620 include ../config.mak |
2943 | 2621 OPTIONAL_SRCS = $_aosrc |
2622 OPTIONAL_OBJS = $_aoobj | |
2623 EOF | |
965 | 2624 |
2943 | 2625 ############################################################################# |
965 | 2626 |
2943 | 2627 echo "Creating help_mp.h" |
2628 cat > help_mp.h << EOF | |
2629 #include "$_mp_help" | |
965 | 2630 EOF |
2631 | |
2943 | 2632 ############################################################################# |
2633 | |
1 | 2634 cat << EOF |
2635 | |
2636 Config files successfully generated by ./configure ! | |
2943 | 2637 |
2638 Install prefix: $_prefix | |
2639 Data directory: $_datadir | |
2190 | 2640 |
2943 | 2641 'config.h' and 'config.mak' contain your configuration options. |
2642 Note: if you alter theses files (for instance CFLAGS) MPlayer may no longer | |
2643 compile *** DON'T BUGREPORT if you tweak these files *** | |
2644 | |
2645 'make' will now compile MPlayer and 'make install' will install it. | |
2190 | 2646 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'. |
1 | 2647 |
2648 EOF | |
2649 | |
1618 | 2650 |
2171 | 2651 if test "$_mtrr" = yes ; then |
2943 | 2652 echo "Please check mtrr settings at /proc/mtrr (see DOCS/video.html#2.2.1.1)" |
2653 echo | |
1 | 2654 fi |
2655 | |
2171 | 2656 if test "$_sdl" = "outdated" ; then |
2190 | 2657 cat <<EOF |
2658 You have an outdated version of libSDL installed (older than v1.1.7) and SDL | |
2659 support has therefore been disabled. | |
2660 | |
2661 Please upgrade to a more recent version (version 1.1.8 and above are known to | |
2662 work). You may get this library from: http://www.libsdl.org | |
2663 | |
2664 You need to re-run ./configure and recompile after updating SDL. If you are | |
2665 only interested in the libSDL audio drivers, then older version might work. | |
2666 | |
2667 Use --enable-sdl to force usage of libSDL. | |
2668 EOF | |
1 | 2669 fi |
2670 | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2671 if x86 ; then |
2425 | 2672 if test "$_win32" = no ; then |
2673 if test "$_win32libdir" ; then | |
2674 cat <<EOF | |
2190 | 2675 Failed to find a WIN32 codecs dir at $_win32libdir! |
2676 Create it and copy the DLL files there! (You can get them from your windows | |
2677 directory or download them from: | |
2225 | 2678 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip |
2190 | 2679 EOF |
2425 | 2680 fi |
2190 | 2681 else |
2943 | 2682 if test "$_win32libdir" ; then |
2427 | 2683 echo "Ok, found Win32 codecs directory at $_win32libdir." |
2684 else | |
2685 cat <<EOF | |
2594 | 2686 Failed to find a WIN32 codecs dir! |
2427 | 2687 Create it and copy the DLL files there! (You can get them from your windows |
2688 directory or download them from: | |
2689 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip | |
2690 EOF | |
2691 fi | |
2190 | 2692 fi |
1 | 2693 else |
2943 | 2694 cat <<EOF |
2190 | 2695 NOTE: WIN32 codec DLLs are not supported on your CPU ($host_arch). |
2696 You may encounter a few AVI files that cannot be played due to missing | |
2697 opensource video/audio codec support. | |
2698 EOF | |
1 | 2699 fi |
2700 | |
2943 | 2701 cat <<EOF |
2702 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2703 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
|
2704 If you believe it is a bug in configure, please report it. |
2943 | 2705 |
2706 EOF | |
2707 | |
1021 | 2708 # Last move: |
2190 | 2709 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" |
1021 | 2710 |