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