dvdnav: make mp_dvdnav_save_smpi() more robust
[mplayer.git] / configure
blob65e997baf776364c08efb21a38fefc562f009ce9
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, look at the existing checks
23 # and try to use helper functions where you can.
25 # Furthermore you need to add the variable _feature to the list of default
26 # settings and set it to one of yes/no/auto. Also add appropriate
27 # --enable-feature/--disable-feature command line options.
28 # The results of the check should be written to config.h and config.mak
29 # at the end of this script. The variable names used for this should be
30 # uniform, i.e. if the option is named 'feature':
32 # _feature : should have a value of yes/no/auto
33 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
34 # _ld_feature : '-L/path/dir -lfeature' GCC options
36 #############################################################################
38 # Prevent locale nonsense from breaking basic text processing utils
39 export LC_ALL=C
41 # Store the configure line that was used
42 configuration="$*"
44 # Prefer these macros to full length text !
45 # These macros only return an error code - NO display is done
46 compile_check() {
47 source="$1"
48 shift
49 echo >> "$TMPLOG"
50 cat "$source" >> "$TMPLOG"
51 echo >> "$TMPLOG"
52 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
53 rm -f "$TMPEXE"
54 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
55 TMPRES="$?"
56 echo >> "$TMPLOG"
57 echo >> "$TMPLOG"
58 return "$TMPRES"
61 cc_check() {
62 compile_check $TMPC $@
65 cxx_check() {
66 compile_check $TMPCPP $@ -lstdc++
69 cflag_check() {
70 cat > $TMPC << EOF
71 int main(void) { return 0; }
72 EOF
73 compile_check $TMPC $@
76 header_check() {
77 cat > $TMPC << EOF
78 #include <$1>
79 int main(void) { return 0; }
80 EOF
81 shift
82 compile_check $TMPC $@
85 return_check() {
86 cat > $TMPC << EOF
87 #include <$1>
88 int main(void) { return $2; }
89 EOF
90 shift 2
91 compile_check $TMPC $@
94 statement_check() {
95 cat > $TMPC << EOF
96 #include <$1>
97 int main(void) { $2; return 0; }
98 EOF
99 shift
100 shift
101 compile_check $TMPC $@
104 define_statement_check() {
105 cat > $TMPC << EOF
106 #define $1
107 #include <$2>
108 int main(void) { $3; return 0; }
110 shift 3
111 compile_check $TMPC $@
114 return_statement_check() {
115 cat > $TMPC << EOF
116 #include <$1>
117 int main(void) { $2; return $3; }
119 shift 3
120 compile_check $TMPC $@
123 inline_asm_check() {
124 cat > $TMPC << EOF
125 int main(void) { __asm__ volatile ($1); return 0; }
127 shift
128 compile_check $TMPC $@
131 # The following checks are special and should only be used with broken and
132 # non-selfsufficient headers that do not include all of their dependencies.
134 header_check_broken() {
135 cat > $TMPC << EOF
136 #include <$1>
137 #include <$2>
138 int main(void) { return 0; }
140 shift
141 shift
142 compile_check $TMPC $@
145 statement_check_broken() {
146 cat > $TMPC << EOF
147 #include <$1>
148 #include <$2>
149 int main(void) { $3; return 0; }
151 shift 3
152 compile_check $TMPC $@
155 yasm_check() {
156 echo >> "$TMPLOG"
157 cat "$TMPS" >> "$TMPLOG"
158 echo >> "$TMPLOG"
159 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
160 rm -f "$TMPEXE"
161 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
162 TMPRES="$?"
163 echo >> "$TMPLOG"
164 echo >> "$TMPLOG"
165 return "$TMPRES"
168 tmp_run() {
169 "$TMPEXE" >> "$TMPLOG" 2>&1
172 # Display error message, flushes tempfile, exit
173 die () {
174 echo
175 echo "Error: $@" >&2
176 echo >&2
177 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
178 echo "Check \"$TMPLOG\" if you do not understand why it failed."
179 exit 1
182 # OS test booleans functions
183 issystem() {
184 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
186 aix() { issystem "AIX"; }
187 amigaos() { issystem "AmigaOS"; }
188 beos() { issystem "BEOS"; }
189 bsdos() { issystem "BSD/OS"; }
190 cygwin() { issystem "CYGWIN"; }
191 darwin() { issystem "Darwin"; }
192 dragonfly() { issystem "DragonFly"; }
193 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
194 gnu() { issystem "GNU"; }
195 hpux() { issystem "HP-UX"; }
196 irix() { issystem "IRIX"; }
197 linux() { issystem "Linux"; }
198 mingw32() { issystem "MINGW32"; }
199 morphos() { issystem "MorphOS"; }
200 netbsd() { issystem "NetBSD"; }
201 openbsd() { issystem "OpenBSD"; }
202 os2() { issystem "OS/2"; }
203 qnx() { issystem "QNX"; }
204 sunos() { issystem "SunOS"; }
205 win32() { cygwin || mingw32; }
207 # arch test boolean functions
208 # x86/x86pc is used by QNX
209 x86_32() {
210 case "$host_arch" in
211 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
212 *) return 1 ;;
213 esac
216 x86_64() {
217 case "$host_arch" in
218 x86_64|amd64) return 0 ;;
219 *) return 1 ;;
220 esac
223 x86() {
224 x86_32 || x86_64
227 ppc() {
228 case "$host_arch" in
229 ppc|ppc64|powerpc|powerpc64) return 0;;
230 *) return 1;;
231 esac
234 alpha() {
235 case "$host_arch" in
236 alpha*) return 0;;
237 *) return 1;;
238 esac
241 arm() {
242 case "$host_arch" in
243 arm*) return 0;;
244 *) return 1;;
245 esac
248 # Use this before starting a check
249 echocheck() {
250 echo "============ Checking for $@ ============" >> "$TMPLOG"
251 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
254 # Use this to echo the results of a check
255 echores() {
256 if test "$res_comment" ; then
257 res_comment="($res_comment)"
259 echo "Result is: $@ $res_comment" >> "$TMPLOG"
260 echo "##########################################" >> "$TMPLOG"
261 echo "" >> "$TMPLOG"
262 echo "$@ $res_comment"
263 res_comment=""
265 #############################################################################
267 # Check how echo works in this /bin/sh
268 case $(echo -n) in
269 -n) _echo_n= _echo_c='\c' ;; # SysV echo
270 *) _echo_n='-n ' _echo_c= ;; # BSD echo
271 esac
273 msg_lang_all=''
274 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
275 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")
276 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
278 show_help(){
279 cat << EOF
280 Usage: $0 [OPTIONS]...
282 Configuration:
283 -h, --help display this help and exit
285 Installation directories:
286 --prefix=DIR prefix directory for installation [/usr/local]
287 --bindir=DIR directory for installing binaries [PREFIX/bin]
288 --datadir=DIR directory for installing machine independent
289 data files (skins, etc) [PREFIX/share/mplayer]
290 --mandir=DIR directory for installing man pages [PREFIX/share/man]
291 --confdir=DIR directory for installing configuration files
292 [PREFIX/etc/mplayer]
293 --localedir=DIR directory for locale tree [PREFIX/share/locale]
294 --libdir=DIR directory for object code libraries [PREFIX/lib]
295 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
297 Optional features:
298 --disable-mplayer disable MPlayer compilation [enable]
299 --enable-termcap use termcap database for key codes [autodetect]
300 --enable-termios use termios database for key codes [autodetect]
301 --disable-iconv disable iconv for encoding conversion [autodetect]
302 --disable-langinfo do not use langinfo [autodetect]
303 --enable-lirc enable LIRC (remote control) support [autodetect]
304 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
305 --enable-joystick enable joystick support [disable]
306 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
307 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
308 --disable-vm disable X video mode extensions [autodetect]
309 --disable-xf86keysym disable support for multimedia keys [autodetect]
310 --enable-radio enable radio interface [disable]
311 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
312 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
313 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
314 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
315 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
316 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
317 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
318 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
319 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
320 --disable-networking disable networking [enable]
321 --enable-winsock2_h enable winsock2_h [autodetect]
322 --enable-smb enable Samba (SMB) input [autodetect]
323 --enable-live enable LIVE555 Streaming Media [autodetect]
324 --enable-nemesi enable Nemesi Streaming Media [autodetect]
325 --disable-vcd disable VCD support [autodetect]
326 --disable-bluray disable Blu-ray support [autodetect]
327 --disable-dvdnav disable libdvdnav [autodetect]
328 --disable-dvdread disable libdvdread [autodetect]
329 --disable-dvdread-internal disable internal libdvdread [autodetect]
330 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
331 --disable-cdparanoia disable cdparanoia [autodetect]
332 --disable-cddb disable cddb [autodetect]
333 --disable-bitmap-font disable bitmap font support [enable]
334 --disable-freetype disable FreeType 2 font rendering [autodetect]
335 --disable-fontconfig disable fontconfig font lookup [autodetect]
336 --disable-unrarexec disable using of UnRAR executable [enabled]
337 --enable-menu enable OSD menu (not DVD menu) [disabled]
338 --disable-sortsub disable subtitle sorting [enabled]
339 --enable-fribidi enable the FriBiDi libs [autodetect]
340 --disable-enca disable ENCA charset oracle library [autodetect]
341 --enable-macosx-finder enable Mac OS X Finder invocation parameter
342 parsing [disabled]
343 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
344 --disable-inet6 disable IPv6 support [autodetect]
345 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
346 --disable-ftp disable FTP support [enabled]
347 --disable-vstream disable TiVo vstream client support [autodetect]
348 --disable-pthreads disable Posix threads support [autodetect]
349 --disable-w32threads disable Win32 threads support [autodetect]
350 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
351 --enable-rpath enable runtime linker path for extra libs [disabled]
353 Codecs:
354 --enable-gif enable GIF support [autodetect]
355 --enable-png enable PNG input/output support [autodetect]
356 --enable-mng enable MNG input support [autodetect]
357 --enable-jpeg enable JPEG input/output support [autodetect]
358 --enable-libcdio enable libcdio support [autodetect]
359 --disable-win32dll disable Win32 DLL support [autodetect]
360 --disable-qtx disable QuickTime codecs support [enabled]
361 --disable-xanim disable XAnim codecs support [enabled]
362 --disable-real disable RealPlayer codecs support [enabled]
363 --disable-xvid disable Xvid [autodetect]
364 --disable-libnut disable libnut [autodetect]
365 --disable-ffmpeg disable FFmpeg [autodetect]
366 --disable-libvorbis disable libvorbis support [autodetect]
367 --disable-tremor disable Tremor [autodetect if no libvorbis]
368 --disable-speex disable Speex support [autodetect]
369 --enable-theora enable OggTheora libraries [autodetect]
370 --enable-faad enable FAAD2 (AAC) [autodetect]
371 --disable-ladspa disable LADSPA plugin support [autodetect]
372 --disable-libbs2b disable libbs2b audio filter support [autodetect]
373 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
374 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
375 --disable-mad disable libmad (MPEG audio) support [autodetect]
376 --enable-xmms enable XMMS input plugin support [disabled]
377 --enable-libdca enable libdca support [autodetect]
378 --disable-liba52 disable liba52 [autodetect]
379 --enable-musepack enable libmpcdec support (deprecated, libavcodec
380 Musepack decoder is preferred) [disabled]
382 Video output:
383 --enable-gl enable OpenGL video output [autodetect]
384 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
385 --enable-dga2 enable DGA 2 support [autodetect]
386 --enable-dga1 enable DGA 1 support [autodetect]
387 --enable-vesa enable VESA video output [autodetect]
388 --enable-svga enable SVGAlib video output [autodetect]
389 --enable-sdl enable SDL video output [autodetect]
390 --enable-kva enable KVA video output [autodetect]
391 --enable-aa enable AAlib video output [autodetect]
392 --enable-caca enable CACA video output [autodetect]
393 --enable-ggi enable GGI video output [autodetect]
394 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
395 --enable-direct3d enable Direct3D video output [autodetect]
396 --enable-directx enable DirectX video output [autodetect]
397 --enable-dxr3 enable DXR3/H+ video output [autodetect]
398 --enable-ivtv enable IVTV TV-Out video output [autodetect]
399 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
400 --enable-dvb enable DVB video output [autodetect]
401 --enable-mga enable mga_vid video output [autodetect]
402 --enable-xmga enable mga_vid X11 video output [autodetect]
403 --enable-xv enable Xv video output [autodetect]
404 --enable-vdpau enable VDPAU acceleration [autodetect]
405 --enable-vm enable XF86VidMode support [autodetect]
406 --enable-xinerama enable Xinerama support [autodetect]
407 --enable-x11 enable X11 video output [autodetect]
408 --enable-xshape enable XShape support [autodetect]
409 --disable-xss disable screensaver support via xss [autodetect]
410 --enable-fbdev enable FBDev video output [autodetect]
411 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
412 --enable-tdfxfb enable tdfxfb video output [disable]
413 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
414 --enable-wii enable Nintendo Wii/GameCube video output [disable]
415 --enable-directfb enable DirectFB video output [autodetect]
416 --enable-bl enable Blinkenlights video output [disable]
417 --enable-tdfxvid enable tdfx_vid video output [disable]
418 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
419 --disable-tga disable Targa video output [enable]
420 --disable-pnm disable PNM video output [enable]
421 --disable-md5sum disable md5sum video output [enable]
422 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
423 --disable-corevideo disable CoreVideo video output [autodetect]
424 --disable-quartz disable Quartz video output [autodetect]
426 Audio output:
427 --disable-alsa disable ALSA audio output [autodetect]
428 --disable-ossaudio disable OSS audio output [autodetect]
429 --disable-arts disable aRts audio output [autodetect]
430 --disable-esd disable esd audio output [autodetect]
431 --disable-rsound disable RSound audio output [autodetect]
432 --disable-pulse disable Pulseaudio audio output [autodetect]
433 --disable-jack disable JACK audio output [autodetect]
434 --enable-openal enable OpenAL audio output [disable]
435 --disable-nas disable NAS audio output [autodetect]
436 --disable-sgiaudio disable SGI audio output [autodetect]
437 --disable-sunaudio disable Sun audio output [autodetect]
438 --disable-kai disable KAI audio output [autodetect]
439 --disable-dart disable DART audio output [autodetect]
440 --disable-win32waveout disable Windows waveout audio output [autodetect]
441 --disable-coreaudio disable CoreAudio audio output [autodetect]
442 --disable-select disable using select() on the audio device [enable]
444 Language options:
445 --enable-translation enable support for translated output [disable]
446 --charset=charset convert the console messages to this character set
447 --language-doc=lang language to use for the documentation [en]
448 --language-man=lang language to use for the man pages [en]
449 --language-msg=lang extra languages for program messages [all]
450 --language=lang default language to use [en]
451 Specific options override --language. You can pass a list of languages separated
452 by whitespace or commas instead of a single language. Nonexisting translations
453 will be dropped from each list. All translations available in the list will be
454 installed. The value "all" will activate all translations. The LINGUAS
455 environment variable is honored. In all cases the fallback is English.
456 The program always supports English-language output; additional message
457 languages are only installed if --enable-translation is also specified.
458 Available values for --language-doc are: all $doc_lang_all
459 Available values for --language-man are: all $man_lang_all
460 Available values for --language-msg are: all $msg_lang_all
462 Miscellaneous options:
463 --enable-runtime-cpudetection enable runtime CPU detection [disable]
464 --enable-cross-compile enable cross-compilation [autodetect]
465 --cc=COMPILER C compiler to build MPlayer [gcc]
466 --host-cc=COMPILER C compiler for tools needed while building [gcc]
467 --as=ASSEMBLER assembler to build MPlayer [as]
468 --nm=NM nm tool to build MPlayer [nm]
469 --yasm=YASM Yasm assembler to build MPlayer [yasm]
470 --ar=AR librarian to build MPlayer [ar]
471 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
472 --windres=WINDRES windres to build MPlayer [windres]
473 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
474 --enable-static build a statically linked binary
475 --with-install=PATH path to a custom install program
477 Advanced options:
478 --enable-mmx enable MMX [autodetect]
479 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
480 --enable-3dnow enable 3DNow! [autodetect]
481 --enable-3dnowext enable extended 3DNow! [autodetect]
482 --enable-sse enable SSE [autodetect]
483 --enable-sse2 enable SSE2 [autodetect]
484 --enable-ssse3 enable SSSE3 [autodetect]
485 --enable-shm enable shm [autodetect]
486 --enable-altivec enable AltiVec (PowerPC) [autodetect]
487 --enable-armv5te enable DSP extensions (ARM) [autodetect]
488 --enable-armv6 enable ARMv6 (ARM) [autodetect]
489 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
490 --enable-armvfp enable ARM VFP (ARM) [autodetect]
491 --enable-neon enable NEON (ARM) [autodetect]
492 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
493 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
494 --enable-big-endian force byte order to big-endian [autodetect]
495 --enable-debug[=1-3] compile-in debugging information [disable]
496 --enable-profile compile-in profiling information [disable]
497 --disable-sighandler disable sighandler for crashes [enable]
498 --enable-crash-debug enable automatic gdb attach on crash [disable]
499 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
501 Use these options if autodetection fails:
502 --extra-cflags=FLAGS extra CFLAGS
503 --extra-ldflags=FLAGS extra LDFLAGS
504 --extra-libs=FLAGS extra linker flags
505 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
507 --with-freetype-config=PATH path to freetype-config
508 --with-sdl-config=PATH path to sdl*-config
509 --with-dvdnav-config=PATH path to dvdnav-config
510 --with-dvdread-config=PATH path to dvdread-config
512 This configure script is NOT autoconf-based, even though its output is similar.
513 It will try to autodetect all configuration options. If you --enable an option
514 it will be forcefully turned on, skipping autodetection. This can break
515 compilation, so you need to know what you are doing.
517 exit 0
518 } #show_help()
520 # GOTCHA: the variables below defines the default behavior for autodetection
521 # and have - unless stated otherwise - at least 2 states : yes no
522 # If autodetection is available then the third state is: auto
523 _mmx=auto
524 _3dnow=auto
525 _3dnowext=auto
526 _mmxext=auto
527 _sse=auto
528 _sse2=auto
529 _ssse3=auto
530 _cmov=auto
531 _fast_cmov=auto
532 _fast_clz=auto
533 _armv5te=auto
534 _armv6=auto
535 _armv6t2=auto
536 _armvfp=auto
537 neon=auto
538 _iwmmxt=auto
539 _mtrr=auto
540 _altivec=auto
541 _install=install
542 _ranlib=ranlib
543 _windres=windres
544 _cc=cc
545 _ar=ar
546 test "$CC" && _cc="$CC"
547 _as=auto
548 _nm=auto
549 _yasm=yasm
550 _runtime_cpudetection=no
551 _cross_compile=auto
552 _prefix="/usr/local"
553 ffmpeg=auto
554 ffmpeg_internals=no
555 _mplayer=yes
556 _x11=auto
557 _xshape=auto
558 _xss=auto
559 _dga1=auto
560 _dga2=auto
561 _xv=auto
562 _vdpau=auto
563 _sdl=auto
564 _kva=auto
565 _direct3d=auto
566 _directx=auto
567 _win32waveout=auto
568 _nas=auto
569 _png=auto
570 _mng=auto
571 _jpeg=auto
572 _pnm=yes
573 _md5sum=yes
574 _yuv4mpeg=yes
575 _gif=auto
576 _gl=auto
577 matrixview=yes
578 _ggi=auto
579 _ggiwmh=auto
580 _aa=auto
581 _caca=auto
582 _svga=auto
583 _vesa=auto
584 _fbdev=auto
585 _dvb=auto
586 _dxr3=auto
587 _ivtv=auto
588 _v4l2=auto
589 _iconv=auto
590 _langinfo=auto
591 _rtc=auto
592 _ossaudio=auto
593 _arts=auto
594 _esd=auto
595 _rsound=auto
596 _pulse=auto
597 _jack=auto
598 _kai=auto
599 _dart=auto
600 _openal=no
601 _libcdio=auto
602 _mad=auto
603 _tremor=auto
604 _libvorbis=auto
605 _speex=auto
606 _theora=auto
607 _mpg123=auto
608 _liba52=auto
609 _libdca=auto
610 _faad=auto
611 _ladspa=auto
612 _libbs2b=auto
613 _xmms=no
614 _vcd=auto
615 _bluray=auto
616 _dvdnav=auto
617 _dvdnavconfig=dvdnav-config
618 _dvdreadconfig=dvdread-config
619 _dvdread=auto
620 _dvdread_internal=auto
621 _libdvdcss_internal=auto
622 _xanim=auto
623 _real=auto
624 _live=auto
625 _nemesi=auto
626 _native_rtsp=yes
627 _xinerama=auto
628 _mga=auto
629 _xmga=auto
630 _vm=auto
631 _xf86keysym=auto
632 _sgiaudio=auto
633 _sunaudio=auto
634 _alsa=auto
635 _fastmemcpy=yes
636 _unrar_exec=auto
637 _win32dll=auto
638 _select=yes
639 _radio=no
640 _radio_capture=no
641 _radio_v4l=auto
642 _radio_v4l2=auto
643 _radio_bsdbt848=auto
644 _tv=yes
645 _tv_v4l1=auto
646 _tv_v4l2=auto
647 _tv_bsdbt848=auto
648 _tv_dshow=auto
649 _pvr=auto
650 networking=yes
651 _winsock2_h=auto
652 _smb=auto
653 _joystick=no
654 _xvid=auto
655 _libnut=auto
656 _lirc=auto
657 _lircc=auto
658 _apple_remote=auto
659 _apple_ir=auto
660 _termcap=auto
661 _termios=auto
662 _3dfx=no
663 _s3fb=no
664 _wii=no
665 _tdfxfb=no
666 _tdfxvid=no
667 _xvr100=auto
668 _tga=yes
669 _directfb=auto
670 _bl=no
671 #language=en
672 _shm=auto
673 _translation=no
674 _charset="UTF-8"
675 _dynamic_plugins=no
676 _crash_debug=no
677 _sighandler=yes
678 _libdv=auto
679 _cdparanoia=auto
680 _cddb=auto
681 _big_endian=auto
682 _bitmap_font=yes
683 _freetype=auto
684 _fontconfig=auto
685 _menu=no
686 _qtx=auto
687 _coreaudio=auto
688 _corevideo=auto
689 _quartz=auto
690 quicktime=auto
691 _macosx_finder=no
692 _macosx_bundle=auto
693 _sortsub=yes
694 _freetypeconfig='freetype-config'
695 _fribidi=auto
696 _enca=auto
697 _inet6=auto
698 _gethostbyname2=auto
699 _ftp=auto
700 _musepack=no
701 _vstream=auto
702 _pthreads=auto
703 _w32threads=auto
704 _ass=auto
705 _rpath=no
706 _asmalign_pot=auto
707 _stream_cache=yes
708 _priority=no
709 def_dos_paths="#define HAVE_DOS_PATHS 0"
710 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
711 def_priority="#undef CONFIG_PRIORITY"
712 def_pthread_cache="#undef PTHREAD_CACHE"
713 need_shmem=yes
714 for ac_option do
715 case "$ac_option" in
716 --help|-help|-h)
717 show_help
719 --prefix=*)
720 _prefix=$(echo $ac_option | cut -d '=' -f 2)
722 --bindir=*)
723 _bindir=$(echo $ac_option | cut -d '=' -f 2)
725 --datadir=*)
726 _datadir=$(echo $ac_option | cut -d '=' -f 2)
728 --mandir=*)
729 _mandir=$(echo $ac_option | cut -d '=' -f 2)
731 --confdir=*)
732 _confdir=$(echo $ac_option | cut -d '=' -f 2)
734 --libdir=*)
735 _libdir=$(echo $ac_option | cut -d '=' -f 2)
737 --codecsdir=*)
738 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
740 --localedir=*)
741 _localedir=$(echo $ac_option | cut -d '=' -f 2)
744 --with-install=*)
745 _install=$(echo $ac_option | cut -d '=' -f 2 )
748 --with-sdl-config=*)
749 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
751 --with-freetype-config=*)
752 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
754 --with-dvdnav-config=*)
755 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --with-dvdread-config=*)
758 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
761 --extra-cflags=*)
762 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
764 --extra-ldflags=*)
765 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
767 --extra-libs=*)
768 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
770 --extra-libs-mplayer=*)
771 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
774 --target=*)
775 _target=$(echo $ac_option | cut -d '=' -f 2)
777 --cc=*)
778 _cc=$(echo $ac_option | cut -d '=' -f 2)
780 --host-cc=*)
781 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
783 --as=*)
784 _as=$(echo $ac_option | cut -d '=' -f 2)
786 --nm=*)
787 _nm=$(echo $ac_option | cut -d '=' -f 2)
789 --yasm=*)
790 _yasm=$(echo $ac_option | cut -d '=' -f 2)
792 --ar=*)
793 _ar=$(echo $ac_option | cut -d '=' -f 2)
795 --ranlib=*)
796 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
798 --windres=*)
799 _windres=$(echo $ac_option | cut -d '=' -f 2)
801 --charset=*)
802 _charset=$(echo $ac_option | cut -d '=' -f 2)
804 --language-doc=*)
805 language_doc=$(echo $ac_option | cut -d '=' -f 2)
807 --language-man=*)
808 language_man=$(echo $ac_option | cut -d '=' -f 2)
810 --language-msg=*)
811 language_msg=$(echo $ac_option | cut -d '=' -f 2)
813 --language=*)
814 language=$(echo $ac_option | cut -d '=' -f 2)
817 --enable-static)
818 _ld_static='-static'
820 --disable-static)
821 _ld_static=''
823 --enable-profile)
824 _profile='-p'
826 --disable-profile)
827 _profile=
829 --enable-debug)
830 _debug='-g'
832 --enable-debug=*)
833 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
835 --disable-debug)
836 _debug=
838 --enable-translation) _translation=yes ;;
839 --disable-translation) _translation=no ;;
840 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
841 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
842 --enable-cross-compile) _cross_compile=yes ;;
843 --disable-cross-compile) _cross_compile=no ;;
844 --enable-mplayer) _mplayer=yes ;;
845 --disable-mplayer) _mplayer=no ;;
846 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
847 --disable-dynamic-plugins) _dynamic_plugins=no ;;
848 --enable-x11) _x11=yes ;;
849 --disable-x11) _x11=no ;;
850 --enable-xshape) _xshape=yes ;;
851 --disable-xshape) _xshape=no ;;
852 --enable-xss) _xss=yes ;;
853 --disable-xss) _xss=no ;;
854 --enable-xv) _xv=yes ;;
855 --disable-xv) _xv=no ;;
856 --enable-vdpau) _vdpau=yes ;;
857 --disable-vdpau) _vdpau=no ;;
858 --enable-sdl) _sdl=yes ;;
859 --disable-sdl) _sdl=no ;;
860 --enable-kva) _kva=yes ;;
861 --disable-kva) _kva=no ;;
862 --enable-direct3d) _direct3d=yes ;;
863 --disable-direct3d) _direct3d=no ;;
864 --enable-directx) _directx=yes ;;
865 --disable-directx) _directx=no ;;
866 --enable-win32waveout) _win32waveout=yes ;;
867 --disable-win32waveout) _win32waveout=no ;;
868 --enable-nas) _nas=yes ;;
869 --disable-nas) _nas=no ;;
870 --enable-png) _png=yes ;;
871 --disable-png) _png=no ;;
872 --enable-mng) _mng=yes ;;
873 --disable-mng) _mng=no ;;
874 --enable-jpeg) _jpeg=yes ;;
875 --disable-jpeg) _jpeg=no ;;
876 --enable-pnm) _pnm=yes ;;
877 --disable-pnm) _pnm=no ;;
878 --enable-md5sum) _md5sum=yes ;;
879 --disable-md5sum) _md5sum=no ;;
880 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
881 --disable-yuv4mpeg) _yuv4mpeg=no ;;
882 --enable-gif) _gif=yes ;;
883 --disable-gif) _gif=no ;;
884 --enable-gl) _gl=yes ;;
885 --disable-gl) _gl=no ;;
886 --enable-matrixview) matrixview=yes ;;
887 --disable-matrixview) matrixview=no ;;
888 --enable-ggi) _ggi=yes ;;
889 --disable-ggi) _ggi=no ;;
890 --enable-ggiwmh) _ggiwmh=yes ;;
891 --disable-ggiwmh) _ggiwmh=no ;;
892 --enable-aa) _aa=yes ;;
893 --disable-aa) _aa=no ;;
894 --enable-caca) _caca=yes ;;
895 --disable-caca) _caca=no ;;
896 --enable-svga) _svga=yes ;;
897 --disable-svga) _svga=no ;;
898 --enable-vesa) _vesa=yes ;;
899 --disable-vesa) _vesa=no ;;
900 --enable-fbdev) _fbdev=yes ;;
901 --disable-fbdev) _fbdev=no ;;
902 --enable-dvb) _dvb=yes ;;
903 --disable-dvb) _dvb=no ;;
904 --enable-dxr3) _dxr3=yes ;;
905 --disable-dxr3) _dxr3=no ;;
906 --enable-ivtv) _ivtv=yes ;;
907 --disable-ivtv) _ivtv=no ;;
908 --enable-v4l2) _v4l2=yes ;;
909 --disable-v4l2) _v4l2=no ;;
910 --enable-iconv) _iconv=yes ;;
911 --disable-iconv) _iconv=no ;;
912 --enable-langinfo) _langinfo=yes ;;
913 --disable-langinfo) _langinfo=no ;;
914 --enable-rtc) _rtc=yes ;;
915 --disable-rtc) _rtc=no ;;
916 --enable-libdv) _libdv=yes ;;
917 --disable-libdv) _libdv=no ;;
918 --enable-ossaudio) _ossaudio=yes ;;
919 --disable-ossaudio) _ossaudio=no ;;
920 --enable-arts) _arts=yes ;;
921 --disable-arts) _arts=no ;;
922 --enable-esd) _esd=yes ;;
923 --disable-esd) _esd=no ;;
924 --enable-rsound) _rsound=yes ;;
925 --disable-rsound) _rsound=no ;;
926 --enable-pulse) _pulse=yes ;;
927 --disable-pulse) _pulse=no ;;
928 --enable-jack) _jack=yes ;;
929 --disable-jack) _jack=no ;;
930 --enable-openal) _openal=yes ;;
931 --disable-openal) _openal=no ;;
932 --enable-kai) _kai=yes ;;
933 --disable-kai) _kai=no ;;
934 --enable-dart) _dart=yes ;;
935 --disable-dart) _dart=no ;;
936 --enable-mad) _mad=yes ;;
937 --disable-mad) _mad=no ;;
938 --enable-libcdio) _libcdio=yes ;;
939 --disable-libcdio) _libcdio=no ;;
940 --enable-libvorbis) _libvorbis=yes ;;
941 --disable-libvorbis) _libvorbis=no ;;
942 --enable-speex) _speex=yes ;;
943 --disable-speex) _speex=no ;;
944 --enable-tremor) _tremor=yes ;;
945 --disable-tremor) _tremor=no ;;
946 --enable-theora) _theora=yes ;;
947 --disable-theora) _theora=no ;;
948 --enable-mpg123) _mpg123=yes ;;
949 --disable-mpg123) _mpg123=no ;;
950 --enable-liba52) _liba52=yes ;;
951 --disable-liba52) _liba52=no ;;
952 --enable-libdca) _libdca=yes ;;
953 --disable-libdca) _libdca=no ;;
954 --enable-musepack) _musepack=yes ;;
955 --disable-musepack) _musepack=no ;;
956 --enable-faad) _faad=yes ;;
957 --disable-faad) _faad=no ;;
958 --enable-ladspa) _ladspa=yes ;;
959 --disable-ladspa) _ladspa=no ;;
960 --enable-libbs2b) _libbs2b=yes ;;
961 --disable-libbs2b) _libbs2b=no ;;
962 --enable-xmms) _xmms=yes ;;
963 --disable-xmms) _xmms=no ;;
964 --enable-vcd) _vcd=yes ;;
965 --disable-vcd) _vcd=no ;;
966 --enable-bluray) _bluray=yes ;;
967 --disable-bluray) _bluray=no ;;
968 --enable-dvdread) _dvdread=yes ;;
969 --disable-dvdread) _dvdread=no ;;
970 --enable-dvdread-internal) _dvdread_internal=yes ;;
971 --disable-dvdread-internal) _dvdread_internal=no ;;
972 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
973 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
974 --enable-dvdnav) _dvdnav=yes ;;
975 --disable-dvdnav) _dvdnav=no ;;
976 --enable-xanim) _xanim=yes ;;
977 --disable-xanim) _xanim=no ;;
978 --enable-real) _real=yes ;;
979 --disable-real) _real=no ;;
980 --enable-live) _live=yes ;;
981 --disable-live) _live=no ;;
982 --enable-nemesi) _nemesi=yes ;;
983 --disable-nemesi) _nemesi=no ;;
984 --enable-xinerama) _xinerama=yes ;;
985 --disable-xinerama) _xinerama=no ;;
986 --enable-mga) _mga=yes ;;
987 --disable-mga) _mga=no ;;
988 --enable-xmga) _xmga=yes ;;
989 --disable-xmga) _xmga=no ;;
990 --enable-vm) _vm=yes ;;
991 --disable-vm) _vm=no ;;
992 --enable-xf86keysym) _xf86keysym=yes ;;
993 --disable-xf86keysym) _xf86keysym=no ;;
994 --enable-sunaudio) _sunaudio=yes ;;
995 --disable-sunaudio) _sunaudio=no ;;
996 --enable-sgiaudio) _sgiaudio=yes ;;
997 --disable-sgiaudio) _sgiaudio=no ;;
998 --enable-alsa) _alsa=yes ;;
999 --disable-alsa) _alsa=no ;;
1000 --enable-tv) _tv=yes ;;
1001 --disable-tv) _tv=no ;;
1002 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1003 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1004 --enable-tv-v4l1) _tv_v4l1=yes ;;
1005 --disable-tv-v4l1) _tv_v4l1=no ;;
1006 --enable-tv-v4l2) _tv_v4l2=yes ;;
1007 --disable-tv-v4l2) _tv_v4l2=no ;;
1008 --enable-tv-dshow) _tv_dshow=yes ;;
1009 --disable-tv-dshow) _tv_dshow=no ;;
1010 --enable-radio) _radio=yes ;;
1011 --enable-radio-capture) _radio_capture=yes ;;
1012 --disable-radio-capture) _radio_capture=no ;;
1013 --disable-radio) _radio=no ;;
1014 --enable-radio-v4l) _radio_v4l=yes ;;
1015 --disable-radio-v4l) _radio_v4l=no ;;
1016 --enable-radio-v4l2) _radio_v4l2=yes ;;
1017 --disable-radio-v4l2) _radio_v4l2=no ;;
1018 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1019 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1020 --enable-pvr) _pvr=yes ;;
1021 --disable-pvr) _pvr=no ;;
1022 --enable-fastmemcpy) _fastmemcpy=yes ;;
1023 --disable-fastmemcpy) _fastmemcpy=no ;;
1024 --enable-networking) networking=yes ;;
1025 --disable-networking) networking=no ;;
1026 --enable-winsock2_h) _winsock2_h=yes ;;
1027 --disable-winsock2_h) _winsock2_h=no ;;
1028 --enable-smb) _smb=yes ;;
1029 --disable-smb) _smb=no ;;
1030 --enable-joystick) _joystick=yes ;;
1031 --disable-joystick) _joystick=no ;;
1032 --enable-xvid) _xvid=yes ;;
1033 --disable-xvid) _xvid=no ;;
1034 --enable-libnut) _libnut=yes ;;
1035 --disable-libnut) _libnut=no ;;
1036 --enable-ffmpeg) ffmpeg=yes ;;
1037 --disable-ffmpeg) ffmpeg=no ;;
1038 --ffmpeg-source-dir=*)
1039 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1041 --enable-lirc) _lirc=yes ;;
1042 --disable-lirc) _lirc=no ;;
1043 --enable-lircc) _lircc=yes ;;
1044 --disable-lircc) _lircc=no ;;
1045 --enable-apple-remote) _apple_remote=yes ;;
1046 --disable-apple-remote) _apple_remote=no ;;
1047 --enable-apple-ir) _apple_ir=yes ;;
1048 --disable-apple-ir) _apple_ir=no ;;
1049 --enable-termcap) _termcap=yes ;;
1050 --disable-termcap) _termcap=no ;;
1051 --enable-termios) _termios=yes ;;
1052 --disable-termios) _termios=no ;;
1053 --enable-3dfx) _3dfx=yes ;;
1054 --disable-3dfx) _3dfx=no ;;
1055 --enable-s3fb) _s3fb=yes ;;
1056 --disable-s3fb) _s3fb=no ;;
1057 --enable-wii) _wii=yes ;;
1058 --disable-wii) _wii=no ;;
1059 --enable-tdfxfb) _tdfxfb=yes ;;
1060 --disable-tdfxfb) _tdfxfb=no ;;
1061 --disable-tdfxvid) _tdfxvid=no ;;
1062 --enable-tdfxvid) _tdfxvid=yes ;;
1063 --disable-xvr100) _xvr100=no ;;
1064 --enable-xvr100) _xvr100=yes ;;
1065 --disable-tga) _tga=no ;;
1066 --enable-tga) _tga=yes ;;
1067 --enable-directfb) _directfb=yes ;;
1068 --disable-directfb) _directfb=no ;;
1069 --enable-bl) _bl=yes ;;
1070 --disable-bl) _bl=no ;;
1071 --enable-mtrr) _mtrr=yes ;;
1072 --disable-mtrr) _mtrr=no ;;
1073 --enable-shm) _shm=yes ;;
1074 --disable-shm) _shm=no ;;
1075 --enable-select) _select=yes ;;
1076 --disable-select) _select=no ;;
1077 --enable-cdparanoia) _cdparanoia=yes ;;
1078 --disable-cdparanoia) _cdparanoia=no ;;
1079 --enable-cddb) _cddb=yes ;;
1080 --disable-cddb) _cddb=no ;;
1081 --enable-big-endian) _big_endian=yes ;;
1082 --disable-big-endian) _big_endian=no ;;
1083 --enable-bitmap-font) _bitmap_font=yes ;;
1084 --disable-bitmap-font) _bitmap_font=no ;;
1085 --enable-freetype) _freetype=yes ;;
1086 --disable-freetype) _freetype=no ;;
1087 --enable-fontconfig) _fontconfig=yes ;;
1088 --disable-fontconfig) _fontconfig=no ;;
1089 --enable-unrarexec) _unrar_exec=yes ;;
1090 --disable-unrarexec) _unrar_exec=no ;;
1091 --enable-ftp) _ftp=yes ;;
1092 --disable-ftp) _ftp=no ;;
1093 --enable-vstream) _vstream=yes ;;
1094 --disable-vstream) _vstream=no ;;
1095 --enable-pthreads) _pthreads=yes ;;
1096 --disable-pthreads) _pthreads=no ;;
1097 --enable-w32threads) _w32threads=yes ;;
1098 --disable-w32threads) _w32threads=no ;;
1099 --enable-ass) _ass=yes ;;
1100 --disable-ass) _ass=no ;;
1101 --enable-rpath) _rpath=yes ;;
1102 --disable-rpath) _rpath=no ;;
1104 --enable-fribidi) _fribidi=yes ;;
1105 --disable-fribidi) _fribidi=no ;;
1107 --enable-enca) _enca=yes ;;
1108 --disable-enca) _enca=no ;;
1110 --enable-inet6) _inet6=yes ;;
1111 --disable-inet6) _inet6=no ;;
1113 --enable-gethostbyname2) _gethostbyname2=yes ;;
1114 --disable-gethostbyname2) _gethostbyname2=no ;;
1116 --enable-dga1) _dga1=yes ;;
1117 --disable-dga1) _dga1=no ;;
1118 --enable-dga2) _dga2=yes ;;
1119 --disable-dga2) _dga2=no ;;
1121 --enable-menu) _menu=yes ;;
1122 --disable-menu) _menu=no ;;
1124 --enable-qtx) _qtx=yes ;;
1125 --disable-qtx) _qtx=no ;;
1127 --enable-coreaudio) _coreaudio=yes ;;
1128 --disable-coreaudio) _coreaudio=no ;;
1129 --enable-corevideo) _corevideo=yes ;;
1130 --disable-corevideo) _corevideo=no ;;
1131 --enable-quartz) _quartz=yes ;;
1132 --disable-quartz) _quartz=no ;;
1133 --enable-macosx-finder) _macosx_finder=yes ;;
1134 --disable-macosx-finder) _macosx_finder=no ;;
1135 --enable-macosx-bundle) _macosx_bundle=yes ;;
1136 --disable-macosx-bundle) _macosx_bundle=no ;;
1138 --enable-sortsub) _sortsub=yes ;;
1139 --disable-sortsub) _sortsub=no ;;
1141 --enable-crash-debug) _crash_debug=yes ;;
1142 --disable-crash-debug) _crash_debug=no ;;
1143 --enable-sighandler) _sighandler=yes ;;
1144 --disable-sighandler) _sighandler=no ;;
1145 --enable-win32dll) _win32dll=yes ;;
1146 --disable-win32dll) _win32dll=no ;;
1148 --enable-sse) _sse=yes ;;
1149 --disable-sse) _sse=no ;;
1150 --enable-sse2) _sse2=yes ;;
1151 --disable-sse2) _sse2=no ;;
1152 --enable-ssse3) _ssse3=yes ;;
1153 --disable-ssse3) _ssse3=no ;;
1154 --enable-mmxext) _mmxext=yes ;;
1155 --disable-mmxext) _mmxext=no ;;
1156 --enable-3dnow) _3dnow=yes ;;
1157 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1158 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1159 --disable-3dnowext) _3dnowext=no ;;
1160 --enable-cmov) _cmov=yes ;;
1161 --disable-cmov) _cmov=no ;;
1162 --enable-fast-cmov) _fast_cmov=yes ;;
1163 --disable-fast-cmov) _fast_cmov=no ;;
1164 --enable-fast-clz) _fast_clz=yes ;;
1165 --disable-fast-clz) _fast_clz=no ;;
1166 --enable-altivec) _altivec=yes ;;
1167 --disable-altivec) _altivec=no ;;
1168 --enable-armv5te) _armv5te=yes ;;
1169 --disable-armv5te) _armv5te=no ;;
1170 --enable-armv6) _armv6=yes ;;
1171 --disable-armv6) _armv6=no ;;
1172 --enable-armv6t2) _armv6t2=yes ;;
1173 --disable-armv6t2) _armv6t2=no ;;
1174 --enable-armvfp) _armvfp=yes ;;
1175 --disable-armvfp) _armvfp=no ;;
1176 --enable-neon) neon=yes ;;
1177 --disable-neon) neon=no ;;
1178 --enable-iwmmxt) _iwmmxt=yes ;;
1179 --disable-iwmmxt) _iwmmxt=no ;;
1180 --enable-mmx) _mmx=yes ;;
1181 --disable-mmx) # 3Dnow! and MMX2 require MMX
1182 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1185 echo "Unknown parameter: $ac_option" >&2
1186 exit 1
1189 esac
1190 done
1192 # Atmos: moved this here, to be correct, if --prefix is specified
1193 test -z "$_bindir" && _bindir="$_prefix/bin"
1194 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1195 test -z "$_mandir" && _mandir="$_prefix/share/man"
1196 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1197 test -z "$_libdir" && _libdir="$_prefix/lib"
1198 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1200 # Determine our OS name and CPU architecture
1201 if test -z "$_target" ; then
1202 # OS name
1203 system_name=$(uname -s 2>&1)
1204 case "$system_name" in
1205 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1207 Haiku)
1208 system_name=BeOS
1210 IRIX*)
1211 system_name=IRIX
1213 GNU/kFreeBSD)
1214 system_name=FreeBSD
1216 HP-UX*)
1217 system_name=HP-UX
1219 [cC][yY][gG][wW][iI][nN]*)
1220 system_name=CYGWIN
1222 MINGW32*)
1223 system_name=MINGW32
1225 OS/2*)
1226 system_name=OS/2
1229 system_name="$system_name-UNKNOWN"
1231 esac
1234 # host's CPU/instruction set
1235 host_arch=$(uname -p 2>&1)
1236 case "$host_arch" in
1237 i386|sparc|ppc|alpha|arm|mips|vax)
1239 powerpc) # Darwin returns 'powerpc'
1240 host_arch=ppc
1242 *) # uname -p on Linux returns 'unknown' for the processor type,
1243 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1245 # Maybe uname -m (machine hardware name) returns something we
1246 # recognize.
1248 # x86/x86pc is used by QNX
1249 case "$(uname -m 2>&1)" in
1250 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 ;;
1251 ia64) host_arch=ia64 ;;
1252 macppc|ppc) host_arch=ppc ;;
1253 ppc64) host_arch=ppc64 ;;
1254 alpha) host_arch=alpha ;;
1255 sparc) host_arch=sparc ;;
1256 sparc64) host_arch=sparc64 ;;
1257 parisc*|hppa*|9000*) host_arch=hppa ;;
1258 arm*|zaurus|cats) host_arch=arm ;;
1259 sh3|sh4|sh4a) host_arch=sh ;;
1260 s390) host_arch=s390 ;;
1261 s390x) host_arch=s390x ;;
1262 *mips*) host_arch=mips ;;
1263 vax) host_arch=vax ;;
1264 xtensa*) host_arch=xtensa ;;
1265 *) host_arch=UNKNOWN ;;
1266 esac
1268 esac
1269 else # if test -z "$_target"
1270 system_name=$(echo $_target | cut -d '-' -f 2)
1271 case "$(echo $system_name | tr A-Z a-z)" in
1272 linux) system_name=Linux ;;
1273 freebsd) system_name=FreeBSD ;;
1274 gnu/kfreebsd) system_name=FreeBSD ;;
1275 netbsd) system_name=NetBSD ;;
1276 bsd/os) system_name=BSD/OS ;;
1277 openbsd) system_name=OpenBSD ;;
1278 dragonfly) system_name=DragonFly ;;
1279 sunos) system_name=SunOS ;;
1280 qnx) system_name=QNX ;;
1281 morphos) system_name=MorphOS ;;
1282 amigaos) system_name=AmigaOS ;;
1283 mingw32*) system_name=MINGW32 ;;
1284 esac
1285 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1286 host_arch=$(echo $_target | cut -d '-' -f 1)
1287 if test $(echo $host_arch) != "x86_64" ; then
1288 host_arch=$(echo $host_arch | tr '_' '-')
1292 extra_cflags="-I. $extra_cflags"
1293 _timer=timer-linux.c
1294 _getch=getch2.c
1295 if freebsd ; then
1296 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1297 extra_cflags="$extra_cflags -I/usr/local/include"
1300 if netbsd || dragonfly ; then
1301 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1302 extra_cflags="$extra_cflags -I/usr/pkg/include"
1305 if darwin; then
1306 extra_cflags="-mdynamic-no-pic $extra_cflags"
1307 if test "$(basename $_cc)" != "clang" ; then
1308 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1310 _timer=timer-darwin.c
1313 if aix ; then
1314 extra_ldflags="$extra_ldflags -lC"
1317 if irix ; then
1318 _ranlib='ar -r'
1319 elif linux ; then
1320 _ranlib='true'
1323 if win32 ; then
1324 _exesuf=".exe"
1325 extra_cflags="$extra_cflags -fno-common"
1326 # -lwinmm is always needed for osdep/timer-win2.c
1327 extra_ldflags="$extra_ldflags -lwinmm"
1328 _pe_executable=yes
1329 _timer=timer-win2.c
1330 _priority=yes
1331 def_dos_paths="#define HAVE_DOS_PATHS 1"
1332 def_priority="#define CONFIG_PRIORITY 1"
1335 if mingw32 ; then
1336 _getch=getch2-win.c
1337 need_shmem=no
1340 if amigaos ; then
1341 _select=no
1342 _sighandler=no
1343 _stream_cache=no
1344 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1345 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1348 if qnx ; then
1349 extra_ldflags="$extra_ldflags -lph"
1352 if os2 ; then
1353 _exesuf=".exe"
1354 _getch=getch2-os2.c
1355 need_shmem=no
1356 _priority=yes
1357 def_dos_paths="#define HAVE_DOS_PATHS 1"
1358 def_priority="#define CONFIG_PRIORITY 1"
1361 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1362 test "$tmpdir" && break
1363 done
1365 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1366 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1368 TMPLOG="config.log"
1369 TMPC="$mplayer_tmpdir/tmp.c"
1370 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1371 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1372 TMPH="$mplayer_tmpdir/tmp.h"
1373 TMPS="$mplayer_tmpdir/tmp.S"
1375 rm -f "$TMPLOG"
1376 echo configuration: $configuration > "$TMPLOG"
1377 echo >> "$TMPLOG"
1380 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1381 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1385 # Checking CC version...
1386 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1387 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1388 echocheck "$_cc version"
1389 cc_vendor=intel
1390 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1391 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1392 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1393 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1394 # TODO verify older icc/ecc compatibility
1395 case $cc_version in
1397 cc_version="v. ?.??, bad"
1398 cc_fail=yes
1400 10.1|11.0|11.1)
1401 cc_version="$cc_version, ok"
1404 cc_version="$cc_version, bad"
1405 cc_fail=yes
1407 esac
1408 echores "$cc_version"
1409 else
1410 for _cc in "$_cc" gcc cc ; do
1411 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1412 if test "$cc_name_tmp" = "gcc"; then
1413 cc_name=$cc_name_tmp
1414 echocheck "$_cc version"
1415 cc_vendor=gnu
1416 cc_version=$($_cc -dumpversion 2>&1)
1417 case $cc_version in
1418 2.96*)
1419 cc_fail=yes
1422 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1423 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1424 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1426 esac
1427 echores "$cc_version"
1428 break
1430 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1431 if test "$cc_name_tmp" = "clang"; then
1432 echocheck "$_cc version"
1433 cc_vendor=clang
1434 cc_version=$($_cc -dumpversion 2>&1)
1435 res_comment="experimental support only"
1436 echores "clang $cc_version"
1437 break
1439 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1440 if test "$cc_name_tmp" = "Sun C"; then
1441 echocheck "$_cc version"
1442 cc_vendor=sun
1443 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1444 res_comment="experimental support only"
1445 echores "Sun C $cc_version"
1446 break
1448 done
1449 fi # icc
1450 test "$cc_fail" = yes && die "unsupported compiler version"
1452 echocheck "working compiler"
1453 cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
1454 echo "yes"
1456 if test -z "$_target" && x86 ; then
1457 cat > $TMPC << EOF
1458 int main(void) {
1459 int test[(int)sizeof(char *)-7];
1460 return 0;
1463 cc_check && host_arch=x86_64 || host_arch=i386
1466 echo "Detected operating system: $system_name"
1467 echo "Detected host architecture: $host_arch"
1469 echocheck "cross compilation"
1470 if test $_cross_compile = auto ; then
1471 _cross_compile=yes
1472 cflag_check "" && "$TMPEXE" && _cross_compile=no
1474 echores $_cross_compile
1476 if test $_cross_compile = yes; then
1477 tmp_run() {
1478 return 0
1480 test "$_host_cc" || _host_cc=cc
1483 echocheck "host cc"
1484 test "$_host_cc" || _host_cc=$_cc
1485 echores $_host_cc
1487 # ---
1489 # now that we know what compiler should be used for compilation, try to find
1490 # out which assembler is used by the $_cc compiler
1491 if test "$_as" = auto ; then
1492 _as=$($_cc -print-prog-name=as)
1493 test -z "$_as" && _as=as
1496 if test "$_nm" = auto ; then
1497 _nm=$($_cc -print-prog-name=nm)
1498 test -z "$_nm" && _nm=nm
1501 # XXX: this should be ok..
1502 _cpuinfo="echo"
1504 if test "$_runtime_cpudetection" = no ; then
1506 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1507 # FIXME: Remove the cygwin check once AMD CPUs are supported
1508 if test -r /proc/cpuinfo && ! cygwin; then
1509 # Linux with /proc mounted, extract CPU information from it
1510 _cpuinfo="cat /proc/cpuinfo"
1511 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1512 # FreeBSD with Linux emulation /proc mounted,
1513 # extract CPU information from it
1514 # Don't use it on x86 though, it never reports 3Dnow
1515 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1516 elif darwin && ! x86 ; then
1517 # use hostinfo on Darwin
1518 _cpuinfo="hostinfo"
1519 elif aix; then
1520 # use 'lsattr' on AIX
1521 _cpuinfo="lsattr -E -l proc0 -a type"
1522 elif x86; then
1523 # all other OSes try to extract CPU information from a small helper
1524 # program cpuinfo instead
1525 $_cc -o cpuinfo$_exesuf cpuinfo.c
1526 _cpuinfo="./cpuinfo$_exesuf"
1529 if x86 ; then
1530 # gather more CPU information
1531 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1532 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1533 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1534 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1535 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1537 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1539 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1540 -e s/xmm/sse/ -e s/kni/sse/)
1542 for ext in $pparam ; do
1543 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1544 done
1546 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1547 test $_sse = kernel_check && _mmxext=kernel_check
1549 echocheck "CPU vendor"
1550 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1552 echocheck "CPU type"
1553 echores "$pname"
1556 fi # test "$_runtime_cpudetection" = no
1558 if x86 && test "$_runtime_cpudetection" = no ; then
1559 extcheck() {
1560 if test "$1" = kernel_check ; then
1561 echocheck "kernel support of $2"
1562 cat > $TMPC <<EOF
1563 #include <stdlib.h>
1564 #include <signal.h>
1565 static void catch(int sig) { exit(1); }
1566 int main(void) {
1567 signal(SIGILL, catch);
1568 __asm__ volatile ("$3":::"memory"); return 0;
1572 if cc_check && tmp_run ; then
1573 eval _$2=yes
1574 echores "yes"
1575 _optimizing="$_optimizing $2"
1576 return 0
1577 else
1578 eval _$2=no
1579 echores "failed"
1580 echo "It seems that your kernel does not correctly support $2."
1581 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1582 return 1
1585 return 0
1588 extcheck $_mmx "mmx" "emms"
1589 extcheck $_mmxext "mmxext" "sfence"
1590 extcheck $_3dnow "3dnow" "femms"
1591 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1592 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1593 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1594 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1595 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1597 echocheck "mtrr support"
1598 if test "$_mtrr" = kernel_check ; then
1599 _mtrr="yes"
1600 _optimizing="$_optimizing mtrr"
1602 echores "$_mtrr"
1604 if test "$_gcc3_ext" != ""; then
1605 # if we had to disable sse/sse2 because the active kernel does not
1606 # support this instruction set extension, we also have to tell
1607 # gcc3 to not generate sse/sse2 instructions for normal C code
1608 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1614 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1615 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1616 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1617 subarch_all='X86_32 X86_64 PPC64'
1618 case "$host_arch" in
1619 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1620 arch='x86'
1621 subarch='x86_32'
1622 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1623 iproc=486
1624 proc=i486
1627 if test "$_runtime_cpudetection" = no ; then
1628 case "$pvendor" in
1629 AuthenticAMD)
1630 case "$pfamily" in
1631 3) proc=i386 iproc=386 ;;
1632 4) proc=i486 iproc=486 ;;
1633 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1634 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1635 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1636 proc=k6-3
1637 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1638 proc=geode
1639 elif test "$pmodel" -ge 8; then
1640 proc=k6-2
1641 elif test "$pmodel" -ge 6; then
1642 proc=k6
1643 else
1644 proc=i586
1647 6) iproc=686
1648 # It's a bit difficult to determine the correct type of Family 6
1649 # AMD CPUs just from their signature. Instead, we check directly
1650 # whether it supports SSE.
1651 if test "$_sse" = yes; then
1652 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1653 proc=athlon-xp
1654 else
1655 # Again, gcc treats athlon and athlon-tbird similarly.
1656 proc=athlon
1659 15) iproc=686
1660 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1661 # caught and remedied in the optimization tests below.
1662 proc=k8
1665 *) proc=amdfam10 iproc=686
1666 test $_fast_clz = "auto" && _fast_clz=yes
1668 esac
1670 GenuineIntel)
1671 case "$pfamily" in
1672 3) proc=i386 iproc=386 ;;
1673 4) proc=i486 iproc=486 ;;
1674 5) iproc=586
1675 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1676 proc=pentium-mmx # 4 is desktop, 8 is mobile
1677 else
1678 proc=i586
1681 6) iproc=686
1682 if test "$pmodel" -ge 15; then
1683 proc=core2
1684 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1685 proc=pentium-m
1686 elif test "$pmodel" -ge 7; then
1687 proc=pentium3
1688 elif test "$pmodel" -ge 3; then
1689 proc=pentium2
1690 else
1691 proc=i686
1693 test $_fast_clz = "auto" && _fast_clz=yes
1695 15) iproc=686
1696 # A nocona in 32-bit mode has no more capabilities than a prescott.
1697 if test "$pmodel" -ge 3; then
1698 proc=prescott
1699 else
1700 proc=pentium4
1701 test $_fast_clz = "auto" && _fast_clz=yes
1703 test $_fast_cmov = "auto" && _fast_cmov=no
1705 *) proc=prescott iproc=686 ;;
1706 esac
1708 CentaurHauls)
1709 case "$pfamily" in
1710 5) iproc=586
1711 if test "$pmodel" -ge 8; then
1712 proc=winchip2
1713 elif test "$pmodel" -ge 4; then
1714 proc=winchip-c6
1715 else
1716 proc=i586
1719 6) iproc=686
1720 if test "$pmodel" -ge 9; then
1721 proc=c3-2
1722 else
1723 proc=c3
1724 iproc=586
1727 *) proc=i686 iproc=i686 ;;
1728 esac
1730 unknown)
1731 case "$pfamily" in
1732 3) proc=i386 iproc=386 ;;
1733 4) proc=i486 iproc=486 ;;
1734 *) proc=i586 iproc=586 ;;
1735 esac
1738 proc=i586 iproc=586 ;;
1739 esac
1740 test $_fast_clz = "auto" && _fast_clz=no
1741 fi # test "$_runtime_cpudetection" = no
1744 # check that gcc supports our CPU, if not, fall back to earlier ones
1745 # LGB: check -mcpu and -march swithing step by step with enabling
1746 # to fall back till 386.
1748 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1750 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1751 cpuopt=-mtune
1752 else
1753 cpuopt=-mcpu
1756 echocheck "GCC & CPU optimization abilities"
1757 if test "$_runtime_cpudetection" = no ; then
1758 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1759 cflag_check -march=native && proc=native
1761 if test "$proc" = "amdfam10"; then
1762 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1764 if test "$proc" = "k8"; then
1765 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1767 if test "$proc" = "athlon-xp"; then
1768 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1770 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1771 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1773 if test "$proc" = "k6" || test "$proc" = "c3"; then
1774 if ! cflag_check -march=$proc $cpuopt=$proc; then
1775 if cflag_check -march=i586 $cpuopt=i686; then
1776 proc=i586-i686
1777 else
1778 proc=i586
1782 if test "$proc" = "prescott" ; then
1783 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1785 if test "$proc" = "core2" ; then
1786 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1788 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
1789 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1791 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1792 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1794 if test "$proc" = "i586"; then
1795 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1797 if test "$proc" = "i486" ; then
1798 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1800 if test "$proc" = "i386" ; then
1801 cflag_check -march=$proc $cpuopt=$proc || proc=error
1803 if test "$proc" = "error" ; then
1804 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1805 _mcpu=""
1806 _march=""
1807 _optimizing=""
1808 elif test "$proc" = "i586-i686"; then
1809 _march="-march=i586"
1810 _mcpu="$cpuopt=i686"
1811 _optimizing="$proc"
1812 else
1813 _march="-march=$proc"
1814 _mcpu="$cpuopt=$proc"
1815 _optimizing="$proc"
1817 else # if test "$_runtime_cpudetection" = no
1818 _mcpu="$cpuopt=generic"
1819 # at least i486 required, for bswap instruction
1820 _march="-march=i486"
1821 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1822 cflag_check $_mcpu || _mcpu=""
1823 cflag_check $_march $_mcpu || _march=""
1826 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1827 ## autodetected mcpu/march parameters
1828 if test "$_target" ; then
1829 # TODO: it may be a good idea to check GCC and fall back in all cases
1830 if test "$host_arch" = "i586-i686"; then
1831 _march="-march=i586"
1832 _mcpu="$cpuopt=i686"
1833 else
1834 _march="-march=$host_arch"
1835 _mcpu="$cpuopt=$host_arch"
1838 proc="$host_arch"
1840 case "$proc" in
1841 i386) iproc=386 ;;
1842 i486) iproc=486 ;;
1843 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1844 i686|athlon*|pentium*) iproc=686 ;;
1845 *) iproc=586 ;;
1846 esac
1849 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1850 _fast_cmov="yes"
1851 else
1852 _fast_cmov="no"
1854 test $_fast_clz = "auto" && _fast_clz=yes
1856 echores "$proc"
1859 ia64)
1860 arch='ia64'
1861 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1862 iproc='ia64'
1865 x86_64|amd64)
1866 arch='x86'
1867 subarch='x86_64'
1868 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1869 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1870 iproc='x86_64'
1872 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1873 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1874 cpuopt=-mtune
1875 else
1876 cpuopt=-mcpu
1878 if test "$_runtime_cpudetection" = no ; then
1879 case "$pvendor" in
1880 AuthenticAMD)
1881 case "$pfamily" in
1882 15) proc=k8
1883 test $_fast_clz = "auto" && _fast_clz=no
1885 *) proc=amdfam10;;
1886 esac
1888 GenuineIntel)
1889 case "$pfamily" in
1890 6) proc=core2;;
1892 # 64-bit prescotts exist, but as far as GCC is concerned they
1893 # have the same capabilities as a nocona.
1894 proc=nocona
1895 test $_fast_cmov = "auto" && _fast_cmov=no
1896 test $_fast_clz = "auto" && _fast_clz=no
1898 esac
1901 proc=error;;
1902 esac
1903 fi # test "$_runtime_cpudetection" = no
1905 echocheck "GCC & CPU optimization abilities"
1906 # This is a stripped-down version of the i386 fallback.
1907 if test "$_runtime_cpudetection" = no ; then
1908 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1909 cflag_check -march=native && proc=native
1911 # --- AMD processors ---
1912 if test "$proc" = "amdfam10"; then
1913 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1915 if test "$proc" = "k8"; then
1916 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1918 # This will fail if gcc version < 3.3, which is ok because earlier
1919 # versions don't really support 64-bit on amd64.
1920 # Is this a valid assumption? -Corey
1921 if test "$proc" = "athlon-xp"; then
1922 cflag_check -march=$proc $cpuopt=$proc || proc=error
1924 # --- Intel processors ---
1925 if test "$proc" = "core2"; then
1926 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1928 if test "$proc" = "x86-64"; then
1929 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1931 if test "$proc" = "nocona"; then
1932 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1934 if test "$proc" = "pentium4"; then
1935 cflag_check -march=$proc $cpuopt=$proc || proc=error
1938 _march="-march=$proc"
1939 _mcpu="$cpuopt=$proc"
1940 if test "$proc" = "error" ; then
1941 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1942 _mcpu=""
1943 _march=""
1945 else # if test "$_runtime_cpudetection" = no
1946 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1947 _march="-march=x86-64"
1948 _mcpu="$cpuopt=generic"
1949 cflag_check $_mcpu || _mcpu="x86-64"
1950 cflag_check $_mcpu || _mcpu=""
1951 cflag_check $_march $_mcpu || _march=""
1954 _optimizing="$proc"
1955 test $_fast_cmov = "auto" && _fast_cmov=yes
1956 test $_fast_clz = "auto" && _fast_clz=yes
1958 echores "$proc"
1961 sparc|sparc64)
1962 arch='sparc'
1963 iproc='sparc'
1964 if test "$host_arch" = "sparc64" ; then
1965 _vis='yes'
1966 proc='ultrasparc'
1967 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1968 elif sunos ; then
1969 echocheck "CPU type"
1970 karch=$(uname -m)
1971 case "$(echo $karch)" in
1972 sun4) proc=v7 ;;
1973 sun4c) proc=v7 ;;
1974 sun4d) proc=v8 ;;
1975 sun4m) proc=v8 ;;
1976 sun4u) proc=ultrasparc _vis='yes' ;;
1977 sun4v) proc=v9 ;;
1978 *) proc=v8 ;;
1979 esac
1980 echores "$proc"
1981 else
1982 proc=v8
1984 _mcpu="-mcpu=$proc"
1985 _optimizing="$proc"
1988 arm*)
1989 arch='arm'
1990 iproc='arm'
1993 avr32)
1994 arch='avr32'
1995 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1996 iproc='avr32'
1997 test $_fast_clz = "auto" && _fast_clz=yes
2000 sh|sh4)
2001 arch='sh4'
2002 iproc='sh4'
2005 ppc|ppc64|powerpc|powerpc64)
2006 arch='ppc'
2007 def_dcbzl='#define HAVE_DCBZL 0'
2008 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2009 iproc='ppc'
2011 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2012 subarch='ppc64'
2013 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2015 echocheck "CPU type"
2016 case $system_name in
2017 Linux)
2018 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2019 if test -n "$($_cpuinfo | grep altivec)"; then
2020 test $_altivec = auto && _altivec=yes
2023 Darwin)
2024 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2025 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2026 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2027 test $_altivec = auto && _altivec=yes
2030 NetBSD)
2031 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2032 case $cc_version in
2033 2*|3.0*|3.1*|3.2*|3.3*)
2036 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2037 test $_altivec = auto && _altivec=yes
2040 esac
2042 AIX)
2043 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2045 esac
2046 if test "$_altivec" = yes; then
2047 echores "$proc altivec"
2048 else
2049 _altivec=no
2050 echores "$proc"
2053 echocheck "GCC & CPU optimization abilities"
2055 if test -n "$proc"; then
2056 case "$proc" in
2057 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2058 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2059 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2060 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2061 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2062 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2063 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2064 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2065 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2066 *) ;;
2067 esac
2068 # gcc 3.1(.1) and up supports 7400 and 7450
2069 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2070 case "$proc" in
2071 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2072 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2073 *) ;;
2074 esac
2076 # gcc 3.2 and up supports 970
2077 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2078 case "$proc" in
2079 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2080 def_dcbzl='#define HAVE_DCBZL 1' ;;
2081 *) ;;
2082 esac
2084 # gcc 3.3 and up supports POWER4
2085 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2086 case "$proc" in
2087 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2088 *) ;;
2089 esac
2091 # gcc 3.4 and up supports 440*
2092 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2093 case "$proc" in
2094 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2095 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2096 *) ;;
2097 esac
2099 # gcc 4.0 and up supports POWER5
2100 if test "$_cc_major" -ge "4"; then
2101 case "$proc" in
2102 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2103 *) ;;
2104 esac
2108 if test -n "$_mcpu"; then
2109 _optimizing=$(echo $_mcpu | cut -c 8-)
2110 echores "$_optimizing"
2111 else
2112 echores "none"
2115 test $_fast_clz = "auto" && _fast_clz=yes
2119 alpha*)
2120 arch='alpha'
2121 iproc='alpha'
2122 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2124 echocheck "CPU type"
2125 cat > $TMPC << EOF
2126 int main(void) {
2127 unsigned long ver, mask;
2128 __asm__ ("implver %0" : "=r" (ver));
2129 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2130 printf("%ld-%x\n", ver, ~mask);
2131 return 0;
2134 $_cc -o "$TMPEXE" "$TMPC"
2135 case $("$TMPEXE") in
2137 0-0) proc="ev4"; _mvi="0";;
2138 1-0) proc="ev5"; _mvi="0";;
2139 1-1) proc="ev56"; _mvi="0";;
2140 1-101) proc="pca56"; _mvi="1";;
2141 2-303) proc="ev6"; _mvi="1";;
2142 2-307) proc="ev67"; _mvi="1";;
2143 2-1307) proc="ev68"; _mvi="1";;
2144 esac
2145 echores "$proc"
2147 echocheck "GCC & CPU optimization abilities"
2148 if test "$proc" = "ev68" ; then
2149 cc_check -mcpu=$proc || proc=ev67
2151 if test "$proc" = "ev67" ; then
2152 cc_check -mcpu=$proc || proc=ev6
2154 _mcpu="-mcpu=$proc"
2155 echores "$proc"
2157 test $_fast_clz = "auto" && _fast_clz=yes
2159 _optimizing="$proc"
2162 mips*)
2163 arch='mips'
2164 iproc='mips'
2166 if irix ; then
2167 echocheck "CPU type"
2168 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2169 case "$(echo $proc)" in
2170 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2171 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2172 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2173 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2174 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2175 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2176 esac
2177 # gcc < 3.x does not support -mtune.
2178 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2179 _mcpu=''
2181 echores "$proc"
2184 test $_fast_clz = "auto" && _fast_clz=yes
2188 hppa)
2189 arch='pa_risc'
2190 iproc='PA-RISC'
2193 s390)
2194 arch='s390'
2195 iproc='390'
2198 s390x)
2199 arch='s390x'
2200 iproc='390x'
2203 vax)
2204 arch='vax'
2205 iproc='vax'
2208 xtensa)
2209 arch='xtensa'
2210 iproc='xtensa'
2213 generic)
2214 arch='generic'
2218 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2219 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2220 die "unsupported architecture $host_arch"
2222 esac # case "$host_arch" in
2224 if test "$_runtime_cpudetection" = yes ; then
2225 if x86 ; then
2226 test "$_cmov" != no && _cmov=yes
2227 x86_32 && _cmov=no
2228 test "$_mmx" != no && _mmx=yes
2229 test "$_3dnow" != no && _3dnow=yes
2230 test "$_3dnowext" != no && _3dnowext=yes
2231 test "$_mmxext" != no && _mmxext=yes
2232 test "$_sse" != no && _sse=yes
2233 test "$_sse2" != no && _sse2=yes
2234 test "$_ssse3" != no && _ssse3=yes
2235 test "$_mtrr" != no && _mtrr=yes
2237 if ppc; then
2238 _altivec=yes
2243 # endian testing
2244 echocheck "byte order"
2245 if test "$_big_endian" = auto ; then
2246 cat > $TMPC <<EOF
2247 short ascii_name[] = {
2248 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2249 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2250 int main(void) { return (long)ascii_name; }
2252 if cc_check ; then
2253 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2254 _big_endian=yes
2255 else
2256 _big_endian=no
2258 else
2259 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2262 if test "$_big_endian" = yes ; then
2263 _byte_order='big-endian'
2264 def_words_endian='#define WORDS_BIGENDIAN 1'
2265 def_bigendian='#define HAVE_BIGENDIAN 1'
2266 else
2267 _byte_order='little-endian'
2268 def_words_endian='#undef WORDS_BIGENDIAN'
2269 def_bigendian='#define HAVE_BIGENDIAN 0'
2271 echores "$_byte_order"
2274 echocheck "extern symbol prefix"
2275 cat > $TMPC << EOF
2276 int ff_extern;
2278 cc_check -c || die "Symbol mangling check failed."
2279 sym=$($_nm -P -g $TMPEXE)
2280 extern_prefix=${sym%%ff_extern*}
2281 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2282 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2283 echores $extern_prefix
2286 echocheck "assembler support of -pipe option"
2287 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2288 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2291 if darwin && test "$cc_vendor" = "gnu" ; then
2292 echocheck "GCC support of -mstackrealign"
2293 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2294 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2295 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2296 # wrong code with this flag, but this can be worked around by adding
2297 # -fno-unit-at-a-time as described in the blog post at
2298 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2299 cat > $TMPC << EOF
2300 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2301 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2303 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2304 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2305 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2306 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2307 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2310 # Checking for CFLAGS
2311 _install_strip="-s"
2312 if test "$_profile" != "" || test "$_debug" != "" ; then
2313 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2314 WARNFLAGS="-W -Wall"
2315 _install_strip=
2316 elif test -z "$CFLAGS" ; then
2317 if test "$cc_vendor" = "intel" ; then
2318 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2319 WARNFLAGS="-wd167 -wd556 -wd144"
2320 elif test "$cc_vendor" = "sun" ; then
2321 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2322 elif test "$cc_vendor" = "clang"; then
2323 CFLAGS="-O2 $_march $_pipe"
2324 elif test "$cc_vendor" != "gnu" ; then
2325 CFLAGS="-O2 $_march $_mcpu $_pipe"
2326 else
2327 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2328 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2329 extra_ldflags="$extra_ldflags -ffast-math"
2331 else
2332 warn_cflags=yes
2335 if test "$cc_vendor" = "gnu" ; then
2336 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2337 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2338 # that's the only variable specific to C now, and this option is not valid
2339 # for C++.
2340 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2341 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2342 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2343 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2344 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2345 else
2346 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2349 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2350 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2353 if test -n "$LDFLAGS" ; then
2354 extra_ldflags="$extra_ldflags $LDFLAGS"
2355 warn_cflags=yes
2356 elif test "$cc_vendor" = "intel" ; then
2357 extra_ldflags="$extra_ldflags -i-static"
2359 if test -n "$CPPFLAGS" ; then
2360 extra_cflags="$extra_cflags $CPPFLAGS"
2361 warn_cflags=yes
2366 if x86_32 ; then
2367 # Checking assembler (_as) compatibility...
2368 # Added workaround for older as that reads from stdin by default - atmos
2369 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2370 echocheck "assembler ($_as $as_version)"
2372 _pref_as_version='2.9.1'
2373 echo 'nop' > $TMPS
2374 if test "$_mmx" = yes ; then
2375 echo 'emms' >> $TMPS
2377 if test "$_3dnow" = yes ; then
2378 _pref_as_version='2.10.1'
2379 echo 'femms' >> $TMPS
2381 if test "$_3dnowext" = yes ; then
2382 _pref_as_version='2.10.1'
2383 echo 'pswapd %mm0, %mm0' >> $TMPS
2385 if test "$_mmxext" = yes ; then
2386 _pref_as_version='2.10.1'
2387 echo 'movntq %mm0, (%eax)' >> $TMPS
2389 if test "$_sse" = yes ; then
2390 _pref_as_version='2.10.1'
2391 echo 'xorps %xmm0, %xmm0' >> $TMPS
2393 #if test "$_sse2" = yes ; then
2394 # _pref_as_version='2.11'
2395 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2397 if test "$_cmov" = yes ; then
2398 _pref_as_version='2.10.1'
2399 echo 'cmovb %eax, %ebx' >> $TMPS
2401 if test "$_ssse3" = yes ; then
2402 _pref_as_version='2.16.92'
2403 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2405 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2407 if test "$as_verc_fail" != yes ; then
2408 echores "ok"
2409 else
2410 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2411 echores "failed"
2412 die "obsolete binutils version"
2415 fi #if x86_32
2418 echocheck "PIC"
2419 pic=no
2420 cat > $TMPC << EOF
2421 int main(void) {
2422 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2423 #error PIC not enabled
2424 #endif
2425 return 0;
2428 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2429 echores $pic
2432 if x86 ; then
2434 echocheck ".align is a power of two"
2435 if test "$_asmalign_pot" = auto ; then
2436 _asmalign_pot=no
2437 inline_asm_check '".align 3"' && _asmalign_pot=yes
2439 if test "$_asmalign_pot" = "yes" ; then
2440 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2441 else
2442 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2444 echores $_asmalign_pot
2447 echocheck "ebx availability"
2448 ebx_available=no
2449 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2450 cat > $TMPC << EOF
2451 int main(void) {
2452 int x;
2453 __asm__ volatile(
2454 "xor %0, %0"
2455 :"=b"(x)
2456 // just adding ebx to clobber list seems unreliable with some
2457 // compilers, e.g. Haiku's gcc 2.95
2459 // and the above check does not work for OSX 64 bit...
2460 __asm__ volatile("":::"%ebx");
2461 return 0;
2464 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2465 echores $ebx_available
2468 echocheck "yasm"
2469 if test -z "$YASMFLAGS" ; then
2470 if darwin ; then
2471 x86_64 && objformat="macho64" || objformat="macho"
2472 elif win32 ; then
2473 objformat="win32"
2474 else
2475 objformat="elf"
2477 # currently tested for Linux x86, x86_64
2478 YASMFLAGS="-f $objformat"
2479 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2480 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2481 case "$objformat" in
2482 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2483 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2484 esac
2485 else
2486 warn_cflags=yes
2489 echo "pabsw xmm0, xmm0" > $TMPS
2490 yasm_check || _yasm=""
2491 if test $_yasm ; then
2492 def_yasm='#define HAVE_YASM 1'
2493 have_yasm="yes"
2494 echores "$_yasm"
2495 else
2496 def_yasm='#define HAVE_YASM 0'
2497 have_yasm="no"
2498 echores "no"
2501 echocheck "bswap"
2502 def_bswap='#define HAVE_BSWAP 0'
2503 echo 'bswap %eax' > $TMPS
2504 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2505 echores "$bswap"
2506 fi #if x86
2509 #FIXME: This should happen before the check for CFLAGS..
2510 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2511 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2513 # check if AltiVec is supported by the compiler, and how to enable it
2514 echocheck "GCC AltiVec flags"
2515 if $(cflag_check -maltivec -mabi=altivec) ; then
2516 _altivec_gcc_flags="-maltivec -mabi=altivec"
2517 # check if <altivec.h> should be included
2518 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2519 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2520 inc_altivec_h='#include <altivec.h>'
2521 else
2522 if $(cflag_check -faltivec) ; then
2523 _altivec_gcc_flags="-faltivec"
2524 else
2525 _altivec=no
2526 _altivec_gcc_flags="none, AltiVec disabled"
2530 echores "$_altivec_gcc_flags"
2532 # check if the compiler supports braces for vector declarations
2533 cat > $TMPC << EOF
2534 $inc_altivec_h
2535 int main(void) { (vector int) {1}; return 0; }
2537 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2539 # Disable runtime cpudetection if we cannot generate AltiVec code or
2540 # AltiVec is disabled by the user.
2541 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2542 && _runtime_cpudetection=no
2544 # Show that we are optimizing for AltiVec (if enabled and supported).
2545 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2546 && _optimizing="$_optimizing altivec"
2548 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2549 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2552 if ppc ; then
2553 def_xform_asm='#define HAVE_XFORM_ASM 0'
2554 xform_asm=no
2555 echocheck "XFORM ASM support"
2556 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2557 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2558 echores "$xform_asm"
2561 if arm ; then
2562 echocheck "ARM pld instruction"
2563 pld=no
2564 inline_asm_check '"pld [r0]"' && pld=yes
2565 echores "$pld"
2567 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2568 if test $_armv5te = "auto" ; then
2569 _armv5te=no
2570 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2572 echores "$_armv5te"
2574 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2576 echocheck "ARMv6 (SIMD instructions)"
2577 if test $_armv6 = "auto" ; then
2578 _armv6=no
2579 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2581 echores "$_armv6"
2583 echocheck "ARMv6t2 (SIMD instructions)"
2584 if test $_armv6t2 = "auto" ; then
2585 _armv6t2=no
2586 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2588 echores "$_armv6t2"
2590 echocheck "ARM VFP"
2591 if test $_armvfp = "auto" ; then
2592 _armvfp=no
2593 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2595 echores "$_armvfp"
2597 echocheck "ARM NEON"
2598 if test $neon = "auto" ; then
2599 neon=no
2600 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2602 echores "$neon"
2604 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2605 if test $_iwmmxt = "auto" ; then
2606 _iwmmxt=no
2607 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2609 echores "$_iwmmxt"
2612 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'
2613 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2614 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2615 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2616 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2617 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2618 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2619 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2620 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2621 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2622 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2623 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2624 test "$pld" = yes && cpuexts="PLD $cpuexts"
2625 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2626 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2627 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2628 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2629 test "$neon" = yes && cpuexts="NEON $cpuexts"
2630 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2631 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2632 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2634 # Checking kernel version...
2635 if x86_32 && linux ; then
2636 _k_verc_problem=no
2637 kernel_version=$(uname -r 2>&1)
2638 echocheck "$system_name kernel version"
2639 case "$kernel_version" in
2640 '') kernel_version="?.??"; _k_verc_fail=yes;;
2641 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2642 _k_verc_problem=yes;;
2643 esac
2644 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2645 _k_verc_fail=yes
2647 if test "$_k_verc_fail" ; then
2648 echores "$kernel_version, fail"
2649 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2650 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2651 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2652 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2653 echo "2.2.x you must upgrade it to get SSE support!"
2654 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2655 else
2656 echores "$kernel_version, ok"
2660 ######################
2661 # MAIN TESTS GO HERE #
2662 ######################
2665 echocheck "-lposix"
2666 if cflag_check -lposix ; then
2667 extra_ldflags="$extra_ldflags -lposix"
2668 echores "yes"
2669 else
2670 echores "no"
2673 echocheck "-lm"
2674 if cflag_check -lm ; then
2675 _ld_lm="-lm"
2676 echores "yes"
2677 else
2678 _ld_lm=""
2679 echores "no"
2683 echocheck "langinfo"
2684 if test "$_langinfo" = auto ; then
2685 _langinfo=no
2686 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2688 if test "$_langinfo" = yes ; then
2689 def_langinfo='#define HAVE_LANGINFO 1'
2690 else
2691 def_langinfo='#undef HAVE_LANGINFO'
2693 echores "$_langinfo"
2696 echocheck "translation support"
2697 if test "$_translation" = yes; then
2698 def_translation="#define CONFIG_TRANSLATION 1"
2699 else
2700 def_translation="#undef CONFIG_TRANSLATION"
2702 echores "$_translation"
2704 echocheck "language"
2705 # Set preferred languages, "all" uses English as main language.
2706 test -z "$language" && language=$LINGUAS
2707 test -z "$language_doc" && language_doc=$language
2708 test -z "$language_man" && language_man=$language
2709 test -z "$language_msg" && language_msg=$language
2710 test -z "$language_msg" && language_msg="all"
2711 language_doc=$(echo $language_doc | tr , " ")
2712 language_man=$(echo $language_man | tr , " ")
2713 language_msg=$(echo $language_msg | tr , " ")
2715 test "$language_doc" = "all" && language_doc=$doc_lang_all
2716 test "$language_man" = "all" && language_man=$man_lang_all
2717 test "$language_msg" = "all" && language_msg=$msg_lang_all
2719 if test "$_translation" != yes ; then
2720 language_msg=""
2723 # Prune non-existing translations from language lists.
2724 # Set message translation to the first available language.
2725 # Fall back on English.
2726 for lang in $language_doc ; do
2727 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2728 done
2729 language_doc=$tmp_language_doc
2730 test -z "$language_doc" && language_doc=en
2732 for lang in $language_man ; do
2733 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2734 done
2735 language_man=$tmp_language_man
2736 test -z "$language_man" && language_man=en
2738 for lang in $language_msg ; do
2739 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2740 done
2741 language_msg=$tmp_language_msg
2743 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2746 echocheck "enable sighandler"
2747 if test "$_sighandler" = yes ; then
2748 def_sighandler='#define CONFIG_SIGHANDLER 1'
2749 else
2750 def_sighandler='#undef CONFIG_SIGHANDLER'
2752 echores "$_sighandler"
2754 echocheck "runtime cpudetection"
2755 if test "$_runtime_cpudetection" = yes ; then
2756 _optimizing="Runtime CPU-Detection enabled"
2757 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2758 else
2759 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2761 echores "$_runtime_cpudetection"
2764 echocheck "restrict keyword"
2765 for restrict_keyword in restrict __restrict __restrict__ ; do
2766 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2767 if cc_check; then
2768 def_restrict_keyword=$restrict_keyword
2769 break;
2771 done
2772 if [ -n "$def_restrict_keyword" ]; then
2773 echores "$def_restrict_keyword"
2774 else
2775 echores "none"
2777 # Avoid infinite recursion loop ("#define restrict restrict")
2778 if [ "$def_restrict_keyword" != "restrict" ]; then
2779 def_restrict_keyword="#define restrict $def_restrict_keyword"
2780 else
2781 def_restrict_keyword=""
2785 echocheck "__builtin_expect"
2786 # GCC branch prediction hint
2787 cat > $TMPC << EOF
2788 static int foo(int a) {
2789 a = __builtin_expect(a, 10);
2790 return a == 10 ? 0 : 1;
2792 int main(void) { return foo(10) && foo(0); }
2794 _builtin_expect=no
2795 cc_check && _builtin_expect=yes
2796 if test "$_builtin_expect" = yes ; then
2797 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2798 else
2799 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2801 echores "$_builtin_expect"
2804 echocheck "kstat"
2805 _kstat=no
2806 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2807 if test "$_kstat" = yes ; then
2808 def_kstat="#define HAVE_LIBKSTAT 1"
2809 extra_ldflags="$extra_ldflags -lkstat"
2810 else
2811 def_kstat="#undef HAVE_LIBKSTAT"
2813 echores "$_kstat"
2816 echocheck "posix4"
2817 # required for nanosleep on some systems
2818 _posix4=no
2819 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2820 if test "$_posix4" = yes ; then
2821 extra_ldflags="$extra_ldflags -lposix4"
2823 echores "$_posix4"
2825 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2826 echocheck $func
2827 eval _$func=no
2828 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2829 if eval test "x\$_$func" = "xyes"; then
2830 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2831 echores yes
2832 else
2833 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2834 echores no
2836 done
2839 echocheck "mkstemp"
2840 _mkstemp=no
2841 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2842 if test "$_mkstemp" = yes ; then
2843 def_mkstemp='#define HAVE_MKSTEMP 1'
2844 else
2845 def_mkstemp='#define HAVE_MKSTEMP 0'
2847 echores "$_mkstemp"
2850 echocheck "nanosleep"
2851 _nanosleep=no
2852 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2853 if test "$_nanosleep" = yes ; then
2854 def_nanosleep='#define HAVE_NANOSLEEP 1'
2855 else
2856 def_nanosleep='#undef HAVE_NANOSLEEP'
2858 echores "$_nanosleep"
2861 echocheck "socklib"
2862 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2863 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2864 cat > $TMPC << EOF
2865 #include <netdb.h>
2866 #include <sys/socket.h>
2867 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2869 _socklib=no
2870 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2871 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2872 done
2873 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2874 if test $_winsock2_h = auto ; then
2875 _winsock2_h=no
2876 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2878 test "$_ld_sock" && res_comment="using $_ld_sock"
2879 echores "$_socklib"
2882 if test $_winsock2_h = yes ; then
2883 _ld_sock="-lws2_32"
2884 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2885 else
2886 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2890 echocheck "arpa/inet.h"
2891 arpa_inet_h=no
2892 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2893 header_check arpa/inet.h && arpa_inet_h=yes &&
2894 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2895 echores "$arpa_inet_h"
2898 echocheck "inet_pton()"
2899 def_inet_pton='#define HAVE_INET_PTON 0'
2900 inet_pton=no
2901 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2902 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2903 done
2904 if test $inet_pton = yes ; then
2905 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2906 def_inet_pton='#define HAVE_INET_PTON 1'
2908 echores "$inet_pton"
2911 echocheck "inet_aton()"
2912 def_inet_aton='#define HAVE_INET_ATON 0'
2913 inet_aton=no
2914 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2915 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2916 done
2917 if test $inet_aton = yes ; then
2918 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2919 def_inet_aton='#define HAVE_INET_ATON 1'
2921 echores "$inet_aton"
2924 echocheck "socklen_t"
2925 _socklen_t=no
2926 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2927 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2928 done
2929 if test "$_socklen_t" = yes ; then
2930 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2931 else
2932 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2934 echores "$_socklen_t"
2937 echocheck "closesocket()"
2938 _closesocket=no
2939 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2940 if test "$_closesocket" = yes ; then
2941 def_closesocket='#define HAVE_CLOSESOCKET 1'
2942 else
2943 def_closesocket='#define HAVE_CLOSESOCKET 0'
2945 echores "$_closesocket"
2948 echocheck "networking"
2949 test $_winsock2_h = no && test $inet_pton = no &&
2950 test $inet_aton = no && networking=no
2951 if test "$networking" = yes ; then
2952 def_network='#define CONFIG_NETWORK 1'
2953 def_networking='#define CONFIG_NETWORKING 1'
2954 extra_ldflags="$extra_ldflags $_ld_sock"
2955 inputmodules="networking $inputmodules"
2956 else
2957 noinputmodules="networking $noinputmodules"
2958 def_network='#define CONFIG_NETWORK 0'
2959 def_networking='#undef CONFIG_NETWORKING'
2961 echores "$networking"
2964 echocheck "inet6"
2965 if test "$_inet6" = auto ; then
2966 cat > $TMPC << EOF
2967 #include <sys/types.h>
2968 #if !defined(_WIN32)
2969 #include <sys/socket.h>
2970 #include <netinet/in.h>
2971 #else
2972 #include <ws2tcpip.h>
2973 #endif
2974 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2976 _inet6=no
2977 if cc_check $_ld_sock ; then
2978 _inet6=yes
2981 if test "$_inet6" = yes ; then
2982 def_inet6='#define HAVE_AF_INET6 1'
2983 else
2984 def_inet6='#undef HAVE_AF_INET6'
2986 echores "$_inet6"
2989 echocheck "gethostbyname2"
2990 if test "$_gethostbyname2" = auto ; then
2991 cat > $TMPC << EOF
2992 #include <sys/types.h>
2993 #include <sys/socket.h>
2994 #include <netdb.h>
2995 int main(void) { gethostbyname2("", AF_INET); return 0; }
2997 _gethostbyname2=no
2998 if cc_check ; then
2999 _gethostbyname2=yes
3002 if test "$_gethostbyname2" = yes ; then
3003 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3004 else
3005 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3007 echores "$_gethostbyname2"
3010 echocheck "inttypes.h (required)"
3011 _inttypes=no
3012 header_check inttypes.h && _inttypes=yes
3013 echores "$_inttypes"
3015 if test "$_inttypes" = no ; then
3016 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3017 header_check sys/bitypes.h && _inttypes=yes
3018 if test "$_inttypes" = yes ; then
3019 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."
3020 else
3021 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3026 echocheck "malloc.h"
3027 _malloc=no
3028 header_check malloc.h && _malloc=yes
3029 if test "$_malloc" = yes ; then
3030 def_malloc_h='#define HAVE_MALLOC_H 1'
3031 else
3032 def_malloc_h='#define HAVE_MALLOC_H 0'
3034 echores "$_malloc"
3037 echocheck "memalign()"
3038 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3039 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3040 _memalign=no
3041 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3042 if test "$_memalign" = yes ; then
3043 def_memalign='#define HAVE_MEMALIGN 1'
3044 else
3045 def_memalign='#define HAVE_MEMALIGN 0'
3046 def_map_memalign='#define memalign(a, b) malloc(b)'
3047 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3049 echores "$_memalign"
3052 echocheck "posix_memalign()"
3053 posix_memalign=no
3054 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3055 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3056 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3057 echores "$posix_memalign"
3060 echocheck "alloca.h"
3061 _alloca=no
3062 statement_check alloca.h 'alloca(0)' && _alloca=yes
3063 if cc_check ; then
3064 def_alloca_h='#define HAVE_ALLOCA_H 1'
3065 else
3066 def_alloca_h='#undef HAVE_ALLOCA_H'
3068 echores "$_alloca"
3071 echocheck "fastmemcpy"
3072 if test "$_fastmemcpy" = yes ; then
3073 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3074 else
3075 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3077 echores "$_fastmemcpy"
3080 echocheck "mman.h"
3081 _mman=no
3082 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3083 if test "$_mman" = yes ; then
3084 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3085 else
3086 def_mman_h='#undef HAVE_SYS_MMAN_H'
3087 os2 && need_mmap=yes
3089 echores "$_mman"
3091 _mman_has_map_failed=no
3092 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3093 if test "$_mman_has_map_failed" = yes ; then
3094 def_mman_has_map_failed=''
3095 else
3096 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3099 echocheck "dynamic loader"
3100 _dl=no
3101 for _ld_tmp in "" "-ldl"; do
3102 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3103 done
3104 if test "$_dl" = yes ; then
3105 def_dl='#define HAVE_LIBDL 1'
3106 else
3107 def_dl='#undef HAVE_LIBDL'
3109 echores "$_dl"
3112 echocheck "dynamic a/v plugins support"
3113 if test "$_dl" = no ; then
3114 _dynamic_plugins=no
3116 if test "$_dynamic_plugins" = yes ; then
3117 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3118 else
3119 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3121 echores "$_dynamic_plugins"
3124 def_threads='#define HAVE_THREADS 0'
3126 echocheck "pthread"
3127 if linux ; then
3128 THREAD_CFLAGS=-D_REENTRANT
3129 elif freebsd || netbsd || openbsd || bsdos ; then
3130 THREAD_CFLAGS=-D_THREAD_SAFE
3132 if test "$_pthreads" = auto ; then
3133 cat > $TMPC << EOF
3134 #include <pthread.h>
3135 static void *func(void *arg) { return arg; }
3136 int main(void) {
3137 pthread_t tid;
3138 #ifdef PTW32_STATIC_LIB
3139 pthread_win32_process_attach_np();
3140 pthread_win32_thread_attach_np();
3141 #endif
3142 return pthread_create (&tid, 0, func, 0) != 0;
3145 _pthreads=no
3146 if ! hpux ; then
3147 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3148 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3149 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3150 done
3151 if test "$_pthreads" = no && mingw32 ; then
3152 _ld_tmp="-lpthreadGC2 -lws2_32"
3153 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3157 if test "$_pthreads" = yes ; then
3158 test $_ld_pthread && res_comment="using $_ld_pthread"
3159 def_pthreads='#define HAVE_PTHREADS 1'
3160 def_threads='#define HAVE_THREADS 1'
3161 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3162 else
3163 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3164 def_pthreads='#undef HAVE_PTHREADS'
3165 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3166 mingw32 || _win32dll=no
3168 echores "$_pthreads"
3170 if cygwin ; then
3171 if test "$_pthreads" = yes ; then
3172 def_pthread_cache="#define PTHREAD_CACHE 1"
3173 else
3174 _stream_cache=no
3175 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3179 echocheck "w32threads"
3180 if test "$_pthreads" = yes ; then
3181 res_comment="using pthread instead"
3182 _w32threads=no
3184 if test "$_w32threads" = auto ; then
3185 _w32threads=no
3186 mingw32 && _w32threads=yes
3188 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3189 echores "$_w32threads"
3191 echocheck "rpath"
3192 if test "$_rpath" = yes ; then
3193 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3194 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3195 done
3196 extra_ldflags=$tmp
3198 echores "$_rpath"
3200 echocheck "iconv"
3201 if test "$_iconv" = auto ; then
3202 cat > $TMPC << EOF
3203 #include <stdio.h>
3204 #include <unistd.h>
3205 #include <iconv.h>
3206 #define INBUFSIZE 1024
3207 #define OUTBUFSIZE 4096
3209 char inbuffer[INBUFSIZE];
3210 char outbuffer[OUTBUFSIZE];
3212 int main(void) {
3213 size_t numread;
3214 iconv_t icdsc;
3215 char *tocode="UTF-8";
3216 char *fromcode="cp1250";
3217 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3218 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3219 char *iptr=inbuffer;
3220 char *optr=outbuffer;
3221 size_t inleft=numread;
3222 size_t outleft=OUTBUFSIZE;
3223 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3224 != (size_t)(-1)) {
3225 write(1, outbuffer, OUTBUFSIZE - outleft);
3228 if (iconv_close(icdsc) == -1)
3231 return 0;
3234 _iconv=no
3235 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3236 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3237 _iconv=yes && break
3238 done
3239 if test "$_iconv" != yes ; then
3240 die "Unable to find iconv which should be part of standard compilation environment. Aborting. If you really mean to compile without iconv support use --disable-iconv."
3243 if test "$_iconv" = yes ; then
3244 def_iconv='#define CONFIG_ICONV 1'
3245 else
3246 def_iconv='#undef CONFIG_ICONV'
3248 echores "$_iconv"
3251 echocheck "soundcard.h"
3252 _soundcard_h=no
3253 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3254 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3255 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3256 header_check $_soundcard_header && _soundcard_h=yes &&
3257 res_comment="$_soundcard_header" && break
3258 done
3260 if test "$_soundcard_h" = yes ; then
3261 if test $_soundcard_header = "sys/soundcard.h"; then
3262 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3263 else
3264 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3267 echores "$_soundcard_h"
3270 echocheck "sys/videoio.h"
3271 sys_videoio_h=no
3272 def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
3273 header_check sys/videoio.h && sys_videoio_h=yes &&
3274 def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
3275 echores "$sys_videoio_h"
3278 echocheck "sys/dvdio.h"
3279 _dvdio=no
3280 # FreeBSD 8.1 has broken dvdio.h
3281 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3282 if test "$_dvdio" = yes ; then
3283 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3284 else
3285 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3287 echores "$_dvdio"
3290 echocheck "sys/cdio.h"
3291 _cdio=no
3292 # at least OpenSolaris has a broken cdio.h
3293 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3294 if test "$_cdio" = yes ; then
3295 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3296 else
3297 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3299 echores "$_cdio"
3302 echocheck "linux/cdrom.h"
3303 _cdrom=no
3304 header_check linux/cdrom.h && _cdrom=yes
3305 if test "$_cdrom" = yes ; then
3306 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3307 else
3308 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3310 echores "$_cdrom"
3313 echocheck "dvd.h"
3314 _dvd=no
3315 header_check dvd.h && _dvd=yes
3316 if test "$_dvd" = yes ; then
3317 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3318 else
3319 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3321 echores "$_dvd"
3324 if bsdos; then
3325 echocheck "BSDI dvd.h"
3326 _bsdi_dvd=no
3327 header_check dvd.h && _bsdi_dvd=yes
3328 if test "$_bsdi_dvd" = yes ; then
3329 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3330 else
3331 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3333 echores "$_bsdi_dvd"
3334 fi #if bsdos
3337 if hpux; then
3338 # also used by AIX, but AIX does not support VCD and/or libdvdread
3339 echocheck "HP-UX SCSI header"
3340 _hpux_scsi_h=no
3341 header_check sys/scsi.h && _hpux_scsi_h=yes
3342 if test "$_hpux_scsi_h" = yes ; then
3343 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3344 else
3345 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3347 echores "$_hpux_scsi_h"
3348 fi #if hpux
3351 if sunos; then
3352 echocheck "userspace SCSI headers (Solaris)"
3353 _sol_scsi_h=no
3354 header_check sys/scsi/scsi_types.h &&
3355 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3356 _sol_scsi_h=yes
3357 if test "$_sol_scsi_h" = yes ; then
3358 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3359 else
3360 def_sol_scsi_h='#undef SOLARIS_USCSI'
3362 echores "$_sol_scsi_h"
3363 fi #if sunos
3366 echocheck "termcap"
3367 if test "$_termcap" = auto ; then
3368 _termcap=no
3369 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3370 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3371 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3372 done
3374 if test "$_termcap" = yes ; then
3375 def_termcap='#define HAVE_TERMCAP 1'
3376 test $_ld_tmp && res_comment="using $_ld_tmp"
3377 else
3378 def_termcap='#undef HAVE_TERMCAP'
3380 echores "$_termcap"
3383 echocheck "termios"
3384 def_termios='#undef HAVE_TERMIOS'
3385 def_termios_h='#undef HAVE_TERMIOS_H'
3386 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3387 if test "$_termios" = auto ; then
3388 _termios=no
3389 for _termios_header in "termios.h" "sys/termios.h"; do
3390 header_check $_termios_header && _termios=yes &&
3391 res_comment="using $_termios_header" && break
3392 done
3395 if test "$_termios" = yes ; then
3396 def_termios='#define HAVE_TERMIOS 1'
3397 if test "$_termios_header" = "termios.h" ; then
3398 def_termios_h='#define HAVE_TERMIOS_H 1'
3399 else
3400 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3403 echores "$_termios"
3406 echocheck "shm"
3407 if test "$_shm" = auto ; then
3408 _shm=no
3409 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3411 if test "$_shm" = yes ; then
3412 def_shm='#define HAVE_SHM 1'
3413 else
3414 def_shm='#undef HAVE_SHM'
3416 echores "$_shm"
3419 echocheck "strsep()"
3420 _strsep=no
3421 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3422 if test "$_strsep" = yes ; then
3423 def_strsep='#define HAVE_STRSEP 1'
3424 need_strsep=no
3425 else
3426 def_strsep='#undef HAVE_STRSEP'
3427 need_strsep=yes
3429 echores "$_strsep"
3432 echocheck "vsscanf()"
3433 cat > $TMPC << EOF
3434 #define _ISOC99_SOURCE
3435 #include <stdarg.h>
3436 #include <stdio.h>
3437 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3439 _vsscanf=no
3440 cc_check && _vsscanf=yes
3441 if test "$_vsscanf" = yes ; then
3442 def_vsscanf='#define HAVE_VSSCANF 1'
3443 need_vsscanf=no
3444 else
3445 def_vsscanf='#undef HAVE_VSSCANF'
3446 need_vsscanf=yes
3448 echores "$_vsscanf"
3451 echocheck "swab()"
3452 _swab=no
3453 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' ||
3454 statement_check "string.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3455 if test "$_swab" = yes ; then
3456 def_swab='#define HAVE_SWAB 1'
3457 need_swab=no
3458 else
3459 def_swab='#undef HAVE_SWAB'
3460 need_swab=yes
3462 echores "$_swab"
3464 echocheck "POSIX select()"
3465 cat > $TMPC << EOF
3466 #include <stdio.h>
3467 #include <stdlib.h>
3468 #include <sys/types.h>
3469 #include <string.h>
3470 #include <sys/time.h>
3471 #include <unistd.h>
3472 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3474 _posix_select=no
3475 def_posix_select='#undef HAVE_POSIX_SELECT'
3476 #select() of kLIBC (OS/2) supports socket only
3477 ! os2 && cc_check && _posix_select=yes &&
3478 def_posix_select='#define HAVE_POSIX_SELECT 1'
3479 echores "$_posix_select"
3482 echocheck "audio select()"
3483 if test "$_select" = no ; then
3484 def_select='#undef HAVE_AUDIO_SELECT'
3485 elif test "$_select" = yes ; then
3486 def_select='#define HAVE_AUDIO_SELECT 1'
3488 echores "$_select"
3491 echocheck "gettimeofday()"
3492 _gettimeofday=no
3493 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3494 if test "$_gettimeofday" = yes ; then
3495 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3496 need_gettimeofday=no
3497 else
3498 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3499 need_gettimeofday=yes
3501 echores "$_gettimeofday"
3504 echocheck "glob()"
3505 _glob=no
3506 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3507 need_glob=no
3508 if test "$_glob" = yes ; then
3509 def_glob='#define HAVE_GLOB 1'
3510 else
3511 def_glob='#undef HAVE_GLOB'
3512 # HACK! need_glob currently enables compilation of a
3513 # win32-specific glob()-replacement.
3514 # Other OS neither need it nor can they use it (mf:// is disabled for them).
3515 win32 && need_glob=yes
3517 echores "$_glob"
3520 echocheck "setenv()"
3521 _setenv=no
3522 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3523 if test "$_setenv" = yes ; then
3524 def_setenv='#define HAVE_SETENV 1'
3525 need_setenv=no
3526 else
3527 def_setenv='#undef HAVE_SETENV'
3528 need_setenv=yes
3530 echores "$_setenv"
3533 echocheck "setmode()"
3534 _setmode=no
3535 def_setmode='#define HAVE_SETMODE 0'
3536 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3537 echores "$_setmode"
3540 if sunos; then
3541 echocheck "sysi86()"
3542 _sysi86=no
3543 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3544 if test "$_sysi86" = yes ; then
3545 def_sysi86='#define HAVE_SYSI86 1'
3546 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3547 else
3548 def_sysi86='#undef HAVE_SYSI86'
3550 echores "$_sysi86"
3551 fi #if sunos
3554 echocheck "sys/sysinfo.h"
3555 _sys_sysinfo=no
3556 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3557 if test "$_sys_sysinfo" = yes ; then
3558 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3559 else
3560 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3562 echores "$_sys_sysinfo"
3565 if darwin; then
3567 echocheck "Mac OS X Finder Support"
3568 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3569 if test "$_macosx_finder" = yes ; then
3570 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3571 extra_ldflags="$extra_ldflags -framework Carbon"
3573 echores "$_macosx_finder"
3575 echocheck "Mac OS X Bundle file locations"
3576 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3577 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3578 if test "$_macosx_bundle" = yes ; then
3579 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3580 extra_ldflags="$extra_ldflags -framework Carbon"
3582 echores "$_macosx_bundle"
3584 echocheck "Apple Remote"
3585 if test "$_apple_remote" = auto ; then
3586 _apple_remote=no
3587 cat > $TMPC <<EOF
3588 #include <stdio.h>
3589 #include <IOKit/IOCFPlugIn.h>
3590 int main(void) {
3591 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3592 CFMutableDictionaryRef hidMatchDictionary;
3593 IOReturn ioReturnValue;
3595 // Set up a matching dictionary to search the I/O Registry by class.
3596 // name for all HID class devices
3597 hidMatchDictionary = IOServiceMatching("AppleIRController");
3599 // Now search I/O Registry for matching devices.
3600 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3601 hidMatchDictionary, &hidObjectIterator);
3603 // If search is unsuccessful, return nonzero.
3604 if (ioReturnValue != kIOReturnSuccess ||
3605 !IOIteratorIsValid(hidObjectIterator)) {
3606 return 1;
3608 return 0;
3611 cc_check -framework IOKit && _apple_remote=yes
3613 if test "$_apple_remote" = yes ; then
3614 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3615 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3616 else
3617 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3619 echores "$_apple_remote"
3621 fi #if darwin
3623 if linux; then
3625 echocheck "Apple IR"
3626 if test "$_apple_ir" = auto ; then
3627 _apple_ir=no
3628 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3630 if test "$_apple_ir" = yes ; then
3631 def_apple_ir='#define CONFIG_APPLE_IR 1'
3632 else
3633 def_apple_ir='#undef CONFIG_APPLE_IR'
3635 echores "$_apple_ir"
3636 fi #if linux
3638 echocheck "pkg-config"
3639 _pkg_config=pkg-config
3640 if $($_pkg_config --version > /dev/null 2>&1); then
3641 if test "$_ld_static"; then
3642 _pkg_config="$_pkg_config --static"
3644 echores "yes"
3645 else
3646 _pkg_config=false
3647 echores "no"
3651 echocheck "Samba support (libsmbclient)"
3652 if test "$_smb" = yes; then
3653 extra_ldflags="$extra_ldflags -lsmbclient"
3655 if test "$_smb" = auto; then
3656 _smb=no
3657 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3658 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3659 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3660 done
3663 if test "$_smb" = yes; then
3664 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3665 inputmodules="smb $inputmodules"
3666 else
3667 def_smb="#undef CONFIG_LIBSMBCLIENT"
3668 noinputmodules="smb $noinputmodules"
3670 echores "$_smb"
3673 #########
3674 # VIDEO #
3675 #########
3678 echocheck "tdfxfb"
3679 if test "$_tdfxfb" = yes ; then
3680 def_tdfxfb='#define CONFIG_TDFXFB 1'
3681 vomodules="tdfxfb $vomodules"
3682 else
3683 def_tdfxfb='#undef CONFIG_TDFXFB'
3684 novomodules="tdfxfb $novomodules"
3686 echores "$_tdfxfb"
3688 echocheck "s3fb"
3689 if test "$_s3fb" = yes ; then
3690 def_s3fb='#define CONFIG_S3FB 1'
3691 vomodules="s3fb $vomodules"
3692 else
3693 def_s3fb='#undef CONFIG_S3FB'
3694 novomodules="s3fb $novomodules"
3696 echores "$_s3fb"
3698 echocheck "wii"
3699 if test "$_wii" = yes ; then
3700 def_wii='#define CONFIG_WII 1'
3701 vomodules="wii $vomodules"
3702 else
3703 def_wii='#undef CONFIG_WII'
3704 novomodules="wii $novomodules"
3706 echores "$_wii"
3708 echocheck "tdfxvid"
3709 if test "$_tdfxvid" = yes ; then
3710 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3711 vomodules="tdfx_vid $vomodules"
3712 else
3713 def_tdfxvid='#undef CONFIG_TDFX_VID'
3714 novomodules="tdfx_vid $novomodules"
3716 echores "$_tdfxvid"
3718 echocheck "xvr100"
3719 if test "$_xvr100" = auto ; then
3720 cat > $TMPC << EOF
3721 #include <unistd.h>
3722 #include <sys/fbio.h>
3723 #include <sys/visual_io.h>
3724 int main(void) {
3725 struct vis_identifier ident;
3726 struct fbgattr attr;
3727 ioctl(0, VIS_GETIDENTIFIER, &ident);
3728 ioctl(0, FBIOGATTR, &attr);
3729 return 0;
3732 _xvr100=no
3733 cc_check && _xvr100=yes
3735 if test "$_xvr100" = yes ; then
3736 def_xvr100='#define CONFIG_XVR100 1'
3737 vomodules="xvr100 $vomodules"
3738 else
3739 def_tdfxvid='#undef CONFIG_XVR100'
3740 novomodules="xvr100 $novomodules"
3742 echores "$_xvr100"
3744 echocheck "tga"
3745 if test "$_tga" = yes ; then
3746 def_tga='#define CONFIG_TGA 1'
3747 vomodules="tga $vomodules"
3748 else
3749 def_tga='#undef CONFIG_TGA'
3750 novomodules="tga $novomodules"
3752 echores "$_tga"
3755 echocheck "md5sum support"
3756 if test "$_md5sum" = yes; then
3757 def_md5sum="#define CONFIG_MD5SUM 1"
3758 vomodules="md5sum $vomodules"
3759 else
3760 def_md5sum="#undef CONFIG_MD5SUM"
3761 novomodules="md5sum $novomodules"
3763 echores "$_md5sum"
3766 echocheck "yuv4mpeg support"
3767 if test "$_yuv4mpeg" = yes; then
3768 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3769 vomodules="yuv4mpeg $vomodules"
3770 else
3771 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3772 novomodules="yuv4mpeg $novomodules"
3774 echores "$_yuv4mpeg"
3777 echocheck "bl"
3778 if test "$_bl" = yes ; then
3779 def_bl='#define CONFIG_BL 1'
3780 vomodules="bl $vomodules"
3781 else
3782 def_bl='#undef CONFIG_BL'
3783 novomodules="bl $novomodules"
3785 echores "$_bl"
3788 echocheck "DirectFB"
3789 if test "$_directfb" = auto ; then
3790 _directfb=no
3791 cat > $TMPC << EOF
3792 #include <directfb.h>
3793 #include <directfb_version.h>
3794 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3795 #error "DirectFB version too old."
3796 #endif
3797 int main(void) { DirectFBInit(0, 0); return 0; }
3799 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3800 cc_check $_inc_tmp -ldirectfb &&
3801 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3802 done
3804 if test "$_directfb" = yes ; then
3805 def_directfb='#define CONFIG_DIRECTFB 1'
3806 vomodules="directfb dfbmga $vomodules"
3807 libs_mplayer="$libs_mplayer -ldirectfb"
3808 else
3809 def_directfb='#undef CONFIG_DIRECTFB'
3810 novomodules="directfb dfbmga $novomodules"
3812 echores "$_directfb"
3815 echocheck "X11 headers presence"
3816 _x11_headers="no"
3817 res_comment="check if the dev(el) packages are installed"
3818 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3819 if test -f "$I/X11/Xlib.h" ; then
3820 _x11_headers="yes"
3821 res_comment=""
3822 break
3824 done
3825 if test $_cross_compile = no; then
3826 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3827 /usr/include/X11R6 /usr/openwin/include ; do
3828 if test -f "$I/X11/Xlib.h" ; then
3829 extra_cflags="$extra_cflags -I$I"
3830 _x11_headers="yes"
3831 res_comment="using $I"
3832 break
3834 done
3836 echores "$_x11_headers"
3839 echocheck "X11"
3840 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3841 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3842 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3843 -L/usr/lib ; do
3844 if netbsd; then
3845 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3846 else
3847 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3849 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3850 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3851 done
3853 if test "$_x11" = yes ; then
3854 def_x11='#define CONFIG_X11 1'
3855 vomodules="x11 xover $vomodules"
3856 else
3857 _x11=no
3858 def_x11='#undef CONFIG_X11'
3859 novomodules="x11 $novomodules"
3860 res_comment="check if the dev(el) packages are installed"
3862 echores "$_x11"
3864 echocheck "Xss screensaver extensions"
3865 if test "$_xss" = auto ; then
3866 _xss=no
3867 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3869 if test "$_xss" = yes ; then
3870 def_xss='#define CONFIG_XSS 1'
3871 libs_mplayer="$libs_mplayer -lXss"
3872 else
3873 def_xss='#undef CONFIG_XSS'
3875 echores "$_xss"
3877 echocheck "DPMS"
3878 _xdpms3=no
3879 _xdpms4=no
3880 if test "$_x11" = yes ; then
3881 cat > $TMPC <<EOF
3882 #include <X11/Xmd.h>
3883 #include <X11/Xlib.h>
3884 #include <X11/Xutil.h>
3885 #include <X11/Xatom.h>
3886 #include <X11/extensions/dpms.h>
3887 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3889 cc_check -lXdpms && _xdpms3=yes
3890 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3892 if test "$_xdpms4" = yes ; then
3893 def_xdpms='#define CONFIG_XDPMS 1'
3894 res_comment="using Xdpms 4"
3895 echores "yes"
3896 elif test "$_xdpms3" = yes ; then
3897 def_xdpms='#define CONFIG_XDPMS 1'
3898 libs_mplayer="$libs_mplayer -lXdpms"
3899 res_comment="using Xdpms 3"
3900 echores "yes"
3901 else
3902 def_xdpms='#undef CONFIG_XDPMS'
3903 echores "no"
3907 echocheck "Xv"
3908 if test "$_xv" = auto && test "$_x11" = yes ; then
3909 _xv=no
3910 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3913 if test "$_xv" = yes ; then
3914 def_xv='#define CONFIG_XV 1'
3915 libs_mplayer="$libs_mplayer -lXv"
3916 vomodules="xv $vomodules"
3917 else
3918 def_xv='#undef CONFIG_XV'
3919 novomodules="xv $novomodules"
3921 echores "$_xv"
3924 echocheck "VDPAU"
3925 if test "$_vdpau" = auto && test "$_x11" = yes ; then
3926 _vdpau=no
3927 if test "$_dl" = yes ; then
3928 return_statement_check vdpau/vdpau_x11.h 'vdp_device_create_x11(0, 0, 0, 0)' VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1 -lvdpau && _vdpau=yes
3931 if test "$_vdpau" = yes ; then
3932 def_vdpau='#define CONFIG_VDPAU 1'
3933 libs_mplayer="$libs_mplayer -lvdpau"
3934 vomodules="vdpau $vomodules"
3935 else
3936 def_vdpau='#define CONFIG_VDPAU 0'
3937 novomodules="vdpau $novomodules"
3939 echores "$_vdpau"
3942 echocheck "Xinerama"
3943 if test "$_xinerama" = auto && test "$_x11" = yes ; then
3944 _xinerama=no
3945 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3948 if test "$_xinerama" = yes ; then
3949 def_xinerama='#define CONFIG_XINERAMA 1'
3950 libs_mplayer="$libs_mplayer -lXinerama"
3951 else
3952 def_xinerama='#undef CONFIG_XINERAMA'
3954 echores "$_xinerama"
3957 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3958 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3959 # named 'X extensions' or something similar.
3960 # This check may be useful for future mplayer versions (to change resolution)
3961 # If you run into problems, remove '-lXxf86vm'.
3962 echocheck "Xxf86vm"
3963 if test "$_vm" = auto && test "$_x11" = yes ; then
3964 _vm=no
3965 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3967 if test "$_vm" = yes ; then
3968 def_vm='#define CONFIG_XF86VM 1'
3969 libs_mplayer="$libs_mplayer -lXxf86vm"
3970 else
3971 def_vm='#undef CONFIG_XF86VM'
3973 echores "$_vm"
3975 # Check for the presence of special keycodes, like audio control buttons
3976 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3977 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3978 # have these new keycodes.
3979 echocheck "XF86keysym"
3980 if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
3981 _xf86keysym=no
3982 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3984 if test "$_xf86keysym" = yes ; then
3985 def_xf86keysym='#define CONFIG_XF86XK 1'
3986 else
3987 def_xf86keysym='#undef CONFIG_XF86XK'
3989 echores "$_xf86keysym"
3991 echocheck "DGA"
3992 if test "$_dga2" = auto && test "$_x11" = yes ; then
3993 _dga2=no
3994 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
3996 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
3997 _dga1=no
3998 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4001 _dga=no
4002 def_dga='#undef CONFIG_DGA'
4003 def_dga1='#undef CONFIG_DGA1'
4004 def_dga2='#undef CONFIG_DGA2'
4005 if test "$_dga1" = yes ; then
4006 _dga=yes
4007 def_dga1='#define CONFIG_DGA1 1'
4008 res_comment="using DGA 1.0"
4009 elif test "$_dga2" = yes ; then
4010 _dga=yes
4011 def_dga2='#define CONFIG_DGA2 1'
4012 res_comment="using DGA 2.0"
4014 if test "$_dga" = yes ; then
4015 def_dga='#define CONFIG_DGA 1'
4016 libs_mplayer="$libs_mplayer -lXxf86dga"
4017 vomodules="dga $vomodules"
4018 else
4019 novomodules="dga $novomodules"
4021 echores "$_dga"
4024 echocheck "3dfx"
4025 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4026 def_3dfx='#define CONFIG_3DFX 1'
4027 vomodules="3dfx $vomodules"
4028 else
4029 _3dfx=no
4030 def_3dfx='#undef CONFIG_3DFX'
4031 novomodules="3dfx $novomodules"
4033 echores "$_3dfx"
4036 echocheck "GGI"
4037 if test "$_ggi" = auto ; then
4038 _ggi=no
4039 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4041 if test "$_ggi" = yes ; then
4042 def_ggi='#define CONFIG_GGI 1'
4043 libs_mplayer="$libs_mplayer -lggi"
4044 vomodules="ggi $vomodules"
4045 else
4046 def_ggi='#undef CONFIG_GGI'
4047 novomodules="ggi $novomodules"
4049 echores "$_ggi"
4051 echocheck "GGI extension: libggiwmh"
4052 if test "$_ggiwmh" = auto ; then
4053 _ggiwmh=no
4054 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4056 # needed to get right output on obscure combination
4057 # like --disable-ggi --enable-ggiwmh
4058 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4059 def_ggiwmh='#define CONFIG_GGIWMH 1'
4060 libs_mplayer="$libs_mplayer -lggiwmh"
4061 else
4062 _ggiwmh=no
4063 def_ggiwmh='#undef CONFIG_GGIWMH'
4065 echores "$_ggiwmh"
4068 echocheck "AA"
4069 if test "$_aa" = auto ; then
4070 cat > $TMPC << EOF
4071 #include <aalib.h>
4072 int main(void) {
4073 aa_context *c;
4074 aa_renderparams *p;
4075 aa_init(0, 0, 0);
4076 c = aa_autoinit(&aa_defparams);
4077 p = aa_getrenderparams();
4078 aa_autoinitkbd(c, 0);
4079 return 0; }
4081 _aa=no
4082 for _ld_tmp in "-laa" ; do
4083 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4084 done
4086 if test "$_aa" = yes ; then
4087 def_aa='#define CONFIG_AA 1'
4088 if cygwin ; then
4089 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4091 vomodules="aa $vomodules"
4092 else
4093 def_aa='#undef CONFIG_AA'
4094 novomodules="aa $novomodules"
4096 echores "$_aa"
4099 echocheck "CACA"
4100 if test "$_caca" = auto ; then
4101 _caca=no
4102 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4103 cat > $TMPC << EOF
4104 #include <caca.h>
4105 #ifdef CACA_API_VERSION_1
4106 #include <caca0.h>
4107 #endif
4108 int main(void) { caca_init(); return 0; }
4110 cc_check $(caca-config --libs) && _caca=yes
4113 if test "$_caca" = yes ; then
4114 def_caca='#define CONFIG_CACA 1'
4115 extra_cflags="$extra_cflags $(caca-config --cflags)"
4116 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4117 vomodules="caca $vomodules"
4118 else
4119 def_caca='#undef CONFIG_CACA'
4120 novomodules="caca $novomodules"
4122 echores "$_caca"
4125 echocheck "SVGAlib"
4126 if test "$_svga" = auto ; then
4127 _svga=no
4128 header_check vga.h -lvga $_ld_lm && _svga=yes
4130 if test "$_svga" = yes ; then
4131 def_svga='#define CONFIG_SVGALIB 1'
4132 libs_mplayer="$libs_mplayer -lvga"
4133 vomodules="svga $vomodules"
4134 else
4135 def_svga='#undef CONFIG_SVGALIB'
4136 novomodules="svga $novomodules"
4138 echores "$_svga"
4141 echocheck "FBDev"
4142 if test "$_fbdev" = auto ; then
4143 _fbdev=no
4144 linux && _fbdev=yes
4146 if test "$_fbdev" = yes ; then
4147 def_fbdev='#define CONFIG_FBDEV 1'
4148 vomodules="fbdev $vomodules"
4149 else
4150 def_fbdev='#undef CONFIG_FBDEV'
4151 novomodules="fbdev $novomodules"
4153 echores "$_fbdev"
4157 echocheck "DVB"
4158 if test "$_dvb" = auto ; then
4159 _dvb=no
4160 cat >$TMPC << EOF
4161 #include <poll.h>
4162 #include <sys/ioctl.h>
4163 #include <stdio.h>
4164 #include <time.h>
4165 #include <unistd.h>
4166 #include <linux/dvb/dmx.h>
4167 #include <linux/dvb/frontend.h>
4168 #include <linux/dvb/video.h>
4169 #include <linux/dvb/audio.h>
4170 int main(void) {return 0;}
4172 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4173 cc_check $_inc_tmp && _dvb=yes &&
4174 extra_cflags="$extra_cflags $_inc_tmp" && break
4175 done
4177 echores "$_dvb"
4178 if test "$_dvb" = yes ; then
4179 _dvbin=yes
4180 inputmodules="dvb $inputmodules"
4181 def_dvb='#define CONFIG_DVB 1'
4182 def_dvbin='#define CONFIG_DVBIN 1'
4183 aomodules="mpegpes(dvb) $aomodules"
4184 vomodules="mpegpes(dvb) $vomodules"
4185 else
4186 _dvbin=no
4187 noinputmodules="dvb $noinputmodules"
4188 def_dvb='#undef CONFIG_DVB'
4189 def_dvbin='#undef CONFIG_DVBIN '
4190 aomodules="mpegpes(file) $aomodules"
4191 vomodules="mpegpes(file) $vomodules"
4195 if darwin; then
4197 echocheck "QuickTime"
4198 if test "$quicktime" = auto ; then
4199 quicktime=no
4200 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4202 if test "$quicktime" = yes ; then
4203 extra_ldflags="$extra_ldflags -framework QuickTime"
4204 def_quicktime='#define CONFIG_QUICKTIME 1'
4205 else
4206 def_quicktime='#undef CONFIG_QUICKTIME'
4207 _quartz=no
4209 echores $quicktime
4211 echocheck "Quartz"
4212 if test "$_quartz" = auto ; then
4213 _quartz=no
4214 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4216 if test "$_quartz" = yes ; then
4217 libs_mplayer="$libs_mplayer -framework Carbon"
4218 def_quartz='#define CONFIG_QUARTZ 1'
4219 vomodules="quartz $vomodules"
4220 else
4221 def_quartz='#undef CONFIG_QUARTZ'
4222 novomodules="quartz $novomodules"
4224 echores $_quartz
4226 echocheck "CoreVideo"
4227 if test "$_corevideo" = auto ; then
4228 cat > $TMPC <<EOF
4229 #include <Carbon/Carbon.h>
4230 #include <CoreServices/CoreServices.h>
4231 #include <OpenGL/OpenGL.h>
4232 #include <QuartzCore/CoreVideo.h>
4233 int main(void) { return 0; }
4235 _corevideo=no
4236 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4238 if test "$_corevideo" = yes ; then
4239 vomodules="corevideo $vomodules"
4240 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4241 def_corevideo='#define CONFIG_COREVIDEO 1'
4242 else
4243 novomodules="corevideo $novomodules"
4244 def_corevideo='#undef CONFIG_COREVIDEO'
4246 echores "$_corevideo"
4248 fi #if darwin
4251 echocheck "PNG support"
4252 if test "$_png" = auto ; then
4253 _png=no
4254 if irix ; then
4255 # Don't check for -lpng on irix since it has its own libpng
4256 # incompatible with the GNU libpng
4257 res_comment="disabled on irix (not GNU libpng)"
4258 else
4259 cat > $TMPC << EOF
4260 #include <stdio.h>
4261 #include <string.h>
4262 #include <png.h>
4263 int main(void) {
4264 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4265 printf("libpng: %s\n", png_libpng_ver);
4266 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4269 cc_check -lpng -lz $_ld_lm && _png=yes
4272 echores "$_png"
4273 if test "$_png" = yes ; then
4274 def_png='#define CONFIG_PNG 1'
4275 extra_ldflags="$extra_ldflags -lpng -lz"
4276 else
4277 def_png='#undef CONFIG_PNG'
4280 echocheck "MNG support"
4281 if test "$_mng" = auto ; then
4282 _mng=no
4283 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4285 echores "$_mng"
4286 if test "$_mng" = yes ; then
4287 def_mng='#define CONFIG_MNG 1'
4288 extra_ldflags="$extra_ldflags -lmng -lz"
4289 else
4290 def_mng='#undef CONFIG_MNG'
4293 echocheck "JPEG support"
4294 if test "$_jpeg" = auto ; then
4295 _jpeg=no
4296 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4298 echores "$_jpeg"
4300 if test "$_jpeg" = yes ; then
4301 def_jpeg='#define CONFIG_JPEG 1'
4302 vomodules="jpeg $vomodules"
4303 extra_ldflags="$extra_ldflags -ljpeg"
4304 else
4305 def_jpeg='#undef CONFIG_JPEG'
4306 novomodules="jpeg $novomodules"
4311 echocheck "PNM support"
4312 if test "$_pnm" = yes; then
4313 def_pnm="#define CONFIG_PNM 1"
4314 vomodules="pnm $vomodules"
4315 else
4316 def_pnm="#undef CONFIG_PNM"
4317 novomodules="pnm $novomodules"
4319 echores "$_pnm"
4323 echocheck "GIF support"
4324 # This is to appease people who want to force gif support.
4325 # If it is forced to yes, then we still do checks to determine
4326 # which gif library to use.
4327 if test "$_gif" = yes ; then
4328 _force_gif=yes
4329 _gif=auto
4332 if test "$_gif" = auto ; then
4333 _gif=no
4334 for _ld_gif in "-lungif" "-lgif" ; do
4335 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4336 done
4339 # If no library was found, and the user wants support forced,
4340 # then we force it on with libgif, as this is the safest
4341 # assumption IMHO. (libungif & libregif both create symbolic
4342 # links to libgif. We also assume that no x11 support is needed,
4343 # because if you are forcing this, then you _should_ know what
4344 # you are doing. [ Besides, package maintainers should never
4345 # have compiled x11 deps into libungif in the first place. ] )
4346 # </rant>
4347 # --Joey
4348 if test "$_force_gif" = yes && test "$_gif" = no ; then
4349 _gif=yes
4350 _ld_gif="-lgif"
4353 if test "$_gif" = yes ; then
4354 def_gif='#define CONFIG_GIF 1'
4355 codecmodules="gif $codecmodules"
4356 vomodules="gif89a $vomodules"
4357 res_comment="old version, some encoding functions disabled"
4358 def_gif_4='#undef CONFIG_GIF_4'
4359 extra_ldflags="$extra_ldflags $_ld_gif"
4361 cat > $TMPC << EOF
4362 #include <signal.h>
4363 #include <stdio.h>
4364 #include <stdlib.h>
4365 #include <gif_lib.h>
4366 static void catch(int sig) { exit(1); }
4367 int main(void) {
4368 signal(SIGSEGV, catch); // catch segfault
4369 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4370 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4371 return 0;
4374 if cc_check "$_ld_gif" ; then
4375 def_gif_4='#define CONFIG_GIF_4 1'
4376 res_comment=""
4378 else
4379 def_gif='#undef CONFIG_GIF'
4380 def_gif_4='#undef CONFIG_GIF_4'
4381 novomodules="gif89a $novomodules"
4382 nocodecmodules="gif $nocodecmodules"
4384 echores "$_gif"
4387 case "$_gif" in yes*)
4388 echocheck "broken giflib workaround"
4389 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4391 cat > $TMPC << EOF
4392 #include <stdio.h>
4393 #include <gif_lib.h>
4394 int main(void) {
4395 GifFileType gif = {.UserData = NULL};
4396 printf("UserData is at address %p\n", gif.UserData);
4397 return 0;
4400 if cc_check "$_ld_gif" ; then
4401 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4402 echores "disabled"
4403 else
4404 echores "enabled"
4407 esac
4410 echocheck "VESA support"
4411 if test "$_vesa" = auto ; then
4412 _vesa=no
4413 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4415 if test "$_vesa" = yes ; then
4416 def_vesa='#define CONFIG_VESA 1'
4417 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4418 vomodules="vesa $vomodules"
4419 else
4420 def_vesa='#undef CONFIG_VESA'
4421 novomodules="vesa $novomodules"
4423 echores "$_vesa"
4425 #################
4426 # VIDEO + AUDIO #
4427 #################
4430 echocheck "SDL"
4431 _inc_tmp=""
4432 _ld_tmp=""
4433 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4434 if test -z "$_sdlconfig" ; then
4435 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4436 _sdlconfig="sdl-config"
4437 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4438 _sdlconfig="sdl11-config"
4439 else
4440 _sdlconfig=false
4443 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4444 cat > $TMPC << EOF
4445 #ifdef CONFIG_SDL_SDL_H
4446 #include <SDL/SDL.h>
4447 #else
4448 #include <SDL.h>
4449 #endif
4450 #ifndef __APPLE__
4451 // we allow SDL hacking our main() only on OSX
4452 #undef main
4453 #endif
4454 int main(int argc, char *argv[]) {
4455 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4456 return 0;
4459 _sdl=no
4460 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4461 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4462 _sdl=yes
4463 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4464 break
4466 done
4467 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4468 res_comment="using $_sdlconfig"
4469 if cygwin ; then
4470 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4471 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4472 elif mingw32 ; then
4473 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4474 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4475 else
4476 _inc_tmp="$($_sdlconfig --cflags)"
4477 _ld_tmp="$($_sdlconfig --libs)"
4479 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4480 _sdl=yes
4481 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4482 # HACK for BeOS/Haiku SDL
4483 _ld_tmp="$_ld_tmp -lstdc++"
4484 _sdl=yes
4488 if test "$_sdl" = yes ; then
4489 def_sdl='#define CONFIG_SDL 1'
4490 extra_cflags="$extra_cflags $_inc_tmp"
4491 libs_mplayer="$libs_mplayer $_ld_tmp"
4492 vomodules="sdl $vomodules"
4493 aomodules="sdl $aomodules"
4494 else
4495 def_sdl='#undef CONFIG_SDL'
4496 novomodules="sdl $novomodules"
4497 noaomodules="sdl $noaomodules"
4499 echores "$_sdl"
4502 # make sure this stays below CoreVideo to avoid issues due to namespace
4503 # conflicts between -lGL and -framework OpenGL
4504 echocheck "OpenGL"
4505 #Note: this test is run even with --enable-gl since we autodetect linker flags
4506 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4507 cat > $TMPC << EOF
4508 #ifdef GL_WIN32
4509 #include <windows.h>
4510 #include <GL/gl.h>
4511 #elif defined(GL_SDL)
4512 #include <GL/gl.h>
4513 #ifdef CONFIG_SDL_SDL_H
4514 #include <SDL/SDL.h>
4515 #else
4516 #include <SDL.h>
4517 #endif
4518 #ifndef __APPLE__
4519 // we allow SDL hacking our main() only on OSX
4520 #undef main
4521 #endif
4522 #else
4523 #include <GL/gl.h>
4524 #include <X11/Xlib.h>
4525 #include <GL/glx.h>
4526 #endif
4527 int main(int argc, char *argv[]) {
4528 #ifdef GL_WIN32
4529 HDC dc;
4530 wglCreateContext(dc);
4531 #elif defined(GL_SDL)
4532 SDL_GL_SwapBuffers();
4533 #else
4534 glXCreateContext(NULL, NULL, NULL, True);
4535 #endif
4536 glFinish();
4537 return 0;
4540 _gl=no
4541 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4542 if cc_check $_ld_tmp $_ld_lm ; then
4543 _gl=yes
4544 _gl_x11=yes
4545 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4546 break
4548 done
4549 if cc_check -DGL_WIN32 -lopengl32 ; then
4550 _gl=yes
4551 _gl_win32=yes
4552 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4554 # last so it can reuse any linker etc. flags detected before
4555 if test "$_sdl" = yes ; then
4556 if cc_check -DGL_SDL ||
4557 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4558 _gl=yes
4559 _gl_sdl=yes
4560 elif cc_check -DGL_SDL -lGL ||
4561 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4562 _gl=yes
4563 _gl_sdl=yes
4564 libs_mplayer="$libs_mplayer -lGL"
4567 else
4568 _gl=no
4570 if test "$_gl" = yes ; then
4571 def_gl='#define CONFIG_GL 1'
4572 res_comment="backends:"
4573 if test "$_gl_win32" = yes ; then
4574 def_gl_win32='#define CONFIG_GL_WIN32 1'
4575 res_comment="$res_comment win32"
4577 if test "$_gl_x11" = yes ; then
4578 def_gl_x11='#define CONFIG_GL_X11 1'
4579 res_comment="$res_comment x11"
4581 if test "$_gl_sdl" = yes ; then
4582 def_gl_sdl='#define CONFIG_GL_SDL 1'
4583 res_comment="$res_comment sdl"
4585 vomodules="opengl $vomodules"
4586 else
4587 def_gl='#undef CONFIG_GL'
4588 def_gl_win32='#undef CONFIG_GL_WIN32'
4589 def_gl_x11='#undef CONFIG_GL_X11'
4590 def_gl_sdl='#undef CONFIG_GL_SDL'
4591 novomodules="opengl $novomodules"
4593 echores "$_gl"
4596 echocheck "MatrixView"
4597 if test "$_gl" = no ; then
4598 matrixview=no
4600 if test "$matrixview" = yes ; then
4601 vomodules="matrixview $vomodules"
4602 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4603 else
4604 novomodules="matrixview $novomodules"
4605 def_matrixview='#undef CONFIG_MATRIXVIEW'
4607 echores "$matrixview"
4610 if os2 ; then
4611 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4612 if test "$_kva" = auto; then
4613 _kva=no;
4614 header_check_broken os2.h kva.h -lkva && _kva=yes
4616 if test "$_kva" = yes ; then
4617 def_kva='#define CONFIG_KVA 1'
4618 libs_mplayer="$libs_mplayer -lkva"
4619 vomodules="kva $vomodules"
4620 else
4621 def_kva='#undef CONFIG_KVA'
4622 novomodules="kva $novomodules"
4624 echores "$_kva"
4625 fi #if os2
4628 if win32; then
4630 echocheck "Windows waveout"
4631 if test "$_win32waveout" = auto ; then
4632 _win32waveout=no
4633 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4635 if test "$_win32waveout" = yes ; then
4636 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4637 libs_mplayer="$libs_mplayer -lwinmm"
4638 aomodules="win32 $aomodules"
4639 else
4640 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4641 noaomodules="win32 $noaomodules"
4643 echores "$_win32waveout"
4645 echocheck "Direct3D"
4646 if test "$_direct3d" = auto ; then
4647 _direct3d=no
4648 header_check d3d9.h && _direct3d=yes
4650 if test "$_direct3d" = yes ; then
4651 def_direct3d='#define CONFIG_DIRECT3D 1'
4652 vomodules="direct3d $vomodules"
4653 else
4654 def_direct3d='#undef CONFIG_DIRECT3D'
4655 novomodules="direct3d $novomodules"
4657 echores "$_direct3d"
4659 echocheck "Directx"
4660 if test "$_directx" = auto ; then
4661 cat > $TMPC << EOF
4662 #include <ddraw.h>
4663 #include <dsound.h>
4664 int main(void) { return 0; }
4666 _directx=no
4667 cc_check -lgdi32 && _directx=yes
4669 if test "$_directx" = yes ; then
4670 def_directx='#define CONFIG_DIRECTX 1'
4671 libs_mplayer="$libs_mplayer -lgdi32"
4672 vomodules="directx $vomodules"
4673 aomodules="dsound $aomodules"
4674 else
4675 def_directx='#undef CONFIG_DIRECTX'
4676 novomodules="directx $novomodules"
4677 noaomodules="dsound $noaomodules"
4679 echores "$_directx"
4681 fi #if win32; then
4684 echocheck "DXR3/H+"
4685 if test "$_dxr3" = auto ; then
4686 _dxr3=no
4687 header_check linux/em8300.h && _dxr3=yes
4689 if test "$_dxr3" = yes ; then
4690 def_dxr3='#define CONFIG_DXR3 1'
4691 vomodules="dxr3 $vomodules"
4692 else
4693 def_dxr3='#undef CONFIG_DXR3'
4694 novomodules="dxr3 $novomodules"
4696 echores "$_dxr3"
4699 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4700 if test "$_ivtv" = auto ; then
4701 cat > $TMPC << EOF
4702 #include <sys/time.h>
4703 #include <linux/videodev2.h>
4704 #include <linux/ivtv.h>
4705 #include <sys/ioctl.h>
4706 int main(void) {
4707 struct ivtv_cfg_stop_decode sd;
4708 struct ivtv_cfg_start_decode sd1;
4709 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4710 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4711 return 0; }
4713 _ivtv=no
4714 cc_check && _ivtv=yes
4716 if test "$_ivtv" = yes ; then
4717 def_ivtv='#define CONFIG_IVTV 1'
4718 vomodules="ivtv $vomodules"
4719 aomodules="ivtv $aomodules"
4720 else
4721 def_ivtv='#undef CONFIG_IVTV'
4722 novomodules="ivtv $novomodules"
4723 noaomodules="ivtv $noaomodules"
4725 echores "$_ivtv"
4728 echocheck "V4L2 MPEG Decoder"
4729 if test "$_v4l2" = auto ; then
4730 cat > $TMPC << EOF
4731 #include <sys/time.h>
4732 #include <linux/videodev2.h>
4733 #include <linux/version.h>
4734 int main(void) {
4735 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4736 #error kernel headers too old, need 2.6.22
4737 #endif
4738 struct v4l2_ext_controls ctrls;
4739 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4740 return 0;
4743 _v4l2=no
4744 cc_check && _v4l2=yes
4746 if test "$_v4l2" = yes ; then
4747 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4748 vomodules="v4l2 $vomodules"
4749 aomodules="v4l2 $aomodules"
4750 else
4751 def_v4l2='#undef CONFIG_V4L2_DECODER'
4752 novomodules="v4l2 $novomodules"
4753 noaomodules="v4l2 $noaomodules"
4755 echores "$_v4l2"
4759 #########
4760 # AUDIO #
4761 #########
4764 echocheck "OSS Audio"
4765 if test "$_ossaudio" = auto ; then
4766 _ossaudio=no
4767 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4769 if test "$_ossaudio" = yes ; then
4770 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4771 aomodules="oss $aomodules"
4772 cat > $TMPC << EOF
4773 #include <$_soundcard_header>
4774 #ifdef OPEN_SOUND_SYSTEM
4775 int main(void) { return 0; }
4776 #else
4777 #error Not the real thing
4778 #endif
4780 _real_ossaudio=no
4781 cc_check && _real_ossaudio=yes
4782 if test "$_real_ossaudio" = yes; then
4783 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4784 # Check for OSS4 headers (override default headers)
4785 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4786 if test -f /etc/oss.conf; then
4787 . /etc/oss.conf
4788 _ossinc="$OSSLIBDIR/include"
4789 if test -f "$_ossinc/sys/soundcard.h"; then
4790 extra_cflags="-I$_ossinc $extra_cflags"
4793 elif netbsd || openbsd ; then
4794 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4795 extra_ldflags="$extra_ldflags -lossaudio"
4796 else
4797 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4799 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4800 else
4801 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4802 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4803 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4804 noaomodules="oss $noaomodules"
4806 echores "$_ossaudio"
4809 echocheck "aRts"
4810 if test "$_arts" = auto ; then
4811 _arts=no
4812 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4813 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4814 _arts=yes
4818 if test "$_arts" = yes ; then
4819 def_arts='#define CONFIG_ARTS 1'
4820 aomodules="arts $aomodules"
4821 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4822 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4823 else
4824 noaomodules="arts $noaomodules"
4826 echores "$_arts"
4829 echocheck "EsounD"
4830 if test "$_esd" = auto ; then
4831 _esd=no
4832 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4833 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4836 echores "$_esd"
4838 if test "$_esd" = yes ; then
4839 def_esd='#define CONFIG_ESD 1'
4840 aomodules="esd $aomodules"
4841 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4842 extra_cflags="$extra_cflags $(esd-config --cflags)"
4844 echocheck "esd_get_latency()"
4845 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4846 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4847 echores "$_esd_latency"
4848 else
4849 def_esd='#undef CONFIG_ESD'
4850 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4851 noaomodules="esd $noaomodules"
4854 echocheck "RSound"
4855 if test "$_rsound" = auto ; then
4856 _rsound=no
4857 statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
4859 echores "$_rsound"
4861 if test "$_rsound" = yes ; then
4862 def_rsound='#define CONFIG_RSOUND 1'
4863 aomodules="rsound $aomodules"
4864 libs_mplayer="$libs_mplayer -lrsound"
4865 else
4866 def_rsound='#undef CONFIG_RSOUND'
4867 noaomodules="rsound $noaomodules"
4871 echocheck "NAS"
4872 if test "$_nas" = auto ; then
4873 _nas=no
4874 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4876 if test "$_nas" = yes ; then
4877 def_nas='#define CONFIG_NAS 1'
4878 libs_mplayer="$libs_mplayer -laudio -lXt"
4879 aomodules="nas $aomodules"
4880 else
4881 noaomodules="nas $noaomodules"
4882 def_nas='#undef CONFIG_NAS'
4884 echores "$_nas"
4887 echocheck "pulse"
4888 if test "$_pulse" = auto ; then
4889 _pulse=no
4890 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4891 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4892 _pulse=yes
4895 echores "$_pulse"
4897 if test "$_pulse" = yes ; then
4898 def_pulse='#define CONFIG_PULSE 1'
4899 aomodules="pulse $aomodules"
4900 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4901 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4902 else
4903 def_pulse='#undef CONFIG_PULSE'
4904 noaomodules="pulse $noaomodules"
4908 echocheck "JACK"
4909 if test "$_jack" = auto ; then
4910 _jack=yes
4911 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4912 libs_mplayer="$libs_mplayer -ljack"
4913 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4914 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4915 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4916 else
4917 _jack=no
4921 if test "$_jack" = yes ; then
4922 def_jack='#define CONFIG_JACK 1'
4923 aomodules="jack $aomodules"
4924 else
4925 noaomodules="jack $noaomodules"
4927 echores "$_jack"
4929 echocheck "OpenAL"
4930 if test "$_openal" = auto ; then
4931 _openal=no
4932 cat > $TMPC << EOF
4933 #ifdef OPENAL_AL_H
4934 #include <OpenAL/al.h>
4935 #else
4936 #include <AL/al.h>
4937 #endif
4938 int main(void) {
4939 alSourceQueueBuffers(0, 0, 0);
4940 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4941 return 0;
4944 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4945 cc_check $I && _openal=yes && break
4946 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4947 done
4948 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4950 if test "$_openal" = yes ; then
4951 def_openal='#define CONFIG_OPENAL 1'
4952 aomodules="openal $aomodules"
4953 else
4954 noaomodules="openal $noaomodules"
4956 echores "$_openal"
4958 echocheck "ALSA audio"
4959 if test "$_alloca" != yes ; then
4960 _alsa=no
4961 res_comment="alloca missing"
4963 if test "$_alsa" != no ; then
4964 _alsa=no
4965 cat > $TMPC << EOF
4966 #include <sys/asoundlib.h>
4967 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
4968 #error "alsa version != 0.5.x"
4969 #endif
4970 int main(void) { return 0; }
4972 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
4974 cat > $TMPC << EOF
4975 #include <sys/asoundlib.h>
4976 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
4977 #error "alsa version != 0.9.x"
4978 #endif
4979 int main(void) { return 0; }
4981 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
4982 cat > $TMPC << EOF
4983 #include <alsa/asoundlib.h>
4984 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
4985 #error "alsa version != 0.9.x"
4986 #endif
4987 int main(void) { return 0; }
4989 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
4991 cat > $TMPC << EOF
4992 #include <sys/asoundlib.h>
4993 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
4994 #error "alsa version != 1.0.x"
4995 #endif
4996 int main(void) { return 0; }
4998 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
4999 cat > $TMPC << EOF
5000 #include <alsa/asoundlib.h>
5001 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5002 #error "alsa version != 1.0.x"
5003 #endif
5004 int main(void) { return 0; }
5006 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5008 def_alsa='#undef CONFIG_ALSA'
5009 def_alsa5='#undef CONFIG_ALSA5'
5010 def_alsa9='#undef CONFIG_ALSA9'
5011 def_alsa1x='#undef CONFIG_ALSA1X'
5012 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5013 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5014 if test "$_alsaver" ; then
5015 _alsa=yes
5016 if test "$_alsaver" = '0.5.x' ; then
5017 _alsa5=yes
5018 aomodules="alsa5 $aomodules"
5019 def_alsa5='#define CONFIG_ALSA5 1'
5020 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5021 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5022 elif test "$_alsaver" = '0.9.x-sys' ; then
5023 _alsa9=yes
5024 aomodules="alsa $aomodules"
5025 def_alsa='#define CONFIG_ALSA 1'
5026 def_alsa9='#define CONFIG_ALSA9 1'
5027 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5028 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5029 elif test "$_alsaver" = '0.9.x-alsa' ; then
5030 _alsa9=yes
5031 aomodules="alsa $aomodules"
5032 def_alsa='#define CONFIG_ALSA 1'
5033 def_alsa9='#define CONFIG_ALSA9 1'
5034 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5035 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5036 elif test "$_alsaver" = '1.0.x-sys' ; then
5037 _alsa1x=yes
5038 aomodules="alsa $aomodules"
5039 def_alsa='#define CONFIG_ALSA 1'
5040 def_alsa1x="#define CONFIG_ALSA1X 1"
5041 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5042 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5043 elif test "$_alsaver" = '1.0.x-alsa' ; then
5044 _alsa1x=yes
5045 aomodules="alsa $aomodules"
5046 def_alsa='#define CONFIG_ALSA 1'
5047 def_alsa1x="#define CONFIG_ALSA1X 1"
5048 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5049 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5050 else
5051 _alsa=no
5052 res_comment="unknown version"
5054 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5055 else
5056 noaomodules="alsa $noaomodules"
5058 echores "$_alsa"
5061 echocheck "Sun audio"
5062 if test "$_sunaudio" = auto ; then
5063 cat > $TMPC << EOF
5064 #include <sys/types.h>
5065 #include <sys/audioio.h>
5066 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5068 _sunaudio=no
5069 cc_check && _sunaudio=yes
5071 if test "$_sunaudio" = yes ; then
5072 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5073 aomodules="sun $aomodules"
5074 else
5075 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5076 noaomodules="sun $noaomodules"
5078 echores "$_sunaudio"
5081 if darwin; then
5082 echocheck "CoreAudio"
5083 if test "$_coreaudio" = auto ; then
5084 cat > $TMPC <<EOF
5085 #include <CoreAudio/CoreAudio.h>
5086 #include <AudioToolbox/AudioToolbox.h>
5087 #include <AudioUnit/AudioUnit.h>
5088 int main(void) { return 0; }
5090 _coreaudio=no
5091 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5093 if test "$_coreaudio" = yes ; then
5094 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5095 def_coreaudio='#define CONFIG_COREAUDIO 1'
5096 aomodules="coreaudio $aomodules"
5097 else
5098 def_coreaudio='#undef CONFIG_COREAUDIO'
5099 noaomodules="coreaudio $noaomodules"
5101 echores $_coreaudio
5102 fi #if darwin
5105 if irix; then
5106 echocheck "SGI audio"
5107 if test "$_sgiaudio" = auto ; then
5108 _sgiaudio=no
5109 header_check dmedia/audio.h && _sgiaudio=yes
5111 if test "$_sgiaudio" = "yes" ; then
5112 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5113 libs_mplayer="$libs_mplayer -laudio"
5114 aomodules="sgi $aomodules"
5115 else
5116 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5117 noaomodules="sgi $noaomodules"
5119 echores "$_sgiaudio"
5120 fi #if irix
5123 if os2 ; then
5124 echocheck "KAI (UNIAUD/DART)"
5125 if test "$_kai" = auto; then
5126 _kai=no;
5127 header_check_broken os2.h kai.h -lkai && _kai=yes
5129 if test "$_kai" = yes ; then
5130 def_kai='#define CONFIG_KAI 1'
5131 libs_mplayer="$libs_mplayer -lkai"
5132 aomodules="kai $aomodules"
5133 else
5134 def_kai='#undef CONFIG_KAI'
5135 noaomodules="kai $noaomodules"
5137 echores "$_kai"
5139 echocheck "DART"
5140 if test "$_dart" = auto; then
5141 _dart=no;
5142 header_check_broken os2.h dart.h -ldart && _dart=yes
5144 if test "$_dart" = yes ; then
5145 def_dart='#define CONFIG_DART 1'
5146 libs_mplayer="$libs_mplayer -ldart"
5147 aomodules="dart $aomodules"
5148 else
5149 def_dart='#undef CONFIG_DART'
5150 noaomodules="dart $noaomodules"
5152 echores "$_dart"
5153 fi #if os2
5156 # set default CD/DVD devices
5157 if win32 || os2 ; then
5158 default_cdrom_device="D:"
5159 elif darwin ; then
5160 default_cdrom_device="/dev/disk1"
5161 elif dragonfly ; then
5162 default_cdrom_device="/dev/cd0"
5163 elif freebsd ; then
5164 default_cdrom_device="/dev/acd0"
5165 elif openbsd ; then
5166 default_cdrom_device="/dev/rcd0c"
5167 elif sunos ; then
5168 default_cdrom_device="/vol/dev/aliases/cdrom0"
5169 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5170 # file system and the volfs service.
5171 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5172 elif amigaos ; then
5173 default_cdrom_device="a1ide.device:2"
5174 else
5175 default_cdrom_device="/dev/cdrom"
5178 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5179 default_dvd_device=$default_cdrom_device
5180 elif darwin ; then
5181 default_dvd_device="/dev/rdiskN"
5182 else
5183 default_dvd_device="/dev/dvd"
5187 echocheck "VCD support"
5188 if test "$_vcd" = auto; then
5189 _vcd=no
5190 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5191 _vcd=yes
5192 elif mingw32; then
5193 header_check ddk/ntddcdrm.h && _vcd=yes
5196 if test "$_vcd" = yes; then
5197 inputmodules="vcd $inputmodules"
5198 def_vcd='#define CONFIG_VCD 1'
5199 else
5200 def_vcd='#undef CONFIG_VCD'
5201 noinputmodules="vcd $noinputmodules"
5202 res_comment="not supported on this OS"
5204 echores "$_vcd"
5208 echocheck "Blu-ray support"
5209 if test "$_bluray" = auto ; then
5210 _bluray=no
5211 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5213 if test "$_bluray" = yes ; then
5214 def_bluray='#define CONFIG_LIBBLURAY 1'
5215 extra_ldflags="$extra_ldflags -lbluray"
5216 inputmodules="bluray $inputmodules"
5217 else
5218 def_bluray='#undef CONFIG_LIBBLURAY'
5219 noinputmodules="bluray $noinputmodules"
5221 echores "$_bluray"
5223 echocheck "dvdread"
5224 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5225 _dvdread_internal=no
5227 if test "$_dvdread_internal" = auto ; then
5228 _dvdread_internal=no
5229 _dvdread=no
5230 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5231 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5232 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5233 darwin || win32 || os2; then
5234 _dvdread_internal=yes
5235 _dvdread=yes
5236 extra_cflags="-Ilibdvdread4 $extra_cflags"
5238 elif test "$_dvdread" = auto ; then
5239 _dvdread=no
5240 if test "$_dl" = yes; then
5241 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5242 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5243 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5244 _dvdread=yes
5245 extra_cflags="$extra_cflags $_dvdreadcflags"
5246 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5247 res_comment="external"
5252 if test "$_dvdread_internal" = yes; then
5253 def_dvdread='#define CONFIG_DVDREAD 1'
5254 inputmodules="dvdread(internal) $inputmodules"
5255 res_comment="internal"
5256 elif test "$_dvdread" = yes; then
5257 def_dvdread='#define CONFIG_DVDREAD 1'
5258 extra_ldflags="$extra_ldflags -ldvdread"
5259 inputmodules="dvdread(external) $inputmodules"
5260 res_comment="external"
5261 else
5262 def_dvdread='#undef CONFIG_DVDREAD'
5263 noinputmodules="dvdread $noinputmodules"
5265 echores "$_dvdread"
5268 echocheck "internal libdvdcss"
5269 if test "$_libdvdcss_internal" = auto ; then
5270 _libdvdcss_internal=no
5271 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5272 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5274 if test "$_libdvdcss_internal" = yes ; then
5275 if linux || netbsd || openbsd || bsdos ; then
5276 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5277 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5278 elif freebsd || dragonfly ; then
5279 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5280 elif darwin ; then
5281 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5282 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5283 elif cygwin ; then
5284 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5285 elif beos ; then
5286 cflags_libdvdcss="-DSYS_BEOS"
5287 elif os2 ; then
5288 cflags_libdvdcss="-DSYS_OS2"
5290 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5291 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5292 inputmodules="libdvdcss(internal) $inputmodules"
5293 else
5294 noinputmodules="libdvdcss(internal) $noinputmodules"
5296 echores "$_libdvdcss_internal"
5299 echocheck "cdparanoia"
5300 if test "$_cdparanoia" = auto ; then
5301 cat > $TMPC <<EOF
5302 #include <cdda_interface.h>
5303 #include <cdda_paranoia.h>
5304 // This need a better test. How ?
5305 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5307 _cdparanoia=no
5308 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5309 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5310 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5311 done
5313 if test "$_cdparanoia" = yes ; then
5314 _cdda='yes'
5315 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5316 openbsd && extra_ldflags="$extra_ldflags -lutil"
5318 echores "$_cdparanoia"
5321 echocheck "libcdio"
5322 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5323 cat > $TMPC << EOF
5324 #include <stdio.h>
5325 #include <cdio/version.h>
5326 #include <cdio/cdda.h>
5327 #include <cdio/paranoia.h>
5328 int main(void) {
5329 void *test = cdda_verbose_set;
5330 printf("%s\n", CDIO_VERSION);
5331 return test == (void *)1;
5334 _libcdio=no
5335 for _ld_tmp in "" "-lwinmm" ; do
5336 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5337 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5338 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5339 done
5340 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5341 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5342 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5343 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5344 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5347 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5348 _cdda='yes'
5349 def_libcdio='#define CONFIG_LIBCDIO 1'
5350 def_havelibcdio='yes'
5351 else
5352 _libcdio=no
5353 if test "$_cdparanoia" = yes ; then
5354 res_comment="using cdparanoia"
5356 def_libcdio='#undef CONFIG_LIBCDIO'
5357 def_havelibcdio='no'
5359 echores "$_libcdio"
5361 if test "$_cdda" = yes ; then
5362 test $_cddb = auto && test $networking = yes && _cddb=yes
5363 def_cdparanoia='#define CONFIG_CDDA 1'
5364 inputmodules="cdda $inputmodules"
5365 else
5366 def_cdparanoia='#undef CONFIG_CDDA'
5367 noinputmodules="cdda $noinputmodules"
5370 if test "$_cddb" = yes ; then
5371 def_cddb='#define CONFIG_CDDB 1'
5372 inputmodules="cddb $inputmodules"
5373 else
5374 _cddb=no
5375 def_cddb='#undef CONFIG_CDDB'
5376 noinputmodules="cddb $noinputmodules"
5379 echocheck "bitmap font support"
5380 if test "$_bitmap_font" = yes ; then
5381 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5382 else
5383 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5385 echores "$_bitmap_font"
5388 echocheck "freetype >= 2.0.9"
5390 # freetype depends on iconv
5391 if test "$_iconv" = no ; then
5392 _freetype=no
5393 res_comment="iconv support needed"
5396 if test "$_freetype" = auto ; then
5397 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5398 cat > $TMPC << EOF
5399 #include <stdio.h>
5400 #include <ft2build.h>
5401 #include FT_FREETYPE_H
5402 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5403 #error "Need FreeType 2.0.9 or newer"
5404 #endif
5405 int main(void) {
5406 FT_Library library;
5407 FT_Init_FreeType(&library);
5408 return 0;
5411 _freetype=no
5412 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5413 else
5414 _freetype=no
5416 if test "$_freetype" != yes ; then
5417 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5420 if test "$_freetype" = yes ; then
5421 def_freetype='#define CONFIG_FREETYPE 1'
5422 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5423 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5424 else
5425 def_freetype='#undef CONFIG_FREETYPE'
5427 echores "$_freetype"
5429 if test "$_freetype" = no ; then
5430 _fontconfig=no
5431 res_comment="FreeType support needed"
5433 echocheck "fontconfig"
5434 if test "$_fontconfig" = auto ; then
5435 cat > $TMPC << EOF
5436 #include <stdio.h>
5437 #include <stdlib.h>
5438 #include <fontconfig/fontconfig.h>
5439 #if FC_VERSION < 20402
5440 #error At least version 2.4.2 of fontconfig required
5441 #endif
5442 int main(void) {
5443 int err = FcInit();
5444 if (err == FcFalse) {
5445 printf("Couldn't initialize fontconfig lib\n");
5446 exit(err);
5448 return 0;
5451 _fontconfig=no
5452 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5453 _ld_tmp="-lfontconfig $_ld_tmp"
5454 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5455 done
5456 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5457 _inc_tmp=$($_pkg_config --cflags fontconfig)
5458 _ld_tmp=$($_pkg_config --libs fontconfig)
5459 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5460 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5462 if test "$_fontconfig" != yes ; then
5463 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5466 if test "$_fontconfig" = yes ; then
5467 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5468 else
5469 def_fontconfig='#undef CONFIG_FONTCONFIG'
5471 echores "$_fontconfig"
5474 echocheck "SSA/ASS support"
5475 if test "$_ass" = auto -o "$_ass" = yes ; then
5476 if $_pkg_config libass; then
5477 _ass=yes
5478 def_ass='#define CONFIG_ASS 1'
5479 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5480 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5481 else
5482 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-ass."
5484 else
5485 def_ass='#undef CONFIG_ASS'
5487 echores "$_ass"
5490 echocheck "fribidi with charsets"
5491 _inc_tmp=""
5492 _ld_tmp=""
5493 if test "$_fribidi" = auto ; then
5494 cat > $TMPC << EOF
5495 #include <stdlib.h>
5496 /* workaround for fribidi 0.10.4 and below */
5497 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5498 #include <fribidi/fribidi.h>
5499 int main(void) {
5500 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5501 exit(1);
5502 return 0;
5505 _fribidi=no
5506 _inc_tmp=""
5507 _ld_tmp="-lfribidi"
5508 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5509 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5510 test "$_fribidi" = no ; then
5511 _inc_tmp="$($_pkg_config --cflags)"
5512 _ld_tmp="$($_pkg_config --libs)"
5513 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5516 if test "$_fribidi" = yes ; then
5517 def_fribidi='#define CONFIG_FRIBIDI 1'
5518 extra_cflags="$extra_cflags $_inc_tmp"
5519 extra_ldflags="$extra_ldflags $_ld_tmp"
5520 else
5521 def_fribidi='#undef CONFIG_FRIBIDI'
5523 echores "$_fribidi"
5526 echocheck "ENCA"
5527 if test "$_enca" = auto ; then
5528 _enca=no
5529 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5531 if test "$_enca" = yes ; then
5532 def_enca='#define CONFIG_ENCA 1'
5533 extra_ldflags="$extra_ldflags -lenca"
5534 else
5535 def_enca='#undef CONFIG_ENCA'
5537 echores "$_enca"
5540 echocheck "zlib"
5541 _zlib=no
5542 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5543 if test "$_zlib" = yes ; then
5544 def_zlib='#define CONFIG_ZLIB 1'
5545 extra_ldflags="$extra_ldflags -lz"
5546 else
5547 def_zlib='#define CONFIG_ZLIB 0'
5549 echores "$_zlib"
5552 echocheck "RTC"
5553 if test "$_rtc" = auto ; then
5554 cat > $TMPC << EOF
5555 #include <sys/ioctl.h>
5556 #ifdef __linux__
5557 #include <linux/rtc.h>
5558 #else
5559 #include <rtc.h>
5560 #define RTC_PIE_ON RTCIO_PIE_ON
5561 #endif
5562 int main(void) { return RTC_PIE_ON; }
5564 _rtc=no
5565 cc_check && _rtc=yes
5566 ppc && _rtc=no
5568 if test "$_rtc" = yes ; then
5569 def_rtc='#define HAVE_RTC 1'
5570 else
5571 def_rtc='#undef HAVE_RTC'
5573 echores "$_rtc"
5576 echocheck "mad support"
5577 if test "$_mad" = auto ; then
5578 _mad=no
5579 header_check mad.h -lmad && _mad=yes
5581 if test "$_mad" = yes ; then
5582 def_mad='#define CONFIG_LIBMAD 1'
5583 extra_ldflags="$extra_ldflags -lmad"
5584 codecmodules="libmad $codecmodules"
5585 else
5586 def_mad='#undef CONFIG_LIBMAD'
5587 nocodecmodules="libmad $nocodecmodules"
5589 echores "$_mad"
5591 echocheck "OggVorbis support"
5592 if test "$_libvorbis" = auto; then
5593 _libvorbis=no
5594 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5595 elif test "$_libvorbis" = yes ; then
5596 _tremor=no
5598 if test "$_tremor" = auto; then
5599 _tremor=no
5600 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5602 if test "$_tremor" = yes ; then
5603 _vorbis=yes
5604 def_vorbis='#define CONFIG_OGGVORBIS 1'
5605 def_tremor='#define CONFIG_TREMOR 1'
5606 codecmodules="tremor(external) $codecmodules"
5607 res_comment="external Tremor"
5608 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5609 elif test "$_libvorbis" = yes ; then
5610 _vorbis=yes
5611 def_vorbis='#define CONFIG_OGGVORBIS 1'
5612 codecmodules="libvorbis $codecmodules"
5613 res_comment="libvorbis"
5614 extra_ldflags="$extra_ldflags -lvorbis -logg"
5615 else
5616 _vorbis=no
5617 nocodecmodules="libvorbis $nocodecmodules"
5619 echores "$_vorbis"
5621 echocheck "libspeex (version >= 1.1 required)"
5622 if test "$_speex" = auto ; then
5623 _speex=no
5624 cat > $TMPC << EOF
5625 #include <stddef.h>
5626 #include <speex/speex.h>
5627 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5629 cc_check -lspeex $_ld_lm && _speex=yes
5631 if test "$_speex" = yes ; then
5632 def_speex='#define CONFIG_SPEEX 1'
5633 extra_ldflags="$extra_ldflags -lspeex"
5634 codecmodules="speex $codecmodules"
5635 else
5636 def_speex='#undef CONFIG_SPEEX'
5637 nocodecmodules="speex $nocodecmodules"
5639 echores "$_speex"
5641 echocheck "OggTheora support"
5642 if test "$_theora" = auto ; then
5643 _theora=no
5644 cat > $TMPC << EOF
5645 #include <theora/theora.h>
5646 #include <string.h>
5647 int main(void) {
5648 /* Theora is in flux, make sure that all interface routines and datatypes
5649 * exist and work the way we expect it, so we don't break MPlayer. */
5650 ogg_packet op;
5651 theora_comment tc;
5652 theora_info inf;
5653 theora_state st;
5654 yuv_buffer yuv;
5655 int r;
5656 double t;
5658 theora_info_init(&inf);
5659 theora_comment_init(&tc);
5661 return 0;
5663 /* we don't want to execute this kind of nonsense; just for making sure
5664 * that compilation works... */
5665 memset(&op, 0, sizeof(op));
5666 r = theora_decode_header(&inf, &tc, &op);
5667 r = theora_decode_init(&st, &inf);
5668 t = theora_granule_time(&st, op.granulepos);
5669 r = theora_decode_packetin(&st, &op);
5670 r = theora_decode_YUVout(&st, &yuv);
5671 theora_clear(&st);
5673 return 0;
5676 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5677 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5678 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5679 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5680 if test _theora = no; then
5681 _ld_theora="-ltheora -logg"
5682 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5685 if test "$_theora" = yes ; then
5686 def_theora='#define CONFIG_OGGTHEORA 1'
5687 codecmodules="libtheora $codecmodules"
5688 # when --enable-theora is forced, we'd better provide a probably sane
5689 # $_ld_theora than nothing
5690 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5691 else
5692 def_theora='#undef CONFIG_OGGTHEORA'
5693 nocodecmodules="libtheora $nocodecmodules"
5695 echores "$_theora"
5697 # Any version of libmpg123 shall be fine.
5698 echocheck "mpg123 support"
5699 def_mpg123='#undef CONFIG_MPG123'
5700 if test "$_mpg123" = auto; then
5701 _mpg123=no
5702 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5704 if test "$_mpg123" = yes ; then
5705 def_mpg123='#define CONFIG_MPG123 1'
5706 codecmodules="mpg123 $codecmodules"
5707 else
5708 nocodecmodules="mpg123 $nocodecmodules"
5710 echores "$_mpg123"
5712 echocheck "liba52 support"
5713 def_liba52='#undef CONFIG_LIBA52'
5714 if test "$_liba52" = auto ; then
5715 _liba52=no
5716 cat > $TMPC << EOF
5717 #include <inttypes.h>
5718 #include <a52dec/a52.h>
5719 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5721 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5723 if test "$_liba52" = yes ; then
5724 def_liba52='#define CONFIG_LIBA52 1'
5725 codecmodules="liba52 $codecmodules"
5726 else
5727 nocodecmodules="liba52 $nocodecmodules"
5729 echores "$_liba52"
5731 echocheck "libdca support"
5732 if test "$_libdca" = auto ; then
5733 _libdca=no
5734 for _ld_dca in -ldca -ldts ; do
5735 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5736 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5737 done
5739 if test "$_libdca" = yes ; then
5740 def_libdca='#define CONFIG_LIBDCA 1'
5741 codecmodules="libdca $codecmodules"
5742 else
5743 def_libdca='#undef CONFIG_LIBDCA'
5744 nocodecmodules="libdca $nocodecmodules"
5746 echores "$_libdca"
5748 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5749 if test "$_musepack" = yes ; then
5750 _musepack=no
5751 cat > $TMPC << EOF
5752 #include <stddef.h>
5753 #include <mpcdec/mpcdec.h>
5754 int main(void) {
5755 mpc_streaminfo info;
5756 mpc_decoder decoder;
5757 mpc_decoder_set_streaminfo(&decoder, &info);
5758 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5759 return 0;
5762 cc_check -lmpcdec $_ld_lm && _musepack=yes
5764 if test "$_musepack" = yes ; then
5765 def_musepack='#define CONFIG_MUSEPACK 1'
5766 extra_ldflags="$extra_ldflags -lmpcdec"
5767 codecmodules="musepack $codecmodules"
5768 else
5769 def_musepack='#undef CONFIG_MUSEPACK'
5770 nocodecmodules="musepack $nocodecmodules"
5772 echores "$_musepack"
5775 echocheck "FAAD2 support"
5776 if test "$_faad" = auto ; then
5777 _faad=no
5778 cat > $TMPC << EOF
5779 #include <faad.h>
5780 #ifndef FAAD_MIN_STREAMSIZE
5781 #error Too old version
5782 #endif
5783 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5784 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5786 cc_check -lfaad $_ld_lm && _faad=yes
5789 def_faad='#undef CONFIG_FAAD'
5790 if test "$_faad" = yes ; then
5791 def_faad='#define CONFIG_FAAD 1'
5792 extra_ldflags="$extra_ldflags -lfaad"
5793 codecmodules="faad2 $codecmodules"
5794 else
5795 nocodecmodules="faad2 $nocodecmodules"
5797 echores "$_faad"
5800 echocheck "LADSPA plugin support"
5801 if test "$_ladspa" = auto ; then
5802 _ladspa=no
5803 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5805 if test "$_ladspa" = yes; then
5806 def_ladspa="#define CONFIG_LADSPA 1"
5807 else
5808 def_ladspa="#undef CONFIG_LADSPA"
5810 echores "$_ladspa"
5813 echocheck "libbs2b audio filter support"
5814 if test "$_libbs2b" = auto ; then
5815 cat > $TMPC <<EOF
5816 #include <bs2b.h>
5817 #if BS2B_VERSION_MAJOR < 3
5818 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5819 #endif
5820 int main(void) {
5821 t_bs2bdp filter;
5822 filter=bs2b_open();
5823 bs2b_close(filter);
5824 return 0;
5827 _libbs2b=no
5828 if $_pkg_config --exists libbs2b ; then
5829 _inc_tmp=$($_pkg_config --cflags libbs2b)
5830 _ld_tmp=$($_pkg_config --libs libbs2b)
5831 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5832 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5833 else
5834 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5835 -I/usr/local/include/bs2b ; do
5836 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5837 extra_ldflags="$extra_ldflags -lbs2b"
5838 extra_cflags="$extra_cflags $_inc_tmp"
5839 _libbs2b=yes
5840 break
5842 done
5845 def_libbs2b="#undef CONFIG_LIBBS2B"
5846 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5847 echores "$_libbs2b"
5850 if test -z "$_codecsdir" ; then
5851 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5852 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5853 if test -d "$dir" ; then
5854 _codecsdir="$dir"
5855 break;
5857 done
5859 # Fall back on default directory.
5860 if test -z "$_codecsdir" ; then
5861 _codecsdir="$_libdir/codecs"
5862 mingw32 || os2 && _codecsdir="codecs"
5866 echocheck "Win32 codecs"
5867 if test "$_win32dll" = auto ; then
5868 _win32dll=no
5869 if x86_32 && ! qnx; then
5870 _win32dll=yes
5873 if test "$_win32dll" = yes ; then
5874 def_win32dll='#define CONFIG_WIN32DLL 1'
5875 if ! win32 ; then
5876 def_win32_loader='#define WIN32_LOADER 1'
5877 _win32_emulation=yes
5878 else
5879 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5880 res_comment="using native windows"
5882 codecmodules="win32 $codecmodules"
5883 else
5884 def_win32dll='#undef CONFIG_WIN32DLL'
5885 def_win32_loader='#undef WIN32_LOADER'
5886 nocodecmodules="win32 $nocodecmodules"
5888 echores "$_win32dll"
5891 echocheck "XAnim codecs"
5892 if test "$_xanim" = auto ; then
5893 _xanim=no
5894 res_comment="dynamic loader support needed"
5895 if test "$_dl" = yes ; then
5896 _xanim=yes
5899 if test "$_xanim" = yes ; then
5900 def_xanim='#define CONFIG_XANIM 1'
5901 codecmodules="xanim $codecmodules"
5902 else
5903 def_xanim='#undef CONFIG_XANIM'
5904 nocodecmodules="xanim $nocodecmodules"
5906 echores "$_xanim"
5909 echocheck "RealPlayer codecs"
5910 if test "$_real" = auto ; then
5911 _real=no
5912 res_comment="dynamic loader support needed"
5913 if test "$_dl" = yes || test "$_win32dll" = yes &&
5914 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5915 _real=yes
5918 if test "$_real" = yes ; then
5919 def_real='#define CONFIG_REALCODECS 1'
5920 codecmodules="real $codecmodules"
5921 else
5922 def_real='#undef CONFIG_REALCODECS'
5923 nocodecmodules="real $nocodecmodules"
5925 echores "$_real"
5928 echocheck "QuickTime codecs"
5929 _qtx_emulation=no
5930 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5931 if test "$_qtx" = auto ; then
5932 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5934 if test "$_qtx" = yes ; then
5935 def_qtx='#define CONFIG_QTX_CODECS 1'
5936 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5937 codecmodules="qtx $codecmodules"
5938 darwin || win32 || _qtx_emulation=yes
5939 else
5940 def_qtx='#undef CONFIG_QTX_CODECS'
5941 nocodecmodules="qtx $nocodecmodules"
5943 echores "$_qtx"
5945 echocheck "Nemesi Streaming Media libraries"
5946 if test "$_nemesi" = auto && test "$networking" = yes ; then
5947 _nemesi=no
5948 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
5949 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
5950 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
5951 _nemesi=yes
5954 if test "$_nemesi" = yes; then
5955 _native_rtsp=no
5956 def_nemesi='#define CONFIG_LIBNEMESI 1'
5957 inputmodules="nemesi $inputmodules"
5958 else
5959 _native_rtsp="$networking"
5960 _nemesi=no
5961 def_nemesi='#undef CONFIG_LIBNEMESI'
5962 noinputmodules="nemesi $noinputmodules"
5964 echores "$_nemesi"
5966 echocheck "LIVE555 Streaming Media libraries"
5967 if test "$_live" = auto && test "$networking" = yes ; then
5968 cat > $TMPCPP << EOF
5969 #include <liveMedia.hh>
5970 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5971 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5972 #endif
5973 int main(void) { return 0; }
5976 _live=no
5977 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
5978 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5979 _livelibdir=$(echo $I| sed s/-I//) &&
5980 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5981 $_livelibdir/groupsock/libgroupsock.a \
5982 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5983 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5984 $extra_ldflags -lstdc++" \
5985 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5986 -I$_livelibdir/UsageEnvironment/include \
5987 -I$_livelibdir/BasicUsageEnvironment/include \
5988 -I$_livelibdir/groupsock/include" &&
5989 _live=yes && break
5990 done
5991 if test "$_live" != yes ; then
5992 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5993 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5994 _live_dist=yes
5998 if test "$_live" = yes && test "$networking" = yes; then
5999 test $_livelibdir && res_comment="using $_livelibdir"
6000 def_live='#define CONFIG_LIVE555 1'
6001 inputmodules="live555 $inputmodules"
6002 elif test "$_live_dist" = yes && test "$networking" = yes; then
6003 res_comment="using distribution version"
6004 _live="yes"
6005 def_live='#define CONFIG_LIVE555 1'
6006 extra_ldflags="$extra_ldflags $ld_tmp"
6007 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6008 inputmodules="live555 $inputmodules"
6009 else
6010 _live=no
6011 def_live='#undef CONFIG_LIVE555'
6012 noinputmodules="live555 $noinputmodules"
6014 echores "$_live"
6018 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6019 echocheck "FFmpeg ($all_ffmpeg_libs)"
6020 if test "$ffmpeg" = auto ; then
6021 ffmpeg=no
6022 if $_pkg_config --exists $all_ffmpeg_libs ; then
6023 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6024 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6025 extra_ldflags="$extra_ldflags $_ld_tmp"
6026 extra_cflags="$extra_cflags $inc_ffmpeg"
6027 ffmpeg=yes
6028 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6029 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6030 ffmpeg=yes
6031 else
6032 die "Unable to find development files for some of the FFmpeg libraries above. Aborting. If you really mean to compile without FFmpeg support use --disable-ffmpeg."
6036 ffmpeg_eval_api=no
6037 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6038 if test "$ffmpeg" = yes; then
6039 def_ffmpeg='#define CONFIG_FFMPEG 1'
6040 codecmodules="ffmpeg $codecmodules"
6041 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6042 ffmpeg_eval_api=yes
6043 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6045 else
6046 def_ffmpeg='#undef CONFIG_FFMPEG'
6047 nocodecmodules="ffmpeg $nocodecmodules"
6049 echores "$ffmpeg"
6051 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6052 if ! test -z "$_ffmpeg_source" ; then
6053 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6058 echocheck "libdv-0.9.5+"
6059 if test "$_libdv" = auto ; then
6060 _libdv=no
6061 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6063 if test "$_libdv" = yes ; then
6064 def_libdv='#define CONFIG_LIBDV095 1'
6065 extra_ldflags="$extra_ldflags -ldv"
6066 codecmodules="libdv $codecmodules"
6067 else
6068 def_libdv='#undef CONFIG_LIBDV095'
6069 nocodecmodules="libdv $nocodecmodules"
6071 echores "$_libdv"
6074 echocheck "Xvid"
6075 if test "$_xvid" = auto ; then
6076 _xvid=no
6077 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6078 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6079 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6080 done
6083 if test "$_xvid" = yes ; then
6084 def_xvid='#define CONFIG_XVID4 1'
6085 codecmodules="xvid $codecmodules"
6086 else
6087 def_xvid='#undef CONFIG_XVID4'
6088 nocodecmodules="xvid $nocodecmodules"
6090 echores "$_xvid"
6093 echocheck "libnut"
6094 if test "$_libnut" = auto ; then
6095 _libnut=no
6096 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6099 if test "$_libnut" = yes ; then
6100 def_libnut='#define CONFIG_LIBNUT 1'
6101 extra_ldflags="$extra_ldflags -lnut"
6102 else
6103 def_libnut='#undef CONFIG_LIBNUT'
6105 echores "$_libnut"
6107 # These VO checks must be done after the FFmpeg one
6108 echocheck "/dev/mga_vid"
6109 if test "$_mga" = auto ; then
6110 _mga=no
6111 test -c /dev/mga_vid && _mga=yes
6113 if test "$_mga" = yes ; then
6114 def_mga='#define CONFIG_MGA 1'
6115 vomodules="mga $vomodules"
6116 else
6117 def_mga='#undef CONFIG_MGA'
6118 novomodules="mga $novomodules"
6120 echores "$_mga"
6123 echocheck "xmga"
6124 if test "$_xmga" = auto ; then
6125 _xmga=no
6126 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6128 if test "$_xmga" = yes ; then
6129 def_xmga='#define CONFIG_XMGA 1'
6130 vomodules="xmga $vomodules"
6131 else
6132 def_xmga='#undef CONFIG_XMGA'
6133 novomodules="xmga $novomodules"
6135 echores "$_xmga"
6138 echocheck "UnRAR executable"
6139 if test "$_unrar_exec" = auto ; then
6140 _unrar_exec="yes"
6141 mingw32 && _unrar_exec="no"
6143 if test "$_unrar_exec" = yes ; then
6144 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6145 else
6146 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6148 echores "$_unrar_exec"
6150 echocheck "TV interface"
6151 if test "$_tv" = yes ; then
6152 def_tv='#define CONFIG_TV 1'
6153 inputmodules="tv $inputmodules"
6154 else
6155 noinputmodules="tv $noinputmodules"
6156 def_tv='#undef CONFIG_TV'
6158 echores "$_tv"
6161 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6162 echocheck "*BSD BT848 bt8xx header"
6163 _ioctl_bt848_h=no
6164 for file in "machine/ioctl_bt848.h" \
6165 "dev/bktr/ioctl_bt848.h" \
6166 "dev/video/bktr/ioctl_bt848.h" \
6167 "dev/ic/bt8xx.h" ; do
6168 cat > $TMPC <<EOF
6169 #include <sys/types.h>
6170 #include <sys/ioctl.h>
6171 #include <$file>
6172 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6174 if cc_check ; then
6175 _ioctl_bt848_h=yes
6176 _ioctl_bt848_h_name="$file"
6177 break;
6179 done
6180 if test "$_ioctl_bt848_h" = yes ; then
6181 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6182 res_comment="using $_ioctl_bt848_h_name"
6183 else
6184 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6186 echores "$_ioctl_bt848_h"
6188 echocheck "*BSD ioctl_meteor.h"
6189 _ioctl_meteor_h=no
6190 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6191 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6192 _ioctl_meteor_h=yes && break
6193 done
6194 if test "$_ioctl_meteor_h" = yes ; then
6195 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6196 res_comment="using $ioctl_meteor_h_path"
6197 else
6198 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6200 echores "$_ioctl_meteor_h"
6202 echocheck "*BSD BrookTree 848 TV interface"
6203 if test "$_tv_bsdbt848" = auto ; then
6204 _tv_bsdbt848=no
6205 if test "$_tv" = yes ; then
6206 cat > $TMPC <<EOF
6207 #include <sys/types.h>
6208 $def_ioctl_meteor_h_name
6209 $def_ioctl_bt848_h_name
6210 #ifdef IOCTL_METEOR_H_NAME
6211 #include IOCTL_METEOR_H_NAME
6212 #endif
6213 #ifdef IOCTL_BT848_H_NAME
6214 #include IOCTL_BT848_H_NAME
6215 #endif
6216 int main(void) {
6217 ioctl(0, METEORSINPUT, 0);
6218 ioctl(0, TVTUNER_GETFREQ, 0);
6219 return 0;
6222 cc_check && _tv_bsdbt848=yes
6225 if test "$_tv_bsdbt848" = yes ; then
6226 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6227 inputmodules="tv-bsdbt848 $inputmodules"
6228 else
6229 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6230 noinputmodules="tv-bsdbt848 $noinputmodules"
6232 echores "$_tv_bsdbt848"
6233 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6236 echocheck "DirectShow TV interface"
6237 if test "$_tv_dshow" = auto ; then
6238 _tv_dshow=no
6239 if test "$_tv" = yes && win32 ; then
6240 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6243 if test "$_tv_dshow" = yes ; then
6244 inputmodules="tv-dshow $inputmodules"
6245 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6246 extra_ldflags="$extra_ldflags -lole32 -luuid"
6247 else
6248 noinputmodules="tv-dshow $noinputmodules"
6249 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6251 echores "$_tv_dshow"
6254 echocheck "Video 4 Linux TV interface"
6255 if test "$_tv_v4l1" = auto ; then
6256 _tv_v4l1=no
6257 if test "$_tv" = yes && linux ; then
6258 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6261 if test "$_tv_v4l1" = yes ; then
6262 _audio_input=yes
6263 _tv_v4l=yes
6264 def_tv_v4l='#define CONFIG_TV_V4L 1'
6265 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6266 inputmodules="tv-v4l $inputmodules"
6267 else
6268 noinputmodules="tv-v4l1 $noinputmodules"
6269 def_tv_v4l='#undef CONFIG_TV_V4L'
6271 echores "$_tv_v4l1"
6274 echocheck "Video 4 Linux 2 TV interface"
6275 if test "$_tv_v4l2" = auto ; then
6276 _tv_v4l2=no
6277 if test "$_tv" = yes && linux ; then
6278 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6279 elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
6280 _tv_v4l2=yes
6283 if test "$_tv_v4l2" = yes ; then
6284 _audio_input=yes
6285 _tv_v4l=yes
6286 def_tv_v4l='#define CONFIG_TV_V4L 1'
6287 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6288 inputmodules="tv-v4l2 $inputmodules"
6289 else
6290 noinputmodules="tv-v4l2 $noinputmodules"
6291 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6293 echores "$_tv_v4l2"
6296 echocheck "Radio interface"
6297 if test "$_radio" = yes ; then
6298 def_radio='#define CONFIG_RADIO 1'
6299 inputmodules="radio $inputmodules"
6300 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6301 _radio_capture=no
6303 if test "$_radio_capture" = yes ; then
6304 _audio_input=yes
6305 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6306 else
6307 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6309 else
6310 noinputmodules="radio $noinputmodules"
6311 def_radio='#undef CONFIG_RADIO'
6312 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6313 _radio_capture=no
6315 echores "$_radio"
6316 echocheck "Capture for Radio interface"
6317 echores "$_radio_capture"
6319 echocheck "Video 4 Linux 2 Radio interface"
6320 if test "$_radio_v4l2" = auto ; then
6321 _radio_v4l2=no
6322 if test "$_radio" = yes && linux ; then
6323 header_check linux/videodev2.h && _radio_v4l2=yes
6326 if test "$_radio_v4l2" = yes ; then
6327 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6328 else
6329 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6331 echores "$_radio_v4l2"
6333 echocheck "Video 4 Linux Radio interface"
6334 if test "$_radio_v4l" = auto ; then
6335 _radio_v4l=no
6336 if test "$_radio" = yes && linux ; then
6337 header_check linux/videodev.h && _radio_v4l=yes
6340 if test "$_radio_v4l" = yes ; then
6341 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6342 else
6343 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6345 echores "$_radio_v4l"
6347 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6348 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6349 echocheck "*BSD BrookTree 848 Radio interface"
6350 _radio_bsdbt848=no
6351 cat > $TMPC <<EOF
6352 #include <sys/types.h>
6353 $def_ioctl_bt848_h_name
6354 #ifdef IOCTL_BT848_H_NAME
6355 #include IOCTL_BT848_H_NAME
6356 #endif
6357 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6359 cc_check && _radio_bsdbt848=yes
6360 echores "$_radio_bsdbt848"
6361 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6363 if test "$_radio_bsdbt848" = yes ; then
6364 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6365 else
6366 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6369 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6370 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6371 die "Radio driver requires BSD BT848, V4L or V4L2!"
6374 echocheck "Video 4 Linux 2 MPEG PVR interface"
6375 if test "$_pvr" = auto ; then
6376 _pvr=no
6377 if test "$_tv_v4l2" = yes && linux ; then
6378 cat > $TMPC <<EOF
6379 #include <sys/time.h>
6380 #include <linux/videodev2.h>
6381 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6383 cc_check && _pvr=yes
6386 if test "$_pvr" = yes ; then
6387 def_pvr='#define CONFIG_PVR 1'
6388 inputmodules="pvr $inputmodules"
6389 else
6390 noinputmodules="pvr $noinputmodules"
6391 def_pvr='#undef CONFIG_PVR'
6393 echores "$_pvr"
6396 echocheck "ftp"
6397 if test "$_ftp" = "auto" ; then
6398 test "$networking" = "yes" && ! beos && _ftp=yes
6400 if test "$_ftp" = yes ; then
6401 def_ftp='#define CONFIG_FTP 1'
6402 inputmodules="ftp $inputmodules"
6403 else
6404 noinputmodules="ftp $noinputmodules"
6405 def_ftp='#undef CONFIG_FTP'
6407 echores "$_ftp"
6409 echocheck "vstream client"
6410 if test "$_vstream" = auto ; then
6411 _vstream=no
6412 cat > $TMPC <<EOF
6413 #include <vstream-client.h>
6414 void vstream_error(const char *format, ... ) {}
6415 int main(void) { vstream_start(); return 0; }
6417 cc_check -lvstream-client && _vstream=yes
6419 if test "$_vstream" = yes ; then
6420 def_vstream='#define CONFIG_VSTREAM 1'
6421 inputmodules="vstream $inputmodules"
6422 extra_ldflags="$extra_ldflags -lvstream-client"
6423 else
6424 noinputmodules="vstream $noinputmodules"
6425 def_vstream='#undef CONFIG_VSTREAM'
6427 echores "$_vstream"
6430 echocheck "OSD menu"
6431 if test "$_menu" = yes ; then
6432 def_menu='#define CONFIG_MENU 1'
6433 test $_dvbin = "yes" && _menu_dvbin=yes
6434 else
6435 def_menu='#undef CONFIG_MENU'
6436 _menu_dvbin=no
6438 echores "$_menu"
6441 echocheck "Subtitles sorting"
6442 if test "$_sortsub" = yes ; then
6443 def_sortsub='#define CONFIG_SORTSUB 1'
6444 else
6445 def_sortsub='#undef CONFIG_SORTSUB'
6447 echores "$_sortsub"
6450 echocheck "XMMS inputplugin support"
6451 if test "$_xmms" = yes ; then
6452 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6453 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6454 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6455 else
6456 _xmmsplugindir=/usr/lib/xmms/Input
6457 _xmmslibdir=/usr/lib
6460 def_xmms='#define CONFIG_XMMS 1'
6461 if darwin ; then
6462 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6463 else
6464 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6466 else
6467 def_xmms='#undef CONFIG_XMMS'
6469 echores "$_xmms"
6471 if test "$_charset" != "noconv" ; then
6472 def_charset="#define MSG_CHARSET \"$_charset\""
6473 else
6474 def_charset="#undef MSG_CHARSET"
6475 _charset="UTF-8"
6478 #############################################################################
6480 echocheck "automatic gdb attach"
6481 if test "$_crash_debug" = yes ; then
6482 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6483 else
6484 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6485 _crash_debug=no
6487 echores "$_crash_debug"
6489 echocheck "compiler support for noexecstack"
6490 if cflag_check -Wl,-z,noexecstack ; then
6491 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6492 echores "yes"
6493 else
6494 echores "no"
6497 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6498 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6499 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6500 echores "yes"
6501 else
6502 echores "no"
6506 # Dynamic linking flags
6507 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6508 _ld_dl_dynamic=''
6509 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6510 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6511 _ld_dl_dynamic='-rdynamic'
6514 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6515 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6516 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6518 def_debug='#undef MP_DEBUG'
6519 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6522 echocheck "joystick"
6523 def_joystick='#undef CONFIG_JOYSTICK'
6524 if test "$_joystick" = yes ; then
6525 if linux || freebsd ; then
6526 # TODO add some check
6527 def_joystick='#define CONFIG_JOYSTICK 1'
6528 else
6529 _joystick="no"
6530 res_comment="unsupported under $system_name"
6533 echores "$_joystick"
6535 echocheck "lirc"
6536 if test "$_lirc" = auto ; then
6537 _lirc=no
6538 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6540 if test "$_lirc" = yes ; then
6541 def_lirc='#define CONFIG_LIRC 1'
6542 libs_mplayer="$libs_mplayer -llirc_client"
6543 else
6544 def_lirc='#undef CONFIG_LIRC'
6546 echores "$_lirc"
6548 echocheck "lircc"
6549 if test "$_lircc" = auto ; then
6550 _lircc=no
6551 header_check lirc/lircc.h -llircc && _lircc=yes
6553 if test "$_lircc" = yes ; then
6554 def_lircc='#define CONFIG_LIRCC 1'
6555 libs_mplayer="$libs_mplayer -llircc"
6556 else
6557 def_lircc='#undef CONFIG_LIRCC'
6559 echores "$_lircc"
6561 #############################################################################
6563 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6564 # the OMF format needs to come after the 'extern symbol prefix' check, which
6565 # uses nm.
6566 if os2 ; then
6567 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6570 #############################################################################
6572 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6574 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6576 # This must be the last test to be performed. Any other tests following it
6577 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6578 # against libdvdread (to permit MPlayer to use its own copy of the library).
6579 # So any compilation using the flags added here but not linking against
6580 # libdvdread can fail.
6581 echocheck "DVD support (libdvdnav)"
6582 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6583 _dvdnav=no
6585 dvdnav_internal=no
6586 if test "$_dvdnav" = auto ; then
6587 if test "$_dvdread_internal" = yes ; then
6588 _dvdnav=yes
6589 dvdnav_internal=yes
6590 res_comment="internal"
6591 else
6592 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6595 if test "$_dvdnav" = auto ; then
6596 _dvdnav=no
6597 _dvdnavdir=$($_dvdnavconfig --cflags)
6598 _dvdnavlibs=$($_dvdnavconfig --libs)
6599 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6601 if test "$_dvdnav" = yes ; then
6602 def_dvdnav='#define CONFIG_DVDNAV 1'
6603 if test "$dvdnav_internal" = yes ; then
6604 cflags_libdvdnav="-Ilibdvdnav"
6605 inputmodules="dvdnav(internal) $inputmodules"
6606 else
6607 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6608 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6609 inputmodules="dvdnav $inputmodules"
6611 else
6612 def_dvdnav='#undef CONFIG_DVDNAV'
6613 noinputmodules="dvdnav $noinputmodules"
6615 echores "$_dvdnav"
6617 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6618 # Read dvdnav comment above.
6620 mak_enable () {
6621 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6622 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6623 nprefix=$3;
6624 for part in $list; do
6625 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6626 echo "${nprefix}_$part = yes"
6628 done
6631 #############################################################################
6632 echo "Creating config.mak"
6633 cat > config.mak << EOF
6634 # -------- Generated by configure -----------
6636 # Ensure that locale settings do not interfere with shell commands.
6637 export LC_ALL = C
6639 CONFIGURATION = $configuration
6641 CHARSET = $_charset
6642 DOC_LANGS = $language_doc
6643 DOC_LANG_ALL = $doc_lang_all
6644 MAN_LANGS = $language_man
6645 MAN_LANG_ALL = $man_lang_all
6646 MSG_LANGS = $language_msg
6647 MSG_LANG_ALL = $msg_lang_all
6649 prefix = \$(DESTDIR)$_prefix
6650 BINDIR = \$(DESTDIR)$_bindir
6651 DATADIR = \$(DESTDIR)$_datadir
6652 LIBDIR = \$(DESTDIR)$_libdir
6653 MANDIR = \$(DESTDIR)$_mandir
6654 CONFDIR = \$(DESTDIR)$_confdir
6655 LOCALEDIR = \$(DESTDIR)$_localedir
6657 AR = $_ar
6658 AS = $_cc
6659 CC = $_cc
6660 CXX = $_cc
6661 HOST_CC = $_host_cc
6662 INSTALL = $_install
6663 INSTALLSTRIP = $_install_strip
6664 WINDRES = $_windres
6666 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6667 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6668 DEPFLAGS = $DEPFLAGS
6670 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6671 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6672 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6673 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6674 CFLAGS_STACKREALIGN = $cflags_stackrealign
6676 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6677 EXTRALIBS_MPLAYER = $libs_mplayer
6679 GETCH = $_getch
6680 TIMER = $_timer
6682 EXESUF = $_exesuf
6683 EXESUFS_ALL = .exe
6685 ARCH = $arch
6686 $(mak_enable "$arch_all" "$arch" ARCH)
6687 $(mak_enable "$subarch_all" "$subarch" ARCH)
6688 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6690 MPLAYER = $_mplayer
6692 NEED_GETTIMEOFDAY = $need_gettimeofday
6693 NEED_GLOB = $need_glob
6694 NEED_MMAP = $need_mmap
6695 NEED_SETENV = $need_setenv
6696 NEED_SHMEM = $need_shmem
6697 NEED_STRSEP = $need_strsep
6698 NEED_SWAB = $need_swab
6699 NEED_VSSCANF = $need_vsscanf
6701 # features
6702 3DFX = $_3dfx
6703 AA = $_aa
6704 ALSA1X = $_alsa1x
6705 ALSA9 = $_alsa9
6706 ALSA5 = $_alsa5
6707 APPLE_IR = $_apple_ir
6708 APPLE_REMOTE = $_apple_remote
6709 ARTS = $_arts
6710 AUDIO_INPUT = $_audio_input
6711 BITMAP_FONT = $_bitmap_font
6712 BL = $_bl
6713 CACA = $_caca
6714 CDDA = $_cdda
6715 CDDB = $_cddb
6716 COREAUDIO = $_coreaudio
6717 COREVIDEO = $_corevideo
6718 DART = $_dart
6719 DGA = $_dga
6720 DIRECT3D = $_direct3d
6721 DIRECTFB = $_directfb
6722 DIRECTX = $_directx
6723 DVBIN = $_dvbin
6724 DVDNAV = $_dvdnav
6725 DVDNAV_INTERNAL = $dvdnav_internal
6726 DVDREAD = $_dvdread
6727 DVDREAD_INTERNAL = $_dvdread_internal
6728 DXR3 = $_dxr3
6729 ESD = $_esd
6730 FAAD = $_faad
6731 FASTMEMCPY = $_fastmemcpy
6732 FBDEV = $_fbdev
6733 FREETYPE = $_freetype
6734 FTP = $_ftp
6735 GIF = $_gif
6736 GGI = $_ggi
6737 GL = $_gl
6738 GL_WIN32 = $_gl_win32
6739 GL_X11 = $_gl_x11
6740 GL_SDL = $_gl_sdl
6741 MATRIXVIEW = $matrixview
6742 HAVE_POSIX_SELECT = $_posix_select
6743 HAVE_SYS_MMAN_H = $_mman
6744 IVTV = $_ivtv
6745 JACK = $_jack
6746 JOYSTICK = $_joystick
6747 JPEG = $_jpeg
6748 KAI = $_kai
6749 KVA = $_kva
6750 LADSPA = $_ladspa
6751 LIBA52 = $_liba52
6752 LIBASS = $_ass
6753 LIBBLURAY = $_bluray
6754 LIBBS2B = $_libbs2b
6755 LIBDCA = $_libdca
6756 LIBDV = $_libdv
6757 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6758 LIBMAD = $_mad
6759 LIBMENU = $_menu
6760 LIBMENU_DVBIN = $_menu_dvbin
6761 LIBNEMESI = $_nemesi
6762 LIBNUT = $_libnut
6763 LIBSMBCLIENT = $_smb
6764 LIBTHEORA = $_theora
6765 LIRC = $_lirc
6766 LIVE555 = $_live
6767 MACOSX_FINDER = $_macosx_finder
6768 MD5SUM = $_md5sum
6769 MGA = $_mga
6770 MNG = $_mng
6771 MPG123 = $_mpg123
6772 MUSEPACK = $_musepack
6773 NAS = $_nas
6774 NATIVE_RTSP = $_native_rtsp
6775 NETWORKING = $networking
6776 OPENAL = $_openal
6777 OSS = $_ossaudio
6778 PE_EXECUTABLE = $_pe_executable
6779 PNG = $_png
6780 PNM = $_pnm
6781 PRIORITY = $_priority
6782 PULSE = $_pulse
6783 PVR = $_pvr
6784 QTX_CODECS = $_qtx
6785 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6786 QTX_EMULATION = $_qtx_emulation
6787 QUARTZ = $_quartz
6788 RADIO=$_radio
6789 RADIO_CAPTURE=$_radio_capture
6790 REAL_CODECS = $_real
6791 RSOUND = $_rsound
6792 S3FB = $_s3fb
6793 SDL = $_sdl
6794 SPEEX = $_speex
6795 STREAM_CACHE = $_stream_cache
6796 SGIAUDIO = $_sgiaudio
6797 SUNAUDIO = $_sunaudio
6798 SVGA = $_svga
6799 TDFXFB = $_tdfxfb
6800 TDFXVID = $_tdfxvid
6801 TGA = $_tga
6802 TV = $_tv
6803 TV_BSDBT848 = $_tv_bsdbt848
6804 TV_DSHOW = $_tv_dshow
6805 TV_V4L = $_tv_v4l
6806 TV_V4L1 = $_tv_v4l1
6807 TV_V4L2 = $_tv_v4l2
6808 UNRAR_EXEC = $_unrar_exec
6809 V4L2 = $_v4l2
6810 VCD = $_vcd
6811 VDPAU = $_vdpau
6812 VESA = $_vesa
6813 VORBIS = $_vorbis
6814 VSTREAM = $_vstream
6815 WII = $_wii
6816 WIN32DLL = $_win32dll
6817 WIN32WAVEOUT = $_win32waveout
6818 WIN32_EMULATION = $_win32_emulation
6819 X11 = $_x11
6820 XANIM_CODECS = $_xanim
6821 XMGA = $_xmga
6822 XMMS_PLUGINS = $_xmms
6823 XV = $_xv
6824 XVID4 = $_xvid
6825 XVR100 = $_xvr100
6826 YUV4MPEG = $_yuv4mpeg
6828 # FFmpeg
6829 FFMPEG = $ffmpeg
6830 FFMPEG_EVAL_API = $ffmpeg_eval_api
6831 FFMPEG_INTERNALS = $ffmpeg_internals
6832 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6834 RANLIB = $_ranlib
6835 YASM = $_yasm
6836 YASMFLAGS = $YASMFLAGS
6838 CONFIG_VDPAU = $_vdpau
6839 CONFIG_ZLIB = $_zlib
6841 HAVE_PTHREADS = $_pthreads
6842 HAVE_SHM = $_shm
6843 HAVE_W32THREADS = $_w32threads
6844 HAVE_YASM = $have_yasm
6848 #############################################################################
6850 ff_config_enable () {
6851 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6852 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6853 _nprefix=$3;
6854 test -z "$_nprefix" && _nprefix='CONFIG'
6855 for part in $list; do
6856 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6857 echo "#define ${_nprefix}_$part 1"
6858 else
6859 echo "#define ${_nprefix}_$part 0"
6861 done
6864 echo "Creating config.h"
6865 cat > $TMPH << EOF
6866 /*----------------------------------------------------------------------------
6867 ** This file has been automatically generated by configure any changes in it
6868 ** will be lost when you run configure again.
6869 ** Instead of modifying definitions here, use the --enable/--disable options
6870 ** of the configure script! See ./configure --help for details.
6871 *---------------------------------------------------------------------------*/
6873 #ifndef MPLAYER_CONFIG_H
6874 #define MPLAYER_CONFIG_H
6876 /* Undefine this if you do not want to select mono audio (left or right)
6877 with a stereo MPEG layer 2/3 audio stream. The command line option
6878 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6879 right-only), with 0 being the default.
6881 #define CONFIG_FAKE_MONO 1
6883 /* set up audio OUTBURST. Do not change this! */
6884 #define OUTBURST 512
6886 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6887 #undef FAST_OSD
6888 #undef FAST_OSD_TABLE
6892 #define CONFIGURATION "$configuration"
6894 #define MPLAYER_DATADIR "$_datadir"
6895 #define MPLAYER_CONFDIR "$_confdir"
6896 #define MPLAYER_LIBDIR "$_libdir"
6897 #define MPLAYER_LOCALEDIR "$_localedir"
6899 $def_translation
6901 /* definitions needed by included libraries */
6902 #define HAVE_INTTYPES_H 1
6903 /* libdvdcss */
6904 #define HAVE_ERRNO_H 1
6905 /* libdvdcss + libdvdread */
6906 #define HAVE_LIMITS_H 1
6907 /* libdvdcss */
6908 #define HAVE_UNISTD_H 1
6909 /* libdvdread */
6910 #define STDC_HEADERS 1
6911 #define HAVE_MEMCPY 1
6912 /* libdvdnav */
6913 #define READ_CACHE_TRACE 0
6914 /* libdvdread */
6915 #define HAVE_DLFCN_H 1
6916 $def_dvdcss
6919 /* system headers */
6920 $def_alloca_h
6921 $def_alsa_asoundlib_h
6922 $def_altivec_h
6923 $def_malloc_h
6924 $def_mman_h
6925 $def_mman_has_map_failed
6926 $def_soundcard_h
6927 $def_sys_asoundlib_h
6928 $def_sys_soundcard_h
6929 $def_sys_sysinfo_h
6930 $def_sys_videoio_h
6931 $def_termios_h
6932 $def_termios_sys_h
6933 $def_winsock2_h
6936 /* system functions */
6937 $def_gethostbyname2
6938 $def_gettimeofday
6939 $def_glob
6940 $def_langinfo
6941 $def_lrintf
6942 $def_map_memalign
6943 $def_memalign
6944 $def_nanosleep
6945 $def_posix_select
6946 $def_select
6947 $def_setenv
6948 $def_setmode
6949 $def_shm
6950 $def_strsep
6951 $def_swab
6952 $def_sysi86
6953 $def_sysi86_iv
6954 $def_termcap
6955 $def_termios
6956 $def_vsscanf
6959 /* system-specific features */
6960 $def_asmalign_pot
6961 $def_builtin_expect
6962 $def_dl
6963 $def_dos_paths
6964 $def_extern_asm
6965 $def_extern_prefix
6966 $def_iconv
6967 $def_kstat
6968 $def_macosx_bundle
6969 $def_macosx_finder
6970 $def_priority
6971 $def_quicktime
6972 $def_restrict_keyword
6973 $def_rtc
6974 $def_unrar_exec
6977 /* configurable options */
6978 $def_charset
6979 $def_crash_debug
6980 $def_debug
6981 $def_dynamic_plugins
6982 $def_fastmemcpy
6983 $def_menu
6984 $def_runtime_cpudetection
6985 $def_sighandler
6986 $def_sortsub
6987 $def_stream_cache
6988 $def_pthread_cache
6991 /* CPU stuff */
6992 #define __CPU__ $iproc
6993 $def_ebx_available
6994 $def_words_endian
6995 $def_bigendian
6996 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6997 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6998 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7001 /* Blu-ray/DVD/VCD/CD */
7002 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7003 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7004 $def_bluray
7005 $def_bsdi_dvd
7006 $def_cddb
7007 $def_cdio
7008 $def_cdparanoia
7009 $def_cdrom
7010 $def_dvd
7011 $def_dvd_bsd
7012 $def_dvd_darwin
7013 $def_dvd_linux
7014 $def_dvd_openbsd
7015 $def_dvdio
7016 $def_dvdnav
7017 $def_dvdread
7018 $def_hpux_scsi_h
7019 $def_libcdio
7020 $def_sol_scsi_h
7021 $def_vcd
7024 /* codec libraries */
7025 $def_faad
7026 $def_liba52
7027 $def_libdca
7028 $def_libdv
7029 $def_mad
7030 $def_mpg123
7031 $def_musepack
7032 $def_speex
7033 $def_theora
7034 $def_tremor
7035 $def_vorbis
7036 $def_xvid
7037 $def_zlib
7039 $def_libnut
7042 /* binary codecs */
7043 $def_qtx
7044 $def_qtx_win32
7045 $def_real
7046 $def_win32_loader
7047 $def_win32dll
7048 $def_xanim
7049 $def_xmms
7050 #define BINARY_CODECS_PATH "$_codecsdir"
7051 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7054 /* Audio output drivers */
7055 $def_alsa
7056 $def_alsa1x
7057 $def_alsa5
7058 $def_alsa9
7059 $def_arts
7060 $def_coreaudio
7061 $def_dart
7062 $def_esd
7063 $def_esd_latency
7064 $def_jack
7065 $def_kai
7066 $def_nas
7067 $def_openal
7068 $def_openal_h
7069 $def_ossaudio
7070 $def_ossaudio_devdsp
7071 $def_ossaudio_devmixer
7072 $def_pulse
7073 $def_rsound
7074 $def_sgiaudio
7075 $def_sunaudio
7076 $def_win32waveout
7078 $def_ladspa
7079 $def_libbs2b
7082 /* input */
7083 $def_apple_ir
7084 $def_apple_remote
7085 $def_ioctl_bt848_h_name
7086 $def_ioctl_meteor_h_name
7087 $def_joystick
7088 $def_lirc
7089 $def_lircc
7090 $def_pvr
7091 $def_radio
7092 $def_radio_bsdbt848
7093 $def_radio_capture
7094 $def_radio_v4l
7095 $def_radio_v4l2
7096 $def_tv
7097 $def_tv_bsdbt848
7098 $def_tv_dshow
7099 $def_tv_v4l
7100 $def_tv_v4l1
7101 $def_tv_v4l2
7104 /* font stuff */
7105 $def_ass
7106 $def_bitmap_font
7107 $def_enca
7108 $def_fontconfig
7109 $def_freetype
7110 $def_fribidi
7113 /* networking */
7114 $def_closesocket
7115 $def_ftp
7116 $def_inet6
7117 $def_inet_aton
7118 $def_inet_pton
7119 $def_live
7120 $def_nemesi
7121 $def_networking
7122 $def_smb
7123 $def_socklen_t
7124 $def_vstream
7127 /* libvo options */
7128 $def_3dfx
7129 $def_aa
7130 $def_bl
7131 $def_caca
7132 $def_corevideo
7133 $def_dga
7134 $def_dga1
7135 $def_dga2
7136 $def_direct3d
7137 $def_directfb
7138 $def_directx
7139 $def_dvb
7140 $def_dvbin
7141 $def_dxr3
7142 $def_fbdev
7143 $def_ggi
7144 $def_ggiwmh
7145 $def_gif
7146 $def_gif_4
7147 $def_gif_tvt_hack
7148 $def_gl
7149 $def_gl_win32
7150 $def_gl_x11
7151 $def_gl_sdl
7152 $def_matrixview
7153 $def_ivtv
7154 $def_jpeg
7155 $def_kva
7156 $def_md5sum
7157 $def_mga
7158 $def_mng
7159 $def_png
7160 $def_pnm
7161 $def_quartz
7162 $def_s3fb
7163 $def_sdl
7164 $def_sdl_sdl_h
7165 $def_svga
7166 $def_tdfxfb
7167 $def_tdfxvid
7168 $def_tga
7169 $def_v4l2
7170 $def_vdpau
7171 $def_vesa
7172 $def_vm
7173 $def_wii
7174 $def_x11
7175 $def_xdpms
7176 $def_xf86keysym
7177 $def_xinerama
7178 $def_xmga
7179 $def_xss
7180 $def_xv
7181 $def_xvr100
7182 $def_yuv4mpeg
7185 /* FFmpeg */
7186 $def_ffmpeg
7187 $def_ffmpeg_eval_api
7188 $def_ffmpeg_internals
7190 $def_arpa_inet_h
7191 $def_bswap
7192 $def_dcbzl
7193 $def_exp2
7194 $def_exp2f
7195 $def_fast_64bit
7196 $def_fast_unaligned
7197 $def_llrint
7198 $def_log2
7199 $def_log2f
7200 $def_lrint
7201 $def_memalign_hack
7202 $def_mkstemp
7203 $def_posix_memalign
7204 $def_pthreads
7205 $def_round
7206 $def_roundf
7207 $def_threads
7208 $def_truncf
7209 $def_xform_asm
7210 $def_yasm
7212 #define HAVE_INLINE_ASM 1
7214 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7215 #ifndef MP_DEBUG
7216 #define HAVE_EBP_AVAILABLE 1
7217 #else
7218 #define HAVE_EBP_AVAILABLE 0
7219 #endif
7221 #endif /* MPLAYER_CONFIG_H */
7224 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7225 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7227 #############################################################################
7229 cat << EOF
7231 Config files successfully generated by ./configure $configuration !
7233 Install prefix: $_prefix
7234 Data directory: $_datadir
7235 Config direct.: $_confdir
7237 Byte order: $_byte_order
7238 Optimizing for: $_optimizing
7240 Languages:
7241 Messages (in addition to English): $language_msg
7242 Manual pages: $language_man
7243 Documentation: $language_doc
7245 Enabled optional drivers:
7246 Input: $inputmodules
7247 Codecs: $codecmodules
7248 Audio output: $aomodules
7249 Video output: $vomodules
7251 Disabled optional drivers:
7252 Input: $noinputmodules
7253 Codecs: $nocodecmodules
7254 Audio output: $noaomodules
7255 Video output: $novomodules
7257 'config.h' and 'config.mak' contain your configuration options.
7258 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7259 compile *** DO NOT REPORT BUGS if you tweak these files ***
7261 'make' will now compile MPlayer and 'make install' will install it.
7262 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7267 if test "$_mtrr" = yes ; then
7268 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7269 echo
7272 if ! x86_32; then
7273 cat <<EOF
7274 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7275 operating system ($system_name). You may encounter a few files that cannot
7276 be played due to missing open source video/audio codec support.
7282 cat <<EOF
7283 Check $TMPLOG if you wonder why an autodetection failed (make sure
7284 development headers/packages are installed).
7286 NOTE: The --enable-* parameters unconditionally force options on, completely
7287 skipping autodetection. This behavior is unlike what you may be used to from
7288 autoconf-based configure scripts that can decide to override you. This greater
7289 level of control comes at a price. You may have to provide the correct compiler
7290 and linker flags yourself.
7291 If you used one of these options (except --enable-menu and similar ones that
7292 turn on internal features) and experience a compilation or linking failure,
7293 make sure you have passed the necessary compiler/linker flags to configure.
7295 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7299 if test "$warn_cflags" = yes; then
7300 cat <<EOF
7302 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7303 but:
7305 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7307 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7308 To do so, execute 'CFLAGS= ./configure <options>'
7313 # Last move:
7314 rm -rf "$mplayer_tmpdir"