remove palette8torgb15 and palette8tobgr15
[mplayer/glamo.git] / configure
blob312d46ee521491de828c27519f397b804a774396
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 _configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 source="$1"
63 shift
64 echo >> "$TMPLOG"
65 cat "$source" >> "$TMPLOG"
66 echo >> "$TMPLOG"
67 echo "$_cc $source $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
70 TMPRES="$?"
71 echo >> "$TMPLOG"
72 echo >> "$TMPLOG"
73 return "$TMPRES"
76 cc_check() {
77 compile_check $TMPC $@
80 cxx_check() {
81 compile_check $TMPCPP $@ -lstdc++
84 yasm_check() {
85 echo >> "$TMPLOG"
86 cat "$TMPS" >> "$TMPLOG"
87 echo >> "$TMPLOG"
88 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
89 rm -f "$TMPEXE"
90 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
91 TMPRES="$?"
92 echo >> "$TMPLOG"
93 echo >> "$TMPLOG"
94 return "$TMPRES"
97 tmp_run() {
98 "$TMPEXE" >> "$TMPLOG" 2>&1
101 # Display error message, flushes tempfile, exit
102 die () {
103 echo
104 echo "Error: $@" >&2
105 echo >&2
106 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
107 echo "Check \"$TMPLOG\" if you do not understand why it failed."
108 exit 1
111 # OS test booleans functions
112 issystem() {
113 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
115 aix() { issystem "AIX"; }
116 amigaos() { issystem "AmigaOS"; }
117 beos() { issystem "BEOS"; }
118 bsdos() { issystem "BSD/OS"; }
119 cygwin() { issystem "CYGWIN"; }
120 darwin() { issystem "Darwin"; }
121 dragonfly() { issystem "DragonFly"; }
122 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
123 gnu() { issystem "GNU"; }
124 hpux() { issystem "HP-UX"; }
125 irix() { issystem "IRIX"; }
126 linux() { issystem "Linux"; }
127 mingw32() { issystem "MINGW32"; }
128 morphos() { issystem "MorphOS"; }
129 netbsd() { issystem "NetBSD"; }
130 openbsd() { issystem "OpenBSD"; }
131 os2() { issystem "OS/2"; }
132 qnx() { issystem "QNX"; }
133 sunos() { issystem "SunOS"; }
134 win32() { cygwin || mingw32; }
136 # arch test boolean functions
137 # x86/x86pc is used by QNX
138 x86_32() {
139 case "$host_arch" in
140 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
141 *) return 1 ;;
142 esac
145 x86_64() {
146 case "$host_arch" in
147 x86_64|amd64) return 0 ;;
148 *) return 1 ;;
149 esac
152 x86() {
153 x86_32 || x86_64
156 ppc() {
157 case "$host_arch" in
158 ppc|ppc64|powerpc|powerpc64) return 0;;
159 *) return 1;;
160 esac
163 alpha() {
164 case "$host_arch" in
165 alpha*) return 0;;
166 *) return 1;;
167 esac
170 arm() {
171 case "$host_arch" in
172 arm*) return 0;;
173 *) return 1;;
174 esac
177 # Use this before starting a check
178 echocheck() {
179 echo "============ Checking for $@ ============" >> "$TMPLOG"
180 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
183 # Use this to echo the results of a check
184 echores() {
185 if test "$res_comment" ; then
186 res_comment="($res_comment)"
188 echo "Result is: $@ $res_comment" >> "$TMPLOG"
189 echo "##########################################" >> "$TMPLOG"
190 echo "" >> "$TMPLOG"
191 echo "$@ $res_comment"
192 res_comment=""
194 #############################################################################
196 # Check how echo works in this /bin/sh
197 case $(echo -n) in
198 -n) _echo_n= _echo_c='\c' ;; # SysV echo
199 *) _echo_n='-n ' _echo_c= ;; # BSD echo
200 esac
202 msg_lang_all=$(echo help/help_mp-??.h help/help_mp-??_??.h | sed -e "s:help/help_mp-\(..\).h:\1:g" -e "s:help/help_mp-\(.....\).h:\1:g")
203 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
204 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
206 show_help(){
207 cat << EOF
208 Usage: $0 [OPTIONS]...
210 Configuration:
211 -h, --help display this help and exit
213 Installation directories:
214 --prefix=DIR prefix directory for installation [/usr/local]
215 --bindir=DIR directory for installing binaries [PREFIX/bin]
216 --datadir=DIR directory for installing machine independent
217 data files (skins, etc) [PREFIX/share/mplayer]
218 --mandir=DIR directory for installing man pages [PREFIX/share/man]
219 --confdir=DIR directory for installing configuration files
220 [PREFIX/etc/mplayer]
221 --libdir=DIR directory for object code libraries [PREFIX/lib]
222 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
224 Optional features:
225 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
226 --disable-mplayer disable MPlayer compilation [enable]
227 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
228 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
229 --disable-largefiles disable support for files > 2GB [enable]
230 --enable-linux-devfs set default devices to devfs [disable]
231 --enable-termcap use termcap database for key codes [autodetect]
232 --enable-termios use termios database for key codes [autodetect]
233 --disable-iconv disable iconv for encoding conversion [autodetect]
234 --disable-langinfo do not use langinfo [autodetect]
235 --enable-lirc enable LIRC (remote control) support [autodetect]
236 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
237 --enable-joystick enable joystick support [disable]
238 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
239 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
240 --disable-vm disable X video mode extensions [autodetect]
241 --disable-xf86keysym disable support for multimedia keys [autodetect]
242 --enable-radio enable radio interface [disable]
243 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
244 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
245 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
246 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
247 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
248 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
249 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
250 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
251 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
252 --disable-network disable networking [enable]
253 --enable-winsock2_h enable winsock2_h [autodetect]
254 --enable-smb enable Samba (SMB) input [autodetect]
255 --enable-live enable LIVE555 Streaming Media [autodetect]
256 --enable-nemesi enable Nemesi Streaming Media [autodetect]
257 --enable-librtmp enable RTMPDump Streaming Media [autodetect]
258 --disable-vcd disable VCD support [autodetect]
259 --disable-dvdnav disable libdvdnav [autodetect]
260 --disable-dvdread disable libdvdread [autodetect]
261 --disable-dvdread-internal disable internal libdvdread [autodetect]
262 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
263 --disable-cdparanoia disable cdparanoia [autodetect]
264 --disable-cddb disable cddb [autodetect]
265 --disable-bitmap-font disable bitmap font support [enable]
266 --disable-freetype disable FreeType 2 font rendering [autodetect]
267 --disable-fontconfig disable fontconfig font lookup [autodetect]
268 --disable-unrarexec disable using of UnRAR executable [enabled]
269 --enable-menu enable OSD menu (not DVD menu) [disabled]
270 --disable-sortsub disable subtitle sorting [enabled]
271 --enable-fribidi enable the FriBiDi libs [autodetect]
272 --disable-enca disable ENCA charset oracle library [autodetect]
273 --disable-maemo disable maemo specific features [autodetect]
274 --enable-macosx-finder enable Mac OS X Finder invocation parameter
275 parsing [disabled]
276 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
277 --disable-inet6 disable IPv6 support [autodetect]
278 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
279 --disable-ftp disable FTP support [enabled]
280 --disable-vstream disable TiVo vstream client support [autodetect]
281 --disable-pthreads disable Posix threads support [autodetect]
282 --disable-w32threads disable Win32 threads support [autodetect]
283 --disable-ass-internal disable internal SSA/ASS subtitle support [autodetect]
284 --disable-ass disable SSA/ASS subtitle support [autodetect]
285 --enable-rpath enable runtime linker path for extra libs [disabled]
287 Codecs:
288 --enable-gif enable GIF support [autodetect]
289 --enable-png enable PNG input/output support [autodetect]
290 --enable-mng enable MNG input support [autodetect]
291 --enable-jpeg enable JPEG input/output support [autodetect]
292 --enable-libcdio enable libcdio support [autodetect]
293 --enable-liblzo enable liblzo support [autodetect]
294 --disable-win32dll disable Win32 DLL support [autodetect]
295 --disable-qtx disable QuickTime codecs support [enabled]
296 --disable-xanim disable XAnim codecs support [enabled]
297 --disable-real disable RealPlayer codecs support [enabled]
298 --disable-xvid disable Xvid [autodetect]
299 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
300 --disable-x264 disable x264 [autodetect]
301 --disable-x264-lavc disable x264 in libavcodec [autodetect]
302 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
303 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
304 decoder) [autodetect]
305 --disable-libvpx-lavc disable libvpx in libavcodec [autodetect]
306 --disable-libnut disable libnut [autodetect]
307 --disable-libavutil_a disable static libavutil [autodetect]
308 --disable-libavcodec_a disable static libavcodec [autodetect]
309 --disable-libavformat_a disable static libavformat [autodetect]
310 --disable-libpostproc_a disable static libpostproc [autodetect]
311 --disable-libswscale_a disable static libswscale [autodetect]
312 --disable-libavutil_so disable shared libavutil [autodetect]
313 --disable-libavcodec_so disable shared libavcodec [autodetect]
314 --disable-libavformat_so disable shared libavformat [autodetect]
315 --disable-libpostproc_so disable shared libpostproc [autodetect]
316 --disable-libswscale_so disable shared libswscale [autodetect]
317 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
318 in libavcodec [enabled]
319 --disable-tremor-internal disable internal Tremor [enabled]
320 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
321 --enable-tremor enable external Tremor [autodetect]
322 --disable-libvorbis disable libvorbis support [autodetect]
323 --disable-speex disable Speex support [autodetect]
324 --enable-theora enable OggTheora libraries [autodetect]
325 --enable-faad enable external FAAD2 (AAC) [autodetect]
326 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
327 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
328 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
329 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
330 --disable-ladspa disable LADSPA plugin support [autodetect]
331 --disable-libbs2b disable libbs2b audio filter support [autodetect]
332 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
333 --disable-mad disable libmad (MPEG audio) support [autodetect]
334 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
335 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
336 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
337 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
338 --enable-xmms enable XMMS input plugin support [disabled]
339 --enable-libdca enable libdca support [autodetect]
340 --disable-mp3lib disable builtin mp3lib [autodetect]
341 --disable-liba52 disable liba52 [autodetect]
342 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
343 --disable-musepack disable musepack support [autodetect]
344 --disable-libopencore_amrnb disable libopencore_amr narrowband [autodetect]
345 --disable-libopencore_amrwb disable libopencore_amr wideband [autodetect]
346 --disable-libopenjpeg disable OpenJPEG (JPEG2000) input/output support [autodetect]
347 --disable-decoder=DECODER disable specified FFmpeg decoder
348 --enable-decoder=DECODER enable specified FFmpeg decoder
349 --disable-encoder=ENCODER disable specified FFmpeg encoder
350 --enable-encoder=ENCODER enable specified FFmpeg encoder
351 --disable-parser=PARSER disable specified FFmpeg parser
352 --enable-parser=PARSER enable specified FFmpeg parser
353 --disable-protocol=PROTO disable specified FFmpeg protocol
354 --enable-protocol=PROTO enable specified FFmpeg protocol
355 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
356 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
357 --disable-muxer=MUXER disable specified FFmpeg muxer
358 --enable-muxer=MUXER enable specified FFmpeg muxer
360 Video output:
361 --disable-vidix disable VIDIX [for x86 *nix]
362 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
363 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
364 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
365 --disable-vidix-pcidb disable VIDIX PCI device name database
366 --enable-dhahelper enable VIDIX dhahelper support
367 --enable-svgalib_helper enable VIDIX svgalib_helper support
368 --enable-gl enable OpenGL video output [autodetect]
369 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
370 --enable-dga2 enable DGA 2 support [autodetect]
371 --enable-dga1 enable DGA 1 support [autodetect]
372 --enable-vesa enable VESA video output [autodetect]
373 --enable-svga enable SVGAlib video output [autodetect]
374 --enable-sdl enable SDL video output [autodetect]
375 --enable-kva enable KVA video output [autodetect]
376 --enable-aa enable AAlib video output [autodetect]
377 --enable-caca enable CACA video output [autodetect]
378 --enable-ggi enable GGI video output [autodetect]
379 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
380 --enable-direct3d enable Direct3D video output [autodetect]
381 --enable-directx enable DirectX video output [autodetect]
382 --enable-dxr2 enable DXR2 video output [autodetect]
383 --enable-dxr3 enable DXR3/H+ video output [autodetect]
384 --enable-ivtv enable IVTV TV-Out video output [autodetect]
385 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
386 --enable-dvb enable DVB video output [autodetect]
387 --enable-mga enable mga_vid video output [autodetect]
388 --enable-xmga enable mga_vid X11 video output [autodetect]
389 --enable-xv enable Xv video output [autodetect]
390 --enable-xvmc enable XvMC acceleration [disable]
391 --enable-vdpau enable VDPAU acceleration [autodetect]
392 --enable-vm enable XF86VidMode support [autodetect]
393 --enable-xinerama enable Xinerama support [autodetect]
394 --enable-x11 enable X11 video output [autodetect]
395 --enable-xshape enable XShape support [autodetect]
396 --disable-xss disable screensaver support via xss [autodetect]
397 --enable-fbdev enable FBDev video output [autodetect]
398 --enable-mlib enable mediaLib video output (Solaris) [disable]
399 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
400 --enable-tdfxfb enable tdfxfb video output [disable]
401 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
402 --enable-wii enable Nintendo Wii/GameCube video output [disable]
403 --enable-directfb enable DirectFB video output [autodetect]
404 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
405 --enable-bl enable Blinkenlights video output [disable]
406 --enable-tdfxvid enable tdfx_vid video output [disable]
407 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
408 --disable-tga disable Targa video output [enable]
409 --disable-pnm disable PNM video output [enable]
410 --disable-md5sum disable md5sum video output [enable]
411 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
412 --disable-corevideo disable CoreVideo video output [autodetect]
413 --disable-quartz disable Quartz video output [autodetect]
415 Audio output:
416 --disable-alsa disable ALSA audio output [autodetect]
417 --disable-ossaudio disable OSS audio output [autodetect]
418 --disable-arts disable aRts audio output [autodetect]
419 --disable-esd disable esd audio output [autodetect]
420 --disable-pulse disable Pulseaudio audio output [autodetect]
421 --disable-jack disable JACK audio output [autodetect]
422 --disable-openal disable OpenAL audio output [autodetect]
423 --disable-nas disable NAS audio output [autodetect]
424 --disable-sgiaudio disable SGI audio output [autodetect]
425 --disable-sunaudio disable Sun audio output [autodetect]
426 --disable-kai disable KAI audio output [autodetect]
427 --disable-dart disable DART audio output [autodetect]
428 --disable-win32waveout disable Windows waveout audio output [autodetect]
429 --disable-coreaudio disable CoreAudio audio output [autodetect]
430 --disable-select disable using select() on the audio device [enable]
432 Language options:
433 --charset=charset convert the console messages to this character set
434 --language-doc=lang language to use for the documentation [en]
435 --language-man=lang language to use for the man pages [en]
436 --language-msg=lang language to use for the messages and the GUI [en]
437 --language=lang default language to use [en]
438 Specific options override --language. You can pass a list of languages separated
439 by whitespace or commas instead of a single language. Nonexisting translations
440 will be dropped from each list. All documentation and man page translations
441 available in the list will be installed, for the messages the first available
442 translation will be used. The value "all" will activate all translations. The
443 LINGUAS environment variable is honored. In all cases the fallback is English.
444 Available values are: all $msg_lang_all
446 Miscellaneous options:
447 --enable-runtime-cpudetection enable runtime CPU detection [disable]
448 --enable-cross-compile enable cross-compilation [autodetect]
449 --cc=COMPILER C compiler to build MPlayer [gcc]
450 --host-cc=COMPILER C compiler for tools needed while building [gcc]
451 --as=ASSEMBLER assembler to build MPlayer [as]
452 --nm=NM nm tool to build MPlayer [nm]
453 --yasm=YASM Yasm assembler to build MPlayer [yasm]
454 --ar=AR librarian to build MPlayer [ar]
455 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
456 --windres=WINDRES windres to build MPlayer [windres]
457 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
458 --enable-static build a statically linked binary
459 --with-install=PATH path to a custom install program
461 Advanced options:
462 --enable-mmx enable MMX [autodetect]
463 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
464 --enable-3dnow enable 3DNow! [autodetect]
465 --enable-3dnowext enable extended 3DNow! [autodetect]
466 --enable-sse enable SSE [autodetect]
467 --enable-sse2 enable SSE2 [autodetect]
468 --enable-ssse3 enable SSSE3 [autodetect]
469 --enable-shm enable shm [autodetect]
470 --enable-altivec enable AltiVec (PowerPC) [autodetect]
471 --enable-armv5te enable DSP extensions (ARM) [autodetect]
472 --enable-armv6 enable ARMv6 (ARM) [autodetect]
473 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
474 --enable-armvfp enable ARM VFP (ARM) [autodetect]
475 --enable-neon enable NEON (ARM) [autodetect]
476 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
477 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
478 --enable-hardcoded-tables put tables in binary instead of calculating them at startup [disable]
479 --enable-big-endian force byte order to big-endian [autodetect]
480 --enable-debug[=1-3] compile-in debugging information [disable]
481 --enable-profile compile-in profiling information [disable]
482 --disable-sighandler disable sighandler for crashes [enable]
483 --enable-crash-debug enable automatic gdb attach on crash [disable]
484 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
486 Use these options if autodetection fails:
487 --extra-cflags=FLAGS extra CFLAGS
488 --extra-ldflags=FLAGS extra LDFLAGS
489 --extra-libs=FLAGS extra linker flags
490 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
491 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
492 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
494 --with-freetype-config=PATH path to freetype-config
495 --with-glib-config=PATH path to glib*-config
496 --with-gtk-config=PATH path to gtk*-config
497 --with-sdl-config=PATH path to sdl*-config
498 --with-dvdnav-config=PATH path to dvdnav-config
499 --with-dvdread-config=PATH path to dvdread-config
501 This configure script is NOT autoconf-based, even though its output is similar.
502 It will try to autodetect all configuration options. If you --enable an option
503 it will be forcefully turned on, skipping autodetection. This can break
504 compilation, so you need to know what you are doing.
506 exit 0
507 } #show_help()
509 # GOTCHA: the variables below defines the default behavior for autodetection
510 # and have - unless stated otherwise - at least 2 states : yes no
511 # If autodetection is available then the third state is: auto
512 _mmx=auto
513 _3dnow=auto
514 _3dnowext=auto
515 _mmxext=auto
516 _sse=auto
517 _sse2=auto
518 _ssse3=auto
519 _cmov=auto
520 _fast_cmov=auto
521 _fast_clz=auto
522 _armv5te=auto
523 _armv6=auto
524 _armv6t2=auto
525 _armvfp=auto
526 neon=auto
527 _iwmmxt=auto
528 _mtrr=auto
529 _altivec=auto
530 _install=install
531 _ranlib=ranlib
532 _windres=windres
533 _cc=cc
534 _ar=ar
535 test "$CC" && _cc="$CC"
536 _as=auto
537 _nm=auto
538 _yasm=yasm
539 _runtime_cpudetection=no
540 _cross_compile=auto
541 _prefix="/usr/local"
542 _libavutil_a=auto
543 _libavutil_so=auto
544 _libavcodec_a=auto
545 _libopencore_amrnb=auto
546 _libopencore_amrwb=auto
547 libopenjpeg=auto
548 _libavdecoders_all=$(sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
549 _libavdecoders=$(echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//)
550 _libavencoders_all=$(sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
551 _libavencoders=$(echo $_libavencoders_all | sed -e 's/ LIB[A-Z0-9_]*_ENCODER//g' -e s/AAC_ENCODER//)
552 _libavparsers_all=$(sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
553 _libavparsers=$_libavparsers_all
554 _libavbsfs_all=$(sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
555 _libavbsfs=$_libavbsfs_all
556 _libavhwaccels_all=$(sed -n 's/^[^#]*HWACCEL.*(.*, *\(.*\)).*/\1_hwaccel/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
557 # Disable all hardware accelerators for now.
558 _libavhwaccels=
559 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
560 _libavdemuxers=$(echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/AVISYNTH_DEMUXER//)
561 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
562 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// -e s/RTSP_MUXER//)
563 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
564 _libavprotocols=$_libavprotocols_all
565 _libavcodec_so=auto
566 _libavformat_a=auto
567 _libavformat_so=auto
568 _libpostproc_a=auto
569 _libpostproc_so=auto
570 _libswscale_a=auto
571 _libswscale_so=auto
572 _libavcodec_mpegaudio_hp=yes
573 _mencoder=yes
574 _mplayer=yes
575 _x11=auto
576 _xshape=auto
577 _xss=auto
578 _dga1=auto
579 _dga2=auto
580 _xv=auto
581 _xvmc=no #auto when complete
582 _vdpau=auto
583 _sdl=auto
584 _kva=auto
585 _direct3d=auto
586 _directx=auto
587 _win32waveout=auto
588 _nas=auto
589 _png=auto
590 _mng=auto
591 _jpeg=auto
592 _pnm=yes
593 _md5sum=yes
594 _yuv4mpeg=yes
595 _gif=auto
596 _gl=auto
597 matrixview=yes
598 _ggi=auto
599 _ggiwmh=auto
600 _aa=auto
601 _caca=auto
602 _svga=auto
603 _vesa=auto
604 _fbdev=auto
605 _dvb=auto
606 _dxr2=auto
607 _dxr3=auto
608 _ivtv=auto
609 _v4l2=auto
610 _iconv=auto
611 _langinfo=auto
612 _rtc=auto
613 _ossaudio=auto
614 _arts=auto
615 _esd=auto
616 _pulse=auto
617 _jack=auto
618 _kai=auto
619 _dart=auto
620 _openal=auto
621 _libcdio=auto
622 _liblzo=auto
623 _mad=auto
624 _mp3lame=auto
625 _mp3lame_lavc=auto
626 _toolame=auto
627 _twolame=auto
628 _tremor=auto
629 _tremor_internal=yes
630 _tremor_low=no
631 _libvorbis=auto
632 _speex=auto
633 _theora=auto
634 _mp3lib=auto
635 _liba52=auto
636 _libdca=auto
637 _libmpeg2=auto
638 _faad=auto
639 _faad_internal=auto
640 _faad_fixed=no
641 _faac=auto
642 _faac_lavc=auto
643 _ladspa=auto
644 _libbs2b=auto
645 _xmms=no
646 _vcd=auto
647 _dvdnav=auto
648 _dvdnavconfig=dvdnav-config
649 _dvdreadconfig=dvdread-config
650 _dvdread=auto
651 _dvdread_internal=auto
652 _libdvdcss_internal=auto
653 _xanim=auto
654 _real=auto
655 _live=auto
656 _nemesi=auto
657 _librtmp=auto
658 _native_rtsp=yes
659 _xinerama=auto
660 _mga=auto
661 _xmga=auto
662 _vm=auto
663 _xf86keysym=auto
664 _mlib=no #broken, thus disabled
665 _sgiaudio=auto
666 _sunaudio=auto
667 _alsa=auto
668 _fastmemcpy=yes
669 hardcoded_tables=no
670 _unrar_exec=auto
671 _win32dll=auto
672 _select=yes
673 _radio=no
674 _radio_capture=no
675 _radio_v4l=auto
676 _radio_v4l2=auto
677 _radio_bsdbt848=auto
678 _tv=yes
679 _tv_v4l1=auto
680 _tv_v4l2=auto
681 _tv_bsdbt848=auto
682 _tv_dshow=auto
683 _pvr=auto
684 _network=yes
685 _winsock2_h=auto
686 _struct_addrinfo=auto
687 _getaddrinfo=auto
688 _struct_sockaddr_storage=auto
689 _smb=auto
690 _vidix=auto
691 _vidix_pcidb=yes
692 _dhahelper=no
693 _svgalib_helper=no
694 _joystick=no
695 _xvid=auto
696 _xvid_lavc=auto
697 _x264=auto
698 _x264_lavc=auto
699 _libdirac_lavc=auto
700 _libschroedinger_lavc=auto
701 _libvpx_lavc=auto
702 _libnut=auto
703 _lirc=auto
704 _lircc=auto
705 _apple_remote=auto
706 _apple_ir=auto
707 _gui=no
708 _gtk1=no
709 _termcap=auto
710 _termios=auto
711 _3dfx=no
712 _s3fb=no
713 _wii=no
714 _tdfxfb=no
715 _tdfxvid=no
716 _xvr100=auto
717 _tga=yes
718 _directfb=auto
719 _zr=auto
720 _bl=no
721 _largefiles=yes
722 #language=en
723 _shm=auto
724 _linux_devfs=no
725 _charset="UTF-8"
726 _dynamic_plugins=no
727 _crash_debug=no
728 _sighandler=yes
729 _libdv=auto
730 _cdparanoia=auto
731 _cddb=auto
732 _big_endian=auto
733 _bitmap_font=yes
734 _freetype=auto
735 _fontconfig=auto
736 _menu=no
737 _qtx=auto
738 _maemo=auto
739 _coreaudio=auto
740 _corevideo=auto
741 _quartz=auto
742 quicktime=auto
743 _macosx_finder=no
744 _macosx_bundle=auto
745 _sortsub=yes
746 _freetypeconfig='freetype-config'
747 _fribidi=auto
748 _enca=auto
749 _inet6=auto
750 _gethostbyname2=auto
751 _ftp=yes
752 _musepack=auto
753 _vstream=auto
754 _pthreads=auto
755 _w32threads=auto
756 _ass=auto
757 ass_internal=yes
758 _rpath=no
759 _asmalign_pot=auto
760 _stream_cache=yes
761 _priority=no
762 def_dos_paths="#define HAVE_DOS_PATHS 0"
763 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
764 def_priority="#undef CONFIG_PRIORITY"
765 def_pthread_cache="#undef PTHREAD_CACHE"
766 _need_shmem=yes
767 for ac_option do
768 case "$ac_option" in
769 --help|-help|-h)
770 show_help
772 --prefix=*)
773 _prefix=$(echo $ac_option | cut -d '=' -f 2)
775 --bindir=*)
776 _bindir=$(echo $ac_option | cut -d '=' -f 2)
778 --datadir=*)
779 _datadir=$(echo $ac_option | cut -d '=' -f 2)
781 --mandir=*)
782 _mandir=$(echo $ac_option | cut -d '=' -f 2)
784 --confdir=*)
785 _confdir=$(echo $ac_option | cut -d '=' -f 2)
787 --libdir=*)
788 _libdir=$(echo $ac_option | cut -d '=' -f 2)
790 --codecsdir=*)
791 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
794 --with-install=*)
795 _install=$(echo $ac_option | cut -d '=' -f 2 )
797 --with-xvmclib=*)
798 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
801 --with-sdl-config=*)
802 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
804 --with-freetype-config=*)
805 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
807 --with-gtk-config=*)
808 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
810 --with-glib-config=*)
811 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
813 --with-dvdnav-config=*)
814 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
816 --with-dvdread-config=*)
817 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
820 --extra-cflags=*)
821 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
823 --extra-ldflags=*)
824 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
826 --extra-libs=*)
827 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
829 --extra-libs-mplayer=*)
830 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
832 --extra-libs-mencoder=*)
833 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
836 --target=*)
837 _target=$(echo $ac_option | cut -d '=' -f 2)
839 --cc=*)
840 _cc=$(echo $ac_option | cut -d '=' -f 2)
842 --host-cc=*)
843 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
845 --as=*)
846 _as=$(echo $ac_option | cut -d '=' -f 2)
848 --nm=*)
849 _nm=$(echo $ac_option | cut -d '=' -f 2)
851 --yasm=*)
852 _yasm=$(echo $ac_option | cut -d '=' -f 2)
854 --ar=*)
855 _ar=$(echo $ac_option | cut -d '=' -f 2)
857 --ranlib=*)
858 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
860 --windres=*)
861 _windres=$(echo $ac_option | cut -d '=' -f 2)
863 --charset=*)
864 _charset=$(echo $ac_option | cut -d '=' -f 2)
866 --language-doc=*)
867 language_doc=$(echo $ac_option | cut -d '=' -f 2)
869 --language-man=*)
870 language_man=$(echo $ac_option | cut -d '=' -f 2)
872 --language-msg=*)
873 language_msg=$(echo $ac_option | cut -d '=' -f 2)
875 --language=*)
876 language=$(echo $ac_option | cut -d '=' -f 2)
879 --enable-static)
880 _ld_static='-static'
882 --disable-static)
883 _ld_static=''
885 --enable-profile)
886 _profile='-p'
888 --disable-profile)
889 _profile=
891 --enable-debug)
892 _debug='-g'
894 --enable-debug=*)
895 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
897 --disable-debug)
898 _debug=
900 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
901 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
902 --enable-cross-compile) _cross_compile=yes ;;
903 --disable-cross-compile) _cross_compile=no ;;
904 --enable-mencoder) _mencoder=yes ;;
905 --disable-mencoder) _mencoder=no ;;
906 --enable-mplayer) _mplayer=yes ;;
907 --disable-mplayer) _mplayer=no ;;
908 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
909 --disable-dynamic-plugins) _dynamic_plugins=no ;;
910 --enable-x11) _x11=yes ;;
911 --disable-x11) _x11=no ;;
912 --enable-xshape) _xshape=yes ;;
913 --disable-xshape) _xshape=no ;;
914 --enable-xss) _xss=yes ;;
915 --disable-xss) _xss=no ;;
916 --enable-xv) _xv=yes ;;
917 --disable-xv) _xv=no ;;
918 --enable-xvmc) _xvmc=yes ;;
919 --disable-xvmc) _xvmc=no ;;
920 --enable-vdpau) _vdpau=yes ;;
921 --disable-vdpau) _vdpau=no ;;
922 --enable-sdl) _sdl=yes ;;
923 --disable-sdl) _sdl=no ;;
924 --enable-kva) _kva=yes ;;
925 --disable-kva) _kva=no ;;
926 --enable-direct3d) _direct3d=yes ;;
927 --disable-direct3d) _direct3d=no ;;
928 --enable-directx) _directx=yes ;;
929 --disable-directx) _directx=no ;;
930 --enable-win32waveout) _win32waveout=yes ;;
931 --disable-win32waveout) _win32waveout=no ;;
932 --enable-nas) _nas=yes ;;
933 --disable-nas) _nas=no ;;
934 --enable-png) _png=yes ;;
935 --disable-png) _png=no ;;
936 --enable-mng) _mng=yes ;;
937 --disable-mng) _mng=no ;;
938 --enable-jpeg) _jpeg=yes ;;
939 --disable-jpeg) _jpeg=no ;;
940 --enable-libopenjpeg) libopenjpeg=yes ;;
941 --disable-libopenjpeg)libopenjpeg=no ;;
942 --enable-pnm) _pnm=yes ;;
943 --disable-pnm) _pnm=no ;;
944 --enable-md5sum) _md5sum=yes ;;
945 --disable-md5sum) _md5sum=no ;;
946 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
947 --disable-yuv4mpeg) _yuv4mpeg=no ;;
948 --enable-gif) _gif=yes ;;
949 --disable-gif) _gif=no ;;
950 --enable-gl) _gl=yes ;;
951 --disable-gl) _gl=no ;;
952 --enable-matrixview) matrixview=yes ;;
953 --disable-matrixview) matrixview=no ;;
954 --enable-ggi) _ggi=yes ;;
955 --disable-ggi) _ggi=no ;;
956 --enable-ggiwmh) _ggiwmh=yes ;;
957 --disable-ggiwmh) _ggiwmh=no ;;
958 --enable-aa) _aa=yes ;;
959 --disable-aa) _aa=no ;;
960 --enable-caca) _caca=yes ;;
961 --disable-caca) _caca=no ;;
962 --enable-svga) _svga=yes ;;
963 --disable-svga) _svga=no ;;
964 --enable-vesa) _vesa=yes ;;
965 --disable-vesa) _vesa=no ;;
966 --enable-fbdev) _fbdev=yes ;;
967 --disable-fbdev) _fbdev=no ;;
968 --enable-dvb) _dvb=yes ;;
969 --disable-dvb) _dvb=no ;;
970 --enable-dxr2) _dxr2=yes ;;
971 --disable-dxr2) _dxr2=no ;;
972 --enable-dxr3) _dxr3=yes ;;
973 --disable-dxr3) _dxr3=no ;;
974 --enable-ivtv) _ivtv=yes ;;
975 --disable-ivtv) _ivtv=no ;;
976 --enable-v4l2) _v4l2=yes ;;
977 --disable-v4l2) _v4l2=no ;;
978 --enable-iconv) _iconv=yes ;;
979 --disable-iconv) _iconv=no ;;
980 --enable-langinfo) _langinfo=yes ;;
981 --disable-langinfo) _langinfo=no ;;
982 --enable-rtc) _rtc=yes ;;
983 --disable-rtc) _rtc=no ;;
984 --enable-libdv) _libdv=yes ;;
985 --disable-libdv) _libdv=no ;;
986 --enable-ossaudio) _ossaudio=yes ;;
987 --disable-ossaudio) _ossaudio=no ;;
988 --enable-arts) _arts=yes ;;
989 --disable-arts) _arts=no ;;
990 --enable-esd) _esd=yes ;;
991 --disable-esd) _esd=no ;;
992 --enable-pulse) _pulse=yes ;;
993 --disable-pulse) _pulse=no ;;
994 --enable-jack) _jack=yes ;;
995 --disable-jack) _jack=no ;;
996 --enable-openal) _openal=yes ;;
997 --disable-openal) _openal=no ;;
998 --enable-kai) _kai=yes ;;
999 --disable-kai) _kai=no ;;
1000 --enable-dart) _dart=yes ;;
1001 --disable-dart) _dart=no ;;
1002 --enable-mad) _mad=yes ;;
1003 --disable-mad) _mad=no ;;
1004 --enable-mp3lame) _mp3lame=yes ;;
1005 --disable-mp3lame) _mp3lame=no ;;
1006 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
1007 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
1008 --enable-toolame) _toolame=yes ;;
1009 --disable-toolame) _toolame=no ;;
1010 --enable-twolame) _twolame=yes ;;
1011 --disable-twolame) _twolame=no ;;
1012 --enable-libcdio) _libcdio=yes ;;
1013 --disable-libcdio) _libcdio=no ;;
1014 --enable-liblzo) _liblzo=yes ;;
1015 --disable-liblzo) _liblzo=no ;;
1016 --enable-libvorbis) _libvorbis=yes ;;
1017 --disable-libvorbis) _libvorbis=no ;;
1018 --enable-speex) _speex=yes ;;
1019 --disable-speex) _speex=no ;;
1020 --enable-tremor) _tremor=yes ;;
1021 --disable-tremor) _tremor=no ;;
1022 --enable-tremor-internal) _tremor_internal=yes ;;
1023 --disable-tremor-internal) _tremor_internal=no ;;
1024 --enable-tremor-low) _tremor_low=yes ;;
1025 --disable-tremor-low) _tremor_low=no ;;
1026 --enable-theora) _theora=yes ;;
1027 --disable-theora) _theora=no ;;
1028 --enable-mp3lib) _mp3lib=yes ;;
1029 --disable-mp3lib) _mp3lib=no ;;
1030 --enable-liba52) _liba52=yes ;;
1031 --disable-liba52) _liba52=no ;;
1032 --enable-libdca) _libdca=yes ;;
1033 --disable-libdca) _libdca=no ;;
1034 --enable-libmpeg2) _libmpeg2=yes ;;
1035 --disable-libmpeg2) _libmpeg2=no ;;
1036 --enable-musepack) _musepack=yes ;;
1037 --disable-musepack) _musepack=no ;;
1038 --enable-faad) _faad=yes ;;
1039 --disable-faad) _faad=no ;;
1040 --enable-faad-internal) _faad_internal=yes ;;
1041 --disable-faad-internal) _faad_internal=no ;;
1042 --enable-faad-fixed) _faad_fixed=yes ;;
1043 --disable-faad-fixed) _faad_fixed=no ;;
1044 --enable-faac) _faac=yes ;;
1045 --disable-faac) _faac=no ;;
1046 --enable-faac-lavc) _faac_lavc=yes ;;
1047 --disable-faac-lavc) _faac_lavc=no ;;
1048 --enable-ladspa) _ladspa=yes ;;
1049 --disable-ladspa) _ladspa=no ;;
1050 --enable-libbs2b) _libbs2b=yes ;;
1051 --disable-libbs2b) _libbs2b=no ;;
1052 --enable-xmms) _xmms=yes ;;
1053 --disable-xmms) _xmms=no ;;
1054 --enable-vcd) _vcd=yes ;;
1055 --disable-vcd) _vcd=no ;;
1056 --enable-dvdread) _dvdread=yes ;;
1057 --disable-dvdread) _dvdread=no ;;
1058 --enable-dvdread-internal) _dvdread_internal=yes ;;
1059 --disable-dvdread-internal) _dvdread_internal=no ;;
1060 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1061 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1062 --enable-dvdnav) _dvdnav=yes ;;
1063 --disable-dvdnav) _dvdnav=no ;;
1064 --enable-xanim) _xanim=yes ;;
1065 --disable-xanim) _xanim=no ;;
1066 --enable-real) _real=yes ;;
1067 --disable-real) _real=no ;;
1068 --enable-live) _live=yes ;;
1069 --disable-live) _live=no ;;
1070 --enable-nemesi) _nemesi=yes ;;
1071 --disable-nemesi) _nemesi=no ;;
1072 --enable-librtmp) _librtmp=yes ;;
1073 --disable-librtmp) _librtmp=no ;;
1074 --enable-xinerama) _xinerama=yes ;;
1075 --disable-xinerama) _xinerama=no ;;
1076 --enable-mga) _mga=yes ;;
1077 --disable-mga) _mga=no ;;
1078 --enable-xmga) _xmga=yes ;;
1079 --disable-xmga) _xmga=no ;;
1080 --enable-vm) _vm=yes ;;
1081 --disable-vm) _vm=no ;;
1082 --enable-xf86keysym) _xf86keysym=yes ;;
1083 --disable-xf86keysym) _xf86keysym=no ;;
1084 --enable-mlib) _mlib=yes ;;
1085 --disable-mlib) _mlib=no ;;
1086 --enable-sunaudio) _sunaudio=yes ;;
1087 --disable-sunaudio) _sunaudio=no ;;
1088 --enable-sgiaudio) _sgiaudio=yes ;;
1089 --disable-sgiaudio) _sgiaudio=no ;;
1090 --enable-alsa) _alsa=yes ;;
1091 --disable-alsa) _alsa=no ;;
1092 --enable-tv) _tv=yes ;;
1093 --disable-tv) _tv=no ;;
1094 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1095 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1096 --enable-tv-v4l1) _tv_v4l1=yes ;;
1097 --disable-tv-v4l1) _tv_v4l1=no ;;
1098 --enable-tv-v4l2) _tv_v4l2=yes ;;
1099 --disable-tv-v4l2) _tv_v4l2=no ;;
1100 --enable-tv-dshow) _tv_dshow=yes ;;
1101 --disable-tv-dshow) _tv_dshow=no ;;
1102 --enable-radio) _radio=yes ;;
1103 --enable-radio-capture) _radio_capture=yes ;;
1104 --disable-radio-capture) _radio_capture=no ;;
1105 --disable-radio) _radio=no ;;
1106 --enable-radio-v4l) _radio_v4l=yes ;;
1107 --disable-radio-v4l) _radio_v4l=no ;;
1108 --enable-radio-v4l2) _radio_v4l2=yes ;;
1109 --disable-radio-v4l2) _radio_v4l2=no ;;
1110 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1111 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1112 --enable-pvr) _pvr=yes ;;
1113 --disable-pvr) _pvr=no ;;
1114 --enable-fastmemcpy) _fastmemcpy=yes ;;
1115 --disable-fastmemcpy) _fastmemcpy=no ;;
1116 --enable-hardcoded-tables) hardcoded_tables=yes ;;
1117 --disable-hardcoded-tables) hardcoded_tables=no ;;
1118 --enable-network) _network=yes ;;
1119 --disable-network) _network=no ;;
1120 --enable-winsock2_h) _winsock2_h=yes ;;
1121 --disable-winsock2_h) _winsock2_h=no ;;
1122 --enable-smb) _smb=yes ;;
1123 --disable-smb) _smb=no ;;
1124 --enable-vidix) _vidix=yes ;;
1125 --disable-vidix) _vidix=no ;;
1126 --with-vidix-drivers=*)
1127 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1129 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1130 --enable-dhahelper) _dhahelper=yes ;;
1131 --disable-dhahelper) _dhahelper=no ;;
1132 --enable-svgalib_helper) _svgalib_helper=yes ;;
1133 --disable-svgalib_helper) _svgalib_helper=no ;;
1134 --enable-joystick) _joystick=yes ;;
1135 --disable-joystick) _joystick=no ;;
1136 --enable-xvid) _xvid=yes ;;
1137 --disable-xvid) _xvid=no ;;
1138 --enable-xvid-lavc) _xvid_lavc=yes ;;
1139 --disable-xvid-lavc) _xvid_lavc=no ;;
1140 --enable-x264) _x264=yes ;;
1141 --disable-x264) _x264=no ;;
1142 --enable-x264-lavc) _x264_lavc=yes ;;
1143 --disable-x264-lavc) _x264_lavc=no ;;
1144 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1145 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1146 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1147 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1148 --enable-libvpx-lavc) _libvpx_lavc=yes ;;
1149 --disable-libvpx-lavc) _libvpx_lavc=no ;;
1150 --enable-libnut) _libnut=yes ;;
1151 --disable-libnut) _libnut=no ;;
1152 --enable-libavutil_a) _libavutil_a=yes ;;
1153 --disable-libavutil_a) _libavutil_a=no ;;
1154 --enable-libavutil_so) _libavutil_so=yes ;;
1155 --disable-libavutil_so) _libavutil_so=no ;;
1156 --enable-libavcodec_a) _libavcodec_a=yes ;;
1157 --disable-libavcodec_a) _libavcodec_a=no ;;
1158 --enable-libavcodec_so) _libavcodec_so=yes ;;
1159 --disable-libavcodec_so) _libavcodec_so=no ;;
1160 --enable-libopencore_amrnb) _libopencore_amrnb=yes ;;
1161 --disable-libopencore_amrnb) _libopencore_amrnb=no ;;
1162 --enable-libopencore_amrwb) _libopencore_amrwb=yes ;;
1163 --disable-libopencore_amrwb) _libopencore_amrwb=no ;;
1164 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1165 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1166 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1167 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1168 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1169 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1170 --enable-protocol=*) _libavprotocols="$_libavprotocols $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1171 --disable-protocol=*) _libavprotocols=$(echo $_libavprotocols | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1172 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1173 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1174 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1175 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1176 --enable-libavformat_a) _libavformat_a=yes ;;
1177 --disable-libavformat_a) _libavformat_a=no ;;
1178 --enable-libavformat_so) _libavformat_so=yes ;;
1179 --disable-libavformat_so) _libavformat_so=no ;;
1180 --enable-libpostproc_a) _libpostproc_a=yes ;;
1181 --disable-libpostproc_a) _libpostproc_a=no ;;
1182 --enable-libpostproc_so) _libpostproc_so=yes ;;
1183 --disable-libpostproc_so) _libpostproc_so=no ;;
1184 --enable-libswscale_a) _libswscale_a=yes ;;
1185 --disable-libswscale_a) _libswscale_a=no ;;
1186 --enable-libswscale_so) _libswscale_so=yes ;;
1187 --disable-libswscale_so) _libswscale_so=no ;;
1188 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1189 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1191 --enable-lirc) _lirc=yes ;;
1192 --disable-lirc) _lirc=no ;;
1193 --enable-lircc) _lircc=yes ;;
1194 --disable-lircc) _lircc=no ;;
1195 --enable-apple-remote) _apple_remote=yes ;;
1196 --disable-apple-remote) _apple_remote=no ;;
1197 --enable-apple-ir) _apple_ir=yes ;;
1198 --disable-apple-ir) _apple_ir=no ;;
1199 --enable-gui) _gui=yes ;;
1200 --disable-gui) _gui=no ;;
1201 --enable-gtk1) _gtk1=yes ;;
1202 --disable-gtk1) _gtk1=no ;;
1203 --enable-termcap) _termcap=yes ;;
1204 --disable-termcap) _termcap=no ;;
1205 --enable-termios) _termios=yes ;;
1206 --disable-termios) _termios=no ;;
1207 --enable-3dfx) _3dfx=yes ;;
1208 --disable-3dfx) _3dfx=no ;;
1209 --enable-s3fb) _s3fb=yes ;;
1210 --disable-s3fb) _s3fb=no ;;
1211 --enable-wii) _wii=yes ;;
1212 --disable-wii) _wii=no ;;
1213 --enable-tdfxfb) _tdfxfb=yes ;;
1214 --disable-tdfxfb) _tdfxfb=no ;;
1215 --disable-tdfxvid) _tdfxvid=no ;;
1216 --enable-tdfxvid) _tdfxvid=yes ;;
1217 --disable-xvr100) _xvr100=no ;;
1218 --enable-xvr100) _xvr100=yes ;;
1219 --disable-tga) _tga=no ;;
1220 --enable-tga) _tga=yes ;;
1221 --enable-directfb) _directfb=yes ;;
1222 --disable-directfb) _directfb=no ;;
1223 --enable-zr) _zr=yes ;;
1224 --disable-zr) _zr=no ;;
1225 --enable-bl) _bl=yes ;;
1226 --disable-bl) _bl=no ;;
1227 --enable-mtrr) _mtrr=yes ;;
1228 --disable-mtrr) _mtrr=no ;;
1229 --enable-largefiles) _largefiles=yes ;;
1230 --disable-largefiles) _largefiles=no ;;
1231 --enable-shm) _shm=yes ;;
1232 --disable-shm) _shm=no ;;
1233 --enable-select) _select=yes ;;
1234 --disable-select) _select=no ;;
1235 --enable-linux-devfs) _linux_devfs=yes ;;
1236 --disable-linux-devfs) _linux_devfs=no ;;
1237 --enable-cdparanoia) _cdparanoia=yes ;;
1238 --disable-cdparanoia) _cdparanoia=no ;;
1239 --enable-cddb) _cddb=yes ;;
1240 --disable-cddb) _cddb=no ;;
1241 --enable-big-endian) _big_endian=yes ;;
1242 --disable-big-endian) _big_endian=no ;;
1243 --enable-bitmap-font) _bitmap_font=yes ;;
1244 --disable-bitmap-font) _bitmap_font=no ;;
1245 --enable-freetype) _freetype=yes ;;
1246 --disable-freetype) _freetype=no ;;
1247 --enable-fontconfig) _fontconfig=yes ;;
1248 --disable-fontconfig) _fontconfig=no ;;
1249 --enable-unrarexec) _unrar_exec=yes ;;
1250 --disable-unrarexec) _unrar_exec=no ;;
1251 --enable-ftp) _ftp=yes ;;
1252 --disable-ftp) _ftp=no ;;
1253 --enable-vstream) _vstream=yes ;;
1254 --disable-vstream) _vstream=no ;;
1255 --enable-pthreads) _pthreads=yes ;;
1256 --disable-pthreads) _pthreads=no ;;
1257 --enable-w32threads) _w32threads=yes ;;
1258 --disable-w32threads) _w32threads=no ;;
1259 --enable-ass) _ass=yes ;;
1260 --disable-ass) _ass=no ;;
1261 --enable-ass-internal) ass_internal=yes ;;
1262 --disable-ass-internal) ass_internal=no ;;
1263 --enable-rpath) _rpath=yes ;;
1264 --disable-rpath) _rpath=no ;;
1266 --enable-fribidi) _fribidi=yes ;;
1267 --disable-fribidi) _fribidi=no ;;
1269 --enable-enca) _enca=yes ;;
1270 --disable-enca) _enca=no ;;
1272 --enable-inet6) _inet6=yes ;;
1273 --disable-inet6) _inet6=no ;;
1275 --enable-gethostbyname2) _gethostbyname2=yes ;;
1276 --disable-gethostbyname2) _gethostbyname2=no ;;
1278 --enable-dga1) _dga1=yes ;;
1279 --disable-dga1) _dga1=no ;;
1280 --enable-dga2) _dga2=yes ;;
1281 --disable-dga2) _dga2=no ;;
1283 --enable-menu) _menu=yes ;;
1284 --disable-menu) _menu=no ;;
1286 --enable-qtx) _qtx=yes ;;
1287 --disable-qtx) _qtx=no ;;
1289 --enable-coreaudio) _coreaudio=yes ;;
1290 --disable-coreaudio) _coreaudio=no ;;
1291 --enable-corevideo) _corevideo=yes ;;
1292 --disable-corevideo) _corevideo=no ;;
1293 --enable-quartz) _quartz=yes ;;
1294 --disable-quartz) _quartz=no ;;
1295 --enable-macosx-finder) _macosx_finder=yes ;;
1296 --disable-macosx-finder) _macosx_finder=no ;;
1297 --enable-macosx-bundle) _macosx_bundle=yes ;;
1298 --disable-macosx-bundle) _macosx_bundle=no ;;
1300 --enable-maemo) _maemo=yes ;;
1301 --disable-maemo) _maemo=no ;;
1303 --enable-sortsub) _sortsub=yes ;;
1304 --disable-sortsub) _sortsub=no ;;
1306 --enable-crash-debug) _crash_debug=yes ;;
1307 --disable-crash-debug) _crash_debug=no ;;
1308 --enable-sighandler) _sighandler=yes ;;
1309 --disable-sighandler) _sighandler=no ;;
1310 --enable-win32dll) _win32dll=yes ;;
1311 --disable-win32dll) _win32dll=no ;;
1313 --enable-sse) _sse=yes ;;
1314 --disable-sse) _sse=no ;;
1315 --enable-sse2) _sse2=yes ;;
1316 --disable-sse2) _sse2=no ;;
1317 --enable-ssse3) _ssse3=yes ;;
1318 --disable-ssse3) _ssse3=no ;;
1319 --enable-mmxext) _mmxext=yes ;;
1320 --disable-mmxext) _mmxext=no ;;
1321 --enable-3dnow) _3dnow=yes ;;
1322 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1323 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1324 --disable-3dnowext) _3dnowext=no ;;
1325 --enable-cmov) _cmov=yes ;;
1326 --disable-cmov) _cmov=no ;;
1327 --enable-fast-cmov) _fast_cmov=yes ;;
1328 --disable-fast-cmov) _fast_cmov=no ;;
1329 --enable-fast-clz) _fast_clz=yes ;;
1330 --disable-fast-clz) _fast_clz=no ;;
1331 --enable-altivec) _altivec=yes ;;
1332 --disable-altivec) _altivec=no ;;
1333 --enable-armv5te) _armv5te=yes ;;
1334 --disable-armv5te) _armv5te=no ;;
1335 --enable-armv6) _armv6=yes ;;
1336 --disable-armv6) _armv6=no ;;
1337 --enable-armv6t2) _armv6t2=yes ;;
1338 --disable-armv6t2) _armv6t2=no ;;
1339 --enable-armvfp) _armvfp=yes ;;
1340 --disable-armvfp) _armvfp=no ;;
1341 --enable-neon) neon=yes ;;
1342 --disable-neon) neon=no ;;
1343 --enable-iwmmxt) _iwmmxt=yes ;;
1344 --disable-iwmmxt) _iwmmxt=no ;;
1345 --enable-mmx) _mmx=yes ;;
1346 --disable-mmx) # 3Dnow! and MMX2 require MMX
1347 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1350 echo "Unknown parameter: $ac_option"
1351 exit 1
1354 esac
1355 done
1357 # Atmos: moved this here, to be correct, if --prefix is specified
1358 test -z "$_bindir" && _bindir="$_prefix/bin"
1359 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1360 test -z "$_mandir" && _mandir="$_prefix/share/man"
1361 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1362 test -z "$_libdir" && _libdir="$_prefix/lib"
1364 # Determine our OS name and CPU architecture
1365 if test -z "$_target" ; then
1366 # OS name
1367 system_name=$(uname -s 2>&1)
1368 case "$system_name" in
1369 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1371 Haiku)
1372 system_name=BeOS
1374 IRIX*)
1375 system_name=IRIX
1377 GNU/kFreeBSD)
1378 system_name=FreeBSD
1380 HP-UX*)
1381 system_name=HP-UX
1383 [cC][yY][gG][wW][iI][nN]*)
1384 system_name=CYGWIN
1386 MINGW32*)
1387 system_name=MINGW32
1389 OS/2*)
1390 system_name=OS/2
1393 system_name="$system_name-UNKNOWN"
1395 esac
1398 # host's CPU/instruction set
1399 host_arch=$(uname -p 2>&1)
1400 case "$host_arch" in
1401 i386|sparc|ppc|alpha|arm|mips|vax)
1403 powerpc) # Darwin returns 'powerpc'
1404 host_arch=ppc
1406 *) # uname -p on Linux returns 'unknown' for the processor type,
1407 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1409 # Maybe uname -m (machine hardware name) returns something we
1410 # recognize.
1412 # x86/x86pc is used by QNX
1413 case "$(uname -m 2>&1)" in
1414 x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
1415 ia64) host_arch=ia64 ;;
1416 macppc|ppc) host_arch=ppc ;;
1417 ppc64) host_arch=ppc64 ;;
1418 alpha) host_arch=alpha ;;
1419 sparc) host_arch=sparc ;;
1420 sparc64) host_arch=sparc64 ;;
1421 parisc*|hppa*|9000*) host_arch=hppa ;;
1422 arm*|zaurus|cats) host_arch=arm ;;
1423 sh3|sh4|sh4a) host_arch=sh ;;
1424 s390) host_arch=s390 ;;
1425 s390x) host_arch=s390x ;;
1426 *mips*) host_arch=mips ;;
1427 vax) host_arch=vax ;;
1428 xtensa*) host_arch=xtensa ;;
1429 *) host_arch=UNKNOWN ;;
1430 esac
1432 esac
1433 else # if test -z "$_target"
1434 system_name=$(echo $_target | cut -d '-' -f 2)
1435 case "$(echo $system_name | tr A-Z a-z)" in
1436 linux) system_name=Linux ;;
1437 freebsd) system_name=FreeBSD ;;
1438 gnu/kfreebsd) system_name=FreeBSD ;;
1439 netbsd) system_name=NetBSD ;;
1440 bsd/os) system_name=BSD/OS ;;
1441 openbsd) system_name=OpenBSD ;;
1442 dragonfly) system_name=DragonFly ;;
1443 sunos) system_name=SunOS ;;
1444 qnx) system_name=QNX ;;
1445 morphos) system_name=MorphOS ;;
1446 amigaos) system_name=AmigaOS ;;
1447 mingw32*) system_name=MINGW32 ;;
1448 esac
1449 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1450 host_arch=$(echo $_target | cut -d '-' -f 1)
1451 if test $(echo $host_arch) != "x86_64" ; then
1452 host_arch=$(echo $host_arch | tr '_' '-')
1456 extra_cflags="-I. $extra_cflags"
1457 _timer=timer-linux.c
1458 _getch=getch2.c
1459 if freebsd ; then
1460 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1461 extra_cflags="$extra_cflags -I/usr/local/include"
1464 if netbsd || dragonfly ; then
1465 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1466 extra_cflags="$extra_cflags -I/usr/pkg/include"
1469 if darwin; then
1470 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1471 _timer=timer-darwin.c
1474 if aix ; then
1475 extra_ldflags="$extra_ldflags -lC"
1478 if irix ; then
1479 _ranlib='ar -r'
1480 elif linux ; then
1481 _ranlib='true'
1484 if win32 ; then
1485 _exesuf=".exe"
1486 extra_cflags="$extra_cflags -fno-common"
1487 # -lwinmm is always needed for osdep/timer-win2.c
1488 extra_ldflags="$extra_ldflags -lwinmm"
1489 _pe_executable=yes
1490 _timer=timer-win2.c
1491 _priority=yes
1492 def_dos_paths="#define HAVE_DOS_PATHS 1"
1493 def_priority="#define CONFIG_PRIORITY 1"
1496 if mingw32 ; then
1497 _getch=getch2-win.c
1498 _need_shmem=no
1501 if amigaos ; then
1502 _select=no
1503 _sighandler=no
1504 _stream_cache=no
1505 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1506 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1509 if qnx ; then
1510 extra_ldflags="$extra_ldflags -lph"
1513 if os2 ; then
1514 _exesuf=".exe"
1515 _getch=getch2-os2.c
1516 _need_shmem=no
1517 _priority=yes
1518 def_dos_paths="#define HAVE_DOS_PATHS 1"
1519 def_priority="#define CONFIG_PRIORITY 1"
1522 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1523 test "$I" && break
1524 done
1527 TMPLOG="configure.log"
1528 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1529 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1530 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1531 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1532 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1534 rm -f "$TMPLOG"
1535 echo configuration: $_configuration > "$TMPLOG"
1536 echo >> "$TMPLOG"
1539 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1540 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1544 # Checking CC version...
1545 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1546 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1547 echocheck "$_cc version"
1548 cc_vendor=intel
1549 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1550 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1551 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1552 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1553 # TODO verify older icc/ecc compatibility
1554 case $cc_version in
1556 cc_version="v. ?.??, bad"
1557 cc_fail=yes
1559 10.1|11.0|11.1)
1560 cc_version="$cc_version, ok"
1563 cc_version="$cc_version, bad"
1564 cc_fail=yes
1566 esac
1567 echores "$cc_version"
1568 else
1569 for _cc in "$_cc" gcc cc ; do
1570 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1571 if test "$cc_name_tmp" = "gcc"; then
1572 cc_name=$cc_name_tmp
1573 echocheck "$_cc version"
1574 cc_vendor=gnu
1575 cc_version=$($_cc -dumpversion 2>&1)
1576 case $cc_version in
1577 2.96*)
1578 cc_fail=yes
1581 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1582 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1583 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1585 esac
1586 echores "$cc_version"
1587 break
1589 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1590 if test "$cc_name_tmp" = "Sun C"; then
1591 echocheck "$_cc version"
1592 cc_vendor=sun
1593 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1594 res_comment="experimental support only"
1595 echores "Sun C $cc_version"
1596 break
1598 done
1599 fi # icc
1600 test "$cc_fail" = yes && die "unsupported compiler version"
1602 if test -z "$_target" && x86 ; then
1603 cat > $TMPC << EOF
1604 int main(void) {
1605 int test[(int)sizeof(char *)-7];
1606 return 0;
1609 cc_check && host_arch=x86_64 || host_arch=i386
1612 echo "Detected operating system: $system_name"
1613 echo "Detected host architecture: $host_arch"
1615 echocheck "host cc"
1616 test "$_host_cc" || _host_cc=$_cc
1617 echores $_host_cc
1619 echocheck "cross compilation"
1620 if test $_cross_compile = auto ; then
1621 cat > $TMPC << EOF
1622 int main(void) { return 0; }
1624 _cross_compile=yes
1625 cc_check && "$TMPEXE" && _cross_compile=no
1627 echores $_cross_compile
1629 if test $_cross_compile = yes; then
1630 tmp_run() {
1631 return 0
1635 # ---
1637 # now that we know what compiler should be used for compilation, try to find
1638 # out which assembler is used by the $_cc compiler
1639 if test "$_as" = auto ; then
1640 _as=$($_cc -print-prog-name=as)
1641 test -z "$_as" && _as=as
1644 if test "$_nm" = auto ; then
1645 _nm=$($_cc -print-prog-name=nm)
1646 test -z "$_nm" && _nm=nm
1649 # XXX: this should be ok..
1650 _cpuinfo="echo"
1652 if test "$_runtime_cpudetection" = no ; then
1654 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1655 # FIXME: Remove the cygwin check once AMD CPUs are supported
1656 if test -r /proc/cpuinfo && ! cygwin; then
1657 # Linux with /proc mounted, extract CPU information from it
1658 _cpuinfo="cat /proc/cpuinfo"
1659 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1660 # FreeBSD with Linux emulation /proc mounted,
1661 # extract CPU information from it
1662 # Don't use it on x86 though, it never reports 3Dnow
1663 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1664 elif darwin && ! x86 ; then
1665 # use hostinfo on Darwin
1666 _cpuinfo="hostinfo"
1667 elif aix; then
1668 # use 'lsattr' on AIX
1669 _cpuinfo="lsattr -E -l proc0 -a type"
1670 elif x86; then
1671 # all other OSes try to extract CPU information from a small helper
1672 # program cpuinfo instead
1673 $_cc -o cpuinfo$_exesuf cpuinfo.c
1674 _cpuinfo="./cpuinfo$_exesuf"
1677 if [ "$cc_vendor" = "gnu" ] && [ "$_cc_major" = 2 ] ; then
1678 test $_sse = auto && _sse=no
1679 test $_win32dll = auto && _win32dll=no
1680 ass_internal=no
1683 if x86 ; then
1684 # gather more CPU information
1685 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1686 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1687 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1688 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1689 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1691 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1693 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1694 -e s/xmm/sse/ -e s/kni/sse/)
1696 for ext in $pparam ; do
1697 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1698 done
1700 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1701 test $_sse = kernel_check && _mmxext=kernel_check
1703 echocheck "CPU vendor"
1704 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1706 echocheck "CPU type"
1707 echores "$pname"
1710 fi # test "$_runtime_cpudetection" = no
1712 if x86 && test "$_runtime_cpudetection" = no ; then
1713 extcheck() {
1714 if test "$1" = kernel_check ; then
1715 echocheck "kernel support of $2"
1716 cat > $TMPC <<EOF
1717 #include <stdlib.h>
1718 #include <signal.h>
1719 void catch() { exit(1); }
1720 int main(void) {
1721 signal(SIGILL, catch);
1722 __asm__ volatile ("$3":::"memory"); return 0;
1726 if cc_check && tmp_run ; then
1727 eval _$2=yes
1728 echores "yes"
1729 _optimizing="$_optimizing $2"
1730 return 0
1731 else
1732 eval _$2=no
1733 echores "failed"
1734 echo "It seems that your kernel does not correctly support $2."
1735 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1736 return 1
1739 return 0
1742 extcheck $_mmx "mmx" "emms"
1743 extcheck $_mmxext "mmxext" "sfence"
1744 extcheck $_3dnow "3dnow" "femms"
1745 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1746 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1747 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1748 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1749 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1751 echocheck "mtrr support"
1752 if test "$_mtrr" = kernel_check ; then
1753 _mtrr="yes"
1754 _optimizing="$_optimizing mtrr"
1756 echores "$_mtrr"
1758 if test "$_gcc3_ext" != ""; then
1759 # if we had to disable sse/sse2 because the active kernel does not
1760 # support this instruction set extension, we also have to tell
1761 # gcc3 to not generate sse/sse2 instructions for normal C code
1762 cat > $TMPC << EOF
1763 int main(void) { return 0; }
1765 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1771 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1772 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1773 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 0'
1774 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 0'
1775 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1776 subarch_all='X86_32 X86_64 PPC64'
1777 case "$host_arch" in
1778 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1779 arch='x86'
1780 subarch='x86_32'
1781 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1782 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
1783 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
1784 iproc=486
1785 proc=i486
1788 if test "$_runtime_cpudetection" = no ; then
1789 case "$pvendor" in
1790 AuthenticAMD)
1791 case "$pfamily" in
1792 3) proc=i386 iproc=386 ;;
1793 4) proc=i486 iproc=486 ;;
1794 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1795 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1796 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1797 proc=k6-3
1798 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1799 proc=geode
1800 elif test "$pmodel" -ge 8; then
1801 proc=k6-2
1802 elif test "$pmodel" -ge 6; then
1803 proc=k6
1804 else
1805 proc=i586
1808 6) iproc=686
1809 # It's a bit difficult to determine the correct type of Family 6
1810 # AMD CPUs just from their signature. Instead, we check directly
1811 # whether it supports SSE.
1812 if test "$_sse" = yes; then
1813 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1814 proc=athlon-xp
1815 else
1816 # Again, gcc treats athlon and athlon-tbird similarly.
1817 proc=athlon
1820 15) iproc=686
1821 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1822 # caught and remedied in the optimization tests below.
1823 proc=k8
1826 *) proc=amdfam10 iproc=686
1827 test $_fast_clz = "auto" && _fast_clz=yes
1829 esac
1831 GenuineIntel)
1832 case "$pfamily" in
1833 3) proc=i386 iproc=386 ;;
1834 4) proc=i486 iproc=486 ;;
1835 5) iproc=586
1836 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1837 proc=pentium-mmx # 4 is desktop, 8 is mobile
1838 else
1839 proc=i586
1842 6) iproc=686
1843 if test "$pmodel" -ge 15; then
1844 proc=core2
1845 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1846 proc=pentium-m
1847 elif test "$pmodel" -ge 7; then
1848 proc=pentium3
1849 elif test "$pmodel" -ge 3; then
1850 proc=pentium2
1851 else
1852 proc=i686
1854 test $_fast_clz = "auto" && _fast_clz=yes
1856 15) iproc=686
1857 # A nocona in 32-bit mode has no more capabilities than a prescott.
1858 if test "$pmodel" -ge 3; then
1859 proc=prescott
1860 else
1861 proc=pentium4
1862 test $_fast_clz = "auto" && _fast_clz=yes
1864 test $_fast_cmov = "auto" && _fast_cmov=no
1866 *) proc=prescott iproc=686 ;;
1867 esac
1869 CentaurHauls)
1870 case "$pfamily" in
1871 5) iproc=586
1872 if test "$pmodel" -ge 8; then
1873 proc=winchip2
1874 elif test "$pmodel" -ge 4; then
1875 proc=winchip-c6
1876 else
1877 proc=i586
1880 6) iproc=686
1881 if test "$pmodel" -ge 9; then
1882 proc=c3-2
1883 else
1884 proc=c3
1885 iproc=586
1888 *) proc=i686 iproc=i686 ;;
1889 esac
1891 unknown)
1892 case "$pfamily" in
1893 3) proc=i386 iproc=386 ;;
1894 4) proc=i486 iproc=486 ;;
1895 *) proc=i586 iproc=586 ;;
1896 esac
1899 proc=i586 iproc=586 ;;
1900 esac
1901 test $_fast_clz = "auto" && _fast_clz=no
1902 fi # test "$_runtime_cpudetection" = no
1905 # check that gcc supports our CPU, if not, fall back to earlier ones
1906 # LGB: check -mcpu and -march swithing step by step with enabling
1907 # to fall back till 386.
1909 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1911 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1912 cpuopt=-mtune
1913 else
1914 cpuopt=-mcpu
1917 echocheck "GCC & CPU optimization abilities"
1918 cat > $TMPC << EOF
1919 int main(void) { return 0; }
1921 if test "$_runtime_cpudetection" = no ; then
1922 if test $cc_vendor != "intel" ; then
1923 cc_check -march=native && proc=native
1925 if test "$proc" = "amdfam10"; then
1926 cc_check -march=$proc $cpuopt=$proc || proc=k8
1928 if test "$proc" = "k8"; then
1929 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1931 if test "$proc" = "athlon-xp"; then
1932 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1934 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1935 cc_check -march=$proc $cpuopt=$proc || proc=k6
1937 if test "$proc" = "k6" || test "$proc" = "c3"; then
1938 if ! cc_check -march=$proc $cpuopt=$proc; then
1939 if cc_check -march=i586 $cpuopt=i686; then
1940 proc=i586-i686
1941 else
1942 proc=i586
1946 if test "$proc" = "prescott" ; then
1947 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1949 if test "$proc" = "core2" ; then
1950 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1952 if test "$proc" = "pentium4" || test "$proc" = "pentium-m" || test "$proc" = "pentium3" || test "$proc" = "pentium2" || test "$proc" = "athlon" || test "$proc" = "c3-2" || test "$proc" = "geode"; then
1953 cc_check -march=$proc $cpuopt=$proc || proc=i686
1955 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1956 cc_check -march=$proc $cpuopt=$proc || proc=i586
1958 if test "$proc" = "i586"; then
1959 cc_check -march=$proc $cpuopt=$proc || proc=i486
1961 if test "$proc" = "i486" ; then
1962 cc_check -march=$proc $cpuopt=$proc || proc=i386
1964 if test "$proc" = "i386" ; then
1965 cc_check -march=$proc $cpuopt=$proc || proc=error
1967 if test "$proc" = "error" ; then
1968 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1969 _mcpu=""
1970 _march=""
1971 _optimizing=""
1972 elif test "$proc" = "i586-i686"; then
1973 _march="-march=i586"
1974 _mcpu="$cpuopt=i686"
1975 _optimizing="$proc"
1976 else
1977 _march="-march=$proc"
1978 _mcpu="$cpuopt=$proc"
1979 _optimizing="$proc"
1981 else # if test "$_runtime_cpudetection" = no
1982 _mcpu="$cpuopt=generic"
1983 # at least i486 required, for bswap instruction
1984 _march="-march=i486"
1985 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1986 cc_check $_mcpu || _mcpu=""
1987 cc_check $_march $_mcpu || _march=""
1990 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1991 ## autodetected mcpu/march parameters
1992 if test "$_target" ; then
1993 # TODO: it may be a good idea to check GCC and fall back in all cases
1994 if test "$host_arch" = "i586-i686"; then
1995 _march="-march=i586"
1996 _mcpu="$cpuopt=i686"
1997 else
1998 _march="-march=$host_arch"
1999 _mcpu="$cpuopt=$host_arch"
2002 proc="$host_arch"
2004 case "$proc" in
2005 i386) iproc=386 ;;
2006 i486) iproc=486 ;;
2007 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
2008 i686|athlon*|pentium*) iproc=686 ;;
2009 *) iproc=586 ;;
2010 esac
2013 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
2014 _fast_cmov="yes"
2015 else
2016 _fast_cmov="no"
2018 test $_fast_clz = "auto" && _fast_clz=yes
2020 echores "$proc"
2023 ia64)
2024 arch='ia64'
2025 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2026 iproc='ia64'
2029 x86_64|amd64)
2030 arch='x86'
2031 subarch='x86_64'
2032 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2033 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2034 iproc='x86_64'
2036 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
2037 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
2038 cpuopt=-mtune
2039 else
2040 cpuopt=-mcpu
2042 if test "$_runtime_cpudetection" = no ; then
2043 case "$pvendor" in
2044 AuthenticAMD)
2045 case "$pfamily" in
2046 15) proc=k8
2047 test $_fast_clz = "auto" && _fast_clz=no
2049 *) proc=amdfam10;;
2050 esac
2052 GenuineIntel)
2053 case "$pfamily" in
2054 6) proc=core2;;
2056 # 64-bit prescotts exist, but as far as GCC is concerned they
2057 # have the same capabilities as a nocona.
2058 proc=nocona
2059 test $_fast_cmov = "auto" && _fast_cmov=no
2060 test $_fast_clz = "auto" && _fast_clz=no
2062 esac
2065 proc=error;;
2066 esac
2067 fi # test "$_runtime_cpudetection" = no
2069 echocheck "GCC & CPU optimization abilities"
2070 cat > $TMPC << EOF
2071 int main(void) { return 0; }
2073 # This is a stripped-down version of the i386 fallback.
2074 if test "$_runtime_cpudetection" = no ; then
2075 if test $cc_vendor != "intel" ; then
2076 cc_check -march=native && proc=native
2078 # --- AMD processors ---
2079 if test "$proc" = "k8"; then
2080 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2082 # This will fail if gcc version < 3.3, which is ok because earlier
2083 # versions don't really support 64-bit on amd64.
2084 # Is this a valid assumption? -Corey
2085 if test "$proc" = "athlon-xp"; then
2086 cc_check -march=$proc $cpuopt=$proc || proc=error
2088 # --- Intel processors ---
2089 if test "$proc" = "core2"; then
2090 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
2092 if test "$proc" = "x86-64"; then
2093 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2095 if test "$proc" = "nocona"; then
2096 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2098 if test "$proc" = "pentium4"; then
2099 cc_check -march=$proc $cpuopt=$proc || proc=error
2102 _march="-march=$proc"
2103 _mcpu="$cpuopt=$proc"
2104 if test "$proc" = "error" ; then
2105 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2106 _mcpu=""
2107 _march=""
2109 else # if test "$_runtime_cpudetection" = no
2110 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2111 _march="-march=x86-64"
2112 _mcpu="$cpuopt=generic"
2113 cc_check $_mcpu || _mcpu="x86-64"
2114 cc_check $_mcpu || _mcpu=""
2115 cc_check $_march $_mcpu || _march=""
2118 _optimizing="$proc"
2119 test $_fast_cmov = "auto" && _fast_cmov=yes
2120 test $_fast_clz = "auto" && _fast_clz=yes
2122 echores "$proc"
2125 sparc|sparc64)
2126 arch='sparc'
2127 iproc='sparc'
2128 if test "$host_arch" = "sparc64" ; then
2129 _vis='yes'
2130 proc='ultrasparc'
2131 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2132 elif sunos ; then
2133 echocheck "CPU type"
2134 karch=$(uname -m)
2135 case "$(echo $karch)" in
2136 sun4) proc=v7 ;;
2137 sun4c) proc=v7 ;;
2138 sun4d) proc=v8 ;;
2139 sun4m) proc=v8 ;;
2140 sun4u) proc=ultrasparc _vis='yes' ;;
2141 sun4v) proc=v9 ;;
2142 *) proc=v8 ;;
2143 esac
2144 echores "$proc"
2145 else
2146 proc=v8
2148 _mcpu="-mcpu=$proc"
2149 _optimizing="$proc"
2152 arm*)
2153 arch='arm'
2154 iproc='arm'
2157 avr32)
2158 arch='avr32'
2159 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2160 iproc='avr32'
2161 test $_fast_clz = "auto" && _fast_clz=yes
2164 sh|sh4)
2165 arch='sh4'
2166 iproc='sh4'
2169 ppc|ppc64|powerpc|powerpc64)
2170 arch='ppc'
2171 def_dcbzl='#define HAVE_DCBZL 0'
2172 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2173 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
2174 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
2175 iproc='ppc'
2177 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2178 subarch='ppc64'
2179 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2181 echocheck "CPU type"
2182 case $system_name in
2183 Linux)
2184 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2185 if test -n "$($_cpuinfo | grep altivec)"; then
2186 test $_altivec = auto && _altivec=yes
2189 Darwin)
2190 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2191 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2192 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2193 test $_altivec = auto && _altivec=yes
2196 NetBSD)
2197 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2198 case $cc_version in
2199 2*|3.0*|3.1*|3.2*|3.3*)
2202 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2203 test $_altivec = auto && _altivec=yes
2206 esac
2208 AIX)
2209 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2211 esac
2212 if test "$_altivec" = yes; then
2213 echores "$proc altivec"
2214 else
2215 _altivec=no
2216 echores "$proc"
2219 echocheck "GCC & CPU optimization abilities"
2221 if test -n "$proc"; then
2222 case "$proc" in
2223 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2224 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2225 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2226 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2227 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2228 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2229 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2230 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2231 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2232 *) ;;
2233 esac
2234 # gcc 3.1(.1) and up supports 7400 and 7450
2235 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2236 case "$proc" in
2237 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2238 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2239 *) ;;
2240 esac
2242 # gcc 3.2 and up supports 970
2243 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2244 case "$proc" in
2245 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2246 def_dcbzl='#define HAVE_DCBZL 1' ;;
2247 *) ;;
2248 esac
2250 # gcc 3.3 and up supports POWER4
2251 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2252 case "$proc" in
2253 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2254 *) ;;
2255 esac
2257 # gcc 3.4 and up supports 440*
2258 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2259 case "$proc" in
2260 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2261 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2262 *) ;;
2263 esac
2265 # gcc 4.0 and up supports POWER5
2266 if test "$_cc_major" -ge "4"; then
2267 case "$proc" in
2268 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2269 *) ;;
2270 esac
2274 if test -n "$_mcpu"; then
2275 _optimizing=$(echo $_mcpu | cut -c 8-)
2276 echores "$_optimizing"
2277 else
2278 echores "none"
2281 test $_fast_clz = "auto" && _fast_clz=yes
2285 alpha*)
2286 arch='alpha'
2287 iproc='alpha'
2289 echocheck "CPU type"
2290 cat > $TMPC << EOF
2291 int main(void) {
2292 unsigned long ver, mask;
2293 __asm__ ("implver %0" : "=r" (ver));
2294 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2295 printf("%ld-%x\n", ver, ~mask);
2296 return 0;
2299 $_cc -o "$TMPEXE" "$TMPC"
2300 case $("$TMPEXE") in
2302 0-0) proc="ev4"; _mvi="0";;
2303 1-0) proc="ev5"; _mvi="0";;
2304 1-1) proc="ev56"; _mvi="0";;
2305 1-101) proc="pca56"; _mvi="1";;
2306 2-303) proc="ev6"; _mvi="1";;
2307 2-307) proc="ev67"; _mvi="1";;
2308 2-1307) proc="ev68"; _mvi="1";;
2309 esac
2310 echores "$proc"
2312 echocheck "GCC & CPU optimization abilities"
2313 if test "$proc" = "ev68" ; then
2314 cc_check -mcpu=$proc || proc=ev67
2316 if test "$proc" = "ev67" ; then
2317 cc_check -mcpu=$proc || proc=ev6
2319 _mcpu="-mcpu=$proc"
2320 echores "$proc"
2322 test $_fast_clz = "auto" && _fast_clz=yes
2324 _optimizing="$proc"
2327 mips)
2328 arch='mips'
2329 iproc='mips'
2331 if irix ; then
2332 echocheck "CPU type"
2333 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2334 case "$(echo $proc)" in
2335 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2336 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2337 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2338 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2339 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2340 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2341 esac
2342 # gcc < 3.x does not support -mtune.
2343 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2344 _mcpu=''
2346 echores "$proc"
2349 test $_fast_clz = "auto" && _fast_clz=yes
2353 hppa)
2354 arch='pa_risc'
2355 iproc='PA-RISC'
2358 s390)
2359 arch='s390'
2360 iproc='390'
2363 s390x)
2364 arch='s390x'
2365 iproc='390x'
2368 vax)
2369 arch='vax'
2370 iproc='vax'
2373 xtensa)
2374 arch='xtensa'
2375 iproc='xtensa'
2378 generic)
2379 arch='generic'
2383 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2384 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2385 die "unsupported architecture $host_arch"
2387 esac # case "$host_arch" in
2389 if test "$_runtime_cpudetection" = yes ; then
2390 if x86 ; then
2391 test "$_cmov" != no && _cmov=yes
2392 x86_32 && _cmov=no
2393 test "$_mmx" != no && _mmx=yes
2394 test "$_3dnow" != no && _3dnow=yes
2395 test "$_3dnowext" != no && _3dnowext=yes
2396 test "$_mmxext" != no && _mmxext=yes
2397 test "$_sse" != no && _sse=yes
2398 test "$_sse2" != no && _sse2=yes
2399 test "$_ssse3" != no && _ssse3=yes
2400 test "$_mtrr" != no && _mtrr=yes
2402 if ppc; then
2403 _altivec=yes
2408 # endian testing
2409 echocheck "byte order"
2410 if test "$_big_endian" = auto ; then
2411 cat > $TMPC <<EOF
2412 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2413 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2414 int main(void) { return (int)ascii_name; }
2416 if cc_check ; then
2417 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2418 _big_endian=yes
2419 else
2420 _big_endian=no
2422 else
2423 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2426 if test "$_big_endian" = yes ; then
2427 _byte_order='big-endian'
2428 def_words_endian='#define WORDS_BIGENDIAN 1'
2429 def_bigendian='#define HAVE_BIGENDIAN 1'
2430 def_av_bigendian='#define AV_HAVE_BIGENDIAN 1'
2431 else
2432 _byte_order='little-endian'
2433 def_words_endian='#undef WORDS_BIGENDIAN'
2434 def_bigendian='#define HAVE_BIGENDIAN 0'
2435 def_av_bigendian='#define AV_HAVE_BIGENDIAN 0'
2437 echores "$_byte_order"
2440 echocheck "extern symbol prefix"
2441 cat > $TMPC << EOF
2442 int ff_extern;
2444 cc_check -c || die "Symbol mangling check failed."
2445 sym=$($_nm -P -g $TMPEXE)
2446 extern_prefix=${sym%%ff_extern*}
2447 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2448 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2449 echores $extern_prefix
2452 echocheck "assembler support of -pipe option"
2453 cat > $TMPC << EOF
2454 int main(void) { return 0; }
2456 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2457 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2460 echocheck "compiler support of named assembler arguments"
2461 _named_asm_args=yes
2462 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2463 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2464 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2465 _named_asm_args=no
2466 def_named_asm_args="#undef NAMED_ASM_ARGS"
2468 echores $_named_asm_args
2471 if darwin && test "$cc_vendor" = "gnu" ; then
2472 echocheck "GCC support of -mstackrealign"
2473 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2474 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2475 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2476 # wrong code with this flag, but this can be worked around by adding
2477 # -fno-unit-at-a-time as described in the blog post at
2478 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2479 cat > $TMPC << EOF
2480 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2481 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2483 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2484 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2485 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2486 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2487 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2490 # Checking for CFLAGS
2491 _install_strip="-s"
2492 if test "$_profile" != "" || test "$_debug" != "" ; then
2493 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2494 _install_strip=
2495 elif test -z "$CFLAGS" ; then
2496 if test "$cc_vendor" = "intel" ; then
2497 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2498 elif test "$cc_vendor" = "sun" ; then
2499 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2500 elif test "$cc_vendor" != "gnu" ; then
2501 CFLAGS="-O2 $_march $_mcpu $_pipe"
2502 else
2503 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2504 extra_ldflags="$extra_ldflags -ffast-math"
2506 else
2507 _warn_CFLAGS=yes
2510 cat > $TMPC << EOF
2511 int main(void) { return 0; }
2513 if test "$cc_vendor" = "gnu" ; then
2514 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2515 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
2516 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2517 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2518 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2519 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2520 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2521 else
2522 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2525 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2526 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2529 if test -n "$LDFLAGS" ; then
2530 extra_ldflags="$extra_ldflags $LDFLAGS"
2531 _warn_CFLAGS=yes
2532 elif test "$cc_vendor" = "intel" ; then
2533 extra_ldflags="$extra_ldflags -i-static"
2535 if test -n "$CPPFLAGS" ; then
2536 extra_cflags="$extra_cflags $CPPFLAGS"
2537 _warn_CFLAGS=yes
2542 if x86_32 ; then
2543 # Checking assembler (_as) compatibility...
2544 # Added workaround for older as that reads from stdin by default - atmos
2545 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2546 echocheck "assembler ($_as $as_version)"
2548 _pref_as_version='2.9.1'
2549 echo 'nop' > $TMPS
2550 if test "$_mmx" = yes ; then
2551 echo 'emms' >> $TMPS
2553 if test "$_3dnow" = yes ; then
2554 _pref_as_version='2.10.1'
2555 echo 'femms' >> $TMPS
2557 if test "$_3dnowext" = yes ; then
2558 _pref_as_version='2.10.1'
2559 echo 'pswapd %mm0, %mm0' >> $TMPS
2561 if test "$_mmxext" = yes ; then
2562 _pref_as_version='2.10.1'
2563 echo 'movntq %mm0, (%eax)' >> $TMPS
2565 if test "$_sse" = yes ; then
2566 _pref_as_version='2.10.1'
2567 echo 'xorps %xmm0, %xmm0' >> $TMPS
2569 #if test "$_sse2" = yes ; then
2570 # _pref_as_version='2.11'
2571 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2573 if test "$_cmov" = yes ; then
2574 _pref_as_version='2.10.1'
2575 echo 'cmovb %eax, %ebx' >> $TMPS
2577 if test "$_ssse3" = yes ; then
2578 _pref_as_version='2.16.92'
2579 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2581 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2583 if test "$as_verc_fail" != yes ; then
2584 echores "ok"
2585 else
2586 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2587 echores "failed"
2588 die "obsolete binutils version"
2591 fi #if x86_32
2593 echocheck ".align is a power of two"
2594 if test "$_asmalign_pot" = auto ; then
2595 _asmalign_pot=no
2596 cat > $TMPC << EOF
2597 int main(void) { __asm__ (".align 3"); return 0; }
2599 cc_check && _asmalign_pot=yes
2601 if test "$_asmalign_pot" = "yes" ; then
2602 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2603 else
2604 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2606 echores $_asmalign_pot
2608 if x86 ; then
2609 echocheck "10 assembler operands"
2610 ten_operands=no
2611 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2612 cat > $TMPC << EOF
2613 int main(void) {
2614 int x=0;
2615 __asm__ volatile(
2617 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2619 return 0;
2622 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2623 echores $ten_operands
2625 echocheck "ebx availability"
2626 ebx_available=no
2627 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2628 cat > $TMPC << EOF
2629 int main(void) {
2630 int x;
2631 __asm__ volatile(
2632 "xor %0, %0"
2633 :"=b"(x)
2634 // just adding ebx to clobber list seems unreliable with some
2635 // compilers, e.g. Haiku's gcc 2.95
2637 // and the above check does not work for OSX 64 bit...
2638 __asm__ volatile("":::"%ebx");
2639 return 0;
2642 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2643 echores $ebx_available
2645 echocheck "PIC"
2646 pic=no
2647 cat > $TMPC << EOF
2648 int main(void) {
2649 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2650 #error PIC not enabled
2651 #endif
2652 return 0;
2655 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2656 echores $pic
2658 echocheck "yasm"
2659 if test -z "$YASMFLAGS" ; then
2660 if darwin ; then
2661 x86_64 && objformat="macho64" || objformat="macho"
2662 elif win32 ; then
2663 objformat="win32"
2664 else
2665 objformat="elf"
2667 # currently tested for Linux x86, x86_64
2668 YASMFLAGS="-f $objformat"
2669 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2670 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2671 case "$objformat" in
2672 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2673 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2674 esac
2675 else
2676 _warn_CFLAGS=yes
2679 echo "pabsw xmm0, xmm0" > $TMPS
2680 yasm_check || _yasm=""
2681 if test $_yasm ; then
2682 def_yasm='#define HAVE_YASM 1'
2683 have_yasm="yes"
2684 echores "$_yasm"
2685 else
2686 def_yasm='#define HAVE_YASM 0'
2687 have_yasm="no"
2688 echores "no"
2691 echocheck "bswap"
2692 def_bswap='#define HAVE_BSWAP 0'
2693 echo 'bswap %eax' > $TMPS
2694 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2695 echores "$bswap"
2696 fi #if x86
2699 #FIXME: This should happen before the check for CFLAGS..
2700 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2701 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2703 # check if AltiVec is supported by the compiler, and how to enable it
2704 echocheck "GCC AltiVec flags"
2705 cat > $TMPC << EOF
2706 int main(void) { return 0; }
2708 if $(cc_check -maltivec -mabi=altivec) ; then
2709 _altivec_gcc_flags="-maltivec -mabi=altivec"
2710 # check if <altivec.h> should be included
2711 cat > $TMPC << EOF
2712 #include <altivec.h>
2713 int main(void) { return 0; }
2715 if $(cc_check $_altivec_gcc_flags) ; then
2716 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2717 inc_altivec_h='#include <altivec.h>'
2718 else
2719 cat > $TMPC << EOF
2720 int main(void) { return 0; }
2722 if $(cc_check -faltivec) ; then
2723 _altivec_gcc_flags="-faltivec"
2724 else
2725 _altivec=no
2726 _altivec_gcc_flags="none, AltiVec disabled"
2730 echores "$_altivec_gcc_flags"
2732 # check if the compiler supports braces for vector declarations
2733 cat > $TMPC << EOF
2734 $inc_altivec_h
2735 int main(void) { (vector int) {1}; return 0; }
2737 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2739 # Disable runtime cpudetection if we cannot generate AltiVec code or
2740 # AltiVec is disabled by the user.
2741 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2742 && _runtime_cpudetection=no
2744 # Show that we are optimizing for AltiVec (if enabled and supported).
2745 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2746 && _optimizing="$_optimizing altivec"
2748 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2749 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2752 if ppc ; then
2753 def_xform_asm='#define HAVE_XFORM_ASM 0'
2754 xform_asm=no
2755 echocheck "XFORM ASM support"
2756 cat > $TMPC << EOF
2757 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2759 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2760 echores "$xform_asm"
2763 if arm ; then
2764 echocheck "ARM pld instruction"
2765 cat > $TMPC << EOF
2766 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2768 pld=no
2769 cc_check && pld=yes
2770 echores "$pld"
2772 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2773 if test $_armv5te = "auto" ; then
2774 cat > $TMPC << EOF
2775 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2777 _armv5te=no
2778 cc_check && _armv5te=yes
2780 echores "$_armv5te"
2782 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2784 echocheck "ARMv6 (SIMD instructions)"
2785 if test $_armv6 = "auto" ; then
2786 cat > $TMPC << EOF
2787 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2789 _armv6=no
2790 cc_check && _armv6=yes
2792 echores "$_armv6"
2794 echocheck "ARMv6t2 (SIMD instructions)"
2795 if test $_armv6t2 = "auto" ; then
2796 cat > $TMPC << EOF
2797 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2799 _armv6t2=no
2800 cc_check && _armv6t2=yes
2802 echores "$_armv6"
2804 echocheck "ARM VFP"
2805 if test $_armvfp = "auto" ; then
2806 cat > $TMPC << EOF
2807 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2809 _armvfp=no
2810 cc_check && _armvfp=yes
2812 echores "$_armvfp"
2814 echocheck "ARM NEON"
2815 if test $neon = "auto" ; then
2816 cat > $TMPC << EOF
2817 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2819 neon=no
2820 cc_check && neon=yes
2822 echores "$neon"
2824 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2825 if test $_iwmmxt = "auto" ; then
2826 cat > $TMPC << EOF
2827 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2829 _iwmmxt=no
2830 cc_check && _iwmmxt=yes
2832 echores "$_iwmmxt"
2835 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2836 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2837 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2838 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2839 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2840 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2841 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2842 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2843 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2844 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2845 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2846 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2847 test "$pld" = yes && cpuexts="PLD $cpuexts"
2848 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2849 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2850 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2851 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2852 test "$neon" = yes && cpuexts="NEON $cpuexts"
2853 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2854 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2855 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2857 # Checking kernel version...
2858 if x86_32 && linux ; then
2859 _k_verc_problem=no
2860 kernel_version=$(uname -r 2>&1)
2861 echocheck "$system_name kernel version"
2862 case "$kernel_version" in
2863 '') kernel_version="?.??"; _k_verc_fail=yes;;
2864 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2865 _k_verc_problem=yes;;
2866 esac
2867 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2868 _k_verc_fail=yes
2870 if test "$_k_verc_fail" ; then
2871 echores "$kernel_version, fail"
2872 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2873 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2874 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2875 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2876 echo "2.2.x you must upgrade it to get SSE support!"
2877 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2878 else
2879 echores "$kernel_version, ok"
2883 ######################
2884 # MAIN TESTS GO HERE #
2885 ######################
2888 echocheck "-lposix"
2889 cat > $TMPC <<EOF
2890 int main(void) { return 0; }
2892 if cc_check -lposix ; then
2893 extra_ldflags="$extra_ldflags -lposix"
2894 echores "yes"
2895 else
2896 echores "no"
2899 echocheck "-lm"
2900 cat > $TMPC <<EOF
2901 int main(void) { return 0; }
2903 if cc_check -lm ; then
2904 _ld_lm="-lm"
2905 echores "yes"
2906 else
2907 _ld_lm=""
2908 echores "no"
2912 echocheck "langinfo"
2913 if test "$_langinfo" = auto ; then
2914 cat > $TMPC <<EOF
2915 #include <langinfo.h>
2916 int main(void) { nl_langinfo(CODESET); return 0; }
2918 _langinfo=no
2919 cc_check && _langinfo=yes
2921 if test "$_langinfo" = yes ; then
2922 def_langinfo='#define HAVE_LANGINFO 1'
2923 else
2924 def_langinfo='#undef HAVE_LANGINFO'
2926 echores "$_langinfo"
2929 echocheck "language"
2930 # Set preferred languages, "all" uses English as main language.
2931 test -z "$language" && language=$LINGUAS
2932 test -z "$language_doc" && language_doc=$language
2933 test -z "$language_man" && language_man=$language
2934 test -z "$language_msg" && language_msg=$language
2935 language_doc=$(echo $language_doc | tr , " ")
2936 language_man=$(echo $language_man | tr , " ")
2937 language_msg=$(echo $language_msg | tr , " ")
2939 test "$language_doc" = "all" && language_doc=$doc_lang_all
2940 test "$language_man" = "all" && language_man=$man_lang_all
2941 test "$language_msg" = "all" && language_msg=en
2943 # Prune non-existing translations from language lists.
2944 # Set message translation to the first available language.
2945 # Fall back on English.
2946 for lang in $language_doc ; do
2947 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2948 done
2949 language_doc=$tmp_language_doc
2950 test -z "$language_doc" && language_doc=en
2952 for lang in $language_man ; do
2953 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2954 done
2955 language_man=$tmp_language_man
2956 test -z "$language_man" && language_man=en
2958 for lang in $language_msg ; do
2959 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2960 done
2961 language_msg=$tmp_language_msg
2962 test -z "$language_msg" && language_msg=en
2963 _mp_help="help/help_mp-${language_msg}.h"
2964 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2967 echocheck "enable sighandler"
2968 if test "$_sighandler" = yes ; then
2969 def_sighandler='#define CONFIG_SIGHANDLER 1'
2970 else
2971 def_sighandler='#undef CONFIG_SIGHANDLER'
2973 echores "$_sighandler"
2975 echocheck "runtime cpudetection"
2976 if test "$_runtime_cpudetection" = yes ; then
2977 _optimizing="Runtime CPU-Detection enabled"
2978 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2979 else
2980 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2982 echores "$_runtime_cpudetection"
2985 echocheck "restrict keyword"
2986 for restrict_keyword in restrict __restrict __restrict__ ; do
2987 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2988 if cc_check; then
2989 def_restrict_keyword=$restrict_keyword
2990 break;
2992 done
2993 if [ -n "$def_restrict_keyword" ]; then
2994 echores "$def_restrict_keyword"
2995 else
2996 echores "none"
2998 # Avoid infinite recursion loop ("#define restrict restrict")
2999 if [ "$def_restrict_keyword" != "restrict" ]; then
3000 def_restrict_keyword="#define restrict $def_restrict_keyword"
3001 else
3002 def_restrict_keyword=""
3006 echocheck "__builtin_expect"
3007 # GCC branch prediction hint
3008 cat > $TMPC << EOF
3009 int foo(int a) {
3010 a = __builtin_expect(a, 10);
3011 return a == 10 ? 0 : 1;
3013 int main(void) { return foo(10) && foo(0); }
3015 _builtin_expect=no
3016 cc_check && _builtin_expect=yes
3017 if test "$_builtin_expect" = yes ; then
3018 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
3019 else
3020 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
3022 echores "$_builtin_expect"
3025 echocheck "kstat"
3026 cat > $TMPC << EOF
3027 #include <kstat.h>
3028 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
3030 _kstat=no
3031 cc_check -lkstat && _kstat=yes
3032 if test "$_kstat" = yes ; then
3033 def_kstat="#define HAVE_LIBKSTAT 1"
3034 extra_ldflags="$extra_ldflags -lkstat"
3035 else
3036 def_kstat="#undef HAVE_LIBKSTAT"
3038 echores "$_kstat"
3041 echocheck "posix4"
3042 # required for nanosleep on some systems
3043 cat > $TMPC << EOF
3044 #include <time.h>
3045 int main(void) { (void) nanosleep(0, 0); return 0; }
3047 _posix4=no
3048 cc_check -lposix4 && _posix4=yes
3049 if test "$_posix4" = yes ; then
3050 extra_ldflags="$extra_ldflags -lposix4"
3052 echores "$_posix4"
3054 for func in exp2 exp2f llrint llrintf log2 log2f lrint lrintf round roundf truncf; do
3055 echocheck $func
3056 cat > $TMPC << EOF
3057 #include <math.h>
3058 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
3060 eval _$func=no
3061 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
3062 if eval test "x\$_$func" = "xyes"; then
3063 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3064 echores yes
3065 else
3066 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3067 echores no
3069 done
3072 echocheck "mkstemp"
3073 cat > $TMPC << EOF
3074 #include <stdlib.h>
3075 int main(void) { char a; mkstemp(&a); return 0; }
3077 _mkstemp=no
3078 cc_check && _mkstemp=yes
3079 if test "$_mkstemp" = yes ; then
3080 def_mkstemp='#define HAVE_MKSTEMP 1'
3081 else
3082 def_mkstemp='#undef HAVE_MKSTEMP'
3084 echores "$_mkstemp"
3087 echocheck "nanosleep"
3088 # also check for nanosleep
3089 cat > $TMPC << EOF
3090 #include <time.h>
3091 int main(void) { (void) nanosleep(0, 0); return 0; }
3093 _nanosleep=no
3094 cc_check && _nanosleep=yes
3095 if test "$_nanosleep" = yes ; then
3096 def_nanosleep='#define HAVE_NANOSLEEP 1'
3097 else
3098 def_nanosleep='#undef HAVE_NANOSLEEP'
3100 echores "$_nanosleep"
3103 echocheck "socklib"
3104 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3105 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3106 cat > $TMPC << EOF
3107 #include <netdb.h>
3108 #include <sys/socket.h>
3109 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3111 _socklib=no
3112 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3113 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3114 done
3115 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3116 if test $_winsock2_h = auto ; then
3117 _winsock2_h=no
3118 cat > $TMPC << EOF
3119 #include <winsock2.h>
3120 int main(void) { (void) gethostbyname(0); return 0; }
3122 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3124 test "$_ld_sock" && res_comment="using $_ld_sock"
3125 echores "$_socklib"
3128 if test $_winsock2_h = yes ; then
3129 _ld_sock="-lws2_32"
3130 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3131 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=1'
3132 else
3133 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3134 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=0'
3138 echocheck "netdb.h, struct addrinfo"
3139 if test "$_struct_addrinfo" = auto; then
3140 _struct_addrinfo=no
3141 cat > $TMPC << EOF
3142 #if HAVE_WINSOCK2_H
3143 #include <winsock2.h>
3144 #include <ws2tcpip.h>
3145 #else
3146 #include <sys/types.h>
3147 #include <sys/socket.h>
3148 #include <netdb.h>
3149 #endif
3150 int main(void) { struct addrinfo ai; return 0; }
3152 cc_check $cc_check_winsock2_h && _struct_addrinfo=yes
3154 echores "$_struct_addrinfo"
3156 if test "$_struct_addrinfo" = yes; then
3157 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 1"
3158 else
3159 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 0"
3163 echocheck "netdb.h, getaddrinfo()"
3164 if test "$_getaddrinfo" = auto; then
3165 _getaddrinfo=no
3166 cat > $TMPC << EOF
3167 #if HAVE_WINSOCK2_H
3168 #include <winsock2.h>
3169 #else
3170 #include <sys/types.h>
3171 #include <sys/socket.h>
3172 #include <netdb.h>
3173 #endif
3174 int main(void) { (void) getaddrinfo(0, 0, 0, 0); return 0; }
3176 cc_check $cc_check_winsock2_h && _getaddrinfo=yes
3178 echores "$_getaddrinfo"
3180 if test "$_getaddrinfo" = yes; then
3181 def_getaddrinfo="#define HAVE_GETADDRINFO 1"
3182 else
3183 def_getaddrinfo="#define HAVE_GETADDRINFO 0"
3187 echocheck "sockaddr_storage"
3188 if test "$_struct_sockaddr_storage" = auto; then
3189 _struct_sockaddr_storage=no
3190 cat > $TMPC << EOF
3191 #if HAVE_WINSOCK2_H
3192 #include <winsock2.h>
3193 #else
3194 #include <sys/socket.h>
3195 #endif
3196 int main(void) { struct sockaddr_storage sas; return 0; }
3198 cc_check $cc_check_winsock2_h && _struct_sockaddr_storage=yes
3200 echores "$_struct_sockaddr_storage"
3202 if test "$_struct_sockaddr_storage" = yes; then
3203 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 1"
3204 else
3205 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 0"
3209 echocheck "struct ipv6_mreq"
3210 _struct_ipv6_mreq=no
3211 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 0"
3212 for header in "netinet/in.h" "ws2tcpip.h" ; do
3213 cat > $TMPC << EOF
3214 #include <$header>
3215 int main(void) { struct ipv6_mreq mreq6; return 0; }
3217 cc_check && _struct_ipv6_mreq=yes && \
3218 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 1" && break
3219 done
3220 echores "$_struct_ipv6_mreq"
3223 echocheck "struct sockaddr_in6"
3224 _struct_sockaddr_in6=no
3225 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 0"
3226 for header in "netinet/in.h" "ws2tcpip.h" ; do
3227 cat > $TMPC << EOF
3228 #include <$header>
3229 int main(void) { struct sockaddr_in6 addr; return 0; }
3231 cc_check && _struct_sockaddr_in6=yes && \
3232 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 1" && break
3233 done
3234 echores "$_struct_sockaddr_in6"
3237 echocheck "struct sockaddr sa_len"
3238 _struct_sockaddr_sa_len=no
3239 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 0"
3240 cat > $TMPC << EOF
3241 #if HAVE_WINSOCK2_H
3242 #include <winsock2.h>
3243 #else
3244 #include <sys/types.h>
3245 #include <sys/socket.h>
3246 #endif
3247 int main(void) { const void *p = &((struct sockaddr *)0)->sa_len; return 0; }
3249 cc_check $cc_check_winsock2_h && _struct_sockaddr_sa_len=yes && \
3250 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 1"
3251 echores "$_struct_sockaddr_sa_len"
3254 echocheck "arpa/inet.h"
3255 arpa_inet_h=no
3256 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3257 cat > $TMPC << EOF
3258 #include <arpa/inet.h>
3259 int main(void) { return 0; }
3261 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3262 echores "$arpa_inet_h"
3265 echocheck "inet_pton()"
3266 def_inet_pton='#define HAVE_INET_PTON 0'
3267 inet_pton=no
3268 cat > $TMPC << EOF
3269 #include <sys/types.h>
3270 #include <sys/socket.h>
3271 #include <arpa/inet.h>
3272 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3274 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3275 cc_check $_ld_tmp && inet_pton=yes && break
3276 done
3277 if test $inet_pton = yes ; then
3278 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3279 def_inet_pton='#define HAVE_INET_PTON 1'
3281 echores "$inet_pton"
3284 echocheck "inet_aton()"
3285 def_inet_aton='#define HAVE_INET_ATON 0'
3286 inet_aton=no
3287 cat > $TMPC << EOF
3288 #include <sys/types.h>
3289 #include <sys/socket.h>
3290 #include <arpa/inet.h>
3291 int main(void) { (void) inet_aton(0, 0); return 0; }
3293 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3294 cc_check $_ld_tmp && inet_aton=yes && break
3295 done
3296 if test $inet_aton = yes ; then
3297 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3298 def_inet_aton='#define HAVE_INET_ATON 1'
3300 echores "$inet_aton"
3303 echocheck "socklen_t"
3304 _socklen_t=no
3305 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3306 cat > $TMPC << EOF
3307 #include <$header>
3308 int main(void) { socklen_t v = 0; return v; }
3310 cc_check && _socklen_t=yes && break
3311 done
3312 if test "$_socklen_t" = yes ; then
3313 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3314 else
3315 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3317 echores "$_socklen_t"
3320 echocheck "closesocket()"
3321 _closesocket=no
3322 cat > $TMPC << EOF
3323 #include <winsock2.h>
3324 int main(void) { closesocket(~0); return 0; }
3326 cc_check $_ld_sock && _closesocket=yes
3327 if test "$_closesocket" = yes ; then
3328 def_closesocket='#define HAVE_CLOSESOCKET 1'
3329 else
3330 def_closesocket='#define HAVE_CLOSESOCKET 0'
3332 echores "$_closesocket"
3335 echocheck "network"
3336 test $_winsock2_h = no && test $inet_pton = no &&
3337 test $inet_aton = no && _network=no
3338 if test "$_network" = yes ; then
3339 def_network='#define CONFIG_NETWORK 1'
3340 extra_ldflags="$extra_ldflags $_ld_sock"
3341 inputmodules="network $inputmodules"
3342 else
3343 noinputmodules="network $noinputmodules"
3344 def_network='#undef CONFIG_NETWORK'
3345 _ftp=no
3346 _libavprotocols=$(echo $_libavprotocols | sed -e s/GOPHER_PROTOCOL// -e s/HTTP_PROTOCOL// -e s/RTMP_PROTOCOL// -e s/RTP_PROTOCOL// -e s/TCP_PROTOCOL// -e s/UDP_PROTOCOL//)
3347 _libavdemuxers=$(echo $_libavdemuxers | sed -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER//)
3349 echores "$_network"
3352 echocheck "inet6"
3353 if test "$_inet6" = auto ; then
3354 cat > $TMPC << EOF
3355 #include <sys/types.h>
3356 #if !defined(_WIN32) || defined(__CYGWIN__)
3357 #include <sys/socket.h>
3358 #include <netinet/in.h>
3359 #else
3360 #include <ws2tcpip.h>
3361 #endif
3362 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3364 _inet6=no
3365 if cc_check $_ld_sock ; then
3366 _inet6=yes
3369 if test "$_inet6" = yes ; then
3370 def_inet6='#define HAVE_AF_INET6 1'
3371 else
3372 def_inet6='#undef HAVE_AF_INET6'
3374 echores "$_inet6"
3377 echocheck "gethostbyname2"
3378 if test "$_gethostbyname2" = auto ; then
3379 cat > $TMPC << EOF
3380 #include <sys/types.h>
3381 #include <sys/socket.h>
3382 #include <netdb.h>
3383 int main(void) { gethostbyname2("", AF_INET); return 0; }
3385 _gethostbyname2=no
3386 if cc_check ; then
3387 _gethostbyname2=yes
3390 if test "$_gethostbyname2" = yes ; then
3391 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3392 else
3393 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3395 echores "$_gethostbyname2"
3398 echocheck "inttypes.h (required)"
3399 cat > $TMPC << EOF
3400 #include <inttypes.h>
3401 int main(void) { return 0; }
3403 _inttypes=no
3404 cc_check && _inttypes=yes
3405 echores "$_inttypes"
3407 if test "$_inttypes" = no ; then
3408 echocheck "bitypes.h (inttypes.h predecessor)"
3409 cat > $TMPC << EOF
3410 #include <sys/bitypes.h>
3411 int main(void) { return 0; }
3413 cc_check && _inttypes=yes
3414 if test "$_inttypes" = yes ; then
3415 die "You don't have inttypes.h, but sys/bitypes.h is present. Please copy etc/inttypes.h into the include path, and re-run configure."
3416 else
3417 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3422 echocheck "int_fastXY_t in inttypes.h"
3423 cat > $TMPC << EOF
3424 #include <inttypes.h>
3425 int main(void) {
3426 volatile int_fast16_t v= 0;
3427 return v; }
3429 _fast_inttypes=no
3430 cc_check && _fast_inttypes=yes
3431 if test "$_fast_inttypes" = no ; then
3432 def_fast_inttypes='
3433 typedef signed char int_fast8_t;
3434 typedef signed int int_fast16_t;
3435 typedef signed int int_fast32_t;
3436 typedef signed long long int_fast64_t;
3437 typedef unsigned char uint_fast8_t;
3438 typedef unsigned int uint_fast16_t;
3439 typedef unsigned int uint_fast32_t;
3440 typedef unsigned long long uint_fast64_t;'
3442 echores "$_fast_inttypes"
3445 echocheck "malloc.h"
3446 cat > $TMPC << EOF
3447 #include <malloc.h>
3448 int main(void) { (void) malloc(0); return 0; }
3450 _malloc=no
3451 cc_check && _malloc=yes
3452 if test "$_malloc" = yes ; then
3453 def_malloc_h='#define HAVE_MALLOC_H 1'
3454 else
3455 def_malloc_h='#define HAVE_MALLOC_H 0'
3457 echores "$_malloc"
3460 echocheck "memalign()"
3461 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3462 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3463 cat > $TMPC << EOF
3464 #include <malloc.h>
3465 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3467 _memalign=no
3468 cc_check && _memalign=yes
3469 if test "$_memalign" = yes ; then
3470 def_memalign='#define HAVE_MEMALIGN 1'
3471 else
3472 def_memalign='#define HAVE_MEMALIGN 0'
3473 def_map_memalign='#define memalign(a,b) malloc(b)'
3474 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3476 echores "$_memalign"
3479 echocheck "posix_memalign()"
3480 posix_memalign=no
3481 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3482 cat > $TMPC << EOF
3483 #define _XOPEN_SOURCE 600
3484 #include <stdlib.h>
3485 int main(void) { posix_memalign(NULL, 0, 0); }
3487 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3488 echores "$posix_memalign"
3491 echocheck "alloca.h"
3492 cat > $TMPC << EOF
3493 #include <alloca.h>
3494 int main(void) { (void) alloca(0); return 0; }
3496 _alloca=no
3497 cc_check && _alloca=yes
3498 if cc_check ; then
3499 def_alloca_h='#define HAVE_ALLOCA_H 1'
3500 else
3501 def_alloca_h='#undef HAVE_ALLOCA_H'
3503 echores "$_alloca"
3506 echocheck "fastmemcpy"
3507 if test "$_fastmemcpy" = yes ; then
3508 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3509 else
3510 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3512 echores "$_fastmemcpy"
3515 echocheck "hard-coded tables"
3516 if test "$hardcoded_tables" = yes ; then
3517 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 1'
3518 mak_hardcoded_tables='CONFIG_HARDCODED_TABLES = yes'
3519 else
3520 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 0'
3522 echores "$hardcoded_tables"
3525 echocheck "mman.h"
3526 cat > $TMPC << EOF
3527 #include <sys/types.h>
3528 #include <sys/mman.h>
3529 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3531 _mman=no
3532 cc_check && _mman=yes
3533 if test "$_mman" = yes ; then
3534 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3535 else
3536 def_mman_h='#undef HAVE_SYS_MMAN_H'
3537 os2 && _need_mmap=yes
3539 echores "$_mman"
3541 cat > $TMPC << EOF
3542 #include <sys/types.h>
3543 #include <sys/mman.h>
3544 int main(void) { void *p = MAP_FAILED; return 0; }
3546 _mman_has_map_failed=no
3547 cc_check && _mman_has_map_failed=yes
3548 if test "$_mman_has_map_failed" = yes ; then
3549 def_mman_has_map_failed=''
3550 else
3551 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3554 echocheck "dynamic loader"
3555 cat > $TMPC << EOF
3556 #include <stddef.h>
3557 #include <dlfcn.h>
3558 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3560 _dl=no
3561 for _ld_tmp in "" "-ldl" ; do
3562 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3563 done
3564 if test "$_dl" = yes ; then
3565 def_dl='#define HAVE_LIBDL 1'
3566 else
3567 def_dl='#undef HAVE_LIBDL'
3569 echores "$_dl"
3572 echocheck "dynamic a/v plugins support"
3573 if test "$_dl" = no ; then
3574 _dynamic_plugins=no
3576 if test "$_dynamic_plugins" = yes ; then
3577 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3578 else
3579 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3581 echores "$_dynamic_plugins"
3584 def_threads='#define HAVE_THREADS 0'
3586 echocheck "pthread"
3587 if linux ; then
3588 THREAD_CFLAGS=-D_REENTRANT
3589 elif freebsd || netbsd || openbsd || bsdos ; then
3590 THREAD_CFLAGS=-D_THREAD_SAFE
3592 if test "$_pthreads" = auto ; then
3593 cat > $TMPC << EOF
3594 #include <pthread.h>
3595 void* func(void *arg) { return arg; }
3596 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3598 _pthreads=no
3599 if ! hpux ; then
3600 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3601 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3602 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3603 done
3606 if test "$_pthreads" = yes ; then
3607 test $_ld_pthread && res_comment="using $_ld_pthread"
3608 def_pthreads='#define HAVE_PTHREADS 1'
3609 def_threads='#define HAVE_THREADS 1'
3610 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3611 else
3612 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3613 def_pthreads='#undef HAVE_PTHREADS'
3614 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3615 mingw32 || _win32dll=no
3617 echores "$_pthreads"
3619 if cygwin ; then
3620 if test "$_pthreads" = yes ; then
3621 def_pthread_cache="#define PTHREAD_CACHE 1"
3622 else
3623 _stream_cache=no
3624 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3628 echocheck "w32threads"
3629 if test "$_pthreads" = yes ; then
3630 res_comment="using pthread instead"
3631 _w32threads=no
3633 if test "$_w32threads" = auto ; then
3634 _w32threads=no
3635 mingw32 && _w32threads=yes
3637 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3638 echores "$_w32threads"
3640 echocheck "rpath"
3641 netbsd &&_rpath=yes
3642 if test "$_rpath" = yes ; then
3643 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3644 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3645 done
3646 extra_ldflags=$tmp
3648 echores "$_rpath"
3650 echocheck "iconv"
3651 if test "$_iconv" = auto ; then
3652 cat > $TMPC << EOF
3653 #include <stdio.h>
3654 #include <unistd.h>
3655 #include <iconv.h>
3656 #define INBUFSIZE 1024
3657 #define OUTBUFSIZE 4096
3659 char inbuffer[INBUFSIZE];
3660 char outbuffer[OUTBUFSIZE];
3662 int main(void) {
3663 size_t numread;
3664 iconv_t icdsc;
3665 char *tocode="UTF-8";
3666 char *fromcode="cp1250";
3667 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3668 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3669 char *iptr=inbuffer;
3670 char *optr=outbuffer;
3671 size_t inleft=numread;
3672 size_t outleft=OUTBUFSIZE;
3673 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3674 != (size_t)(-1)) {
3675 write(1, outbuffer, OUTBUFSIZE - outleft);
3678 if (iconv_close(icdsc) == -1)
3681 return 0;
3684 _iconv=no
3685 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3686 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3687 _iconv=yes && break
3688 done
3690 if test "$_iconv" = yes ; then
3691 def_iconv='#define CONFIG_ICONV 1'
3692 else
3693 def_iconv='#undef CONFIG_ICONV'
3695 echores "$_iconv"
3698 echocheck "soundcard.h"
3699 _soundcard_h=no
3700 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3701 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3702 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3703 cat > $TMPC << EOF
3704 #include <$_soundcard_header>
3705 int main(void) { return 0; }
3707 cc_check && _soundcard_h=yes && res_comment="$_soundcard_header" && break
3708 done
3710 if test "$_soundcard_h" = yes ; then
3711 if test $_soundcard_header = "sys/soundcard.h"; then
3712 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3713 else
3714 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3717 echores "$_soundcard_h"
3720 echocheck "sys/dvdio.h"
3721 cat > $TMPC << EOF
3722 #include <unistd.h>
3723 #include <sys/dvdio.h>
3724 int main(void) { return 0; }
3726 _dvdio=no
3727 cc_check && _dvdio=yes
3728 if test "$_dvdio" = yes ; then
3729 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3730 else
3731 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3733 echores "$_dvdio"
3736 echocheck "sys/cdio.h"
3737 cat > $TMPC << EOF
3738 #include <unistd.h>
3739 #include <sys/cdio.h>
3740 int main(void) { return 0; }
3742 _cdio=no
3743 cc_check && _cdio=yes
3744 if test "$_cdio" = yes ; then
3745 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3746 else
3747 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3749 echores "$_cdio"
3752 echocheck "linux/cdrom.h"
3753 cat > $TMPC << EOF
3754 #include <sys/types.h>
3755 #include <linux/cdrom.h>
3756 int main(void) { return 0; }
3758 _cdrom=no
3759 cc_check && _cdrom=yes
3760 if test "$_cdrom" = yes ; then
3761 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3762 else
3763 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3765 echores "$_cdrom"
3768 echocheck "dvd.h"
3769 cat > $TMPC << EOF
3770 #include <dvd.h>
3771 int main(void) { return 0; }
3773 _dvd=no
3774 cc_check && _dvd=yes
3775 if test "$_dvd" = yes ; then
3776 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3777 else
3778 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3780 echores "$_dvd"
3783 if bsdos; then
3784 echocheck "BSDI dvd.h"
3785 cat > $TMPC << EOF
3786 #include <dvd.h>
3787 int main(void) { return 0; }
3789 _bsdi_dvd=no
3790 cc_check && _bsdi_dvd=yes
3791 if test "$_bsdi_dvd" = yes ; then
3792 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3793 else
3794 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3796 echores "$_bsdi_dvd"
3797 fi #if bsdos
3800 if hpux; then
3801 # also used by AIX, but AIX does not support VCD and/or libdvdread
3802 echocheck "HP-UX SCSI header"
3803 cat > $TMPC << EOF
3804 #include <sys/scsi.h>
3805 int main(void) { return 0; }
3807 _hpux_scsi_h=no
3808 cc_check && _hpux_scsi_h=yes
3809 if test "$_hpux_scsi_h" = yes ; then
3810 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3811 else
3812 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3814 echores "$_hpux_scsi_h"
3815 fi #if hpux
3818 if sunos; then
3819 echocheck "userspace SCSI headers (Solaris)"
3820 cat > $TMPC << EOF
3821 #include <unistd.h>
3822 #include <stropts.h>
3823 #include <sys/scsi/scsi_types.h>
3824 #include <sys/scsi/impl/uscsi.h>
3825 int main(void) { return 0; }
3827 _sol_scsi_h=no
3828 cc_check && _sol_scsi_h=yes
3829 if test "$_sol_scsi_h" = yes ; then
3830 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3831 else
3832 def_sol_scsi_h='#undef SOLARIS_USCSI'
3834 echores "$_sol_scsi_h"
3835 fi #if sunos
3838 echocheck "termcap"
3839 if test "$_termcap" = auto ; then
3840 cat > $TMPC <<EOF
3841 #include <stddef.h>
3842 #include <term.h>
3843 int main(void) { tgetent(NULL, NULL); return 0; }
3845 _termcap=no
3846 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3847 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3848 && _termcap=yes && break
3849 done
3851 if test "$_termcap" = yes ; then
3852 def_termcap='#define HAVE_TERMCAP 1'
3853 test $_ld_tmp && res_comment="using $_ld_tmp"
3854 else
3855 def_termcap='#undef HAVE_TERMCAP'
3857 echores "$_termcap"
3860 echocheck "termios"
3861 def_termios='#undef HAVE_TERMIOS'
3862 def_termios_h='#undef HAVE_TERMIOS_H'
3863 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3864 if test "$_termios" = auto ; then
3865 _termios=no
3866 for _termios_header in "termios.h" "sys/termios.h"; do
3867 cat > $TMPC <<EOF
3868 #include <$_termios_header>
3869 int main(void) { return 0; }
3871 cc_check && _termios=yes && res_comment="using $_termios_header" && break
3872 done
3875 if test "$_termios" = yes ; then
3876 def_termios='#define HAVE_TERMIOS 1'
3877 if test "$_termios_header" = "termios.h" ; then
3878 def_termios_h='#define HAVE_TERMIOS_H 1'
3879 else
3880 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3883 echores "$_termios"
3886 echocheck "shm"
3887 if test "$_shm" = auto ; then
3888 cat > $TMPC << EOF
3889 #include <sys/types.h>
3890 #include <sys/shm.h>
3891 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3893 _shm=no
3894 cc_check && _shm=yes
3896 if test "$_shm" = yes ; then
3897 def_shm='#define HAVE_SHM 1'
3898 else
3899 def_shm='#undef HAVE_SHM'
3901 echores "$_shm"
3904 echocheck "strsep()"
3905 cat > $TMPC << EOF
3906 #include <string.h>
3907 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3909 _strsep=no
3910 cc_check && _strsep=yes
3911 if test "$_strsep" = yes ; then
3912 def_strsep='#define HAVE_STRSEP 1'
3913 _need_strsep=no
3914 else
3915 def_strsep='#undef HAVE_STRSEP'
3916 _need_strsep=yes
3918 echores "$_strsep"
3921 echocheck "vsscanf()"
3922 cat > $TMPC << EOF
3923 #define _ISOC99_SOURCE
3924 #include <stdarg.h>
3925 #include <stdio.h>
3926 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3928 _vsscanf=no
3929 cc_check && _vsscanf=yes
3930 if test "$_vsscanf" = yes ; then
3931 def_vsscanf='#define HAVE_VSSCANF 1'
3932 _need_vsscanf=no
3933 else
3934 def_vsscanf='#undef HAVE_VSSCANF'
3935 _need_vsscanf=yes
3937 echores "$_vsscanf"
3940 echocheck "swab()"
3941 cat > $TMPC << EOF
3942 #define _XOPEN_SOURCE 600
3943 #include <unistd.h>
3944 int main(void) { swab(0, 0, 0); return 0; }
3946 _swab=no
3947 cc_check && _swab=yes
3948 if test "$_swab" = yes ; then
3949 def_swab='#define HAVE_SWAB 1'
3950 _need_swab=no
3951 else
3952 def_swab='#undef HAVE_SWAB'
3953 _need_swab=yes
3955 echores "$_swab"
3957 echocheck "POSIX select()"
3958 cat > $TMPC << EOF
3959 #include <stdio.h>
3960 #include <stdlib.h>
3961 #include <sys/types.h>
3962 #include <string.h>
3963 #include <sys/time.h>
3964 #include <unistd.h>
3965 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3967 _posix_select=no
3968 def_posix_select='#undef HAVE_POSIX_SELECT'
3969 #select() of kLIBC (OS/2) supports socket only
3970 ! os2 && cc_check && _posix_select=yes \
3971 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3972 echores "$_posix_select"
3975 echocheck "audio select()"
3976 if test "$_select" = no ; then
3977 def_select='#undef HAVE_AUDIO_SELECT'
3978 elif test "$_select" = yes ; then
3979 def_select='#define HAVE_AUDIO_SELECT 1'
3981 echores "$_select"
3984 echocheck "gettimeofday()"
3985 cat > $TMPC << EOF
3986 #include <stdio.h>
3987 #include <sys/time.h>
3988 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3990 _gettimeofday=no
3991 cc_check && _gettimeofday=yes
3992 if test "$_gettimeofday" = yes ; then
3993 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3994 _need_gettimeofday=no
3995 else
3996 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3997 _need_gettimeofday=yes
3999 echores "$_gettimeofday"
4002 echocheck "glob()"
4003 cat > $TMPC << EOF
4004 #include <stdio.h>
4005 #include <glob.h>
4006 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
4008 _glob=no
4009 cc_check && _glob=yes
4010 if test "$_glob" = yes ; then
4011 def_glob='#define HAVE_GLOB 1'
4012 _need_glob=no
4013 else
4014 def_glob='#undef HAVE_GLOB'
4015 _need_glob=yes
4017 echores "$_glob"
4020 echocheck "setenv()"
4021 cat > $TMPC << EOF
4022 #include <stdlib.h>
4023 int main(void) { setenv("","",0); return 0; }
4025 _setenv=no
4026 cc_check && _setenv=yes
4027 if test "$_setenv" = yes ; then
4028 def_setenv='#define HAVE_SETENV 1'
4029 _need_setenv=no
4030 else
4031 def_setenv='#undef HAVE_SETENV'
4032 _need_setenv=yes
4034 echores "$_setenv"
4037 echocheck "setmode()"
4038 _setmode=no
4039 def_setmode='#define HAVE_SETMODE 0'
4040 cat > $TMPC << EOF
4041 #include <io.h>
4042 int main(void) { setmode(0, 0); return 0; }
4044 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
4045 echores "$_setmode"
4048 if sunos; then
4049 echocheck "sysi86()"
4050 cat > $TMPC << EOF
4051 #include <sys/sysi86.h>
4052 int main(void) { sysi86(0); return 0; }
4054 _sysi86=no
4055 cc_check && _sysi86=yes
4056 if test "$_sysi86" = yes ; then
4057 def_sysi86='#define HAVE_SYSI86 1'
4058 cat > $TMPC << EOF
4059 #include <sys/sysi86.h>
4060 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
4062 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
4063 else
4064 def_sysi86='#undef HAVE_SYSI86'
4066 echores "$_sysi86"
4067 fi #if sunos
4070 echocheck "sys/sysinfo.h"
4071 cat > $TMPC << EOF
4072 #include <sys/sysinfo.h>
4073 int main(void) {
4074 struct sysinfo s_info;
4075 sysinfo(&s_info);
4076 return 0;
4079 _sys_sysinfo=no
4080 cc_check && _sys_sysinfo=yes
4081 if test "$_sys_sysinfo" = yes ; then
4082 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
4083 else
4084 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
4086 echores "$_sys_sysinfo"
4089 if darwin; then
4091 echocheck "Mac OS X Finder Support"
4092 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
4093 if test "$_macosx_finder" = yes ; then
4094 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
4095 extra_ldflags="$extra_ldflags -framework Carbon"
4097 echores "$_macosx_finder"
4099 echocheck "Mac OS X Bundle file locations"
4100 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
4101 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
4102 if test "$_macosx_bundle" = yes ; then
4103 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
4104 extra_ldflags="$extra_ldflags -framework Carbon"
4106 echores "$_macosx_bundle"
4108 echocheck "Apple Remote"
4109 if test "$_apple_remote" = auto ; then
4110 _apple_remote=no
4111 cat > $TMPC <<EOF
4112 #include <stdio.h>
4113 #include <IOKit/IOCFPlugIn.h>
4114 int main(void) {
4115 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
4116 CFMutableDictionaryRef hidMatchDictionary;
4117 IOReturn ioReturnValue;
4119 // Set up a matching dictionary to search the I/O Registry by class.
4120 // name for all HID class devices
4121 hidMatchDictionary = IOServiceMatching("AppleIRController");
4123 // Now search I/O Registry for matching devices.
4124 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
4125 hidMatchDictionary, &hidObjectIterator);
4127 // If search is unsuccessful, return nonzero.
4128 if (ioReturnValue != kIOReturnSuccess ||
4129 !IOIteratorIsValid(hidObjectIterator)) {
4130 return 1;
4132 return 0;
4135 cc_check -framework IOKit && tmp_run && _apple_remote=yes
4137 if test "$_apple_remote" = yes ; then
4138 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
4139 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
4140 else
4141 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
4143 echores "$_apple_remote"
4145 fi #if darwin
4147 if linux; then
4149 echocheck "Apple IR"
4150 if test "$_apple_ir" = auto ; then
4151 _apple_ir=no
4152 cat > $TMPC <<EOF
4153 #include <linux/types.h>
4154 #include <linux/input.h>
4155 int main(void) {
4156 struct input_event ev;
4157 struct input_id id;
4158 return 0;
4161 cc_check && _apple_ir=yes
4163 if test "$_apple_ir" = yes ; then
4164 def_apple_ir='#define CONFIG_APPLE_IR 1'
4165 else
4166 def_apple_ir='#undef CONFIG_APPLE_IR'
4168 echores "$_apple_ir"
4169 fi #if linux
4171 echocheck "pkg-config"
4172 _pkg_config=pkg-config
4173 if $($_pkg_config --version > /dev/null 2>&1); then
4174 if test "$_ld_static"; then
4175 _pkg_config="$_pkg_config --static"
4177 echores "yes"
4178 else
4179 _pkg_config=false
4180 echores "no"
4184 echocheck "Samba support (libsmbclient)"
4185 if test "$_smb" = yes; then
4186 extra_ldflags="$extra_ldflags -lsmbclient"
4188 if test "$_smb" = auto; then
4189 _smb=no
4190 cat > $TMPC << EOF
4191 #include <libsmbclient.h>
4192 int main(void) { smbc_opendir("smb://"); return 0; }
4194 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
4195 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
4196 _smb=yes && break
4197 done
4200 if test "$_smb" = yes; then
4201 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4202 inputmodules="smb $inputmodules"
4203 else
4204 def_smb="#undef CONFIG_LIBSMBCLIENT"
4205 noinputmodules="smb $noinputmodules"
4207 echores "$_smb"
4210 #########
4211 # VIDEO #
4212 #########
4215 echocheck "tdfxfb"
4216 if test "$_tdfxfb" = yes ; then
4217 def_tdfxfb='#define CONFIG_TDFXFB 1'
4218 vomodules="tdfxfb $vomodules"
4219 else
4220 def_tdfxfb='#undef CONFIG_TDFXFB'
4221 novomodules="tdfxfb $novomodules"
4223 echores "$_tdfxfb"
4225 echocheck "s3fb"
4226 if test "$_s3fb" = yes ; then
4227 def_s3fb='#define CONFIG_S3FB 1'
4228 vomodules="s3fb $vomodules"
4229 else
4230 def_s3fb='#undef CONFIG_S3FB'
4231 novomodules="s3fb $novomodules"
4233 echores "$_s3fb"
4235 echocheck "wii"
4236 if test "$_wii" = yes ; then
4237 def_wii='#define CONFIG_WII 1'
4238 vomodules="wii $vomodules"
4239 else
4240 def_wii='#undef CONFIG_WII'
4241 novomodules="wii $novomodules"
4243 echores "$_wii"
4245 echocheck "tdfxvid"
4246 if test "$_tdfxvid" = yes ; then
4247 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4248 vomodules="tdfx_vid $vomodules"
4249 else
4250 def_tdfxvid='#undef CONFIG_TDFX_VID'
4251 novomodules="tdfx_vid $novomodules"
4253 echores "$_tdfxvid"
4255 echocheck "xvr100"
4256 if test "$_xvr100" = auto ; then
4257 cat > $TMPC << EOF
4258 #include <unistd.h>
4259 #include <sys/fbio.h>
4260 #include <sys/visual_io.h>
4261 int main(void) {
4262 struct vis_identifier ident;
4263 struct fbgattr attr;
4264 ioctl(0, VIS_GETIDENTIFIER, &ident);
4265 ioctl(0, FBIOGATTR, &attr);
4266 return 0;
4269 _xvr100=no
4270 cc_check && _xvr100=yes
4272 if test "$_xvr100" = yes ; then
4273 def_xvr100='#define CONFIG_XVR100 1'
4274 vomodules="xvr100 $vomodules"
4275 else
4276 def_tdfxvid='#undef CONFIG_XVR100'
4277 novomodules="xvr100 $novomodules"
4279 echores "$_xvr100"
4281 echocheck "tga"
4282 if test "$_tga" = yes ; then
4283 def_tga='#define CONFIG_TGA 1'
4284 vomodules="tga $vomodules"
4285 else
4286 def_tga='#undef CONFIG_TGA'
4287 novomodules="tga $novomodules"
4289 echores "$_tga"
4292 echocheck "md5sum support"
4293 if test "$_md5sum" = yes; then
4294 def_md5sum="#define CONFIG_MD5SUM 1"
4295 vomodules="md5sum $vomodules"
4296 else
4297 def_md5sum="#undef CONFIG_MD5SUM"
4298 novomodules="md5sum $novomodules"
4300 echores "$_md5sum"
4303 echocheck "yuv4mpeg support"
4304 if test "$_yuv4mpeg" = yes; then
4305 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4306 vomodules="yuv4mpeg $vomodules"
4307 else
4308 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4309 novomodules="yuv4mpeg $novomodules"
4311 echores "$_yuv4mpeg"
4314 echocheck "bl"
4315 if test "$_bl" = yes ; then
4316 def_bl='#define CONFIG_BL 1'
4317 vomodules="bl $vomodules"
4318 else
4319 def_bl='#undef CONFIG_BL'
4320 novomodules="bl $novomodules"
4322 echores "$_bl"
4325 echocheck "DirectFB"
4326 if test "$_directfb" = auto ; then
4327 _directfb=no
4328 cat > $TMPC <<EOF
4329 #include <directfb.h>
4330 int main(void) { DirectFBInit(0, 0); return 0; }
4332 for _inc_tmp in "" -I/usr/local/include/directfb \
4333 -I/usr/include/directfb -I/usr/local/include; do
4334 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4335 extra_cflags="$extra_cflags $_inc_tmp" && break
4336 done
4339 dfb_version() {
4340 expr $1 \* 65536 + $2 \* 256 + $3
4343 if test "$_directfb" = yes; then
4344 cat > $TMPC << EOF
4345 #include <directfb_version.h>
4347 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4350 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4351 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4352 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4353 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4354 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4355 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4356 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4357 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4358 res_comment="$_directfb_version"
4359 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4360 else
4361 def_directfb_version='#undef DIRECTFBVERSION'
4362 _directfb=no
4363 res_comment="version >=0.9.13 required"
4365 else
4366 _directfb=no
4367 res_comment="failed to get version"
4370 echores "$_directfb"
4372 if test "$_directfb" = yes ; then
4373 def_directfb='#define CONFIG_DIRECTFB 1'
4374 vomodules="directfb $vomodules"
4375 libs_mplayer="$libs_mplayer -ldirectfb"
4376 else
4377 def_directfb='#undef CONFIG_DIRECTFB'
4378 novomodules="directfb $novomodules"
4380 if test "$_dfbmga" = yes; then
4381 vomodules="dfbmga $vomodules"
4382 def_dfbmga='#define CONFIG_DFBMGA 1'
4383 else
4384 novomodules="dfbmga $novomodules"
4385 def_dfbmga='#undef CONFIG_DFBMGA'
4389 echocheck "X11 headers presence"
4390 _x11_headers="no"
4391 res_comment="check if the dev(el) packages are installed"
4392 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4393 if test -f "$I/X11/Xlib.h" ; then
4394 _x11_headers="yes"
4395 res_comment=""
4396 break
4398 done
4399 if test $_cross_compile = no; then
4400 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4401 /usr/include/X11R6 /usr/openwin/include ; do
4402 if test -f "$I/X11/Xlib.h" ; then
4403 extra_cflags="$extra_cflags -I$I"
4404 _x11_headers="yes"
4405 res_comment="using $I"
4406 break
4408 done
4410 echores "$_x11_headers"
4413 echocheck "X11"
4414 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4415 cat > $TMPC <<EOF
4416 #include <X11/Xlib.h>
4417 #include <X11/Xutil.h>
4418 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4420 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4421 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4422 -L/usr/lib ; do
4423 if netbsd; then
4424 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4425 else
4426 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4428 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4429 && _x11=yes && break
4430 done
4432 if test "$_x11" = yes ; then
4433 def_x11='#define CONFIG_X11 1'
4434 vomodules="x11 xover $vomodules"
4435 else
4436 _x11=no
4437 def_x11='#undef CONFIG_X11'
4438 novomodules="x11 $novomodules"
4439 res_comment="check if the dev(el) packages are installed"
4440 # disable stuff that depends on X
4441 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4443 echores "$_x11"
4445 echocheck "Xss screensaver extensions"
4446 if test "$_xss" = auto ; then
4447 cat > $TMPC << EOF
4448 #include <X11/Xlib.h>
4449 #include <X11/extensions/scrnsaver.h>
4450 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4452 _xss=no
4453 cc_check -lXss && _xss=yes
4455 if test "$_xss" = yes ; then
4456 def_xss='#define CONFIG_XSS 1'
4457 libs_mplayer="$libs_mplayer -lXss"
4458 else
4459 def_xss='#undef CONFIG_XSS'
4461 echores "$_xss"
4463 echocheck "DPMS"
4464 _xdpms3=no
4465 _xdpms4=no
4466 if test "$_x11" = yes ; then
4467 cat > $TMPC <<EOF
4468 #include <X11/Xmd.h>
4469 #include <X11/Xlib.h>
4470 #include <X11/Xutil.h>
4471 #include <X11/Xatom.h>
4472 #include <X11/extensions/dpms.h>
4473 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4475 cc_check -lXdpms && _xdpms3=yes
4476 cat > $TMPC <<EOF
4477 #include <X11/Xlib.h>
4478 #include <X11/extensions/dpms.h>
4479 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4481 cc_check -lXext && _xdpms4=yes
4483 if test "$_xdpms4" = yes ; then
4484 def_xdpms='#define CONFIG_XDPMS 1'
4485 res_comment="using Xdpms 4"
4486 echores "yes"
4487 elif test "$_xdpms3" = yes ; then
4488 def_xdpms='#define CONFIG_XDPMS 1'
4489 libs_mplayer="$libs_mplayer -lXdpms"
4490 res_comment="using Xdpms 3"
4491 echores "yes"
4492 else
4493 def_xdpms='#undef CONFIG_XDPMS'
4494 echores "no"
4498 echocheck "Xv"
4499 if test "$_xv" = auto ; then
4500 cat > $TMPC <<EOF
4501 #include <X11/Xlib.h>
4502 #include <X11/extensions/Xvlib.h>
4503 int main(void) {
4504 (void) XvGetPortAttribute(0, 0, 0, 0);
4505 (void) XvQueryPortAttributes(0, 0, 0);
4506 return 0; }
4508 _xv=no
4509 cc_check -lXv && _xv=yes
4512 if test "$_xv" = yes ; then
4513 def_xv='#define CONFIG_XV 1'
4514 libs_mplayer="$libs_mplayer -lXv"
4515 vomodules="xv $vomodules"
4516 else
4517 def_xv='#undef CONFIG_XV'
4518 novomodules="xv $novomodules"
4520 echores "$_xv"
4523 echocheck "XvMC"
4524 if test "$_xv" = yes && test "$_xvmc" != no ; then
4525 _xvmc=no
4526 cat > $TMPC <<EOF
4527 #include <X11/Xlib.h>
4528 #include <X11/extensions/Xvlib.h>
4529 #include <X11/extensions/XvMClib.h>
4530 int main(void) {
4531 (void) XvMCQueryExtension(0,0,0);
4532 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4533 return 0; }
4535 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4536 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4537 done
4539 if test "$_xvmc" = yes ; then
4540 def_xvmc='#define CONFIG_XVMC 1'
4541 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4542 vomodules="xvmc $vomodules"
4543 res_comment="using $_xvmclib"
4544 else
4545 def_xvmc='#define CONFIG_XVMC 0'
4546 novomodules="xvmc $novomodules"
4547 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4549 echores "$_xvmc"
4552 echocheck "VDPAU"
4553 if test "$_vdpau" = auto ; then
4554 _vdpau=no
4555 if test "$_dl" = yes ; then
4556 cat > $TMPC <<EOF
4557 #include <vdpau/vdpau_x11.h>
4558 int main(void) {
4559 (void) vdp_device_create_x11(0, 0, 0, 0);
4560 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4562 cc_check -lvdpau && _vdpau=yes
4565 if test "$_vdpau" = yes ; then
4566 def_vdpau='#define CONFIG_VDPAU 1'
4567 libs_mplayer="$libs_mplayer -lvdpau"
4568 vomodules="vdpau $vomodules"
4569 else
4570 def_vdpau='#define CONFIG_VDPAU 0'
4571 novomodules="vdpau $novomodules"
4572 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_VDPAU_DECODER// -e s/MPEG1_VDPAU_DECODER// -e s/H264_VDPAU_DECODER// -e s/WMV3_VDPAU_DECODER// -e s/VC1_VDPAU_DECODER// -e s/MPEG4_VDPAU_DECODER//)
4574 echores "$_vdpau"
4577 echocheck "Xinerama"
4578 if test "$_xinerama" = auto ; then
4579 cat > $TMPC <<EOF
4580 #include <X11/Xlib.h>
4581 #include <X11/extensions/Xinerama.h>
4582 int main(void) { (void) XineramaIsActive(0); return 0; }
4584 _xinerama=no
4585 cc_check -lXinerama && _xinerama=yes
4588 if test "$_xinerama" = yes ; then
4589 def_xinerama='#define CONFIG_XINERAMA 1'
4590 libs_mplayer="$libs_mplayer -lXinerama"
4591 else
4592 def_xinerama='#undef CONFIG_XINERAMA'
4594 echores "$_xinerama"
4597 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4598 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4599 # named 'X extensions' or something similar.
4600 # This check may be useful for future mplayer versions (to change resolution)
4601 # If you run into problems, remove '-lXxf86vm'.
4602 echocheck "Xxf86vm"
4603 if test "$_vm" = auto ; then
4604 cat > $TMPC <<EOF
4605 #include <X11/Xlib.h>
4606 #include <X11/extensions/xf86vmode.h>
4607 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4609 _vm=no
4610 cc_check -lXxf86vm && _vm=yes
4612 if test "$_vm" = yes ; then
4613 def_vm='#define CONFIG_XF86VM 1'
4614 libs_mplayer="$libs_mplayer -lXxf86vm"
4615 else
4616 def_vm='#undef CONFIG_XF86VM'
4618 echores "$_vm"
4620 # Check for the presence of special keycodes, like audio control buttons
4621 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4622 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4623 # have these new keycodes.
4624 echocheck "XF86keysym"
4625 if test "$_xf86keysym" = auto; then
4626 _xf86keysym=no
4627 cat > $TMPC <<EOF
4628 #include <X11/Xlib.h>
4629 #include <X11/XF86keysym.h>
4630 int main(void) { return XF86XK_AudioPause; }
4632 cc_check && _xf86keysym=yes
4634 if test "$_xf86keysym" = yes ; then
4635 def_xf86keysym='#define CONFIG_XF86XK 1'
4636 else
4637 def_xf86keysym='#undef CONFIG_XF86XK'
4639 echores "$_xf86keysym"
4641 echocheck "DGA"
4642 if test "$_dga2" = auto && test "$_x11" = yes ; then
4643 cat > $TMPC << EOF
4644 #include <X11/Xlib.h>
4645 #include <X11/extensions/xf86dga.h>
4646 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4648 _dga2=no
4649 cc_check -lXxf86dga && _dga2=yes
4651 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4652 cat > $TMPC << EOF
4653 #include <X11/Xlib.h>
4654 #include <X11/extensions/xf86dga.h>
4655 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4657 _dga1=no
4658 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4661 _dga=no
4662 def_dga='#undef CONFIG_DGA'
4663 def_dga1='#undef CONFIG_DGA1'
4664 def_dga2='#undef CONFIG_DGA2'
4665 if test "$_dga1" = yes ; then
4666 _dga=yes
4667 def_dga1='#define CONFIG_DGA1 1'
4668 res_comment="using DGA 1.0"
4669 elif test "$_dga2" = yes ; then
4670 _dga=yes
4671 def_dga2='#define CONFIG_DGA2 1'
4672 res_comment="using DGA 2.0"
4674 if test "$_dga" = yes ; then
4675 def_dga='#define CONFIG_DGA 1'
4676 libs_mplayer="$libs_mplayer -lXxf86dga"
4677 vomodules="dga $vomodules"
4678 else
4679 novomodules="dga $novomodules"
4681 echores "$_dga"
4684 echocheck "3dfx"
4685 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4686 def_3dfx='#define CONFIG_3DFX 1'
4687 vomodules="3dfx $vomodules"
4688 else
4689 def_3dfx='#undef CONFIG_3DFX'
4690 novomodules="3dfx $novomodules"
4692 echores "$_3dfx"
4695 echocheck "VIDIX"
4696 def_vidix='#undef CONFIG_VIDIX'
4697 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4698 _vidix_drv_cyberblade=no
4699 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4700 _vidix_drv_ivtv=no
4701 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4702 _vidix_drv_mach64=no
4703 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4704 _vidix_drv_mga=no
4705 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4706 _vidix_drv_mga_crtc2=no
4707 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4708 _vidix_drv_nvidia=no
4709 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4710 _vidix_drv_pm2=no
4711 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4712 _vidix_drv_pm3=no
4713 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4714 _vidix_drv_radeon=no
4715 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4716 _vidix_drv_rage128=no
4717 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4718 _vidix_drv_s3=no
4719 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4720 _vidix_drv_sh_veu=no
4721 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4722 _vidix_drv_sis=no
4723 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4724 _vidix_drv_unichrome=no
4725 if test "$_vidix" = auto ; then
4726 _vidix=no
4727 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4728 && _vidix=yes
4729 x86_64 && ! linux && _vidix=no
4730 (ppc || alpha) && linux && _vidix=yes
4732 echores "$_vidix"
4734 if test "$_vidix" = yes ; then
4735 def_vidix='#define CONFIG_VIDIX 1'
4736 vomodules="cvidix $vomodules"
4737 # FIXME: ivtv driver temporarily disabled until we have a proper test
4738 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4739 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4741 # some vidix drivers are architecture and os specific, discard them elsewhere
4742 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4743 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4745 for driver in $_vidix_drivers ; do
4746 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4747 eval _vidix_drv_${driver}=yes
4748 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4749 done
4751 echocheck "VIDIX PCI device name database"
4752 echores "$_vidix_pcidb"
4753 if test "$_vidix_pcidb" = yes ; then
4754 _vidix_pcidb_val=1
4755 else
4756 _vidix_pcidb_val=0
4759 echocheck "VIDIX dhahelper support"
4760 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4761 echores "$_dhahelper"
4763 echocheck "VIDIX svgalib_helper support"
4764 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4765 echores "$_svgalib_helper"
4767 else
4768 novomodules="cvidix $novomodules"
4771 if test "$_vidix" = yes && win32; then
4772 winvidix=yes
4773 vomodules="winvidix $vomodules"
4774 libs_mplayer="$libs_mplayer -lgdi32"
4775 else
4776 novomodules="winvidix $novomodules"
4778 if test "$_vidix" = yes && test "$_x11" = yes; then
4779 xvidix=yes
4780 vomodules="xvidix $vomodules"
4781 else
4782 novomodules="xvidix $novomodules"
4785 echocheck "/dev/mga_vid"
4786 if test "$_mga" = auto ; then
4787 _mga=no
4788 test -c /dev/mga_vid && _mga=yes
4790 if test "$_mga" = yes ; then
4791 def_mga='#define CONFIG_MGA 1'
4792 vomodules="mga $vomodules"
4793 else
4794 def_mga='#undef CONFIG_MGA'
4795 novomodules="mga $novomodules"
4797 echores "$_mga"
4799 echocheck "xmga"
4800 if test "$_xmga" = auto ; then
4801 _xmga=no
4802 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4804 if test "$_xmga" = yes ; then
4805 def_xmga='#define CONFIG_XMGA 1'
4806 vomodules="xmga $vomodules"
4807 else
4808 def_xmga='#undef CONFIG_XMGA'
4809 novomodules="xmga $novomodules"
4811 echores "$_xmga"
4814 echocheck "GGI"
4815 if test "$_ggi" = auto ; then
4816 cat > $TMPC << EOF
4817 #include <ggi/ggi.h>
4818 int main(void) { ggiInit(); return 0; }
4820 _ggi=no
4821 cc_check -lggi && _ggi=yes
4823 if test "$_ggi" = yes ; then
4824 def_ggi='#define CONFIG_GGI 1'
4825 libs_mplayer="$libs_mplayer -lggi"
4826 vomodules="ggi $vomodules"
4827 else
4828 def_ggi='#undef CONFIG_GGI'
4829 novomodules="ggi $novomodules"
4831 echores "$_ggi"
4833 echocheck "GGI extension: libggiwmh"
4834 if test "$_ggiwmh" = auto ; then
4835 _ggiwmh=no
4836 cat > $TMPC << EOF
4837 #include <ggi/ggi.h>
4838 #include <ggi/wmh.h>
4839 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4841 cc_check -lggi -lggiwmh && _ggiwmh=yes
4843 # needed to get right output on obscure combination
4844 # like --disable-ggi --enable-ggiwmh
4845 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4846 def_ggiwmh='#define CONFIG_GGIWMH 1'
4847 libs_mplayer="$libs_mplayer -lggiwmh"
4848 else
4849 _ggiwmh=no
4850 def_ggiwmh='#undef CONFIG_GGIWMH'
4852 echores "$_ggiwmh"
4855 echocheck "AA"
4856 if test "$_aa" = auto ; then
4857 cat > $TMPC << EOF
4858 #include <aalib.h>
4859 extern struct aa_hardware_params aa_defparams;
4860 extern struct aa_renderparams aa_defrenderparams;
4861 int main(void) {
4862 aa_context *c;
4863 aa_renderparams *p;
4864 (void) aa_init(0, 0, 0);
4865 c = aa_autoinit(&aa_defparams);
4866 p = aa_getrenderparams();
4867 aa_autoinitkbd(c,0);
4868 return 0; }
4870 _aa=no
4871 for _ld_tmp in "-laa" ; do
4872 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4873 done
4875 if test "$_aa" = yes ; then
4876 def_aa='#define CONFIG_AA 1'
4877 if cygwin ; then
4878 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4880 vomodules="aa $vomodules"
4881 else
4882 def_aa='#undef CONFIG_AA'
4883 novomodules="aa $novomodules"
4885 echores "$_aa"
4888 echocheck "CACA"
4889 if test "$_caca" = auto ; then
4890 _caca=no
4891 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4892 cat > $TMPC << EOF
4893 #include <caca.h>
4894 #ifdef CACA_API_VERSION_1
4895 #include <caca0.h>
4896 #endif
4897 int main(void) { (void) caca_init(); return 0; }
4899 cc_check $(caca-config --libs) && _caca=yes
4902 if test "$_caca" = yes ; then
4903 def_caca='#define CONFIG_CACA 1'
4904 extra_cflags="$extra_cflags $(caca-config --cflags)"
4905 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4906 vomodules="caca $vomodules"
4907 else
4908 def_caca='#undef CONFIG_CACA'
4909 novomodules="caca $novomodules"
4911 echores "$_caca"
4914 echocheck "SVGAlib"
4915 if test "$_svga" = auto ; then
4916 cat > $TMPC << EOF
4917 #include <vga.h>
4918 int main(void) { return 0; }
4920 _svga=no
4921 cc_check -lvga $_ld_lm && _svga=yes
4923 if test "$_svga" = yes ; then
4924 def_svga='#define CONFIG_SVGALIB 1'
4925 libs_mplayer="$libs_mplayer -lvga"
4926 vomodules="svga $vomodules"
4927 else
4928 def_svga='#undef CONFIG_SVGALIB'
4929 novomodules="svga $novomodules"
4931 echores "$_svga"
4934 echocheck "FBDev"
4935 if test "$_fbdev" = auto ; then
4936 _fbdev=no
4937 linux && _fbdev=yes
4939 if test "$_fbdev" = yes ; then
4940 def_fbdev='#define CONFIG_FBDEV 1'
4941 vomodules="fbdev $vomodules"
4942 else
4943 def_fbdev='#undef CONFIG_FBDEV'
4944 novomodules="fbdev $novomodules"
4946 echores "$_fbdev"
4950 echocheck "DVB"
4951 if test "$_dvb" = auto ; then
4952 _dvb=no
4953 cat >$TMPC << EOF
4954 #include <poll.h>
4955 #include <sys/ioctl.h>
4956 #include <stdio.h>
4957 #include <time.h>
4958 #include <unistd.h>
4959 #include <linux/dvb/dmx.h>
4960 #include <linux/dvb/frontend.h>
4961 #include <linux/dvb/video.h>
4962 #include <linux/dvb/audio.h>
4963 int main(void) {return 0;}
4965 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4966 cc_check $_inc_tmp && _dvb=yes && \
4967 extra_cflags="$extra_cflags $_inc_tmp" && break
4968 done
4970 echores "$_dvb"
4971 if test "$_dvb" = yes ; then
4972 _dvbin=yes
4973 inputmodules="dvb $inputmodules"
4974 def_dvb='#define CONFIG_DVB 1'
4975 def_dvbin='#define CONFIG_DVBIN 1'
4976 aomodules="mpegpes(dvb) $aomodules"
4977 vomodules="mpegpes(dvb) $vomodules"
4978 else
4979 _dvbin=no
4980 noinputmodules="dvb $noinputmodules"
4981 def_dvb='#undef CONFIG_DVB'
4982 def_dvbin='#undef CONFIG_DVBIN '
4983 aomodules="mpegpes(file) $aomodules"
4984 vomodules="mpegpes(file) $vomodules"
4988 if darwin; then
4990 echocheck "QuickTime"
4991 if test "$quicktime" = auto ; then
4992 cat > $TMPC <<EOF
4993 #include <QuickTime/QuickTime.h>
4994 int main(void) {
4995 ImageDescription *desc;
4996 EnterMovies();
4997 ExitMovies();
4998 return 0;
5001 quicktime=no
5002 cc_check -framework QuickTime && quicktime=yes
5004 if test "$quicktime" = yes ; then
5005 extra_ldflags="$extra_ldflags -framework QuickTime"
5006 def_quicktime='#define CONFIG_QUICKTIME 1'
5007 else
5008 def_quicktime='#undef CONFIG_QUICKTIME'
5009 _quartz=no
5011 echores $quicktime
5013 echocheck "Quartz"
5014 if test "$_quartz" = auto ; then
5015 cat > $TMPC <<EOF
5016 #include <Carbon/Carbon.h>
5017 int main(void) {
5018 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
5019 return 0;
5022 _quartz=no
5023 cc_check -framework Carbon && _quartz=yes
5025 if test "$_quartz" = yes ; then
5026 libs_mplayer="$libs_mplayer -framework Carbon"
5027 def_quartz='#define CONFIG_QUARTZ 1'
5028 vomodules="quartz $vomodules"
5029 else
5030 def_quartz='#undef CONFIG_QUARTZ'
5031 novomodules="quartz $novomodules"
5033 echores $_quartz
5035 echocheck "CoreVideo"
5036 if test "$_corevideo" = auto ; then
5037 cat > $TMPC <<EOF
5038 #include <Carbon/Carbon.h>
5039 #include <CoreServices/CoreServices.h>
5040 #include <OpenGL/OpenGL.h>
5041 #include <QuartzCore/CoreVideo.h>
5042 int main(void) { return 0; }
5044 _corevideo=no
5045 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
5047 if test "$_corevideo" = yes ; then
5048 vomodules="corevideo $vomodules"
5049 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
5050 def_corevideo='#define CONFIG_COREVIDEO 1'
5051 else
5052 novomodules="corevideo $novomodules"
5053 def_corevideo='#undef CONFIG_COREVIDEO'
5055 echores "$_corevideo"
5057 fi #if darwin
5060 echocheck "PNG support"
5061 if test "$_png" = auto ; then
5062 _png=no
5063 if irix ; then
5064 # Don't check for -lpng on irix since it has its own libpng
5065 # incompatible with the GNU libpng
5066 res_comment="disabled on irix (not GNU libpng)"
5067 else
5068 cat > $TMPC << EOF
5069 #include <png.h>
5070 #include <string.h>
5071 int main(void) {
5072 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
5073 printf("libpng: %s\n", png_libpng_ver);
5074 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
5077 cc_check -lpng -lz $_ld_lm && _png=yes
5080 echores "$_png"
5081 if test "$_png" = yes ; then
5082 def_png='#define CONFIG_PNG 1'
5083 extra_ldflags="$extra_ldflags -lpng -lz"
5084 else
5085 def_png='#undef CONFIG_PNG'
5088 echocheck "MNG support"
5089 if test "$_mng" = auto ; then
5090 _mng=no
5091 cat > $TMPC << EOF
5092 #include <libmng.h>
5093 int main(void) {
5094 const char * p_ver = mng_version_text();
5095 return !p_ver || p_ver[0] == 0;
5098 if cc_check -lmng -lz $_ld_lm ; then
5099 _mng=yes
5102 echores "$_mng"
5103 if test "$_mng" = yes ; then
5104 def_mng='#define CONFIG_MNG 1'
5105 extra_ldflags="$extra_ldflags -lmng -lz"
5106 else
5107 def_mng='#undef CONFIG_MNG'
5110 echocheck "JPEG support"
5111 if test "$_jpeg" = auto ; then
5112 _jpeg=no
5113 cat > $TMPC << EOF
5114 #include <stdio.h>
5115 #include <stdlib.h>
5116 #include <setjmp.h>
5117 #include <string.h>
5118 #include <jpeglib.h>
5119 int main(void) { return 0; }
5121 cc_check -ljpeg $_ld_lm && _jpeg=yes
5123 echores "$_jpeg"
5125 if test "$_jpeg" = yes ; then
5126 def_jpeg='#define CONFIG_JPEG 1'
5127 vomodules="jpeg $vomodules"
5128 extra_ldflags="$extra_ldflags -ljpeg"
5129 else
5130 def_jpeg='#undef CONFIG_JPEG'
5131 novomodules="jpeg $novomodules"
5135 echocheck "OpenJPEG (JPEG2000) support"
5136 if test "$libopenjpeg" = auto ; then
5137 libopenjpeg=no
5138 cat > $TMPC << EOF
5139 #define OPJ_STATIC
5140 #include <openjpeg.h>
5141 int main(void) { opj_dparameters_t dec_params; opj_set_default_decoder_parameters(&dec_params); return 0; }
5143 cc_check -lopenjpeg $_ld_lm && libopenjpeg=yes
5145 echores "$libopenjpeg"
5146 if test "$libopenjpeg" = yes ; then
5147 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 1'
5148 extra_ldflags="$extra_ldflags -lopenjpeg"
5149 _libavdecoders="$_libavdecoders LIBOPENJPEG_DECODER"
5150 _libavencoders="$_libavencoders LIBOPENJPEG_ENCODER"
5151 codecmodules="OpenJPEG $codecmodules"
5152 else
5153 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 0'
5154 nocodecmodules="OpenJPEG $nocodecmodules"
5158 echocheck "PNM support"
5159 if test "$_pnm" = yes; then
5160 def_pnm="#define CONFIG_PNM 1"
5161 vomodules="pnm $vomodules"
5162 else
5163 def_pnm="#undef CONFIG_PNM"
5164 novomodules="pnm $novomodules"
5166 echores "$_pnm"
5170 echocheck "GIF support"
5171 # This is to appease people who want to force gif support.
5172 # If it is forced to yes, then we still do checks to determine
5173 # which gif library to use.
5174 if test "$_gif" = yes ; then
5175 _force_gif=yes
5176 _gif=auto
5179 if test "$_gif" = auto ; then
5180 _gif=no
5181 cat > $TMPC << EOF
5182 #include <gif_lib.h>
5183 int main(void) { return 0; }
5185 for _ld_gif in "-lungif" "-lgif" ; do
5186 cc_check $_ld_gif && _gif=yes && break
5187 done
5190 # If no library was found, and the user wants support forced,
5191 # then we force it on with libgif, as this is the safest
5192 # assumption IMHO. (libungif & libregif both create symbolic
5193 # links to libgif. We also assume that no x11 support is needed,
5194 # because if you are forcing this, then you _should_ know what
5195 # you are doing. [ Besides, package maintainers should never
5196 # have compiled x11 deps into libungif in the first place. ] )
5197 # </rant>
5198 # --Joey
5199 if test "$_force_gif" = yes && test "$_gif" = no ; then
5200 _gif=yes
5201 _ld_gif="-lgif"
5204 if test "$_gif" = yes ; then
5205 def_gif='#define CONFIG_GIF 1'
5206 codecmodules="gif $codecmodules"
5207 vomodules="gif89a $vomodules"
5208 res_comment="old version, some encoding functions disabled"
5209 def_gif_4='#undef CONFIG_GIF_4'
5210 extra_ldflags="$extra_ldflags $_ld_gif"
5212 cat > $TMPC << EOF
5213 #include <signal.h>
5214 #include <gif_lib.h>
5215 void catch() { exit(1); }
5216 int main(void) {
5217 signal(SIGSEGV, catch); // catch segfault
5218 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5219 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5220 return 0;
5223 if cc_check "$_ld_gif" ; then
5224 def_gif_4='#define CONFIG_GIF_4 1'
5225 res_comment=""
5227 else
5228 def_gif='#undef CONFIG_GIF'
5229 def_gif_4='#undef CONFIG_GIF_4'
5230 novomodules="gif89a $novomodules"
5231 nocodecmodules="gif $nocodecmodules"
5233 echores "$_gif"
5236 case "$_gif" in yes*)
5237 echocheck "broken giflib workaround"
5238 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5240 cat > $TMPC << EOF
5241 #include <gif_lib.h>
5242 int main(void) {
5243 GifFileType gif;
5244 printf("UserData is at address %p\n", gif.UserData);
5245 return 0;
5248 if cc_check "$_ld_gif" ; then
5249 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5250 echores "disabled"
5251 else
5252 echores "enabled"
5255 esac
5258 echocheck "VESA support"
5259 if test "$_vesa" = auto ; then
5260 cat > $TMPC << EOF
5261 #include <vbe.h>
5262 int main(void) { vbeVersion(); return 0; }
5264 _vesa=no
5265 cc_check -lvbe -llrmi && _vesa=yes
5267 if test "$_vesa" = yes ; then
5268 def_vesa='#define CONFIG_VESA 1'
5269 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5270 vomodules="vesa $vomodules"
5271 else
5272 def_vesa='#undef CONFIG_VESA'
5273 novomodules="vesa $novomodules"
5275 echores "$_vesa"
5277 #################
5278 # VIDEO + AUDIO #
5279 #################
5282 echocheck "SDL"
5283 _inc_tmp=""
5284 _ld_tmp=""
5285 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5286 if test -z "$_sdlconfig" ; then
5287 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5288 _sdlconfig="sdl-config"
5289 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5290 _sdlconfig="sdl11-config"
5291 else
5292 _sdlconfig=false
5295 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5296 cat > $TMPC << EOF
5297 #ifdef CONFIG_SDL_SDL_H
5298 #include <SDL/SDL.h>
5299 #else
5300 #include <SDL.h>
5301 #endif
5302 #ifndef __APPLE__
5303 // we allow SDL hacking our main() only on OSX
5304 #undef main
5305 #endif
5306 int main(int argc, char *argv[]) {
5307 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5308 return 0;
5311 _sdl=no
5312 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5313 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5314 _sdl=yes
5315 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5316 break
5318 done
5319 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5320 res_comment="using $_sdlconfig"
5321 if cygwin ; then
5322 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5323 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5324 elif mingw32 ; then
5325 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5326 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5327 else
5328 _inc_tmp="$($_sdlconfig --cflags)"
5329 _ld_tmp="$($_sdlconfig --libs)"
5331 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5332 _sdl=yes
5336 if test "$_sdl" = yes ; then
5337 def_sdl='#define CONFIG_SDL 1'
5338 extra_cflags="$extra_cflags $_inc_tmp"
5339 libs_mplayer="$libs_mplayer $_ld_tmp"
5340 vomodules="sdl $vomodules"
5341 aomodules="sdl $aomodules"
5342 else
5343 def_sdl='#undef CONFIG_SDL'
5344 novomodules="sdl $novomodules"
5345 noaomodules="sdl $noaomodules"
5347 echores "$_sdl"
5350 # make sure this stays below CoreVideo to avoid issues due to namespace
5351 # conflicts between -lGL and -framework OpenGL
5352 echocheck "OpenGL"
5353 #Note: this test is run even with --enable-gl since we autodetect linker flags
5354 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5355 cat > $TMPC << EOF
5356 #ifdef GL_WIN32
5357 #include <windows.h>
5358 #include <GL/gl.h>
5359 #elif defined(GL_SDL)
5360 #include <GL/gl.h>
5361 #ifdef CONFIG_SDL_SDL_H
5362 #include <SDL/SDL.h>
5363 #else
5364 #include <SDL.h>
5365 #endif
5366 #ifndef __APPLE__
5367 // we allow SDL hacking our main() only on OSX
5368 #undef main
5369 #endif
5370 #else
5371 #include <GL/gl.h>
5372 #include <X11/Xlib.h>
5373 #include <GL/glx.h>
5374 #endif
5375 int main(void) {
5376 #ifdef GL_WIN32
5377 HDC dc;
5378 wglCreateContext(dc);
5379 #elif defined(GL_SDL)
5380 SDL_GL_SwapBuffers();
5381 #else
5382 glXCreateContext(NULL, NULL, NULL, True);
5383 #endif
5384 glFinish();
5385 return 0;
5388 _gl=no
5389 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5390 if cc_check $_ld_tmp $_ld_lm ; then
5391 _gl=yes
5392 _gl_x11=yes
5393 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5394 break
5396 done
5397 if cc_check -DGL_WIN32 -lopengl32 ; then
5398 _gl=yes
5399 _gl_win32=yes
5400 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5402 # last so it can reuse any linker etc. flags detected before
5403 if test "$_sdl" = yes ; then
5404 if cc_check -DGL_SDL ||
5405 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5406 _gl=yes
5407 _gl_sdl=yes
5408 elif cc_check -DGL_SDL -lGL ||
5409 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5410 _gl=yes
5411 _gl_sdl=yes
5412 libs_mplayer="$libs_mplayer -lGL"
5415 else
5416 _gl=no
5418 if test "$_gl" = yes ; then
5419 def_gl='#define CONFIG_GL 1'
5420 res_comment="backends:"
5421 if test "$_gl_win32" = yes ; then
5422 def_gl_win32='#define CONFIG_GL_WIN32 1'
5423 res_comment="$res_comment win32"
5425 if test "$_gl_x11" = yes ; then
5426 def_gl_x11='#define CONFIG_GL_X11 1'
5427 res_comment="$res_comment x11"
5429 if test "$_gl_sdl" = yes ; then
5430 def_gl_sdl='#define CONFIG_GL_SDL 1'
5431 res_comment="$res_comment sdl"
5433 vomodules="opengl $vomodules"
5434 else
5435 def_gl='#undef CONFIG_GL'
5436 def_gl_win32='#undef CONFIG_GL_WIN32'
5437 def_gl_x11='#undef CONFIG_GL_X11'
5438 def_gl_sdl='#undef CONFIG_GL_SDL'
5439 novomodules="opengl $novomodules"
5441 echores "$_gl"
5444 echocheck "MatrixView"
5445 if test "$_gl" = no ; then
5446 matrixview=no
5448 if test "$matrixview" = yes ; then
5449 vomodules="matrixview $vomodules"
5450 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5451 else
5452 novomodules="matrixview $novomodules"
5453 def_matrixview='#undef CONFIG_MATRIXVIEW'
5455 echores "$matrixview"
5458 if os2 ; then
5459 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5460 if test "$_kva" = auto; then
5461 cat > $TMPC << EOF
5462 #include <os2.h>
5463 #include <kva.h>
5464 int main( void ) { return 0; }
5466 _kva=no;
5467 cc_check -lkva && _kva=yes
5469 if test "$_kva" = yes ; then
5470 def_kva='#define CONFIG_KVA 1'
5471 libs_mplayer="$libs_mplayer -lkva"
5472 vomodules="kva $vomodules"
5473 else
5474 def_kva='#undef CONFIG_KVA'
5475 novomodules="kva $novomodules"
5477 echores "$_kva"
5478 fi #if os2
5481 if win32; then
5483 echocheck "Windows waveout"
5484 if test "$_win32waveout" = auto ; then
5485 cat > $TMPC << EOF
5486 #include <windows.h>
5487 #include <mmsystem.h>
5488 int main(void) { return 0; }
5490 _win32waveout=no
5491 cc_check -lwinmm && _win32waveout=yes
5493 if test "$_win32waveout" = yes ; then
5494 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5495 libs_mplayer="$libs_mplayer -lwinmm"
5496 aomodules="win32 $aomodules"
5497 else
5498 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5499 noaomodules="win32 $noaomodules"
5501 echores "$_win32waveout"
5503 echocheck "Direct3D"
5504 if test "$_direct3d" = auto ; then
5505 cat > $TMPC << EOF
5506 #include <windows.h>
5507 #include <d3d9.h>
5508 int main(void) { return 0; }
5510 _direct3d=no
5511 cc_check && _direct3d=yes
5513 if test "$_direct3d" = yes ; then
5514 def_direct3d='#define CONFIG_DIRECT3D 1'
5515 vomodules="direct3d $vomodules"
5516 else
5517 def_direct3d='#undef CONFIG_DIRECT3D'
5518 novomodules="direct3d $novomodules"
5520 echores "$_direct3d"
5522 echocheck "Directx"
5523 if test "$_directx" = auto ; then
5524 cat > $TMPC << EOF
5525 #include <windows.h>
5526 #include <ddraw.h>
5527 #include <dsound.h>
5528 int main(void) { return 0; }
5530 _directx=no
5531 cc_check -lgdi32 && _directx=yes
5533 if test "$_directx" = yes ; then
5534 def_directx='#define CONFIG_DIRECTX 1'
5535 libs_mplayer="$libs_mplayer -lgdi32"
5536 vomodules="directx $vomodules"
5537 aomodules="dsound $aomodules"
5538 else
5539 def_directx='#undef CONFIG_DIRECTX'
5540 novomodules="directx $novomodules"
5541 noaomodules="dsound $noaomodules"
5543 echores "$_directx"
5545 fi #if win32; then
5548 echocheck "DXR2"
5549 if test "$_dxr2" = auto; then
5550 _dxr2=no
5551 cat > $TMPC << EOF
5552 #include <dxr2ioctl.h>
5553 int main(void) { return 0; }
5555 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5556 cc_check $_inc_tmp && _dxr2=yes && \
5557 extra_cflags="$extra_cflags $_inc_tmp" && break
5558 done
5560 if test "$_dxr2" = yes; then
5561 def_dxr2='#define CONFIG_DXR2 1'
5562 aomodules="dxr2 $aomodules"
5563 vomodules="dxr2 $vomodules"
5564 else
5565 def_dxr2='#undef CONFIG_DXR2'
5566 noaomodules="dxr2 $noaomodules"
5567 novomodules="dxr2 $novomodules"
5569 echores "$_dxr2"
5571 echocheck "DXR3/H+"
5572 if test "$_dxr3" = auto ; then
5573 cat > $TMPC << EOF
5574 #include <linux/em8300.h>
5575 int main(void) { return 0; }
5577 _dxr3=no
5578 cc_check && _dxr3=yes
5580 if test "$_dxr3" = yes ; then
5581 def_dxr3='#define CONFIG_DXR3 1'
5582 vomodules="dxr3 $vomodules"
5583 else
5584 def_dxr3='#undef CONFIG_DXR3'
5585 novomodules="dxr3 $novomodules"
5587 echores "$_dxr3"
5590 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5591 if test "$_ivtv" = auto ; then
5592 cat > $TMPC << EOF
5593 #include <stdlib.h>
5594 #include <inttypes.h>
5595 #include <linux/types.h>
5596 #include <linux/videodev2.h>
5597 #include <linux/ivtv.h>
5598 #include <sys/ioctl.h>
5599 int main(void) {
5600 struct ivtv_cfg_stop_decode sd;
5601 struct ivtv_cfg_start_decode sd1;
5602 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5603 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5604 return 0; }
5606 _ivtv=no
5607 cc_check && _ivtv=yes
5609 if test "$_ivtv" = yes ; then
5610 def_ivtv='#define CONFIG_IVTV 1'
5611 vomodules="ivtv $vomodules"
5612 aomodules="ivtv $aomodules"
5613 else
5614 def_ivtv='#undef CONFIG_IVTV'
5615 novomodules="ivtv $novomodules"
5616 noaomodules="ivtv $noaomodules"
5618 echores "$_ivtv"
5621 echocheck "V4L2 MPEG Decoder"
5622 if test "$_v4l2" = auto ; then
5623 cat > $TMPC << EOF
5624 #include <stdlib.h>
5625 #include <inttypes.h>
5626 #include <linux/types.h>
5627 #include <linux/videodev2.h>
5628 #include <linux/version.h>
5629 int main(void) {
5630 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5631 #error kernel headers too old, need 2.6.22
5632 #endif
5633 struct v4l2_ext_controls ctrls;
5634 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5635 return 0;
5638 _v4l2=no
5639 cc_check && _v4l2=yes
5641 if test "$_v4l2" = yes ; then
5642 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5643 vomodules="v4l2 $vomodules"
5644 aomodules="v4l2 $aomodules"
5645 else
5646 def_v4l2='#undef CONFIG_V4L2_DECODER'
5647 novomodules="v4l2 $novomodules"
5648 noaomodules="v4l2 $noaomodules"
5650 echores "$_v4l2"
5654 #########
5655 # AUDIO #
5656 #########
5659 echocheck "OSS Audio"
5660 if test "$_ossaudio" = auto ; then
5661 cat > $TMPC << EOF
5662 #include <sys/ioctl.h>
5663 #include <$_soundcard_header>
5664 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5666 _ossaudio=no
5667 cc_check && _ossaudio=yes
5669 if test "$_ossaudio" = yes ; then
5670 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5671 aomodules="oss $aomodules"
5672 if test "$_linux_devfs" = yes; then
5673 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5674 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5675 else
5676 cat > $TMPC << EOF
5677 #include <sys/ioctl.h>
5678 #include <$_soundcard_header>
5679 #ifdef OPEN_SOUND_SYSTEM
5680 int main(void) { return 0; }
5681 #else
5682 #error Not the real thing
5683 #endif
5685 _real_ossaudio=no
5686 cc_check && _real_ossaudio=yes
5687 if test "$_real_ossaudio" = yes; then
5688 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5689 elif netbsd || openbsd ; then
5690 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5691 extra_ldflags="$extra_ldflags -lossaudio"
5692 else
5693 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5695 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5697 else
5698 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5699 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5700 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5701 noaomodules="oss $noaomodules"
5703 echores "$_ossaudio"
5706 echocheck "aRts"
5707 if test "$_arts" = auto ; then
5708 _arts=no
5709 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5711 cat > $TMPC << EOF
5712 #include <artsc.h>
5713 int main(void) { return 0; }
5715 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5720 if test "$_arts" = yes ; then
5721 def_arts='#define CONFIG_ARTS 1'
5722 aomodules="arts $aomodules"
5723 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5724 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5725 else
5726 noaomodules="arts $noaomodules"
5728 echores "$_arts"
5731 echocheck "EsounD"
5732 if test "$_esd" = auto ; then
5733 _esd=no
5734 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5736 cat > $TMPC << EOF
5737 #include <esd.h>
5738 int main(void) { int fd = esd_open_sound("test"); return fd; }
5740 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5744 echores "$_esd"
5746 if test "$_esd" = yes ; then
5747 def_esd='#define CONFIG_ESD 1'
5748 aomodules="esd $aomodules"
5749 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5750 extra_cflags="$extra_cflags $(esd-config --cflags)"
5752 echocheck "esd_get_latency()"
5753 cat > $TMPC << EOF
5754 #include <esd.h>
5755 int main(void) { return esd_get_latency(0); }
5757 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5758 echores "$_esd_latency"
5759 else
5760 def_esd='#undef CONFIG_ESD'
5761 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5762 noaomodules="esd $noaomodules"
5766 echocheck "NAS"
5767 if test "$_nas" = auto ; then
5768 cat > $TMPC << EOF
5769 #include <audio/audiolib.h>
5770 int main(void) { return 0; }
5772 _nas=no
5773 cc_check $_ld_lm -laudio -lXt && _nas=yes
5775 if test "$_nas" = yes ; then
5776 def_nas='#define CONFIG_NAS 1'
5777 libs_mplayer="$libs_mplayer -laudio -lXt"
5778 aomodules="nas $aomodules"
5779 else
5780 noaomodules="nas $noaomodules"
5781 def_nas='#undef CONFIG_NAS'
5783 echores "$_nas"
5786 echocheck "pulse"
5787 if test "$_pulse" = auto ; then
5788 _pulse=no
5789 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5791 cat > $TMPC << EOF
5792 #include <pulse/pulseaudio.h>
5793 int main(void) { return 0; }
5795 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5799 echores "$_pulse"
5801 if test "$_pulse" = yes ; then
5802 def_pulse='#define CONFIG_PULSE 1'
5803 aomodules="pulse $aomodules"
5804 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5805 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5806 else
5807 def_pulse='#undef CONFIG_PULSE'
5808 noaomodules="pulse $noaomodules"
5812 echocheck "JACK"
5813 if test "$_jack" = auto ; then
5814 _jack=yes
5816 cat > $TMPC << EOF
5817 #include <jack/jack.h>
5818 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5820 if cc_check -ljack ; then
5821 libs_mplayer="$libs_mplayer -ljack"
5822 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5823 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5824 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5825 else
5826 _jack=no
5830 if test "$_jack" = yes ; then
5831 def_jack='#define CONFIG_JACK 1'
5832 aomodules="jack $aomodules"
5833 else
5834 noaomodules="jack $noaomodules"
5836 echores "$_jack"
5838 echocheck "OpenAL"
5839 if test "$_openal" = auto ; then
5840 _openal=no
5841 cat > $TMPC << EOF
5842 #ifdef OPENAL_AL_H
5843 #include <OpenAL/al.h>
5844 #else
5845 #include <AL/al.h>
5846 #endif
5847 int main(void) {
5848 alSourceQueueBuffers(0, 0, 0);
5849 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5850 return 0;
5853 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5854 cc_check $I && _openal=yes && break
5855 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5856 done
5857 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5859 if test "$_openal" = yes ; then
5860 def_openal='#define CONFIG_OPENAL 1'
5861 aomodules="openal $aomodules"
5862 else
5863 noaomodules="openal $noaomodules"
5865 echores "$_openal"
5867 echocheck "ALSA audio"
5868 if test "$_alloca" != yes ; then
5869 _alsa=no
5870 res_comment="alloca missing"
5872 if test "$_alsa" != no ; then
5873 _alsa=no
5874 cat > $TMPC << EOF
5875 #include <sys/time.h>
5876 #include <sys/asoundlib.h>
5877 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5878 #error "alsa version != 0.5.x"
5879 #endif
5880 int main(void) { return 0; }
5882 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5884 cat > $TMPC << EOF
5885 #include <sys/time.h>
5886 #include <sys/asoundlib.h>
5887 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5888 #error "alsa version != 0.9.x"
5889 #endif
5890 int main(void) { return 0; }
5892 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5893 cat > $TMPC << EOF
5894 #include <sys/time.h>
5895 #include <alsa/asoundlib.h>
5896 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5897 #error "alsa version != 0.9.x"
5898 #endif
5899 int main(void) { return 0; }
5901 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5903 cat > $TMPC << EOF
5904 #include <sys/time.h>
5905 #include <sys/asoundlib.h>
5906 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5907 #error "alsa version != 1.0.x"
5908 #endif
5909 int main(void) { return 0; }
5911 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5912 cat > $TMPC << EOF
5913 #include <sys/time.h>
5914 #include <alsa/asoundlib.h>
5915 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5916 #error "alsa version != 1.0.x"
5917 #endif
5918 int main(void) { return 0; }
5920 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5922 def_alsa='#undef CONFIG_ALSA'
5923 def_alsa5='#undef CONFIG_ALSA5'
5924 def_alsa9='#undef CONFIG_ALSA9'
5925 def_alsa1x='#undef CONFIG_ALSA1X'
5926 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5927 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5928 if test "$_alsaver" ; then
5929 _alsa=yes
5930 if test "$_alsaver" = '0.5.x' ; then
5931 _alsa5=yes
5932 aomodules="alsa5 $aomodules"
5933 def_alsa5='#define CONFIG_ALSA5 1'
5934 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5935 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5936 elif test "$_alsaver" = '0.9.x-sys' ; then
5937 _alsa9=yes
5938 aomodules="alsa $aomodules"
5939 def_alsa='#define CONFIG_ALSA 1'
5940 def_alsa9='#define CONFIG_ALSA9 1'
5941 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5942 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5943 elif test "$_alsaver" = '0.9.x-alsa' ; then
5944 _alsa9=yes
5945 aomodules="alsa $aomodules"
5946 def_alsa='#define CONFIG_ALSA 1'
5947 def_alsa9='#define CONFIG_ALSA9 1'
5948 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5949 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5950 elif test "$_alsaver" = '1.0.x-sys' ; then
5951 _alsa1x=yes
5952 aomodules="alsa $aomodules"
5953 def_alsa='#define CONFIG_ALSA 1'
5954 def_alsa1x="#define CONFIG_ALSA1X 1"
5955 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5956 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5957 elif test "$_alsaver" = '1.0.x-alsa' ; then
5958 _alsa1x=yes
5959 aomodules="alsa $aomodules"
5960 def_alsa='#define CONFIG_ALSA 1'
5961 def_alsa1x="#define CONFIG_ALSA1X 1"
5962 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5963 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5964 else
5965 _alsa=no
5966 res_comment="unknown version"
5968 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5969 else
5970 noaomodules="alsa $noaomodules"
5972 echores "$_alsa"
5975 echocheck "Sun audio"
5976 if test "$_sunaudio" = auto ; then
5977 cat > $TMPC << EOF
5978 #include <sys/types.h>
5979 #include <sys/audioio.h>
5980 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5982 _sunaudio=no
5983 cc_check && _sunaudio=yes
5985 if test "$_sunaudio" = yes ; then
5986 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5987 aomodules="sun $aomodules"
5988 else
5989 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5990 noaomodules="sun $noaomodules"
5992 echores "$_sunaudio"
5995 def_mlib='#define CONFIG_MLIB 0'
5996 if sunos; then
5997 echocheck "Sun mediaLib"
5998 if test "$_mlib" = auto ; then
5999 _mlib=no
6000 cat > $TMPC << EOF
6001 #include <mlib.h>
6002 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
6004 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
6006 echores "$_mlib"
6007 fi #if sunos
6010 if darwin; then
6011 echocheck "CoreAudio"
6012 if test "$_coreaudio" = auto ; then
6013 cat > $TMPC <<EOF
6014 #include <CoreAudio/CoreAudio.h>
6015 #include <AudioToolbox/AudioToolbox.h>
6016 #include <AudioUnit/AudioUnit.h>
6017 int main(void) { return 0; }
6019 _coreaudio=no
6020 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
6022 if test "$_coreaudio" = yes ; then
6023 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
6024 def_coreaudio='#define CONFIG_COREAUDIO 1'
6025 aomodules="coreaudio $aomodules"
6026 else
6027 def_coreaudio='#undef CONFIG_COREAUDIO'
6028 noaomodules="coreaudio $noaomodules"
6030 echores $_coreaudio
6031 fi #if darwin
6034 if irix; then
6035 echocheck "SGI audio"
6036 if test "$_sgiaudio" = auto ; then
6037 # check for SGI audio
6038 cat > $TMPC << EOF
6039 #include <dmedia/audio.h>
6040 int main(void) { return 0; }
6042 _sgiaudio=no
6043 cc_check && _sgiaudio=yes
6045 if test "$_sgiaudio" = "yes" ; then
6046 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
6047 libs_mplayer="$libs_mplayer -laudio"
6048 aomodules="sgi $aomodules"
6049 else
6050 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
6051 noaomodules="sgi $noaomodules"
6053 echores "$_sgiaudio"
6054 fi #if irix
6057 if os2 ; then
6058 echocheck "KAI (UNIAUD/DART)"
6059 if test "$_kai" = auto; then
6060 cat > $TMPC << EOF
6061 #include <os2.h>
6062 #include <kai.h>
6063 int main(void) { return 0; }
6065 _kai=no;
6066 cc_check -lkai && _kai=yes
6068 if test "$_kai" = yes ; then
6069 def_kai='#define CONFIG_KAI 1'
6070 libs_mplayer="$libs_mplayer -lkai"
6071 aomodules="kai $aomodules"
6072 else
6073 def_kai='#undef CONFIG_KAI'
6074 noaomodules="kai $noaomodules"
6076 echores "$_kai"
6078 echocheck "DART"
6079 if test "$_dart" = auto; then
6080 cat > $TMPC << EOF
6081 #include <os2.h>
6082 #include <dart.h>
6083 int main( void ) { return 0; }
6085 _dart=no;
6086 cc_check -ldart && _dart=yes
6088 if test "$_dart" = yes ; then
6089 def_dart='#define CONFIG_DART 1'
6090 libs_mplayer="$libs_mplayer -ldart"
6091 aomodules="dart $aomodules"
6092 else
6093 def_dart='#undef CONFIG_DART'
6094 noaomodules="dart $noaomodules"
6096 echores "$_dart"
6097 fi #if os2
6100 # set default CD/DVD devices
6101 if win32 || os2 ; then
6102 default_cdrom_device="D:"
6103 elif darwin ; then
6104 default_cdrom_device="/dev/disk1"
6105 elif dragonfly ; then
6106 default_cdrom_device="/dev/cd0"
6107 elif freebsd ; then
6108 default_cdrom_device="/dev/acd0"
6109 elif openbsd ; then
6110 default_cdrom_device="/dev/rcd0a"
6111 elif sunos ; then
6112 default_cdrom_device="/vol/dev/aliases/cdrom0"
6113 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
6114 # file system and the volfs service.
6115 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
6116 elif amigaos ; then
6117 default_cdrom_device="a1ide.device:2"
6118 else
6119 default_cdrom_device="/dev/cdrom"
6122 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
6123 default_dvd_device=$default_cdrom_device
6124 elif darwin ; then
6125 default_dvd_device="/dev/rdiskN"
6126 else
6127 default_dvd_device="/dev/dvd"
6131 echocheck "VCD support"
6132 if test "$_vcd" = auto; then
6133 _vcd=no
6134 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
6135 _vcd=yes
6136 elif mingw32; then
6137 cat > $TMPC << EOF
6138 #include <ddk/ntddcdrm.h>
6139 int main(void) { return 0; }
6141 cc_check && _vcd=yes
6144 if test "$_vcd" = yes; then
6145 inputmodules="vcd $inputmodules"
6146 def_vcd='#define CONFIG_VCD 1'
6147 else
6148 def_vcd='#undef CONFIG_VCD'
6149 noinputmodules="vcd $noinputmodules"
6150 res_comment="not supported on this OS"
6152 echores "$_vcd"
6156 echocheck "dvdread"
6157 if test "$_dvdread_internal" = auto ; then
6158 _dvdread_internal=no
6159 _dvdread=no
6160 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
6161 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
6162 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
6163 || darwin || win32 || os2; then
6164 _dvdread_internal=yes
6165 _dvdread=yes
6166 extra_cflags="-Ilibdvdread4 $extra_cflags"
6168 elif test "$_dvdread" = auto ; then
6169 _dvdread=no
6170 if test "$_dl" = yes; then
6171 cat > $TMPC << EOF
6172 #include <inttypes.h>
6173 #include <dvdread/dvd_reader.h>
6174 #include <dvdread/ifo_types.h>
6175 #include <dvdread/ifo_read.h>
6176 #include <dvdread/nav_read.h>
6177 int main(void) { return 0; }
6179 _dvdreadcflags=$($_dvdreadconfig --cflags)
6180 _dvdreadlibs=$($_dvdreadconfig --libs)
6181 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
6182 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
6183 _dvdread=yes
6184 extra_cflags="$extra_cflags $_dvdreadcflags"
6185 extra_ldflags="$extra_ldflags $_dvdreadlibs"
6186 res_comment="external"
6191 if test "$_dvdread_internal" = yes; then
6192 def_dvdread='#define CONFIG_DVDREAD 1'
6193 inputmodules="dvdread(internal) $inputmodules"
6194 _largefiles=yes
6195 res_comment="internal"
6196 elif test "$_dvdread" = yes; then
6197 def_dvdread='#define CONFIG_DVDREAD 1'
6198 _largefiles=yes
6199 extra_ldflags="$extra_ldflags -ldvdread"
6200 inputmodules="dvdread(external) $inputmodules"
6201 res_comment="external"
6202 else
6203 def_dvdread='#undef CONFIG_DVDREAD'
6204 noinputmodules="dvdread $noinputmodules"
6206 echores "$_dvdread"
6209 echocheck "internal libdvdcss"
6210 if test "$_libdvdcss_internal" = auto ; then
6211 _libdvdcss_internal=no
6212 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
6213 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
6215 if test "$_libdvdcss_internal" = yes ; then
6216 if linux || netbsd || openbsd || bsdos ; then
6217 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
6218 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
6219 elif freebsd || dragonfly ; then
6220 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
6221 elif darwin ; then
6222 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
6223 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
6224 elif cygwin ; then
6225 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
6226 elif beos ; then
6227 cflags_libdvdcss="-DSYS_BEOS"
6228 elif os2 ; then
6229 cflags_libdvdcss="-DSYS_OS2"
6231 cflags_libdvdcss_dvdread="-Ilibdvdcss"
6232 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
6233 inputmodules="libdvdcss(internal) $inputmodules"
6234 _largefiles=yes
6235 else
6236 noinputmodules="libdvdcss(internal) $noinputmodules"
6238 echores "$_libdvdcss_internal"
6241 echocheck "cdparanoia"
6242 if test "$_cdparanoia" = auto ; then
6243 cat > $TMPC <<EOF
6244 #include <cdda_interface.h>
6245 #include <cdda_paranoia.h>
6246 // This need a better test. How ?
6247 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
6249 _cdparanoia=no
6250 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
6251 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
6252 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
6253 done
6255 if test "$_cdparanoia" = yes ; then
6256 _cdda='yes'
6257 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
6258 openbsd && extra_ldflags="$extra_ldflags -lutil"
6260 echores "$_cdparanoia"
6263 echocheck "libcdio"
6264 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
6265 cat > $TMPC << EOF
6266 #include <stdio.h>
6267 #include <cdio/version.h>
6268 #include <cdio/cdda.h>
6269 #include <cdio/paranoia.h>
6270 int main(void) {
6271 void *test = cdda_verbose_set;
6272 printf("%s\n", CDIO_VERSION);
6273 return test == (void *)1;
6276 _libcdio=no
6277 for _ld_tmp in "" "-lwinmm" ; do
6278 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6279 cc_check $_ld_tmp $_ld_lm \
6280 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6281 done
6282 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6283 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6284 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6285 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6286 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6289 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6290 _cdda='yes'
6291 def_libcdio='#define CONFIG_LIBCDIO 1'
6292 def_havelibcdio='yes'
6293 else
6294 if test "$_cdparanoia" = yes ; then
6295 res_comment="using cdparanoia"
6297 def_libcdio='#undef CONFIG_LIBCDIO'
6298 def_havelibcdio='no'
6300 echores "$_libcdio"
6302 if test "$_cdda" = yes ; then
6303 test $_cddb = auto && test $_network = yes && _cddb=yes
6304 def_cdparanoia='#define CONFIG_CDDA 1'
6305 inputmodules="cdda $inputmodules"
6306 else
6307 def_cdparanoia='#undef CONFIG_CDDA'
6308 noinputmodules="cdda $noinputmodules"
6311 if test "$_cddb" = yes ; then
6312 def_cddb='#define CONFIG_CDDB 1'
6313 inputmodules="cddb $inputmodules"
6314 else
6315 _cddb=no
6316 def_cddb='#undef CONFIG_CDDB'
6317 noinputmodules="cddb $noinputmodules"
6320 echocheck "bitmap font support"
6321 if test "$_bitmap_font" = yes ; then
6322 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6323 else
6324 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6326 echores "$_bitmap_font"
6329 echocheck "freetype >= 2.0.9"
6331 # freetype depends on iconv
6332 if test "$_iconv" = no ; then
6333 _freetype=no
6334 res_comment="iconv support needed"
6337 if test "$_freetype" = auto ; then
6338 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6339 cat > $TMPC << EOF
6340 #include <stdio.h>
6341 #include <ft2build.h>
6342 #include FT_FREETYPE_H
6343 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6344 #error "Need FreeType 2.0.9 or newer"
6345 #endif
6346 int main(void) {
6347 FT_Library library;
6348 FT_Int major=-1,minor=-1,patch=-1;
6349 int err=FT_Init_FreeType(&library);
6350 return 0;
6353 _freetype=no
6354 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6355 else
6356 _freetype=no
6359 if test "$_freetype" = yes ; then
6360 def_freetype='#define CONFIG_FREETYPE 1'
6361 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6362 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6363 else
6364 def_freetype='#undef CONFIG_FREETYPE'
6366 echores "$_freetype"
6368 if test "$_freetype" = no ; then
6369 _fontconfig=no
6370 res_comment="FreeType support needed"
6372 echocheck "fontconfig"
6373 if test "$_fontconfig" = auto ; then
6374 cat > $TMPC << EOF
6375 #include <stdio.h>
6376 #include <stdlib.h>
6377 #include <fontconfig/fontconfig.h>
6378 #if FC_VERSION < 20402
6379 #error At least version 2.4.2 of fontconfig required
6380 #endif
6381 int main(void) {
6382 int err = FcInit();
6383 if (err == FcFalse) {
6384 printf("Couldn't initialize fontconfig lib\n");
6385 exit(err);
6387 return 0;
6390 _fontconfig=no
6391 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6392 _ld_tmp="-lfontconfig $_ld_tmp"
6393 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6394 done
6395 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6396 _inc_tmp=$($_pkg_config --cflags fontconfig)
6397 _ld_tmp=$($_pkg_config --libs fontconfig)
6398 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6399 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6402 if test "$_fontconfig" = yes ; then
6403 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6404 else
6405 def_fontconfig='#undef CONFIG_FONTCONFIG'
6407 echores "$_fontconfig"
6410 echocheck "SSA/ASS support"
6411 # libass depends on FreeType
6412 if test "$_freetype" = no ; then
6413 _ass=no
6414 ass_internal=no
6415 res_comment="FreeType support needed"
6418 if test "$_ass" = auto ; then
6419 cat > $TMPC << EOF
6420 #include <ft2build.h>
6421 #include FT_FREETYPE_H
6422 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1)))
6423 #error "Need FreeType 2.2.1 or newer"
6424 #endif
6425 int main(void) { return 0; }
6427 _ass=no
6428 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes
6429 if test "$_ass" = no ; then
6430 ass_internal=no
6431 res_comment="FreeType >= 2.2.1 needed"
6432 elif test "$ass_internal" = no ; then
6433 cat > $TMPC << EOF
6434 #include <ass/ass.h>
6435 int main(void) {
6436 #if defined(LIBASS_VERSION) && LIBASS_VERSION >= 0x00907010
6437 ass_process_force_style(0);
6438 #else
6439 process_force_style(0);
6440 #endif
6441 return 0;
6444 if cc_check -lass ; then
6445 res_comment="external"
6446 extra_ldflags="$extra_ldflags -lass"
6447 else
6448 _ass=no
6452 if test "$_ass" = yes ; then
6453 def_ass='#define CONFIG_ASS 1'
6454 else
6455 def_ass='#undef CONFIG_ASS'
6457 if test "$ass_internal" = yes ; then
6458 def_ass_internal='#define CONFIG_ASS_INTERNAL 1'
6459 else
6460 def_ass_internal='#undef CONFIG_ASS_INTERNAL'
6462 echores "$_ass"
6465 echocheck "fribidi with charsets"
6466 _inc_tmp=""
6467 _ld_tmp=""
6468 if test "$_fribidi" = auto ; then
6469 cat > $TMPC << EOF
6470 #include <stdio.h>
6471 #include <stdlib.h>
6472 /* workaround for fribidi 0.10.4 and below */
6473 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6474 #include <fribidi/fribidi.h>
6475 int main(void) {
6476 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6477 printf("Fribidi headers are not consistents with the library!\n");
6478 exit(1);
6480 return 0;
6483 _fribidi=no
6484 _inc_tmp=""
6485 _ld_tmp="-lfribidi"
6486 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6487 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6488 test "$_fribidi" = no ; then
6489 _inc_tmp="$($_pkg_config --cflags)"
6490 _ld_tmp="$($_pkg_config --libs)"
6491 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6494 if test "$_fribidi" = yes ; then
6495 def_fribidi='#define CONFIG_FRIBIDI 1'
6496 extra_cflags="$extra_cflags $_inc_tmp"
6497 extra_ldflags="$extra_ldflags $_ld_tmp"
6498 else
6499 def_fribidi='#undef CONFIG_FRIBIDI'
6501 echores "$_fribidi"
6504 echocheck "ENCA"
6505 if test "$_enca" = auto ; then
6506 cat > $TMPC << EOF
6507 #include <sys/types.h>
6508 #include <enca.h>
6509 int main(void) {
6510 const char **langs;
6511 size_t langcnt;
6512 langs = enca_get_languages(&langcnt);
6513 return 0;
6516 _enca=no
6517 cc_check -lenca $_ld_lm && _enca=yes
6519 if test "$_enca" = yes ; then
6520 def_enca='#define CONFIG_ENCA 1'
6521 extra_ldflags="$extra_ldflags -lenca"
6522 else
6523 def_enca='#undef CONFIG_ENCA'
6525 echores "$_enca"
6528 echocheck "zlib"
6529 cat > $TMPC << EOF
6530 #include <zlib.h>
6531 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6533 _zlib=no
6534 cc_check -lz && _zlib=yes
6535 if test "$_zlib" = yes ; then
6536 def_zlib='#define CONFIG_ZLIB 1'
6537 extra_ldflags="$extra_ldflags -lz"
6538 else
6539 def_zlib='#define CONFIG_ZLIB 0'
6540 _libavdecoders=$(echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/ZLIB_DECODER// -e s/DXA_DECODER// -e s/TSCC_DECODER//)
6541 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// -e s/ZLIB_ENCODER//)
6543 echores "$_zlib"
6546 echocheck "bzlib"
6547 bzlib=no
6548 def_bzlib='#define CONFIG_BZLIB 0'
6549 cat > $TMPC << EOF
6550 #include <bzlib.h>
6551 int main(void) { BZ2_bzlibVersion(); return 0; }
6553 cc_check -lbz2 && bzlib=yes
6554 if test "$bzlib" = yes ; then
6555 def_bzlib='#define CONFIG_BZLIB 1'
6556 extra_ldflags="$extra_ldflags -lbz2"
6558 echores "$bzlib"
6561 echocheck "RTC"
6562 if test "$_rtc" = auto ; then
6563 cat > $TMPC << EOF
6564 #include <sys/ioctl.h>
6565 #ifdef __linux__
6566 #include <linux/rtc.h>
6567 #else
6568 #include <rtc.h>
6569 #define RTC_PIE_ON RTCIO_PIE_ON
6570 #endif
6571 int main(void) { return RTC_PIE_ON; }
6573 _rtc=no
6574 cc_check && _rtc=yes
6575 ppc && _rtc=no
6577 if test "$_rtc" = yes ; then
6578 def_rtc='#define HAVE_RTC 1'
6579 else
6580 def_rtc='#undef HAVE_RTC'
6582 echores "$_rtc"
6585 echocheck "liblzo2 support"
6586 if test "$_liblzo" = auto ; then
6587 _liblzo=no
6588 cat > $TMPC << EOF
6589 #include <lzo/lzo1x.h>
6590 int main(void) { lzo_init();return 0; }
6592 cc_check -llzo2 && _liblzo=yes
6594 if test "$_liblzo" = yes ; then
6595 def_liblzo='#define CONFIG_LIBLZO 1'
6596 extra_ldflags="$extra_ldflags -llzo2"
6597 codecmodules="liblzo $codecmodules"
6598 else
6599 def_liblzo='#undef CONFIG_LIBLZO'
6600 nocodecmodules="liblzo $nocodecmodules"
6602 echores "$_liblzo"
6605 echocheck "mad support"
6606 if test "$_mad" = auto ; then
6607 _mad=no
6608 cat > $TMPC << EOF
6609 #include <mad.h>
6610 int main(void) { return 0; }
6612 cc_check -lmad && _mad=yes
6614 if test "$_mad" = yes ; then
6615 def_mad='#define CONFIG_LIBMAD 1'
6616 extra_ldflags="$extra_ldflags -lmad"
6617 codecmodules="libmad $codecmodules"
6618 else
6619 def_mad='#undef CONFIG_LIBMAD'
6620 nocodecmodules="libmad $nocodecmodules"
6622 echores "$_mad"
6624 echocheck "Twolame"
6625 if test "$_twolame" = auto ; then
6626 cat > $TMPC <<EOF
6627 #include <twolame.h>
6628 int main(void) { twolame_init(); return 0; }
6630 _twolame=no
6631 cc_check -ltwolame $_ld_lm && _twolame=yes
6633 if test "$_twolame" = yes ; then
6634 def_twolame='#define CONFIG_TWOLAME 1'
6635 libs_mencoder="$libs_mencoder -ltwolame"
6636 codecmodules="twolame $codecmodules"
6637 else
6638 def_twolame='#undef CONFIG_TWOLAME'
6639 nocodecmodules="twolame $nocodecmodules"
6641 echores "$_twolame"
6643 echocheck "Toolame"
6644 if test "$_toolame" = auto ; then
6645 _toolame=no
6646 if test "$_twolame" = yes ; then
6647 res_comment="disabled by twolame"
6648 else
6649 cat > $TMPC <<EOF
6650 #include <toolame.h>
6651 int main(void) { toolame_init(); return 0; }
6653 cc_check -ltoolame $_ld_lm && _toolame=yes
6656 if test "$_toolame" = yes ; then
6657 def_toolame='#define CONFIG_TOOLAME 1'
6658 libs_mencoder="$libs_mencoder -ltoolame"
6659 codecmodules="toolame $codecmodules"
6660 else
6661 def_toolame='#undef CONFIG_TOOLAME'
6662 nocodecmodules="toolame $nocodecmodules"
6664 if test "$_toolamedir" ; then
6665 res_comment="using $_toolamedir"
6667 echores "$_toolame"
6669 echocheck "OggVorbis support"
6670 if test "$_tremor_internal" = yes; then
6671 _libvorbis=no
6672 elif test "$_tremor" = auto; then
6673 _tremor=no
6674 cat > $TMPC << EOF
6675 #include <tremor/ivorbiscodec.h>
6676 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6678 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6680 if test "$_libvorbis" = auto; then
6681 _libvorbis=no
6682 cat > $TMPC << EOF
6683 #include <vorbis/codec.h>
6684 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6686 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6688 if test "$_tremor_internal" = yes ; then
6689 _vorbis=yes
6690 def_vorbis='#define CONFIG_OGGVORBIS 1'
6691 def_tremor='#define CONFIG_TREMOR 1'
6692 codecmodules="tremor(internal) $codecmodules"
6693 res_comment="internal Tremor"
6694 if test "$_tremor_low" = yes ; then
6695 cflags_tremor_low="-D_LOW_ACCURACY_"
6696 res_comment="internal low accuracy Tremor"
6698 elif test "$_tremor" = yes ; then
6699 _vorbis=yes
6700 def_vorbis='#define CONFIG_OGGVORBIS 1'
6701 def_tremor='#define CONFIG_TREMOR 1'
6702 codecmodules="tremor(external) $codecmodules"
6703 res_comment="external Tremor"
6704 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6705 elif test "$_libvorbis" = yes ; then
6706 _vorbis=yes
6707 def_vorbis='#define CONFIG_OGGVORBIS 1'
6708 codecmodules="libvorbis $codecmodules"
6709 res_comment="libvorbis"
6710 extra_ldflags="$extra_ldflags -lvorbis -logg"
6711 else
6712 _vorbis=no
6713 nocodecmodules="libvorbis $nocodecmodules"
6715 echores "$_vorbis"
6717 echocheck "libspeex (version >= 1.1 required)"
6718 if test "$_speex" = auto ; then
6719 _speex=no
6720 cat > $TMPC << EOF
6721 #include <speex/speex.h>
6722 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6724 cc_check -lspeex $_ld_lm && _speex=yes
6726 if test "$_speex" = yes ; then
6727 def_speex='#define CONFIG_SPEEX 1'
6728 extra_ldflags="$extra_ldflags -lspeex"
6729 codecmodules="speex $codecmodules"
6730 else
6731 def_speex='#undef CONFIG_SPEEX'
6732 nocodecmodules="speex $nocodecmodules"
6734 echores "$_speex"
6736 echocheck "OggTheora support"
6737 if test "$_theora" = auto ; then
6738 _theora=no
6739 cat > $TMPC << EOF
6740 #include <theora/theora.h>
6741 #include <string.h>
6742 int main(void) {
6743 /* Theora is in flux, make sure that all interface routines and datatypes
6744 * exist and work the way we expect it, so we don't break MPlayer. */
6745 ogg_packet op;
6746 theora_comment tc;
6747 theora_info inf;
6748 theora_state st;
6749 yuv_buffer yuv;
6750 int r;
6751 double t;
6753 theora_info_init(&inf);
6754 theora_comment_init(&tc);
6756 return 0;
6758 /* we don't want to execute this kind of nonsense; just for making sure
6759 * that compilation works... */
6760 memset(&op, 0, sizeof(op));
6761 r = theora_decode_header(&inf, &tc, &op);
6762 r = theora_decode_init(&st, &inf);
6763 t = theora_granule_time(&st, op.granulepos);
6764 r = theora_decode_packetin(&st, &op);
6765 r = theora_decode_YUVout(&st, &yuv);
6766 theora_clear(&st);
6768 return 0;
6771 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6772 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6773 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6774 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6775 if test _theora = no; then
6776 _ld_theora="-ltheora -logg"
6777 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6779 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6780 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6781 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6782 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6783 extra_ldflags="$extra_ldflags $_ld_theora" &&
6784 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6785 if test _theora = no; then
6786 _ld_theora="-ltheora -logg"
6787 cc_check tremor/bitwise.c $_ld_theora &&
6788 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6792 if test "$_theora" = yes ; then
6793 def_theora='#define CONFIG_OGGTHEORA 1'
6794 codecmodules="libtheora $codecmodules"
6795 # when --enable-theora is forced, we'd better provide a probably sane
6796 # $_ld_theora than nothing
6797 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6798 else
6799 def_theora='#undef CONFIG_OGGTHEORA'
6800 nocodecmodules="libtheora $nocodecmodules"
6802 echores "$_theora"
6804 echocheck "mp3lib support"
6805 if test "$_mp3lib" = auto ; then
6806 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6808 if test "$_mp3lib" = yes ; then
6809 def_mp3lib='#define CONFIG_MP3LIB 1'
6810 codecmodules="mp3lib(internal) $codecmodules"
6811 else
6812 def_mp3lib='#undef CONFIG_MP3LIB'
6813 nocodecmodules="mp3lib(internal) $nocodecmodules"
6815 echores "$_mp3lib"
6817 echocheck "liba52 support"
6818 def_liba52='#undef CONFIG_LIBA52'
6819 if test "$_liba52" = auto ; then
6820 _liba52=no
6821 cat > $TMPC << EOF
6822 #include <inttypes.h>
6823 #include <a52dec/a52.h>
6824 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6826 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6828 if test "$_liba52" = yes ; then
6829 def_liba52='#define CONFIG_LIBA52 1'
6830 codecmodules="liba52 $codecmodules"
6831 else
6832 nocodecmodules="liba52 $nocodecmodules"
6834 echores "$_liba52"
6836 echocheck "internal libmpeg2 support"
6837 if test "$_libmpeg2" = auto ; then
6838 _libmpeg2=yes
6839 if alpha && test cc_vendor=gnu; then
6840 case $cc_version in
6841 2*|3.0*|3.1*) # cannot compile MVI instructions
6842 _libmpeg2=no
6843 res_comment="broken gcc"
6845 esac
6848 if test "$_libmpeg2" = yes ; then
6849 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6850 codecmodules="libmpeg2(internal) $codecmodules"
6851 else
6852 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6853 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6855 echores "$_libmpeg2"
6857 echocheck "libdca support"
6858 if test "$_libdca" = auto ; then
6859 _libdca=no
6860 cat > $TMPC << EOF
6861 #include <inttypes.h>
6862 #include <dts.h>
6863 int main(void) { dts_init(0); return 0; }
6865 for _ld_dca in -ldca -ldts ; do
6866 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6867 && _libdca=yes && break
6868 done
6870 if test "$_libdca" = yes ; then
6871 def_libdca='#define CONFIG_LIBDCA 1'
6872 codecmodules="libdca $codecmodules"
6873 else
6874 def_libdca='#undef CONFIG_LIBDCA'
6875 nocodecmodules="libdca $nocodecmodules"
6877 echores "$_libdca"
6879 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6880 if test "$_musepack" = auto ; then
6881 _musepack=no
6882 cat > $TMPC << EOF
6883 #include <stddef.h>
6884 #include <mpcdec/mpcdec.h>
6885 int main(void) {
6886 mpc_streaminfo info;
6887 mpc_decoder decoder;
6888 mpc_decoder_set_streaminfo(&decoder, &info);
6889 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6890 return 0;
6893 cc_check -lmpcdec $_ld_lm && _musepack=yes
6895 if test "$_musepack" = yes ; then
6896 def_musepack='#define CONFIG_MUSEPACK 1'
6897 extra_ldflags="$extra_ldflags -lmpcdec"
6898 codecmodules="musepack $codecmodules"
6899 else
6900 def_musepack='#undef CONFIG_MUSEPACK'
6901 nocodecmodules="musepack $nocodecmodules"
6903 echores "$_musepack"
6906 echocheck "FAAC support"
6907 if test "$_faac" = auto ; then
6908 cat > $TMPC <<EOF
6909 #include <inttypes.h>
6910 #include <faac.h>
6911 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6913 _faac=no
6914 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6915 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6916 done
6918 if test "$_faac" = yes ; then
6919 def_faac="#define CONFIG_FAAC 1"
6920 test "$_faac_lavc" = auto && _faac_lavc=yes
6921 if test "$_faac_lavc" = yes ; then
6922 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6923 libs_mplayer="$libs_mplayer $_ld_faac"
6924 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6926 codecmodules="faac $codecmodules"
6927 else
6928 _faac_lavc=no
6929 def_faac="#undef CONFIG_FAAC"
6930 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6931 nocodecmodules="faac $nocodecmodules"
6933 res_comment="in libavcodec: $_faac_lavc"
6934 echores "$_faac"
6937 echocheck "FAAD2 support"
6938 if test "$_faad_internal" = auto ; then
6939 if x86_32 && test cc_vendor=gnu; then
6940 case $cc_version in
6941 3.1*|3.2) # ICE/insn with these versions
6942 _faad_internal=no
6943 res_comment="broken gcc"
6946 _faad=yes
6947 _faad_internal=yes
6949 esac
6950 else
6951 _faad=yes
6952 _faad_internal=yes
6955 if test "$_faad" = auto ; then
6956 cat > $TMPC << EOF
6957 #include <faad.h>
6958 #ifndef FAAD_MIN_STREAMSIZE
6959 #error Too old version
6960 #endif
6961 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6962 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6964 cc_check -lfaad $_ld_lm && _faad=yes
6967 def_faad='#undef CONFIG_FAAD'
6968 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6969 if test "$_faad_internal" = yes ; then
6970 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6971 res_comment="internal floating-point"
6972 if test "$_faad_fixed" = yes ; then
6973 # The FIXED_POINT implementation of FAAD2 improves performance
6974 # on some platforms, especially for SBR files.
6975 cflags_faad_fixed="-DFIXED_POINT"
6976 res_comment="internal fixed-point"
6978 elif test "$_faad" = yes ; then
6979 extra_ldflags="$extra_ldflags -lfaad"
6982 if test "$_faad" = yes ; then
6983 def_faad='#define CONFIG_FAAD 1'
6984 if test "$_faad_internal" = yes ; then
6985 codecmodules="faad2(internal) $codecmodules"
6986 else
6987 codecmodules="faad2 $codecmodules"
6989 else
6990 _faad=no
6991 nocodecmodules="faad2 $nocodecmodules"
6993 echores "$_faad"
6996 echocheck "LADSPA plugin support"
6997 if test "$_ladspa" = auto ; then
6998 cat > $TMPC <<EOF
6999 #include <stdio.h>
7000 #include <ladspa.h>
7001 int main(void) {
7002 const LADSPA_Descriptor *ld = NULL;
7003 return 0;
7006 _ladspa=no
7007 cc_check && _ladspa=yes
7009 if test "$_ladspa" = yes; then
7010 def_ladspa="#define CONFIG_LADSPA 1"
7011 else
7012 def_ladspa="#undef CONFIG_LADSPA"
7014 echores "$_ladspa"
7017 echocheck "libbs2b audio filter support"
7018 if test "$_libbs2b" = auto ; then
7019 cat > $TMPC <<EOF
7020 #include <bs2b.h>
7021 #if BS2B_VERSION_MAJOR < 3
7022 #error Please use libbs2b >= 3.0.0, older versions are not supported.
7023 #endif
7024 int main(void) {
7025 t_bs2bdp filter;
7026 filter=bs2b_open();
7027 bs2b_close(filter);
7028 return 0;
7031 _libbs2b=no
7032 if $_pkg_config --exists libbs2b ; then
7033 _inc_tmp=$($_pkg_config --cflags libbs2b)
7034 _ld_tmp=$($_pkg_config --libs libbs2b)
7035 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
7036 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
7037 else
7038 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
7039 -I/usr/local/include/bs2b ; do
7040 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
7041 extra_ldflags="$extra_ldflags -lbs2b"
7042 extra_cflags="$extra_cflags $_inc_tmp"
7043 _libbs2b=yes
7044 break
7046 done
7049 def_libbs2b="#undef CONFIG_LIBBS2B"
7050 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
7051 echores "$_libbs2b"
7054 if test -z "$_codecsdir" ; then
7055 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
7056 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
7057 if test -d "$dir" ; then
7058 _codecsdir="$dir"
7059 break;
7061 done
7063 # Fall back on default directory.
7064 if test -z "$_codecsdir" ; then
7065 _codecsdir="$_libdir/codecs"
7066 mingw32 || os2 && _codecsdir="codecs"
7070 echocheck "Win32 codecs"
7071 if test "$_win32dll" = auto ; then
7072 _win32dll=no
7073 if x86_32 && ! qnx; then
7074 _win32dll=yes
7077 if test "$_win32dll" = yes ; then
7078 def_win32dll='#define CONFIG_WIN32DLL 1'
7079 if ! win32 ; then
7080 def_win32_loader='#define WIN32_LOADER 1'
7081 _win32_emulation=yes
7082 else
7083 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
7084 res_comment="using native windows"
7086 codecmodules="win32 $codecmodules"
7087 else
7088 def_win32dll='#undef CONFIG_WIN32DLL'
7089 def_win32_loader='#undef WIN32_LOADER'
7090 nocodecmodules="win32 $nocodecmodules"
7092 echores "$_win32dll"
7095 echocheck "XAnim codecs"
7096 if test "$_xanim" = auto ; then
7097 _xanim=no
7098 res_comment="dynamic loader support needed"
7099 if test "$_dl" = yes ; then
7100 _xanim=yes
7103 if test "$_xanim" = yes ; then
7104 def_xanim='#define CONFIG_XANIM 1'
7105 codecmodules="xanim $codecmodules"
7106 else
7107 def_xanim='#undef CONFIG_XANIM'
7108 nocodecmodules="xanim $nocodecmodules"
7110 echores "$_xanim"
7113 echocheck "RealPlayer codecs"
7114 if test "$_real" = auto ; then
7115 _real=no
7116 res_comment="dynamic loader support needed"
7117 if test "$_dl" = yes || test "$_win32dll" = yes &&
7118 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
7119 _real=yes
7122 if test "$_real" = yes ; then
7123 def_real='#define CONFIG_REALCODECS 1'
7124 codecmodules="real $codecmodules"
7125 else
7126 def_real='#undef CONFIG_REALCODECS'
7127 nocodecmodules="real $nocodecmodules"
7129 echores "$_real"
7132 echocheck "QuickTime codecs"
7133 _qtx_emulation=no
7134 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
7135 if test "$_qtx" = auto ; then
7136 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
7138 if test "$_qtx" = yes ; then
7139 def_qtx='#define CONFIG_QTX_CODECS 1'
7140 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
7141 codecmodules="qtx $codecmodules"
7142 darwin || win32 || _qtx_emulation=yes
7143 else
7144 def_qtx='#undef CONFIG_QTX_CODECS'
7145 nocodecmodules="qtx $nocodecmodules"
7147 echores "$_qtx"
7149 echocheck "Nemesi Streaming Media libraries"
7150 if test "$_nemesi" = auto && test "$_network" = yes ; then
7151 _nemesi=no
7152 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
7153 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
7154 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
7155 _nemesi=yes
7158 if test "$_nemesi" = yes; then
7159 _native_rtsp=no
7160 def_nemesi='#define CONFIG_LIBNEMESI 1'
7161 inputmodules="nemesi $inputmodules"
7162 else
7163 _native_rtsp="$_network"
7164 _nemesi=no
7165 def_nemesi='#undef CONFIG_LIBNEMESI'
7166 noinputmodules="nemesi $noinputmodules"
7168 echores "$_nemesi"
7170 echocheck "LIVE555 Streaming Media libraries"
7171 if test "$_live" = auto && test "$_network" = yes ; then
7172 cat > $TMPCPP << EOF
7173 #include <liveMedia.hh>
7174 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
7175 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
7176 #endif
7177 int main(void) { return 0; }
7180 _live=no
7181 for I in $extra_cflags "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/lib64/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
7182 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
7183 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
7184 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
7185 $_livelibdir/groupsock/libgroupsock.a \
7186 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
7187 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
7188 $extra_ldflags -lstdc++" \
7189 extra_cxxflags="-I$_livelibdir/liveMedia/include \
7190 -I$_livelibdir/UsageEnvironment/include \
7191 -I$_livelibdir/BasicUsageEnvironment/include \
7192 -I$_livelibdir/groupsock/include" && \
7193 _live=yes && break
7194 done
7195 if test "$_live" != yes ; then
7196 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
7197 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
7198 _live_dist=yes
7202 if test "$_live" = yes && test "$_network" = yes; then
7203 test $_livelibdir && res_comment="using $_livelibdir"
7204 def_live='#define CONFIG_LIVE555 1'
7205 inputmodules="live555 $inputmodules"
7206 elif test "$_live_dist" = yes && test "$_network" = yes; then
7207 res_comment="using distribution version"
7208 _live="yes"
7209 def_live='#define CONFIG_LIVE555 1'
7210 extra_ldflags="$extra_ldflags $ld_tmp"
7211 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
7212 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
7213 inputmodules="live555 $inputmodules"
7214 else
7215 _live=no
7216 def_live='#undef CONFIG_LIVE555'
7217 noinputmodules="live555 $noinputmodules"
7219 echores "$_live"
7221 echocheck "RTMPDump Streaming Media library"
7222 if test "$_librtmp" = auto && test "$_network" = yes ; then
7223 cat > $TMPC << EOF
7224 #include <librtmp/rtmp.h>
7225 int main(void) { RTMP r; RTMP_Init(&r); return 0; }
7227 cc_check -lrtmp && _librtmp=yes && extra_ldflags="$extra_ldflags -lrtmp"
7228 if test "$_librtmp" != yes && $_pkg_config --exists librtmp ; then
7229 _inc_tmp=$($_pkg_config --cflags librtmp)
7230 _ld_tmp=$($_pkg_config --libs librtmp)
7231 cc_check $_inc_tmp $_ld_tmp && _librtmp=yes && \
7232 extra_ldflags="$extra_ldflags $_ld_tmp" && \
7233 extra_cflags="$extra_cflags $_inc_tmp"
7236 if test "$_librtmp" = yes && test "$_network" = yes; then
7237 nolibrtmp=no
7238 def_librtmp='#define CONFIG_LIBRTMP 1'
7239 inputmodules="librtmp $inputmodules"
7240 else
7241 nolibrtmp=yes
7242 _librtmp=no
7243 def_librtmp='#undef CONFIG_LIBRTMP'
7244 noinputmodules="librtmp $noinputmodules"
7246 echores "$_librtmp"
7248 echocheck "FFmpeg libavutil"
7249 if test "$_libavutil_a" = auto ; then
7250 if test -d libavutil ; then
7251 _libavutil_a=yes
7252 res_comment="static"
7253 else
7254 die "MPlayer will not compile without libavutil in the source tree."
7256 elif test "$_libavutil_so" = auto ; then
7257 _libavutil_so=no
7258 cat > $TMPC << EOF
7259 #include <libavutil/common.h>
7260 int main(void) { av_clip(1, 1, 1); return 0; }
7262 if $_pkg_config --exists libavutil ; then
7263 _inc_libavutil=$($_pkg_config --cflags libavutil)
7264 _ld_tmp=$($_pkg_config --libs libavutil)
7265 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7266 && _libavutil_so=yes
7267 elif cc_check -lavutil $_ld_lm ; then
7268 extra_ldflags="$extra_ldflags -lavutil"
7269 _libavutil_so=yes
7270 res_comment="using libavutil.so, but static libavutil is recommended"
7273 _libavutil=no
7274 def_libavutil='#undef CONFIG_LIBAVUTIL'
7275 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
7276 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
7277 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
7278 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
7279 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
7280 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
7281 # neither static nor shared libavutil is available, but it is mandatory ...
7282 if test "$_libavutil" = no ; then
7283 die "You need static or shared libavutil, MPlayer will not compile without!"
7285 echores "$_libavutil"
7287 echocheck "FFmpeg libavcodec"
7288 if test "$_libavcodec_a" = auto ; then
7289 _libavcodec_a=no
7290 if test -d libavcodec && test -f libavcodec/utils.c ; then
7291 _libavcodec_a="yes"
7292 res_comment="static"
7294 elif test "$_libavcodec_so" = auto ; then
7295 _libavcodec_so=no
7296 res_comment="libavcodec.so is discouraged over static libavcodec"
7297 cat > $TMPC << EOF
7298 #include <libavcodec/avcodec.h>
7299 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
7301 if $_pkg_config --exists libavcodec ; then
7302 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
7303 _ld_tmp=$($_pkg_config --libs libavcodec)
7304 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7305 && _libavcodec_so=yes
7306 elif cc_check -lavcodec $_ld_lm ; then
7307 extra_ldflags="$extra_ldflags -lavcodec"
7308 _libavcodec_so=yes
7309 res_comment="using libavcodec.so, but static libavcodec is recommended"
7312 _libavcodec=no
7313 def_libavcodec='#undef CONFIG_LIBAVCODEC'
7314 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
7315 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
7316 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
7317 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
7318 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
7319 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
7320 test "$_libavcodec_mpegaudio_hp" = yes \
7321 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1' \
7322 && mak_libavcodec_mpegaudio_hp='CONFIG_MPEGAUDIO_HP = yes'
7323 if test "$_libavcodec_a" = yes ; then
7324 codecmodules="libavcodec(internal) $codecmodules"
7325 elif test "$_libavcodec_so" = yes ; then
7326 codecmodules="libavcodec.so $codecmodules"
7327 else
7328 nocodecmodules="libavcodec $nocodecmodules"
7330 echores "$_libavcodec"
7332 echocheck "FFmpeg libavformat"
7333 if test "$_libavformat_a" = auto ; then
7334 _libavformat_a=no
7335 if test -d libavformat && test -f libavformat/utils.c ; then
7336 _libavformat_a=yes
7337 res_comment="static"
7339 elif test "$_libavformat_so" = auto ; then
7340 _libavformat_so=no
7341 cat > $TMPC <<EOF
7342 #include <libavformat/avformat.h>
7343 #include <libavcodec/opt.h>
7344 int main(void) { av_alloc_format_context(); return 0; }
7346 if $_pkg_config --exists libavformat ; then
7347 _inc_libavformat=$($_pkg_config --cflags libavformat)
7348 _ld_tmp=$($_pkg_config --libs libavformat)
7349 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7350 && _libavformat_so=yes
7351 elif cc_check $_ld_lm -lavformat ; then
7352 extra_ldflags="$extra_ldflags -lavformat"
7353 _libavformat_so=yes
7354 res_comment="using libavformat.so, but static libavformat is recommended"
7357 _libavformat=no
7358 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7359 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
7360 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
7361 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
7362 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7363 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
7364 test "$_libavformat_so" = yes \
7365 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
7366 echores "$_libavformat"
7368 echocheck "FFmpeg libpostproc"
7369 if test "$_libpostproc_a" = auto ; then
7370 _libpostproc_a=no
7371 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
7372 _libpostproc_a='yes'
7373 res_comment="static"
7375 elif test "$_libpostproc_so" = auto ; then
7376 _libpostproc_so=no
7377 cat > $TMPC << EOF
7378 #include <inttypes.h>
7379 #include <libpostproc/postprocess.h>
7380 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7382 if cc_check -lpostproc $_ld_lm ; then
7383 extra_ldflags="$extra_ldflags -lpostproc"
7384 _libpostproc_so=yes
7385 res_comment="using libpostproc.so, but static libpostproc is recommended"
7388 _libpostproc=no
7389 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7390 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7391 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7392 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7393 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7394 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7395 test "$_libpostproc_so" = yes \
7396 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7397 echores "$_libpostproc"
7399 echocheck "FFmpeg libswscale"
7400 if test "$_libswscale_a" = auto ; then
7401 _libswscale_a=no
7402 if test -d libswscale && test -f libswscale/swscale.h ; then
7403 _libswscale_a='yes'
7404 res_comment="static"
7406 elif test "$_libswscale_so" = auto ; then
7407 _libswscale_so=no
7408 res_comment="using libswscale.so, but static libswscale is recommended"
7409 cat > $TMPC << EOF
7410 #include <libswscale/swscale.h>
7411 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7413 if $_pkg_config --exists libswscale ; then
7414 _inc_libswscale=$($_pkg_config --cflags libswscale)
7415 _ld_tmp=$($_pkg_config --libs libswscale)
7416 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7417 && _libswscale_so=yes
7418 elif cc_check -lswscale ; then
7419 extra_ldflags="$extra_ldflags -lswscale"
7420 _libswscale_so=yes
7423 _libswscale=no
7424 def_libswscale='#undef CONFIG_LIBSWSCALE'
7425 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7426 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7427 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7428 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7429 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7430 test "$_libswscale_so" = yes \
7431 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7432 echores "$_libswscale"
7434 echocheck "libopencore_amr narrowband"
7435 if test "$_libopencore_amrnb" = auto ; then
7436 _libopencore_amrnb=no
7437 cat > $TMPC << EOF
7438 #include <opencore-amrnb/interf_dec.h>
7439 int main(void) { Decoder_Interface_init(); return 0; }
7441 cc_check -lopencore-amrnb && _libopencore_amrnb=yes
7442 if test "$_libavcodec_a" != yes ; then
7443 _libopencore_amrnb=no
7444 res_comment="libavcodec (static) is required by libopencore_amrnb, sorry"
7447 if test "$_libopencore_amrnb" = yes ; then
7448 _libopencore_amr=yes
7449 extra_ldflags="$extra_ldflags -lopencore-amrnb"
7450 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 1'
7451 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRNB_DECODER"
7452 _libavencoders="$_libavencoders LIBOPENCORE_AMRNB_ENCODER"
7453 codecmodules="libopencore_amrnb $codecmodules"
7454 else
7455 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 0'
7456 nocodecmodules="libopencore_amrnb $nocodecmodules"
7458 echores "$_libopencore_amrnb"
7461 echocheck "libopencore_amr wideband"
7462 if test "$_libopencore_amrwb" = auto ; then
7463 _libopencore_amrwb=no
7464 cat > $TMPC << EOF
7465 #include <opencore-amrwb/dec_if.h>
7466 int main(void) { D_IF_init(); return 0; }
7468 cc_check -lopencore-amrwb && _libopencore_amrwb=yes
7469 if test "$_libavcodec_a" != yes ; then
7470 _libopencore_amrwb=no
7471 res_comment="libavcodec (static) is required by libopencore_amrwb, sorry"
7474 if test "$_libopencore_amrwb" = yes ; then
7475 _libopencore_amr=yes
7476 extra_ldflags="$extra_ldflags -lopencore-amrwb"
7477 def_libopencore_amrwb='#define CONFIG_LIBOPENCORE_AMRWB 1'
7478 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRWB_DECODER"
7479 codecmodules="libopencore_amrwb $codecmodules"
7480 else
7481 def_libopencore_amrwb='#define LIBOPENCORE_AMRWB 0'
7482 nocodecmodules="libopencore_amrwb $nocodecmodules"
7484 echores "$_libopencore_amrwb"
7486 echocheck "libdv-0.9.5+"
7487 if test "$_libdv" = auto ; then
7488 _libdv=no
7489 cat > $TMPC <<EOF
7490 #include <libdv/dv.h>
7491 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7493 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7495 if test "$_libdv" = yes ; then
7496 def_libdv='#define CONFIG_LIBDV095 1'
7497 extra_ldflags="$extra_ldflags -ldv"
7498 codecmodules="libdv $codecmodules"
7499 else
7500 def_libdv='#undef CONFIG_LIBDV095'
7501 nocodecmodules="libdv $nocodecmodules"
7503 echores "$_libdv"
7506 echocheck "Xvid"
7507 if test "$_xvid" = auto ; then
7508 _xvid=no
7509 cat > $TMPC << EOF
7510 #include <xvid.h>
7511 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7513 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7514 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7515 done
7518 if test "$_xvid" = yes ; then
7519 def_xvid='#define CONFIG_XVID4 1'
7520 codecmodules="xvid $codecmodules"
7521 else
7522 def_xvid='#undef CONFIG_XVID4'
7523 nocodecmodules="xvid $nocodecmodules"
7525 echores "$_xvid"
7527 echocheck "Xvid two pass plugin"
7528 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7529 cat > $TMPC << EOF
7530 #include <xvid.h>
7531 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7533 cc_check && _xvid_lavc=yes
7535 if test "$_xvid_lavc" = yes ; then
7536 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7537 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7538 else
7539 _xvid_lavc=no
7540 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7542 echores "$_xvid_lavc"
7545 echocheck "x264"
7546 if test "$_x264" = auto ; then
7547 cat > $TMPC << EOF
7548 #include <inttypes.h>
7549 #include <x264.h>
7550 #if X264_BUILD < 89
7551 #error We do not support old versions of x264. Get the latest from git.
7552 #endif
7553 int main(void) { x264_encoder_open((void*)0); return 0; }
7555 _x264=no
7556 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7557 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7558 done
7561 if test "$_x264" = yes ; then
7562 def_x264='#define CONFIG_X264 1'
7563 codecmodules="x264 $codecmodules"
7564 test "$_x264_lavc" = auto && _x264_lavc=yes
7565 if test "$_x264_lavc" = yes ; then
7566 def_x264_lavc='#define CONFIG_LIBX264 1'
7567 libs_mplayer="$libs_mplayer $_ld_x264"
7568 _libavencoders="$_libavencoders LIBX264_ENCODER"
7570 else
7571 _x264_lavc=no
7572 def_x264='#undef CONFIG_X264'
7573 def_x264_lavc='#define CONFIG_LIBX264 0'
7574 nocodecmodules="x264 $nocodecmodules"
7576 res_comment="in libavcodec: $_x264_lavc"
7577 echores "$_x264"
7580 echocheck "libdirac"
7581 if test "$_libdirac_lavc" = auto; then
7582 _libdirac_lavc=no
7583 if test "$_libavcodec_a" != yes; then
7584 res_comment="libavcodec (static) is required by libdirac, sorry"
7585 else
7586 cat > $TMPC << EOF
7587 #include <libdirac_encoder/dirac_encoder.h>
7588 #include <libdirac_decoder/dirac_parser.h>
7589 int main(void)
7591 dirac_encoder_context_t enc_ctx;
7592 dirac_decoder_t *dec_handle;
7593 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7594 dec_handle = dirac_decoder_init(0);
7595 if (dec_handle)
7596 dirac_decoder_close(dec_handle);
7597 return 0;
7600 if $_pkg_config --exists dirac ; then
7601 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7602 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7603 cc_check $_inc_dirac $_ld_dirac &&
7604 _libdirac_lavc=yes &&
7605 extra_cflags="$extra_cflags $_inc_dirac" &&
7606 extra_ldflags="$extra_ldflags $_ld_dirac"
7610 if test "$_libdirac_lavc" = yes ; then
7611 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7612 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7613 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7614 codecmodules="libdirac $codecmodules"
7615 else
7616 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7617 nocodecmodules="libdirac $nocodecmodules"
7619 echores "$_libdirac_lavc"
7622 echocheck "libschroedinger"
7623 if test "$_libschroedinger_lavc" = auto ; then
7624 _libschroedinger_lavc=no
7625 if test "$_libavcodec_a" != yes; then
7626 res_comment="libavcodec (static) is required by libschroedinger, sorry"
7627 else
7628 cat > $TMPC << EOF
7629 #include <schroedinger/schro.h>
7630 int main(void) { schro_init(); return SCHRO_ENCODER_RATE_CONTROL_CONSTANT_QUALITY; }
7632 if $_pkg_config --exists schroedinger-1.0 ; then
7633 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7634 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7635 cc_check $_inc_schroedinger $_ld_schroedinger &&
7636 _libschroedinger_lavc=yes &&
7637 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7638 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7642 if test "$_libschroedinger_lavc" = yes ; then
7643 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7644 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7645 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7646 codecmodules="libschroedinger $codecmodules"
7647 else
7648 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7649 nocodecmodules="libschroedinger $nocodecmodules"
7651 echores "$_libschroedinger_lavc"
7653 echocheck "libvpx"
7654 if test "$_libvpx_lavc" = auto; then
7655 _libvpx_lavc=no
7656 if test "$_libavcodec_a" != yes; then
7657 res_comment="libavcodec (static) is required by libvpx, sorry"
7658 else
7659 cat > $TMPC << EOF
7660 #include <vpx/vpx_decoder.h>
7661 #include <vpx/vp8dx.h>
7662 int main(void) { vpx_codec_dec_init(NULL, &vpx_codec_vp8_dx_algo, NULL, 0); return 0; }
7664 cc_check -lvpx && _libvpx_lavc=yes && extra_ldflags="$extra_ldflags -lvpx"
7667 if test "$_libvpx_lavc" = yes ; then
7668 def_libvpx_lavc='#define CONFIG_LIBVPX 1'
7669 _libavdecoders="$_libavdecoders LIBVPX_DECODER"
7670 codecmodules="libvpx $codecmodules"
7671 else
7672 def_libvpx_lavc='#define CONFIG_LIBVPX 0'
7673 nocodecmodules="libvpx $nocodecmodules"
7675 echores "$_libvpx_lavc"
7677 echocheck "libnut"
7678 if test "$_libnut" = auto ; then
7679 cat > $TMPC << EOF
7680 #include <stdio.h>
7681 #include <stdlib.h>
7682 #include <inttypes.h>
7683 #include <libnut.h>
7684 nut_context_tt * nut;
7685 int main(void) { (void)nut_error(0); return 0; }
7687 _libnut=no
7688 cc_check -lnut && _libnut=yes
7691 if test "$_libnut" = yes ; then
7692 def_libnut='#define CONFIG_LIBNUT 1'
7693 extra_ldflags="$extra_ldflags -lnut"
7694 else
7695 def_libnut='#undef CONFIG_LIBNUT'
7697 echores "$_libnut"
7699 #check must be done after libavcodec one
7700 echocheck "zr"
7701 if test "$_zr" = auto ; then
7702 #36067's seem to identify themselves as 36057PQC's, so the line
7703 #below should work for 36067's and 36057's.
7704 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7705 _zr=yes
7706 else
7707 _zr=no
7710 if test "$_zr" = yes ; then
7711 if test "$_libavcodec_a" = yes ; then
7712 def_zr='#define CONFIG_ZR 1'
7713 vomodules="zr zr2 $vomodules"
7714 else
7715 res_comment="libavcodec (static) is required by zr, sorry"
7716 novomodules="zr $novomodules"
7717 def_zr='#undef CONFIG_ZR'
7719 else
7720 def_zr='#undef CONFIG_ZR'
7721 novomodules="zr zr2 $novomodules"
7723 echores "$_zr"
7725 # mencoder requires (optional) those libs: libmp3lame
7726 if test "$_mencoder" != no ; then
7728 echocheck "libmp3lame"
7729 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7730 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7731 if test "$_mp3lame" = auto ; then
7732 _mp3lame=no
7733 cat > $TMPC <<EOF
7734 #include <lame/lame.h>
7735 int main(void) { lame_version_t lv; (void) lame_init();
7736 get_lame_version_numerical(&lv);
7737 return 0; }
7739 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7741 if test "$_mp3lame" = yes ; then
7742 def_mp3lame="#define CONFIG_MP3LAME 1"
7743 _ld_mp3lame=-lmp3lame
7744 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7745 cat > $TMPC << EOF
7746 #include <lame/lame.h>
7747 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7749 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7750 cat > $TMPC << EOF
7751 #include <lame/lame.h>
7752 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7754 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7755 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7756 if test "$_mp3lame_lavc" = yes ; then
7757 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7758 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7759 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7761 else
7762 _mp3lame_lavc=no
7763 def_mp3lame='#undef CONFIG_MP3LAME'
7764 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7766 res_comment="in libavcodec: $_mp3lame_lavc"
7767 echores "$_mp3lame"
7769 fi # test "$_mencoder" != no
7771 echocheck "mencoder"
7772 if test "$_mencoder" = yes ; then
7773 def_muxers='#define CONFIG_MUXERS 1'
7774 else
7775 # mpeg1video for vf_lavc, snow for vf_uspp / vf_mcdeint,
7776 # png for vf_screenshot, mjpeg for zr
7777 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7778 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7779 test "$_zr" = yes && _libavencoders="$_libavencoders MJPEG_ENCODER"
7780 _libavmuxers=""
7781 def_muxers='#define CONFIG_MUXERS 0'
7783 echores "$_mencoder"
7786 echocheck "UnRAR executable"
7787 if test "$_unrar_exec" = auto ; then
7788 _unrar_exec="yes"
7789 mingw32 && _unrar_exec="no"
7791 if test "$_unrar_exec" = yes ; then
7792 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7793 else
7794 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7796 echores "$_unrar_exec"
7798 echocheck "TV interface"
7799 if test "$_tv" = yes ; then
7800 def_tv='#define CONFIG_TV 1'
7801 inputmodules="tv $inputmodules"
7802 else
7803 noinputmodules="tv $noinputmodules"
7804 def_tv='#undef CONFIG_TV'
7806 echores "$_tv"
7809 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7810 echocheck "*BSD BT848 bt8xx header"
7811 _ioctl_bt848_h=no
7812 for file in "machine/ioctl_bt848.h" \
7813 "dev/bktr/ioctl_bt848.h" \
7814 "dev/video/bktr/ioctl_bt848.h" \
7815 "dev/ic/bt8xx.h" ; do
7816 cat > $TMPC <<EOF
7817 #include <sys/types.h>
7818 #include <sys/ioctl.h>
7819 #include <$file>
7820 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7822 if cc_check ; then
7823 _ioctl_bt848_h=yes
7824 _ioctl_bt848_h_name="$file"
7825 break;
7827 done
7828 if test "$_ioctl_bt848_h" = yes ; then
7829 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7830 res_comment="using $_ioctl_bt848_h_name"
7831 else
7832 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7834 echores "$_ioctl_bt848_h"
7836 echocheck "*BSD ioctl_meteor.h"
7837 _ioctl_meteor_h=no
7838 for file in "machine/ioctl_meteor.h" \
7839 "dev/bktr/ioctl_meteor.h" \
7840 "dev/video/bktr/ioctl_meteor.h" ; do
7841 cat > $TMPC <<EOF
7842 #include <sys/types.h>
7843 #include <$file>
7844 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7846 if cc_check ; then
7847 _ioctl_meteor_h=yes
7848 _ioctl_meteor_h_name="$file"
7849 break;
7851 done
7852 if test "$_ioctl_meteor_h" = yes ; then
7853 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7854 res_comment="using $_ioctl_meteor_h_name"
7855 else
7856 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7858 echores "$_ioctl_meteor_h"
7860 echocheck "*BSD BrookTree 848 TV interface"
7861 if test "$_tv_bsdbt848" = auto ; then
7862 _tv_bsdbt848=no
7863 if test "$_tv" = yes ; then
7864 cat > $TMPC <<EOF
7865 #include <sys/types.h>
7866 $def_ioctl_meteor_h_name
7867 $def_ioctl_bt848_h_name
7868 #ifdef IOCTL_METEOR_H_NAME
7869 #include IOCTL_METEOR_H_NAME
7870 #endif
7871 #ifdef IOCTL_BT848_H_NAME
7872 #include IOCTL_BT848_H_NAME
7873 #endif
7874 int main(void) {
7875 ioctl(0, METEORSINPUT, 0);
7876 ioctl(0, TVTUNER_GETFREQ, 0);
7877 return 0;
7880 cc_check && _tv_bsdbt848=yes
7883 if test "$_tv_bsdbt848" = yes ; then
7884 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7885 inputmodules="tv-bsdbt848 $inputmodules"
7886 else
7887 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7888 noinputmodules="tv-bsdbt848 $noinputmodules"
7890 echores "$_tv_bsdbt848"
7891 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7894 echocheck "DirectShow TV interface"
7895 if test "$_tv_dshow" = auto ; then
7896 _tv_dshow=no
7897 if test "$_tv" = yes && win32 ; then
7898 cat > $TMPC <<EOF
7899 #include <ole2.h>
7900 int main(void) {
7901 void* p;
7902 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7903 return 0;
7906 cc_check -lole32 -luuid && _tv_dshow=yes
7909 if test "$_tv_dshow" = yes ; then
7910 inputmodules="tv-dshow $inputmodules"
7911 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7912 extra_ldflags="$extra_ldflags -lole32 -luuid"
7913 else
7914 noinputmodules="tv-dshow $noinputmodules"
7915 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7917 echores "$_tv_dshow"
7920 echocheck "Video 4 Linux TV interface"
7921 if test "$_tv_v4l1" = auto ; then
7922 _tv_v4l1=no
7923 if test "$_tv" = yes && linux ; then
7924 cat > $TMPC <<EOF
7925 #include <stdlib.h>
7926 #include <linux/videodev.h>
7927 int main(void) { return 0; }
7929 cc_check && _tv_v4l1=yes
7932 if test "$_tv_v4l1" = yes ; then
7933 _audio_input=yes
7934 _tv_v4l=yes
7935 def_tv_v4l='#define CONFIG_TV_V4L 1'
7936 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7937 inputmodules="tv-v4l $inputmodules"
7938 else
7939 noinputmodules="tv-v4l1 $noinputmodules"
7940 def_tv_v4l='#undef CONFIG_TV_V4L'
7942 echores "$_tv_v4l1"
7945 echocheck "Video 4 Linux 2 TV interface"
7946 if test "$_tv_v4l2" = auto ; then
7947 _tv_v4l2=no
7948 if test "$_tv" = yes && linux ; then
7949 cat > $TMPC <<EOF
7950 #include <stdlib.h>
7951 #include <linux/types.h>
7952 #include <linux/videodev2.h>
7953 int main(void) { return 0; }
7955 cc_check && _tv_v4l2=yes
7958 if test "$_tv_v4l2" = yes ; then
7959 _audio_input=yes
7960 _tv_v4l=yes
7961 def_tv_v4l='#define CONFIG_TV_V4L 1'
7962 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7963 inputmodules="tv-v4l2 $inputmodules"
7964 else
7965 noinputmodules="tv-v4l2 $noinputmodules"
7966 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7968 echores "$_tv_v4l2"
7971 echocheck "Radio interface"
7972 if test "$_radio" = yes ; then
7973 def_radio='#define CONFIG_RADIO 1'
7974 inputmodules="radio $inputmodules"
7975 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7976 _radio_capture=no
7978 if test "$_radio_capture" = yes ; then
7979 _audio_input=yes
7980 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7981 else
7982 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7984 else
7985 noinputmodules="radio $noinputmodules"
7986 def_radio='#undef CONFIG_RADIO'
7987 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7988 _radio_capture=no
7990 echores "$_radio"
7991 echocheck "Capture for Radio interface"
7992 echores "$_radio_capture"
7994 echocheck "Video 4 Linux 2 Radio interface"
7995 if test "$_radio_v4l2" = auto ; then
7996 _radio_v4l2=no
7997 if test "$_radio" = yes && linux ; then
7998 cat > $TMPC <<EOF
7999 #include <stdlib.h>
8000 #include <linux/types.h>
8001 #include <linux/videodev2.h>
8002 int main(void) { return 0; }
8004 cc_check && _radio_v4l2=yes
8007 if test "$_radio_v4l2" = yes ; then
8008 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
8009 else
8010 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
8012 echores "$_radio_v4l2"
8014 echocheck "Video 4 Linux Radio interface"
8015 if test "$_radio_v4l" = auto ; then
8016 _radio_v4l=no
8017 if test "$_radio" = yes && linux ; then
8018 cat > $TMPC <<EOF
8019 #include <stdlib.h>
8020 #include <linux/videodev.h>
8021 int main(void) { return 0; }
8023 cc_check && _radio_v4l=yes
8026 if test "$_radio_v4l" = yes ; then
8027 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
8028 else
8029 def_radio_v4l='#undef CONFIG_RADIO_V4L'
8031 echores "$_radio_v4l"
8033 if freebsd || netbsd || openbsd || dragonfly || bsdos \
8034 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
8035 echocheck "*BSD BrookTree 848 Radio interface"
8036 _radio_bsdbt848=no
8037 cat > $TMPC <<EOF
8038 #include <sys/types.h>
8039 $def_ioctl_bt848_h_name
8040 #ifdef IOCTL_BT848_H_NAME
8041 #include IOCTL_BT848_H_NAME
8042 #endif
8043 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
8045 cc_check && _radio_bsdbt848=yes
8046 echores "$_radio_bsdbt848"
8047 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
8049 if test "$_radio_bsdbt848" = yes ; then
8050 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
8051 else
8052 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
8055 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
8056 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
8057 die "Radio driver requires BSD BT848, V4L or V4L2!"
8060 echocheck "Video 4 Linux 2 MPEG PVR interface"
8061 if test "$_pvr" = auto ; then
8062 _pvr=no
8063 if test "$_tv_v4l2" = yes && linux ; then
8064 cat > $TMPC <<EOF
8065 #include <stdlib.h>
8066 #include <inttypes.h>
8067 #include <linux/types.h>
8068 #include <linux/videodev2.h>
8069 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
8071 cc_check && _pvr=yes
8074 if test "$_pvr" = yes ; then
8075 def_pvr='#define CONFIG_PVR 1'
8076 inputmodules="pvr $inputmodules"
8077 else
8078 noinputmodules="pvr $noinputmodules"
8079 def_pvr='#undef CONFIG_PVR'
8081 echores "$_pvr"
8084 echocheck "ftp"
8085 if ! beos && test "$_ftp" = yes ; then
8086 def_ftp='#define CONFIG_FTP 1'
8087 inputmodules="ftp $inputmodules"
8088 else
8089 noinputmodules="ftp $noinputmodules"
8090 def_ftp='#undef CONFIG_FTP'
8092 echores "$_ftp"
8094 echocheck "vstream client"
8095 if test "$_vstream" = auto ; then
8096 _vstream=no
8097 cat > $TMPC <<EOF
8098 #include <vstream-client.h>
8099 void vstream_error(const char *format, ... ) {}
8100 int main(void) { vstream_start(); return 0; }
8102 cc_check -lvstream-client && _vstream=yes
8104 if test "$_vstream" = yes ; then
8105 def_vstream='#define CONFIG_VSTREAM 1'
8106 inputmodules="vstream $inputmodules"
8107 extra_ldflags="$extra_ldflags -lvstream-client"
8108 else
8109 noinputmodules="vstream $noinputmodules"
8110 def_vstream='#undef CONFIG_VSTREAM'
8112 echores "$_vstream"
8115 echocheck "OSD menu"
8116 if test "$_menu" = yes ; then
8117 def_menu='#define CONFIG_MENU 1'
8118 test $_dvbin = "yes" && _menu_dvbin=yes
8119 else
8120 def_menu='#undef CONFIG_MENU'
8121 _menu_dvbin=no
8123 echores "$_menu"
8126 echocheck "Subtitles sorting"
8127 if test "$_sortsub" = yes ; then
8128 def_sortsub='#define CONFIG_SORTSUB 1'
8129 else
8130 def_sortsub='#undef CONFIG_SORTSUB'
8132 echores "$_sortsub"
8135 echocheck "XMMS inputplugin support"
8136 if test "$_xmms" = yes ; then
8137 if ( xmms-config --version ) >/dev/null 2>&1 ; then
8138 _xmmsplugindir=$(xmms-config --input-plugin-dir)
8139 _xmmslibdir=$(xmms-config --exec-prefix)/lib
8140 else
8141 _xmmsplugindir=/usr/lib/xmms/Input
8142 _xmmslibdir=/usr/lib
8145 def_xmms='#define CONFIG_XMMS 1'
8146 if darwin ; then
8147 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
8148 else
8149 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
8151 else
8152 def_xmms='#undef CONFIG_XMMS'
8154 echores "$_xmms"
8157 # --------------- GUI specific tests begin -------------------
8158 echocheck "GUI"
8159 echo "$_gui"
8160 if test "$_gui" = yes ; then
8162 # Required libraries
8163 if test "$_libavcodec" != yes ||
8164 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
8165 die "The GUI requires libavcodec with PNG support (needs zlib)."
8167 test "$_freetype" = no && test "$_bitmap_font" = no && \
8168 die "The GUI requires either FreeType or bitmap font support."
8169 if ! win32 ; then
8170 _gui_gtk=yes
8171 test "$_x11" != yes && die "X11 support required for GUI compilation."
8173 echocheck "XShape extension"
8174 if test "$_xshape" = auto ; then
8175 _xshape=no
8176 cat > $TMPC << EOF
8177 #include <X11/Xlib.h>
8178 #include <X11/Xproto.h>
8179 #include <X11/Xutil.h>
8180 #include <X11/extensions/shape.h>
8181 #include <stdlib.h>
8182 int main(void) {
8183 char *name = ":0.0";
8184 Display *wsDisplay;
8185 int exitvar = 0;
8186 int eventbase, errorbase;
8187 if (getenv("DISPLAY"))
8188 name=getenv("DISPLAY");
8189 wsDisplay=XOpenDisplay(name);
8190 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
8191 exitvar=1;
8192 XCloseDisplay(wsDisplay);
8193 return exitvar;
8196 cc_check -lXext && _xshape=yes
8198 if test "$_xshape" = yes ; then
8199 def_xshape='#define CONFIG_XSHAPE 1'
8200 else
8201 die "The GUI requires the X11 extension XShape (which was not found)."
8203 echores "$_xshape"
8205 #Check for GTK
8206 if test "$_gtk1" = no ; then
8207 #Check for GTK2 :
8208 echocheck "GTK+ version"
8210 if $_pkg_config gtk+-2.0 --exists ; then
8211 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
8212 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
8213 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
8214 echores "$_gtk"
8216 # Check for GLIB2
8217 if $_pkg_config glib-2.0 --exists ; then
8218 echocheck "glib version"
8219 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
8220 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
8221 echores "$_glib"
8223 def_gui='#define CONFIG_GUI 1'
8224 def_gtk2='#define CONFIG_GTK2 1'
8225 else
8226 _gtk1=yes
8227 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
8229 else
8230 echo "GTK-2 devel packages were not found, trying GTK 1.2"
8231 _gtk1=yes
8235 if test "$_gtk1" = yes ; then
8236 # Check for old GTK (1.2.x)
8237 echocheck "GTK version"
8238 if test -z "$_gtkconfig" ; then
8239 if ( gtk-config --version ) >/dev/null 2>&1 ; then
8240 _gtkconfig="gtk-config"
8241 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
8242 _gtkconfig="gtk12-config"
8243 else
8244 die "The GUI requires GTK devel packages (which were not found)."
8247 _gtk=$($_gtkconfig --version 2>&1)
8248 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
8249 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
8250 echores "$_gtk (using $_gtkconfig)"
8252 # Check for GLIB
8253 echocheck "glib version"
8254 if test -z "$_glibconfig" ; then
8255 if ( glib-config --version ) >/dev/null 2>&1 ; then
8256 _glibconfig="glib-config"
8257 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
8258 _glibconfig="glib12-config"
8259 else
8260 die "The GUI requires GLIB devel packages (which were not found)"
8263 _glib=$($_glibconfig --version 2>&1)
8264 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
8265 echores "$_glib (using $_glibconfig)"
8267 def_gui='#define CONFIG_GUI 1'
8268 def_gtk2='#undef CONFIG_GTK2'
8271 else #if ! win32
8272 _gui_win32=yes
8273 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
8274 def_gui='#define CONFIG_GUI 1'
8275 def_gtk2='#undef CONFIG_GTK2'
8276 fi #if ! win32
8278 else #if test "$_gui"
8279 def_gui='#undef CONFIG_GUI'
8280 def_gtk2='#undef CONFIG_GTK2'
8281 fi #if test "$_gui"
8282 # --------------- GUI specific tests end -------------------
8285 if test "$_charset" != "noconv" ; then
8286 def_charset="#define MSG_CHARSET \"$_charset\""
8287 else
8288 def_charset="#undef MSG_CHARSET"
8289 _charset="UTF-8"
8292 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
8293 echocheck "iconv program"
8294 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
8295 if test "$?" -ne 0 ; then
8296 echores "no"
8297 echo "No working iconv program found, use "
8298 echo "--charset=UTF-8 to continue anyway."
8299 echo "If you also have problems with iconv library functions use --charset=noconv."
8300 echo "Messages in the GTK-2 interface will be broken then."
8301 exit 1
8302 else
8303 echores "yes"
8307 #############################################################################
8309 echocheck "automatic gdb attach"
8310 if test "$_crash_debug" = yes ; then
8311 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
8312 else
8313 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
8314 _crash_debug=no
8316 echores "$_crash_debug"
8318 echocheck "compiler support for noexecstack"
8319 cat > $TMPC <<EOF
8320 int main(void) { return 0; }
8322 if cc_check -Wl,-z,noexecstack ; then
8323 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
8324 echores "yes"
8325 else
8326 echores "no"
8329 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
8330 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
8331 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
8332 echores "yes"
8333 else
8334 echores "no"
8338 # Dynamic linking flags
8339 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
8340 _ld_dl_dynamic=''
8341 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
8342 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
8343 _ld_dl_dynamic='-rdynamic'
8346 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
8347 bsdos && extra_ldflags="$extra_ldflags -ldvd"
8348 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
8350 def_debug='#undef MP_DEBUG'
8351 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
8354 echocheck "joystick"
8355 def_joystick='#undef CONFIG_JOYSTICK'
8356 if test "$_joystick" = yes ; then
8357 if linux ; then
8358 # TODO add some check
8359 def_joystick='#define CONFIG_JOYSTICK 1'
8360 else
8361 _joystick="no"
8362 res_comment="unsupported under $system_name"
8365 echores "$_joystick"
8367 echocheck "lirc"
8368 if test "$_lirc" = auto ; then
8369 _lirc=no
8370 cat > $TMPC <<EOF
8371 #include <lirc/lirc_client.h>
8372 int main(void) { return 0; }
8374 cc_check -llirc_client && _lirc=yes
8376 if test "$_lirc" = yes ; then
8377 def_lirc='#define CONFIG_LIRC 1'
8378 libs_mplayer="$libs_mplayer -llirc_client"
8379 else
8380 def_lirc='#undef CONFIG_LIRC'
8382 echores "$_lirc"
8384 echocheck "lircc"
8385 if test "$_lircc" = auto ; then
8386 _lircc=no
8387 cat > $TMPC <<EOF
8388 #include <lirc/lircc.h>
8389 int main(void) { return 0; }
8391 cc_check -llircc && _lircc=yes
8393 if test "$_lircc" = yes ; then
8394 def_lircc='#define CONFIG_LIRCC 1'
8395 libs_mplayer="$libs_mplayer -llircc"
8396 else
8397 def_lircc='#undef CONFIG_LIRCC'
8399 echores "$_lircc"
8401 if arm; then
8402 # Detect maemo development platform libraries availability (http://www.maemo.org),
8403 # they are used when run on Nokia 770|8x0
8404 echocheck "maemo (Nokia 770|8x0)"
8405 if test "$_maemo" = auto ; then
8406 _maemo=no
8407 cat > $TMPC << EOF
8408 #include <libosso.h>
8409 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8411 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8413 if test "$_maemo" = yes ; then
8414 def_maemo='#define CONFIG_MAEMO 1'
8415 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8416 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8417 else
8418 def_maemo='#undef CONFIG_MAEMO'
8420 echores "$_maemo"
8423 #############################################################################
8425 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8426 # the OMF format needs to come after the 'extern symbol prefix' check, which
8427 # uses nm.
8428 if os2 ; then
8429 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8432 # linker paths should be the same for mencoder and mplayer
8433 _ld_tmp=""
8434 for I in $libs_mplayer ; do
8435 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8436 if test -z "$_tmp" ; then
8437 extra_ldflags="$extra_ldflags $I"
8438 else
8439 _ld_tmp="$_ld_tmp $I"
8441 done
8442 libs_mplayer=$_ld_tmp
8445 #############################################################################
8446 # 64 bit file offsets?
8447 if test "$_largefiles" = yes || freebsd ; then
8448 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8449 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8450 # dvdread support requires this (for off64_t)
8451 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8455 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
8457 # This must be the last test to be performed. Any other tests following it
8458 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8459 # against libdvdread (to permit MPlayer to use its own copy of the library).
8460 # So any compilation using the flags added here but not linking against
8461 # libdvdread can fail.
8462 echocheck "DVD support (libdvdnav)"
8463 dvdnav_internal=no
8464 if test "$_dvdnav" = auto ; then
8465 if test "$_dvdread_internal" = yes ; then
8466 _dvdnav=yes
8467 dvdnav_internal=yes
8468 res_comment="internal"
8469 else
8470 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8473 if test "$_dvdnav" = auto ; then
8474 cat > $TMPC <<EOF
8475 #include <inttypes.h>
8476 #include <dvdnav/dvdnav.h>
8477 int main(void) { dvdnav_t *dvd=0; return 0; }
8479 _dvdnav=no
8480 _dvdnavdir=$($_dvdnavconfig --cflags)
8481 _dvdnavlibs=$($_dvdnavconfig --libs)
8482 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8484 if test "$_dvdnav" = yes ; then
8485 _largefiles=yes
8486 def_dvdnav='#define CONFIG_DVDNAV 1'
8487 if test "$dvdnav_internal" = yes ; then
8488 cflags_libdvdnav="-Ilibdvdnav"
8489 inputmodules="dvdnav(internal) $inputmodules"
8490 else
8491 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8492 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8493 inputmodules="dvdnav $inputmodules"
8495 else
8496 def_dvdnav='#undef CONFIG_DVDNAV'
8497 noinputmodules="dvdnav $noinputmodules"
8499 echores "$_dvdnav"
8501 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8502 # Read dvdnav comment above.
8504 mak_enable () {
8505 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8506 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8507 nprefix=$3;
8508 for part in $list; do
8509 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8510 echo "${nprefix}_$part = yes"
8512 done
8515 #############################################################################
8516 echo "Creating config.mak"
8517 cat > config.mak << EOF
8518 # -------- Generated by configure -----------
8520 # Ensure that locale settings do not interfere with shell commands.
8521 export LC_ALL = C
8523 CONFIGURATION = $_configuration
8525 CHARSET = $_charset
8526 DOC_LANGS = $language_doc
8527 DOC_LANG_ALL = $doc_lang_all
8528 MAN_LANGS = $language_man
8529 MAN_LANG_ALL = $man_lang_all
8531 prefix = \$(DESTDIR)$_prefix
8532 BINDIR = \$(DESTDIR)$_bindir
8533 DATADIR = \$(DESTDIR)$_datadir
8534 LIBDIR = \$(DESTDIR)$_libdir
8535 MANDIR = \$(DESTDIR)$_mandir
8536 CONFDIR = \$(DESTDIR)$_confdir
8538 AR = $_ar
8539 AS = $_cc
8540 CC = $_cc
8541 CXX = $_cc
8542 HOST_CC = $_host_cc
8543 INSTALL = $_install
8544 INSTALLSTRIP = $_install_strip
8545 WINDRES = $_windres
8547 CFLAGS = $CFLAGS $extra_cflags
8548 ASFLAGS = \$(CFLAGS)
8549 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8551 CFLAGS_DHAHELPER = $cflags_dhahelper
8552 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8553 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8554 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8555 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8556 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8557 CFLAGS_STACKREALIGN = $cflags_stackrealign
8558 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8559 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8561 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
8562 EXTRALIBS_MPLAYER = $libs_mplayer
8563 EXTRALIBS_MENCODER = $libs_mencoder
8565 GETCH = $_getch
8566 HELP_FILE = $_mp_help
8567 TIMER = $_timer
8569 EXESUF = $_exesuf
8570 EXESUFS_ALL = .exe
8572 ARCH = $arch
8573 $(mak_enable "$arch_all" "$arch" ARCH)
8574 $(mak_enable "$subarch_all" "$subarch" ARCH)
8575 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
8577 MENCODER = $_mencoder
8578 MPLAYER = $_mplayer
8580 NEED_GETTIMEOFDAY = $_need_gettimeofday
8581 NEED_GLOB = $_need_glob
8582 NEED_MMAP = $_need_mmap
8583 NEED_SETENV = $_need_setenv
8584 NEED_SHMEM = $_need_shmem
8585 NEED_STRSEP = $_need_strsep
8586 NEED_SWAB = $_need_swab
8587 NEED_VSSCANF = $_need_vsscanf
8589 # features
8590 3DFX = $_3dfx
8591 AA = $_aa
8592 ALSA1X = $_alsa1x
8593 ALSA9 = $_alsa9
8594 ALSA5 = $_alsa5
8595 APPLE_IR = $_apple_ir
8596 APPLE_REMOTE = $_apple_remote
8597 ARTS = $_arts
8598 AUDIO_INPUT = $_audio_input
8599 BITMAP_FONT = $_bitmap_font
8600 BL = $_bl
8601 CACA = $_caca
8602 CDDA = $_cdda
8603 CDDB = $_cddb
8604 COREAUDIO = $_coreaudio
8605 COREVIDEO = $_corevideo
8606 DART = $_dart
8607 DFBMGA = $_dfbmga
8608 DGA = $_dga
8609 DIRECT3D = $_direct3d
8610 DIRECTFB = $_directfb
8611 DIRECTX = $_directx
8612 DVBIN = $_dvbin
8613 DVDNAV = $_dvdnav
8614 DVDNAV_INTERNAL = $dvdnav_internal
8615 DVDREAD = $_dvdread
8616 DVDREAD_INTERNAL = $_dvdread_internal
8617 DXR2 = $_dxr2
8618 DXR3 = $_dxr3
8619 ESD = $_esd
8620 FAAC=$_faac
8621 FAAD = $_faad
8622 FAAD_INTERNAL = $_faad_internal
8623 FASTMEMCPY = $_fastmemcpy
8624 FBDEV = $_fbdev
8625 FREETYPE = $_freetype
8626 FTP = $_ftp
8627 GIF = $_gif
8628 GGI = $_ggi
8629 GL = $_gl
8630 GL_WIN32 = $_gl_win32
8631 GL_X11 = $_gl_x11
8632 GL_SDL = $_gl_sdl
8633 MATRIXVIEW = $matrixview
8634 GUI = $_gui
8635 GUI_GTK = $_gui_gtk
8636 GUI_WIN32 = $_gui_win32
8637 HAVE_POSIX_SELECT = $_posix_select
8638 HAVE_SYS_MMAN_H = $_mman
8639 IVTV = $_ivtv
8640 JACK = $_jack
8641 JOYSTICK = $_joystick
8642 JPEG = $_jpeg
8643 KAI = $_kai
8644 KVA = $_kva
8645 LADSPA = $_ladspa
8646 LIBA52 = $_liba52
8647 LIBASS = $_ass
8648 LIBASS_INTERNAL = $ass_internal
8649 LIBBS2B = $_libbs2b
8650 LIBDCA = $_libdca
8651 LIBDV = $_libdv
8652 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8653 LIBLZO = $_liblzo
8654 LIBMAD = $_mad
8655 LIBMENU = $_menu
8656 LIBMENU_DVBIN = $_menu_dvbin
8657 LIBMPEG2 = $_libmpeg2
8658 LIBNEMESI = $_nemesi
8659 LIBNUT = $_libnut
8660 LIBSMBCLIENT = $_smb
8661 LIBTHEORA = $_theora
8662 LIRC = $_lirc
8663 LIVE555 = $_live
8664 MACOSX_FINDER = $_macosx_finder
8665 MD5SUM = $_md5sum
8666 MGA = $_mga
8667 MNG = $_mng
8668 MP3LAME = $_mp3lame
8669 MP3LIB = $_mp3lib
8670 MUSEPACK = $_musepack
8671 NAS = $_nas
8672 NATIVE_RTSP = $_native_rtsp
8673 NETWORK = $_network
8674 OPENAL = $_openal
8675 OSS = $_ossaudio
8676 PE_EXECUTABLE = $_pe_executable
8677 PNG = $_png
8678 PNM = $_pnm
8679 PRIORITY = $_priority
8680 PULSE = $_pulse
8681 PVR = $_pvr
8682 QTX_CODECS = $_qtx
8683 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8684 QTX_EMULATION = $_qtx_emulation
8685 QUARTZ = $_quartz
8686 RADIO=$_radio
8687 RADIO_CAPTURE=$_radio_capture
8688 REAL_CODECS = $_real
8689 S3FB = $_s3fb
8690 SDL = $_sdl
8691 SPEEX = $_speex
8692 STREAM_CACHE = $_stream_cache
8693 SGIAUDIO = $_sgiaudio
8694 SUNAUDIO = $_sunaudio
8695 SVGA = $_svga
8696 TDFXFB = $_tdfxfb
8697 TDFXVID = $_tdfxvid
8698 TGA = $_tga
8699 TOOLAME=$_toolame
8700 TREMOR_INTERNAL = $_tremor_internal
8701 TV = $_tv
8702 TV_BSDBT848 = $_tv_bsdbt848
8703 TV_DSHOW = $_tv_dshow
8704 TV_V4L = $_tv_v4l
8705 TV_V4L1 = $_tv_v4l1
8706 TV_V4L2 = $_tv_v4l2
8707 TWOLAME=$_twolame
8708 UNRAR_EXEC = $_unrar_exec
8709 V4L2 = $_v4l2
8710 VCD = $_vcd
8711 VDPAU = $_vdpau
8712 VESA = $_vesa
8713 VIDIX = $_vidix
8714 VIDIX_PCIDB = $_vidix_pcidb_val
8715 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8716 VIDIX_IVTV=$_vidix_drv_ivtv
8717 VIDIX_MACH64=$_vidix_drv_mach64
8718 VIDIX_MGA=$_vidix_drv_mga
8719 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8720 VIDIX_NVIDIA=$_vidix_drv_nvidia
8721 VIDIX_PM2=$_vidix_drv_pm2
8722 VIDIX_PM3=$_vidix_drv_pm3
8723 VIDIX_RADEON=$_vidix_drv_radeon
8724 VIDIX_RAGE128=$_vidix_drv_rage128
8725 VIDIX_S3=$_vidix_drv_s3
8726 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8727 VIDIX_SIS=$_vidix_drv_sis
8728 VIDIX_UNICHROME=$_vidix_drv_unichrome
8729 VORBIS = $_vorbis
8730 VSTREAM = $_vstream
8731 WII = $_wii
8732 WIN32DLL = $_win32dll
8733 WIN32WAVEOUT = $_win32waveout
8734 WIN32_EMULATION = $_win32_emulation
8735 WINVIDIX = $winvidix
8736 X11 = $_x11
8737 X264 = $_x264
8738 XANIM_CODECS = $_xanim
8739 XMGA = $_xmga
8740 XMMS_PLUGINS = $_xmms
8741 XV = $_xv
8742 XVID4 = $_xvid
8743 XVIDIX = $xvidix
8744 XVMC = $_xvmc
8745 XVR100 = $_xvr100
8746 YUV4MPEG = $_yuv4mpeg
8747 ZR = $_zr
8749 # FFmpeg
8750 LIBAVUTIL = $_libavutil
8751 LIBAVUTIL_A = $_libavutil_a
8752 LIBAVUTIL_SO = $_libavutil_so
8753 LIBAVCODEC = $_libavcodec
8754 LIBAVCODEC_A = $_libavcodec_a
8755 LIBAVCODEC_SO = $_libavcodec_so
8756 LIBAVFORMAT = $_libavformat
8757 LIBAVFORMAT_A = $_libavformat_a
8758 LIBAVFORMAT_SO = $_libavformat_so
8759 LIBPOSTPROC = $_libpostproc
8760 LIBPOSTPROC_A = $_libpostproc_a
8761 LIBPOSTPROC_SO = $_libpostproc_so
8762 LIBSWSCALE = $_libswscale
8763 LIBSWSCALE_A = $_libswscale_a
8764 LIBSWSCALE_SO = $_libswscale_so
8766 HOSTCC = \$(HOST_CC)
8767 HOSTCFLAGS = -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3
8768 HOSTLIBS = -lm
8769 CC_O = -o \$@
8770 LD = gcc
8771 RANLIB = $_ranlib
8772 YASM = $_yasm
8773 YASMFLAGS = $YASMFLAGS
8775 CONFIG_STATIC = yes
8776 SRC_PATH = ..
8777 BUILD_ROOT = ..
8778 LIBPREF = lib
8779 LIBSUF = .a
8780 LIBNAME = \$(LIBPREF)\$(NAME)\$(LIBSUF)
8781 FULLNAME = \$(NAME)\$(BUILDSUF)
8783 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8784 CONFIG_AANDCT = yes
8785 CONFIG_DCT = yes
8786 CONFIG_DWT = yes
8787 CONFIG_FFT = yes
8788 CONFIG_GOLOMB = yes
8789 CONFIG_H264DSP = yes
8790 CONFIG_LPC = yes
8791 CONFIG_LSP = yes
8792 CONFIG_MDCT = yes
8793 CONFIG_RDFT = yes
8795 $mak_hardcoded_tables
8796 $mak_libavcodec_mpegaudio_hp
8797 !CONFIG_LIBRTMP = $nolibrtmp
8798 CONFIG_LIBRTMP = $_librtmp
8800 CONFIG_BZLIB = $bzlib
8801 CONFIG_ENCODERS = yes
8802 CONFIG_GPL = yes
8803 CONFIG_LIBDIRAC_DECODER = $_libdirac_lavc
8804 CONFIG_LIBDIRAC_ENCODER = $_libdirac_lavc
8805 CONFIG_LIBFAAC_ENCODER = $_faac_lavc
8806 CONFIG_LIBMP3LAME_ENCODER = $_mp3lame_lavc
8807 CONFIG_LIBOPENCORE_AMRNB_DECODER = $_libopencore_amrnb
8808 CONFIG_LIBOPENCORE_AMRNB_ENCODER = $_libopencore_amrnb
8809 CONFIG_LIBOPENCORE_AMRWB_DECODER = $_libopencore_amrwb
8810 OCNFIG_LIBOPENJPEG_DECODER = $libopenjpeg
8811 OCNFIG_LIBOPENJPEG_ENCODER = $libopenjpeg
8812 CONFIG_LIBSCHROEDINGER_DECODER = $_libschroedinger_lavc
8813 CONFIG_LIBSCHROEDINGER_ENCODER = $_libschroedinger_lavc
8814 CONFIG_LIBVORBIS_ENCODER = $_libvorbis
8815 CONFIG_LIBX264_ENCODER = $_x264_lavc
8816 CONFIG_LIBXVID_ENCODER = $_xvid_lavc
8817 CONFIG_MLIB = $_mlib
8818 CONFIG_MUXERS = $_mencoder
8819 CONFIG_POSTPROC = yes
8820 CONFIG_VDPAU = $_vdpau
8821 CONFIG_XVMC = $_xvmc
8822 CONFIG_ZLIB = $_zlib
8824 HAVE_PTHREADS = $_pthreads
8825 HAVE_SHM = $_shm
8826 HAVE_W32THREADS = $_w32threads
8827 HAVE_YASM = $have_yasm
8829 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8830 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8831 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8832 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8833 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8834 $(echo $_libavprotocols | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8835 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8836 $(echo $_libavhwaccels | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8839 #############################################################################
8841 ff_config_enable () {
8842 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8843 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8844 _nprefix=$3;
8845 test -z "$_nprefix" && _nprefix='CONFIG'
8846 for part in $list; do
8847 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8848 echo "#define ${_nprefix}_$part 1"
8849 else
8850 echo "#define ${_nprefix}_$part 0"
8852 done
8855 echo "Creating config.h"
8856 cat > $TMPH << EOF
8857 /*----------------------------------------------------------------------------
8858 ** This file has been automatically generated by configure any changes in it
8859 ** will be lost when you run configure again.
8860 ** Instead of modifying definitions here, use the --enable/--disable options
8861 ** of the configure script! See ./configure --help for details.
8862 *---------------------------------------------------------------------------*/
8864 #ifndef MPLAYER_CONFIG_H
8865 #define MPLAYER_CONFIG_H
8867 /* Undefine this if you do not want to select mono audio (left or right)
8868 with a stereo MPEG layer 2/3 audio stream. The command line option
8869 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8870 right-only), with 0 being the default.
8872 #define CONFIG_FAKE_MONO 1
8874 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8875 #define MAX_OUTBURST 65536
8877 /* set up audio OUTBURST. Do not change this! */
8878 #define OUTBURST 512
8880 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8881 #undef FAST_OSD
8882 #undef FAST_OSD_TABLE
8884 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8885 #define MPEG12_POSTPROC 1
8886 #define ATTRIBUTE_ALIGNED_MAX 16
8890 #define CONFIGURATION "$_configuration"
8892 #define MPLAYER_DATADIR "$_datadir"
8893 #define MPLAYER_CONFDIR "$_confdir"
8894 #define MPLAYER_LIBDIR "$_libdir"
8896 /* definitions needed by included libraries */
8897 #define HAVE_INTTYPES_H 1
8898 /* libmpeg2 + FFmpeg */
8899 $def_fast_inttypes
8900 /* libdvdcss */
8901 #define HAVE_ERRNO_H 1
8902 /* libdvdcss + libdvdread */
8903 #define HAVE_LIMITS_H 1
8904 /* libdvdcss + libfaad2 */
8905 #define HAVE_UNISTD_H 1
8906 /* libfaad2 + libdvdread */
8907 #define STDC_HEADERS 1
8908 #define HAVE_MEMCPY 1
8909 /* libfaad2 */
8910 #define HAVE_STRING_H 1
8911 #define HAVE_STRINGS_H 1
8912 #define HAVE_SYS_STAT_H 1
8913 #define HAVE_SYS_TYPES_H 1
8914 /* libdvdnav */
8915 #define READ_CACHE_TRACE 0
8916 /* libdvdread */
8917 #define HAVE_DLFCN_H 1
8918 $def_dvdcss
8921 /* system headers */
8922 $def_alloca_h
8923 $def_alsa_asoundlib_h
8924 $def_altivec_h
8925 $def_malloc_h
8926 $def_mman_h
8927 $def_mman_has_map_failed
8928 $def_soundcard_h
8929 $def_sys_asoundlib_h
8930 $def_sys_soundcard_h
8931 $def_sys_sysinfo_h
8932 $def_termios_h
8933 $def_termios_sys_h
8934 $def_winsock2_h
8937 /* system functions */
8938 $def_gethostbyname2
8939 $def_gettimeofday
8940 $def_glob
8941 $def_langinfo
8942 $def_lrintf
8943 $def_map_memalign
8944 $def_memalign
8945 $def_nanosleep
8946 $def_posix_select
8947 $def_select
8948 $def_setenv
8949 $def_setmode
8950 $def_shm
8951 $def_strsep
8952 $def_swab
8953 $def_sysi86
8954 $def_sysi86_iv
8955 $def_termcap
8956 $def_termios
8957 $def_vsscanf
8960 /* system-specific features */
8961 $def_asmalign_pot
8962 $def_builtin_expect
8963 $def_dl
8964 $def_dos_paths
8965 $def_extern_asm
8966 $def_extern_prefix
8967 $def_iconv
8968 $def_kstat
8969 $def_macosx_bundle
8970 $def_macosx_finder
8971 $def_maemo
8972 $def_named_asm_args
8973 $def_priority
8974 $def_quicktime
8975 $def_restrict_keyword
8976 $def_rtc
8977 $def_unrar_exec
8980 /* configurable options */
8981 $def_charset
8982 $def_crash_debug
8983 $def_debug
8984 $def_dynamic_plugins
8985 $def_fastmemcpy
8986 $def_menu
8987 $def_runtime_cpudetection
8988 $def_sighandler
8989 $def_sortsub
8990 $def_stream_cache
8991 $def_pthread_cache
8994 /* CPU stuff */
8995 #define __CPU__ $iproc
8996 $def_words_endian
8997 $def_bigendian
8998 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8999 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
9000 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
9003 /* DVD/VCD/CD */
9004 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
9005 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
9006 $def_bsdi_dvd
9007 $def_cddb
9008 $def_cdio
9009 $def_cdparanoia
9010 $def_cdrom
9011 $def_dvd
9012 $def_dvd_bsd
9013 $def_dvd_darwin
9014 $def_dvd_linux
9015 $def_dvd_openbsd
9016 $def_dvdio
9017 $def_dvdnav
9018 $def_dvdread
9019 $def_hpux_scsi_h
9020 $def_libcdio
9021 $def_sol_scsi_h
9022 $def_vcd
9025 /* codec libraries */
9026 $def_faac
9027 $def_faad
9028 $def_faad_internal
9029 $def_liba52
9030 $def_libdca
9031 $def_libdv
9032 $def_liblzo
9033 $def_libmpeg2
9034 $def_mad
9035 $def_mp3lame
9036 $def_mp3lame_preset
9037 $def_mp3lame_preset_medium
9038 $def_mp3lib
9039 $def_musepack
9040 $def_speex
9041 $def_theora
9042 $def_toolame
9043 $def_tremor
9044 $def_twolame
9045 $def_vorbis
9046 $def_x264
9047 $def_xvid
9048 $def_zlib
9050 $def_libnut
9053 /* binary codecs */
9054 $def_qtx
9055 $def_qtx_win32
9056 $def_real
9057 $def_win32_loader
9058 $def_win32dll
9059 $def_xanim
9060 $def_xmms
9061 #define BINARY_CODECS_PATH "$_codecsdir"
9062 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
9065 /* GUI */
9066 $def_gtk2
9067 $def_gui
9068 $def_xshape
9071 /* Audio output drivers */
9072 $def_alsa
9073 $def_alsa1x
9074 $def_alsa5
9075 $def_alsa9
9076 $def_arts
9077 $def_coreaudio
9078 $def_dart
9079 $def_esd
9080 $def_esd_latency
9081 $def_jack
9082 $def_kai
9083 $def_nas
9084 $def_openal
9085 $def_openal_h
9086 $def_ossaudio
9087 $def_ossaudio_devdsp
9088 $def_ossaudio_devmixer
9089 $def_pulse
9090 $def_sgiaudio
9091 $def_sunaudio
9092 $def_win32waveout
9094 $def_ladspa
9095 $def_libbs2b
9098 /* input */
9099 $def_apple_ir
9100 $def_apple_remote
9101 $def_ioctl_bt848_h_name
9102 $def_ioctl_meteor_h_name
9103 $def_joystick
9104 $def_lirc
9105 $def_lircc
9106 $def_pvr
9107 $def_radio
9108 $def_radio_bsdbt848
9109 $def_radio_capture
9110 $def_radio_v4l
9111 $def_radio_v4l2
9112 $def_tv
9113 $def_tv_bsdbt848
9114 $def_tv_dshow
9115 $def_tv_v4l
9116 $def_tv_v4l1
9117 $def_tv_v4l2
9120 /* font stuff */
9121 $def_ass
9122 $def_ass_internal
9123 $def_bitmap_font
9124 $def_enca
9125 $def_fontconfig
9126 $def_freetype
9127 $def_fribidi
9130 /* networking */
9131 $def_closesocket
9132 $def_ftp
9133 $def_inet6
9134 $def_inet_aton
9135 $def_inet_pton
9136 $def_live
9137 $def_nemesi
9138 $def_network
9139 $def_smb
9140 $def_socklen_t
9141 $def_struct_ipv6_mreq
9142 $def_struct_sockaddr_in6
9143 $def_struct_sockaddr_sa_len
9144 $def_vstream
9145 $def_addrinfo
9146 $def_getaddrinfo
9147 $def_sockaddr_storage
9150 /* libvo options */
9151 $def_3dfx
9152 $def_aa
9153 $def_bl
9154 $def_caca
9155 $def_corevideo
9156 $def_dfbmga
9157 $def_dga
9158 $def_dga1
9159 $def_dga2
9160 $def_direct3d
9161 $def_directfb
9162 $def_directfb_version
9163 $def_directx
9164 $def_dvb
9165 $def_dvbin
9166 $def_dxr2
9167 $def_dxr3
9168 $def_fbdev
9169 $def_ggi
9170 $def_ggiwmh
9171 $def_gif
9172 $def_gif_4
9173 $def_gif_tvt_hack
9174 $def_gl
9175 $def_gl_win32
9176 $def_gl_x11
9177 $def_gl_sdl
9178 $def_matrixview
9179 $def_ivtv
9180 $def_jpeg
9181 $def_kva
9182 $def_md5sum
9183 $def_mga
9184 $def_mng
9185 $def_png
9186 $def_pnm
9187 $def_quartz
9188 $def_s3fb
9189 $def_sdl
9190 $def_sdl_sdl_h
9191 $def_svga
9192 $def_tdfxfb
9193 $def_tdfxvid
9194 $def_tga
9195 $def_v4l2
9196 $def_vdpau
9197 $def_vesa
9198 $def_vidix
9199 $def_vidix_drv_cyberblade
9200 $def_vidix_drv_ivtv
9201 $def_vidix_drv_mach64
9202 $def_vidix_drv_mga
9203 $def_vidix_drv_mga_crtc2
9204 $def_vidix_drv_nvidia
9205 $def_vidix_drv_pm3
9206 $def_vidix_drv_radeon
9207 $def_vidix_drv_rage128
9208 $def_vidix_drv_s3
9209 $def_vidix_drv_sh_veu
9210 $def_vidix_drv_sis
9211 $def_vidix_drv_unichrome
9212 $def_vidix_pfx
9213 $def_vm
9214 $def_wii
9215 $def_x11
9216 $def_xdpms
9217 $def_xf86keysym
9218 $def_xinerama
9219 $def_xmga
9220 $def_xss
9221 $def_xv
9222 $def_xvmc
9223 $def_xvr100
9224 $def_yuv4mpeg
9225 $def_zr
9228 /* FFmpeg */
9229 $def_libavcodec
9230 $def_libavcodec_a
9231 $def_libavcodec_so
9232 $def_libavformat
9233 $def_libavformat_a
9234 $def_libavformat_so
9235 $def_libavutil
9236 $def_libavutil_a
9237 $def_libavutil_so
9238 $def_libpostproc
9239 $def_libpostproc_a
9240 $def_libpostproc_so
9241 $def_libswscale
9242 $def_libswscale_a
9243 $def_libswscale_so
9245 #define CONFIG_DECODERS 1
9246 #define CONFIG_ENCODERS 1
9247 #define CONFIG_DEMUXERS 1
9248 $def_muxers
9250 $def_arpa_inet_h
9251 $def_bswap
9252 $def_bzlib
9253 $def_dcbzl
9254 $def_exp2
9255 $def_exp2f
9256 $def_fast_64bit
9257 $def_fast_unaligned
9258 $def_hardcoded_tables
9259 $def_libavcodec_mpegaudio_hp
9260 $def_llrint
9261 $def_llrintf
9262 $def_local_aligned_8
9263 $def_local_aligned_16
9264 $def_log2
9265 $def_log2f
9266 $def_lrint
9267 $def_memalign_hack
9268 $def_mlib
9269 $def_mkstemp
9270 $def_posix_memalign
9271 $def_pthreads
9272 $def_round
9273 $def_roundf
9274 $def_ten_operands
9275 $def_threads
9276 $def_truncf
9277 $def_xform_asm
9278 $def_yasm
9280 #define CONFIG_FASTDIV 0
9281 #define CONFIG_FFSERVER 0
9282 #define CONFIG_GPL 1
9283 #define CONFIG_GRAY 0
9284 #define CONFIG_LIBVORBIS 0
9285 #define CONFIG_POWERPC_PERF 0
9286 #define CONFIG_SMALL 0
9287 #define CONFIG_SWSCALE_ALPHA 1
9289 #if defined(HAVE_AF_INET6) && (!defined(_WIN32) || defined(__CYGWIN__))
9290 #define CONFIG_IPV6 1
9291 #else
9292 #define CONFIG_IPV6 0
9293 #endif
9295 #define HAVE_ATTRIBUTE_PACKED 1
9296 #define HAVE_GETHRTIME 0
9297 #define HAVE_INLINE_ASM 1
9298 #define HAVE_LDBRX 0
9299 #define HAVE_POLL_H 1
9300 #define HAVE_PPC4XX 0
9301 #define HAVE_STRERROR_R 0
9302 #define HAVE_SYS_SELECT_H 0
9303 #define HAVE_VFP_ARGS 1
9304 #define HAVE_VIRTUALALLOC 0
9306 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
9307 #define CONFIG_AANDCT 1
9308 #define CONFIG_DCT 1
9309 #define CONFIG_DWT 1
9310 #define CONFIG_FFT 1
9311 #define CONFIG_GOLOMB 1
9312 #define CONFIG_H264DSP 1
9313 #define CONFIG_LPC 1
9314 #define CONFIG_MDCT 1
9315 #define CONFIG_RDFT 1
9317 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
9318 $def_ebx_available
9319 #ifndef MP_DEBUG
9320 #define HAVE_EBP_AVAILABLE 1
9321 #else
9322 #define HAVE_EBP_AVAILABLE 0
9323 #endif
9325 #define FFMPEG_CONFIGURATION "--enable-gpl --enable-postproc"
9326 #define FFMPEG_LICENSE "GPL version 2 or later"
9328 /* External libraries used through libavcodec. */
9329 $def_faac_lavc
9330 $def_libdirac_lavc
9331 $def_libopencore_amrnb
9332 $def_libopencore_amrwb
9333 $def_libopenjpeg
9334 $def_librtmp
9335 $def_libschroedinger_lavc
9336 $def_mp3lame_lavc
9337 $def_x264_lavc
9338 $def_xvid_lavc
9340 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
9341 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
9342 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
9343 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
9344 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
9345 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
9346 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
9347 $(ff_config_enable "$_libavhwaccels_all" "$_libavhwaccels")
9349 #endif /* MPLAYER_CONFIG_H */
9352 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
9353 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
9355 ############################################################################
9357 # Create avconfig.h for FFmpeg.
9358 cat > "$TMPH" << EOF
9359 /* Generated by mpconfigure */
9360 #ifndef AVUTIL_AVCONFIG_H
9361 #define AVUTIL_AVCONFIG_H
9362 $def_av_bigendian
9363 #endif /* AVUTIL_AVCONFIG_H */
9366 # Do not overwrite an unchanged avconfig.h to avoid superfluous rebuilds.
9367 cmp -s "$TMPH" libavutil/avconfig.h || mv -f "$TMPH" libavutil/avconfig.h
9369 #############################################################################
9371 cat << EOF
9373 Config files successfully generated by ./configure $_configuration !
9375 Install prefix: $_prefix
9376 Data directory: $_datadir
9377 Config direct.: $_confdir
9379 Byte order: $_byte_order
9380 Optimizing for: $_optimizing
9382 Languages:
9383 Messages/GUI: $language_msg
9384 Manual pages: $language_man
9385 Documentation: $language_doc
9387 Enabled optional drivers:
9388 Input: $inputmodules
9389 Codecs: $codecmodules
9390 Audio output: $aomodules
9391 Video output: $vomodules
9393 Disabled optional drivers:
9394 Input: $noinputmodules
9395 Codecs: $nocodecmodules
9396 Audio output: $noaomodules
9397 Video output: $novomodules
9399 'config.h' and 'config.mak' contain your configuration options.
9400 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
9401 compile *** DO NOT REPORT BUGS if you tweak these files ***
9403 'make' will now compile MPlayer and 'make install' will install it.
9404 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
9409 if test "$_mtrr" = yes ; then
9410 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
9411 echo
9414 if ! x86_32; then
9415 cat <<EOF
9416 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
9417 operating system ($system_name). You may encounter a few files that cannot
9418 be played due to missing open source video/audio codec support.
9424 cat <<EOF
9425 Check $TMPLOG if you wonder why an autodetection failed (make sure
9426 development headers/packages are installed).
9428 NOTE: The --enable-* parameters unconditionally force options on, completely
9429 skipping autodetection. This behavior is unlike what you may be used to from
9430 autoconf-based configure scripts that can decide to override you. This greater
9431 level of control comes at a price. You may have to provide the correct compiler
9432 and linker flags yourself.
9433 If you used one of these options (except --enable-menu and similar ones that
9434 turn on internal features) and experience a compilation or linking failure,
9435 make sure you have passed the necessary compiler/linker flags to configure.
9437 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
9441 if test "$_warn_CFLAGS" = yes; then
9442 cat <<EOF
9444 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
9445 but:
9447 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
9449 It is strongly recommended to let MPlayer choose the correct CFLAGS!
9450 To do so, execute 'CFLAGS= ./configure <options>'
9455 # Last move:
9456 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"