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 $@
110 # this is a special check only to be
111 # used for broken headers that do not
112 # include all dependencies
113 header_check_broken
() {
117 int main(void) { return 0; }
121 compile_check
$TMPC $@
126 cat "$TMPS" >> "$TMPLOG"
128 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
130 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
138 "$TMPEXE" >> "$TMPLOG" 2>&1
141 # Display error message, flushes tempfile, exit
146 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
147 echo "Check \"$TMPLOG\" if you do not understand why it failed."
151 # OS test booleans functions
153 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
155 aix
() { issystem
"AIX"; }
156 amigaos
() { issystem
"AmigaOS"; }
157 beos
() { issystem
"BEOS"; }
158 bsdos
() { issystem
"BSD/OS"; }
159 cygwin
() { issystem
"CYGWIN"; }
160 darwin
() { issystem
"Darwin"; }
161 dragonfly
() { issystem
"DragonFly"; }
162 freebsd
() { issystem
"FreeBSD" || issystem
"GNU/kFreeBSD"; }
163 gnu
() { issystem
"GNU"; }
164 hpux
() { issystem
"HP-UX"; }
165 irix
() { issystem
"IRIX"; }
166 linux
() { issystem
"Linux"; }
167 mingw32
() { issystem
"MINGW32"; }
168 morphos
() { issystem
"MorphOS"; }
169 netbsd
() { issystem
"NetBSD"; }
170 openbsd
() { issystem
"OpenBSD"; }
171 os2
() { issystem
"OS/2"; }
172 qnx
() { issystem
"QNX"; }
173 sunos
() { issystem
"SunOS"; }
174 win32
() { cygwin || mingw32
; }
176 # arch test boolean functions
177 # x86/x86pc is used by QNX
180 i
[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium
*|athlon
*|i586-i686
) return 0 ;;
187 x86_64|amd64
) return 0 ;;
198 ppc|ppc64|powerpc|powerpc64
) return 0;;
217 # Use this before starting a check
219 echo "============ Checking for $@ ============" >> "$TMPLOG"
220 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
223 # Use this to echo the results of a check
225 if test "$res_comment" ; then
226 res_comment
="($res_comment)"
228 echo "Result is: $@ $res_comment" >> "$TMPLOG"
229 echo "##########################################" >> "$TMPLOG"
231 echo "$@ $res_comment"
234 #############################################################################
236 # Check how echo works in this /bin/sh
238 -n) _echo_n
= _echo_c
='\c' ;; # SysV echo
239 *) _echo_n
='-n ' _echo_c
= ;; # BSD echo
243 ls po
/*.po
>/dev
/null
2>&1 && msg_lang_all
=$
(echo po
/*.po |
sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
244 man_lang_all
=$
(echo DOCS
/man
/??
/mplayer
.1 DOCS
/man
/??_??
/mplayer
.1 |
sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
245 doc_lang_all
=$
(echo DOCS
/xml
/??
/ DOCS
/xml
/??_??
/ |
sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
249 Usage: $0 [OPTIONS]...
252 -h, --help display this help and exit
254 Installation directories:
255 --prefix=DIR prefix directory for installation [/usr/local]
256 --bindir=DIR directory for installing binaries [PREFIX/bin]
257 --datadir=DIR directory for installing machine independent
258 data files (skins, etc) [PREFIX/share/mplayer]
259 --mandir=DIR directory for installing man pages [PREFIX/share/man]
260 --confdir=DIR directory for installing configuration files
262 --localedir=DIR directory for locale tree [PREFIX/share/locale]
263 --libdir=DIR directory for object code libraries [PREFIX/lib]
264 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
267 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
268 --disable-mplayer disable MPlayer compilation [enable]
269 --disable-largefiles disable support for files > 2GB [enable]
270 --enable-termcap use termcap database for key codes [autodetect]
271 --enable-termios use termios database for key codes [autodetect]
272 --disable-iconv disable iconv for encoding conversion [autodetect]
273 --disable-langinfo do not use langinfo [autodetect]
274 --enable-lirc enable LIRC (remote control) support [autodetect]
275 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
276 --enable-joystick enable joystick support [disable]
277 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
278 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
279 --disable-vm disable X video mode extensions [autodetect]
280 --disable-xf86keysym disable support for multimedia keys [autodetect]
281 --enable-radio enable radio interface [disable]
282 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
283 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
284 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
285 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
286 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
287 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
288 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
289 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
290 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
291 --disable-networking disable networking [enable]
292 --enable-winsock2_h enable winsock2_h [autodetect]
293 --enable-smb enable Samba (SMB) input [autodetect]
294 --enable-live enable LIVE555 Streaming Media [autodetect]
295 --enable-nemesi enable Nemesi Streaming Media [autodetect]
296 --disable-vcd disable VCD support [autodetect]
297 --disable-bluray disable Blu-ray support [autodetect]
298 --disable-dvdnav disable libdvdnav [autodetect]
299 --disable-dvdread disable libdvdread [autodetect]
300 --disable-dvdread-internal disable internal libdvdread [autodetect]
301 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
302 --disable-cdparanoia disable cdparanoia [autodetect]
303 --disable-cddb disable cddb [autodetect]
304 --disable-bitmap-font disable bitmap font support [enable]
305 --disable-freetype disable FreeType 2 font rendering [autodetect]
306 --disable-fontconfig disable fontconfig font lookup [autodetect]
307 --disable-unrarexec disable using of UnRAR executable [enabled]
308 --enable-menu enable OSD menu (not DVD menu) [disabled]
309 --disable-sortsub disable subtitle sorting [enabled]
310 --enable-fribidi enable the FriBiDi libs [autodetect]
311 --disable-enca disable ENCA charset oracle library [autodetect]
312 --disable-maemo disable maemo specific features [autodetect]
313 --enable-macosx-finder enable Mac OS X Finder invocation parameter
315 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
316 --disable-inet6 disable IPv6 support [autodetect]
317 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
318 --disable-ftp disable FTP support [enabled]
319 --disable-vstream disable TiVo vstream client support [autodetect]
320 --disable-pthreads disable Posix threads support [autodetect]
321 --disable-w32threads disable Win32 threads support [autodetect]
322 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
323 --enable-rpath enable runtime linker path for extra libs [disabled]
326 --enable-gif enable GIF support [autodetect]
327 --enable-png enable PNG input/output support [autodetect]
328 --enable-mng enable MNG input support [autodetect]
329 --enable-jpeg enable JPEG input/output support [autodetect]
330 --enable-libcdio enable libcdio support [autodetect]
331 --enable-liblzo enable liblzo support [autodetect]
332 --disable-win32dll disable Win32 DLL support [autodetect]
333 --disable-qtx disable QuickTime codecs support [enabled]
334 --disable-xanim disable XAnim codecs support [enabled]
335 --disable-real disable RealPlayer codecs support [enabled]
336 --disable-xvid disable Xvid [autodetect]
337 --disable-x264 disable x264 [autodetect]
338 --disable-libnut disable libnut [autodetect]
339 --disable-libavutil disable libavutil [autodetect]
340 --disable-libavcodec disable libavcodec [autodetect]
341 --disable-libavformat disable libavformat [autodetect]
342 --disable-libpostproc disable libpostproc [autodetect]
343 --disable-libswscale disable libswscale [autodetect]
344 --disable-tremor-internal disable internal Tremor [enabled]
345 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
346 --enable-tremor enable external Tremor [autodetect]
347 --disable-libvorbis disable libvorbis support [autodetect]
348 --disable-speex disable Speex support [autodetect]
349 --enable-theora enable OggTheora libraries [autodetect]
350 --enable-faad enable external FAAD2 (AAC) [autodetect]
351 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
352 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
353 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
354 --disable-ladspa disable LADSPA plugin support [autodetect]
355 --disable-libbs2b disable libbs2b audio filter support [autodetect]
356 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
357 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
358 --disable-mad disable libmad (MPEG audio) support [autodetect]
359 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
360 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
361 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
362 --enable-xmms enable XMMS input plugin support [disabled]
363 --enable-libdca enable libdca support [autodetect]
364 --disable-mp3lib disable builtin mp3lib [autodetect]
365 --disable-liba52 disable liba52 [autodetect]
366 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
367 --disable-musepack disable musepack support [autodetect]
370 --disable-vidix disable VIDIX [for x86 *nix]
371 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
372 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
373 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
374 --disable-vidix-pcidb disable VIDIX PCI device name database
375 --enable-dhahelper enable VIDIX dhahelper support
376 --enable-svgalib_helper enable VIDIX svgalib_helper support
377 --enable-gl enable OpenGL video output [autodetect]
378 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
379 --enable-dga2 enable DGA 2 support [autodetect]
380 --enable-dga1 enable DGA 1 support [autodetect]
381 --enable-vesa enable VESA video output [autodetect]
382 --enable-svga enable SVGAlib video output [autodetect]
383 --enable-sdl enable SDL video output [autodetect]
384 --enable-kva enable KVA video output [autodetect]
385 --enable-aa enable AAlib video output [autodetect]
386 --enable-caca enable CACA video output [autodetect]
387 --enable-ggi enable GGI video output [autodetect]
388 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
389 --enable-direct3d enable Direct3D video output [autodetect]
390 --enable-directx enable DirectX video output [autodetect]
391 --enable-dxr2 enable DXR2 video output [autodetect]
392 --enable-dxr3 enable DXR3/H+ video output [autodetect]
393 --enable-ivtv enable IVTV TV-Out video output [autodetect]
394 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
395 --enable-dvb enable DVB video output [autodetect]
396 --enable-mga enable mga_vid video output [autodetect]
397 --enable-xmga enable mga_vid X11 video output [autodetect]
398 --enable-xv enable Xv video output [autodetect]
399 --enable-xvmc enable XvMC acceleration [disable]
400 --enable-vdpau enable VDPAU acceleration [autodetect]
401 --enable-vm enable XF86VidMode support [autodetect]
402 --enable-xinerama enable Xinerama support [autodetect]
403 --enable-x11 enable X11 video output [autodetect]
404 --enable-xshape enable XShape support [autodetect]
405 --disable-xss disable screensaver support via xss [autodetect]
406 --enable-fbdev enable FBDev video output [autodetect]
407 --enable-mlib enable mediaLib video output (Solaris) [disable]
408 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
409 --enable-tdfxfb enable tdfxfb video output [disable]
410 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
411 --enable-wii enable Nintendo Wii/GameCube video output [disable]
412 --enable-directfb enable DirectFB video output [autodetect]
413 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
414 --enable-bl enable Blinkenlights video output [disable]
415 --enable-tdfxvid enable tdfx_vid video output [disable]
416 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
417 --disable-tga disable Targa video output [enable]
418 --disable-pnm disable PNM video output [enable]
419 --disable-md5sum disable md5sum video output [enable]
420 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
421 --disable-corevideo disable CoreVideo video output [autodetect]
422 --disable-quartz disable Quartz video output [autodetect]
425 --disable-alsa disable ALSA audio output [autodetect]
426 --disable-ossaudio disable OSS audio output [autodetect]
427 --disable-arts disable aRts audio output [autodetect]
428 --disable-esd disable esd audio output [autodetect]
429 --disable-pulse disable Pulseaudio audio output [autodetect]
430 --disable-jack disable JACK audio output [autodetect]
431 --enable-openal enable OpenAL audio output [disable]
432 --disable-nas disable NAS audio output [autodetect]
433 --disable-sgiaudio disable SGI audio output [autodetect]
434 --disable-sunaudio disable Sun audio output [autodetect]
435 --disable-kai disable KAI audio output [autodetect]
436 --disable-dart disable DART audio output [autodetect]
437 --disable-win32waveout disable Windows waveout audio output [autodetect]
438 --disable-coreaudio disable CoreAudio audio output [autodetect]
439 --disable-select disable using select() on the audio device [enable]
442 --enable-translation enable support for translated output [disable]
443 --charset=charset convert the console messages to this character set
444 --language-doc=lang language to use for the documentation [en]
445 --language-man=lang language to use for the man pages [en]
446 --language-msg=lang extra languages for program messages [all]
447 --language=lang default language to use [en]
448 Specific options override --language. You can pass a list of languages separated
449 by whitespace or commas instead of a single language. Nonexisting translations
450 will be dropped from each list. All translations available in the list will be
451 installed. The value "all" will activate all translations. The LINGUAS
452 environment variable is honored. In all cases the fallback is English.
453 The program always supports English-language output; additional message
454 languages are only installed if --enable-translation is also specified.
455 Available values for --language-doc are: all $doc_lang_all
456 Available values for --language-man are: all $man_lang_all
457 Available values for --language-msg are: all $msg_lang_all
459 Miscellaneous options:
460 --enable-runtime-cpudetection enable runtime CPU detection [disable]
461 --enable-cross-compile enable cross-compilation [autodetect]
462 --cc=COMPILER C compiler to build MPlayer [gcc]
463 --host-cc=COMPILER C compiler for tools needed while building [gcc]
464 --as=ASSEMBLER assembler to build MPlayer [as]
465 --nm=NM nm tool to build MPlayer [nm]
466 --yasm=YASM Yasm assembler to build MPlayer [yasm]
467 --ar=AR librarian to build MPlayer [ar]
468 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
469 --windres=WINDRES windres to build MPlayer [windres]
470 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
471 --enable-static build a statically linked binary
472 --with-install=PATH path to a custom install program
475 --enable-mmx enable MMX [autodetect]
476 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
477 --enable-3dnow enable 3DNow! [autodetect]
478 --enable-3dnowext enable extended 3DNow! [autodetect]
479 --enable-sse enable SSE [autodetect]
480 --enable-sse2 enable SSE2 [autodetect]
481 --enable-ssse3 enable SSSE3 [autodetect]
482 --enable-shm enable shm [autodetect]
483 --enable-altivec enable AltiVec (PowerPC) [autodetect]
484 --enable-armv5te enable DSP extensions (ARM) [autodetect]
485 --enable-armv6 enable ARMv6 (ARM) [autodetect]
486 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
487 --enable-armvfp enable ARM VFP (ARM) [autodetect]
488 --enable-neon enable NEON (ARM) [autodetect]
489 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
490 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
491 --enable-big-endian force byte order to big-endian [autodetect]
492 --enable-debug[=1-3] compile-in debugging information [disable]
493 --enable-profile compile-in profiling information [disable]
494 --disable-sighandler disable sighandler for crashes [enable]
495 --enable-crash-debug enable automatic gdb attach on crash [disable]
496 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
497 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
499 Use these options if autodetection fails:
500 --extra-cflags=FLAGS extra CFLAGS
501 --extra-ldflags=FLAGS extra LDFLAGS
502 --extra-libs=FLAGS extra linker flags
503 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
504 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
505 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
507 --with-freetype-config=PATH path to freetype-config
508 --with-glib-config=PATH path to glib*-config
509 --with-gtk-config=PATH path to gtk*-config
510 --with-sdl-config=PATH path to sdl*-config
511 --with-dvdnav-config=PATH path to dvdnav-config
512 --with-dvdread-config=PATH path to dvdread-config
514 This configure script is NOT autoconf-based, even though its output is similar.
515 It will try to autodetect all configuration options. If you --enable an option
516 it will be forcefully turned on, skipping autodetection. This can break
517 compilation, so you need to know what you are doing.
522 # GOTCHA: the variables below defines the default behavior for autodetection
523 # and have - unless stated otherwise - at least 2 states : yes no
524 # If autodetection is available then the third state is: auto
548 test "$CC" && _cc
="$CC"
552 _runtime_cpudetection
=no
560 _libavcodec_internals
=no
561 _libswscale_internals
=no
570 _xvmc
=no
#auto when complete
637 _dvdnavconfig
=dvdnav-config
638 _dvdreadconfig
=dvdread-config
640 _dvdread_internal
=auto
641 _libdvdcss_internal
=auto
652 _mlib
=no
#broken, thus disabled
725 _freetypeconfig
='freetype-config'
740 def_dos_paths
="#define HAVE_DOS_PATHS 0"
741 def_stream_cache
="#define CONFIG_STREAM_CACHE 1"
742 def_priority
="#undef CONFIG_PRIORITY"
743 def_pthread_cache
="#undef PTHREAD_CACHE"
751 _prefix
=$
(echo $ac_option | cut
-d '=' -f 2)
754 _bindir
=$
(echo $ac_option | cut
-d '=' -f 2)
757 _datadir
=$
(echo $ac_option | cut
-d '=' -f 2)
760 _mandir
=$
(echo $ac_option | cut
-d '=' -f 2)
763 _confdir
=$
(echo $ac_option | cut
-d '=' -f 2)
766 _libdir
=$
(echo $ac_option | cut
-d '=' -f 2)
769 _codecsdir
=$
(echo $ac_option | cut
-d '=' -f 2)
772 _localedir
=$
(echo $ac_option | cut
-d '=' -f 2)
776 _install
=$
(echo $ac_option | cut
-d '=' -f 2 )
779 _xvmclib
=$
(echo $ac_option | cut
-d '=' -f 2)
783 _sdlconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
785 --with-freetype-config=*)
786 _freetypeconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
789 _gtkconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
791 --with-glib-config=*)
792 _glibconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
794 --with-dvdnav-config=*)
795 _dvdnavconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
797 --with-dvdread-config=*)
798 _dvdreadconfig
=$
(echo $ac_option | cut
-d '=' -f 2)
802 extra_cflags
="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
805 extra_ldflags
="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
808 extra_libs
=$
(echo $ac_option | cut
-d '=' -f 2)
810 --extra-libs-mplayer=*)
811 libs_mplayer
=$
(echo $ac_option | cut
-d '=' -f 2)
813 --extra-libs-mencoder=*)
814 libs_mencoder
=$
(echo $ac_option | cut
-d '=' -f 2)
818 _target
=$
(echo $ac_option | cut
-d '=' -f 2)
821 _cc
=$
(echo $ac_option | cut
-d '=' -f 2)
824 _host_cc
=$
(echo $ac_option | cut
-d '=' -f 2)
827 _as
=$
(echo $ac_option | cut
-d '=' -f 2)
830 _nm
=$
(echo $ac_option | cut
-d '=' -f 2)
833 _yasm
=$
(echo $ac_option | cut
-d '=' -f 2)
836 _ar
=$
(echo $ac_option | cut
-d '=' -f 2)
839 _ranlib
=$
(echo $ac_option | cut
-d '=' -f 2)
842 _windres
=$
(echo $ac_option | cut
-d '=' -f 2)
845 _charset
=$
(echo $ac_option | cut
-d '=' -f 2)
848 language_doc
=$
(echo $ac_option | cut
-d '=' -f 2)
851 language_man
=$
(echo $ac_option | cut
-d '=' -f 2)
854 language_msg
=$
(echo $ac_option | cut
-d '=' -f 2)
857 language
=$
(echo $ac_option | cut
-d '=' -f 2)
876 _debug
=$
(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut
-d '=' -f 2)
881 --enable-translation) _translation
=yes ;;
882 --disable-translation) _translation
=no
;;
883 --enable-runtime-cpudetection) _runtime_cpudetection
=yes ;;
884 --disable-runtime-cpudetection) _runtime_cpudetection
=no
;;
885 --enable-cross-compile) _cross_compile
=yes ;;
886 --disable-cross-compile) _cross_compile
=no
;;
887 --enable-mencoder) _mencoder
=yes ;;
888 --disable-mencoder) _mencoder
=no
;;
889 --enable-mplayer) _mplayer
=yes ;;
890 --disable-mplayer) _mplayer
=no
;;
891 --enable-dynamic-plugins) _dynamic_plugins
=yes ;;
892 --disable-dynamic-plugins) _dynamic_plugins
=no
;;
893 --enable-x11) _x11
=yes ;;
894 --disable-x11) _x11
=no
;;
895 --enable-xshape) _xshape
=yes ;;
896 --disable-xshape) _xshape
=no
;;
897 --enable-xss) _xss
=yes ;;
898 --disable-xss) _xss
=no
;;
899 --enable-xv) _xv
=yes ;;
900 --disable-xv) _xv
=no
;;
901 --enable-xvmc) _xvmc
=yes ;;
902 --disable-xvmc) _xvmc
=no
;;
903 --enable-vdpau) _vdpau
=yes ;;
904 --disable-vdpau) _vdpau
=no
;;
905 --enable-sdl) _sdl
=yes ;;
906 --disable-sdl) _sdl
=no
;;
907 --enable-kva) _kva
=yes ;;
908 --disable-kva) _kva
=no
;;
909 --enable-direct3d) _direct3d
=yes ;;
910 --disable-direct3d) _direct3d
=no
;;
911 --enable-directx) _directx
=yes ;;
912 --disable-directx) _directx
=no
;;
913 --enable-win32waveout) _win32waveout
=yes ;;
914 --disable-win32waveout) _win32waveout
=no
;;
915 --enable-nas) _nas
=yes ;;
916 --disable-nas) _nas
=no
;;
917 --enable-png) _png
=yes ;;
918 --disable-png) _png
=no
;;
919 --enable-mng) _mng
=yes ;;
920 --disable-mng) _mng
=no
;;
921 --enable-jpeg) _jpeg
=yes ;;
922 --disable-jpeg) _jpeg
=no
;;
923 --enable-pnm) _pnm
=yes ;;
924 --disable-pnm) _pnm
=no
;;
925 --enable-md5sum) _md5sum
=yes ;;
926 --disable-md5sum) _md5sum
=no
;;
927 --enable-yuv4mpeg) _yuv4mpeg
=yes ;;
928 --disable-yuv4mpeg) _yuv4mpeg
=no
;;
929 --enable-gif) _gif
=yes ;;
930 --disable-gif) _gif
=no
;;
931 --enable-gl) _gl
=yes ;;
932 --disable-gl) _gl
=no
;;
933 --enable-matrixview) matrixview
=yes ;;
934 --disable-matrixview) matrixview
=no
;;
935 --enable-ggi) _ggi
=yes ;;
936 --disable-ggi) _ggi
=no
;;
937 --enable-ggiwmh) _ggiwmh
=yes ;;
938 --disable-ggiwmh) _ggiwmh
=no
;;
939 --enable-aa) _aa
=yes ;;
940 --disable-aa) _aa
=no
;;
941 --enable-caca) _caca
=yes ;;
942 --disable-caca) _caca
=no
;;
943 --enable-svga) _svga
=yes ;;
944 --disable-svga) _svga
=no
;;
945 --enable-vesa) _vesa
=yes ;;
946 --disable-vesa) _vesa
=no
;;
947 --enable-fbdev) _fbdev
=yes ;;
948 --disable-fbdev) _fbdev
=no
;;
949 --enable-dvb) _dvb
=yes ;;
950 --disable-dvb) _dvb
=no
;;
951 --enable-dxr2) _dxr2
=yes ;;
952 --disable-dxr2) _dxr2
=no
;;
953 --enable-dxr3) _dxr3
=yes ;;
954 --disable-dxr3) _dxr3
=no
;;
955 --enable-ivtv) _ivtv
=yes ;;
956 --disable-ivtv) _ivtv
=no
;;
957 --enable-v4l2) _v4l2
=yes ;;
958 --disable-v4l2) _v4l2
=no
;;
959 --enable-iconv) _iconv
=yes ;;
960 --disable-iconv) _iconv
=no
;;
961 --enable-langinfo) _langinfo
=yes ;;
962 --disable-langinfo) _langinfo
=no
;;
963 --enable-rtc) _rtc
=yes ;;
964 --disable-rtc) _rtc
=no
;;
965 --enable-libdv) _libdv
=yes ;;
966 --disable-libdv) _libdv
=no
;;
967 --enable-ossaudio) _ossaudio
=yes ;;
968 --disable-ossaudio) _ossaudio
=no
;;
969 --enable-arts) _arts
=yes ;;
970 --disable-arts) _arts
=no
;;
971 --enable-esd) _esd
=yes ;;
972 --disable-esd) _esd
=no
;;
973 --enable-pulse) _pulse
=yes ;;
974 --disable-pulse) _pulse
=no
;;
975 --enable-jack) _jack
=yes ;;
976 --disable-jack) _jack
=no
;;
977 --enable-openal) _openal
=yes ;;
978 --disable-openal) _openal
=no
;;
979 --enable-kai) _kai
=yes ;;
980 --disable-kai) _kai
=no
;;
981 --enable-dart) _dart
=yes ;;
982 --disable-dart) _dart
=no
;;
983 --enable-mad) _mad
=yes ;;
984 --disable-mad) _mad
=no
;;
985 --enable-mp3lame) _mp3lame
=yes ;;
986 --disable-mp3lame) _mp3lame
=no
;;
987 --enable-toolame) _toolame
=yes ;;
988 --disable-toolame) _toolame
=no
;;
989 --enable-twolame) _twolame
=yes ;;
990 --disable-twolame) _twolame
=no
;;
991 --enable-libcdio) _libcdio
=yes ;;
992 --disable-libcdio) _libcdio
=no
;;
993 --enable-liblzo) _liblzo
=yes ;;
994 --disable-liblzo) _liblzo
=no
;;
995 --enable-libvorbis) _libvorbis
=yes ;;
996 --disable-libvorbis) _libvorbis
=no
;;
997 --enable-speex) _speex
=yes ;;
998 --disable-speex) _speex
=no
;;
999 --enable-tremor) _tremor
=yes ;;
1000 --disable-tremor) _tremor
=no
;;
1001 --enable-tremor-internal) _tremor_internal
=yes ;;
1002 --disable-tremor-internal) _tremor_internal
=no
;;
1003 --enable-tremor-low) _tremor_low
=yes ;;
1004 --disable-tremor-low) _tremor_low
=no
;;
1005 --enable-theora) _theora
=yes ;;
1006 --disable-theora) _theora
=no
;;
1007 --enable-mpg123) _mpg123
=yes ;;
1008 --disable-mpg123) _mpg123
=no
;;
1009 --enable-mp3lib) _mp3lib
=yes ;;
1010 --disable-mp3lib) _mp3lib
=no
;;
1011 --enable-liba52) _liba52
=yes ;;
1012 --disable-liba52) _liba52
=no
;;
1013 --enable-libdca) _libdca
=yes ;;
1014 --disable-libdca) _libdca
=no
;;
1015 --enable-libmpeg2) _libmpeg2
=yes ;;
1016 --disable-libmpeg2) _libmpeg2
=no
;;
1017 --enable-musepack) _musepack
=yes ;;
1018 --disable-musepack) _musepack
=no
;;
1019 --enable-faad) _faad
=yes ;;
1020 --disable-faad) _faad
=no
;;
1021 --enable-faad-internal) _faad_internal
=yes ;;
1022 --disable-faad-internal) _faad_internal
=no
;;
1023 --enable-faad-fixed) _faad_fixed
=yes ;;
1024 --disable-faad-fixed) _faad_fixed
=no
;;
1025 --enable-faac) _faac
=yes ;;
1026 --disable-faac) _faac
=no
;;
1027 --enable-ladspa) _ladspa
=yes ;;
1028 --disable-ladspa) _ladspa
=no
;;
1029 --enable-libbs2b) _libbs2b
=yes ;;
1030 --disable-libbs2b) _libbs2b
=no
;;
1031 --enable-xmms) _xmms
=yes ;;
1032 --disable-xmms) _xmms
=no
;;
1033 --enable-vcd) _vcd
=yes ;;
1034 --disable-vcd) _vcd
=no
;;
1035 --enable-bluray) _bluray
=yes ;;
1036 --disable-bluray) _bluray
=no
;;
1037 --enable-dvdread) _dvdread
=yes ;;
1038 --disable-dvdread) _dvdread
=no
;;
1039 --enable-dvdread-internal) _dvdread_internal
=yes ;;
1040 --disable-dvdread-internal) _dvdread_internal
=no
;;
1041 --enable-libdvdcss-internal) _libdvdcss_internal
=yes ;;
1042 --disable-libdvdcss-internal) _libdvdcss_internal
=no
;;
1043 --enable-dvdnav) _dvdnav
=yes ;;
1044 --disable-dvdnav) _dvdnav
=no
;;
1045 --enable-xanim) _xanim
=yes ;;
1046 --disable-xanim) _xanim
=no
;;
1047 --enable-real) _real
=yes ;;
1048 --disable-real) _real
=no
;;
1049 --enable-live) _live
=yes ;;
1050 --disable-live) _live
=no
;;
1051 --enable-nemesi) _nemesi
=yes ;;
1052 --disable-nemesi) _nemesi
=no
;;
1053 --enable-xinerama) _xinerama
=yes ;;
1054 --disable-xinerama) _xinerama
=no
;;
1055 --enable-mga) _mga
=yes ;;
1056 --disable-mga) _mga
=no
;;
1057 --enable-xmga) _xmga
=yes ;;
1058 --disable-xmga) _xmga
=no
;;
1059 --enable-vm) _vm
=yes ;;
1060 --disable-vm) _vm
=no
;;
1061 --enable-xf86keysym) _xf86keysym
=yes ;;
1062 --disable-xf86keysym) _xf86keysym
=no
;;
1063 --enable-mlib) _mlib
=yes ;;
1064 --disable-mlib) _mlib
=no
;;
1065 --enable-sunaudio) _sunaudio
=yes ;;
1066 --disable-sunaudio) _sunaudio
=no
;;
1067 --enable-sgiaudio) _sgiaudio
=yes ;;
1068 --disable-sgiaudio) _sgiaudio
=no
;;
1069 --enable-alsa) _alsa
=yes ;;
1070 --disable-alsa) _alsa
=no
;;
1071 --enable-tv) _tv
=yes ;;
1072 --disable-tv) _tv
=no
;;
1073 --enable-tv-bsdbt848) _tv_bsdbt848
=yes ;;
1074 --disable-tv-bsdbt848) _tv_bsdbt848
=no
;;
1075 --enable-tv-v4l1) _tv_v4l1
=yes ;;
1076 --disable-tv-v4l1) _tv_v4l1
=no
;;
1077 --enable-tv-v4l2) _tv_v4l2
=yes ;;
1078 --disable-tv-v4l2) _tv_v4l2
=no
;;
1079 --enable-tv-dshow) _tv_dshow
=yes ;;
1080 --disable-tv-dshow) _tv_dshow
=no
;;
1081 --enable-radio) _radio
=yes ;;
1082 --enable-radio-capture) _radio_capture
=yes ;;
1083 --disable-radio-capture) _radio_capture
=no
;;
1084 --disable-radio) _radio
=no
;;
1085 --enable-radio-v4l) _radio_v4l
=yes ;;
1086 --disable-radio-v4l) _radio_v4l
=no
;;
1087 --enable-radio-v4l2) _radio_v4l2
=yes ;;
1088 --disable-radio-v4l2) _radio_v4l2
=no
;;
1089 --enable-radio-bsdbt848) _radio_bsdbt848
=yes ;;
1090 --disable-radio-bsdbt848) _radio_bsdbt848
=no
;;
1091 --enable-pvr) _pvr
=yes ;;
1092 --disable-pvr) _pvr
=no
;;
1093 --enable-fastmemcpy) _fastmemcpy
=yes ;;
1094 --disable-fastmemcpy) _fastmemcpy
=no
;;
1095 --enable-networking) networking
=yes ;;
1096 --disable-networking) networking
=no
;;
1097 --enable-winsock2_h) _winsock2_h
=yes ;;
1098 --disable-winsock2_h) _winsock2_h
=no
;;
1099 --enable-smb) _smb
=yes ;;
1100 --disable-smb) _smb
=no
;;
1101 --enable-vidix) _vidix
=yes ;;
1102 --disable-vidix) _vidix
=no
;;
1103 --with-vidix-drivers=*)
1104 _vidix_drivers
=$
(echo $ac_option | cut
-d '=' -f 2)
1106 --disable-vidix-pcidb) _vidix_pcidb
=no
;;
1107 --enable-dhahelper) _dhahelper
=yes ;;
1108 --disable-dhahelper) _dhahelper
=no
;;
1109 --enable-svgalib_helper) _svgalib_helper
=yes ;;
1110 --disable-svgalib_helper) _svgalib_helper
=no
;;
1111 --enable-joystick) _joystick
=yes ;;
1112 --disable-joystick) _joystick
=no
;;
1113 --enable-xvid) _xvid
=yes ;;
1114 --disable-xvid) _xvid
=no
;;
1115 --enable-x264) _x264
=yes ;;
1116 --disable-x264) _x264
=no
;;
1117 --enable-libnut) _libnut
=yes ;;
1118 --disable-libnut) _libnut
=no
;;
1119 --enable-libavutil) _libavutil
=yes ;;
1120 --disable-libavutil) _libavutil
=no
;;
1121 --enable-libavcodec) _libavcodec
=yes ;;
1122 --disable-libavcodec) _libavcodec
=no
;;
1123 --enable-libavformat) _libavformat
=yes ;;
1124 --disable-libavformat) _libavformat
=no
;;
1125 --enable-libpostproc) _libpostproc
=yes ;;
1126 --disable-libpostproc) _libpostproc
=no
;;
1127 --enable-libswscale) _libswscale
=yes ;;
1128 --disable-libswscale) _libswscale
=no
;;
1129 --ffmpeg-source-dir=*)
1130 _ffmpeg_source
=$
(echo $ac_option | cut
-d '=' -f 2 ) ;;
1132 --enable-lirc) _lirc
=yes ;;
1133 --disable-lirc) _lirc
=no
;;
1134 --enable-lircc) _lircc
=yes ;;
1135 --disable-lircc) _lircc
=no
;;
1136 --enable-apple-remote) _apple_remote
=yes ;;
1137 --disable-apple-remote) _apple_remote
=no
;;
1138 --enable-apple-ir) _apple_ir
=yes ;;
1139 --disable-apple-ir) _apple_ir
=no
;;
1140 --enable-gui) _gui
=yes ;;
1141 --disable-gui) _gui
=no
;;
1142 --enable-gtk1) _gtk1
=yes ;;
1143 --disable-gtk1) _gtk1
=no
;;
1144 --enable-termcap) _termcap
=yes ;;
1145 --disable-termcap) _termcap
=no
;;
1146 --enable-termios) _termios
=yes ;;
1147 --disable-termios) _termios
=no
;;
1148 --enable-3dfx) _3dfx
=yes ;;
1149 --disable-3dfx) _3dfx
=no
;;
1150 --enable-s3fb) _s3fb
=yes ;;
1151 --disable-s3fb) _s3fb
=no
;;
1152 --enable-wii) _wii
=yes ;;
1153 --disable-wii) _wii
=no
;;
1154 --enable-tdfxfb) _tdfxfb
=yes ;;
1155 --disable-tdfxfb) _tdfxfb
=no
;;
1156 --disable-tdfxvid) _tdfxvid
=no
;;
1157 --enable-tdfxvid) _tdfxvid
=yes ;;
1158 --disable-xvr100) _xvr100
=no
;;
1159 --enable-xvr100) _xvr100
=yes ;;
1160 --disable-tga) _tga
=no
;;
1161 --enable-tga) _tga
=yes ;;
1162 --enable-directfb) _directfb
=yes ;;
1163 --disable-directfb) _directfb
=no
;;
1164 --enable-zr) _zr
=yes ;;
1165 --disable-zr) _zr
=no
;;
1166 --enable-bl) _bl
=yes ;;
1167 --disable-bl) _bl
=no
;;
1168 --enable-mtrr) _mtrr
=yes ;;
1169 --disable-mtrr) _mtrr
=no
;;
1170 --enable-largefiles) _largefiles
=yes ;;
1171 --disable-largefiles) _largefiles
=no
;;
1172 --enable-shm) _shm
=yes ;;
1173 --disable-shm) _shm
=no
;;
1174 --enable-select) _select
=yes ;;
1175 --disable-select) _select
=no
;;
1176 --enable-cdparanoia) _cdparanoia
=yes ;;
1177 --disable-cdparanoia) _cdparanoia
=no
;;
1178 --enable-cddb) _cddb
=yes ;;
1179 --disable-cddb) _cddb
=no
;;
1180 --enable-big-endian) _big_endian
=yes ;;
1181 --disable-big-endian) _big_endian
=no
;;
1182 --enable-bitmap-font) _bitmap_font
=yes ;;
1183 --disable-bitmap-font) _bitmap_font
=no
;;
1184 --enable-freetype) _freetype
=yes ;;
1185 --disable-freetype) _freetype
=no
;;
1186 --enable-fontconfig) _fontconfig
=yes ;;
1187 --disable-fontconfig) _fontconfig
=no
;;
1188 --enable-unrarexec) _unrar_exec
=yes ;;
1189 --disable-unrarexec) _unrar_exec
=no
;;
1190 --enable-ftp) _ftp
=yes ;;
1191 --disable-ftp) _ftp
=no
;;
1192 --enable-vstream) _vstream
=yes ;;
1193 --disable-vstream) _vstream
=no
;;
1194 --enable-pthreads) _pthreads
=yes ;;
1195 --disable-pthreads) _pthreads
=no
;;
1196 --enable-w32threads) _w32threads
=yes ;;
1197 --disable-w32threads) _w32threads
=no
;;
1198 --enable-ass) _ass
=yes ;;
1199 --disable-ass) _ass
=no
;;
1200 --enable-rpath) _rpath
=yes ;;
1201 --disable-rpath) _rpath
=no
;;
1203 --enable-fribidi) _fribidi
=yes ;;
1204 --disable-fribidi) _fribidi
=no
;;
1206 --enable-enca) _enca
=yes ;;
1207 --disable-enca) _enca
=no
;;
1209 --enable-inet6) _inet6
=yes ;;
1210 --disable-inet6) _inet6
=no
;;
1212 --enable-gethostbyname2) _gethostbyname2
=yes ;;
1213 --disable-gethostbyname2) _gethostbyname2
=no
;;
1215 --enable-dga1) _dga1
=yes ;;
1216 --disable-dga1) _dga1
=no
;;
1217 --enable-dga2) _dga2
=yes ;;
1218 --disable-dga2) _dga2
=no
;;
1220 --enable-menu) _menu
=yes ;;
1221 --disable-menu) _menu
=no
;;
1223 --enable-qtx) _qtx
=yes ;;
1224 --disable-qtx) _qtx
=no
;;
1226 --enable-coreaudio) _coreaudio
=yes ;;
1227 --disable-coreaudio) _coreaudio
=no
;;
1228 --enable-corevideo) _corevideo
=yes ;;
1229 --disable-corevideo) _corevideo
=no
;;
1230 --enable-quartz) _quartz
=yes ;;
1231 --disable-quartz) _quartz
=no
;;
1232 --enable-macosx-finder) _macosx_finder
=yes ;;
1233 --disable-macosx-finder) _macosx_finder
=no
;;
1234 --enable-macosx-bundle) _macosx_bundle
=yes ;;
1235 --disable-macosx-bundle) _macosx_bundle
=no
;;
1237 --enable-maemo) _maemo
=yes ;;
1238 --disable-maemo) _maemo
=no
;;
1240 --enable-sortsub) _sortsub
=yes ;;
1241 --disable-sortsub) _sortsub
=no
;;
1243 --enable-crash-debug) _crash_debug
=yes ;;
1244 --disable-crash-debug) _crash_debug
=no
;;
1245 --enable-sighandler) _sighandler
=yes ;;
1246 --disable-sighandler) _sighandler
=no
;;
1247 --enable-win32dll) _win32dll
=yes ;;
1248 --disable-win32dll) _win32dll
=no
;;
1250 --enable-sse) _sse
=yes ;;
1251 --disable-sse) _sse
=no
;;
1252 --enable-sse2) _sse2
=yes ;;
1253 --disable-sse2) _sse2
=no
;;
1254 --enable-ssse3) _ssse3
=yes ;;
1255 --disable-ssse3) _ssse3
=no
;;
1256 --enable-mmxext) _mmxext
=yes ;;
1257 --disable-mmxext) _mmxext
=no
;;
1258 --enable-3dnow) _3dnow
=yes ;;
1259 --disable-3dnow) _3dnow
=no _3dnowext
=no
;;
1260 --enable-3dnowext) _3dnow
=yes _3dnowext
=yes ;;
1261 --disable-3dnowext) _3dnowext
=no
;;
1262 --enable-cmov) _cmov
=yes ;;
1263 --disable-cmov) _cmov
=no
;;
1264 --enable-fast-cmov) _fast_cmov
=yes ;;
1265 --disable-fast-cmov) _fast_cmov
=no
;;
1266 --enable-fast-clz) _fast_clz
=yes ;;
1267 --disable-fast-clz) _fast_clz
=no
;;
1268 --enable-altivec) _altivec
=yes ;;
1269 --disable-altivec) _altivec
=no
;;
1270 --enable-armv5te) _armv5te
=yes ;;
1271 --disable-armv5te) _armv5te
=no
;;
1272 --enable-armv6) _armv6
=yes ;;
1273 --disable-armv6) _armv6
=no
;;
1274 --enable-armv6t2) _armv6t2
=yes ;;
1275 --disable-armv6t2) _armv6t2
=no
;;
1276 --enable-armvfp) _armvfp
=yes ;;
1277 --disable-armvfp) _armvfp
=no
;;
1278 --enable-neon) neon
=yes ;;
1279 --disable-neon) neon
=no
;;
1280 --enable-iwmmxt) _iwmmxt
=yes ;;
1281 --disable-iwmmxt) _iwmmxt
=no
;;
1282 --enable-mmx) _mmx
=yes ;;
1283 --disable-mmx) # 3Dnow! and MMX2 require MMX
1284 _3dnow
=no _3dnowext
=no _mmx
=no _mmxext
=no
;;
1287 echo "Unknown parameter: $ac_option"
1294 if test "$_gui" = yes ; then
1295 die
"Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1296 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1299 # Atmos: moved this here, to be correct, if --prefix is specified
1300 test -z "$_bindir" && _bindir
="$_prefix/bin"
1301 test -z "$_datadir" && _datadir
="$_prefix/share/mplayer"
1302 test -z "$_mandir" && _mandir
="$_prefix/share/man"
1303 test -z "$_confdir" && _confdir
="$_prefix/etc/mplayer"
1304 test -z "$_libdir" && _libdir
="$_prefix/lib"
1305 test -z "$_localedir" && _localedir
="$_prefix/share/locale"
1307 # Determine our OS name and CPU architecture
1308 if test -z "$_target" ; then
1310 system_name
=$
(uname
-s 2>&1)
1311 case "$system_name" in
1312 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD
/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS
)
1326 [cC
][yY
][gG
][wW
][iI
][nN
]*)
1336 system_name
="$system_name-UNKNOWN"
1341 # host's CPU/instruction set
1342 host_arch
=$
(uname
-p 2>&1)
1343 case "$host_arch" in
1344 i386|sparc|ppc|alpha|arm|mips|vax
)
1346 powerpc
) # Darwin returns 'powerpc'
1349 *) # uname -p on Linux returns 'unknown' for the processor type,
1350 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1352 # Maybe uname -m (machine hardware name) returns something we
1355 # x86/x86pc is used by QNX
1356 case "$(uname -m 2>&1)" in
1357 x86_64|amd64|i
[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium
*|athlon
*|i586_i686|i586-i686|BePC
) host_arch
=i386
;;
1358 ia64
) host_arch
=ia64
;;
1359 macppc|ppc
) host_arch
=ppc
;;
1360 ppc64
) host_arch
=ppc64
;;
1361 alpha
) host_arch
=alpha
;;
1362 sparc
) host_arch
=sparc
;;
1363 sparc64
) host_arch
=sparc64
;;
1364 parisc
*|hppa
*|
9000*) host_arch
=hppa
;;
1365 arm
*|zaurus|cats
) host_arch
=arm
;;
1366 sh3|sh4|sh4a
) host_arch
=sh
;;
1367 s390
) host_arch
=s390
;;
1368 s390x
) host_arch
=s390x
;;
1369 *mips
*) host_arch
=mips
;;
1370 vax
) host_arch
=vax
;;
1371 xtensa
*) host_arch
=xtensa
;;
1372 *) host_arch
=UNKNOWN
;;
1376 else # if test -z "$_target"
1377 system_name
=$
(echo $_target | cut
-d '-' -f 2)
1378 case "$(echo $system_name | tr A-Z a-z)" in
1379 linux
) system_name
=Linux
;;
1380 freebsd
) system_name
=FreeBSD
;;
1381 gnu
/kfreebsd
) system_name
=FreeBSD
;;
1382 netbsd
) system_name
=NetBSD
;;
1383 bsd
/os
) system_name
=BSD
/OS
;;
1384 openbsd
) system_name
=OpenBSD
;;
1385 dragonfly
) system_name
=DragonFly
;;
1386 sunos
) system_name
=SunOS
;;
1387 qnx
) system_name
=QNX
;;
1388 morphos
) system_name
=MorphOS
;;
1389 amigaos
) system_name
=AmigaOS
;;
1390 mingw32
*) system_name
=MINGW32
;;
1392 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1393 host_arch
=$
(echo $_target | cut
-d '-' -f 1)
1394 if test $
(echo $host_arch) != "x86_64" ; then
1395 host_arch
=$
(echo $host_arch |
tr '_' '-')
1399 extra_cflags
="-I. $extra_cflags"
1400 _timer
=timer-linux.c
1403 extra_ldflags
="$extra_ldflags -L/usr/local/lib"
1404 extra_cflags
="$extra_cflags -I/usr/local/include"
1407 if netbsd || dragonfly
; then
1408 extra_ldflags
="$extra_ldflags -L/usr/pkg/lib"
1409 extra_cflags
="$extra_cflags -I/usr/pkg/include"
1413 extra_cflags
="-mdynamic-no-pic $extra_cflags"
1414 if test "$(basename $_cc)" != "clang" ; then
1415 extra_cflags
="-falign-loops=16 -shared-libgcc $extra_cflags"
1417 _timer
=timer-darwin.c
1421 extra_ldflags
="$extra_ldflags -lC"
1432 extra_cflags
="$extra_cflags -fno-common"
1433 # -lwinmm is always needed for osdep/timer-win2.c
1434 extra_ldflags
="$extra_ldflags -lwinmm"
1438 def_dos_paths
="#define HAVE_DOS_PATHS 1"
1439 def_priority
="#define CONFIG_PRIORITY 1"
1451 def_stream_cache
="#undef CONFIG_STREAM_CACHE"
1452 extra_cflags
="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1456 extra_ldflags
="$extra_ldflags -lph"
1464 def_dos_paths
="#define HAVE_DOS_PATHS 1"
1465 def_priority
="#define CONFIG_PRIORITY 1"
1468 for tmpdir
in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1469 test "$tmpdir" && break
1472 mplayer_tmpdir
="$tmpdir/mplayer-configure-$RANDOM-$$"
1473 mkdir
$mplayer_tmpdir || die
"Unable to create tmpdir."
1476 TMPC
="$mplayer_tmpdir/tmp.c"
1477 TMPCPP
="$mplayer_tmpdir/tmp.cpp"
1478 TMPEXE
="$mplayer_tmpdir/tmp$_exesuf"
1479 TMPH
="$mplayer_tmpdir/tmp.h"
1480 TMPS
="$mplayer_tmpdir/tmp.S"
1483 echo configuration
: $configuration > "$TMPLOG"
1487 if test "$_runtime_cpudetection" = yes && ! x86
&& ! ppc
; then
1488 die
"Runtime CPU detection only works for x86, x86-64 and PPC!"
1492 # Checking CC version...
1493 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1494 if test "$(basename $_cc)" = "icc" ||
test "$(basename $_cc)" = "ecc"; then
1495 echocheck
"$_cc version"
1497 cc_name
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ',' -f 1)
1498 cc_version
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ',' -f 2 | cut
-d ' ' -f 3)
1499 _cc_major
=$
(echo $cc_version | cut
-d '.' -f 1)
1500 _cc_minor
=$
(echo $cc_version | cut
-d '.' -f 2)
1501 # TODO verify older icc/ecc compatibility
1504 cc_version
="v. ?.??, bad"
1508 cc_version
="$cc_version, ok"
1511 cc_version
="$cc_version, bad"
1515 echores
"$cc_version"
1517 for _cc
in "$_cc" gcc cc
; do
1518 cc_name_tmp
=$
($_cc -v 2>&1 |
tail -n 1 | cut
-d ' ' -f 1)
1519 if test "$cc_name_tmp" = "gcc"; then
1520 cc_name
=$cc_name_tmp
1521 echocheck
"$_cc version"
1523 cc_version
=$
($_cc -dumpversion 2>&1)
1529 _cc_major
=$
(echo $cc_version | cut
-d '.' -f 1)
1530 _cc_minor
=$
(echo $cc_version | cut
-d '.' -f 2)
1531 _cc_mini
=$
(echo $cc_version | cut
-d '.' -f 3)
1534 echores
"$cc_version"
1537 cc_name_tmp
=$
($_cc -v 2>&1 |
head -n 1 | cut
-d ' ' -f 1)
1538 if test "$cc_name_tmp" = "clang"; then
1539 echocheck
"$_cc version"
1541 cc_version
=$
($_cc -dumpversion 2>&1)
1542 res_comment
="experimental support only"
1543 echores
"clang $cc_version"
1546 cc_name_tmp
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ' ' -f 2,3)
1547 if test "$cc_name_tmp" = "Sun C"; then
1548 echocheck
"$_cc version"
1550 cc_version
=$
($_cc -V 2>&1 |
head -n 1 | cut
-d ' ' -f 4)
1551 res_comment
="experimental support only"
1552 echores
"Sun C $cc_version"
1557 test "$cc_fail" = yes && die
"unsupported compiler version"
1559 if test -z "$_target" && x86
; then
1562 int test[(int)sizeof(char *)-7];
1566 cc_check
&& host_arch
=x86_64 || host_arch
=i386
1569 echo "Detected operating system: $system_name"
1570 echo "Detected host architecture: $host_arch"
1573 test "$_host_cc" || _host_cc
=$_cc
1576 echocheck
"cross compilation"
1577 if test $_cross_compile = auto
; then
1579 cflag_check
"" && "$TMPEXE" && _cross_compile
=no
1581 echores
$_cross_compile
1583 if test $_cross_compile = yes; then
1591 # now that we know what compiler should be used for compilation, try to find
1592 # out which assembler is used by the $_cc compiler
1593 if test "$_as" = auto
; then
1594 _as
=$
($_cc -print-prog-name=as
)
1595 test -z "$_as" && _as
=as
1598 if test "$_nm" = auto
; then
1599 _nm
=$
($_cc -print-prog-name=nm
)
1600 test -z "$_nm" && _nm
=nm
1603 # XXX: this should be ok..
1606 if test "$_runtime_cpudetection" = no
; then
1608 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1609 # FIXME: Remove the cygwin check once AMD CPUs are supported
1610 if test -r /proc
/cpuinfo
&& ! cygwin
; then
1611 # Linux with /proc mounted, extract CPU information from it
1612 _cpuinfo
="cat /proc/cpuinfo"
1613 elif test -r /compat
/linux
/proc
/cpuinfo
&& ! x86
; then
1614 # FreeBSD with Linux emulation /proc mounted,
1615 # extract CPU information from it
1616 # Don't use it on x86 though, it never reports 3Dnow
1617 _cpuinfo
="cat /compat/linux/proc/cpuinfo"
1618 elif darwin
&& ! x86
; then
1619 # use hostinfo on Darwin
1622 # use 'lsattr' on AIX
1623 _cpuinfo
="lsattr -E -l proc0 -a type"
1625 # all other OSes try to extract CPU information from a small helper
1626 # program cpuinfo instead
1627 $_cc -o cpuinfo
$_exesuf cpuinfo.c
1628 _cpuinfo
="./cpuinfo$_exesuf"
1632 # gather more CPU information
1633 pname
=$
($_cpuinfo |
grep 'model name' | cut
-d ':' -f 2 |
head -n 1)
1634 pvendor
=$
($_cpuinfo |
grep 'vendor_id' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1635 pfamily
=$
($_cpuinfo |
grep 'cpu family' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1636 pmodel
=$
($_cpuinfo |
grep -v 'model name' |
grep 'model' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1637 pstepping
=$
($_cpuinfo |
grep 'stepping' | cut
-d ':' -f 2 | cut
-d ' ' -f 2 |
head -n 1)
1639 exts
=$
($_cpuinfo |
egrep 'features|flags' | cut
-d ':' -f 2 |
head -n 1)
1641 pparam
=$
(echo $exts |
sed -e s
/k6_mtrr
/mtrr
/ -e s
/cyrix_arr
/mtrr
/ -e s
/centaur_mcr
/mtrr
/ \
1642 -e s
/xmm
/sse
/ -e s
/kni
/sse
/)
1644 for ext
in $pparam ; do
1645 eval test \"\
$_$ext\" = auto
2>/dev
/null
&& eval _
$ext=kernel_check
1648 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1649 test $_sse = kernel_check
&& _mmxext
=kernel_check
1651 echocheck
"CPU vendor"
1652 echores
"$pvendor ($pfamily:$pmodel:$pstepping)"
1654 echocheck
"CPU type"
1658 fi # test "$_runtime_cpudetection" = no
1660 if x86
&& test "$_runtime_cpudetection" = no
; then
1662 if test "$1" = kernel_check
; then
1663 echocheck
"kernel support of $2"
1667 void catch(int sig) { exit(1); }
1669 signal(SIGILL, catch);
1670 __asm__ volatile ("$3":::"memory"); return 0;
1674 if cc_check
&& tmp_run
; then
1677 _optimizing
="$_optimizing $2"
1682 echo "It seems that your kernel does not correctly support $2."
1683 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1690 extcheck
$_mmx "mmx" "emms"
1691 extcheck
$_mmxext "mmxext" "sfence"
1692 extcheck
$_3dnow "3dnow" "femms"
1693 extcheck
$_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1694 extcheck
$_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext
="$_gcc3_ext -mno-sse"
1695 extcheck
$_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext
="$_gcc3_ext -mno-sse2"
1696 extcheck
$_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1697 extcheck
$_cmov "cmov" "cmovb %%eax,%%ebx"
1699 echocheck
"mtrr support"
1700 if test "$_mtrr" = kernel_check
; then
1702 _optimizing
="$_optimizing mtrr"
1706 if test "$_gcc3_ext" != ""; then
1707 # if we had to disable sse/sse2 because the active kernel does not
1708 # support this instruction set extension, we also have to tell
1709 # gcc3 to not generate sse/sse2 instructions for normal C code
1710 cflag_check
$_march $_gcc3_ext && _march
="$_march $_gcc3_ext"
1716 def_fast_64bit
='#define HAVE_FAST_64BIT 0'
1717 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 0'
1718 arch_all
='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1719 subarch_all
='X86_32 X86_64 PPC64'
1720 case "$host_arch" in
1721 i
[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium
*|athlon
*|i586-i686
)
1724 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
1729 if test "$_runtime_cpudetection" = no
; then
1733 3) proc
=i386 iproc
=386 ;;
1734 4) proc
=i486 iproc
=486 ;;
1735 5) iproc
=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1736 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1737 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1739 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1741 elif test "$pmodel" -ge 8; then
1743 elif test "$pmodel" -ge 6; then
1750 # It's a bit difficult to determine the correct type of Family 6
1751 # AMD CPUs just from their signature. Instead, we check directly
1752 # whether it supports SSE.
1753 if test "$_sse" = yes; then
1754 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1757 # Again, gcc treats athlon and athlon-tbird similarly.
1762 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1763 # caught and remedied in the optimization tests below.
1767 *) proc
=amdfam10 iproc
=686
1768 test $_fast_clz = "auto" && _fast_clz
=yes
1774 3) proc
=i386 iproc
=386 ;;
1775 4) proc
=i486 iproc
=486 ;;
1777 if test "$pmodel" -eq 4 ||
test "$pmodel" -eq 8; then
1778 proc
=pentium-mmx
# 4 is desktop, 8 is mobile
1784 if test "$pmodel" -ge 15; then
1786 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1788 elif test "$pmodel" -ge 7; then
1790 elif test "$pmodel" -ge 3; then
1795 test $_fast_clz = "auto" && _fast_clz
=yes
1798 # A nocona in 32-bit mode has no more capabilities than a prescott.
1799 if test "$pmodel" -ge 3; then
1803 test $_fast_clz = "auto" && _fast_clz
=yes
1805 test $_fast_cmov = "auto" && _fast_cmov
=no
1807 *) proc
=prescott iproc
=686 ;;
1813 if test "$pmodel" -ge 8; then
1815 elif test "$pmodel" -ge 4; then
1822 if test "$pmodel" -ge 9; then
1829 *) proc
=i686 iproc
=i686
;;
1834 3) proc
=i386 iproc
=386 ;;
1835 4) proc
=i486 iproc
=486 ;;
1836 *) proc
=i586 iproc
=586 ;;
1840 proc
=i586 iproc
=586 ;;
1842 test $_fast_clz = "auto" && _fast_clz
=no
1843 fi # test "$_runtime_cpudetection" = no
1846 # check that gcc supports our CPU, if not, fall back to earlier ones
1847 # LGB: check -mcpu and -march swithing step by step with enabling
1848 # to fall back till 386.
1850 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1852 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] ||
( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1858 echocheck
"GCC & CPU optimization abilities"
1859 if test "$_runtime_cpudetection" = no
; then
1860 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1861 cflag_check
-march=native
&& proc
=native
1863 if test "$proc" = "amdfam10"; then
1864 cflag_check
-march=$proc $cpuopt=$proc || proc
=k8
1866 if test "$proc" = "k8"; then
1867 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon-xp
1869 if test "$proc" = "athlon-xp"; then
1870 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon
1872 if test "$proc" = "k6-3" ||
test "$proc" = "k6-2"; then
1873 cflag_check
-march=$proc $cpuopt=$proc || proc
=k6
1875 if test "$proc" = "k6" ||
test "$proc" = "c3"; then
1876 if ! cflag_check
-march=$proc $cpuopt=$proc; then
1877 if cflag_check
-march=i586
$cpuopt=i686
; then
1884 if test "$proc" = "prescott" ; then
1885 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium4
1887 if test "$proc" = "core2" ; then
1888 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium-m
1890 if test "$proc" = "pentium4" ||
test "$proc" = "pentium-m" ||
test "$proc" = "pentium3" ||
test "$proc" = "pentium2" ||
test "$proc" = "athlon" ||
test "$proc" = "c3-2" ||
test "$proc" = "geode"; then
1891 cflag_check
-march=$proc $cpuopt=$proc || proc
=i686
1893 if test "$proc" = "i686" ||
test "$proc" = "pentium-mmx" ||
test "$proc" = "winchip-c6" ||
test "$proc" = "winchip2"; then
1894 cflag_check
-march=$proc $cpuopt=$proc || proc
=i586
1896 if test "$proc" = "i586"; then
1897 cflag_check
-march=$proc $cpuopt=$proc || proc
=i486
1899 if test "$proc" = "i486" ; then
1900 cflag_check
-march=$proc $cpuopt=$proc || proc
=i386
1902 if test "$proc" = "i386" ; then
1903 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
1905 if test "$proc" = "error" ; then
1906 echores
"CPU optimization disabled. CPU not recognized or your compiler is too old."
1910 elif test "$proc" = "i586-i686"; then
1911 _march
="-march=i586"
1912 _mcpu
="$cpuopt=i686"
1915 _march
="-march=$proc"
1916 _mcpu
="$cpuopt=$proc"
1919 else # if test "$_runtime_cpudetection" = no
1920 _mcpu
="$cpuopt=generic"
1921 # at least i486 required, for bswap instruction
1922 _march
="-march=i486"
1923 cflag_check
$_mcpu || _mcpu
="$cpuopt=i686"
1924 cflag_check
$_mcpu || _mcpu
=""
1925 cflag_check
$_march $_mcpu || _march
=""
1928 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1929 ## autodetected mcpu/march parameters
1930 if test "$_target" ; then
1931 # TODO: it may be a good idea to check GCC and fall back in all cases
1932 if test "$host_arch" = "i586-i686"; then
1933 _march
="-march=i586"
1934 _mcpu
="$cpuopt=i686"
1936 _march
="-march=$host_arch"
1937 _mcpu
="$cpuopt=$host_arch"
1945 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx
) iproc
=586 ;;
1946 i686|athlon
*|pentium
*) iproc
=686 ;;
1951 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1956 test $_fast_clz = "auto" && _fast_clz
=yes
1963 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
1970 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
1971 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
1974 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1975 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1980 if test "$_runtime_cpudetection" = no
; then
1985 test $_fast_clz = "auto" && _fast_clz
=no
1994 # 64-bit prescotts exist, but as far as GCC is concerned they
1995 # have the same capabilities as a nocona.
1997 test $_fast_cmov = "auto" && _fast_cmov
=no
1998 test $_fast_clz = "auto" && _fast_clz
=no
2005 fi # test "$_runtime_cpudetection" = no
2007 echocheck
"GCC & CPU optimization abilities"
2008 # This is a stripped-down version of the i386 fallback.
2009 if test "$_runtime_cpudetection" = no
; then
2010 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2011 cflag_check
-march=native
&& proc
=native
2013 # --- AMD processors ---
2014 if test "$proc" = "amdfam10"; then
2015 cflag_check
-march=$proc $cpuopt=$proc || proc
=k8
2017 if test "$proc" = "k8"; then
2018 cflag_check
-march=$proc $cpuopt=$proc || proc
=athlon-xp
2020 # This will fail if gcc version < 3.3, which is ok because earlier
2021 # versions don't really support 64-bit on amd64.
2022 # Is this a valid assumption? -Corey
2023 if test "$proc" = "athlon-xp"; then
2024 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
2026 # --- Intel processors ---
2027 if test "$proc" = "core2"; then
2028 cflag_check
-march=$proc $cpuopt=$proc || proc
=x86-64
2030 if test "$proc" = "x86-64"; then
2031 cflag_check
-march=$proc $cpuopt=$proc || proc
=nocona
2033 if test "$proc" = "nocona"; then
2034 cflag_check
-march=$proc $cpuopt=$proc || proc
=pentium4
2036 if test "$proc" = "pentium4"; then
2037 cflag_check
-march=$proc $cpuopt=$proc || proc
=error
2040 _march
="-march=$proc"
2041 _mcpu
="$cpuopt=$proc"
2042 if test "$proc" = "error" ; then
2043 echores
"CPU optimization disabled. CPU not recognized or your compiler is too old."
2047 else # if test "$_runtime_cpudetection" = no
2048 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2049 _march
="-march=x86-64"
2050 _mcpu
="$cpuopt=generic"
2051 cflag_check
$_mcpu || _mcpu
="x86-64"
2052 cflag_check
$_mcpu || _mcpu
=""
2053 cflag_check
$_march $_mcpu || _march
=""
2057 test $_fast_cmov = "auto" && _fast_cmov
=yes
2058 test $_fast_clz = "auto" && _fast_clz
=yes
2066 if test "$host_arch" = "sparc64" ; then
2069 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2071 echocheck
"CPU type"
2073 case "$(echo $karch)" in
2078 sun4u
) proc
=ultrasparc _vis
='yes' ;;
2097 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
2099 test $_fast_clz = "auto" && _fast_clz
=yes
2107 ppc|ppc64|powerpc|powerpc64
)
2109 def_dcbzl
='#define HAVE_DCBZL 0'
2110 def_fast_unaligned
='#define HAVE_FAST_UNALIGNED 1'
2113 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2115 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2117 echocheck
"CPU type"
2118 case $system_name in
2120 proc
=$
($_cpuinfo |
grep 'cpu' | cut
-d ':' -f 2 | cut
-d ',' -f 1 | cut
-b 2- |
head -n 1)
2121 if test -n "$($_cpuinfo | grep altivec)"; then
2122 test $_altivec = auto
&& _altivec
=yes
2126 proc
=$
($_cpuinfo |
grep "Processor type" | cut
-f 3 -d ' ' |
sed 's/ppc//')
2127 if [ $
(sysctl
-n hw.vectorunit
) -eq 1 -o \
2128 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2129 test $_altivec = auto
&& _altivec
=yes
2133 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2135 2*|
3.0*|
3.1*|
3.2*|
3.3*)
2138 if [ $
(sysctl
-n machdep.altivec
) -eq 1 ]; then
2139 test $_altivec = auto
&& _altivec
=yes
2145 proc
=$
($_cpuinfo |
grep 'type' | cut
-f 2 -d ' ' |
sed 's/PowerPC_//')
2148 if test "$_altivec" = yes; then
2149 echores
"$proc altivec"
2155 echocheck
"GCC & CPU optimization abilities"
2157 if test -n "$proc"; then
2159 601) _march
='-mcpu=601' _mcpu
='-mtune=601' ;;
2160 603) _march
='-mcpu=603' _mcpu
='-mtune=603' ;;
2161 603e|
603ev
) _march
='-mcpu=603e' _mcpu
='-mtune=603e' ;;
2162 604|
604e|
604r|
604ev
) _march
='-mcpu=604' _mcpu
='-mtune=604' ;;
2163 740|
740/750|
745/755) _march
='-mcpu=740' _mcpu
='-mtune=740' ;;
2164 750|
750CX
) _march
='-mcpu=750' _mcpu
='-mtune=750' ;;
2165 POWER
) _march
='-mcpu=power' _mcpu
='-mtune=power' ;;
2166 POWER2
) _march
='-mcpu=power2' _mcpu
='-mtune=power2' ;;
2167 POWER3
) _march
='-mcpu=power3' _mcpu
='-mtune=power3' ;;
2170 # gcc 3.1(.1) and up supports 7400 and 7450
2171 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" ||
test "$_cc_major" -ge "4"; then
2173 7400*|
7410*) _march
='-mcpu=7400' _mcpu
='-mtune=7400' ;;
2174 7447*|
7450*|
7455*) _march
='-mcpu=7450' _mcpu
='-mtune=7450' ;;
2178 # gcc 3.2 and up supports 970
2179 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" ||
test "$_cc_major" -ge "4"; then
2181 970*|PPC970
*) _march
='-mcpu=970' _mcpu
='-mtune=970'
2182 def_dcbzl
='#define HAVE_DCBZL 1' ;;
2186 # gcc 3.3 and up supports POWER4
2187 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" ||
test "$_cc_major" -ge "4"; then
2189 POWER4
) _march
='-mcpu=power4' _mcpu
='-mtune=power4' ;;
2193 # gcc 3.4 and up supports 440*
2194 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" ||
test "$_cc_major" -ge "4"; then
2196 440EP
*) _march
='-mcpu=440fp' _mcpu
='-mtune=440fp' ;;
2197 440G
* ) _march
='-mcpu=440' _mcpu
='-mtune=440' ;;
2201 # gcc 4.0 and up supports POWER5
2202 if test "$_cc_major" -ge "4"; then
2204 POWER5
*) _march
='-mcpu=power5' _mcpu
='-mtune=power5' ;;
2210 if test -n "$_mcpu"; then
2211 _optimizing
=$
(echo $_mcpu | cut
-c 8-)
2212 echores
"$_optimizing"
2217 test $_fast_clz = "auto" && _fast_clz
=yes
2224 def_fast_64bit
='#define HAVE_FAST_64BIT 1'
2226 echocheck
"CPU type"
2229 unsigned long ver, mask;
2230 __asm__ ("implver %0" : "=r" (ver));
2231 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2232 printf("%ld-%x\n", ver, ~mask);
2236 $_cc -o "$TMPEXE" "$TMPC"
2237 case $
("$TMPEXE") in
2239 0-0) proc
="ev4"; _mvi
="0";;
2240 1-0) proc
="ev5"; _mvi
="0";;
2241 1-1) proc
="ev56"; _mvi
="0";;
2242 1-101) proc
="pca56"; _mvi
="1";;
2243 2-303) proc
="ev6"; _mvi
="1";;
2244 2-307) proc
="ev67"; _mvi
="1";;
2245 2-1307) proc
="ev68"; _mvi
="1";;
2249 echocheck
"GCC & CPU optimization abilities"
2250 if test "$proc" = "ev68" ; then
2251 cc_check
-mcpu=$proc || proc
=ev67
2253 if test "$proc" = "ev67" ; then
2254 cc_check
-mcpu=$proc || proc
=ev6
2259 test $_fast_clz = "auto" && _fast_clz
=yes
2269 echocheck
"CPU type"
2270 proc
=$
(hinv
-c processor |
grep CPU | cut
-d " " -f3)
2271 case "$(echo $proc)" in
2272 R3000
) _march
='-mips1' _mcpu
='-mtune=r2000' ;;
2273 R4000
) _march
='-mips3' _mcpu
='-mtune=r4000' ;;
2274 R4400
) _march
='-mips3' _mcpu
='-mtune=r4400' ;;
2275 R4600
) _march
='-mips3' _mcpu
='-mtune=r4600' ;;
2276 R5000
) _march
='-mips4' _mcpu
='-mtune=r5000' ;;
2277 R8000|R10000|R12000|R14000|R16000
) _march
='-mips4' _mcpu
='-mtune=r8000' ;;
2279 # gcc < 3.x does not support -mtune.
2280 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2286 test $_fast_clz = "auto" && _fast_clz
=yes
2320 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2321 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2322 die
"unsupported architecture $host_arch"
2324 esac # case "$host_arch" in
2326 if test "$_runtime_cpudetection" = yes ; then
2328 test "$_cmov" != no
&& _cmov
=yes
2330 test "$_mmx" != no
&& _mmx
=yes
2331 test "$_3dnow" != no
&& _3dnow
=yes
2332 test "$_3dnowext" != no
&& _3dnowext
=yes
2333 test "$_mmxext" != no
&& _mmxext
=yes
2334 test "$_sse" != no
&& _sse
=yes
2335 test "$_sse2" != no
&& _sse2
=yes
2336 test "$_ssse3" != no
&& _ssse3
=yes
2337 test "$_mtrr" != no
&& _mtrr
=yes
2346 echocheck
"byte order"
2347 if test "$_big_endian" = auto
; then
2349 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2350 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2351 int main(void) { return (int)ascii_name; }
2354 if strings $TMPEXE |
grep -q -l MPlayerBigEndian
; then
2360 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2363 if test "$_big_endian" = yes ; then
2364 _byte_order
='big-endian'
2365 def_words_endian
='#define WORDS_BIGENDIAN 1'
2366 def_bigendian
='#define HAVE_BIGENDIAN 1'
2368 _byte_order
='little-endian'
2369 def_words_endian
='#undef WORDS_BIGENDIAN'
2370 def_bigendian
='#define HAVE_BIGENDIAN 0'
2372 echores
"$_byte_order"
2375 echocheck
"extern symbol prefix"
2379 cc_check
-c || die
"Symbol mangling check failed."
2380 sym
=$
($_nm -P -g $TMPEXE)
2381 extern_prefix
=${sym%%ff_extern*}
2382 def_extern_asm
="#define EXTERN_ASM $extern_prefix"
2383 def_extern_prefix
="#define EXTERN_PREFIX \"$extern_prefix\""
2384 echores
$extern_prefix
2387 echocheck
"assembler support of -pipe option"
2388 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2389 cflag_check
-pipe -I.
&& _pipe
="-pipe" && echores
"yes" || echores
"no"
2392 echocheck
"compiler support of named assembler arguments"
2394 def_named_asm_args
="#define NAMED_ASM_ARGS 1"
2395 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2396 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2398 def_named_asm_args
="#undef NAMED_ASM_ARGS"
2400 echores
$_named_asm_args
2403 if darwin
&& test "$cc_vendor" = "gnu" ; then
2404 echocheck
"GCC support of -mstackrealign"
2405 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2406 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2407 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2408 # wrong code with this flag, but this can be worked around by adding
2409 # -fno-unit-at-a-time as described in the blog post at
2410 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2412 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2413 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2415 cc_check
-O2 -mstackrealign && tmp_run
&& cflags_stackrealign
=-mstackrealign
2416 test -z "$cflags_stackrealign" && cc_check
-O2 -mstackrealign -fno-unit-at-a-time \
2417 && tmp_run
&& cflags_stackrealign
="-mstackrealign -fno-unit-at-a-time"
2418 test -n "$cflags_stackrealign" && echores
"yes" || echores
"no"
2419 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2422 # Checking for CFLAGS
2424 if test "$_profile" != "" ||
test "$_debug" != "" ; then
2425 CFLAGS
="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2426 WARNFLAGS
="-W -Wall"
2428 elif test -z "$CFLAGS" ; then
2429 if test "$cc_vendor" = "intel" ; then
2430 CFLAGS
="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2431 WARNFLAGS
="-wd167 -wd556 -wd144"
2432 elif test "$cc_vendor" = "sun" ; then
2433 CFLAGS
="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2434 elif test "$cc_vendor" = "clang"; then
2435 CFLAGS
="-O2 $_march $_pipe"
2436 elif test "$cc_vendor" != "gnu" ; then
2437 CFLAGS
="-O2 $_march $_mcpu $_pipe"
2439 CFLAGS
="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2440 WARNFLAGS
="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2441 extra_ldflags
="$extra_ldflags -ffast-math"
2447 if test "$cc_vendor" = "gnu" ; then
2448 cflag_check
-Wundef && WARNFLAGS
="-Wundef $WARNFLAGS"
2449 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2450 # that's the only variable specific to C now, and this option is not valid
2452 cflag_check
-std=gnu99
&& WARN_CFLAGS
="-std=gnu99 $WARN_CFLAGS"
2453 cflag_check
-Wno-pointer-sign && WARN_CFLAGS
="-Wno-pointer-sign $WARN_CFLAGS"
2454 cflag_check
-Wdisabled-optimization && WARN_CFLAGS
="-Wdisabled-optimization $WARN_CFLAGS"
2455 cflag_check
-Wmissing-prototypes && WARN_CFLAGS
="-Wmissing-prototypes $WARN_CFLAGS"
2456 cflag_check
-Wstrict-prototypes && WARN_CFLAGS
="-Wstrict-prototypes $WARN_CFLAGS"
2458 CFLAGS
="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2461 cflag_check
-mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer
="-mno-omit-leaf-frame-pointer"
2462 cflag_check
-MD -MP && DEPFLAGS
="-MD -MP"
2465 if test -n "$LDFLAGS" ; then
2466 extra_ldflags
="$extra_ldflags $LDFLAGS"
2468 elif test "$cc_vendor" = "intel" ; then
2469 extra_ldflags
="$extra_ldflags -i-static"
2471 if test -n "$CPPFLAGS" ; then
2472 extra_cflags
="$extra_cflags $CPPFLAGS"
2479 # Checking assembler (_as) compatibility...
2480 # Added workaround for older as that reads from stdin by default - atmos
2481 as_version
=$
(echo '' |
$_as -version 2>&1 |
sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2482 echocheck
"assembler ($_as $as_version)"
2484 _pref_as_version
='2.9.1'
2486 if test "$_mmx" = yes ; then
2487 echo 'emms' >> $TMPS
2489 if test "$_3dnow" = yes ; then
2490 _pref_as_version
='2.10.1'
2491 echo 'femms' >> $TMPS
2493 if test "$_3dnowext" = yes ; then
2494 _pref_as_version
='2.10.1'
2495 echo 'pswapd %mm0, %mm0' >> $TMPS
2497 if test "$_mmxext" = yes ; then
2498 _pref_as_version
='2.10.1'
2499 echo 'movntq %mm0, (%eax)' >> $TMPS
2501 if test "$_sse" = yes ; then
2502 _pref_as_version
='2.10.1'
2503 echo 'xorps %xmm0, %xmm0' >> $TMPS
2505 #if test "$_sse2" = yes ; then
2506 # _pref_as_version='2.11'
2507 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2509 if test "$_cmov" = yes ; then
2510 _pref_as_version
='2.10.1'
2511 echo 'cmovb %eax, %ebx' >> $TMPS
2513 if test "$_ssse3" = yes ; then
2514 _pref_as_version
='2.16.92'
2515 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2517 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 || as_verc_fail
=yes
2519 if test "$as_verc_fail" != yes ; then
2522 res_comment
="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2524 die
"obsolete binutils version"
2529 echocheck
".align is a power of two"
2530 if test "$_asmalign_pot" = auto
; then
2533 int main(void) { __asm__ (".align 3"); return 0; }
2535 cc_check
&& _asmalign_pot
=yes
2537 if test "$_asmalign_pot" = "yes" ; then
2538 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2540 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2542 echores
$_asmalign_pot
2549 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2550 #error PIC not enabled
2555 cc_check
&& pic
=yes && extra_cflags
="$extra_cflags -DPIC"
2560 echocheck
"10 assembler operands"
2562 def_ten_operands
='#define HAVE_TEN_OPERANDS 0'
2568 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2573 cc_check
&& ten_operands
=yes && def_ten_operands
='#define HAVE_TEN_OPERANDS 1'
2574 echores
$ten_operands
2576 echocheck
"ebx availability"
2578 def_ebx_available
='#define HAVE_EBX_AVAILABLE 0'
2585 // just adding ebx to clobber list seems unreliable with some
2586 // compilers, e.g. Haiku's gcc 2.95
2588 // and the above check does not work for OSX 64 bit...
2589 __asm__ volatile("":::"%ebx");
2593 cc_check
&& ebx_available
=yes && def_ebx_available
='#define HAVE_EBX_AVAILABLE 1'
2594 echores
$ebx_available
2598 if test -z "$YASMFLAGS" ; then
2600 x86_64
&& objformat
="macho64" || objformat
="macho"
2606 # currently tested for Linux x86, x86_64
2607 YASMFLAGS
="-f $objformat"
2608 x86_64
&& YASMFLAGS
="$YASMFLAGS -DARCH_X86_64 -m amd64"
2609 test "$pic" = "yes" && YASMFLAGS
="$YASMFLAGS -DPIC"
2610 case "$objformat" in
2611 elf
) test $_debug && YASMFLAGS
="$YASMFLAGS -g dwarf2" ;;
2612 *) YASMFLAGS
="$YASMFLAGS -DPREFIX" ;;
2618 echo "pabsw xmm0, xmm0" > $TMPS
2619 yasm_check || _yasm
=""
2620 if test $_yasm ; then
2621 def_yasm
='#define HAVE_YASM 1'
2625 def_yasm
='#define HAVE_YASM 0'
2631 def_bswap
='#define HAVE_BSWAP 0'
2632 echo 'bswap %eax' > $TMPS
2633 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 && def_bswap
='#define HAVE_BSWAP 1' && bswap
=yes || bswap
=no
2638 #FIXME: This should happen before the check for CFLAGS..
2639 def_altivec_h
='#define HAVE_ALTIVEC_H 0'
2640 if ppc
&& ( test "$_altivec" = yes ||
test "$_runtime_cpudetection" = yes ) ; then
2642 # check if AltiVec is supported by the compiler, and how to enable it
2643 echocheck
"GCC AltiVec flags"
2644 if $
(cflag_check
-maltivec -mabi=altivec
) ; then
2645 _altivec_gcc_flags
="-maltivec -mabi=altivec"
2646 # check if <altivec.h> should be included
2647 if $
(header_check altivec.h
$_altivec_gcc_flags) ; then
2648 def_altivec_h
='#define HAVE_ALTIVEC_H 1'
2649 inc_altivec_h
='#include <altivec.h>'
2651 if $
(cflag_check
-faltivec) ; then
2652 _altivec_gcc_flags
="-faltivec"
2655 _altivec_gcc_flags
="none, AltiVec disabled"
2659 echores
"$_altivec_gcc_flags"
2661 # check if the compiler supports braces for vector declarations
2664 int main(void) { (vector int) {1}; return 0; }
2666 cc_check
$_altivec_gcc_flags || die
"You need a compiler that supports {} in AltiVec vector declarations."
2668 # Disable runtime cpudetection if we cannot generate AltiVec code or
2669 # AltiVec is disabled by the user.
2670 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2671 && _runtime_cpudetection
=no
2673 # Show that we are optimizing for AltiVec (if enabled and supported).
2674 test "$_runtime_cpudetection" = no
&& test "$_altivec" = yes \
2675 && _optimizing
="$_optimizing altivec"
2677 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2678 test "$_altivec" = yes && CFLAGS
="$CFLAGS $_altivec_gcc_flags"
2682 def_xform_asm
='#define HAVE_XFORM_ASM 0'
2684 echocheck
"XFORM ASM support"
2686 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2688 cc_check
&& xform_asm
=yes && def_xform_asm
='#define HAVE_XFORM_ASM 1'
2689 echores
"$xform_asm"
2693 echocheck
"ARM pld instruction"
2695 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2701 echocheck
"ARMv5TE (Enhanced DSP Extensions)"
2702 if test $_armv5te = "auto" ; then
2704 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2707 cc_check
&& _armv5te
=yes
2711 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz
=yes
2713 echocheck
"ARMv6 (SIMD instructions)"
2714 if test $_armv6 = "auto" ; then
2716 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2719 cc_check
&& _armv6
=yes
2723 echocheck
"ARMv6t2 (SIMD instructions)"
2724 if test $_armv6t2 = "auto" ; then
2726 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2729 cc_check
&& _armv6t2
=yes
2734 if test $_armvfp = "auto" ; then
2736 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2739 cc_check
&& _armvfp
=yes
2743 echocheck
"ARM NEON"
2744 if test $neon = "auto" ; then
2746 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2749 cc_check
&& neon
=yes
2753 echocheck
"iWMMXt (Intel XScale SIMD instructions)"
2754 if test $_iwmmxt = "auto" ; then
2756 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2759 cc_check
&& _iwmmxt
=yes
2764 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'
2765 test "$_altivec" = yes && cpuexts
="ALTIVEC $cpuexts"
2766 test "$_mmx" = yes && cpuexts
="MMX $cpuexts"
2767 test "$_mmxext" = yes && cpuexts
="MMX2 $cpuexts"
2768 test "$_3dnow" = yes && cpuexts
="AMD3DNOW $cpuexts"
2769 test "$_3dnowext" = yes && cpuexts
="AMD3DNOWEXT $cpuexts"
2770 test "$_sse" = yes && cpuexts
="SSE $cpuexts"
2771 test "$_sse2" = yes && cpuexts
="SSE2 $cpuexts"
2772 test "$_ssse3" = yes && cpuexts
="SSSE3 $cpuexts"
2773 test "$_cmov" = yes && cpuexts
="CMOV $cpuexts"
2774 test "$_fast_cmov" = yes && cpuexts
="FAST_CMOV $cpuexts"
2775 test "$_fast_clz" = yes && cpuexts
="FAST_CLZ $cpuexts"
2776 test "$pld" = yes && cpuexts
="PLD $cpuexts"
2777 test "$_armv5te" = yes && cpuexts
="ARMV5TE $cpuexts"
2778 test "$_armv6" = yes && cpuexts
="ARMV6 $cpuexts"
2779 test "$_armv6t2" = yes && cpuexts
="ARMV6T2 $cpuexts"
2780 test "$_armvfp" = yes && cpuexts
="ARMVFP $cpuexts"
2781 test "$neon" = yes && cpuexts
="NEON $cpuexts"
2782 test "$_iwmmxt" = yes && cpuexts
="IWMMXT $cpuexts"
2783 test "$_vis" = yes && cpuexts
="VIS $cpuexts"
2784 test "$_mvi" = yes && cpuexts
="MVI $cpuexts"
2786 # Checking kernel version...
2787 if x86_32
&& linux
; then
2789 kernel_version
=$
(uname
-r 2>&1)
2790 echocheck
"$system_name kernel version"
2791 case "$kernel_version" in
2792 '') kernel_version
="?.??"; _k_verc_fail
=yes;;
2793 [0-1].
[0-9].
[0-9]*|
2.
[0-3].
[0-9]*)
2794 _k_verc_problem
=yes;;
2796 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2799 if test "$_k_verc_fail" ; then
2800 echores
"$kernel_version, fail"
2801 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2802 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2803 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2804 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2805 echo "2.2.x you must upgrade it to get SSE support!"
2806 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2808 echores
"$kernel_version, ok"
2812 ######################
2813 # MAIN TESTS GO HERE #
2814 ######################
2818 if cflag_check
-lposix ; then
2819 extra_ldflags
="$extra_ldflags -lposix"
2826 if cflag_check
-lm ; then
2835 echocheck
"langinfo"
2836 if test "$_langinfo" = auto
; then
2838 #include <langinfo.h>
2839 int main(void) { nl_langinfo(CODESET); return 0; }
2842 cc_check
&& _langinfo
=yes
2844 if test "$_langinfo" = yes ; then
2845 def_langinfo
='#define HAVE_LANGINFO 1'
2847 def_langinfo
='#undef HAVE_LANGINFO'
2849 echores
"$_langinfo"
2852 echocheck
"translation support"
2853 if test "$_translation" = yes; then
2854 def_translation
="#define CONFIG_TRANSLATION 1"
2856 def_translation
="#undef CONFIG_TRANSLATION"
2858 echores
"$_translation"
2860 echocheck
"language"
2861 # Set preferred languages, "all" uses English as main language.
2862 test -z "$language" && language
=$LINGUAS
2863 test -z "$language_doc" && language_doc
=$language
2864 test -z "$language_man" && language_man
=$language
2865 test -z "$language_msg" && language_msg
="all"
2866 language_doc
=$
(echo $language_doc |
tr , " ")
2867 language_man
=$
(echo $language_man |
tr , " ")
2868 language_msg
=$
(echo $language_msg |
tr , " ")
2870 test "$language_doc" = "all" && language_doc
=$doc_lang_all
2871 test "$language_man" = "all" && language_man
=$man_lang_all
2872 test "$language_msg" = "all" && language_msg
=$msg_lang_all
2874 if test "$_translation" != yes ; then
2878 # Prune non-existing translations from language lists.
2879 # Set message translation to the first available language.
2880 # Fall back on English.
2881 for lang
in $language_doc ; do
2882 test -d DOCS
/xml
/$lang && tmp_language_doc
="$tmp_language_doc $lang"
2884 language_doc
=$tmp_language_doc
2885 test -z "$language_doc" && language_doc
=en
2887 for lang
in $language_man ; do
2888 test -d DOCS
/man
/$lang && tmp_language_man
="$tmp_language_man $lang"
2890 language_man
=$tmp_language_man
2891 test -z "$language_man" && language_man
=en
2893 for lang
in $language_msg ; do
2894 test -f po
/$lang.po
&& tmp_language_msg
="$tmp_language_msg $lang"
2896 language_msg
=$tmp_language_msg
2898 echores
"messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2901 echocheck
"enable sighandler"
2902 if test "$_sighandler" = yes ; then
2903 def_sighandler
='#define CONFIG_SIGHANDLER 1'
2905 def_sighandler
='#undef CONFIG_SIGHANDLER'
2907 echores
"$_sighandler"
2909 echocheck
"runtime cpudetection"
2910 if test "$_runtime_cpudetection" = yes ; then
2911 _optimizing
="Runtime CPU-Detection enabled"
2912 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 1'
2914 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 0'
2916 echores
"$_runtime_cpudetection"
2919 echocheck
"restrict keyword"
2920 for restrict_keyword
in restrict __restrict __restrict__
; do
2921 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2923 def_restrict_keyword
=$restrict_keyword
2927 if [ -n "$def_restrict_keyword" ]; then
2928 echores
"$def_restrict_keyword"
2932 # Avoid infinite recursion loop ("#define restrict restrict")
2933 if [ "$def_restrict_keyword" != "restrict" ]; then
2934 def_restrict_keyword
="#define restrict $def_restrict_keyword"
2936 def_restrict_keyword
=""
2940 echocheck
"__builtin_expect"
2941 # GCC branch prediction hint
2944 a = __builtin_expect(a, 10);
2945 return a == 10 ? 0 : 1;
2947 int main(void) { return foo(10) && foo(0); }
2950 cc_check
&& _builtin_expect
=yes
2951 if test "$_builtin_expect" = yes ; then
2952 def_builtin_expect
='#define HAVE_BUILTIN_EXPECT 1'
2954 def_builtin_expect
='#undef HAVE_BUILTIN_EXPECT'
2956 echores
"$_builtin_expect"
2962 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2965 cc_check
-lkstat && _kstat
=yes
2966 if test "$_kstat" = yes ; then
2967 def_kstat
="#define HAVE_LIBKSTAT 1"
2968 extra_ldflags
="$extra_ldflags -lkstat"
2970 def_kstat
="#undef HAVE_LIBKSTAT"
2976 # required for nanosleep on some systems
2979 int main(void) { (void) nanosleep(0, 0); return 0; }
2982 cc_check
-lposix4 && _posix4
=yes
2983 if test "$_posix4" = yes ; then
2984 extra_ldflags
="$extra_ldflags -lposix4"
2988 for func
in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf
; do
2992 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2995 cc_check
-D_ISOC99_SOURCE $_ld_lm && eval _
$func=yes
2996 if eval test "x\$_$func" = "xyes"; then
2997 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3000 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3009 int main(void) { char a; mkstemp(&a); return 0; }
3012 cc_check
&& _mkstemp
=yes
3013 if test "$_mkstemp" = yes ; then
3014 def_mkstemp
='#define HAVE_MKSTEMP 1'
3016 def_mkstemp
='#undef HAVE_MKSTEMP'
3021 echocheck
"nanosleep"
3022 # also check for nanosleep
3025 int main(void) { (void) nanosleep(0, 0); return 0; }
3028 cc_check
&& _nanosleep
=yes
3029 if test "$_nanosleep" = yes ; then
3030 def_nanosleep
='#define HAVE_NANOSLEEP 1'
3032 def_nanosleep
='#undef HAVE_NANOSLEEP'
3034 echores
"$_nanosleep"
3038 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3039 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3042 #include <sys/socket.h>
3043 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3046 for _ld_tmp
in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3047 cc_check
$_ld_tmp && _ld_sock
="$_ld_tmp" && _socklib
=yes && break
3049 test $_socklib = yes && test $_winsock2_h = auto
&& _winsock2_h
=no
3050 if test $_winsock2_h = auto
; then
3053 #include <winsock2.h>
3054 int main(void) { (void) gethostbyname(0); return 0; }
3056 cc_check
-lws2_32 && _ld_sock
="-lws2_32" && _winsock2_h
=yes
3058 test "$_ld_sock" && res_comment
="using $_ld_sock"
3062 if test $_winsock2_h = yes ; then
3064 def_winsock2_h
='#define HAVE_WINSOCK2_H 1'
3066 def_winsock2_h
='#define HAVE_WINSOCK2_H 0'
3070 echocheck
"arpa/inet.h"
3072 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 0'
3073 header_check arpa
/inet.h
&& arpa_inet_h
=yes &&
3074 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 1'
3075 echores
"$arpa_inet_h"
3078 echocheck
"inet_pton()"
3079 def_inet_pton
='#define HAVE_INET_PTON 0'
3082 #include <sys/types.h>
3083 #include <sys/socket.h>
3084 #include <arpa/inet.h>
3085 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3087 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3088 cc_check
$_ld_tmp && inet_pton
=yes && break
3090 if test $inet_pton = yes ; then
3091 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3092 def_inet_pton
='#define HAVE_INET_PTON 1'
3094 echores
"$inet_pton"
3097 echocheck
"inet_aton()"
3098 def_inet_aton
='#define HAVE_INET_ATON 0'
3101 #include <sys/types.h>
3102 #include <sys/socket.h>
3103 #include <arpa/inet.h>
3104 int main(void) { (void) inet_aton(0, 0); return 0; }
3106 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3107 cc_check
$_ld_tmp && inet_aton
=yes && break
3109 if test $inet_aton = yes ; then
3110 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3111 def_inet_aton
='#define HAVE_INET_ATON 1'
3113 echores
"$inet_aton"
3116 echocheck
"socklen_t"
3118 for header
in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3121 int main(void) { socklen_t v = 0; return v; }
3123 cc_check
&& _socklen_t
=yes && break
3125 if test "$_socklen_t" = yes ; then
3126 def_socklen_t
='#define HAVE_SOCKLEN_T 1'
3128 def_socklen_t
='#define HAVE_SOCKLEN_T 0'
3130 echores
"$_socklen_t"
3133 echocheck
"closesocket()"
3136 #include <winsock2.h>
3137 int main(void) { closesocket(~0); return 0; }
3139 cc_check
$_ld_sock && _closesocket
=yes
3140 if test "$_closesocket" = yes ; then
3141 def_closesocket
='#define HAVE_CLOSESOCKET 1'
3143 def_closesocket
='#define HAVE_CLOSESOCKET 0'
3145 echores
"$_closesocket"
3148 echocheck
"networking"
3149 test $_winsock2_h = no
&& test $inet_pton = no
&&
3150 test $inet_aton = no
&& networking
=no
3151 if test "$networking" = yes ; then
3152 def_network
='#define CONFIG_NETWORK 1'
3153 def_networking
='#define CONFIG_NETWORKING 1'
3154 extra_ldflags
="$extra_ldflags $_ld_sock"
3155 inputmodules
="networking $inputmodules"
3157 noinputmodules
="networking $noinputmodules"
3158 def_network
='#undef CONFIG_NETWORK'
3159 def_networking
='#undef CONFIG_NETWORKING'
3162 echores
"$networking"
3166 if test "$_inet6" = auto
; then
3168 #include <sys/types.h>
3169 #if !defined(_WIN32) || defined(__CYGWIN__)
3170 #include <sys/socket.h>
3171 #include <netinet/in.h>
3173 #include <ws2tcpip.h>
3175 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3178 if cc_check
$_ld_sock ; then
3182 if test "$_inet6" = yes ; then
3183 def_inet6
='#define HAVE_AF_INET6 1'
3185 def_inet6
='#undef HAVE_AF_INET6'
3190 echocheck
"gethostbyname2"
3191 if test "$_gethostbyname2" = auto
; then
3193 #include <sys/types.h>
3194 #include <sys/socket.h>
3196 int main(void) { gethostbyname2("", AF_INET); return 0; }
3203 if test "$_gethostbyname2" = yes ; then
3204 def_gethostbyname2
='#define HAVE_GETHOSTBYNAME2 1'
3206 def_gethostbyname2
='#undef HAVE_GETHOSTBYNAME2'
3208 echores
"$_gethostbyname2"
3211 echocheck
"inttypes.h (required)"
3213 header_check inttypes.h
&& _inttypes
=yes
3214 echores
"$_inttypes"
3216 if test "$_inttypes" = no
; then
3217 echocheck
"sys/bitypes.h (inttypes.h predecessor)"
3218 header_check sys
/bitypes.h
&& _inttypes
=yes
3219 if test "$_inttypes" = yes ; then
3220 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."
3222 die
"Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3227 echocheck
"int_fastXY_t in inttypes.h"
3229 #include <inttypes.h>
3231 volatile int_fast16_t v= 0;
3235 cc_check
&& _fast_inttypes
=yes
3236 if test "$_fast_inttypes" = no
; then
3238 typedef signed char int_fast8_t;
3239 typedef signed int int_fast16_t;
3240 typedef signed int int_fast32_t;
3241 typedef signed long long int_fast64_t;
3242 typedef unsigned char uint_fast8_t;
3243 typedef unsigned int uint_fast16_t;
3244 typedef unsigned int uint_fast32_t;
3245 typedef unsigned long long uint_fast64_t;'
3247 echores
"$_fast_inttypes"
3250 echocheck
"malloc.h"
3252 header_check malloc.h
&& _malloc
=yes
3253 if test "$_malloc" = yes ; then
3254 def_malloc_h
='#define HAVE_MALLOC_H 1'
3256 def_malloc_h
='#define HAVE_MALLOC_H 0'
3261 echocheck
"memalign()"
3262 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3263 def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 0'
3266 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3269 cc_check
&& _memalign
=yes
3270 if test "$_memalign" = yes ; then
3271 def_memalign
='#define HAVE_MEMALIGN 1'
3273 def_memalign
='#define HAVE_MEMALIGN 0'
3274 def_map_memalign
='#define memalign(a,b) malloc(b)'
3275 darwin || def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 1'
3277 echores
"$_memalign"
3280 echocheck
"posix_memalign()"
3282 def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 0'
3284 #define _XOPEN_SOURCE 600
3286 int main(void) { posix_memalign(NULL, 0, 0); }
3288 cc_check
&& posix_memalign
=yes && def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 1'
3289 echores
"$posix_memalign"
3292 echocheck
"alloca.h"
3295 int main(void) { (void) alloca(0); return 0; }
3298 cc_check
&& _alloca
=yes
3300 def_alloca_h
='#define HAVE_ALLOCA_H 1'
3302 def_alloca_h
='#undef HAVE_ALLOCA_H'
3307 echocheck
"fastmemcpy"
3308 if test "$_fastmemcpy" = yes ; then
3309 def_fastmemcpy
='#define CONFIG_FASTMEMCPY 1'
3311 def_fastmemcpy
='#undef CONFIG_FASTMEMCPY'
3313 echores
"$_fastmemcpy"
3318 #include <sys/types.h>
3319 #include <sys/mman.h>
3320 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3323 cc_check
&& _mman
=yes
3324 if test "$_mman" = yes ; then
3325 def_mman_h
='#define HAVE_SYS_MMAN_H 1'
3327 def_mman_h
='#undef HAVE_SYS_MMAN_H'
3328 os2
&& _need_mmap
=yes
3333 #include <sys/types.h>
3334 #include <sys/mman.h>
3335 int main(void) { void *p = MAP_FAILED; return 0; }
3337 _mman_has_map_failed
=no
3338 cc_check
&& _mman_has_map_failed
=yes
3339 if test "$_mman_has_map_failed" = yes ; then
3340 def_mman_has_map_failed
=''
3342 def_mman_has_map_failed
='#define MAP_FAILED ((void *) -1)'
3345 echocheck
"dynamic loader"
3349 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3352 for _ld_tmp
in "" "-ldl" ; do
3353 cc_check
$_ld_tmp && _ld_dl
="$_ld_tmp" && _dl
=yes && break
3355 if test "$_dl" = yes ; then
3356 def_dl
='#define HAVE_LIBDL 1'
3358 def_dl
='#undef HAVE_LIBDL'
3363 echocheck
"dynamic a/v plugins support"
3364 if test "$_dl" = no
; then
3367 if test "$_dynamic_plugins" = yes ; then
3368 def_dynamic_plugins
='#define CONFIG_DYNAMIC_PLUGINS 1'
3370 def_dynamic_plugins
='#undef CONFIG_DYNAMIC_PLUGINS'
3372 echores
"$_dynamic_plugins"
3375 def_threads
='#define HAVE_THREADS 0'
3379 THREAD_CFLAGS
=-D_REENTRANT
3380 elif freebsd || netbsd || openbsd || bsdos
; then
3381 THREAD_CFLAGS
=-D_THREAD_SAFE
3383 if test "$_pthreads" = auto
; then
3385 #include <pthread.h>
3386 void* func(void *arg) { return arg; }
3387 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3391 for _ld_tmp
in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3392 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3393 cc_check
$THREAD_CFLAGS $_ld_tmp && (tmp_run ||
test "$_ld_static") && _ld_pthread
="$_ld_tmp" && _pthreads
=yes && break
3397 if test "$_pthreads" = yes ; then
3398 test $_ld_pthread && res_comment
="using $_ld_pthread"
3399 def_pthreads
='#define HAVE_PTHREADS 1'
3400 def_threads
='#define HAVE_THREADS 1'
3401 extra_cflags
="$extra_cflags $THREAD_CFLAGS"
3403 res_comment
="v4l, v4l2, ao_nas, win32 loader disabled"
3404 def_pthreads
='#undef HAVE_PTHREADS'
3405 _nas
=no
; _tv_v4l1
=no
; _tv_v4l2
=no
3406 mingw32 || _win32dll
=no
3408 echores
"$_pthreads"
3411 if test "$_pthreads" = yes ; then
3412 def_pthread_cache
="#define PTHREAD_CACHE 1"
3415 def_stream_cache
="#undef CONFIG_STREAM_CACHE"
3419 echocheck
"w32threads"
3420 if test "$_pthreads" = yes ; then
3421 res_comment
="using pthread instead"
3424 if test "$_w32threads" = auto
; then
3426 mingw32
&& _w32threads
=yes
3428 test "$_w32threads" = yes && def_threads
='#define HAVE_THREADS 1'
3429 echores
"$_w32threads"
3433 if test "$_rpath" = yes ; then
3434 for I
in $
(echo $extra_ldflags |
sed 's/-L//g') ; do
3435 tmp
="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3442 if test "$_iconv" = auto
; then
3447 #define INBUFSIZE 1024
3448 #define OUTBUFSIZE 4096
3450 char inbuffer[INBUFSIZE];
3451 char outbuffer[OUTBUFSIZE];
3456 char *tocode="UTF-8";
3457 char *fromcode="cp1250";
3458 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3459 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3460 char *iptr=inbuffer;
3461 char *optr=outbuffer;
3462 size_t inleft=numread;
3463 size_t outleft=OUTBUFSIZE;
3464 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3466 write(1, outbuffer, OUTBUFSIZE - outleft);
3469 if (iconv_close(icdsc) == -1)
3476 for _ld_tmp
in "" "-liconv" "-liconv $_ld_dl" ; do
3477 cc_check
$_ld_lm $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && \
3481 if test "$_iconv" = yes ; then
3482 def_iconv
='#define CONFIG_ICONV 1'
3484 def_iconv
='#undef CONFIG_ICONV'
3489 echocheck
"soundcard.h"
3491 def_soundcard_h
='#undef HAVE_SOUNDCARD_H'
3492 def_sys_soundcard_h
='#undef HAVE_SYS_SOUNDCARD_H'
3493 for _soundcard_header
in "sys/soundcard.h" "soundcard.h"; do
3494 header_check
$_soundcard_header && _soundcard_h
=yes &&
3495 res_comment
="$_soundcard_header" && break
3498 if test "$_soundcard_h" = yes ; then
3499 if test $_soundcard_header = "sys/soundcard.h"; then
3500 def_sys_soundcard_h
='#define HAVE_SYS_SOUNDCARD_H 1'
3502 def_soundcard_h
='#define HAVE_SOUNDCARD_H 1'
3505 echores
"$_soundcard_h"
3508 echocheck
"sys/dvdio.h"
3510 # FreeBSD 8.1 has broken dvdio.h
3511 header_check_broken sys
/types.h sys
/dvdio.h
&& _dvdio
=yes
3512 if test "$_dvdio" = yes ; then
3513 def_dvdio
='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3515 def_dvdio
='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3520 echocheck
"sys/cdio.h"
3522 # at least OpenSolaris has a broken cdio.h
3523 header_check_broken sys
/types.h sys
/cdio.h
&& _cdio
=yes
3524 if test "$_cdio" = yes ; then
3525 def_cdio
='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3527 def_cdio
='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3532 echocheck
"linux/cdrom.h"
3534 header_check linux
/cdrom.h
&& _cdrom
=yes
3535 if test "$_cdrom" = yes ; then
3536 def_cdrom
='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3538 def_cdrom
='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3545 header_check dvd.h
&& _dvd
=yes
3546 if test "$_dvd" = yes ; then
3547 def_dvd
='#define DVD_STRUCT_IN_DVD_H 1'
3549 def_dvd
='#undef DVD_STRUCT_IN_DVD_H'
3555 echocheck
"BSDI dvd.h"
3557 header_check dvd.h
&& _bsdi_dvd
=yes
3558 if test "$_bsdi_dvd" = yes ; then
3559 def_bsdi_dvd
='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3561 def_bsdi_dvd
='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3563 echores
"$_bsdi_dvd"
3568 # also used by AIX, but AIX does not support VCD and/or libdvdread
3569 echocheck
"HP-UX SCSI header"
3571 header_check sys
/scsi.h
&& _hpux_scsi_h
=yes
3572 if test "$_hpux_scsi_h" = yes ; then
3573 def_hpux_scsi_h
='#define HPUX_SCTL_IO 1'
3575 def_hpux_scsi_h
='#undef HPUX_SCTL_IO'
3577 echores
"$_hpux_scsi_h"
3582 echocheck
"userspace SCSI headers (Solaris)"
3584 header_check sys
/scsi
/scsi_types.h
&&
3585 header_check_broken sys
/types.h sys
/scsi
/impl
/uscsi.h
&&
3587 if test "$_sol_scsi_h" = yes ; then
3588 def_sol_scsi_h
='#define SOLARIS_USCSI 1'
3590 def_sol_scsi_h
='#undef SOLARIS_USCSI'
3592 echores
"$_sol_scsi_h"
3597 if test "$_termcap" = auto
; then
3601 int main(void) { tgetent(NULL, NULL); return 0; }
3604 for _ld_tmp
in "-lncurses" "-ltinfo" "-ltermcap"; do
3605 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" \
3606 && _termcap
=yes && break
3609 if test "$_termcap" = yes ; then
3610 def_termcap
='#define HAVE_TERMCAP 1'
3611 test $_ld_tmp && res_comment
="using $_ld_tmp"
3613 def_termcap
='#undef HAVE_TERMCAP'
3619 def_termios
='#undef HAVE_TERMIOS'
3620 def_termios_h
='#undef HAVE_TERMIOS_H'
3621 def_termios_sys_h
='#undef HAVE_SYS_TERMIOS_H'
3622 if test "$_termios" = auto
; then
3624 for _termios_header
in "termios.h" "sys/termios.h"; do
3625 header_check
$_termios_header && _termios
=yes &&
3626 res_comment
="using $_termios_header" && break
3630 if test "$_termios" = yes ; then
3631 def_termios
='#define HAVE_TERMIOS 1'
3632 if test "$_termios_header" = "termios.h" ; then
3633 def_termios_h
='#define HAVE_TERMIOS_H 1'
3635 def_termios_sys_h
='#define HAVE_SYS_TERMIOS_H 1'
3642 if test "$_shm" = auto
; then
3644 #include <sys/types.h>
3645 #include <sys/shm.h>
3646 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3649 cc_check
&& _shm
=yes
3651 if test "$_shm" = yes ; then
3652 def_shm
='#define HAVE_SHM 1'
3654 def_shm
='#undef HAVE_SHM'
3659 echocheck
"strsep()"
3662 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3665 cc_check
&& _strsep
=yes
3666 if test "$_strsep" = yes ; then
3667 def_strsep
='#define HAVE_STRSEP 1'
3670 def_strsep
='#undef HAVE_STRSEP'
3676 echocheck
"vsscanf()"
3678 #define _ISOC99_SOURCE
3681 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3684 cc_check
&& _vsscanf
=yes
3685 if test "$_vsscanf" = yes ; then
3686 def_vsscanf
='#define HAVE_VSSCANF 1'
3689 def_vsscanf
='#undef HAVE_VSSCANF'
3697 #define _XOPEN_SOURCE 600
3699 int main(void) { swab(0, 0, 0); return 0; }
3702 cc_check
&& _swab
=yes
3703 if test "$_swab" = yes ; then
3704 def_swab
='#define HAVE_SWAB 1'
3707 def_swab
='#undef HAVE_SWAB'
3712 echocheck
"POSIX select()"
3716 #include <sys/types.h>
3718 #include <sys/time.h>
3720 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3723 def_posix_select
='#undef HAVE_POSIX_SELECT'
3724 #select() of kLIBC (OS/2) supports socket only
3725 ! os2
&& cc_check
&& _posix_select
=yes \
3726 && def_posix_select
='#define HAVE_POSIX_SELECT 1'
3727 echores
"$_posix_select"
3730 echocheck
"audio select()"
3731 if test "$_select" = no
; then
3732 def_select
='#undef HAVE_AUDIO_SELECT'
3733 elif test "$_select" = yes ; then
3734 def_select
='#define HAVE_AUDIO_SELECT 1'
3739 echocheck
"gettimeofday()"
3741 #include <sys/time.h>
3742 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3745 cc_check
&& _gettimeofday
=yes
3746 if test "$_gettimeofday" = yes ; then
3747 def_gettimeofday
='#define HAVE_GETTIMEOFDAY 1'
3748 _need_gettimeofday
=no
3750 def_gettimeofday
='#undef HAVE_GETTIMEOFDAY'
3751 _need_gettimeofday
=yes
3753 echores
"$_gettimeofday"
3760 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3763 cc_check
&& _glob
=yes
3764 if test "$_glob" = yes ; then
3765 def_glob
='#define HAVE_GLOB 1'
3768 def_glob
='#undef HAVE_GLOB'
3774 echocheck
"setenv()"
3777 int main(void) { setenv("","",0); return 0; }
3780 cc_check
&& _setenv
=yes
3781 if test "$_setenv" = yes ; then
3782 def_setenv
='#define HAVE_SETENV 1'
3785 def_setenv
='#undef HAVE_SETENV'
3791 echocheck
"setmode()"
3793 def_setmode
='#define HAVE_SETMODE 0'
3796 int main(void) { setmode(0, 0); return 0; }
3798 cc_check
&& _setmode
=yes && def_setmode
='#define HAVE_SETMODE 1'
3803 echocheck
"sysi86()"
3805 #include <sys/sysi86.h>
3806 int main(void) { sysi86(0); return 0; }
3809 cc_check
&& _sysi86
=yes
3810 if test "$_sysi86" = yes ; then
3811 def_sysi86
='#define HAVE_SYSI86 1'
3813 #include <sys/sysi86.h>
3814 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3816 cc_check
&& def_sysi86_iv
='#define HAVE_SYSI86_iv 1'
3818 def_sysi86
='#undef HAVE_SYSI86'
3824 echocheck
"sys/sysinfo.h"
3826 #include <sys/sysinfo.h>
3828 struct sysinfo s_info;
3834 cc_check
&& _sys_sysinfo
=yes
3835 if test "$_sys_sysinfo" = yes ; then
3836 def_sys_sysinfo_h
='#define HAVE_SYS_SYSINFO_H 1'
3838 def_sys_sysinfo_h
='#undef HAVE_SYS_SYSINFO_H'
3840 echores
"$_sys_sysinfo"
3845 echocheck
"Mac OS X Finder Support"
3846 def_macosx_finder
='#undef CONFIG_MACOSX_FINDER'
3847 if test "$_macosx_finder" = yes ; then
3848 def_macosx_finder
='#define CONFIG_MACOSX_FINDER 1'
3849 extra_ldflags
="$extra_ldflags -framework Carbon"
3851 echores
"$_macosx_finder"
3853 echocheck
"Mac OS X Bundle file locations"
3854 def_macosx_bundle
='#undef CONFIG_MACOSX_BUNDLE'
3855 test "$_macosx_bundle" = auto
&& _macosx_bundle
=$_macosx_finder
3856 if test "$_macosx_bundle" = yes ; then
3857 def_macosx_bundle
='#define CONFIG_MACOSX_BUNDLE 1'
3858 extra_ldflags
="$extra_ldflags -framework Carbon"
3860 echores
"$_macosx_bundle"
3862 echocheck
"Apple Remote"
3863 if test "$_apple_remote" = auto
; then
3867 #include <IOKit/IOCFPlugIn.h>
3869 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3870 CFMutableDictionaryRef hidMatchDictionary;
3871 IOReturn ioReturnValue;
3873 // Set up a matching dictionary to search the I/O Registry by class.
3874 // name for all HID class devices
3875 hidMatchDictionary = IOServiceMatching("AppleIRController");
3877 // Now search I/O Registry for matching devices.
3878 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3879 hidMatchDictionary, &hidObjectIterator);
3881 // If search is unsuccessful, return nonzero.
3882 if (ioReturnValue != kIOReturnSuccess ||
3883 !IOIteratorIsValid(hidObjectIterator)) {
3889 cc_check
-framework IOKit
&& _apple_remote
=yes
3891 if test "$_apple_remote" = yes ; then
3892 def_apple_remote
='#define CONFIG_APPLE_REMOTE 1'
3893 libs_mplayer
="$libs_mplayer -framework IOKit -framework Cocoa"
3895 def_apple_remote
='#undef CONFIG_APPLE_REMOTE'
3897 echores
"$_apple_remote"
3903 echocheck
"Apple IR"
3904 if test "$_apple_ir" = auto
; then
3907 #include <linux/types.h>
3908 #include <linux/input.h>
3910 struct input_event ev;
3915 cc_check
&& _apple_ir
=yes
3917 if test "$_apple_ir" = yes ; then
3918 def_apple_ir
='#define CONFIG_APPLE_IR 1'
3920 def_apple_ir
='#undef CONFIG_APPLE_IR'
3922 echores
"$_apple_ir"
3925 echocheck
"pkg-config"
3926 _pkg_config
=pkg-config
3927 if $
($_pkg_config --version > /dev
/null
2>&1); then
3928 if test "$_ld_static"; then
3929 _pkg_config
="$_pkg_config --static"
3938 echocheck
"Samba support (libsmbclient)"
3939 if test "$_smb" = yes; then
3940 extra_ldflags
="$extra_ldflags -lsmbclient"
3942 if test "$_smb" = auto
; then
3945 #include <libsmbclient.h>
3946 int main(void) { smbc_opendir("smb://"); return 0; }
3948 for _ld_tmp
in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3949 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && \
3954 if test "$_smb" = yes; then
3955 def_smb
="#define CONFIG_LIBSMBCLIENT 1"
3956 inputmodules
="smb $inputmodules"
3958 def_smb
="#undef CONFIG_LIBSMBCLIENT"
3959 noinputmodules
="smb $noinputmodules"
3970 if test "$_tdfxfb" = yes ; then
3971 def_tdfxfb
='#define CONFIG_TDFXFB 1'
3972 vomodules
="tdfxfb $vomodules"
3974 def_tdfxfb
='#undef CONFIG_TDFXFB'
3975 novomodules
="tdfxfb $novomodules"
3980 if test "$_s3fb" = yes ; then
3981 def_s3fb
='#define CONFIG_S3FB 1'
3982 vomodules
="s3fb $vomodules"
3984 def_s3fb
='#undef CONFIG_S3FB'
3985 novomodules
="s3fb $novomodules"
3990 if test "$_wii" = yes ; then
3991 def_wii
='#define CONFIG_WII 1'
3992 vomodules
="wii $vomodules"
3994 def_wii
='#undef CONFIG_WII'
3995 novomodules
="wii $novomodules"
4000 if test "$_tdfxvid" = yes ; then
4001 def_tdfxvid
='#define CONFIG_TDFX_VID 1'
4002 vomodules
="tdfx_vid $vomodules"
4004 def_tdfxvid
='#undef CONFIG_TDFX_VID'
4005 novomodules
="tdfx_vid $novomodules"
4010 if test "$_xvr100" = auto
; then
4013 #include <sys/fbio.h>
4014 #include <sys/visual_io.h>
4016 struct vis_identifier ident;
4017 struct fbgattr attr;
4018 ioctl(0, VIS_GETIDENTIFIER, &ident);
4019 ioctl(0, FBIOGATTR, &attr);
4024 cc_check
&& _xvr100
=yes
4026 if test "$_xvr100" = yes ; then
4027 def_xvr100
='#define CONFIG_XVR100 1'
4028 vomodules
="xvr100 $vomodules"
4030 def_tdfxvid
='#undef CONFIG_XVR100'
4031 novomodules
="xvr100 $novomodules"
4036 if test "$_tga" = yes ; then
4037 def_tga
='#define CONFIG_TGA 1'
4038 vomodules
="tga $vomodules"
4040 def_tga
='#undef CONFIG_TGA'
4041 novomodules
="tga $novomodules"
4046 echocheck
"md5sum support"
4047 if test "$_md5sum" = yes; then
4048 def_md5sum
="#define CONFIG_MD5SUM 1"
4049 vomodules
="md5sum $vomodules"
4051 def_md5sum
="#undef CONFIG_MD5SUM"
4052 novomodules
="md5sum $novomodules"
4057 echocheck
"yuv4mpeg support"
4058 if test "$_yuv4mpeg" = yes; then
4059 def_yuv4mpeg
="#define CONFIG_YUV4MPEG 1"
4060 vomodules
="yuv4mpeg $vomodules"
4062 def_yuv4mpeg
="#undef CONFIG_YUV4MPEG"
4063 novomodules
="yuv4mpeg $novomodules"
4065 echores
"$_yuv4mpeg"
4069 if test "$_bl" = yes ; then
4070 def_bl
='#define CONFIG_BL 1'
4071 vomodules
="bl $vomodules"
4073 def_bl
='#undef CONFIG_BL'
4074 novomodules
="bl $novomodules"
4079 echocheck
"DirectFB"
4080 if test "$_directfb" = auto
; then
4083 #include <directfb.h>
4084 int main(void) { DirectFBInit(0, 0); return 0; }
4086 for _inc_tmp
in "" -I/usr
/local
/include
/directfb \
4087 -I/usr
/include
/directfb
-I/usr
/local
/include
; do
4088 cc_check
$_inc_tmp -ldirectfb && _directfb
=yes && \
4089 extra_cflags
="$extra_cflags $_inc_tmp" && break
4094 expr $1 \
* 65536 + $2 \
* 256 + $3
4097 if test "$_directfb" = yes; then
4099 #include <directfb_version.h>
4101 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4104 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4105 _directfb_version
=$
(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" |
tr -d '()')
4106 _dfb_major
=$
(echo $_directfb_version | cut
-d .
-f 1)
4107 _dfb_minor
=$
(echo $_directfb_version | cut
-d .
-f 2)
4108 _dfb_micro
=$
(echo $_directfb_version | cut
-d .
-f 3)
4109 _dfb_version
=$
(dfb_version
$_dfb_major $_dfb_minor $_dfb_micro)
4110 if test "$_dfb_version" -ge $
(dfb_version
0 9 13); then
4111 def_directfb_version
="#define DIRECTFBVERSION $_dfb_version"
4112 res_comment
="$_directfb_version"
4113 test "$_dfb_version" -ge $
(dfb_version
0 9 15) && _dfbmga
=yes
4115 def_directfb_version
='#undef DIRECTFBVERSION'
4117 res_comment
="version >=0.9.13 required"
4121 res_comment
="failed to get version"
4124 echores
"$_directfb"
4126 if test "$_directfb" = yes ; then
4127 def_directfb
='#define CONFIG_DIRECTFB 1'
4128 vomodules
="directfb $vomodules"
4129 libs_mplayer
="$libs_mplayer -ldirectfb"
4131 def_directfb
='#undef CONFIG_DIRECTFB'
4132 novomodules
="directfb $novomodules"
4134 if test "$_dfbmga" = yes; then
4135 vomodules
="dfbmga $vomodules"
4136 def_dfbmga
='#define CONFIG_DFBMGA 1'
4138 novomodules
="dfbmga $novomodules"
4139 def_dfbmga
='#undef CONFIG_DFBMGA'
4143 echocheck
"X11 headers presence"
4145 res_comment
="check if the dev(el) packages are installed"
4146 for I
in $
(echo $extra_cflags |
sed s
/-I//g
) /usr
/include
; do
4147 if test -f "$I/X11/Xlib.h" ; then
4153 if test $_cross_compile = no
; then
4154 for I
in /usr
/X11
/include
/usr
/X11R
7/include
/usr
/local
/include
/usr
/X11R
6/include \
4155 /usr
/include
/X11R6
/usr
/openwin
/include
; do
4156 if test -f "$I/X11/Xlib.h" ; then
4157 extra_cflags
="$extra_cflags -I$I"
4159 res_comment
="using $I"
4164 echores
"$_x11_headers"
4168 if test "$_x11" = auto
&& test "$_x11_headers" = yes ; then
4170 #include <X11/Xlib.h>
4171 #include <X11/Xutil.h>
4172 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4174 for I
in "" -L/usr
/X11R
7/lib
-L/usr
/local
/lib
-L/usr
/X11R
6/lib
-L/usr
/lib
/X11R6 \
4175 -L/usr
/X11
/lib
-L/usr
/lib32
-L/usr
/openwin
/lib
-L/usr
/local
/lib64
-L/usr
/X11R
6/lib64 \
4178 _ld_tmp
="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4180 _ld_tmp
="$I -lXext -lX11 $_ld_pthread"
4182 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" \
4183 && _x11
=yes && break
4186 if test "$_x11" = yes ; then
4187 def_x11
='#define CONFIG_X11 1'
4188 vomodules
="x11 xover $vomodules"
4191 def_x11
='#undef CONFIG_X11'
4192 novomodules
="x11 $novomodules"
4193 res_comment
="check if the dev(el) packages are installed"
4194 # disable stuff that depends on X
4195 _xv
=no
; _xvmc
=no
; _xinerama
=no
; _vm
=no
; _xf86keysym
=no
; _vdpau
=no
4199 echocheck
"Xss screensaver extensions"
4200 if test "$_xss" = auto
; then
4202 #include <X11/Xlib.h>
4203 #include <X11/extensions/scrnsaver.h>
4204 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4207 cc_check
-lXss && _xss
=yes
4209 if test "$_xss" = yes ; then
4210 def_xss
='#define CONFIG_XSS 1'
4211 libs_mplayer
="$libs_mplayer -lXss"
4213 def_xss
='#undef CONFIG_XSS'
4220 if test "$_x11" = yes ; then
4222 #include <X11/Xmd.h>
4223 #include <X11/Xlib.h>
4224 #include <X11/Xutil.h>
4225 #include <X11/Xatom.h>
4226 #include <X11/extensions/dpms.h>
4227 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4229 cc_check
-lXdpms && _xdpms3
=yes
4231 #include <X11/Xlib.h>
4232 #include <X11/extensions/dpms.h>
4233 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4235 cc_check
-lXext && _xdpms4
=yes
4237 if test "$_xdpms4" = yes ; then
4238 def_xdpms
='#define CONFIG_XDPMS 1'
4239 res_comment
="using Xdpms 4"
4241 elif test "$_xdpms3" = yes ; then
4242 def_xdpms
='#define CONFIG_XDPMS 1'
4243 libs_mplayer
="$libs_mplayer -lXdpms"
4244 res_comment
="using Xdpms 3"
4247 def_xdpms
='#undef CONFIG_XDPMS'
4253 if test "$_xv" = auto
; then
4255 #include <X11/Xlib.h>
4256 #include <X11/extensions/Xvlib.h>
4258 (void) XvGetPortAttribute(0, 0, 0, 0);
4259 (void) XvQueryPortAttributes(0, 0, 0);
4263 cc_check
-lXv && _xv
=yes
4266 if test "$_xv" = yes ; then
4267 def_xv
='#define CONFIG_XV 1'
4268 libs_mplayer
="$libs_mplayer -lXv"
4269 vomodules
="xv $vomodules"
4271 def_xv
='#undef CONFIG_XV'
4272 novomodules
="xv $novomodules"
4278 if test "$_xv" = yes && test "$_xvmc" != no
; then
4281 #include <X11/Xlib.h>
4282 #include <X11/extensions/Xvlib.h>
4283 #include <X11/extensions/XvMClib.h>
4285 (void) XvMCQueryExtension(0,0,0);
4286 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4289 for _ld_tmp
in $_xvmclib XvMCNVIDIA XvMCW I810XvMC
; do
4290 cc_check
-lXvMC -l$_ld_tmp && _xvmc
=yes && _xvmclib
="$_ld_tmp" && break
4293 if test "$_xvmc" = yes ; then
4294 def_xvmc
='#define CONFIG_XVMC 1'
4295 libs_mplayer
="$libs_mplayer -lXvMC -l$_xvmclib"
4296 vomodules
="xvmc $vomodules"
4297 res_comment
="using $_xvmclib"
4299 def_xvmc
='#define CONFIG_XVMC 0'
4300 novomodules
="xvmc $novomodules"
4306 if test "$_vdpau" = auto
; then
4308 if test "$_dl" = yes ; then
4310 #include <vdpau/vdpau_x11.h>
4312 (void) vdp_device_create_x11(0, 0, 0, 0);
4313 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4315 cc_check
-lvdpau && _vdpau
=yes
4318 if test "$_vdpau" = yes ; then
4319 def_vdpau
='#define CONFIG_VDPAU 1'
4320 libs_mplayer
="$libs_mplayer -lvdpau"
4321 vomodules
="vdpau $vomodules"
4323 def_vdpau
='#define CONFIG_VDPAU 0'
4324 novomodules
="vdpau $novomodules"
4329 echocheck
"Xinerama"
4330 if test "$_xinerama" = auto
; then
4332 #include <X11/Xlib.h>
4333 #include <X11/extensions/Xinerama.h>
4334 int main(void) { (void) XineramaIsActive(0); return 0; }
4337 cc_check
-lXinerama && _xinerama
=yes
4340 if test "$_xinerama" = yes ; then
4341 def_xinerama
='#define CONFIG_XINERAMA 1'
4342 libs_mplayer
="$libs_mplayer -lXinerama"
4344 def_xinerama
='#undef CONFIG_XINERAMA'
4346 echores
"$_xinerama"
4349 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4350 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4351 # named 'X extensions' or something similar.
4352 # This check may be useful for future mplayer versions (to change resolution)
4353 # If you run into problems, remove '-lXxf86vm'.
4355 if test "$_vm" = auto
; then
4357 #include <X11/Xlib.h>
4358 #include <X11/extensions/xf86vmode.h>
4359 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4362 cc_check
-lXxf86vm && _vm
=yes
4364 if test "$_vm" = yes ; then
4365 def_vm
='#define CONFIG_XF86VM 1'
4366 libs_mplayer
="$libs_mplayer -lXxf86vm"
4368 def_vm
='#undef CONFIG_XF86VM'
4372 # Check for the presence of special keycodes, like audio control buttons
4373 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4374 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4375 # have these new keycodes.
4376 echocheck
"XF86keysym"
4377 if test "$_xf86keysym" = auto
; then
4380 #include <X11/Xlib.h>
4381 #include <X11/XF86keysym.h>
4382 int main(void) { return XF86XK_AudioPause; }
4384 cc_check
&& _xf86keysym
=yes
4386 if test "$_xf86keysym" = yes ; then
4387 def_xf86keysym
='#define CONFIG_XF86XK 1'
4389 def_xf86keysym
='#undef CONFIG_XF86XK'
4391 echores
"$_xf86keysym"
4394 if test "$_dga2" = auto
&& test "$_x11" = yes ; then
4396 #include <X11/Xlib.h>
4397 #include <X11/extensions/xf86dga.h>
4398 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4401 cc_check
-lXxf86dga && _dga2
=yes
4403 if test "$_dga1" = auto
&& test "$_dga2" = no
&& test "$_vm" = yes ; then
4405 #include <X11/Xlib.h>
4406 #include <X11/extensions/xf86dga.h>
4407 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4410 cc_check
-lXxf86dga -lXxf86vm && _dga1
=yes
4414 def_dga
='#undef CONFIG_DGA'
4415 def_dga1
='#undef CONFIG_DGA1'
4416 def_dga2
='#undef CONFIG_DGA2'
4417 if test "$_dga1" = yes ; then
4419 def_dga1
='#define CONFIG_DGA1 1'
4420 res_comment
="using DGA 1.0"
4421 elif test "$_dga2" = yes ; then
4423 def_dga2
='#define CONFIG_DGA2 1'
4424 res_comment
="using DGA 2.0"
4426 if test "$_dga" = yes ; then
4427 def_dga
='#define CONFIG_DGA 1'
4428 libs_mplayer
="$libs_mplayer -lXxf86dga"
4429 vomodules
="dga $vomodules"
4431 novomodules
="dga $novomodules"
4437 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4438 def_3dfx
='#define CONFIG_3DFX 1'
4439 vomodules
="3dfx $vomodules"
4441 def_3dfx
='#undef CONFIG_3DFX'
4442 novomodules
="3dfx $novomodules"
4448 def_vidix
='#undef CONFIG_VIDIX'
4449 def_vidix_drv_cyberblade
='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4450 _vidix_drv_cyberblade
=no
4451 def_vidix_drv_ivtv
='#undef CONFIG_VIDIX_DRV_IVTV'
4453 def_vidix_drv_mach64
='#undef CONFIG_VIDIX_DRV_MACH64'
4454 _vidix_drv_mach64
=no
4455 def_vidix_drv_mga
='#undef CONFIG_VIDIX_DRV_MGA'
4457 def_vidix_drv_mga_crtc2
='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4458 _vidix_drv_mga_crtc2
=no
4459 def_vidix_drv_nvidia
='#undef CONFIG_VIDIX_DRV_NVIDIA'
4460 _vidix_drv_nvidia
=no
4461 def_vidix_drv_pm2
='#undef CONFIG_VIDIX_DRV_PM2'
4463 def_vidix_drv_pm3
='#undef CONFIG_VIDIX_DRV_PM3'
4465 def_vidix_drv_radeon
='#undef CONFIG_VIDIX_DRV_RADEON'
4466 _vidix_drv_radeon
=no
4467 def_vidix_drv_rage128
='#undef CONFIG_VIDIX_DRV_RAGE128'
4468 _vidix_drv_rage128
=no
4469 def_vidix_drv_s3
='#undef CONFIG_VIDIX_DRV_S3'
4471 def_vidix_drv_sh_veu
='#undef CONFIG_VIDIX_DRV_SH_VEU'
4472 _vidix_drv_sh_veu
=no
4473 def_vidix_drv_sis
='#undef CONFIG_VIDIX_DRV_SIS'
4475 def_vidix_drv_unichrome
='#undef CONFIG_VIDIX_DRV_UNICHROME'
4476 _vidix_drv_unichrome
=no
4477 if test "$_vidix" = auto
; then
4479 x86
&& (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32
) \
4481 x86_64
&& ! linux
&& _vidix
=no
4482 (ppc || alpha
) && linux
&& _vidix
=yes
4486 if test "$_vidix" = yes ; then
4487 def_vidix
='#define CONFIG_VIDIX 1'
4488 vomodules
="cvidix $vomodules"
4489 # FIXME: ivtv driver temporarily disabled until we have a proper test
4490 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4491 test "$_vidix_drivers" || _vidix_drivers
="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4493 # some vidix drivers are architecture and os specific, discard them elsewhere
4494 x86 || _vidix_drivers
=$
(echo $_vidix_drivers |
sed -e s
/cyberblade
// -e s
/sis
// -e s
/unichrome
// -e s
/s
3//)
4495 (test $host_arch = "sh" && linux
) || _vidix_drivers
=$
(echo $_vidix_drivers |
sed s
/sh_veu
//)
4497 for driver
in $_vidix_drivers ; do
4498 uc_driver
=$
(echo $driver |
tr '[a-z]' '[A-Z]')
4499 eval _vidix_drv_
${driver}=yes
4500 eval def_vidix_drv_
${driver}=\"\
#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4503 echocheck
"VIDIX PCI device name database"
4504 echores
"$_vidix_pcidb"
4505 if test "$_vidix_pcidb" = yes ; then
4511 echocheck
"VIDIX dhahelper support"
4512 test "$_dhahelper" = yes && cflags_dhahelper
=-DCONFIG_DHAHELPER
4513 echores
"$_dhahelper"
4515 echocheck
"VIDIX svgalib_helper support"
4516 test "$_svgalib_helper" = yes && cflags_svgalib_helper
=-DCONFIG_SVGAHELPER
4517 echores
"$_svgalib_helper"
4520 novomodules
="cvidix $novomodules"
4523 if test "$_vidix" = yes && win32
; then
4525 vomodules
="winvidix $vomodules"
4526 libs_mplayer
="$libs_mplayer -lgdi32"
4528 novomodules
="winvidix $novomodules"
4530 if test "$_vidix" = yes && test "$_x11" = yes; then
4532 vomodules
="xvidix $vomodules"
4534 novomodules
="xvidix $novomodules"
4538 if test "$_ggi" = auto
; then
4540 #include <ggi/ggi.h>
4541 int main(void) { ggiInit(); return 0; }
4544 cc_check
-lggi && _ggi
=yes
4546 if test "$_ggi" = yes ; then
4547 def_ggi
='#define CONFIG_GGI 1'
4548 libs_mplayer
="$libs_mplayer -lggi"
4549 vomodules
="ggi $vomodules"
4551 def_ggi
='#undef CONFIG_GGI'
4552 novomodules
="ggi $novomodules"
4556 echocheck
"GGI extension: libggiwmh"
4557 if test "$_ggiwmh" = auto
; then
4560 #include <ggi/ggi.h>
4561 #include <ggi/wmh.h>
4562 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4564 cc_check
-lggi -lggiwmh && _ggiwmh
=yes
4566 # needed to get right output on obscure combination
4567 # like --disable-ggi --enable-ggiwmh
4568 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4569 def_ggiwmh
='#define CONFIG_GGIWMH 1'
4570 libs_mplayer
="$libs_mplayer -lggiwmh"
4573 def_ggiwmh
='#undef CONFIG_GGIWMH'
4579 if test "$_aa" = auto
; then
4582 extern struct aa_hardware_params aa_defparams;
4583 extern struct aa_renderparams aa_defrenderparams;
4587 (void) aa_init(0, 0, 0);
4588 c = aa_autoinit(&aa_defparams);
4589 p = aa_getrenderparams();
4590 aa_autoinitkbd(c,0);
4594 for _ld_tmp
in "-laa" ; do
4595 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" && _aa
=yes && break
4598 if test "$_aa" = yes ; then
4599 def_aa
='#define CONFIG_AA 1'
4601 libs_mplayer
="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4603 vomodules
="aa $vomodules"
4605 def_aa
='#undef CONFIG_AA'
4606 novomodules
="aa $novomodules"
4612 if test "$_caca" = auto
; then
4614 if ( caca-config
--version ) >> "$TMPLOG" 2>&1 ; then
4617 #ifdef CACA_API_VERSION_1
4620 int main(void) { (void) caca_init(); return 0; }
4622 cc_check $
(caca-config
--libs) && _caca
=yes
4625 if test "$_caca" = yes ; then
4626 def_caca
='#define CONFIG_CACA 1'
4627 extra_cflags
="$extra_cflags $(caca-config --cflags)"
4628 libs_mplayer
="$libs_mplayer $(caca-config --libs)"
4629 vomodules
="caca $vomodules"
4631 def_caca
='#undef CONFIG_CACA'
4632 novomodules
="caca $novomodules"
4638 if test "$_svga" = auto
; then
4640 header_check vga.h
-lvga $_ld_lm && _svga
=yes
4642 if test "$_svga" = yes ; then
4643 def_svga
='#define CONFIG_SVGALIB 1'
4644 libs_mplayer
="$libs_mplayer -lvga"
4645 vomodules
="svga $vomodules"
4647 def_svga
='#undef CONFIG_SVGALIB'
4648 novomodules
="svga $novomodules"
4654 if test "$_fbdev" = auto
; then
4658 if test "$_fbdev" = yes ; then
4659 def_fbdev
='#define CONFIG_FBDEV 1'
4660 vomodules
="fbdev $vomodules"
4662 def_fbdev
='#undef CONFIG_FBDEV'
4663 novomodules
="fbdev $novomodules"
4670 if test "$_dvb" = auto
; then
4674 #include <sys/ioctl.h>
4678 #include <linux/dvb/dmx.h>
4679 #include <linux/dvb/frontend.h>
4680 #include <linux/dvb/video.h>
4681 #include <linux/dvb/audio.h>
4682 int main(void) {return 0;}
4684 for _inc_tmp
in "" "-I/usr/src/DVB/include" ; do
4685 cc_check
$_inc_tmp && _dvb
=yes && \
4686 extra_cflags
="$extra_cflags $_inc_tmp" && break
4690 if test "$_dvb" = yes ; then
4692 inputmodules
="dvb $inputmodules"
4693 def_dvb
='#define CONFIG_DVB 1'
4694 def_dvbin
='#define CONFIG_DVBIN 1'
4695 aomodules
="mpegpes(dvb) $aomodules"
4696 vomodules
="mpegpes(dvb) $vomodules"
4699 noinputmodules
="dvb $noinputmodules"
4700 def_dvb
='#undef CONFIG_DVB'
4701 def_dvbin
='#undef CONFIG_DVBIN '
4702 aomodules
="mpegpes(file) $aomodules"
4703 vomodules
="mpegpes(file) $vomodules"
4709 echocheck
"QuickTime"
4710 if test "$quicktime" = auto
; then
4712 #include <QuickTime/QuickTime.h>
4714 ImageDescription *desc;
4721 cc_check
-framework QuickTime
&& quicktime
=yes
4723 if test "$quicktime" = yes ; then
4724 extra_ldflags
="$extra_ldflags -framework QuickTime"
4725 def_quicktime
='#define CONFIG_QUICKTIME 1'
4727 def_quicktime
='#undef CONFIG_QUICKTIME'
4733 if test "$_quartz" = auto
; then
4735 #include <Carbon/Carbon.h>
4737 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4742 cc_check
-framework Carbon
&& _quartz
=yes
4744 if test "$_quartz" = yes ; then
4745 libs_mplayer
="$libs_mplayer -framework Carbon"
4746 def_quartz
='#define CONFIG_QUARTZ 1'
4747 vomodules
="quartz $vomodules"
4749 def_quartz
='#undef CONFIG_QUARTZ'
4750 novomodules
="quartz $novomodules"
4754 echocheck
"CoreVideo"
4755 if test "$_corevideo" = auto
; then
4757 #include <Carbon/Carbon.h>
4758 #include <CoreServices/CoreServices.h>
4759 #include <OpenGL/OpenGL.h>
4760 #include <QuartzCore/CoreVideo.h>
4761 int main(void) { return 0; }
4764 cc_check
-framework Carbon
-framework Cocoa
-framework QuartzCore
-framework OpenGL
&& _corevideo
=yes
4766 if test "$_corevideo" = yes ; then
4767 vomodules
="corevideo $vomodules"
4768 libs_mplayer
="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4769 def_corevideo
='#define CONFIG_COREVIDEO 1'
4771 novomodules
="corevideo $novomodules"
4772 def_corevideo
='#undef CONFIG_COREVIDEO'
4774 echores
"$_corevideo"
4779 echocheck
"PNG support"
4780 if test "$_png" = auto
; then
4783 # Don't check for -lpng on irix since it has its own libpng
4784 # incompatible with the GNU libpng
4785 res_comment
="disabled on irix (not GNU libpng)"
4791 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4792 printf("libpng: %s\n", png_libpng_ver);
4793 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4796 cc_check
-lpng -lz $_ld_lm && _png
=yes
4800 if test "$_png" = yes ; then
4801 def_png
='#define CONFIG_PNG 1'
4802 extra_ldflags
="$extra_ldflags -lpng -lz"
4804 def_png
='#undef CONFIG_PNG'
4807 echocheck
"MNG support"
4808 if test "$_mng" = auto
; then
4813 const char * p_ver = mng_version_text();
4814 return !p_ver || p_ver[0] == 0;
4817 if cc_check
-lmng -lz $_ld_lm ; then
4822 if test "$_mng" = yes ; then
4823 def_mng
='#define CONFIG_MNG 1'
4824 extra_ldflags
="$extra_ldflags -lmng -lz"
4826 def_mng
='#undef CONFIG_MNG'
4829 echocheck
"JPEG support"
4830 if test "$_jpeg" = auto
; then
4837 #include <jpeglib.h>
4838 int main(void) { return 0; }
4840 cc_check
-ljpeg $_ld_lm && _jpeg
=yes
4844 if test "$_jpeg" = yes ; then
4845 def_jpeg
='#define CONFIG_JPEG 1'
4846 vomodules
="jpeg $vomodules"
4847 extra_ldflags
="$extra_ldflags -ljpeg"
4849 def_jpeg
='#undef CONFIG_JPEG'
4850 novomodules
="jpeg $novomodules"
4855 echocheck
"PNM support"
4856 if test "$_pnm" = yes; then
4857 def_pnm
="#define CONFIG_PNM 1"
4858 vomodules
="pnm $vomodules"
4860 def_pnm
="#undef CONFIG_PNM"
4861 novomodules
="pnm $novomodules"
4867 echocheck
"GIF support"
4868 # This is to appease people who want to force gif support.
4869 # If it is forced to yes, then we still do checks to determine
4870 # which gif library to use.
4871 if test "$_gif" = yes ; then
4876 if test "$_gif" = auto
; then
4879 #include <gif_lib.h>
4880 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4882 for _ld_gif
in "-lungif" "-lgif" ; do
4883 cc_check
$_ld_gif && _gif
=yes && break
4887 # If no library was found, and the user wants support forced,
4888 # then we force it on with libgif, as this is the safest
4889 # assumption IMHO. (libungif & libregif both create symbolic
4890 # links to libgif. We also assume that no x11 support is needed,
4891 # because if you are forcing this, then you _should_ know what
4892 # you are doing. [ Besides, package maintainers should never
4893 # have compiled x11 deps into libungif in the first place. ] )
4896 if test "$_force_gif" = yes && test "$_gif" = no
; then
4901 if test "$_gif" = yes ; then
4902 def_gif
='#define CONFIG_GIF 1'
4903 codecmodules
="gif $codecmodules"
4904 vomodules
="gif89a $vomodules"
4905 res_comment
="old version, some encoding functions disabled"
4906 def_gif_4
='#undef CONFIG_GIF_4'
4907 extra_ldflags
="$extra_ldflags $_ld_gif"
4911 #include <gif_lib.h>
4912 void catch(int sig) { exit(1); }
4914 signal(SIGSEGV, catch); // catch segfault
4915 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4916 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4920 if cc_check
"$_ld_gif" ; then
4921 def_gif_4
='#define CONFIG_GIF_4 1'
4925 def_gif
='#undef CONFIG_GIF'
4926 def_gif_4
='#undef CONFIG_GIF_4'
4927 novomodules
="gif89a $novomodules"
4928 nocodecmodules
="gif $nocodecmodules"
4933 case "$_gif" in yes*)
4934 echocheck
"broken giflib workaround"
4935 def_gif_tvt_hack
='#define CONFIG_GIF_TVT_HACK 1'
4938 #include <gif_lib.h>
4941 printf("UserData is at address %p\n", gif.UserData);
4945 if cc_check
"$_ld_gif" ; then
4946 def_gif_tvt_hack
='#undef CONFIG_GIF_TVT_HACK'
4955 echocheck
"VESA support"
4956 if test "$_vesa" = auto
; then
4959 int main(void) { vbeVersion(); return 0; }
4962 cc_check
-lvbe -llrmi && _vesa
=yes
4964 if test "$_vesa" = yes ; then
4965 def_vesa
='#define CONFIG_VESA 1'
4966 libs_mplayer
="$libs_mplayer -lvbe -llrmi"
4967 vomodules
="vesa $vomodules"
4969 def_vesa
='#undef CONFIG_VESA'
4970 novomodules
="vesa $novomodules"
4982 def_sdl_sdl_h
="#undef CONFIG_SDL_SDL_H"
4983 if test -z "$_sdlconfig" ; then
4984 if ( sdl-config
--version ) >>"$TMPLOG" 2>&1 ; then
4985 _sdlconfig
="sdl-config"
4986 elif ( sdl11-config
--version ) >>"$TMPLOG" 2>&1 ; then
4987 _sdlconfig
="sdl11-config"
4992 if test "$_sdl" = auto ||
test "$_sdl" = yes ; then
4994 #ifdef CONFIG_SDL_SDL_H
4995 #include <SDL/SDL.h>
5000 // we allow SDL hacking our main() only on OSX
5003 int main(int argc, char *argv[]) {
5004 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5009 for _ld_tmp
in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5010 if cc_check
-DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5012 def_sdl_sdl_h
="#define CONFIG_SDL_SDL_H 1"
5016 if test "$_sdl" = no
&& "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5017 res_comment
="using $_sdlconfig"
5019 _inc_tmp
="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5020 _ld_tmp
="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5022 _inc_tmp
=$
($_sdlconfig --cflags |
sed s
/-Dmain=SDL_main
//)
5023 _ld_tmp
=$
($_sdlconfig --libs |
sed -e s
/-mwindows// -e s
/-lmingw32//)
5025 _inc_tmp
="$($_sdlconfig --cflags)"
5026 _ld_tmp
="$($_sdlconfig --libs)"
5028 if cc_check
$_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5030 elif cc_check
$_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
5031 # HACK for BeOS/Haiku SDL
5032 _ld_tmp
="$_ld_tmp -lstdc++"
5037 if test "$_sdl" = yes ; then
5038 def_sdl
='#define CONFIG_SDL 1'
5039 extra_cflags
="$extra_cflags $_inc_tmp"
5040 libs_mplayer
="$libs_mplayer $_ld_tmp"
5041 vomodules
="sdl $vomodules"
5042 aomodules
="sdl $aomodules"
5044 def_sdl
='#undef CONFIG_SDL'
5045 novomodules
="sdl $novomodules"
5046 noaomodules
="sdl $noaomodules"
5051 # make sure this stays below CoreVideo to avoid issues due to namespace
5052 # conflicts between -lGL and -framework OpenGL
5054 #Note: this test is run even with --enable-gl since we autodetect linker flags
5055 if (test "$_x11" = yes ||
test "$_sdl" = yes || win32
) && test "$_gl" != no
; then
5058 #include <windows.h>
5060 #elif defined(GL_SDL)
5062 #ifdef CONFIG_SDL_SDL_H
5063 #include <SDL/SDL.h>
5068 // we allow SDL hacking our main() only on OSX
5073 #include <X11/Xlib.h>
5076 int main(int argc, char *argv[]) {
5079 wglCreateContext(dc);
5080 #elif defined(GL_SDL)
5081 SDL_GL_SwapBuffers();
5083 glXCreateContext(NULL, NULL, NULL, True);
5090 for _ld_tmp
in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5091 if cc_check
$_ld_tmp $_ld_lm ; then
5094 libs_mplayer
="$libs_mplayer $_ld_tmp $_ld_dl"
5098 if cc_check
-DGL_WIN32 -lopengl32 ; then
5101 libs_mplayer
="$libs_mplayer -lopengl32 -lgdi32"
5103 # last so it can reuse any linker etc. flags detected before
5104 if test "$_sdl" = yes ; then
5105 if cc_check
-DGL_SDL ||
5106 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL ; then
5109 elif cc_check
-DGL_SDL -lGL ||
5110 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5113 libs_mplayer
="$libs_mplayer -lGL"
5119 if test "$_gl" = yes ; then
5120 def_gl
='#define CONFIG_GL 1'
5121 res_comment
="backends:"
5122 if test "$_gl_win32" = yes ; then
5123 def_gl_win32
='#define CONFIG_GL_WIN32 1'
5124 res_comment
="$res_comment win32"
5126 if test "$_gl_x11" = yes ; then
5127 def_gl_x11
='#define CONFIG_GL_X11 1'
5128 res_comment
="$res_comment x11"
5130 if test "$_gl_sdl" = yes ; then
5131 def_gl_sdl
='#define CONFIG_GL_SDL 1'
5132 res_comment
="$res_comment sdl"
5134 vomodules
="opengl $vomodules"
5136 def_gl
='#undef CONFIG_GL'
5137 def_gl_win32
='#undef CONFIG_GL_WIN32'
5138 def_gl_x11
='#undef CONFIG_GL_X11'
5139 def_gl_sdl
='#undef CONFIG_GL_SDL'
5140 novomodules
="opengl $novomodules"
5145 echocheck
"MatrixView"
5146 if test "$_gl" = no
; then
5149 if test "$matrixview" = yes ; then
5150 vomodules
="matrixview $vomodules"
5151 def_matrixview
='#define CONFIG_MATRIXVIEW 1'
5153 novomodules
="matrixview $novomodules"
5154 def_matrixview
='#undef CONFIG_MATRIXVIEW'
5156 echores
"$matrixview"
5160 echocheck
"KVA (SNAP/WarpOverlay!/DIVE)"
5161 if test "$_kva" = auto
; then
5165 int main(void) { return 0; }
5168 cc_check
-lkva && _kva
=yes
5170 if test "$_kva" = yes ; then
5171 def_kva
='#define CONFIG_KVA 1'
5172 libs_mplayer
="$libs_mplayer -lkva"
5173 vomodules
="kva $vomodules"
5175 def_kva
='#undef CONFIG_KVA'
5176 novomodules
="kva $novomodules"
5184 echocheck
"Windows waveout"
5185 if test "$_win32waveout" = auto
; then
5187 #include <windows.h>
5188 #include <mmsystem.h>
5189 int main(void) { return 0; }
5192 cc_check
-lwinmm && _win32waveout
=yes
5194 if test "$_win32waveout" = yes ; then
5195 def_win32waveout
='#define CONFIG_WIN32WAVEOUT 1'
5196 libs_mplayer
="$libs_mplayer -lwinmm"
5197 aomodules
="win32 $aomodules"
5199 def_win32waveout
='#undef CONFIG_WIN32WAVEOUT'
5200 noaomodules
="win32 $noaomodules"
5202 echores
"$_win32waveout"
5204 echocheck
"Direct3D"
5205 if test "$_direct3d" = auto
; then
5207 #include <windows.h>
5209 int main(void) { return 0; }
5212 cc_check
&& _direct3d
=yes
5214 if test "$_direct3d" = yes ; then
5215 def_direct3d
='#define CONFIG_DIRECT3D 1'
5216 vomodules
="direct3d $vomodules"
5218 def_direct3d
='#undef CONFIG_DIRECT3D'
5219 novomodules
="direct3d $novomodules"
5221 echores
"$_direct3d"
5224 if test "$_directx" = auto
; then
5226 #include <windows.h>
5229 int main(void) { return 0; }
5232 cc_check
-lgdi32 && _directx
=yes
5234 if test "$_directx" = yes ; then
5235 def_directx
='#define CONFIG_DIRECTX 1'
5236 libs_mplayer
="$libs_mplayer -lgdi32"
5237 vomodules
="directx $vomodules"
5238 aomodules
="dsound $aomodules"
5240 def_directx
='#undef CONFIG_DIRECTX'
5241 novomodules
="directx $novomodules"
5242 noaomodules
="dsound $noaomodules"
5250 if test "$_dxr2" = auto
; then
5252 for _inc_tmp
in "" -I/usr
/local
/include
/dxr2
-I/usr
/include
/dxr2
; do
5253 header_check dxr2ioctl.h
$_inc_tmp && _dxr2
=yes &&
5254 extra_cflags
="$extra_cflags $_inc_tmp" && break
5257 if test "$_dxr2" = yes; then
5258 def_dxr2
='#define CONFIG_DXR2 1'
5259 aomodules
="dxr2 $aomodules"
5260 vomodules
="dxr2 $vomodules"
5262 def_dxr2
='#undef CONFIG_DXR2'
5263 noaomodules
="dxr2 $noaomodules"
5264 novomodules
="dxr2 $novomodules"
5269 if test "$_dxr3" = auto
; then
5271 header_check linux
/em8300.h
&& _dxr3
=yes
5273 if test "$_dxr3" = yes ; then
5274 def_dxr3
='#define CONFIG_DXR3 1'
5275 vomodules
="dxr3 $vomodules"
5277 def_dxr3
='#undef CONFIG_DXR3'
5278 novomodules
="dxr3 $novomodules"
5283 echocheck
"IVTV TV-Out (pre linux-2.6.24)"
5284 if test "$_ivtv" = auto
; then
5287 #include <inttypes.h>
5288 #include <linux/types.h>
5289 #include <linux/videodev2.h>
5290 #include <linux/ivtv.h>
5291 #include <sys/ioctl.h>
5293 struct ivtv_cfg_stop_decode sd;
5294 struct ivtv_cfg_start_decode sd1;
5295 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5296 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5300 cc_check
&& _ivtv
=yes
5302 if test "$_ivtv" = yes ; then
5303 def_ivtv
='#define CONFIG_IVTV 1'
5304 vomodules
="ivtv $vomodules"
5305 aomodules
="ivtv $aomodules"
5307 def_ivtv
='#undef CONFIG_IVTV'
5308 novomodules
="ivtv $novomodules"
5309 noaomodules
="ivtv $noaomodules"
5314 echocheck
"V4L2 MPEG Decoder"
5315 if test "$_v4l2" = auto
; then
5318 #include <inttypes.h>
5319 #include <linux/types.h>
5320 #include <linux/videodev2.h>
5321 #include <linux/version.h>
5323 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5324 #error kernel headers too old, need 2.6.22
5326 struct v4l2_ext_controls ctrls;
5327 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5332 cc_check
&& _v4l2
=yes
5334 if test "$_v4l2" = yes ; then
5335 def_v4l2
='#define CONFIG_V4L2_DECODER 1'
5336 vomodules
="v4l2 $vomodules"
5337 aomodules
="v4l2 $aomodules"
5339 def_v4l2
='#undef CONFIG_V4L2_DECODER'
5340 novomodules
="v4l2 $novomodules"
5341 noaomodules
="v4l2 $noaomodules"
5352 echocheck
"OSS Audio"
5353 if test "$_ossaudio" = auto
; then
5355 #include <sys/ioctl.h>
5356 #include <$_soundcard_header>
5357 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5360 cc_check
&& _ossaudio
=yes
5362 if test "$_ossaudio" = yes ; then
5363 def_ossaudio
='#define CONFIG_OSS_AUDIO 1'
5364 aomodules
="oss $aomodules"
5366 #include <sys/ioctl.h>
5367 #include <$_soundcard_header>
5368 #ifdef OPEN_SOUND_SYSTEM
5369 int main(void) { return 0; }
5371 #error Not the real thing
5375 cc_check
&& _real_ossaudio
=yes
5376 if test "$_real_ossaudio" = yes; then
5377 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5378 # Check for OSS4 headers (override default headers)
5379 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5380 if test -f /etc
/oss.conf
; then
5382 _ossinc
="$OSSLIBDIR/include"
5383 if test -f "$_ossinc/sys/soundcard.h"; then
5384 extra_cflags
="-I$_ossinc $extra_cflags"
5387 elif netbsd || openbsd
; then
5388 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/sound"'
5389 extra_ldflags
="$extra_ldflags -lossaudio"
5391 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5393 def_ossaudio_devmixer
='#define PATH_DEV_MIXER "/dev/mixer"'
5395 def_ossaudio
='#undef CONFIG_OSS_AUDIO'
5396 def_ossaudio_devdsp
='#define PATH_DEV_DSP ""'
5397 def_ossaudio_devmixer
='#define PATH_DEV_MIXER ""'
5398 noaomodules
="oss $noaomodules"
5400 echores
"$_ossaudio"
5404 if test "$_arts" = auto
; then
5406 if ( artsc-config
--version ) >> "$TMPLOG" 2>&1 ; then
5407 function_check artsc.h
"arts_init()" $
(artsc-config
--libs) $
(artsc-config
--cflags) &&
5412 if test "$_arts" = yes ; then
5413 def_arts
='#define CONFIG_ARTS 1'
5414 aomodules
="arts $aomodules"
5415 libs_mplayer
="$libs_mplayer $(artsc-config --libs)"
5416 extra_cflags
="$extra_cflags $(artsc-config --cflags)"
5418 noaomodules
="arts $noaomodules"
5424 if test "$_esd" = auto
; then
5426 if ( esd-config
--version ) >> "$TMPLOG" 2>&1 ; then
5430 int main(void) { int fd = esd_open_sound("test"); return fd; }
5432 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd
=yes
5438 if test "$_esd" = yes ; then
5439 def_esd
='#define CONFIG_ESD 1'
5440 aomodules
="esd $aomodules"
5441 libs_mplayer
="$libs_mplayer $(esd-config --libs)"
5442 extra_cflags
="$extra_cflags $(esd-config --cflags)"
5444 echocheck
"esd_get_latency()"
5447 int main(void) { return esd_get_latency(0); }
5449 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd_latency
=yes && def_esd_latency
='#define CONFIG_ESD_LATENCY 1'
5450 echores
"$_esd_latency"
5452 def_esd
='#undef CONFIG_ESD'
5453 def_esd_latency
='#undef CONFIG_ESD_LATENCY'
5454 noaomodules
="esd $noaomodules"
5459 if test "$_nas" = auto
; then
5461 header_check audio
/audiolib.h
$_ld_lm -laudio -lXt && _nas
=yes
5463 if test "$_nas" = yes ; then
5464 def_nas
='#define CONFIG_NAS 1'
5465 libs_mplayer
="$libs_mplayer -laudio -lXt"
5466 aomodules
="nas $aomodules"
5468 noaomodules
="nas $noaomodules"
5469 def_nas
='#undef CONFIG_NAS'
5475 if test "$_pulse" = auto
; then
5477 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5478 header_check pulse
/pulseaudio.h $
($_pkg_config --libs --cflags libpulse
) &&
5484 if test "$_pulse" = yes ; then
5485 def_pulse
='#define CONFIG_PULSE 1'
5486 aomodules
="pulse $aomodules"
5487 libs_mplayer
="$libs_mplayer $($_pkg_config --libs libpulse)"
5488 extra_cflags
="$extra_cflags $($_pkg_config --cflags libpulse)"
5490 def_pulse
='#undef CONFIG_PULSE'
5491 noaomodules
="pulse $noaomodules"
5496 if test "$_jack" = auto
; then
5500 #include <jack/jack.h>
5501 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5503 if cc_check
-ljack ; then
5504 libs_mplayer
="$libs_mplayer -ljack"
5505 elif cc_check $
($_pkg_config --libs --cflags --silence-errors jack
) ; then
5506 libs_mplayer
="$libs_mplayer $($_pkg_config --libs jack)"
5507 extra_cflags
="$extra_cflags "$
($_pkg_config --cflags jack
)""
5513 if test "$_jack" = yes ; then
5514 def_jack
='#define CONFIG_JACK 1'
5515 aomodules
="jack $aomodules"
5517 noaomodules
="jack $noaomodules"
5522 if test "$_openal" = auto
; then
5526 #include <OpenAL/al.h>
5531 alSourceQueueBuffers(0, 0, 0);
5532 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5536 for I
in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5537 cc_check
$I && _openal
=yes && break
5538 cc_check
-DOPENAL_AL_H=1 $I && def_openal_h
='#define OPENAL_AL_H 1' && _openal
=yes && break
5540 test "$_openal" = yes && libs_mplayer
="$libs_mplayer $I"
5542 if test "$_openal" = yes ; then
5543 def_openal
='#define CONFIG_OPENAL 1'
5544 aomodules
="openal $aomodules"
5546 noaomodules
="openal $noaomodules"
5550 echocheck
"ALSA audio"
5551 if test "$_alloca" != yes ; then
5553 res_comment
="alloca missing"
5555 if test "$_alsa" != no
; then
5558 #include <sys/asoundlib.h>
5559 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5560 #error "alsa version != 0.5.x"
5562 int main(void) { return 0; }
5564 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.5.x'
5567 #include <sys/asoundlib.h>
5568 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5569 #error "alsa version != 0.9.x"
5571 int main(void) { return 0; }
5573 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-sys'
5575 #include <alsa/asoundlib.h>
5576 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5577 #error "alsa version != 0.9.x"
5579 int main(void) { return 0; }
5581 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-alsa'
5584 #include <sys/asoundlib.h>
5585 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5586 #error "alsa version != 1.0.x"
5588 int main(void) { return 0; }
5590 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-sys'
5592 #include <alsa/asoundlib.h>
5593 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5594 #error "alsa version != 1.0.x"
5596 int main(void) { return 0; }
5598 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-alsa'
5600 def_alsa
='#undef CONFIG_ALSA'
5601 def_alsa5
='#undef CONFIG_ALSA5'
5602 def_alsa9
='#undef CONFIG_ALSA9'
5603 def_alsa1x
='#undef CONFIG_ALSA1X'
5604 def_sys_asoundlib_h
='#undef HAVE_SYS_ASOUNDLIB_H'
5605 def_alsa_asoundlib_h
='#undef HAVE_ALSA_ASOUNDLIB_H'
5606 if test "$_alsaver" ; then
5608 if test "$_alsaver" = '0.5.x' ; then
5610 aomodules
="alsa5 $aomodules"
5611 def_alsa5
='#define CONFIG_ALSA5 1'
5612 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5613 res_comment
="using alsa 0.5.x and sys/asoundlib.h"
5614 elif test "$_alsaver" = '0.9.x-sys' ; then
5616 aomodules
="alsa $aomodules"
5617 def_alsa
='#define CONFIG_ALSA 1'
5618 def_alsa9
='#define CONFIG_ALSA9 1'
5619 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5620 res_comment
="using alsa 0.9.x and sys/asoundlib.h"
5621 elif test "$_alsaver" = '0.9.x-alsa' ; then
5623 aomodules
="alsa $aomodules"
5624 def_alsa
='#define CONFIG_ALSA 1'
5625 def_alsa9
='#define CONFIG_ALSA9 1'
5626 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5627 res_comment
="using alsa 0.9.x and alsa/asoundlib.h"
5628 elif test "$_alsaver" = '1.0.x-sys' ; then
5630 aomodules
="alsa $aomodules"
5631 def_alsa
='#define CONFIG_ALSA 1'
5632 def_alsa1x
="#define CONFIG_ALSA1X 1"
5633 def_alsa_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5634 res_comment
="using alsa 1.0.x and sys/asoundlib.h"
5635 elif test "$_alsaver" = '1.0.x-alsa' ; then
5637 aomodules
="alsa $aomodules"
5638 def_alsa
='#define CONFIG_ALSA 1'
5639 def_alsa1x
="#define CONFIG_ALSA1X 1"
5640 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5641 res_comment
="using alsa 1.0.x and alsa/asoundlib.h"
5644 res_comment
="unknown version"
5646 extra_ldflags
="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5648 noaomodules
="alsa $noaomodules"
5653 echocheck
"Sun audio"
5654 if test "$_sunaudio" = auto
; then
5656 #include <sys/types.h>
5657 #include <sys/audioio.h>
5658 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5661 cc_check
&& _sunaudio
=yes
5663 if test "$_sunaudio" = yes ; then
5664 def_sunaudio
='#define CONFIG_SUN_AUDIO 1'
5665 aomodules
="sun $aomodules"
5667 def_sunaudio
='#undef CONFIG_SUN_AUDIO'
5668 noaomodules
="sun $noaomodules"
5670 echores
"$_sunaudio"
5673 def_mlib
='#define CONFIG_MLIB 0'
5675 echocheck
"Sun mediaLib"
5676 if test "$_mlib" = auto
; then
5680 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5682 cc_check
-lmlib && _mlib
=yes && def_mlib
='#define CONFIG_MLIB 1'
5689 echocheck
"CoreAudio"
5690 if test "$_coreaudio" = auto
; then
5692 #include <CoreAudio/CoreAudio.h>
5693 #include <AudioToolbox/AudioToolbox.h>
5694 #include <AudioUnit/AudioUnit.h>
5695 int main(void) { return 0; }
5698 cc_check
-framework CoreAudio
-framework AudioUnit
-framework AudioToolbox
&& _coreaudio
=yes
5700 if test "$_coreaudio" = yes ; then
5701 libs_mplayer
="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5702 def_coreaudio
='#define CONFIG_COREAUDIO 1'
5703 aomodules
="coreaudio $aomodules"
5705 def_coreaudio
='#undef CONFIG_COREAUDIO'
5706 noaomodules
="coreaudio $noaomodules"
5713 echocheck
"SGI audio"
5714 if test "$_sgiaudio" = auto
; then
5716 header_check dmedia
/audio.h
&& _sgiaudio
=yes
5718 if test "$_sgiaudio" = "yes" ; then
5719 def_sgiaudio
='#define CONFIG_SGI_AUDIO 1'
5720 libs_mplayer
="$libs_mplayer -laudio"
5721 aomodules
="sgi $aomodules"
5723 def_sgiaudio
='#undef CONFIG_SGI_AUDIO'
5724 noaomodules
="sgi $noaomodules"
5726 echores
"$_sgiaudio"
5731 echocheck
"KAI (UNIAUD/DART)"
5732 if test "$_kai" = auto
; then
5736 int main(void) { return 0; }
5739 cc_check
-lkai && _kai
=yes
5741 if test "$_kai" = yes ; then
5742 def_kai
='#define CONFIG_KAI 1'
5743 libs_mplayer
="$libs_mplayer -lkai"
5744 aomodules
="kai $aomodules"
5746 def_kai
='#undef CONFIG_KAI'
5747 noaomodules
="kai $noaomodules"
5752 if test "$_dart" = auto
; then
5756 int main(void) { return 0; }
5759 cc_check
-ldart && _dart
=yes
5761 if test "$_dart" = yes ; then
5762 def_dart
='#define CONFIG_DART 1'
5763 libs_mplayer
="$libs_mplayer -ldart"
5764 aomodules
="dart $aomodules"
5766 def_dart
='#undef CONFIG_DART'
5767 noaomodules
="dart $noaomodules"
5773 # set default CD/DVD devices
5774 if win32 || os2
; then
5775 default_cdrom_device
="D:"
5777 default_cdrom_device
="/dev/disk1"
5778 elif dragonfly
; then
5779 default_cdrom_device
="/dev/cd0"
5781 default_cdrom_device
="/dev/acd0"
5783 default_cdrom_device
="/dev/rcd0c"
5785 default_cdrom_device
="/vol/dev/aliases/cdrom0"
5786 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5787 # file system and the volfs service.
5788 test -r "/cdrom/cdrom0" && default_cdrom_device
="/cdrom/cdrom0"
5790 default_cdrom_device
="a1ide.device:2"
5792 default_cdrom_device
="/dev/cdrom"
5795 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos
; then
5796 default_dvd_device
=$default_cdrom_device
5798 default_dvd_device
="/dev/rdiskN"
5800 default_dvd_device
="/dev/dvd"
5804 echocheck
"VCD support"
5805 if test "$_vcd" = auto
; then
5807 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2
; then
5810 header_check
ddk
/ntddcdrm.h
&& _vcd
=yes
5813 if test "$_vcd" = yes; then
5814 inputmodules
="vcd $inputmodules"
5815 def_vcd
='#define CONFIG_VCD 1'
5817 def_vcd
='#undef CONFIG_VCD'
5818 noinputmodules
="vcd $noinputmodules"
5819 res_comment
="not supported on this OS"
5825 echocheck
"Blu-ray support"
5826 if test "$_bluray" = auto
; then
5831 #include <libbluray/bluray.h>
5833 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5837 compile_check
$TMPC -lbluray && _bluray
=yes
5839 if test "$_bluray" = yes ; then
5840 def_bluray
='#define CONFIG_LIBBLURAY 1'
5841 extra_ldflags
="$extra_ldflags -lbluray"
5842 inputmodules
="bluray $inputmodules"
5844 def_bluray
='#undef CONFIG_LIBBLURAY'
5845 noinputmodules
="bluray $noinputmodules"
5850 if test "$_dvdread_internal" = auto
&& test ! -f "libdvdread4/dvd_reader.c" ; then
5851 _dvdread_internal
=no
5853 if test "$_dvdread_internal" = auto
; then
5854 _dvdread_internal
=no
5856 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux
) \
5857 && (test "$_dvd" = yes ||
test "$_cdrom" = yes ||
test "$_cdio" = yes || \
5858 test "$_dvdio" = yes ||
test "$_bsdi_dvd" = yes) \
5859 || darwin || win32 || os2
; then
5860 _dvdread_internal
=yes
5862 extra_cflags
="-Ilibdvdread4 $extra_cflags"
5864 elif test "$_dvdread" = auto
; then
5866 if test "$_dl" = yes; then
5868 #include <inttypes.h>
5869 #include <dvdread/dvd_reader.h>
5870 #include <dvdread/ifo_types.h>
5871 #include <dvdread/ifo_read.h>
5872 #include <dvdread/nav_read.h>
5873 int main(void) { return 0; }
5875 _dvdreadcflags
=$
($_dvdreadconfig --cflags)
5876 _dvdreadlibs
=$
($_dvdreadconfig --libs)
5877 if cc_check
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5878 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5880 extra_cflags
="$extra_cflags $_dvdreadcflags"
5881 extra_ldflags
="$extra_ldflags $_dvdreadlibs"
5882 res_comment
="external"
5887 if test "$_dvdread_internal" = yes; then
5888 def_dvdread
='#define CONFIG_DVDREAD 1'
5889 inputmodules
="dvdread(internal) $inputmodules"
5891 res_comment
="internal"
5892 elif test "$_dvdread" = yes; then
5893 def_dvdread
='#define CONFIG_DVDREAD 1'
5895 extra_ldflags
="$extra_ldflags -ldvdread"
5896 inputmodules
="dvdread(external) $inputmodules"
5897 res_comment
="external"
5899 def_dvdread
='#undef CONFIG_DVDREAD'
5900 noinputmodules
="dvdread $noinputmodules"
5905 echocheck
"internal libdvdcss"
5906 if test "$_libdvdcss_internal" = auto
; then
5907 _libdvdcss_internal
=no
5908 test "$_dvdread_internal" = yes && _libdvdcss_internal
=yes
5909 hpux
&& test "$_hpux_scsi_h" = no
&& _libdvdcss_internal
=no
5911 if test "$_libdvdcss_internal" = yes ; then
5912 if linux || netbsd || openbsd || bsdos
; then
5913 def_dvd_linux
='#define HAVE_LINUX_DVD_STRUCT 1'
5914 openbsd
&& def_dvd_openbsd
='#define HAVE_OPENBSD_DVD_STRUCT 1'
5915 elif freebsd || dragonfly
; then
5916 def_dvd_bsd
='#define HAVE_BSD_DVD_STRUCT 1'
5918 def_dvd_darwin
='#define DARWIN_DVD_IOCTL'
5919 extra_ldflags
="$extra_ldflags -framework IOKit -framework Carbon"
5921 cflags_libdvdcss
="-DSYS_CYGWIN -DWIN32"
5923 cflags_libdvdcss
="-DSYS_BEOS"
5925 cflags_libdvdcss
="-DSYS_OS2"
5927 cflags_libdvdcss_dvdread
="-Ilibdvdcss"
5928 def_dvdcss
="#define HAVE_DVDCSS_DVDCSS_H 1"
5929 inputmodules
="libdvdcss(internal) $inputmodules"
5932 noinputmodules
="libdvdcss(internal) $noinputmodules"
5934 echores
"$_libdvdcss_internal"
5937 echocheck
"cdparanoia"
5938 if test "$_cdparanoia" = auto
; then
5940 #include <cdda_interface.h>
5941 #include <cdda_paranoia.h>
5942 // This need a better test. How ?
5943 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5946 for _inc_tmp
in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5947 cc_check
$_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5948 _cdparanoia
=yes && extra_cflags
="$extra_cflags $_inc_tmp" && break
5951 if test "$_cdparanoia" = yes ; then
5953 extra_ldflags
="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5954 openbsd
&& extra_ldflags
="$extra_ldflags -lutil"
5956 echores
"$_cdparanoia"
5960 if test "$_libcdio" = auto
&& test "$_cdparanoia" = no
; then
5963 #include <cdio/version.h>
5964 #include <cdio/cdda.h>
5965 #include <cdio/paranoia.h>
5967 void *test = cdda_verbose_set;
5968 printf("%s\n", CDIO_VERSION);
5969 return test == (void *)1;
5973 for _ld_tmp
in "" "-lwinmm" ; do
5974 _ld_tmp
="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5975 cc_check
$_ld_tmp $_ld_lm \
5976 && _libcdio
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
5978 if test "$_libcdio" = no
&& $_pkg_config --exists libcdio_paranoia
; then
5979 _inc_tmp
=$
($_pkg_config --cflags libcdio_paranoia
)
5980 _ld_tmp
=$
($_pkg_config --libs libcdio_paranoia
)
5981 cc_check
$_inc_tmp $_ld_tmp $_ld_lm && _libcdio
=yes \
5982 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
5985 if test "$_libcdio" = yes && test "$_cdparanoia" = no
; then
5987 def_libcdio
='#define CONFIG_LIBCDIO 1'
5988 def_havelibcdio
='yes'
5990 if test "$_cdparanoia" = yes ; then
5991 res_comment
="using cdparanoia"
5993 def_libcdio
='#undef CONFIG_LIBCDIO'
5994 def_havelibcdio
='no'
5998 if test "$_cdda" = yes ; then
5999 test $_cddb = auto
&& test $networking = yes && _cddb
=yes
6000 def_cdparanoia
='#define CONFIG_CDDA 1'
6001 inputmodules
="cdda $inputmodules"
6003 def_cdparanoia
='#undef CONFIG_CDDA'
6004 noinputmodules
="cdda $noinputmodules"
6007 if test "$_cddb" = yes ; then
6008 def_cddb
='#define CONFIG_CDDB 1'
6009 inputmodules
="cddb $inputmodules"
6012 def_cddb
='#undef CONFIG_CDDB'
6013 noinputmodules
="cddb $noinputmodules"
6016 echocheck
"bitmap font support"
6017 if test "$_bitmap_font" = yes ; then
6018 def_bitmap_font
="#define CONFIG_BITMAP_FONT 1"
6020 def_bitmap_font
="#undef CONFIG_BITMAP_FONT"
6022 echores
"$_bitmap_font"
6025 echocheck
"freetype >= 2.0.9"
6027 # freetype depends on iconv
6028 if test "$_iconv" = no
; then
6030 res_comment
="iconv support needed"
6033 if test "$_freetype" = auto
; then
6034 if ( $_freetypeconfig --version ) >/dev
/null
2>&1 ; then
6037 #include <ft2build.h>
6038 #include FT_FREETYPE_H
6039 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6040 #error "Need FreeType 2.0.9 or newer"
6044 FT_Int major=-1,minor=-1,patch=-1;
6045 int err=FT_Init_FreeType(&library);
6050 cc_check $
($_freetypeconfig --cflags) $
($_freetypeconfig --libs) && _freetype
=yes
6055 if test "$_freetype" = yes ; then
6056 def_freetype
='#define CONFIG_FREETYPE 1'
6057 extra_cflags
="$extra_cflags $($_freetypeconfig --cflags)"
6058 extra_ldflags
="$extra_ldflags $($_freetypeconfig --libs)"
6060 def_freetype
='#undef CONFIG_FREETYPE'
6062 echores
"$_freetype"
6064 if test "$_freetype" = no
; then
6066 res_comment
="FreeType support needed"
6068 echocheck
"fontconfig"
6069 if test "$_fontconfig" = auto
; then
6073 #include <fontconfig/fontconfig.h>
6074 #if FC_VERSION < 20402
6075 #error At least version 2.4.2 of fontconfig required
6079 if (err == FcFalse) {
6080 printf("Couldn't initialize fontconfig lib\n");
6087 for _ld_tmp
in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6088 _ld_tmp
="-lfontconfig $_ld_tmp"
6089 cc_check
$_ld_tmp && _fontconfig
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
6091 if test "$_fontconfig" = no
&& $_pkg_config --exists fontconfig
; then
6092 _inc_tmp
=$
($_pkg_config --cflags fontconfig
)
6093 _ld_tmp
=$
($_pkg_config --libs fontconfig
)
6094 cc_check
$_inc_tmp $_ld_tmp && _fontconfig
=yes \
6095 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
6098 if test "$_fontconfig" = yes ; then
6099 def_fontconfig
='#define CONFIG_FONTCONFIG 1'
6101 def_fontconfig
='#undef CONFIG_FONTCONFIG'
6103 echores
"$_fontconfig"
6106 echocheck
"SSA/ASS support"
6107 if test "$_ass" = auto
-o "$_ass" = yes ; then
6108 if $_pkg_config libass
; then
6110 def_ass
='#define CONFIG_ASS 1'
6111 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libass)"
6112 extra_cflags
="$extra_cflags $($_pkg_config --cflags libass)"
6115 def_ass
='#undef CONFIG_ASS'
6118 def_ass
='#undef CONFIG_ASS'
6123 echocheck
"fribidi with charsets"
6126 if test "$_fribidi" = auto
; then
6129 /* workaround for fribidi 0.10.4 and below */
6130 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6131 #include <fribidi/fribidi.h>
6133 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6141 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
6142 if $_pkg_config --exists fribidi
> /dev
/null
2>&1 &&
6143 test "$_fribidi" = no
; then
6144 _inc_tmp
="$($_pkg_config --cflags)"
6145 _ld_tmp
="$($_pkg_config --libs)"
6146 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
6149 if test "$_fribidi" = yes ; then
6150 def_fribidi
='#define CONFIG_FRIBIDI 1'
6151 extra_cflags
="$extra_cflags $_inc_tmp"
6152 extra_ldflags
="$extra_ldflags $_ld_tmp"
6154 def_fribidi
='#undef CONFIG_FRIBIDI'
6160 if test "$_enca" = auto
; then
6162 #include <sys/types.h>
6167 langs = enca_get_languages(&langcnt);
6172 cc_check
-lenca $_ld_lm && _enca
=yes
6174 if test "$_enca" = yes ; then
6175 def_enca
='#define CONFIG_ENCA 1'
6176 extra_ldflags
="$extra_ldflags -lenca"
6178 def_enca
='#undef CONFIG_ENCA'
6186 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6189 cc_check
-lz && _zlib
=yes
6190 if test "$_zlib" = yes ; then
6191 def_zlib
='#define CONFIG_ZLIB 1'
6192 extra_ldflags
="$extra_ldflags -lz"
6194 def_zlib
='#define CONFIG_ZLIB 0'
6201 def_bzlib
='#define CONFIG_BZLIB 0'
6204 int main(void) { BZ2_bzlibVersion(); return 0; }
6206 cc_check
-lbz2 && bzlib
=yes
6207 if test "$bzlib" = yes ; then
6208 def_bzlib
='#define CONFIG_BZLIB 1'
6209 extra_ldflags
="$extra_ldflags -lbz2"
6215 if test "$_rtc" = auto
; then
6217 #include <sys/ioctl.h>
6219 #include <linux/rtc.h>
6222 #define RTC_PIE_ON RTCIO_PIE_ON
6224 int main(void) { return RTC_PIE_ON; }
6227 cc_check
&& _rtc
=yes
6230 if test "$_rtc" = yes ; then
6231 def_rtc
='#define HAVE_RTC 1'
6233 def_rtc
='#undef HAVE_RTC'
6238 echocheck
"liblzo2 support"
6239 if test "$_liblzo" = auto
; then
6242 #include <lzo/lzo1x.h>
6243 int main(void) { lzo_init(); return 0; }
6245 cc_check
-llzo2 && _liblzo
=yes
6247 if test "$_liblzo" = yes ; then
6248 def_liblzo
='#define CONFIG_LIBLZO 1'
6249 extra_ldflags
="$extra_ldflags -llzo2"
6250 codecmodules
="liblzo $codecmodules"
6252 def_liblzo
='#undef CONFIG_LIBLZO'
6253 nocodecmodules
="liblzo $nocodecmodules"
6258 echocheck
"mad support"
6259 if test "$_mad" = auto
; then
6261 header_check mad.h
-lmad && _mad
=yes
6263 if test "$_mad" = yes ; then
6264 def_mad
='#define CONFIG_LIBMAD 1'
6265 extra_ldflags
="$extra_ldflags -lmad"
6266 codecmodules
="libmad $codecmodules"
6268 def_mad
='#undef CONFIG_LIBMAD'
6269 nocodecmodules
="libmad $nocodecmodules"
6274 if test "$_twolame" = auto
; then
6276 #include <twolame.h>
6277 int main(void) { twolame_init(); return 0; }
6280 cc_check
-ltwolame $_ld_lm && _twolame
=yes
6282 if test "$_twolame" = yes ; then
6283 def_twolame
='#define CONFIG_TWOLAME 1'
6284 libs_mencoder
="$libs_mencoder -ltwolame"
6285 codecmodules
="twolame $codecmodules"
6287 def_twolame
='#undef CONFIG_TWOLAME'
6288 nocodecmodules
="twolame $nocodecmodules"
6293 if test "$_toolame" = auto
; then
6295 if test "$_twolame" = yes ; then
6296 res_comment
="disabled by twolame"
6299 #include <toolame.h>
6300 int main(void) { toolame_init(); return 0; }
6302 cc_check
-ltoolame $_ld_lm && _toolame
=yes
6305 if test "$_toolame" = yes ; then
6306 def_toolame
='#define CONFIG_TOOLAME 1'
6307 libs_mencoder
="$libs_mencoder -ltoolame"
6308 codecmodules
="toolame $codecmodules"
6310 def_toolame
='#undef CONFIG_TOOLAME'
6311 nocodecmodules
="toolame $nocodecmodules"
6313 if test "$_toolamedir" ; then
6314 res_comment
="using $_toolamedir"
6318 echocheck
"OggVorbis support"
6319 if test "$_tremor_internal" = yes; then
6321 elif test "$_tremor" = auto
; then
6324 #include <tremor/ivorbiscodec.h>
6325 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6327 cc_check
-logg -lvorbisidec $_ld_lm && _tremor
=yes && _libvorbis
=no
6329 if test "$_libvorbis" = auto
; then
6332 #include <vorbis/codec.h>
6333 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6335 cc_check
-lvorbis -logg $_ld_lm && _libvorbis
=yes
6337 if test "$_tremor_internal" = yes ; then
6339 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6340 def_tremor
='#define CONFIG_TREMOR 1'
6341 codecmodules
="tremor(internal) $codecmodules"
6342 res_comment
="internal Tremor"
6343 if test "$_tremor_low" = yes ; then
6344 cflags_tremor_low
="-D_LOW_ACCURACY_"
6345 res_comment
="internal low accuracy Tremor"
6347 elif test "$_tremor" = yes ; then
6349 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6350 def_tremor
='#define CONFIG_TREMOR 1'
6351 codecmodules
="tremor(external) $codecmodules"
6352 res_comment
="external Tremor"
6353 extra_ldflags
="$extra_ldflags -logg -lvorbisidec"
6354 elif test "$_libvorbis" = yes ; then
6356 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6357 codecmodules
="libvorbis $codecmodules"
6358 res_comment
="libvorbis"
6359 extra_ldflags
="$extra_ldflags -lvorbis -logg"
6362 nocodecmodules
="libvorbis $nocodecmodules"
6366 echocheck
"libspeex (version >= 1.1 required)"
6367 if test "$_speex" = auto
; then
6370 #include <speex/speex.h>
6371 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6373 cc_check
-lspeex $_ld_lm && _speex
=yes
6375 if test "$_speex" = yes ; then
6376 def_speex
='#define CONFIG_SPEEX 1'
6377 extra_ldflags
="$extra_ldflags -lspeex"
6378 codecmodules
="speex $codecmodules"
6380 def_speex
='#undef CONFIG_SPEEX'
6381 nocodecmodules
="speex $nocodecmodules"
6385 echocheck
"OggTheora support"
6386 if test "$_theora" = auto
; then
6389 #include <theora/theora.h>
6392 /* Theora is in flux, make sure that all interface routines and datatypes
6393 * exist and work the way we expect it, so we don't break MPlayer. */
6402 theora_info_init(&inf);
6403 theora_comment_init(&tc);
6407 /* we don't want to execute this kind of nonsense; just for making sure
6408 * that compilation works... */
6409 memset(&op, 0, sizeof(op));
6410 r = theora_decode_header(&inf, &tc, &op);
6411 r = theora_decode_init(&st, &inf);
6412 t = theora_granule_time(&st, op.granulepos);
6413 r = theora_decode_packetin(&st, &op);
6414 r = theora_decode_YUVout(&st, &yuv);
6420 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6421 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6422 cc_check
$_inc_theora $_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" &&
6423 extra_cflags
="$extra_cflags $_inc_theora" && _theora
=yes
6424 if test _theora
= no
; then
6425 _ld_theora
="-ltheora -logg"
6426 cc_check
$_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6428 if test "$_theora" = no
&& test "$_tremor_internal" = yes; then
6429 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6430 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6431 cc_check tremor
/bitwise.c
$_inc_theora $_ld_theora &&
6432 extra_ldflags
="$extra_ldflags $_ld_theora" &&
6433 extra_cflags
="$extra_cflags $_inc_theora" && _theora
=yes
6434 if test _theora
= no
; then
6435 _ld_theora
="-ltheora -logg"
6436 cc_check tremor
/bitwise.c
$_ld_theora &&
6437 extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6441 if test "$_theora" = yes ; then
6442 def_theora
='#define CONFIG_OGGTHEORA 1'
6443 codecmodules
="libtheora $codecmodules"
6444 # when --enable-theora is forced, we'd better provide a probably sane
6445 # $_ld_theora than nothing
6446 test -z "$_ld_theora" && extra_ldflags
="$extra_ldflags -ltheora -logg"
6448 def_theora
='#undef CONFIG_OGGTHEORA'
6449 nocodecmodules
="libtheora $nocodecmodules"
6453 echocheck
"mp3lib support"
6454 if test "$_mp3lib" = auto
; then
6455 test "$cc_vendor" = intel
&& test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib
=no || _mp3lib
=yes
6457 if test "$_mp3lib" = yes ; then
6458 def_mp3lib
='#define CONFIG_MP3LIB 1'
6459 codecmodules
="mp3lib(internal) $codecmodules"
6461 def_mp3lib
='#undef CONFIG_MP3LIB'
6462 nocodecmodules
="mp3lib(internal) $nocodecmodules"
6466 # Any version of libmpg123 shall be fine.
6467 echocheck
"mpg123 support"
6468 def_mpg123
='#undef CONFIG_MPG123'
6469 if test "$_mpg123" = auto
; then
6473 int main(void){ mpg123_init(); return 0; }
6475 cc_check
-lmpg123 && _mpg123
=yes && extra_ldflags
="$extra_ldflags -lmpg123"
6477 if test "$_mpg123" = yes ; then
6478 def_mpg123
='#define CONFIG_MPG123 1'
6479 codecmodules
="mpg123 $codecmodules"
6481 nocodecmodules
="mpg123 $nocodecmodules"
6485 echocheck
"liba52 support"
6486 def_liba52
='#undef CONFIG_LIBA52'
6487 if test "$_liba52" = auto
; then
6490 #include <inttypes.h>
6491 #include <a52dec/a52.h>
6492 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6494 cc_check
-la52 && _liba52
=yes && extra_ldflags
="$extra_ldflags -la52"
6496 if test "$_liba52" = yes ; then
6497 def_liba52
='#define CONFIG_LIBA52 1'
6498 codecmodules
="liba52 $codecmodules"
6500 nocodecmodules
="liba52 $nocodecmodules"
6504 echocheck
"internal libmpeg2 support"
6505 if test "$_libmpeg2" = auto
; then
6507 if alpha
&& test cc_vendor
=gnu
; then
6509 2*|
3.0*|
3.1*) # cannot compile MVI instructions
6511 res_comment
="broken gcc"
6516 if test "$_libmpeg2" = yes ; then
6517 def_libmpeg2
='#define CONFIG_LIBMPEG2 1'
6518 codecmodules
="libmpeg2(internal) $codecmodules"
6520 def_libmpeg2
='#undef CONFIG_LIBMPEG2'
6521 nocodecmodules
="libmpeg2(internal) $nocodecmodules"
6523 echores
"$_libmpeg2"
6525 echocheck
"libdca support"
6526 if test "$_libdca" = auto
; then
6529 #include <inttypes.h>
6531 int main(void) { dts_init(0); return 0; }
6533 for _ld_dca
in -ldca -ldts ; do
6534 cc_check
$_ld_dca $_ld_lm && extra_ldflags
="$extra_ldflags $_ld_dca" \
6535 && _libdca
=yes && break
6538 if test "$_libdca" = yes ; then
6539 def_libdca
='#define CONFIG_LIBDCA 1'
6540 codecmodules
="libdca $codecmodules"
6542 def_libdca
='#undef CONFIG_LIBDCA'
6543 nocodecmodules
="libdca $nocodecmodules"
6547 echocheck
"libmpcdec (musepack, version >= 1.2.1 required)"
6548 if test "$_musepack" = auto
; then
6552 #include <mpcdec/mpcdec.h>
6554 mpc_streaminfo info;
6555 mpc_decoder decoder;
6556 mpc_decoder_set_streaminfo(&decoder, &info);
6557 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6561 cc_check
-lmpcdec $_ld_lm && _musepack
=yes
6563 if test "$_musepack" = yes ; then
6564 def_musepack
='#define CONFIG_MUSEPACK 1'
6565 extra_ldflags
="$extra_ldflags -lmpcdec"
6566 codecmodules
="musepack $codecmodules"
6568 def_musepack
='#undef CONFIG_MUSEPACK'
6569 nocodecmodules
="musepack $nocodecmodules"
6571 echores
"$_musepack"
6574 echocheck
"FAAC support"
6575 if test "$_faac" = auto
; then
6577 #include <inttypes.h>
6579 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6582 for _ld_faac
in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6583 cc_check
$_ld_faac $_ld_lm && libs_mencoder
="$libs_mencoder $_ld_faac" && _faac
=yes && break
6586 if test "$_faac" = yes ; then
6587 def_faac
="#define CONFIG_FAAC 1"
6588 codecmodules
="faac $codecmodules"
6590 def_faac
="#undef CONFIG_FAAC"
6591 nocodecmodules
="faac $nocodecmodules"
6596 echocheck
"FAAD2 support"
6597 if test "$_faad_internal" = auto
; then
6598 if x86_32
&& test cc_vendor
=gnu
; then
6600 3.1*|
3.2) # ICE/insn with these versions
6602 res_comment
="broken gcc"
6614 if test "$_faad" = auto
; then
6617 #ifndef FAAD_MIN_STREAMSIZE
6618 #error Too old version
6620 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6621 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6623 cc_check
-lfaad $_ld_lm && _faad
=yes
6626 def_faad
='#undef CONFIG_FAAD'
6627 def_faad_internal
="#undef CONFIG_FAAD_INTERNAL"
6628 if test "$_faad_internal" = yes ; then
6629 def_faad_internal
="#define CONFIG_FAAD_INTERNAL 1"
6630 res_comment
="internal floating-point"
6631 if test "$_faad_fixed" = yes ; then
6632 # The FIXED_POINT implementation of FAAD2 improves performance
6633 # on some platforms, especially for SBR files.
6634 cflags_faad_fixed
="-DFIXED_POINT"
6635 res_comment
="internal fixed-point"
6637 elif test "$_faad" = yes ; then
6638 extra_ldflags
="$extra_ldflags -lfaad"
6641 if test "$_faad" = yes ; then
6642 def_faad
='#define CONFIG_FAAD 1'
6643 if test "$_faad_internal" = yes ; then
6644 codecmodules
="faad2(internal) $codecmodules"
6646 codecmodules
="faad2 $codecmodules"
6650 nocodecmodules
="faad2 $nocodecmodules"
6655 echocheck
"LADSPA plugin support"
6656 if test "$_ladspa" = auto
; then
6660 LADSPA_Descriptor ld = {0};
6665 cc_check
&& _ladspa
=yes
6667 if test "$_ladspa" = yes; then
6668 def_ladspa
="#define CONFIG_LADSPA 1"
6670 def_ladspa
="#undef CONFIG_LADSPA"
6675 echocheck
"libbs2b audio filter support"
6676 if test "$_libbs2b" = auto
; then
6679 #if BS2B_VERSION_MAJOR < 3
6680 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6690 if $_pkg_config --exists libbs2b
; then
6691 _inc_tmp
=$
($_pkg_config --cflags libbs2b
)
6692 _ld_tmp
=$
($_pkg_config --libs libbs2b
)
6693 cc_check
$_inc_tmp $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" &&
6694 extra_cflags
="$extra_cflags $_inc_tmp" && _libbs2b
=yes
6696 for _inc_tmp
in "" -I/usr
/include
/bs2b
-I/usr
/local
/include \
6697 -I/usr
/local
/include
/bs2b
; do
6698 if cc_check
$_inc_tmp $_ld_lm -lbs2b ; then
6699 extra_ldflags
="$extra_ldflags -lbs2b"
6700 extra_cflags
="$extra_cflags $_inc_tmp"
6707 def_libbs2b
="#undef CONFIG_LIBBS2B"
6708 test "$_libbs2b" = yes && def_libbs2b
="#define CONFIG_LIBBS2B 1"
6712 if test -z "$_codecsdir" ; then
6713 for dir
in "$_libdir/codecs" "$_libdir/win32" /usr
/local
/lib
/codecs \
6714 /usr
/lib
/codecs
/usr
/local
/lib
/win32
/usr
/lib
/win32
; do
6715 if test -d "$dir" ; then
6721 # Fall back on default directory.
6722 if test -z "$_codecsdir" ; then
6723 _codecsdir
="$_libdir/codecs"
6724 mingw32 || os2
&& _codecsdir
="codecs"
6728 echocheck
"Win32 codecs"
6729 if test "$_win32dll" = auto
; then
6731 if x86_32
&& ! qnx
; then
6735 if test "$_win32dll" = yes ; then
6736 def_win32dll
='#define CONFIG_WIN32DLL 1'
6738 def_win32_loader
='#define WIN32_LOADER 1'
6739 _win32_emulation
=yes
6741 extra_ldflags
="$extra_ldflags -ladvapi32 -lole32"
6742 res_comment
="using native windows"
6744 codecmodules
="win32 $codecmodules"
6746 def_win32dll
='#undef CONFIG_WIN32DLL'
6747 def_win32_loader
='#undef WIN32_LOADER'
6748 nocodecmodules
="win32 $nocodecmodules"
6750 echores
"$_win32dll"
6753 echocheck
"XAnim codecs"
6754 if test "$_xanim" = auto
; then
6756 res_comment
="dynamic loader support needed"
6757 if test "$_dl" = yes ; then
6761 if test "$_xanim" = yes ; then
6762 def_xanim
='#define CONFIG_XANIM 1'
6763 codecmodules
="xanim $codecmodules"
6765 def_xanim
='#undef CONFIG_XANIM'
6766 nocodecmodules
="xanim $nocodecmodules"
6771 echocheck
"RealPlayer codecs"
6772 if test "$_real" = auto
; then
6774 res_comment
="dynamic loader support needed"
6775 if test "$_dl" = yes ||
test "$_win32dll" = yes &&
6776 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2
) ; then
6780 if test "$_real" = yes ; then
6781 def_real
='#define CONFIG_REALCODECS 1'
6782 codecmodules
="real $codecmodules"
6784 def_real
='#undef CONFIG_REALCODECS'
6785 nocodecmodules
="real $nocodecmodules"
6790 echocheck
"QuickTime codecs"
6792 def_qtx_win32
='#undef CONFIG_QTX_CODECS_WIN32'
6793 if test "$_qtx" = auto
; then
6794 test "$_win32dll" = yes ||
test "$quicktime" = yes && _qtx
=yes
6796 if test "$_qtx" = yes ; then
6797 def_qtx
='#define CONFIG_QTX_CODECS 1'
6798 win32
&& _qtx_codecs_win32
=yes && def_qtx_win32
='#define CONFIG_QTX_CODECS_WIN32 1'
6799 codecmodules
="qtx $codecmodules"
6800 darwin || win32 || _qtx_emulation
=yes
6802 def_qtx
='#undef CONFIG_QTX_CODECS'
6803 nocodecmodules
="qtx $nocodecmodules"
6807 echocheck
"Nemesi Streaming Media libraries"
6808 if test "$_nemesi" = auto
&& test "$networking" = yes ; then
6810 if $_pkg_config libnemesi
--atleast-version=0.6.3 ; then
6811 extra_cflags
="$extra_cflags $($_pkg_config --cflags libnemesi)"
6812 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libnemesi)"
6816 if test "$_nemesi" = yes; then
6818 def_nemesi
='#define CONFIG_LIBNEMESI 1'
6819 inputmodules
="nemesi $inputmodules"
6821 _native_rtsp
="$networking"
6823 def_nemesi
='#undef CONFIG_LIBNEMESI'
6824 noinputmodules
="nemesi $noinputmodules"
6828 echocheck
"LIVE555 Streaming Media libraries"
6829 if test "$_live" = auto
&& test "$networking" = yes ; then
6830 cat > $TMPCPP << EOF
6831 #include <liveMedia.hh>
6832 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6833 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6835 int main(void) { return 0; }
6839 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
6840 cxx_check
$I/liveMedia
/include
$I/UsageEnvironment
/include \
6841 $I/groupsock
/include
&& _livelibdir
=$
(echo $I|
sed s
/-I//) && \
6842 extra_ldflags
="$_livelibdir/liveMedia/libliveMedia.a \
6843 $_livelibdir/groupsock/libgroupsock.a \
6844 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6845 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6846 $extra_ldflags -lstdc++" \
6847 extra_cxxflags
="-I$_livelibdir/liveMedia/include \
6848 -I$_livelibdir/UsageEnvironment/include \
6849 -I$_livelibdir/BasicUsageEnvironment/include \
6850 -I$_livelibdir/groupsock/include" && \
6853 if test "$_live" != yes ; then
6854 ld_tmp
="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6855 if cxx_check
-I/usr
/include
/liveMedia
-I/usr
/include
/UsageEnvironment
-I/usr
/include
/groupsock
$ld_tmp; then
6860 if test "$_live" = yes && test "$networking" = yes; then
6861 test $_livelibdir && res_comment
="using $_livelibdir"
6862 def_live
='#define CONFIG_LIVE555 1'
6863 inputmodules
="live555 $inputmodules"
6864 elif test "$_live_dist" = yes && test "$networking" = yes; then
6865 res_comment
="using distribution version"
6867 def_live
='#define CONFIG_LIVE555 1'
6868 extra_ldflags
="$extra_ldflags $ld_tmp"
6869 extra_cxxflags
="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6870 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6871 inputmodules
="live555 $inputmodules"
6874 def_live
='#undef CONFIG_LIVE555'
6875 noinputmodules
="live555 $noinputmodules"
6880 echocheck
"FFmpeg libavutil"
6881 if test "$_libavutil" = auto
; then
6884 #include <libavutil/common.h>
6885 int main(void) { av_clip(1, 1, 1); return 0; }
6887 if $_pkg_config --exists libavutil
; then
6888 _inc_libavutil
=$
($_pkg_config --cflags libavutil
)
6889 _ld_tmp
=$
($_pkg_config --libs libavutil
)
6890 cc_check
$_inc_libavutil $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" extra_cflags
="$extra_cflags $_inc_libavutil" \
6892 elif cc_check
-lavutil $_ld_lm ; then
6893 extra_ldflags
="$extra_ldflags -lavutil"
6897 def_libavutil
='#undef CONFIG_LIBAVUTIL'
6898 test "$_libavutil" = yes && def_libavutil
='#define CONFIG_LIBAVUTIL 1'
6899 # libavutil is not available, but it is mandatory ...
6900 if test "$_libavutil" = no
; then
6901 die
"You need libavutil, MPlayer will not compile without!"
6903 echores
"$_libavutil"
6905 echocheck
"FFmpeg libavcodec"
6906 if test "$_libavcodec" = auto
; then
6909 #include <libavcodec/avcodec.h>
6910 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6912 if $_pkg_config --exists libavcodec
; then
6913 _inc_libavcodec
=$
($_pkg_config --cflags libavcodec
)
6914 _ld_tmp
=$
($_pkg_config --libs libavcodec
)
6915 cc_check
$_inc_libavcodec $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libavcodec" \
6917 elif cc_check
-lavcodec $_ld_lm ; then
6918 extra_ldflags
="$extra_ldflags -lavcodec"
6922 def_libavcodec
='#undef CONFIG_LIBAVCODEC'
6923 test "$_libavcodec" = yes && def_libavcodec
='#define CONFIG_LIBAVCODEC 1'
6924 if test "$_libavcodec" = yes ; then
6925 codecmodules
="libavcodec $codecmodules"
6927 nocodecmodules
="libavcodec $nocodecmodules"
6929 echores
"$_libavcodec"
6931 echocheck
"FFmpeg libavformat"
6932 if test "$_libavformat" = auto
; then
6935 #include <libavformat/avformat.h>
6936 int main(void) { av_alloc_format_context(); return 0; }
6938 if $_pkg_config --exists libavformat
; then
6939 _inc_libavformat
=$
($_pkg_config --cflags libavformat
)
6940 _ld_tmp
=$
($_pkg_config --libs libavformat
)
6941 cc_check
$_inc_libavformat $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libavformat" \
6943 elif cc_check
$_ld_lm -lavformat ; then
6944 extra_ldflags
="$extra_ldflags -lavformat"
6948 def_libavformat
='#undef CONFIG_LIBAVFORMAT'
6949 test "$_libavformat" = yes && def_libavformat
='#define CONFIG_LIBAVFORMAT 1'
6950 echores
"$_libavformat"
6952 echocheck
"FFmpeg libpostproc"
6953 if test "$_libpostproc" = auto
; then
6956 #include <libpostproc/postprocess.h>
6957 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6959 if $_pkg_config --exists libpostproc
; then
6960 _inc_libpostproc
=$
($_pkg_config --cflags libpostproc
)
6961 _ld_tmp
=$
($_pkg_config --libs libpostproc
)
6962 cc_check
$_inc_libpostproc $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libpostproc" \
6964 elif cc_check
-lpostproc $_ld_lm ; then
6965 extra_ldflags
="$extra_ldflags -lpostproc"
6969 def_libpostproc
='#undef CONFIG_LIBPOSTPROC'
6970 test "$_libpostproc" = yes && def_libpostproc
='#define CONFIG_LIBPOSTPROC 1'
6971 echores
"$_libpostproc"
6973 echocheck
"FFmpeg libswscale"
6974 if test "$_libswscale" = auto
; then
6977 #include <libswscale/swscale.h>
6978 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6980 if $_pkg_config --exists libswscale
; then
6981 _inc_libswscale
=$
($_pkg_config --cflags libswscale
)
6982 _ld_tmp
=$
($_pkg_config --libs libswscale
)
6983 cc_check
$_inc_libswscale $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" extra_cflags
="$extra_cflags $_inc_libswscale" \
6985 elif cc_check
-lswscale ; then
6986 extra_ldflags
="$extra_ldflags -lswscale"
6990 def_libswscale
='#undef CONFIG_LIBSWSCALE'
6991 test "$_libswscale" = yes && def_libswscale
='#define CONFIG_LIBSWSCALE 1'
6992 echores
"$_libswscale"
6994 def_libswscale_internals
="#undef CONFIG_LIBSWSCALE_INTERNALS"
6995 if ! test -z "$_ffmpeg_source" ; then
6996 test "$_libswscale" = yes && def_libswscale_internals
="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals
=yes
6999 def_libavcodec_internals
="#undef CONFIG_LIBAVCODEC_INTERNALS"
7000 if ! test -z "$_ffmpeg_source" ; then
7001 test "$_libavcodec" = yes && def_libavcodec_internals
="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals
=yes
7004 echocheck
"libdv-0.9.5+"
7005 if test "$_libdv" = auto
; then
7008 #include <libdv/dv.h>
7009 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7011 cc_check
-ldv $_ld_pthread $_ld_lm && _libdv
=yes
7013 if test "$_libdv" = yes ; then
7014 def_libdv
='#define CONFIG_LIBDV095 1'
7015 extra_ldflags
="$extra_ldflags -ldv"
7016 codecmodules
="libdv $codecmodules"
7018 def_libdv
='#undef CONFIG_LIBDV095'
7019 nocodecmodules
="libdv $nocodecmodules"
7025 if test "$_xvid" = auto
; then
7029 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7031 for _ld_tmp
in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7032 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && _xvid
=yes && break
7036 if test "$_xvid" = yes ; then
7037 def_xvid
='#define CONFIG_XVID4 1'
7038 codecmodules
="xvid $codecmodules"
7040 def_xvid
='#undef CONFIG_XVID4'
7041 nocodecmodules
="xvid $nocodecmodules"
7046 if test "$_x264" = auto
; then
7048 #include <inttypes.h>
7051 #error We do not support old versions of x264. Get the latest from git.
7053 int main(void) { x264_encoder_open((void*)0); return 0; }
7056 for _ld_x264
in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7057 cc_check
$_ld_x264 && libs_mencoder
="$libs_mencoder $_ld_x264" && _x264
=yes && break
7061 if test "$_x264" = yes ; then
7062 def_x264
='#define CONFIG_X264 1'
7063 codecmodules
="x264 $codecmodules"
7065 def_x264
='#undef CONFIG_X264'
7066 nocodecmodules
="x264 $nocodecmodules"
7071 if test "$_libnut" = auto
; then
7074 nut_context_tt * nut;
7075 int main(void) { (void)nut_error(0); return 0; }
7078 cc_check
-lnut && _libnut
=yes
7081 if test "$_libnut" = yes ; then
7082 def_libnut
='#define CONFIG_LIBNUT 1'
7083 extra_ldflags
="$extra_ldflags -lnut"
7085 def_libnut
='#undef CONFIG_LIBNUT'
7089 # These VO checks must be done after libavcodec/libswscale one
7090 echocheck
"/dev/mga_vid"
7091 if test "$_mga" = auto
; then
7093 test -c /dev
/mga_vid
&& _mga
=yes
7095 if test "$_mga" = yes ; then
7096 def_mga
='#define CONFIG_MGA 1'
7097 vomodules
="mga $vomodules"
7099 def_mga
='#undef CONFIG_MGA'
7100 novomodules
="mga $novomodules"
7106 if test "$_xmga" = auto
; then
7108 test "$_x11" = yes && test "$_mga" = yes && _xmga
=yes
7110 if test "$_xmga" = yes ; then
7111 def_xmga
='#define CONFIG_XMGA 1'
7112 vomodules
="xmga $vomodules"
7114 def_xmga
='#undef CONFIG_XMGA'
7115 novomodules
="xmga $novomodules"
7120 if test "$_zr" = auto
; then
7121 #36067's seem to identify themselves as 36057PQC's, so the line
7122 #below should work for 36067's and 36057's.
7123 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc
/pci
; then
7129 if test "$_zr" = yes ; then
7130 if test "$_libavcodec_internals" = yes ; then
7131 def_zr
='#define CONFIG_ZR 1'
7132 vomodules
="zr zr2 $vomodules"
7134 res_comment
="libavcodec internal headers are required by zr, sorry"
7135 novomodules
="zr $novomodules"
7136 def_zr
='#undef CONFIG_ZR'
7139 def_zr
='#undef CONFIG_ZR'
7140 novomodules
="zr zr2 $novomodules"
7144 # mencoder requires (optional) those libs: libmp3lame
7145 if test "$_mencoder" != no
; then
7147 echocheck
"libmp3lame"
7148 def_mp3lame_preset
='#undef CONFIG_MP3LAME_PRESET'
7149 def_mp3lame_preset_medium
='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7150 if test "$_mp3lame" = auto
; then
7153 #include <lame/lame.h>
7154 int main(void) { lame_version_t lv; (void) lame_init();
7155 get_lame_version_numerical(&lv);
7158 cc_check
-lmp3lame $_ld_lm && _mp3lame
=yes
7160 if test "$_mp3lame" = yes ; then
7161 def_mp3lame
="#define CONFIG_MP3LAME 1"
7162 _ld_mp3lame
=-lmp3lame
7163 libs_mencoder
="$libs_mencoder $_ld_mp3lame"
7165 #include <lame/lame.h>
7166 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7168 cc_check
$_ld_mp3lame $_ld_lm && def_mp3lame_preset
="#define CONFIG_MP3LAME_PRESET 1"
7170 #include <lame/lame.h>
7171 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7173 cc_check
$_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium
="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7175 def_mp3lame
='#undef CONFIG_MP3LAME'
7179 fi # test "$_mencoder" != no
7181 echocheck
"mencoder"
7182 if test "$_mencoder" = yes ; then
7183 def_muxers
='#define CONFIG_MUXERS 1'
7185 def_muxers
='#define CONFIG_MUXERS 0'
7187 echores
"$_mencoder"
7190 echocheck
"UnRAR executable"
7191 if test "$_unrar_exec" = auto
; then
7193 mingw32
&& _unrar_exec
="no"
7195 if test "$_unrar_exec" = yes ; then
7196 def_unrar_exec
='#define CONFIG_UNRAR_EXEC 1'
7198 def_unrar_exec
='#undef CONFIG_UNRAR_EXEC'
7200 echores
"$_unrar_exec"
7202 echocheck
"TV interface"
7203 if test "$_tv" = yes ; then
7204 def_tv
='#define CONFIG_TV 1'
7205 inputmodules
="tv $inputmodules"
7207 noinputmodules
="tv $noinputmodules"
7208 def_tv
='#undef CONFIG_TV'
7213 if freebsd || netbsd || openbsd || dragonfly || bsdos
; then
7214 echocheck
"*BSD BT848 bt8xx header"
7216 for file in "machine/ioctl_bt848.h" \
7217 "dev/bktr/ioctl_bt848.h" \
7218 "dev/video/bktr/ioctl_bt848.h" \
7219 "dev/ic/bt8xx.h" ; do
7221 #include <sys/types.h>
7222 #include <sys/ioctl.h>
7224 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7228 _ioctl_bt848_h_name
="$file"
7232 if test "$_ioctl_bt848_h" = yes ; then
7233 def_ioctl_bt848_h_name
="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7234 res_comment
="using $_ioctl_bt848_h_name"
7236 def_ioctl_bt848_h_name
="#undef IOCTL_BT848_H_NAME"
7238 echores
"$_ioctl_bt848_h"
7240 echocheck
"*BSD ioctl_meteor.h"
7242 for file in "machine/ioctl_meteor.h" \
7243 "dev/bktr/ioctl_meteor.h" \
7244 "dev/video/bktr/ioctl_meteor.h" ; do
7246 #include <sys/types.h>
7248 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7252 _ioctl_meteor_h_name
="$file"
7256 if test "$_ioctl_meteor_h" = yes ; then
7257 def_ioctl_meteor_h_name
="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7258 res_comment
="using $_ioctl_meteor_h_name"
7260 def_ioctl_meteor_h_name
="#undef IOCTL_METEOR_H_NAME"
7262 echores
"$_ioctl_meteor_h"
7264 echocheck
"*BSD BrookTree 848 TV interface"
7265 if test "$_tv_bsdbt848" = auto
; then
7267 if test "$_tv" = yes ; then
7269 #include <sys/types.h>
7270 $def_ioctl_meteor_h_name
7271 $def_ioctl_bt848_h_name
7272 #ifdef IOCTL_METEOR_H_NAME
7273 #include IOCTL_METEOR_H_NAME
7275 #ifdef IOCTL_BT848_H_NAME
7276 #include IOCTL_BT848_H_NAME
7279 ioctl(0, METEORSINPUT, 0);
7280 ioctl(0, TVTUNER_GETFREQ, 0);
7284 cc_check
&& _tv_bsdbt848
=yes
7287 if test "$_tv_bsdbt848" = yes ; then
7288 def_tv_bsdbt848
='#define CONFIG_TV_BSDBT848 1'
7289 inputmodules
="tv-bsdbt848 $inputmodules"
7291 def_tv_bsdbt848
='#undef CONFIG_TV_BSDBT848'
7292 noinputmodules
="tv-bsdbt848 $noinputmodules"
7294 echores
"$_tv_bsdbt848"
7295 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7298 echocheck
"DirectShow TV interface"
7299 if test "$_tv_dshow" = auto
; then
7301 if test "$_tv" = yes && win32
; then
7306 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7310 cc_check
-lole32 -luuid && _tv_dshow
=yes
7313 if test "$_tv_dshow" = yes ; then
7314 inputmodules
="tv-dshow $inputmodules"
7315 def_tv_dshow
='#define CONFIG_TV_DSHOW 1'
7316 extra_ldflags
="$extra_ldflags -lole32 -luuid"
7318 noinputmodules
="tv-dshow $noinputmodules"
7319 def_tv_dshow
='#undef CONFIG_TV_DSHOW'
7321 echores
"$_tv_dshow"
7324 echocheck
"Video 4 Linux TV interface"
7325 if test "$_tv_v4l1" = auto
; then
7327 if test "$_tv" = yes && linux
; then
7328 header_check linux
/videodev.h
&& _tv_v4l1
=yes
7331 if test "$_tv_v4l1" = yes ; then
7334 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7335 def_tv_v4l1
='#define CONFIG_TV_V4L1 1'
7336 inputmodules
="tv-v4l $inputmodules"
7338 noinputmodules
="tv-v4l1 $noinputmodules"
7339 def_tv_v4l
='#undef CONFIG_TV_V4L'
7344 echocheck
"Video 4 Linux 2 TV interface"
7345 if test "$_tv_v4l2" = auto
; then
7347 if test "$_tv" = yes && linux
; then
7348 header_check linux
/videodev2.h
&& _tv_v4l2
=yes
7351 if test "$_tv_v4l2" = yes ; then
7354 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7355 def_tv_v4l2
='#define CONFIG_TV_V4L2 1'
7356 inputmodules
="tv-v4l2 $inputmodules"
7358 noinputmodules
="tv-v4l2 $noinputmodules"
7359 def_tv_v4l2
='#undef CONFIG_TV_V4L2'
7364 echocheck
"Radio interface"
7365 if test "$_radio" = yes ; then
7366 def_radio
='#define CONFIG_RADIO 1'
7367 inputmodules
="radio $inputmodules"
7368 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7371 if test "$_radio_capture" = yes ; then
7373 def_radio_capture
="#define CONFIG_RADIO_CAPTURE 1"
7375 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7378 noinputmodules
="radio $noinputmodules"
7379 def_radio
='#undef CONFIG_RADIO'
7380 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7384 echocheck
"Capture for Radio interface"
7385 echores
"$_radio_capture"
7387 echocheck
"Video 4 Linux 2 Radio interface"
7388 if test "$_radio_v4l2" = auto
; then
7390 if test "$_radio" = yes && linux
; then
7391 header_check linux
/videodev2.h
&& _radio_v4l2
=yes
7394 if test "$_radio_v4l2" = yes ; then
7395 def_radio_v4l2
='#define CONFIG_RADIO_V4L2 1'
7397 def_radio_v4l2
='#undef CONFIG_RADIO_V4L2'
7399 echores
"$_radio_v4l2"
7401 echocheck
"Video 4 Linux Radio interface"
7402 if test "$_radio_v4l" = auto
; then
7404 if test "$_radio" = yes && linux
; then
7405 header_check linux
/videodev.h
&& _radio_v4l
=yes
7408 if test "$_radio_v4l" = yes ; then
7409 def_radio_v4l
='#define CONFIG_RADIO_V4L 1'
7411 def_radio_v4l
='#undef CONFIG_RADIO_V4L'
7413 echores
"$_radio_v4l"
7415 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7416 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto
; then
7417 echocheck
"*BSD BrookTree 848 Radio interface"
7420 #include <sys/types.h>
7421 $def_ioctl_bt848_h_name
7422 #ifdef IOCTL_BT848_H_NAME
7423 #include IOCTL_BT848_H_NAME
7425 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7427 cc_check
&& _radio_bsdbt848
=yes
7428 echores
"$_radio_bsdbt848"
7429 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7431 if test "$_radio_bsdbt848" = yes ; then
7432 def_radio_bsdbt848
='#define CONFIG_RADIO_BSDBT848 1'
7434 def_radio_bsdbt848
='#undef CONFIG_RADIO_BSDBT848'
7437 if test "$_radio_v4l" = no
&& test "$_radio_v4l2" = no
&& \
7438 test "$_radio_bsdbt848" = no
&& test "$_radio" = yes ; then
7439 die
"Radio driver requires BSD BT848, V4L or V4L2!"
7442 echocheck
"Video 4 Linux 2 MPEG PVR interface"
7443 if test "$_pvr" = auto
; then
7445 if test "$_tv_v4l2" = yes && linux
; then
7447 #include <linux/videodev2.h>
7448 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7450 cc_check
&& _pvr
=yes
7453 if test "$_pvr" = yes ; then
7454 def_pvr
='#define CONFIG_PVR 1'
7455 inputmodules
="pvr $inputmodules"
7457 noinputmodules
="pvr $noinputmodules"
7458 def_pvr
='#undef CONFIG_PVR'
7464 if ! beos
&& test "$_ftp" = yes ; then
7465 def_ftp
='#define CONFIG_FTP 1'
7466 inputmodules
="ftp $inputmodules"
7468 noinputmodules
="ftp $noinputmodules"
7469 def_ftp
='#undef CONFIG_FTP'
7473 echocheck
"vstream client"
7474 if test "$_vstream" = auto
; then
7477 #include <vstream-client.h>
7478 void vstream_error(const char *format, ... ) {}
7479 int main(void) { vstream_start(); return 0; }
7481 cc_check
-lvstream-client && _vstream
=yes
7483 if test "$_vstream" = yes ; then
7484 def_vstream
='#define CONFIG_VSTREAM 1'
7485 inputmodules
="vstream $inputmodules"
7486 extra_ldflags
="$extra_ldflags -lvstream-client"
7488 noinputmodules
="vstream $noinputmodules"
7489 def_vstream
='#undef CONFIG_VSTREAM'
7494 echocheck
"OSD menu"
7495 if test "$_menu" = yes ; then
7496 def_menu
='#define CONFIG_MENU 1'
7497 test $_dvbin = "yes" && _menu_dvbin
=yes
7499 def_menu
='#undef CONFIG_MENU'
7505 echocheck
"Subtitles sorting"
7506 if test "$_sortsub" = yes ; then
7507 def_sortsub
='#define CONFIG_SORTSUB 1'
7509 def_sortsub
='#undef CONFIG_SORTSUB'
7514 echocheck
"XMMS inputplugin support"
7515 if test "$_xmms" = yes ; then
7516 if ( xmms-config
--version ) >/dev
/null
2>&1 ; then
7517 _xmmsplugindir
=$
(xmms-config
--input-plugin-dir)
7518 _xmmslibdir
=$
(xmms-config
--exec-prefix)/lib
7520 _xmmsplugindir
=/usr
/lib
/xmms
/Input
7521 _xmmslibdir
=/usr
/lib
7524 def_xmms
='#define CONFIG_XMMS 1'
7526 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7528 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7531 def_xmms
='#undef CONFIG_XMMS'
7535 if test "$_charset" != "noconv" ; then
7536 def_charset
="#define MSG_CHARSET \"$_charset\""
7538 def_charset
="#undef MSG_CHARSET"
7542 #############################################################################
7544 echocheck
"automatic gdb attach"
7545 if test "$_crash_debug" = yes ; then
7546 def_crash_debug
='#define CONFIG_CRASH_DEBUG 1'
7548 def_crash_debug
='#undef CONFIG_CRASH_DEBUG'
7551 echores
"$_crash_debug"
7553 echocheck
"compiler support for noexecstack"
7554 if cflag_check
-Wl,-z,noexecstack
; then
7555 extra_ldflags
="-Wl,-z,noexecstack $extra_ldflags"
7561 echocheck
"linker support for --nxcompat --no-seh --dynamicbase"
7562 if cflag_check
"-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7563 extra_ldflags
="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7570 # Dynamic linking flags
7571 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7573 freebsd || netbsd || openbsd || dragonfly || bsdos
&& _ld_dl_dynamic
='-rdynamic'
7574 if test "$_real" = yes ||
test "$_xanim" = yes && ! win32
&& ! qnx
&& ! darwin
&& ! os2
&& ! sunos
; then
7575 _ld_dl_dynamic
='-rdynamic'
7578 extra_ldflags
="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7579 bsdos
&& extra_ldflags
="$extra_ldflags -ldvd"
7580 (netbsd || openbsd
) && x86_32
&& extra_ldflags
="$extra_ldflags -li386"
7582 def_debug
='#undef MP_DEBUG'
7583 test "$_debug" != "" && def_debug
='#define MP_DEBUG 1'
7586 echocheck
"joystick"
7587 def_joystick
='#undef CONFIG_JOYSTICK'
7588 if test "$_joystick" = yes ; then
7590 # TODO add some check
7591 def_joystick
='#define CONFIG_JOYSTICK 1'
7594 res_comment
="unsupported under $system_name"
7597 echores
"$_joystick"
7600 if test "$_lirc" = auto
; then
7602 header_check lirc
/lirc_client.h
-llirc_client && _lirc
=yes
7604 if test "$_lirc" = yes ; then
7605 def_lirc
='#define CONFIG_LIRC 1'
7606 libs_mplayer
="$libs_mplayer -llirc_client"
7608 def_lirc
='#undef CONFIG_LIRC'
7613 if test "$_lircc" = auto
; then
7615 header_check lirc
/lircc.h
-llircc && _lircc
=yes
7617 if test "$_lircc" = yes ; then
7618 def_lircc
='#define CONFIG_LIRCC 1'
7619 libs_mplayer
="$libs_mplayer -llircc"
7621 def_lircc
='#undef CONFIG_LIRCC'
7626 # Detect maemo development platform libraries availability (http://www.maemo.org),
7627 # they are used when run on Nokia 770|8x0
7628 echocheck
"maemo (Nokia 770|8x0)"
7629 if test "$_maemo" = auto
; then
7632 #include <libosso.h>
7633 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7635 cc_check $
($_pkg_config --cflags --libs libosso
2>/dev
/null
) && _maemo
=yes
7637 if test "$_maemo" = yes ; then
7638 def_maemo
='#define CONFIG_MAEMO 1'
7639 extra_cflags
="$extra_cflags $($_pkg_config --cflags libosso)"
7640 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7642 def_maemo
='#undef CONFIG_MAEMO'
7647 #############################################################################
7649 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7650 # the OMF format needs to come after the 'extern symbol prefix' check, which
7653 extra_ldflags
="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7656 # linker paths should be the same for mencoder and mplayer
7658 for I
in $libs_mplayer ; do
7659 _tmp
=$
(echo $I |
sed -e 's/^-L.*$//')
7660 if test -z "$_tmp" ; then
7661 extra_ldflags
="$extra_ldflags $I"
7663 _ld_tmp
="$_ld_tmp $I"
7666 libs_mplayer
=$_ld_tmp
7669 #############################################################################
7670 # 64 bit file offsets?
7671 if test "$_largefiles" = yes || freebsd
; then
7672 CFLAGS
="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7673 if test "$_dvdread" = yes ||
test "$_libdvdcss_internal" = yes ; then
7674 # dvdread support requires this (for off64_t)
7675 CFLAGS
="$CFLAGS -D_LARGEFILE64_SOURCE"
7679 CXXFLAGS
=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7681 # This must be the last test to be performed. Any other tests following it
7682 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7683 # against libdvdread (to permit MPlayer to use its own copy of the library).
7684 # So any compilation using the flags added here but not linking against
7685 # libdvdread can fail.
7686 echocheck
"DVD support (libdvdnav)"
7687 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7691 if test "$_dvdnav" = auto
; then
7692 if test "$_dvdread_internal" = yes ; then
7695 res_comment
="internal"
7697 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav
=no
7700 if test "$_dvdnav" = auto
; then
7702 #include <inttypes.h>
7703 #include <dvdnav/dvdnav.h>
7704 int main(void) { dvdnav_t *dvd=0; return 0; }
7707 _dvdnavdir
=$
($_dvdnavconfig --cflags)
7708 _dvdnavlibs
=$
($_dvdnavconfig --libs)
7709 cc_check
$_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav
=yes
7711 if test "$_dvdnav" = yes ; then
7713 def_dvdnav
='#define CONFIG_DVDNAV 1'
7714 if test "$dvdnav_internal" = yes ; then
7715 cflags_libdvdnav
="-Ilibdvdnav"
7716 inputmodules
="dvdnav(internal) $inputmodules"
7718 extra_cflags
="$extra_cflags $($_dvdnavconfig --cflags)"
7719 extra_ldflags
="$extra_ldflags $($_dvdnavconfig --minilibs)"
7720 inputmodules
="dvdnav $inputmodules"
7723 def_dvdnav
='#undef CONFIG_DVDNAV'
7724 noinputmodules
="dvdnav $noinputmodules"
7728 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7729 # Read dvdnav comment above.
7732 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
7733 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
7735 for part
in $list; do
7736 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
7737 echo "${nprefix}_$part = yes"
7742 #############################################################################
7743 echo "Creating config.mak"
7744 cat > config.mak
<< EOF
7745 # -------- Generated by configure -----------
7747 # Ensure that locale settings do not interfere with shell commands.
7750 CONFIGURATION = $configuration
7753 DOC_LANGS = $language_doc
7754 DOC_LANG_ALL = $doc_lang_all
7755 MAN_LANGS = $language_man
7756 MAN_LANG_ALL = $man_lang_all
7757 MSG_LANGS = $language_msg
7758 MSG_LANG_ALL = $msg_lang_all
7760 prefix = \$(DESTDIR)$_prefix
7761 BINDIR = \$(DESTDIR)$_bindir
7762 DATADIR = \$(DESTDIR)$_datadir
7763 LIBDIR = \$(DESTDIR)$_libdir
7764 MANDIR = \$(DESTDIR)$_mandir
7765 CONFDIR = \$(DESTDIR)$_confdir
7766 LOCALEDIR = \$(DESTDIR)$_localedir
7774 INSTALLSTRIP = $_install_strip
7777 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7778 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7779 DEPFLAGS = $DEPFLAGS
7781 CFLAGS_DHAHELPER = $cflags_dhahelper
7782 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7783 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7784 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7785 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7786 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7787 CFLAGS_STACKREALIGN = $cflags_stackrealign
7788 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7789 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7791 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7792 EXTRALIBS_MPLAYER = $libs_mplayer
7793 EXTRALIBS_MENCODER = $libs_mencoder
7802 $(mak_enable "$arch_all" "$arch" ARCH)
7803 $(mak_enable "$subarch_all" "$subarch" ARCH)
7804 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7806 MENCODER = $_mencoder
7809 NEED_GETTIMEOFDAY = $_need_gettimeofday
7810 NEED_GLOB = $_need_glob
7811 NEED_MMAP = $_need_mmap
7812 NEED_SETENV = $_need_setenv
7813 NEED_SHMEM = $_need_shmem
7814 NEED_STRSEP = $_need_strsep
7815 NEED_SWAB = $_need_swab
7816 NEED_VSSCANF = $_need_vsscanf
7824 APPLE_IR = $_apple_ir
7825 APPLE_REMOTE = $_apple_remote
7827 AUDIO_INPUT = $_audio_input
7828 BITMAP_FONT = $_bitmap_font
7833 COREAUDIO = $_coreaudio
7834 COREVIDEO = $_corevideo
7838 DIRECT3D = $_direct3d
7839 DIRECTFB = $_directfb
7843 DVDNAV_INTERNAL = $dvdnav_internal
7845 DVDREAD_INTERNAL = $_dvdread_internal
7851 FAAD_INTERNAL = $_faad_internal
7852 FASTMEMCPY = $_fastmemcpy
7854 FREETYPE = $_freetype
7859 GL_WIN32 = $_gl_win32
7862 MATRIXVIEW = $matrixview
7863 HAVE_POSIX_SELECT = $_posix_select
7864 HAVE_SYS_MMAN_H = $_mman
7867 JOYSTICK = $_joystick
7874 LIBBLURAY = $_bluray
7878 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7882 LIBMENU_DVBIN = $_menu_dvbin
7883 LIBMPEG2 = $_libmpeg2
7884 LIBNEMESI = $_nemesi
7886 LIBSMBCLIENT = $_smb
7887 LIBTHEORA = $_theora
7890 MACOSX_FINDER = $_macosx_finder
7897 MUSEPACK = $_musepack
7899 NATIVE_RTSP = $_native_rtsp
7900 NETWORKING = $networking
7903 PE_EXECUTABLE = $_pe_executable
7906 PRIORITY = $_priority
7910 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7911 QTX_EMULATION = $_qtx_emulation
7914 RADIO_CAPTURE=$_radio_capture
7915 REAL_CODECS = $_real
7919 STREAM_CACHE = $_stream_cache
7920 SGIAUDIO = $_sgiaudio
7921 SUNAUDIO = $_sunaudio
7927 TREMOR_INTERNAL = $_tremor_internal
7929 TV_BSDBT848 = $_tv_bsdbt848
7930 TV_DSHOW = $_tv_dshow
7935 UNRAR_EXEC = $_unrar_exec
7941 VIDIX_PCIDB = $_vidix_pcidb_val
7942 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7943 VIDIX_IVTV=$_vidix_drv_ivtv
7944 VIDIX_MACH64=$_vidix_drv_mach64
7945 VIDIX_MGA=$_vidix_drv_mga
7946 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7947 VIDIX_NVIDIA=$_vidix_drv_nvidia
7948 VIDIX_PM2=$_vidix_drv_pm2
7949 VIDIX_PM3=$_vidix_drv_pm3
7950 VIDIX_RADEON=$_vidix_drv_radeon
7951 VIDIX_RAGE128=$_vidix_drv_rage128
7952 VIDIX_S3=$_vidix_drv_s3
7953 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7954 VIDIX_SIS=$_vidix_drv_sis
7955 VIDIX_UNICHROME=$_vidix_drv_unichrome
7959 WIN32DLL = $_win32dll
7960 WIN32WAVEOUT = $_win32waveout
7961 WIN32_EMULATION = $_win32_emulation
7962 WINVIDIX = $winvidix
7965 XANIM_CODECS = $_xanim
7967 XMMS_PLUGINS = $_xmms
7973 YUV4MPEG = $_yuv4mpeg
7977 LIBAVUTIL = $_libavutil
7978 LIBAVCODEC = $_libavcodec
7979 LIBAVFORMAT = $_libavformat
7980 LIBPOSTPROC = $_libpostproc
7981 LIBSWSCALE = $_libswscale
7982 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7983 LIBSWSCALE_INTERNALS = $_libswscale_internals
7984 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7988 YASMFLAGS = $YASMFLAGS
7990 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7994 CONFIG_H264DSP = yes
7999 CONFIG_BZLIB = $bzlib
8000 CONFIG_ENCODERS = yes
8002 CONFIG_MLIB = $_mlib
8003 CONFIG_MUXERS = $_mencoder
8004 CONFIG_VDPAU = $_vdpau
8005 CONFIG_XVMC = $_xvmc
8006 CONFIG_ZLIB = $_zlib
8008 HAVE_PTHREADS = $_pthreads
8010 HAVE_W32THREADS = $_w32threads
8011 HAVE_YASM = $have_yasm
8015 #############################################################################
8017 ff_config_enable
() {
8018 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
8019 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
8021 test -z "$_nprefix" && _nprefix
='CONFIG'
8022 for part
in $list; do
8023 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
8024 echo "#define ${_nprefix}_$part 1"
8026 echo "#define ${_nprefix}_$part 0"
8031 echo "Creating config.h"
8033 /*----------------------------------------------------------------------------
8034 ** This file has been automatically generated by configure any changes in it
8035 ** will be lost when you run configure again.
8036 ** Instead of modifying definitions here, use the --enable/--disable options
8037 ** of the configure script! See ./configure --help for details.
8038 *---------------------------------------------------------------------------*/
8040 #ifndef MPLAYER_CONFIG_H
8041 #define MPLAYER_CONFIG_H
8043 /* Undefine this if you do not want to select mono audio (left or right)
8044 with a stereo MPEG layer 2/3 audio stream. The command line option
8045 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8046 right-only), with 0 being the default.
8048 #define CONFIG_FAKE_MONO 1
8050 /* set up audio OUTBURST. Do not change this! */
8051 #define OUTBURST 512
8053 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8055 #undef FAST_OSD_TABLE
8057 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8058 #define MPEG12_POSTPROC 1
8059 #define ATTRIBUTE_ALIGNED_MAX 16
8063 #define CONFIGURATION "$configuration"
8065 #define MPLAYER_DATADIR "$_datadir"
8066 #define MPLAYER_CONFDIR "$_confdir"
8067 #define MPLAYER_LIBDIR "$_libdir"
8068 #define MPLAYER_LOCALEDIR "$_localedir"
8072 /* definitions needed by included libraries */
8073 #define HAVE_INTTYPES_H 1
8074 /* libmpeg2 + FFmpeg */
8077 #define HAVE_ERRNO_H 1
8078 /* libdvdcss + libdvdread */
8079 #define HAVE_LIMITS_H 1
8080 /* libdvdcss + libfaad2 */
8081 #define HAVE_UNISTD_H 1
8082 /* libfaad2 + libdvdread */
8083 #define STDC_HEADERS 1
8084 #define HAVE_MEMCPY 1
8086 #define HAVE_STRING_H 1
8087 #define HAVE_STRINGS_H 1
8088 #define HAVE_SYS_STAT_H 1
8089 #define HAVE_SYS_TYPES_H 1
8091 #define READ_CACHE_TRACE 0
8093 #define HAVE_DLFCN_H 1
8097 /* system headers */
8099 $def_alsa_asoundlib_h
8103 $def_mman_has_map_failed
8105 $def_sys_asoundlib_h
8106 $def_sys_soundcard_h
8113 /* system functions */
8136 /* system-specific features */
8151 $def_restrict_keyword
8156 /* configurable options */
8160 $def_dynamic_plugins
8163 $def_runtime_cpudetection
8171 #define __CPU__ $iproc
8175 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8176 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8177 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8180 /* Blu-ray/DVD/VCD/CD */
8181 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8182 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8203 /* codec libraries */
8215 $def_mp3lame_preset_medium
8240 #define BINARY_CODECS_PATH "$_codecsdir"
8241 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8244 /* Audio output drivers */
8260 $def_ossaudio_devdsp
8261 $def_ossaudio_devmixer
8274 $def_ioctl_bt848_h_name
8275 $def_ioctl_meteor_h_name
8328 $def_directfb_version
8365 $def_vidix_drv_cyberblade
8367 $def_vidix_drv_mach64
8369 $def_vidix_drv_mga_crtc2
8370 $def_vidix_drv_nvidia
8372 $def_vidix_drv_radeon
8373 $def_vidix_drv_rage128
8375 $def_vidix_drv_sh_veu
8377 $def_vidix_drv_unichrome
8400 $def_libavcodec_internals
8401 $def_libswscale_internals
8403 #define CONFIG_DECODERS 1
8404 #define CONFIG_ENCODERS 1
8405 #define CONFIG_DEMUXERS 1
8433 #define CONFIG_FASTDIV 0
8434 #define CONFIG_FFSERVER 0
8435 #define CONFIG_GPL 1
8436 #define CONFIG_GRAY 0
8437 #define CONFIG_HARDCODED_TABLES 0
8438 #define CONFIG_LIBVORBIS 0
8439 #define CONFIG_POWERPC_PERF 0
8440 #define CONFIG_SMALL 0
8441 #define CONFIG_SWSCALE_ALPHA 1
8443 #define HAVE_ATTRIBUTE_PACKED 1
8444 #define HAVE_GETHRTIME 0
8445 #define HAVE_INLINE_ASM 1
8446 #define HAVE_LDBRX 0
8447 #define HAVE_POLL_H 1
8448 #define HAVE_PPC4XX 0
8449 #define HAVE_VFP_ARGS 1
8450 #define HAVE_VIRTUALALLOC 0
8452 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8453 #define CONFIG_AANDCT 1
8454 #define CONFIG_DCT 1
8455 #define CONFIG_DWT 1
8456 #define CONFIG_FFT 1
8457 #define CONFIG_GOLOMB 1
8458 #define CONFIG_H264DSP 1
8459 #define CONFIG_LPC 1
8460 #define CONFIG_MDCT 1
8461 #define CONFIG_RDFT 1
8463 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8465 #define HAVE_EBP_AVAILABLE 1
8467 #define HAVE_EBP_AVAILABLE 0
8470 #define CONFIG_H263_VAAPI_HWACCEL 0
8471 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8472 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8473 #define CONFIG_H264_VAAPI_HWACCEL 0
8474 #define CONFIG_VC1_VAAPI_HWACCEL 0
8475 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8477 #endif /* MPLAYER_CONFIG_H */
8480 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8481 cmp -s "$TMPH" config.h ||
mv -f "$TMPH" config.h
8483 #############################################################################
8485 .
/version.sh
`$_cc -dumpversion`
8489 Config files successfully generated by ./configure $configuration !
8491 Install prefix: $_prefix
8492 Data directory: $_datadir
8493 Config direct.: $_confdir
8495 Byte order: $_byte_order
8496 Optimizing for: $_optimizing
8499 Messages (in addition to English): $language_msg
8500 Manual pages: $language_man
8501 Documentation: $language_doc
8503 Enabled optional drivers:
8504 Input: $inputmodules
8505 Codecs: $codecmodules
8506 Audio output: $aomodules
8507 Video output: $vomodules
8509 Disabled optional drivers:
8510 Input: $noinputmodules
8511 Codecs: $nocodecmodules
8512 Audio output: $noaomodules
8513 Video output: $novomodules
8515 'config.h' and 'config.mak' contain your configuration options.
8516 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8517 compile *** DO NOT REPORT BUGS if you tweak these files ***
8519 'make' will now compile MPlayer and 'make install' will install it.
8520 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8525 if test "$_mtrr" = yes ; then
8526 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8532 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8533 operating system ($system_name). You may encounter a few files that cannot
8534 be played due to missing open source video/audio codec support.
8541 Check $TMPLOG if you wonder why an autodetection failed (make sure
8542 development headers/packages are installed).
8544 NOTE: The --enable-* parameters unconditionally force options on, completely
8545 skipping autodetection. This behavior is unlike what you may be used to from
8546 autoconf-based configure scripts that can decide to override you. This greater
8547 level of control comes at a price. You may have to provide the correct compiler
8548 and linker flags yourself.
8549 If you used one of these options (except --enable-menu and similar ones that
8550 turn on internal features) and experience a compilation or linking failure,
8551 make sure you have passed the necessary compiler/linker flags to configure.
8553 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8557 if test "$warn_cflags" = yes; then
8560 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8563 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8565 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8566 To do so, execute 'CFLAGS= ./configure <options>'
8572 rm -rf "$mplayer_tmpdir"