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
27 # #include <feature.h>
28 # int main(void) { return 0; }
31 # cc_check && _feature=yes
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
36 # def_feature='#undef CONFIG_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
56 # Store the configure line that was used
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
65 cat "$source" >> "$TMPLOG"
67 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
69 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
77 compile_check
$TMPC $@
81 compile_check
$TMPCPP $@
-lstdc++
86 int main(void) { return 0; }
88 compile_check
$TMPC $@
94 int main(void) { $2; return 0; }
98 compile_check
$TMPC $@
104 int main(void) { return 0; }
107 compile_check
$TMPC $@
112 int main(void) { __asm__ volatile ($1); return 0; }
115 compile_check
$TMPC $@
118 # this is a special check only to be
119 # used for broken headers that do not
120 # include all dependencies
121 header_check_broken
() {
125 int main(void) { return 0; }
129 compile_check
$TMPC $@
134 cat "$TMPS" >> "$TMPLOG"
136 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
138 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
146 "$TMPEXE" >> "$TMPLOG" 2>&1
149 # Display error message, flushes tempfile, exit
154 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
155 echo "Check \"$TMPLOG\" if you do not understand why it failed."
159 # OS test booleans functions
161 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
163 aix
() { issystem
"AIX"; }
164 amigaos
() { issystem
"AmigaOS"; }
165 beos
() { issystem
"BEOS"; }
166 bsdos
() { issystem
"BSD/OS"; }
167 cygwin
() { issystem
"CYGWIN"; }
168 darwin
() { issystem
"Darwin"; }
169 dragonfly
() { issystem
"DragonFly"; }
170 freebsd
() { issystem
"FreeBSD" || issystem
"GNU/kFreeBSD"; }
171 gnu
() { issystem
"GNU"; }
172 hpux
() { issystem
"HP-UX"; }
173 irix
() { issystem
"IRIX"; }
174 linux
() { issystem
"Linux"; }
175 mingw32
() { issystem
"MINGW32"; }
176 morphos
() { issystem
"MorphOS"; }
177 netbsd
() { issystem
"NetBSD"; }
178 openbsd
() { issystem
"OpenBSD"; }
179 os2
() { issystem
"OS/2"; }
180 qnx
() { issystem
"QNX"; }
181 sunos
() { issystem
"SunOS"; }
182 win32
() { cygwin || mingw32
; }
184 # arch test boolean functions
185 # x86/x86pc is used by QNX
188 i
[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium
*|athlon
*|i586-i686
) return 0 ;;
195 x86_64|amd64
) return 0 ;;
206 ppc|ppc64|powerpc|powerpc64
) return 0;;
225 # Use this before starting a check
227 echo "============ Checking for $@ ============" >> "$TMPLOG"
228 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
231 # Use this to echo the results of a check
233 if test "$res_comment" ; then
234 res_comment
="($res_comment)"
236 echo "Result is: $@ $res_comment" >> "$TMPLOG"
237 echo "##########################################" >> "$TMPLOG"
239 echo "$@ $res_comment"
242 #############################################################################
244 # Check how echo works in this /bin/sh
246 -n) _echo_n
= _echo_c
='\c' ;; # SysV echo
247 *) _echo_n
='-n ' _echo_c
= ;; # BSD echo
251 ls po
/*.po
>/dev
/null
2>&1 && msg_lang_all
=$
(echo po
/*.po |
sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
252 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")
253 doc_lang_all
=$
(echo DOCS
/xml
/??
/ DOCS
/xml
/??_??
/ |
sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
257 Usage: $0 [OPTIONS]...
260 -h, --help display this help and exit
262 Installation directories:
263 --prefix=DIR prefix directory for installation [/usr/local]
264 --bindir=DIR directory for installing binaries [PREFIX/bin]
265 --datadir=DIR directory for installing machine independent
266 data files (skins, etc) [PREFIX/share/mplayer]
267 --mandir=DIR directory for installing man pages [PREFIX/share/man]
268 --confdir=DIR directory for installing configuration files
270 --localedir=DIR directory for locale tree [PREFIX/share/locale]
271 --libdir=DIR directory for object code libraries [PREFIX/lib]
272 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
275 --disable-mplayer disable MPlayer compilation [enable]
276 --disable-largefiles disable support for files > 2GB [enable]
277 --enable-termcap use termcap database for key codes [autodetect]
278 --enable-termios use termios database for key codes [autodetect]
279 --disable-iconv disable iconv for encoding conversion [autodetect]
280 --disable-langinfo do not use langinfo [autodetect]
281 --enable-lirc enable LIRC (remote control) support [autodetect]
282 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
283 --enable-joystick enable joystick support [disable]
284 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
285 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
286 --disable-vm disable X video mode extensions [autodetect]
287 --disable-xf86keysym disable support for multimedia keys [autodetect]
288 --enable-radio enable radio interface [disable]
289 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
290 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
291 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
292 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
293 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
294 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
295 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
296 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
297 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
298 --disable-networking disable networking [enable]
299 --enable-winsock2_h enable winsock2_h [autodetect]
300 --enable-smb enable Samba (SMB) input [autodetect]
301 --enable-live enable LIVE555 Streaming Media [autodetect]
302 --enable-nemesi enable Nemesi Streaming Media [autodetect]
303 --disable-vcd disable VCD support [autodetect]
304 --disable-bluray disable Blu-ray support [autodetect]
305 --disable-dvdnav disable libdvdnav [autodetect]
306 --disable-dvdread disable libdvdread [autodetect]
307 --disable-dvdread-internal disable internal libdvdread [autodetect]
308 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
309 --disable-cdparanoia disable cdparanoia [autodetect]
310 --disable-cddb disable cddb [autodetect]
311 --disable-bitmap-font disable bitmap font support [enable]
312 --disable-freetype disable FreeType 2 font rendering [autodetect]
313 --disable-fontconfig disable fontconfig font lookup [autodetect]
314 --disable-unrarexec disable using of UnRAR executable [enabled]
315 --enable-menu enable OSD menu (not DVD menu) [disabled]
316 --disable-sortsub disable subtitle sorting [enabled]
317 --enable-fribidi enable the FriBiDi libs [autodetect]
318 --disable-enca disable ENCA charset oracle library [autodetect]
319 --disable-maemo disable maemo specific features [autodetect]
320 --enable-macosx-finder enable Mac OS X Finder invocation parameter
322 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
323 --disable-inet6 disable IPv6 support [autodetect]
324 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
325 --disable-ftp disable FTP support [enabled]
326 --disable-vstream disable TiVo vstream client support [autodetect]
327 --disable-pthreads disable Posix threads support [autodetect]
328 --disable-w32threads disable Win32 threads support [autodetect]
329 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
330 --enable-rpath enable runtime linker path for extra libs [disabled]
333 --enable-gif enable GIF support [autodetect]
334 --enable-png enable PNG input/output support [autodetect]
335 --enable-mng enable MNG input support [autodetect]
336 --enable-jpeg enable JPEG input/output support [autodetect]
337 --enable-libcdio enable libcdio support [autodetect]
338 --enable-liblzo enable liblzo support [autodetect]
339 --disable-win32dll disable Win32 DLL support [autodetect]
340 --disable-qtx disable QuickTime codecs support [enabled]
341 --disable-xanim disable XAnim codecs support [enabled]
342 --disable-real disable RealPlayer codecs support [enabled]
343 --disable-xvid disable Xvid [autodetect]
344 --disable-x264 disable x264 [autodetect]
345 --disable-libnut disable libnut [autodetect]
346 --disable-ffmpeg_a disable static FFmpeg [autodetect]
347 --disable-ffmpeg_so disable shared FFmpeg [autodetect]
348 --disable-tremor-internal disable internal Tremor [enabled]
349 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
350 --enable-tremor enable external Tremor [autodetect]
351 --disable-libvorbis disable libvorbis support [autodetect]
352 --disable-speex disable Speex support [autodetect]
353 --enable-theora enable OggTheora libraries [autodetect]
354 --enable-faad enable external FAAD2 (AAC) [autodetect]
355 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
356 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
357 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
358 --disable-ladspa disable LADSPA plugin support [autodetect]
359 --disable-libbs2b disable libbs2b audio filter support [autodetect]
360 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
361 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
362 --disable-mad disable libmad (MPEG audio) support [autodetect]
363 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
364 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
365 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
366 --enable-xmms enable XMMS input plugin support [disabled]
367 --enable-libdca enable libdca support [autodetect]
368 --disable-mp3lib disable builtin mp3lib [autodetect]
369 --disable-liba52 disable liba52 [autodetect]
370 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
371 --disable-musepack disable musepack support [autodetect]
374 --disable-vidix disable VIDIX [for x86 *nix]
375 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
376 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
377 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
378 --disable-vidix-pcidb disable VIDIX PCI device name database
379 --enable-dhahelper enable VIDIX dhahelper support
380 --enable-svgalib_helper enable VIDIX svgalib_helper support
381 --enable-gl enable OpenGL video output [autodetect]
382 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
383 --enable-dga2 enable DGA 2 support [autodetect]
384 --enable-dga1 enable DGA 1 support [autodetect]
385 --enable-vesa enable VESA video output [autodetect]
386 --enable-svga enable SVGAlib video output [autodetect]
387 --enable-sdl enable SDL video output [autodetect]
388 --enable-kva enable KVA video output [autodetect]
389 --enable-aa enable AAlib video output [autodetect]
390 --enable-caca enable CACA video output [autodetect]
391 --enable-ggi enable GGI video output [autodetect]
392 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
393 --enable-direct3d enable Direct3D video output [autodetect]
394 --enable-directx enable DirectX video output [autodetect]
395 --enable-dxr2 enable DXR2 video output [autodetect]
396 --enable-dxr3 enable DXR3/H+ video output [autodetect]
397 --enable-ivtv enable IVTV TV-Out video output [autodetect]
398 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
399 --enable-dvb enable DVB video output [autodetect]
400 --enable-mga enable mga_vid video output [autodetect]
401 --enable-xmga enable mga_vid X11 video output [autodetect]
402 --enable-xv enable Xv video output [autodetect]
403 --enable-xvmc enable XvMC acceleration [disable]
404 --enable-vdpau enable VDPAU acceleration [autodetect]
405 --enable-vm enable XF86VidMode support [autodetect]
406 --enable-xinerama enable Xinerama support [autodetect]
407 --enable-x11 enable X11 video output [autodetect]
408 --enable-xshape enable XShape support [autodetect]
409 --disable-xss disable screensaver support via xss [autodetect]
410 --enable-fbdev enable FBDev video output [autodetect]
411 --enable-mlib enable mediaLib video output (Solaris) [disable]
412 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
413 --enable-tdfxfb enable tdfxfb video output [disable]
414 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
415 --enable-wii enable Nintendo Wii/GameCube video output [disable]
416 --enable-directfb enable DirectFB video output [autodetect]
417 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
418 --enable-bl enable Blinkenlights video output [disable]
419 --enable-tdfxvid enable tdfx_vid video output [disable]
420 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
421 --disable-tga disable Targa video output [enable]
422 --disable-pnm disable PNM video output [enable]
423 --disable-md5sum disable md5sum video output [enable]
424 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
425 --disable-corevideo disable CoreVideo video output [autodetect]
426 --disable-quartz disable Quartz video output [autodetect]
429 --disable-alsa disable ALSA audio output [autodetect]
430 --disable-ossaudio disable OSS audio output [autodetect]
431 --disable-arts disable aRts audio output [autodetect]
432 --disable-esd disable esd audio output [autodetect]
433 --disable-pulse disable Pulseaudio audio output [autodetect]
434 --disable-jack disable JACK audio output [autodetect]
435 --enable-openal enable OpenAL audio output [disable]
436 --disable-nas disable NAS audio output [autodetect]
437 --disable-sgiaudio disable SGI audio output [autodetect]
438 --disable-sunaudio disable Sun audio output [autodetect]
439 --disable-kai disable KAI audio output [autodetect]
440 --disable-dart disable DART audio output [autodetect]
441 --disable-win32waveout disable Windows waveout audio output [autodetect]
442 --disable-coreaudio disable CoreAudio audio output [autodetect]
443 --disable-select disable using select() on the audio device [enable]
446 --enable-translation enable support for translated output [disable]
447 --charset=charset convert the console messages to this character set
448 --language-doc=lang language to use for the documentation [en]
449 --language-man=lang language to use for the man pages [en]
450 --language-msg=lang extra languages for program messages [all]
451 --language=lang default language to use [en]
452 Specific options override --language. You can pass a list of languages separated
453 by whitespace or commas instead of a single language. Nonexisting translations
454 will be dropped from each list. All translations available in the list will be
455 installed. The value "all" will activate all translations. The LINGUAS
456 environment variable is honored. In all cases the fallback is English.
457 The program always supports English-language output; additional message
458 languages are only installed if --enable-translation is also specified.
459 Available values for --language-doc are: all $doc_lang_all
460 Available values for --language-man are: all $man_lang_all
461 Available values for --language-msg are: all $msg_lang_all
463 Miscellaneous options:
464 --enable-runtime-cpudetection enable runtime CPU detection [disable]
465 --enable-cross-compile enable cross-compilation [autodetect]
466 --cc=COMPILER C compiler to build MPlayer [gcc]
467 --host-cc=COMPILER C compiler for tools needed while building [gcc]
468 --as=ASSEMBLER assembler to build MPlayer [as]
469 --nm=NM nm tool to build MPlayer [nm]
470 --yasm=YASM Yasm assembler to build MPlayer [yasm]
471 --ar=AR librarian to build MPlayer [ar]
472 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
473 --windres=WINDRES windres to build MPlayer [windres]
474 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
475 --enable-static build a statically linked binary
476 --with-install=PATH path to a custom install program
479 --enable-mmx enable MMX [autodetect]
480 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
481 --enable-3dnow enable 3DNow! [autodetect]
482 --enable-3dnowext enable extended 3DNow! [autodetect]
483 --enable-sse enable SSE [autodetect]
484 --enable-sse2 enable SSE2 [autodetect]
485 --enable-ssse3 enable SSSE3 [autodetect]
486 --enable-shm enable shm [autodetect]
487 --enable-altivec enable AltiVec (PowerPC) [autodetect]
488 --enable-armv5te enable DSP extensions (ARM) [autodetect]
489 --enable-armv6 enable ARMv6 (ARM) [autodetect]
490 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
491 --enable-armvfp enable ARM VFP (ARM) [autodetect]
492 --enable-neon enable NEON (ARM) [autodetect]
493 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
494 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
495 --enable-big-endian force byte order to big-endian [autodetect]
496 --enable-debug[=1-3] compile-in debugging information [disable]
497 --enable-profile compile-in profiling information [disable]
498 --disable-sighandler disable sighandler for crashes [enable]
499 --enable-crash-debug enable automatic gdb attach on crash [disable]
500 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
501 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
503 Use these options if autodetection fails:
504 --extra-cflags=FLAGS extra CFLAGS
505 --extra-ldflags=FLAGS extra LDFLAGS
506 --extra-libs=FLAGS extra linker flags
507 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
508 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
510 --with-freetype-config=PATH path to freetype-config
511 --with-glib-config=PATH path to glib*-config
512 --with-gtk-config=PATH path to gtk*-config
513 --with-sdl-config=PATH path to sdl*-config
514 --with-dvdnav-config=PATH path to dvdnav-config
515 --with-dvdread-config=PATH path to dvdread-config
517 This configure script is NOT autoconf-based, even though its output is similar.
518 It will try to autodetect all configuration options. If you --enable an option
519 it will be forcefully turned on, skipping autodetection. This can break
520 compilation, so you need to know what you are doing.
525 # GOTCHA: the variables below defines the default behavior for autodetection
526 # and have - unless stated otherwise - at least 2 states : yes no
527 # If autodetection is available then the third state is: auto
551 test "$CC" && _cc
="$CC"
555 _runtime_cpudetection
=no
568 _xvmc
=no
#auto when complete
635 _dvdnavconfig
=dvdnav-config
636 _dvdreadconfig
=dvdread-config
638 _dvdread_internal
=auto
639 _libdvdcss_internal
=auto
650 _mlib
=no
#broken, thus disabled
723 _freetypeconfig
='freetype-config'
738 def_dos_paths
="#define HAVE_DOS_PATHS 0"
739 def_stream_cache
="#define CONFIG_STREAM_CACHE 1"
740 def_priority
="#undef CONFIG_PRIORITY"
741 def_pthread_cache
="#undef PTHREAD_CACHE"
749 _prefix
=$
(echo $ac_option | cut
-d '=' -f 2)
752 _bindir
=$
(echo $ac_option | cut
-d '=' -f 2)
755 _datadir
=$
(echo $ac_option | cut
-d '=' -f 2)
758 _mandir
=$
(echo $ac_option | cut
-d '=' -f 2)
761 _confdir
=$
(echo $ac_option | cut
-d '=' -f 2)
764 _libdir
=$
(echo $ac_option | cut
-d '=' -f 2)
767 _codecsdir
=$
(echo $ac_option | cut
-d '=' -f 2)
770 _localedir
=$
(echo $ac_option | cut
-d '=' -f 2)
774 _install
=$
(echo $ac_option | cut
-d '=' -f 2 )
777 _xvmclib
=$
(echo $ac_option | cut
-d '=' -f 2)
781 _sdlconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
783 --with-freetype-config=*)
784 _freetypeconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
787 _gtkconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
789 --with-glib-config=*)
790 _glibconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
792 --with-dvdnav-config=*)
793 _dvdnavconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
795 --with-dvdread-config=*)
796 _dvdreadconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
800 extra_cflags
="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
803 extra_ldflags
="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
806 extra_libs
=$
(echo $ac_option | cut
-d '=' -f 2)
808 --extra-libs-mplayer=*)
809 libs_mplayer
=$
(echo $ac_option | cut
-d '=' -f 2)
813 _target
=$
(echo $ac_option | cut
-d '=' -f 2)
816 _cc
=$
(echo $ac_option | cut
-d '=' -f 2)
819 _host_cc
=$
(echo $ac_option | cut
-d '=' -f 2)
822 _as
=$
(echo $ac_option | cut
-d '=' -f 2)
825 _nm
=$
(echo $ac_option | cut
-d '=' -f 2)
828 _yasm
=$
(echo $ac_option | cut
-d '=' -f 2)
831 _ar
=$
(echo $ac_option | cut
-d '=' -f 2)
834 _ranlib
=$
(echo $ac_option | cut
-d '=' -f 2)
837 _windres
=$
(echo $ac_option | cut
-d '=' -f 2)
840 _charset
=$
(echo $ac_option | cut
-d '=' -f 2)
843 language_doc
=$
(echo $ac_option | cut
-d '=' -f 2)
846 language_man
=$
(echo $ac_option | cut
-d '=' -f 2)
849 language_msg
=$
(echo $ac_option | cut
-d '=' -f 2)
852 language
=$
(echo $ac_option | cut
-d '=' -f 2)
871 _debug
=$
(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut
-d '=' -f 2)
876 --enable-translation) _translation
=yes ;;
877 --disable-translation) _translation
=no
;;
878 --enable-runtime-cpudetection) _runtime_cpudetection
=yes ;;
879 --disable-runtime-cpudetection) _runtime_cpudetection
=no
;;
880 --enable-cross-compile) _cross_compile
=yes ;;
881 --disable-cross-compile) _cross_compile
=no
;;
882 --enable-mplayer) _mplayer
=yes ;;
883 --disable-mplayer) _mplayer
=no
;;
884 --enable-dynamic-plugins) _dynamic_plugins
=yes ;;
885 --disable-dynamic-plugins) _dynamic_plugins
=no
;;
886 --enable-x11) _x11
=yes ;;
887 --disable-x11) _x11
=no
;;
888 --enable-xshape) _xshape
=yes ;;
889 --disable-xshape) _xshape
=no
;;
890 --enable-xss) _xss
=yes ;;
891 --disable-xss) _xss
=no
;;
892 --enable-xv) _xv
=yes ;;
893 --disable-xv) _xv
=no
;;
894 --enable-xvmc) _xvmc
=yes ;;
895 --disable-xvmc) _xvmc
=no
;;
896 --enable-vdpau) _vdpau
=yes ;;
897 --disable-vdpau) _vdpau
=no
;;
898 --enable-sdl) _sdl
=yes ;;
899 --disable-sdl) _sdl
=no
;;
900 --enable-kva) _kva
=yes ;;
901 --disable-kva) _kva
=no
;;
902 --enable-direct3d) _direct3d
=yes ;;
903 --disable-direct3d) _direct3d
=no
;;
904 --enable-directx) _directx
=yes ;;
905 --disable-directx) _directx
=no
;;
906 --enable-win32waveout) _win32waveout
=yes ;;
907 --disable-win32waveout) _win32waveout
=no
;;
908 --enable-nas) _nas
=yes ;;
909 --disable-nas) _nas
=no
;;
910 --enable-png) _png
=yes ;;
911 --disable-png) _png
=no
;;
912 --enable-mng) _mng
=yes ;;
913 --disable-mng) _mng
=no
;;
914 --enable-jpeg) _jpeg
=yes ;;
915 --disable-jpeg) _jpeg
=no
;;
916 --enable-pnm) _pnm
=yes ;;
917 --disable-pnm) _pnm
=no
;;
918 --enable-md5sum) _md5sum
=yes ;;
919 --disable-md5sum) _md5sum
=no
;;
920 --enable-yuv4mpeg) _yuv4mpeg
=yes ;;
921 --disable-yuv4mpeg) _yuv4mpeg
=no
;;
922 --enable-gif) _gif
=yes ;;
923 --disable-gif) _gif
=no
;;
924 --enable-gl) _gl
=yes ;;
925 --disable-gl) _gl
=no
;;
926 --enable-matrixview) matrixview
=yes ;;
927 --disable-matrixview) matrixview
=no
;;
928 --enable-ggi) _ggi
=yes ;;
929 --disable-ggi) _ggi
=no
;;
930 --enable-ggiwmh) _ggiwmh
=yes ;;
931 --disable-ggiwmh) _ggiwmh
=no
;;
932 --enable-aa) _aa
=yes ;;
933 --disable-aa) _aa
=no
;;
934 --enable-caca) _caca
=yes ;;
935 --disable-caca) _caca
=no
;;
936 --enable-svga) _svga
=yes ;;
937 --disable-svga) _svga
=no
;;
938 --enable-vesa) _vesa
=yes ;;
939 --disable-vesa) _vesa
=no
;;
940 --enable-fbdev) _fbdev
=yes ;;
941 --disable-fbdev) _fbdev
=no
;;
942 --enable-dvb) _dvb
=yes ;;
943 --disable-dvb) _dvb
=no
;;
944 --enable-dxr2) _dxr2
=yes ;;
945 --disable-dxr2) _dxr2
=no
;;
946 --enable-dxr3) _dxr3
=yes ;;
947 --disable-dxr3) _dxr3
=no
;;
948 --enable-ivtv) _ivtv
=yes ;;
949 --disable-ivtv) _ivtv
=no
;;
950 --enable-v4l2) _v4l2
=yes ;;
951 --disable-v4l2) _v4l2
=no
;;
952 --enable-iconv) _iconv
=yes ;;
953 --disable-iconv) _iconv
=no
;;
954 --enable-langinfo) _langinfo
=yes ;;
955 --disable-langinfo) _langinfo
=no
;;
956 --enable-rtc) _rtc
=yes ;;
957 --disable-rtc) _rtc
=no
;;
958 --enable-libdv) _libdv
=yes ;;
959 --disable-libdv) _libdv
=no
;;
960 --enable-ossaudio) _ossaudio
=yes ;;
961 --disable-ossaudio) _ossaudio
=no
;;
962 --enable-arts) _arts
=yes ;;
963 --disable-arts) _arts
=no
;;
964 --enable-esd) _esd
=yes ;;
965 --disable-esd) _esd
=no
;;
966 --enable-pulse) _pulse
=yes ;;
967 --disable-pulse) _pulse
=no
;;
968 --enable-jack) _jack
=yes ;;
969 --disable-jack) _jack
=no
;;
970 --enable-openal) _openal
=yes ;;
971 --disable-openal) _openal
=no
;;
972 --enable-kai) _kai
=yes ;;
973 --disable-kai) _kai
=no
;;
974 --enable-dart) _dart
=yes ;;
975 --disable-dart) _dart
=no
;;
976 --enable-mad) _mad
=yes ;;
977 --disable-mad) _mad
=no
;;
978 --enable-mp3lame) _mp3lame
=yes ;;
979 --disable-mp3lame) _mp3lame
=no
;;
980 --enable-toolame) _toolame
=yes ;;
981 --disable-toolame) _toolame
=no
;;
982 --enable-twolame) _twolame
=yes ;;
983 --disable-twolame) _twolame
=no
;;
984 --enable-libcdio) _libcdio
=yes ;;
985 --disable-libcdio) _libcdio
=no
;;
986 --enable-liblzo) _liblzo
=yes ;;
987 --disable-liblzo) _liblzo
=no
;;
988 --enable-libvorbis) _libvorbis
=yes ;;
989 --disable-libvorbis) _libvorbis
=no
;;
990 --enable-speex) _speex
=yes ;;
991 --disable-speex) _speex
=no
;;
992 --enable-tremor) _tremor
=yes ;;
993 --disable-tremor) _tremor
=no
;;
994 --enable-tremor-internal) _tremor_internal
=yes ;;
995 --disable-tremor-internal) _tremor_internal
=no
;;
996 --enable-tremor-low) _tremor_low
=yes ;;
997 --disable-tremor-low) _tremor_low
=no
;;
998 --enable-theora) _theora
=yes ;;
999 --disable-theora) _theora
=no
;;
1000 --enable-mpg123) _mpg123
=yes ;;
1001 --disable-mpg123) _mpg123
=no
;;
1002 --enable-mp3lib) _mp3lib
=yes ;;
1003 --disable-mp3lib) _mp3lib
=no
;;
1004 --enable-liba52) _liba52
=yes ;;
1005 --disable-liba52) _liba52
=no
;;
1006 --enable-libdca) _libdca
=yes ;;
1007 --disable-libdca) _libdca
=no
;;
1008 --enable-libmpeg2) _libmpeg2
=yes ;;
1009 --disable-libmpeg2) _libmpeg2
=no
;;
1010 --enable-musepack) _musepack
=yes ;;
1011 --disable-musepack) _musepack
=no
;;
1012 --enable-faad) _faad
=yes ;;
1013 --disable-faad) _faad
=no
;;
1014 --enable-faad-internal) _faad_internal
=yes ;;
1015 --disable-faad-internal) _faad_internal
=no
;;
1016 --enable-faad-fixed) _faad_fixed
=yes ;;
1017 --disable-faad-fixed) _faad_fixed
=no
;;
1018 --enable-faac) _faac
=yes ;;
1019 --disable-faac) _faac
=no
;;
1020 --enable-ladspa) _ladspa
=yes ;;
1021 --disable-ladspa) _ladspa
=no
;;
1022 --enable-libbs2b) _libbs2b
=yes ;;
1023 --disable-libbs2b) _libbs2b
=no
;;
1024 --enable-xmms) _xmms
=yes ;;
1025 --disable-xmms) _xmms
=no
;;
1026 --enable-vcd) _vcd
=yes ;;
1027 --disable-vcd) _vcd
=no
;;
1028 --enable-bluray) _bluray
=yes ;;
1029 --disable-bluray) _bluray
=no
;;
1030 --enable-dvdread) _dvdread
=yes ;;
1031 --disable-dvdread) _dvdread
=no
;;
1032 --enable-dvdread-internal) _dvdread_internal
=yes ;;
1033 --disable-dvdread-internal) _dvdread_internal
=no
;;
1034 --enable-libdvdcss-internal) _libdvdcss_internal
=yes ;;
1035 --disable-libdvdcss-internal) _libdvdcss_internal
=no
;;
1036 --enable-dvdnav) _dvdnav
=yes ;;
1037 --disable-dvdnav) _dvdnav
=no
;;
1038 --enable-xanim) _xanim
=yes ;;
1039 --disable-xanim) _xanim
=no
;;
1040 --enable-real) _real
=yes ;;
1041 --disable-real) _real
=no
;;
1042 --enable-live) _live
=yes ;;
1043 --disable-live) _live
=no
;;
1044 --enable-nemesi) _nemesi
=yes ;;
1045 --disable-nemesi) _nemesi
=no
;;
1046 --enable-xinerama) _xinerama
=yes ;;
1047 --disable-xinerama) _xinerama
=no
;;
1048 --enable-mga) _mga
=yes ;;
1049 --disable-mga) _mga
=no
;;
1050 --enable-xmga) _xmga
=yes ;;
1051 --disable-xmga) _xmga
=no
;;
1052 --enable-vm) _vm
=yes ;;
1053 --disable-vm) _vm
=no
;;
1054 --enable-xf86keysym) _xf86keysym
=yes ;;
1055 --disable-xf86keysym) _xf86keysym
=no
;;
1056 --enable-mlib) _mlib
=yes ;;
1057 --disable-mlib) _mlib
=no
;;
1058 --enable-sunaudio) _sunaudio
=yes ;;
1059 --disable-sunaudio) _sunaudio
=no
;;
1060 --enable-sgiaudio) _sgiaudio
=yes ;;
1061 --disable-sgiaudio) _sgiaudio
=no
;;
1062 --enable-alsa) _alsa
=yes ;;
1063 --disable-alsa) _alsa
=no
;;
1064 --enable-tv) _tv
=yes ;;
1065 --disable-tv) _tv
=no
;;
1066 --enable-tv-bsdbt848) _tv_bsdbt848
=yes ;;
1067 --disable-tv-bsdbt848) _tv_bsdbt848
=no
;;
1068 --enable-tv-v4l1) _tv_v4l1
=yes ;;
1069 --disable-tv-v4l1) _tv_v4l1
=no
;;
1070 --enable-tv-v4l2) _tv_v4l2
=yes ;;
1071 --disable-tv-v4l2) _tv_v4l2
=no
;;
1072 --enable-tv-dshow) _tv_dshow
=yes ;;
1073 --disable-tv-dshow) _tv_dshow
=no
;;
1074 --enable-radio) _radio
=yes ;;
1075 --enable-radio-capture) _radio_capture
=yes ;;
1076 --disable-radio-capture) _radio_capture
=no
;;
1077 --disable-radio) _radio
=no
;;
1078 --enable-radio-v4l) _radio_v4l
=yes ;;
1079 --disable-radio-v4l) _radio_v4l
=no
;;
1080 --enable-radio-v4l2) _radio_v4l2
=yes ;;
1081 --disable-radio-v4l2) _radio_v4l2
=no
;;
1082 --enable-radio-bsdbt848) _radio_bsdbt848
=yes ;;
1083 --disable-radio-bsdbt848) _radio_bsdbt848
=no
;;
1084 --enable-pvr) _pvr
=yes ;;
1085 --disable-pvr) _pvr
=no
;;
1086 --enable-fastmemcpy) _fastmemcpy
=yes ;;
1087 --disable-fastmemcpy) _fastmemcpy
=no
;;
1088 --enable-networking) networking
=yes ;;
1089 --disable-networking) networking
=no
;;
1090 --enable-winsock2_h) _winsock2_h
=yes ;;
1091 --disable-winsock2_h) _winsock2_h
=no
;;
1092 --enable-smb) _smb
=yes ;;
1093 --disable-smb) _smb
=no
;;
1094 --enable-vidix) _vidix
=yes ;;
1095 --disable-vidix) _vidix
=no
;;
1096 --with-vidix-drivers=*)
1097 _vidix_drivers
=$
(echo $ac_option | cut
-d '=' -f 2)
1099 --disable-vidix-pcidb) _vidix_pcidb
=no
;;
1100 --enable-dhahelper) _dhahelper
=yes ;;
1101 --disable-dhahelper) _dhahelper
=no
;;
1102 --enable-svgalib_helper) _svgalib_helper
=yes ;;
1103 --disable-svgalib_helper) _svgalib_helper
=no
;;
1104 --enable-joystick) _joystick
=yes ;;
1105 --disable-joystick) _joystick
=no
;;
1106 --enable-xvid) _xvid
=yes ;;
1107 --disable-xvid) _xvid
=no
;;
1108 --enable-x264) _x264
=yes ;;
1109 --disable-x264) _x264
=no
;;
1110 --enable-libnut) _libnut
=yes ;;
1111 --disable-libnut) _libnut
=no
;;
1112 --enable-ffmpeg) ffmpeg
=yes ;;
1113 --disable-ffmpeg) ffmpeg
=no
;;
1114 --ffmpeg-source-dir=*)
1115 _ffmpeg_source
=$
(echo $ac_option | cut
-d '=' -f 2 ) ;;
1117 --enable-lirc) _lirc
=yes ;;
1118 --disable-lirc) _lirc
=no
;;
1119 --enable-lircc) _lircc
=yes ;;
1120 --disable-lircc) _lircc
=no
;;
1121 --enable-apple-remote) _apple_remote
=yes ;;
1122 --disable-apple-remote) _apple_remote
=no
;;
1123 --enable-apple-ir) _apple_ir
=yes ;;
1124 --disable-apple-ir) _apple_ir
=no
;;
1125 --enable-gui) _gui
=yes ;;
1126 --disable-gui) _gui
=no
;;
1127 --enable-gtk1) _gtk1
=yes ;;
1128 --disable-gtk1) _gtk1
=no
;;
1129 --enable-termcap) _termcap
=yes ;;
1130 --disable-termcap) _termcap
=no
;;
1131 --enable-termios) _termios
=yes ;;
1132 --disable-termios) _termios
=no
;;
1133 --enable-3dfx) _3dfx
=yes ;;
1134 --disable-3dfx) _3dfx
=no
;;
1135 --enable-s3fb) _s3fb
=yes ;;
1136 --disable-s3fb) _s3fb
=no
;;
1137 --enable-wii) _wii
=yes ;;
1138 --disable-wii) _wii
=no
;;
1139 --enable-tdfxfb) _tdfxfb
=yes ;;
1140 --disable-tdfxfb) _tdfxfb
=no
;;
1141 --disable-tdfxvid) _tdfxvid
=no
;;
1142 --enable-tdfxvid) _tdfxvid
=yes ;;
1143 --disable-xvr100) _xvr100
=no
;;
1144 --enable-xvr100) _xvr100
=yes ;;
1145 --disable-tga) _tga
=no
;;
1146 --enable-tga) _tga
=yes ;;
1147 --enable-directfb) _directfb
=yes ;;
1148 --disable-directfb) _directfb
=no
;;
1149 --enable-zr) _zr
=yes ;;
1150 --disable-zr) _zr
=no
;;
1151 --enable-bl) _bl
=yes ;;
1152 --disable-bl) _bl
=no
;;
1153 --enable-mtrr) _mtrr
=yes ;;
1154 --disable-mtrr) _mtrr
=no
;;
1155 --enable-largefiles) _largefiles
=yes ;;
1156 --disable-largefiles) _largefiles
=no
;;
1157 --enable-shm) _shm
=yes ;;
1158 --disable-shm) _shm
=no
;;
1159 --enable-select) _select
=yes ;;
1160 --disable-select) _select
=no
;;
1161 --enable-cdparanoia) _cdparanoia
=yes ;;
1162 --disable-cdparanoia) _cdparanoia
=no
;;
1163 --enable-cddb) _cddb
=yes ;;
1164 --disable-cddb) _cddb
=no
;;
1165 --enable-big-endian) _big_endian
=yes ;;
1166 --disable-big-endian) _big_endian
=no
;;
1167 --enable-bitmap-font) _bitmap_font
=yes ;;
1168 --disable-bitmap-font) _bitmap_font
=no
;;
1169 --enable-freetype) _freetype
=yes ;;
1170 --disable-freetype) _freetype
=no
;;
1171 --enable-fontconfig) _fontconfig
=yes ;;
1172 --disable-fontconfig) _fontconfig
=no
;;
1173 --enable-unrarexec) _unrar_exec
=yes ;;
1174 --disable-unrarexec) _unrar_exec
=no
;;
1175 --enable-ftp) _ftp
=yes ;;
1176 --disable-ftp) _ftp
=no
;;
1177 --enable-vstream) _vstream
=yes ;;
1178 --disable-vstream) _vstream
=no
;;
1179 --enable-pthreads) _pthreads
=yes ;;
1180 --disable-pthreads) _pthreads
=no
;;
1181 --enable-w32threads) _w32threads
=yes ;;
1182 --disable-w32threads) _w32threads
=no
;;
1183 --enable-ass) _ass
=yes ;;
1184 --disable-ass) _ass
=no
;;
1185 --enable-rpath) _rpath
=yes ;;
1186 --disable-rpath) _rpath
=no
;;
1188 --enable-fribidi) _fribidi
=yes ;;
1189 --disable-fribidi) _fribidi
=no
;;
1191 --enable-enca) _enca
=yes ;;
1192 --disable-enca) _enca
=no
;;
1194 --enable-inet6) _inet6
=yes ;;
1195 --disable-inet6) _inet6
=no
;;
1197 --enable-gethostbyname2) _gethostbyname2
=yes ;;
1198 --disable-gethostbyname2) _gethostbyname2
=no
;;
1200 --enable-dga1) _dga1
=yes ;;
1201 --disable-dga1) _dga1
=no
;;
1202 --enable-dga2) _dga2
=yes ;;
1203 --disable-dga2) _dga2
=no
;;
1205 --enable-menu) _menu
=yes ;;
1206 --disable-menu) _menu
=no
;;
1208 --enable-qtx) _qtx
=yes ;;
1209 --disable-qtx) _qtx
=no
;;
1211 --enable-coreaudio) _coreaudio
=yes ;;
1212 --disable-coreaudio) _coreaudio
=no
;;
1213 --enable-corevideo) _corevideo
=yes ;;
1214 --disable-corevideo) _corevideo
=no
;;
1215 --enable-quartz) _quartz
=yes ;;
1216 --disable-quartz) _quartz
=no
;;
1217 --enable-macosx-finder) _macosx_finder
=yes ;;
1218 --disable-macosx-finder) _macosx_finder
=no
;;
1219 --enable-macosx-bundle) _macosx_bundle
=yes ;;
1220 --disable-macosx-bundle) _macosx_bundle
=no
;;
1222 --enable-maemo) _maemo
=yes ;;
1223 --disable-maemo) _maemo
=no
;;
1225 --enable-sortsub) _sortsub
=yes ;;
1226 --disable-sortsub) _sortsub
=no
;;
1228 --enable-crash-debug) _crash_debug
=yes ;;
1229 --disable-crash-debug) _crash_debug
=no
;;
1230 --enable-sighandler) _sighandler
=yes ;;
1231 --disable-sighandler) _sighandler
=no
;;
1232 --enable-win32dll) _win32dll
=yes ;;
1233 --disable-win32dll) _win32dll
=no
;;
1235 --enable-sse) _sse
=yes ;;
1236 --disable-sse) _sse
=no
;;
1237 --enable-sse2) _sse2
=yes ;;
1238 --disable-sse2) _sse2
=no
;;
1239 --enable-ssse3) _ssse3
=yes ;;
1240 --disable-ssse3) _ssse3
=no
;;
1241 --enable-mmxext) _mmxext
=yes ;;
1242 --disable-mmxext) _mmxext
=no
;;
1243 --enable-3dnow) _3dnow
=yes ;;
1244 --disable-3dnow) _3dnow
=no _3dnowext
=no
;;
1245 --enable-3dnowext) _3dnow
=yes _3dnowext
=yes ;;
1246 --disable-3dnowext) _3dnowext
=no
;;
1247 --enable-cmov) _cmov
=yes ;;
1248 --disable-cmov) _cmov
=no
;;
1249 --enable-fast-cmov) _fast_cmov
=yes ;;
1250 --disable-fast-cmov) _fast_cmov
=no
;;
1251 --enable-fast-clz) _fast_clz
=yes ;;
1252 --disable-fast-clz) _fast_clz
=no
;;
1253 --enable-altivec) _altivec
=yes ;;
1254 --disable-altivec) _altivec
=no
;;
1255 --enable-armv5te) _armv5te
=yes ;;
1256 --disable-armv5te) _armv5te
=no
;;
1257 --enable-armv6) _armv6
=yes ;;
1258 --disable-armv6) _armv6
=no
;;
1259 --enable-armv6t2) _armv6t2
=yes ;;
1260 --disable-armv6t2) _armv6t2
=no
;;
1261 --enable-armvfp) _armvfp
=yes ;;
1262 --disable-armvfp) _armvfp
=no
;;
1263 --enable-neon) neon
=yes ;;
1264 --disable-neon) neon
=no
;;
1265 --enable-iwmmxt) _iwmmxt
=yes ;;
1266 --disable-iwmmxt) _iwmmxt
=no
;;
1267 --enable-mmx) _mmx
=yes ;;
1268 --disable-mmx) # 3Dnow! and MMX2 require MMX
1269 _3dnow
=no _3dnowext
=no _mmx
=no _mmxext
=no
;;
1272 echo "Unknown parameter: $ac_option"
1279 if test "$_gui" = yes ; then
1280 die
"Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1281 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1284 # Atmos: moved this here, to be correct, if --prefix is specified
1285 test -z "$_bindir" && _bindir
="$_prefix/bin"
1286 test -z "$_datadir" && _datadir
="$_prefix/share/mplayer"
1287 test -z "$_mandir" && _mandir
="$_prefix/share/man"
1288 test -z "$_confdir" && _confdir
="$_prefix/etc/mplayer"
1289 test -z "$_libdir" && _libdir
="$_prefix/lib"
1290 test -z "$_localedir" && _localedir
="$_prefix/share/locale"
1292 # Determine our OS name and CPU architecture
1293 if test -z "$_target" ; then
1295 system_name
=$
(uname
-s 2>&1)
1296 case "$system_name" in
1297 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD
/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS
)
1311 [cC
][yY
][gG
][wW
][iI
][nN
]*)
1321 system_name
="$system_name-UNKNOWN"
1326 # host's CPU/instruction set
1327 host_arch
=$
(uname
-p 2>&1)
1328 case "$host_arch" in
1329 i386|sparc|ppc|alpha|arm|mips|vax
)
1331 powerpc
) # Darwin returns 'powerpc'
1334 *) # uname -p on Linux returns 'unknown' for the processor type,
1335 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1337 # Maybe uname -m (machine hardware name) returns something we
1340 # x86/x86pc is used by QNX
1341 case "$(uname -m 2>&1)" in
1342 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
;;
1343 ia64
) host_arch
=ia64
;;
1344 macppc|ppc
) host_arch
=ppc
;;
1345 ppc64
) host_arch
=ppc64
;;
1346 alpha
) host_arch
=alpha
;;
1347 sparc
) host_arch
=sparc
;;
1348 sparc64
) host_arch
=sparc64
;;
1349 parisc
*|hppa
*|
9000*) host_arch
=hppa
;;
1350 arm
*|zaurus|cats
) host_arch
=arm
;;
1351 sh3|sh4|sh4a
) host_arch
=sh
;;
1352 s390
) host_arch
=s390
;;
1353 s390x
) host_arch
=s390x
;;
1354 *mips
*) host_arch
=mips
;;
1355 vax
) host_arch
=vax
;;
1356 xtensa
*) host_arch
=xtensa
;;
1357 *) host_arch
=UNKNOWN
;;
1361 else # if test -z "$_target"
1362 system_name
=$
(echo $_target | cut
-d '-' -f 2)
1363 case "$(echo $system_name | tr A-Z a-z)" in
1364 linux
) system_name
=Linux
;;
1365 freebsd
) system_name
=FreeBSD
;;
1366 gnu
/kfreebsd
) system_name
=FreeBSD
;;
1367 netbsd
) system_name
=NetBSD
;;
1368 bsd
/os
) system_name
=BSD
/OS
;;
1369 openbsd
) system_name
=OpenBSD
;;
1370 dragonfly
) system_name
=DragonFly
;;
1371 sunos
) system_name
=SunOS
;;
1372 qnx
) system_name
=QNX
;;
1373 morphos
) system_name
=MorphOS
;;
1374 amigaos
) system_name
=AmigaOS
;;
1375 mingw32
*) system_name
=MINGW32
;;
1377 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1378 host_arch
=$
(echo $_target | cut
-d '-' -f 1)
1379 if test $
(echo $host_arch) != "x86_64" ; then
1380 host_arch
=$
(echo $host_arch |
tr '_' '-')
1384 extra_cflags
="-I. $extra_cflags"
1385 _timer
=timer-linux.c
1388 extra_ldflags
="$extra_ldflags -L/usr/local/lib"
1389 extra_cflags
="$extra_cflags -I/usr/local/include"
1392 if netbsd || dragonfly
; then
1393 extra_ldflags
="$extra_ldflags -L/usr/pkg/lib"
1394 extra_cflags
="$extra_cflags -I/usr/pkg/include"
1398 extra_cflags
="-mdynamic-no-pic $extra_cflags"
1399 if test "$(basename $_cc)" != "clang" ; then
1400 extra_cflags
="-falign-loops=16 -shared-libgcc $extra_cflags"
1402 _timer
=timer-darwin.c
1406 extra_ldflags
="$extra_ldflags -lC"
1417 extra_cflags
="$extra_cflags -fno-common"
1418 # -lwinmm is always needed for osdep/timer-win2.c
1419 extra_ldflags
="$extra_ldflags -lwinmm"
1423 def_dos_paths
="#define HAVE_DOS_PATHS 1"
1424 def_priority
="#define CONFIG_PRIORITY 1"
1436 def_stream_cache
="#undef CONFIG_STREAM_CACHE"
1437 extra_cflags
="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1441 extra_ldflags
="$extra_ldflags -lph"
1449 def_dos_paths
="#define HAVE_DOS_PATHS 1"
1450 def_priority
="#define CONFIG_PRIORITY 1"
1453 for tmpdir
in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1454 test "$tmpdir" && break
1457 mplayer_tmpdir
="$tmpdir/mplayer-configure-$RANDOM-$$"
1458 mkdir
$mplayer_tmpdir || die
"Unable to create tmpdir."
1461 TMPC
="$mplayer_tmpdir/tmp.c"
1462 TMPCPP
="$mplayer_tmpdir/tmp.cpp"
1463 TMPEXE
="$mplayer_tmpdir/tmp$_exesuf"
1464 TMPH
="$mplayer_tmpdir/tmp.h"
1465 TMPS
="$mplayer_tmpdir/tmp.S"
1468 echo configuration
: $configuration > "$TMPLOG"
1472 if test "$_runtime_cpudetection" = yes && ! x86
&& ! ppc
; then
1473 die
"Runtime CPU detection only works for x86, x86-64 and PPC!"
1477 # Checking CC version...
1478 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1479 if test "$(basename $_cc)" = "icc" ||
test "$(basename $_cc)" = "ecc"; then
1480 echocheck
"$_cc version"
1482 cc_name
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ',' -f 1)
1483 cc_version
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ',' -f 2 | cut
-d ' ' -f 3)
1484 _cc_major
=$
(echo $cc_version | cut
-d '.' -f 1)
1485 _cc_minor
=$
(echo $cc_version | cut
-d '.' -f 2)
1486 # TODO verify older icc/ecc compatibility
1489 cc_version
="v. ?.??, bad"
1493 cc_version
="$cc_version, ok"
1496 cc_version
="$cc_version, bad"
1500 echores
"$cc_version"
1502 for _cc
in "$_cc" gcc cc
; do
1503 cc_name_tmp
=$
($_cc -v 2>&1 |
tail -n 1 | cut
-d ' ' -f 1)
1504 if test "$cc_name_tmp" = "gcc"; then
1505 cc_name
=$cc_name_tmp
1506 echocheck
"$_cc version"
1508 cc_version
=$
($_cc -dumpversion 2>&1)
1514 _cc_major
=$
(echo $cc_version | cut
-d '.' -f 1)
1515 _cc_minor
=$
(echo $cc_version | cut
-d '.' -f 2)
1516 _cc_mini
=$
(echo $cc_version | cut
-d '.' -f 3)
1519 echores
"$cc_version"
1522 cc_name_tmp
=$
($_cc -v 2>&1 |
head -n 1 | cut
-d ' ' -f 1)
1523 if test "$cc_name_tmp" = "clang"; then
1524 echocheck
"$_cc version"
1526 cc_version
=$
($_cc -dumpversion 2>&1)
1527 res_comment
="experimental support only"
1528 echores
"clang $cc_version"
1531 cc_name_tmp
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ' ' -f 2,3)
1532 if test "$cc_name_tmp" = "Sun C"; then
1533 echocheck
"$_cc version"
1535 cc_version
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ' ' -f 4)
1536 res_comment
="experimental support only"
1537 echores
"Sun C $cc_version"
1542 test "$cc_fail" = yes && die
"unsupported compiler version"
1544 if test -z "$_target" && x86
; then
1547 int test[(int)sizeof(char *)-7];
1551 cc_check
&& host_arch
=x86_64 || host_arch
=i386
1554 echo "Detected operating system: $system_name"
1555 echo "Detected host architecture: $host_arch"
1558 test "$_host_cc" || _host_cc
=$_cc
1561 echocheck
"cross compilation"
1562 if test $_cross_compile = auto
; then
1564 cflag_check
"" && "$TMPEXE" && _cross_compile
=no
1566 echores
$_cross_compile
1568 if test $_cross_compile = yes; then
1576 # now that we know what compiler should be used for compilation, try to find
1577 # out which assembler is used by the $_cc compiler
1578 if test "$_as" = auto
; then
1579 _as
=$
($_cc -print-prog-name=as
)
1580 test -z "$_as" && _as
=as
1583 if test "$_nm" = auto
; then
1584 _nm
=$
($_cc -print-prog-name=nm
)
1585 test -z "$_nm" && _nm
=nm
1588 # XXX: this should be ok..
1591 if test "$_runtime_cpudetection" = no
; then
1593 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1594 # FIXME: Remove the cygwin check once AMD CPUs are supported
1595 if test -r /proc
/cpuinfo
&& ! cygwin
; then
1596 # Linux with /proc mounted, extract CPU information from it
1597 _cpuinfo
="cat /proc/cpuinfo"
1598 elif test -r /compat
/linux
/proc
/cpuinfo
&& ! x86
; then
1599 # FreeBSD with Linux emulation /proc mounted,
1600 # extract CPU information from it
1601 # Don't use it on x86 though, it never reports 3Dnow
1602 _cpuinfo
="cat /compat/linux/proc/cpuinfo"
1603 elif darwin
&& ! x86
; then
1604 # use hostinfo on Darwin
1607 # use 'lsattr' on AIX
1608 _cpuinfo
="lsattr -E -l proc0 -a type"
1610 # all other OSes try to extract CPU information from a small helper
1611 # program cpuinfo instead
1612 $_cc -o cpuinfo
$_exesuf cpuinfo.c
1613 _cpuinfo
="./cpuinfo$_exesuf"
1617 # gather more CPU information
1618 pname
=$
($_cpuinfo |
grep 'model name' | cut
-d ':' -f 2 |
head -n 1)
1619 pvendor
=$
($_cpuinfo |
grep 'vendor_id' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1620 pfamily
=$
($_cpuinfo |
grep 'cpu family' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1621 pmodel
=$
($_cpuinfo |
grep -v 'model name' |
grep 'model' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1622 pstepping
=$
($_cpuinfo |
grep 'stepping' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1624 exts
=$
($_cpuinfo |
egrep 'features|flags' | cut
-d ':' -f 2 |
head -n 1)
1626 pparam
=$
(echo $exts |
sed -e s
/k6_mtrr
/mtrr
/ -e s
/cyrix_arr
/mtrr
/ -e s
/centaur_mcr
/mtrr
/ \
1627 -e s
/xmm
/sse
/ -e s
/kni
/sse
/)
1629 for ext
in $pparam ; do
1630 eval test \"\
$_$ext\" = auto
2>/dev
/null
&& eval _
$ext=kernel_check
1633 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1634 test $_sse = kernel_check
&& _mmxext
=kernel_check
1636 echocheck
"CPU vendor"
1637 echores
"$pvendor ($pfamily:$pmodel:$pstepping)"
1639 echocheck
"CPU type"
1643 fi # test "$_runtime_cpudetection" = no
1645 if x86
&& test "$_runtime_cpudetection" = no
; then
1647 if test "$1" = kernel_check
; then
1648 echocheck
"kernel support of $2"
1652 static void catch(int sig) { exit(1); }
1654 signal(SIGILL, catch);
1655 __asm__ volatile ("$3":::"memory"); return 0;
1659 if cc_check
&& tmp_run
; then
1662 _optimizing
="$_optimizing $2"
1667 echo "It seems that your kernel does not correctly support $2."
1668 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1675 extcheck
$_mmx "mmx" "emms"
1676 extcheck
$_mmxext "mmxext" "sfence"
1677 extcheck
$_3dnow "3dnow" "femms"
1678 extcheck
$_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1679 extcheck
$_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext
="$_gcc3_ext -mno-sse"
1680 extcheck
$_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext
="$_gcc3_ext -mno-sse2"
1681 extcheck
$_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1682 extcheck
$_cmov "cmov" "cmovb %%eax,%%ebx"
1684 echocheck
"mtrr support"
1685 if test "$_mtrr" = kernel_check
; then
1687 _optimizing
="$_optimizing mtrr"
1691 if test "$_gcc3_ext" != ""; then
1692 # if we had to disable sse/sse2 because the active kernel does not
1693 # support this instruction set extension, we also have to tell
1694 # gcc3 to not generate sse/sse2 instructions for normal C code
1695 cflag_check
$_march $_gcc3_ext && _march
="$_march $_gcc3_ext"
1701 def_fast_64bit
='#define HAVE_FAST_64BIT 0'
1702 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 0'
1703 arch_all
='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1704 subarch_all
='X86_32 X86_64 PPC64'
1705 case "$host_arch" in
1706 i
[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium
*|athlon
*|i586-i686
)
1709 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
1714 if test "$_runtime_cpudetection" = no
; then
1718 3) proc
=i386 iproc
=386 ;;
1719 4) proc
=i486 iproc
=486 ;;
1720 5) iproc
=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1721 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1722 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1724 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1726 elif test "$pmodel" -ge 8; then
1728 elif test "$pmodel" -ge 6; then
1735 # It's a bit difficult to determine the correct type of Family 6
1736 # AMD CPUs just from their signature. Instead, we check directly
1737 # whether it supports SSE.
1738 if test "$_sse" = yes; then
1739 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1742 # Again, gcc treats athlon and athlon-tbird similarly.
1747 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1748 # caught and remedied in the optimization tests below.
1752 *) proc
=amdfam10 iproc
=686
1753 test $_fast_clz = "auto" && _fast_clz
=yes
1759 3) proc
=i386 iproc
=386 ;;
1760 4) proc
=i486 iproc
=486 ;;
1762 if test "$pmodel" -eq 4 ||
test "$pmodel" -eq 8; then
1763 proc
=pentium-mmx
# 4 is desktop, 8 is mobile
1769 if test "$pmodel" -ge 15; then
1771 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1773 elif test "$pmodel" -ge 7; then
1775 elif test "$pmodel" -ge 3; then
1780 test $_fast_clz = "auto" && _fast_clz
=yes
1783 # A nocona in 32-bit mode has no more capabilities than a prescott.
1784 if test "$pmodel" -ge 3; then
1788 test $_fast_clz = "auto" && _fast_clz
=yes
1790 test $_fast_cmov = "auto" && _fast_cmov
=no
1792 *) proc
=prescott iproc
=686 ;;
1798 if test "$pmodel" -ge 8; then
1800 elif test "$pmodel" -ge 4; then
1807 if test "$pmodel" -ge 9; then
1814 *) proc
=i686 iproc
=i686
;;
1819 3) proc
=i386 iproc
=386 ;;
1820 4) proc
=i486 iproc
=486 ;;
1821 *) proc
=i586 iproc
=586 ;;
1825 proc
=i586 iproc
=586 ;;
1827 test $_fast_clz = "auto" && _fast_clz
=no
1828 fi # test "$_runtime_cpudetection" = no
1831 # check that gcc supports our CPU, if not, fall back to earlier ones
1832 # LGB: check -mcpu and -march swithing step by step with enabling
1833 # to fall back till 386.
1835 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1837 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] ||
( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1843 echocheck
"GCC & CPU optimization abilities"
1844 if test "$_runtime_cpudetection" = no
; then
1845 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1846 cflag_check
-march=native
&& proc
=native
1848 if test "$proc" = "amdfam10"; then
1849 cflag_check
-march=$proc $cpuopt=$proc || proc
=k8
1851 if test "$proc" = "k8"; then
1852 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon-xp
1854 if test "$proc" = "athlon-xp"; then
1855 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon
1857 if test "$proc" = "k6-3" ||
test "$proc" = "k6-2"; then
1858 cflag_check
-march=$proc $cpuopt=$proc || proc
=k6
1860 if test "$proc" = "k6" ||
test "$proc" = "c3"; then
1861 if ! cflag_check
-march=$proc $cpuopt=$proc; then
1862 if cflag_check
-march=i586
$cpuopt=i686
; then
1869 if test "$proc" = "prescott" ; then
1870 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium4
1872 if test "$proc" = "core2" ; then
1873 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium-m
1875 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
1876 cflag_check
-march=$proc $cpuopt=$proc || proc
=i686
1878 if test "$proc" = "i686" ||
test "$proc" = "pentium-mmx" ||
test "$proc" = "winchip-c6" ||
test "$proc" = "winchip2"; then
1879 cflag_check
-march=$proc $cpuopt=$proc || proc
=i586
1881 if test "$proc" = "i586"; then
1882 cflag_check
-march=$proc $cpuopt=$proc || proc
=i486
1884 if test "$proc" = "i486" ; then
1885 cflag_check
-march=$proc $cpuopt=$proc || proc
=i386
1887 if test "$proc" = "i386" ; then
1888 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
1890 if test "$proc" = "error" ; then
1891 echores
"CPU optimization disabled. CPU not recognized or your compiler is too old."
1895 elif test "$proc" = "i586-i686"; then
1896 _march
="-march=i586"
1897 _mcpu
="$cpuopt=i686"
1900 _march
="-march=$proc"
1901 _mcpu
="$cpuopt=$proc"
1904 else # if test "$_runtime_cpudetection" = no
1905 _mcpu
="$cpuopt=generic"
1906 # at least i486 required, for bswap instruction
1907 _march
="-march=i486"
1908 cflag_check
$_mcpu || _mcpu
="$cpuopt=i686"
1909 cflag_check
$_mcpu || _mcpu
=""
1910 cflag_check
$_march $_mcpu || _march
=""
1913 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1914 ## autodetected mcpu/march parameters
1915 if test "$_target" ; then
1916 # TODO: it may be a good idea to check GCC and fall back in all cases
1917 if test "$host_arch" = "i586-i686"; then
1918 _march
="-march=i586"
1919 _mcpu
="$cpuopt=i686"
1921 _march
="-march=$host_arch"
1922 _mcpu
="$cpuopt=$host_arch"
1930 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx
) iproc
=586 ;;
1931 i686|athlon
*|pentium
*) iproc
=686 ;;
1936 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1941 test $_fast_clz = "auto" && _fast_clz
=yes
1948 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
1955 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
1956 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
1959 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1960 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1965 if test "$_runtime_cpudetection" = no
; then
1970 test $_fast_clz = "auto" && _fast_clz
=no
1979 # 64-bit prescotts exist, but as far as GCC is concerned they
1980 # have the same capabilities as a nocona.
1982 test $_fast_cmov = "auto" && _fast_cmov
=no
1983 test $_fast_clz = "auto" && _fast_clz
=no
1990 fi # test "$_runtime_cpudetection" = no
1992 echocheck
"GCC & CPU optimization abilities"
1993 # This is a stripped-down version of the i386 fallback.
1994 if test "$_runtime_cpudetection" = no
; then
1995 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1996 cflag_check
-march=native
&& proc
=native
1998 # --- AMD processors ---
1999 if test "$proc" = "amdfam10"; then
2000 cflag_check
-march=$proc $cpuopt=$proc || proc
=k8
2002 if test "$proc" = "k8"; then
2003 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon-xp
2005 # This will fail if gcc version < 3.3, which is ok because earlier
2006 # versions don't really support 64-bit on amd64.
2007 # Is this a valid assumption? -Corey
2008 if test "$proc" = "athlon-xp"; then
2009 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
2011 # --- Intel processors ---
2012 if test "$proc" = "core2"; then
2013 cflag_check
-march=$proc $cpuopt=$proc || proc
=x86-64
2015 if test "$proc" = "x86-64"; then
2016 cflag_check
-march=$proc $cpuopt=$proc || proc
=nocona
2018 if test "$proc" = "nocona"; then
2019 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium4
2021 if test "$proc" = "pentium4"; then
2022 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
2025 _march
="-march=$proc"
2026 _mcpu
="$cpuopt=$proc"
2027 if test "$proc" = "error" ; then
2028 echores
"CPU optimization disabled. CPU not recognized or your compiler is too old."
2032 else # if test "$_runtime_cpudetection" = no
2033 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2034 _march
="-march=x86-64"
2035 _mcpu
="$cpuopt=generic"
2036 cflag_check
$_mcpu || _mcpu
="x86-64"
2037 cflag_check
$_mcpu || _mcpu
=""
2038 cflag_check
$_march $_mcpu || _march
=""
2042 test $_fast_cmov = "auto" && _fast_cmov
=yes
2043 test $_fast_clz = "auto" && _fast_clz
=yes
2051 if test "$host_arch" = "sparc64" ; then
2054 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2056 echocheck
"CPU type"
2058 case "$(echo $karch)" in
2063 sun4u
) proc
=ultrasparc _vis
='yes' ;;
2082 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
2084 test $_fast_clz = "auto" && _fast_clz
=yes
2092 ppc|ppc64|powerpc|powerpc64
)
2094 def_dcbzl
='#define HAVE_DCBZL 0'
2095 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
2098 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2100 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2102 echocheck
"CPU type"
2103 case $system_name in
2105 proc
=$
($_cpuinfo |
grep 'cpu' | cut
-d ':' -f 2 | cut
-d ',' -f 1 | cut
-b 2- |
head -n 1)
2106 if test -n "$($_cpuinfo | grep altivec)"; then
2107 test $_altivec = auto
&& _altivec
=yes
2111 proc
=$
($_cpuinfo |
grep "Processor type" | cut
-f 3 -d ' ' |
sed 's/ppc//')
2112 if [ $
(sysctl
-n hw.vectorunit
) -eq 1 -o \
2113 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2114 test $_altivec = auto
&& _altivec
=yes
2118 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2120 2*|
3.0*|
3.1*|
3.2*|
3.3*)
2123 if [ $
(sysctl
-n machdep.altivec
) -eq 1 ]; then
2124 test $_altivec = auto
&& _altivec
=yes
2130 proc
=$
($_cpuinfo |
grep 'type' | cut
-f 2 -d ' ' |
sed 's/PowerPC_//')
2133 if test "$_altivec" = yes; then
2134 echores
"$proc altivec"
2140 echocheck
"GCC & CPU optimization abilities"
2142 if test -n "$proc"; then
2144 601) _march
='-mcpu=601' _mcpu
='-mtune=601' ;;
2145 603) _march
='-mcpu=603' _mcpu
='-mtune=603' ;;
2146 603e|
603ev
) _march
='-mcpu=603e' _mcpu
='-mtune=603e' ;;
2147 604|
604e|
604r|
604ev
) _march
='-mcpu=604' _mcpu
='-mtune=604' ;;
2148 740|
740/750|
745/755) _march
='-mcpu=740' _mcpu
='-mtune=740' ;;
2149 750|
750CX
) _march
='-mcpu=750' _mcpu
='-mtune=750' ;;
2150 POWER
) _march
='-mcpu=power' _mcpu
='-mtune=power' ;;
2151 POWER2
) _march
='-mcpu=power2' _mcpu
='-mtune=power2' ;;
2152 POWER3
) _march
='-mcpu=power3' _mcpu
='-mtune=power3' ;;
2155 # gcc 3.1(.1) and up supports 7400 and 7450
2156 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" ||
test "$_cc_major" -ge "4"; then
2158 7400*|
7410*) _march
='-mcpu=7400' _mcpu
='-mtune=7400' ;;
2159 7447*|
7450*|
7455*) _march
='-mcpu=7450' _mcpu
='-mtune=7450' ;;
2163 # gcc 3.2 and up supports 970
2164 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" ||
test "$_cc_major" -ge "4"; then
2166 970*|PPC970
*) _march
='-mcpu=970' _mcpu
='-mtune=970'
2167 def_dcbzl
='#define HAVE_DCBZL 1' ;;
2171 # gcc 3.3 and up supports POWER4
2172 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" ||
test "$_cc_major" -ge "4"; then
2174 POWER4
) _march
='-mcpu=power4' _mcpu
='-mtune=power4' ;;
2178 # gcc 3.4 and up supports 440*
2179 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" ||
test "$_cc_major" -ge "4"; then
2181 440EP
*) _march
='-mcpu=440fp' _mcpu
='-mtune=440fp' ;;
2182 440G
* ) _march
='-mcpu=440' _mcpu
='-mtune=440' ;;
2186 # gcc 4.0 and up supports POWER5
2187 if test "$_cc_major" -ge "4"; then
2189 POWER5
*) _march
='-mcpu=power5' _mcpu
='-mtune=power5' ;;
2195 if test -n "$_mcpu"; then
2196 _optimizing
=$
(echo $_mcpu | cut
-c 8-)
2197 echores
"$_optimizing"
2202 test $_fast_clz = "auto" && _fast_clz
=yes
2209 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2211 echocheck
"CPU type"
2214 unsigned long ver, mask;
2215 __asm__ ("implver %0" : "=r" (ver));
2216 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2217 printf("%ld-%x\n", ver, ~mask);
2221 $_cc -o "$TMPEXE" "$TMPC"
2222 case $
("$TMPEXE") in
2224 0-0) proc
="ev4"; _mvi
="0";;
2225 1-0) proc
="ev5"; _mvi
="0";;
2226 1-1) proc
="ev56"; _mvi
="0";;
2227 1-101) proc
="pca56"; _mvi
="1";;
2228 2-303) proc
="ev6"; _mvi
="1";;
2229 2-307) proc
="ev67"; _mvi
="1";;
2230 2-1307) proc
="ev68"; _mvi
="1";;
2234 echocheck
"GCC & CPU optimization abilities"
2235 if test "$proc" = "ev68" ; then
2236 cc_check
-mcpu=$proc || proc
=ev67
2238 if test "$proc" = "ev67" ; then
2239 cc_check
-mcpu=$proc || proc
=ev6
2244 test $_fast_clz = "auto" && _fast_clz
=yes
2254 echocheck
"CPU type"
2255 proc
=$
(hinv
-c processor |
grep CPU | cut
-d " " -f3)
2256 case "$(echo $proc)" in
2257 R3000
) _march
='-mips1' _mcpu
='-mtune=r2000' ;;
2258 R4000
) _march
='-mips3' _mcpu
='-mtune=r4000' ;;
2259 R4400
) _march
='-mips3' _mcpu
='-mtune=r4400' ;;
2260 R4600
) _march
='-mips3' _mcpu
='-mtune=r4600' ;;
2261 R5000
) _march
='-mips4' _mcpu
='-mtune=r5000' ;;
2262 R8000|R10000|R12000|R14000|R16000
) _march
='-mips4' _mcpu
='-mtune=r8000' ;;
2264 # gcc < 3.x does not support -mtune.
2265 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2271 test $_fast_clz = "auto" && _fast_clz
=yes
2305 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2306 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2307 die
"unsupported architecture $host_arch"
2309 esac # case "$host_arch" in
2311 if test "$_runtime_cpudetection" = yes ; then
2313 test "$_cmov" != no
&& _cmov
=yes
2315 test "$_mmx" != no
&& _mmx
=yes
2316 test "$_3dnow" != no
&& _3dnow
=yes
2317 test "$_3dnowext" != no
&& _3dnowext
=yes
2318 test "$_mmxext" != no
&& _mmxext
=yes
2319 test "$_sse" != no
&& _sse
=yes
2320 test "$_sse2" != no
&& _sse2
=yes
2321 test "$_ssse3" != no
&& _ssse3
=yes
2322 test "$_mtrr" != no
&& _mtrr
=yes
2331 echocheck
"byte order"
2332 if test "$_big_endian" = auto
; then
2334 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2335 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2336 int main(void) { return (long)ascii_name; }
2339 if strings $TMPEXE |
grep -q -l MPlayerBigEndian
; then
2345 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2348 if test "$_big_endian" = yes ; then
2349 _byte_order
='big-endian'
2350 def_words_endian
='#define WORDS_BIGENDIAN 1'
2351 def_bigendian
='#define HAVE_BIGENDIAN 1'
2353 _byte_order
='little-endian'
2354 def_words_endian
='#undef WORDS_BIGENDIAN'
2355 def_bigendian
='#define HAVE_BIGENDIAN 0'
2357 echores
"$_byte_order"
2360 echocheck
"extern symbol prefix"
2364 cc_check
-c || die
"Symbol mangling check failed."
2365 sym
=$
($_nm -P -g $TMPEXE)
2366 extern_prefix
=${sym%%ff_extern*}
2367 def_extern_asm
="#define EXTERN_ASM $extern_prefix"
2368 def_extern_prefix
="#define EXTERN_PREFIX \"$extern_prefix\""
2369 echores
$extern_prefix
2372 echocheck
"assembler support of -pipe option"
2373 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2374 cflag_check
-pipe -I.
&& _pipe
="-pipe" && echores
"yes" || echores
"no"
2377 echocheck
"compiler support of named assembler arguments"
2379 def_named_asm_args
="#define NAMED_ASM_ARGS 1"
2380 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2381 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2383 def_named_asm_args
="#undef NAMED_ASM_ARGS"
2385 echores
$_named_asm_args
2388 if darwin
&& test "$cc_vendor" = "gnu" ; then
2389 echocheck
"GCC support of -mstackrealign"
2390 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2391 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2392 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2393 # wrong code with this flag, but this can be worked around by adding
2394 # -fno-unit-at-a-time as described in the blog post at
2395 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2397 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2398 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2400 cc_check
-O2 -mstackrealign && tmp_run
&& cflags_stackrealign
=-mstackrealign
2401 test -z "$cflags_stackrealign" && cc_check
-O2 -mstackrealign -fno-unit-at-a-time \
2402 && tmp_run
&& cflags_stackrealign
="-mstackrealign -fno-unit-at-a-time"
2403 test -n "$cflags_stackrealign" && echores
"yes" || echores
"no"
2404 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2407 # Checking for CFLAGS
2409 if test "$_profile" != "" ||
test "$_debug" != "" ; then
2410 CFLAGS
="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2411 WARNFLAGS
="-W -Wall"
2413 elif test -z "$CFLAGS" ; then
2414 if test "$cc_vendor" = "intel" ; then
2415 CFLAGS
="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2416 WARNFLAGS
="-wd167 -wd556 -wd144"
2417 elif test "$cc_vendor" = "sun" ; then
2418 CFLAGS
="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2419 elif test "$cc_vendor" = "clang"; then
2420 CFLAGS
="-O2 $_march $_pipe"
2421 elif test "$cc_vendor" != "gnu" ; then
2422 CFLAGS
="-O2 $_march $_mcpu $_pipe"
2424 CFLAGS
="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2425 WARNFLAGS
="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2426 extra_ldflags
="$extra_ldflags -ffast-math"
2432 if test "$cc_vendor" = "gnu" ; then
2433 cflag_check
-Wundef && WARNFLAGS
="-Wundef $WARNFLAGS"
2434 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2435 # that's the only variable specific to C now, and this option is not valid
2437 cflag_check
-std=gnu99
&& WARN_CFLAGS
="-std=gnu99 $WARN_CFLAGS"
2438 cflag_check
-Wno-pointer-sign && WARN_CFLAGS
="-Wno-pointer-sign $WARN_CFLAGS"
2439 cflag_check
-Wdisabled-optimization && WARN_CFLAGS
="-Wdisabled-optimization $WARN_CFLAGS"
2440 cflag_check
-Wmissing-prototypes && WARN_CFLAGS
="-Wmissing-prototypes $WARN_CFLAGS"
2441 cflag_check
-Wstrict-prototypes && WARN_CFLAGS
="-Wstrict-prototypes $WARN_CFLAGS"
2443 CFLAGS
="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2446 cflag_check
-mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer
="-mno-omit-leaf-frame-pointer"
2447 cflag_check
-MD -MP && DEPFLAGS
="-MD -MP"
2450 if test -n "$LDFLAGS" ; then
2451 extra_ldflags
="$extra_ldflags $LDFLAGS"
2453 elif test "$cc_vendor" = "intel" ; then
2454 extra_ldflags
="$extra_ldflags -i-static"
2456 if test -n "$CPPFLAGS" ; then
2457 extra_cflags
="$extra_cflags $CPPFLAGS"
2464 # Checking assembler (_as) compatibility...
2465 # Added workaround for older as that reads from stdin by default - atmos
2466 as_version
=$
(echo '' |
$_as -version 2>&1 |
sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2467 echocheck
"assembler ($_as $as_version)"
2469 _pref_as_version
='2.9.1'
2471 if test "$_mmx" = yes ; then
2472 echo 'emms' >> $TMPS
2474 if test "$_3dnow" = yes ; then
2475 _pref_as_version
='2.10.1'
2476 echo 'femms' >> $TMPS
2478 if test "$_3dnowext" = yes ; then
2479 _pref_as_version
='2.10.1'
2480 echo 'pswapd %mm0, %mm0' >> $TMPS
2482 if test "$_mmxext" = yes ; then
2483 _pref_as_version
='2.10.1'
2484 echo 'movntq %mm0, (%eax)' >> $TMPS
2486 if test "$_sse" = yes ; then
2487 _pref_as_version
='2.10.1'
2488 echo 'xorps %xmm0, %xmm0' >> $TMPS
2490 #if test "$_sse2" = yes ; then
2491 # _pref_as_version='2.11'
2492 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2494 if test "$_cmov" = yes ; then
2495 _pref_as_version
='2.10.1'
2496 echo 'cmovb %eax, %ebx' >> $TMPS
2498 if test "$_ssse3" = yes ; then
2499 _pref_as_version
='2.16.92'
2500 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2502 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 || as_verc_fail
=yes
2504 if test "$as_verc_fail" != yes ; then
2507 res_comment
="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2509 die
"obsolete binutils version"
2514 echocheck
".align is a power of two"
2515 if test "$_asmalign_pot" = auto
; then
2517 inline_asm_check
'".align 3"' && _asmalign_pot
=yes
2519 if test "$_asmalign_pot" = "yes" ; then
2520 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2522 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2524 echores
$_asmalign_pot
2531 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2532 #error PIC not enabled
2537 cc_check
&& pic
=yes && extra_cflags
="$extra_cflags -DPIC"
2542 echocheck
"10 assembler operands"
2544 def_ten_operands
='#define HAVE_TEN_OPERANDS 0'
2550 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2555 cc_check
&& ten_operands
=yes && def_ten_operands
='#define HAVE_TEN_OPERANDS 1'
2556 echores
$ten_operands
2558 echocheck
"ebx availability"
2560 def_ebx_available
='#define HAVE_EBX_AVAILABLE 0'
2567 // just adding ebx to clobber list seems unreliable with some
2568 // compilers, e.g. Haiku's gcc 2.95
2570 // and the above check does not work for OSX 64 bit...
2571 __asm__ volatile("":::"%ebx");
2575 cc_check
&& ebx_available
=yes && def_ebx_available
='#define HAVE_EBX_AVAILABLE 1'
2576 echores
$ebx_available
2580 if test -z "$YASMFLAGS" ; then
2582 x86_64
&& objformat
="macho64" || objformat
="macho"
2588 # currently tested for Linux x86, x86_64
2589 YASMFLAGS
="-f $objformat"
2590 x86_64
&& YASMFLAGS
="$YASMFLAGS -DARCH_X86_64 -m amd64"
2591 test "$pic" = "yes" && YASMFLAGS
="$YASMFLAGS -DPIC"
2592 case "$objformat" in
2593 elf
) test $_debug && YASMFLAGS
="$YASMFLAGS -g dwarf2" ;;
2594 *) YASMFLAGS
="$YASMFLAGS -DPREFIX" ;;
2600 echo "pabsw xmm0, xmm0" > $TMPS
2601 yasm_check || _yasm
=""
2602 if test $_yasm ; then
2603 def_yasm
='#define HAVE_YASM 1'
2607 def_yasm
='#define HAVE_YASM 0'
2613 def_bswap
='#define HAVE_BSWAP 0'
2614 echo 'bswap %eax' > $TMPS
2615 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 && def_bswap
='#define HAVE_BSWAP 1' && bswap
=yes || bswap
=no
2620 #FIXME: This should happen before the check for CFLAGS..
2621 def_altivec_h
='#define HAVE_ALTIVEC_H 0'
2622 if ppc
&& ( test "$_altivec" = yes ||
test "$_runtime_cpudetection" = yes ) ; then
2624 # check if AltiVec is supported by the compiler, and how to enable it
2625 echocheck
"GCC AltiVec flags"
2626 if $
(cflag_check
-maltivec -mabi=altivec
) ; then
2627 _altivec_gcc_flags
="-maltivec -mabi=altivec"
2628 # check if <altivec.h> should be included
2629 if $
(header_check altivec.h
$_altivec_gcc_flags) ; then
2630 def_altivec_h
='#define HAVE_ALTIVEC_H 1'
2631 inc_altivec_h
='#include <altivec.h>'
2633 if $
(cflag_check
-faltivec) ; then
2634 _altivec_gcc_flags
="-faltivec"
2637 _altivec_gcc_flags
="none, AltiVec disabled"
2641 echores
"$_altivec_gcc_flags"
2643 # check if the compiler supports braces for vector declarations
2646 int main(void) { (vector int) {1}; return 0; }
2648 cc_check
$_altivec_gcc_flags || die
"You need a compiler that supports {} in AltiVec vector declarations."
2650 # Disable runtime cpudetection if we cannot generate AltiVec code or
2651 # AltiVec is disabled by the user.
2652 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2653 && _runtime_cpudetection
=no
2655 # Show that we are optimizing for AltiVec (if enabled and supported).
2656 test "$_runtime_cpudetection" = no
&& test "$_altivec" = yes \
2657 && _optimizing
="$_optimizing altivec"
2659 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2660 test "$_altivec" = yes && CFLAGS
="$CFLAGS $_altivec_gcc_flags"
2664 def_xform_asm
='#define HAVE_XFORM_ASM 0'
2666 echocheck
"XFORM ASM support"
2667 inline_asm_check
'"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2668 xform_asm
=yes && def_xform_asm
='#define HAVE_XFORM_ASM 1'
2669 echores
"$xform_asm"
2673 echocheck
"ARM pld instruction"
2675 inline_asm_check
'"pld [r0]"' && pld
=yes
2678 echocheck
"ARMv5TE (Enhanced DSP Extensions)"
2679 if test $_armv5te = "auto" ; then
2681 inline_asm_check
'"qadd r0, r0, r0"' && _armv5te
=yes
2685 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz
=yes
2687 echocheck
"ARMv6 (SIMD instructions)"
2688 if test $_armv6 = "auto" ; then
2690 inline_asm_check
'"sadd16 r0, r0, r0"' && _armv6
=yes
2694 echocheck
"ARMv6t2 (SIMD instructions)"
2695 if test $_armv6t2 = "auto" ; then
2697 inline_asm_check
'"movt r0, #0"' && _armv6t2
=yes
2702 if test $_armvfp = "auto" ; then
2704 inline_asm_check
'"fadds s0, s0, s0"' && _armvfp
=yes
2708 echocheck
"ARM NEON"
2709 if test $neon = "auto" ; then
2711 inline_asm_check
'"vadd.i16 q0, q0, q0"' && neon
=yes
2715 echocheck
"iWMMXt (Intel XScale SIMD instructions)"
2716 if test $_iwmmxt = "auto" ; then
2718 inline_asm_check
'"wunpckelub wr6, wr4"' && _iwmmxt
=yes
2723 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'
2724 test "$_altivec" = yes && cpuexts
="ALTIVEC $cpuexts"
2725 test "$_mmx" = yes && cpuexts
="MMX $cpuexts"
2726 test "$_mmxext" = yes && cpuexts
="MMX2 $cpuexts"
2727 test "$_3dnow" = yes && cpuexts
="AMD3DNOW $cpuexts"
2728 test "$_3dnowext" = yes && cpuexts
="AMD3DNOWEXT $cpuexts"
2729 test "$_sse" = yes && cpuexts
="SSE $cpuexts"
2730 test "$_sse2" = yes && cpuexts
="SSE2 $cpuexts"
2731 test "$_ssse3" = yes && cpuexts
="SSSE3 $cpuexts"
2732 test "$_cmov" = yes && cpuexts
="CMOV $cpuexts"
2733 test "$_fast_cmov" = yes && cpuexts
="FAST_CMOV $cpuexts"
2734 test "$_fast_clz" = yes && cpuexts
="FAST_CLZ $cpuexts"
2735 test "$pld" = yes && cpuexts
="PLD $cpuexts"
2736 test "$_armv5te" = yes && cpuexts
="ARMV5TE $cpuexts"
2737 test "$_armv6" = yes && cpuexts
="ARMV6 $cpuexts"
2738 test "$_armv6t2" = yes && cpuexts
="ARMV6T2 $cpuexts"
2739 test "$_armvfp" = yes && cpuexts
="ARMVFP $cpuexts"
2740 test "$neon" = yes && cpuexts
="NEON $cpuexts"
2741 test "$_iwmmxt" = yes && cpuexts
="IWMMXT $cpuexts"
2742 test "$_vis" = yes && cpuexts
="VIS $cpuexts"
2743 test "$_mvi" = yes && cpuexts
="MVI $cpuexts"
2745 # Checking kernel version...
2746 if x86_32
&& linux
; then
2748 kernel_version
=$
(uname
-r 2>&1)
2749 echocheck
"$system_name kernel version"
2750 case "$kernel_version" in
2751 '') kernel_version
="?.??"; _k_verc_fail
=yes;;
2752 [0-1].
[0-9].
[0-9]*|
2.
[0-3].
[0-9]*)
2753 _k_verc_problem
=yes;;
2755 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2758 if test "$_k_verc_fail" ; then
2759 echores
"$kernel_version, fail"
2760 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2761 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2762 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2763 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2764 echo "2.2.x you must upgrade it to get SSE support!"
2765 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2767 echores
"$kernel_version, ok"
2771 ######################
2772 # MAIN TESTS GO HERE #
2773 ######################
2777 if cflag_check
-lposix ; then
2778 extra_ldflags
="$extra_ldflags -lposix"
2785 if cflag_check
-lm ; then
2794 echocheck
"langinfo"
2795 if test "$_langinfo" = auto
; then
2797 function_check langinfo.h
'nl_langinfo(CODESET)' && _langinfo
=yes
2799 if test "$_langinfo" = yes ; then
2800 def_langinfo
='#define HAVE_LANGINFO 1'
2802 def_langinfo
='#undef HAVE_LANGINFO'
2804 echores
"$_langinfo"
2807 echocheck
"translation support"
2808 if test "$_translation" = yes; then
2809 def_translation
="#define CONFIG_TRANSLATION 1"
2811 def_translation
="#undef CONFIG_TRANSLATION"
2813 echores
"$_translation"
2815 echocheck
"language"
2816 # Set preferred languages, "all" uses English as main language.
2817 test -z "$language" && language
=$LINGUAS
2818 test -z "$language_doc" && language_doc
=$language
2819 test -z "$language_man" && language_man
=$language
2820 test -z "$language_msg" && language_msg
="all"
2821 language_doc
=$
(echo $language_doc |
tr , " ")
2822 language_man
=$
(echo $language_man |
tr , " ")
2823 language_msg
=$
(echo $language_msg |
tr , " ")
2825 test "$language_doc" = "all" && language_doc
=$doc_lang_all
2826 test "$language_man" = "all" && language_man
=$man_lang_all
2827 test "$language_msg" = "all" && language_msg
=$msg_lang_all
2829 if test "$_translation" != yes ; then
2833 # Prune non-existing translations from language lists.
2834 # Set message translation to the first available language.
2835 # Fall back on English.
2836 for lang
in $language_doc ; do
2837 test -d DOCS
/xml
/$lang && tmp_language_doc
="$tmp_language_doc $lang"
2839 language_doc
=$tmp_language_doc
2840 test -z "$language_doc" && language_doc
=en
2842 for lang
in $language_man ; do
2843 test -d DOCS
/man
/$lang && tmp_language_man
="$tmp_language_man $lang"
2845 language_man
=$tmp_language_man
2846 test -z "$language_man" && language_man
=en
2848 for lang
in $language_msg ; do
2849 test -f po
/$lang.po
&& tmp_language_msg
="$tmp_language_msg $lang"
2851 language_msg
=$tmp_language_msg
2853 echores
"messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2856 echocheck
"enable sighandler"
2857 if test "$_sighandler" = yes ; then
2858 def_sighandler
='#define CONFIG_SIGHANDLER 1'
2860 def_sighandler
='#undef CONFIG_SIGHANDLER'
2862 echores
"$_sighandler"
2864 echocheck
"runtime cpudetection"
2865 if test "$_runtime_cpudetection" = yes ; then
2866 _optimizing
="Runtime CPU-Detection enabled"
2867 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 1'
2869 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 0'
2871 echores
"$_runtime_cpudetection"
2874 echocheck
"restrict keyword"
2875 for restrict_keyword
in restrict __restrict __restrict__
; do
2876 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2878 def_restrict_keyword
=$restrict_keyword
2882 if [ -n "$def_restrict_keyword" ]; then
2883 echores
"$def_restrict_keyword"
2887 # Avoid infinite recursion loop ("#define restrict restrict")
2888 if [ "$def_restrict_keyword" != "restrict" ]; then
2889 def_restrict_keyword
="#define restrict $def_restrict_keyword"
2891 def_restrict_keyword
=""
2895 echocheck
"__builtin_expect"
2896 # GCC branch prediction hint
2898 static int foo(int a) {
2899 a = __builtin_expect(a, 10);
2900 return a == 10 ? 0 : 1;
2902 int main(void) { return foo(10) && foo(0); }
2905 cc_check
&& _builtin_expect
=yes
2906 if test "$_builtin_expect" = yes ; then
2907 def_builtin_expect
='#define HAVE_BUILTIN_EXPECT 1'
2909 def_builtin_expect
='#undef HAVE_BUILTIN_EXPECT'
2911 echores
"$_builtin_expect"
2916 function_check kstat.h
'kstat_open()' -lkstat && _kstat
=yes
2917 if test "$_kstat" = yes ; then
2918 def_kstat
="#define HAVE_LIBKSTAT 1"
2919 extra_ldflags
="$extra_ldflags -lkstat"
2921 def_kstat
="#undef HAVE_LIBKSTAT"
2927 # required for nanosleep on some systems
2929 function_check
time.h
'nanosleep(0, 0)' -lposix4 && _posix4
=yes
2930 if test "$_posix4" = yes ; then
2931 extra_ldflags
="$extra_ldflags -lposix4"
2935 for func
in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf
; do
2938 function_check math.h
"${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _
$func=yes
2939 if eval test "x\$_$func" = "xyes"; then
2940 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2943 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2952 int main(void) { char a; mkstemp(&a); return 0; }
2955 cc_check
&& _mkstemp
=yes
2956 if test "$_mkstemp" = yes ; then
2957 def_mkstemp
='#define HAVE_MKSTEMP 1'
2959 def_mkstemp
='#undef HAVE_MKSTEMP'
2964 echocheck
"nanosleep"
2966 function_check
time.h
'nanosleep(0, 0)' && _nanosleep
=yes
2967 if test "$_nanosleep" = yes ; then
2968 def_nanosleep
='#define HAVE_NANOSLEEP 1'
2970 def_nanosleep
='#undef HAVE_NANOSLEEP'
2972 echores
"$_nanosleep"
2976 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2977 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2980 #include <sys/socket.h>
2981 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2984 for _ld_tmp
in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2985 cc_check
$_ld_tmp && _ld_sock
="$_ld_tmp" && _socklib
=yes && break
2987 test $_socklib = yes && test $_winsock2_h = auto
&& _winsock2_h
=no
2988 if test $_winsock2_h = auto
; then
2990 function_check winsock2.h
'gethostbyname(0)' -lws2_32 && _ld_sock
="-lws2_32" && _winsock2_h
=yes
2992 test "$_ld_sock" && res_comment
="using $_ld_sock"
2996 if test $_winsock2_h = yes ; then
2998 def_winsock2_h
='#define HAVE_WINSOCK2_H 1'
3000 def_winsock2_h
='#define HAVE_WINSOCK2_H 0'
3004 echocheck
"arpa/inet.h"
3006 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 0'
3007 header_check arpa
/inet.h
&& arpa_inet_h
=yes &&
3008 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 1'
3009 echores
"$arpa_inet_h"
3012 echocheck
"inet_pton()"
3013 def_inet_pton
='#define HAVE_INET_PTON 0'
3016 #include <sys/types.h>
3017 #include <sys/socket.h>
3018 #include <arpa/inet.h>
3019 int main(void) { inet_pton(0, 0, 0); return 0; }
3021 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3022 cc_check
$_ld_tmp && inet_pton
=yes && break
3024 if test $inet_pton = yes ; then
3025 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3026 def_inet_pton
='#define HAVE_INET_PTON 1'
3028 echores
"$inet_pton"
3031 echocheck
"inet_aton()"
3032 def_inet_aton
='#define HAVE_INET_ATON 0'
3035 #include <sys/types.h>
3036 #include <sys/socket.h>
3037 #include <arpa/inet.h>
3038 int main(void) { inet_aton(0, 0); return 0; }
3040 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3041 cc_check
$_ld_tmp && inet_aton
=yes && break
3043 if test $inet_aton = yes ; then
3044 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3045 def_inet_aton
='#define HAVE_INET_ATON 1'
3047 echores
"$inet_aton"
3050 echocheck
"socklen_t"
3052 for header
in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3055 int main(void) { socklen_t v = 0; return v; }
3057 cc_check
&& _socklen_t
=yes && break
3059 if test "$_socklen_t" = yes ; then
3060 def_socklen_t
='#define HAVE_SOCKLEN_T 1'
3062 def_socklen_t
='#define HAVE_SOCKLEN_T 0'
3064 echores
"$_socklen_t"
3067 echocheck
"closesocket()"
3069 function_check winsock2.h
'closesocket(~0)' $_ld_sock && _closesocket
=yes
3070 if test "$_closesocket" = yes ; then
3071 def_closesocket
='#define HAVE_CLOSESOCKET 1'
3073 def_closesocket
='#define HAVE_CLOSESOCKET 0'
3075 echores
"$_closesocket"
3078 echocheck
"networking"
3079 test $_winsock2_h = no
&& test $inet_pton = no
&&
3080 test $inet_aton = no
&& networking
=no
3081 if test "$networking" = yes ; then
3082 def_network
='#define CONFIG_NETWORK 1'
3083 def_networking
='#define CONFIG_NETWORKING 1'
3084 extra_ldflags
="$extra_ldflags $_ld_sock"
3085 inputmodules
="networking $inputmodules"
3087 noinputmodules
="networking $noinputmodules"
3088 def_network
='#undef CONFIG_NETWORK'
3089 def_networking
='#undef CONFIG_NETWORKING'
3092 echores
"$networking"
3096 if test "$_inet6" = auto
; then
3098 #include <sys/types.h>
3099 #if !defined(_WIN32) || defined(__CYGWIN__)
3100 #include <sys/socket.h>
3101 #include <netinet/in.h>
3103 #include <ws2tcpip.h>
3105 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3108 if cc_check
$_ld_sock ; then
3112 if test "$_inet6" = yes ; then
3113 def_inet6
='#define HAVE_AF_INET6 1'
3115 def_inet6
='#undef HAVE_AF_INET6'
3120 echocheck
"gethostbyname2"
3121 if test "$_gethostbyname2" = auto
; then
3123 #include <sys/types.h>
3124 #include <sys/socket.h>
3126 int main(void) { gethostbyname2("", AF_INET); return 0; }
3133 if test "$_gethostbyname2" = yes ; then
3134 def_gethostbyname2
='#define HAVE_GETHOSTBYNAME2 1'
3136 def_gethostbyname2
='#undef HAVE_GETHOSTBYNAME2'
3138 echores
"$_gethostbyname2"
3141 echocheck
"inttypes.h (required)"
3143 header_check inttypes.h
&& _inttypes
=yes
3144 echores
"$_inttypes"
3146 if test "$_inttypes" = no
; then
3147 echocheck
"sys/bitypes.h (inttypes.h predecessor)"
3148 header_check sys
/bitypes.h
&& _inttypes
=yes
3149 if test "$_inttypes" = yes ; then
3150 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."
3152 die
"Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3157 echocheck
"int_fastXY_t in inttypes.h"
3159 #include <inttypes.h>
3161 volatile int_fast16_t v= 0;
3165 cc_check
&& _fast_inttypes
=yes
3166 if test "$_fast_inttypes" = no
; then
3168 typedef signed char int_fast8_t;
3169 typedef signed int int_fast16_t;
3170 typedef signed int int_fast32_t;
3171 typedef signed long long int_fast64_t;
3172 typedef unsigned char uint_fast8_t;
3173 typedef unsigned int uint_fast16_t;
3174 typedef unsigned int uint_fast32_t;
3175 typedef unsigned long long uint_fast64_t;'
3177 echores
"$_fast_inttypes"
3180 echocheck
"malloc.h"
3182 header_check malloc.h
&& _malloc
=yes
3183 if test "$_malloc" = yes ; then
3184 def_malloc_h
='#define HAVE_MALLOC_H 1'
3186 def_malloc_h
='#define HAVE_MALLOC_H 0'
3191 echocheck
"memalign()"
3192 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3193 def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 0'
3195 function_check malloc.h
'memalign(64, sizeof(char))' && _memalign
=yes
3196 if test "$_memalign" = yes ; then
3197 def_memalign
='#define HAVE_MEMALIGN 1'
3199 def_memalign
='#define HAVE_MEMALIGN 0'
3200 def_map_memalign
='#define memalign(a,b) malloc(b)'
3201 darwin || def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 1'
3203 echores
"$_memalign"
3206 echocheck
"posix_memalign()"
3208 def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 0'
3210 #define _XOPEN_SOURCE 600
3212 int main(void) { posix_memalign(NULL, 0, 0); }
3214 cc_check
&& posix_memalign
=yes && def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 1'
3215 echores
"$posix_memalign"
3218 echocheck
"alloca.h"
3220 function_check alloca.h
'alloca(0)' && _alloca
=yes
3222 def_alloca_h
='#define HAVE_ALLOCA_H 1'
3224 def_alloca_h
='#undef HAVE_ALLOCA_H'
3229 echocheck
"fastmemcpy"
3230 if test "$_fastmemcpy" = yes ; then
3231 def_fastmemcpy
='#define CONFIG_FASTMEMCPY 1'
3233 def_fastmemcpy
='#undef CONFIG_FASTMEMCPY'
3235 echores
"$_fastmemcpy"
3240 function_check sys
/mman.h
'mmap(0, 0, 0, 0, 0, 0)' && _mman
=yes
3241 if test "$_mman" = yes ; then
3242 def_mman_h
='#define HAVE_SYS_MMAN_H 1'
3244 def_mman_h
='#undef HAVE_SYS_MMAN_H'
3245 os2
&& _need_mmap
=yes
3250 #include <sys/mman.h>
3251 int main(void) { void *p = MAP_FAILED; return 0; }
3253 _mman_has_map_failed
=no
3254 cc_check
&& _mman_has_map_failed
=yes
3255 if test "$_mman_has_map_failed" = yes ; then
3256 def_mman_has_map_failed
=''
3258 def_mman_has_map_failed
='#define MAP_FAILED ((void *) -1)'
3261 echocheck
"dynamic loader"
3263 for _ld_tmp
in "" "-ldl"; do
3264 function_check dlfcn.h
'dlopen("", 0)' $_ld_tmp && _ld_dl
="$_ld_tmp" && _dl
=yes && break
3266 if test "$_dl" = yes ; then
3267 def_dl
='#define HAVE_LIBDL 1'
3269 def_dl
='#undef HAVE_LIBDL'
3274 echocheck
"dynamic a/v plugins support"
3275 if test "$_dl" = no
; then
3278 if test "$_dynamic_plugins" = yes ; then
3279 def_dynamic_plugins
='#define CONFIG_DYNAMIC_PLUGINS 1'
3281 def_dynamic_plugins
='#undef CONFIG_DYNAMIC_PLUGINS'
3283 echores
"$_dynamic_plugins"
3286 def_threads
='#define HAVE_THREADS 0'
3290 THREAD_CFLAGS
=-D_REENTRANT
3291 elif freebsd || netbsd || openbsd || bsdos
; then
3292 THREAD_CFLAGS
=-D_THREAD_SAFE
3294 if test "$_pthreads" = auto
; then
3296 #include <pthread.h>
3297 static void *func(void *arg) { return arg; }
3298 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3302 for _ld_tmp
in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3303 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3304 cc_check
$THREAD_CFLAGS $_ld_tmp && (tmp_run ||
test "$_ld_static") && _ld_pthread
="$_ld_tmp" && _pthreads
=yes && break
3308 if test "$_pthreads" = yes ; then
3309 test $_ld_pthread && res_comment
="using $_ld_pthread"
3310 def_pthreads
='#define HAVE_PTHREADS 1'
3311 def_threads
='#define HAVE_THREADS 1'
3312 extra_cflags
="$extra_cflags $THREAD_CFLAGS"
3314 res_comment
="v4l, v4l2, ao_nas, win32 loader disabled"
3315 def_pthreads
='#undef HAVE_PTHREADS'
3316 _nas
=no
; _tv_v4l1
=no
; _tv_v4l2
=no
3317 mingw32 || _win32dll
=no
3319 echores
"$_pthreads"
3322 if test "$_pthreads" = yes ; then
3323 def_pthread_cache
="#define PTHREAD_CACHE 1"
3326 def_stream_cache
="#undef CONFIG_STREAM_CACHE"
3330 echocheck
"w32threads"
3331 if test "$_pthreads" = yes ; then
3332 res_comment
="using pthread instead"
3335 if test "$_w32threads" = auto
; then
3337 mingw32
&& _w32threads
=yes
3339 test "$_w32threads" = yes && def_threads
='#define HAVE_THREADS 1'
3340 echores
"$_w32threads"
3344 if test "$_rpath" = yes ; then
3345 for I
in $
(echo $extra_ldflags |
sed 's/-L//g') ; do
3346 tmp
="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3353 if test "$_iconv" = auto
; then
3358 #define INBUFSIZE 1024
3359 #define OUTBUFSIZE 4096
3361 char inbuffer[INBUFSIZE];
3362 char outbuffer[OUTBUFSIZE];
3367 char *tocode="UTF-8";
3368 char *fromcode="cp1250";
3369 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3370 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3371 char *iptr=inbuffer;
3372 char *optr=outbuffer;
3373 size_t inleft=numread;
3374 size_t outleft=OUTBUFSIZE;
3375 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3377 write(1, outbuffer, OUTBUFSIZE - outleft);
3380 if (iconv_close(icdsc) == -1)
3387 for _ld_tmp
in "" "-liconv" "-liconv $_ld_dl" ; do
3388 cc_check
$_ld_lm $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && \
3392 if test "$_iconv" = yes ; then
3393 def_iconv
='#define CONFIG_ICONV 1'
3395 def_iconv
='#undef CONFIG_ICONV'
3400 echocheck
"soundcard.h"
3402 def_soundcard_h
='#undef HAVE_SOUNDCARD_H'
3403 def_sys_soundcard_h
='#undef HAVE_SYS_SOUNDCARD_H'
3404 for _soundcard_header
in "sys/soundcard.h" "soundcard.h"; do
3405 header_check
$_soundcard_header && _soundcard_h
=yes &&
3406 res_comment
="$_soundcard_header" && break
3409 if test "$_soundcard_h" = yes ; then
3410 if test $_soundcard_header = "sys/soundcard.h"; then
3411 def_sys_soundcard_h
='#define HAVE_SYS_SOUNDCARD_H 1'
3413 def_soundcard_h
='#define HAVE_SOUNDCARD_H 1'
3416 echores
"$_soundcard_h"
3419 echocheck
"sys/dvdio.h"
3421 # FreeBSD 8.1 has broken dvdio.h
3422 header_check_broken sys
/types.h sys
/dvdio.h
&& _dvdio
=yes
3423 if test "$_dvdio" = yes ; then
3424 def_dvdio
='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3426 def_dvdio
='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3431 echocheck
"sys/cdio.h"
3433 # at least OpenSolaris has a broken cdio.h
3434 header_check_broken sys
/types.h sys
/cdio.h
&& _cdio
=yes
3435 if test "$_cdio" = yes ; then
3436 def_cdio
='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3438 def_cdio
='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3443 echocheck
"linux/cdrom.h"
3445 header_check linux
/cdrom.h
&& _cdrom
=yes
3446 if test "$_cdrom" = yes ; then
3447 def_cdrom
='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3449 def_cdrom
='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3456 header_check dvd.h
&& _dvd
=yes
3457 if test "$_dvd" = yes ; then
3458 def_dvd
='#define DVD_STRUCT_IN_DVD_H 1'
3460 def_dvd
='#undef DVD_STRUCT_IN_DVD_H'
3466 echocheck
"BSDI dvd.h"
3468 header_check dvd.h
&& _bsdi_dvd
=yes
3469 if test "$_bsdi_dvd" = yes ; then
3470 def_bsdi_dvd
='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3472 def_bsdi_dvd
='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3474 echores
"$_bsdi_dvd"
3479 # also used by AIX, but AIX does not support VCD and/or libdvdread
3480 echocheck
"HP-UX SCSI header"
3482 header_check sys
/scsi.h
&& _hpux_scsi_h
=yes
3483 if test "$_hpux_scsi_h" = yes ; then
3484 def_hpux_scsi_h
='#define HPUX_SCTL_IO 1'
3486 def_hpux_scsi_h
='#undef HPUX_SCTL_IO'
3488 echores
"$_hpux_scsi_h"
3493 echocheck
"userspace SCSI headers (Solaris)"
3495 header_check sys
/scsi
/scsi_types.h
&&
3496 header_check_broken sys
/types.h sys
/scsi
/impl
/uscsi.h
&&
3498 if test "$_sol_scsi_h" = yes ; then
3499 def_sol_scsi_h
='#define SOLARIS_USCSI 1'
3501 def_sol_scsi_h
='#undef SOLARIS_USCSI'
3503 echores
"$_sol_scsi_h"
3508 if test "$_termcap" = auto
; then
3512 int main(void) { tgetent(NULL, NULL); return 0; }
3515 for _ld_tmp
in "-lncurses" "-ltinfo" "-ltermcap"; do
3516 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" \
3517 && _termcap
=yes && break
3520 if test "$_termcap" = yes ; then
3521 def_termcap
='#define HAVE_TERMCAP 1'
3522 test $_ld_tmp && res_comment
="using $_ld_tmp"
3524 def_termcap
='#undef HAVE_TERMCAP'
3530 def_termios
='#undef HAVE_TERMIOS'
3531 def_termios_h
='#undef HAVE_TERMIOS_H'
3532 def_termios_sys_h
='#undef HAVE_SYS_TERMIOS_H'
3533 if test "$_termios" = auto
; then
3535 for _termios_header
in "termios.h" "sys/termios.h"; do
3536 header_check
$_termios_header && _termios
=yes &&
3537 res_comment
="using $_termios_header" && break
3541 if test "$_termios" = yes ; then
3542 def_termios
='#define HAVE_TERMIOS 1'
3543 if test "$_termios_header" = "termios.h" ; then
3544 def_termios_h
='#define HAVE_TERMIOS_H 1'
3546 def_termios_sys_h
='#define HAVE_SYS_TERMIOS_H 1'
3553 if test "$_shm" = auto
; then
3555 #include <sys/types.h>
3556 #include <sys/shm.h>
3557 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3560 cc_check
&& _shm
=yes
3562 if test "$_shm" = yes ; then
3563 def_shm
='#define HAVE_SHM 1'
3565 def_shm
='#undef HAVE_SHM'
3570 echocheck
"strsep()"
3573 int main(void) { char *s = "Hello, world!"; strsep(&s, ","); return 0; }
3576 cc_check
&& _strsep
=yes
3577 if test "$_strsep" = yes ; then
3578 def_strsep
='#define HAVE_STRSEP 1'
3581 def_strsep
='#undef HAVE_STRSEP'
3587 echocheck
"vsscanf()"
3589 #define _ISOC99_SOURCE
3592 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3595 cc_check
&& _vsscanf
=yes
3596 if test "$_vsscanf" = yes ; then
3597 def_vsscanf
='#define HAVE_VSSCANF 1'
3600 def_vsscanf
='#undef HAVE_VSSCANF'
3608 #define _XOPEN_SOURCE 600
3610 int main(void) { swab(NULL, NULL, 0); return 0; }
3613 cc_check
&& _swab
=yes
3614 if test "$_swab" = yes ; then
3615 def_swab
='#define HAVE_SWAB 1'
3618 def_swab
='#undef HAVE_SWAB'
3623 echocheck
"POSIX select()"
3627 #include <sys/types.h>
3629 #include <sys/time.h>
3631 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3634 def_posix_select
='#undef HAVE_POSIX_SELECT'
3635 #select() of kLIBC (OS/2) supports socket only
3636 ! os2
&& cc_check
&& _posix_select
=yes \
3637 && def_posix_select
='#define HAVE_POSIX_SELECT 1'
3638 echores
"$_posix_select"
3641 echocheck
"audio select()"
3642 if test "$_select" = no
; then
3643 def_select
='#undef HAVE_AUDIO_SELECT'
3644 elif test "$_select" = yes ; then
3645 def_select
='#define HAVE_AUDIO_SELECT 1'
3650 echocheck
"gettimeofday()"
3652 #include <sys/time.h>
3653 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3656 cc_check
&& _gettimeofday
=yes
3657 if test "$_gettimeofday" = yes ; then
3658 def_gettimeofday
='#define HAVE_GETTIMEOFDAY 1'
3659 _need_gettimeofday
=no
3661 def_gettimeofday
='#undef HAVE_GETTIMEOFDAY'
3662 _need_gettimeofday
=yes
3664 echores
"$_gettimeofday"
3671 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3674 cc_check
&& _glob
=yes
3675 if test "$_glob" = yes ; then
3676 def_glob
='#define HAVE_GLOB 1'
3679 def_glob
='#undef HAVE_GLOB'
3685 echocheck
"setenv()"
3687 function_check stdlib.h
'setenv("", "", 0)' && _setenv
=yes
3688 if test "$_setenv" = yes ; then
3689 def_setenv
='#define HAVE_SETENV 1'
3692 def_setenv
='#undef HAVE_SETENV'
3698 echocheck
"setmode()"
3700 def_setmode
='#define HAVE_SETMODE 0'
3701 function_check io.h
'setmode(0, 0)' && _setmode
=yes && def_setmode
='#define HAVE_SETMODE 1'
3706 echocheck
"sysi86()"
3708 function_check sys
/sysi86.h
'sysi86(0)' && _sysi86
=yes
3709 if test "$_sysi86" = yes ; then
3710 def_sysi86
='#define HAVE_SYSI86 1'
3712 #include <sys/sysi86.h>
3713 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3715 cc_check
&& def_sysi86_iv
='#define HAVE_SYSI86_iv 1'
3717 def_sysi86
='#undef HAVE_SYSI86'
3723 echocheck
"sys/sysinfo.h"
3725 #include <sys/sysinfo.h>
3727 struct sysinfo s_info;
3733 cc_check
&& _sys_sysinfo
=yes
3734 if test "$_sys_sysinfo" = yes ; then
3735 def_sys_sysinfo_h
='#define HAVE_SYS_SYSINFO_H 1'
3737 def_sys_sysinfo_h
='#undef HAVE_SYS_SYSINFO_H'
3739 echores
"$_sys_sysinfo"
3744 echocheck
"Mac OS X Finder Support"
3745 def_macosx_finder
='#undef CONFIG_MACOSX_FINDER'
3746 if test "$_macosx_finder" = yes ; then
3747 def_macosx_finder
='#define CONFIG_MACOSX_FINDER 1'
3748 extra_ldflags
="$extra_ldflags -framework Carbon"
3750 echores
"$_macosx_finder"
3752 echocheck
"Mac OS X Bundle file locations"
3753 def_macosx_bundle
='#undef CONFIG_MACOSX_BUNDLE'
3754 test "$_macosx_bundle" = auto
&& _macosx_bundle
=$_macosx_finder
3755 if test "$_macosx_bundle" = yes ; then
3756 def_macosx_bundle
='#define CONFIG_MACOSX_BUNDLE 1'
3757 extra_ldflags
="$extra_ldflags -framework Carbon"
3759 echores
"$_macosx_bundle"
3761 echocheck
"Apple Remote"
3762 if test "$_apple_remote" = auto
; then
3766 #include <IOKit/IOCFPlugIn.h>
3768 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3769 CFMutableDictionaryRef hidMatchDictionary;
3770 IOReturn ioReturnValue;
3772 // Set up a matching dictionary to search the I/O Registry by class.
3773 // name for all HID class devices
3774 hidMatchDictionary = IOServiceMatching("AppleIRController");
3776 // Now search I/O Registry for matching devices.
3777 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3778 hidMatchDictionary, &hidObjectIterator);
3780 // If search is unsuccessful, return nonzero.
3781 if (ioReturnValue != kIOReturnSuccess ||
3782 !IOIteratorIsValid(hidObjectIterator)) {
3788 cc_check
-framework IOKit
&& _apple_remote
=yes
3790 if test "$_apple_remote" = yes ; then
3791 def_apple_remote
='#define CONFIG_APPLE_REMOTE 1'
3792 libs_mplayer
="$libs_mplayer -framework IOKit -framework Cocoa"
3794 def_apple_remote
='#undef CONFIG_APPLE_REMOTE'
3796 echores
"$_apple_remote"
3802 echocheck
"Apple IR"
3803 if test "$_apple_ir" = auto
; then
3806 #include <linux/types.h>
3807 #include <linux/input.h>
3809 struct input_event ev;
3814 cc_check
&& _apple_ir
=yes
3816 if test "$_apple_ir" = yes ; then
3817 def_apple_ir
='#define CONFIG_APPLE_IR 1'
3819 def_apple_ir
='#undef CONFIG_APPLE_IR'
3821 echores
"$_apple_ir"
3824 echocheck
"pkg-config"
3825 _pkg_config
=pkg-config
3826 if $
($_pkg_config --version > /dev
/null
2>&1); then
3827 if test "$_ld_static"; then
3828 _pkg_config
="$_pkg_config --static"
3837 echocheck
"Samba support (libsmbclient)"
3838 if test "$_smb" = yes; then
3839 extra_ldflags
="$extra_ldflags -lsmbclient"
3841 if test "$_smb" = auto
; then
3843 for _ld_tmp
in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3844 function_check libsmbclient.h
'smbc_opendir("smb://")' $_ld_tmp &&
3845 extra_ldflags
="$extra_ldflags $_ld_tmp" && _smb
=yes && break
3849 if test "$_smb" = yes; then
3850 def_smb
="#define CONFIG_LIBSMBCLIENT 1"
3851 inputmodules
="smb $inputmodules"
3853 def_smb
="#undef CONFIG_LIBSMBCLIENT"
3854 noinputmodules
="smb $noinputmodules"
3865 if test "$_tdfxfb" = yes ; then
3866 def_tdfxfb
='#define CONFIG_TDFXFB 1'
3867 vomodules
="tdfxfb $vomodules"
3869 def_tdfxfb
='#undef CONFIG_TDFXFB'
3870 novomodules
="tdfxfb $novomodules"
3875 if test "$_s3fb" = yes ; then
3876 def_s3fb
='#define CONFIG_S3FB 1'
3877 vomodules
="s3fb $vomodules"
3879 def_s3fb
='#undef CONFIG_S3FB'
3880 novomodules
="s3fb $novomodules"
3885 if test "$_wii" = yes ; then
3886 def_wii
='#define CONFIG_WII 1'
3887 vomodules
="wii $vomodules"
3889 def_wii
='#undef CONFIG_WII'
3890 novomodules
="wii $novomodules"
3895 if test "$_tdfxvid" = yes ; then
3896 def_tdfxvid
='#define CONFIG_TDFX_VID 1'
3897 vomodules
="tdfx_vid $vomodules"
3899 def_tdfxvid
='#undef CONFIG_TDFX_VID'
3900 novomodules
="tdfx_vid $novomodules"
3905 if test "$_xvr100" = auto
; then
3908 #include <sys/fbio.h>
3909 #include <sys/visual_io.h>
3911 struct vis_identifier ident;
3912 struct fbgattr attr;
3913 ioctl(0, VIS_GETIDENTIFIER, &ident);
3914 ioctl(0, FBIOGATTR, &attr);
3919 cc_check
&& _xvr100
=yes
3921 if test "$_xvr100" = yes ; then
3922 def_xvr100
='#define CONFIG_XVR100 1'
3923 vomodules
="xvr100 $vomodules"
3925 def_tdfxvid
='#undef CONFIG_XVR100'
3926 novomodules
="xvr100 $novomodules"
3931 if test "$_tga" = yes ; then
3932 def_tga
='#define CONFIG_TGA 1'
3933 vomodules
="tga $vomodules"
3935 def_tga
='#undef CONFIG_TGA'
3936 novomodules
="tga $novomodules"
3941 echocheck
"md5sum support"
3942 if test "$_md5sum" = yes; then
3943 def_md5sum
="#define CONFIG_MD5SUM 1"
3944 vomodules
="md5sum $vomodules"
3946 def_md5sum
="#undef CONFIG_MD5SUM"
3947 novomodules
="md5sum $novomodules"
3952 echocheck
"yuv4mpeg support"
3953 if test "$_yuv4mpeg" = yes; then
3954 def_yuv4mpeg
="#define CONFIG_YUV4MPEG 1"
3955 vomodules
="yuv4mpeg $vomodules"
3957 def_yuv4mpeg
="#undef CONFIG_YUV4MPEG"
3958 novomodules
="yuv4mpeg $novomodules"
3960 echores
"$_yuv4mpeg"
3964 if test "$_bl" = yes ; then
3965 def_bl
='#define CONFIG_BL 1'
3966 vomodules
="bl $vomodules"
3968 def_bl
='#undef CONFIG_BL'
3969 novomodules
="bl $novomodules"
3974 echocheck
"DirectFB"
3975 if test "$_directfb" = auto
; then
3978 #include <directfb.h>
3979 #include <directfb_version.h>
3980 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3981 #error "DirectFB version too old."
3983 int main(void) { DirectFBInit(0, 0); return 0; }
3985 for _inc_tmp
in "" -I/usr
/local
/include
/directfb
-I/usr
/include
/directfb
-I/usr
/local
/include
; do
3986 cc_check
$_inc_tmp -ldirectfb &&
3987 _directfb
=yes && extra_cflags
="$extra_cflags $_inc_tmp" && break
3990 if test "$_directfb" = yes ; then
3991 def_directfb
='#define CONFIG_DIRECTFB 1'
3992 vomodules
="directfb dfbmga $vomodules"
3993 libs_mplayer
="$libs_mplayer -ldirectfb"
3995 def_directfb
='#undef CONFIG_DIRECTFB'
3996 novomodules
="directfb dfbmga $novomodules"
3998 echores
"$_directfb"
4001 echocheck
"X11 headers presence"
4003 res_comment
="check if the dev(el) packages are installed"
4004 for I
in $
(echo $extra_cflags |
sed s
/-I//g
) /usr
/include
; do
4005 if test -f "$I/X11/Xlib.h" ; then
4011 if test $_cross_compile = no
; then
4012 for I
in /usr
/X11
/include
/usr
/X11R
7/include
/usr
/local
/include
/usr
/X11R
6/include \
4013 /usr
/include
/X11R6
/usr
/openwin
/include
; do
4014 if test -f "$I/X11/Xlib.h" ; then
4015 extra_cflags
="$extra_cflags -I$I"
4017 res_comment
="using $I"
4022 echores
"$_x11_headers"
4026 if test "$_x11" = auto
&& test "$_x11_headers" = yes ; then
4028 #include <X11/Xlib.h>
4029 #include <X11/Xutil.h>
4030 int main(void) { XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4032 for I
in "" -L/usr
/X11R
7/lib
-L/usr
/local
/lib
-L/usr
/X11R
6/lib
-L/usr
/lib
/X11R6 \
4033 -L/usr
/X11
/lib
-L/usr
/lib32
-L/usr
/openwin
/lib
-L/usr
/local
/lib64
-L/usr
/X11R
6/lib64 \
4036 _ld_tmp
="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4038 _ld_tmp
="$I -lXext -lX11 $_ld_pthread"
4040 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" \
4041 && _x11
=yes && break
4044 if test "$_x11" = yes ; then
4045 def_x11
='#define CONFIG_X11 1'
4046 vomodules
="x11 xover $vomodules"
4049 def_x11
='#undef CONFIG_X11'
4050 novomodules
="x11 $novomodules"
4051 res_comment
="check if the dev(el) packages are installed"
4052 # disable stuff that depends on X
4053 _xv
=no
; _xvmc
=no
; _xinerama
=no
; _vm
=no
; _xf86keysym
=no
; _vdpau
=no
4057 echocheck
"Xss screensaver extensions"
4058 if test "$_xss" = auto
; then
4060 #include <X11/Xlib.h>
4061 #include <X11/extensions/scrnsaver.h>
4062 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4065 cc_check
-lXss && _xss
=yes
4067 if test "$_xss" = yes ; then
4068 def_xss
='#define CONFIG_XSS 1'
4069 libs_mplayer
="$libs_mplayer -lXss"
4071 def_xss
='#undef CONFIG_XSS'
4078 if test "$_x11" = yes ; then
4080 #include <X11/Xmd.h>
4081 #include <X11/Xlib.h>
4082 #include <X11/Xutil.h>
4083 #include <X11/Xatom.h>
4084 #include <X11/extensions/dpms.h>
4085 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4087 cc_check
-lXdpms && _xdpms3
=yes
4089 #include <X11/Xlib.h>
4090 #include <X11/extensions/dpms.h>
4091 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4093 cc_check
-lXext && _xdpms4
=yes
4095 if test "$_xdpms4" = yes ; then
4096 def_xdpms
='#define CONFIG_XDPMS 1'
4097 res_comment
="using Xdpms 4"
4099 elif test "$_xdpms3" = yes ; then
4100 def_xdpms
='#define CONFIG_XDPMS 1'
4101 libs_mplayer
="$libs_mplayer -lXdpms"
4102 res_comment
="using Xdpms 3"
4105 def_xdpms
='#undef CONFIG_XDPMS'
4111 if test "$_xv" = auto
; then
4113 #include <X11/Xlib.h>
4114 #include <X11/extensions/Xvlib.h>
4116 XvGetPortAttribute(0, 0, 0, 0);
4117 XvQueryPortAttributes(0, 0, 0);
4121 cc_check
-lXv && _xv
=yes
4124 if test "$_xv" = yes ; then
4125 def_xv
='#define CONFIG_XV 1'
4126 libs_mplayer
="$libs_mplayer -lXv"
4127 vomodules
="xv $vomodules"
4129 def_xv
='#undef CONFIG_XV'
4130 novomodules
="xv $novomodules"
4136 if test "$_xv" = yes && test "$_xvmc" != no
; then
4139 #include <X11/Xlib.h>
4140 #include <X11/extensions/Xvlib.h>
4141 #include <X11/extensions/XvMClib.h>
4143 XvMCQueryExtension(0, 0, 0);
4144 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
4147 for _ld_tmp
in $_xvmclib XvMCNVIDIA XvMCW I810XvMC
; do
4148 cc_check
-lXvMC -l$_ld_tmp && _xvmc
=yes && _xvmclib
="$_ld_tmp" && break
4151 if test "$_xvmc" = yes ; then
4152 def_xvmc
='#define CONFIG_XVMC 1'
4153 libs_mplayer
="$libs_mplayer -lXvMC -l$_xvmclib"
4154 vomodules
="xvmc $vomodules"
4155 res_comment
="using $_xvmclib"
4157 def_xvmc
='#define CONFIG_XVMC 0'
4158 novomodules
="xvmc $novomodules"
4164 if test "$_vdpau" = auto
; then
4166 if test "$_dl" = yes ; then
4168 #include <vdpau/vdpau_x11.h>
4170 vdp_device_create_x11(0, 0, 0, 0);
4171 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4173 cc_check
-lvdpau && _vdpau
=yes
4176 if test "$_vdpau" = yes ; then
4177 def_vdpau
='#define CONFIG_VDPAU 1'
4178 libs_mplayer
="$libs_mplayer -lvdpau"
4179 vomodules
="vdpau $vomodules"
4181 def_vdpau
='#define CONFIG_VDPAU 0'
4182 novomodules
="vdpau $novomodules"
4187 echocheck
"Xinerama"
4188 if test "$_xinerama" = auto
; then
4190 #include <X11/Xlib.h>
4191 #include <X11/extensions/Xinerama.h>
4192 int main(void) { XineramaIsActive(0); return 0; }
4195 cc_check
-lXinerama && _xinerama
=yes
4198 if test "$_xinerama" = yes ; then
4199 def_xinerama
='#define CONFIG_XINERAMA 1'
4200 libs_mplayer
="$libs_mplayer -lXinerama"
4202 def_xinerama
='#undef CONFIG_XINERAMA'
4204 echores
"$_xinerama"
4207 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4208 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4209 # named 'X extensions' or something similar.
4210 # This check may be useful for future mplayer versions (to change resolution)
4211 # If you run into problems, remove '-lXxf86vm'.
4213 if test "$_vm" = auto
; then
4215 #include <X11/Xlib.h>
4216 #include <X11/extensions/xf86vmode.h>
4217 int main(void) { XF86VidModeQueryExtension(0, 0, 0); return 0; }
4220 cc_check
-lXxf86vm && _vm
=yes
4222 if test "$_vm" = yes ; then
4223 def_vm
='#define CONFIG_XF86VM 1'
4224 libs_mplayer
="$libs_mplayer -lXxf86vm"
4226 def_vm
='#undef CONFIG_XF86VM'
4230 # Check for the presence of special keycodes, like audio control buttons
4231 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4232 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4233 # have these new keycodes.
4234 echocheck
"XF86keysym"
4235 if test "$_xf86keysym" = auto
; then
4238 #include <X11/Xlib.h>
4239 #include <X11/XF86keysym.h>
4240 int main(void) { return XF86XK_AudioPause; }
4242 cc_check
&& _xf86keysym
=yes
4244 if test "$_xf86keysym" = yes ; then
4245 def_xf86keysym
='#define CONFIG_XF86XK 1'
4247 def_xf86keysym
='#undef CONFIG_XF86XK'
4249 echores
"$_xf86keysym"
4252 if test "$_dga2" = auto
&& test "$_x11" = yes ; then
4254 #include <X11/Xlib.h>
4255 #include <X11/extensions/xf86dga.h>
4256 int main(void) { XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4259 cc_check
-lXxf86dga && _dga2
=yes
4261 if test "$_dga1" = auto
&& test "$_dga2" = no
&& test "$_vm" = yes ; then
4263 #include <X11/Xlib.h>
4264 #include <X11/extensions/xf86dga.h>
4265 int main(void) { XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4268 cc_check
-lXxf86dga -lXxf86vm && _dga1
=yes
4272 def_dga
='#undef CONFIG_DGA'
4273 def_dga1
='#undef CONFIG_DGA1'
4274 def_dga2
='#undef CONFIG_DGA2'
4275 if test "$_dga1" = yes ; then
4277 def_dga1
='#define CONFIG_DGA1 1'
4278 res_comment
="using DGA 1.0"
4279 elif test "$_dga2" = yes ; then
4281 def_dga2
='#define CONFIG_DGA2 1'
4282 res_comment
="using DGA 2.0"
4284 if test "$_dga" = yes ; then
4285 def_dga
='#define CONFIG_DGA 1'
4286 libs_mplayer
="$libs_mplayer -lXxf86dga"
4287 vomodules
="dga $vomodules"
4289 novomodules
="dga $novomodules"
4295 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4296 def_3dfx
='#define CONFIG_3DFX 1'
4297 vomodules
="3dfx $vomodules"
4299 def_3dfx
='#undef CONFIG_3DFX'
4300 novomodules
="3dfx $novomodules"
4306 def_vidix
='#undef CONFIG_VIDIX'
4307 def_vidix_drv_cyberblade
='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4308 _vidix_drv_cyberblade
=no
4309 def_vidix_drv_ivtv
='#undef CONFIG_VIDIX_DRV_IVTV'
4311 def_vidix_drv_mach64
='#undef CONFIG_VIDIX_DRV_MACH64'
4312 _vidix_drv_mach64
=no
4313 def_vidix_drv_mga
='#undef CONFIG_VIDIX_DRV_MGA'
4315 def_vidix_drv_mga_crtc2
='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4316 _vidix_drv_mga_crtc2
=no
4317 def_vidix_drv_nvidia
='#undef CONFIG_VIDIX_DRV_NVIDIA'
4318 _vidix_drv_nvidia
=no
4319 def_vidix_drv_pm2
='#undef CONFIG_VIDIX_DRV_PM2'
4321 def_vidix_drv_pm3
='#undef CONFIG_VIDIX_DRV_PM3'
4323 def_vidix_drv_radeon
='#undef CONFIG_VIDIX_DRV_RADEON'
4324 _vidix_drv_radeon
=no
4325 def_vidix_drv_rage128
='#undef CONFIG_VIDIX_DRV_RAGE128'
4326 _vidix_drv_rage128
=no
4327 def_vidix_drv_s3
='#undef CONFIG_VIDIX_DRV_S3'
4329 def_vidix_drv_sh_veu
='#undef CONFIG_VIDIX_DRV_SH_VEU'
4330 _vidix_drv_sh_veu
=no
4331 def_vidix_drv_sis
='#undef CONFIG_VIDIX_DRV_SIS'
4333 def_vidix_drv_unichrome
='#undef CONFIG_VIDIX_DRV_UNICHROME'
4334 _vidix_drv_unichrome
=no
4335 if test "$_vidix" = auto
; then
4337 x86
&& (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32
) \
4339 x86_64
&& ! linux
&& _vidix
=no
4340 (ppc || alpha
) && linux
&& _vidix
=yes
4344 if test "$_vidix" = yes ; then
4345 def_vidix
='#define CONFIG_VIDIX 1'
4346 vomodules
="cvidix $vomodules"
4347 # FIXME: ivtv driver temporarily disabled until we have a proper test
4348 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4349 test "$_vidix_drivers" || _vidix_drivers
="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4351 # some vidix drivers are architecture and os specific, discard them elsewhere
4352 x86 || _vidix_drivers
=$
(echo $_vidix_drivers |
sed -e s
/cyberblade
// -e s
/sis
// -e s
/unichrome
// -e s
/s
3//)
4353 (test $host_arch = "sh" && linux
) || _vidix_drivers
=$
(echo $_vidix_drivers |
sed s
/sh_veu
//)
4355 for driver
in $_vidix_drivers ; do
4356 uc_driver
=$
(echo $driver |
tr '[a-z]' '[A-Z]')
4357 eval _vidix_drv_
${driver}=yes
4358 eval def_vidix_drv_
${driver}=\"\
#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4361 echocheck
"VIDIX PCI device name database"
4362 echores
"$_vidix_pcidb"
4363 if test "$_vidix_pcidb" = yes ; then
4369 echocheck
"VIDIX dhahelper support"
4370 test "$_dhahelper" = yes && cflags_dhahelper
=-DCONFIG_DHAHELPER
4371 echores
"$_dhahelper"
4373 echocheck
"VIDIX svgalib_helper support"
4374 test "$_svgalib_helper" = yes && cflags_svgalib_helper
=-DCONFIG_SVGAHELPER
4375 echores
"$_svgalib_helper"
4378 novomodules
="cvidix $novomodules"
4381 if test "$_vidix" = yes && win32
; then
4383 vomodules
="winvidix $vomodules"
4384 libs_mplayer
="$libs_mplayer -lgdi32"
4386 novomodules
="winvidix $novomodules"
4388 if test "$_vidix" = yes && test "$_x11" = yes; then
4390 vomodules
="xvidix $vomodules"
4392 novomodules
="xvidix $novomodules"
4396 if test "$_ggi" = auto
; then
4398 function_check ggi
/ggi.h
'ggiInit()' -lggi && _ggi
=yes
4400 if test "$_ggi" = yes ; then
4401 def_ggi
='#define CONFIG_GGI 1'
4402 libs_mplayer
="$libs_mplayer -lggi"
4403 vomodules
="ggi $vomodules"
4405 def_ggi
='#undef CONFIG_GGI'
4406 novomodules
="ggi $novomodules"
4410 echocheck
"GGI extension: libggiwmh"
4411 if test "$_ggiwmh" = auto
; then
4414 #include <ggi/wmh.h>
4415 int main(void) { ggiWmhInit(); return 0; }
4417 function_check ggi
/wmh.h
'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh
=yes
4419 # needed to get right output on obscure combination
4420 # like --disable-ggi --enable-ggiwmh
4421 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4422 def_ggiwmh
='#define CONFIG_GGIWMH 1'
4423 libs_mplayer
="$libs_mplayer -lggiwmh"
4426 def_ggiwmh
='#undef CONFIG_GGIWMH'
4432 if test "$_aa" = auto
; then
4439 c = aa_autoinit(&aa_defparams);
4440 p = aa_getrenderparams();
4441 aa_autoinitkbd(c,0);
4445 for _ld_tmp
in "-laa" ; do
4446 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" && _aa
=yes && break
4449 if test "$_aa" = yes ; then
4450 def_aa
='#define CONFIG_AA 1'
4452 libs_mplayer
="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4454 vomodules
="aa $vomodules"
4456 def_aa
='#undef CONFIG_AA'
4457 novomodules
="aa $novomodules"
4463 if test "$_caca" = auto
; then
4465 if ( caca-config
--version ) >> "$TMPLOG" 2>&1 ; then
4468 #ifdef CACA_API_VERSION_1
4471 int main(void) { caca_init(); return 0; }
4473 cc_check $
(caca-config
--libs) && _caca
=yes
4476 if test "$_caca" = yes ; then
4477 def_caca
='#define CONFIG_CACA 1'
4478 extra_cflags
="$extra_cflags $(caca-config --cflags)"
4479 libs_mplayer
="$libs_mplayer $(caca-config --libs)"
4480 vomodules
="caca $vomodules"
4482 def_caca
='#undef CONFIG_CACA'
4483 novomodules
="caca $novomodules"
4489 if test "$_svga" = auto
; then
4491 header_check vga.h
-lvga $_ld_lm && _svga
=yes
4493 if test "$_svga" = yes ; then
4494 def_svga
='#define CONFIG_SVGALIB 1'
4495 libs_mplayer
="$libs_mplayer -lvga"
4496 vomodules
="svga $vomodules"
4498 def_svga
='#undef CONFIG_SVGALIB'
4499 novomodules
="svga $novomodules"
4505 if test "$_fbdev" = auto
; then
4509 if test "$_fbdev" = yes ; then
4510 def_fbdev
='#define CONFIG_FBDEV 1'
4511 vomodules
="fbdev $vomodules"
4513 def_fbdev
='#undef CONFIG_FBDEV'
4514 novomodules
="fbdev $novomodules"
4521 if test "$_dvb" = auto
; then
4525 #include <sys/ioctl.h>
4529 #include <linux/dvb/dmx.h>
4530 #include <linux/dvb/frontend.h>
4531 #include <linux/dvb/video.h>
4532 #include <linux/dvb/audio.h>
4533 int main(void) {return 0;}
4535 for _inc_tmp
in "" "-I/usr/src/DVB/include" ; do
4536 cc_check
$_inc_tmp && _dvb
=yes && \
4537 extra_cflags
="$extra_cflags $_inc_tmp" && break
4541 if test "$_dvb" = yes ; then
4543 inputmodules
="dvb $inputmodules"
4544 def_dvb
='#define CONFIG_DVB 1'
4545 def_dvbin
='#define CONFIG_DVBIN 1'
4546 aomodules
="mpegpes(dvb) $aomodules"
4547 vomodules
="mpegpes(dvb) $vomodules"
4550 noinputmodules
="dvb $noinputmodules"
4551 def_dvb
='#undef CONFIG_DVB'
4552 def_dvbin
='#undef CONFIG_DVBIN '
4553 aomodules
="mpegpes(file) $aomodules"
4554 vomodules
="mpegpes(file) $vomodules"
4560 echocheck
"QuickTime"
4561 if test "$quicktime" = auto
; then
4563 #include <QuickTime/QuickTime.h>
4565 ImageDescription *desc;
4572 cc_check
-framework QuickTime
&& quicktime
=yes
4574 if test "$quicktime" = yes ; then
4575 extra_ldflags
="$extra_ldflags -framework QuickTime"
4576 def_quicktime
='#define CONFIG_QUICKTIME 1'
4578 def_quicktime
='#undef CONFIG_QUICKTIME'
4584 if test "$_quartz" = auto
; then
4586 function_check Carbon
/Carbon.h
'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon
&& _quartz
=yes
4588 if test "$_quartz" = yes ; then
4589 libs_mplayer
="$libs_mplayer -framework Carbon"
4590 def_quartz
='#define CONFIG_QUARTZ 1'
4591 vomodules
="quartz $vomodules"
4593 def_quartz
='#undef CONFIG_QUARTZ'
4594 novomodules
="quartz $novomodules"
4598 echocheck
"CoreVideo"
4599 if test "$_corevideo" = auto
; then
4601 #include <Carbon/Carbon.h>
4602 #include <CoreServices/CoreServices.h>
4603 #include <OpenGL/OpenGL.h>
4604 #include <QuartzCore/CoreVideo.h>
4605 int main(void) { return 0; }
4608 cc_check
-framework Carbon
-framework Cocoa
-framework QuartzCore
-framework OpenGL
&& _corevideo
=yes
4610 if test "$_corevideo" = yes ; then
4611 vomodules
="corevideo $vomodules"
4612 libs_mplayer
="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4613 def_corevideo
='#define CONFIG_COREVIDEO 1'
4615 novomodules
="corevideo $novomodules"
4616 def_corevideo
='#undef CONFIG_COREVIDEO'
4618 echores
"$_corevideo"
4623 echocheck
"PNG support"
4624 if test "$_png" = auto
; then
4627 # Don't check for -lpng on irix since it has its own libpng
4628 # incompatible with the GNU libpng
4629 res_comment
="disabled on irix (not GNU libpng)"
4635 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4636 printf("libpng: %s\n", png_libpng_ver);
4637 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4640 cc_check
-lpng -lz $_ld_lm && _png
=yes
4644 if test "$_png" = yes ; then
4645 def_png
='#define CONFIG_PNG 1'
4646 extra_ldflags
="$extra_ldflags -lpng -lz"
4648 def_png
='#undef CONFIG_PNG'
4651 echocheck
"MNG support"
4652 if test "$_mng" = auto
; then
4657 const char * p_ver = mng_version_text();
4658 return !p_ver || p_ver[0] == 0;
4661 if cc_check
-lmng -lz $_ld_lm ; then
4666 if test "$_mng" = yes ; then
4667 def_mng
='#define CONFIG_MNG 1'
4668 extra_ldflags
="$extra_ldflags -lmng -lz"
4670 def_mng
='#undef CONFIG_MNG'
4673 echocheck
"JPEG support"
4674 if test "$_jpeg" = auto
; then
4681 #include <jpeglib.h>
4682 int main(void) { return 0; }
4684 cc_check
-ljpeg $_ld_lm && _jpeg
=yes
4688 if test "$_jpeg" = yes ; then
4689 def_jpeg
='#define CONFIG_JPEG 1'
4690 vomodules
="jpeg $vomodules"
4691 extra_ldflags
="$extra_ldflags -ljpeg"
4693 def_jpeg
='#undef CONFIG_JPEG'
4694 novomodules
="jpeg $novomodules"
4699 echocheck
"PNM support"
4700 if test "$_pnm" = yes; then
4701 def_pnm
="#define CONFIG_PNM 1"
4702 vomodules
="pnm $vomodules"
4704 def_pnm
="#undef CONFIG_PNM"
4705 novomodules
="pnm $novomodules"
4711 echocheck
"GIF support"
4712 # This is to appease people who want to force gif support.
4713 # If it is forced to yes, then we still do checks to determine
4714 # which gif library to use.
4715 if test "$_gif" = yes ; then
4720 if test "$_gif" = auto
; then
4722 for _ld_gif
in "-lungif" "-lgif" ; do
4723 function_check gif_lib.h
'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif
=yes && break
4727 # If no library was found, and the user wants support forced,
4728 # then we force it on with libgif, as this is the safest
4729 # assumption IMHO. (libungif & libregif both create symbolic
4730 # links to libgif. We also assume that no x11 support is needed,
4731 # because if you are forcing this, then you _should_ know what
4732 # you are doing. [ Besides, package maintainers should never
4733 # have compiled x11 deps into libungif in the first place. ] )
4736 if test "$_force_gif" = yes && test "$_gif" = no
; then
4741 if test "$_gif" = yes ; then
4742 def_gif
='#define CONFIG_GIF 1'
4743 codecmodules
="gif $codecmodules"
4744 vomodules
="gif89a $vomodules"
4745 res_comment
="old version, some encoding functions disabled"
4746 def_gif_4
='#undef CONFIG_GIF_4'
4747 extra_ldflags
="$extra_ldflags $_ld_gif"
4753 #include <gif_lib.h>
4754 static void catch(int sig) { exit(1); }
4756 signal(SIGSEGV, catch); // catch segfault
4757 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4758 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4762 if cc_check
"$_ld_gif" ; then
4763 def_gif_4
='#define CONFIG_GIF_4 1'
4767 def_gif
='#undef CONFIG_GIF'
4768 def_gif_4
='#undef CONFIG_GIF_4'
4769 novomodules
="gif89a $novomodules"
4770 nocodecmodules
="gif $nocodecmodules"
4775 case "$_gif" in yes*)
4776 echocheck
"broken giflib workaround"
4777 def_gif_tvt_hack
='#define CONFIG_GIF_TVT_HACK 1'
4781 #include <gif_lib.h>
4783 GifFileType gif = {.UserData = NULL};
4784 printf("UserData is at address %p\n", gif.UserData);
4788 if cc_check
"$_ld_gif" ; then
4789 def_gif_tvt_hack
='#undef CONFIG_GIF_TVT_HACK'
4798 echocheck
"VESA support"
4799 if test "$_vesa" = auto
; then
4801 function_check vbe.h
'vbeVersion()' -lvbe -llrmi && _vesa
=yes
4803 if test "$_vesa" = yes ; then
4804 def_vesa
='#define CONFIG_VESA 1'
4805 libs_mplayer
="$libs_mplayer -lvbe -llrmi"
4806 vomodules
="vesa $vomodules"
4808 def_vesa
='#undef CONFIG_VESA'
4809 novomodules
="vesa $novomodules"
4821 def_sdl_sdl_h
="#undef CONFIG_SDL_SDL_H"
4822 if test -z "$_sdlconfig" ; then
4823 if ( sdl-config
--version ) >>"$TMPLOG" 2>&1 ; then
4824 _sdlconfig
="sdl-config"
4825 elif ( sdl11-config
--version ) >>"$TMPLOG" 2>&1 ; then
4826 _sdlconfig
="sdl11-config"
4831 if test "$_sdl" = auto ||
test "$_sdl" = yes ; then
4833 #ifdef CONFIG_SDL_SDL_H
4834 #include <SDL/SDL.h>
4839 // we allow SDL hacking our main() only on OSX
4842 int main(int argc, char *argv[]) {
4843 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4848 for _ld_tmp
in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4849 if cc_check
-DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4851 def_sdl_sdl_h
="#define CONFIG_SDL_SDL_H 1"
4855 if test "$_sdl" = no
&& "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4856 res_comment
="using $_sdlconfig"
4858 _inc_tmp
="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4859 _ld_tmp
="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4861 _inc_tmp
=$
($_sdlconfig --cflags |
sed s
/-Dmain=SDL_main
//)
4862 _ld_tmp
=$
($_sdlconfig --libs |
sed -e s
/-mwindows// -e s
/-lmingw32//)
4864 _inc_tmp
="$($_sdlconfig --cflags)"
4865 _ld_tmp
="$($_sdlconfig --libs)"
4867 if cc_check
$_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4869 elif cc_check
$_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4870 # HACK for BeOS/Haiku SDL
4871 _ld_tmp
="$_ld_tmp -lstdc++"
4876 if test "$_sdl" = yes ; then
4877 def_sdl
='#define CONFIG_SDL 1'
4878 extra_cflags
="$extra_cflags $_inc_tmp"
4879 libs_mplayer
="$libs_mplayer $_ld_tmp"
4880 vomodules
="sdl $vomodules"
4881 aomodules
="sdl $aomodules"
4883 def_sdl
='#undef CONFIG_SDL'
4884 novomodules
="sdl $novomodules"
4885 noaomodules
="sdl $noaomodules"
4890 # make sure this stays below CoreVideo to avoid issues due to namespace
4891 # conflicts between -lGL and -framework OpenGL
4893 #Note: this test is run even with --enable-gl since we autodetect linker flags
4894 if (test "$_x11" = yes ||
test "$_sdl" = yes || win32
) && test "$_gl" != no
; then
4897 #include <windows.h>
4899 #elif defined(GL_SDL)
4901 #ifdef CONFIG_SDL_SDL_H
4902 #include <SDL/SDL.h>
4907 // we allow SDL hacking our main() only on OSX
4912 #include <X11/Xlib.h>
4915 int main(int argc, char *argv[]) {
4918 wglCreateContext(dc);
4919 #elif defined(GL_SDL)
4920 SDL_GL_SwapBuffers();
4922 glXCreateContext(NULL, NULL, NULL, True);
4929 for _ld_tmp
in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4930 if cc_check
$_ld_tmp $_ld_lm ; then
4933 libs_mplayer
="$libs_mplayer $_ld_tmp $_ld_dl"
4937 if cc_check
-DGL_WIN32 -lopengl32 ; then
4940 libs_mplayer
="$libs_mplayer -lopengl32 -lgdi32"
4942 # last so it can reuse any linker etc. flags detected before
4943 if test "$_sdl" = yes ; then
4944 if cc_check
-DGL_SDL ||
4945 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL ; then
4948 elif cc_check
-DGL_SDL -lGL ||
4949 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4952 libs_mplayer
="$libs_mplayer -lGL"
4958 if test "$_gl" = yes ; then
4959 def_gl
='#define CONFIG_GL 1'
4960 res_comment
="backends:"
4961 if test "$_gl_win32" = yes ; then
4962 def_gl_win32
='#define CONFIG_GL_WIN32 1'
4963 res_comment
="$res_comment win32"
4965 if test "$_gl_x11" = yes ; then
4966 def_gl_x11
='#define CONFIG_GL_X11 1'
4967 res_comment
="$res_comment x11"
4969 if test "$_gl_sdl" = yes ; then
4970 def_gl_sdl
='#define CONFIG_GL_SDL 1'
4971 res_comment
="$res_comment sdl"
4973 vomodules
="opengl $vomodules"
4975 def_gl
='#undef CONFIG_GL'
4976 def_gl_win32
='#undef CONFIG_GL_WIN32'
4977 def_gl_x11
='#undef CONFIG_GL_X11'
4978 def_gl_sdl
='#undef CONFIG_GL_SDL'
4979 novomodules
="opengl $novomodules"
4984 echocheck
"MatrixView"
4985 if test "$_gl" = no
; then
4988 if test "$matrixview" = yes ; then
4989 vomodules
="matrixview $vomodules"
4990 def_matrixview
='#define CONFIG_MATRIXVIEW 1'
4992 novomodules
="matrixview $novomodules"
4993 def_matrixview
='#undef CONFIG_MATRIXVIEW'
4995 echores
"$matrixview"
4999 echocheck
"KVA (SNAP/WarpOverlay!/DIVE)"
5000 if test "$_kva" = auto
; then
5004 int main(void) { return 0; }
5007 cc_check
-lkva && _kva
=yes
5009 if test "$_kva" = yes ; then
5010 def_kva
='#define CONFIG_KVA 1'
5011 libs_mplayer
="$libs_mplayer -lkva"
5012 vomodules
="kva $vomodules"
5014 def_kva
='#undef CONFIG_KVA'
5015 novomodules
="kva $novomodules"
5023 echocheck
"Windows waveout"
5024 if test "$_win32waveout" = auto
; then
5026 #include <windows.h>
5027 #include <mmsystem.h>
5028 int main(void) { return 0; }
5031 cc_check
-lwinmm && _win32waveout
=yes
5033 if test "$_win32waveout" = yes ; then
5034 def_win32waveout
='#define CONFIG_WIN32WAVEOUT 1'
5035 libs_mplayer
="$libs_mplayer -lwinmm"
5036 aomodules
="win32 $aomodules"
5038 def_win32waveout
='#undef CONFIG_WIN32WAVEOUT'
5039 noaomodules
="win32 $noaomodules"
5041 echores
"$_win32waveout"
5043 echocheck
"Direct3D"
5044 if test "$_direct3d" = auto
; then
5046 #include <windows.h>
5048 int main(void) { return 0; }
5051 cc_check
&& _direct3d
=yes
5053 if test "$_direct3d" = yes ; then
5054 def_direct3d
='#define CONFIG_DIRECT3D 1'
5055 vomodules
="direct3d $vomodules"
5057 def_direct3d
='#undef CONFIG_DIRECT3D'
5058 novomodules
="direct3d $novomodules"
5060 echores
"$_direct3d"
5063 if test "$_directx" = auto
; then
5065 #include <windows.h>
5068 int main(void) { return 0; }
5071 cc_check
-lgdi32 && _directx
=yes
5073 if test "$_directx" = yes ; then
5074 def_directx
='#define CONFIG_DIRECTX 1'
5075 libs_mplayer
="$libs_mplayer -lgdi32"
5076 vomodules
="directx $vomodules"
5077 aomodules
="dsound $aomodules"
5079 def_directx
='#undef CONFIG_DIRECTX'
5080 novomodules
="directx $novomodules"
5081 noaomodules
="dsound $noaomodules"
5089 if test "$_dxr2" = auto
; then
5091 for _inc_tmp
in "" -I/usr
/local
/include
/dxr2
-I/usr
/include
/dxr2
; do
5092 header_check dxr2ioctl.h
$_inc_tmp && _dxr2
=yes &&
5093 extra_cflags
="$extra_cflags $_inc_tmp" && break
5096 if test "$_dxr2" = yes; then
5097 def_dxr2
='#define CONFIG_DXR2 1'
5098 aomodules
="dxr2 $aomodules"
5099 vomodules
="dxr2 $vomodules"
5101 def_dxr2
='#undef CONFIG_DXR2'
5102 noaomodules
="dxr2 $noaomodules"
5103 novomodules
="dxr2 $novomodules"
5108 if test "$_dxr3" = auto
; then
5110 header_check linux
/em8300.h
&& _dxr3
=yes
5112 if test "$_dxr3" = yes ; then
5113 def_dxr3
='#define CONFIG_DXR3 1'
5114 vomodules
="dxr3 $vomodules"
5116 def_dxr3
='#undef CONFIG_DXR3'
5117 novomodules
="dxr3 $novomodules"
5122 echocheck
"IVTV TV-Out (pre linux-2.6.24)"
5123 if test "$_ivtv" = auto
; then
5126 #include <inttypes.h>
5127 #include <linux/types.h>
5128 #include <linux/videodev2.h>
5129 #include <linux/ivtv.h>
5130 #include <sys/ioctl.h>
5132 struct ivtv_cfg_stop_decode sd;
5133 struct ivtv_cfg_start_decode sd1;
5134 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5135 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5139 cc_check
&& _ivtv
=yes
5141 if test "$_ivtv" = yes ; then
5142 def_ivtv
='#define CONFIG_IVTV 1'
5143 vomodules
="ivtv $vomodules"
5144 aomodules
="ivtv $aomodules"
5146 def_ivtv
='#undef CONFIG_IVTV'
5147 novomodules
="ivtv $novomodules"
5148 noaomodules
="ivtv $noaomodules"
5153 echocheck
"V4L2 MPEG Decoder"
5154 if test "$_v4l2" = auto
; then
5157 #include <inttypes.h>
5158 #include <linux/types.h>
5159 #include <linux/videodev2.h>
5160 #include <linux/version.h>
5162 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5163 #error kernel headers too old, need 2.6.22
5165 struct v4l2_ext_controls ctrls;
5166 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5171 cc_check
&& _v4l2
=yes
5173 if test "$_v4l2" = yes ; then
5174 def_v4l2
='#define CONFIG_V4L2_DECODER 1'
5175 vomodules
="v4l2 $vomodules"
5176 aomodules
="v4l2 $aomodules"
5178 def_v4l2
='#undef CONFIG_V4L2_DECODER'
5179 novomodules
="v4l2 $novomodules"
5180 noaomodules
="v4l2 $noaomodules"
5191 echocheck
"OSS Audio"
5192 if test "$_ossaudio" = auto
; then
5194 #include <sys/ioctl.h>
5195 #include <$_soundcard_header>
5196 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5199 cc_check
&& _ossaudio
=yes
5201 if test "$_ossaudio" = yes ; then
5202 def_ossaudio
='#define CONFIG_OSS_AUDIO 1'
5203 aomodules
="oss $aomodules"
5205 #include <sys/ioctl.h>
5206 #include <$_soundcard_header>
5207 #ifdef OPEN_SOUND_SYSTEM
5208 int main(void) { return 0; }
5210 #error Not the real thing
5214 cc_check
&& _real_ossaudio
=yes
5215 if test "$_real_ossaudio" = yes; then
5216 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5217 # Check for OSS4 headers (override default headers)
5218 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5219 if test -f /etc
/oss.conf
; then
5221 _ossinc
="$OSSLIBDIR/include"
5222 if test -f "$_ossinc/sys/soundcard.h"; then
5223 extra_cflags
="-I$_ossinc $extra_cflags"
5226 elif netbsd || openbsd
; then
5227 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/sound"'
5228 extra_ldflags
="$extra_ldflags -lossaudio"
5230 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5232 def_ossaudio_devmixer
='#define PATH_DEV_MIXER "/dev/mixer"'
5234 def_ossaudio
='#undef CONFIG_OSS_AUDIO'
5235 def_ossaudio_devdsp
='#define PATH_DEV_DSP ""'
5236 def_ossaudio_devmixer
='#define PATH_DEV_MIXER ""'
5237 noaomodules
="oss $noaomodules"
5239 echores
"$_ossaudio"
5243 if test "$_arts" = auto
; then
5245 if ( artsc-config
--version ) >> "$TMPLOG" 2>&1 ; then
5246 function_check artsc.h
'arts_init()' $
(artsc-config
--libs) $
(artsc-config
--cflags) &&
5251 if test "$_arts" = yes ; then
5252 def_arts
='#define CONFIG_ARTS 1'
5253 aomodules
="arts $aomodules"
5254 libs_mplayer
="$libs_mplayer $(artsc-config --libs)"
5255 extra_cflags
="$extra_cflags $(artsc-config --cflags)"
5257 noaomodules
="arts $noaomodules"
5263 if test "$_esd" = auto
; then
5265 if ( esd-config
--version ) >> "$TMPLOG" 2>&1 ; then
5269 int main(void) { int fd = esd_open_sound("test"); return fd; }
5271 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd
=yes
5277 if test "$_esd" = yes ; then
5278 def_esd
='#define CONFIG_ESD 1'
5279 aomodules
="esd $aomodules"
5280 libs_mplayer
="$libs_mplayer $(esd-config --libs)"
5281 extra_cflags
="$extra_cflags $(esd-config --cflags)"
5283 echocheck
"esd_get_latency()"
5286 int main(void) { return esd_get_latency(0); }
5288 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd_latency
=yes && def_esd_latency
='#define CONFIG_ESD_LATENCY 1'
5289 echores
"$_esd_latency"
5291 def_esd
='#undef CONFIG_ESD'
5292 def_esd_latency
='#undef CONFIG_ESD_LATENCY'
5293 noaomodules
="esd $noaomodules"
5298 if test "$_nas" = auto
; then
5300 header_check audio
/audiolib.h
$_ld_lm -laudio -lXt && _nas
=yes
5302 if test "$_nas" = yes ; then
5303 def_nas
='#define CONFIG_NAS 1'
5304 libs_mplayer
="$libs_mplayer -laudio -lXt"
5305 aomodules
="nas $aomodules"
5307 noaomodules
="nas $noaomodules"
5308 def_nas
='#undef CONFIG_NAS'
5314 if test "$_pulse" = auto
; then
5316 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5317 header_check pulse
/pulseaudio.h $
($_pkg_config --libs --cflags libpulse
) &&
5323 if test "$_pulse" = yes ; then
5324 def_pulse
='#define CONFIG_PULSE 1'
5325 aomodules
="pulse $aomodules"
5326 libs_mplayer
="$libs_mplayer $($_pkg_config --libs libpulse)"
5327 extra_cflags
="$extra_cflags $($_pkg_config --cflags libpulse)"
5329 def_pulse
='#undef CONFIG_PULSE'
5330 noaomodules
="pulse $noaomodules"
5335 if test "$_jack" = auto
; then
5337 if function_check jack
/jack.h
'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
5338 libs_mplayer
="$libs_mplayer -ljack"
5339 elif function_check jack
/jack.h
'jack_client_open("test", JackUseExactName, NULL)' $
($_pkg_config --libs --cflags --silence-errors jack
) ; then
5340 libs_mplayer
="$libs_mplayer $($_pkg_config --libs jack)"
5341 extra_cflags
="$extra_cflags "$
($_pkg_config --cflags jack
)""
5347 if test "$_jack" = yes ; then
5348 def_jack
='#define CONFIG_JACK 1'
5349 aomodules
="jack $aomodules"
5351 noaomodules
="jack $noaomodules"
5356 if test "$_openal" = auto
; then
5360 #include <OpenAL/al.h>
5365 alSourceQueueBuffers(0, 0, 0);
5366 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5370 for I
in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5371 cc_check
$I && _openal
=yes && break
5372 cc_check
-DOPENAL_AL_H=1 $I && def_openal_h
='#define OPENAL_AL_H 1' && _openal
=yes && break
5374 test "$_openal" = yes && libs_mplayer
="$libs_mplayer $I"
5376 if test "$_openal" = yes ; then
5377 def_openal
='#define CONFIG_OPENAL 1'
5378 aomodules
="openal $aomodules"
5380 noaomodules
="openal $noaomodules"
5384 echocheck
"ALSA audio"
5385 if test "$_alloca" != yes ; then
5387 res_comment
="alloca missing"
5389 if test "$_alsa" != no
; then
5392 #include <sys/asoundlib.h>
5393 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5394 #error "alsa version != 0.5.x"
5396 int main(void) { return 0; }
5398 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.5.x'
5401 #include <sys/asoundlib.h>
5402 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5403 #error "alsa version != 0.9.x"
5405 int main(void) { return 0; }
5407 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-sys'
5409 #include <alsa/asoundlib.h>
5410 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5411 #error "alsa version != 0.9.x"
5413 int main(void) { return 0; }
5415 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-alsa'
5418 #include <sys/asoundlib.h>
5419 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5420 #error "alsa version != 1.0.x"
5422 int main(void) { return 0; }
5424 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-sys'
5426 #include <alsa/asoundlib.h>
5427 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5428 #error "alsa version != 1.0.x"
5430 int main(void) { return 0; }
5432 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-alsa'
5434 def_alsa
='#undef CONFIG_ALSA'
5435 def_alsa5
='#undef CONFIG_ALSA5'
5436 def_alsa9
='#undef CONFIG_ALSA9'
5437 def_alsa1x
='#undef CONFIG_ALSA1X'
5438 def_sys_asoundlib_h
='#undef HAVE_SYS_ASOUNDLIB_H'
5439 def_alsa_asoundlib_h
='#undef HAVE_ALSA_ASOUNDLIB_H'
5440 if test "$_alsaver" ; then
5442 if test "$_alsaver" = '0.5.x' ; then
5444 aomodules
="alsa5 $aomodules"
5445 def_alsa5
='#define CONFIG_ALSA5 1'
5446 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5447 res_comment
="using alsa 0.5.x and sys/asoundlib.h"
5448 elif test "$_alsaver" = '0.9.x-sys' ; then
5450 aomodules
="alsa $aomodules"
5451 def_alsa
='#define CONFIG_ALSA 1'
5452 def_alsa9
='#define CONFIG_ALSA9 1'
5453 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5454 res_comment
="using alsa 0.9.x and sys/asoundlib.h"
5455 elif test "$_alsaver" = '0.9.x-alsa' ; then
5457 aomodules
="alsa $aomodules"
5458 def_alsa
='#define CONFIG_ALSA 1'
5459 def_alsa9
='#define CONFIG_ALSA9 1'
5460 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5461 res_comment
="using alsa 0.9.x and alsa/asoundlib.h"
5462 elif test "$_alsaver" = '1.0.x-sys' ; then
5464 aomodules
="alsa $aomodules"
5465 def_alsa
='#define CONFIG_ALSA 1'
5466 def_alsa1x
="#define CONFIG_ALSA1X 1"
5467 def_alsa_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5468 res_comment
="using alsa 1.0.x and sys/asoundlib.h"
5469 elif test "$_alsaver" = '1.0.x-alsa' ; then
5471 aomodules
="alsa $aomodules"
5472 def_alsa
='#define CONFIG_ALSA 1'
5473 def_alsa1x
="#define CONFIG_ALSA1X 1"
5474 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5475 res_comment
="using alsa 1.0.x and alsa/asoundlib.h"
5478 res_comment
="unknown version"
5480 extra_ldflags
="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5482 noaomodules
="alsa $noaomodules"
5487 echocheck
"Sun audio"
5488 if test "$_sunaudio" = auto
; then
5490 #include <sys/types.h>
5491 #include <sys/audioio.h>
5492 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5495 cc_check
&& _sunaudio
=yes
5497 if test "$_sunaudio" = yes ; then
5498 def_sunaudio
='#define CONFIG_SUN_AUDIO 1'
5499 aomodules
="sun $aomodules"
5501 def_sunaudio
='#undef CONFIG_SUN_AUDIO'
5502 noaomodules
="sun $noaomodules"
5504 echores
"$_sunaudio"
5507 def_mlib
='#define CONFIG_MLIB 0'
5509 echocheck
"Sun mediaLib"
5510 if test "$_mlib" = auto
; then
5512 cc_check mlib.h
"mlib_VideoColorYUV2ABGR420(0, 0, 0, 0, 0, 0, 0, 0, 0)" -lmlib &&
5513 _mlib
=yes && def_mlib
='#define CONFIG_MLIB 1'
5520 echocheck
"CoreAudio"
5521 if test "$_coreaudio" = auto
; then
5523 #include <CoreAudio/CoreAudio.h>
5524 #include <AudioToolbox/AudioToolbox.h>
5525 #include <AudioUnit/AudioUnit.h>
5526 int main(void) { return 0; }
5529 cc_check
-framework CoreAudio
-framework AudioUnit
-framework AudioToolbox
&& _coreaudio
=yes
5531 if test "$_coreaudio" = yes ; then
5532 libs_mplayer
="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5533 def_coreaudio
='#define CONFIG_COREAUDIO 1'
5534 aomodules
="coreaudio $aomodules"
5536 def_coreaudio
='#undef CONFIG_COREAUDIO'
5537 noaomodules
="coreaudio $noaomodules"
5544 echocheck
"SGI audio"
5545 if test "$_sgiaudio" = auto
; then
5547 header_check dmedia
/audio.h
&& _sgiaudio
=yes
5549 if test "$_sgiaudio" = "yes" ; then
5550 def_sgiaudio
='#define CONFIG_SGI_AUDIO 1'
5551 libs_mplayer
="$libs_mplayer -laudio"
5552 aomodules
="sgi $aomodules"
5554 def_sgiaudio
='#undef CONFIG_SGI_AUDIO'
5555 noaomodules
="sgi $noaomodules"
5557 echores
"$_sgiaudio"
5562 echocheck
"KAI (UNIAUD/DART)"
5563 if test "$_kai" = auto
; then
5567 int main(void) { return 0; }
5570 cc_check
-lkai && _kai
=yes
5572 if test "$_kai" = yes ; then
5573 def_kai
='#define CONFIG_KAI 1'
5574 libs_mplayer
="$libs_mplayer -lkai"
5575 aomodules
="kai $aomodules"
5577 def_kai
='#undef CONFIG_KAI'
5578 noaomodules
="kai $noaomodules"
5583 if test "$_dart" = auto
; then
5587 int main(void) { return 0; }
5590 cc_check
-ldart && _dart
=yes
5592 if test "$_dart" = yes ; then
5593 def_dart
='#define CONFIG_DART 1'
5594 libs_mplayer
="$libs_mplayer -ldart"
5595 aomodules
="dart $aomodules"
5597 def_dart
='#undef CONFIG_DART'
5598 noaomodules
="dart $noaomodules"
5604 # set default CD/DVD devices
5605 if win32 || os2
; then
5606 default_cdrom_device
="D:"
5608 default_cdrom_device
="/dev/disk1"
5609 elif dragonfly
; then
5610 default_cdrom_device
="/dev/cd0"
5612 default_cdrom_device
="/dev/acd0"
5614 default_cdrom_device
="/dev/rcd0c"
5616 default_cdrom_device
="/vol/dev/aliases/cdrom0"
5617 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5618 # file system and the volfs service.
5619 test -r "/cdrom/cdrom0" && default_cdrom_device
="/cdrom/cdrom0"
5621 default_cdrom_device
="a1ide.device:2"
5623 default_cdrom_device
="/dev/cdrom"
5626 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos
; then
5627 default_dvd_device
=$default_cdrom_device
5629 default_dvd_device
="/dev/rdiskN"
5631 default_dvd_device
="/dev/dvd"
5635 echocheck
"VCD support"
5636 if test "$_vcd" = auto
; then
5638 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2
; then
5641 header_check
ddk
/ntddcdrm.h
&& _vcd
=yes
5644 if test "$_vcd" = yes; then
5645 inputmodules
="vcd $inputmodules"
5646 def_vcd
='#define CONFIG_VCD 1'
5648 def_vcd
='#undef CONFIG_VCD'
5649 noinputmodules
="vcd $noinputmodules"
5650 res_comment
="not supported on this OS"
5656 echocheck
"Blu-ray support"
5657 if test "$_bluray" = auto
; then
5662 #include <libbluray/bluray.h>
5664 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5668 compile_check
$TMPC -lbluray && _bluray
=yes
5670 if test "$_bluray" = yes ; then
5671 def_bluray
='#define CONFIG_LIBBLURAY 1'
5672 extra_ldflags
="$extra_ldflags -lbluray"
5673 inputmodules
="bluray $inputmodules"
5675 def_bluray
='#undef CONFIG_LIBBLURAY'
5676 noinputmodules
="bluray $noinputmodules"
5681 if test "$_dvdread_internal" = auto
&& test ! -f "libdvdread4/dvd_reader.c" ; then
5682 _dvdread_internal
=no
5684 if test "$_dvdread_internal" = auto
; then
5685 _dvdread_internal
=no
5687 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux
) \
5688 && (test "$_dvd" = yes ||
test "$_cdrom" = yes ||
test "$_cdio" = yes || \
5689 test "$_dvdio" = yes ||
test "$_bsdi_dvd" = yes) \
5690 || darwin || win32 || os2
; then
5691 _dvdread_internal
=yes
5693 extra_cflags
="-Ilibdvdread4 $extra_cflags"
5695 elif test "$_dvdread" = auto
; then
5697 if test "$_dl" = yes; then
5699 #include <inttypes.h>
5700 #include <dvdread/dvd_reader.h>
5701 #include <dvdread/ifo_types.h>
5702 #include <dvdread/ifo_read.h>
5703 #include <dvdread/nav_read.h>
5704 int main(void) { return 0; }
5706 _dvdreadcflags
=$
($_dvdreadconfig --cflags)
5707 _dvdreadlibs
=$
($_dvdreadconfig --libs)
5708 if cc_check
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5709 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5711 extra_cflags
="$extra_cflags $_dvdreadcflags"
5712 extra_ldflags
="$extra_ldflags $_dvdreadlibs"
5713 res_comment
="external"
5718 if test "$_dvdread_internal" = yes; then
5719 def_dvdread
='#define CONFIG_DVDREAD 1'
5720 inputmodules
="dvdread(internal) $inputmodules"
5722 res_comment
="internal"
5723 elif test "$_dvdread" = yes; then
5724 def_dvdread
='#define CONFIG_DVDREAD 1'
5726 extra_ldflags
="$extra_ldflags -ldvdread"
5727 inputmodules
="dvdread(external) $inputmodules"
5728 res_comment
="external"
5730 def_dvdread
='#undef CONFIG_DVDREAD'
5731 noinputmodules
="dvdread $noinputmodules"
5736 echocheck
"internal libdvdcss"
5737 if test "$_libdvdcss_internal" = auto
; then
5738 _libdvdcss_internal
=no
5739 test "$_dvdread_internal" = yes && _libdvdcss_internal
=yes
5740 hpux
&& test "$_hpux_scsi_h" = no
&& _libdvdcss_internal
=no
5742 if test "$_libdvdcss_internal" = yes ; then
5743 if linux || netbsd || openbsd || bsdos
; then
5744 def_dvd_linux
='#define HAVE_LINUX_DVD_STRUCT 1'
5745 openbsd
&& def_dvd_openbsd
='#define HAVE_OPENBSD_DVD_STRUCT 1'
5746 elif freebsd || dragonfly
; then
5747 def_dvd_bsd
='#define HAVE_BSD_DVD_STRUCT 1'
5749 def_dvd_darwin
='#define DARWIN_DVD_IOCTL'
5750 extra_ldflags
="$extra_ldflags -framework IOKit -framework Carbon"
5752 cflags_libdvdcss
="-DSYS_CYGWIN -DWIN32"
5754 cflags_libdvdcss
="-DSYS_BEOS"
5756 cflags_libdvdcss
="-DSYS_OS2"
5758 cflags_libdvdcss_dvdread
="-Ilibdvdcss"
5759 def_dvdcss
="#define HAVE_DVDCSS_DVDCSS_H 1"
5760 inputmodules
="libdvdcss(internal) $inputmodules"
5763 noinputmodules
="libdvdcss(internal) $noinputmodules"
5765 echores
"$_libdvdcss_internal"
5768 echocheck
"cdparanoia"
5769 if test "$_cdparanoia" = auto
; then
5771 #include <cdda_interface.h>
5772 #include <cdda_paranoia.h>
5773 // This need a better test. How ?
5774 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5777 for _inc_tmp
in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5778 cc_check
$_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5779 _cdparanoia
=yes && extra_cflags
="$extra_cflags $_inc_tmp" && break
5782 if test "$_cdparanoia" = yes ; then
5784 extra_ldflags
="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5785 openbsd
&& extra_ldflags
="$extra_ldflags -lutil"
5787 echores
"$_cdparanoia"
5791 if test "$_libcdio" = auto
&& test "$_cdparanoia" = no
; then
5794 #include <cdio/version.h>
5795 #include <cdio/cdda.h>
5796 #include <cdio/paranoia.h>
5798 void *test = cdda_verbose_set;
5799 printf("%s\n", CDIO_VERSION);
5800 return test == (void *)1;
5804 for _ld_tmp
in "" "-lwinmm" ; do
5805 _ld_tmp
="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5806 cc_check
$_ld_tmp $_ld_lm \
5807 && _libcdio
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
5809 if test "$_libcdio" = no
&& $_pkg_config --exists libcdio_paranoia
; then
5810 _inc_tmp
=$
($_pkg_config --cflags libcdio_paranoia
)
5811 _ld_tmp
=$
($_pkg_config --libs libcdio_paranoia
)
5812 cc_check
$_inc_tmp $_ld_tmp $_ld_lm && _libcdio
=yes \
5813 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
5816 if test "$_libcdio" = yes && test "$_cdparanoia" = no
; then
5818 def_libcdio
='#define CONFIG_LIBCDIO 1'
5819 def_havelibcdio
='yes'
5821 if test "$_cdparanoia" = yes ; then
5822 res_comment
="using cdparanoia"
5824 def_libcdio
='#undef CONFIG_LIBCDIO'
5825 def_havelibcdio
='no'
5829 if test "$_cdda" = yes ; then
5830 test $_cddb = auto
&& test $networking = yes && _cddb
=yes
5831 def_cdparanoia
='#define CONFIG_CDDA 1'
5832 inputmodules
="cdda $inputmodules"
5834 def_cdparanoia
='#undef CONFIG_CDDA'
5835 noinputmodules
="cdda $noinputmodules"
5838 if test "$_cddb" = yes ; then
5839 def_cddb
='#define CONFIG_CDDB 1'
5840 inputmodules
="cddb $inputmodules"
5843 def_cddb
='#undef CONFIG_CDDB'
5844 noinputmodules
="cddb $noinputmodules"
5847 echocheck
"bitmap font support"
5848 if test "$_bitmap_font" = yes ; then
5849 def_bitmap_font
="#define CONFIG_BITMAP_FONT 1"
5851 def_bitmap_font
="#undef CONFIG_BITMAP_FONT"
5853 echores
"$_bitmap_font"
5856 echocheck
"freetype >= 2.0.9"
5858 # freetype depends on iconv
5859 if test "$_iconv" = no
; then
5861 res_comment
="iconv support needed"
5864 if test "$_freetype" = auto
; then
5865 if ( $_freetypeconfig --version ) >/dev
/null
2>&1 ; then
5868 #include <ft2build.h>
5869 #include FT_FREETYPE_H
5870 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5871 #error "Need FreeType 2.0.9 or newer"
5875 FT_Init_FreeType(&library);
5880 cc_check $
($_freetypeconfig --cflags) $
($_freetypeconfig --libs) && _freetype
=yes
5885 if test "$_freetype" = yes ; then
5886 def_freetype
='#define CONFIG_FREETYPE 1'
5887 extra_cflags
="$extra_cflags $($_freetypeconfig --cflags)"
5888 extra_ldflags
="$extra_ldflags $($_freetypeconfig --libs)"
5890 def_freetype
='#undef CONFIG_FREETYPE'
5892 echores
"$_freetype"
5894 if test "$_freetype" = no
; then
5896 res_comment
="FreeType support needed"
5898 echocheck
"fontconfig"
5899 if test "$_fontconfig" = auto
; then
5903 #include <fontconfig/fontconfig.h>
5904 #if FC_VERSION < 20402
5905 #error At least version 2.4.2 of fontconfig required
5909 if (err == FcFalse) {
5910 printf("Couldn't initialize fontconfig lib\n");
5917 for _ld_tmp
in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5918 _ld_tmp
="-lfontconfig $_ld_tmp"
5919 cc_check
$_ld_tmp && _fontconfig
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
5921 if test "$_fontconfig" = no
&& $_pkg_config --exists fontconfig
; then
5922 _inc_tmp
=$
($_pkg_config --cflags fontconfig
)
5923 _ld_tmp
=$
($_pkg_config --libs fontconfig
)
5924 cc_check
$_inc_tmp $_ld_tmp && _fontconfig
=yes \
5925 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
5928 if test "$_fontconfig" = yes ; then
5929 def_fontconfig
='#define CONFIG_FONTCONFIG 1'
5931 def_fontconfig
='#undef CONFIG_FONTCONFIG'
5933 echores
"$_fontconfig"
5936 echocheck
"SSA/ASS support"
5937 if test "$_ass" = auto
-o "$_ass" = yes ; then
5938 if $_pkg_config libass
; then
5940 def_ass
='#define CONFIG_ASS 1'
5941 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libass)"
5942 extra_cflags
="$extra_cflags $($_pkg_config --cflags libass)"
5945 def_ass
='#undef CONFIG_ASS'
5948 def_ass
='#undef CONFIG_ASS'
5953 echocheck
"fribidi with charsets"
5956 if test "$_fribidi" = auto
; then
5959 /* workaround for fribidi 0.10.4 and below */
5960 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5961 #include <fribidi/fribidi.h>
5963 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5971 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
5972 if $_pkg_config --exists fribidi
> /dev
/null
2>&1 &&
5973 test "$_fribidi" = no
; then
5974 _inc_tmp
="$($_pkg_config --cflags)"
5975 _ld_tmp
="$($_pkg_config --libs)"
5976 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
5979 if test "$_fribidi" = yes ; then
5980 def_fribidi
='#define CONFIG_FRIBIDI 1'
5981 extra_cflags
="$extra_cflags $_inc_tmp"
5982 extra_ldflags
="$extra_ldflags $_ld_tmp"
5984 def_fribidi
='#undef CONFIG_FRIBIDI'
5990 if test "$_enca" = auto
; then
5992 #include <sys/types.h>
5997 langs = enca_get_languages(&langcnt);
6002 cc_check
-lenca $_ld_lm && _enca
=yes
6004 if test "$_enca" = yes ; then
6005 def_enca
='#define CONFIG_ENCA 1'
6006 extra_ldflags
="$extra_ldflags -lenca"
6008 def_enca
='#undef CONFIG_ENCA'
6015 function_check zlib.h
'inflate(0, Z_NO_FLUSH)' -lz && _zlib
=yes
6016 if test "$_zlib" = yes ; then
6017 def_zlib
='#define CONFIG_ZLIB 1'
6018 extra_ldflags
="$extra_ldflags -lz"
6020 def_zlib
='#define CONFIG_ZLIB 0'
6027 def_bzlib
='#define CONFIG_BZLIB 0'
6028 function_check bzlib.h
'BZ2_bzlibVersion()' -lbz2 && bzlib
=yes
6029 if test "$bzlib" = yes ; then
6030 def_bzlib
='#define CONFIG_BZLIB 1'
6031 extra_ldflags
="$extra_ldflags -lbz2"
6037 if test "$_rtc" = auto
; then
6039 #include <sys/ioctl.h>
6041 #include <linux/rtc.h>
6044 #define RTC_PIE_ON RTCIO_PIE_ON
6046 int main(void) { return RTC_PIE_ON; }
6049 cc_check
&& _rtc
=yes
6052 if test "$_rtc" = yes ; then
6053 def_rtc
='#define HAVE_RTC 1'
6055 def_rtc
='#undef HAVE_RTC'
6060 echocheck
"liblzo2 support"
6061 if test "$_liblzo" = auto
; then
6063 function_check lzo
/lzo1x.h
'lzo_init()' -llzo2 && _liblzo
=yes
6065 if test "$_liblzo" = yes ; then
6066 def_liblzo
='#define CONFIG_LIBLZO 1'
6067 extra_ldflags
="$extra_ldflags -llzo2"
6068 codecmodules
="liblzo $codecmodules"
6070 def_liblzo
='#undef CONFIG_LIBLZO'
6071 nocodecmodules
="liblzo $nocodecmodules"
6076 echocheck
"mad support"
6077 if test "$_mad" = auto
; then
6079 header_check mad.h
-lmad && _mad
=yes
6081 if test "$_mad" = yes ; then
6082 def_mad
='#define CONFIG_LIBMAD 1'
6083 extra_ldflags
="$extra_ldflags -lmad"
6084 codecmodules
="libmad $codecmodules"
6086 def_mad
='#undef CONFIG_LIBMAD'
6087 nocodecmodules
="libmad $nocodecmodules"
6092 if test "$_twolame" = auto
; then
6094 function_check twolame.h
'twolame_init()' -ltwolame $_ld_lm && _twolame
=yes
6096 if test "$_twolame" = yes ; then
6097 def_twolame
='#define CONFIG_TWOLAME 1'
6098 libs_mencoder
="$libs_mencoder -ltwolame"
6099 codecmodules
="twolame $codecmodules"
6101 def_twolame
='#undef CONFIG_TWOLAME'
6102 nocodecmodules
="twolame $nocodecmodules"
6107 if test "$_toolame" = auto
; then
6109 if test "$_twolame" = yes ; then
6110 res_comment
="disabled by twolame"
6112 function_check toolame.h
'toolame_init()' -ltoolame $_ld_lm && _toolame
=yes
6115 if test "$_toolame" = yes ; then
6116 def_toolame
='#define CONFIG_TOOLAME 1'
6117 libs_mencoder
="$libs_mencoder -ltoolame"
6118 codecmodules
="toolame $codecmodules"
6120 def_toolame
='#undef CONFIG_TOOLAME'
6121 nocodecmodules
="toolame $nocodecmodules"
6123 if test "$_toolamedir" ; then
6124 res_comment
="using $_toolamedir"
6128 echocheck
"OggVorbis support"
6129 if test "$_tremor_internal" = yes; then
6131 elif test "$_tremor" = auto
; then
6133 function_check tremor
/ivorbiscodec.h
'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor
=yes && _libvorbis
=no
6135 if test "$_libvorbis" = auto
; then
6137 function_check vorbis
/codec.h
'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis
=yes
6139 if test "$_tremor_internal" = yes ; then
6141 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6142 def_tremor
='#define CONFIG_TREMOR 1'
6143 codecmodules
="tremor(internal) $codecmodules"
6144 res_comment
="internal Tremor"
6145 if test "$_tremor_low" = yes ; then
6146 cflags_tremor_low
="-D_LOW_ACCURACY_"
6147 res_comment
="internal low accuracy Tremor"
6149 elif test "$_tremor" = yes ; then
6151 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6152 def_tremor
='#define CONFIG_TREMOR 1'
6153 codecmodules
="tremor(external) $codecmodules"
6154 res_comment
="external Tremor"
6155 extra_ldflags
="$extra_ldflags -logg -lvorbisidec"
6156 elif test "$_libvorbis" = yes ; then
6158 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6159 codecmodules
="libvorbis $codecmodules"
6160 res_comment
="libvorbis"
6161 extra_ldflags
="$extra_ldflags -lvorbis -logg"
6164 nocodecmodules
="libvorbis $nocodecmodules"
6168 echocheck
"libspeex (version >= 1.1 required)"
6169 if test "$_speex" = auto
; then
6173 #include <speex/speex.h>
6174 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
6176 cc_check
-lspeex $_ld_lm && _speex
=yes
6178 if test "$_speex" = yes ; then
6179 def_speex
='#define CONFIG_SPEEX 1'
6180 extra_ldflags
="$extra_ldflags -lspeex"
6181 codecmodules
="speex $codecmodules"
6183 def_speex
='#undef CONFIG_SPEEX'
6184 nocodecmodules
="speex $nocodecmodules"
6188 echocheck
"OggTheora support"
6189 if test "$_theora" = auto
; then
6192 #include <theora/theora.h>
6195 /* Theora is in flux, make sure that all interface routines and datatypes
6196 * exist and work the way we expect it, so we don't break MPlayer. */
6205 theora_info_init(&inf);
6206 theora_comment_init(&tc);
6210 /* we don't want to execute this kind of nonsense; just for making sure
6211 * that compilation works... */
6212 memset(&op, 0, sizeof(op));
6213 r = theora_decode_header(&inf, &tc, &op);
6214 r = theora_decode_init(&st, &inf);
6215 t = theora_granule_time(&st, op.granulepos);
6216 r = theora_decode_packetin(&st, &op);
6217 r = theora_decode_YUVout(&st, &yuv);
6223 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6224 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6225 cc_check
$_inc_theora $_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" &&
6226 extra_cflags
="$extra_cflags $_inc_theora" && _theora
=yes
6227 if test _theora
= no
; then
6228 _ld_theora
="-ltheora -logg"
6229 cc_check
$_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6231 if test "$_theora" = no
&& test "$_tremor_internal" = yes; then
6232 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6233 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6234 cc_check tremor
/bitwise.c
$_inc_theora $_ld_theora &&
6235 extra_ldflags
="$extra_ldflags $_ld_theora" &&
6236 extra_cflags
="$extra_cflags $_inc_theora" && _theora
=yes
6237 if test _theora
= no
; then
6238 _ld_theora
="-ltheora -logg"
6239 cc_check tremor
/bitwise.c
$_ld_theora &&
6240 extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6244 if test "$_theora" = yes ; then
6245 def_theora
='#define CONFIG_OGGTHEORA 1'
6246 codecmodules
="libtheora $codecmodules"
6247 # when --enable-theora is forced, we'd better provide a probably sane
6248 # $_ld_theora than nothing
6249 test -z "$_ld_theora" && extra_ldflags
="$extra_ldflags -ltheora -logg"
6251 def_theora
='#undef CONFIG_OGGTHEORA'
6252 nocodecmodules
="libtheora $nocodecmodules"
6256 echocheck
"mp3lib support"
6257 if test "$_mp3lib" = auto
; then
6258 test "$cc_vendor" = intel
&& test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib
=no || _mp3lib
=yes
6260 if test "$_mp3lib" = yes ; then
6261 def_mp3lib
='#define CONFIG_MP3LIB 1'
6262 codecmodules
="mp3lib(internal) $codecmodules"
6264 def_mp3lib
='#undef CONFIG_MP3LIB'
6265 nocodecmodules
="mp3lib(internal) $nocodecmodules"
6269 # Any version of libmpg123 shall be fine.
6270 echocheck
"mpg123 support"
6271 def_mpg123
='#undef CONFIG_MPG123'
6272 if test "$_mpg123" = auto
; then
6274 function_check mpg123.h
'mpg123_init()' -lmpg123 && _mpg123
=yes && extra_ldflags
="$extra_ldflags -lmpg123"
6276 if test "$_mpg123" = yes ; then
6277 def_mpg123
='#define CONFIG_MPG123 1'
6278 codecmodules
="mpg123 $codecmodules"
6280 nocodecmodules
="mpg123 $nocodecmodules"
6284 echocheck
"liba52 support"
6285 def_liba52
='#undef CONFIG_LIBA52'
6286 if test "$_liba52" = auto
; then
6289 #include <inttypes.h>
6290 #include <a52dec/a52.h>
6291 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6293 cc_check
-la52 && _liba52
=yes && extra_ldflags
="$extra_ldflags -la52"
6295 if test "$_liba52" = yes ; then
6296 def_liba52
='#define CONFIG_LIBA52 1'
6297 codecmodules
="liba52 $codecmodules"
6299 nocodecmodules
="liba52 $nocodecmodules"
6303 echocheck
"internal libmpeg2 support"
6304 if test "$_libmpeg2" = auto
; then
6306 if alpha
&& test cc_vendor
=gnu
; then
6308 2*|
3.0*|
3.1*) # cannot compile MVI instructions
6310 res_comment
="broken gcc"
6315 if test "$_libmpeg2" = yes ; then
6316 def_libmpeg2
='#define CONFIG_LIBMPEG2 1'
6317 codecmodules
="libmpeg2(internal) $codecmodules"
6319 def_libmpeg2
='#undef CONFIG_LIBMPEG2'
6320 nocodecmodules
="libmpeg2(internal) $nocodecmodules"
6322 echores
"$_libmpeg2"
6324 echocheck
"libdca support"
6325 if test "$_libdca" = auto
; then
6328 #include <inttypes.h>
6330 int main(void) { dts_init(0); return 0; }
6332 for _ld_dca
in -ldca -ldts ; do
6333 cc_check
$_ld_dca $_ld_lm && extra_ldflags
="$extra_ldflags $_ld_dca" \
6334 && _libdca
=yes && break
6337 if test "$_libdca" = yes ; then
6338 def_libdca
='#define CONFIG_LIBDCA 1'
6339 codecmodules
="libdca $codecmodules"
6341 def_libdca
='#undef CONFIG_LIBDCA'
6342 nocodecmodules
="libdca $nocodecmodules"
6346 echocheck
"libmpcdec (musepack, version >= 1.2.1 required)"
6347 if test "$_musepack" = auto
; then
6351 #include <mpcdec/mpcdec.h>
6353 mpc_streaminfo info;
6354 mpc_decoder decoder;
6355 mpc_decoder_set_streaminfo(&decoder, &info);
6356 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6360 cc_check
-lmpcdec $_ld_lm && _musepack
=yes
6362 if test "$_musepack" = yes ; then
6363 def_musepack
='#define CONFIG_MUSEPACK 1'
6364 extra_ldflags
="$extra_ldflags -lmpcdec"
6365 codecmodules
="musepack $codecmodules"
6367 def_musepack
='#undef CONFIG_MUSEPACK'
6368 nocodecmodules
="musepack $nocodecmodules"
6370 echores
"$_musepack"
6373 echocheck
"FAAC support"
6374 if test "$_faac" = auto
; then
6376 #include <inttypes.h>
6378 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6381 for _ld_faac
in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6382 cc_check
$_ld_faac $_ld_lm && libs_mencoder
="$libs_mencoder $_ld_faac" && _faac
=yes && break
6385 if test "$_faac" = yes ; then
6386 def_faac
="#define CONFIG_FAAC 1"
6387 codecmodules
="faac $codecmodules"
6389 def_faac
="#undef CONFIG_FAAC"
6390 nocodecmodules
="faac $nocodecmodules"
6395 echocheck
"FAAD2 support"
6396 if test "$_faad_internal" = auto
; then
6397 if x86_32
&& test cc_vendor
=gnu
; then
6399 3.1*|
3.2) # ICE/insn with these versions
6401 res_comment
="broken gcc"
6413 if test "$_faad" = auto
; then
6416 #ifndef FAAD_MIN_STREAMSIZE
6417 #error Too old version
6419 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6420 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6422 cc_check
-lfaad $_ld_lm && _faad
=yes
6425 def_faad
='#undef CONFIG_FAAD'
6426 def_faad_internal
="#undef CONFIG_FAAD_INTERNAL"
6427 if test "$_faad_internal" = yes ; then
6428 def_faad_internal
="#define CONFIG_FAAD_INTERNAL 1"
6429 res_comment
="internal floating-point"
6430 if test "$_faad_fixed" = yes ; then
6431 # The FIXED_POINT implementation of FAAD2 improves performance
6432 # on some platforms, especially for SBR files.
6433 cflags_faad_fixed
="-DFIXED_POINT"
6434 res_comment
="internal fixed-point"
6436 elif test "$_faad" = yes ; then
6437 extra_ldflags
="$extra_ldflags -lfaad"
6440 if test "$_faad" = yes ; then
6441 def_faad
='#define CONFIG_FAAD 1'
6442 if test "$_faad_internal" = yes ; then
6443 codecmodules
="faad2(internal) $codecmodules"
6445 codecmodules
="faad2 $codecmodules"
6449 nocodecmodules
="faad2 $nocodecmodules"
6454 echocheck
"LADSPA plugin support"
6455 if test "$_ladspa" = auto
; then
6459 LADSPA_Descriptor ld = {0};
6464 cc_check
&& _ladspa
=yes
6466 if test "$_ladspa" = yes; then
6467 def_ladspa
="#define CONFIG_LADSPA 1"
6469 def_ladspa
="#undef CONFIG_LADSPA"
6474 echocheck
"libbs2b audio filter support"
6475 if test "$_libbs2b" = auto
; then
6478 #if BS2B_VERSION_MAJOR < 3
6479 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6489 if $_pkg_config --exists libbs2b
; then
6490 _inc_tmp
=$
($_pkg_config --cflags libbs2b
)
6491 _ld_tmp
=$
($_pkg_config --libs libbs2b
)
6492 cc_check
$_inc_tmp $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" &&
6493 extra_cflags
="$extra_cflags $_inc_tmp" && _libbs2b
=yes
6495 for _inc_tmp
in "" -I/usr
/include
/bs2b
-I/usr
/local
/include \
6496 -I/usr
/local
/include
/bs2b
; do
6497 if cc_check
$_inc_tmp $_ld_lm -lbs2b ; then
6498 extra_ldflags
="$extra_ldflags -lbs2b"
6499 extra_cflags
="$extra_cflags $_inc_tmp"
6506 def_libbs2b
="#undef CONFIG_LIBBS2B"
6507 test "$_libbs2b" = yes && def_libbs2b
="#define CONFIG_LIBBS2B 1"
6511 if test -z "$_codecsdir" ; then
6512 for dir
in "$_libdir/codecs" "$_libdir/win32" /usr
/local
/lib
/codecs \
6513 /usr
/lib
/codecs
/usr
/local
/lib
/win32
/usr
/lib
/win32
; do
6514 if test -d "$dir" ; then
6520 # Fall back on default directory.
6521 if test -z "$_codecsdir" ; then
6522 _codecsdir
="$_libdir/codecs"
6523 mingw32 || os2
&& _codecsdir
="codecs"
6527 echocheck
"Win32 codecs"
6528 if test "$_win32dll" = auto
; then
6530 if x86_32
&& ! qnx
; then
6534 if test "$_win32dll" = yes ; then
6535 def_win32dll
='#define CONFIG_WIN32DLL 1'
6537 def_win32_loader
='#define WIN32_LOADER 1'
6538 _win32_emulation
=yes
6540 extra_ldflags
="$extra_ldflags -ladvapi32 -lole32"
6541 res_comment
="using native windows"
6543 codecmodules
="win32 $codecmodules"
6545 def_win32dll
='#undef CONFIG_WIN32DLL'
6546 def_win32_loader
='#undef WIN32_LOADER'
6547 nocodecmodules
="win32 $nocodecmodules"
6549 echores
"$_win32dll"
6552 echocheck
"XAnim codecs"
6553 if test "$_xanim" = auto
; then
6555 res_comment
="dynamic loader support needed"
6556 if test "$_dl" = yes ; then
6560 if test "$_xanim" = yes ; then
6561 def_xanim
='#define CONFIG_XANIM 1'
6562 codecmodules
="xanim $codecmodules"
6564 def_xanim
='#undef CONFIG_XANIM'
6565 nocodecmodules
="xanim $nocodecmodules"
6570 echocheck
"RealPlayer codecs"
6571 if test "$_real" = auto
; then
6573 res_comment
="dynamic loader support needed"
6574 if test "$_dl" = yes ||
test "$_win32dll" = yes &&
6575 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2
) ; then
6579 if test "$_real" = yes ; then
6580 def_real
='#define CONFIG_REALCODECS 1'
6581 codecmodules
="real $codecmodules"
6583 def_real
='#undef CONFIG_REALCODECS'
6584 nocodecmodules
="real $nocodecmodules"
6589 echocheck
"QuickTime codecs"
6591 def_qtx_win32
='#undef CONFIG_QTX_CODECS_WIN32'
6592 if test "$_qtx" = auto
; then
6593 test "$_win32dll" = yes ||
test "$quicktime" = yes && _qtx
=yes
6595 if test "$_qtx" = yes ; then
6596 def_qtx
='#define CONFIG_QTX_CODECS 1'
6597 win32
&& _qtx_codecs_win32
=yes && def_qtx_win32
='#define CONFIG_QTX_CODECS_WIN32 1'
6598 codecmodules
="qtx $codecmodules"
6599 darwin || win32 || _qtx_emulation
=yes
6601 def_qtx
='#undef CONFIG_QTX_CODECS'
6602 nocodecmodules
="qtx $nocodecmodules"
6606 echocheck
"Nemesi Streaming Media libraries"
6607 if test "$_nemesi" = auto
&& test "$networking" = yes ; then
6609 if $_pkg_config libnemesi
--atleast-version=0.6.3 ; then
6610 extra_cflags
="$extra_cflags $($_pkg_config --cflags libnemesi)"
6611 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libnemesi)"
6615 if test "$_nemesi" = yes; then
6617 def_nemesi
='#define CONFIG_LIBNEMESI 1'
6618 inputmodules
="nemesi $inputmodules"
6620 _native_rtsp
="$networking"
6622 def_nemesi
='#undef CONFIG_LIBNEMESI'
6623 noinputmodules
="nemesi $noinputmodules"
6627 echocheck
"LIVE555 Streaming Media libraries"
6628 if test "$_live" = auto
&& test "$networking" = yes ; then
6629 cat > $TMPCPP << EOF
6630 #include <liveMedia.hh>
6631 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6632 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6634 int main(void) { return 0; }
6638 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
6639 cxx_check
$I/liveMedia
/include
$I/UsageEnvironment
/include \
6640 $I/groupsock
/include
&& _livelibdir
=$
(echo $I|
sed s
/-I//) && \
6641 extra_ldflags
="$_livelibdir/liveMedia/libliveMedia.a \
6642 $_livelibdir/groupsock/libgroupsock.a \
6643 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6644 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6645 $extra_ldflags -lstdc++" \
6646 extra_cxxflags
="-I$_livelibdir/liveMedia/include \
6647 -I$_livelibdir/UsageEnvironment/include \
6648 -I$_livelibdir/BasicUsageEnvironment/include \
6649 -I$_livelibdir/groupsock/include" && \
6652 if test "$_live" != yes ; then
6653 ld_tmp
="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6654 if cxx_check
-I/usr
/include
/liveMedia
-I/usr
/include
/UsageEnvironment
-I/usr
/include
/groupsock
$ld_tmp; then
6659 if test "$_live" = yes && test "$networking" = yes; then
6660 test $_livelibdir && res_comment
="using $_livelibdir"
6661 def_live
='#define CONFIG_LIVE555 1'
6662 inputmodules
="live555 $inputmodules"
6663 elif test "$_live_dist" = yes && test "$networking" = yes; then
6664 res_comment
="using distribution version"
6666 def_live
='#define CONFIG_LIVE555 1'
6667 extra_ldflags
="$extra_ldflags $ld_tmp"
6668 extra_cxxflags
="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6669 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6670 inputmodules
="live555 $inputmodules"
6673 def_live
='#undef CONFIG_LIVE555'
6674 noinputmodules
="live555 $noinputmodules"
6680 all_ffmpeg_libs
="libavutil libavcodec libavformat libswscale libpostproc"
6681 echocheck
"FFmpeg ($all_ffmpeg_libs)"
6682 if test "$ffmpeg" = auto
; then
6684 if $_pkg_config --exists $all_ffmpeg_libs ; then
6685 inc_ffmpeg
=$
($_pkg_config --cflags $all_ffmpeg_libs)
6686 _ld_tmp
=$
($_pkg_config --libs $all_ffmpeg_libs)
6687 extra_ldflags
="$extra_ldflags $_ld_tmp"
6688 extra_cflags
="$extra_cflags $inc_ffmpeg"
6690 elif header_check libavcore
/avutil.h
-lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6691 extra_ldflags
="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6696 if test "$ffmpeg" = yes; then
6697 def_ffmpeg
='#define CONFIG_FFMPEG 1'
6698 codecmodules
="ffmpeg $codecmodules"
6700 def_ffmpeg
='#undef CONFIG_FFMPEG'
6701 nocodecmodules
="ffmpeg $nocodecmodules"
6705 def_ffmpeg_internals
="#undef CONFIG_FFMPEG_INTERNALS"
6706 if ! test -z "$_ffmpeg_source" ; then
6707 test "$ffmpeg" = yes && def_ffmpeg_internals
="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals
=yes
6712 echocheck
"libdv-0.9.5+"
6713 if test "$_libdv" = auto
; then
6715 function_check libdv
/dv.h
'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv
=yes
6717 if test "$_libdv" = yes ; then
6718 def_libdv
='#define CONFIG_LIBDV095 1'
6719 extra_ldflags
="$extra_ldflags -ldv"
6720 codecmodules
="libdv $codecmodules"
6722 def_libdv
='#undef CONFIG_LIBDV095'
6723 nocodecmodules
="libdv $nocodecmodules"
6729 if test "$_xvid" = auto
; then
6731 for _ld_tmp
in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6732 function_check xvid.h
'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6733 extra_ldflags
="$extra_ldflags $_ld_tmp" && _xvid
=yes && break
6737 if test "$_xvid" = yes ; then
6738 def_xvid
='#define CONFIG_XVID4 1'
6739 codecmodules
="xvid $codecmodules"
6741 def_xvid
='#undef CONFIG_XVID4'
6742 nocodecmodules
="xvid $nocodecmodules"
6747 if test "$_x264" = auto
; then
6749 #include <inttypes.h>
6752 #error We do not support old versions of x264. Get the latest from git.
6754 int main(void) { x264_encoder_open((void*)0); return 0; }
6757 for _ld_x264
in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6758 cc_check
$_ld_x264 && libs_mencoder
="$libs_mencoder $_ld_x264" && _x264
=yes && break
6762 if test "$_x264" = yes ; then
6763 def_x264
='#define CONFIG_X264 1'
6764 codecmodules
="x264 $codecmodules"
6766 def_x264
='#undef CONFIG_X264'
6767 nocodecmodules
="x264 $nocodecmodules"
6772 if test "$_libnut" = auto
; then
6775 nut_context_tt * nut;
6776 int main(void) { nut_error(0); return 0; }
6779 cc_check
-lnut && _libnut
=yes
6782 if test "$_libnut" = yes ; then
6783 def_libnut
='#define CONFIG_LIBNUT 1'
6784 extra_ldflags
="$extra_ldflags -lnut"
6786 def_libnut
='#undef CONFIG_LIBNUT'
6790 # These VO checks must be done after the FFmpeg one
6791 echocheck
"/dev/mga_vid"
6792 if test "$_mga" = auto
; then
6794 test -c /dev
/mga_vid
&& _mga
=yes
6796 if test "$_mga" = yes ; then
6797 def_mga
='#define CONFIG_MGA 1'
6798 vomodules
="mga $vomodules"
6800 def_mga
='#undef CONFIG_MGA'
6801 novomodules
="mga $novomodules"
6807 if test "$_xmga" = auto
; then
6809 test "$_x11" = yes && test "$_mga" = yes && _xmga
=yes
6811 if test "$_xmga" = yes ; then
6812 def_xmga
='#define CONFIG_XMGA 1'
6813 vomodules
="xmga $vomodules"
6815 def_xmga
='#undef CONFIG_XMGA'
6816 novomodules
="xmga $novomodules"
6821 if test "$_zr" = auto
; then
6822 #36067's seem to identify themselves as 36057PQC's, so the line
6823 #below should work for 36067's and 36057's.
6824 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc
/pci
; then
6830 if test "$_zr" = yes ; then
6831 if test "$ffmpeg_internals" = yes ; then
6832 def_zr
='#define CONFIG_ZR 1'
6833 vomodules
="zr zr2 $vomodules"
6835 res_comment
="FFmpeg internal headers are required by zr, sorry"
6836 novomodules
="zr $novomodules"
6837 def_zr
='#undef CONFIG_ZR'
6840 def_zr
='#undef CONFIG_ZR'
6841 novomodules
="zr zr2 $novomodules"
6845 # mencoder requires (optional) those libs: libmp3lame
6846 if test "$_mencoder" != no
; then
6848 echocheck
"libmp3lame"
6849 def_mp3lame_preset
='#undef CONFIG_MP3LAME_PRESET'
6850 def_mp3lame_preset_medium
='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6851 if test "$_mp3lame" = auto
; then
6854 #include <lame/lame.h>
6855 int main(void) { lame_version_t lv; lame_init();
6856 get_lame_version_numerical(&lv);
6859 cc_check
-lmp3lame $_ld_lm && _mp3lame
=yes
6861 if test "$_mp3lame" = yes ; then
6862 def_mp3lame
="#define CONFIG_MP3LAME 1"
6863 _ld_mp3lame
=-lmp3lame
6864 libs_mencoder
="$libs_mencoder $_ld_mp3lame"
6865 function_check lame
/lame.h
'lame_set_preset(NULL, STANDARD_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset
="#define CONFIG_MP3LAME_PRESET 1"
6866 function_check lame
/lame.h
'lame_set_preset(NULL, MEDIUM_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium
="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
6868 def_mp3lame
='#undef CONFIG_MP3LAME'
6872 fi # test "$_mencoder" != no
6874 echocheck
"mencoder"
6875 if test "$_mencoder" = yes ; then
6876 def_muxers
='#define CONFIG_MUXERS 1'
6878 def_muxers
='#define CONFIG_MUXERS 0'
6880 echores
"$_mencoder"
6883 echocheck
"UnRAR executable"
6884 if test "$_unrar_exec" = auto
; then
6886 mingw32
&& _unrar_exec
="no"
6888 if test "$_unrar_exec" = yes ; then
6889 def_unrar_exec
='#define CONFIG_UNRAR_EXEC 1'
6891 def_unrar_exec
='#undef CONFIG_UNRAR_EXEC'
6893 echores
"$_unrar_exec"
6895 echocheck
"TV interface"
6896 if test "$_tv" = yes ; then
6897 def_tv
='#define CONFIG_TV 1'
6898 inputmodules
="tv $inputmodules"
6900 noinputmodules
="tv $noinputmodules"
6901 def_tv
='#undef CONFIG_TV'
6906 if freebsd || netbsd || openbsd || dragonfly || bsdos
; then
6907 echocheck
"*BSD BT848 bt8xx header"
6909 for file in "machine/ioctl_bt848.h" \
6910 "dev/bktr/ioctl_bt848.h" \
6911 "dev/video/bktr/ioctl_bt848.h" \
6912 "dev/ic/bt8xx.h" ; do
6914 #include <sys/types.h>
6915 #include <sys/ioctl.h>
6917 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6921 _ioctl_bt848_h_name
="$file"
6925 if test "$_ioctl_bt848_h" = yes ; then
6926 def_ioctl_bt848_h_name
="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6927 res_comment
="using $_ioctl_bt848_h_name"
6929 def_ioctl_bt848_h_name
="#undef IOCTL_BT848_H_NAME"
6931 echores
"$_ioctl_bt848_h"
6933 echocheck
"*BSD ioctl_meteor.h"
6935 for file in "machine/ioctl_meteor.h" \
6936 "dev/bktr/ioctl_meteor.h" \
6937 "dev/video/bktr/ioctl_meteor.h" ; do
6939 #include <sys/types.h>
6941 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
6945 _ioctl_meteor_h_name
="$file"
6949 if test "$_ioctl_meteor_h" = yes ; then
6950 def_ioctl_meteor_h_name
="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
6951 res_comment
="using $_ioctl_meteor_h_name"
6953 def_ioctl_meteor_h_name
="#undef IOCTL_METEOR_H_NAME"
6955 echores
"$_ioctl_meteor_h"
6957 echocheck
"*BSD BrookTree 848 TV interface"
6958 if test "$_tv_bsdbt848" = auto
; then
6960 if test "$_tv" = yes ; then
6962 #include <sys/types.h>
6963 $def_ioctl_meteor_h_name
6964 $def_ioctl_bt848_h_name
6965 #ifdef IOCTL_METEOR_H_NAME
6966 #include IOCTL_METEOR_H_NAME
6968 #ifdef IOCTL_BT848_H_NAME
6969 #include IOCTL_BT848_H_NAME
6972 ioctl(0, METEORSINPUT, 0);
6973 ioctl(0, TVTUNER_GETFREQ, 0);
6977 cc_check
&& _tv_bsdbt848
=yes
6980 if test "$_tv_bsdbt848" = yes ; then
6981 def_tv_bsdbt848
='#define CONFIG_TV_BSDBT848 1'
6982 inputmodules
="tv-bsdbt848 $inputmodules"
6984 def_tv_bsdbt848
='#undef CONFIG_TV_BSDBT848'
6985 noinputmodules
="tv-bsdbt848 $noinputmodules"
6987 echores
"$_tv_bsdbt848"
6988 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6991 echocheck
"DirectShow TV interface"
6992 if test "$_tv_dshow" = auto
; then
6994 if test "$_tv" = yes && win32
; then
6999 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7003 cc_check
-lole32 -luuid && _tv_dshow
=yes
7006 if test "$_tv_dshow" = yes ; then
7007 inputmodules
="tv-dshow $inputmodules"
7008 def_tv_dshow
='#define CONFIG_TV_DSHOW 1'
7009 extra_ldflags
="$extra_ldflags -lole32 -luuid"
7011 noinputmodules
="tv-dshow $noinputmodules"
7012 def_tv_dshow
='#undef CONFIG_TV_DSHOW'
7014 echores
"$_tv_dshow"
7017 echocheck
"Video 4 Linux TV interface"
7018 if test "$_tv_v4l1" = auto
; then
7020 if test "$_tv" = yes && linux
; then
7021 header_check linux
/videodev.h
&& _tv_v4l1
=yes
7024 if test "$_tv_v4l1" = yes ; then
7027 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7028 def_tv_v4l1
='#define CONFIG_TV_V4L1 1'
7029 inputmodules
="tv-v4l $inputmodules"
7031 noinputmodules
="tv-v4l1 $noinputmodules"
7032 def_tv_v4l
='#undef CONFIG_TV_V4L'
7037 echocheck
"Video 4 Linux 2 TV interface"
7038 if test "$_tv_v4l2" = auto
; then
7040 if test "$_tv" = yes && linux
; then
7041 header_check linux
/videodev2.h
&& _tv_v4l2
=yes
7044 if test "$_tv_v4l2" = yes ; then
7047 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7048 def_tv_v4l2
='#define CONFIG_TV_V4L2 1'
7049 inputmodules
="tv-v4l2 $inputmodules"
7051 noinputmodules
="tv-v4l2 $noinputmodules"
7052 def_tv_v4l2
='#undef CONFIG_TV_V4L2'
7057 echocheck
"Radio interface"
7058 if test "$_radio" = yes ; then
7059 def_radio
='#define CONFIG_RADIO 1'
7060 inputmodules
="radio $inputmodules"
7061 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7064 if test "$_radio_capture" = yes ; then
7066 def_radio_capture
="#define CONFIG_RADIO_CAPTURE 1"
7068 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7071 noinputmodules
="radio $noinputmodules"
7072 def_radio
='#undef CONFIG_RADIO'
7073 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7077 echocheck
"Capture for Radio interface"
7078 echores
"$_radio_capture"
7080 echocheck
"Video 4 Linux 2 Radio interface"
7081 if test "$_radio_v4l2" = auto
; then
7083 if test "$_radio" = yes && linux
; then
7084 header_check linux
/videodev2.h
&& _radio_v4l2
=yes
7087 if test "$_radio_v4l2" = yes ; then
7088 def_radio_v4l2
='#define CONFIG_RADIO_V4L2 1'
7090 def_radio_v4l2
='#undef CONFIG_RADIO_V4L2'
7092 echores
"$_radio_v4l2"
7094 echocheck
"Video 4 Linux Radio interface"
7095 if test "$_radio_v4l" = auto
; then
7097 if test "$_radio" = yes && linux
; then
7098 header_check linux
/videodev.h
&& _radio_v4l
=yes
7101 if test "$_radio_v4l" = yes ; then
7102 def_radio_v4l
='#define CONFIG_RADIO_V4L 1'
7104 def_radio_v4l
='#undef CONFIG_RADIO_V4L'
7106 echores
"$_radio_v4l"
7108 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7109 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto
; then
7110 echocheck
"*BSD BrookTree 848 Radio interface"
7113 #include <sys/types.h>
7114 $def_ioctl_bt848_h_name
7115 #ifdef IOCTL_BT848_H_NAME
7116 #include IOCTL_BT848_H_NAME
7118 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7120 cc_check
&& _radio_bsdbt848
=yes
7121 echores
"$_radio_bsdbt848"
7122 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7124 if test "$_radio_bsdbt848" = yes ; then
7125 def_radio_bsdbt848
='#define CONFIG_RADIO_BSDBT848 1'
7127 def_radio_bsdbt848
='#undef CONFIG_RADIO_BSDBT848'
7130 if test "$_radio_v4l" = no
&& test "$_radio_v4l2" = no
&& \
7131 test "$_radio_bsdbt848" = no
&& test "$_radio" = yes ; then
7132 die
"Radio driver requires BSD BT848, V4L or V4L2!"
7135 echocheck
"Video 4 Linux 2 MPEG PVR interface"
7136 if test "$_pvr" = auto
; then
7138 if test "$_tv_v4l2" = yes && linux
; then
7140 #include <linux/videodev2.h>
7141 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7143 cc_check
&& _pvr
=yes
7146 if test "$_pvr" = yes ; then
7147 def_pvr
='#define CONFIG_PVR 1'
7148 inputmodules
="pvr $inputmodules"
7150 noinputmodules
="pvr $noinputmodules"
7151 def_pvr
='#undef CONFIG_PVR'
7157 if ! beos
&& test "$_ftp" = yes ; then
7158 def_ftp
='#define CONFIG_FTP 1'
7159 inputmodules
="ftp $inputmodules"
7161 noinputmodules
="ftp $noinputmodules"
7162 def_ftp
='#undef CONFIG_FTP'
7166 echocheck
"vstream client"
7167 if test "$_vstream" = auto
; then
7170 #include <vstream-client.h>
7171 void vstream_error(const char *format, ... ) {}
7172 int main(void) { vstream_start(); return 0; }
7174 cc_check
-lvstream-client && _vstream
=yes
7176 if test "$_vstream" = yes ; then
7177 def_vstream
='#define CONFIG_VSTREAM 1'
7178 inputmodules
="vstream $inputmodules"
7179 extra_ldflags
="$extra_ldflags -lvstream-client"
7181 noinputmodules
="vstream $noinputmodules"
7182 def_vstream
='#undef CONFIG_VSTREAM'
7187 echocheck
"OSD menu"
7188 if test "$_menu" = yes ; then
7189 def_menu
='#define CONFIG_MENU 1'
7190 test $_dvbin = "yes" && _menu_dvbin
=yes
7192 def_menu
='#undef CONFIG_MENU'
7198 echocheck
"Subtitles sorting"
7199 if test "$_sortsub" = yes ; then
7200 def_sortsub
='#define CONFIG_SORTSUB 1'
7202 def_sortsub
='#undef CONFIG_SORTSUB'
7207 echocheck
"XMMS inputplugin support"
7208 if test "$_xmms" = yes ; then
7209 if ( xmms-config
--version ) >/dev
/null
2>&1 ; then
7210 _xmmsplugindir
=$
(xmms-config
--input-plugin-dir)
7211 _xmmslibdir
=$
(xmms-config
--exec-prefix)/lib
7213 _xmmsplugindir
=/usr
/lib
/xmms
/Input
7214 _xmmslibdir
=/usr
/lib
7217 def_xmms
='#define CONFIG_XMMS 1'
7219 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7221 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7224 def_xmms
='#undef CONFIG_XMMS'
7228 if test "$_charset" != "noconv" ; then
7229 def_charset
="#define MSG_CHARSET \"$_charset\""
7231 def_charset
="#undef MSG_CHARSET"
7235 #############################################################################
7237 echocheck
"automatic gdb attach"
7238 if test "$_crash_debug" = yes ; then
7239 def_crash_debug
='#define CONFIG_CRASH_DEBUG 1'
7241 def_crash_debug
='#undef CONFIG_CRASH_DEBUG'
7244 echores
"$_crash_debug"
7246 echocheck
"compiler support for noexecstack"
7247 if cflag_check
-Wl,-z,noexecstack
; then
7248 extra_ldflags
="-Wl,-z,noexecstack $extra_ldflags"
7254 echocheck
"linker support for --nxcompat --no-seh --dynamicbase"
7255 if cflag_check
"-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7256 extra_ldflags
="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7263 # Dynamic linking flags
7264 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7266 freebsd || netbsd || openbsd || dragonfly || bsdos
&& _ld_dl_dynamic
='-rdynamic'
7267 if test "$_real" = yes ||
test "$_xanim" = yes && ! win32
&& ! qnx
&& ! darwin
&& ! os2
&& ! sunos
; then
7268 _ld_dl_dynamic
='-rdynamic'
7271 extra_ldflags
="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7272 bsdos
&& extra_ldflags
="$extra_ldflags -ldvd"
7273 (netbsd || openbsd
) && x86_32
&& extra_ldflags
="$extra_ldflags -li386"
7275 def_debug
='#undef MP_DEBUG'
7276 test "$_debug" != "" && def_debug
='#define MP_DEBUG 1'
7279 echocheck
"joystick"
7280 def_joystick
='#undef CONFIG_JOYSTICK'
7281 if test "$_joystick" = yes ; then
7283 # TODO add some check
7284 def_joystick
='#define CONFIG_JOYSTICK 1'
7287 res_comment
="unsupported under $system_name"
7290 echores
"$_joystick"
7293 if test "$_lirc" = auto
; then
7295 header_check lirc
/lirc_client.h
-llirc_client && _lirc
=yes
7297 if test "$_lirc" = yes ; then
7298 def_lirc
='#define CONFIG_LIRC 1'
7299 libs_mplayer
="$libs_mplayer -llirc_client"
7301 def_lirc
='#undef CONFIG_LIRC'
7306 if test "$_lircc" = auto
; then
7308 header_check lirc
/lircc.h
-llircc && _lircc
=yes
7310 if test "$_lircc" = yes ; then
7311 def_lircc
='#define CONFIG_LIRCC 1'
7312 libs_mplayer
="$libs_mplayer -llircc"
7314 def_lircc
='#undef CONFIG_LIRCC'
7319 # Detect maemo development platform libraries availability (http://www.maemo.org),
7320 # they are used when run on Nokia 770|8x0
7321 echocheck
"maemo (Nokia 770|8x0)"
7322 if test "$_maemo" = auto
; then
7324 function_check libosso.h
'osso_initialize('', '', 0, NULL)' $
($_pkg_config --cflags --libs libosso
2>/dev
/null
) && _maemo
=yes
7326 if test "$_maemo" = yes ; then
7327 def_maemo
='#define CONFIG_MAEMO 1'
7328 extra_cflags
="$extra_cflags $($_pkg_config --cflags libosso)"
7329 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7331 def_maemo
='#undef CONFIG_MAEMO'
7336 #############################################################################
7338 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7339 # the OMF format needs to come after the 'extern symbol prefix' check, which
7342 extra_ldflags
="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7345 # linker paths should be the same for mencoder and mplayer
7347 for I
in $libs_mplayer ; do
7348 _tmp
=$
(echo $I |
sed -e 's/^-L.*$//')
7349 if test -z "$_tmp" ; then
7350 extra_ldflags
="$extra_ldflags $I"
7352 _ld_tmp
="$_ld_tmp $I"
7355 libs_mplayer
=$_ld_tmp
7358 #############################################################################
7359 # 64 bit file offsets?
7360 if test "$_largefiles" = yes || freebsd
; then
7361 CFLAGS
="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7362 if test "$_dvdread" = yes ||
test "$_libdvdcss_internal" = yes ; then
7363 # dvdread support requires this (for off64_t)
7364 CFLAGS
="$CFLAGS -D_LARGEFILE64_SOURCE"
7368 CXXFLAGS
=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7370 # This must be the last test to be performed. Any other tests following it
7371 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7372 # against libdvdread (to permit MPlayer to use its own copy of the library).
7373 # So any compilation using the flags added here but not linking against
7374 # libdvdread can fail.
7375 echocheck
"DVD support (libdvdnav)"
7376 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7380 if test "$_dvdnav" = auto
; then
7381 if test "$_dvdread_internal" = yes ; then
7384 res_comment
="internal"
7386 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav
=no
7389 if test "$_dvdnav" = auto
; then
7391 #include <inttypes.h>
7392 #include <dvdnav/dvdnav.h>
7393 int main(void) { dvdnav_t *dvd=0; return 0; }
7396 _dvdnavdir
=$
($_dvdnavconfig --cflags)
7397 _dvdnavlibs
=$
($_dvdnavconfig --libs)
7398 cc_check
$_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav
=yes
7400 if test "$_dvdnav" = yes ; then
7402 def_dvdnav
='#define CONFIG_DVDNAV 1'
7403 if test "$dvdnav_internal" = yes ; then
7404 cflags_libdvdnav
="-Ilibdvdnav"
7405 inputmodules
="dvdnav(internal) $inputmodules"
7407 extra_cflags
="$extra_cflags $($_dvdnavconfig --cflags)"
7408 extra_ldflags
="$extra_ldflags $($_dvdnavconfig --minilibs)"
7409 inputmodules
="dvdnav $inputmodules"
7412 def_dvdnav
='#undef CONFIG_DVDNAV'
7413 noinputmodules
="dvdnav $noinputmodules"
7417 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7418 # Read dvdnav comment above.
7421 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
7422 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
7424 for part
in $list; do
7425 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
7426 echo "${nprefix}_$part = yes"
7431 #############################################################################
7432 echo "Creating config.mak"
7433 cat > config.mak
<< EOF
7434 # -------- Generated by configure -----------
7436 # Ensure that locale settings do not interfere with shell commands.
7439 CONFIGURATION = $configuration
7442 DOC_LANGS = $language_doc
7443 DOC_LANG_ALL = $doc_lang_all
7444 MAN_LANGS = $language_man
7445 MAN_LANG_ALL = $man_lang_all
7446 MSG_LANGS = $language_msg
7447 MSG_LANG_ALL = $msg_lang_all
7449 prefix = \$(DESTDIR)$_prefix
7450 BINDIR = \$(DESTDIR)$_bindir
7451 DATADIR = \$(DESTDIR)$_datadir
7452 LIBDIR = \$(DESTDIR)$_libdir
7453 MANDIR = \$(DESTDIR)$_mandir
7454 CONFDIR = \$(DESTDIR)$_confdir
7455 LOCALEDIR = \$(DESTDIR)$_localedir
7463 INSTALLSTRIP = $_install_strip
7466 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7467 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7468 DEPFLAGS = $DEPFLAGS
7470 CFLAGS_DHAHELPER = $cflags_dhahelper
7471 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7472 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7473 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7474 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7475 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7476 CFLAGS_STACKREALIGN = $cflags_stackrealign
7477 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7478 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7480 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7481 EXTRALIBS_MPLAYER = $libs_mplayer
7482 EXTRALIBS_MENCODER = $libs_mencoder
7491 $(mak_enable "$arch_all" "$arch" ARCH)
7492 $(mak_enable "$subarch_all" "$subarch" ARCH)
7493 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7495 MENCODER = $_mencoder
7498 NEED_GETTIMEOFDAY = $_need_gettimeofday
7499 NEED_GLOB = $_need_glob
7500 NEED_MMAP = $_need_mmap
7501 NEED_SETENV = $_need_setenv
7502 NEED_SHMEM = $_need_shmem
7503 NEED_STRSEP = $_need_strsep
7504 NEED_SWAB = $_need_swab
7505 NEED_VSSCANF = $_need_vsscanf
7513 APPLE_IR = $_apple_ir
7514 APPLE_REMOTE = $_apple_remote
7516 AUDIO_INPUT = $_audio_input
7517 BITMAP_FONT = $_bitmap_font
7522 COREAUDIO = $_coreaudio
7523 COREVIDEO = $_corevideo
7526 DIRECT3D = $_direct3d
7527 DIRECTFB = $_directfb
7531 DVDNAV_INTERNAL = $dvdnav_internal
7533 DVDREAD_INTERNAL = $_dvdread_internal
7539 FAAD_INTERNAL = $_faad_internal
7540 FASTMEMCPY = $_fastmemcpy
7542 FREETYPE = $_freetype
7547 GL_WIN32 = $_gl_win32
7550 MATRIXVIEW = $matrixview
7551 HAVE_POSIX_SELECT = $_posix_select
7552 HAVE_SYS_MMAN_H = $_mman
7555 JOYSTICK = $_joystick
7562 LIBBLURAY = $_bluray
7566 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7570 LIBMENU_DVBIN = $_menu_dvbin
7571 LIBMPEG2 = $_libmpeg2
7572 LIBNEMESI = $_nemesi
7574 LIBSMBCLIENT = $_smb
7575 LIBTHEORA = $_theora
7578 MACOSX_FINDER = $_macosx_finder
7585 MUSEPACK = $_musepack
7587 NATIVE_RTSP = $_native_rtsp
7588 NETWORKING = $networking
7591 PE_EXECUTABLE = $_pe_executable
7594 PRIORITY = $_priority
7598 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7599 QTX_EMULATION = $_qtx_emulation
7602 RADIO_CAPTURE=$_radio_capture
7603 REAL_CODECS = $_real
7607 STREAM_CACHE = $_stream_cache
7608 SGIAUDIO = $_sgiaudio
7609 SUNAUDIO = $_sunaudio
7615 TREMOR_INTERNAL = $_tremor_internal
7617 TV_BSDBT848 = $_tv_bsdbt848
7618 TV_DSHOW = $_tv_dshow
7623 UNRAR_EXEC = $_unrar_exec
7629 VIDIX_PCIDB = $_vidix_pcidb_val
7630 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7631 VIDIX_IVTV=$_vidix_drv_ivtv
7632 VIDIX_MACH64=$_vidix_drv_mach64
7633 VIDIX_MGA=$_vidix_drv_mga
7634 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7635 VIDIX_NVIDIA=$_vidix_drv_nvidia
7636 VIDIX_PM2=$_vidix_drv_pm2
7637 VIDIX_PM3=$_vidix_drv_pm3
7638 VIDIX_RADEON=$_vidix_drv_radeon
7639 VIDIX_RAGE128=$_vidix_drv_rage128
7640 VIDIX_S3=$_vidix_drv_s3
7641 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7642 VIDIX_SIS=$_vidix_drv_sis
7643 VIDIX_UNICHROME=$_vidix_drv_unichrome
7647 WIN32DLL = $_win32dll
7648 WIN32WAVEOUT = $_win32waveout
7649 WIN32_EMULATION = $_win32_emulation
7650 WINVIDIX = $winvidix
7653 XANIM_CODECS = $_xanim
7655 XMMS_PLUGINS = $_xmms
7661 YUV4MPEG = $_yuv4mpeg
7666 FFMPEG_INTERNALS = $ffmpeg_internals
7667 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7671 YASMFLAGS = $YASMFLAGS
7673 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7677 CONFIG_H264DSP = yes
7682 CONFIG_BZLIB = $bzlib
7683 CONFIG_ENCODERS = yes
7685 CONFIG_MLIB = $_mlib
7686 CONFIG_MUXERS = $_mencoder
7687 CONFIG_VDPAU = $_vdpau
7688 CONFIG_XVMC = $_xvmc
7689 CONFIG_ZLIB = $_zlib
7691 HAVE_PTHREADS = $_pthreads
7693 HAVE_W32THREADS = $_w32threads
7694 HAVE_YASM = $have_yasm
7698 #############################################################################
7700 ff_config_enable
() {
7701 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
7702 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
7704 test -z "$_nprefix" && _nprefix
='CONFIG'
7705 for part
in $list; do
7706 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
7707 echo "#define ${_nprefix}_$part 1"
7709 echo "#define ${_nprefix}_$part 0"
7714 echo "Creating config.h"
7716 /*----------------------------------------------------------------------------
7717 ** This file has been automatically generated by configure any changes in it
7718 ** will be lost when you run configure again.
7719 ** Instead of modifying definitions here, use the --enable/--disable options
7720 ** of the configure script! See ./configure --help for details.
7721 *---------------------------------------------------------------------------*/
7723 #ifndef MPLAYER_CONFIG_H
7724 #define MPLAYER_CONFIG_H
7726 /* Undefine this if you do not want to select mono audio (left or right)
7727 with a stereo MPEG layer 2/3 audio stream. The command line option
7728 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7729 right-only), with 0 being the default.
7731 #define CONFIG_FAKE_MONO 1
7733 /* set up audio OUTBURST. Do not change this! */
7734 #define OUTBURST 512
7736 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
7738 #undef FAST_OSD_TABLE
7740 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
7741 #define MPEG12_POSTPROC 1
7742 #define ATTRIBUTE_ALIGNED_MAX 16
7746 #define CONFIGURATION "$configuration"
7748 #define MPLAYER_DATADIR "$_datadir"
7749 #define MPLAYER_CONFDIR "$_confdir"
7750 #define MPLAYER_LIBDIR "$_libdir"
7751 #define MPLAYER_LOCALEDIR "$_localedir"
7755 /* definitions needed by included libraries */
7756 #define HAVE_INTTYPES_H 1
7757 /* libmpeg2 + FFmpeg */
7760 #define HAVE_ERRNO_H 1
7761 /* libdvdcss + libdvdread */
7762 #define HAVE_LIMITS_H 1
7763 /* libdvdcss + libfaad2 */
7764 #define HAVE_UNISTD_H 1
7765 /* libfaad2 + libdvdread */
7766 #define STDC_HEADERS 1
7767 #define HAVE_MEMCPY 1
7769 #define HAVE_STRING_H 1
7770 #define HAVE_STRINGS_H 1
7771 #define HAVE_SYS_STAT_H 1
7772 #define HAVE_SYS_TYPES_H 1
7774 #define READ_CACHE_TRACE 0
7776 #define HAVE_DLFCN_H 1
7780 /* system headers */
7782 $def_alsa_asoundlib_h
7786 $def_mman_has_map_failed
7788 $def_sys_asoundlib_h
7789 $def_sys_soundcard_h
7796 /* system functions */
7819 /* system-specific features */
7834 $def_restrict_keyword
7839 /* configurable options */
7843 $def_dynamic_plugins
7846 $def_runtime_cpudetection
7854 #define __CPU__ $iproc
7858 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7859 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7860 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7863 /* Blu-ray/DVD/VCD/CD */
7864 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7865 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7886 /* codec libraries */
7898 $def_mp3lame_preset_medium
7923 #define BINARY_CODECS_PATH "$_codecsdir"
7924 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7927 /* Audio output drivers */
7943 $def_ossaudio_devdsp
7944 $def_ossaudio_devmixer
7957 $def_ioctl_bt848_h_name
7958 $def_ioctl_meteor_h_name
8046 $def_vidix_drv_cyberblade
8048 $def_vidix_drv_mach64
8050 $def_vidix_drv_mga_crtc2
8051 $def_vidix_drv_nvidia
8053 $def_vidix_drv_radeon
8054 $def_vidix_drv_rage128
8056 $def_vidix_drv_sh_veu
8058 $def_vidix_drv_unichrome
8077 $def_ffmpeg_internals
8079 #define CONFIG_DECODERS 1
8080 #define CONFIG_ENCODERS 1
8081 #define CONFIG_DEMUXERS 1
8109 #define CONFIG_FASTDIV 0
8110 #define CONFIG_FFSERVER 0
8111 #define CONFIG_GPL 1
8112 #define CONFIG_GRAY 0
8113 #define CONFIG_HARDCODED_TABLES 0
8114 #define CONFIG_LIBVORBIS 0
8115 #define CONFIG_POWERPC_PERF 0
8116 #define CONFIG_SMALL 0
8117 #define CONFIG_SWSCALE_ALPHA 1
8119 #define HAVE_ATTRIBUTE_PACKED 1
8120 #define HAVE_GETHRTIME 0
8121 #define HAVE_INLINE_ASM 1
8122 #define HAVE_LDBRX 0
8123 #define HAVE_POLL_H 1
8124 #define HAVE_PPC4XX 0
8125 #define HAVE_VFP_ARGS 1
8126 #define HAVE_VIRTUALALLOC 0
8128 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8129 #define CONFIG_AANDCT 1
8130 #define CONFIG_DCT 1
8131 #define CONFIG_DWT 1
8132 #define CONFIG_FFT 1
8133 #define CONFIG_GOLOMB 1
8134 #define CONFIG_H264DSP 1
8135 #define CONFIG_LPC 1
8136 #define CONFIG_MDCT 1
8137 #define CONFIG_RDFT 1
8139 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8141 #define HAVE_EBP_AVAILABLE 1
8143 #define HAVE_EBP_AVAILABLE 0
8146 #endif /* MPLAYER_CONFIG_H */
8149 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8150 cmp -s "$TMPH" config.h ||
mv -f "$TMPH" config.h
8152 #############################################################################
8154 .
/version.sh
`$_cc -dumpversion`
8158 Config files successfully generated by ./configure $configuration !
8160 Install prefix: $_prefix
8161 Data directory: $_datadir
8162 Config direct.: $_confdir
8164 Byte order: $_byte_order
8165 Optimizing for: $_optimizing
8168 Messages (in addition to English): $language_msg
8169 Manual pages: $language_man
8170 Documentation: $language_doc
8172 Enabled optional drivers:
8173 Input: $inputmodules
8174 Codecs: $codecmodules
8175 Audio output: $aomodules
8176 Video output: $vomodules
8178 Disabled optional drivers:
8179 Input: $noinputmodules
8180 Codecs: $nocodecmodules
8181 Audio output: $noaomodules
8182 Video output: $novomodules
8184 'config.h' and 'config.mak' contain your configuration options.
8185 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8186 compile *** DO NOT REPORT BUGS if you tweak these files ***
8188 'make' will now compile MPlayer and 'make install' will install it.
8189 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8194 if test "$_mtrr" = yes ; then
8195 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8201 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8202 operating system ($system_name). You may encounter a few files that cannot
8203 be played due to missing open source video/audio codec support.
8210 Check $TMPLOG if you wonder why an autodetection failed (make sure
8211 development headers/packages are installed).
8213 NOTE: The --enable-* parameters unconditionally force options on, completely
8214 skipping autodetection. This behavior is unlike what you may be used to from
8215 autoconf-based configure scripts that can decide to override you. This greater
8216 level of control comes at a price. You may have to provide the correct compiler
8217 and linker flags yourself.
8218 If you used one of these options (except --enable-menu and similar ones that
8219 turn on internal features) and experience a compilation or linking failure,
8220 make sure you have passed the necessary compiler/linker flags to configure.
8222 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8226 if test "$warn_cflags" = yes; then
8229 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8232 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8234 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8235 To do so, execute 'CFLAGS= ./configure <options>'
8241 rm -rf "$mplayer_tmpdir"