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 $source $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
69 $_cc $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
="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2427 elif test -z "$CFLAGS" ; then
2428 if test "$cc_vendor" = "intel" ; then
2429 CFLAGS
="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2430 elif test "$cc_vendor" = "sun" ; then
2431 CFLAGS
="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2432 elif test "$cc_vendor" = "clang"; then
2433 CFLAGS
="-O2 $_march $_pipe"
2434 elif test "$cc_vendor" != "gnu" ; then
2435 CFLAGS
="-O2 $_march $_mcpu $_pipe"
2437 CFLAGS
="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2438 extra_ldflags
="$extra_ldflags -ffast-math"
2444 if test "$cc_vendor" = "gnu" ; then
2445 cflag_check
-std=gnu99
&& CFLAGS
="-std=gnu99 $CFLAGS"
2446 cflag_check
-Wno-pointer-sign && CFLAGS
="-Wno-pointer-sign $CFLAGS"
2447 cflag_check
-Wdisabled-optimization && CFLAGS
="-Wdisabled-optimization $CFLAGS"
2448 cflag_check
-Wundef && CFLAGS
="-Wundef $CFLAGS"
2449 cflag_check
-Wmissing-prototypes && CFLAGS
="-Wmissing-prototypes $CFLAGS"
2450 cflag_check
-Wstrict-prototypes && CFLAGS
="-Wstrict-prototypes $CFLAGS"
2452 CFLAGS
="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2455 cflag_check
-mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer
="-mno-omit-leaf-frame-pointer"
2456 cflag_check
-MD -MP && DEPFLAGS
="-MD -MP $CFLAGS"
2459 if test -n "$LDFLAGS" ; then
2460 extra_ldflags
="$extra_ldflags $LDFLAGS"
2462 elif test "$cc_vendor" = "intel" ; then
2463 extra_ldflags
="$extra_ldflags -i-static"
2465 if test -n "$CPPFLAGS" ; then
2466 extra_cflags
="$extra_cflags $CPPFLAGS"
2473 # Checking assembler (_as) compatibility...
2474 # Added workaround for older as that reads from stdin by default - atmos
2475 as_version
=$
(echo '' |
$_as -version 2>&1 |
sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2476 echocheck
"assembler ($_as $as_version)"
2478 _pref_as_version
='2.9.1'
2480 if test "$_mmx" = yes ; then
2481 echo 'emms' >> $TMPS
2483 if test "$_3dnow" = yes ; then
2484 _pref_as_version
='2.10.1'
2485 echo 'femms' >> $TMPS
2487 if test "$_3dnowext" = yes ; then
2488 _pref_as_version
='2.10.1'
2489 echo 'pswapd %mm0, %mm0' >> $TMPS
2491 if test "$_mmxext" = yes ; then
2492 _pref_as_version
='2.10.1'
2493 echo 'movntq %mm0, (%eax)' >> $TMPS
2495 if test "$_sse" = yes ; then
2496 _pref_as_version
='2.10.1'
2497 echo 'xorps %xmm0, %xmm0' >> $TMPS
2499 #if test "$_sse2" = yes ; then
2500 # _pref_as_version='2.11'
2501 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2503 if test "$_cmov" = yes ; then
2504 _pref_as_version
='2.10.1'
2505 echo 'cmovb %eax, %ebx' >> $TMPS
2507 if test "$_ssse3" = yes ; then
2508 _pref_as_version
='2.16.92'
2509 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2511 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 || as_verc_fail
=yes
2513 if test "$as_verc_fail" != yes ; then
2516 res_comment
="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2518 die
"obsolete binutils version"
2523 echocheck
".align is a power of two"
2524 if test "$_asmalign_pot" = auto
; then
2527 int main(void) { __asm__ (".align 3"); return 0; }
2529 cc_check
&& _asmalign_pot
=yes
2531 if test "$_asmalign_pot" = "yes" ; then
2532 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2534 def_asmalign_pot
='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2536 echores
$_asmalign_pot
2543 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2544 #error PIC not enabled
2549 cc_check
&& pic
=yes && extra_cflags
="$extra_cflags -DPIC"
2554 echocheck
"10 assembler operands"
2556 def_ten_operands
='#define HAVE_TEN_OPERANDS 0'
2562 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2567 cc_check
&& ten_operands
=yes && def_ten_operands
='#define HAVE_TEN_OPERANDS 1'
2568 echores
$ten_operands
2570 echocheck
"ebx availability"
2572 def_ebx_available
='#define HAVE_EBX_AVAILABLE 0'
2579 // just adding ebx to clobber list seems unreliable with some
2580 // compilers, e.g. Haiku's gcc 2.95
2582 // and the above check does not work for OSX 64 bit...
2583 __asm__ volatile("":::"%ebx");
2587 cc_check
&& ebx_available
=yes && def_ebx_available
='#define HAVE_EBX_AVAILABLE 1'
2588 echores
$ebx_available
2592 if test -z "$YASMFLAGS" ; then
2594 x86_64
&& objformat
="macho64" || objformat
="macho"
2600 # currently tested for Linux x86, x86_64
2601 YASMFLAGS
="-f $objformat"
2602 x86_64
&& YASMFLAGS
="$YASMFLAGS -DARCH_X86_64 -m amd64"
2603 test "$pic" = "yes" && YASMFLAGS
="$YASMFLAGS -DPIC"
2604 case "$objformat" in
2605 elf
) test $_debug && YASMFLAGS
="$YASMFLAGS -g dwarf2" ;;
2606 *) YASMFLAGS
="$YASMFLAGS -DPREFIX" ;;
2612 echo "pabsw xmm0, xmm0" > $TMPS
2613 yasm_check || _yasm
=""
2614 if test $_yasm ; then
2615 def_yasm
='#define HAVE_YASM 1'
2619 def_yasm
='#define HAVE_YASM 0'
2625 def_bswap
='#define HAVE_BSWAP 0'
2626 echo 'bswap %eax' > $TMPS
2627 $_as $TMPS -o $TMPEXE > /dev
/null
2>&1 && def_bswap
='#define HAVE_BSWAP 1' && bswap
=yes || bswap
=no
2632 #FIXME: This should happen before the check for CFLAGS..
2633 def_altivec_h
='#define HAVE_ALTIVEC_H 0'
2634 if ppc
&& ( test "$_altivec" = yes ||
test "$_runtime_cpudetection" = yes ) ; then
2636 # check if AltiVec is supported by the compiler, and how to enable it
2637 echocheck
"GCC AltiVec flags"
2638 if $
(cflag_check
-maltivec -mabi=altivec
) ; then
2639 _altivec_gcc_flags
="-maltivec -mabi=altivec"
2640 # check if <altivec.h> should be included
2641 if $
(header_check altivec.h
$_altivec_gcc_flags) ; then
2642 def_altivec_h
='#define HAVE_ALTIVEC_H 1'
2643 inc_altivec_h
='#include <altivec.h>'
2645 if $
(cflag_check
-faltivec) ; then
2646 _altivec_gcc_flags
="-faltivec"
2649 _altivec_gcc_flags
="none, AltiVec disabled"
2653 echores
"$_altivec_gcc_flags"
2655 # check if the compiler supports braces for vector declarations
2658 int main(void) { (vector int) {1}; return 0; }
2660 cc_check
$_altivec_gcc_flags || die
"You need a compiler that supports {} in AltiVec vector declarations."
2662 # Disable runtime cpudetection if we cannot generate AltiVec code or
2663 # AltiVec is disabled by the user.
2664 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2665 && _runtime_cpudetection
=no
2667 # Show that we are optimizing for AltiVec (if enabled and supported).
2668 test "$_runtime_cpudetection" = no
&& test "$_altivec" = yes \
2669 && _optimizing
="$_optimizing altivec"
2671 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2672 test "$_altivec" = yes && CFLAGS
="$CFLAGS $_altivec_gcc_flags"
2676 def_xform_asm
='#define HAVE_XFORM_ASM 0'
2678 echocheck
"XFORM ASM support"
2680 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2682 cc_check
&& xform_asm
=yes && def_xform_asm
='#define HAVE_XFORM_ASM 1'
2683 echores
"$xform_asm"
2687 echocheck
"ARM pld instruction"
2689 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2695 echocheck
"ARMv5TE (Enhanced DSP Extensions)"
2696 if test $_armv5te = "auto" ; then
2698 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2701 cc_check
&& _armv5te
=yes
2705 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz
=yes
2707 echocheck
"ARMv6 (SIMD instructions)"
2708 if test $_armv6 = "auto" ; then
2710 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2713 cc_check
&& _armv6
=yes
2717 echocheck
"ARMv6t2 (SIMD instructions)"
2718 if test $_armv6t2 = "auto" ; then
2720 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2723 cc_check
&& _armv6t2
=yes
2728 if test $_armvfp = "auto" ; then
2730 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2733 cc_check
&& _armvfp
=yes
2737 echocheck
"ARM NEON"
2738 if test $neon = "auto" ; then
2740 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2743 cc_check
&& neon
=yes
2747 echocheck
"iWMMXt (Intel XScale SIMD instructions)"
2748 if test $_iwmmxt = "auto" ; then
2750 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2753 cc_check
&& _iwmmxt
=yes
2758 cpuexts_all
='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2759 test "$_altivec" = yes && cpuexts
="ALTIVEC $cpuexts"
2760 test "$_mmx" = yes && cpuexts
="MMX $cpuexts"
2761 test "$_mmxext" = yes && cpuexts
="MMX2 $cpuexts"
2762 test "$_3dnow" = yes && cpuexts
="AMD3DNOW $cpuexts"
2763 test "$_3dnowext" = yes && cpuexts
="AMD3DNOWEXT $cpuexts"
2764 test "$_sse" = yes && cpuexts
="SSE $cpuexts"
2765 test "$_sse2" = yes && cpuexts
="SSE2 $cpuexts"
2766 test "$_ssse3" = yes && cpuexts
="SSSE3 $cpuexts"
2767 test "$_cmov" = yes && cpuexts
="CMOV $cpuexts"
2768 test "$_fast_cmov" = yes && cpuexts
="FAST_CMOV $cpuexts"
2769 test "$_fast_clz" = yes && cpuexts
="FAST_CLZ $cpuexts"
2770 test "$pld" = yes && cpuexts
="PLD $cpuexts"
2771 test "$_armv5te" = yes && cpuexts
="ARMV5TE $cpuexts"
2772 test "$_armv6" = yes && cpuexts
="ARMV6 $cpuexts"
2773 test "$_armv6t2" = yes && cpuexts
="ARMV6T2 $cpuexts"
2774 test "$_armvfp" = yes && cpuexts
="ARMVFP $cpuexts"
2775 test "$neon" = yes && cpuexts
="NEON $cpuexts"
2776 test "$_iwmmxt" = yes && cpuexts
="IWMMXT $cpuexts"
2777 test "$_vis" = yes && cpuexts
="VIS $cpuexts"
2778 test "$_mvi" = yes && cpuexts
="MVI $cpuexts"
2780 # Checking kernel version...
2781 if x86_32
&& linux
; then
2783 kernel_version
=$
(uname
-r 2>&1)
2784 echocheck
"$system_name kernel version"
2785 case "$kernel_version" in
2786 '') kernel_version
="?.??"; _k_verc_fail
=yes;;
2787 [0-1].
[0-9].
[0-9]*|
2.
[0-3].
[0-9]*)
2788 _k_verc_problem
=yes;;
2790 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2793 if test "$_k_verc_fail" ; then
2794 echores
"$kernel_version, fail"
2795 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2796 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2797 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2798 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2799 echo "2.2.x you must upgrade it to get SSE support!"
2800 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2802 echores
"$kernel_version, ok"
2806 ######################
2807 # MAIN TESTS GO HERE #
2808 ######################
2812 if cflag_check
-lposix ; then
2813 extra_ldflags
="$extra_ldflags -lposix"
2820 if cflag_check
-lm ; then
2829 echocheck
"langinfo"
2830 if test "$_langinfo" = auto
; then
2832 #include <langinfo.h>
2833 int main(void) { nl_langinfo(CODESET); return 0; }
2836 cc_check
&& _langinfo
=yes
2838 if test "$_langinfo" = yes ; then
2839 def_langinfo
='#define HAVE_LANGINFO 1'
2841 def_langinfo
='#undef HAVE_LANGINFO'
2843 echores
"$_langinfo"
2846 echocheck
"translation support"
2847 if test "$_translation" = yes; then
2848 def_translation
="#define CONFIG_TRANSLATION 1"
2850 def_translation
="#undef CONFIG_TRANSLATION"
2852 echores
"$_translation"
2854 echocheck
"language"
2855 # Set preferred languages, "all" uses English as main language.
2856 test -z "$language" && language
=$LINGUAS
2857 test -z "$language_doc" && language_doc
=$language
2858 test -z "$language_man" && language_man
=$language
2859 test -z "$language_msg" && language_msg
="all"
2860 language_doc
=$
(echo $language_doc |
tr , " ")
2861 language_man
=$
(echo $language_man |
tr , " ")
2862 language_msg
=$
(echo $language_msg |
tr , " ")
2864 test "$language_doc" = "all" && language_doc
=$doc_lang_all
2865 test "$language_man" = "all" && language_man
=$man_lang_all
2866 test "$language_msg" = "all" && language_msg
=$msg_lang_all
2868 if test "$_translation" != yes ; then
2872 # Prune non-existing translations from language lists.
2873 # Set message translation to the first available language.
2874 # Fall back on English.
2875 for lang
in $language_doc ; do
2876 test -d DOCS
/xml
/$lang && tmp_language_doc
="$tmp_language_doc $lang"
2878 language_doc
=$tmp_language_doc
2879 test -z "$language_doc" && language_doc
=en
2881 for lang
in $language_man ; do
2882 test -d DOCS
/man
/$lang && tmp_language_man
="$tmp_language_man $lang"
2884 language_man
=$tmp_language_man
2885 test -z "$language_man" && language_man
=en
2887 for lang
in $language_msg ; do
2888 test -f po
/$lang.po
&& tmp_language_msg
="$tmp_language_msg $lang"
2890 language_msg
=$tmp_language_msg
2892 echores
"messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2895 echocheck
"enable sighandler"
2896 if test "$_sighandler" = yes ; then
2897 def_sighandler
='#define CONFIG_SIGHANDLER 1'
2899 def_sighandler
='#undef CONFIG_SIGHANDLER'
2901 echores
"$_sighandler"
2903 echocheck
"runtime cpudetection"
2904 if test "$_runtime_cpudetection" = yes ; then
2905 _optimizing
="Runtime CPU-Detection enabled"
2906 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 1'
2908 def_runtime_cpudetection
='#define CONFIG_RUNTIME_CPUDETECT 0'
2910 echores
"$_runtime_cpudetection"
2913 echocheck
"restrict keyword"
2914 for restrict_keyword
in restrict __restrict __restrict__
; do
2915 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2917 def_restrict_keyword
=$restrict_keyword
2921 if [ -n "$def_restrict_keyword" ]; then
2922 echores
"$def_restrict_keyword"
2926 # Avoid infinite recursion loop ("#define restrict restrict")
2927 if [ "$def_restrict_keyword" != "restrict" ]; then
2928 def_restrict_keyword
="#define restrict $def_restrict_keyword"
2930 def_restrict_keyword
=""
2934 echocheck
"__builtin_expect"
2935 # GCC branch prediction hint
2938 a = __builtin_expect(a, 10);
2939 return a == 10 ? 0 : 1;
2941 int main(void) { return foo(10) && foo(0); }
2944 cc_check
&& _builtin_expect
=yes
2945 if test "$_builtin_expect" = yes ; then
2946 def_builtin_expect
='#define HAVE_BUILTIN_EXPECT 1'
2948 def_builtin_expect
='#undef HAVE_BUILTIN_EXPECT'
2950 echores
"$_builtin_expect"
2956 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2959 cc_check
-lkstat && _kstat
=yes
2960 if test "$_kstat" = yes ; then
2961 def_kstat
="#define HAVE_LIBKSTAT 1"
2962 extra_ldflags
="$extra_ldflags -lkstat"
2964 def_kstat
="#undef HAVE_LIBKSTAT"
2970 # required for nanosleep on some systems
2973 int main(void) { (void) nanosleep(0, 0); return 0; }
2976 cc_check
-lposix4 && _posix4
=yes
2977 if test "$_posix4" = yes ; then
2978 extra_ldflags
="$extra_ldflags -lposix4"
2982 for func
in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf
; do
2986 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2989 cc_check
-D_ISOC99_SOURCE $_ld_lm && eval _
$func=yes
2990 if eval test "x\$_$func" = "xyes"; then
2991 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2994 eval def_
$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3003 int main(void) { char a; mkstemp(&a); return 0; }
3006 cc_check
&& _mkstemp
=yes
3007 if test "$_mkstemp" = yes ; then
3008 def_mkstemp
='#define HAVE_MKSTEMP 1'
3010 def_mkstemp
='#undef HAVE_MKSTEMP'
3015 echocheck
"nanosleep"
3016 # also check for nanosleep
3019 int main(void) { (void) nanosleep(0, 0); return 0; }
3022 cc_check
&& _nanosleep
=yes
3023 if test "$_nanosleep" = yes ; then
3024 def_nanosleep
='#define HAVE_NANOSLEEP 1'
3026 def_nanosleep
='#undef HAVE_NANOSLEEP'
3028 echores
"$_nanosleep"
3032 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3033 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3036 #include <sys/socket.h>
3037 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3040 for _ld_tmp
in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3041 cc_check
$_ld_tmp && _ld_sock
="$_ld_tmp" && _socklib
=yes && break
3043 test $_socklib = yes && test $_winsock2_h = auto
&& _winsock2_h
=no
3044 if test $_winsock2_h = auto
; then
3047 #include <winsock2.h>
3048 int main(void) { (void) gethostbyname(0); return 0; }
3050 cc_check
-lws2_32 && _ld_sock
="-lws2_32" && _winsock2_h
=yes
3052 test "$_ld_sock" && res_comment
="using $_ld_sock"
3056 if test $_winsock2_h = yes ; then
3058 def_winsock2_h
='#define HAVE_WINSOCK2_H 1'
3060 def_winsock2_h
='#define HAVE_WINSOCK2_H 0'
3064 echocheck
"arpa/inet.h"
3066 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 0'
3067 header_check arpa
/inet.h
&& arpa_inet_h
=yes &&
3068 def_arpa_inet_h
='#define HAVE_ARPA_INET_H 1'
3069 echores
"$arpa_inet_h"
3072 echocheck
"inet_pton()"
3073 def_inet_pton
='#define HAVE_INET_PTON 0'
3076 #include <sys/types.h>
3077 #include <sys/socket.h>
3078 #include <arpa/inet.h>
3079 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3081 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3082 cc_check
$_ld_tmp && inet_pton
=yes && break
3084 if test $inet_pton = yes ; then
3085 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3086 def_inet_pton
='#define HAVE_INET_PTON 1'
3088 echores
"$inet_pton"
3091 echocheck
"inet_aton()"
3092 def_inet_aton
='#define HAVE_INET_ATON 0'
3095 #include <sys/types.h>
3096 #include <sys/socket.h>
3097 #include <arpa/inet.h>
3098 int main(void) { (void) inet_aton(0, 0); return 0; }
3100 for _ld_tmp
in "$_ld_sock" "$_ld_sock -lresolv" ; do
3101 cc_check
$_ld_tmp && inet_aton
=yes && break
3103 if test $inet_aton = yes ; then
3104 test "$_ld_tmp" && res_comment
="using $_ld_tmp"
3105 def_inet_aton
='#define HAVE_INET_ATON 1'
3107 echores
"$inet_aton"
3110 echocheck
"socklen_t"
3112 for header
in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3115 int main(void) { socklen_t v = 0; return v; }
3117 cc_check
&& _socklen_t
=yes && break
3119 if test "$_socklen_t" = yes ; then
3120 def_socklen_t
='#define HAVE_SOCKLEN_T 1'
3122 def_socklen_t
='#define HAVE_SOCKLEN_T 0'
3124 echores
"$_socklen_t"
3127 echocheck
"closesocket()"
3130 #include <winsock2.h>
3131 int main(void) { closesocket(~0); return 0; }
3133 cc_check
$_ld_sock && _closesocket
=yes
3134 if test "$_closesocket" = yes ; then
3135 def_closesocket
='#define HAVE_CLOSESOCKET 1'
3137 def_closesocket
='#define HAVE_CLOSESOCKET 0'
3139 echores
"$_closesocket"
3142 echocheck
"networking"
3143 test $_winsock2_h = no
&& test $inet_pton = no
&&
3144 test $inet_aton = no
&& networking
=no
3145 if test "$networking" = yes ; then
3146 def_network
='#define CONFIG_NETWORK 1'
3147 def_networking
='#define CONFIG_NETWORKING 1'
3148 extra_ldflags
="$extra_ldflags $_ld_sock"
3149 inputmodules
="networking $inputmodules"
3151 noinputmodules
="networking $noinputmodules"
3152 def_network
='#undef CONFIG_NETWORK'
3153 def_networking
='#undef CONFIG_NETWORKING'
3156 echores
"$networking"
3160 if test "$_inet6" = auto
; then
3162 #include <sys/types.h>
3163 #if !defined(_WIN32) || defined(__CYGWIN__)
3164 #include <sys/socket.h>
3165 #include <netinet/in.h>
3167 #include <ws2tcpip.h>
3169 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3172 if cc_check
$_ld_sock ; then
3176 if test "$_inet6" = yes ; then
3177 def_inet6
='#define HAVE_AF_INET6 1'
3179 def_inet6
='#undef HAVE_AF_INET6'
3184 echocheck
"gethostbyname2"
3185 if test "$_gethostbyname2" = auto
; then
3187 #include <sys/types.h>
3188 #include <sys/socket.h>
3190 int main(void) { gethostbyname2("", AF_INET); return 0; }
3197 if test "$_gethostbyname2" = yes ; then
3198 def_gethostbyname2
='#define HAVE_GETHOSTBYNAME2 1'
3200 def_gethostbyname2
='#undef HAVE_GETHOSTBYNAME2'
3202 echores
"$_gethostbyname2"
3205 echocheck
"inttypes.h (required)"
3207 header_check inttypes.h
&& _inttypes
=yes
3208 echores
"$_inttypes"
3210 if test "$_inttypes" = no
; then
3211 echocheck
"sys/bitypes.h (inttypes.h predecessor)"
3212 header_check sys
/bitypes.h
&& _inttypes
=yes
3213 if test "$_inttypes" = yes ; then
3214 die
"You don't have inttypes.h, but sys/bitypes.h is present. Please copy etc/inttypes.h into the include path, and re-run configure."
3216 die
"Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3221 echocheck
"int_fastXY_t in inttypes.h"
3223 #include <inttypes.h>
3225 volatile int_fast16_t v= 0;
3229 cc_check
&& _fast_inttypes
=yes
3230 if test "$_fast_inttypes" = no
; then
3232 typedef signed char int_fast8_t;
3233 typedef signed int int_fast16_t;
3234 typedef signed int int_fast32_t;
3235 typedef signed long long int_fast64_t;
3236 typedef unsigned char uint_fast8_t;
3237 typedef unsigned int uint_fast16_t;
3238 typedef unsigned int uint_fast32_t;
3239 typedef unsigned long long uint_fast64_t;'
3241 echores
"$_fast_inttypes"
3244 echocheck
"malloc.h"
3246 header_check malloc.h
&& _malloc
=yes
3247 if test "$_malloc" = yes ; then
3248 def_malloc_h
='#define HAVE_MALLOC_H 1'
3250 def_malloc_h
='#define HAVE_MALLOC_H 0'
3255 echocheck
"memalign()"
3256 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3257 def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 0'
3260 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3263 cc_check
&& _memalign
=yes
3264 if test "$_memalign" = yes ; then
3265 def_memalign
='#define HAVE_MEMALIGN 1'
3267 def_memalign
='#define HAVE_MEMALIGN 0'
3268 def_map_memalign
='#define memalign(a,b) malloc(b)'
3269 darwin || def_memalign_hack
='#define CONFIG_MEMALIGN_HACK 1'
3271 echores
"$_memalign"
3274 echocheck
"posix_memalign()"
3276 def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 0'
3278 #define _XOPEN_SOURCE 600
3280 int main(void) { posix_memalign(NULL, 0, 0); }
3282 cc_check
&& posix_memalign
=yes && def_posix_memalign
='#define HAVE_POSIX_MEMALIGN 1'
3283 echores
"$posix_memalign"
3286 echocheck
"alloca.h"
3289 int main(void) { (void) alloca(0); return 0; }
3292 cc_check
&& _alloca
=yes
3294 def_alloca_h
='#define HAVE_ALLOCA_H 1'
3296 def_alloca_h
='#undef HAVE_ALLOCA_H'
3301 echocheck
"fastmemcpy"
3302 if test "$_fastmemcpy" = yes ; then
3303 def_fastmemcpy
='#define CONFIG_FASTMEMCPY 1'
3305 def_fastmemcpy
='#undef CONFIG_FASTMEMCPY'
3307 echores
"$_fastmemcpy"
3312 #include <sys/types.h>
3313 #include <sys/mman.h>
3314 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3317 cc_check
&& _mman
=yes
3318 if test "$_mman" = yes ; then
3319 def_mman_h
='#define HAVE_SYS_MMAN_H 1'
3321 def_mman_h
='#undef HAVE_SYS_MMAN_H'
3322 os2
&& _need_mmap
=yes
3327 #include <sys/types.h>
3328 #include <sys/mman.h>
3329 int main(void) { void *p = MAP_FAILED; return 0; }
3331 _mman_has_map_failed
=no
3332 cc_check
&& _mman_has_map_failed
=yes
3333 if test "$_mman_has_map_failed" = yes ; then
3334 def_mman_has_map_failed
=''
3336 def_mman_has_map_failed
='#define MAP_FAILED ((void *) -1)'
3339 echocheck
"dynamic loader"
3343 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3346 for _ld_tmp
in "" "-ldl" ; do
3347 cc_check
$_ld_tmp && _ld_dl
="$_ld_tmp" && _dl
=yes && break
3349 if test "$_dl" = yes ; then
3350 def_dl
='#define HAVE_LIBDL 1'
3352 def_dl
='#undef HAVE_LIBDL'
3357 echocheck
"dynamic a/v plugins support"
3358 if test "$_dl" = no
; then
3361 if test "$_dynamic_plugins" = yes ; then
3362 def_dynamic_plugins
='#define CONFIG_DYNAMIC_PLUGINS 1'
3364 def_dynamic_plugins
='#undef CONFIG_DYNAMIC_PLUGINS'
3366 echores
"$_dynamic_plugins"
3369 def_threads
='#define HAVE_THREADS 0'
3373 THREAD_CFLAGS
=-D_REENTRANT
3374 elif freebsd || netbsd || openbsd || bsdos
; then
3375 THREAD_CFLAGS
=-D_THREAD_SAFE
3377 if test "$_pthreads" = auto
; then
3379 #include <pthread.h>
3380 void* func(void *arg) { return arg; }
3381 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3385 for _ld_tmp
in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3386 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3387 cc_check
$THREAD_CFLAGS $_ld_tmp && (tmp_run ||
test "$_ld_static") && _ld_pthread
="$_ld_tmp" && _pthreads
=yes && break
3391 if test "$_pthreads" = yes ; then
3392 test $_ld_pthread && res_comment
="using $_ld_pthread"
3393 def_pthreads
='#define HAVE_PTHREADS 1'
3394 def_threads
='#define HAVE_THREADS 1'
3395 extra_cflags
="$extra_cflags $THREAD_CFLAGS"
3397 res_comment
="v4l, v4l2, ao_nas, win32 loader disabled"
3398 def_pthreads
='#undef HAVE_PTHREADS'
3399 _nas
=no
; _tv_v4l1
=no
; _tv_v4l2
=no
3400 mingw32 || _win32dll
=no
3402 echores
"$_pthreads"
3405 if test "$_pthreads" = yes ; then
3406 def_pthread_cache
="#define PTHREAD_CACHE 1"
3409 def_stream_cache
="#undef CONFIG_STREAM_CACHE"
3413 echocheck
"w32threads"
3414 if test "$_pthreads" = yes ; then
3415 res_comment
="using pthread instead"
3418 if test "$_w32threads" = auto
; then
3420 mingw32
&& _w32threads
=yes
3422 test "$_w32threads" = yes && def_threads
='#define HAVE_THREADS 1'
3423 echores
"$_w32threads"
3427 if test "$_rpath" = yes ; then
3428 for I
in $
(echo $extra_ldflags |
sed 's/-L//g') ; do
3429 tmp
="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3436 if test "$_iconv" = auto
; then
3441 #define INBUFSIZE 1024
3442 #define OUTBUFSIZE 4096
3444 char inbuffer[INBUFSIZE];
3445 char outbuffer[OUTBUFSIZE];
3450 char *tocode="UTF-8";
3451 char *fromcode="cp1250";
3452 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3453 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3454 char *iptr=inbuffer;
3455 char *optr=outbuffer;
3456 size_t inleft=numread;
3457 size_t outleft=OUTBUFSIZE;
3458 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3460 write(1, outbuffer, OUTBUFSIZE - outleft);
3463 if (iconv_close(icdsc) == -1)
3470 for _ld_tmp
in "" "-liconv" "-liconv $_ld_dl" ; do
3471 cc_check
$_ld_lm $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && \
3475 if test "$_iconv" = yes ; then
3476 def_iconv
='#define CONFIG_ICONV 1'
3478 def_iconv
='#undef CONFIG_ICONV'
3483 echocheck
"soundcard.h"
3485 def_soundcard_h
='#undef HAVE_SOUNDCARD_H'
3486 def_sys_soundcard_h
='#undef HAVE_SYS_SOUNDCARD_H'
3487 for _soundcard_header
in "sys/soundcard.h" "soundcard.h"; do
3488 header_check
$_soundcard_header && _soundcard_h
=yes &&
3489 res_comment
="$_soundcard_header" && break
3492 if test "$_soundcard_h" = yes ; then
3493 if test $_soundcard_header = "sys/soundcard.h"; then
3494 def_sys_soundcard_h
='#define HAVE_SYS_SOUNDCARD_H 1'
3496 def_soundcard_h
='#define HAVE_SOUNDCARD_H 1'
3499 echores
"$_soundcard_h"
3502 echocheck
"sys/dvdio.h"
3504 # FreeBSD 8.1 has broken dvdio.h
3505 header_check_broken sys
/types.h sys
/dvdio.h
&& _dvdio
=yes
3506 if test "$_dvdio" = yes ; then
3507 def_dvdio
='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3509 def_dvdio
='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3514 echocheck
"sys/cdio.h"
3516 # at least OpenSolaris has a broken cdio.h
3517 header_check_broken sys
/types.h sys
/cdio.h
&& _cdio
=yes
3518 if test "$_cdio" = yes ; then
3519 def_cdio
='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3521 def_cdio
='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3526 echocheck
"linux/cdrom.h"
3528 header_check linux
/cdrom.h
&& _cdrom
=yes
3529 if test "$_cdrom" = yes ; then
3530 def_cdrom
='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3532 def_cdrom
='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3539 header_check dvd.h
&& _dvd
=yes
3540 if test "$_dvd" = yes ; then
3541 def_dvd
='#define DVD_STRUCT_IN_DVD_H 1'
3543 def_dvd
='#undef DVD_STRUCT_IN_DVD_H'
3549 echocheck
"BSDI dvd.h"
3551 header_check dvd.h
&& _bsdi_dvd
=yes
3552 if test "$_bsdi_dvd" = yes ; then
3553 def_bsdi_dvd
='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3555 def_bsdi_dvd
='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3557 echores
"$_bsdi_dvd"
3562 # also used by AIX, but AIX does not support VCD and/or libdvdread
3563 echocheck
"HP-UX SCSI header"
3565 header_check sys
/scsi.h
&& _hpux_scsi_h
=yes
3566 if test "$_hpux_scsi_h" = yes ; then
3567 def_hpux_scsi_h
='#define HPUX_SCTL_IO 1'
3569 def_hpux_scsi_h
='#undef HPUX_SCTL_IO'
3571 echores
"$_hpux_scsi_h"
3576 echocheck
"userspace SCSI headers (Solaris)"
3578 header_check sys
/scsi
/scsi_types.h
&&
3579 header_check_broken sys
/types.h sys
/scsi
/impl
/uscsi.h
&&
3581 if test "$_sol_scsi_h" = yes ; then
3582 def_sol_scsi_h
='#define SOLARIS_USCSI 1'
3584 def_sol_scsi_h
='#undef SOLARIS_USCSI'
3586 echores
"$_sol_scsi_h"
3591 if test "$_termcap" = auto
; then
3595 int main(void) { tgetent(NULL, NULL); return 0; }
3598 for _ld_tmp
in "-lncurses" "-ltinfo" "-ltermcap"; do
3599 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" \
3600 && _termcap
=yes && break
3603 if test "$_termcap" = yes ; then
3604 def_termcap
='#define HAVE_TERMCAP 1'
3605 test $_ld_tmp && res_comment
="using $_ld_tmp"
3607 def_termcap
='#undef HAVE_TERMCAP'
3613 def_termios
='#undef HAVE_TERMIOS'
3614 def_termios_h
='#undef HAVE_TERMIOS_H'
3615 def_termios_sys_h
='#undef HAVE_SYS_TERMIOS_H'
3616 if test "$_termios" = auto
; then
3618 for _termios_header
in "termios.h" "sys/termios.h"; do
3619 header_check
$_termios_header && _termios
=yes &&
3620 res_comment
="using $_termios_header" && break
3624 if test "$_termios" = yes ; then
3625 def_termios
='#define HAVE_TERMIOS 1'
3626 if test "$_termios_header" = "termios.h" ; then
3627 def_termios_h
='#define HAVE_TERMIOS_H 1'
3629 def_termios_sys_h
='#define HAVE_SYS_TERMIOS_H 1'
3636 if test "$_shm" = auto
; then
3638 #include <sys/types.h>
3639 #include <sys/shm.h>
3640 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3643 cc_check
&& _shm
=yes
3645 if test "$_shm" = yes ; then
3646 def_shm
='#define HAVE_SHM 1'
3648 def_shm
='#undef HAVE_SHM'
3653 echocheck
"strsep()"
3656 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3659 cc_check
&& _strsep
=yes
3660 if test "$_strsep" = yes ; then
3661 def_strsep
='#define HAVE_STRSEP 1'
3664 def_strsep
='#undef HAVE_STRSEP'
3670 echocheck
"vsscanf()"
3672 #define _ISOC99_SOURCE
3675 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3678 cc_check
&& _vsscanf
=yes
3679 if test "$_vsscanf" = yes ; then
3680 def_vsscanf
='#define HAVE_VSSCANF 1'
3683 def_vsscanf
='#undef HAVE_VSSCANF'
3691 #define _XOPEN_SOURCE 600
3693 int main(void) { swab(0, 0, 0); return 0; }
3696 cc_check
&& _swab
=yes
3697 if test "$_swab" = yes ; then
3698 def_swab
='#define HAVE_SWAB 1'
3701 def_swab
='#undef HAVE_SWAB'
3706 echocheck
"POSIX select()"
3710 #include <sys/types.h>
3712 #include <sys/time.h>
3714 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3717 def_posix_select
='#undef HAVE_POSIX_SELECT'
3718 #select() of kLIBC (OS/2) supports socket only
3719 ! os2
&& cc_check
&& _posix_select
=yes \
3720 && def_posix_select
='#define HAVE_POSIX_SELECT 1'
3721 echores
"$_posix_select"
3724 echocheck
"audio select()"
3725 if test "$_select" = no
; then
3726 def_select
='#undef HAVE_AUDIO_SELECT'
3727 elif test "$_select" = yes ; then
3728 def_select
='#define HAVE_AUDIO_SELECT 1'
3733 echocheck
"gettimeofday()"
3735 #include <sys/time.h>
3736 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3739 cc_check
&& _gettimeofday
=yes
3740 if test "$_gettimeofday" = yes ; then
3741 def_gettimeofday
='#define HAVE_GETTIMEOFDAY 1'
3742 _need_gettimeofday
=no
3744 def_gettimeofday
='#undef HAVE_GETTIMEOFDAY'
3745 _need_gettimeofday
=yes
3747 echores
"$_gettimeofday"
3754 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3757 cc_check
&& _glob
=yes
3758 if test "$_glob" = yes ; then
3759 def_glob
='#define HAVE_GLOB 1'
3762 def_glob
='#undef HAVE_GLOB'
3768 echocheck
"setenv()"
3771 int main(void) { setenv("","",0); return 0; }
3774 cc_check
&& _setenv
=yes
3775 if test "$_setenv" = yes ; then
3776 def_setenv
='#define HAVE_SETENV 1'
3779 def_setenv
='#undef HAVE_SETENV'
3785 echocheck
"setmode()"
3787 def_setmode
='#define HAVE_SETMODE 0'
3790 int main(void) { setmode(0, 0); return 0; }
3792 cc_check
&& _setmode
=yes && def_setmode
='#define HAVE_SETMODE 1'
3797 echocheck
"sysi86()"
3799 #include <sys/sysi86.h>
3800 int main(void) { sysi86(0); return 0; }
3803 cc_check
&& _sysi86
=yes
3804 if test "$_sysi86" = yes ; then
3805 def_sysi86
='#define HAVE_SYSI86 1'
3807 #include <sys/sysi86.h>
3808 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3810 cc_check
&& def_sysi86_iv
='#define HAVE_SYSI86_iv 1'
3812 def_sysi86
='#undef HAVE_SYSI86'
3818 echocheck
"sys/sysinfo.h"
3820 #include <sys/sysinfo.h>
3822 struct sysinfo s_info;
3828 cc_check
&& _sys_sysinfo
=yes
3829 if test "$_sys_sysinfo" = yes ; then
3830 def_sys_sysinfo_h
='#define HAVE_SYS_SYSINFO_H 1'
3832 def_sys_sysinfo_h
='#undef HAVE_SYS_SYSINFO_H'
3834 echores
"$_sys_sysinfo"
3839 echocheck
"Mac OS X Finder Support"
3840 def_macosx_finder
='#undef CONFIG_MACOSX_FINDER'
3841 if test "$_macosx_finder" = yes ; then
3842 def_macosx_finder
='#define CONFIG_MACOSX_FINDER 1'
3843 extra_ldflags
="$extra_ldflags -framework Carbon"
3845 echores
"$_macosx_finder"
3847 echocheck
"Mac OS X Bundle file locations"
3848 def_macosx_bundle
='#undef CONFIG_MACOSX_BUNDLE'
3849 test "$_macosx_bundle" = auto
&& _macosx_bundle
=$_macosx_finder
3850 if test "$_macosx_bundle" = yes ; then
3851 def_macosx_bundle
='#define CONFIG_MACOSX_BUNDLE 1'
3852 extra_ldflags
="$extra_ldflags -framework Carbon"
3854 echores
"$_macosx_bundle"
3856 echocheck
"Apple Remote"
3857 if test "$_apple_remote" = auto
; then
3861 #include <IOKit/IOCFPlugIn.h>
3863 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3864 CFMutableDictionaryRef hidMatchDictionary;
3865 IOReturn ioReturnValue;
3867 // Set up a matching dictionary to search the I/O Registry by class.
3868 // name for all HID class devices
3869 hidMatchDictionary = IOServiceMatching("AppleIRController");
3871 // Now search I/O Registry for matching devices.
3872 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3873 hidMatchDictionary, &hidObjectIterator);
3875 // If search is unsuccessful, return nonzero.
3876 if (ioReturnValue != kIOReturnSuccess ||
3877 !IOIteratorIsValid(hidObjectIterator)) {
3883 cc_check
-framework IOKit
&& tmp_run
&& _apple_remote
=yes
3885 if test "$_apple_remote" = yes ; then
3886 def_apple_remote
='#define CONFIG_APPLE_REMOTE 1'
3887 libs_mplayer
="$libs_mplayer -framework IOKit -framework Cocoa"
3889 def_apple_remote
='#undef CONFIG_APPLE_REMOTE'
3891 echores
"$_apple_remote"
3897 echocheck
"Apple IR"
3898 if test "$_apple_ir" = auto
; then
3901 #include <linux/types.h>
3902 #include <linux/input.h>
3904 struct input_event ev;
3909 cc_check
&& _apple_ir
=yes
3911 if test "$_apple_ir" = yes ; then
3912 def_apple_ir
='#define CONFIG_APPLE_IR 1'
3914 def_apple_ir
='#undef CONFIG_APPLE_IR'
3916 echores
"$_apple_ir"
3919 echocheck
"pkg-config"
3920 _pkg_config
=pkg-config
3921 if $
($_pkg_config --version > /dev
/null
2>&1); then
3922 if test "$_ld_static"; then
3923 _pkg_config
="$_pkg_config --static"
3932 echocheck
"Samba support (libsmbclient)"
3933 if test "$_smb" = yes; then
3934 extra_ldflags
="$extra_ldflags -lsmbclient"
3936 if test "$_smb" = auto
; then
3939 #include <libsmbclient.h>
3940 int main(void) { smbc_opendir("smb://"); return 0; }
3942 for _ld_tmp
in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3943 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && \
3948 if test "$_smb" = yes; then
3949 def_smb
="#define CONFIG_LIBSMBCLIENT 1"
3950 inputmodules
="smb $inputmodules"
3952 def_smb
="#undef CONFIG_LIBSMBCLIENT"
3953 noinputmodules
="smb $noinputmodules"
3964 if test "$_tdfxfb" = yes ; then
3965 def_tdfxfb
='#define CONFIG_TDFXFB 1'
3966 vomodules
="tdfxfb $vomodules"
3968 def_tdfxfb
='#undef CONFIG_TDFXFB'
3969 novomodules
="tdfxfb $novomodules"
3974 if test "$_s3fb" = yes ; then
3975 def_s3fb
='#define CONFIG_S3FB 1'
3976 vomodules
="s3fb $vomodules"
3978 def_s3fb
='#undef CONFIG_S3FB'
3979 novomodules
="s3fb $novomodules"
3984 if test "$_wii" = yes ; then
3985 def_wii
='#define CONFIG_WII 1'
3986 vomodules
="wii $vomodules"
3988 def_wii
='#undef CONFIG_WII'
3989 novomodules
="wii $novomodules"
3994 if test "$_tdfxvid" = yes ; then
3995 def_tdfxvid
='#define CONFIG_TDFX_VID 1'
3996 vomodules
="tdfx_vid $vomodules"
3998 def_tdfxvid
='#undef CONFIG_TDFX_VID'
3999 novomodules
="tdfx_vid $novomodules"
4004 if test "$_xvr100" = auto
; then
4007 #include <sys/fbio.h>
4008 #include <sys/visual_io.h>
4010 struct vis_identifier ident;
4011 struct fbgattr attr;
4012 ioctl(0, VIS_GETIDENTIFIER, &ident);
4013 ioctl(0, FBIOGATTR, &attr);
4018 cc_check
&& _xvr100
=yes
4020 if test "$_xvr100" = yes ; then
4021 def_xvr100
='#define CONFIG_XVR100 1'
4022 vomodules
="xvr100 $vomodules"
4024 def_tdfxvid
='#undef CONFIG_XVR100'
4025 novomodules
="xvr100 $novomodules"
4030 if test "$_tga" = yes ; then
4031 def_tga
='#define CONFIG_TGA 1'
4032 vomodules
="tga $vomodules"
4034 def_tga
='#undef CONFIG_TGA'
4035 novomodules
="tga $novomodules"
4040 echocheck
"md5sum support"
4041 if test "$_md5sum" = yes; then
4042 def_md5sum
="#define CONFIG_MD5SUM 1"
4043 vomodules
="md5sum $vomodules"
4045 def_md5sum
="#undef CONFIG_MD5SUM"
4046 novomodules
="md5sum $novomodules"
4051 echocheck
"yuv4mpeg support"
4052 if test "$_yuv4mpeg" = yes; then
4053 def_yuv4mpeg
="#define CONFIG_YUV4MPEG 1"
4054 vomodules
="yuv4mpeg $vomodules"
4056 def_yuv4mpeg
="#undef CONFIG_YUV4MPEG"
4057 novomodules
="yuv4mpeg $novomodules"
4059 echores
"$_yuv4mpeg"
4063 if test "$_bl" = yes ; then
4064 def_bl
='#define CONFIG_BL 1'
4065 vomodules
="bl $vomodules"
4067 def_bl
='#undef CONFIG_BL'
4068 novomodules
="bl $novomodules"
4073 echocheck
"DirectFB"
4074 if test "$_directfb" = auto
; then
4077 #include <directfb.h>
4078 int main(void) { DirectFBInit(0, 0); return 0; }
4080 for _inc_tmp
in "" -I/usr
/local
/include
/directfb \
4081 -I/usr
/include
/directfb
-I/usr
/local
/include
; do
4082 cc_check
$_inc_tmp -ldirectfb && _directfb
=yes && \
4083 extra_cflags
="$extra_cflags $_inc_tmp" && break
4088 expr $1 \
* 65536 + $2 \
* 256 + $3
4091 if test "$_directfb" = yes; then
4093 #include <directfb_version.h>
4095 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4098 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4099 _directfb_version
=$
(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" |
tr -d '()')
4100 _dfb_major
=$
(echo $_directfb_version | cut
-d .
-f 1)
4101 _dfb_minor
=$
(echo $_directfb_version | cut
-d .
-f 2)
4102 _dfb_micro
=$
(echo $_directfb_version | cut
-d .
-f 3)
4103 _dfb_version
=$
(dfb_version
$_dfb_major $_dfb_minor $_dfb_micro)
4104 if test "$_dfb_version" -ge $
(dfb_version
0 9 13); then
4105 def_directfb_version
="#define DIRECTFBVERSION $_dfb_version"
4106 res_comment
="$_directfb_version"
4107 test "$_dfb_version" -ge $
(dfb_version
0 9 15) && _dfbmga
=yes
4109 def_directfb_version
='#undef DIRECTFBVERSION'
4111 res_comment
="version >=0.9.13 required"
4115 res_comment
="failed to get version"
4118 echores
"$_directfb"
4120 if test "$_directfb" = yes ; then
4121 def_directfb
='#define CONFIG_DIRECTFB 1'
4122 vomodules
="directfb $vomodules"
4123 libs_mplayer
="$libs_mplayer -ldirectfb"
4125 def_directfb
='#undef CONFIG_DIRECTFB'
4126 novomodules
="directfb $novomodules"
4128 if test "$_dfbmga" = yes; then
4129 vomodules
="dfbmga $vomodules"
4130 def_dfbmga
='#define CONFIG_DFBMGA 1'
4132 novomodules
="dfbmga $novomodules"
4133 def_dfbmga
='#undef CONFIG_DFBMGA'
4137 echocheck
"X11 headers presence"
4139 res_comment
="check if the dev(el) packages are installed"
4140 for I
in $
(echo $extra_cflags |
sed s
/-I//g
) /usr
/include
; do
4141 if test -f "$I/X11/Xlib.h" ; then
4147 if test $_cross_compile = no
; then
4148 for I
in /usr
/X11
/include
/usr
/X11R
7/include
/usr
/local
/include
/usr
/X11R
6/include \
4149 /usr
/include
/X11R6
/usr
/openwin
/include
; do
4150 if test -f "$I/X11/Xlib.h" ; then
4151 extra_cflags
="$extra_cflags -I$I"
4153 res_comment
="using $I"
4158 echores
"$_x11_headers"
4162 if test "$_x11" = auto
&& test "$_x11_headers" = yes ; then
4164 #include <X11/Xlib.h>
4165 #include <X11/Xutil.h>
4166 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4168 for I
in "" -L/usr
/X11R
7/lib
-L/usr
/local
/lib
-L/usr
/X11R
6/lib
-L/usr
/lib
/X11R6 \
4169 -L/usr
/X11
/lib
-L/usr
/lib32
-L/usr
/openwin
/lib
-L/usr
/local
/lib64
-L/usr
/X11R
6/lib64 \
4172 _ld_tmp
="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4174 _ld_tmp
="$I -lXext -lX11 $_ld_pthread"
4176 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" \
4177 && _x11
=yes && break
4180 if test "$_x11" = yes ; then
4181 def_x11
='#define CONFIG_X11 1'
4182 vomodules
="x11 xover $vomodules"
4185 def_x11
='#undef CONFIG_X11'
4186 novomodules
="x11 $novomodules"
4187 res_comment
="check if the dev(el) packages are installed"
4188 # disable stuff that depends on X
4189 _xv
=no
; _xvmc
=no
; _xinerama
=no
; _vm
=no
; _xf86keysym
=no
; _vdpau
=no
4193 echocheck
"Xss screensaver extensions"
4194 if test "$_xss" = auto
; then
4196 #include <X11/Xlib.h>
4197 #include <X11/extensions/scrnsaver.h>
4198 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4201 cc_check
-lXss && _xss
=yes
4203 if test "$_xss" = yes ; then
4204 def_xss
='#define CONFIG_XSS 1'
4205 libs_mplayer
="$libs_mplayer -lXss"
4207 def_xss
='#undef CONFIG_XSS'
4214 if test "$_x11" = yes ; then
4216 #include <X11/Xmd.h>
4217 #include <X11/Xlib.h>
4218 #include <X11/Xutil.h>
4219 #include <X11/Xatom.h>
4220 #include <X11/extensions/dpms.h>
4221 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4223 cc_check
-lXdpms && _xdpms3
=yes
4225 #include <X11/Xlib.h>
4226 #include <X11/extensions/dpms.h>
4227 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4229 cc_check
-lXext && _xdpms4
=yes
4231 if test "$_xdpms4" = yes ; then
4232 def_xdpms
='#define CONFIG_XDPMS 1'
4233 res_comment
="using Xdpms 4"
4235 elif test "$_xdpms3" = yes ; then
4236 def_xdpms
='#define CONFIG_XDPMS 1'
4237 libs_mplayer
="$libs_mplayer -lXdpms"
4238 res_comment
="using Xdpms 3"
4241 def_xdpms
='#undef CONFIG_XDPMS'
4247 if test "$_xv" = auto
; then
4249 #include <X11/Xlib.h>
4250 #include <X11/extensions/Xvlib.h>
4252 (void) XvGetPortAttribute(0, 0, 0, 0);
4253 (void) XvQueryPortAttributes(0, 0, 0);
4257 cc_check
-lXv && _xv
=yes
4260 if test "$_xv" = yes ; then
4261 def_xv
='#define CONFIG_XV 1'
4262 libs_mplayer
="$libs_mplayer -lXv"
4263 vomodules
="xv $vomodules"
4265 def_xv
='#undef CONFIG_XV'
4266 novomodules
="xv $novomodules"
4272 if test "$_xv" = yes && test "$_xvmc" != no
; then
4275 #include <X11/Xlib.h>
4276 #include <X11/extensions/Xvlib.h>
4277 #include <X11/extensions/XvMClib.h>
4279 (void) XvMCQueryExtension(0,0,0);
4280 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4283 for _ld_tmp
in $_xvmclib XvMCNVIDIA XvMCW I810XvMC
; do
4284 cc_check
-lXvMC -l$_ld_tmp && _xvmc
=yes && _xvmclib
="$_ld_tmp" && break
4287 if test "$_xvmc" = yes ; then
4288 def_xvmc
='#define CONFIG_XVMC 1'
4289 libs_mplayer
="$libs_mplayer -lXvMC -l$_xvmclib"
4290 vomodules
="xvmc $vomodules"
4291 res_comment
="using $_xvmclib"
4293 def_xvmc
='#define CONFIG_XVMC 0'
4294 novomodules
="xvmc $novomodules"
4300 if test "$_vdpau" = auto
; then
4302 if test "$_dl" = yes ; then
4304 #include <vdpau/vdpau_x11.h>
4306 (void) vdp_device_create_x11(0, 0, 0, 0);
4307 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4309 cc_check
-lvdpau && _vdpau
=yes
4312 if test "$_vdpau" = yes ; then
4313 def_vdpau
='#define CONFIG_VDPAU 1'
4314 libs_mplayer
="$libs_mplayer -lvdpau"
4315 vomodules
="vdpau $vomodules"
4317 def_vdpau
='#define CONFIG_VDPAU 0'
4318 novomodules
="vdpau $novomodules"
4323 echocheck
"Xinerama"
4324 if test "$_xinerama" = auto
; then
4326 #include <X11/Xlib.h>
4327 #include <X11/extensions/Xinerama.h>
4328 int main(void) { (void) XineramaIsActive(0); return 0; }
4331 cc_check
-lXinerama && _xinerama
=yes
4334 if test "$_xinerama" = yes ; then
4335 def_xinerama
='#define CONFIG_XINERAMA 1'
4336 libs_mplayer
="$libs_mplayer -lXinerama"
4338 def_xinerama
='#undef CONFIG_XINERAMA'
4340 echores
"$_xinerama"
4343 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4344 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4345 # named 'X extensions' or something similar.
4346 # This check may be useful for future mplayer versions (to change resolution)
4347 # If you run into problems, remove '-lXxf86vm'.
4349 if test "$_vm" = auto
; then
4351 #include <X11/Xlib.h>
4352 #include <X11/extensions/xf86vmode.h>
4353 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4356 cc_check
-lXxf86vm && _vm
=yes
4358 if test "$_vm" = yes ; then
4359 def_vm
='#define CONFIG_XF86VM 1'
4360 libs_mplayer
="$libs_mplayer -lXxf86vm"
4362 def_vm
='#undef CONFIG_XF86VM'
4366 # Check for the presence of special keycodes, like audio control buttons
4367 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4368 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4369 # have these new keycodes.
4370 echocheck
"XF86keysym"
4371 if test "$_xf86keysym" = auto
; then
4374 #include <X11/Xlib.h>
4375 #include <X11/XF86keysym.h>
4376 int main(void) { return XF86XK_AudioPause; }
4378 cc_check
&& _xf86keysym
=yes
4380 if test "$_xf86keysym" = yes ; then
4381 def_xf86keysym
='#define CONFIG_XF86XK 1'
4383 def_xf86keysym
='#undef CONFIG_XF86XK'
4385 echores
"$_xf86keysym"
4388 if test "$_dga2" = auto
&& test "$_x11" = yes ; then
4390 #include <X11/Xlib.h>
4391 #include <X11/extensions/xf86dga.h>
4392 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4395 cc_check
-lXxf86dga && _dga2
=yes
4397 if test "$_dga1" = auto
&& test "$_dga2" = no
&& test "$_vm" = yes ; then
4399 #include <X11/Xlib.h>
4400 #include <X11/extensions/xf86dga.h>
4401 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4404 cc_check
-lXxf86dga -lXxf86vm && _dga1
=yes
4408 def_dga
='#undef CONFIG_DGA'
4409 def_dga1
='#undef CONFIG_DGA1'
4410 def_dga2
='#undef CONFIG_DGA2'
4411 if test "$_dga1" = yes ; then
4413 def_dga1
='#define CONFIG_DGA1 1'
4414 res_comment
="using DGA 1.0"
4415 elif test "$_dga2" = yes ; then
4417 def_dga2
='#define CONFIG_DGA2 1'
4418 res_comment
="using DGA 2.0"
4420 if test "$_dga" = yes ; then
4421 def_dga
='#define CONFIG_DGA 1'
4422 libs_mplayer
="$libs_mplayer -lXxf86dga"
4423 vomodules
="dga $vomodules"
4425 novomodules
="dga $novomodules"
4431 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4432 def_3dfx
='#define CONFIG_3DFX 1'
4433 vomodules
="3dfx $vomodules"
4435 def_3dfx
='#undef CONFIG_3DFX'
4436 novomodules
="3dfx $novomodules"
4442 def_vidix
='#undef CONFIG_VIDIX'
4443 def_vidix_drv_cyberblade
='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4444 _vidix_drv_cyberblade
=no
4445 def_vidix_drv_ivtv
='#undef CONFIG_VIDIX_DRV_IVTV'
4447 def_vidix_drv_mach64
='#undef CONFIG_VIDIX_DRV_MACH64'
4448 _vidix_drv_mach64
=no
4449 def_vidix_drv_mga
='#undef CONFIG_VIDIX_DRV_MGA'
4451 def_vidix_drv_mga_crtc2
='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4452 _vidix_drv_mga_crtc2
=no
4453 def_vidix_drv_nvidia
='#undef CONFIG_VIDIX_DRV_NVIDIA'
4454 _vidix_drv_nvidia
=no
4455 def_vidix_drv_pm2
='#undef CONFIG_VIDIX_DRV_PM2'
4457 def_vidix_drv_pm3
='#undef CONFIG_VIDIX_DRV_PM3'
4459 def_vidix_drv_radeon
='#undef CONFIG_VIDIX_DRV_RADEON'
4460 _vidix_drv_radeon
=no
4461 def_vidix_drv_rage128
='#undef CONFIG_VIDIX_DRV_RAGE128'
4462 _vidix_drv_rage128
=no
4463 def_vidix_drv_s3
='#undef CONFIG_VIDIX_DRV_S3'
4465 def_vidix_drv_sh_veu
='#undef CONFIG_VIDIX_DRV_SH_VEU'
4466 _vidix_drv_sh_veu
=no
4467 def_vidix_drv_sis
='#undef CONFIG_VIDIX_DRV_SIS'
4469 def_vidix_drv_unichrome
='#undef CONFIG_VIDIX_DRV_UNICHROME'
4470 _vidix_drv_unichrome
=no
4471 if test "$_vidix" = auto
; then
4473 x86
&& (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32
) \
4475 x86_64
&& ! linux
&& _vidix
=no
4476 (ppc || alpha
) && linux
&& _vidix
=yes
4480 if test "$_vidix" = yes ; then
4481 def_vidix
='#define CONFIG_VIDIX 1'
4482 vomodules
="cvidix $vomodules"
4483 # FIXME: ivtv driver temporarily disabled until we have a proper test
4484 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4485 test "$_vidix_drivers" || _vidix_drivers
="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4487 # some vidix drivers are architecture and os specific, discard them elsewhere
4488 x86 || _vidix_drivers
=$
(echo $_vidix_drivers |
sed -e s
/cyberblade
// -e s
/sis
// -e s
/unichrome
// -e s
/s
3//)
4489 (test $host_arch = "sh" && linux
) || _vidix_drivers
=$
(echo $_vidix_drivers |
sed s
/sh_veu
//)
4491 for driver
in $_vidix_drivers ; do
4492 uc_driver
=$
(echo $driver |
tr '[a-z]' '[A-Z]')
4493 eval _vidix_drv_
${driver}=yes
4494 eval def_vidix_drv_
${driver}=\"\
#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4497 echocheck
"VIDIX PCI device name database"
4498 echores
"$_vidix_pcidb"
4499 if test "$_vidix_pcidb" = yes ; then
4505 echocheck
"VIDIX dhahelper support"
4506 test "$_dhahelper" = yes && cflags_dhahelper
=-DCONFIG_DHAHELPER
4507 echores
"$_dhahelper"
4509 echocheck
"VIDIX svgalib_helper support"
4510 test "$_svgalib_helper" = yes && cflags_svgalib_helper
=-DCONFIG_SVGAHELPER
4511 echores
"$_svgalib_helper"
4514 novomodules
="cvidix $novomodules"
4517 if test "$_vidix" = yes && win32
; then
4519 vomodules
="winvidix $vomodules"
4520 libs_mplayer
="$libs_mplayer -lgdi32"
4522 novomodules
="winvidix $novomodules"
4524 if test "$_vidix" = yes && test "$_x11" = yes; then
4526 vomodules
="xvidix $vomodules"
4528 novomodules
="xvidix $novomodules"
4532 if test "$_ggi" = auto
; then
4534 #include <ggi/ggi.h>
4535 int main(void) { ggiInit(); return 0; }
4538 cc_check
-lggi && _ggi
=yes
4540 if test "$_ggi" = yes ; then
4541 def_ggi
='#define CONFIG_GGI 1'
4542 libs_mplayer
="$libs_mplayer -lggi"
4543 vomodules
="ggi $vomodules"
4545 def_ggi
='#undef CONFIG_GGI'
4546 novomodules
="ggi $novomodules"
4550 echocheck
"GGI extension: libggiwmh"
4551 if test "$_ggiwmh" = auto
; then
4554 #include <ggi/ggi.h>
4555 #include <ggi/wmh.h>
4556 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4558 cc_check
-lggi -lggiwmh && _ggiwmh
=yes
4560 # needed to get right output on obscure combination
4561 # like --disable-ggi --enable-ggiwmh
4562 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4563 def_ggiwmh
='#define CONFIG_GGIWMH 1'
4564 libs_mplayer
="$libs_mplayer -lggiwmh"
4567 def_ggiwmh
='#undef CONFIG_GGIWMH'
4573 if test "$_aa" = auto
; then
4576 extern struct aa_hardware_params aa_defparams;
4577 extern struct aa_renderparams aa_defrenderparams;
4581 (void) aa_init(0, 0, 0);
4582 c = aa_autoinit(&aa_defparams);
4583 p = aa_getrenderparams();
4584 aa_autoinitkbd(c,0);
4588 for _ld_tmp
in "-laa" ; do
4589 cc_check
$_ld_tmp && libs_mplayer
="$libs_mplayer $_ld_tmp" && _aa
=yes && break
4592 if test "$_aa" = yes ; then
4593 def_aa
='#define CONFIG_AA 1'
4595 libs_mplayer
="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4597 vomodules
="aa $vomodules"
4599 def_aa
='#undef CONFIG_AA'
4600 novomodules
="aa $novomodules"
4606 if test "$_caca" = auto
; then
4608 if ( caca-config
--version ) >> "$TMPLOG" 2>&1 ; then
4611 #ifdef CACA_API_VERSION_1
4614 int main(void) { (void) caca_init(); return 0; }
4616 cc_check $
(caca-config
--libs) && _caca
=yes
4619 if test "$_caca" = yes ; then
4620 def_caca
='#define CONFIG_CACA 1'
4621 extra_cflags
="$extra_cflags $(caca-config --cflags)"
4622 libs_mplayer
="$libs_mplayer $(caca-config --libs)"
4623 vomodules
="caca $vomodules"
4625 def_caca
='#undef CONFIG_CACA'
4626 novomodules
="caca $novomodules"
4632 if test "$_svga" = auto
; then
4634 header_check vga.h
-lvga $_ld_lm && _svga
=yes
4636 if test "$_svga" = yes ; then
4637 def_svga
='#define CONFIG_SVGALIB 1'
4638 libs_mplayer
="$libs_mplayer -lvga"
4639 vomodules
="svga $vomodules"
4641 def_svga
='#undef CONFIG_SVGALIB'
4642 novomodules
="svga $novomodules"
4648 if test "$_fbdev" = auto
; then
4652 if test "$_fbdev" = yes ; then
4653 def_fbdev
='#define CONFIG_FBDEV 1'
4654 vomodules
="fbdev $vomodules"
4656 def_fbdev
='#undef CONFIG_FBDEV'
4657 novomodules
="fbdev $novomodules"
4664 if test "$_dvb" = auto
; then
4668 #include <sys/ioctl.h>
4672 #include <linux/dvb/dmx.h>
4673 #include <linux/dvb/frontend.h>
4674 #include <linux/dvb/video.h>
4675 #include <linux/dvb/audio.h>
4676 int main(void) {return 0;}
4678 for _inc_tmp
in "" "-I/usr/src/DVB/include" ; do
4679 cc_check
$_inc_tmp && _dvb
=yes && \
4680 extra_cflags
="$extra_cflags $_inc_tmp" && break
4684 if test "$_dvb" = yes ; then
4686 inputmodules
="dvb $inputmodules"
4687 def_dvb
='#define CONFIG_DVB 1'
4688 def_dvbin
='#define CONFIG_DVBIN 1'
4689 aomodules
="mpegpes(dvb) $aomodules"
4690 vomodules
="mpegpes(dvb) $vomodules"
4693 noinputmodules
="dvb $noinputmodules"
4694 def_dvb
='#undef CONFIG_DVB'
4695 def_dvbin
='#undef CONFIG_DVBIN '
4696 aomodules
="mpegpes(file) $aomodules"
4697 vomodules
="mpegpes(file) $vomodules"
4703 echocheck
"QuickTime"
4704 if test "$quicktime" = auto
; then
4706 #include <QuickTime/QuickTime.h>
4708 ImageDescription *desc;
4715 cc_check
-framework QuickTime
&& quicktime
=yes
4717 if test "$quicktime" = yes ; then
4718 extra_ldflags
="$extra_ldflags -framework QuickTime"
4719 def_quicktime
='#define CONFIG_QUICKTIME 1'
4721 def_quicktime
='#undef CONFIG_QUICKTIME'
4727 if test "$_quartz" = auto
; then
4729 #include <Carbon/Carbon.h>
4731 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4736 cc_check
-framework Carbon
&& _quartz
=yes
4738 if test "$_quartz" = yes ; then
4739 libs_mplayer
="$libs_mplayer -framework Carbon"
4740 def_quartz
='#define CONFIG_QUARTZ 1'
4741 vomodules
="quartz $vomodules"
4743 def_quartz
='#undef CONFIG_QUARTZ'
4744 novomodules
="quartz $novomodules"
4748 echocheck
"CoreVideo"
4749 if test "$_corevideo" = auto
; then
4751 #include <Carbon/Carbon.h>
4752 #include <CoreServices/CoreServices.h>
4753 #include <OpenGL/OpenGL.h>
4754 #include <QuartzCore/CoreVideo.h>
4755 int main(void) { return 0; }
4758 cc_check
-framework Carbon
-framework Cocoa
-framework QuartzCore
-framework OpenGL
&& _corevideo
=yes
4760 if test "$_corevideo" = yes ; then
4761 vomodules
="corevideo $vomodules"
4762 libs_mplayer
="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4763 def_corevideo
='#define CONFIG_COREVIDEO 1'
4765 novomodules
="corevideo $novomodules"
4766 def_corevideo
='#undef CONFIG_COREVIDEO'
4768 echores
"$_corevideo"
4773 echocheck
"PNG support"
4774 if test "$_png" = auto
; then
4777 # Don't check for -lpng on irix since it has its own libpng
4778 # incompatible with the GNU libpng
4779 res_comment
="disabled on irix (not GNU libpng)"
4785 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4786 printf("libpng: %s\n", png_libpng_ver);
4787 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4790 cc_check
-lpng -lz $_ld_lm && _png
=yes
4794 if test "$_png" = yes ; then
4795 def_png
='#define CONFIG_PNG 1'
4796 extra_ldflags
="$extra_ldflags -lpng -lz"
4798 def_png
='#undef CONFIG_PNG'
4801 echocheck
"MNG support"
4802 if test "$_mng" = auto
; then
4807 const char * p_ver = mng_version_text();
4808 return !p_ver || p_ver[0] == 0;
4811 if cc_check
-lmng -lz $_ld_lm ; then
4816 if test "$_mng" = yes ; then
4817 def_mng
='#define CONFIG_MNG 1'
4818 extra_ldflags
="$extra_ldflags -lmng -lz"
4820 def_mng
='#undef CONFIG_MNG'
4823 echocheck
"JPEG support"
4824 if test "$_jpeg" = auto
; then
4831 #include <jpeglib.h>
4832 int main(void) { return 0; }
4834 cc_check
-ljpeg $_ld_lm && _jpeg
=yes
4838 if test "$_jpeg" = yes ; then
4839 def_jpeg
='#define CONFIG_JPEG 1'
4840 vomodules
="jpeg $vomodules"
4841 extra_ldflags
="$extra_ldflags -ljpeg"
4843 def_jpeg
='#undef CONFIG_JPEG'
4844 novomodules
="jpeg $novomodules"
4849 echocheck
"PNM support"
4850 if test "$_pnm" = yes; then
4851 def_pnm
="#define CONFIG_PNM 1"
4852 vomodules
="pnm $vomodules"
4854 def_pnm
="#undef CONFIG_PNM"
4855 novomodules
="pnm $novomodules"
4861 echocheck
"GIF support"
4862 # This is to appease people who want to force gif support.
4863 # If it is forced to yes, then we still do checks to determine
4864 # which gif library to use.
4865 if test "$_gif" = yes ; then
4870 if test "$_gif" = auto
; then
4873 #include <gif_lib.h>
4874 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4876 for _ld_gif
in "-lungif" "-lgif" ; do
4877 cc_check
$_ld_gif && _gif
=yes && break
4881 # If no library was found, and the user wants support forced,
4882 # then we force it on with libgif, as this is the safest
4883 # assumption IMHO. (libungif & libregif both create symbolic
4884 # links to libgif. We also assume that no x11 support is needed,
4885 # because if you are forcing this, then you _should_ know what
4886 # you are doing. [ Besides, package maintainers should never
4887 # have compiled x11 deps into libungif in the first place. ] )
4890 if test "$_force_gif" = yes && test "$_gif" = no
; then
4895 if test "$_gif" = yes ; then
4896 def_gif
='#define CONFIG_GIF 1'
4897 codecmodules
="gif $codecmodules"
4898 vomodules
="gif89a $vomodules"
4899 res_comment
="old version, some encoding functions disabled"
4900 def_gif_4
='#undef CONFIG_GIF_4'
4901 extra_ldflags
="$extra_ldflags $_ld_gif"
4905 #include <gif_lib.h>
4906 void catch(int sig) { exit(1); }
4908 signal(SIGSEGV, catch); // catch segfault
4909 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4910 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4914 if cc_check
"$_ld_gif" ; then
4915 def_gif_4
='#define CONFIG_GIF_4 1'
4919 def_gif
='#undef CONFIG_GIF'
4920 def_gif_4
='#undef CONFIG_GIF_4'
4921 novomodules
="gif89a $novomodules"
4922 nocodecmodules
="gif $nocodecmodules"
4927 case "$_gif" in yes*)
4928 echocheck
"broken giflib workaround"
4929 def_gif_tvt_hack
='#define CONFIG_GIF_TVT_HACK 1'
4932 #include <gif_lib.h>
4935 printf("UserData is at address %p\n", gif.UserData);
4939 if cc_check
"$_ld_gif" ; then
4940 def_gif_tvt_hack
='#undef CONFIG_GIF_TVT_HACK'
4949 echocheck
"VESA support"
4950 if test "$_vesa" = auto
; then
4953 int main(void) { vbeVersion(); return 0; }
4956 cc_check
-lvbe -llrmi && _vesa
=yes
4958 if test "$_vesa" = yes ; then
4959 def_vesa
='#define CONFIG_VESA 1'
4960 libs_mplayer
="$libs_mplayer -lvbe -llrmi"
4961 vomodules
="vesa $vomodules"
4963 def_vesa
='#undef CONFIG_VESA'
4964 novomodules
="vesa $novomodules"
4976 def_sdl_sdl_h
="#undef CONFIG_SDL_SDL_H"
4977 if test -z "$_sdlconfig" ; then
4978 if ( sdl-config
--version ) >>"$TMPLOG" 2>&1 ; then
4979 _sdlconfig
="sdl-config"
4980 elif ( sdl11-config
--version ) >>"$TMPLOG" 2>&1 ; then
4981 _sdlconfig
="sdl11-config"
4986 if test "$_sdl" = auto ||
test "$_sdl" = yes ; then
4988 #ifdef CONFIG_SDL_SDL_H
4989 #include <SDL/SDL.h>
4994 // we allow SDL hacking our main() only on OSX
4997 int main(int argc, char *argv[]) {
4998 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5003 for _ld_tmp
in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5004 if cc_check
-DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5006 def_sdl_sdl_h
="#define CONFIG_SDL_SDL_H 1"
5010 if test "$_sdl" = no
&& "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5011 res_comment
="using $_sdlconfig"
5013 _inc_tmp
="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5014 _ld_tmp
="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5016 _inc_tmp
=$
($_sdlconfig --cflags |
sed s
/-Dmain=SDL_main
//)
5017 _ld_tmp
=$
($_sdlconfig --libs |
sed -e s
/-mwindows// -e s
/-lmingw32//)
5019 _inc_tmp
="$($_sdlconfig --cflags)"
5020 _ld_tmp
="$($_sdlconfig --libs)"
5022 if cc_check
$_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5027 if test "$_sdl" = yes ; then
5028 def_sdl
='#define CONFIG_SDL 1'
5029 extra_cflags
="$extra_cflags $_inc_tmp"
5030 libs_mplayer
="$libs_mplayer $_ld_tmp"
5031 vomodules
="sdl $vomodules"
5032 aomodules
="sdl $aomodules"
5034 def_sdl
='#undef CONFIG_SDL'
5035 novomodules
="sdl $novomodules"
5036 noaomodules
="sdl $noaomodules"
5041 # make sure this stays below CoreVideo to avoid issues due to namespace
5042 # conflicts between -lGL and -framework OpenGL
5044 #Note: this test is run even with --enable-gl since we autodetect linker flags
5045 if (test "$_x11" = yes ||
test "$_sdl" = yes || win32
) && test "$_gl" != no
; then
5048 #include <windows.h>
5050 #elif defined(GL_SDL)
5052 #ifdef CONFIG_SDL_SDL_H
5053 #include <SDL/SDL.h>
5058 // we allow SDL hacking our main() only on OSX
5063 #include <X11/Xlib.h>
5066 int main(int argc, char *argv[]) {
5069 wglCreateContext(dc);
5070 #elif defined(GL_SDL)
5071 SDL_GL_SwapBuffers();
5073 glXCreateContext(NULL, NULL, NULL, True);
5080 for _ld_tmp
in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5081 if cc_check
$_ld_tmp $_ld_lm ; then
5084 libs_mplayer
="$libs_mplayer $_ld_tmp $_ld_dl"
5088 if cc_check
-DGL_WIN32 -lopengl32 ; then
5091 libs_mplayer
="$libs_mplayer -lopengl32 -lgdi32"
5093 # last so it can reuse any linker etc. flags detected before
5094 if test "$_sdl" = yes ; then
5095 if cc_check
-DGL_SDL ||
5096 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL ; then
5099 elif cc_check
-DGL_SDL -lGL ||
5100 cc_check
-DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5103 libs_mplayer
="$libs_mplayer -lGL"
5109 if test "$_gl" = yes ; then
5110 def_gl
='#define CONFIG_GL 1'
5111 res_comment
="backends:"
5112 if test "$_gl_win32" = yes ; then
5113 def_gl_win32
='#define CONFIG_GL_WIN32 1'
5114 res_comment
="$res_comment win32"
5116 if test "$_gl_x11" = yes ; then
5117 def_gl_x11
='#define CONFIG_GL_X11 1'
5118 res_comment
="$res_comment x11"
5120 if test "$_gl_sdl" = yes ; then
5121 def_gl_sdl
='#define CONFIG_GL_SDL 1'
5122 res_comment
="$res_comment sdl"
5124 vomodules
="opengl $vomodules"
5126 def_gl
='#undef CONFIG_GL'
5127 def_gl_win32
='#undef CONFIG_GL_WIN32'
5128 def_gl_x11
='#undef CONFIG_GL_X11'
5129 def_gl_sdl
='#undef CONFIG_GL_SDL'
5130 novomodules
="opengl $novomodules"
5135 echocheck
"MatrixView"
5136 if test "$_gl" = no
; then
5139 if test "$matrixview" = yes ; then
5140 vomodules
="matrixview $vomodules"
5141 def_matrixview
='#define CONFIG_MATRIXVIEW 1'
5143 novomodules
="matrixview $novomodules"
5144 def_matrixview
='#undef CONFIG_MATRIXVIEW'
5146 echores
"$matrixview"
5150 echocheck
"KVA (SNAP/WarpOverlay!/DIVE)"
5151 if test "$_kva" = auto
; then
5155 int main(void) { return 0; }
5158 cc_check
-lkva && _kva
=yes
5160 if test "$_kva" = yes ; then
5161 def_kva
='#define CONFIG_KVA 1'
5162 libs_mplayer
="$libs_mplayer -lkva"
5163 vomodules
="kva $vomodules"
5165 def_kva
='#undef CONFIG_KVA'
5166 novomodules
="kva $novomodules"
5174 echocheck
"Windows waveout"
5175 if test "$_win32waveout" = auto
; then
5177 #include <windows.h>
5178 #include <mmsystem.h>
5179 int main(void) { return 0; }
5182 cc_check
-lwinmm && _win32waveout
=yes
5184 if test "$_win32waveout" = yes ; then
5185 def_win32waveout
='#define CONFIG_WIN32WAVEOUT 1'
5186 libs_mplayer
="$libs_mplayer -lwinmm"
5187 aomodules
="win32 $aomodules"
5189 def_win32waveout
='#undef CONFIG_WIN32WAVEOUT'
5190 noaomodules
="win32 $noaomodules"
5192 echores
"$_win32waveout"
5194 echocheck
"Direct3D"
5195 if test "$_direct3d" = auto
; then
5197 #include <windows.h>
5199 int main(void) { return 0; }
5202 cc_check
&& _direct3d
=yes
5204 if test "$_direct3d" = yes ; then
5205 def_direct3d
='#define CONFIG_DIRECT3D 1'
5206 vomodules
="direct3d $vomodules"
5208 def_direct3d
='#undef CONFIG_DIRECT3D'
5209 novomodules
="direct3d $novomodules"
5211 echores
"$_direct3d"
5214 if test "$_directx" = auto
; then
5216 #include <windows.h>
5219 int main(void) { return 0; }
5222 cc_check
-lgdi32 && _directx
=yes
5224 if test "$_directx" = yes ; then
5225 def_directx
='#define CONFIG_DIRECTX 1'
5226 libs_mplayer
="$libs_mplayer -lgdi32"
5227 vomodules
="directx $vomodules"
5228 aomodules
="dsound $aomodules"
5230 def_directx
='#undef CONFIG_DIRECTX'
5231 novomodules
="directx $novomodules"
5232 noaomodules
="dsound $noaomodules"
5240 if test "$_dxr2" = auto
; then
5242 for _inc_tmp
in "" -I/usr
/local
/include
/dxr2
-I/usr
/include
/dxr2
; do
5243 header_check dxr2ioctl.h
$_inc_tmp && _dxr2
=yes &&
5244 extra_cflags
="$extra_cflags $_inc_tmp" && break
5247 if test "$_dxr2" = yes; then
5248 def_dxr2
='#define CONFIG_DXR2 1'
5249 aomodules
="dxr2 $aomodules"
5250 vomodules
="dxr2 $vomodules"
5252 def_dxr2
='#undef CONFIG_DXR2'
5253 noaomodules
="dxr2 $noaomodules"
5254 novomodules
="dxr2 $novomodules"
5259 if test "$_dxr3" = auto
; then
5261 header_check linux
/em8300.h
&& _dxr3
=yes
5263 if test "$_dxr3" = yes ; then
5264 def_dxr3
='#define CONFIG_DXR3 1'
5265 vomodules
="dxr3 $vomodules"
5267 def_dxr3
='#undef CONFIG_DXR3'
5268 novomodules
="dxr3 $novomodules"
5273 echocheck
"IVTV TV-Out (pre linux-2.6.24)"
5274 if test "$_ivtv" = auto
; then
5277 #include <inttypes.h>
5278 #include <linux/types.h>
5279 #include <linux/videodev2.h>
5280 #include <linux/ivtv.h>
5281 #include <sys/ioctl.h>
5283 struct ivtv_cfg_stop_decode sd;
5284 struct ivtv_cfg_start_decode sd1;
5285 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5286 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5290 cc_check
&& _ivtv
=yes
5292 if test "$_ivtv" = yes ; then
5293 def_ivtv
='#define CONFIG_IVTV 1'
5294 vomodules
="ivtv $vomodules"
5295 aomodules
="ivtv $aomodules"
5297 def_ivtv
='#undef CONFIG_IVTV'
5298 novomodules
="ivtv $novomodules"
5299 noaomodules
="ivtv $noaomodules"
5304 echocheck
"V4L2 MPEG Decoder"
5305 if test "$_v4l2" = auto
; then
5308 #include <inttypes.h>
5309 #include <linux/types.h>
5310 #include <linux/videodev2.h>
5311 #include <linux/version.h>
5313 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5314 #error kernel headers too old, need 2.6.22
5316 struct v4l2_ext_controls ctrls;
5317 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5322 cc_check
&& _v4l2
=yes
5324 if test "$_v4l2" = yes ; then
5325 def_v4l2
='#define CONFIG_V4L2_DECODER 1'
5326 vomodules
="v4l2 $vomodules"
5327 aomodules
="v4l2 $aomodules"
5329 def_v4l2
='#undef CONFIG_V4L2_DECODER'
5330 novomodules
="v4l2 $novomodules"
5331 noaomodules
="v4l2 $noaomodules"
5342 echocheck
"OSS Audio"
5343 if test "$_ossaudio" = auto
; then
5345 #include <sys/ioctl.h>
5346 #include <$_soundcard_header>
5347 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5350 cc_check
&& _ossaudio
=yes
5352 if test "$_ossaudio" = yes ; then
5353 def_ossaudio
='#define CONFIG_OSS_AUDIO 1'
5354 aomodules
="oss $aomodules"
5356 #include <sys/ioctl.h>
5357 #include <$_soundcard_header>
5358 #ifdef OPEN_SOUND_SYSTEM
5359 int main(void) { return 0; }
5361 #error Not the real thing
5365 cc_check
&& _real_ossaudio
=yes
5366 if test "$_real_ossaudio" = yes; then
5367 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5368 # Check for OSS4 headers (override default headers)
5369 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5370 if test -f /etc
/oss.conf
; then
5372 _ossinc
="$OSSLIBDIR/include"
5373 if test -f "$_ossinc/sys/soundcard.h"; then
5374 extra_cflags
="-I$_ossinc $extra_cflags"
5377 elif netbsd || openbsd
; then
5378 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/sound"'
5379 extra_ldflags
="$extra_ldflags -lossaudio"
5381 def_ossaudio_devdsp
='#define PATH_DEV_DSP "/dev/dsp"'
5383 def_ossaudio_devmixer
='#define PATH_DEV_MIXER "/dev/mixer"'
5385 def_ossaudio
='#undef CONFIG_OSS_AUDIO'
5386 def_ossaudio_devdsp
='#define PATH_DEV_DSP ""'
5387 def_ossaudio_devmixer
='#define PATH_DEV_MIXER ""'
5388 noaomodules
="oss $noaomodules"
5390 echores
"$_ossaudio"
5394 if test "$_arts" = auto
; then
5396 if ( artsc-config
--version ) >> "$TMPLOG" 2>&1 ; then
5397 function_check artsc.h
"arts_init()" $
(artsc-config
--libs) $
(artsc-config
--cflags) &&
5402 if test "$_arts" = yes ; then
5403 def_arts
='#define CONFIG_ARTS 1'
5404 aomodules
="arts $aomodules"
5405 libs_mplayer
="$libs_mplayer $(artsc-config --libs)"
5406 extra_cflags
="$extra_cflags $(artsc-config --cflags)"
5408 noaomodules
="arts $noaomodules"
5414 if test "$_esd" = auto
; then
5416 if ( esd-config
--version ) >> "$TMPLOG" 2>&1 ; then
5420 int main(void) { int fd = esd_open_sound("test"); return fd; }
5422 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd
=yes
5428 if test "$_esd" = yes ; then
5429 def_esd
='#define CONFIG_ESD 1'
5430 aomodules
="esd $aomodules"
5431 libs_mplayer
="$libs_mplayer $(esd-config --libs)"
5432 extra_cflags
="$extra_cflags $(esd-config --cflags)"
5434 echocheck
"esd_get_latency()"
5437 int main(void) { return esd_get_latency(0); }
5439 cc_check $
(esd-config
--libs) $
(esd-config
--cflags) && _esd_latency
=yes && def_esd_latency
='#define CONFIG_ESD_LATENCY 1'
5440 echores
"$_esd_latency"
5442 def_esd
='#undef CONFIG_ESD'
5443 def_esd_latency
='#undef CONFIG_ESD_LATENCY'
5444 noaomodules
="esd $noaomodules"
5449 if test "$_nas" = auto
; then
5451 header_check audio
/audiolib.h
$_ld_lm -laudio -lXt && _nas
=yes
5453 if test "$_nas" = yes ; then
5454 def_nas
='#define CONFIG_NAS 1'
5455 libs_mplayer
="$libs_mplayer -laudio -lXt"
5456 aomodules
="nas $aomodules"
5458 noaomodules
="nas $noaomodules"
5459 def_nas
='#undef CONFIG_NAS'
5465 if test "$_pulse" = auto
; then
5467 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5468 header_check pulse
/pulseaudio.h $
($_pkg_config --libs --cflags libpulse
) &&
5474 if test "$_pulse" = yes ; then
5475 def_pulse
='#define CONFIG_PULSE 1'
5476 aomodules
="pulse $aomodules"
5477 libs_mplayer
="$libs_mplayer $($_pkg_config --libs libpulse)"
5478 extra_cflags
="$extra_cflags $($_pkg_config --cflags libpulse)"
5480 def_pulse
='#undef CONFIG_PULSE'
5481 noaomodules
="pulse $noaomodules"
5486 if test "$_jack" = auto
; then
5490 #include <jack/jack.h>
5491 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5493 if cc_check
-ljack ; then
5494 libs_mplayer
="$libs_mplayer -ljack"
5495 elif cc_check $
($_pkg_config --libs --cflags --silence-errors jack
) ; then
5496 libs_mplayer
="$libs_mplayer $($_pkg_config --libs jack)"
5497 extra_cflags
="$extra_cflags "$
($_pkg_config --cflags jack
)""
5503 if test "$_jack" = yes ; then
5504 def_jack
='#define CONFIG_JACK 1'
5505 aomodules
="jack $aomodules"
5507 noaomodules
="jack $noaomodules"
5512 if test "$_openal" = auto
; then
5516 #include <OpenAL/al.h>
5521 alSourceQueueBuffers(0, 0, 0);
5522 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5526 for I
in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5527 cc_check
$I && _openal
=yes && break
5528 cc_check
-DOPENAL_AL_H=1 $I && def_openal_h
='#define OPENAL_AL_H 1' && _openal
=yes && break
5530 test "$_openal" = yes && libs_mplayer
="$libs_mplayer $I"
5532 if test "$_openal" = yes ; then
5533 def_openal
='#define CONFIG_OPENAL 1'
5534 aomodules
="openal $aomodules"
5536 noaomodules
="openal $noaomodules"
5540 echocheck
"ALSA audio"
5541 if test "$_alloca" != yes ; then
5543 res_comment
="alloca missing"
5545 if test "$_alsa" != no
; then
5548 #include <sys/asoundlib.h>
5549 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5550 #error "alsa version != 0.5.x"
5552 int main(void) { return 0; }
5554 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.5.x'
5557 #include <sys/asoundlib.h>
5558 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5559 #error "alsa version != 0.9.x"
5561 int main(void) { return 0; }
5563 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-sys'
5565 #include <alsa/asoundlib.h>
5566 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5567 #error "alsa version != 0.9.x"
5569 int main(void) { return 0; }
5571 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='0.9.x-alsa'
5574 #include <sys/asoundlib.h>
5575 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5576 #error "alsa version != 1.0.x"
5578 int main(void) { return 0; }
5580 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-sys'
5582 #include <alsa/asoundlib.h>
5583 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5584 #error "alsa version != 1.0.x"
5586 int main(void) { return 0; }
5588 cc_check
-lasound $_ld_dl $_ld_pthread && _alsaver
='1.0.x-alsa'
5590 def_alsa
='#undef CONFIG_ALSA'
5591 def_alsa5
='#undef CONFIG_ALSA5'
5592 def_alsa9
='#undef CONFIG_ALSA9'
5593 def_alsa1x
='#undef CONFIG_ALSA1X'
5594 def_sys_asoundlib_h
='#undef HAVE_SYS_ASOUNDLIB_H'
5595 def_alsa_asoundlib_h
='#undef HAVE_ALSA_ASOUNDLIB_H'
5596 if test "$_alsaver" ; then
5598 if test "$_alsaver" = '0.5.x' ; then
5600 aomodules
="alsa5 $aomodules"
5601 def_alsa5
='#define CONFIG_ALSA5 1'
5602 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5603 res_comment
="using alsa 0.5.x and sys/asoundlib.h"
5604 elif test "$_alsaver" = '0.9.x-sys' ; then
5606 aomodules
="alsa $aomodules"
5607 def_alsa
='#define CONFIG_ALSA 1'
5608 def_alsa9
='#define CONFIG_ALSA9 1'
5609 def_sys_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5610 res_comment
="using alsa 0.9.x and sys/asoundlib.h"
5611 elif test "$_alsaver" = '0.9.x-alsa' ; then
5613 aomodules
="alsa $aomodules"
5614 def_alsa
='#define CONFIG_ALSA 1'
5615 def_alsa9
='#define CONFIG_ALSA9 1'
5616 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5617 res_comment
="using alsa 0.9.x and alsa/asoundlib.h"
5618 elif test "$_alsaver" = '1.0.x-sys' ; then
5620 aomodules
="alsa $aomodules"
5621 def_alsa
='#define CONFIG_ALSA 1'
5622 def_alsa1x
="#define CONFIG_ALSA1X 1"
5623 def_alsa_asoundlib_h
='#define HAVE_SYS_ASOUNDLIB_H 1'
5624 res_comment
="using alsa 1.0.x and sys/asoundlib.h"
5625 elif test "$_alsaver" = '1.0.x-alsa' ; then
5627 aomodules
="alsa $aomodules"
5628 def_alsa
='#define CONFIG_ALSA 1'
5629 def_alsa1x
="#define CONFIG_ALSA1X 1"
5630 def_alsa_asoundlib_h
='#define HAVE_ALSA_ASOUNDLIB_H 1'
5631 res_comment
="using alsa 1.0.x and alsa/asoundlib.h"
5634 res_comment
="unknown version"
5636 extra_ldflags
="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5638 noaomodules
="alsa $noaomodules"
5643 echocheck
"Sun audio"
5644 if test "$_sunaudio" = auto
; then
5646 #include <sys/types.h>
5647 #include <sys/audioio.h>
5648 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5651 cc_check
&& _sunaudio
=yes
5653 if test "$_sunaudio" = yes ; then
5654 def_sunaudio
='#define CONFIG_SUN_AUDIO 1'
5655 aomodules
="sun $aomodules"
5657 def_sunaudio
='#undef CONFIG_SUN_AUDIO'
5658 noaomodules
="sun $noaomodules"
5660 echores
"$_sunaudio"
5663 def_mlib
='#define CONFIG_MLIB 0'
5665 echocheck
"Sun mediaLib"
5666 if test "$_mlib" = auto
; then
5670 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5672 cc_check
-lmlib && _mlib
=yes && def_mlib
='#define CONFIG_MLIB 1'
5679 echocheck
"CoreAudio"
5680 if test "$_coreaudio" = auto
; then
5682 #include <CoreAudio/CoreAudio.h>
5683 #include <AudioToolbox/AudioToolbox.h>
5684 #include <AudioUnit/AudioUnit.h>
5685 int main(void) { return 0; }
5688 cc_check
-framework CoreAudio
-framework AudioUnit
-framework AudioToolbox
&& _coreaudio
=yes
5690 if test "$_coreaudio" = yes ; then
5691 libs_mplayer
="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5692 def_coreaudio
='#define CONFIG_COREAUDIO 1'
5693 aomodules
="coreaudio $aomodules"
5695 def_coreaudio
='#undef CONFIG_COREAUDIO'
5696 noaomodules
="coreaudio $noaomodules"
5703 echocheck
"SGI audio"
5704 if test "$_sgiaudio" = auto
; then
5706 header_check dmedia
/audio.h
&& _sgiaudio
=yes
5708 if test "$_sgiaudio" = "yes" ; then
5709 def_sgiaudio
='#define CONFIG_SGI_AUDIO 1'
5710 libs_mplayer
="$libs_mplayer -laudio"
5711 aomodules
="sgi $aomodules"
5713 def_sgiaudio
='#undef CONFIG_SGI_AUDIO'
5714 noaomodules
="sgi $noaomodules"
5716 echores
"$_sgiaudio"
5721 echocheck
"KAI (UNIAUD/DART)"
5722 if test "$_kai" = auto
; then
5726 int main(void) { return 0; }
5729 cc_check
-lkai && _kai
=yes
5731 if test "$_kai" = yes ; then
5732 def_kai
='#define CONFIG_KAI 1'
5733 libs_mplayer
="$libs_mplayer -lkai"
5734 aomodules
="kai $aomodules"
5736 def_kai
='#undef CONFIG_KAI'
5737 noaomodules
="kai $noaomodules"
5742 if test "$_dart" = auto
; then
5746 int main(void) { return 0; }
5749 cc_check
-ldart && _dart
=yes
5751 if test "$_dart" = yes ; then
5752 def_dart
='#define CONFIG_DART 1'
5753 libs_mplayer
="$libs_mplayer -ldart"
5754 aomodules
="dart $aomodules"
5756 def_dart
='#undef CONFIG_DART'
5757 noaomodules
="dart $noaomodules"
5763 # set default CD/DVD devices
5764 if win32 || os2
; then
5765 default_cdrom_device
="D:"
5767 default_cdrom_device
="/dev/disk1"
5768 elif dragonfly
; then
5769 default_cdrom_device
="/dev/cd0"
5771 default_cdrom_device
="/dev/acd0"
5773 default_cdrom_device
="/dev/rcd0c"
5775 default_cdrom_device
="/vol/dev/aliases/cdrom0"
5776 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5777 # file system and the volfs service.
5778 test -r "/cdrom/cdrom0" && default_cdrom_device
="/cdrom/cdrom0"
5780 default_cdrom_device
="a1ide.device:2"
5782 default_cdrom_device
="/dev/cdrom"
5785 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos
; then
5786 default_dvd_device
=$default_cdrom_device
5788 default_dvd_device
="/dev/rdiskN"
5790 default_dvd_device
="/dev/dvd"
5794 echocheck
"VCD support"
5795 if test "$_vcd" = auto
; then
5797 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2
; then
5800 header_check
ddk
/ntddcdrm.h
&& _vcd
=yes
5803 if test "$_vcd" = yes; then
5804 inputmodules
="vcd $inputmodules"
5805 def_vcd
='#define CONFIG_VCD 1'
5807 def_vcd
='#undef CONFIG_VCD'
5808 noinputmodules
="vcd $noinputmodules"
5809 res_comment
="not supported on this OS"
5815 echocheck
"Blu-ray support"
5816 if test "$_bluray" = auto
; then
5821 #include <libbluray/bluray.h>
5823 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5827 compile_check
$TMPC -lbluray && _bluray
=yes
5829 if test "$_bluray" = yes ; then
5830 def_bluray
='#define CONFIG_LIBBLURAY 1'
5831 extra_ldflags
="$extra_ldflags -lbluray"
5832 inputmodules
="bluray $inputmodules"
5834 def_bluray
='#undef CONFIG_LIBBLURAY'
5835 noinputmodules
="bluray $noinputmodules"
5840 if test "$_dvdread_internal" = auto
&& test ! -f "libdvdread4/dvd_reader.c" ; then
5841 _dvdread_internal
=no
5843 if test "$_dvdread_internal" = auto
; then
5844 _dvdread_internal
=no
5846 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux
) \
5847 && (test "$_dvd" = yes ||
test "$_cdrom" = yes ||
test "$_cdio" = yes || \
5848 test "$_dvdio" = yes ||
test "$_bsdi_dvd" = yes) \
5849 || darwin || win32 || os2
; then
5850 _dvdread_internal
=yes
5852 extra_cflags
="-Ilibdvdread4 $extra_cflags"
5854 elif test "$_dvdread" = auto
; then
5856 if test "$_dl" = yes; then
5858 #include <inttypes.h>
5859 #include <dvdread/dvd_reader.h>
5860 #include <dvdread/ifo_types.h>
5861 #include <dvdread/ifo_read.h>
5862 #include <dvdread/nav_read.h>
5863 int main(void) { return 0; }
5865 _dvdreadcflags
=$
($_dvdreadconfig --cflags)
5866 _dvdreadlibs
=$
($_dvdreadconfig --libs)
5867 if cc_check
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5868 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5870 extra_cflags
="$extra_cflags $_dvdreadcflags"
5871 extra_ldflags
="$extra_ldflags $_dvdreadlibs"
5872 res_comment
="external"
5877 if test "$_dvdread_internal" = yes; then
5878 def_dvdread
='#define CONFIG_DVDREAD 1'
5879 inputmodules
="dvdread(internal) $inputmodules"
5881 res_comment
="internal"
5882 elif test "$_dvdread" = yes; then
5883 def_dvdread
='#define CONFIG_DVDREAD 1'
5885 extra_ldflags
="$extra_ldflags -ldvdread"
5886 inputmodules
="dvdread(external) $inputmodules"
5887 res_comment
="external"
5889 def_dvdread
='#undef CONFIG_DVDREAD'
5890 noinputmodules
="dvdread $noinputmodules"
5895 echocheck
"internal libdvdcss"
5896 if test "$_libdvdcss_internal" = auto
; then
5897 _libdvdcss_internal
=no
5898 test "$_dvdread_internal" = yes && _libdvdcss_internal
=yes
5899 hpux
&& test "$_hpux_scsi_h" = no
&& _libdvdcss_internal
=no
5901 if test "$_libdvdcss_internal" = yes ; then
5902 if linux || netbsd || openbsd || bsdos
; then
5903 def_dvd_linux
='#define HAVE_LINUX_DVD_STRUCT 1'
5904 openbsd
&& def_dvd_openbsd
='#define HAVE_OPENBSD_DVD_STRUCT 1'
5905 elif freebsd || dragonfly
; then
5906 def_dvd_bsd
='#define HAVE_BSD_DVD_STRUCT 1'
5908 def_dvd_darwin
='#define DARWIN_DVD_IOCTL'
5909 extra_ldflags
="$extra_ldflags -framework IOKit -framework Carbon"
5911 cflags_libdvdcss
="-DSYS_CYGWIN -DWIN32"
5913 cflags_libdvdcss
="-DSYS_BEOS"
5915 cflags_libdvdcss
="-DSYS_OS2"
5917 cflags_libdvdcss_dvdread
="-Ilibdvdcss"
5918 def_dvdcss
="#define HAVE_DVDCSS_DVDCSS_H 1"
5919 inputmodules
="libdvdcss(internal) $inputmodules"
5922 noinputmodules
="libdvdcss(internal) $noinputmodules"
5924 echores
"$_libdvdcss_internal"
5927 echocheck
"cdparanoia"
5928 if test "$_cdparanoia" = auto
; then
5930 #include <cdda_interface.h>
5931 #include <cdda_paranoia.h>
5932 // This need a better test. How ?
5933 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5936 for _inc_tmp
in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5937 cc_check
$_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5938 _cdparanoia
=yes && extra_cflags
="$extra_cflags $_inc_tmp" && break
5941 if test "$_cdparanoia" = yes ; then
5943 extra_ldflags
="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5944 openbsd
&& extra_ldflags
="$extra_ldflags -lutil"
5946 echores
"$_cdparanoia"
5950 if test "$_libcdio" = auto
&& test "$_cdparanoia" = no
; then
5953 #include <cdio/version.h>
5954 #include <cdio/cdda.h>
5955 #include <cdio/paranoia.h>
5957 void *test = cdda_verbose_set;
5958 printf("%s\n", CDIO_VERSION);
5959 return test == (void *)1;
5963 for _ld_tmp
in "" "-lwinmm" ; do
5964 _ld_tmp
="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5965 cc_check
$_ld_tmp $_ld_lm \
5966 && _libcdio
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
5968 if test "$_libcdio" = no
&& $_pkg_config --exists libcdio_paranoia
; then
5969 _inc_tmp
=$
($_pkg_config --cflags libcdio_paranoia
)
5970 _ld_tmp
=$
($_pkg_config --libs libcdio_paranoia
)
5971 cc_check
$_inc_tmp $_ld_tmp $_ld_lm && _libcdio
=yes \
5972 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
5975 if test "$_libcdio" = yes && test "$_cdparanoia" = no
; then
5977 def_libcdio
='#define CONFIG_LIBCDIO 1'
5978 def_havelibcdio
='yes'
5980 if test "$_cdparanoia" = yes ; then
5981 res_comment
="using cdparanoia"
5983 def_libcdio
='#undef CONFIG_LIBCDIO'
5984 def_havelibcdio
='no'
5988 if test "$_cdda" = yes ; then
5989 test $_cddb = auto
&& test $networking = yes && _cddb
=yes
5990 def_cdparanoia
='#define CONFIG_CDDA 1'
5991 inputmodules
="cdda $inputmodules"
5993 def_cdparanoia
='#undef CONFIG_CDDA'
5994 noinputmodules
="cdda $noinputmodules"
5997 if test "$_cddb" = yes ; then
5998 def_cddb
='#define CONFIG_CDDB 1'
5999 inputmodules
="cddb $inputmodules"
6002 def_cddb
='#undef CONFIG_CDDB'
6003 noinputmodules
="cddb $noinputmodules"
6006 echocheck
"bitmap font support"
6007 if test "$_bitmap_font" = yes ; then
6008 def_bitmap_font
="#define CONFIG_BITMAP_FONT 1"
6010 def_bitmap_font
="#undef CONFIG_BITMAP_FONT"
6012 echores
"$_bitmap_font"
6015 echocheck
"freetype >= 2.0.9"
6017 # freetype depends on iconv
6018 if test "$_iconv" = no
; then
6020 res_comment
="iconv support needed"
6023 if test "$_freetype" = auto
; then
6024 if ( $_freetypeconfig --version ) >/dev
/null
2>&1 ; then
6027 #include <ft2build.h>
6028 #include FT_FREETYPE_H
6029 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6030 #error "Need FreeType 2.0.9 or newer"
6034 FT_Int major=-1,minor=-1,patch=-1;
6035 int err=FT_Init_FreeType(&library);
6040 cc_check $
($_freetypeconfig --cflags) $
($_freetypeconfig --libs) && _freetype
=yes
6045 if test "$_freetype" = yes ; then
6046 def_freetype
='#define CONFIG_FREETYPE 1'
6047 extra_cflags
="$extra_cflags $($_freetypeconfig --cflags)"
6048 extra_ldflags
="$extra_ldflags $($_freetypeconfig --libs)"
6050 def_freetype
='#undef CONFIG_FREETYPE'
6052 echores
"$_freetype"
6054 if test "$_freetype" = no
; then
6056 res_comment
="FreeType support needed"
6058 echocheck
"fontconfig"
6059 if test "$_fontconfig" = auto
; then
6063 #include <fontconfig/fontconfig.h>
6064 #if FC_VERSION < 20402
6065 #error At least version 2.4.2 of fontconfig required
6069 if (err == FcFalse) {
6070 printf("Couldn't initialize fontconfig lib\n");
6077 for _ld_tmp
in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6078 _ld_tmp
="-lfontconfig $_ld_tmp"
6079 cc_check
$_ld_tmp && _fontconfig
=yes && extra_ldflags
="$extra_ldflags $_ld_tmp" && break
6081 if test "$_fontconfig" = no
&& $_pkg_config --exists fontconfig
; then
6082 _inc_tmp
=$
($_pkg_config --cflags fontconfig
)
6083 _ld_tmp
=$
($_pkg_config --libs fontconfig
)
6084 cc_check
$_inc_tmp $_ld_tmp && _fontconfig
=yes \
6085 && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_tmp"
6088 if test "$_fontconfig" = yes ; then
6089 def_fontconfig
='#define CONFIG_FONTCONFIG 1'
6091 def_fontconfig
='#undef CONFIG_FONTCONFIG'
6093 echores
"$_fontconfig"
6096 echocheck
"SSA/ASS support"
6097 if test "$_ass" = auto
-o "$_ass" = yes ; then
6098 if $_pkg_config libass
; then
6100 def_ass
='#define CONFIG_ASS 1'
6101 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libass)"
6102 extra_cflags
="$extra_cflags $($_pkg_config --cflags libass)"
6105 def_ass
='#undef CONFIG_ASS'
6108 def_ass
='#undef CONFIG_ASS'
6113 echocheck
"fribidi with charsets"
6116 if test "$_fribidi" = auto
; then
6119 /* workaround for fribidi 0.10.4 and below */
6120 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6121 #include <fribidi/fribidi.h>
6123 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6131 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
6132 if $_pkg_config --exists fribidi
> /dev
/null
2>&1 &&
6133 test "$_fribidi" = no
; then
6134 _inc_tmp
="$($_pkg_config --cflags)"
6135 _ld_tmp
="$($_pkg_config --libs)"
6136 cc_check
$_inc_tmp $_ld_tmp && _fribidi
=yes
6139 if test "$_fribidi" = yes ; then
6140 def_fribidi
='#define CONFIG_FRIBIDI 1'
6141 extra_cflags
="$extra_cflags $_inc_tmp"
6142 extra_ldflags
="$extra_ldflags $_ld_tmp"
6144 def_fribidi
='#undef CONFIG_FRIBIDI'
6150 if test "$_enca" = auto
; then
6152 #include <sys/types.h>
6157 langs = enca_get_languages(&langcnt);
6162 cc_check
-lenca $_ld_lm && _enca
=yes
6164 if test "$_enca" = yes ; then
6165 def_enca
='#define CONFIG_ENCA 1'
6166 extra_ldflags
="$extra_ldflags -lenca"
6168 def_enca
='#undef CONFIG_ENCA'
6176 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6179 cc_check
-lz && _zlib
=yes
6180 if test "$_zlib" = yes ; then
6181 def_zlib
='#define CONFIG_ZLIB 1'
6182 extra_ldflags
="$extra_ldflags -lz"
6184 def_zlib
='#define CONFIG_ZLIB 0'
6191 def_bzlib
='#define CONFIG_BZLIB 0'
6194 int main(void) { BZ2_bzlibVersion(); return 0; }
6196 cc_check
-lbz2 && bzlib
=yes
6197 if test "$bzlib" = yes ; then
6198 def_bzlib
='#define CONFIG_BZLIB 1'
6199 extra_ldflags
="$extra_ldflags -lbz2"
6205 if test "$_rtc" = auto
; then
6207 #include <sys/ioctl.h>
6209 #include <linux/rtc.h>
6212 #define RTC_PIE_ON RTCIO_PIE_ON
6214 int main(void) { return RTC_PIE_ON; }
6217 cc_check
&& _rtc
=yes
6220 if test "$_rtc" = yes ; then
6221 def_rtc
='#define HAVE_RTC 1'
6223 def_rtc
='#undef HAVE_RTC'
6228 echocheck
"liblzo2 support"
6229 if test "$_liblzo" = auto
; then
6232 #include <lzo/lzo1x.h>
6233 int main(void) { lzo_init(); return 0; }
6235 cc_check
-llzo2 && _liblzo
=yes
6237 if test "$_liblzo" = yes ; then
6238 def_liblzo
='#define CONFIG_LIBLZO 1'
6239 extra_ldflags
="$extra_ldflags -llzo2"
6240 codecmodules
="liblzo $codecmodules"
6242 def_liblzo
='#undef CONFIG_LIBLZO'
6243 nocodecmodules
="liblzo $nocodecmodules"
6248 echocheck
"mad support"
6249 if test "$_mad" = auto
; then
6251 header_check mad.h
-lmad && _mad
=yes
6253 if test "$_mad" = yes ; then
6254 def_mad
='#define CONFIG_LIBMAD 1'
6255 extra_ldflags
="$extra_ldflags -lmad"
6256 codecmodules
="libmad $codecmodules"
6258 def_mad
='#undef CONFIG_LIBMAD'
6259 nocodecmodules
="libmad $nocodecmodules"
6264 if test "$_twolame" = auto
; then
6266 #include <twolame.h>
6267 int main(void) { twolame_init(); return 0; }
6270 cc_check
-ltwolame $_ld_lm && _twolame
=yes
6272 if test "$_twolame" = yes ; then
6273 def_twolame
='#define CONFIG_TWOLAME 1'
6274 libs_mencoder
="$libs_mencoder -ltwolame"
6275 codecmodules
="twolame $codecmodules"
6277 def_twolame
='#undef CONFIG_TWOLAME'
6278 nocodecmodules
="twolame $nocodecmodules"
6283 if test "$_toolame" = auto
; then
6285 if test "$_twolame" = yes ; then
6286 res_comment
="disabled by twolame"
6289 #include <toolame.h>
6290 int main(void) { toolame_init(); return 0; }
6292 cc_check
-ltoolame $_ld_lm && _toolame
=yes
6295 if test "$_toolame" = yes ; then
6296 def_toolame
='#define CONFIG_TOOLAME 1'
6297 libs_mencoder
="$libs_mencoder -ltoolame"
6298 codecmodules
="toolame $codecmodules"
6300 def_toolame
='#undef CONFIG_TOOLAME'
6301 nocodecmodules
="toolame $nocodecmodules"
6303 if test "$_toolamedir" ; then
6304 res_comment
="using $_toolamedir"
6308 echocheck
"OggVorbis support"
6309 if test "$_tremor_internal" = yes; then
6311 elif test "$_tremor" = auto
; then
6314 #include <tremor/ivorbiscodec.h>
6315 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6317 cc_check
-logg -lvorbisidec $_ld_lm && _tremor
=yes && _libvorbis
=no
6319 if test "$_libvorbis" = auto
; then
6322 #include <vorbis/codec.h>
6323 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6325 cc_check
-lvorbis -logg $_ld_lm && _libvorbis
=yes
6327 if test "$_tremor_internal" = yes ; then
6329 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6330 def_tremor
='#define CONFIG_TREMOR 1'
6331 codecmodules
="tremor(internal) $codecmodules"
6332 res_comment
="internal Tremor"
6333 if test "$_tremor_low" = yes ; then
6334 cflags_tremor_low
="-D_LOW_ACCURACY_"
6335 res_comment
="internal low accuracy Tremor"
6337 elif test "$_tremor" = yes ; then
6339 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6340 def_tremor
='#define CONFIG_TREMOR 1'
6341 codecmodules
="tremor(external) $codecmodules"
6342 res_comment
="external Tremor"
6343 extra_ldflags
="$extra_ldflags -logg -lvorbisidec"
6344 elif test "$_libvorbis" = yes ; then
6346 def_vorbis
='#define CONFIG_OGGVORBIS 1'
6347 codecmodules
="libvorbis $codecmodules"
6348 res_comment
="libvorbis"
6349 extra_ldflags
="$extra_ldflags -lvorbis -logg"
6352 nocodecmodules
="libvorbis $nocodecmodules"
6356 echocheck
"libspeex (version >= 1.1 required)"
6357 if test "$_speex" = auto
; then
6360 #include <speex/speex.h>
6361 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6363 cc_check
-lspeex $_ld_lm && _speex
=yes
6365 if test "$_speex" = yes ; then
6366 def_speex
='#define CONFIG_SPEEX 1'
6367 extra_ldflags
="$extra_ldflags -lspeex"
6368 codecmodules
="speex $codecmodules"
6370 def_speex
='#undef CONFIG_SPEEX'
6371 nocodecmodules
="speex $nocodecmodules"
6375 echocheck
"OggTheora support"
6376 if test "$_theora" = auto
; then
6379 #include <theora/theora.h>
6382 /* Theora is in flux, make sure that all interface routines and datatypes
6383 * exist and work the way we expect it, so we don't break MPlayer. */
6392 theora_info_init(&inf);
6393 theora_comment_init(&tc);
6397 /* we don't want to execute this kind of nonsense; just for making sure
6398 * that compilation works... */
6399 memset(&op, 0, sizeof(op));
6400 r = theora_decode_header(&inf, &tc, &op);
6401 r = theora_decode_init(&st, &inf);
6402 t = theora_granule_time(&st, op.granulepos);
6403 r = theora_decode_packetin(&st, &op);
6404 r = theora_decode_YUVout(&st, &yuv);
6410 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6411 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6412 cc_check
$_inc_theora $_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" &&
6413 extra_cflags
="$extra_cflags $_inc_theora" && _theora
=yes
6414 if test _theora
= no
; then
6415 _ld_theora
="-ltheora -logg"
6416 cc_check
$_ld_theora && extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6418 if test "$_theora" = no
&& test "$_tremor_internal" = yes; then
6419 _ld_theora
=$
($_pkg_config --silence-errors --libs theora
)
6420 _inc_theora
=$
($_pkg_config --silence-errors --cflags theora
)
6421 cc_check tremor
/bitwise.c
$_inc_theora $_ld_theora &&
6422 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 tremor
/bitwise.c
$_ld_theora &&
6427 extra_ldflags
="$extra_ldflags $_ld_theora" && _theora
=yes
6431 if test "$_theora" = yes ; then
6432 def_theora
='#define CONFIG_OGGTHEORA 1'
6433 codecmodules
="libtheora $codecmodules"
6434 # when --enable-theora is forced, we'd better provide a probably sane
6435 # $_ld_theora than nothing
6436 test -z "$_ld_theora" && extra_ldflags
="$extra_ldflags -ltheora -logg"
6438 def_theora
='#undef CONFIG_OGGTHEORA'
6439 nocodecmodules
="libtheora $nocodecmodules"
6443 echocheck
"mp3lib support"
6444 if test "$_mp3lib" = auto
; then
6445 test "$cc_vendor" = intel
&& test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib
=no || _mp3lib
=yes
6447 if test "$_mp3lib" = yes ; then
6448 def_mp3lib
='#define CONFIG_MP3LIB 1'
6449 codecmodules
="mp3lib(internal) $codecmodules"
6451 def_mp3lib
='#undef CONFIG_MP3LIB'
6452 nocodecmodules
="mp3lib(internal) $nocodecmodules"
6456 # Any version of libmpg123 shall be fine.
6457 echocheck
"mpg123 support"
6458 def_mpg123
='#undef CONFIG_MPG123'
6459 if test "$_mpg123" = auto
; then
6463 int main(void){ mpg123_init(); return 0; }
6465 cc_check
-lmpg123 && _mpg123
=yes && extra_ldflags
="$extra_ldflags -lmpg123"
6467 if test "$_mpg123" = yes ; then
6468 def_mpg123
='#define CONFIG_MPG123 1'
6469 codecmodules
="mpg123 $codecmodules"
6471 nocodecmodules
="mpg123 $nocodecmodules"
6475 echocheck
"liba52 support"
6476 def_liba52
='#undef CONFIG_LIBA52'
6477 if test "$_liba52" = auto
; then
6480 #include <inttypes.h>
6481 #include <a52dec/a52.h>
6482 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6484 cc_check
-la52 && _liba52
=yes && extra_ldflags
="$extra_ldflags -la52"
6486 if test "$_liba52" = yes ; then
6487 def_liba52
='#define CONFIG_LIBA52 1'
6488 codecmodules
="liba52 $codecmodules"
6490 nocodecmodules
="liba52 $nocodecmodules"
6494 echocheck
"internal libmpeg2 support"
6495 if test "$_libmpeg2" = auto
; then
6497 if alpha
&& test cc_vendor
=gnu
; then
6499 2*|
3.0*|
3.1*) # cannot compile MVI instructions
6501 res_comment
="broken gcc"
6506 if test "$_libmpeg2" = yes ; then
6507 def_libmpeg2
='#define CONFIG_LIBMPEG2 1'
6508 codecmodules
="libmpeg2(internal) $codecmodules"
6510 def_libmpeg2
='#undef CONFIG_LIBMPEG2'
6511 nocodecmodules
="libmpeg2(internal) $nocodecmodules"
6513 echores
"$_libmpeg2"
6515 echocheck
"libdca support"
6516 if test "$_libdca" = auto
; then
6519 #include <inttypes.h>
6521 int main(void) { dts_init(0); return 0; }
6523 for _ld_dca
in -ldca -ldts ; do
6524 cc_check
$_ld_dca $_ld_lm && extra_ldflags
="$extra_ldflags $_ld_dca" \
6525 && _libdca
=yes && break
6528 if test "$_libdca" = yes ; then
6529 def_libdca
='#define CONFIG_LIBDCA 1'
6530 codecmodules
="libdca $codecmodules"
6532 def_libdca
='#undef CONFIG_LIBDCA'
6533 nocodecmodules
="libdca $nocodecmodules"
6537 echocheck
"libmpcdec (musepack, version >= 1.2.1 required)"
6538 if test "$_musepack" = auto
; then
6542 #include <mpcdec/mpcdec.h>
6544 mpc_streaminfo info;
6545 mpc_decoder decoder;
6546 mpc_decoder_set_streaminfo(&decoder, &info);
6547 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6551 cc_check
-lmpcdec $_ld_lm && _musepack
=yes
6553 if test "$_musepack" = yes ; then
6554 def_musepack
='#define CONFIG_MUSEPACK 1'
6555 extra_ldflags
="$extra_ldflags -lmpcdec"
6556 codecmodules
="musepack $codecmodules"
6558 def_musepack
='#undef CONFIG_MUSEPACK'
6559 nocodecmodules
="musepack $nocodecmodules"
6561 echores
"$_musepack"
6564 echocheck
"FAAC support"
6565 if test "$_faac" = auto
; then
6567 #include <inttypes.h>
6569 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6572 for _ld_faac
in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6573 cc_check
$_ld_faac $_ld_lm && libs_mencoder
="$libs_mencoder $_ld_faac" && _faac
=yes && break
6576 if test "$_faac" = yes ; then
6577 def_faac
="#define CONFIG_FAAC 1"
6578 codecmodules
="faac $codecmodules"
6580 def_faac
="#undef CONFIG_FAAC"
6581 nocodecmodules
="faac $nocodecmodules"
6586 echocheck
"FAAD2 support"
6587 if test "$_faad_internal" = auto
; then
6588 if x86_32
&& test cc_vendor
=gnu
; then
6590 3.1*|
3.2) # ICE/insn with these versions
6592 res_comment
="broken gcc"
6604 if test "$_faad" = auto
; then
6607 #ifndef FAAD_MIN_STREAMSIZE
6608 #error Too old version
6610 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6611 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6613 cc_check
-lfaad $_ld_lm && _faad
=yes
6616 def_faad
='#undef CONFIG_FAAD'
6617 def_faad_internal
="#undef CONFIG_FAAD_INTERNAL"
6618 if test "$_faad_internal" = yes ; then
6619 def_faad_internal
="#define CONFIG_FAAD_INTERNAL 1"
6620 res_comment
="internal floating-point"
6621 if test "$_faad_fixed" = yes ; then
6622 # The FIXED_POINT implementation of FAAD2 improves performance
6623 # on some platforms, especially for SBR files.
6624 cflags_faad_fixed
="-DFIXED_POINT"
6625 res_comment
="internal fixed-point"
6627 elif test "$_faad" = yes ; then
6628 extra_ldflags
="$extra_ldflags -lfaad"
6631 if test "$_faad" = yes ; then
6632 def_faad
='#define CONFIG_FAAD 1'
6633 if test "$_faad_internal" = yes ; then
6634 codecmodules
="faad2(internal) $codecmodules"
6636 codecmodules
="faad2 $codecmodules"
6640 nocodecmodules
="faad2 $nocodecmodules"
6645 echocheck
"LADSPA plugin support"
6646 if test "$_ladspa" = auto
; then
6650 LADSPA_Descriptor ld = {0};
6655 cc_check
&& _ladspa
=yes
6657 if test "$_ladspa" = yes; then
6658 def_ladspa
="#define CONFIG_LADSPA 1"
6660 def_ladspa
="#undef CONFIG_LADSPA"
6665 echocheck
"libbs2b audio filter support"
6666 if test "$_libbs2b" = auto
; then
6669 #if BS2B_VERSION_MAJOR < 3
6670 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6680 if $_pkg_config --exists libbs2b
; then
6681 _inc_tmp
=$
($_pkg_config --cflags libbs2b
)
6682 _ld_tmp
=$
($_pkg_config --libs libbs2b
)
6683 cc_check
$_inc_tmp $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" &&
6684 extra_cflags
="$extra_cflags $_inc_tmp" && _libbs2b
=yes
6686 for _inc_tmp
in "" -I/usr
/include
/bs2b
-I/usr
/local
/include \
6687 -I/usr
/local
/include
/bs2b
; do
6688 if cc_check
$_inc_tmp $_ld_lm -lbs2b ; then
6689 extra_ldflags
="$extra_ldflags -lbs2b"
6690 extra_cflags
="$extra_cflags $_inc_tmp"
6697 def_libbs2b
="#undef CONFIG_LIBBS2B"
6698 test "$_libbs2b" = yes && def_libbs2b
="#define CONFIG_LIBBS2B 1"
6702 if test -z "$_codecsdir" ; then
6703 for dir
in "$_libdir/codecs" "$_libdir/win32" /usr
/local
/lib
/codecs \
6704 /usr
/lib
/codecs
/usr
/local
/lib
/win32
/usr
/lib
/win32
; do
6705 if test -d "$dir" ; then
6711 # Fall back on default directory.
6712 if test -z "$_codecsdir" ; then
6713 _codecsdir
="$_libdir/codecs"
6714 mingw32 || os2
&& _codecsdir
="codecs"
6718 echocheck
"Win32 codecs"
6719 if test "$_win32dll" = auto
; then
6721 if x86_32
&& ! qnx
; then
6725 if test "$_win32dll" = yes ; then
6726 def_win32dll
='#define CONFIG_WIN32DLL 1'
6728 def_win32_loader
='#define WIN32_LOADER 1'
6729 _win32_emulation
=yes
6731 extra_ldflags
="$extra_ldflags -ladvapi32 -lole32"
6732 res_comment
="using native windows"
6734 codecmodules
="win32 $codecmodules"
6736 def_win32dll
='#undef CONFIG_WIN32DLL'
6737 def_win32_loader
='#undef WIN32_LOADER'
6738 nocodecmodules
="win32 $nocodecmodules"
6740 echores
"$_win32dll"
6743 echocheck
"XAnim codecs"
6744 if test "$_xanim" = auto
; then
6746 res_comment
="dynamic loader support needed"
6747 if test "$_dl" = yes ; then
6751 if test "$_xanim" = yes ; then
6752 def_xanim
='#define CONFIG_XANIM 1'
6753 codecmodules
="xanim $codecmodules"
6755 def_xanim
='#undef CONFIG_XANIM'
6756 nocodecmodules
="xanim $nocodecmodules"
6761 echocheck
"RealPlayer codecs"
6762 if test "$_real" = auto
; then
6764 res_comment
="dynamic loader support needed"
6765 if test "$_dl" = yes ||
test "$_win32dll" = yes &&
6766 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2
) ; then
6770 if test "$_real" = yes ; then
6771 def_real
='#define CONFIG_REALCODECS 1'
6772 codecmodules
="real $codecmodules"
6774 def_real
='#undef CONFIG_REALCODECS'
6775 nocodecmodules
="real $nocodecmodules"
6780 echocheck
"QuickTime codecs"
6782 def_qtx_win32
='#undef CONFIG_QTX_CODECS_WIN32'
6783 if test "$_qtx" = auto
; then
6784 test "$_win32dll" = yes ||
test "$quicktime" = yes && _qtx
=yes
6786 if test "$_qtx" = yes ; then
6787 def_qtx
='#define CONFIG_QTX_CODECS 1'
6788 win32
&& _qtx_codecs_win32
=yes && def_qtx_win32
='#define CONFIG_QTX_CODECS_WIN32 1'
6789 codecmodules
="qtx $codecmodules"
6790 darwin || win32 || _qtx_emulation
=yes
6792 def_qtx
='#undef CONFIG_QTX_CODECS'
6793 nocodecmodules
="qtx $nocodecmodules"
6797 echocheck
"Nemesi Streaming Media libraries"
6798 if test "$_nemesi" = auto
&& test "$networking" = yes ; then
6800 if $_pkg_config libnemesi
--atleast-version=0.6.3 ; then
6801 extra_cflags
="$extra_cflags $($_pkg_config --cflags libnemesi)"
6802 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libnemesi)"
6806 if test "$_nemesi" = yes; then
6808 def_nemesi
='#define CONFIG_LIBNEMESI 1'
6809 inputmodules
="nemesi $inputmodules"
6811 _native_rtsp
="$networking"
6813 def_nemesi
='#undef CONFIG_LIBNEMESI'
6814 noinputmodules
="nemesi $noinputmodules"
6818 echocheck
"LIVE555 Streaming Media libraries"
6819 if test "$_live" = auto
&& test "$networking" = yes ; then
6820 cat > $TMPCPP << EOF
6821 #include <liveMedia.hh>
6822 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6823 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6825 int main(void) { return 0; }
6829 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
6830 cxx_check
$I/liveMedia
/include
$I/UsageEnvironment
/include \
6831 $I/groupsock
/include
&& _livelibdir
=$
(echo $I|
sed s
/-I//) && \
6832 extra_ldflags
="$_livelibdir/liveMedia/libliveMedia.a \
6833 $_livelibdir/groupsock/libgroupsock.a \
6834 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6835 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6836 $extra_ldflags -lstdc++" \
6837 extra_cxxflags
="-I$_livelibdir/liveMedia/include \
6838 -I$_livelibdir/UsageEnvironment/include \
6839 -I$_livelibdir/BasicUsageEnvironment/include \
6840 -I$_livelibdir/groupsock/include" && \
6843 if test "$_live" != yes ; then
6844 ld_tmp
="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6845 if cxx_check
-I/usr
/include
/liveMedia
-I/usr
/include
/UsageEnvironment
-I/usr
/include
/groupsock
$ld_tmp; then
6850 if test "$_live" = yes && test "$networking" = yes; then
6851 test $_livelibdir && res_comment
="using $_livelibdir"
6852 def_live
='#define CONFIG_LIVE555 1'
6853 inputmodules
="live555 $inputmodules"
6854 elif test "$_live_dist" = yes && test "$networking" = yes; then
6855 res_comment
="using distribution version"
6857 def_live
='#define CONFIG_LIVE555 1'
6858 extra_ldflags
="$extra_ldflags $ld_tmp"
6859 extra_cxxflags
="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6860 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6861 inputmodules
="live555 $inputmodules"
6864 def_live
='#undef CONFIG_LIVE555'
6865 noinputmodules
="live555 $noinputmodules"
6870 echocheck
"FFmpeg libavutil"
6871 if test "$_libavutil" = auto
; then
6874 #include <libavutil/common.h>
6875 int main(void) { av_clip(1, 1, 1); return 0; }
6877 if $_pkg_config --exists libavutil
; then
6878 _inc_libavutil
=$
($_pkg_config --cflags libavutil
)
6879 _ld_tmp
=$
($_pkg_config --libs libavutil
)
6880 cc_check
$_inc_libavutil $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" extra_cflags
="$extra_cflags $_inc_libavutil" \
6882 elif cc_check
-lavutil $_ld_lm ; then
6883 extra_ldflags
="$extra_ldflags -lavutil"
6887 def_libavutil
='#undef CONFIG_LIBAVUTIL'
6888 test "$_libavutil" = yes && def_libavutil
='#define CONFIG_LIBAVUTIL 1'
6889 # libavutil is not available, but it is mandatory ...
6890 if test "$_libavutil" = no
; then
6891 die
"You need libavutil, MPlayer will not compile without!"
6893 echores
"$_libavutil"
6895 echocheck
"FFmpeg libavcodec"
6896 if test "$_libavcodec" = auto
; then
6899 #include <libavcodec/avcodec.h>
6900 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6902 if $_pkg_config --exists libavcodec
; then
6903 _inc_libavcodec
=$
($_pkg_config --cflags libavcodec
)
6904 _ld_tmp
=$
($_pkg_config --libs libavcodec
)
6905 cc_check
$_inc_libavcodec $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libavcodec" \
6907 elif cc_check
-lavcodec $_ld_lm ; then
6908 extra_ldflags
="$extra_ldflags -lavcodec"
6912 def_libavcodec
='#undef CONFIG_LIBAVCODEC'
6913 test "$_libavcodec" = yes && def_libavcodec
='#define CONFIG_LIBAVCODEC 1'
6914 if test "$_libavcodec" = yes ; then
6915 codecmodules
="libavcodec $codecmodules"
6917 nocodecmodules
="libavcodec $nocodecmodules"
6919 echores
"$_libavcodec"
6921 echocheck
"FFmpeg libavformat"
6922 if test "$_libavformat" = auto
; then
6925 #include <libavformat/avformat.h>
6926 int main(void) { av_alloc_format_context(); return 0; }
6928 if $_pkg_config --exists libavformat
; then
6929 _inc_libavformat
=$
($_pkg_config --cflags libavformat
)
6930 _ld_tmp
=$
($_pkg_config --libs libavformat
)
6931 cc_check
$_inc_libavformat $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libavformat" \
6933 elif cc_check
$_ld_lm -lavformat ; then
6934 extra_ldflags
="$extra_ldflags -lavformat"
6938 def_libavformat
='#undef CONFIG_LIBAVFORMAT'
6939 test "$_libavformat" = yes && def_libavformat
='#define CONFIG_LIBAVFORMAT 1'
6940 echores
"$_libavformat"
6942 echocheck
"FFmpeg libpostproc"
6943 if test "$_libpostproc" = auto
; then
6946 #include <libpostproc/postprocess.h>
6947 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6949 if $_pkg_config --exists libpostproc
; then
6950 _inc_libpostproc
=$
($_pkg_config --cflags libpostproc
)
6951 _ld_tmp
=$
($_pkg_config --libs libpostproc
)
6952 cc_check
$_inc_libpostproc $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && extra_cflags
="$extra_cflags $_inc_libpostproc" \
6954 elif cc_check
-lpostproc $_ld_lm ; then
6955 extra_ldflags
="$extra_ldflags -lpostproc"
6959 def_libpostproc
='#undef CONFIG_LIBPOSTPROC'
6960 test "$_libpostproc" = yes && def_libpostproc
='#define CONFIG_LIBPOSTPROC 1'
6961 echores
"$_libpostproc"
6963 echocheck
"FFmpeg libswscale"
6964 if test "$_libswscale" = auto
; then
6967 #include <libswscale/swscale.h>
6968 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6970 if $_pkg_config --exists libswscale
; then
6971 _inc_libswscale
=$
($_pkg_config --cflags libswscale
)
6972 _ld_tmp
=$
($_pkg_config --libs libswscale
)
6973 cc_check
$_inc_libswscale $_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" extra_cflags
="$extra_cflags $_inc_libswscale" \
6975 elif cc_check
-lswscale ; then
6976 extra_ldflags
="$extra_ldflags -lswscale"
6980 def_libswscale
='#undef CONFIG_LIBSWSCALE'
6981 test "$_libswscale" = yes && def_libswscale
='#define CONFIG_LIBSWSCALE 1'
6982 echores
"$_libswscale"
6984 def_libswscale_internals
="#undef CONFIG_LIBSWSCALE_INTERNALS"
6985 if ! test -z "$_ffmpeg_source" ; then
6986 test "$_libswscale" = yes && def_libswscale_internals
="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals
=yes
6989 def_libavcodec_internals
="#undef CONFIG_LIBAVCODEC_INTERNALS"
6990 if ! test -z "$_ffmpeg_source" ; then
6991 test "$_libavcodec" = yes && def_libavcodec_internals
="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals
=yes
6994 echocheck
"libdv-0.9.5+"
6995 if test "$_libdv" = auto
; then
6998 #include <libdv/dv.h>
6999 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7001 cc_check
-ldv $_ld_pthread $_ld_lm && _libdv
=yes
7003 if test "$_libdv" = yes ; then
7004 def_libdv
='#define CONFIG_LIBDV095 1'
7005 extra_ldflags
="$extra_ldflags -ldv"
7006 codecmodules
="libdv $codecmodules"
7008 def_libdv
='#undef CONFIG_LIBDV095'
7009 nocodecmodules
="libdv $nocodecmodules"
7015 if test "$_xvid" = auto
; then
7019 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7021 for _ld_tmp
in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7022 cc_check
$_ld_tmp && extra_ldflags
="$extra_ldflags $_ld_tmp" && _xvid
=yes && break
7026 if test "$_xvid" = yes ; then
7027 def_xvid
='#define CONFIG_XVID4 1'
7028 codecmodules
="xvid $codecmodules"
7030 def_xvid
='#undef CONFIG_XVID4'
7031 nocodecmodules
="xvid $nocodecmodules"
7036 if test "$_x264" = auto
; then
7038 #include <inttypes.h>
7041 #error We do not support old versions of x264. Get the latest from git.
7043 int main(void) { x264_encoder_open((void*)0); return 0; }
7046 for _ld_x264
in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7047 cc_check
$_ld_x264 && libs_mencoder
="$libs_mencoder $_ld_x264" && _x264
=yes && break
7051 if test "$_x264" = yes ; then
7052 def_x264
='#define CONFIG_X264 1'
7053 codecmodules
="x264 $codecmodules"
7055 def_x264
='#undef CONFIG_X264'
7056 nocodecmodules
="x264 $nocodecmodules"
7061 if test "$_libnut" = auto
; then
7064 nut_context_tt * nut;
7065 int main(void) { (void)nut_error(0); return 0; }
7068 cc_check
-lnut && _libnut
=yes
7071 if test "$_libnut" = yes ; then
7072 def_libnut
='#define CONFIG_LIBNUT 1'
7073 extra_ldflags
="$extra_ldflags -lnut"
7075 def_libnut
='#undef CONFIG_LIBNUT'
7079 # These VO checks must be done after libavcodec/libswscale one
7080 echocheck
"/dev/mga_vid"
7081 if test "$_mga" = auto
; then
7083 test -c /dev
/mga_vid
&& _mga
=yes
7085 if test "$_mga" = yes ; then
7086 if test "$_libswscale_internals" = yes ; then
7087 def_mga
='#define CONFIG_MGA 1'
7088 vomodules
="mga $vomodules"
7090 res_comment
="libswscale internal headers are required by mga, sorry"
7092 def_mga
='#undef CONFIG_MGA'
7093 novomodules
="mga $novomodules"
7096 def_mga
='#undef CONFIG_MGA'
7097 novomodules
="mga $novomodules"
7103 if test "$_xmga" = auto
; then
7105 test "$_x11" = yes && test "$_mga" = yes && _xmga
=yes
7107 if test "$_xmga" = yes ; then
7108 if test "$_libswscale_internals" = yes ; then
7109 def_xmga
='#define CONFIG_XMGA 1'
7110 vomodules
="xmga $vomodules"
7112 res_comment
="libswscale internal headers are required by xmga, sorry"
7114 def_xmga
='#undef CONFIG_XMGA'
7115 novomodules
="xmga $novomodules"
7118 def_xmga
='#undef CONFIG_XMGA'
7119 novomodules
="xmga $novomodules"
7124 if test "$_zr" = auto
; then
7125 #36067's seem to identify themselves as 36057PQC's, so the line
7126 #below should work for 36067's and 36057's.
7127 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc
/pci
; then
7133 if test "$_zr" = yes ; then
7134 if test "$_libavcodec_internals" = yes ; then
7135 def_zr
='#define CONFIG_ZR 1'
7136 vomodules
="zr zr2 $vomodules"
7138 res_comment
="libavcodec internal headers are required by zr, sorry"
7139 novomodules
="zr $novomodules"
7140 def_zr
='#undef CONFIG_ZR'
7143 def_zr
='#undef CONFIG_ZR'
7144 novomodules
="zr zr2 $novomodules"
7148 # mencoder requires (optional) those libs: libmp3lame
7149 if test "$_mencoder" != no
; then
7151 echocheck
"libmp3lame"
7152 def_mp3lame_preset
='#undef CONFIG_MP3LAME_PRESET'
7153 def_mp3lame_preset_medium
='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7154 if test "$_mp3lame" = auto
; then
7157 #include <lame/lame.h>
7158 int main(void) { lame_version_t lv; (void) lame_init();
7159 get_lame_version_numerical(&lv);
7162 cc_check
-lmp3lame $_ld_lm && _mp3lame
=yes
7164 if test "$_mp3lame" = yes ; then
7165 def_mp3lame
="#define CONFIG_MP3LAME 1"
7166 _ld_mp3lame
=-lmp3lame
7167 libs_mencoder
="$libs_mencoder $_ld_mp3lame"
7169 #include <lame/lame.h>
7170 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7172 cc_check
$_ld_mp3lame $_ld_lm && def_mp3lame_preset
="#define CONFIG_MP3LAME_PRESET 1"
7174 #include <lame/lame.h>
7175 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7177 cc_check
$_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium
="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7179 def_mp3lame
='#undef CONFIG_MP3LAME'
7183 fi # test "$_mencoder" != no
7185 echocheck
"mencoder"
7186 if test "$_mencoder" = yes ; then
7187 def_muxers
='#define CONFIG_MUXERS 1'
7189 def_muxers
='#define CONFIG_MUXERS 0'
7191 echores
"$_mencoder"
7194 echocheck
"UnRAR executable"
7195 if test "$_unrar_exec" = auto
; then
7197 mingw32
&& _unrar_exec
="no"
7199 if test "$_unrar_exec" = yes ; then
7200 def_unrar_exec
='#define CONFIG_UNRAR_EXEC 1'
7202 def_unrar_exec
='#undef CONFIG_UNRAR_EXEC'
7204 echores
"$_unrar_exec"
7206 echocheck
"TV interface"
7207 if test "$_tv" = yes ; then
7208 def_tv
='#define CONFIG_TV 1'
7209 inputmodules
="tv $inputmodules"
7211 noinputmodules
="tv $noinputmodules"
7212 def_tv
='#undef CONFIG_TV'
7217 if freebsd || netbsd || openbsd || dragonfly || bsdos
; then
7218 echocheck
"*BSD BT848 bt8xx header"
7220 for file in "machine/ioctl_bt848.h" \
7221 "dev/bktr/ioctl_bt848.h" \
7222 "dev/video/bktr/ioctl_bt848.h" \
7223 "dev/ic/bt8xx.h" ; do
7225 #include <sys/types.h>
7226 #include <sys/ioctl.h>
7228 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7232 _ioctl_bt848_h_name
="$file"
7236 if test "$_ioctl_bt848_h" = yes ; then
7237 def_ioctl_bt848_h_name
="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7238 res_comment
="using $_ioctl_bt848_h_name"
7240 def_ioctl_bt848_h_name
="#undef IOCTL_BT848_H_NAME"
7242 echores
"$_ioctl_bt848_h"
7244 echocheck
"*BSD ioctl_meteor.h"
7246 for file in "machine/ioctl_meteor.h" \
7247 "dev/bktr/ioctl_meteor.h" \
7248 "dev/video/bktr/ioctl_meteor.h" ; do
7250 #include <sys/types.h>
7252 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7256 _ioctl_meteor_h_name
="$file"
7260 if test "$_ioctl_meteor_h" = yes ; then
7261 def_ioctl_meteor_h_name
="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7262 res_comment
="using $_ioctl_meteor_h_name"
7264 def_ioctl_meteor_h_name
="#undef IOCTL_METEOR_H_NAME"
7266 echores
"$_ioctl_meteor_h"
7268 echocheck
"*BSD BrookTree 848 TV interface"
7269 if test "$_tv_bsdbt848" = auto
; then
7271 if test "$_tv" = yes ; then
7273 #include <sys/types.h>
7274 $def_ioctl_meteor_h_name
7275 $def_ioctl_bt848_h_name
7276 #ifdef IOCTL_METEOR_H_NAME
7277 #include IOCTL_METEOR_H_NAME
7279 #ifdef IOCTL_BT848_H_NAME
7280 #include IOCTL_BT848_H_NAME
7283 ioctl(0, METEORSINPUT, 0);
7284 ioctl(0, TVTUNER_GETFREQ, 0);
7288 cc_check
&& _tv_bsdbt848
=yes
7291 if test "$_tv_bsdbt848" = yes ; then
7292 def_tv_bsdbt848
='#define CONFIG_TV_BSDBT848 1'
7293 inputmodules
="tv-bsdbt848 $inputmodules"
7295 def_tv_bsdbt848
='#undef CONFIG_TV_BSDBT848'
7296 noinputmodules
="tv-bsdbt848 $noinputmodules"
7298 echores
"$_tv_bsdbt848"
7299 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7302 echocheck
"DirectShow TV interface"
7303 if test "$_tv_dshow" = auto
; then
7305 if test "$_tv" = yes && win32
; then
7310 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7314 cc_check
-lole32 -luuid && _tv_dshow
=yes
7317 if test "$_tv_dshow" = yes ; then
7318 inputmodules
="tv-dshow $inputmodules"
7319 def_tv_dshow
='#define CONFIG_TV_DSHOW 1'
7320 extra_ldflags
="$extra_ldflags -lole32 -luuid"
7322 noinputmodules
="tv-dshow $noinputmodules"
7323 def_tv_dshow
='#undef CONFIG_TV_DSHOW'
7325 echores
"$_tv_dshow"
7328 echocheck
"Video 4 Linux TV interface"
7329 if test "$_tv_v4l1" = auto
; then
7331 if test "$_tv" = yes && linux
; then
7332 header_check linux
/videodev.h
&& _tv_v4l1
=yes
7335 if test "$_tv_v4l1" = yes ; then
7338 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7339 def_tv_v4l1
='#define CONFIG_TV_V4L1 1'
7340 inputmodules
="tv-v4l $inputmodules"
7342 noinputmodules
="tv-v4l1 $noinputmodules"
7343 def_tv_v4l
='#undef CONFIG_TV_V4L'
7348 echocheck
"Video 4 Linux 2 TV interface"
7349 if test "$_tv_v4l2" = auto
; then
7351 if test "$_tv" = yes && linux
; then
7352 header_check linux
/videodev2.h
&& _tv_v4l2
=yes
7355 if test "$_tv_v4l2" = yes ; then
7358 def_tv_v4l
='#define CONFIG_TV_V4L 1'
7359 def_tv_v4l2
='#define CONFIG_TV_V4L2 1'
7360 inputmodules
="tv-v4l2 $inputmodules"
7362 noinputmodules
="tv-v4l2 $noinputmodules"
7363 def_tv_v4l2
='#undef CONFIG_TV_V4L2'
7368 echocheck
"Radio interface"
7369 if test "$_radio" = yes ; then
7370 def_radio
='#define CONFIG_RADIO 1'
7371 inputmodules
="radio $inputmodules"
7372 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7375 if test "$_radio_capture" = yes ; then
7377 def_radio_capture
="#define CONFIG_RADIO_CAPTURE 1"
7379 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7382 noinputmodules
="radio $noinputmodules"
7383 def_radio
='#undef CONFIG_RADIO'
7384 def_radio_capture
="#undef CONFIG_RADIO_CAPTURE"
7388 echocheck
"Capture for Radio interface"
7389 echores
"$_radio_capture"
7391 echocheck
"Video 4 Linux 2 Radio interface"
7392 if test "$_radio_v4l2" = auto
; then
7394 if test "$_radio" = yes && linux
; then
7395 header_check linux
/videodev2.h
&& _radio_v4l2
=yes
7398 if test "$_radio_v4l2" = yes ; then
7399 def_radio_v4l2
='#define CONFIG_RADIO_V4L2 1'
7401 def_radio_v4l2
='#undef CONFIG_RADIO_V4L2'
7403 echores
"$_radio_v4l2"
7405 echocheck
"Video 4 Linux Radio interface"
7406 if test "$_radio_v4l" = auto
; then
7408 if test "$_radio" = yes && linux
; then
7409 header_check linux
/videodev.h
&& _radio_v4l
=yes
7412 if test "$_radio_v4l" = yes ; then
7413 def_radio_v4l
='#define CONFIG_RADIO_V4L 1'
7415 def_radio_v4l
='#undef CONFIG_RADIO_V4L'
7417 echores
"$_radio_v4l"
7419 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7420 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto
; then
7421 echocheck
"*BSD BrookTree 848 Radio interface"
7424 #include <sys/types.h>
7425 $def_ioctl_bt848_h_name
7426 #ifdef IOCTL_BT848_H_NAME
7427 #include IOCTL_BT848_H_NAME
7429 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7431 cc_check
&& _radio_bsdbt848
=yes
7432 echores
"$_radio_bsdbt848"
7433 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7435 if test "$_radio_bsdbt848" = yes ; then
7436 def_radio_bsdbt848
='#define CONFIG_RADIO_BSDBT848 1'
7438 def_radio_bsdbt848
='#undef CONFIG_RADIO_BSDBT848'
7441 if test "$_radio_v4l" = no
&& test "$_radio_v4l2" = no
&& \
7442 test "$_radio_bsdbt848" = no
&& test "$_radio" = yes ; then
7443 die
"Radio driver requires BSD BT848, V4L or V4L2!"
7446 echocheck
"Video 4 Linux 2 MPEG PVR interface"
7447 if test "$_pvr" = auto
; then
7449 if test "$_tv_v4l2" = yes && linux
; then
7451 #include <linux/videodev2.h>
7452 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7454 cc_check
&& _pvr
=yes
7457 if test "$_pvr" = yes ; then
7458 def_pvr
='#define CONFIG_PVR 1'
7459 inputmodules
="pvr $inputmodules"
7461 noinputmodules
="pvr $noinputmodules"
7462 def_pvr
='#undef CONFIG_PVR'
7468 if ! beos
&& test "$_ftp" = yes ; then
7469 def_ftp
='#define CONFIG_FTP 1'
7470 inputmodules
="ftp $inputmodules"
7472 noinputmodules
="ftp $noinputmodules"
7473 def_ftp
='#undef CONFIG_FTP'
7477 echocheck
"vstream client"
7478 if test "$_vstream" = auto
; then
7481 #include <vstream-client.h>
7482 void vstream_error(const char *format, ... ) {}
7483 int main(void) { vstream_start(); return 0; }
7485 cc_check
-lvstream-client && _vstream
=yes
7487 if test "$_vstream" = yes ; then
7488 def_vstream
='#define CONFIG_VSTREAM 1'
7489 inputmodules
="vstream $inputmodules"
7490 extra_ldflags
="$extra_ldflags -lvstream-client"
7492 noinputmodules
="vstream $noinputmodules"
7493 def_vstream
='#undef CONFIG_VSTREAM'
7498 echocheck
"OSD menu"
7499 if test "$_menu" = yes ; then
7500 def_menu
='#define CONFIG_MENU 1'
7501 test $_dvbin = "yes" && _menu_dvbin
=yes
7503 def_menu
='#undef CONFIG_MENU'
7509 echocheck
"Subtitles sorting"
7510 if test "$_sortsub" = yes ; then
7511 def_sortsub
='#define CONFIG_SORTSUB 1'
7513 def_sortsub
='#undef CONFIG_SORTSUB'
7518 echocheck
"XMMS inputplugin support"
7519 if test "$_xmms" = yes ; then
7520 if ( xmms-config
--version ) >/dev
/null
2>&1 ; then
7521 _xmmsplugindir
=$
(xmms-config
--input-plugin-dir)
7522 _xmmslibdir
=$
(xmms-config
--exec-prefix)/lib
7524 _xmmsplugindir
=/usr
/lib
/xmms
/Input
7525 _xmmslibdir
=/usr
/lib
7528 def_xmms
='#define CONFIG_XMMS 1'
7530 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7532 extra_ldflags
="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7535 def_xmms
='#undef CONFIG_XMMS'
7539 if test "$_charset" != "noconv" ; then
7540 def_charset
="#define MSG_CHARSET \"$_charset\""
7542 def_charset
="#undef MSG_CHARSET"
7546 #############################################################################
7548 echocheck
"automatic gdb attach"
7549 if test "$_crash_debug" = yes ; then
7550 def_crash_debug
='#define CONFIG_CRASH_DEBUG 1'
7552 def_crash_debug
='#undef CONFIG_CRASH_DEBUG'
7555 echores
"$_crash_debug"
7557 echocheck
"compiler support for noexecstack"
7558 if cflag_check
-Wl,-z,noexecstack
; then
7559 extra_ldflags
="-Wl,-z,noexecstack $extra_ldflags"
7565 echocheck
"linker support for --nxcompat --no-seh --dynamicbase"
7566 if cflag_check
"-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7567 extra_ldflags
="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7574 # Dynamic linking flags
7575 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7577 freebsd || netbsd || openbsd || dragonfly || bsdos
&& _ld_dl_dynamic
='-rdynamic'
7578 if test "$_real" = yes ||
test "$_xanim" = yes && ! win32
&& ! qnx
&& ! darwin
&& ! os2
&& ! sunos
; then
7579 _ld_dl_dynamic
='-rdynamic'
7582 extra_ldflags
="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7583 bsdos
&& extra_ldflags
="$extra_ldflags -ldvd"
7584 (netbsd || openbsd
) && x86_32
&& extra_ldflags
="$extra_ldflags -li386"
7586 def_debug
='#undef MP_DEBUG'
7587 test "$_debug" != "" && def_debug
='#define MP_DEBUG 1'
7590 echocheck
"joystick"
7591 def_joystick
='#undef CONFIG_JOYSTICK'
7592 if test "$_joystick" = yes ; then
7594 # TODO add some check
7595 def_joystick
='#define CONFIG_JOYSTICK 1'
7598 res_comment
="unsupported under $system_name"
7601 echores
"$_joystick"
7604 if test "$_lirc" = auto
; then
7606 header_check lirc
/lirc_client.h
-llirc_client && _lirc
=yes
7608 if test "$_lirc" = yes ; then
7609 def_lirc
='#define CONFIG_LIRC 1'
7610 libs_mplayer
="$libs_mplayer -llirc_client"
7612 def_lirc
='#undef CONFIG_LIRC'
7617 if test "$_lircc" = auto
; then
7619 header_check lirc
/lircc.h
-llircc && _lircc
=yes
7621 if test "$_lircc" = yes ; then
7622 def_lircc
='#define CONFIG_LIRCC 1'
7623 libs_mplayer
="$libs_mplayer -llircc"
7625 def_lircc
='#undef CONFIG_LIRCC'
7630 # Detect maemo development platform libraries availability (http://www.maemo.org),
7631 # they are used when run on Nokia 770|8x0
7632 echocheck
"maemo (Nokia 770|8x0)"
7633 if test "$_maemo" = auto
; then
7636 #include <libosso.h>
7637 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7639 cc_check $
($_pkg_config --cflags --libs libosso
2>/dev
/null
) && _maemo
=yes
7641 if test "$_maemo" = yes ; then
7642 def_maemo
='#define CONFIG_MAEMO 1'
7643 extra_cflags
="$extra_cflags $($_pkg_config --cflags libosso)"
7644 extra_ldflags
="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7646 def_maemo
='#undef CONFIG_MAEMO'
7651 #############################################################################
7653 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7654 # the OMF format needs to come after the 'extern symbol prefix' check, which
7657 extra_ldflags
="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7660 # linker paths should be the same for mencoder and mplayer
7662 for I
in $libs_mplayer ; do
7663 _tmp
=$
(echo $I |
sed -e 's/^-L.*$//')
7664 if test -z "$_tmp" ; then
7665 extra_ldflags
="$extra_ldflags $I"
7667 _ld_tmp
="$_ld_tmp $I"
7670 libs_mplayer
=$_ld_tmp
7673 #############################################################################
7674 # 64 bit file offsets?
7675 if test "$_largefiles" = yes || freebsd
; then
7676 CFLAGS
="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7677 if test "$_dvdread" = yes ||
test "$_libdvdcss_internal" = yes ; then
7678 # dvdread support requires this (for off64_t)
7679 CFLAGS
="$CFLAGS -D_LARGEFILE64_SOURCE"
7683 CXXFLAGS
=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7685 # This must be the last test to be performed. Any other tests following it
7686 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7687 # against libdvdread (to permit MPlayer to use its own copy of the library).
7688 # So any compilation using the flags added here but not linking against
7689 # libdvdread can fail.
7690 echocheck
"DVD support (libdvdnav)"
7691 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7695 if test "$_dvdnav" = auto
; then
7696 if test "$_dvdread_internal" = yes ; then
7699 res_comment
="internal"
7701 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav
=no
7704 if test "$_dvdnav" = auto
; then
7706 #include <inttypes.h>
7707 #include <dvdnav/dvdnav.h>
7708 int main(void) { dvdnav_t *dvd=0; return 0; }
7711 _dvdnavdir
=$
($_dvdnavconfig --cflags)
7712 _dvdnavlibs
=$
($_dvdnavconfig --libs)
7713 cc_check
$_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav
=yes
7715 if test "$_dvdnav" = yes ; then
7717 def_dvdnav
='#define CONFIG_DVDNAV 1'
7718 if test "$dvdnav_internal" = yes ; then
7719 cflags_libdvdnav
="-Ilibdvdnav"
7720 inputmodules
="dvdnav(internal) $inputmodules"
7722 extra_cflags
="$extra_cflags $($_dvdnavconfig --cflags)"
7723 extra_ldflags
="$extra_ldflags $($_dvdnavconfig --minilibs)"
7724 inputmodules
="dvdnav $inputmodules"
7727 def_dvdnav
='#undef CONFIG_DVDNAV'
7728 noinputmodules
="dvdnav $noinputmodules"
7732 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7733 # Read dvdnav comment above.
7736 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
7737 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
7739 for part
in $list; do
7740 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
7741 echo "${nprefix}_$part = yes"
7746 #############################################################################
7747 echo "Creating config.mak"
7748 cat > config.mak
<< EOF
7749 # -------- Generated by configure -----------
7751 # Ensure that locale settings do not interfere with shell commands.
7754 CONFIGURATION = $configuration
7757 DOC_LANGS = $language_doc
7758 DOC_LANG_ALL = $doc_lang_all
7759 MAN_LANGS = $language_man
7760 MAN_LANG_ALL = $man_lang_all
7761 MSG_LANGS = $language_msg
7762 MSG_LANG_ALL = $msg_lang_all
7764 prefix = \$(DESTDIR)$_prefix
7765 BINDIR = \$(DESTDIR)$_bindir
7766 DATADIR = \$(DESTDIR)$_datadir
7767 LIBDIR = \$(DESTDIR)$_libdir
7768 MANDIR = \$(DESTDIR)$_mandir
7769 CONFDIR = \$(DESTDIR)$_confdir
7770 LOCALEDIR = \$(DESTDIR)$_localedir
7778 INSTALLSTRIP = $_install_strip
7781 CFLAGS = $CFLAGS $extra_cflags
7782 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7783 DEPFLAGS = $DEPFLAGS
7785 CFLAGS_DHAHELPER = $cflags_dhahelper
7786 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7787 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7788 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7789 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7790 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7791 CFLAGS_STACKREALIGN = $cflags_stackrealign
7792 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7793 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7795 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7796 EXTRALIBS_MPLAYER = $libs_mplayer
7797 EXTRALIBS_MENCODER = $libs_mencoder
7806 $(mak_enable "$arch_all" "$arch" ARCH)
7807 $(mak_enable "$subarch_all" "$subarch" ARCH)
7808 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7810 MENCODER = $_mencoder
7813 NEED_GETTIMEOFDAY = $_need_gettimeofday
7814 NEED_GLOB = $_need_glob
7815 NEED_MMAP = $_need_mmap
7816 NEED_SETENV = $_need_setenv
7817 NEED_SHMEM = $_need_shmem
7818 NEED_STRSEP = $_need_strsep
7819 NEED_SWAB = $_need_swab
7820 NEED_VSSCANF = $_need_vsscanf
7828 APPLE_IR = $_apple_ir
7829 APPLE_REMOTE = $_apple_remote
7831 AUDIO_INPUT = $_audio_input
7832 BITMAP_FONT = $_bitmap_font
7837 COREAUDIO = $_coreaudio
7838 COREVIDEO = $_corevideo
7842 DIRECT3D = $_direct3d
7843 DIRECTFB = $_directfb
7847 DVDNAV_INTERNAL = $dvdnav_internal
7849 DVDREAD_INTERNAL = $_dvdread_internal
7855 FAAD_INTERNAL = $_faad_internal
7856 FASTMEMCPY = $_fastmemcpy
7858 FREETYPE = $_freetype
7863 GL_WIN32 = $_gl_win32
7866 MATRIXVIEW = $matrixview
7867 HAVE_POSIX_SELECT = $_posix_select
7868 HAVE_SYS_MMAN_H = $_mman
7871 JOYSTICK = $_joystick
7878 LIBBLURAY = $_bluray
7882 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7886 LIBMENU_DVBIN = $_menu_dvbin
7887 LIBMPEG2 = $_libmpeg2
7888 LIBNEMESI = $_nemesi
7890 LIBSMBCLIENT = $_smb
7891 LIBTHEORA = $_theora
7894 MACOSX_FINDER = $_macosx_finder
7901 MUSEPACK = $_musepack
7903 NATIVE_RTSP = $_native_rtsp
7904 NETWORKING = $networking
7907 PE_EXECUTABLE = $_pe_executable
7910 PRIORITY = $_priority
7914 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7915 QTX_EMULATION = $_qtx_emulation
7918 RADIO_CAPTURE=$_radio_capture
7919 REAL_CODECS = $_real
7923 STREAM_CACHE = $_stream_cache
7924 SGIAUDIO = $_sgiaudio
7925 SUNAUDIO = $_sunaudio
7931 TREMOR_INTERNAL = $_tremor_internal
7933 TV_BSDBT848 = $_tv_bsdbt848
7934 TV_DSHOW = $_tv_dshow
7939 UNRAR_EXEC = $_unrar_exec
7945 VIDIX_PCIDB = $_vidix_pcidb_val
7946 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7947 VIDIX_IVTV=$_vidix_drv_ivtv
7948 VIDIX_MACH64=$_vidix_drv_mach64
7949 VIDIX_MGA=$_vidix_drv_mga
7950 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7951 VIDIX_NVIDIA=$_vidix_drv_nvidia
7952 VIDIX_PM2=$_vidix_drv_pm2
7953 VIDIX_PM3=$_vidix_drv_pm3
7954 VIDIX_RADEON=$_vidix_drv_radeon
7955 VIDIX_RAGE128=$_vidix_drv_rage128
7956 VIDIX_S3=$_vidix_drv_s3
7957 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7958 VIDIX_SIS=$_vidix_drv_sis
7959 VIDIX_UNICHROME=$_vidix_drv_unichrome
7963 WIN32DLL = $_win32dll
7964 WIN32WAVEOUT = $_win32waveout
7965 WIN32_EMULATION = $_win32_emulation
7966 WINVIDIX = $winvidix
7969 XANIM_CODECS = $_xanim
7971 XMMS_PLUGINS = $_xmms
7977 YUV4MPEG = $_yuv4mpeg
7981 LIBAVUTIL = $_libavutil
7982 LIBAVCODEC = $_libavcodec
7983 LIBAVFORMAT = $_libavformat
7984 LIBPOSTPROC = $_libpostproc
7985 LIBSWSCALE = $_libswscale
7986 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7987 LIBSWSCALE_INTERNALS = $_libswscale_internals
7988 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7992 YASMFLAGS = $YASMFLAGS
7994 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7998 CONFIG_H264DSP = yes
8003 CONFIG_BZLIB = $bzlib
8004 CONFIG_ENCODERS = yes
8006 CONFIG_MLIB = $_mlib
8007 CONFIG_MUXERS = $_mencoder
8008 CONFIG_VDPAU = $_vdpau
8009 CONFIG_XVMC = $_xvmc
8010 CONFIG_ZLIB = $_zlib
8012 HAVE_PTHREADS = $_pthreads
8014 HAVE_W32THREADS = $_w32threads
8015 HAVE_YASM = $have_yasm
8019 #############################################################################
8021 ff_config_enable
() {
8022 list
=$
(echo $1 |
tr '[a-z]' '[A-Z]')
8023 item
=$
(echo $2 |
tr '[a-z]' '[A-Z]')
8025 test -z "$_nprefix" && _nprefix
='CONFIG'
8026 for part
in $list; do
8027 if $
(echo $item |
grep -q -E "(^| )$part($| )"); then
8028 echo "#define ${_nprefix}_$part 1"
8030 echo "#define ${_nprefix}_$part 0"
8035 echo "Creating config.h"
8037 /*----------------------------------------------------------------------------
8038 ** This file has been automatically generated by configure any changes in it
8039 ** will be lost when you run configure again.
8040 ** Instead of modifying definitions here, use the --enable/--disable options
8041 ** of the configure script! See ./configure --help for details.
8042 *---------------------------------------------------------------------------*/
8044 #ifndef MPLAYER_CONFIG_H
8045 #define MPLAYER_CONFIG_H
8047 /* Undefine this if you do not want to select mono audio (left or right)
8048 with a stereo MPEG layer 2/3 audio stream. The command line option
8049 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8050 right-only), with 0 being the default.
8052 #define CONFIG_FAKE_MONO 1
8054 /* set up audio OUTBURST. Do not change this! */
8055 #define OUTBURST 512
8057 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8059 #undef FAST_OSD_TABLE
8061 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8062 #define MPEG12_POSTPROC 1
8063 #define ATTRIBUTE_ALIGNED_MAX 16
8067 #define CONFIGURATION "$configuration"
8069 #define MPLAYER_DATADIR "$_datadir"
8070 #define MPLAYER_CONFDIR "$_confdir"
8071 #define MPLAYER_LIBDIR "$_libdir"
8072 #define MPLAYER_LOCALEDIR "$_localedir"
8076 /* definitions needed by included libraries */
8077 #define HAVE_INTTYPES_H 1
8078 /* libmpeg2 + FFmpeg */
8081 #define HAVE_ERRNO_H 1
8082 /* libdvdcss + libdvdread */
8083 #define HAVE_LIMITS_H 1
8084 /* libdvdcss + libfaad2 */
8085 #define HAVE_UNISTD_H 1
8086 /* libfaad2 + libdvdread */
8087 #define STDC_HEADERS 1
8088 #define HAVE_MEMCPY 1
8090 #define HAVE_STRING_H 1
8091 #define HAVE_STRINGS_H 1
8092 #define HAVE_SYS_STAT_H 1
8093 #define HAVE_SYS_TYPES_H 1
8095 #define READ_CACHE_TRACE 0
8097 #define HAVE_DLFCN_H 1
8101 /* system headers */
8103 $def_alsa_asoundlib_h
8107 $def_mman_has_map_failed
8109 $def_sys_asoundlib_h
8110 $def_sys_soundcard_h
8117 /* system functions */
8140 /* system-specific features */
8155 $def_restrict_keyword
8160 /* configurable options */
8164 $def_dynamic_plugins
8167 $def_runtime_cpudetection
8175 #define __CPU__ $iproc
8179 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8180 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8181 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8184 /* Blu-ray/DVD/VCD/CD */
8185 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8186 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8207 /* codec libraries */
8219 $def_mp3lame_preset_medium
8244 #define BINARY_CODECS_PATH "$_codecsdir"
8245 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8248 /* Audio output drivers */
8264 $def_ossaudio_devdsp
8265 $def_ossaudio_devmixer
8278 $def_ioctl_bt848_h_name
8279 $def_ioctl_meteor_h_name
8332 $def_directfb_version
8369 $def_vidix_drv_cyberblade
8371 $def_vidix_drv_mach64
8373 $def_vidix_drv_mga_crtc2
8374 $def_vidix_drv_nvidia
8376 $def_vidix_drv_radeon
8377 $def_vidix_drv_rage128
8379 $def_vidix_drv_sh_veu
8381 $def_vidix_drv_unichrome
8404 $def_libavcodec_internals
8405 $def_libswscale_internals
8407 #define CONFIG_DECODERS 1
8408 #define CONFIG_ENCODERS 1
8409 #define CONFIG_DEMUXERS 1
8437 #define CONFIG_FASTDIV 0
8438 #define CONFIG_FFSERVER 0
8439 #define CONFIG_GPL 1
8440 #define CONFIG_GRAY 0
8441 #define CONFIG_HARDCODED_TABLES 0
8442 #define CONFIG_LIBVORBIS 0
8443 #define CONFIG_POWERPC_PERF 0
8444 #define CONFIG_SMALL 0
8445 #define CONFIG_SWSCALE_ALPHA 1
8447 #define HAVE_ATTRIBUTE_PACKED 1
8448 #define HAVE_GETHRTIME 0
8449 #define HAVE_INLINE_ASM 1
8450 #define HAVE_LDBRX 0
8451 #define HAVE_POLL_H 1
8452 #define HAVE_PPC4XX 0
8453 #define HAVE_VFP_ARGS 1
8454 #define HAVE_VIRTUALALLOC 0
8456 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8457 #define CONFIG_AANDCT 1
8458 #define CONFIG_DCT 1
8459 #define CONFIG_DWT 1
8460 #define CONFIG_FFT 1
8461 #define CONFIG_GOLOMB 1
8462 #define CONFIG_H264DSP 1
8463 #define CONFIG_LPC 1
8464 #define CONFIG_MDCT 1
8465 #define CONFIG_RDFT 1
8467 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8469 #define HAVE_EBP_AVAILABLE 1
8471 #define HAVE_EBP_AVAILABLE 0
8474 #define CONFIG_H263_VAAPI_HWACCEL 0
8475 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8476 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8477 #define CONFIG_H264_VAAPI_HWACCEL 0
8478 #define CONFIG_VC1_VAAPI_HWACCEL 0
8479 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8481 #endif /* MPLAYER_CONFIG_H */
8484 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8485 cmp -s "$TMPH" config.h ||
mv -f "$TMPH" config.h
8487 #############################################################################
8489 .
/version.sh
`$_cc -dumpversion`
8493 Config files successfully generated by ./configure $configuration !
8495 Install prefix: $_prefix
8496 Data directory: $_datadir
8497 Config direct.: $_confdir
8499 Byte order: $_byte_order
8500 Optimizing for: $_optimizing
8503 Messages (in addition to English): $language_msg
8504 Manual pages: $language_man
8505 Documentation: $language_doc
8507 Enabled optional drivers:
8508 Input: $inputmodules
8509 Codecs: $codecmodules
8510 Audio output: $aomodules
8511 Video output: $vomodules
8513 Disabled optional drivers:
8514 Input: $noinputmodules
8515 Codecs: $nocodecmodules
8516 Audio output: $noaomodules
8517 Video output: $novomodules
8519 'config.h' and 'config.mak' contain your configuration options.
8520 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8521 compile *** DO NOT REPORT BUGS if you tweak these files ***
8523 'make' will now compile MPlayer and 'make install' will install it.
8524 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8529 if test "$_mtrr" = yes ; then
8530 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8536 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8537 operating system ($system_name). You may encounter a few files that cannot
8538 be played due to missing open source video/audio codec support.
8545 Check $TMPLOG if you wonder why an autodetection failed (make sure
8546 development headers/packages are installed).
8548 NOTE: The --enable-* parameters unconditionally force options on, completely
8549 skipping autodetection. This behavior is unlike what you may be used to from
8550 autoconf-based configure scripts that can decide to override you. This greater
8551 level of control comes at a price. You may have to provide the correct compiler
8552 and linker flags yourself.
8553 If you used one of these options (except --enable-menu and similar ones that
8554 turn on internal features) and experience a compilation or linking failure,
8555 make sure you have passed the necessary compiler/linker flags to configure.
8557 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8561 if test "$warn_cflags" = yes; then
8564 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8567 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8569 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8570 To do so, execute 'CFLAGS= ./configure <options>'
8576 rm -rf "$mplayer_tmpdir"