enable vo_mga, vo_xmga, vf_palette, vf_halfpack
[mplayer/glamo.git] / configure
blob5d729bdc307984102173d1ead4b4111b3dcfb72c
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 cflag_check() {
85 cat > $TMPC << EOF
86 int main(void) { return 0; }
87 EOF
88 compile_check $TMPC $@
91 function_check() {
92 cat > $TMPC << EOF
93 #include <$1>
94 int main(void) { $2; return 0; }
95 EOF
96 shift
97 shift
98 compile_check $TMPC $@
101 header_check() {
102 cat > $TMPC << EOF
103 #include <$1>
104 int main(void) { return 0; }
106 shift
107 compile_check $TMPC $@
110 # this is a special check only to be
111 # used for broken headers that do not
112 # include all dependencies
113 header_check_broken() {
114 cat > $TMPC << EOF
115 #include <$1>
116 #include <$2>
117 int main(void) { return 0; }
119 shift
120 shift
121 compile_check $TMPC $@
124 yasm_check() {
125 echo >> "$TMPLOG"
126 cat "$TMPS" >> "$TMPLOG"
127 echo >> "$TMPLOG"
128 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
129 rm -f "$TMPEXE"
130 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
131 TMPRES="$?"
132 echo >> "$TMPLOG"
133 echo >> "$TMPLOG"
134 return "$TMPRES"
137 tmp_run() {
138 "$TMPEXE" >> "$TMPLOG" 2>&1
141 # Display error message, flushes tempfile, exit
142 die () {
143 echo
144 echo "Error: $@" >&2
145 echo >&2
146 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
147 echo "Check \"$TMPLOG\" if you do not understand why it failed."
148 exit 1
151 # OS test booleans functions
152 issystem() {
153 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
155 aix() { issystem "AIX"; }
156 amigaos() { issystem "AmigaOS"; }
157 beos() { issystem "BEOS"; }
158 bsdos() { issystem "BSD/OS"; }
159 cygwin() { issystem "CYGWIN"; }
160 darwin() { issystem "Darwin"; }
161 dragonfly() { issystem "DragonFly"; }
162 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
163 gnu() { issystem "GNU"; }
164 hpux() { issystem "HP-UX"; }
165 irix() { issystem "IRIX"; }
166 linux() { issystem "Linux"; }
167 mingw32() { issystem "MINGW32"; }
168 morphos() { issystem "MorphOS"; }
169 netbsd() { issystem "NetBSD"; }
170 openbsd() { issystem "OpenBSD"; }
171 os2() { issystem "OS/2"; }
172 qnx() { issystem "QNX"; }
173 sunos() { issystem "SunOS"; }
174 win32() { cygwin || mingw32; }
176 # arch test boolean functions
177 # x86/x86pc is used by QNX
178 x86_32() {
179 case "$host_arch" in
180 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
181 *) return 1 ;;
182 esac
185 x86_64() {
186 case "$host_arch" in
187 x86_64|amd64) return 0 ;;
188 *) return 1 ;;
189 esac
192 x86() {
193 x86_32 || x86_64
196 ppc() {
197 case "$host_arch" in
198 ppc|ppc64|powerpc|powerpc64) return 0;;
199 *) return 1;;
200 esac
203 alpha() {
204 case "$host_arch" in
205 alpha*) return 0;;
206 *) return 1;;
207 esac
210 arm() {
211 case "$host_arch" in
212 arm*) return 0;;
213 *) return 1;;
214 esac
217 # Use this before starting a check
218 echocheck() {
219 echo "============ Checking for $@ ============" >> "$TMPLOG"
220 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
223 # Use this to echo the results of a check
224 echores() {
225 if test "$res_comment" ; then
226 res_comment="($res_comment)"
228 echo "Result is: $@ $res_comment" >> "$TMPLOG"
229 echo "##########################################" >> "$TMPLOG"
230 echo "" >> "$TMPLOG"
231 echo "$@ $res_comment"
232 res_comment=""
234 #############################################################################
236 # Check how echo works in this /bin/sh
237 case $(echo -n) in
238 -n) _echo_n= _echo_c='\c' ;; # SysV echo
239 *) _echo_n='-n ' _echo_c= ;; # BSD echo
240 esac
242 msg_lang_all=''
243 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
244 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")
245 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
247 show_help(){
248 cat << EOF
249 Usage: $0 [OPTIONS]...
251 Configuration:
252 -h, --help display this help and exit
254 Installation directories:
255 --prefix=DIR prefix directory for installation [/usr/local]
256 --bindir=DIR directory for installing binaries [PREFIX/bin]
257 --datadir=DIR directory for installing machine independent
258 data files (skins, etc) [PREFIX/share/mplayer]
259 --mandir=DIR directory for installing man pages [PREFIX/share/man]
260 --confdir=DIR directory for installing configuration files
261 [PREFIX/etc/mplayer]
262 --localedir=DIR directory for locale tree [PREFIX/share/locale]
263 --libdir=DIR directory for object code libraries [PREFIX/lib]
264 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
266 Optional features:
267 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
268 --disable-mplayer disable MPlayer compilation [enable]
269 --disable-largefiles disable support for files > 2GB [enable]
270 --enable-termcap use termcap database for key codes [autodetect]
271 --enable-termios use termios database for key codes [autodetect]
272 --disable-iconv disable iconv for encoding conversion [autodetect]
273 --disable-langinfo do not use langinfo [autodetect]
274 --enable-lirc enable LIRC (remote control) support [autodetect]
275 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
276 --enable-joystick enable joystick support [disable]
277 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
278 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
279 --disable-vm disable X video mode extensions [autodetect]
280 --disable-xf86keysym disable support for multimedia keys [autodetect]
281 --enable-radio enable radio interface [disable]
282 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
283 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
284 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
285 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
286 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
287 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
288 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
289 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
290 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
291 --disable-networking disable networking [enable]
292 --enable-winsock2_h enable winsock2_h [autodetect]
293 --enable-smb enable Samba (SMB) input [autodetect]
294 --enable-live enable LIVE555 Streaming Media [autodetect]
295 --enable-nemesi enable Nemesi Streaming Media [autodetect]
296 --disable-vcd disable VCD support [autodetect]
297 --disable-bluray disable Blu-ray support [autodetect]
298 --disable-dvdnav disable libdvdnav [autodetect]
299 --disable-dvdread disable libdvdread [autodetect]
300 --disable-dvdread-internal disable internal libdvdread [autodetect]
301 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
302 --disable-cdparanoia disable cdparanoia [autodetect]
303 --disable-cddb disable cddb [autodetect]
304 --disable-bitmap-font disable bitmap font support [enable]
305 --disable-freetype disable FreeType 2 font rendering [autodetect]
306 --disable-fontconfig disable fontconfig font lookup [autodetect]
307 --disable-unrarexec disable using of UnRAR executable [enabled]
308 --enable-menu enable OSD menu (not DVD menu) [disabled]
309 --disable-sortsub disable subtitle sorting [enabled]
310 --enable-fribidi enable the FriBiDi libs [autodetect]
311 --disable-enca disable ENCA charset oracle library [autodetect]
312 --disable-maemo disable maemo specific features [autodetect]
313 --enable-macosx-finder enable Mac OS X Finder invocation parameter
314 parsing [disabled]
315 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
316 --disable-inet6 disable IPv6 support [autodetect]
317 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
318 --disable-ftp disable FTP support [enabled]
319 --disable-vstream disable TiVo vstream client support [autodetect]
320 --disable-pthreads disable Posix threads support [autodetect]
321 --disable-w32threads disable Win32 threads support [autodetect]
322 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
323 --enable-rpath enable runtime linker path for extra libs [disabled]
325 Codecs:
326 --enable-gif enable GIF support [autodetect]
327 --enable-png enable PNG input/output support [autodetect]
328 --enable-mng enable MNG input support [autodetect]
329 --enable-jpeg enable JPEG input/output support [autodetect]
330 --enable-libcdio enable libcdio support [autodetect]
331 --enable-liblzo enable liblzo support [autodetect]
332 --disable-win32dll disable Win32 DLL support [autodetect]
333 --disable-qtx disable QuickTime codecs support [enabled]
334 --disable-xanim disable XAnim codecs support [enabled]
335 --disable-real disable RealPlayer codecs support [enabled]
336 --disable-xvid disable Xvid [autodetect]
337 --disable-x264 disable x264 [autodetect]
338 --disable-libnut disable libnut [autodetect]
339 --disable-libavutil disable libavutil [autodetect]
340 --disable-libavcodec disable libavcodec [autodetect]
341 --disable-libavformat disable libavformat [autodetect]
342 --disable-libpostproc disable libpostproc [autodetect]
343 --disable-libswscale disable libswscale [autodetect]
344 --disable-tremor-internal disable internal Tremor [enabled]
345 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
346 --enable-tremor enable external Tremor [autodetect]
347 --disable-libvorbis disable libvorbis support [autodetect]
348 --disable-speex disable Speex support [autodetect]
349 --enable-theora enable OggTheora libraries [autodetect]
350 --enable-faad enable external FAAD2 (AAC) [autodetect]
351 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
352 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
353 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
354 --disable-ladspa disable LADSPA plugin support [autodetect]
355 --disable-libbs2b disable libbs2b audio filter support [autodetect]
356 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
357 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
358 --disable-mad disable libmad (MPEG audio) support [autodetect]
359 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
360 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
361 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
362 --enable-xmms enable XMMS input plugin support [disabled]
363 --enable-libdca enable libdca support [autodetect]
364 --disable-mp3lib disable builtin mp3lib [autodetect]
365 --disable-liba52 disable liba52 [autodetect]
366 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
367 --disable-musepack disable musepack support [autodetect]
369 Video output:
370 --disable-vidix disable VIDIX [for x86 *nix]
371 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
372 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
373 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
374 --disable-vidix-pcidb disable VIDIX PCI device name database
375 --enable-dhahelper enable VIDIX dhahelper support
376 --enable-svgalib_helper enable VIDIX svgalib_helper support
377 --enable-gl enable OpenGL video output [autodetect]
378 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
379 --enable-dga2 enable DGA 2 support [autodetect]
380 --enable-dga1 enable DGA 1 support [autodetect]
381 --enable-vesa enable VESA video output [autodetect]
382 --enable-svga enable SVGAlib video output [autodetect]
383 --enable-sdl enable SDL video output [autodetect]
384 --enable-kva enable KVA video output [autodetect]
385 --enable-aa enable AAlib video output [autodetect]
386 --enable-caca enable CACA video output [autodetect]
387 --enable-ggi enable GGI video output [autodetect]
388 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
389 --enable-direct3d enable Direct3D video output [autodetect]
390 --enable-directx enable DirectX video output [autodetect]
391 --enable-dxr2 enable DXR2 video output [autodetect]
392 --enable-dxr3 enable DXR3/H+ video output [autodetect]
393 --enable-ivtv enable IVTV TV-Out video output [autodetect]
394 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
395 --enable-dvb enable DVB video output [autodetect]
396 --enable-mga enable mga_vid video output [autodetect]
397 --enable-xmga enable mga_vid X11 video output [autodetect]
398 --enable-xv enable Xv video output [autodetect]
399 --enable-xvmc enable XvMC acceleration [disable]
400 --enable-vdpau enable VDPAU acceleration [autodetect]
401 --enable-vm enable XF86VidMode support [autodetect]
402 --enable-xinerama enable Xinerama support [autodetect]
403 --enable-x11 enable X11 video output [autodetect]
404 --enable-xshape enable XShape support [autodetect]
405 --disable-xss disable screensaver support via xss [autodetect]
406 --enable-fbdev enable FBDev video output [autodetect]
407 --enable-mlib enable mediaLib video output (Solaris) [disable]
408 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
409 --enable-tdfxfb enable tdfxfb video output [disable]
410 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
411 --enable-wii enable Nintendo Wii/GameCube video output [disable]
412 --enable-directfb enable DirectFB video output [autodetect]
413 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
414 --enable-bl enable Blinkenlights video output [disable]
415 --enable-tdfxvid enable tdfx_vid video output [disable]
416 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
417 --disable-tga disable Targa video output [enable]
418 --disable-pnm disable PNM video output [enable]
419 --disable-md5sum disable md5sum video output [enable]
420 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
421 --disable-corevideo disable CoreVideo video output [autodetect]
422 --disable-quartz disable Quartz video output [autodetect]
424 Audio output:
425 --disable-alsa disable ALSA audio output [autodetect]
426 --disable-ossaudio disable OSS audio output [autodetect]
427 --disable-arts disable aRts audio output [autodetect]
428 --disable-esd disable esd audio output [autodetect]
429 --disable-pulse disable Pulseaudio audio output [autodetect]
430 --disable-jack disable JACK audio output [autodetect]
431 --enable-openal enable OpenAL audio output [disable]
432 --disable-nas disable NAS audio output [autodetect]
433 --disable-sgiaudio disable SGI audio output [autodetect]
434 --disable-sunaudio disable Sun audio output [autodetect]
435 --disable-kai disable KAI audio output [autodetect]
436 --disable-dart disable DART audio output [autodetect]
437 --disable-win32waveout disable Windows waveout audio output [autodetect]
438 --disable-coreaudio disable CoreAudio audio output [autodetect]
439 --disable-select disable using select() on the audio device [enable]
441 Language options:
442 --enable-translation enable support for translated output [disable]
443 --charset=charset convert the console messages to this character set
444 --language-doc=lang language to use for the documentation [en]
445 --language-man=lang language to use for the man pages [en]
446 --language-msg=lang extra languages for program messages [all]
447 --language=lang default language to use [en]
448 Specific options override --language. You can pass a list of languages separated
449 by whitespace or commas instead of a single language. Nonexisting translations
450 will be dropped from each list. All translations available in the list will be
451 installed. The value "all" will activate all translations. The LINGUAS
452 environment variable is honored. In all cases the fallback is English.
453 The program always supports English-language output; additional message
454 languages are only installed if --enable-translation is also specified.
455 Available values for --language-doc are: all $doc_lang_all
456 Available values for --language-man are: all $man_lang_all
457 Available values for --language-msg are: all $msg_lang_all
459 Miscellaneous options:
460 --enable-runtime-cpudetection enable runtime CPU detection [disable]
461 --enable-cross-compile enable cross-compilation [autodetect]
462 --cc=COMPILER C compiler to build MPlayer [gcc]
463 --host-cc=COMPILER C compiler for tools needed while building [gcc]
464 --as=ASSEMBLER assembler to build MPlayer [as]
465 --nm=NM nm tool to build MPlayer [nm]
466 --yasm=YASM Yasm assembler to build MPlayer [yasm]
467 --ar=AR librarian to build MPlayer [ar]
468 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
469 --windres=WINDRES windres to build MPlayer [windres]
470 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
471 --enable-static build a statically linked binary
472 --with-install=PATH path to a custom install program
474 Advanced options:
475 --enable-mmx enable MMX [autodetect]
476 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
477 --enable-3dnow enable 3DNow! [autodetect]
478 --enable-3dnowext enable extended 3DNow! [autodetect]
479 --enable-sse enable SSE [autodetect]
480 --enable-sse2 enable SSE2 [autodetect]
481 --enable-ssse3 enable SSSE3 [autodetect]
482 --enable-shm enable shm [autodetect]
483 --enable-altivec enable AltiVec (PowerPC) [autodetect]
484 --enable-armv5te enable DSP extensions (ARM) [autodetect]
485 --enable-armv6 enable ARMv6 (ARM) [autodetect]
486 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
487 --enable-armvfp enable ARM VFP (ARM) [autodetect]
488 --enable-neon enable NEON (ARM) [autodetect]
489 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
490 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
491 --enable-big-endian force byte order to big-endian [autodetect]
492 --enable-debug[=1-3] compile-in debugging information [disable]
493 --enable-profile compile-in profiling information [disable]
494 --disable-sighandler disable sighandler for crashes [enable]
495 --enable-crash-debug enable automatic gdb attach on crash [disable]
496 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
497 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
499 Use these options if autodetection fails:
500 --extra-cflags=FLAGS extra CFLAGS
501 --extra-ldflags=FLAGS extra LDFLAGS
502 --extra-libs=FLAGS extra linker flags
503 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
504 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
505 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
507 --with-freetype-config=PATH path to freetype-config
508 --with-glib-config=PATH path to glib*-config
509 --with-gtk-config=PATH path to gtk*-config
510 --with-sdl-config=PATH path to sdl*-config
511 --with-dvdnav-config=PATH path to dvdnav-config
512 --with-dvdread-config=PATH path to dvdread-config
514 This configure script is NOT autoconf-based, even though its output is similar.
515 It will try to autodetect all configuration options. If you --enable an option
516 it will be forcefully turned on, skipping autodetection. This can break
517 compilation, so you need to know what you are doing.
519 exit 0
520 } #show_help()
522 # GOTCHA: the variables below defines the default behavior for autodetection
523 # and have - unless stated otherwise - at least 2 states : yes no
524 # If autodetection is available then the third state is: auto
525 _mmx=auto
526 _3dnow=auto
527 _3dnowext=auto
528 _mmxext=auto
529 _sse=auto
530 _sse2=auto
531 _ssse3=auto
532 _cmov=auto
533 _fast_cmov=auto
534 _fast_clz=auto
535 _armv5te=auto
536 _armv6=auto
537 _armv6t2=auto
538 _armvfp=auto
539 neon=auto
540 _iwmmxt=auto
541 _mtrr=auto
542 _altivec=auto
543 _install=install
544 _ranlib=ranlib
545 _windres=windres
546 _cc=cc
547 _ar=ar
548 test "$CC" && _cc="$CC"
549 _as=auto
550 _nm=auto
551 _yasm=yasm
552 _runtime_cpudetection=no
553 _cross_compile=auto
554 _prefix="/usr/local"
555 _libavutil=auto
556 _libavcodec=auto
557 _libavformat=auto
558 _libpostproc=auto
559 _libswscale=auto
560 _libavcodec_internals=no
561 _libswscale_internals=no
562 _mencoder=yes
563 _mplayer=yes
564 _x11=auto
565 _xshape=auto
566 _xss=auto
567 _dga1=auto
568 _dga2=auto
569 _xv=auto
570 _xvmc=no #auto when complete
571 _vdpau=auto
572 _sdl=auto
573 _kva=auto
574 _direct3d=auto
575 _directx=auto
576 _win32waveout=auto
577 _nas=auto
578 _png=auto
579 _mng=auto
580 _jpeg=auto
581 _pnm=yes
582 _md5sum=yes
583 _yuv4mpeg=yes
584 _gif=auto
585 _gl=auto
586 matrixview=yes
587 _ggi=auto
588 _ggiwmh=auto
589 _aa=auto
590 _caca=auto
591 _svga=auto
592 _vesa=auto
593 _fbdev=auto
594 _dvb=auto
595 _dxr2=auto
596 _dxr3=auto
597 _ivtv=auto
598 _v4l2=auto
599 _iconv=auto
600 _langinfo=auto
601 _rtc=auto
602 _ossaudio=auto
603 _arts=auto
604 _esd=auto
605 _pulse=auto
606 _jack=auto
607 _kai=auto
608 _dart=auto
609 _openal=no
610 _libcdio=auto
611 _liblzo=auto
612 _mad=auto
613 _mp3lame=auto
614 _toolame=auto
615 _twolame=auto
616 _tremor=auto
617 _tremor_internal=yes
618 _tremor_low=no
619 _libvorbis=auto
620 _speex=auto
621 _theora=auto
622 _mpg123=auto
623 _mp3lib=auto
624 _liba52=auto
625 _libdca=auto
626 _libmpeg2=auto
627 _faad=auto
628 _faad_internal=auto
629 _faad_fixed=no
630 _faac=auto
631 _ladspa=auto
632 _libbs2b=auto
633 _xmms=no
634 _vcd=auto
635 _bluray=auto
636 _dvdnav=auto
637 _dvdnavconfig=dvdnav-config
638 _dvdreadconfig=dvdread-config
639 _dvdread=auto
640 _dvdread_internal=auto
641 _libdvdcss_internal=auto
642 _xanim=auto
643 _real=auto
644 _live=auto
645 _nemesi=auto
646 _native_rtsp=yes
647 _xinerama=auto
648 _mga=auto
649 _xmga=auto
650 _vm=auto
651 _xf86keysym=auto
652 _mlib=no #broken, thus disabled
653 _sgiaudio=auto
654 _sunaudio=auto
655 _alsa=auto
656 _fastmemcpy=yes
657 _unrar_exec=auto
658 _win32dll=auto
659 _select=yes
660 _radio=no
661 _radio_capture=no
662 _radio_v4l=auto
663 _radio_v4l2=auto
664 _radio_bsdbt848=auto
665 _tv=yes
666 _tv_v4l1=auto
667 _tv_v4l2=auto
668 _tv_bsdbt848=auto
669 _tv_dshow=auto
670 _pvr=auto
671 networking=yes
672 _winsock2_h=auto
673 _smb=auto
674 _vidix=auto
675 _vidix_pcidb=yes
676 _dhahelper=no
677 _svgalib_helper=no
678 _joystick=no
679 _xvid=auto
680 _x264=auto
681 _libnut=auto
682 _lirc=auto
683 _lircc=auto
684 _apple_remote=auto
685 _apple_ir=auto
686 _gui=no
687 _gtk1=no
688 _termcap=auto
689 _termios=auto
690 _3dfx=no
691 _s3fb=no
692 _wii=no
693 _tdfxfb=no
694 _tdfxvid=no
695 _xvr100=auto
696 _tga=yes
697 _directfb=auto
698 _zr=auto
699 _bl=no
700 _largefiles=yes
701 #language=en
702 _shm=auto
703 _translation=no
704 _charset="UTF-8"
705 _dynamic_plugins=no
706 _crash_debug=no
707 _sighandler=yes
708 _libdv=auto
709 _cdparanoia=auto
710 _cddb=auto
711 _big_endian=auto
712 _bitmap_font=yes
713 _freetype=auto
714 _fontconfig=auto
715 _menu=no
716 _qtx=auto
717 _maemo=auto
718 _coreaudio=auto
719 _corevideo=auto
720 _quartz=auto
721 quicktime=auto
722 _macosx_finder=no
723 _macosx_bundle=auto
724 _sortsub=yes
725 _freetypeconfig='freetype-config'
726 _fribidi=auto
727 _enca=auto
728 _inet6=auto
729 _gethostbyname2=auto
730 _ftp=yes
731 _musepack=auto
732 _vstream=auto
733 _pthreads=auto
734 _w32threads=auto
735 _ass=auto
736 _rpath=no
737 _asmalign_pot=auto
738 _stream_cache=yes
739 _priority=no
740 def_dos_paths="#define HAVE_DOS_PATHS 0"
741 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
742 def_priority="#undef CONFIG_PRIORITY"
743 def_pthread_cache="#undef PTHREAD_CACHE"
744 _need_shmem=yes
745 for ac_option do
746 case "$ac_option" in
747 --help|-help|-h)
748 show_help
750 --prefix=*)
751 _prefix=$(echo $ac_option | cut -d '=' -f 2)
753 --bindir=*)
754 _bindir=$(echo $ac_option | cut -d '=' -f 2)
756 --datadir=*)
757 _datadir=$(echo $ac_option | cut -d '=' -f 2)
759 --mandir=*)
760 _mandir=$(echo $ac_option | cut -d '=' -f 2)
762 --confdir=*)
763 _confdir=$(echo $ac_option | cut -d '=' -f 2)
765 --libdir=*)
766 _libdir=$(echo $ac_option | cut -d '=' -f 2)
768 --codecsdir=*)
769 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
771 --localedir=*)
772 _localedir=$(echo $ac_option | cut -d '=' -f 2)
775 --with-install=*)
776 _install=$(echo $ac_option | cut -d '=' -f 2 )
778 --with-xvmclib=*)
779 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
782 --with-sdl-config=*)
783 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
785 --with-freetype-config=*)
786 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
788 --with-gtk-config=*)
789 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
791 --with-glib-config=*)
792 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
794 --with-dvdnav-config=*)
795 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
797 --with-dvdread-config=*)
798 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
801 --extra-cflags=*)
802 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
804 --extra-ldflags=*)
805 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
807 --extra-libs=*)
808 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
810 --extra-libs-mplayer=*)
811 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
813 --extra-libs-mencoder=*)
814 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
817 --target=*)
818 _target=$(echo $ac_option | cut -d '=' -f 2)
820 --cc=*)
821 _cc=$(echo $ac_option | cut -d '=' -f 2)
823 --host-cc=*)
824 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
826 --as=*)
827 _as=$(echo $ac_option | cut -d '=' -f 2)
829 --nm=*)
830 _nm=$(echo $ac_option | cut -d '=' -f 2)
832 --yasm=*)
833 _yasm=$(echo $ac_option | cut -d '=' -f 2)
835 --ar=*)
836 _ar=$(echo $ac_option | cut -d '=' -f 2)
838 --ranlib=*)
839 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
841 --windres=*)
842 _windres=$(echo $ac_option | cut -d '=' -f 2)
844 --charset=*)
845 _charset=$(echo $ac_option | cut -d '=' -f 2)
847 --language-doc=*)
848 language_doc=$(echo $ac_option | cut -d '=' -f 2)
850 --language-man=*)
851 language_man=$(echo $ac_option | cut -d '=' -f 2)
853 --language-msg=*)
854 language_msg=$(echo $ac_option | cut -d '=' -f 2)
856 --language=*)
857 language=$(echo $ac_option | cut -d '=' -f 2)
860 --enable-static)
861 _ld_static='-static'
863 --disable-static)
864 _ld_static=''
866 --enable-profile)
867 _profile='-p'
869 --disable-profile)
870 _profile=
872 --enable-debug)
873 _debug='-g'
875 --enable-debug=*)
876 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
878 --disable-debug)
879 _debug=
881 --enable-translation) _translation=yes ;;
882 --disable-translation) _translation=no ;;
883 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
884 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
885 --enable-cross-compile) _cross_compile=yes ;;
886 --disable-cross-compile) _cross_compile=no ;;
887 --enable-mencoder) _mencoder=yes ;;
888 --disable-mencoder) _mencoder=no ;;
889 --enable-mplayer) _mplayer=yes ;;
890 --disable-mplayer) _mplayer=no ;;
891 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
892 --disable-dynamic-plugins) _dynamic_plugins=no ;;
893 --enable-x11) _x11=yes ;;
894 --disable-x11) _x11=no ;;
895 --enable-xshape) _xshape=yes ;;
896 --disable-xshape) _xshape=no ;;
897 --enable-xss) _xss=yes ;;
898 --disable-xss) _xss=no ;;
899 --enable-xv) _xv=yes ;;
900 --disable-xv) _xv=no ;;
901 --enable-xvmc) _xvmc=yes ;;
902 --disable-xvmc) _xvmc=no ;;
903 --enable-vdpau) _vdpau=yes ;;
904 --disable-vdpau) _vdpau=no ;;
905 --enable-sdl) _sdl=yes ;;
906 --disable-sdl) _sdl=no ;;
907 --enable-kva) _kva=yes ;;
908 --disable-kva) _kva=no ;;
909 --enable-direct3d) _direct3d=yes ;;
910 --disable-direct3d) _direct3d=no ;;
911 --enable-directx) _directx=yes ;;
912 --disable-directx) _directx=no ;;
913 --enable-win32waveout) _win32waveout=yes ;;
914 --disable-win32waveout) _win32waveout=no ;;
915 --enable-nas) _nas=yes ;;
916 --disable-nas) _nas=no ;;
917 --enable-png) _png=yes ;;
918 --disable-png) _png=no ;;
919 --enable-mng) _mng=yes ;;
920 --disable-mng) _mng=no ;;
921 --enable-jpeg) _jpeg=yes ;;
922 --disable-jpeg) _jpeg=no ;;
923 --enable-pnm) _pnm=yes ;;
924 --disable-pnm) _pnm=no ;;
925 --enable-md5sum) _md5sum=yes ;;
926 --disable-md5sum) _md5sum=no ;;
927 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
928 --disable-yuv4mpeg) _yuv4mpeg=no ;;
929 --enable-gif) _gif=yes ;;
930 --disable-gif) _gif=no ;;
931 --enable-gl) _gl=yes ;;
932 --disable-gl) _gl=no ;;
933 --enable-matrixview) matrixview=yes ;;
934 --disable-matrixview) matrixview=no ;;
935 --enable-ggi) _ggi=yes ;;
936 --disable-ggi) _ggi=no ;;
937 --enable-ggiwmh) _ggiwmh=yes ;;
938 --disable-ggiwmh) _ggiwmh=no ;;
939 --enable-aa) _aa=yes ;;
940 --disable-aa) _aa=no ;;
941 --enable-caca) _caca=yes ;;
942 --disable-caca) _caca=no ;;
943 --enable-svga) _svga=yes ;;
944 --disable-svga) _svga=no ;;
945 --enable-vesa) _vesa=yes ;;
946 --disable-vesa) _vesa=no ;;
947 --enable-fbdev) _fbdev=yes ;;
948 --disable-fbdev) _fbdev=no ;;
949 --enable-dvb) _dvb=yes ;;
950 --disable-dvb) _dvb=no ;;
951 --enable-dxr2) _dxr2=yes ;;
952 --disable-dxr2) _dxr2=no ;;
953 --enable-dxr3) _dxr3=yes ;;
954 --disable-dxr3) _dxr3=no ;;
955 --enable-ivtv) _ivtv=yes ;;
956 --disable-ivtv) _ivtv=no ;;
957 --enable-v4l2) _v4l2=yes ;;
958 --disable-v4l2) _v4l2=no ;;
959 --enable-iconv) _iconv=yes ;;
960 --disable-iconv) _iconv=no ;;
961 --enable-langinfo) _langinfo=yes ;;
962 --disable-langinfo) _langinfo=no ;;
963 --enable-rtc) _rtc=yes ;;
964 --disable-rtc) _rtc=no ;;
965 --enable-libdv) _libdv=yes ;;
966 --disable-libdv) _libdv=no ;;
967 --enable-ossaudio) _ossaudio=yes ;;
968 --disable-ossaudio) _ossaudio=no ;;
969 --enable-arts) _arts=yes ;;
970 --disable-arts) _arts=no ;;
971 --enable-esd) _esd=yes ;;
972 --disable-esd) _esd=no ;;
973 --enable-pulse) _pulse=yes ;;
974 --disable-pulse) _pulse=no ;;
975 --enable-jack) _jack=yes ;;
976 --disable-jack) _jack=no ;;
977 --enable-openal) _openal=yes ;;
978 --disable-openal) _openal=no ;;
979 --enable-kai) _kai=yes ;;
980 --disable-kai) _kai=no ;;
981 --enable-dart) _dart=yes ;;
982 --disable-dart) _dart=no ;;
983 --enable-mad) _mad=yes ;;
984 --disable-mad) _mad=no ;;
985 --enable-mp3lame) _mp3lame=yes ;;
986 --disable-mp3lame) _mp3lame=no ;;
987 --enable-toolame) _toolame=yes ;;
988 --disable-toolame) _toolame=no ;;
989 --enable-twolame) _twolame=yes ;;
990 --disable-twolame) _twolame=no ;;
991 --enable-libcdio) _libcdio=yes ;;
992 --disable-libcdio) _libcdio=no ;;
993 --enable-liblzo) _liblzo=yes ;;
994 --disable-liblzo) _liblzo=no ;;
995 --enable-libvorbis) _libvorbis=yes ;;
996 --disable-libvorbis) _libvorbis=no ;;
997 --enable-speex) _speex=yes ;;
998 --disable-speex) _speex=no ;;
999 --enable-tremor) _tremor=yes ;;
1000 --disable-tremor) _tremor=no ;;
1001 --enable-tremor-internal) _tremor_internal=yes ;;
1002 --disable-tremor-internal) _tremor_internal=no ;;
1003 --enable-tremor-low) _tremor_low=yes ;;
1004 --disable-tremor-low) _tremor_low=no ;;
1005 --enable-theora) _theora=yes ;;
1006 --disable-theora) _theora=no ;;
1007 --enable-mpg123) _mpg123=yes ;;
1008 --disable-mpg123) _mpg123=no ;;
1009 --enable-mp3lib) _mp3lib=yes ;;
1010 --disable-mp3lib) _mp3lib=no ;;
1011 --enable-liba52) _liba52=yes ;;
1012 --disable-liba52) _liba52=no ;;
1013 --enable-libdca) _libdca=yes ;;
1014 --disable-libdca) _libdca=no ;;
1015 --enable-libmpeg2) _libmpeg2=yes ;;
1016 --disable-libmpeg2) _libmpeg2=no ;;
1017 --enable-musepack) _musepack=yes ;;
1018 --disable-musepack) _musepack=no ;;
1019 --enable-faad) _faad=yes ;;
1020 --disable-faad) _faad=no ;;
1021 --enable-faad-internal) _faad_internal=yes ;;
1022 --disable-faad-internal) _faad_internal=no ;;
1023 --enable-faad-fixed) _faad_fixed=yes ;;
1024 --disable-faad-fixed) _faad_fixed=no ;;
1025 --enable-faac) _faac=yes ;;
1026 --disable-faac) _faac=no ;;
1027 --enable-ladspa) _ladspa=yes ;;
1028 --disable-ladspa) _ladspa=no ;;
1029 --enable-libbs2b) _libbs2b=yes ;;
1030 --disable-libbs2b) _libbs2b=no ;;
1031 --enable-xmms) _xmms=yes ;;
1032 --disable-xmms) _xmms=no ;;
1033 --enable-vcd) _vcd=yes ;;
1034 --disable-vcd) _vcd=no ;;
1035 --enable-bluray) _bluray=yes ;;
1036 --disable-bluray) _bluray=no ;;
1037 --enable-dvdread) _dvdread=yes ;;
1038 --disable-dvdread) _dvdread=no ;;
1039 --enable-dvdread-internal) _dvdread_internal=yes ;;
1040 --disable-dvdread-internal) _dvdread_internal=no ;;
1041 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1042 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1043 --enable-dvdnav) _dvdnav=yes ;;
1044 --disable-dvdnav) _dvdnav=no ;;
1045 --enable-xanim) _xanim=yes ;;
1046 --disable-xanim) _xanim=no ;;
1047 --enable-real) _real=yes ;;
1048 --disable-real) _real=no ;;
1049 --enable-live) _live=yes ;;
1050 --disable-live) _live=no ;;
1051 --enable-nemesi) _nemesi=yes ;;
1052 --disable-nemesi) _nemesi=no ;;
1053 --enable-xinerama) _xinerama=yes ;;
1054 --disable-xinerama) _xinerama=no ;;
1055 --enable-mga) _mga=yes ;;
1056 --disable-mga) _mga=no ;;
1057 --enable-xmga) _xmga=yes ;;
1058 --disable-xmga) _xmga=no ;;
1059 --enable-vm) _vm=yes ;;
1060 --disable-vm) _vm=no ;;
1061 --enable-xf86keysym) _xf86keysym=yes ;;
1062 --disable-xf86keysym) _xf86keysym=no ;;
1063 --enable-mlib) _mlib=yes ;;
1064 --disable-mlib) _mlib=no ;;
1065 --enable-sunaudio) _sunaudio=yes ;;
1066 --disable-sunaudio) _sunaudio=no ;;
1067 --enable-sgiaudio) _sgiaudio=yes ;;
1068 --disable-sgiaudio) _sgiaudio=no ;;
1069 --enable-alsa) _alsa=yes ;;
1070 --disable-alsa) _alsa=no ;;
1071 --enable-tv) _tv=yes ;;
1072 --disable-tv) _tv=no ;;
1073 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1074 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1075 --enable-tv-v4l1) _tv_v4l1=yes ;;
1076 --disable-tv-v4l1) _tv_v4l1=no ;;
1077 --enable-tv-v4l2) _tv_v4l2=yes ;;
1078 --disable-tv-v4l2) _tv_v4l2=no ;;
1079 --enable-tv-dshow) _tv_dshow=yes ;;
1080 --disable-tv-dshow) _tv_dshow=no ;;
1081 --enable-radio) _radio=yes ;;
1082 --enable-radio-capture) _radio_capture=yes ;;
1083 --disable-radio-capture) _radio_capture=no ;;
1084 --disable-radio) _radio=no ;;
1085 --enable-radio-v4l) _radio_v4l=yes ;;
1086 --disable-radio-v4l) _radio_v4l=no ;;
1087 --enable-radio-v4l2) _radio_v4l2=yes ;;
1088 --disable-radio-v4l2) _radio_v4l2=no ;;
1089 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1090 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1091 --enable-pvr) _pvr=yes ;;
1092 --disable-pvr) _pvr=no ;;
1093 --enable-fastmemcpy) _fastmemcpy=yes ;;
1094 --disable-fastmemcpy) _fastmemcpy=no ;;
1095 --enable-networking) networking=yes ;;
1096 --disable-networking) networking=no ;;
1097 --enable-winsock2_h) _winsock2_h=yes ;;
1098 --disable-winsock2_h) _winsock2_h=no ;;
1099 --enable-smb) _smb=yes ;;
1100 --disable-smb) _smb=no ;;
1101 --enable-vidix) _vidix=yes ;;
1102 --disable-vidix) _vidix=no ;;
1103 --with-vidix-drivers=*)
1104 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1106 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1107 --enable-dhahelper) _dhahelper=yes ;;
1108 --disable-dhahelper) _dhahelper=no ;;
1109 --enable-svgalib_helper) _svgalib_helper=yes ;;
1110 --disable-svgalib_helper) _svgalib_helper=no ;;
1111 --enable-joystick) _joystick=yes ;;
1112 --disable-joystick) _joystick=no ;;
1113 --enable-xvid) _xvid=yes ;;
1114 --disable-xvid) _xvid=no ;;
1115 --enable-x264) _x264=yes ;;
1116 --disable-x264) _x264=no ;;
1117 --enable-libnut) _libnut=yes ;;
1118 --disable-libnut) _libnut=no ;;
1119 --enable-libavutil) _libavutil=yes ;;
1120 --disable-libavutil) _libavutil=no ;;
1121 --enable-libavcodec) _libavcodec=yes ;;
1122 --disable-libavcodec) _libavcodec=no ;;
1123 --enable-libavformat) _libavformat=yes ;;
1124 --disable-libavformat) _libavformat=no ;;
1125 --enable-libpostproc) _libpostproc=yes ;;
1126 --disable-libpostproc) _libpostproc=no ;;
1127 --enable-libswscale) _libswscale=yes ;;
1128 --disable-libswscale) _libswscale=no ;;
1129 --ffmpeg-source-dir=*)
1130 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1132 --enable-lirc) _lirc=yes ;;
1133 --disable-lirc) _lirc=no ;;
1134 --enable-lircc) _lircc=yes ;;
1135 --disable-lircc) _lircc=no ;;
1136 --enable-apple-remote) _apple_remote=yes ;;
1137 --disable-apple-remote) _apple_remote=no ;;
1138 --enable-apple-ir) _apple_ir=yes ;;
1139 --disable-apple-ir) _apple_ir=no ;;
1140 --enable-gui) _gui=yes ;;
1141 --disable-gui) _gui=no ;;
1142 --enable-gtk1) _gtk1=yes ;;
1143 --disable-gtk1) _gtk1=no ;;
1144 --enable-termcap) _termcap=yes ;;
1145 --disable-termcap) _termcap=no ;;
1146 --enable-termios) _termios=yes ;;
1147 --disable-termios) _termios=no ;;
1148 --enable-3dfx) _3dfx=yes ;;
1149 --disable-3dfx) _3dfx=no ;;
1150 --enable-s3fb) _s3fb=yes ;;
1151 --disable-s3fb) _s3fb=no ;;
1152 --enable-wii) _wii=yes ;;
1153 --disable-wii) _wii=no ;;
1154 --enable-tdfxfb) _tdfxfb=yes ;;
1155 --disable-tdfxfb) _tdfxfb=no ;;
1156 --disable-tdfxvid) _tdfxvid=no ;;
1157 --enable-tdfxvid) _tdfxvid=yes ;;
1158 --disable-xvr100) _xvr100=no ;;
1159 --enable-xvr100) _xvr100=yes ;;
1160 --disable-tga) _tga=no ;;
1161 --enable-tga) _tga=yes ;;
1162 --enable-directfb) _directfb=yes ;;
1163 --disable-directfb) _directfb=no ;;
1164 --enable-zr) _zr=yes ;;
1165 --disable-zr) _zr=no ;;
1166 --enable-bl) _bl=yes ;;
1167 --disable-bl) _bl=no ;;
1168 --enable-mtrr) _mtrr=yes ;;
1169 --disable-mtrr) _mtrr=no ;;
1170 --enable-largefiles) _largefiles=yes ;;
1171 --disable-largefiles) _largefiles=no ;;
1172 --enable-shm) _shm=yes ;;
1173 --disable-shm) _shm=no ;;
1174 --enable-select) _select=yes ;;
1175 --disable-select) _select=no ;;
1176 --enable-cdparanoia) _cdparanoia=yes ;;
1177 --disable-cdparanoia) _cdparanoia=no ;;
1178 --enable-cddb) _cddb=yes ;;
1179 --disable-cddb) _cddb=no ;;
1180 --enable-big-endian) _big_endian=yes ;;
1181 --disable-big-endian) _big_endian=no ;;
1182 --enable-bitmap-font) _bitmap_font=yes ;;
1183 --disable-bitmap-font) _bitmap_font=no ;;
1184 --enable-freetype) _freetype=yes ;;
1185 --disable-freetype) _freetype=no ;;
1186 --enable-fontconfig) _fontconfig=yes ;;
1187 --disable-fontconfig) _fontconfig=no ;;
1188 --enable-unrarexec) _unrar_exec=yes ;;
1189 --disable-unrarexec) _unrar_exec=no ;;
1190 --enable-ftp) _ftp=yes ;;
1191 --disable-ftp) _ftp=no ;;
1192 --enable-vstream) _vstream=yes ;;
1193 --disable-vstream) _vstream=no ;;
1194 --enable-pthreads) _pthreads=yes ;;
1195 --disable-pthreads) _pthreads=no ;;
1196 --enable-w32threads) _w32threads=yes ;;
1197 --disable-w32threads) _w32threads=no ;;
1198 --enable-ass) _ass=yes ;;
1199 --disable-ass) _ass=no ;;
1200 --enable-rpath) _rpath=yes ;;
1201 --disable-rpath) _rpath=no ;;
1203 --enable-fribidi) _fribidi=yes ;;
1204 --disable-fribidi) _fribidi=no ;;
1206 --enable-enca) _enca=yes ;;
1207 --disable-enca) _enca=no ;;
1209 --enable-inet6) _inet6=yes ;;
1210 --disable-inet6) _inet6=no ;;
1212 --enable-gethostbyname2) _gethostbyname2=yes ;;
1213 --disable-gethostbyname2) _gethostbyname2=no ;;
1215 --enable-dga1) _dga1=yes ;;
1216 --disable-dga1) _dga1=no ;;
1217 --enable-dga2) _dga2=yes ;;
1218 --disable-dga2) _dga2=no ;;
1220 --enable-menu) _menu=yes ;;
1221 --disable-menu) _menu=no ;;
1223 --enable-qtx) _qtx=yes ;;
1224 --disable-qtx) _qtx=no ;;
1226 --enable-coreaudio) _coreaudio=yes ;;
1227 --disable-coreaudio) _coreaudio=no ;;
1228 --enable-corevideo) _corevideo=yes ;;
1229 --disable-corevideo) _corevideo=no ;;
1230 --enable-quartz) _quartz=yes ;;
1231 --disable-quartz) _quartz=no ;;
1232 --enable-macosx-finder) _macosx_finder=yes ;;
1233 --disable-macosx-finder) _macosx_finder=no ;;
1234 --enable-macosx-bundle) _macosx_bundle=yes ;;
1235 --disable-macosx-bundle) _macosx_bundle=no ;;
1237 --enable-maemo) _maemo=yes ;;
1238 --disable-maemo) _maemo=no ;;
1240 --enable-sortsub) _sortsub=yes ;;
1241 --disable-sortsub) _sortsub=no ;;
1243 --enable-crash-debug) _crash_debug=yes ;;
1244 --disable-crash-debug) _crash_debug=no ;;
1245 --enable-sighandler) _sighandler=yes ;;
1246 --disable-sighandler) _sighandler=no ;;
1247 --enable-win32dll) _win32dll=yes ;;
1248 --disable-win32dll) _win32dll=no ;;
1250 --enable-sse) _sse=yes ;;
1251 --disable-sse) _sse=no ;;
1252 --enable-sse2) _sse2=yes ;;
1253 --disable-sse2) _sse2=no ;;
1254 --enable-ssse3) _ssse3=yes ;;
1255 --disable-ssse3) _ssse3=no ;;
1256 --enable-mmxext) _mmxext=yes ;;
1257 --disable-mmxext) _mmxext=no ;;
1258 --enable-3dnow) _3dnow=yes ;;
1259 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1260 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1261 --disable-3dnowext) _3dnowext=no ;;
1262 --enable-cmov) _cmov=yes ;;
1263 --disable-cmov) _cmov=no ;;
1264 --enable-fast-cmov) _fast_cmov=yes ;;
1265 --disable-fast-cmov) _fast_cmov=no ;;
1266 --enable-fast-clz) _fast_clz=yes ;;
1267 --disable-fast-clz) _fast_clz=no ;;
1268 --enable-altivec) _altivec=yes ;;
1269 --disable-altivec) _altivec=no ;;
1270 --enable-armv5te) _armv5te=yes ;;
1271 --disable-armv5te) _armv5te=no ;;
1272 --enable-armv6) _armv6=yes ;;
1273 --disable-armv6) _armv6=no ;;
1274 --enable-armv6t2) _armv6t2=yes ;;
1275 --disable-armv6t2) _armv6t2=no ;;
1276 --enable-armvfp) _armvfp=yes ;;
1277 --disable-armvfp) _armvfp=no ;;
1278 --enable-neon) neon=yes ;;
1279 --disable-neon) neon=no ;;
1280 --enable-iwmmxt) _iwmmxt=yes ;;
1281 --disable-iwmmxt) _iwmmxt=no ;;
1282 --enable-mmx) _mmx=yes ;;
1283 --disable-mmx) # 3Dnow! and MMX2 require MMX
1284 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1287 echo "Unknown parameter: $ac_option"
1288 exit 1
1291 esac
1292 done
1294 if test "$_gui" = yes ; then
1295 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1296 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1299 # Atmos: moved this here, to be correct, if --prefix is specified
1300 test -z "$_bindir" && _bindir="$_prefix/bin"
1301 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1302 test -z "$_mandir" && _mandir="$_prefix/share/man"
1303 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1304 test -z "$_libdir" && _libdir="$_prefix/lib"
1305 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1307 # Determine our OS name and CPU architecture
1308 if test -z "$_target" ; then
1309 # OS name
1310 system_name=$(uname -s 2>&1)
1311 case "$system_name" in
1312 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1314 Haiku)
1315 system_name=BeOS
1317 IRIX*)
1318 system_name=IRIX
1320 GNU/kFreeBSD)
1321 system_name=FreeBSD
1323 HP-UX*)
1324 system_name=HP-UX
1326 [cC][yY][gG][wW][iI][nN]*)
1327 system_name=CYGWIN
1329 MINGW32*)
1330 system_name=MINGW32
1332 OS/2*)
1333 system_name=OS/2
1336 system_name="$system_name-UNKNOWN"
1338 esac
1341 # host's CPU/instruction set
1342 host_arch=$(uname -p 2>&1)
1343 case "$host_arch" in
1344 i386|sparc|ppc|alpha|arm|mips|vax)
1346 powerpc) # Darwin returns 'powerpc'
1347 host_arch=ppc
1349 *) # uname -p on Linux returns 'unknown' for the processor type,
1350 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1352 # Maybe uname -m (machine hardware name) returns something we
1353 # recognize.
1355 # x86/x86pc is used by QNX
1356 case "$(uname -m 2>&1)" in
1357 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 ;;
1358 ia64) host_arch=ia64 ;;
1359 macppc|ppc) host_arch=ppc ;;
1360 ppc64) host_arch=ppc64 ;;
1361 alpha) host_arch=alpha ;;
1362 sparc) host_arch=sparc ;;
1363 sparc64) host_arch=sparc64 ;;
1364 parisc*|hppa*|9000*) host_arch=hppa ;;
1365 arm*|zaurus|cats) host_arch=arm ;;
1366 sh3|sh4|sh4a) host_arch=sh ;;
1367 s390) host_arch=s390 ;;
1368 s390x) host_arch=s390x ;;
1369 *mips*) host_arch=mips ;;
1370 vax) host_arch=vax ;;
1371 xtensa*) host_arch=xtensa ;;
1372 *) host_arch=UNKNOWN ;;
1373 esac
1375 esac
1376 else # if test -z "$_target"
1377 system_name=$(echo $_target | cut -d '-' -f 2)
1378 case "$(echo $system_name | tr A-Z a-z)" in
1379 linux) system_name=Linux ;;
1380 freebsd) system_name=FreeBSD ;;
1381 gnu/kfreebsd) system_name=FreeBSD ;;
1382 netbsd) system_name=NetBSD ;;
1383 bsd/os) system_name=BSD/OS ;;
1384 openbsd) system_name=OpenBSD ;;
1385 dragonfly) system_name=DragonFly ;;
1386 sunos) system_name=SunOS ;;
1387 qnx) system_name=QNX ;;
1388 morphos) system_name=MorphOS ;;
1389 amigaos) system_name=AmigaOS ;;
1390 mingw32*) system_name=MINGW32 ;;
1391 esac
1392 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1393 host_arch=$(echo $_target | cut -d '-' -f 1)
1394 if test $(echo $host_arch) != "x86_64" ; then
1395 host_arch=$(echo $host_arch | tr '_' '-')
1399 extra_cflags="-I. $extra_cflags"
1400 _timer=timer-linux.c
1401 _getch=getch2.c
1402 if freebsd ; then
1403 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1404 extra_cflags="$extra_cflags -I/usr/local/include"
1407 if netbsd || dragonfly ; then
1408 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1409 extra_cflags="$extra_cflags -I/usr/pkg/include"
1412 if darwin; then
1413 extra_cflags="-mdynamic-no-pic $extra_cflags"
1414 if test "$(basename $_cc)" != "clang" ; then
1415 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1417 _timer=timer-darwin.c
1420 if aix ; then
1421 extra_ldflags="$extra_ldflags -lC"
1424 if irix ; then
1425 _ranlib='ar -r'
1426 elif linux ; then
1427 _ranlib='true'
1430 if win32 ; then
1431 _exesuf=".exe"
1432 extra_cflags="$extra_cflags -fno-common"
1433 # -lwinmm is always needed for osdep/timer-win2.c
1434 extra_ldflags="$extra_ldflags -lwinmm"
1435 _pe_executable=yes
1436 _timer=timer-win2.c
1437 _priority=yes
1438 def_dos_paths="#define HAVE_DOS_PATHS 1"
1439 def_priority="#define CONFIG_PRIORITY 1"
1442 if mingw32 ; then
1443 _getch=getch2-win.c
1444 _need_shmem=no
1447 if amigaos ; then
1448 _select=no
1449 _sighandler=no
1450 _stream_cache=no
1451 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1452 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1455 if qnx ; then
1456 extra_ldflags="$extra_ldflags -lph"
1459 if os2 ; then
1460 _exesuf=".exe"
1461 _getch=getch2-os2.c
1462 _need_shmem=no
1463 _priority=yes
1464 def_dos_paths="#define HAVE_DOS_PATHS 1"
1465 def_priority="#define CONFIG_PRIORITY 1"
1468 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1469 test "$tmpdir" && break
1470 done
1472 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1473 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1475 TMPLOG="config.log"
1476 TMPC="$mplayer_tmpdir/tmp.c"
1477 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1478 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1479 TMPH="$mplayer_tmpdir/tmp.h"
1480 TMPS="$mplayer_tmpdir/tmp.S"
1482 rm -f "$TMPLOG"
1483 echo configuration: $configuration > "$TMPLOG"
1484 echo >> "$TMPLOG"
1487 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1488 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1492 # Checking CC version...
1493 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1494 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1495 echocheck "$_cc version"
1496 cc_vendor=intel
1497 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1498 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1499 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1500 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1501 # TODO verify older icc/ecc compatibility
1502 case $cc_version in
1504 cc_version="v. ?.??, bad"
1505 cc_fail=yes
1507 10.1|11.0|11.1)
1508 cc_version="$cc_version, ok"
1511 cc_version="$cc_version, bad"
1512 cc_fail=yes
1514 esac
1515 echores "$cc_version"
1516 else
1517 for _cc in "$_cc" gcc cc ; do
1518 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1519 if test "$cc_name_tmp" = "gcc"; then
1520 cc_name=$cc_name_tmp
1521 echocheck "$_cc version"
1522 cc_vendor=gnu
1523 cc_version=$($_cc -dumpversion 2>&1)
1524 case $cc_version in
1525 2.96*)
1526 cc_fail=yes
1529 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1530 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1531 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1533 esac
1534 echores "$cc_version"
1535 break
1537 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1538 if test "$cc_name_tmp" = "clang"; then
1539 echocheck "$_cc version"
1540 cc_vendor=clang
1541 cc_version=$($_cc -dumpversion 2>&1)
1542 res_comment="experimental support only"
1543 echores "clang $cc_version"
1544 break
1546 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1547 if test "$cc_name_tmp" = "Sun C"; then
1548 echocheck "$_cc version"
1549 cc_vendor=sun
1550 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1551 res_comment="experimental support only"
1552 echores "Sun C $cc_version"
1553 break
1555 done
1556 fi # icc
1557 test "$cc_fail" = yes && die "unsupported compiler version"
1559 if test -z "$_target" && x86 ; then
1560 cat > $TMPC << EOF
1561 int main(void) {
1562 int test[(int)sizeof(char *)-7];
1563 return 0;
1566 cc_check && host_arch=x86_64 || host_arch=i386
1569 echo "Detected operating system: $system_name"
1570 echo "Detected host architecture: $host_arch"
1572 echocheck "host cc"
1573 test "$_host_cc" || _host_cc=$_cc
1574 echores $_host_cc
1576 echocheck "cross compilation"
1577 if test $_cross_compile = auto ; then
1578 _cross_compile=yes
1579 cflag_check "" && "$TMPEXE" && _cross_compile=no
1581 echores $_cross_compile
1583 if test $_cross_compile = yes; then
1584 tmp_run() {
1585 return 0
1589 # ---
1591 # now that we know what compiler should be used for compilation, try to find
1592 # out which assembler is used by the $_cc compiler
1593 if test "$_as" = auto ; then
1594 _as=$($_cc -print-prog-name=as)
1595 test -z "$_as" && _as=as
1598 if test "$_nm" = auto ; then
1599 _nm=$($_cc -print-prog-name=nm)
1600 test -z "$_nm" && _nm=nm
1603 # XXX: this should be ok..
1604 _cpuinfo="echo"
1606 if test "$_runtime_cpudetection" = no ; then
1608 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1609 # FIXME: Remove the cygwin check once AMD CPUs are supported
1610 if test -r /proc/cpuinfo && ! cygwin; then
1611 # Linux with /proc mounted, extract CPU information from it
1612 _cpuinfo="cat /proc/cpuinfo"
1613 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1614 # FreeBSD with Linux emulation /proc mounted,
1615 # extract CPU information from it
1616 # Don't use it on x86 though, it never reports 3Dnow
1617 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1618 elif darwin && ! x86 ; then
1619 # use hostinfo on Darwin
1620 _cpuinfo="hostinfo"
1621 elif aix; then
1622 # use 'lsattr' on AIX
1623 _cpuinfo="lsattr -E -l proc0 -a type"
1624 elif x86; then
1625 # all other OSes try to extract CPU information from a small helper
1626 # program cpuinfo instead
1627 $_cc -o cpuinfo$_exesuf cpuinfo.c
1628 _cpuinfo="./cpuinfo$_exesuf"
1631 if x86 ; then
1632 # gather more CPU information
1633 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1634 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1635 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1636 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1637 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1639 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1641 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1642 -e s/xmm/sse/ -e s/kni/sse/)
1644 for ext in $pparam ; do
1645 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1646 done
1648 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1649 test $_sse = kernel_check && _mmxext=kernel_check
1651 echocheck "CPU vendor"
1652 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1654 echocheck "CPU type"
1655 echores "$pname"
1658 fi # test "$_runtime_cpudetection" = no
1660 if x86 && test "$_runtime_cpudetection" = no ; then
1661 extcheck() {
1662 if test "$1" = kernel_check ; then
1663 echocheck "kernel support of $2"
1664 cat > $TMPC <<EOF
1665 #include <stdlib.h>
1666 #include <signal.h>
1667 void catch(int sig) { exit(1); }
1668 int main(void) {
1669 signal(SIGILL, catch);
1670 __asm__ volatile ("$3":::"memory"); return 0;
1674 if cc_check && tmp_run ; then
1675 eval _$2=yes
1676 echores "yes"
1677 _optimizing="$_optimizing $2"
1678 return 0
1679 else
1680 eval _$2=no
1681 echores "failed"
1682 echo "It seems that your kernel does not correctly support $2."
1683 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1684 return 1
1687 return 0
1690 extcheck $_mmx "mmx" "emms"
1691 extcheck $_mmxext "mmxext" "sfence"
1692 extcheck $_3dnow "3dnow" "femms"
1693 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1694 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1695 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1696 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1697 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1699 echocheck "mtrr support"
1700 if test "$_mtrr" = kernel_check ; then
1701 _mtrr="yes"
1702 _optimizing="$_optimizing mtrr"
1704 echores "$_mtrr"
1706 if test "$_gcc3_ext" != ""; then
1707 # if we had to disable sse/sse2 because the active kernel does not
1708 # support this instruction set extension, we also have to tell
1709 # gcc3 to not generate sse/sse2 instructions for normal C code
1710 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1716 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1717 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1718 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1719 subarch_all='X86_32 X86_64 PPC64'
1720 case "$host_arch" in
1721 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1722 arch='x86'
1723 subarch='x86_32'
1724 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1725 iproc=486
1726 proc=i486
1729 if test "$_runtime_cpudetection" = no ; then
1730 case "$pvendor" in
1731 AuthenticAMD)
1732 case "$pfamily" in
1733 3) proc=i386 iproc=386 ;;
1734 4) proc=i486 iproc=486 ;;
1735 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1736 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1737 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1738 proc=k6-3
1739 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1740 proc=geode
1741 elif test "$pmodel" -ge 8; then
1742 proc=k6-2
1743 elif test "$pmodel" -ge 6; then
1744 proc=k6
1745 else
1746 proc=i586
1749 6) iproc=686
1750 # It's a bit difficult to determine the correct type of Family 6
1751 # AMD CPUs just from their signature. Instead, we check directly
1752 # whether it supports SSE.
1753 if test "$_sse" = yes; then
1754 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1755 proc=athlon-xp
1756 else
1757 # Again, gcc treats athlon and athlon-tbird similarly.
1758 proc=athlon
1761 15) iproc=686
1762 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1763 # caught and remedied in the optimization tests below.
1764 proc=k8
1767 *) proc=amdfam10 iproc=686
1768 test $_fast_clz = "auto" && _fast_clz=yes
1770 esac
1772 GenuineIntel)
1773 case "$pfamily" in
1774 3) proc=i386 iproc=386 ;;
1775 4) proc=i486 iproc=486 ;;
1776 5) iproc=586
1777 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1778 proc=pentium-mmx # 4 is desktop, 8 is mobile
1779 else
1780 proc=i586
1783 6) iproc=686
1784 if test "$pmodel" -ge 15; then
1785 proc=core2
1786 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1787 proc=pentium-m
1788 elif test "$pmodel" -ge 7; then
1789 proc=pentium3
1790 elif test "$pmodel" -ge 3; then
1791 proc=pentium2
1792 else
1793 proc=i686
1795 test $_fast_clz = "auto" && _fast_clz=yes
1797 15) iproc=686
1798 # A nocona in 32-bit mode has no more capabilities than a prescott.
1799 if test "$pmodel" -ge 3; then
1800 proc=prescott
1801 else
1802 proc=pentium4
1803 test $_fast_clz = "auto" && _fast_clz=yes
1805 test $_fast_cmov = "auto" && _fast_cmov=no
1807 *) proc=prescott iproc=686 ;;
1808 esac
1810 CentaurHauls)
1811 case "$pfamily" in
1812 5) iproc=586
1813 if test "$pmodel" -ge 8; then
1814 proc=winchip2
1815 elif test "$pmodel" -ge 4; then
1816 proc=winchip-c6
1817 else
1818 proc=i586
1821 6) iproc=686
1822 if test "$pmodel" -ge 9; then
1823 proc=c3-2
1824 else
1825 proc=c3
1826 iproc=586
1829 *) proc=i686 iproc=i686 ;;
1830 esac
1832 unknown)
1833 case "$pfamily" in
1834 3) proc=i386 iproc=386 ;;
1835 4) proc=i486 iproc=486 ;;
1836 *) proc=i586 iproc=586 ;;
1837 esac
1840 proc=i586 iproc=586 ;;
1841 esac
1842 test $_fast_clz = "auto" && _fast_clz=no
1843 fi # test "$_runtime_cpudetection" = no
1846 # check that gcc supports our CPU, if not, fall back to earlier ones
1847 # LGB: check -mcpu and -march swithing step by step with enabling
1848 # to fall back till 386.
1850 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1852 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1853 cpuopt=-mtune
1854 else
1855 cpuopt=-mcpu
1858 echocheck "GCC & CPU optimization abilities"
1859 if test "$_runtime_cpudetection" = no ; then
1860 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1861 cflag_check -march=native && proc=native
1863 if test "$proc" = "amdfam10"; then
1864 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1866 if test "$proc" = "k8"; then
1867 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1869 if test "$proc" = "athlon-xp"; then
1870 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1872 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1873 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1875 if test "$proc" = "k6" || test "$proc" = "c3"; then
1876 if ! cflag_check -march=$proc $cpuopt=$proc; then
1877 if cflag_check -march=i586 $cpuopt=i686; then
1878 proc=i586-i686
1879 else
1880 proc=i586
1884 if test "$proc" = "prescott" ; then
1885 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1887 if test "$proc" = "core2" ; then
1888 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1890 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
1891 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1893 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1894 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1896 if test "$proc" = "i586"; then
1897 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1899 if test "$proc" = "i486" ; then
1900 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1902 if test "$proc" = "i386" ; then
1903 cflag_check -march=$proc $cpuopt=$proc || proc=error
1905 if test "$proc" = "error" ; then
1906 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1907 _mcpu=""
1908 _march=""
1909 _optimizing=""
1910 elif test "$proc" = "i586-i686"; then
1911 _march="-march=i586"
1912 _mcpu="$cpuopt=i686"
1913 _optimizing="$proc"
1914 else
1915 _march="-march=$proc"
1916 _mcpu="$cpuopt=$proc"
1917 _optimizing="$proc"
1919 else # if test "$_runtime_cpudetection" = no
1920 _mcpu="$cpuopt=generic"
1921 # at least i486 required, for bswap instruction
1922 _march="-march=i486"
1923 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1924 cflag_check $_mcpu || _mcpu=""
1925 cflag_check $_march $_mcpu || _march=""
1928 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1929 ## autodetected mcpu/march parameters
1930 if test "$_target" ; then
1931 # TODO: it may be a good idea to check GCC and fall back in all cases
1932 if test "$host_arch" = "i586-i686"; then
1933 _march="-march=i586"
1934 _mcpu="$cpuopt=i686"
1935 else
1936 _march="-march=$host_arch"
1937 _mcpu="$cpuopt=$host_arch"
1940 proc="$host_arch"
1942 case "$proc" in
1943 i386) iproc=386 ;;
1944 i486) iproc=486 ;;
1945 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1946 i686|athlon*|pentium*) iproc=686 ;;
1947 *) iproc=586 ;;
1948 esac
1951 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1952 _fast_cmov="yes"
1953 else
1954 _fast_cmov="no"
1956 test $_fast_clz = "auto" && _fast_clz=yes
1958 echores "$proc"
1961 ia64)
1962 arch='ia64'
1963 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1964 iproc='ia64'
1967 x86_64|amd64)
1968 arch='x86'
1969 subarch='x86_64'
1970 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1971 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1972 iproc='x86_64'
1974 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1975 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1976 cpuopt=-mtune
1977 else
1978 cpuopt=-mcpu
1980 if test "$_runtime_cpudetection" = no ; then
1981 case "$pvendor" in
1982 AuthenticAMD)
1983 case "$pfamily" in
1984 15) proc=k8
1985 test $_fast_clz = "auto" && _fast_clz=no
1987 *) proc=amdfam10;;
1988 esac
1990 GenuineIntel)
1991 case "$pfamily" in
1992 6) proc=core2;;
1994 # 64-bit prescotts exist, but as far as GCC is concerned they
1995 # have the same capabilities as a nocona.
1996 proc=nocona
1997 test $_fast_cmov = "auto" && _fast_cmov=no
1998 test $_fast_clz = "auto" && _fast_clz=no
2000 esac
2003 proc=error;;
2004 esac
2005 fi # test "$_runtime_cpudetection" = no
2007 echocheck "GCC & CPU optimization abilities"
2008 # This is a stripped-down version of the i386 fallback.
2009 if test "$_runtime_cpudetection" = no ; then
2010 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2011 cflag_check -march=native && proc=native
2013 # --- AMD processors ---
2014 if test "$proc" = "amdfam10"; then
2015 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2017 if test "$proc" = "k8"; then
2018 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2020 # This will fail if gcc version < 3.3, which is ok because earlier
2021 # versions don't really support 64-bit on amd64.
2022 # Is this a valid assumption? -Corey
2023 if test "$proc" = "athlon-xp"; then
2024 cflag_check -march=$proc $cpuopt=$proc || proc=error
2026 # --- Intel processors ---
2027 if test "$proc" = "core2"; then
2028 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2030 if test "$proc" = "x86-64"; then
2031 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2033 if test "$proc" = "nocona"; then
2034 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2036 if test "$proc" = "pentium4"; then
2037 cflag_check -march=$proc $cpuopt=$proc || proc=error
2040 _march="-march=$proc"
2041 _mcpu="$cpuopt=$proc"
2042 if test "$proc" = "error" ; then
2043 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2044 _mcpu=""
2045 _march=""
2047 else # if test "$_runtime_cpudetection" = no
2048 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2049 _march="-march=x86-64"
2050 _mcpu="$cpuopt=generic"
2051 cflag_check $_mcpu || _mcpu="x86-64"
2052 cflag_check $_mcpu || _mcpu=""
2053 cflag_check $_march $_mcpu || _march=""
2056 _optimizing="$proc"
2057 test $_fast_cmov = "auto" && _fast_cmov=yes
2058 test $_fast_clz = "auto" && _fast_clz=yes
2060 echores "$proc"
2063 sparc|sparc64)
2064 arch='sparc'
2065 iproc='sparc'
2066 if test "$host_arch" = "sparc64" ; then
2067 _vis='yes'
2068 proc='ultrasparc'
2069 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2070 elif sunos ; then
2071 echocheck "CPU type"
2072 karch=$(uname -m)
2073 case "$(echo $karch)" in
2074 sun4) proc=v7 ;;
2075 sun4c) proc=v7 ;;
2076 sun4d) proc=v8 ;;
2077 sun4m) proc=v8 ;;
2078 sun4u) proc=ultrasparc _vis='yes' ;;
2079 sun4v) proc=v9 ;;
2080 *) proc=v8 ;;
2081 esac
2082 echores "$proc"
2083 else
2084 proc=v8
2086 _mcpu="-mcpu=$proc"
2087 _optimizing="$proc"
2090 arm*)
2091 arch='arm'
2092 iproc='arm'
2095 avr32)
2096 arch='avr32'
2097 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2098 iproc='avr32'
2099 test $_fast_clz = "auto" && _fast_clz=yes
2102 sh|sh4)
2103 arch='sh4'
2104 iproc='sh4'
2107 ppc|ppc64|powerpc|powerpc64)
2108 arch='ppc'
2109 def_dcbzl='#define HAVE_DCBZL 0'
2110 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2111 iproc='ppc'
2113 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2114 subarch='ppc64'
2115 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2117 echocheck "CPU type"
2118 case $system_name in
2119 Linux)
2120 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2121 if test -n "$($_cpuinfo | grep altivec)"; then
2122 test $_altivec = auto && _altivec=yes
2125 Darwin)
2126 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2127 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2128 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2129 test $_altivec = auto && _altivec=yes
2132 NetBSD)
2133 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2134 case $cc_version in
2135 2*|3.0*|3.1*|3.2*|3.3*)
2138 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2139 test $_altivec = auto && _altivec=yes
2142 esac
2144 AIX)
2145 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2147 esac
2148 if test "$_altivec" = yes; then
2149 echores "$proc altivec"
2150 else
2151 _altivec=no
2152 echores "$proc"
2155 echocheck "GCC & CPU optimization abilities"
2157 if test -n "$proc"; then
2158 case "$proc" in
2159 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2160 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2161 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2162 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2163 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2164 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2165 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2166 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2167 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2168 *) ;;
2169 esac
2170 # gcc 3.1(.1) and up supports 7400 and 7450
2171 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2172 case "$proc" in
2173 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2174 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2175 *) ;;
2176 esac
2178 # gcc 3.2 and up supports 970
2179 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2180 case "$proc" in
2181 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2182 def_dcbzl='#define HAVE_DCBZL 1' ;;
2183 *) ;;
2184 esac
2186 # gcc 3.3 and up supports POWER4
2187 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2188 case "$proc" in
2189 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2190 *) ;;
2191 esac
2193 # gcc 3.4 and up supports 440*
2194 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2195 case "$proc" in
2196 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2197 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2198 *) ;;
2199 esac
2201 # gcc 4.0 and up supports POWER5
2202 if test "$_cc_major" -ge "4"; then
2203 case "$proc" in
2204 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2205 *) ;;
2206 esac
2210 if test -n "$_mcpu"; then
2211 _optimizing=$(echo $_mcpu | cut -c 8-)
2212 echores "$_optimizing"
2213 else
2214 echores "none"
2217 test $_fast_clz = "auto" && _fast_clz=yes
2221 alpha*)
2222 arch='alpha'
2223 iproc='alpha'
2224 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2226 echocheck "CPU type"
2227 cat > $TMPC << EOF
2228 int main(void) {
2229 unsigned long ver, mask;
2230 __asm__ ("implver %0" : "=r" (ver));
2231 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2232 printf("%ld-%x\n", ver, ~mask);
2233 return 0;
2236 $_cc -o "$TMPEXE" "$TMPC"
2237 case $("$TMPEXE") in
2239 0-0) proc="ev4"; _mvi="0";;
2240 1-0) proc="ev5"; _mvi="0";;
2241 1-1) proc="ev56"; _mvi="0";;
2242 1-101) proc="pca56"; _mvi="1";;
2243 2-303) proc="ev6"; _mvi="1";;
2244 2-307) proc="ev67"; _mvi="1";;
2245 2-1307) proc="ev68"; _mvi="1";;
2246 esac
2247 echores "$proc"
2249 echocheck "GCC & CPU optimization abilities"
2250 if test "$proc" = "ev68" ; then
2251 cc_check -mcpu=$proc || proc=ev67
2253 if test "$proc" = "ev67" ; then
2254 cc_check -mcpu=$proc || proc=ev6
2256 _mcpu="-mcpu=$proc"
2257 echores "$proc"
2259 test $_fast_clz = "auto" && _fast_clz=yes
2261 _optimizing="$proc"
2264 mips)
2265 arch='mips'
2266 iproc='mips'
2268 if irix ; then
2269 echocheck "CPU type"
2270 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2271 case "$(echo $proc)" in
2272 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2273 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2274 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2275 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2276 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2277 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2278 esac
2279 # gcc < 3.x does not support -mtune.
2280 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2281 _mcpu=''
2283 echores "$proc"
2286 test $_fast_clz = "auto" && _fast_clz=yes
2290 hppa)
2291 arch='pa_risc'
2292 iproc='PA-RISC'
2295 s390)
2296 arch='s390'
2297 iproc='390'
2300 s390x)
2301 arch='s390x'
2302 iproc='390x'
2305 vax)
2306 arch='vax'
2307 iproc='vax'
2310 xtensa)
2311 arch='xtensa'
2312 iproc='xtensa'
2315 generic)
2316 arch='generic'
2320 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2321 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2322 die "unsupported architecture $host_arch"
2324 esac # case "$host_arch" in
2326 if test "$_runtime_cpudetection" = yes ; then
2327 if x86 ; then
2328 test "$_cmov" != no && _cmov=yes
2329 x86_32 && _cmov=no
2330 test "$_mmx" != no && _mmx=yes
2331 test "$_3dnow" != no && _3dnow=yes
2332 test "$_3dnowext" != no && _3dnowext=yes
2333 test "$_mmxext" != no && _mmxext=yes
2334 test "$_sse" != no && _sse=yes
2335 test "$_sse2" != no && _sse2=yes
2336 test "$_ssse3" != no && _ssse3=yes
2337 test "$_mtrr" != no && _mtrr=yes
2339 if ppc; then
2340 _altivec=yes
2345 # endian testing
2346 echocheck "byte order"
2347 if test "$_big_endian" = auto ; then
2348 cat > $TMPC <<EOF
2349 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2350 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2351 int main(void) { return (int)ascii_name; }
2353 if cc_check ; then
2354 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2355 _big_endian=yes
2356 else
2357 _big_endian=no
2359 else
2360 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2363 if test "$_big_endian" = yes ; then
2364 _byte_order='big-endian'
2365 def_words_endian='#define WORDS_BIGENDIAN 1'
2366 def_bigendian='#define HAVE_BIGENDIAN 1'
2367 else
2368 _byte_order='little-endian'
2369 def_words_endian='#undef WORDS_BIGENDIAN'
2370 def_bigendian='#define HAVE_BIGENDIAN 0'
2372 echores "$_byte_order"
2375 echocheck "extern symbol prefix"
2376 cat > $TMPC << EOF
2377 int ff_extern;
2379 cc_check -c || die "Symbol mangling check failed."
2380 sym=$($_nm -P -g $TMPEXE)
2381 extern_prefix=${sym%%ff_extern*}
2382 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2383 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2384 echores $extern_prefix
2387 echocheck "assembler support of -pipe option"
2388 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2389 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2392 echocheck "compiler support of named assembler arguments"
2393 _named_asm_args=yes
2394 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2395 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2396 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2397 _named_asm_args=no
2398 def_named_asm_args="#undef NAMED_ASM_ARGS"
2400 echores $_named_asm_args
2403 if darwin && test "$cc_vendor" = "gnu" ; then
2404 echocheck "GCC support of -mstackrealign"
2405 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2406 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2407 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2408 # wrong code with this flag, but this can be worked around by adding
2409 # -fno-unit-at-a-time as described in the blog post at
2410 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2411 cat > $TMPC << EOF
2412 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2413 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2415 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2416 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2417 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2418 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2419 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2422 # Checking for CFLAGS
2423 _install_strip="-s"
2424 if test "$_profile" != "" || test "$_debug" != "" ; then
2425 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2426 _install_strip=
2427 elif test -z "$CFLAGS" ; then
2428 if test "$cc_vendor" = "intel" ; then
2429 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2430 elif test "$cc_vendor" = "sun" ; then
2431 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2432 elif test "$cc_vendor" = "clang"; then
2433 CFLAGS="-O2 $_march $_pipe"
2434 elif test "$cc_vendor" != "gnu" ; then
2435 CFLAGS="-O2 $_march $_mcpu $_pipe"
2436 else
2437 CFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2438 extra_ldflags="$extra_ldflags -ffast-math"
2440 else
2441 warn_cflags=yes
2444 if test "$cc_vendor" = "gnu" ; then
2445 cflag_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2446 cflag_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2447 cflag_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2448 cflag_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2449 cflag_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2450 cflag_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2451 else
2452 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2455 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2456 cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS"
2459 if test -n "$LDFLAGS" ; then
2460 extra_ldflags="$extra_ldflags $LDFLAGS"
2461 warn_cflags=yes
2462 elif test "$cc_vendor" = "intel" ; then
2463 extra_ldflags="$extra_ldflags -i-static"
2465 if test -n "$CPPFLAGS" ; then
2466 extra_cflags="$extra_cflags $CPPFLAGS"
2467 warn_cflags=yes
2472 if x86_32 ; then
2473 # Checking assembler (_as) compatibility...
2474 # Added workaround for older as that reads from stdin by default - atmos
2475 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2476 echocheck "assembler ($_as $as_version)"
2478 _pref_as_version='2.9.1'
2479 echo 'nop' > $TMPS
2480 if test "$_mmx" = yes ; then
2481 echo 'emms' >> $TMPS
2483 if test "$_3dnow" = yes ; then
2484 _pref_as_version='2.10.1'
2485 echo 'femms' >> $TMPS
2487 if test "$_3dnowext" = yes ; then
2488 _pref_as_version='2.10.1'
2489 echo 'pswapd %mm0, %mm0' >> $TMPS
2491 if test "$_mmxext" = yes ; then
2492 _pref_as_version='2.10.1'
2493 echo 'movntq %mm0, (%eax)' >> $TMPS
2495 if test "$_sse" = yes ; then
2496 _pref_as_version='2.10.1'
2497 echo 'xorps %xmm0, %xmm0' >> $TMPS
2499 #if test "$_sse2" = yes ; then
2500 # _pref_as_version='2.11'
2501 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2503 if test "$_cmov" = yes ; then
2504 _pref_as_version='2.10.1'
2505 echo 'cmovb %eax, %ebx' >> $TMPS
2507 if test "$_ssse3" = yes ; then
2508 _pref_as_version='2.16.92'
2509 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2511 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2513 if test "$as_verc_fail" != yes ; then
2514 echores "ok"
2515 else
2516 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2517 echores "failed"
2518 die "obsolete binutils version"
2521 fi #if x86_32
2523 echocheck ".align is a power of two"
2524 if test "$_asmalign_pot" = auto ; then
2525 _asmalign_pot=no
2526 cat > $TMPC << EOF
2527 int main(void) { __asm__ (".align 3"); return 0; }
2529 cc_check && _asmalign_pot=yes
2531 if test "$_asmalign_pot" = "yes" ; then
2532 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2533 else
2534 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2536 echores $_asmalign_pot
2539 echocheck "PIC"
2540 pic=no
2541 cat > $TMPC << EOF
2542 int main(void) {
2543 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2544 #error PIC not enabled
2545 #endif
2546 return 0;
2549 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2550 echores $pic
2553 if x86 ; then
2554 echocheck "10 assembler operands"
2555 ten_operands=no
2556 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2557 cat > $TMPC << EOF
2558 int main(void) {
2559 int x=0;
2560 __asm__ volatile(
2562 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2564 return 0;
2567 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2568 echores $ten_operands
2570 echocheck "ebx availability"
2571 ebx_available=no
2572 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2573 cat > $TMPC << EOF
2574 int main(void) {
2575 int x;
2576 __asm__ volatile(
2577 "xor %0, %0"
2578 :"=b"(x)
2579 // just adding ebx to clobber list seems unreliable with some
2580 // compilers, e.g. Haiku's gcc 2.95
2582 // and the above check does not work for OSX 64 bit...
2583 __asm__ volatile("":::"%ebx");
2584 return 0;
2587 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2588 echores $ebx_available
2591 echocheck "yasm"
2592 if test -z "$YASMFLAGS" ; then
2593 if darwin ; then
2594 x86_64 && objformat="macho64" || objformat="macho"
2595 elif win32 ; then
2596 objformat="win32"
2597 else
2598 objformat="elf"
2600 # currently tested for Linux x86, x86_64
2601 YASMFLAGS="-f $objformat"
2602 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2603 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2604 case "$objformat" in
2605 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2606 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2607 esac
2608 else
2609 warn_cflags=yes
2612 echo "pabsw xmm0, xmm0" > $TMPS
2613 yasm_check || _yasm=""
2614 if test $_yasm ; then
2615 def_yasm='#define HAVE_YASM 1'
2616 have_yasm="yes"
2617 echores "$_yasm"
2618 else
2619 def_yasm='#define HAVE_YASM 0'
2620 have_yasm="no"
2621 echores "no"
2624 echocheck "bswap"
2625 def_bswap='#define HAVE_BSWAP 0'
2626 echo 'bswap %eax' > $TMPS
2627 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2628 echores "$bswap"
2629 fi #if x86
2632 #FIXME: This should happen before the check for CFLAGS..
2633 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2634 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2636 # check if AltiVec is supported by the compiler, and how to enable it
2637 echocheck "GCC AltiVec flags"
2638 if $(cflag_check -maltivec -mabi=altivec) ; then
2639 _altivec_gcc_flags="-maltivec -mabi=altivec"
2640 # check if <altivec.h> should be included
2641 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2642 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2643 inc_altivec_h='#include <altivec.h>'
2644 else
2645 if $(cflag_check -faltivec) ; then
2646 _altivec_gcc_flags="-faltivec"
2647 else
2648 _altivec=no
2649 _altivec_gcc_flags="none, AltiVec disabled"
2653 echores "$_altivec_gcc_flags"
2655 # check if the compiler supports braces for vector declarations
2656 cat > $TMPC << EOF
2657 $inc_altivec_h
2658 int main(void) { (vector int) {1}; return 0; }
2660 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2662 # Disable runtime cpudetection if we cannot generate AltiVec code or
2663 # AltiVec is disabled by the user.
2664 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2665 && _runtime_cpudetection=no
2667 # Show that we are optimizing for AltiVec (if enabled and supported).
2668 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2669 && _optimizing="$_optimizing altivec"
2671 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2672 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2675 if ppc ; then
2676 def_xform_asm='#define HAVE_XFORM_ASM 0'
2677 xform_asm=no
2678 echocheck "XFORM ASM support"
2679 cat > $TMPC << EOF
2680 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2682 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2683 echores "$xform_asm"
2686 if arm ; then
2687 echocheck "ARM pld instruction"
2688 cat > $TMPC << EOF
2689 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2691 pld=no
2692 cc_check && pld=yes
2693 echores "$pld"
2695 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2696 if test $_armv5te = "auto" ; then
2697 cat > $TMPC << EOF
2698 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2700 _armv5te=no
2701 cc_check && _armv5te=yes
2703 echores "$_armv5te"
2705 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2707 echocheck "ARMv6 (SIMD instructions)"
2708 if test $_armv6 = "auto" ; then
2709 cat > $TMPC << EOF
2710 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2712 _armv6=no
2713 cc_check && _armv6=yes
2715 echores "$_armv6"
2717 echocheck "ARMv6t2 (SIMD instructions)"
2718 if test $_armv6t2 = "auto" ; then
2719 cat > $TMPC << EOF
2720 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2722 _armv6t2=no
2723 cc_check && _armv6t2=yes
2725 echores "$_armv6"
2727 echocheck "ARM VFP"
2728 if test $_armvfp = "auto" ; then
2729 cat > $TMPC << EOF
2730 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2732 _armvfp=no
2733 cc_check && _armvfp=yes
2735 echores "$_armvfp"
2737 echocheck "ARM NEON"
2738 if test $neon = "auto" ; then
2739 cat > $TMPC << EOF
2740 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2742 neon=no
2743 cc_check && neon=yes
2745 echores "$neon"
2747 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2748 if test $_iwmmxt = "auto" ; then
2749 cat > $TMPC << EOF
2750 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2752 _iwmmxt=no
2753 cc_check && _iwmmxt=yes
2755 echores "$_iwmmxt"
2758 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'
2759 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2760 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2761 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2762 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2763 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2764 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2765 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2766 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2767 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2768 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2769 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2770 test "$pld" = yes && cpuexts="PLD $cpuexts"
2771 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2772 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2773 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2774 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2775 test "$neon" = yes && cpuexts="NEON $cpuexts"
2776 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2777 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2778 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2780 # Checking kernel version...
2781 if x86_32 && linux ; then
2782 _k_verc_problem=no
2783 kernel_version=$(uname -r 2>&1)
2784 echocheck "$system_name kernel version"
2785 case "$kernel_version" in
2786 '') kernel_version="?.??"; _k_verc_fail=yes;;
2787 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2788 _k_verc_problem=yes;;
2789 esac
2790 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2791 _k_verc_fail=yes
2793 if test "$_k_verc_fail" ; then
2794 echores "$kernel_version, fail"
2795 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2796 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2797 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2798 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2799 echo "2.2.x you must upgrade it to get SSE support!"
2800 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2801 else
2802 echores "$kernel_version, ok"
2806 ######################
2807 # MAIN TESTS GO HERE #
2808 ######################
2811 echocheck "-lposix"
2812 if cflag_check -lposix ; then
2813 extra_ldflags="$extra_ldflags -lposix"
2814 echores "yes"
2815 else
2816 echores "no"
2819 echocheck "-lm"
2820 if cflag_check -lm ; then
2821 _ld_lm="-lm"
2822 echores "yes"
2823 else
2824 _ld_lm=""
2825 echores "no"
2829 echocheck "langinfo"
2830 if test "$_langinfo" = auto ; then
2831 cat > $TMPC <<EOF
2832 #include <langinfo.h>
2833 int main(void) { nl_langinfo(CODESET); return 0; }
2835 _langinfo=no
2836 cc_check && _langinfo=yes
2838 if test "$_langinfo" = yes ; then
2839 def_langinfo='#define HAVE_LANGINFO 1'
2840 else
2841 def_langinfo='#undef HAVE_LANGINFO'
2843 echores "$_langinfo"
2846 echocheck "translation support"
2847 if test "$_translation" = yes; then
2848 def_translation="#define CONFIG_TRANSLATION 1"
2849 else
2850 def_translation="#undef CONFIG_TRANSLATION"
2852 echores "$_translation"
2854 echocheck "language"
2855 # Set preferred languages, "all" uses English as main language.
2856 test -z "$language" && language=$LINGUAS
2857 test -z "$language_doc" && language_doc=$language
2858 test -z "$language_man" && language_man=$language
2859 test -z "$language_msg" && language_msg="all"
2860 language_doc=$(echo $language_doc | tr , " ")
2861 language_man=$(echo $language_man | tr , " ")
2862 language_msg=$(echo $language_msg | tr , " ")
2864 test "$language_doc" = "all" && language_doc=$doc_lang_all
2865 test "$language_man" = "all" && language_man=$man_lang_all
2866 test "$language_msg" = "all" && language_msg=$msg_lang_all
2868 if test "$_translation" != yes ; then
2869 language_msg=""
2872 # Prune non-existing translations from language lists.
2873 # Set message translation to the first available language.
2874 # Fall back on English.
2875 for lang in $language_doc ; do
2876 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2877 done
2878 language_doc=$tmp_language_doc
2879 test -z "$language_doc" && language_doc=en
2881 for lang in $language_man ; do
2882 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2883 done
2884 language_man=$tmp_language_man
2885 test -z "$language_man" && language_man=en
2887 for lang in $language_msg ; do
2888 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2889 done
2890 language_msg=$tmp_language_msg
2892 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2895 echocheck "enable sighandler"
2896 if test "$_sighandler" = yes ; then
2897 def_sighandler='#define CONFIG_SIGHANDLER 1'
2898 else
2899 def_sighandler='#undef CONFIG_SIGHANDLER'
2901 echores "$_sighandler"
2903 echocheck "runtime cpudetection"
2904 if test "$_runtime_cpudetection" = yes ; then
2905 _optimizing="Runtime CPU-Detection enabled"
2906 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2907 else
2908 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2910 echores "$_runtime_cpudetection"
2913 echocheck "restrict keyword"
2914 for restrict_keyword in restrict __restrict __restrict__ ; do
2915 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2916 if cc_check; then
2917 def_restrict_keyword=$restrict_keyword
2918 break;
2920 done
2921 if [ -n "$def_restrict_keyword" ]; then
2922 echores "$def_restrict_keyword"
2923 else
2924 echores "none"
2926 # Avoid infinite recursion loop ("#define restrict restrict")
2927 if [ "$def_restrict_keyword" != "restrict" ]; then
2928 def_restrict_keyword="#define restrict $def_restrict_keyword"
2929 else
2930 def_restrict_keyword=""
2934 echocheck "__builtin_expect"
2935 # GCC branch prediction hint
2936 cat > $TMPC << EOF
2937 int foo(int a) {
2938 a = __builtin_expect(a, 10);
2939 return a == 10 ? 0 : 1;
2941 int main(void) { return foo(10) && foo(0); }
2943 _builtin_expect=no
2944 cc_check && _builtin_expect=yes
2945 if test "$_builtin_expect" = yes ; then
2946 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2947 else
2948 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2950 echores "$_builtin_expect"
2953 echocheck "kstat"
2954 cat > $TMPC << EOF
2955 #include <kstat.h>
2956 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2958 _kstat=no
2959 cc_check -lkstat && _kstat=yes
2960 if test "$_kstat" = yes ; then
2961 def_kstat="#define HAVE_LIBKSTAT 1"
2962 extra_ldflags="$extra_ldflags -lkstat"
2963 else
2964 def_kstat="#undef HAVE_LIBKSTAT"
2966 echores "$_kstat"
2969 echocheck "posix4"
2970 # required for nanosleep on some systems
2971 cat > $TMPC << EOF
2972 #include <time.h>
2973 int main(void) { (void) nanosleep(0, 0); return 0; }
2975 _posix4=no
2976 cc_check -lposix4 && _posix4=yes
2977 if test "$_posix4" = yes ; then
2978 extra_ldflags="$extra_ldflags -lposix4"
2980 echores "$_posix4"
2982 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2983 echocheck $func
2984 cat > $TMPC << EOF
2985 #include <math.h>
2986 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2988 eval _$func=no
2989 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2990 if eval test "x\$_$func" = "xyes"; then
2991 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2992 echores yes
2993 else
2994 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2995 echores no
2997 done
3000 echocheck "mkstemp"
3001 cat > $TMPC << EOF
3002 #include <stdlib.h>
3003 int main(void) { char a; mkstemp(&a); return 0; }
3005 _mkstemp=no
3006 cc_check && _mkstemp=yes
3007 if test "$_mkstemp" = yes ; then
3008 def_mkstemp='#define HAVE_MKSTEMP 1'
3009 else
3010 def_mkstemp='#undef HAVE_MKSTEMP'
3012 echores "$_mkstemp"
3015 echocheck "nanosleep"
3016 # also check for nanosleep
3017 cat > $TMPC << EOF
3018 #include <time.h>
3019 int main(void) { (void) nanosleep(0, 0); return 0; }
3021 _nanosleep=no
3022 cc_check && _nanosleep=yes
3023 if test "$_nanosleep" = yes ; then
3024 def_nanosleep='#define HAVE_NANOSLEEP 1'
3025 else
3026 def_nanosleep='#undef HAVE_NANOSLEEP'
3028 echores "$_nanosleep"
3031 echocheck "socklib"
3032 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3033 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3034 cat > $TMPC << EOF
3035 #include <netdb.h>
3036 #include <sys/socket.h>
3037 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3039 _socklib=no
3040 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3041 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3042 done
3043 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3044 if test $_winsock2_h = auto ; then
3045 _winsock2_h=no
3046 cat > $TMPC << EOF
3047 #include <winsock2.h>
3048 int main(void) { (void) gethostbyname(0); return 0; }
3050 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3052 test "$_ld_sock" && res_comment="using $_ld_sock"
3053 echores "$_socklib"
3056 if test $_winsock2_h = yes ; then
3057 _ld_sock="-lws2_32"
3058 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3059 else
3060 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3064 echocheck "arpa/inet.h"
3065 arpa_inet_h=no
3066 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3067 header_check arpa/inet.h && arpa_inet_h=yes &&
3068 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3069 echores "$arpa_inet_h"
3072 echocheck "inet_pton()"
3073 def_inet_pton='#define HAVE_INET_PTON 0'
3074 inet_pton=no
3075 cat > $TMPC << EOF
3076 #include <sys/types.h>
3077 #include <sys/socket.h>
3078 #include <arpa/inet.h>
3079 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3081 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3082 cc_check $_ld_tmp && inet_pton=yes && break
3083 done
3084 if test $inet_pton = yes ; then
3085 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3086 def_inet_pton='#define HAVE_INET_PTON 1'
3088 echores "$inet_pton"
3091 echocheck "inet_aton()"
3092 def_inet_aton='#define HAVE_INET_ATON 0'
3093 inet_aton=no
3094 cat > $TMPC << EOF
3095 #include <sys/types.h>
3096 #include <sys/socket.h>
3097 #include <arpa/inet.h>
3098 int main(void) { (void) inet_aton(0, 0); return 0; }
3100 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3101 cc_check $_ld_tmp && inet_aton=yes && break
3102 done
3103 if test $inet_aton = yes ; then
3104 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3105 def_inet_aton='#define HAVE_INET_ATON 1'
3107 echores "$inet_aton"
3110 echocheck "socklen_t"
3111 _socklen_t=no
3112 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3113 cat > $TMPC << EOF
3114 #include <$header>
3115 int main(void) { socklen_t v = 0; return v; }
3117 cc_check && _socklen_t=yes && break
3118 done
3119 if test "$_socklen_t" = yes ; then
3120 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3121 else
3122 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3124 echores "$_socklen_t"
3127 echocheck "closesocket()"
3128 _closesocket=no
3129 cat > $TMPC << EOF
3130 #include <winsock2.h>
3131 int main(void) { closesocket(~0); return 0; }
3133 cc_check $_ld_sock && _closesocket=yes
3134 if test "$_closesocket" = yes ; then
3135 def_closesocket='#define HAVE_CLOSESOCKET 1'
3136 else
3137 def_closesocket='#define HAVE_CLOSESOCKET 0'
3139 echores "$_closesocket"
3142 echocheck "networking"
3143 test $_winsock2_h = no && test $inet_pton = no &&
3144 test $inet_aton = no && networking=no
3145 if test "$networking" = yes ; then
3146 def_network='#define CONFIG_NETWORK 1'
3147 def_networking='#define CONFIG_NETWORKING 1'
3148 extra_ldflags="$extra_ldflags $_ld_sock"
3149 inputmodules="networking $inputmodules"
3150 else
3151 noinputmodules="networking $noinputmodules"
3152 def_network='#undef CONFIG_NETWORK'
3153 def_networking='#undef CONFIG_NETWORKING'
3154 _ftp=no
3156 echores "$networking"
3159 echocheck "inet6"
3160 if test "$_inet6" = auto ; then
3161 cat > $TMPC << EOF
3162 #include <sys/types.h>
3163 #if !defined(_WIN32) || defined(__CYGWIN__)
3164 #include <sys/socket.h>
3165 #include <netinet/in.h>
3166 #else
3167 #include <ws2tcpip.h>
3168 #endif
3169 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3171 _inet6=no
3172 if cc_check $_ld_sock ; then
3173 _inet6=yes
3176 if test "$_inet6" = yes ; then
3177 def_inet6='#define HAVE_AF_INET6 1'
3178 else
3179 def_inet6='#undef HAVE_AF_INET6'
3181 echores "$_inet6"
3184 echocheck "gethostbyname2"
3185 if test "$_gethostbyname2" = auto ; then
3186 cat > $TMPC << EOF
3187 #include <sys/types.h>
3188 #include <sys/socket.h>
3189 #include <netdb.h>
3190 int main(void) { gethostbyname2("", AF_INET); return 0; }
3192 _gethostbyname2=no
3193 if cc_check ; then
3194 _gethostbyname2=yes
3197 if test "$_gethostbyname2" = yes ; then
3198 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3199 else
3200 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3202 echores "$_gethostbyname2"
3205 echocheck "inttypes.h (required)"
3206 _inttypes=no
3207 header_check inttypes.h && _inttypes=yes
3208 echores "$_inttypes"
3210 if test "$_inttypes" = no ; then
3211 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3212 header_check sys/bitypes.h && _inttypes=yes
3213 if test "$_inttypes" = yes ; then
3214 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."
3215 else
3216 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3221 echocheck "int_fastXY_t in inttypes.h"
3222 cat > $TMPC << EOF
3223 #include <inttypes.h>
3224 int main(void) {
3225 volatile int_fast16_t v= 0;
3226 return v; }
3228 _fast_inttypes=no
3229 cc_check && _fast_inttypes=yes
3230 if test "$_fast_inttypes" = no ; then
3231 def_fast_inttypes='
3232 typedef signed char int_fast8_t;
3233 typedef signed int int_fast16_t;
3234 typedef signed int int_fast32_t;
3235 typedef signed long long int_fast64_t;
3236 typedef unsigned char uint_fast8_t;
3237 typedef unsigned int uint_fast16_t;
3238 typedef unsigned int uint_fast32_t;
3239 typedef unsigned long long uint_fast64_t;'
3241 echores "$_fast_inttypes"
3244 echocheck "malloc.h"
3245 _malloc=no
3246 header_check malloc.h && _malloc=yes
3247 if test "$_malloc" = yes ; then
3248 def_malloc_h='#define HAVE_MALLOC_H 1'
3249 else
3250 def_malloc_h='#define HAVE_MALLOC_H 0'
3252 echores "$_malloc"
3255 echocheck "memalign()"
3256 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3257 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3258 cat > $TMPC << EOF
3259 #include <malloc.h>
3260 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3262 _memalign=no
3263 cc_check && _memalign=yes
3264 if test "$_memalign" = yes ; then
3265 def_memalign='#define HAVE_MEMALIGN 1'
3266 else
3267 def_memalign='#define HAVE_MEMALIGN 0'
3268 def_map_memalign='#define memalign(a,b) malloc(b)'
3269 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3271 echores "$_memalign"
3274 echocheck "posix_memalign()"
3275 posix_memalign=no
3276 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3277 cat > $TMPC << EOF
3278 #define _XOPEN_SOURCE 600
3279 #include <stdlib.h>
3280 int main(void) { posix_memalign(NULL, 0, 0); }
3282 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3283 echores "$posix_memalign"
3286 echocheck "alloca.h"
3287 cat > $TMPC << EOF
3288 #include <alloca.h>
3289 int main(void) { (void) alloca(0); return 0; }
3291 _alloca=no
3292 cc_check && _alloca=yes
3293 if cc_check ; then
3294 def_alloca_h='#define HAVE_ALLOCA_H 1'
3295 else
3296 def_alloca_h='#undef HAVE_ALLOCA_H'
3298 echores "$_alloca"
3301 echocheck "fastmemcpy"
3302 if test "$_fastmemcpy" = yes ; then
3303 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3304 else
3305 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3307 echores "$_fastmemcpy"
3310 echocheck "mman.h"
3311 cat > $TMPC << EOF
3312 #include <sys/types.h>
3313 #include <sys/mman.h>
3314 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3316 _mman=no
3317 cc_check && _mman=yes
3318 if test "$_mman" = yes ; then
3319 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3320 else
3321 def_mman_h='#undef HAVE_SYS_MMAN_H'
3322 os2 && _need_mmap=yes
3324 echores "$_mman"
3326 cat > $TMPC << EOF
3327 #include <sys/types.h>
3328 #include <sys/mman.h>
3329 int main(void) { void *p = MAP_FAILED; return 0; }
3331 _mman_has_map_failed=no
3332 cc_check && _mman_has_map_failed=yes
3333 if test "$_mman_has_map_failed" = yes ; then
3334 def_mman_has_map_failed=''
3335 else
3336 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3339 echocheck "dynamic loader"
3340 cat > $TMPC << EOF
3341 #include <stddef.h>
3342 #include <dlfcn.h>
3343 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3345 _dl=no
3346 for _ld_tmp in "" "-ldl" ; do
3347 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3348 done
3349 if test "$_dl" = yes ; then
3350 def_dl='#define HAVE_LIBDL 1'
3351 else
3352 def_dl='#undef HAVE_LIBDL'
3354 echores "$_dl"
3357 echocheck "dynamic a/v plugins support"
3358 if test "$_dl" = no ; then
3359 _dynamic_plugins=no
3361 if test "$_dynamic_plugins" = yes ; then
3362 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3363 else
3364 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3366 echores "$_dynamic_plugins"
3369 def_threads='#define HAVE_THREADS 0'
3371 echocheck "pthread"
3372 if linux ; then
3373 THREAD_CFLAGS=-D_REENTRANT
3374 elif freebsd || netbsd || openbsd || bsdos ; then
3375 THREAD_CFLAGS=-D_THREAD_SAFE
3377 if test "$_pthreads" = auto ; then
3378 cat > $TMPC << EOF
3379 #include <pthread.h>
3380 void* func(void *arg) { return arg; }
3381 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3383 _pthreads=no
3384 if ! hpux ; then
3385 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3386 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3387 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3388 done
3391 if test "$_pthreads" = yes ; then
3392 test $_ld_pthread && res_comment="using $_ld_pthread"
3393 def_pthreads='#define HAVE_PTHREADS 1'
3394 def_threads='#define HAVE_THREADS 1'
3395 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3396 else
3397 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3398 def_pthreads='#undef HAVE_PTHREADS'
3399 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3400 mingw32 || _win32dll=no
3402 echores "$_pthreads"
3404 if cygwin ; then
3405 if test "$_pthreads" = yes ; then
3406 def_pthread_cache="#define PTHREAD_CACHE 1"
3407 else
3408 _stream_cache=no
3409 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3413 echocheck "w32threads"
3414 if test "$_pthreads" = yes ; then
3415 res_comment="using pthread instead"
3416 _w32threads=no
3418 if test "$_w32threads" = auto ; then
3419 _w32threads=no
3420 mingw32 && _w32threads=yes
3422 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3423 echores "$_w32threads"
3425 echocheck "rpath"
3426 netbsd &&_rpath=yes
3427 if test "$_rpath" = yes ; then
3428 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3429 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3430 done
3431 extra_ldflags=$tmp
3433 echores "$_rpath"
3435 echocheck "iconv"
3436 if test "$_iconv" = auto ; then
3437 cat > $TMPC << EOF
3438 #include <stdio.h>
3439 #include <unistd.h>
3440 #include <iconv.h>
3441 #define INBUFSIZE 1024
3442 #define OUTBUFSIZE 4096
3444 char inbuffer[INBUFSIZE];
3445 char outbuffer[OUTBUFSIZE];
3447 int main(void) {
3448 size_t numread;
3449 iconv_t icdsc;
3450 char *tocode="UTF-8";
3451 char *fromcode="cp1250";
3452 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3453 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3454 char *iptr=inbuffer;
3455 char *optr=outbuffer;
3456 size_t inleft=numread;
3457 size_t outleft=OUTBUFSIZE;
3458 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3459 != (size_t)(-1)) {
3460 write(1, outbuffer, OUTBUFSIZE - outleft);
3463 if (iconv_close(icdsc) == -1)
3466 return 0;
3469 _iconv=no
3470 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3471 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3472 _iconv=yes && break
3473 done
3475 if test "$_iconv" = yes ; then
3476 def_iconv='#define CONFIG_ICONV 1'
3477 else
3478 def_iconv='#undef CONFIG_ICONV'
3480 echores "$_iconv"
3483 echocheck "soundcard.h"
3484 _soundcard_h=no
3485 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3486 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3487 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3488 header_check $_soundcard_header && _soundcard_h=yes &&
3489 res_comment="$_soundcard_header" && break
3490 done
3492 if test "$_soundcard_h" = yes ; then
3493 if test $_soundcard_header = "sys/soundcard.h"; then
3494 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3495 else
3496 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3499 echores "$_soundcard_h"
3502 echocheck "sys/dvdio.h"
3503 _dvdio=no
3504 # FreeBSD 8.1 has broken dvdio.h
3505 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3506 if test "$_dvdio" = yes ; then
3507 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3508 else
3509 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3511 echores "$_dvdio"
3514 echocheck "sys/cdio.h"
3515 _cdio=no
3516 # at least OpenSolaris has a broken cdio.h
3517 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3518 if test "$_cdio" = yes ; then
3519 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3520 else
3521 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3523 echores "$_cdio"
3526 echocheck "linux/cdrom.h"
3527 _cdrom=no
3528 header_check linux/cdrom.h && _cdrom=yes
3529 if test "$_cdrom" = yes ; then
3530 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3531 else
3532 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3534 echores "$_cdrom"
3537 echocheck "dvd.h"
3538 _dvd=no
3539 header_check dvd.h && _dvd=yes
3540 if test "$_dvd" = yes ; then
3541 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3542 else
3543 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3545 echores "$_dvd"
3548 if bsdos; then
3549 echocheck "BSDI dvd.h"
3550 _bsdi_dvd=no
3551 header_check dvd.h && _bsdi_dvd=yes
3552 if test "$_bsdi_dvd" = yes ; then
3553 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3554 else
3555 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3557 echores "$_bsdi_dvd"
3558 fi #if bsdos
3561 if hpux; then
3562 # also used by AIX, but AIX does not support VCD and/or libdvdread
3563 echocheck "HP-UX SCSI header"
3564 _hpux_scsi_h=no
3565 header_check sys/scsi.h && _hpux_scsi_h=yes
3566 if test "$_hpux_scsi_h" = yes ; then
3567 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3568 else
3569 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3571 echores "$_hpux_scsi_h"
3572 fi #if hpux
3575 if sunos; then
3576 echocheck "userspace SCSI headers (Solaris)"
3577 _sol_scsi_h=no
3578 header_check sys/scsi/scsi_types.h &&
3579 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3580 _sol_scsi_h=yes
3581 if test "$_sol_scsi_h" = yes ; then
3582 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3583 else
3584 def_sol_scsi_h='#undef SOLARIS_USCSI'
3586 echores "$_sol_scsi_h"
3587 fi #if sunos
3590 echocheck "termcap"
3591 if test "$_termcap" = auto ; then
3592 cat > $TMPC <<EOF
3593 #include <stddef.h>
3594 #include <term.h>
3595 int main(void) { tgetent(NULL, NULL); return 0; }
3597 _termcap=no
3598 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3599 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3600 && _termcap=yes && break
3601 done
3603 if test "$_termcap" = yes ; then
3604 def_termcap='#define HAVE_TERMCAP 1'
3605 test $_ld_tmp && res_comment="using $_ld_tmp"
3606 else
3607 def_termcap='#undef HAVE_TERMCAP'
3609 echores "$_termcap"
3612 echocheck "termios"
3613 def_termios='#undef HAVE_TERMIOS'
3614 def_termios_h='#undef HAVE_TERMIOS_H'
3615 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3616 if test "$_termios" = auto ; then
3617 _termios=no
3618 for _termios_header in "termios.h" "sys/termios.h"; do
3619 header_check $_termios_header && _termios=yes &&
3620 res_comment="using $_termios_header" && break
3621 done
3624 if test "$_termios" = yes ; then
3625 def_termios='#define HAVE_TERMIOS 1'
3626 if test "$_termios_header" = "termios.h" ; then
3627 def_termios_h='#define HAVE_TERMIOS_H 1'
3628 else
3629 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3632 echores "$_termios"
3635 echocheck "shm"
3636 if test "$_shm" = auto ; then
3637 cat > $TMPC << EOF
3638 #include <sys/types.h>
3639 #include <sys/shm.h>
3640 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3642 _shm=no
3643 cc_check && _shm=yes
3645 if test "$_shm" = yes ; then
3646 def_shm='#define HAVE_SHM 1'
3647 else
3648 def_shm='#undef HAVE_SHM'
3650 echores "$_shm"
3653 echocheck "strsep()"
3654 cat > $TMPC << EOF
3655 #include <string.h>
3656 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3658 _strsep=no
3659 cc_check && _strsep=yes
3660 if test "$_strsep" = yes ; then
3661 def_strsep='#define HAVE_STRSEP 1'
3662 _need_strsep=no
3663 else
3664 def_strsep='#undef HAVE_STRSEP'
3665 _need_strsep=yes
3667 echores "$_strsep"
3670 echocheck "vsscanf()"
3671 cat > $TMPC << EOF
3672 #define _ISOC99_SOURCE
3673 #include <stdarg.h>
3674 #include <stdio.h>
3675 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3677 _vsscanf=no
3678 cc_check && _vsscanf=yes
3679 if test "$_vsscanf" = yes ; then
3680 def_vsscanf='#define HAVE_VSSCANF 1'
3681 _need_vsscanf=no
3682 else
3683 def_vsscanf='#undef HAVE_VSSCANF'
3684 _need_vsscanf=yes
3686 echores "$_vsscanf"
3689 echocheck "swab()"
3690 cat > $TMPC << EOF
3691 #define _XOPEN_SOURCE 600
3692 #include <unistd.h>
3693 int main(void) { swab(0, 0, 0); return 0; }
3695 _swab=no
3696 cc_check && _swab=yes
3697 if test "$_swab" = yes ; then
3698 def_swab='#define HAVE_SWAB 1'
3699 _need_swab=no
3700 else
3701 def_swab='#undef HAVE_SWAB'
3702 _need_swab=yes
3704 echores "$_swab"
3706 echocheck "POSIX select()"
3707 cat > $TMPC << EOF
3708 #include <stdio.h>
3709 #include <stdlib.h>
3710 #include <sys/types.h>
3711 #include <string.h>
3712 #include <sys/time.h>
3713 #include <unistd.h>
3714 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3716 _posix_select=no
3717 def_posix_select='#undef HAVE_POSIX_SELECT'
3718 #select() of kLIBC (OS/2) supports socket only
3719 ! os2 && cc_check && _posix_select=yes \
3720 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3721 echores "$_posix_select"
3724 echocheck "audio select()"
3725 if test "$_select" = no ; then
3726 def_select='#undef HAVE_AUDIO_SELECT'
3727 elif test "$_select" = yes ; then
3728 def_select='#define HAVE_AUDIO_SELECT 1'
3730 echores "$_select"
3733 echocheck "gettimeofday()"
3734 cat > $TMPC << EOF
3735 #include <sys/time.h>
3736 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3738 _gettimeofday=no
3739 cc_check && _gettimeofday=yes
3740 if test "$_gettimeofday" = yes ; then
3741 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3742 _need_gettimeofday=no
3743 else
3744 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3745 _need_gettimeofday=yes
3747 echores "$_gettimeofday"
3750 echocheck "glob()"
3751 cat > $TMPC << EOF
3752 #include <stdio.h>
3753 #include <glob.h>
3754 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3756 _glob=no
3757 cc_check && _glob=yes
3758 if test "$_glob" = yes ; then
3759 def_glob='#define HAVE_GLOB 1'
3760 _need_glob=no
3761 else
3762 def_glob='#undef HAVE_GLOB'
3763 _need_glob=yes
3765 echores "$_glob"
3768 echocheck "setenv()"
3769 cat > $TMPC << EOF
3770 #include <stdlib.h>
3771 int main(void) { setenv("","",0); return 0; }
3773 _setenv=no
3774 cc_check && _setenv=yes
3775 if test "$_setenv" = yes ; then
3776 def_setenv='#define HAVE_SETENV 1'
3777 _need_setenv=no
3778 else
3779 def_setenv='#undef HAVE_SETENV'
3780 _need_setenv=yes
3782 echores "$_setenv"
3785 echocheck "setmode()"
3786 _setmode=no
3787 def_setmode='#define HAVE_SETMODE 0'
3788 cat > $TMPC << EOF
3789 #include <io.h>
3790 int main(void) { setmode(0, 0); return 0; }
3792 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3793 echores "$_setmode"
3796 if sunos; then
3797 echocheck "sysi86()"
3798 cat > $TMPC << EOF
3799 #include <sys/sysi86.h>
3800 int main(void) { sysi86(0); return 0; }
3802 _sysi86=no
3803 cc_check && _sysi86=yes
3804 if test "$_sysi86" = yes ; then
3805 def_sysi86='#define HAVE_SYSI86 1'
3806 cat > $TMPC << EOF
3807 #include <sys/sysi86.h>
3808 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3810 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3811 else
3812 def_sysi86='#undef HAVE_SYSI86'
3814 echores "$_sysi86"
3815 fi #if sunos
3818 echocheck "sys/sysinfo.h"
3819 cat > $TMPC << EOF
3820 #include <sys/sysinfo.h>
3821 int main(void) {
3822 struct sysinfo s_info;
3823 sysinfo(&s_info);
3824 return 0;
3827 _sys_sysinfo=no
3828 cc_check && _sys_sysinfo=yes
3829 if test "$_sys_sysinfo" = yes ; then
3830 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3831 else
3832 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3834 echores "$_sys_sysinfo"
3837 if darwin; then
3839 echocheck "Mac OS X Finder Support"
3840 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3841 if test "$_macosx_finder" = yes ; then
3842 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3843 extra_ldflags="$extra_ldflags -framework Carbon"
3845 echores "$_macosx_finder"
3847 echocheck "Mac OS X Bundle file locations"
3848 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3849 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3850 if test "$_macosx_bundle" = yes ; then
3851 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3852 extra_ldflags="$extra_ldflags -framework Carbon"
3854 echores "$_macosx_bundle"
3856 echocheck "Apple Remote"
3857 if test "$_apple_remote" = auto ; then
3858 _apple_remote=no
3859 cat > $TMPC <<EOF
3860 #include <stdio.h>
3861 #include <IOKit/IOCFPlugIn.h>
3862 int main(void) {
3863 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3864 CFMutableDictionaryRef hidMatchDictionary;
3865 IOReturn ioReturnValue;
3867 // Set up a matching dictionary to search the I/O Registry by class.
3868 // name for all HID class devices
3869 hidMatchDictionary = IOServiceMatching("AppleIRController");
3871 // Now search I/O Registry for matching devices.
3872 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3873 hidMatchDictionary, &hidObjectIterator);
3875 // If search is unsuccessful, return nonzero.
3876 if (ioReturnValue != kIOReturnSuccess ||
3877 !IOIteratorIsValid(hidObjectIterator)) {
3878 return 1;
3880 return 0;
3883 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3885 if test "$_apple_remote" = yes ; then
3886 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3887 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3888 else
3889 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3891 echores "$_apple_remote"
3893 fi #if darwin
3895 if linux; then
3897 echocheck "Apple IR"
3898 if test "$_apple_ir" = auto ; then
3899 _apple_ir=no
3900 cat > $TMPC <<EOF
3901 #include <linux/types.h>
3902 #include <linux/input.h>
3903 int main(void) {
3904 struct input_event ev;
3905 struct input_id id;
3906 return 0;
3909 cc_check && _apple_ir=yes
3911 if test "$_apple_ir" = yes ; then
3912 def_apple_ir='#define CONFIG_APPLE_IR 1'
3913 else
3914 def_apple_ir='#undef CONFIG_APPLE_IR'
3916 echores "$_apple_ir"
3917 fi #if linux
3919 echocheck "pkg-config"
3920 _pkg_config=pkg-config
3921 if $($_pkg_config --version > /dev/null 2>&1); then
3922 if test "$_ld_static"; then
3923 _pkg_config="$_pkg_config --static"
3925 echores "yes"
3926 else
3927 _pkg_config=false
3928 echores "no"
3932 echocheck "Samba support (libsmbclient)"
3933 if test "$_smb" = yes; then
3934 extra_ldflags="$extra_ldflags -lsmbclient"
3936 if test "$_smb" = auto; then
3937 _smb=no
3938 cat > $TMPC << EOF
3939 #include <libsmbclient.h>
3940 int main(void) { smbc_opendir("smb://"); return 0; }
3942 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3943 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3944 _smb=yes && break
3945 done
3948 if test "$_smb" = yes; then
3949 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3950 inputmodules="smb $inputmodules"
3951 else
3952 def_smb="#undef CONFIG_LIBSMBCLIENT"
3953 noinputmodules="smb $noinputmodules"
3955 echores "$_smb"
3958 #########
3959 # VIDEO #
3960 #########
3963 echocheck "tdfxfb"
3964 if test "$_tdfxfb" = yes ; then
3965 def_tdfxfb='#define CONFIG_TDFXFB 1'
3966 vomodules="tdfxfb $vomodules"
3967 else
3968 def_tdfxfb='#undef CONFIG_TDFXFB'
3969 novomodules="tdfxfb $novomodules"
3971 echores "$_tdfxfb"
3973 echocheck "s3fb"
3974 if test "$_s3fb" = yes ; then
3975 def_s3fb='#define CONFIG_S3FB 1'
3976 vomodules="s3fb $vomodules"
3977 else
3978 def_s3fb='#undef CONFIG_S3FB'
3979 novomodules="s3fb $novomodules"
3981 echores "$_s3fb"
3983 echocheck "wii"
3984 if test "$_wii" = yes ; then
3985 def_wii='#define CONFIG_WII 1'
3986 vomodules="wii $vomodules"
3987 else
3988 def_wii='#undef CONFIG_WII'
3989 novomodules="wii $novomodules"
3991 echores "$_wii"
3993 echocheck "tdfxvid"
3994 if test "$_tdfxvid" = yes ; then
3995 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3996 vomodules="tdfx_vid $vomodules"
3997 else
3998 def_tdfxvid='#undef CONFIG_TDFX_VID'
3999 novomodules="tdfx_vid $novomodules"
4001 echores "$_tdfxvid"
4003 echocheck "xvr100"
4004 if test "$_xvr100" = auto ; then
4005 cat > $TMPC << EOF
4006 #include <unistd.h>
4007 #include <sys/fbio.h>
4008 #include <sys/visual_io.h>
4009 int main(void) {
4010 struct vis_identifier ident;
4011 struct fbgattr attr;
4012 ioctl(0, VIS_GETIDENTIFIER, &ident);
4013 ioctl(0, FBIOGATTR, &attr);
4014 return 0;
4017 _xvr100=no
4018 cc_check && _xvr100=yes
4020 if test "$_xvr100" = yes ; then
4021 def_xvr100='#define CONFIG_XVR100 1'
4022 vomodules="xvr100 $vomodules"
4023 else
4024 def_tdfxvid='#undef CONFIG_XVR100'
4025 novomodules="xvr100 $novomodules"
4027 echores "$_xvr100"
4029 echocheck "tga"
4030 if test "$_tga" = yes ; then
4031 def_tga='#define CONFIG_TGA 1'
4032 vomodules="tga $vomodules"
4033 else
4034 def_tga='#undef CONFIG_TGA'
4035 novomodules="tga $novomodules"
4037 echores "$_tga"
4040 echocheck "md5sum support"
4041 if test "$_md5sum" = yes; then
4042 def_md5sum="#define CONFIG_MD5SUM 1"
4043 vomodules="md5sum $vomodules"
4044 else
4045 def_md5sum="#undef CONFIG_MD5SUM"
4046 novomodules="md5sum $novomodules"
4048 echores "$_md5sum"
4051 echocheck "yuv4mpeg support"
4052 if test "$_yuv4mpeg" = yes; then
4053 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4054 vomodules="yuv4mpeg $vomodules"
4055 else
4056 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4057 novomodules="yuv4mpeg $novomodules"
4059 echores "$_yuv4mpeg"
4062 echocheck "bl"
4063 if test "$_bl" = yes ; then
4064 def_bl='#define CONFIG_BL 1'
4065 vomodules="bl $vomodules"
4066 else
4067 def_bl='#undef CONFIG_BL'
4068 novomodules="bl $novomodules"
4070 echores "$_bl"
4073 echocheck "DirectFB"
4074 if test "$_directfb" = auto ; then
4075 _directfb=no
4076 cat > $TMPC <<EOF
4077 #include <directfb.h>
4078 int main(void) { DirectFBInit(0, 0); return 0; }
4080 for _inc_tmp in "" -I/usr/local/include/directfb \
4081 -I/usr/include/directfb -I/usr/local/include; do
4082 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4083 extra_cflags="$extra_cflags $_inc_tmp" && break
4084 done
4087 dfb_version() {
4088 expr $1 \* 65536 + $2 \* 256 + $3
4091 if test "$_directfb" = yes; then
4092 cat > $TMPC << EOF
4093 #include <directfb_version.h>
4095 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4098 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4099 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4100 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4101 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4102 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4103 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4104 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4105 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4106 res_comment="$_directfb_version"
4107 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4108 else
4109 def_directfb_version='#undef DIRECTFBVERSION'
4110 _directfb=no
4111 res_comment="version >=0.9.13 required"
4113 else
4114 _directfb=no
4115 res_comment="failed to get version"
4118 echores "$_directfb"
4120 if test "$_directfb" = yes ; then
4121 def_directfb='#define CONFIG_DIRECTFB 1'
4122 vomodules="directfb $vomodules"
4123 libs_mplayer="$libs_mplayer -ldirectfb"
4124 else
4125 def_directfb='#undef CONFIG_DIRECTFB'
4126 novomodules="directfb $novomodules"
4128 if test "$_dfbmga" = yes; then
4129 vomodules="dfbmga $vomodules"
4130 def_dfbmga='#define CONFIG_DFBMGA 1'
4131 else
4132 novomodules="dfbmga $novomodules"
4133 def_dfbmga='#undef CONFIG_DFBMGA'
4137 echocheck "X11 headers presence"
4138 _x11_headers="no"
4139 res_comment="check if the dev(el) packages are installed"
4140 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4141 if test -f "$I/X11/Xlib.h" ; then
4142 _x11_headers="yes"
4143 res_comment=""
4144 break
4146 done
4147 if test $_cross_compile = no; then
4148 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4149 /usr/include/X11R6 /usr/openwin/include ; do
4150 if test -f "$I/X11/Xlib.h" ; then
4151 extra_cflags="$extra_cflags -I$I"
4152 _x11_headers="yes"
4153 res_comment="using $I"
4154 break
4156 done
4158 echores "$_x11_headers"
4161 echocheck "X11"
4162 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4163 cat > $TMPC <<EOF
4164 #include <X11/Xlib.h>
4165 #include <X11/Xutil.h>
4166 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4168 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4169 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4170 -L/usr/lib ; do
4171 if netbsd; then
4172 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4173 else
4174 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4176 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4177 && _x11=yes && break
4178 done
4180 if test "$_x11" = yes ; then
4181 def_x11='#define CONFIG_X11 1'
4182 vomodules="x11 xover $vomodules"
4183 else
4184 _x11=no
4185 def_x11='#undef CONFIG_X11'
4186 novomodules="x11 $novomodules"
4187 res_comment="check if the dev(el) packages are installed"
4188 # disable stuff that depends on X
4189 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4191 echores "$_x11"
4193 echocheck "Xss screensaver extensions"
4194 if test "$_xss" = auto ; then
4195 cat > $TMPC << EOF
4196 #include <X11/Xlib.h>
4197 #include <X11/extensions/scrnsaver.h>
4198 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4200 _xss=no
4201 cc_check -lXss && _xss=yes
4203 if test "$_xss" = yes ; then
4204 def_xss='#define CONFIG_XSS 1'
4205 libs_mplayer="$libs_mplayer -lXss"
4206 else
4207 def_xss='#undef CONFIG_XSS'
4209 echores "$_xss"
4211 echocheck "DPMS"
4212 _xdpms3=no
4213 _xdpms4=no
4214 if test "$_x11" = yes ; then
4215 cat > $TMPC <<EOF
4216 #include <X11/Xmd.h>
4217 #include <X11/Xlib.h>
4218 #include <X11/Xutil.h>
4219 #include <X11/Xatom.h>
4220 #include <X11/extensions/dpms.h>
4221 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4223 cc_check -lXdpms && _xdpms3=yes
4224 cat > $TMPC <<EOF
4225 #include <X11/Xlib.h>
4226 #include <X11/extensions/dpms.h>
4227 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4229 cc_check -lXext && _xdpms4=yes
4231 if test "$_xdpms4" = yes ; then
4232 def_xdpms='#define CONFIG_XDPMS 1'
4233 res_comment="using Xdpms 4"
4234 echores "yes"
4235 elif test "$_xdpms3" = yes ; then
4236 def_xdpms='#define CONFIG_XDPMS 1'
4237 libs_mplayer="$libs_mplayer -lXdpms"
4238 res_comment="using Xdpms 3"
4239 echores "yes"
4240 else
4241 def_xdpms='#undef CONFIG_XDPMS'
4242 echores "no"
4246 echocheck "Xv"
4247 if test "$_xv" = auto ; then
4248 cat > $TMPC <<EOF
4249 #include <X11/Xlib.h>
4250 #include <X11/extensions/Xvlib.h>
4251 int main(void) {
4252 (void) XvGetPortAttribute(0, 0, 0, 0);
4253 (void) XvQueryPortAttributes(0, 0, 0);
4254 return 0; }
4256 _xv=no
4257 cc_check -lXv && _xv=yes
4260 if test "$_xv" = yes ; then
4261 def_xv='#define CONFIG_XV 1'
4262 libs_mplayer="$libs_mplayer -lXv"
4263 vomodules="xv $vomodules"
4264 else
4265 def_xv='#undef CONFIG_XV'
4266 novomodules="xv $novomodules"
4268 echores "$_xv"
4271 echocheck "XvMC"
4272 if test "$_xv" = yes && test "$_xvmc" != no ; then
4273 _xvmc=no
4274 cat > $TMPC <<EOF
4275 #include <X11/Xlib.h>
4276 #include <X11/extensions/Xvlib.h>
4277 #include <X11/extensions/XvMClib.h>
4278 int main(void) {
4279 (void) XvMCQueryExtension(0,0,0);
4280 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4281 return 0; }
4283 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4284 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4285 done
4287 if test "$_xvmc" = yes ; then
4288 def_xvmc='#define CONFIG_XVMC 1'
4289 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4290 vomodules="xvmc $vomodules"
4291 res_comment="using $_xvmclib"
4292 else
4293 def_xvmc='#define CONFIG_XVMC 0'
4294 novomodules="xvmc $novomodules"
4296 echores "$_xvmc"
4299 echocheck "VDPAU"
4300 if test "$_vdpau" = auto ; then
4301 _vdpau=no
4302 if test "$_dl" = yes ; then
4303 cat > $TMPC <<EOF
4304 #include <vdpau/vdpau_x11.h>
4305 int main(void) {
4306 (void) vdp_device_create_x11(0, 0, 0, 0);
4307 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4309 cc_check -lvdpau && _vdpau=yes
4312 if test "$_vdpau" = yes ; then
4313 def_vdpau='#define CONFIG_VDPAU 1'
4314 libs_mplayer="$libs_mplayer -lvdpau"
4315 vomodules="vdpau $vomodules"
4316 else
4317 def_vdpau='#define CONFIG_VDPAU 0'
4318 novomodules="vdpau $novomodules"
4320 echores "$_vdpau"
4323 echocheck "Xinerama"
4324 if test "$_xinerama" = auto ; then
4325 cat > $TMPC <<EOF
4326 #include <X11/Xlib.h>
4327 #include <X11/extensions/Xinerama.h>
4328 int main(void) { (void) XineramaIsActive(0); return 0; }
4330 _xinerama=no
4331 cc_check -lXinerama && _xinerama=yes
4334 if test "$_xinerama" = yes ; then
4335 def_xinerama='#define CONFIG_XINERAMA 1'
4336 libs_mplayer="$libs_mplayer -lXinerama"
4337 else
4338 def_xinerama='#undef CONFIG_XINERAMA'
4340 echores "$_xinerama"
4343 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4344 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4345 # named 'X extensions' or something similar.
4346 # This check may be useful for future mplayer versions (to change resolution)
4347 # If you run into problems, remove '-lXxf86vm'.
4348 echocheck "Xxf86vm"
4349 if test "$_vm" = auto ; then
4350 cat > $TMPC <<EOF
4351 #include <X11/Xlib.h>
4352 #include <X11/extensions/xf86vmode.h>
4353 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4355 _vm=no
4356 cc_check -lXxf86vm && _vm=yes
4358 if test "$_vm" = yes ; then
4359 def_vm='#define CONFIG_XF86VM 1'
4360 libs_mplayer="$libs_mplayer -lXxf86vm"
4361 else
4362 def_vm='#undef CONFIG_XF86VM'
4364 echores "$_vm"
4366 # Check for the presence of special keycodes, like audio control buttons
4367 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4368 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4369 # have these new keycodes.
4370 echocheck "XF86keysym"
4371 if test "$_xf86keysym" = auto; then
4372 _xf86keysym=no
4373 cat > $TMPC <<EOF
4374 #include <X11/Xlib.h>
4375 #include <X11/XF86keysym.h>
4376 int main(void) { return XF86XK_AudioPause; }
4378 cc_check && _xf86keysym=yes
4380 if test "$_xf86keysym" = yes ; then
4381 def_xf86keysym='#define CONFIG_XF86XK 1'
4382 else
4383 def_xf86keysym='#undef CONFIG_XF86XK'
4385 echores "$_xf86keysym"
4387 echocheck "DGA"
4388 if test "$_dga2" = auto && test "$_x11" = yes ; then
4389 cat > $TMPC << EOF
4390 #include <X11/Xlib.h>
4391 #include <X11/extensions/xf86dga.h>
4392 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4394 _dga2=no
4395 cc_check -lXxf86dga && _dga2=yes
4397 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4398 cat > $TMPC << EOF
4399 #include <X11/Xlib.h>
4400 #include <X11/extensions/xf86dga.h>
4401 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4403 _dga1=no
4404 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4407 _dga=no
4408 def_dga='#undef CONFIG_DGA'
4409 def_dga1='#undef CONFIG_DGA1'
4410 def_dga2='#undef CONFIG_DGA2'
4411 if test "$_dga1" = yes ; then
4412 _dga=yes
4413 def_dga1='#define CONFIG_DGA1 1'
4414 res_comment="using DGA 1.0"
4415 elif test "$_dga2" = yes ; then
4416 _dga=yes
4417 def_dga2='#define CONFIG_DGA2 1'
4418 res_comment="using DGA 2.0"
4420 if test "$_dga" = yes ; then
4421 def_dga='#define CONFIG_DGA 1'
4422 libs_mplayer="$libs_mplayer -lXxf86dga"
4423 vomodules="dga $vomodules"
4424 else
4425 novomodules="dga $novomodules"
4427 echores "$_dga"
4430 echocheck "3dfx"
4431 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4432 def_3dfx='#define CONFIG_3DFX 1'
4433 vomodules="3dfx $vomodules"
4434 else
4435 def_3dfx='#undef CONFIG_3DFX'
4436 novomodules="3dfx $novomodules"
4438 echores "$_3dfx"
4441 echocheck "VIDIX"
4442 def_vidix='#undef CONFIG_VIDIX'
4443 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4444 _vidix_drv_cyberblade=no
4445 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4446 _vidix_drv_ivtv=no
4447 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4448 _vidix_drv_mach64=no
4449 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4450 _vidix_drv_mga=no
4451 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4452 _vidix_drv_mga_crtc2=no
4453 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4454 _vidix_drv_nvidia=no
4455 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4456 _vidix_drv_pm2=no
4457 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4458 _vidix_drv_pm3=no
4459 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4460 _vidix_drv_radeon=no
4461 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4462 _vidix_drv_rage128=no
4463 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4464 _vidix_drv_s3=no
4465 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4466 _vidix_drv_sh_veu=no
4467 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4468 _vidix_drv_sis=no
4469 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4470 _vidix_drv_unichrome=no
4471 if test "$_vidix" = auto ; then
4472 _vidix=no
4473 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4474 && _vidix=yes
4475 x86_64 && ! linux && _vidix=no
4476 (ppc || alpha) && linux && _vidix=yes
4478 echores "$_vidix"
4480 if test "$_vidix" = yes ; then
4481 def_vidix='#define CONFIG_VIDIX 1'
4482 vomodules="cvidix $vomodules"
4483 # FIXME: ivtv driver temporarily disabled until we have a proper test
4484 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4485 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4487 # some vidix drivers are architecture and os specific, discard them elsewhere
4488 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4489 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4491 for driver in $_vidix_drivers ; do
4492 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4493 eval _vidix_drv_${driver}=yes
4494 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4495 done
4497 echocheck "VIDIX PCI device name database"
4498 echores "$_vidix_pcidb"
4499 if test "$_vidix_pcidb" = yes ; then
4500 _vidix_pcidb_val=1
4501 else
4502 _vidix_pcidb_val=0
4505 echocheck "VIDIX dhahelper support"
4506 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4507 echores "$_dhahelper"
4509 echocheck "VIDIX svgalib_helper support"
4510 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4511 echores "$_svgalib_helper"
4513 else
4514 novomodules="cvidix $novomodules"
4517 if test "$_vidix" = yes && win32; then
4518 winvidix=yes
4519 vomodules="winvidix $vomodules"
4520 libs_mplayer="$libs_mplayer -lgdi32"
4521 else
4522 novomodules="winvidix $novomodules"
4524 if test "$_vidix" = yes && test "$_x11" = yes; then
4525 xvidix=yes
4526 vomodules="xvidix $vomodules"
4527 else
4528 novomodules="xvidix $novomodules"
4531 echocheck "GGI"
4532 if test "$_ggi" = auto ; then
4533 cat > $TMPC << EOF
4534 #include <ggi/ggi.h>
4535 int main(void) { ggiInit(); return 0; }
4537 _ggi=no
4538 cc_check -lggi && _ggi=yes
4540 if test "$_ggi" = yes ; then
4541 def_ggi='#define CONFIG_GGI 1'
4542 libs_mplayer="$libs_mplayer -lggi"
4543 vomodules="ggi $vomodules"
4544 else
4545 def_ggi='#undef CONFIG_GGI'
4546 novomodules="ggi $novomodules"
4548 echores "$_ggi"
4550 echocheck "GGI extension: libggiwmh"
4551 if test "$_ggiwmh" = auto ; then
4552 _ggiwmh=no
4553 cat > $TMPC << EOF
4554 #include <ggi/ggi.h>
4555 #include <ggi/wmh.h>
4556 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4558 cc_check -lggi -lggiwmh && _ggiwmh=yes
4560 # needed to get right output on obscure combination
4561 # like --disable-ggi --enable-ggiwmh
4562 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4563 def_ggiwmh='#define CONFIG_GGIWMH 1'
4564 libs_mplayer="$libs_mplayer -lggiwmh"
4565 else
4566 _ggiwmh=no
4567 def_ggiwmh='#undef CONFIG_GGIWMH'
4569 echores "$_ggiwmh"
4572 echocheck "AA"
4573 if test "$_aa" = auto ; then
4574 cat > $TMPC << EOF
4575 #include <aalib.h>
4576 extern struct aa_hardware_params aa_defparams;
4577 extern struct aa_renderparams aa_defrenderparams;
4578 int main(void) {
4579 aa_context *c;
4580 aa_renderparams *p;
4581 (void) aa_init(0, 0, 0);
4582 c = aa_autoinit(&aa_defparams);
4583 p = aa_getrenderparams();
4584 aa_autoinitkbd(c,0);
4585 return 0; }
4587 _aa=no
4588 for _ld_tmp in "-laa" ; do
4589 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4590 done
4592 if test "$_aa" = yes ; then
4593 def_aa='#define CONFIG_AA 1'
4594 if cygwin ; then
4595 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4597 vomodules="aa $vomodules"
4598 else
4599 def_aa='#undef CONFIG_AA'
4600 novomodules="aa $novomodules"
4602 echores "$_aa"
4605 echocheck "CACA"
4606 if test "$_caca" = auto ; then
4607 _caca=no
4608 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4609 cat > $TMPC << EOF
4610 #include <caca.h>
4611 #ifdef CACA_API_VERSION_1
4612 #include <caca0.h>
4613 #endif
4614 int main(void) { (void) caca_init(); return 0; }
4616 cc_check $(caca-config --libs) && _caca=yes
4619 if test "$_caca" = yes ; then
4620 def_caca='#define CONFIG_CACA 1'
4621 extra_cflags="$extra_cflags $(caca-config --cflags)"
4622 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4623 vomodules="caca $vomodules"
4624 else
4625 def_caca='#undef CONFIG_CACA'
4626 novomodules="caca $novomodules"
4628 echores "$_caca"
4631 echocheck "SVGAlib"
4632 if test "$_svga" = auto ; then
4633 _svga=no
4634 header_check vga.h -lvga $_ld_lm && _svga=yes
4636 if test "$_svga" = yes ; then
4637 def_svga='#define CONFIG_SVGALIB 1'
4638 libs_mplayer="$libs_mplayer -lvga"
4639 vomodules="svga $vomodules"
4640 else
4641 def_svga='#undef CONFIG_SVGALIB'
4642 novomodules="svga $novomodules"
4644 echores "$_svga"
4647 echocheck "FBDev"
4648 if test "$_fbdev" = auto ; then
4649 _fbdev=no
4650 linux && _fbdev=yes
4652 if test "$_fbdev" = yes ; then
4653 def_fbdev='#define CONFIG_FBDEV 1'
4654 vomodules="fbdev $vomodules"
4655 else
4656 def_fbdev='#undef CONFIG_FBDEV'
4657 novomodules="fbdev $novomodules"
4659 echores "$_fbdev"
4663 echocheck "DVB"
4664 if test "$_dvb" = auto ; then
4665 _dvb=no
4666 cat >$TMPC << EOF
4667 #include <poll.h>
4668 #include <sys/ioctl.h>
4669 #include <stdio.h>
4670 #include <time.h>
4671 #include <unistd.h>
4672 #include <linux/dvb/dmx.h>
4673 #include <linux/dvb/frontend.h>
4674 #include <linux/dvb/video.h>
4675 #include <linux/dvb/audio.h>
4676 int main(void) {return 0;}
4678 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4679 cc_check $_inc_tmp && _dvb=yes && \
4680 extra_cflags="$extra_cflags $_inc_tmp" && break
4681 done
4683 echores "$_dvb"
4684 if test "$_dvb" = yes ; then
4685 _dvbin=yes
4686 inputmodules="dvb $inputmodules"
4687 def_dvb='#define CONFIG_DVB 1'
4688 def_dvbin='#define CONFIG_DVBIN 1'
4689 aomodules="mpegpes(dvb) $aomodules"
4690 vomodules="mpegpes(dvb) $vomodules"
4691 else
4692 _dvbin=no
4693 noinputmodules="dvb $noinputmodules"
4694 def_dvb='#undef CONFIG_DVB'
4695 def_dvbin='#undef CONFIG_DVBIN '
4696 aomodules="mpegpes(file) $aomodules"
4697 vomodules="mpegpes(file) $vomodules"
4701 if darwin; then
4703 echocheck "QuickTime"
4704 if test "$quicktime" = auto ; then
4705 cat > $TMPC <<EOF
4706 #include <QuickTime/QuickTime.h>
4707 int main(void) {
4708 ImageDescription *desc;
4709 EnterMovies();
4710 ExitMovies();
4711 return 0;
4714 quicktime=no
4715 cc_check -framework QuickTime && quicktime=yes
4717 if test "$quicktime" = yes ; then
4718 extra_ldflags="$extra_ldflags -framework QuickTime"
4719 def_quicktime='#define CONFIG_QUICKTIME 1'
4720 else
4721 def_quicktime='#undef CONFIG_QUICKTIME'
4722 _quartz=no
4724 echores $quicktime
4726 echocheck "Quartz"
4727 if test "$_quartz" = auto ; then
4728 cat > $TMPC <<EOF
4729 #include <Carbon/Carbon.h>
4730 int main(void) {
4731 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4732 return 0;
4735 _quartz=no
4736 cc_check -framework Carbon && _quartz=yes
4738 if test "$_quartz" = yes ; then
4739 libs_mplayer="$libs_mplayer -framework Carbon"
4740 def_quartz='#define CONFIG_QUARTZ 1'
4741 vomodules="quartz $vomodules"
4742 else
4743 def_quartz='#undef CONFIG_QUARTZ'
4744 novomodules="quartz $novomodules"
4746 echores $_quartz
4748 echocheck "CoreVideo"
4749 if test "$_corevideo" = auto ; then
4750 cat > $TMPC <<EOF
4751 #include <Carbon/Carbon.h>
4752 #include <CoreServices/CoreServices.h>
4753 #include <OpenGL/OpenGL.h>
4754 #include <QuartzCore/CoreVideo.h>
4755 int main(void) { return 0; }
4757 _corevideo=no
4758 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4760 if test "$_corevideo" = yes ; then
4761 vomodules="corevideo $vomodules"
4762 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4763 def_corevideo='#define CONFIG_COREVIDEO 1'
4764 else
4765 novomodules="corevideo $novomodules"
4766 def_corevideo='#undef CONFIG_COREVIDEO'
4768 echores "$_corevideo"
4770 fi #if darwin
4773 echocheck "PNG support"
4774 if test "$_png" = auto ; then
4775 _png=no
4776 if irix ; then
4777 # Don't check for -lpng on irix since it has its own libpng
4778 # incompatible with the GNU libpng
4779 res_comment="disabled on irix (not GNU libpng)"
4780 else
4781 cat > $TMPC << EOF
4782 #include <png.h>
4783 #include <string.h>
4784 int main(void) {
4785 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4786 printf("libpng: %s\n", png_libpng_ver);
4787 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4790 cc_check -lpng -lz $_ld_lm && _png=yes
4793 echores "$_png"
4794 if test "$_png" = yes ; then
4795 def_png='#define CONFIG_PNG 1'
4796 extra_ldflags="$extra_ldflags -lpng -lz"
4797 else
4798 def_png='#undef CONFIG_PNG'
4801 echocheck "MNG support"
4802 if test "$_mng" = auto ; then
4803 _mng=no
4804 cat > $TMPC << EOF
4805 #include <libmng.h>
4806 int main(void) {
4807 const char * p_ver = mng_version_text();
4808 return !p_ver || p_ver[0] == 0;
4811 if cc_check -lmng -lz $_ld_lm ; then
4812 _mng=yes
4815 echores "$_mng"
4816 if test "$_mng" = yes ; then
4817 def_mng='#define CONFIG_MNG 1'
4818 extra_ldflags="$extra_ldflags -lmng -lz"
4819 else
4820 def_mng='#undef CONFIG_MNG'
4823 echocheck "JPEG support"
4824 if test "$_jpeg" = auto ; then
4825 _jpeg=no
4826 cat > $TMPC << EOF
4827 #include <stdio.h>
4828 #include <stdlib.h>
4829 #include <setjmp.h>
4830 #include <string.h>
4831 #include <jpeglib.h>
4832 int main(void) { return 0; }
4834 cc_check -ljpeg $_ld_lm && _jpeg=yes
4836 echores "$_jpeg"
4838 if test "$_jpeg" = yes ; then
4839 def_jpeg='#define CONFIG_JPEG 1'
4840 vomodules="jpeg $vomodules"
4841 extra_ldflags="$extra_ldflags -ljpeg"
4842 else
4843 def_jpeg='#undef CONFIG_JPEG'
4844 novomodules="jpeg $novomodules"
4849 echocheck "PNM support"
4850 if test "$_pnm" = yes; then
4851 def_pnm="#define CONFIG_PNM 1"
4852 vomodules="pnm $vomodules"
4853 else
4854 def_pnm="#undef CONFIG_PNM"
4855 novomodules="pnm $novomodules"
4857 echores "$_pnm"
4861 echocheck "GIF support"
4862 # This is to appease people who want to force gif support.
4863 # If it is forced to yes, then we still do checks to determine
4864 # which gif library to use.
4865 if test "$_gif" = yes ; then
4866 _force_gif=yes
4867 _gif=auto
4870 if test "$_gif" = auto ; then
4871 _gif=no
4872 cat > $TMPC << EOF
4873 #include <gif_lib.h>
4874 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4876 for _ld_gif in "-lungif" "-lgif" ; do
4877 cc_check $_ld_gif && _gif=yes && break
4878 done
4881 # If no library was found, and the user wants support forced,
4882 # then we force it on with libgif, as this is the safest
4883 # assumption IMHO. (libungif & libregif both create symbolic
4884 # links to libgif. We also assume that no x11 support is needed,
4885 # because if you are forcing this, then you _should_ know what
4886 # you are doing. [ Besides, package maintainers should never
4887 # have compiled x11 deps into libungif in the first place. ] )
4888 # </rant>
4889 # --Joey
4890 if test "$_force_gif" = yes && test "$_gif" = no ; then
4891 _gif=yes
4892 _ld_gif="-lgif"
4895 if test "$_gif" = yes ; then
4896 def_gif='#define CONFIG_GIF 1'
4897 codecmodules="gif $codecmodules"
4898 vomodules="gif89a $vomodules"
4899 res_comment="old version, some encoding functions disabled"
4900 def_gif_4='#undef CONFIG_GIF_4'
4901 extra_ldflags="$extra_ldflags $_ld_gif"
4903 cat > $TMPC << EOF
4904 #include <signal.h>
4905 #include <gif_lib.h>
4906 void catch(int sig) { exit(1); }
4907 int main(void) {
4908 signal(SIGSEGV, catch); // catch segfault
4909 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4910 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4911 return 0;
4914 if cc_check "$_ld_gif" ; then
4915 def_gif_4='#define CONFIG_GIF_4 1'
4916 res_comment=""
4918 else
4919 def_gif='#undef CONFIG_GIF'
4920 def_gif_4='#undef CONFIG_GIF_4'
4921 novomodules="gif89a $novomodules"
4922 nocodecmodules="gif $nocodecmodules"
4924 echores "$_gif"
4927 case "$_gif" in yes*)
4928 echocheck "broken giflib workaround"
4929 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4931 cat > $TMPC << EOF
4932 #include <gif_lib.h>
4933 int main(void) {
4934 GifFileType gif;
4935 printf("UserData is at address %p\n", gif.UserData);
4936 return 0;
4939 if cc_check "$_ld_gif" ; then
4940 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4941 echores "disabled"
4942 else
4943 echores "enabled"
4946 esac
4949 echocheck "VESA support"
4950 if test "$_vesa" = auto ; then
4951 cat > $TMPC << EOF
4952 #include <vbe.h>
4953 int main(void) { vbeVersion(); return 0; }
4955 _vesa=no
4956 cc_check -lvbe -llrmi && _vesa=yes
4958 if test "$_vesa" = yes ; then
4959 def_vesa='#define CONFIG_VESA 1'
4960 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4961 vomodules="vesa $vomodules"
4962 else
4963 def_vesa='#undef CONFIG_VESA'
4964 novomodules="vesa $novomodules"
4966 echores "$_vesa"
4968 #################
4969 # VIDEO + AUDIO #
4970 #################
4973 echocheck "SDL"
4974 _inc_tmp=""
4975 _ld_tmp=""
4976 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4977 if test -z "$_sdlconfig" ; then
4978 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4979 _sdlconfig="sdl-config"
4980 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4981 _sdlconfig="sdl11-config"
4982 else
4983 _sdlconfig=false
4986 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4987 cat > $TMPC << EOF
4988 #ifdef CONFIG_SDL_SDL_H
4989 #include <SDL/SDL.h>
4990 #else
4991 #include <SDL.h>
4992 #endif
4993 #ifndef __APPLE__
4994 // we allow SDL hacking our main() only on OSX
4995 #undef main
4996 #endif
4997 int main(int argc, char *argv[]) {
4998 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4999 return 0;
5002 _sdl=no
5003 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5004 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5005 _sdl=yes
5006 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5007 break
5009 done
5010 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5011 res_comment="using $_sdlconfig"
5012 if cygwin ; then
5013 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5014 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5015 elif mingw32 ; then
5016 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5017 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5018 else
5019 _inc_tmp="$($_sdlconfig --cflags)"
5020 _ld_tmp="$($_sdlconfig --libs)"
5022 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5023 _sdl=yes
5024 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
5025 # HACK for BeOS/Haiku SDL
5026 _ld_tmp="$_ld_tmp -lstdc++"
5027 _sdl=yes
5031 if test "$_sdl" = yes ; then
5032 def_sdl='#define CONFIG_SDL 1'
5033 extra_cflags="$extra_cflags $_inc_tmp"
5034 libs_mplayer="$libs_mplayer $_ld_tmp"
5035 vomodules="sdl $vomodules"
5036 aomodules="sdl $aomodules"
5037 else
5038 def_sdl='#undef CONFIG_SDL'
5039 novomodules="sdl $novomodules"
5040 noaomodules="sdl $noaomodules"
5042 echores "$_sdl"
5045 # make sure this stays below CoreVideo to avoid issues due to namespace
5046 # conflicts between -lGL and -framework OpenGL
5047 echocheck "OpenGL"
5048 #Note: this test is run even with --enable-gl since we autodetect linker flags
5049 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5050 cat > $TMPC << EOF
5051 #ifdef GL_WIN32
5052 #include <windows.h>
5053 #include <GL/gl.h>
5054 #elif defined(GL_SDL)
5055 #include <GL/gl.h>
5056 #ifdef CONFIG_SDL_SDL_H
5057 #include <SDL/SDL.h>
5058 #else
5059 #include <SDL.h>
5060 #endif
5061 #ifndef __APPLE__
5062 // we allow SDL hacking our main() only on OSX
5063 #undef main
5064 #endif
5065 #else
5066 #include <GL/gl.h>
5067 #include <X11/Xlib.h>
5068 #include <GL/glx.h>
5069 #endif
5070 int main(int argc, char *argv[]) {
5071 #ifdef GL_WIN32
5072 HDC dc;
5073 wglCreateContext(dc);
5074 #elif defined(GL_SDL)
5075 SDL_GL_SwapBuffers();
5076 #else
5077 glXCreateContext(NULL, NULL, NULL, True);
5078 #endif
5079 glFinish();
5080 return 0;
5083 _gl=no
5084 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5085 if cc_check $_ld_tmp $_ld_lm ; then
5086 _gl=yes
5087 _gl_x11=yes
5088 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5089 break
5091 done
5092 if cc_check -DGL_WIN32 -lopengl32 ; then
5093 _gl=yes
5094 _gl_win32=yes
5095 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5097 # last so it can reuse any linker etc. flags detected before
5098 if test "$_sdl" = yes ; then
5099 if cc_check -DGL_SDL ||
5100 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5101 _gl=yes
5102 _gl_sdl=yes
5103 elif cc_check -DGL_SDL -lGL ||
5104 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5105 _gl=yes
5106 _gl_sdl=yes
5107 libs_mplayer="$libs_mplayer -lGL"
5110 else
5111 _gl=no
5113 if test "$_gl" = yes ; then
5114 def_gl='#define CONFIG_GL 1'
5115 res_comment="backends:"
5116 if test "$_gl_win32" = yes ; then
5117 def_gl_win32='#define CONFIG_GL_WIN32 1'
5118 res_comment="$res_comment win32"
5120 if test "$_gl_x11" = yes ; then
5121 def_gl_x11='#define CONFIG_GL_X11 1'
5122 res_comment="$res_comment x11"
5124 if test "$_gl_sdl" = yes ; then
5125 def_gl_sdl='#define CONFIG_GL_SDL 1'
5126 res_comment="$res_comment sdl"
5128 vomodules="opengl $vomodules"
5129 else
5130 def_gl='#undef CONFIG_GL'
5131 def_gl_win32='#undef CONFIG_GL_WIN32'
5132 def_gl_x11='#undef CONFIG_GL_X11'
5133 def_gl_sdl='#undef CONFIG_GL_SDL'
5134 novomodules="opengl $novomodules"
5136 echores "$_gl"
5139 echocheck "MatrixView"
5140 if test "$_gl" = no ; then
5141 matrixview=no
5143 if test "$matrixview" = yes ; then
5144 vomodules="matrixview $vomodules"
5145 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5146 else
5147 novomodules="matrixview $novomodules"
5148 def_matrixview='#undef CONFIG_MATRIXVIEW'
5150 echores "$matrixview"
5153 if os2 ; then
5154 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5155 if test "$_kva" = auto; then
5156 cat > $TMPC << EOF
5157 #include <os2.h>
5158 #include <kva.h>
5159 int main(void) { return 0; }
5161 _kva=no;
5162 cc_check -lkva && _kva=yes
5164 if test "$_kva" = yes ; then
5165 def_kva='#define CONFIG_KVA 1'
5166 libs_mplayer="$libs_mplayer -lkva"
5167 vomodules="kva $vomodules"
5168 else
5169 def_kva='#undef CONFIG_KVA'
5170 novomodules="kva $novomodules"
5172 echores "$_kva"
5173 fi #if os2
5176 if win32; then
5178 echocheck "Windows waveout"
5179 if test "$_win32waveout" = auto ; then
5180 cat > $TMPC << EOF
5181 #include <windows.h>
5182 #include <mmsystem.h>
5183 int main(void) { return 0; }
5185 _win32waveout=no
5186 cc_check -lwinmm && _win32waveout=yes
5188 if test "$_win32waveout" = yes ; then
5189 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5190 libs_mplayer="$libs_mplayer -lwinmm"
5191 aomodules="win32 $aomodules"
5192 else
5193 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5194 noaomodules="win32 $noaomodules"
5196 echores "$_win32waveout"
5198 echocheck "Direct3D"
5199 if test "$_direct3d" = auto ; then
5200 cat > $TMPC << EOF
5201 #include <windows.h>
5202 #include <d3d9.h>
5203 int main(void) { return 0; }
5205 _direct3d=no
5206 cc_check && _direct3d=yes
5208 if test "$_direct3d" = yes ; then
5209 def_direct3d='#define CONFIG_DIRECT3D 1'
5210 vomodules="direct3d $vomodules"
5211 else
5212 def_direct3d='#undef CONFIG_DIRECT3D'
5213 novomodules="direct3d $novomodules"
5215 echores "$_direct3d"
5217 echocheck "Directx"
5218 if test "$_directx" = auto ; then
5219 cat > $TMPC << EOF
5220 #include <windows.h>
5221 #include <ddraw.h>
5222 #include <dsound.h>
5223 int main(void) { return 0; }
5225 _directx=no
5226 cc_check -lgdi32 && _directx=yes
5228 if test "$_directx" = yes ; then
5229 def_directx='#define CONFIG_DIRECTX 1'
5230 libs_mplayer="$libs_mplayer -lgdi32"
5231 vomodules="directx $vomodules"
5232 aomodules="dsound $aomodules"
5233 else
5234 def_directx='#undef CONFIG_DIRECTX'
5235 novomodules="directx $novomodules"
5236 noaomodules="dsound $noaomodules"
5238 echores "$_directx"
5240 fi #if win32; then
5243 echocheck "DXR2"
5244 if test "$_dxr2" = auto; then
5245 _dxr2=no
5246 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5247 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5248 extra_cflags="$extra_cflags $_inc_tmp" && break
5249 done
5251 if test "$_dxr2" = yes; then
5252 def_dxr2='#define CONFIG_DXR2 1'
5253 aomodules="dxr2 $aomodules"
5254 vomodules="dxr2 $vomodules"
5255 else
5256 def_dxr2='#undef CONFIG_DXR2'
5257 noaomodules="dxr2 $noaomodules"
5258 novomodules="dxr2 $novomodules"
5260 echores "$_dxr2"
5262 echocheck "DXR3/H+"
5263 if test "$_dxr3" = auto ; then
5264 _dxr3=no
5265 header_check linux/em8300.h && _dxr3=yes
5267 if test "$_dxr3" = yes ; then
5268 def_dxr3='#define CONFIG_DXR3 1'
5269 vomodules="dxr3 $vomodules"
5270 else
5271 def_dxr3='#undef CONFIG_DXR3'
5272 novomodules="dxr3 $novomodules"
5274 echores "$_dxr3"
5277 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5278 if test "$_ivtv" = auto ; then
5279 cat > $TMPC << EOF
5280 #include <stdlib.h>
5281 #include <inttypes.h>
5282 #include <linux/types.h>
5283 #include <linux/videodev2.h>
5284 #include <linux/ivtv.h>
5285 #include <sys/ioctl.h>
5286 int main(void) {
5287 struct ivtv_cfg_stop_decode sd;
5288 struct ivtv_cfg_start_decode sd1;
5289 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5290 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5291 return 0; }
5293 _ivtv=no
5294 cc_check && _ivtv=yes
5296 if test "$_ivtv" = yes ; then
5297 def_ivtv='#define CONFIG_IVTV 1'
5298 vomodules="ivtv $vomodules"
5299 aomodules="ivtv $aomodules"
5300 else
5301 def_ivtv='#undef CONFIG_IVTV'
5302 novomodules="ivtv $novomodules"
5303 noaomodules="ivtv $noaomodules"
5305 echores "$_ivtv"
5308 echocheck "V4L2 MPEG Decoder"
5309 if test "$_v4l2" = auto ; then
5310 cat > $TMPC << EOF
5311 #include <stdlib.h>
5312 #include <inttypes.h>
5313 #include <linux/types.h>
5314 #include <linux/videodev2.h>
5315 #include <linux/version.h>
5316 int main(void) {
5317 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5318 #error kernel headers too old, need 2.6.22
5319 #endif
5320 struct v4l2_ext_controls ctrls;
5321 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5322 return 0;
5325 _v4l2=no
5326 cc_check && _v4l2=yes
5328 if test "$_v4l2" = yes ; then
5329 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5330 vomodules="v4l2 $vomodules"
5331 aomodules="v4l2 $aomodules"
5332 else
5333 def_v4l2='#undef CONFIG_V4L2_DECODER'
5334 novomodules="v4l2 $novomodules"
5335 noaomodules="v4l2 $noaomodules"
5337 echores "$_v4l2"
5341 #########
5342 # AUDIO #
5343 #########
5346 echocheck "OSS Audio"
5347 if test "$_ossaudio" = auto ; then
5348 cat > $TMPC << EOF
5349 #include <sys/ioctl.h>
5350 #include <$_soundcard_header>
5351 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5353 _ossaudio=no
5354 cc_check && _ossaudio=yes
5356 if test "$_ossaudio" = yes ; then
5357 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5358 aomodules="oss $aomodules"
5359 cat > $TMPC << EOF
5360 #include <sys/ioctl.h>
5361 #include <$_soundcard_header>
5362 #ifdef OPEN_SOUND_SYSTEM
5363 int main(void) { return 0; }
5364 #else
5365 #error Not the real thing
5366 #endif
5368 _real_ossaudio=no
5369 cc_check && _real_ossaudio=yes
5370 if test "$_real_ossaudio" = yes; then
5371 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5372 # Check for OSS4 headers (override default headers)
5373 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5374 if test -f /etc/oss.conf; then
5375 . /etc/oss.conf
5376 _ossinc="$OSSLIBDIR/include"
5377 if test -f "$_ossinc/sys/soundcard.h"; then
5378 extra_cflags="-I$_ossinc $extra_cflags"
5381 elif netbsd || openbsd ; then
5382 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5383 extra_ldflags="$extra_ldflags -lossaudio"
5384 else
5385 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5387 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5388 else
5389 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5390 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5391 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5392 noaomodules="oss $noaomodules"
5394 echores "$_ossaudio"
5397 echocheck "aRts"
5398 if test "$_arts" = auto ; then
5399 _arts=no
5400 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5401 function_check artsc.h "arts_init()" $(artsc-config --libs) $(artsc-config --cflags) &&
5402 _arts=yes
5406 if test "$_arts" = yes ; then
5407 def_arts='#define CONFIG_ARTS 1'
5408 aomodules="arts $aomodules"
5409 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5410 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5411 else
5412 noaomodules="arts $noaomodules"
5414 echores "$_arts"
5417 echocheck "EsounD"
5418 if test "$_esd" = auto ; then
5419 _esd=no
5420 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5422 cat > $TMPC << EOF
5423 #include <esd.h>
5424 int main(void) { int fd = esd_open_sound("test"); return fd; }
5426 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5430 echores "$_esd"
5432 if test "$_esd" = yes ; then
5433 def_esd='#define CONFIG_ESD 1'
5434 aomodules="esd $aomodules"
5435 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5436 extra_cflags="$extra_cflags $(esd-config --cflags)"
5438 echocheck "esd_get_latency()"
5439 cat > $TMPC << EOF
5440 #include <esd.h>
5441 int main(void) { return esd_get_latency(0); }
5443 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5444 echores "$_esd_latency"
5445 else
5446 def_esd='#undef CONFIG_ESD'
5447 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5448 noaomodules="esd $noaomodules"
5452 echocheck "NAS"
5453 if test "$_nas" = auto ; then
5454 _nas=no
5455 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5457 if test "$_nas" = yes ; then
5458 def_nas='#define CONFIG_NAS 1'
5459 libs_mplayer="$libs_mplayer -laudio -lXt"
5460 aomodules="nas $aomodules"
5461 else
5462 noaomodules="nas $noaomodules"
5463 def_nas='#undef CONFIG_NAS'
5465 echores "$_nas"
5468 echocheck "pulse"
5469 if test "$_pulse" = auto ; then
5470 _pulse=no
5471 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5472 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5473 _pulse=yes
5476 echores "$_pulse"
5478 if test "$_pulse" = yes ; then
5479 def_pulse='#define CONFIG_PULSE 1'
5480 aomodules="pulse $aomodules"
5481 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5482 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5483 else
5484 def_pulse='#undef CONFIG_PULSE'
5485 noaomodules="pulse $noaomodules"
5489 echocheck "JACK"
5490 if test "$_jack" = auto ; then
5491 _jack=yes
5493 cat > $TMPC << EOF
5494 #include <jack/jack.h>
5495 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5497 if cc_check -ljack ; then
5498 libs_mplayer="$libs_mplayer -ljack"
5499 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5500 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5501 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5502 else
5503 _jack=no
5507 if test "$_jack" = yes ; then
5508 def_jack='#define CONFIG_JACK 1'
5509 aomodules="jack $aomodules"
5510 else
5511 noaomodules="jack $noaomodules"
5513 echores "$_jack"
5515 echocheck "OpenAL"
5516 if test "$_openal" = auto ; then
5517 _openal=no
5518 cat > $TMPC << EOF
5519 #ifdef OPENAL_AL_H
5520 #include <OpenAL/al.h>
5521 #else
5522 #include <AL/al.h>
5523 #endif
5524 int main(void) {
5525 alSourceQueueBuffers(0, 0, 0);
5526 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5527 return 0;
5530 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5531 cc_check $I && _openal=yes && break
5532 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5533 done
5534 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5536 if test "$_openal" = yes ; then
5537 def_openal='#define CONFIG_OPENAL 1'
5538 aomodules="openal $aomodules"
5539 else
5540 noaomodules="openal $noaomodules"
5542 echores "$_openal"
5544 echocheck "ALSA audio"
5545 if test "$_alloca" != yes ; then
5546 _alsa=no
5547 res_comment="alloca missing"
5549 if test "$_alsa" != no ; then
5550 _alsa=no
5551 cat > $TMPC << EOF
5552 #include <sys/asoundlib.h>
5553 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5554 #error "alsa version != 0.5.x"
5555 #endif
5556 int main(void) { return 0; }
5558 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5560 cat > $TMPC << EOF
5561 #include <sys/asoundlib.h>
5562 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5563 #error "alsa version != 0.9.x"
5564 #endif
5565 int main(void) { return 0; }
5567 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5568 cat > $TMPC << EOF
5569 #include <alsa/asoundlib.h>
5570 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5571 #error "alsa version != 0.9.x"
5572 #endif
5573 int main(void) { return 0; }
5575 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5577 cat > $TMPC << EOF
5578 #include <sys/asoundlib.h>
5579 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5580 #error "alsa version != 1.0.x"
5581 #endif
5582 int main(void) { return 0; }
5584 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5585 cat > $TMPC << EOF
5586 #include <alsa/asoundlib.h>
5587 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5588 #error "alsa version != 1.0.x"
5589 #endif
5590 int main(void) { return 0; }
5592 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5594 def_alsa='#undef CONFIG_ALSA'
5595 def_alsa5='#undef CONFIG_ALSA5'
5596 def_alsa9='#undef CONFIG_ALSA9'
5597 def_alsa1x='#undef CONFIG_ALSA1X'
5598 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5599 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5600 if test "$_alsaver" ; then
5601 _alsa=yes
5602 if test "$_alsaver" = '0.5.x' ; then
5603 _alsa5=yes
5604 aomodules="alsa5 $aomodules"
5605 def_alsa5='#define CONFIG_ALSA5 1'
5606 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5607 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5608 elif test "$_alsaver" = '0.9.x-sys' ; then
5609 _alsa9=yes
5610 aomodules="alsa $aomodules"
5611 def_alsa='#define CONFIG_ALSA 1'
5612 def_alsa9='#define CONFIG_ALSA9 1'
5613 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5614 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5615 elif test "$_alsaver" = '0.9.x-alsa' ; then
5616 _alsa9=yes
5617 aomodules="alsa $aomodules"
5618 def_alsa='#define CONFIG_ALSA 1'
5619 def_alsa9='#define CONFIG_ALSA9 1'
5620 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5621 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5622 elif test "$_alsaver" = '1.0.x-sys' ; then
5623 _alsa1x=yes
5624 aomodules="alsa $aomodules"
5625 def_alsa='#define CONFIG_ALSA 1'
5626 def_alsa1x="#define CONFIG_ALSA1X 1"
5627 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5628 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5629 elif test "$_alsaver" = '1.0.x-alsa' ; then
5630 _alsa1x=yes
5631 aomodules="alsa $aomodules"
5632 def_alsa='#define CONFIG_ALSA 1'
5633 def_alsa1x="#define CONFIG_ALSA1X 1"
5634 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5635 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5636 else
5637 _alsa=no
5638 res_comment="unknown version"
5640 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5641 else
5642 noaomodules="alsa $noaomodules"
5644 echores "$_alsa"
5647 echocheck "Sun audio"
5648 if test "$_sunaudio" = auto ; then
5649 cat > $TMPC << EOF
5650 #include <sys/types.h>
5651 #include <sys/audioio.h>
5652 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5654 _sunaudio=no
5655 cc_check && _sunaudio=yes
5657 if test "$_sunaudio" = yes ; then
5658 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5659 aomodules="sun $aomodules"
5660 else
5661 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5662 noaomodules="sun $noaomodules"
5664 echores "$_sunaudio"
5667 def_mlib='#define CONFIG_MLIB 0'
5668 if sunos; then
5669 echocheck "Sun mediaLib"
5670 if test "$_mlib" = auto ; then
5671 _mlib=no
5672 cat > $TMPC << EOF
5673 #include <mlib.h>
5674 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5676 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5678 echores "$_mlib"
5679 fi #if sunos
5682 if darwin; then
5683 echocheck "CoreAudio"
5684 if test "$_coreaudio" = auto ; then
5685 cat > $TMPC <<EOF
5686 #include <CoreAudio/CoreAudio.h>
5687 #include <AudioToolbox/AudioToolbox.h>
5688 #include <AudioUnit/AudioUnit.h>
5689 int main(void) { return 0; }
5691 _coreaudio=no
5692 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5694 if test "$_coreaudio" = yes ; then
5695 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5696 def_coreaudio='#define CONFIG_COREAUDIO 1'
5697 aomodules="coreaudio $aomodules"
5698 else
5699 def_coreaudio='#undef CONFIG_COREAUDIO'
5700 noaomodules="coreaudio $noaomodules"
5702 echores $_coreaudio
5703 fi #if darwin
5706 if irix; then
5707 echocheck "SGI audio"
5708 if test "$_sgiaudio" = auto ; then
5709 _sgiaudio=no
5710 header_check dmedia/audio.h && _sgiaudio=yes
5712 if test "$_sgiaudio" = "yes" ; then
5713 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5714 libs_mplayer="$libs_mplayer -laudio"
5715 aomodules="sgi $aomodules"
5716 else
5717 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5718 noaomodules="sgi $noaomodules"
5720 echores "$_sgiaudio"
5721 fi #if irix
5724 if os2 ; then
5725 echocheck "KAI (UNIAUD/DART)"
5726 if test "$_kai" = auto; then
5727 cat > $TMPC << EOF
5728 #include <os2.h>
5729 #include <kai.h>
5730 int main(void) { return 0; }
5732 _kai=no;
5733 cc_check -lkai && _kai=yes
5735 if test "$_kai" = yes ; then
5736 def_kai='#define CONFIG_KAI 1'
5737 libs_mplayer="$libs_mplayer -lkai"
5738 aomodules="kai $aomodules"
5739 else
5740 def_kai='#undef CONFIG_KAI'
5741 noaomodules="kai $noaomodules"
5743 echores "$_kai"
5745 echocheck "DART"
5746 if test "$_dart" = auto; then
5747 cat > $TMPC << EOF
5748 #include <os2.h>
5749 #include <dart.h>
5750 int main(void) { return 0; }
5752 _dart=no;
5753 cc_check -ldart && _dart=yes
5755 if test "$_dart" = yes ; then
5756 def_dart='#define CONFIG_DART 1'
5757 libs_mplayer="$libs_mplayer -ldart"
5758 aomodules="dart $aomodules"
5759 else
5760 def_dart='#undef CONFIG_DART'
5761 noaomodules="dart $noaomodules"
5763 echores "$_dart"
5764 fi #if os2
5767 # set default CD/DVD devices
5768 if win32 || os2 ; then
5769 default_cdrom_device="D:"
5770 elif darwin ; then
5771 default_cdrom_device="/dev/disk1"
5772 elif dragonfly ; then
5773 default_cdrom_device="/dev/cd0"
5774 elif freebsd ; then
5775 default_cdrom_device="/dev/acd0"
5776 elif openbsd ; then
5777 default_cdrom_device="/dev/rcd0c"
5778 elif sunos ; then
5779 default_cdrom_device="/vol/dev/aliases/cdrom0"
5780 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5781 # file system and the volfs service.
5782 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5783 elif amigaos ; then
5784 default_cdrom_device="a1ide.device:2"
5785 else
5786 default_cdrom_device="/dev/cdrom"
5789 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5790 default_dvd_device=$default_cdrom_device
5791 elif darwin ; then
5792 default_dvd_device="/dev/rdiskN"
5793 else
5794 default_dvd_device="/dev/dvd"
5798 echocheck "VCD support"
5799 if test "$_vcd" = auto; then
5800 _vcd=no
5801 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5802 _vcd=yes
5803 elif mingw32; then
5804 header_check ddk/ntddcdrm.h && _vcd=yes
5807 if test "$_vcd" = yes; then
5808 inputmodules="vcd $inputmodules"
5809 def_vcd='#define CONFIG_VCD 1'
5810 else
5811 def_vcd='#undef CONFIG_VCD'
5812 noinputmodules="vcd $noinputmodules"
5813 res_comment="not supported on this OS"
5815 echores "$_vcd"
5819 echocheck "Blu-ray support"
5820 if test "$_bluray" = auto ; then
5821 _bluray=no
5823 cat > $TMPC << EOF
5824 #include <stdlib.h>
5825 #include <libbluray/bluray.h>
5826 int main(void) {
5827 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5828 return 0;
5831 compile_check $TMPC -lbluray && _bluray=yes
5833 if test "$_bluray" = yes ; then
5834 def_bluray='#define CONFIG_LIBBLURAY 1'
5835 extra_ldflags="$extra_ldflags -lbluray"
5836 inputmodules="bluray $inputmodules"
5837 else
5838 def_bluray='#undef CONFIG_LIBBLURAY'
5839 noinputmodules="bluray $noinputmodules"
5841 echores "$_bluray"
5843 echocheck "dvdread"
5844 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5845 _dvdread_internal=no
5847 if test "$_dvdread_internal" = auto ; then
5848 _dvdread_internal=no
5849 _dvdread=no
5850 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5851 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5852 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5853 || darwin || win32 || os2; then
5854 _dvdread_internal=yes
5855 _dvdread=yes
5856 extra_cflags="-Ilibdvdread4 $extra_cflags"
5858 elif test "$_dvdread" = auto ; then
5859 _dvdread=no
5860 if test "$_dl" = yes; then
5861 cat > $TMPC << EOF
5862 #include <inttypes.h>
5863 #include <dvdread/dvd_reader.h>
5864 #include <dvdread/ifo_types.h>
5865 #include <dvdread/ifo_read.h>
5866 #include <dvdread/nav_read.h>
5867 int main(void) { return 0; }
5869 _dvdreadcflags=$($_dvdreadconfig --cflags)
5870 _dvdreadlibs=$($_dvdreadconfig --libs)
5871 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5872 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5873 _dvdread=yes
5874 extra_cflags="$extra_cflags $_dvdreadcflags"
5875 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5876 res_comment="external"
5881 if test "$_dvdread_internal" = yes; then
5882 def_dvdread='#define CONFIG_DVDREAD 1'
5883 inputmodules="dvdread(internal) $inputmodules"
5884 _largefiles=yes
5885 res_comment="internal"
5886 elif test "$_dvdread" = yes; then
5887 def_dvdread='#define CONFIG_DVDREAD 1'
5888 _largefiles=yes
5889 extra_ldflags="$extra_ldflags -ldvdread"
5890 inputmodules="dvdread(external) $inputmodules"
5891 res_comment="external"
5892 else
5893 def_dvdread='#undef CONFIG_DVDREAD'
5894 noinputmodules="dvdread $noinputmodules"
5896 echores "$_dvdread"
5899 echocheck "internal libdvdcss"
5900 if test "$_libdvdcss_internal" = auto ; then
5901 _libdvdcss_internal=no
5902 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5903 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5905 if test "$_libdvdcss_internal" = yes ; then
5906 if linux || netbsd || openbsd || bsdos ; then
5907 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5908 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5909 elif freebsd || dragonfly ; then
5910 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5911 elif darwin ; then
5912 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5913 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5914 elif cygwin ; then
5915 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5916 elif beos ; then
5917 cflags_libdvdcss="-DSYS_BEOS"
5918 elif os2 ; then
5919 cflags_libdvdcss="-DSYS_OS2"
5921 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5922 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5923 inputmodules="libdvdcss(internal) $inputmodules"
5924 _largefiles=yes
5925 else
5926 noinputmodules="libdvdcss(internal) $noinputmodules"
5928 echores "$_libdvdcss_internal"
5931 echocheck "cdparanoia"
5932 if test "$_cdparanoia" = auto ; then
5933 cat > $TMPC <<EOF
5934 #include <cdda_interface.h>
5935 #include <cdda_paranoia.h>
5936 // This need a better test. How ?
5937 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5939 _cdparanoia=no
5940 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5941 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5942 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5943 done
5945 if test "$_cdparanoia" = yes ; then
5946 _cdda='yes'
5947 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5948 openbsd && extra_ldflags="$extra_ldflags -lutil"
5950 echores "$_cdparanoia"
5953 echocheck "libcdio"
5954 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5955 cat > $TMPC << EOF
5956 #include <stdio.h>
5957 #include <cdio/version.h>
5958 #include <cdio/cdda.h>
5959 #include <cdio/paranoia.h>
5960 int main(void) {
5961 void *test = cdda_verbose_set;
5962 printf("%s\n", CDIO_VERSION);
5963 return test == (void *)1;
5966 _libcdio=no
5967 for _ld_tmp in "" "-lwinmm" ; do
5968 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5969 cc_check $_ld_tmp $_ld_lm \
5970 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5971 done
5972 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5973 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5974 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5975 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5976 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5979 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5980 _cdda='yes'
5981 def_libcdio='#define CONFIG_LIBCDIO 1'
5982 def_havelibcdio='yes'
5983 else
5984 if test "$_cdparanoia" = yes ; then
5985 res_comment="using cdparanoia"
5987 def_libcdio='#undef CONFIG_LIBCDIO'
5988 def_havelibcdio='no'
5990 echores "$_libcdio"
5992 if test "$_cdda" = yes ; then
5993 test $_cddb = auto && test $networking = yes && _cddb=yes
5994 def_cdparanoia='#define CONFIG_CDDA 1'
5995 inputmodules="cdda $inputmodules"
5996 else
5997 def_cdparanoia='#undef CONFIG_CDDA'
5998 noinputmodules="cdda $noinputmodules"
6001 if test "$_cddb" = yes ; then
6002 def_cddb='#define CONFIG_CDDB 1'
6003 inputmodules="cddb $inputmodules"
6004 else
6005 _cddb=no
6006 def_cddb='#undef CONFIG_CDDB'
6007 noinputmodules="cddb $noinputmodules"
6010 echocheck "bitmap font support"
6011 if test "$_bitmap_font" = yes ; then
6012 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6013 else
6014 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6016 echores "$_bitmap_font"
6019 echocheck "freetype >= 2.0.9"
6021 # freetype depends on iconv
6022 if test "$_iconv" = no ; then
6023 _freetype=no
6024 res_comment="iconv support needed"
6027 if test "$_freetype" = auto ; then
6028 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6029 cat > $TMPC << EOF
6030 #include <stdio.h>
6031 #include <ft2build.h>
6032 #include FT_FREETYPE_H
6033 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6034 #error "Need FreeType 2.0.9 or newer"
6035 #endif
6036 int main(void) {
6037 FT_Library library;
6038 FT_Int major=-1,minor=-1,patch=-1;
6039 int err=FT_Init_FreeType(&library);
6040 return 0;
6043 _freetype=no
6044 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6045 else
6046 _freetype=no
6049 if test "$_freetype" = yes ; then
6050 def_freetype='#define CONFIG_FREETYPE 1'
6051 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6052 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6053 else
6054 def_freetype='#undef CONFIG_FREETYPE'
6056 echores "$_freetype"
6058 if test "$_freetype" = no ; then
6059 _fontconfig=no
6060 res_comment="FreeType support needed"
6062 echocheck "fontconfig"
6063 if test "$_fontconfig" = auto ; then
6064 cat > $TMPC << EOF
6065 #include <stdio.h>
6066 #include <stdlib.h>
6067 #include <fontconfig/fontconfig.h>
6068 #if FC_VERSION < 20402
6069 #error At least version 2.4.2 of fontconfig required
6070 #endif
6071 int main(void) {
6072 int err = FcInit();
6073 if (err == FcFalse) {
6074 printf("Couldn't initialize fontconfig lib\n");
6075 exit(err);
6077 return 0;
6080 _fontconfig=no
6081 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6082 _ld_tmp="-lfontconfig $_ld_tmp"
6083 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6084 done
6085 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6086 _inc_tmp=$($_pkg_config --cflags fontconfig)
6087 _ld_tmp=$($_pkg_config --libs fontconfig)
6088 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6089 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6092 if test "$_fontconfig" = yes ; then
6093 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6094 else
6095 def_fontconfig='#undef CONFIG_FONTCONFIG'
6097 echores "$_fontconfig"
6100 echocheck "SSA/ASS support"
6101 if test "$_ass" = auto -o "$_ass" = yes ; then
6102 if $_pkg_config libass; then
6103 _ass=yes
6104 def_ass='#define CONFIG_ASS 1'
6105 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6106 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6107 else
6108 _ass=no
6109 def_ass='#undef CONFIG_ASS'
6111 else
6112 def_ass='#undef CONFIG_ASS'
6114 echores "$_ass"
6117 echocheck "fribidi with charsets"
6118 _inc_tmp=""
6119 _ld_tmp=""
6120 if test "$_fribidi" = auto ; then
6121 cat > $TMPC << EOF
6122 #include <stdlib.h>
6123 /* workaround for fribidi 0.10.4 and below */
6124 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6125 #include <fribidi/fribidi.h>
6126 int main(void) {
6127 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6128 exit(1);
6129 return 0;
6132 _fribidi=no
6133 _inc_tmp=""
6134 _ld_tmp="-lfribidi"
6135 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6136 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6137 test "$_fribidi" = no ; then
6138 _inc_tmp="$($_pkg_config --cflags)"
6139 _ld_tmp="$($_pkg_config --libs)"
6140 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6143 if test "$_fribidi" = yes ; then
6144 def_fribidi='#define CONFIG_FRIBIDI 1'
6145 extra_cflags="$extra_cflags $_inc_tmp"
6146 extra_ldflags="$extra_ldflags $_ld_tmp"
6147 else
6148 def_fribidi='#undef CONFIG_FRIBIDI'
6150 echores "$_fribidi"
6153 echocheck "ENCA"
6154 if test "$_enca" = auto ; then
6155 cat > $TMPC << EOF
6156 #include <sys/types.h>
6157 #include <enca.h>
6158 int main(void) {
6159 const char **langs;
6160 size_t langcnt;
6161 langs = enca_get_languages(&langcnt);
6162 return 0;
6165 _enca=no
6166 cc_check -lenca $_ld_lm && _enca=yes
6168 if test "$_enca" = yes ; then
6169 def_enca='#define CONFIG_ENCA 1'
6170 extra_ldflags="$extra_ldflags -lenca"
6171 else
6172 def_enca='#undef CONFIG_ENCA'
6174 echores "$_enca"
6177 echocheck "zlib"
6178 cat > $TMPC << EOF
6179 #include <zlib.h>
6180 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6182 _zlib=no
6183 cc_check -lz && _zlib=yes
6184 if test "$_zlib" = yes ; then
6185 def_zlib='#define CONFIG_ZLIB 1'
6186 extra_ldflags="$extra_ldflags -lz"
6187 else
6188 def_zlib='#define CONFIG_ZLIB 0'
6190 echores "$_zlib"
6193 echocheck "bzlib"
6194 bzlib=no
6195 def_bzlib='#define CONFIG_BZLIB 0'
6196 cat > $TMPC << EOF
6197 #include <bzlib.h>
6198 int main(void) { BZ2_bzlibVersion(); return 0; }
6200 cc_check -lbz2 && bzlib=yes
6201 if test "$bzlib" = yes ; then
6202 def_bzlib='#define CONFIG_BZLIB 1'
6203 extra_ldflags="$extra_ldflags -lbz2"
6205 echores "$bzlib"
6208 echocheck "RTC"
6209 if test "$_rtc" = auto ; then
6210 cat > $TMPC << EOF
6211 #include <sys/ioctl.h>
6212 #ifdef __linux__
6213 #include <linux/rtc.h>
6214 #else
6215 #include <rtc.h>
6216 #define RTC_PIE_ON RTCIO_PIE_ON
6217 #endif
6218 int main(void) { return RTC_PIE_ON; }
6220 _rtc=no
6221 cc_check && _rtc=yes
6222 ppc && _rtc=no
6224 if test "$_rtc" = yes ; then
6225 def_rtc='#define HAVE_RTC 1'
6226 else
6227 def_rtc='#undef HAVE_RTC'
6229 echores "$_rtc"
6232 echocheck "liblzo2 support"
6233 if test "$_liblzo" = auto ; then
6234 _liblzo=no
6235 cat > $TMPC << EOF
6236 #include <lzo/lzo1x.h>
6237 int main(void) { lzo_init(); return 0; }
6239 cc_check -llzo2 && _liblzo=yes
6241 if test "$_liblzo" = yes ; then
6242 def_liblzo='#define CONFIG_LIBLZO 1'
6243 extra_ldflags="$extra_ldflags -llzo2"
6244 codecmodules="liblzo $codecmodules"
6245 else
6246 def_liblzo='#undef CONFIG_LIBLZO'
6247 nocodecmodules="liblzo $nocodecmodules"
6249 echores "$_liblzo"
6252 echocheck "mad support"
6253 if test "$_mad" = auto ; then
6254 _mad=no
6255 header_check mad.h -lmad && _mad=yes
6257 if test "$_mad" = yes ; then
6258 def_mad='#define CONFIG_LIBMAD 1'
6259 extra_ldflags="$extra_ldflags -lmad"
6260 codecmodules="libmad $codecmodules"
6261 else
6262 def_mad='#undef CONFIG_LIBMAD'
6263 nocodecmodules="libmad $nocodecmodules"
6265 echores "$_mad"
6267 echocheck "Twolame"
6268 if test "$_twolame" = auto ; then
6269 cat > $TMPC <<EOF
6270 #include <twolame.h>
6271 int main(void) { twolame_init(); return 0; }
6273 _twolame=no
6274 cc_check -ltwolame $_ld_lm && _twolame=yes
6276 if test "$_twolame" = yes ; then
6277 def_twolame='#define CONFIG_TWOLAME 1'
6278 libs_mencoder="$libs_mencoder -ltwolame"
6279 codecmodules="twolame $codecmodules"
6280 else
6281 def_twolame='#undef CONFIG_TWOLAME'
6282 nocodecmodules="twolame $nocodecmodules"
6284 echores "$_twolame"
6286 echocheck "Toolame"
6287 if test "$_toolame" = auto ; then
6288 _toolame=no
6289 if test "$_twolame" = yes ; then
6290 res_comment="disabled by twolame"
6291 else
6292 cat > $TMPC <<EOF
6293 #include <toolame.h>
6294 int main(void) { toolame_init(); return 0; }
6296 cc_check -ltoolame $_ld_lm && _toolame=yes
6299 if test "$_toolame" = yes ; then
6300 def_toolame='#define CONFIG_TOOLAME 1'
6301 libs_mencoder="$libs_mencoder -ltoolame"
6302 codecmodules="toolame $codecmodules"
6303 else
6304 def_toolame='#undef CONFIG_TOOLAME'
6305 nocodecmodules="toolame $nocodecmodules"
6307 if test "$_toolamedir" ; then
6308 res_comment="using $_toolamedir"
6310 echores "$_toolame"
6312 echocheck "OggVorbis support"
6313 if test "$_tremor_internal" = yes; then
6314 _libvorbis=no
6315 elif test "$_tremor" = auto; then
6316 _tremor=no
6317 cat > $TMPC << EOF
6318 #include <tremor/ivorbiscodec.h>
6319 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6321 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6323 if test "$_libvorbis" = auto; then
6324 _libvorbis=no
6325 cat > $TMPC << EOF
6326 #include <vorbis/codec.h>
6327 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6329 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6331 if test "$_tremor_internal" = yes ; then
6332 _vorbis=yes
6333 def_vorbis='#define CONFIG_OGGVORBIS 1'
6334 def_tremor='#define CONFIG_TREMOR 1'
6335 codecmodules="tremor(internal) $codecmodules"
6336 res_comment="internal Tremor"
6337 if test "$_tremor_low" = yes ; then
6338 cflags_tremor_low="-D_LOW_ACCURACY_"
6339 res_comment="internal low accuracy Tremor"
6341 elif test "$_tremor" = yes ; then
6342 _vorbis=yes
6343 def_vorbis='#define CONFIG_OGGVORBIS 1'
6344 def_tremor='#define CONFIG_TREMOR 1'
6345 codecmodules="tremor(external) $codecmodules"
6346 res_comment="external Tremor"
6347 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6348 elif test "$_libvorbis" = yes ; then
6349 _vorbis=yes
6350 def_vorbis='#define CONFIG_OGGVORBIS 1'
6351 codecmodules="libvorbis $codecmodules"
6352 res_comment="libvorbis"
6353 extra_ldflags="$extra_ldflags -lvorbis -logg"
6354 else
6355 _vorbis=no
6356 nocodecmodules="libvorbis $nocodecmodules"
6358 echores "$_vorbis"
6360 echocheck "libspeex (version >= 1.1 required)"
6361 if test "$_speex" = auto ; then
6362 _speex=no
6363 cat > $TMPC << EOF
6364 #include <speex/speex.h>
6365 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6367 cc_check -lspeex $_ld_lm && _speex=yes
6369 if test "$_speex" = yes ; then
6370 def_speex='#define CONFIG_SPEEX 1'
6371 extra_ldflags="$extra_ldflags -lspeex"
6372 codecmodules="speex $codecmodules"
6373 else
6374 def_speex='#undef CONFIG_SPEEX'
6375 nocodecmodules="speex $nocodecmodules"
6377 echores "$_speex"
6379 echocheck "OggTheora support"
6380 if test "$_theora" = auto ; then
6381 _theora=no
6382 cat > $TMPC << EOF
6383 #include <theora/theora.h>
6384 #include <string.h>
6385 int main(void) {
6386 /* Theora is in flux, make sure that all interface routines and datatypes
6387 * exist and work the way we expect it, so we don't break MPlayer. */
6388 ogg_packet op;
6389 theora_comment tc;
6390 theora_info inf;
6391 theora_state st;
6392 yuv_buffer yuv;
6393 int r;
6394 double t;
6396 theora_info_init(&inf);
6397 theora_comment_init(&tc);
6399 return 0;
6401 /* we don't want to execute this kind of nonsense; just for making sure
6402 * that compilation works... */
6403 memset(&op, 0, sizeof(op));
6404 r = theora_decode_header(&inf, &tc, &op);
6405 r = theora_decode_init(&st, &inf);
6406 t = theora_granule_time(&st, op.granulepos);
6407 r = theora_decode_packetin(&st, &op);
6408 r = theora_decode_YUVout(&st, &yuv);
6409 theora_clear(&st);
6411 return 0;
6414 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6415 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6416 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6417 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6418 if test _theora = no; then
6419 _ld_theora="-ltheora -logg"
6420 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6422 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6423 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6424 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6425 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6426 extra_ldflags="$extra_ldflags $_ld_theora" &&
6427 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6428 if test _theora = no; then
6429 _ld_theora="-ltheora -logg"
6430 cc_check tremor/bitwise.c $_ld_theora &&
6431 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6435 if test "$_theora" = yes ; then
6436 def_theora='#define CONFIG_OGGTHEORA 1'
6437 codecmodules="libtheora $codecmodules"
6438 # when --enable-theora is forced, we'd better provide a probably sane
6439 # $_ld_theora than nothing
6440 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6441 else
6442 def_theora='#undef CONFIG_OGGTHEORA'
6443 nocodecmodules="libtheora $nocodecmodules"
6445 echores "$_theora"
6447 echocheck "mp3lib support"
6448 if test "$_mp3lib" = auto ; then
6449 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6451 if test "$_mp3lib" = yes ; then
6452 def_mp3lib='#define CONFIG_MP3LIB 1'
6453 codecmodules="mp3lib(internal) $codecmodules"
6454 else
6455 def_mp3lib='#undef CONFIG_MP3LIB'
6456 nocodecmodules="mp3lib(internal) $nocodecmodules"
6458 echores "$_mp3lib"
6460 # Any version of libmpg123 shall be fine.
6461 echocheck "mpg123 support"
6462 def_mpg123='#undef CONFIG_MPG123'
6463 if test "$_mpg123" = auto; then
6464 _mpg123=no
6465 cat > $TMPC <<EOF
6466 #include <mpg123.h>
6467 int main(void){ mpg123_init(); return 0; }
6469 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6471 if test "$_mpg123" = yes ; then
6472 def_mpg123='#define CONFIG_MPG123 1'
6473 codecmodules="mpg123 $codecmodules"
6474 else
6475 nocodecmodules="mpg123 $nocodecmodules"
6477 echores "$_mpg123"
6479 echocheck "liba52 support"
6480 def_liba52='#undef CONFIG_LIBA52'
6481 if test "$_liba52" = auto ; then
6482 _liba52=no
6483 cat > $TMPC << EOF
6484 #include <inttypes.h>
6485 #include <a52dec/a52.h>
6486 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6488 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6490 if test "$_liba52" = yes ; then
6491 def_liba52='#define CONFIG_LIBA52 1'
6492 codecmodules="liba52 $codecmodules"
6493 else
6494 nocodecmodules="liba52 $nocodecmodules"
6496 echores "$_liba52"
6498 echocheck "internal libmpeg2 support"
6499 if test "$_libmpeg2" = auto ; then
6500 _libmpeg2=yes
6501 if alpha && test cc_vendor=gnu; then
6502 case $cc_version in
6503 2*|3.0*|3.1*) # cannot compile MVI instructions
6504 _libmpeg2=no
6505 res_comment="broken gcc"
6507 esac
6510 if test "$_libmpeg2" = yes ; then
6511 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6512 codecmodules="libmpeg2(internal) $codecmodules"
6513 else
6514 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6515 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6517 echores "$_libmpeg2"
6519 echocheck "libdca support"
6520 if test "$_libdca" = auto ; then
6521 _libdca=no
6522 cat > $TMPC << EOF
6523 #include <inttypes.h>
6524 #include <dts.h>
6525 int main(void) { dts_init(0); return 0; }
6527 for _ld_dca in -ldca -ldts ; do
6528 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6529 && _libdca=yes && break
6530 done
6532 if test "$_libdca" = yes ; then
6533 def_libdca='#define CONFIG_LIBDCA 1'
6534 codecmodules="libdca $codecmodules"
6535 else
6536 def_libdca='#undef CONFIG_LIBDCA'
6537 nocodecmodules="libdca $nocodecmodules"
6539 echores "$_libdca"
6541 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6542 if test "$_musepack" = auto ; then
6543 _musepack=no
6544 cat > $TMPC << EOF
6545 #include <stddef.h>
6546 #include <mpcdec/mpcdec.h>
6547 int main(void) {
6548 mpc_streaminfo info;
6549 mpc_decoder decoder;
6550 mpc_decoder_set_streaminfo(&decoder, &info);
6551 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6552 return 0;
6555 cc_check -lmpcdec $_ld_lm && _musepack=yes
6557 if test "$_musepack" = yes ; then
6558 def_musepack='#define CONFIG_MUSEPACK 1'
6559 extra_ldflags="$extra_ldflags -lmpcdec"
6560 codecmodules="musepack $codecmodules"
6561 else
6562 def_musepack='#undef CONFIG_MUSEPACK'
6563 nocodecmodules="musepack $nocodecmodules"
6565 echores "$_musepack"
6568 echocheck "FAAC support"
6569 if test "$_faac" = auto ; then
6570 cat > $TMPC <<EOF
6571 #include <inttypes.h>
6572 #include <faac.h>
6573 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6575 _faac=no
6576 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6577 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6578 done
6580 if test "$_faac" = yes ; then
6581 def_faac="#define CONFIG_FAAC 1"
6582 codecmodules="faac $codecmodules"
6583 else
6584 def_faac="#undef CONFIG_FAAC"
6585 nocodecmodules="faac $nocodecmodules"
6587 echores "$_faac"
6590 echocheck "FAAD2 support"
6591 if test "$_faad_internal" = auto ; then
6592 if x86_32 && test cc_vendor=gnu; then
6593 case $cc_version in
6594 3.1*|3.2) # ICE/insn with these versions
6595 _faad_internal=no
6596 res_comment="broken gcc"
6599 _faad=yes
6600 _faad_internal=yes
6602 esac
6603 else
6604 _faad=yes
6605 _faad_internal=yes
6608 if test "$_faad" = auto ; then
6609 cat > $TMPC << EOF
6610 #include <faad.h>
6611 #ifndef FAAD_MIN_STREAMSIZE
6612 #error Too old version
6613 #endif
6614 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6615 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6617 cc_check -lfaad $_ld_lm && _faad=yes
6620 def_faad='#undef CONFIG_FAAD'
6621 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6622 if test "$_faad_internal" = yes ; then
6623 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6624 res_comment="internal floating-point"
6625 if test "$_faad_fixed" = yes ; then
6626 # The FIXED_POINT implementation of FAAD2 improves performance
6627 # on some platforms, especially for SBR files.
6628 cflags_faad_fixed="-DFIXED_POINT"
6629 res_comment="internal fixed-point"
6631 elif test "$_faad" = yes ; then
6632 extra_ldflags="$extra_ldflags -lfaad"
6635 if test "$_faad" = yes ; then
6636 def_faad='#define CONFIG_FAAD 1'
6637 if test "$_faad_internal" = yes ; then
6638 codecmodules="faad2(internal) $codecmodules"
6639 else
6640 codecmodules="faad2 $codecmodules"
6642 else
6643 _faad=no
6644 nocodecmodules="faad2 $nocodecmodules"
6646 echores "$_faad"
6649 echocheck "LADSPA plugin support"
6650 if test "$_ladspa" = auto ; then
6651 cat > $TMPC <<EOF
6652 #include <ladspa.h>
6653 int main(void) {
6654 LADSPA_Descriptor ld = {0};
6655 return 0;
6658 _ladspa=no
6659 cc_check && _ladspa=yes
6661 if test "$_ladspa" = yes; then
6662 def_ladspa="#define CONFIG_LADSPA 1"
6663 else
6664 def_ladspa="#undef CONFIG_LADSPA"
6666 echores "$_ladspa"
6669 echocheck "libbs2b audio filter support"
6670 if test "$_libbs2b" = auto ; then
6671 cat > $TMPC <<EOF
6672 #include <bs2b.h>
6673 #if BS2B_VERSION_MAJOR < 3
6674 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6675 #endif
6676 int main(void) {
6677 t_bs2bdp filter;
6678 filter=bs2b_open();
6679 bs2b_close(filter);
6680 return 0;
6683 _libbs2b=no
6684 if $_pkg_config --exists libbs2b ; then
6685 _inc_tmp=$($_pkg_config --cflags libbs2b)
6686 _ld_tmp=$($_pkg_config --libs libbs2b)
6687 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6688 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6689 else
6690 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6691 -I/usr/local/include/bs2b ; do
6692 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6693 extra_ldflags="$extra_ldflags -lbs2b"
6694 extra_cflags="$extra_cflags $_inc_tmp"
6695 _libbs2b=yes
6696 break
6698 done
6701 def_libbs2b="#undef CONFIG_LIBBS2B"
6702 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6703 echores "$_libbs2b"
6706 if test -z "$_codecsdir" ; then
6707 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6708 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6709 if test -d "$dir" ; then
6710 _codecsdir="$dir"
6711 break;
6713 done
6715 # Fall back on default directory.
6716 if test -z "$_codecsdir" ; then
6717 _codecsdir="$_libdir/codecs"
6718 mingw32 || os2 && _codecsdir="codecs"
6722 echocheck "Win32 codecs"
6723 if test "$_win32dll" = auto ; then
6724 _win32dll=no
6725 if x86_32 && ! qnx; then
6726 _win32dll=yes
6729 if test "$_win32dll" = yes ; then
6730 def_win32dll='#define CONFIG_WIN32DLL 1'
6731 if ! win32 ; then
6732 def_win32_loader='#define WIN32_LOADER 1'
6733 _win32_emulation=yes
6734 else
6735 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6736 res_comment="using native windows"
6738 codecmodules="win32 $codecmodules"
6739 else
6740 def_win32dll='#undef CONFIG_WIN32DLL'
6741 def_win32_loader='#undef WIN32_LOADER'
6742 nocodecmodules="win32 $nocodecmodules"
6744 echores "$_win32dll"
6747 echocheck "XAnim codecs"
6748 if test "$_xanim" = auto ; then
6749 _xanim=no
6750 res_comment="dynamic loader support needed"
6751 if test "$_dl" = yes ; then
6752 _xanim=yes
6755 if test "$_xanim" = yes ; then
6756 def_xanim='#define CONFIG_XANIM 1'
6757 codecmodules="xanim $codecmodules"
6758 else
6759 def_xanim='#undef CONFIG_XANIM'
6760 nocodecmodules="xanim $nocodecmodules"
6762 echores "$_xanim"
6765 echocheck "RealPlayer codecs"
6766 if test "$_real" = auto ; then
6767 _real=no
6768 res_comment="dynamic loader support needed"
6769 if test "$_dl" = yes || test "$_win32dll" = yes &&
6770 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6771 _real=yes
6774 if test "$_real" = yes ; then
6775 def_real='#define CONFIG_REALCODECS 1'
6776 codecmodules="real $codecmodules"
6777 else
6778 def_real='#undef CONFIG_REALCODECS'
6779 nocodecmodules="real $nocodecmodules"
6781 echores "$_real"
6784 echocheck "QuickTime codecs"
6785 _qtx_emulation=no
6786 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6787 if test "$_qtx" = auto ; then
6788 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6790 if test "$_qtx" = yes ; then
6791 def_qtx='#define CONFIG_QTX_CODECS 1'
6792 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6793 codecmodules="qtx $codecmodules"
6794 darwin || win32 || _qtx_emulation=yes
6795 else
6796 def_qtx='#undef CONFIG_QTX_CODECS'
6797 nocodecmodules="qtx $nocodecmodules"
6799 echores "$_qtx"
6801 echocheck "Nemesi Streaming Media libraries"
6802 if test "$_nemesi" = auto && test "$networking" = yes ; then
6803 _nemesi=no
6804 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6805 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6806 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6807 _nemesi=yes
6810 if test "$_nemesi" = yes; then
6811 _native_rtsp=no
6812 def_nemesi='#define CONFIG_LIBNEMESI 1'
6813 inputmodules="nemesi $inputmodules"
6814 else
6815 _native_rtsp="$networking"
6816 _nemesi=no
6817 def_nemesi='#undef CONFIG_LIBNEMESI'
6818 noinputmodules="nemesi $noinputmodules"
6820 echores "$_nemesi"
6822 echocheck "LIVE555 Streaming Media libraries"
6823 if test "$_live" = auto && test "$networking" = yes ; then
6824 cat > $TMPCPP << EOF
6825 #include <liveMedia.hh>
6826 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6827 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6828 #endif
6829 int main(void) { return 0; }
6832 _live=no
6833 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
6834 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6835 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6836 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6837 $_livelibdir/groupsock/libgroupsock.a \
6838 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6839 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6840 $extra_ldflags -lstdc++" \
6841 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6842 -I$_livelibdir/UsageEnvironment/include \
6843 -I$_livelibdir/BasicUsageEnvironment/include \
6844 -I$_livelibdir/groupsock/include" && \
6845 _live=yes && break
6846 done
6847 if test "$_live" != yes ; then
6848 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6849 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6850 _live_dist=yes
6854 if test "$_live" = yes && test "$networking" = yes; then
6855 test $_livelibdir && res_comment="using $_livelibdir"
6856 def_live='#define CONFIG_LIVE555 1'
6857 inputmodules="live555 $inputmodules"
6858 elif test "$_live_dist" = yes && test "$networking" = yes; then
6859 res_comment="using distribution version"
6860 _live="yes"
6861 def_live='#define CONFIG_LIVE555 1'
6862 extra_ldflags="$extra_ldflags $ld_tmp"
6863 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6864 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6865 inputmodules="live555 $inputmodules"
6866 else
6867 _live=no
6868 def_live='#undef CONFIG_LIVE555'
6869 noinputmodules="live555 $noinputmodules"
6871 echores "$_live"
6874 echocheck "FFmpeg libavutil"
6875 if test "$_libavutil" = auto ; then
6876 _libavutil=no
6877 cat > $TMPC << EOF
6878 #include <libavutil/common.h>
6879 int main(void) { av_clip(1, 1, 1); return 0; }
6881 if $_pkg_config --exists libavutil ; then
6882 _inc_libavutil=$($_pkg_config --cflags libavutil)
6883 _ld_tmp=$($_pkg_config --libs libavutil)
6884 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6885 && _libavutil=yes
6886 elif cc_check -lavutil $_ld_lm ; then
6887 extra_ldflags="$extra_ldflags -lavutil"
6888 _libavutil=yes
6891 def_libavutil='#undef CONFIG_LIBAVUTIL'
6892 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6893 # libavutil is not available, but it is mandatory ...
6894 if test "$_libavutil" = no ; then
6895 die "You need libavutil, MPlayer will not compile without!"
6897 echores "$_libavutil"
6899 echocheck "FFmpeg libavcodec"
6900 if test "$_libavcodec" = auto ; then
6901 _libavcodec=no
6902 cat > $TMPC << EOF
6903 #include <libavcodec/avcodec.h>
6904 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6906 if $_pkg_config --exists libavcodec ; then
6907 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6908 _ld_tmp=$($_pkg_config --libs libavcodec)
6909 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6910 && _libavcodec=yes
6911 elif cc_check -lavcodec $_ld_lm ; then
6912 extra_ldflags="$extra_ldflags -lavcodec"
6913 _libavcodec=yes
6916 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6917 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6918 if test "$_libavcodec" = yes ; then
6919 codecmodules="libavcodec $codecmodules"
6920 else
6921 nocodecmodules="libavcodec $nocodecmodules"
6923 echores "$_libavcodec"
6925 echocheck "FFmpeg libavformat"
6926 if test "$_libavformat" = auto ; then
6927 _libavformat=no
6928 cat > $TMPC <<EOF
6929 #include <libavformat/avformat.h>
6930 int main(void) { av_alloc_format_context(); return 0; }
6932 if $_pkg_config --exists libavformat ; then
6933 _inc_libavformat=$($_pkg_config --cflags libavformat)
6934 _ld_tmp=$($_pkg_config --libs libavformat)
6935 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6936 && _libavformat=yes
6937 elif cc_check $_ld_lm -lavformat ; then
6938 extra_ldflags="$extra_ldflags -lavformat"
6939 _libavformat=yes
6942 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6943 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6944 echores "$_libavformat"
6946 echocheck "FFmpeg libpostproc"
6947 if test "$_libpostproc" = auto ; then
6948 _libpostproc=no
6949 cat > $TMPC << EOF
6950 #include <libpostproc/postprocess.h>
6951 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6953 if $_pkg_config --exists libpostproc ; then
6954 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6955 _ld_tmp=$($_pkg_config --libs libpostproc)
6956 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6957 && _libpostproc=yes
6958 elif cc_check -lpostproc $_ld_lm ; then
6959 extra_ldflags="$extra_ldflags -lpostproc"
6960 _libpostproc=yes
6963 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6964 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6965 echores "$_libpostproc"
6967 echocheck "FFmpeg libswscale"
6968 if test "$_libswscale" = auto ; then
6969 _libswscale=no
6970 cat > $TMPC << EOF
6971 #include <libswscale/swscale.h>
6972 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6974 if $_pkg_config --exists libswscale ; then
6975 _inc_libswscale=$($_pkg_config --cflags libswscale)
6976 _ld_tmp=$($_pkg_config --libs libswscale)
6977 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6978 && _libswscale=yes
6979 elif cc_check -lswscale ; then
6980 extra_ldflags="$extra_ldflags -lswscale"
6981 _libswscale=yes
6984 def_libswscale='#undef CONFIG_LIBSWSCALE'
6985 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6986 echores "$_libswscale"
6988 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6989 if ! test -z "$_ffmpeg_source" ; then
6990 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6993 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6994 if ! test -z "$_ffmpeg_source" ; then
6995 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6998 echocheck "libdv-0.9.5+"
6999 if test "$_libdv" = auto ; then
7000 _libdv=no
7001 cat > $TMPC <<EOF
7002 #include <libdv/dv.h>
7003 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7005 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7007 if test "$_libdv" = yes ; then
7008 def_libdv='#define CONFIG_LIBDV095 1'
7009 extra_ldflags="$extra_ldflags -ldv"
7010 codecmodules="libdv $codecmodules"
7011 else
7012 def_libdv='#undef CONFIG_LIBDV095'
7013 nocodecmodules="libdv $nocodecmodules"
7015 echores "$_libdv"
7018 echocheck "Xvid"
7019 if test "$_xvid" = auto ; then
7020 _xvid=no
7021 cat > $TMPC << EOF
7022 #include <xvid.h>
7023 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7025 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7026 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7027 done
7030 if test "$_xvid" = yes ; then
7031 def_xvid='#define CONFIG_XVID4 1'
7032 codecmodules="xvid $codecmodules"
7033 else
7034 def_xvid='#undef CONFIG_XVID4'
7035 nocodecmodules="xvid $nocodecmodules"
7037 echores "$_xvid"
7039 echocheck "x264"
7040 if test "$_x264" = auto ; then
7041 cat > $TMPC << EOF
7042 #include <inttypes.h>
7043 #include <x264.h>
7044 #if X264_BUILD < 98
7045 #error We do not support old versions of x264. Get the latest from git.
7046 #endif
7047 int main(void) { x264_encoder_open((void*)0); return 0; }
7049 _x264=no
7050 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7051 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7052 done
7055 if test "$_x264" = yes ; then
7056 def_x264='#define CONFIG_X264 1'
7057 codecmodules="x264 $codecmodules"
7058 else
7059 def_x264='#undef CONFIG_X264'
7060 nocodecmodules="x264 $nocodecmodules"
7062 echores "$_x264"
7064 echocheck "libnut"
7065 if test "$_libnut" = auto ; then
7066 cat > $TMPC << EOF
7067 #include <libnut.h>
7068 nut_context_tt * nut;
7069 int main(void) { (void)nut_error(0); return 0; }
7071 _libnut=no
7072 cc_check -lnut && _libnut=yes
7075 if test "$_libnut" = yes ; then
7076 def_libnut='#define CONFIG_LIBNUT 1'
7077 extra_ldflags="$extra_ldflags -lnut"
7078 else
7079 def_libnut='#undef CONFIG_LIBNUT'
7081 echores "$_libnut"
7083 # These VO checks must be done after libavcodec/libswscale one
7084 echocheck "/dev/mga_vid"
7085 if test "$_mga" = auto ; then
7086 _mga=no
7087 test -c /dev/mga_vid && _mga=yes
7089 if test "$_mga" = yes ; then
7090 def_mga='#define CONFIG_MGA 1'
7091 vomodules="mga $vomodules"
7092 else
7093 def_mga='#undef CONFIG_MGA'
7094 novomodules="mga $novomodules"
7096 echores "$_mga"
7099 echocheck "xmga"
7100 if test "$_xmga" = auto ; then
7101 _xmga=no
7102 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7104 if test "$_xmga" = yes ; then
7105 def_xmga='#define CONFIG_XMGA 1'
7106 vomodules="xmga $vomodules"
7107 else
7108 def_xmga='#undef CONFIG_XMGA'
7109 novomodules="xmga $novomodules"
7111 echores "$_xmga"
7113 echocheck "zr"
7114 if test "$_zr" = auto ; then
7115 #36067's seem to identify themselves as 36057PQC's, so the line
7116 #below should work for 36067's and 36057's.
7117 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7118 _zr=yes
7119 else
7120 _zr=no
7123 if test "$_zr" = yes ; then
7124 if test "$_libavcodec_internals" = yes ; then
7125 def_zr='#define CONFIG_ZR 1'
7126 vomodules="zr zr2 $vomodules"
7127 else
7128 res_comment="libavcodec internal headers are required by zr, sorry"
7129 novomodules="zr $novomodules"
7130 def_zr='#undef CONFIG_ZR'
7132 else
7133 def_zr='#undef CONFIG_ZR'
7134 novomodules="zr zr2 $novomodules"
7136 echores "$_zr"
7138 # mencoder requires (optional) those libs: libmp3lame
7139 if test "$_mencoder" != no ; then
7141 echocheck "libmp3lame"
7142 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7143 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7144 if test "$_mp3lame" = auto ; then
7145 _mp3lame=no
7146 cat > $TMPC <<EOF
7147 #include <lame/lame.h>
7148 int main(void) { lame_version_t lv; (void) lame_init();
7149 get_lame_version_numerical(&lv);
7150 return 0; }
7152 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7154 if test "$_mp3lame" = yes ; then
7155 def_mp3lame="#define CONFIG_MP3LAME 1"
7156 _ld_mp3lame=-lmp3lame
7157 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7158 cat > $TMPC << EOF
7159 #include <lame/lame.h>
7160 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7162 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7163 cat > $TMPC << EOF
7164 #include <lame/lame.h>
7165 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7167 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7168 else
7169 def_mp3lame='#undef CONFIG_MP3LAME'
7171 echores "$_mp3lame"
7173 fi # test "$_mencoder" != no
7175 echocheck "mencoder"
7176 if test "$_mencoder" = yes ; then
7177 def_muxers='#define CONFIG_MUXERS 1'
7178 else
7179 def_muxers='#define CONFIG_MUXERS 0'
7181 echores "$_mencoder"
7184 echocheck "UnRAR executable"
7185 if test "$_unrar_exec" = auto ; then
7186 _unrar_exec="yes"
7187 mingw32 && _unrar_exec="no"
7189 if test "$_unrar_exec" = yes ; then
7190 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7191 else
7192 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7194 echores "$_unrar_exec"
7196 echocheck "TV interface"
7197 if test "$_tv" = yes ; then
7198 def_tv='#define CONFIG_TV 1'
7199 inputmodules="tv $inputmodules"
7200 else
7201 noinputmodules="tv $noinputmodules"
7202 def_tv='#undef CONFIG_TV'
7204 echores "$_tv"
7207 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7208 echocheck "*BSD BT848 bt8xx header"
7209 _ioctl_bt848_h=no
7210 for file in "machine/ioctl_bt848.h" \
7211 "dev/bktr/ioctl_bt848.h" \
7212 "dev/video/bktr/ioctl_bt848.h" \
7213 "dev/ic/bt8xx.h" ; do
7214 cat > $TMPC <<EOF
7215 #include <sys/types.h>
7216 #include <sys/ioctl.h>
7217 #include <$file>
7218 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7220 if cc_check ; then
7221 _ioctl_bt848_h=yes
7222 _ioctl_bt848_h_name="$file"
7223 break;
7225 done
7226 if test "$_ioctl_bt848_h" = yes ; then
7227 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7228 res_comment="using $_ioctl_bt848_h_name"
7229 else
7230 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7232 echores "$_ioctl_bt848_h"
7234 echocheck "*BSD ioctl_meteor.h"
7235 _ioctl_meteor_h=no
7236 for file in "machine/ioctl_meteor.h" \
7237 "dev/bktr/ioctl_meteor.h" \
7238 "dev/video/bktr/ioctl_meteor.h" ; do
7239 cat > $TMPC <<EOF
7240 #include <sys/types.h>
7241 #include <$file>
7242 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7244 if cc_check ; then
7245 _ioctl_meteor_h=yes
7246 _ioctl_meteor_h_name="$file"
7247 break;
7249 done
7250 if test "$_ioctl_meteor_h" = yes ; then
7251 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7252 res_comment="using $_ioctl_meteor_h_name"
7253 else
7254 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7256 echores "$_ioctl_meteor_h"
7258 echocheck "*BSD BrookTree 848 TV interface"
7259 if test "$_tv_bsdbt848" = auto ; then
7260 _tv_bsdbt848=no
7261 if test "$_tv" = yes ; then
7262 cat > $TMPC <<EOF
7263 #include <sys/types.h>
7264 $def_ioctl_meteor_h_name
7265 $def_ioctl_bt848_h_name
7266 #ifdef IOCTL_METEOR_H_NAME
7267 #include IOCTL_METEOR_H_NAME
7268 #endif
7269 #ifdef IOCTL_BT848_H_NAME
7270 #include IOCTL_BT848_H_NAME
7271 #endif
7272 int main(void) {
7273 ioctl(0, METEORSINPUT, 0);
7274 ioctl(0, TVTUNER_GETFREQ, 0);
7275 return 0;
7278 cc_check && _tv_bsdbt848=yes
7281 if test "$_tv_bsdbt848" = yes ; then
7282 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7283 inputmodules="tv-bsdbt848 $inputmodules"
7284 else
7285 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7286 noinputmodules="tv-bsdbt848 $noinputmodules"
7288 echores "$_tv_bsdbt848"
7289 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7292 echocheck "DirectShow TV interface"
7293 if test "$_tv_dshow" = auto ; then
7294 _tv_dshow=no
7295 if test "$_tv" = yes && win32 ; then
7296 cat > $TMPC <<EOF
7297 #include <ole2.h>
7298 int main(void) {
7299 void* p;
7300 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7301 return 0;
7304 cc_check -lole32 -luuid && _tv_dshow=yes
7307 if test "$_tv_dshow" = yes ; then
7308 inputmodules="tv-dshow $inputmodules"
7309 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7310 extra_ldflags="$extra_ldflags -lole32 -luuid"
7311 else
7312 noinputmodules="tv-dshow $noinputmodules"
7313 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7315 echores "$_tv_dshow"
7318 echocheck "Video 4 Linux TV interface"
7319 if test "$_tv_v4l1" = auto ; then
7320 _tv_v4l1=no
7321 if test "$_tv" = yes && linux ; then
7322 header_check linux/videodev.h && _tv_v4l1=yes
7325 if test "$_tv_v4l1" = yes ; then
7326 _audio_input=yes
7327 _tv_v4l=yes
7328 def_tv_v4l='#define CONFIG_TV_V4L 1'
7329 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7330 inputmodules="tv-v4l $inputmodules"
7331 else
7332 noinputmodules="tv-v4l1 $noinputmodules"
7333 def_tv_v4l='#undef CONFIG_TV_V4L'
7335 echores "$_tv_v4l1"
7338 echocheck "Video 4 Linux 2 TV interface"
7339 if test "$_tv_v4l2" = auto ; then
7340 _tv_v4l2=no
7341 if test "$_tv" = yes && linux ; then
7342 header_check linux/videodev2.h && _tv_v4l2=yes
7345 if test "$_tv_v4l2" = yes ; then
7346 _audio_input=yes
7347 _tv_v4l=yes
7348 def_tv_v4l='#define CONFIG_TV_V4L 1'
7349 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7350 inputmodules="tv-v4l2 $inputmodules"
7351 else
7352 noinputmodules="tv-v4l2 $noinputmodules"
7353 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7355 echores "$_tv_v4l2"
7358 echocheck "Radio interface"
7359 if test "$_radio" = yes ; then
7360 def_radio='#define CONFIG_RADIO 1'
7361 inputmodules="radio $inputmodules"
7362 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7363 _radio_capture=no
7365 if test "$_radio_capture" = yes ; then
7366 _audio_input=yes
7367 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7368 else
7369 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7371 else
7372 noinputmodules="radio $noinputmodules"
7373 def_radio='#undef CONFIG_RADIO'
7374 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7375 _radio_capture=no
7377 echores "$_radio"
7378 echocheck "Capture for Radio interface"
7379 echores "$_radio_capture"
7381 echocheck "Video 4 Linux 2 Radio interface"
7382 if test "$_radio_v4l2" = auto ; then
7383 _radio_v4l2=no
7384 if test "$_radio" = yes && linux ; then
7385 header_check linux/videodev2.h && _radio_v4l2=yes
7388 if test "$_radio_v4l2" = yes ; then
7389 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7390 else
7391 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7393 echores "$_radio_v4l2"
7395 echocheck "Video 4 Linux Radio interface"
7396 if test "$_radio_v4l" = auto ; then
7397 _radio_v4l=no
7398 if test "$_radio" = yes && linux ; then
7399 header_check linux/videodev.h && _radio_v4l=yes
7402 if test "$_radio_v4l" = yes ; then
7403 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7404 else
7405 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7407 echores "$_radio_v4l"
7409 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7410 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7411 echocheck "*BSD BrookTree 848 Radio interface"
7412 _radio_bsdbt848=no
7413 cat > $TMPC <<EOF
7414 #include <sys/types.h>
7415 $def_ioctl_bt848_h_name
7416 #ifdef IOCTL_BT848_H_NAME
7417 #include IOCTL_BT848_H_NAME
7418 #endif
7419 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7421 cc_check && _radio_bsdbt848=yes
7422 echores "$_radio_bsdbt848"
7423 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7425 if test "$_radio_bsdbt848" = yes ; then
7426 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7427 else
7428 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7431 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7432 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7433 die "Radio driver requires BSD BT848, V4L or V4L2!"
7436 echocheck "Video 4 Linux 2 MPEG PVR interface"
7437 if test "$_pvr" = auto ; then
7438 _pvr=no
7439 if test "$_tv_v4l2" = yes && linux ; then
7440 cat > $TMPC <<EOF
7441 #include <linux/videodev2.h>
7442 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7444 cc_check && _pvr=yes
7447 if test "$_pvr" = yes ; then
7448 def_pvr='#define CONFIG_PVR 1'
7449 inputmodules="pvr $inputmodules"
7450 else
7451 noinputmodules="pvr $noinputmodules"
7452 def_pvr='#undef CONFIG_PVR'
7454 echores "$_pvr"
7457 echocheck "ftp"
7458 if ! beos && test "$_ftp" = yes ; then
7459 def_ftp='#define CONFIG_FTP 1'
7460 inputmodules="ftp $inputmodules"
7461 else
7462 noinputmodules="ftp $noinputmodules"
7463 def_ftp='#undef CONFIG_FTP'
7465 echores "$_ftp"
7467 echocheck "vstream client"
7468 if test "$_vstream" = auto ; then
7469 _vstream=no
7470 cat > $TMPC <<EOF
7471 #include <vstream-client.h>
7472 void vstream_error(const char *format, ... ) {}
7473 int main(void) { vstream_start(); return 0; }
7475 cc_check -lvstream-client && _vstream=yes
7477 if test "$_vstream" = yes ; then
7478 def_vstream='#define CONFIG_VSTREAM 1'
7479 inputmodules="vstream $inputmodules"
7480 extra_ldflags="$extra_ldflags -lvstream-client"
7481 else
7482 noinputmodules="vstream $noinputmodules"
7483 def_vstream='#undef CONFIG_VSTREAM'
7485 echores "$_vstream"
7488 echocheck "OSD menu"
7489 if test "$_menu" = yes ; then
7490 def_menu='#define CONFIG_MENU 1'
7491 test $_dvbin = "yes" && _menu_dvbin=yes
7492 else
7493 def_menu='#undef CONFIG_MENU'
7494 _menu_dvbin=no
7496 echores "$_menu"
7499 echocheck "Subtitles sorting"
7500 if test "$_sortsub" = yes ; then
7501 def_sortsub='#define CONFIG_SORTSUB 1'
7502 else
7503 def_sortsub='#undef CONFIG_SORTSUB'
7505 echores "$_sortsub"
7508 echocheck "XMMS inputplugin support"
7509 if test "$_xmms" = yes ; then
7510 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7511 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7512 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7513 else
7514 _xmmsplugindir=/usr/lib/xmms/Input
7515 _xmmslibdir=/usr/lib
7518 def_xmms='#define CONFIG_XMMS 1'
7519 if darwin ; then
7520 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7521 else
7522 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7524 else
7525 def_xmms='#undef CONFIG_XMMS'
7527 echores "$_xmms"
7529 if test "$_charset" != "noconv" ; then
7530 def_charset="#define MSG_CHARSET \"$_charset\""
7531 else
7532 def_charset="#undef MSG_CHARSET"
7533 _charset="UTF-8"
7536 #############################################################################
7538 echocheck "automatic gdb attach"
7539 if test "$_crash_debug" = yes ; then
7540 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7541 else
7542 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7543 _crash_debug=no
7545 echores "$_crash_debug"
7547 echocheck "compiler support for noexecstack"
7548 if cflag_check -Wl,-z,noexecstack ; then
7549 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7550 echores "yes"
7551 else
7552 echores "no"
7555 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7556 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7557 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7558 echores "yes"
7559 else
7560 echores "no"
7564 # Dynamic linking flags
7565 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7566 _ld_dl_dynamic=''
7567 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7568 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7569 _ld_dl_dynamic='-rdynamic'
7572 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7573 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7574 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7576 def_debug='#undef MP_DEBUG'
7577 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7580 echocheck "joystick"
7581 def_joystick='#undef CONFIG_JOYSTICK'
7582 if test "$_joystick" = yes ; then
7583 if linux ; then
7584 # TODO add some check
7585 def_joystick='#define CONFIG_JOYSTICK 1'
7586 else
7587 _joystick="no"
7588 res_comment="unsupported under $system_name"
7591 echores "$_joystick"
7593 echocheck "lirc"
7594 if test "$_lirc" = auto ; then
7595 _lirc=no
7596 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7598 if test "$_lirc" = yes ; then
7599 def_lirc='#define CONFIG_LIRC 1'
7600 libs_mplayer="$libs_mplayer -llirc_client"
7601 else
7602 def_lirc='#undef CONFIG_LIRC'
7604 echores "$_lirc"
7606 echocheck "lircc"
7607 if test "$_lircc" = auto ; then
7608 _lircc=no
7609 header_check lirc/lircc.h -llircc && _lircc=yes
7611 if test "$_lircc" = yes ; then
7612 def_lircc='#define CONFIG_LIRCC 1'
7613 libs_mplayer="$libs_mplayer -llircc"
7614 else
7615 def_lircc='#undef CONFIG_LIRCC'
7617 echores "$_lircc"
7619 if arm; then
7620 # Detect maemo development platform libraries availability (http://www.maemo.org),
7621 # they are used when run on Nokia 770|8x0
7622 echocheck "maemo (Nokia 770|8x0)"
7623 if test "$_maemo" = auto ; then
7624 _maemo=no
7625 cat > $TMPC << EOF
7626 #include <libosso.h>
7627 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7629 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7631 if test "$_maemo" = yes ; then
7632 def_maemo='#define CONFIG_MAEMO 1'
7633 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7634 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7635 else
7636 def_maemo='#undef CONFIG_MAEMO'
7638 echores "$_maemo"
7641 #############################################################################
7643 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7644 # the OMF format needs to come after the 'extern symbol prefix' check, which
7645 # uses nm.
7646 if os2 ; then
7647 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7650 # linker paths should be the same for mencoder and mplayer
7651 _ld_tmp=""
7652 for I in $libs_mplayer ; do
7653 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7654 if test -z "$_tmp" ; then
7655 extra_ldflags="$extra_ldflags $I"
7656 else
7657 _ld_tmp="$_ld_tmp $I"
7659 done
7660 libs_mplayer=$_ld_tmp
7663 #############################################################################
7664 # 64 bit file offsets?
7665 if test "$_largefiles" = yes || freebsd ; then
7666 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7667 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7668 # dvdread support requires this (for off64_t)
7669 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7673 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7675 # This must be the last test to be performed. Any other tests following it
7676 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7677 # against libdvdread (to permit MPlayer to use its own copy of the library).
7678 # So any compilation using the flags added here but not linking against
7679 # libdvdread can fail.
7680 echocheck "DVD support (libdvdnav)"
7681 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7682 _dvdnav=no
7684 dvdnav_internal=no
7685 if test "$_dvdnav" = auto ; then
7686 if test "$_dvdread_internal" = yes ; then
7687 _dvdnav=yes
7688 dvdnav_internal=yes
7689 res_comment="internal"
7690 else
7691 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7694 if test "$_dvdnav" = auto ; then
7695 cat > $TMPC <<EOF
7696 #include <inttypes.h>
7697 #include <dvdnav/dvdnav.h>
7698 int main(void) { dvdnav_t *dvd=0; return 0; }
7700 _dvdnav=no
7701 _dvdnavdir=$($_dvdnavconfig --cflags)
7702 _dvdnavlibs=$($_dvdnavconfig --libs)
7703 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7705 if test "$_dvdnav" = yes ; then
7706 _largefiles=yes
7707 def_dvdnav='#define CONFIG_DVDNAV 1'
7708 if test "$dvdnav_internal" = yes ; then
7709 cflags_libdvdnav="-Ilibdvdnav"
7710 inputmodules="dvdnav(internal) $inputmodules"
7711 else
7712 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7713 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7714 inputmodules="dvdnav $inputmodules"
7716 else
7717 def_dvdnav='#undef CONFIG_DVDNAV'
7718 noinputmodules="dvdnav $noinputmodules"
7720 echores "$_dvdnav"
7722 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7723 # Read dvdnav comment above.
7725 mak_enable () {
7726 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7727 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7728 nprefix=$3;
7729 for part in $list; do
7730 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7731 echo "${nprefix}_$part = yes"
7733 done
7736 #############################################################################
7737 echo "Creating config.mak"
7738 cat > config.mak << EOF
7739 # -------- Generated by configure -----------
7741 # Ensure that locale settings do not interfere with shell commands.
7742 export LC_ALL = C
7744 CONFIGURATION = $configuration
7746 CHARSET = $_charset
7747 DOC_LANGS = $language_doc
7748 DOC_LANG_ALL = $doc_lang_all
7749 MAN_LANGS = $language_man
7750 MAN_LANG_ALL = $man_lang_all
7751 MSG_LANGS = $language_msg
7752 MSG_LANG_ALL = $msg_lang_all
7754 prefix = \$(DESTDIR)$_prefix
7755 BINDIR = \$(DESTDIR)$_bindir
7756 DATADIR = \$(DESTDIR)$_datadir
7757 LIBDIR = \$(DESTDIR)$_libdir
7758 MANDIR = \$(DESTDIR)$_mandir
7759 CONFDIR = \$(DESTDIR)$_confdir
7760 LOCALEDIR = \$(DESTDIR)$_localedir
7762 AR = $_ar
7763 AS = $_cc
7764 CC = $_cc
7765 CXX = $_cc
7766 HOST_CC = $_host_cc
7767 INSTALL = $_install
7768 INSTALLSTRIP = $_install_strip
7769 WINDRES = $_windres
7771 CFLAGS = $CFLAGS $extra_cflags
7772 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7773 DEPFLAGS = $DEPFLAGS
7775 CFLAGS_DHAHELPER = $cflags_dhahelper
7776 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7777 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7778 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7779 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7780 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7781 CFLAGS_STACKREALIGN = $cflags_stackrealign
7782 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7783 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7785 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7786 EXTRALIBS_MPLAYER = $libs_mplayer
7787 EXTRALIBS_MENCODER = $libs_mencoder
7789 GETCH = $_getch
7790 TIMER = $_timer
7792 EXESUF = $_exesuf
7793 EXESUFS_ALL = .exe
7795 ARCH = $arch
7796 $(mak_enable "$arch_all" "$arch" ARCH)
7797 $(mak_enable "$subarch_all" "$subarch" ARCH)
7798 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7800 MENCODER = $_mencoder
7801 MPLAYER = $_mplayer
7803 NEED_GETTIMEOFDAY = $_need_gettimeofday
7804 NEED_GLOB = $_need_glob
7805 NEED_MMAP = $_need_mmap
7806 NEED_SETENV = $_need_setenv
7807 NEED_SHMEM = $_need_shmem
7808 NEED_STRSEP = $_need_strsep
7809 NEED_SWAB = $_need_swab
7810 NEED_VSSCANF = $_need_vsscanf
7812 # features
7813 3DFX = $_3dfx
7814 AA = $_aa
7815 ALSA1X = $_alsa1x
7816 ALSA9 = $_alsa9
7817 ALSA5 = $_alsa5
7818 APPLE_IR = $_apple_ir
7819 APPLE_REMOTE = $_apple_remote
7820 ARTS = $_arts
7821 AUDIO_INPUT = $_audio_input
7822 BITMAP_FONT = $_bitmap_font
7823 BL = $_bl
7824 CACA = $_caca
7825 CDDA = $_cdda
7826 CDDB = $_cddb
7827 COREAUDIO = $_coreaudio
7828 COREVIDEO = $_corevideo
7829 DART = $_dart
7830 DFBMGA = $_dfbmga
7831 DGA = $_dga
7832 DIRECT3D = $_direct3d
7833 DIRECTFB = $_directfb
7834 DIRECTX = $_directx
7835 DVBIN = $_dvbin
7836 DVDNAV = $_dvdnav
7837 DVDNAV_INTERNAL = $dvdnav_internal
7838 DVDREAD = $_dvdread
7839 DVDREAD_INTERNAL = $_dvdread_internal
7840 DXR2 = $_dxr2
7841 DXR3 = $_dxr3
7842 ESD = $_esd
7843 FAAC=$_faac
7844 FAAD = $_faad
7845 FAAD_INTERNAL = $_faad_internal
7846 FASTMEMCPY = $_fastmemcpy
7847 FBDEV = $_fbdev
7848 FREETYPE = $_freetype
7849 FTP = $_ftp
7850 GIF = $_gif
7851 GGI = $_ggi
7852 GL = $_gl
7853 GL_WIN32 = $_gl_win32
7854 GL_X11 = $_gl_x11
7855 GL_SDL = $_gl_sdl
7856 MATRIXVIEW = $matrixview
7857 HAVE_POSIX_SELECT = $_posix_select
7858 HAVE_SYS_MMAN_H = $_mman
7859 IVTV = $_ivtv
7860 JACK = $_jack
7861 JOYSTICK = $_joystick
7862 JPEG = $_jpeg
7863 KAI = $_kai
7864 KVA = $_kva
7865 LADSPA = $_ladspa
7866 LIBA52 = $_liba52
7867 LIBASS = $_ass
7868 LIBBLURAY = $_bluray
7869 LIBBS2B = $_libbs2b
7870 LIBDCA = $_libdca
7871 LIBDV = $_libdv
7872 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7873 LIBLZO = $_liblzo
7874 LIBMAD = $_mad
7875 LIBMENU = $_menu
7876 LIBMENU_DVBIN = $_menu_dvbin
7877 LIBMPEG2 = $_libmpeg2
7878 LIBNEMESI = $_nemesi
7879 LIBNUT = $_libnut
7880 LIBSMBCLIENT = $_smb
7881 LIBTHEORA = $_theora
7882 LIRC = $_lirc
7883 LIVE555 = $_live
7884 MACOSX_FINDER = $_macosx_finder
7885 MD5SUM = $_md5sum
7886 MGA = $_mga
7887 MNG = $_mng
7888 MP3LAME = $_mp3lame
7889 MP3LIB = $_mp3lib
7890 MPG123 = $_mpg123
7891 MUSEPACK = $_musepack
7892 NAS = $_nas
7893 NATIVE_RTSP = $_native_rtsp
7894 NETWORKING = $networking
7895 OPENAL = $_openal
7896 OSS = $_ossaudio
7897 PE_EXECUTABLE = $_pe_executable
7898 PNG = $_png
7899 PNM = $_pnm
7900 PRIORITY = $_priority
7901 PULSE = $_pulse
7902 PVR = $_pvr
7903 QTX_CODECS = $_qtx
7904 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7905 QTX_EMULATION = $_qtx_emulation
7906 QUARTZ = $_quartz
7907 RADIO=$_radio
7908 RADIO_CAPTURE=$_radio_capture
7909 REAL_CODECS = $_real
7910 S3FB = $_s3fb
7911 SDL = $_sdl
7912 SPEEX = $_speex
7913 STREAM_CACHE = $_stream_cache
7914 SGIAUDIO = $_sgiaudio
7915 SUNAUDIO = $_sunaudio
7916 SVGA = $_svga
7917 TDFXFB = $_tdfxfb
7918 TDFXVID = $_tdfxvid
7919 TGA = $_tga
7920 TOOLAME=$_toolame
7921 TREMOR_INTERNAL = $_tremor_internal
7922 TV = $_tv
7923 TV_BSDBT848 = $_tv_bsdbt848
7924 TV_DSHOW = $_tv_dshow
7925 TV_V4L = $_tv_v4l
7926 TV_V4L1 = $_tv_v4l1
7927 TV_V4L2 = $_tv_v4l2
7928 TWOLAME=$_twolame
7929 UNRAR_EXEC = $_unrar_exec
7930 V4L2 = $_v4l2
7931 VCD = $_vcd
7932 VDPAU = $_vdpau
7933 VESA = $_vesa
7934 VIDIX = $_vidix
7935 VIDIX_PCIDB = $_vidix_pcidb_val
7936 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7937 VIDIX_IVTV=$_vidix_drv_ivtv
7938 VIDIX_MACH64=$_vidix_drv_mach64
7939 VIDIX_MGA=$_vidix_drv_mga
7940 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7941 VIDIX_NVIDIA=$_vidix_drv_nvidia
7942 VIDIX_PM2=$_vidix_drv_pm2
7943 VIDIX_PM3=$_vidix_drv_pm3
7944 VIDIX_RADEON=$_vidix_drv_radeon
7945 VIDIX_RAGE128=$_vidix_drv_rage128
7946 VIDIX_S3=$_vidix_drv_s3
7947 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7948 VIDIX_SIS=$_vidix_drv_sis
7949 VIDIX_UNICHROME=$_vidix_drv_unichrome
7950 VORBIS = $_vorbis
7951 VSTREAM = $_vstream
7952 WII = $_wii
7953 WIN32DLL = $_win32dll
7954 WIN32WAVEOUT = $_win32waveout
7955 WIN32_EMULATION = $_win32_emulation
7956 WINVIDIX = $winvidix
7957 X11 = $_x11
7958 X264 = $_x264
7959 XANIM_CODECS = $_xanim
7960 XMGA = $_xmga
7961 XMMS_PLUGINS = $_xmms
7962 XV = $_xv
7963 XVID4 = $_xvid
7964 XVIDIX = $xvidix
7965 XVMC = $_xvmc
7966 XVR100 = $_xvr100
7967 YUV4MPEG = $_yuv4mpeg
7968 ZR = $_zr
7970 # FFmpeg
7971 LIBAVUTIL = $_libavutil
7972 LIBAVCODEC = $_libavcodec
7973 LIBAVFORMAT = $_libavformat
7974 LIBPOSTPROC = $_libpostproc
7975 LIBSWSCALE = $_libswscale
7976 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7977 LIBSWSCALE_INTERNALS = $_libswscale_internals
7978 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7980 RANLIB = $_ranlib
7981 YASM = $_yasm
7982 YASMFLAGS = $YASMFLAGS
7984 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7985 CONFIG_AANDCT = yes
7986 CONFIG_FFT = yes
7987 CONFIG_GOLOMB = yes
7988 CONFIG_H264DSP = yes
7989 CONFIG_LPC = yes
7990 CONFIG_MDCT = yes
7991 CONFIG_RDFT = yes
7993 CONFIG_BZLIB = $bzlib
7994 CONFIG_ENCODERS = yes
7995 CONFIG_GPL = yes
7996 CONFIG_MLIB = $_mlib
7997 CONFIG_MUXERS = $_mencoder
7998 CONFIG_VDPAU = $_vdpau
7999 CONFIG_XVMC = $_xvmc
8000 CONFIG_ZLIB = $_zlib
8002 HAVE_PTHREADS = $_pthreads
8003 HAVE_SHM = $_shm
8004 HAVE_W32THREADS = $_w32threads
8005 HAVE_YASM = $have_yasm
8009 #############################################################################
8011 ff_config_enable () {
8012 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8013 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8014 _nprefix=$3;
8015 test -z "$_nprefix" && _nprefix='CONFIG'
8016 for part in $list; do
8017 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8018 echo "#define ${_nprefix}_$part 1"
8019 else
8020 echo "#define ${_nprefix}_$part 0"
8022 done
8025 echo "Creating config.h"
8026 cat > $TMPH << EOF
8027 /*----------------------------------------------------------------------------
8028 ** This file has been automatically generated by configure any changes in it
8029 ** will be lost when you run configure again.
8030 ** Instead of modifying definitions here, use the --enable/--disable options
8031 ** of the configure script! See ./configure --help for details.
8032 *---------------------------------------------------------------------------*/
8034 #ifndef MPLAYER_CONFIG_H
8035 #define MPLAYER_CONFIG_H
8037 /* Undefine this if you do not want to select mono audio (left or right)
8038 with a stereo MPEG layer 2/3 audio stream. The command line option
8039 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8040 right-only), with 0 being the default.
8042 #define CONFIG_FAKE_MONO 1
8044 /* set up audio OUTBURST. Do not change this! */
8045 #define OUTBURST 512
8047 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8048 #undef FAST_OSD
8049 #undef FAST_OSD_TABLE
8051 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8052 #define MPEG12_POSTPROC 1
8053 #define ATTRIBUTE_ALIGNED_MAX 16
8057 #define CONFIGURATION "$configuration"
8059 #define MPLAYER_DATADIR "$_datadir"
8060 #define MPLAYER_CONFDIR "$_confdir"
8061 #define MPLAYER_LIBDIR "$_libdir"
8062 #define MPLAYER_LOCALEDIR "$_localedir"
8064 $def_translation
8066 /* definitions needed by included libraries */
8067 #define HAVE_INTTYPES_H 1
8068 /* libmpeg2 + FFmpeg */
8069 $def_fast_inttypes
8070 /* libdvdcss */
8071 #define HAVE_ERRNO_H 1
8072 /* libdvdcss + libdvdread */
8073 #define HAVE_LIMITS_H 1
8074 /* libdvdcss + libfaad2 */
8075 #define HAVE_UNISTD_H 1
8076 /* libfaad2 + libdvdread */
8077 #define STDC_HEADERS 1
8078 #define HAVE_MEMCPY 1
8079 /* libfaad2 */
8080 #define HAVE_STRING_H 1
8081 #define HAVE_STRINGS_H 1
8082 #define HAVE_SYS_STAT_H 1
8083 #define HAVE_SYS_TYPES_H 1
8084 /* libdvdnav */
8085 #define READ_CACHE_TRACE 0
8086 /* libdvdread */
8087 #define HAVE_DLFCN_H 1
8088 $def_dvdcss
8091 /* system headers */
8092 $def_alloca_h
8093 $def_alsa_asoundlib_h
8094 $def_altivec_h
8095 $def_malloc_h
8096 $def_mman_h
8097 $def_mman_has_map_failed
8098 $def_soundcard_h
8099 $def_sys_asoundlib_h
8100 $def_sys_soundcard_h
8101 $def_sys_sysinfo_h
8102 $def_termios_h
8103 $def_termios_sys_h
8104 $def_winsock2_h
8107 /* system functions */
8108 $def_gethostbyname2
8109 $def_gettimeofday
8110 $def_glob
8111 $def_langinfo
8112 $def_lrintf
8113 $def_map_memalign
8114 $def_memalign
8115 $def_nanosleep
8116 $def_posix_select
8117 $def_select
8118 $def_setenv
8119 $def_setmode
8120 $def_shm
8121 $def_strsep
8122 $def_swab
8123 $def_sysi86
8124 $def_sysi86_iv
8125 $def_termcap
8126 $def_termios
8127 $def_vsscanf
8130 /* system-specific features */
8131 $def_asmalign_pot
8132 $def_builtin_expect
8133 $def_dl
8134 $def_dos_paths
8135 $def_extern_asm
8136 $def_extern_prefix
8137 $def_iconv
8138 $def_kstat
8139 $def_macosx_bundle
8140 $def_macosx_finder
8141 $def_maemo
8142 $def_named_asm_args
8143 $def_priority
8144 $def_quicktime
8145 $def_restrict_keyword
8146 $def_rtc
8147 $def_unrar_exec
8150 /* configurable options */
8151 $def_charset
8152 $def_crash_debug
8153 $def_debug
8154 $def_dynamic_plugins
8155 $def_fastmemcpy
8156 $def_menu
8157 $def_runtime_cpudetection
8158 $def_sighandler
8159 $def_sortsub
8160 $def_stream_cache
8161 $def_pthread_cache
8164 /* CPU stuff */
8165 #define __CPU__ $iproc
8166 $def_ebx_available
8167 $def_words_endian
8168 $def_bigendian
8169 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8170 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8171 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8174 /* Blu-ray/DVD/VCD/CD */
8175 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8176 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8177 $def_bluray
8178 $def_bsdi_dvd
8179 $def_cddb
8180 $def_cdio
8181 $def_cdparanoia
8182 $def_cdrom
8183 $def_dvd
8184 $def_dvd_bsd
8185 $def_dvd_darwin
8186 $def_dvd_linux
8187 $def_dvd_openbsd
8188 $def_dvdio
8189 $def_dvdnav
8190 $def_dvdread
8191 $def_hpux_scsi_h
8192 $def_libcdio
8193 $def_sol_scsi_h
8194 $def_vcd
8197 /* codec libraries */
8198 $def_faac
8199 $def_faad
8200 $def_faad_internal
8201 $def_liba52
8202 $def_libdca
8203 $def_libdv
8204 $def_liblzo
8205 $def_libmpeg2
8206 $def_mad
8207 $def_mp3lame
8208 $def_mp3lame_preset
8209 $def_mp3lame_preset_medium
8210 $def_mp3lib
8211 $def_mpg123
8212 $def_musepack
8213 $def_speex
8214 $def_theora
8215 $def_toolame
8216 $def_tremor
8217 $def_twolame
8218 $def_vorbis
8219 $def_x264
8220 $def_xvid
8221 $def_zlib
8223 $def_libnut
8226 /* binary codecs */
8227 $def_qtx
8228 $def_qtx_win32
8229 $def_real
8230 $def_win32_loader
8231 $def_win32dll
8232 $def_xanim
8233 $def_xmms
8234 #define BINARY_CODECS_PATH "$_codecsdir"
8235 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8238 /* Audio output drivers */
8239 $def_alsa
8240 $def_alsa1x
8241 $def_alsa5
8242 $def_alsa9
8243 $def_arts
8244 $def_coreaudio
8245 $def_dart
8246 $def_esd
8247 $def_esd_latency
8248 $def_jack
8249 $def_kai
8250 $def_nas
8251 $def_openal
8252 $def_openal_h
8253 $def_ossaudio
8254 $def_ossaudio_devdsp
8255 $def_ossaudio_devmixer
8256 $def_pulse
8257 $def_sgiaudio
8258 $def_sunaudio
8259 $def_win32waveout
8261 $def_ladspa
8262 $def_libbs2b
8265 /* input */
8266 $def_apple_ir
8267 $def_apple_remote
8268 $def_ioctl_bt848_h_name
8269 $def_ioctl_meteor_h_name
8270 $def_joystick
8271 $def_lirc
8272 $def_lircc
8273 $def_pvr
8274 $def_radio
8275 $def_radio_bsdbt848
8276 $def_radio_capture
8277 $def_radio_v4l
8278 $def_radio_v4l2
8279 $def_tv
8280 $def_tv_bsdbt848
8281 $def_tv_dshow
8282 $def_tv_v4l
8283 $def_tv_v4l1
8284 $def_tv_v4l2
8287 /* font stuff */
8288 $def_ass
8289 $def_bitmap_font
8290 $def_enca
8291 $def_fontconfig
8292 $def_freetype
8293 $def_fribidi
8296 /* networking */
8297 $def_closesocket
8298 $def_ftp
8299 $def_inet6
8300 $def_inet_aton
8301 $def_inet_pton
8302 $def_live
8303 $def_nemesi
8304 $def_networking
8305 $def_smb
8306 $def_socklen_t
8307 $def_vstream
8310 /* libvo options */
8311 $def_3dfx
8312 $def_aa
8313 $def_bl
8314 $def_caca
8315 $def_corevideo
8316 $def_dfbmga
8317 $def_dga
8318 $def_dga1
8319 $def_dga2
8320 $def_direct3d
8321 $def_directfb
8322 $def_directfb_version
8323 $def_directx
8324 $def_dvb
8325 $def_dvbin
8326 $def_dxr2
8327 $def_dxr3
8328 $def_fbdev
8329 $def_ggi
8330 $def_ggiwmh
8331 $def_gif
8332 $def_gif_4
8333 $def_gif_tvt_hack
8334 $def_gl
8335 $def_gl_win32
8336 $def_gl_x11
8337 $def_gl_sdl
8338 $def_matrixview
8339 $def_ivtv
8340 $def_jpeg
8341 $def_kva
8342 $def_md5sum
8343 $def_mga
8344 $def_mng
8345 $def_png
8346 $def_pnm
8347 $def_quartz
8348 $def_s3fb
8349 $def_sdl
8350 $def_sdl_sdl_h
8351 $def_svga
8352 $def_tdfxfb
8353 $def_tdfxvid
8354 $def_tga
8355 $def_v4l2
8356 $def_vdpau
8357 $def_vesa
8358 $def_vidix
8359 $def_vidix_drv_cyberblade
8360 $def_vidix_drv_ivtv
8361 $def_vidix_drv_mach64
8362 $def_vidix_drv_mga
8363 $def_vidix_drv_mga_crtc2
8364 $def_vidix_drv_nvidia
8365 $def_vidix_drv_pm3
8366 $def_vidix_drv_radeon
8367 $def_vidix_drv_rage128
8368 $def_vidix_drv_s3
8369 $def_vidix_drv_sh_veu
8370 $def_vidix_drv_sis
8371 $def_vidix_drv_unichrome
8372 $def_vidix_pfx
8373 $def_vm
8374 $def_wii
8375 $def_x11
8376 $def_xdpms
8377 $def_xf86keysym
8378 $def_xinerama
8379 $def_xmga
8380 $def_xss
8381 $def_xv
8382 $def_xvmc
8383 $def_xvr100
8384 $def_yuv4mpeg
8385 $def_zr
8388 /* FFmpeg */
8389 $def_libavcodec
8390 $def_libavformat
8391 $def_libavutil
8392 $def_libpostproc
8393 $def_libswscale
8394 $def_libavcodec_internals
8395 $def_libswscale_internals
8397 #define CONFIG_DECODERS 1
8398 #define CONFIG_ENCODERS 1
8399 #define CONFIG_DEMUXERS 1
8400 $def_muxers
8402 $def_arpa_inet_h
8403 $def_bswap
8404 $def_bzlib
8405 $def_dcbzl
8406 $def_exp2
8407 $def_exp2f
8408 $def_fast_64bit
8409 $def_fast_unaligned
8410 $def_llrint
8411 $def_log2
8412 $def_log2f
8413 $def_lrint
8414 $def_memalign_hack
8415 $def_mlib
8416 $def_mkstemp
8417 $def_posix_memalign
8418 $def_pthreads
8419 $def_round
8420 $def_roundf
8421 $def_ten_operands
8422 $def_threads
8423 $def_truncf
8424 $def_xform_asm
8425 $def_yasm
8427 #define CONFIG_FASTDIV 0
8428 #define CONFIG_FFSERVER 0
8429 #define CONFIG_GPL 1
8430 #define CONFIG_GRAY 0
8431 #define CONFIG_HARDCODED_TABLES 0
8432 #define CONFIG_LIBVORBIS 0
8433 #define CONFIG_POWERPC_PERF 0
8434 #define CONFIG_SMALL 0
8435 #define CONFIG_SWSCALE_ALPHA 1
8437 #define HAVE_ATTRIBUTE_PACKED 1
8438 #define HAVE_GETHRTIME 0
8439 #define HAVE_INLINE_ASM 1
8440 #define HAVE_LDBRX 0
8441 #define HAVE_POLL_H 1
8442 #define HAVE_PPC4XX 0
8443 #define HAVE_VFP_ARGS 1
8444 #define HAVE_VIRTUALALLOC 0
8446 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8447 #define CONFIG_AANDCT 1
8448 #define CONFIG_DCT 1
8449 #define CONFIG_DWT 1
8450 #define CONFIG_FFT 1
8451 #define CONFIG_GOLOMB 1
8452 #define CONFIG_H264DSP 1
8453 #define CONFIG_LPC 1
8454 #define CONFIG_MDCT 1
8455 #define CONFIG_RDFT 1
8457 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8458 #ifndef MP_DEBUG
8459 #define HAVE_EBP_AVAILABLE 1
8460 #else
8461 #define HAVE_EBP_AVAILABLE 0
8462 #endif
8464 #define CONFIG_H263_VAAPI_HWACCEL 0
8465 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8466 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8467 #define CONFIG_H264_VAAPI_HWACCEL 0
8468 #define CONFIG_VC1_VAAPI_HWACCEL 0
8469 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8471 #endif /* MPLAYER_CONFIG_H */
8474 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8475 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8477 #############################################################################
8479 ./version.sh `$_cc -dumpversion`
8481 cat << EOF
8483 Config files successfully generated by ./configure $configuration !
8485 Install prefix: $_prefix
8486 Data directory: $_datadir
8487 Config direct.: $_confdir
8489 Byte order: $_byte_order
8490 Optimizing for: $_optimizing
8492 Languages:
8493 Messages (in addition to English): $language_msg
8494 Manual pages: $language_man
8495 Documentation: $language_doc
8497 Enabled optional drivers:
8498 Input: $inputmodules
8499 Codecs: $codecmodules
8500 Audio output: $aomodules
8501 Video output: $vomodules
8503 Disabled optional drivers:
8504 Input: $noinputmodules
8505 Codecs: $nocodecmodules
8506 Audio output: $noaomodules
8507 Video output: $novomodules
8509 'config.h' and 'config.mak' contain your configuration options.
8510 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8511 compile *** DO NOT REPORT BUGS if you tweak these files ***
8513 'make' will now compile MPlayer and 'make install' will install it.
8514 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8519 if test "$_mtrr" = yes ; then
8520 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8521 echo
8524 if ! x86_32; then
8525 cat <<EOF
8526 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8527 operating system ($system_name). You may encounter a few files that cannot
8528 be played due to missing open source video/audio codec support.
8534 cat <<EOF
8535 Check $TMPLOG if you wonder why an autodetection failed (make sure
8536 development headers/packages are installed).
8538 NOTE: The --enable-* parameters unconditionally force options on, completely
8539 skipping autodetection. This behavior is unlike what you may be used to from
8540 autoconf-based configure scripts that can decide to override you. This greater
8541 level of control comes at a price. You may have to provide the correct compiler
8542 and linker flags yourself.
8543 If you used one of these options (except --enable-menu and similar ones that
8544 turn on internal features) and experience a compilation or linking failure,
8545 make sure you have passed the necessary compiler/linker flags to configure.
8547 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8551 if test "$warn_cflags" = yes; then
8552 cat <<EOF
8554 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8555 but:
8557 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8559 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8560 To do so, execute 'CFLAGS= ./configure <options>'
8565 # Last move:
8566 rm -rf "$mplayer_tmpdir"