libvo: change default window title to "mplayer2"
[mplayer.git] / configure
blobfb9249d68e4ff9c88ffadef5126cd1a1d3d3dfa2
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 --disable-sortsub disable subtitle sorting [enabled]
338 --enable-fribidi enable the FriBiDi libs [autodetect]
339 --disable-enca disable ENCA charset oracle library [autodetect]
340 --enable-macosx-finder enable Mac OS X Finder invocation parameter
341 parsing [disabled]
342 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
343 --disable-inet6 disable IPv6 support [autodetect]
344 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
345 --disable-ftp disable FTP support [enabled]
346 --disable-vstream disable TiVo vstream client support [autodetect]
347 --disable-pthreads disable Posix threads support [autodetect]
348 --disable-w32threads disable Win32 threads support [autodetect]
349 --disable-libass disable subtitle rendering with libass [autodetect]
350 --enable-rpath enable runtime linker path for extra libs [disabled]
352 Codecs:
353 --enable-gif enable GIF support [autodetect]
354 --enable-png enable PNG input/output support [autodetect]
355 --enable-mng enable MNG input support [autodetect]
356 --enable-jpeg enable JPEG input/output support [autodetect]
357 --enable-libcdio enable libcdio support [autodetect]
358 --disable-win32dll disable Win32 DLL support [autodetect]
359 --disable-qtx disable QuickTime codecs support [enabled]
360 --disable-xanim disable XAnim codecs support [enabled]
361 --disable-real disable RealPlayer codecs support [enabled]
362 --disable-xvid disable Xvid [autodetect]
363 --disable-libnut disable libnut [autodetect]
364 --disable-libav disable Libav [autodetect]
365 --disable-libvorbis disable libvorbis support [autodetect]
366 --disable-tremor disable Tremor [autodetect if no libvorbis]
367 --disable-speex disable Speex support [autodetect]
368 --enable-theora enable OggTheora libraries [autodetect]
369 --enable-faad enable FAAD2 (AAC) [autodetect]
370 --disable-ladspa disable LADSPA plugin support [autodetect]
371 --disable-libbs2b disable libbs2b audio filter support [autodetect]
372 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
373 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
374 --disable-mad disable libmad (MPEG audio) support [autodetect]
375 --enable-xmms enable XMMS input plugin support [disabled]
376 --enable-libdca enable libdca support [autodetect]
377 --disable-liba52 disable liba52 [autodetect]
378 --enable-musepack enable libmpcdec support (deprecated, libavcodec
379 Musepack decoder is preferred) [disabled]
381 Video output:
382 --enable-gl enable OpenGL video output [autodetect]
383 --enable-dga2 enable DGA 2 support [autodetect]
384 --enable-dga1 enable DGA 1 support [autodetect]
385 --enable-vesa enable VESA video output [autodetect]
386 --enable-svga enable SVGAlib video output [autodetect]
387 --enable-sdl enable SDL video output [autodetect]
388 --enable-kva enable KVA video output [autodetect]
389 --enable-aa enable AAlib video output [autodetect]
390 --enable-caca enable CACA video output [autodetect]
391 --enable-ggi enable GGI video output [autodetect]
392 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
393 --enable-direct3d enable Direct3D video output [autodetect]
394 --enable-directx enable DirectX video output [autodetect]
395 --enable-dxr3 enable DXR3/H+ video output [autodetect]
396 --enable-ivtv enable IVTV TV-Out video output [autodetect]
397 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
398 --enable-dvb enable DVB video output [autodetect]
399 --enable-mga enable mga_vid video output [autodetect]
400 --enable-xmga enable mga_vid X11 video output [autodetect]
401 --enable-xv enable Xv video output [autodetect]
402 --enable-vdpau enable VDPAU acceleration [autodetect]
403 --enable-vm enable XF86VidMode support [autodetect]
404 --enable-xinerama enable Xinerama support [autodetect]
405 --enable-x11 enable X11 video output [autodetect]
406 --enable-xshape enable XShape support [autodetect]
407 --disable-xss disable screensaver support via xss [autodetect]
408 --enable-fbdev enable FBDev video output [autodetect]
409 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
410 --enable-tdfxfb enable tdfxfb video output [disable]
411 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
412 --enable-wii enable Nintendo Wii/GameCube video output [disable]
413 --enable-directfb enable DirectFB video output [autodetect]
414 --enable-bl enable Blinkenlights video output [disable]
415 --enable-tdfxvid enable tdfx_vid video output [disable]
416 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
417 --disable-tga disable Targa video output [enable]
418 --disable-pnm disable PNM video output [enable]
419 --disable-md5sum disable md5sum video output [enable]
420 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
421 --disable-corevideo disable CoreVideo video output [autodetect]
422 --disable-cocoa disable Cocoa OpenGL backend [autodetect]
423 --disable-quartz disable Quartz video output [autodetect]
425 Audio output:
426 --disable-alsa disable ALSA audio output [autodetect]
427 --disable-ossaudio disable OSS audio output [autodetect]
428 --disable-arts disable aRts audio output [autodetect]
429 --disable-esd disable esd audio output [autodetect]
430 --disable-rsound disable RSound audio output [autodetect]
431 --disable-pulse disable Pulseaudio audio output [autodetect]
432 --disable-jack disable JACK audio output [autodetect]
433 --enable-openal enable OpenAL audio output [disable]
434 --disable-nas disable NAS audio output [autodetect]
435 --disable-sgiaudio disable SGI audio output [autodetect]
436 --disable-sunaudio disable Sun audio output [autodetect]
437 --disable-kai disable KAI audio output [autodetect]
438 --disable-dart disable DART audio output [autodetect]
439 --disable-win32waveout disable Windows waveout audio output [autodetect]
440 --disable-coreaudio disable CoreAudio audio output [autodetect]
441 --disable-select disable using select() on the audio device [enable]
443 Language options:
444 --enable-translation enable support for translated output [disable]
445 --charset=charset convert the console messages to this character set
446 --language-doc=lang language to use for the documentation [en]
447 --language-man=lang language to use for the man pages [en]
448 --language-msg=lang extra languages for program messages [all]
449 --language=lang default language to use [en]
450 Specific options override --language. You can pass a list of languages separated
451 by whitespace or commas instead of a single language. Nonexisting translations
452 will be dropped from each list. All translations available in the list will be
453 installed. The value "all" will activate all translations. The LINGUAS
454 environment variable is honored. In all cases the fallback is English.
455 The program always supports English-language output; additional message
456 languages are only installed if --enable-translation is also specified.
457 Available values for --language-doc are: all $doc_lang_all
458 Available values for --language-man are: all $man_lang_all
459 Available values for --language-msg are: all $msg_lang_all
461 Miscellaneous options:
462 --enable-runtime-cpudetection enable runtime CPU detection [disable]
463 --enable-cross-compile enable cross-compilation [autodetect]
464 --cc=COMPILER C compiler to build MPlayer [gcc]
465 --host-cc=COMPILER C compiler for tools needed while building [gcc]
466 --as=ASSEMBLER assembler to build MPlayer [as]
467 --nm=NM nm tool to build MPlayer [nm]
468 --yasm=YASM Yasm assembler to build MPlayer [yasm]
469 --ar=AR librarian to build MPlayer [ar]
470 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
471 --windres=WINDRES windres to build MPlayer [windres]
472 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
473 --enable-static build a statically linked binary
474 --with-install=PATH path to a custom install program
476 Advanced options:
477 --enable-mmx enable MMX [autodetect]
478 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
479 --enable-3dnow enable 3DNow! [autodetect]
480 --enable-3dnowext enable extended 3DNow! [autodetect]
481 --enable-sse enable SSE [autodetect]
482 --enable-sse2 enable SSE2 [autodetect]
483 --enable-ssse3 enable SSSE3 [autodetect]
484 --enable-shm enable shm [autodetect]
485 --enable-altivec enable AltiVec (PowerPC) [autodetect]
486 --enable-armv5te enable DSP extensions (ARM) [autodetect]
487 --enable-armv6 enable ARMv6 (ARM) [autodetect]
488 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
489 --enable-armvfp enable ARM VFP (ARM) [autodetect]
490 --enable-neon enable NEON (ARM) [autodetect]
491 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
492 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
493 --enable-big-endian force byte order to big-endian [autodetect]
494 --enable-debug[=1-3] compile-in debugging information [disable]
495 --enable-profile compile-in profiling information [disable]
496 --disable-sighandler disable sighandler for crashes [enable]
497 --enable-crash-debug enable automatic gdb attach on crash [disable]
499 Use these options if autodetection fails:
500 --extra-cflags=FLAGS extra CFLAGS
501 --extra-ldflags=FLAGS extra LDFLAGS
502 --extra-libs=FLAGS extra linker flags
503 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
505 --with-freetype-config=PATH path to freetype-config
506 --with-sdl-config=PATH path to sdl*-config
507 --with-dvdnav-config=PATH path to dvdnav-config
508 --with-dvdread-config=PATH path to dvdread-config
510 This configure script is NOT autoconf-based, even though its output is similar.
511 It will try to autodetect all configuration options. If you --enable an option
512 it will be forcefully turned on, skipping autodetection. This can break
513 compilation, so you need to know what you are doing.
515 exit 0
516 } #show_help()
518 # GOTCHA: the variables below defines the default behavior for autodetection
519 # and have - unless stated otherwise - at least 2 states : yes no
520 # If autodetection is available then the third state is: auto
521 _mmx=auto
522 _3dnow=auto
523 _3dnowext=auto
524 _mmxext=auto
525 _sse=auto
526 _sse2=auto
527 _ssse3=auto
528 _cmov=auto
529 _fast_cmov=auto
530 _fast_clz=auto
531 _armv5te=auto
532 _armv6=auto
533 _armv6t2=auto
534 _armvfp=auto
535 neon=auto
536 _iwmmxt=auto
537 _mtrr=auto
538 _altivec=auto
539 _install=install
540 _ranlib=ranlib
541 _windres=windres
542 _cc=cc
543 _ar=ar
544 test "$CC" && _cc="$CC"
545 _as=auto
546 _nm=auto
547 _yasm=yasm
548 _runtime_cpudetection=no
549 _cross_compile=auto
550 _prefix="/usr/local"
551 ffmpeg=auto
552 ffmpeg_internals=no
553 _mplayer=yes
554 _x11=auto
555 _xshape=auto
556 _xss=auto
557 _dga1=auto
558 _dga2=auto
559 _xv=auto
560 _vdpau=auto
561 _sdl=auto
562 _kva=auto
563 _direct3d=auto
564 _directx=auto
565 _win32waveout=auto
566 _nas=auto
567 _png=auto
568 _mng=auto
569 _jpeg=auto
570 _pnm=yes
571 _md5sum=yes
572 _yuv4mpeg=yes
573 _gif=auto
574 _gl=auto
575 _ggi=auto
576 _ggiwmh=auto
577 _aa=auto
578 _caca=auto
579 _svga=auto
580 _vesa=auto
581 _fbdev=auto
582 _dvb=auto
583 _dxr3=auto
584 _ivtv=auto
585 _v4l2=auto
586 _iconv=auto
587 _langinfo=auto
588 _rtc=auto
589 _ossaudio=auto
590 _arts=auto
591 _esd=auto
592 _rsound=auto
593 _pulse=auto
594 _jack=auto
595 _kai=auto
596 _dart=auto
597 _openal=no
598 _libcdio=auto
599 _mad=auto
600 _tremor=auto
601 _libvorbis=auto
602 _speex=auto
603 _theora=auto
604 _mpg123=auto
605 _liba52=auto
606 _libdca=auto
607 _faad=auto
608 _ladspa=auto
609 _libbs2b=auto
610 _xmms=no
611 _vcd=auto
612 _bluray=auto
613 _dvdnav=auto
614 _dvdnavconfig=dvdnav-config
615 _dvdreadconfig=dvdread-config
616 _dvdread=auto
617 _dvdread_internal=auto
618 _libdvdcss_internal=auto
619 _xanim=auto
620 _real=auto
621 _live=auto
622 _nemesi=auto
623 _native_rtsp=yes
624 _xinerama=auto
625 _mga=auto
626 _xmga=auto
627 _vm=auto
628 _xf86keysym=auto
629 _sgiaudio=auto
630 _sunaudio=auto
631 _alsa=auto
632 _fastmemcpy=yes
633 _unrar_exec=auto
634 _win32dll=auto
635 _select=yes
636 _radio=no
637 _radio_capture=no
638 _radio_v4l=auto
639 _radio_v4l2=auto
640 _radio_bsdbt848=auto
641 _tv=yes
642 _tv_v4l1=auto
643 _tv_v4l2=auto
644 _tv_bsdbt848=auto
645 _tv_dshow=auto
646 _pvr=auto
647 networking=yes
648 _winsock2_h=auto
649 _smb=auto
650 _joystick=no
651 _xvid=auto
652 _libnut=auto
653 _lirc=auto
654 _lircc=auto
655 _apple_remote=auto
656 _apple_ir=auto
657 _termcap=auto
658 _termios=auto
659 _3dfx=no
660 _s3fb=no
661 _wii=no
662 _tdfxfb=no
663 _tdfxvid=no
664 _xvr100=auto
665 _tga=yes
666 _directfb=auto
667 _bl=no
668 #language=en
669 _shm=auto
670 _translation=no
671 _charset="UTF-8"
672 _crash_debug=no
673 _sighandler=yes
674 _libdv=auto
675 _cdparanoia=auto
676 _cddb=auto
677 _big_endian=auto
678 _bitmap_font=yes
679 _freetype=auto
680 _fontconfig=auto
681 _qtx=auto
682 _coreaudio=auto
683 _corevideo=auto
684 _cocoa=auto
685 _quartz=auto
686 quicktime=auto
687 _macosx_finder=no
688 _macosx_bundle=auto
689 _sortsub=yes
690 _freetypeconfig='freetype-config'
691 _fribidi=auto
692 _enca=auto
693 _inet6=auto
694 _gethostbyname2=auto
695 _ftp=auto
696 _musepack=no
697 _vstream=auto
698 _pthreads=auto
699 _w32threads=auto
700 _ass=auto
701 _rpath=no
702 _asmalign_pot=auto
703 _stream_cache=yes
704 _priority=no
705 def_dos_paths="#define HAVE_DOS_PATHS 0"
706 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
707 def_priority="#undef CONFIG_PRIORITY"
708 def_pthread_cache="#undef PTHREAD_CACHE"
709 need_shmem=yes
710 for ac_option do
711 case "$ac_option" in
712 --help|-help|-h)
713 show_help
715 --prefix=*)
716 _prefix=$(echo $ac_option | cut -d '=' -f 2)
718 --bindir=*)
719 _bindir=$(echo $ac_option | cut -d '=' -f 2)
721 --datadir=*)
722 _datadir=$(echo $ac_option | cut -d '=' -f 2)
724 --mandir=*)
725 _mandir=$(echo $ac_option | cut -d '=' -f 2)
727 --confdir=*)
728 _confdir=$(echo $ac_option | cut -d '=' -f 2)
730 --libdir=*)
731 _libdir=$(echo $ac_option | cut -d '=' -f 2)
733 --codecsdir=*)
734 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
736 --localedir=*)
737 _localedir=$(echo $ac_option | cut -d '=' -f 2)
740 --with-install=*)
741 _install=$(echo $ac_option | cut -d '=' -f 2 )
744 --with-sdl-config=*)
745 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
747 --with-freetype-config=*)
748 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
750 --with-dvdnav-config=*)
751 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
753 --with-dvdread-config=*)
754 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --extra-cflags=*)
758 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
760 --extra-ldflags=*)
761 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
763 --extra-libs=*)
764 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
766 --extra-libs-mplayer=*)
767 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
770 --target=*)
771 _target=$(echo $ac_option | cut -d '=' -f 2)
773 --cc=*)
774 _cc=$(echo $ac_option | cut -d '=' -f 2)
776 --host-cc=*)
777 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
779 --as=*)
780 _as=$(echo $ac_option | cut -d '=' -f 2)
782 --nm=*)
783 _nm=$(echo $ac_option | cut -d '=' -f 2)
785 --yasm=*)
786 _yasm=$(echo $ac_option | cut -d '=' -f 2)
788 --ar=*)
789 _ar=$(echo $ac_option | cut -d '=' -f 2)
791 --ranlib=*)
792 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
794 --windres=*)
795 _windres=$(echo $ac_option | cut -d '=' -f 2)
797 --charset=*)
798 _charset=$(echo $ac_option | cut -d '=' -f 2)
800 --language-doc=*)
801 language_doc=$(echo $ac_option | cut -d '=' -f 2)
803 --language-man=*)
804 language_man=$(echo $ac_option | cut -d '=' -f 2)
806 --language-msg=*)
807 language_msg=$(echo $ac_option | cut -d '=' -f 2)
809 --language=*)
810 language=$(echo $ac_option | cut -d '=' -f 2)
813 --enable-static)
814 _ld_static='-static'
816 --disable-static)
817 _ld_static=''
819 --enable-profile)
820 _profile='-p'
822 --disable-profile)
823 _profile=
825 --enable-debug)
826 _debug='-g'
828 --enable-debug=*)
829 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
831 --disable-debug)
832 _debug=
834 --enable-translation) _translation=yes ;;
835 --disable-translation) _translation=no ;;
836 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
837 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
838 --enable-cross-compile) _cross_compile=yes ;;
839 --disable-cross-compile) _cross_compile=no ;;
840 --enable-mplayer) _mplayer=yes ;;
841 --disable-mplayer) _mplayer=no ;;
842 --enable-x11) _x11=yes ;;
843 --disable-x11) _x11=no ;;
844 --enable-xshape) _xshape=yes ;;
845 --disable-xshape) _xshape=no ;;
846 --enable-xss) _xss=yes ;;
847 --disable-xss) _xss=no ;;
848 --enable-xv) _xv=yes ;;
849 --disable-xv) _xv=no ;;
850 --enable-vdpau) _vdpau=yes ;;
851 --disable-vdpau) _vdpau=no ;;
852 --enable-sdl) _sdl=yes ;;
853 --disable-sdl) _sdl=no ;;
854 --enable-kva) _kva=yes ;;
855 --disable-kva) _kva=no ;;
856 --enable-direct3d) _direct3d=yes ;;
857 --disable-direct3d) _direct3d=no ;;
858 --enable-directx) _directx=yes ;;
859 --disable-directx) _directx=no ;;
860 --enable-win32waveout) _win32waveout=yes ;;
861 --disable-win32waveout) _win32waveout=no ;;
862 --enable-nas) _nas=yes ;;
863 --disable-nas) _nas=no ;;
864 --enable-png) _png=yes ;;
865 --disable-png) _png=no ;;
866 --enable-mng) _mng=yes ;;
867 --disable-mng) _mng=no ;;
868 --enable-jpeg) _jpeg=yes ;;
869 --disable-jpeg) _jpeg=no ;;
870 --enable-pnm) _pnm=yes ;;
871 --disable-pnm) _pnm=no ;;
872 --enable-md5sum) _md5sum=yes ;;
873 --disable-md5sum) _md5sum=no ;;
874 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
875 --disable-yuv4mpeg) _yuv4mpeg=no ;;
876 --enable-gif) _gif=yes ;;
877 --disable-gif) _gif=no ;;
878 --enable-gl) _gl=yes ;;
879 --disable-gl) _gl=no ;;
880 --enable-ggi) _ggi=yes ;;
881 --disable-ggi) _ggi=no ;;
882 --enable-ggiwmh) _ggiwmh=yes ;;
883 --disable-ggiwmh) _ggiwmh=no ;;
884 --enable-aa) _aa=yes ;;
885 --disable-aa) _aa=no ;;
886 --enable-caca) _caca=yes ;;
887 --disable-caca) _caca=no ;;
888 --enable-svga) _svga=yes ;;
889 --disable-svga) _svga=no ;;
890 --enable-vesa) _vesa=yes ;;
891 --disable-vesa) _vesa=no ;;
892 --enable-fbdev) _fbdev=yes ;;
893 --disable-fbdev) _fbdev=no ;;
894 --enable-dvb) _dvb=yes ;;
895 --disable-dvb) _dvb=no ;;
896 --enable-dxr3) _dxr3=yes ;;
897 --disable-dxr3) _dxr3=no ;;
898 --enable-ivtv) _ivtv=yes ;;
899 --disable-ivtv) _ivtv=no ;;
900 --enable-v4l2) _v4l2=yes ;;
901 --disable-v4l2) _v4l2=no ;;
902 --enable-iconv) _iconv=yes ;;
903 --disable-iconv) _iconv=no ;;
904 --enable-langinfo) _langinfo=yes ;;
905 --disable-langinfo) _langinfo=no ;;
906 --enable-rtc) _rtc=yes ;;
907 --disable-rtc) _rtc=no ;;
908 --enable-libdv) _libdv=yes ;;
909 --disable-libdv) _libdv=no ;;
910 --enable-ossaudio) _ossaudio=yes ;;
911 --disable-ossaudio) _ossaudio=no ;;
912 --enable-arts) _arts=yes ;;
913 --disable-arts) _arts=no ;;
914 --enable-esd) _esd=yes ;;
915 --disable-esd) _esd=no ;;
916 --enable-rsound) _rsound=yes ;;
917 --disable-rsound) _rsound=no ;;
918 --enable-pulse) _pulse=yes ;;
919 --disable-pulse) _pulse=no ;;
920 --enable-jack) _jack=yes ;;
921 --disable-jack) _jack=no ;;
922 --enable-openal) _openal=yes ;;
923 --disable-openal) _openal=no ;;
924 --enable-kai) _kai=yes ;;
925 --disable-kai) _kai=no ;;
926 --enable-dart) _dart=yes ;;
927 --disable-dart) _dart=no ;;
928 --enable-mad) _mad=yes ;;
929 --disable-mad) _mad=no ;;
930 --enable-libcdio) _libcdio=yes ;;
931 --disable-libcdio) _libcdio=no ;;
932 --enable-libvorbis) _libvorbis=yes ;;
933 --disable-libvorbis) _libvorbis=no ;;
934 --enable-speex) _speex=yes ;;
935 --disable-speex) _speex=no ;;
936 --enable-tremor) _tremor=yes ;;
937 --disable-tremor) _tremor=no ;;
938 --enable-theora) _theora=yes ;;
939 --disable-theora) _theora=no ;;
940 --enable-mpg123) _mpg123=yes ;;
941 --disable-mpg123) _mpg123=no ;;
942 --enable-liba52) _liba52=yes ;;
943 --disable-liba52) _liba52=no ;;
944 --enable-libdca) _libdca=yes ;;
945 --disable-libdca) _libdca=no ;;
946 --enable-musepack) _musepack=yes ;;
947 --disable-musepack) _musepack=no ;;
948 --enable-faad) _faad=yes ;;
949 --disable-faad) _faad=no ;;
950 --enable-ladspa) _ladspa=yes ;;
951 --disable-ladspa) _ladspa=no ;;
952 --enable-libbs2b) _libbs2b=yes ;;
953 --disable-libbs2b) _libbs2b=no ;;
954 --enable-xmms) _xmms=yes ;;
955 --disable-xmms) _xmms=no ;;
956 --enable-vcd) _vcd=yes ;;
957 --disable-vcd) _vcd=no ;;
958 --enable-bluray) _bluray=yes ;;
959 --disable-bluray) _bluray=no ;;
960 --enable-dvdread) _dvdread=yes ;;
961 --disable-dvdread) _dvdread=no ;;
962 --enable-dvdread-internal) _dvdread_internal=yes ;;
963 --disable-dvdread-internal) _dvdread_internal=no ;;
964 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
965 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
966 --enable-dvdnav) _dvdnav=yes ;;
967 --disable-dvdnav) _dvdnav=no ;;
968 --enable-xanim) _xanim=yes ;;
969 --disable-xanim) _xanim=no ;;
970 --enable-real) _real=yes ;;
971 --disable-real) _real=no ;;
972 --enable-live) _live=yes ;;
973 --disable-live) _live=no ;;
974 --enable-nemesi) _nemesi=yes ;;
975 --disable-nemesi) _nemesi=no ;;
976 --enable-xinerama) _xinerama=yes ;;
977 --disable-xinerama) _xinerama=no ;;
978 --enable-mga) _mga=yes ;;
979 --disable-mga) _mga=no ;;
980 --enable-xmga) _xmga=yes ;;
981 --disable-xmga) _xmga=no ;;
982 --enable-vm) _vm=yes ;;
983 --disable-vm) _vm=no ;;
984 --enable-xf86keysym) _xf86keysym=yes ;;
985 --disable-xf86keysym) _xf86keysym=no ;;
986 --enable-sunaudio) _sunaudio=yes ;;
987 --disable-sunaudio) _sunaudio=no ;;
988 --enable-sgiaudio) _sgiaudio=yes ;;
989 --disable-sgiaudio) _sgiaudio=no ;;
990 --enable-alsa) _alsa=yes ;;
991 --disable-alsa) _alsa=no ;;
992 --enable-tv) _tv=yes ;;
993 --disable-tv) _tv=no ;;
994 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
995 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
996 --enable-tv-v4l1) _tv_v4l1=yes ;;
997 --disable-tv-v4l1) _tv_v4l1=no ;;
998 --enable-tv-v4l2) _tv_v4l2=yes ;;
999 --disable-tv-v4l2) _tv_v4l2=no ;;
1000 --enable-tv-dshow) _tv_dshow=yes ;;
1001 --disable-tv-dshow) _tv_dshow=no ;;
1002 --enable-radio) _radio=yes ;;
1003 --enable-radio-capture) _radio_capture=yes ;;
1004 --disable-radio-capture) _radio_capture=no ;;
1005 --disable-radio) _radio=no ;;
1006 --enable-radio-v4l) _radio_v4l=yes ;;
1007 --disable-radio-v4l) _radio_v4l=no ;;
1008 --enable-radio-v4l2) _radio_v4l2=yes ;;
1009 --disable-radio-v4l2) _radio_v4l2=no ;;
1010 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1011 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1012 --enable-pvr) _pvr=yes ;;
1013 --disable-pvr) _pvr=no ;;
1014 --enable-fastmemcpy) _fastmemcpy=yes ;;
1015 --disable-fastmemcpy) _fastmemcpy=no ;;
1016 --enable-networking) networking=yes ;;
1017 --disable-networking) networking=no ;;
1018 --enable-winsock2_h) _winsock2_h=yes ;;
1019 --disable-winsock2_h) _winsock2_h=no ;;
1020 --enable-smb) _smb=yes ;;
1021 --disable-smb) _smb=no ;;
1022 --enable-joystick) _joystick=yes ;;
1023 --disable-joystick) _joystick=no ;;
1024 --enable-xvid) _xvid=yes ;;
1025 --disable-xvid) _xvid=no ;;
1026 --enable-libnut) _libnut=yes ;;
1027 --disable-libnut) _libnut=no ;;
1028 --enable-libav) ffmpeg=yes ;;
1029 --disable-libav) ffmpeg=no ;;
1030 --ffmpeg-source-dir=*)
1031 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1033 --enable-lirc) _lirc=yes ;;
1034 --disable-lirc) _lirc=no ;;
1035 --enable-lircc) _lircc=yes ;;
1036 --disable-lircc) _lircc=no ;;
1037 --enable-apple-remote) _apple_remote=yes ;;
1038 --disable-apple-remote) _apple_remote=no ;;
1039 --enable-apple-ir) _apple_ir=yes ;;
1040 --disable-apple-ir) _apple_ir=no ;;
1041 --enable-termcap) _termcap=yes ;;
1042 --disable-termcap) _termcap=no ;;
1043 --enable-termios) _termios=yes ;;
1044 --disable-termios) _termios=no ;;
1045 --enable-3dfx) _3dfx=yes ;;
1046 --disable-3dfx) _3dfx=no ;;
1047 --enable-s3fb) _s3fb=yes ;;
1048 --disable-s3fb) _s3fb=no ;;
1049 --enable-wii) _wii=yes ;;
1050 --disable-wii) _wii=no ;;
1051 --enable-tdfxfb) _tdfxfb=yes ;;
1052 --disable-tdfxfb) _tdfxfb=no ;;
1053 --disable-tdfxvid) _tdfxvid=no ;;
1054 --enable-tdfxvid) _tdfxvid=yes ;;
1055 --disable-xvr100) _xvr100=no ;;
1056 --enable-xvr100) _xvr100=yes ;;
1057 --disable-tga) _tga=no ;;
1058 --enable-tga) _tga=yes ;;
1059 --enable-directfb) _directfb=yes ;;
1060 --disable-directfb) _directfb=no ;;
1061 --enable-bl) _bl=yes ;;
1062 --disable-bl) _bl=no ;;
1063 --enable-mtrr) _mtrr=yes ;;
1064 --disable-mtrr) _mtrr=no ;;
1065 --enable-shm) _shm=yes ;;
1066 --disable-shm) _shm=no ;;
1067 --enable-select) _select=yes ;;
1068 --disable-select) _select=no ;;
1069 --enable-cdparanoia) _cdparanoia=yes ;;
1070 --disable-cdparanoia) _cdparanoia=no ;;
1071 --enable-cddb) _cddb=yes ;;
1072 --disable-cddb) _cddb=no ;;
1073 --enable-big-endian) _big_endian=yes ;;
1074 --disable-big-endian) _big_endian=no ;;
1075 --enable-bitmap-font) _bitmap_font=yes ;;
1076 --disable-bitmap-font) _bitmap_font=no ;;
1077 --enable-freetype) _freetype=yes ;;
1078 --disable-freetype) _freetype=no ;;
1079 --enable-fontconfig) _fontconfig=yes ;;
1080 --disable-fontconfig) _fontconfig=no ;;
1081 --enable-unrarexec) _unrar_exec=yes ;;
1082 --disable-unrarexec) _unrar_exec=no ;;
1083 --enable-ftp) _ftp=yes ;;
1084 --disable-ftp) _ftp=no ;;
1085 --enable-vstream) _vstream=yes ;;
1086 --disable-vstream) _vstream=no ;;
1087 --enable-pthreads) _pthreads=yes ;;
1088 --disable-pthreads) _pthreads=no ;;
1089 --enable-w32threads) _w32threads=yes ;;
1090 --disable-w32threads) _w32threads=no ;;
1091 --enable-libass) _ass=yes ;;
1092 --disable-libass) _ass=no ;;
1093 --enable-rpath) _rpath=yes ;;
1094 --disable-rpath) _rpath=no ;;
1096 --enable-fribidi) _fribidi=yes ;;
1097 --disable-fribidi) _fribidi=no ;;
1099 --enable-enca) _enca=yes ;;
1100 --disable-enca) _enca=no ;;
1102 --enable-inet6) _inet6=yes ;;
1103 --disable-inet6) _inet6=no ;;
1105 --enable-gethostbyname2) _gethostbyname2=yes ;;
1106 --disable-gethostbyname2) _gethostbyname2=no ;;
1108 --enable-dga1) _dga1=yes ;;
1109 --disable-dga1) _dga1=no ;;
1110 --enable-dga2) _dga2=yes ;;
1111 --disable-dga2) _dga2=no ;;
1113 --enable-qtx) _qtx=yes ;;
1114 --disable-qtx) _qtx=no ;;
1116 --enable-coreaudio) _coreaudio=yes ;;
1117 --disable-coreaudio) _coreaudio=no ;;
1118 --enable-corevideo) _corevideo=yes ;;
1119 --disable-corevideo) _corevideo=no ;;
1120 --enable-cocoa) _cocoa=yes ;;
1121 --disable-cocoa) _cocoa=no ;;
1122 --enable-quartz) _quartz=yes ;;
1123 --disable-quartz) _quartz=no ;;
1124 --enable-macosx-finder) _macosx_finder=yes ;;
1125 --disable-macosx-finder) _macosx_finder=no ;;
1126 --enable-macosx-bundle) _macosx_bundle=yes ;;
1127 --disable-macosx-bundle) _macosx_bundle=no ;;
1129 --enable-sortsub) _sortsub=yes ;;
1130 --disable-sortsub) _sortsub=no ;;
1132 --enable-crash-debug) _crash_debug=yes ;;
1133 --disable-crash-debug) _crash_debug=no ;;
1134 --enable-sighandler) _sighandler=yes ;;
1135 --disable-sighandler) _sighandler=no ;;
1136 --enable-win32dll) _win32dll=yes ;;
1137 --disable-win32dll) _win32dll=no ;;
1139 --enable-sse) _sse=yes ;;
1140 --disable-sse) _sse=no ;;
1141 --enable-sse2) _sse2=yes ;;
1142 --disable-sse2) _sse2=no ;;
1143 --enable-ssse3) _ssse3=yes ;;
1144 --disable-ssse3) _ssse3=no ;;
1145 --enable-mmxext) _mmxext=yes ;;
1146 --disable-mmxext) _mmxext=no ;;
1147 --enable-3dnow) _3dnow=yes ;;
1148 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1149 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1150 --disable-3dnowext) _3dnowext=no ;;
1151 --enable-cmov) _cmov=yes ;;
1152 --disable-cmov) _cmov=no ;;
1153 --enable-fast-cmov) _fast_cmov=yes ;;
1154 --disable-fast-cmov) _fast_cmov=no ;;
1155 --enable-fast-clz) _fast_clz=yes ;;
1156 --disable-fast-clz) _fast_clz=no ;;
1157 --enable-altivec) _altivec=yes ;;
1158 --disable-altivec) _altivec=no ;;
1159 --enable-armv5te) _armv5te=yes ;;
1160 --disable-armv5te) _armv5te=no ;;
1161 --enable-armv6) _armv6=yes ;;
1162 --disable-armv6) _armv6=no ;;
1163 --enable-armv6t2) _armv6t2=yes ;;
1164 --disable-armv6t2) _armv6t2=no ;;
1165 --enable-armvfp) _armvfp=yes ;;
1166 --disable-armvfp) _armvfp=no ;;
1167 --enable-neon) neon=yes ;;
1168 --disable-neon) neon=no ;;
1169 --enable-iwmmxt) _iwmmxt=yes ;;
1170 --disable-iwmmxt) _iwmmxt=no ;;
1171 --enable-mmx) _mmx=yes ;;
1172 --disable-mmx) # 3Dnow! and MMX2 require MMX
1173 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1176 echo "Unknown parameter: $ac_option" >&2
1177 exit 1
1180 esac
1181 done
1183 # Atmos: moved this here, to be correct, if --prefix is specified
1184 test -z "$_bindir" && _bindir="$_prefix/bin"
1185 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1186 test -z "$_mandir" && _mandir="$_prefix/share/man"
1187 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1188 test -z "$_libdir" && _libdir="$_prefix/lib"
1189 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1191 # Determine our OS name and CPU architecture
1192 if test -z "$_target" ; then
1193 # OS name
1194 system_name=$(uname -s 2>&1)
1195 case "$system_name" in
1196 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1198 Haiku)
1199 system_name=BeOS
1201 IRIX*)
1202 system_name=IRIX
1204 GNU/kFreeBSD)
1205 system_name=FreeBSD
1207 HP-UX*)
1208 system_name=HP-UX
1210 [cC][yY][gG][wW][iI][nN]*)
1211 system_name=CYGWIN
1213 MINGW32*)
1214 system_name=MINGW32
1216 OS/2*)
1217 system_name=OS/2
1220 system_name="$system_name-UNKNOWN"
1222 esac
1225 # host's CPU/instruction set
1226 host_arch=$(uname -p 2>&1)
1227 case "$host_arch" in
1228 i386|sparc|ppc|alpha|arm|mips|vax)
1230 powerpc) # Darwin returns 'powerpc'
1231 host_arch=ppc
1233 *) # uname -p on Linux returns 'unknown' for the processor type,
1234 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1236 # Maybe uname -m (machine hardware name) returns something we
1237 # recognize.
1239 # x86/x86pc is used by QNX
1240 case "$(uname -m 2>&1)" in
1241 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 ;;
1242 ia64) host_arch=ia64 ;;
1243 macppc|ppc) host_arch=ppc ;;
1244 ppc64) host_arch=ppc64 ;;
1245 alpha) host_arch=alpha ;;
1246 sparc) host_arch=sparc ;;
1247 sparc64) host_arch=sparc64 ;;
1248 parisc*|hppa*|9000*) host_arch=hppa ;;
1249 arm*|zaurus|cats) host_arch=arm ;;
1250 sh3|sh4|sh4a) host_arch=sh ;;
1251 s390) host_arch=s390 ;;
1252 s390x) host_arch=s390x ;;
1253 *mips*) host_arch=mips ;;
1254 vax) host_arch=vax ;;
1255 xtensa*) host_arch=xtensa ;;
1256 *) host_arch=UNKNOWN ;;
1257 esac
1259 esac
1260 else # if test -z "$_target"
1261 system_name=$(echo $_target | cut -d '-' -f 2)
1262 case "$(echo $system_name | tr A-Z a-z)" in
1263 linux) system_name=Linux ;;
1264 freebsd) system_name=FreeBSD ;;
1265 gnu/kfreebsd) system_name=FreeBSD ;;
1266 netbsd) system_name=NetBSD ;;
1267 bsd/os) system_name=BSD/OS ;;
1268 openbsd) system_name=OpenBSD ;;
1269 dragonfly) system_name=DragonFly ;;
1270 sunos) system_name=SunOS ;;
1271 qnx) system_name=QNX ;;
1272 morphos) system_name=MorphOS ;;
1273 amigaos) system_name=AmigaOS ;;
1274 mingw32*) system_name=MINGW32 ;;
1275 esac
1276 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1277 host_arch=$(echo $_target | cut -d '-' -f 1)
1278 if test $(echo $host_arch) != "x86_64" ; then
1279 host_arch=$(echo $host_arch | tr '_' '-')
1283 extra_cflags="-I. $extra_cflags"
1284 _timer=timer-linux.c
1285 _getch=getch2.c
1286 if freebsd ; then
1287 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1288 extra_cflags="$extra_cflags -I/usr/local/include"
1291 if netbsd || dragonfly ; then
1292 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1293 extra_cflags="$extra_cflags -I/usr/pkg/include"
1296 if darwin; then
1297 extra_cflags="-mdynamic-no-pic $extra_cflags"
1298 if test "$(basename $_cc)" != "clang" ; then
1299 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1301 _timer=timer-darwin.c
1304 if aix ; then
1305 extra_ldflags="$extra_ldflags -lC"
1308 if irix ; then
1309 _ranlib='ar -r'
1310 elif linux ; then
1311 _ranlib='true'
1314 if win32 ; then
1315 _exesuf=".exe"
1316 extra_cflags="$extra_cflags -fno-common"
1317 # -lwinmm is always needed for osdep/timer-win2.c
1318 extra_ldflags="$extra_ldflags -lwinmm"
1319 _pe_executable=yes
1320 _timer=timer-win2.c
1321 _priority=yes
1322 def_dos_paths="#define HAVE_DOS_PATHS 1"
1323 def_priority="#define CONFIG_PRIORITY 1"
1326 if mingw32 ; then
1327 _getch=getch2-win.c
1328 need_shmem=no
1331 if amigaos ; then
1332 _select=no
1333 _sighandler=no
1334 _stream_cache=no
1335 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1336 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1339 if qnx ; then
1340 extra_ldflags="$extra_ldflags -lph"
1343 if os2 ; then
1344 _exesuf=".exe"
1345 _getch=getch2-os2.c
1346 need_shmem=no
1347 _priority=yes
1348 def_dos_paths="#define HAVE_DOS_PATHS 1"
1349 def_priority="#define CONFIG_PRIORITY 1"
1352 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1353 test "$tmpdir" && break
1354 done
1356 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1357 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1359 TMPLOG="config.log"
1360 TMPC="$mplayer_tmpdir/tmp.c"
1361 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1362 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1363 TMPH="$mplayer_tmpdir/tmp.h"
1364 TMPS="$mplayer_tmpdir/tmp.S"
1366 rm -f "$TMPLOG"
1367 echo configuration: $configuration > "$TMPLOG"
1368 echo >> "$TMPLOG"
1371 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1372 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1376 # Checking CC version...
1377 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1378 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1379 echocheck "$_cc version"
1380 cc_vendor=intel
1381 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1382 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1383 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1384 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1385 # TODO verify older icc/ecc compatibility
1386 case $cc_version in
1388 cc_version="v. ?.??, bad"
1389 cc_fail=yes
1391 10.1|11.0|11.1)
1392 cc_version="$cc_version, ok"
1395 cc_version="$cc_version, bad"
1396 cc_fail=yes
1398 esac
1399 echores "$cc_version"
1400 else
1401 for _cc in "$_cc" gcc cc ; do
1402 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1403 if test "$cc_name_tmp" = "gcc"; then
1404 cc_name=$cc_name_tmp
1405 echocheck "$_cc version"
1406 cc_vendor=gnu
1407 cc_version=$($_cc -dumpversion 2>&1)
1408 case $cc_version in
1409 2.96*)
1410 cc_fail=yes
1413 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1414 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1415 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1417 esac
1418 echores "$cc_version"
1419 break
1421 if $_cc -v 2>&1 | grep -q "clang"; then
1422 echocheck "$_cc version"
1423 cc_vendor=clang
1424 cc_version=$($_cc -dumpversion 2>&1)
1425 res_comment="experimental support only"
1426 echores "clang $cc_version"
1427 break
1429 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1430 if test "$cc_name_tmp" = "Sun C"; then
1431 echocheck "$_cc version"
1432 cc_vendor=sun
1433 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1434 res_comment="experimental support only"
1435 echores "Sun C $cc_version"
1436 break
1438 done
1439 fi # icc
1440 test "$cc_fail" = yes && die "unsupported compiler version"
1442 echocheck "working compiler"
1443 cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
1444 echo "yes"
1446 if test -z "$_target" && x86 ; then
1447 cat > $TMPC << EOF
1448 int main(void) {
1449 int test[(int)sizeof(char *)-7];
1450 return 0;
1453 cc_check && host_arch=x86_64 || host_arch=i386
1456 echo "Detected operating system: $system_name"
1457 echo "Detected host architecture: $host_arch"
1459 echocheck "cross compilation"
1460 if test $_cross_compile = auto ; then
1461 _cross_compile=yes
1462 cflag_check "" && "$TMPEXE" && _cross_compile=no
1464 echores $_cross_compile
1466 if test $_cross_compile = yes; then
1467 tmp_run() {
1468 return 0
1470 test "$_host_cc" || _host_cc=cc
1473 echocheck "host cc"
1474 test "$_host_cc" || _host_cc=$_cc
1475 echores $_host_cc
1477 # ---
1479 # now that we know what compiler should be used for compilation, try to find
1480 # out which assembler is used by the $_cc compiler
1481 if test "$_as" = auto ; then
1482 _as=$($_cc -print-prog-name=as)
1483 test -z "$_as" && _as=as
1486 if test "$_nm" = auto ; then
1487 _nm=$($_cc -print-prog-name=nm)
1488 test -z "$_nm" && _nm=nm
1491 # XXX: this should be ok..
1492 _cpuinfo="echo"
1494 if test "$_runtime_cpudetection" = no ; then
1496 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1497 # FIXME: Remove the cygwin check once AMD CPUs are supported
1498 if test -r /proc/cpuinfo && ! cygwin; then
1499 # Linux with /proc mounted, extract CPU information from it
1500 _cpuinfo="cat /proc/cpuinfo"
1501 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1502 # FreeBSD with Linux emulation /proc mounted,
1503 # extract CPU information from it
1504 # Don't use it on x86 though, it never reports 3Dnow
1505 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1506 elif darwin && ! x86 ; then
1507 # use hostinfo on Darwin
1508 _cpuinfo="hostinfo"
1509 elif aix; then
1510 # use 'lsattr' on AIX
1511 _cpuinfo="lsattr -E -l proc0 -a type"
1512 elif x86; then
1513 # all other OSes try to extract CPU information from a small helper
1514 # program cpuinfo instead
1515 $_cc -o cpuinfo$_exesuf cpuinfo.c
1516 _cpuinfo="./cpuinfo$_exesuf"
1519 if x86 ; then
1520 # gather more CPU information
1521 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1522 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1523 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1524 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1525 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1527 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1529 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1530 -e s/xmm/sse/ -e s/kni/sse/)
1531 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1532 pparam=$(echo $pparam | sed -e 's/sse/sse mmxext/')
1534 for ext in $pparam ; do
1535 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1536 done
1538 echocheck "CPU vendor"
1539 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1541 echocheck "CPU type"
1542 echores "$pname"
1545 fi # test "$_runtime_cpudetection" = no
1547 if x86 && test "$_runtime_cpudetection" = no ; then
1548 extcheck() {
1549 if test "$1" = kernel_check ; then
1550 echocheck "kernel support of $2"
1551 cat > $TMPC <<EOF
1552 #include <stdlib.h>
1553 #include <signal.h>
1554 static void catch(int sig) { exit(1); }
1555 int main(void) {
1556 signal(SIGILL, catch);
1557 __asm__ volatile ("$3":::"memory"); return 0;
1561 if cc_check && tmp_run ; then
1562 eval _$2=yes
1563 echores "yes"
1564 _optimizing="$_optimizing $2"
1565 return 0
1566 else
1567 eval _$2=no
1568 echores "failed"
1569 echo "It seems that your kernel does not correctly support $2."
1570 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1571 return 1
1574 return 0
1577 extcheck $_mmx "mmx" "emms"
1578 extcheck $_mmxext "mmxext" "sfence"
1579 extcheck $_3dnow "3dnow" "femms"
1580 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1581 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1582 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1583 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1584 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1586 echocheck "mtrr support"
1587 if test "$_mtrr" = kernel_check ; then
1588 _mtrr="yes"
1589 _optimizing="$_optimizing mtrr"
1591 echores "$_mtrr"
1593 if test "$_gcc3_ext" != ""; then
1594 # if we had to disable sse/sse2 because the active kernel does not
1595 # support this instruction set extension, we also have to tell
1596 # gcc3 to not generate sse/sse2 instructions for normal C code
1597 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1603 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1604 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1605 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1606 subarch_all='X86_32 X86_64 PPC64'
1607 case "$host_arch" in
1608 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1609 arch='x86'
1610 subarch='x86_32'
1611 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1612 iproc=486
1613 proc=i486
1616 if test "$_runtime_cpudetection" = no ; then
1617 case "$pvendor" in
1618 AuthenticAMD)
1619 case "$pfamily" in
1620 3) proc=i386 iproc=386 ;;
1621 4) proc=i486 iproc=486 ;;
1622 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1623 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1624 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1625 proc=k6-3
1626 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1627 proc=geode
1628 elif test "$pmodel" -ge 8; then
1629 proc=k6-2
1630 elif test "$pmodel" -ge 6; then
1631 proc=k6
1632 else
1633 proc=i586
1636 6) iproc=686
1637 # It's a bit difficult to determine the correct type of Family 6
1638 # AMD CPUs just from their signature. Instead, we check directly
1639 # whether it supports SSE.
1640 if test "$_sse" = yes; then
1641 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1642 proc=athlon-xp
1643 else
1644 # Again, gcc treats athlon and athlon-tbird similarly.
1645 proc=athlon
1648 15) iproc=686
1649 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1650 # caught and remedied in the optimization tests below.
1651 proc=k8
1654 *) proc=amdfam10 iproc=686
1655 test $_fast_clz = "auto" && _fast_clz=yes
1657 esac
1659 GenuineIntel)
1660 case "$pfamily" in
1661 3) proc=i386 iproc=386 ;;
1662 4) proc=i486 iproc=486 ;;
1663 5) iproc=586
1664 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1665 proc=pentium-mmx # 4 is desktop, 8 is mobile
1666 else
1667 proc=i586
1670 6) iproc=686
1671 if test "$pmodel" -ge 15; then
1672 proc=core2
1673 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1674 proc=pentium-m
1675 elif test "$pmodel" -ge 7; then
1676 proc=pentium3
1677 elif test "$pmodel" -ge 3; then
1678 proc=pentium2
1679 else
1680 proc=i686
1682 test $_fast_clz = "auto" && _fast_clz=yes
1684 15) iproc=686
1685 # A nocona in 32-bit mode has no more capabilities than a prescott.
1686 if test "$pmodel" -ge 3; then
1687 proc=prescott
1688 else
1689 proc=pentium4
1690 test $_fast_clz = "auto" && _fast_clz=yes
1692 test $_fast_cmov = "auto" && _fast_cmov=no
1694 *) proc=prescott iproc=686 ;;
1695 esac
1697 CentaurHauls)
1698 case "$pfamily" in
1699 5) iproc=586
1700 if test "$pmodel" -ge 8; then
1701 proc=winchip2
1702 elif test "$pmodel" -ge 4; then
1703 proc=winchip-c6
1704 else
1705 proc=i586
1708 6) iproc=686
1709 if test "$pmodel" -ge 9; then
1710 proc=c3-2
1711 else
1712 proc=c3
1713 iproc=586
1716 *) proc=i686 iproc=i686 ;;
1717 esac
1719 unknown)
1720 case "$pfamily" in
1721 3) proc=i386 iproc=386 ;;
1722 4) proc=i486 iproc=486 ;;
1723 *) proc=i586 iproc=586 ;;
1724 esac
1727 proc=i586 iproc=586 ;;
1728 esac
1729 test $_fast_clz = "auto" && _fast_clz=no
1730 fi # test "$_runtime_cpudetection" = no
1733 # check that gcc supports our CPU, if not, fall back to earlier ones
1734 # LGB: check -mcpu and -march swithing step by step with enabling
1735 # to fall back till 386.
1737 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1739 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1740 cpuopt=-mtune
1741 else
1742 cpuopt=-mcpu
1745 echocheck "GCC & CPU optimization abilities"
1746 if test "$_runtime_cpudetection" = no ; then
1747 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1748 cflag_check -march=native && proc=native
1750 if test "$proc" = "amdfam10"; then
1751 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1753 if test "$proc" = "k8"; then
1754 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1756 if test "$proc" = "athlon-xp"; then
1757 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1759 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1760 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1762 if test "$proc" = "k6" || test "$proc" = "c3"; then
1763 if ! cflag_check -march=$proc $cpuopt=$proc; then
1764 if cflag_check -march=i586 $cpuopt=i686; then
1765 proc=i586-i686
1766 else
1767 proc=i586
1771 if test "$proc" = "prescott" ; then
1772 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1774 if test "$proc" = "core2" ; then
1775 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1777 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
1778 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1780 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1781 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1783 if test "$proc" = "i586"; then
1784 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1786 if test "$proc" = "i486" ; then
1787 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1789 if test "$proc" = "i386" ; then
1790 cflag_check -march=$proc $cpuopt=$proc || proc=error
1792 if test "$proc" = "error" ; then
1793 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1794 _mcpu=""
1795 _march=""
1796 _optimizing=""
1797 elif test "$proc" = "i586-i686"; then
1798 _march="-march=i586"
1799 _mcpu="$cpuopt=i686"
1800 _optimizing="$proc"
1801 else
1802 _march="-march=$proc"
1803 _mcpu="$cpuopt=$proc"
1804 _optimizing="$proc"
1806 else # if test "$_runtime_cpudetection" = no
1807 _mcpu="$cpuopt=generic"
1808 # at least i486 required, for bswap instruction
1809 _march="-march=i486"
1810 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1811 cflag_check $_mcpu || _mcpu=""
1812 cflag_check $_march $_mcpu || _march=""
1815 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1816 ## autodetected mcpu/march parameters
1817 if test "$_target" ; then
1818 # TODO: it may be a good idea to check GCC and fall back in all cases
1819 if test "$host_arch" = "i586-i686"; then
1820 _march="-march=i586"
1821 _mcpu="$cpuopt=i686"
1822 else
1823 _march="-march=$host_arch"
1824 _mcpu="$cpuopt=$host_arch"
1827 proc="$host_arch"
1829 case "$proc" in
1830 i386) iproc=386 ;;
1831 i486) iproc=486 ;;
1832 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1833 i686|athlon*|pentium*) iproc=686 ;;
1834 *) iproc=586 ;;
1835 esac
1838 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1839 _fast_cmov="yes"
1840 else
1841 _fast_cmov="no"
1843 test $_fast_clz = "auto" && _fast_clz=yes
1845 echores "$proc"
1848 ia64)
1849 arch='ia64'
1850 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1851 iproc='ia64'
1854 x86_64|amd64)
1855 arch='x86'
1856 subarch='x86_64'
1857 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1858 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1859 iproc='x86_64'
1861 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1862 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1863 cpuopt=-mtune
1864 else
1865 cpuopt=-mcpu
1867 if test "$_runtime_cpudetection" = no ; then
1868 case "$pvendor" in
1869 AuthenticAMD)
1870 case "$pfamily" in
1871 15) proc=k8
1872 test $_fast_clz = "auto" && _fast_clz=no
1874 *) proc=amdfam10;;
1875 esac
1877 GenuineIntel)
1878 case "$pfamily" in
1879 6) proc=core2;;
1881 # 64-bit prescotts exist, but as far as GCC is concerned they
1882 # have the same capabilities as a nocona.
1883 proc=nocona
1884 test $_fast_cmov = "auto" && _fast_cmov=no
1885 test $_fast_clz = "auto" && _fast_clz=no
1887 esac
1890 proc=error;;
1891 esac
1892 fi # test "$_runtime_cpudetection" = no
1894 echocheck "GCC & CPU optimization abilities"
1895 # This is a stripped-down version of the i386 fallback.
1896 if test "$_runtime_cpudetection" = no ; then
1897 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1898 cflag_check -march=native && proc=native
1900 # --- AMD processors ---
1901 if test "$proc" = "amdfam10"; then
1902 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1904 if test "$proc" = "k8"; then
1905 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1907 # This will fail if gcc version < 3.3, which is ok because earlier
1908 # versions don't really support 64-bit on amd64.
1909 # Is this a valid assumption? -Corey
1910 if test "$proc" = "athlon-xp"; then
1911 cflag_check -march=$proc $cpuopt=$proc || proc=error
1913 # --- Intel processors ---
1914 if test "$proc" = "core2"; then
1915 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1917 if test "$proc" = "x86-64"; then
1918 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1920 if test "$proc" = "nocona"; then
1921 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1923 if test "$proc" = "pentium4"; then
1924 cflag_check -march=$proc $cpuopt=$proc || proc=error
1927 _march="-march=$proc"
1928 _mcpu="$cpuopt=$proc"
1929 if test "$proc" = "error" ; then
1930 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1931 _mcpu=""
1932 _march=""
1934 else # if test "$_runtime_cpudetection" = no
1935 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1936 _march="-march=x86-64"
1937 _mcpu="$cpuopt=generic"
1938 cflag_check $_mcpu || _mcpu="x86-64"
1939 cflag_check $_mcpu || _mcpu=""
1940 cflag_check $_march $_mcpu || _march=""
1943 _optimizing="$proc"
1944 test $_fast_cmov = "auto" && _fast_cmov=yes
1945 test $_fast_clz = "auto" && _fast_clz=yes
1947 echores "$proc"
1950 sparc|sparc64)
1951 arch='sparc'
1952 iproc='sparc'
1953 if test "$host_arch" = "sparc64" ; then
1954 _vis='yes'
1955 proc='ultrasparc'
1956 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1957 elif sunos ; then
1958 echocheck "CPU type"
1959 karch=$(uname -m)
1960 case "$(echo $karch)" in
1961 sun4) proc=v7 ;;
1962 sun4c) proc=v7 ;;
1963 sun4d) proc=v8 ;;
1964 sun4m) proc=v8 ;;
1965 sun4u) proc=ultrasparc _vis='yes' ;;
1966 sun4v) proc=v9 ;;
1967 *) proc=v8 ;;
1968 esac
1969 echores "$proc"
1970 else
1971 proc=v8
1973 _mcpu="-mcpu=$proc"
1974 _optimizing="$proc"
1977 arm*)
1978 arch='arm'
1979 iproc='arm'
1982 avr32)
1983 arch='avr32'
1984 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1985 iproc='avr32'
1986 test $_fast_clz = "auto" && _fast_clz=yes
1989 sh|sh4)
1990 arch='sh4'
1991 iproc='sh4'
1994 ppc|ppc64|powerpc|powerpc64)
1995 arch='ppc'
1996 def_dcbzl='#define HAVE_DCBZL 0'
1997 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1998 iproc='ppc'
2000 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2001 subarch='ppc64'
2002 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2004 echocheck "CPU type"
2005 case $system_name in
2006 Linux)
2007 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2008 if test -n "$($_cpuinfo | grep altivec)"; then
2009 test $_altivec = auto && _altivec=yes
2012 Darwin)
2013 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2014 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2015 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2016 test $_altivec = auto && _altivec=yes
2019 NetBSD)
2020 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2021 case $cc_version in
2022 2*|3.0*|3.1*|3.2*|3.3*)
2025 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2026 test $_altivec = auto && _altivec=yes
2029 esac
2031 AIX)
2032 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2034 esac
2035 if test "$_altivec" = yes; then
2036 echores "$proc altivec"
2037 else
2038 _altivec=no
2039 echores "$proc"
2042 echocheck "GCC & CPU optimization abilities"
2044 if test -n "$proc"; then
2045 case "$proc" in
2046 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2047 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2048 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2049 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2050 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2051 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2052 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2053 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2054 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2055 *) ;;
2056 esac
2057 # gcc 3.1(.1) and up supports 7400 and 7450
2058 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2059 case "$proc" in
2060 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2061 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2062 *) ;;
2063 esac
2065 # gcc 3.2 and up supports 970
2066 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2067 case "$proc" in
2068 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2069 def_dcbzl='#define HAVE_DCBZL 1' ;;
2070 *) ;;
2071 esac
2073 # gcc 3.3 and up supports POWER4
2074 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2075 case "$proc" in
2076 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2077 *) ;;
2078 esac
2080 # gcc 3.4 and up supports 440*
2081 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2082 case "$proc" in
2083 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2084 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2085 *) ;;
2086 esac
2088 # gcc 4.0 and up supports POWER5
2089 if test "$_cc_major" -ge "4"; then
2090 case "$proc" in
2091 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2092 *) ;;
2093 esac
2097 if test -n "$_mcpu"; then
2098 _optimizing=$(echo $_mcpu | cut -c 8-)
2099 echores "$_optimizing"
2100 else
2101 echores "none"
2104 test $_fast_clz = "auto" && _fast_clz=yes
2108 alpha*)
2109 arch='alpha'
2110 iproc='alpha'
2111 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2113 echocheck "CPU type"
2114 cat > $TMPC << EOF
2115 int main(void) {
2116 unsigned long ver, mask;
2117 __asm__ ("implver %0" : "=r" (ver));
2118 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2119 printf("%ld-%x\n", ver, ~mask);
2120 return 0;
2123 $_cc -o "$TMPEXE" "$TMPC"
2124 case $("$TMPEXE") in
2126 0-0) proc="ev4"; _mvi="0";;
2127 1-0) proc="ev5"; _mvi="0";;
2128 1-1) proc="ev56"; _mvi="0";;
2129 1-101) proc="pca56"; _mvi="1";;
2130 2-303) proc="ev6"; _mvi="1";;
2131 2-307) proc="ev67"; _mvi="1";;
2132 2-1307) proc="ev68"; _mvi="1";;
2133 esac
2134 echores "$proc"
2136 echocheck "GCC & CPU optimization abilities"
2137 if test "$proc" = "ev68" ; then
2138 cc_check -mcpu=$proc || proc=ev67
2140 if test "$proc" = "ev67" ; then
2141 cc_check -mcpu=$proc || proc=ev6
2143 _mcpu="-mcpu=$proc"
2144 echores "$proc"
2146 test $_fast_clz = "auto" && _fast_clz=yes
2148 _optimizing="$proc"
2151 mips*)
2152 arch='mips'
2153 iproc='mips'
2155 if irix ; then
2156 echocheck "CPU type"
2157 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2158 case "$(echo $proc)" in
2159 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2160 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2161 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2162 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2163 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2164 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2165 esac
2166 # gcc < 3.x does not support -mtune.
2167 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2168 _mcpu=''
2170 echores "$proc"
2173 test $_fast_clz = "auto" && _fast_clz=yes
2177 hppa)
2178 arch='pa_risc'
2179 iproc='PA-RISC'
2182 s390)
2183 arch='s390'
2184 iproc='390'
2187 s390x)
2188 arch='s390x'
2189 iproc='390x'
2192 vax)
2193 arch='vax'
2194 iproc='vax'
2197 xtensa)
2198 arch='xtensa'
2199 iproc='xtensa'
2202 generic)
2203 arch='generic'
2207 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2208 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2209 die "unsupported architecture $host_arch"
2211 esac # case "$host_arch" in
2213 if test "$_runtime_cpudetection" = yes ; then
2214 if x86 ; then
2215 test "$_cmov" != no && _cmov=yes
2216 x86_32 && _cmov=no
2217 test "$_mmx" != no && _mmx=yes
2218 test "$_3dnow" != no && _3dnow=yes
2219 test "$_3dnowext" != no && _3dnowext=yes
2220 test "$_mmxext" != no && _mmxext=yes
2221 test "$_sse" != no && _sse=yes
2222 test "$_sse2" != no && _sse2=yes
2223 test "$_ssse3" != no && _ssse3=yes
2224 test "$_mtrr" != no && _mtrr=yes
2226 if ppc; then
2227 _altivec=yes
2232 # endian testing
2233 echocheck "byte order"
2234 if test "$_big_endian" = auto ; then
2235 cat > $TMPC <<EOF
2236 short ascii_name[] = {
2237 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2238 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2239 int main(void) { return (long)ascii_name; }
2241 if cc_check ; then
2242 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2243 _big_endian=yes
2244 else
2245 _big_endian=no
2247 else
2248 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2251 if test "$_big_endian" = yes ; then
2252 _byte_order='big-endian'
2253 def_words_endian='#define WORDS_BIGENDIAN 1'
2254 def_bigendian='#define HAVE_BIGENDIAN 1'
2255 else
2256 _byte_order='little-endian'
2257 def_words_endian='#undef WORDS_BIGENDIAN'
2258 def_bigendian='#define HAVE_BIGENDIAN 0'
2260 echores "$_byte_order"
2263 echocheck "extern symbol prefix"
2264 cat > $TMPC << EOF
2265 int ff_extern;
2267 cc_check -c || die "Symbol mangling check failed."
2268 sym=$($_nm -P -g $TMPEXE)
2269 extern_prefix=${sym%%ff_extern*}
2270 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2271 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2272 echores $extern_prefix
2275 echocheck "assembler support of -pipe option"
2276 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2277 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2280 if darwin && test "$cc_vendor" = "gnu" ; then
2281 echocheck "GCC support of -mstackrealign"
2282 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2283 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2284 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2285 # wrong code with this flag, but this can be worked around by adding
2286 # -fno-unit-at-a-time as described in the blog post at
2287 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2288 cat > $TMPC << EOF
2289 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2290 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2292 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2293 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2294 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2295 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2296 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2299 # Checking for CFLAGS
2300 _install_strip="-s"
2301 if test "$_profile" != "" || test "$_debug" != "" ; then
2302 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2303 WARNFLAGS="-W -Wall"
2304 _install_strip=
2305 elif test -z "$CFLAGS" ; then
2306 if test "$cc_vendor" = "intel" ; then
2307 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2308 WARNFLAGS="-wd167 -wd556 -wd144"
2309 elif test "$cc_vendor" = "sun" ; then
2310 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2311 elif test "$cc_vendor" = "clang"; then
2312 CFLAGS="-O2 $_march $_pipe"
2313 WARNFLAGS="-Wall -Wno-switch-enum -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes"
2314 ERRORFLAGS="-Werror=implicit-function-declaration"
2315 elif test "$cc_vendor" != "gnu" ; then
2316 CFLAGS="-O2 $_march $_mcpu $_pipe"
2317 else
2318 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2319 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2320 ERRORFLAGS="-Werror-implicit-function-declaration"
2321 extra_ldflags="$extra_ldflags -ffast-math"
2323 else
2324 warn_cflags=yes
2327 if test "$cc_vendor" = "gnu" ; then
2328 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2329 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2330 # that's the only variable specific to C now, and this option is not valid
2331 # for C++.
2332 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2333 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2334 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2335 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2336 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2337 else
2338 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2341 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2342 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2345 if test -n "$LDFLAGS" ; then
2346 extra_ldflags="$extra_ldflags $LDFLAGS"
2347 warn_cflags=yes
2348 elif test "$cc_vendor" = "intel" ; then
2349 extra_ldflags="$extra_ldflags -i-static"
2351 if test -n "$CPPFLAGS" ; then
2352 extra_cflags="$extra_cflags $CPPFLAGS"
2353 warn_cflags=yes
2358 if x86_32 ; then
2359 # Checking assembler (_as) compatibility...
2360 # Added workaround for older as that reads from stdin by default - atmos
2361 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2362 echocheck "assembler ($_as $as_version)"
2364 _pref_as_version='2.9.1'
2365 echo 'nop' > $TMPS
2366 if test "$_mmx" = yes ; then
2367 echo 'emms' >> $TMPS
2369 if test "$_3dnow" = yes ; then
2370 _pref_as_version='2.10.1'
2371 echo 'femms' >> $TMPS
2373 if test "$_3dnowext" = yes ; then
2374 _pref_as_version='2.10.1'
2375 echo 'pswapd %mm0, %mm0' >> $TMPS
2377 if test "$_mmxext" = yes ; then
2378 _pref_as_version='2.10.1'
2379 echo 'movntq %mm0, (%eax)' >> $TMPS
2381 if test "$_sse" = yes ; then
2382 _pref_as_version='2.10.1'
2383 echo 'xorps %xmm0, %xmm0' >> $TMPS
2385 #if test "$_sse2" = yes ; then
2386 # _pref_as_version='2.11'
2387 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2389 if test "$_cmov" = yes ; then
2390 _pref_as_version='2.10.1'
2391 echo 'cmovb %eax, %ebx' >> $TMPS
2393 if test "$_ssse3" = yes ; then
2394 _pref_as_version='2.16.92'
2395 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2397 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2399 if test "$as_verc_fail" != yes ; then
2400 echores "ok"
2401 else
2402 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2403 echores "failed"
2404 die "obsolete binutils version"
2407 fi #if x86_32
2410 echocheck "PIC"
2411 pic=no
2412 cat > $TMPC << EOF
2413 int main(void) {
2414 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2415 #error PIC not enabled
2416 #endif
2417 return 0;
2420 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2421 echores $pic
2424 if x86 ; then
2426 echocheck ".align is a power of two"
2427 if test "$_asmalign_pot" = auto ; then
2428 _asmalign_pot=no
2429 inline_asm_check '".align 3"' && _asmalign_pot=yes
2431 if test "$_asmalign_pot" = "yes" ; then
2432 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2433 else
2434 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2436 echores $_asmalign_pot
2439 echocheck "ebx availability"
2440 ebx_available=no
2441 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2442 cat > $TMPC << EOF
2443 int main(void) {
2444 int x;
2445 __asm__ volatile(
2446 "xor %0, %0"
2447 :"=b"(x)
2448 // just adding ebx to clobber list seems unreliable with some
2449 // compilers, e.g. Haiku's gcc 2.95
2451 // and the above check does not work for OSX 64 bit...
2452 __asm__ volatile("":::"%ebx");
2453 return 0;
2456 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2457 echores $ebx_available
2460 echocheck "yasm"
2461 if test -z "$YASMFLAGS" ; then
2462 if darwin ; then
2463 x86_64 && objformat="macho64" || objformat="macho"
2464 elif win32 ; then
2465 objformat="win32"
2466 else
2467 objformat="elf"
2469 # currently tested for Linux x86, x86_64
2470 YASMFLAGS="-f $objformat"
2471 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2472 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2473 case "$objformat" in
2474 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2475 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2476 esac
2477 else
2478 warn_cflags=yes
2481 echo "pabsw xmm0, xmm0" > $TMPS
2482 yasm_check || _yasm=""
2483 if test $_yasm ; then
2484 def_yasm='#define HAVE_YASM 1'
2485 have_yasm="yes"
2486 echores "$_yasm"
2487 else
2488 def_yasm='#define HAVE_YASM 0'
2489 have_yasm="no"
2490 echores "no"
2493 echocheck "bswap"
2494 def_bswap='#define HAVE_BSWAP 0'
2495 echo 'bswap %eax' > $TMPS
2496 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2497 echores "$bswap"
2498 fi #if x86
2501 #FIXME: This should happen before the check for CFLAGS..
2502 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2503 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2505 # check if AltiVec is supported by the compiler, and how to enable it
2506 echocheck "GCC AltiVec flags"
2507 if $(cflag_check -maltivec -mabi=altivec) ; then
2508 _altivec_gcc_flags="-maltivec -mabi=altivec"
2509 # check if <altivec.h> should be included
2510 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2511 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2512 inc_altivec_h='#include <altivec.h>'
2513 else
2514 if $(cflag_check -faltivec) ; then
2515 _altivec_gcc_flags="-faltivec"
2516 else
2517 _altivec=no
2518 _altivec_gcc_flags="none, AltiVec disabled"
2522 echores "$_altivec_gcc_flags"
2524 # check if the compiler supports braces for vector declarations
2525 cat > $TMPC << EOF
2526 $inc_altivec_h
2527 int main(void) { (vector int) {1}; return 0; }
2529 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2531 # Disable runtime cpudetection if we cannot generate AltiVec code or
2532 # AltiVec is disabled by the user.
2533 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2534 && _runtime_cpudetection=no
2536 # Show that we are optimizing for AltiVec (if enabled and supported).
2537 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2538 && _optimizing="$_optimizing altivec"
2540 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2541 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2544 if ppc ; then
2545 def_xform_asm='#define HAVE_XFORM_ASM 0'
2546 xform_asm=no
2547 echocheck "XFORM ASM support"
2548 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2549 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2550 echores "$xform_asm"
2553 if arm ; then
2554 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2555 if test $_armv5te = "auto" ; then
2556 _armv5te=no
2557 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2559 echores "$_armv5te"
2561 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2563 echocheck "ARMv6 (SIMD instructions)"
2564 if test $_armv6 = "auto" ; then
2565 _armv6=no
2566 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2568 echores "$_armv6"
2570 echocheck "ARMv6t2 (SIMD instructions)"
2571 if test $_armv6t2 = "auto" ; then
2572 _armv6t2=no
2573 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2575 echores "$_armv6t2"
2577 echocheck "ARM VFP"
2578 if test $_armvfp = "auto" ; then
2579 _armvfp=no
2580 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2582 echores "$_armvfp"
2584 echocheck "ARM NEON"
2585 if test $neon = "auto" ; then
2586 neon=no
2587 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2589 echores "$neon"
2591 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2592 if test $_iwmmxt = "auto" ; then
2593 _iwmmxt=no
2594 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2596 echores "$_iwmmxt"
2599 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2600 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2601 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2602 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2603 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2604 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2605 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2606 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2607 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2608 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2609 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2610 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2611 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2612 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2613 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2614 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2615 test "$neon" = yes && cpuexts="NEON $cpuexts"
2616 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2617 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2618 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2620 # Checking kernel version...
2621 if x86_32 && linux ; then
2622 _k_verc_problem=no
2623 kernel_version=$(uname -r 2>&1)
2624 echocheck "$system_name kernel version"
2625 case "$kernel_version" in
2626 '') kernel_version="?.??"; _k_verc_fail=yes;;
2627 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2628 _k_verc_problem=yes;;
2629 esac
2630 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2631 _k_verc_fail=yes
2633 if test "$_k_verc_fail" ; then
2634 echores "$kernel_version, fail"
2635 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2636 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2637 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2638 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2639 echo "2.2.x you must upgrade it to get SSE support!"
2640 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2641 else
2642 echores "$kernel_version, ok"
2646 ######################
2647 # MAIN TESTS GO HERE #
2648 ######################
2651 echocheck "-lposix"
2652 if cflag_check -lposix ; then
2653 extra_ldflags="$extra_ldflags -lposix"
2654 echores "yes"
2655 else
2656 echores "no"
2659 echocheck "-lm"
2660 if cflag_check -lm ; then
2661 _ld_lm="-lm"
2662 echores "yes"
2663 else
2664 _ld_lm=""
2665 echores "no"
2669 echocheck "langinfo"
2670 if test "$_langinfo" = auto ; then
2671 _langinfo=no
2672 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2674 if test "$_langinfo" = yes ; then
2675 def_langinfo='#define HAVE_LANGINFO 1'
2676 else
2677 def_langinfo='#undef HAVE_LANGINFO'
2679 echores "$_langinfo"
2682 echocheck "translation support"
2683 if test "$_translation" = yes; then
2684 def_translation="#define CONFIG_TRANSLATION 1"
2685 else
2686 def_translation="#undef CONFIG_TRANSLATION"
2688 echores "$_translation"
2690 echocheck "language"
2691 # Set preferred languages, "all" uses English as main language.
2692 test -z "$language" && language=$LINGUAS
2693 test -z "$language_doc" && language_doc=$language
2694 test -z "$language_man" && language_man=$language
2695 test -z "$language_msg" && language_msg=$language
2696 test -z "$language_msg" && language_msg="all"
2697 language_doc=$(echo $language_doc | tr , " ")
2698 language_man=$(echo $language_man | tr , " ")
2699 language_msg=$(echo $language_msg | tr , " ")
2701 test "$language_doc" = "all" && language_doc=$doc_lang_all
2702 test "$language_man" = "all" && language_man=$man_lang_all
2703 test "$language_msg" = "all" && language_msg=$msg_lang_all
2705 if test "$_translation" != yes ; then
2706 language_msg=""
2709 # Prune non-existing translations from language lists.
2710 # Set message translation to the first available language.
2711 # Fall back on English.
2712 for lang in $language_doc ; do
2713 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2714 done
2715 language_doc=$tmp_language_doc
2716 test -z "$language_doc" && language_doc=en
2718 for lang in $language_man ; do
2719 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2720 done
2721 language_man=$tmp_language_man
2722 test -z "$language_man" && language_man=en
2724 for lang in $language_msg ; do
2725 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2726 done
2727 language_msg=$tmp_language_msg
2729 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2732 echocheck "enable sighandler"
2733 if test "$_sighandler" = yes ; then
2734 def_sighandler='#define CONFIG_SIGHANDLER 1'
2735 else
2736 def_sighandler='#undef CONFIG_SIGHANDLER'
2738 echores "$_sighandler"
2740 echocheck "runtime cpudetection"
2741 if test "$_runtime_cpudetection" = yes ; then
2742 _optimizing="Runtime CPU-Detection enabled"
2743 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2744 else
2745 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2747 echores "$_runtime_cpudetection"
2750 echocheck "restrict keyword"
2751 for restrict_keyword in restrict __restrict __restrict__ ; do
2752 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2753 if cc_check; then
2754 def_restrict_keyword=$restrict_keyword
2755 break;
2757 done
2758 if [ -n "$def_restrict_keyword" ]; then
2759 echores "$def_restrict_keyword"
2760 else
2761 echores "none"
2763 # Avoid infinite recursion loop ("#define restrict restrict")
2764 if [ "$def_restrict_keyword" != "restrict" ]; then
2765 def_restrict_keyword="#define restrict $def_restrict_keyword"
2766 else
2767 def_restrict_keyword=""
2771 echocheck "__builtin_expect"
2772 # GCC branch prediction hint
2773 cat > $TMPC << EOF
2774 static int foo(int a) {
2775 a = __builtin_expect(a, 10);
2776 return a == 10 ? 0 : 1;
2778 int main(void) { return foo(10) && foo(0); }
2780 _builtin_expect=no
2781 cc_check && _builtin_expect=yes
2782 if test "$_builtin_expect" = yes ; then
2783 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2784 else
2785 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2787 echores "$_builtin_expect"
2790 echocheck "kstat"
2791 _kstat=no
2792 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2793 if test "$_kstat" = yes ; then
2794 def_kstat="#define HAVE_LIBKSTAT 1"
2795 extra_ldflags="$extra_ldflags -lkstat"
2796 else
2797 def_kstat="#undef HAVE_LIBKSTAT"
2799 echores "$_kstat"
2802 echocheck "posix4"
2803 # required for nanosleep on some systems
2804 _posix4=no
2805 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2806 if test "$_posix4" = yes ; then
2807 extra_ldflags="$extra_ldflags -lposix4"
2809 echores "$_posix4"
2811 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2812 echocheck $func
2813 eval _$func=no
2814 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2815 if eval test "x\$_$func" = "xyes"; then
2816 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2817 echores yes
2818 else
2819 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2820 echores no
2822 done
2825 echocheck "mkstemp"
2826 _mkstemp=no
2827 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2828 if test "$_mkstemp" = yes ; then
2829 def_mkstemp='#define HAVE_MKSTEMP 1'
2830 else
2831 def_mkstemp='#define HAVE_MKSTEMP 0'
2833 echores "$_mkstemp"
2836 echocheck "nanosleep"
2837 _nanosleep=no
2838 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2839 if test "$_nanosleep" = yes ; then
2840 def_nanosleep='#define HAVE_NANOSLEEP 1'
2841 else
2842 def_nanosleep='#undef HAVE_NANOSLEEP'
2844 echores "$_nanosleep"
2847 echocheck "socklib"
2848 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2849 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2850 cat > $TMPC << EOF
2851 #include <netdb.h>
2852 #include <sys/socket.h>
2853 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2855 _socklib=no
2856 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2857 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2858 done
2859 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2860 if test $_winsock2_h = auto ; then
2861 _winsock2_h=no
2862 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2864 test "$_ld_sock" && res_comment="using $_ld_sock"
2865 echores "$_socklib"
2868 if test $_winsock2_h = yes ; then
2869 _ld_sock="-lws2_32"
2870 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2871 else
2872 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2876 echocheck "arpa/inet.h"
2877 arpa_inet_h=no
2878 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2879 header_check arpa/inet.h && arpa_inet_h=yes &&
2880 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2881 echores "$arpa_inet_h"
2884 echocheck "inet_pton()"
2885 def_inet_pton='#define HAVE_INET_PTON 0'
2886 inet_pton=no
2887 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2888 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2889 done
2890 if test $inet_pton = yes ; then
2891 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2892 def_inet_pton='#define HAVE_INET_PTON 1'
2894 echores "$inet_pton"
2897 echocheck "inet_aton()"
2898 def_inet_aton='#define HAVE_INET_ATON 0'
2899 inet_aton=no
2900 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2901 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2902 done
2903 if test $inet_aton = yes ; then
2904 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2905 def_inet_aton='#define HAVE_INET_ATON 1'
2907 echores "$inet_aton"
2910 echocheck "socklen_t"
2911 _socklen_t=no
2912 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2913 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2914 done
2915 if test "$_socklen_t" = yes ; then
2916 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2917 else
2918 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2920 echores "$_socklen_t"
2923 echocheck "closesocket()"
2924 _closesocket=no
2925 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2926 if test "$_closesocket" = yes ; then
2927 def_closesocket='#define HAVE_CLOSESOCKET 1'
2928 else
2929 def_closesocket='#define HAVE_CLOSESOCKET 0'
2931 echores "$_closesocket"
2934 echocheck "networking"
2935 test $_winsock2_h = no && test $inet_pton = no &&
2936 test $inet_aton = no && networking=no
2937 if test "$networking" = yes ; then
2938 def_network='#define CONFIG_NETWORK 1'
2939 def_networking='#define CONFIG_NETWORKING 1'
2940 extra_ldflags="$extra_ldflags $_ld_sock"
2941 inputmodules="networking $inputmodules"
2942 else
2943 noinputmodules="networking $noinputmodules"
2944 def_network='#define CONFIG_NETWORK 0'
2945 def_networking='#undef CONFIG_NETWORKING'
2947 echores "$networking"
2950 echocheck "inet6"
2951 if test "$_inet6" = auto ; then
2952 cat > $TMPC << EOF
2953 #include <sys/types.h>
2954 #if !defined(_WIN32)
2955 #include <sys/socket.h>
2956 #include <netinet/in.h>
2957 #else
2958 #include <ws2tcpip.h>
2959 #endif
2960 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2962 _inet6=no
2963 if cc_check $_ld_sock ; then
2964 _inet6=yes
2967 if test "$_inet6" = yes ; then
2968 def_inet6='#define HAVE_AF_INET6 1'
2969 else
2970 def_inet6='#undef HAVE_AF_INET6'
2972 echores "$_inet6"
2975 echocheck "gethostbyname2"
2976 if test "$_gethostbyname2" = auto ; then
2977 cat > $TMPC << EOF
2978 #include <sys/types.h>
2979 #include <sys/socket.h>
2980 #include <netdb.h>
2981 int main(void) { gethostbyname2("", AF_INET); return 0; }
2983 _gethostbyname2=no
2984 if cc_check ; then
2985 _gethostbyname2=yes
2988 if test "$_gethostbyname2" = yes ; then
2989 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
2990 else
2991 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
2993 echores "$_gethostbyname2"
2996 echocheck "inttypes.h (required)"
2997 _inttypes=no
2998 header_check inttypes.h && _inttypes=yes
2999 echores "$_inttypes"
3001 if test "$_inttypes" = no ; then
3002 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3003 header_check sys/bitypes.h && _inttypes=yes
3004 if test "$_inttypes" = yes ; then
3005 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."
3006 else
3007 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3012 echocheck "malloc.h"
3013 _malloc=no
3014 header_check malloc.h && _malloc=yes
3015 if test "$_malloc" = yes ; then
3016 def_malloc_h='#define HAVE_MALLOC_H 1'
3017 else
3018 def_malloc_h='#define HAVE_MALLOC_H 0'
3020 echores "$_malloc"
3023 echocheck "memalign()"
3024 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3025 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3026 _memalign=no
3027 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3028 if test "$_memalign" = yes ; then
3029 def_memalign='#define HAVE_MEMALIGN 1'
3030 else
3031 def_memalign='#define HAVE_MEMALIGN 0'
3032 def_map_memalign='#define memalign(a, b) malloc(b)'
3033 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3035 echores "$_memalign"
3038 echocheck "posix_memalign()"
3039 posix_memalign=no
3040 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3041 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3042 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3043 echores "$posix_memalign"
3046 echocheck "alloca.h"
3047 _alloca=no
3048 statement_check alloca.h 'alloca(0)' && _alloca=yes
3049 if cc_check ; then
3050 def_alloca_h='#define HAVE_ALLOCA_H 1'
3051 else
3052 def_alloca_h='#undef HAVE_ALLOCA_H'
3054 echores "$_alloca"
3057 echocheck "fastmemcpy"
3058 if test "$_fastmemcpy" = yes ; then
3059 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3060 else
3061 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3063 echores "$_fastmemcpy"
3066 echocheck "mman.h"
3067 _mman=no
3068 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3069 if test "$_mman" = yes ; then
3070 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3071 else
3072 def_mman_h='#undef HAVE_SYS_MMAN_H'
3073 os2 && need_mmap=yes
3075 echores "$_mman"
3077 _mman_has_map_failed=no
3078 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3079 if test "$_mman_has_map_failed" = yes ; then
3080 def_mman_has_map_failed=''
3081 else
3082 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3085 echocheck "dynamic loader"
3086 _dl=no
3087 for _ld_tmp in "" "-ldl"; do
3088 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3089 done
3090 if test "$_dl" = yes ; then
3091 def_dl='#define HAVE_LIBDL 1'
3092 else
3093 def_dl='#undef HAVE_LIBDL'
3095 echores "$_dl"
3098 def_threads='#define HAVE_THREADS 0'
3100 echocheck "pthread"
3101 if linux ; then
3102 THREAD_CFLAGS=-D_REENTRANT
3103 elif freebsd || netbsd || openbsd || bsdos ; then
3104 THREAD_CFLAGS=-D_THREAD_SAFE
3106 if test "$_pthreads" = auto ; then
3107 cat > $TMPC << EOF
3108 #include <pthread.h>
3109 static void *func(void *arg) { return arg; }
3110 int main(void) {
3111 pthread_t tid;
3112 #ifdef PTW32_STATIC_LIB
3113 pthread_win32_process_attach_np();
3114 pthread_win32_thread_attach_np();
3115 #endif
3116 return pthread_create (&tid, 0, func, 0) != 0;
3119 _pthreads=no
3120 if ! hpux ; then
3121 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3122 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3123 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3124 done
3125 if test "$_pthreads" = no && mingw32 ; then
3126 _ld_tmp="-lpthreadGC2 -lws2_32"
3127 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3131 if test "$_pthreads" = yes ; then
3132 test $_ld_pthread && res_comment="using $_ld_pthread"
3133 def_pthreads='#define HAVE_PTHREADS 1'
3134 def_threads='#define HAVE_THREADS 1'
3135 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3136 else
3137 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3138 def_pthreads='#undef HAVE_PTHREADS'
3139 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3140 mingw32 || _win32dll=no
3142 echores "$_pthreads"
3144 if cygwin ; then
3145 if test "$_pthreads" = yes ; then
3146 def_pthread_cache="#define PTHREAD_CACHE 1"
3147 else
3148 _stream_cache=no
3149 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3153 echocheck "w32threads"
3154 if test "$_pthreads" = yes ; then
3155 res_comment="using pthread instead"
3156 _w32threads=no
3158 if test "$_w32threads" = auto ; then
3159 _w32threads=no
3160 mingw32 && _w32threads=yes
3162 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3163 echores "$_w32threads"
3165 echocheck "rpath"
3166 if test "$_rpath" = yes ; then
3167 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3168 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3169 done
3170 extra_ldflags=$tmp
3172 echores "$_rpath"
3174 echocheck "iconv"
3175 if test "$_iconv" = auto ; then
3176 cat > $TMPC << EOF
3177 #include <stdio.h>
3178 #include <unistd.h>
3179 #include <iconv.h>
3180 #define INBUFSIZE 1024
3181 #define OUTBUFSIZE 4096
3183 char inbuffer[INBUFSIZE];
3184 char outbuffer[OUTBUFSIZE];
3186 int main(void) {
3187 size_t numread;
3188 iconv_t icdsc;
3189 char *tocode="UTF-8";
3190 char *fromcode="cp1250";
3191 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3192 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3193 char *iptr=inbuffer;
3194 char *optr=outbuffer;
3195 size_t inleft=numread;
3196 size_t outleft=OUTBUFSIZE;
3197 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3198 != (size_t)(-1)) {
3199 write(1, outbuffer, OUTBUFSIZE - outleft);
3202 if (iconv_close(icdsc) == -1)
3205 return 0;
3208 _iconv=no
3209 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3210 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3211 _iconv=yes && break
3212 done
3213 if test "$_iconv" != yes ; then
3214 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."
3217 if test "$_iconv" = yes ; then
3218 def_iconv='#define CONFIG_ICONV 1'
3219 else
3220 def_iconv='#undef CONFIG_ICONV'
3222 echores "$_iconv"
3225 echocheck "soundcard.h"
3226 _soundcard_h=no
3227 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3228 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3229 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3230 header_check $_soundcard_header && _soundcard_h=yes &&
3231 res_comment="$_soundcard_header" && break
3232 done
3234 if test "$_soundcard_h" = yes ; then
3235 if test $_soundcard_header = "sys/soundcard.h"; then
3236 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3237 else
3238 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3241 echores "$_soundcard_h"
3244 echocheck "sys/videoio.h"
3245 sys_videoio_h=no
3246 def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
3247 header_check sys/videoio.h && sys_videoio_h=yes &&
3248 def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
3249 echores "$sys_videoio_h"
3252 echocheck "sys/dvdio.h"
3253 _dvdio=no
3254 # FreeBSD 8.1 has broken dvdio.h
3255 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3256 if test "$_dvdio" = yes ; then
3257 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3258 else
3259 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3261 echores "$_dvdio"
3264 echocheck "sys/cdio.h"
3265 _cdio=no
3266 # at least OpenSolaris has a broken cdio.h
3267 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3268 if test "$_cdio" = yes ; then
3269 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3270 else
3271 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3273 echores "$_cdio"
3276 echocheck "linux/cdrom.h"
3277 _cdrom=no
3278 header_check linux/cdrom.h && _cdrom=yes
3279 if test "$_cdrom" = yes ; then
3280 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3281 else
3282 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3284 echores "$_cdrom"
3287 echocheck "dvd.h"
3288 _dvd=no
3289 header_check dvd.h && _dvd=yes
3290 if test "$_dvd" = yes ; then
3291 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3292 else
3293 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3295 echores "$_dvd"
3298 if bsdos; then
3299 echocheck "BSDI dvd.h"
3300 _bsdi_dvd=no
3301 header_check dvd.h && _bsdi_dvd=yes
3302 if test "$_bsdi_dvd" = yes ; then
3303 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3304 else
3305 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3307 echores "$_bsdi_dvd"
3308 fi #if bsdos
3311 if hpux; then
3312 # also used by AIX, but AIX does not support VCD and/or libdvdread
3313 echocheck "HP-UX SCSI header"
3314 _hpux_scsi_h=no
3315 header_check sys/scsi.h && _hpux_scsi_h=yes
3316 if test "$_hpux_scsi_h" = yes ; then
3317 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3318 else
3319 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3321 echores "$_hpux_scsi_h"
3322 fi #if hpux
3325 if sunos; then
3326 echocheck "userspace SCSI headers (Solaris)"
3327 _sol_scsi_h=no
3328 header_check sys/scsi/scsi_types.h &&
3329 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3330 _sol_scsi_h=yes
3331 if test "$_sol_scsi_h" = yes ; then
3332 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3333 else
3334 def_sol_scsi_h='#undef SOLARIS_USCSI'
3336 echores "$_sol_scsi_h"
3337 fi #if sunos
3340 echocheck "termcap"
3341 if test "$_termcap" = auto ; then
3342 _termcap=no
3343 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3344 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3345 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3346 done
3348 if test "$_termcap" = yes ; then
3349 def_termcap='#define HAVE_TERMCAP 1'
3350 test $_ld_tmp && res_comment="using $_ld_tmp"
3351 else
3352 def_termcap='#undef HAVE_TERMCAP'
3354 echores "$_termcap"
3357 echocheck "termios"
3358 def_termios='#undef HAVE_TERMIOS'
3359 def_termios_h='#undef HAVE_TERMIOS_H'
3360 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3361 if test "$_termios" = auto ; then
3362 _termios=no
3363 for _termios_header in "termios.h" "sys/termios.h"; do
3364 header_check $_termios_header && _termios=yes &&
3365 res_comment="using $_termios_header" && break
3366 done
3369 if test "$_termios" = yes ; then
3370 def_termios='#define HAVE_TERMIOS 1'
3371 if test "$_termios_header" = "termios.h" ; then
3372 def_termios_h='#define HAVE_TERMIOS_H 1'
3373 else
3374 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3377 echores "$_termios"
3380 echocheck "shm"
3381 if test "$_shm" = auto ; then
3382 _shm=no
3383 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3385 if test "$_shm" = yes ; then
3386 def_shm='#define HAVE_SHM 1'
3387 else
3388 def_shm='#undef HAVE_SHM'
3390 echores "$_shm"
3393 echocheck "strsep()"
3394 _strsep=no
3395 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3396 if test "$_strsep" = yes ; then
3397 def_strsep='#define HAVE_STRSEP 1'
3398 need_strsep=no
3399 else
3400 def_strsep='#undef HAVE_STRSEP'
3401 need_strsep=yes
3403 echores "$_strsep"
3406 echocheck "vsscanf()"
3407 cat > $TMPC << EOF
3408 #define _ISOC99_SOURCE
3409 #include <stdarg.h>
3410 #include <stdio.h>
3411 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3413 _vsscanf=no
3414 cc_check && _vsscanf=yes
3415 if test "$_vsscanf" = yes ; then
3416 def_vsscanf='#define HAVE_VSSCANF 1'
3417 need_vsscanf=no
3418 else
3419 def_vsscanf='#undef HAVE_VSSCANF'
3420 need_vsscanf=yes
3422 echores "$_vsscanf"
3425 echocheck "swab()"
3426 _swab=no
3427 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' ||
3428 statement_check "string.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3429 if test "$_swab" = yes ; then
3430 def_swab='#define HAVE_SWAB 1'
3431 need_swab=no
3432 else
3433 def_swab='#undef HAVE_SWAB'
3434 need_swab=yes
3436 echores "$_swab"
3438 echocheck "POSIX select()"
3439 cat > $TMPC << EOF
3440 #include <stdio.h>
3441 #include <stdlib.h>
3442 #include <sys/types.h>
3443 #include <string.h>
3444 #include <sys/time.h>
3445 #include <unistd.h>
3446 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3448 _posix_select=no
3449 def_posix_select='#undef HAVE_POSIX_SELECT'
3450 #select() of kLIBC (OS/2) supports socket only
3451 ! os2 && cc_check && _posix_select=yes &&
3452 def_posix_select='#define HAVE_POSIX_SELECT 1'
3453 echores "$_posix_select"
3456 echocheck "audio select()"
3457 if test "$_select" = no ; then
3458 def_select='#undef HAVE_AUDIO_SELECT'
3459 elif test "$_select" = yes ; then
3460 def_select='#define HAVE_AUDIO_SELECT 1'
3462 echores "$_select"
3465 echocheck "gettimeofday()"
3466 _gettimeofday=no
3467 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3468 if test "$_gettimeofday" = yes ; then
3469 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3470 need_gettimeofday=no
3471 else
3472 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3473 need_gettimeofday=yes
3475 echores "$_gettimeofday"
3478 echocheck "glob()"
3479 _glob=no
3480 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3481 need_glob=no
3482 if test "$_glob" = yes ; then
3483 def_glob='#define HAVE_GLOB 1'
3484 else
3485 def_glob='#undef HAVE_GLOB'
3486 # HACK! need_glob currently enables compilation of a
3487 # win32-specific glob()-replacement.
3488 # Other OS neither need it nor can they use it (mf:// is disabled for them).
3489 win32 && need_glob=yes
3491 echores "$_glob"
3494 echocheck "setenv()"
3495 _setenv=no
3496 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3497 if test "$_setenv" = yes ; then
3498 def_setenv='#define HAVE_SETENV 1'
3499 need_setenv=no
3500 else
3501 def_setenv='#undef HAVE_SETENV'
3502 need_setenv=yes
3504 echores "$_setenv"
3507 echocheck "setmode()"
3508 _setmode=no
3509 def_setmode='#define HAVE_SETMODE 0'
3510 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3511 echores "$_setmode"
3514 if sunos; then
3515 echocheck "sysi86()"
3516 _sysi86=no
3517 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3518 if test "$_sysi86" = yes ; then
3519 def_sysi86='#define HAVE_SYSI86 1'
3520 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3521 else
3522 def_sysi86='#undef HAVE_SYSI86'
3524 echores "$_sysi86"
3525 fi #if sunos
3528 echocheck "sys/sysinfo.h"
3529 _sys_sysinfo=no
3530 statement_check sys/sysinfo.h 'struct sysinfo s_info; s_info.mem_unit=0; sysinfo(&s_info)' && _sys_sysinfo=yes
3531 if test "$_sys_sysinfo" = yes ; then
3532 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3533 else
3534 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3536 echores "$_sys_sysinfo"
3539 if darwin; then
3541 echocheck "Mac OS X Finder Support"
3542 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3543 if test "$_macosx_finder" = yes ; then
3544 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3545 extra_ldflags="$extra_ldflags -framework Carbon"
3547 echores "$_macosx_finder"
3549 echocheck "Mac OS X Bundle file locations"
3550 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3551 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3552 if test "$_macosx_bundle" = yes ; then
3553 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3554 extra_ldflags="$extra_ldflags -framework Carbon"
3556 echores "$_macosx_bundle"
3558 echocheck "Apple Remote"
3559 if test "$_apple_remote" = auto ; then
3560 _apple_remote=no
3561 cat > $TMPC <<EOF
3562 #include <stdio.h>
3563 #include <IOKit/IOCFPlugIn.h>
3564 int main(void) {
3565 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3566 CFMutableDictionaryRef hidMatchDictionary;
3567 IOReturn ioReturnValue;
3569 // Set up a matching dictionary to search the I/O Registry by class.
3570 // name for all HID class devices
3571 hidMatchDictionary = IOServiceMatching("AppleIRController");
3573 // Now search I/O Registry for matching devices.
3574 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3575 hidMatchDictionary, &hidObjectIterator);
3577 // If search is unsuccessful, return nonzero.
3578 if (ioReturnValue != kIOReturnSuccess ||
3579 !IOIteratorIsValid(hidObjectIterator)) {
3580 return 1;
3582 return 0;
3585 cc_check -framework IOKit && _apple_remote=yes
3587 if test "$_apple_remote" = yes ; then
3588 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3589 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3590 else
3591 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3593 echores "$_apple_remote"
3595 fi #if darwin
3597 if linux; then
3599 echocheck "Apple IR"
3600 if test "$_apple_ir" = auto ; then
3601 _apple_ir=no
3602 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3604 if test "$_apple_ir" = yes ; then
3605 def_apple_ir='#define CONFIG_APPLE_IR 1'
3606 else
3607 def_apple_ir='#undef CONFIG_APPLE_IR'
3609 echores "$_apple_ir"
3610 fi #if linux
3612 echocheck "pkg-config"
3613 _pkg_config=pkg-config
3614 if $($_pkg_config --version > /dev/null 2>&1); then
3615 if test "$_ld_static"; then
3616 _pkg_config="$_pkg_config --static"
3618 echores "yes"
3619 else
3620 _pkg_config=false
3621 echores "no"
3625 echocheck "Samba support (libsmbclient)"
3626 if test "$_smb" = yes; then
3627 extra_ldflags="$extra_ldflags -lsmbclient"
3629 if test "$_smb" = auto; then
3630 _smb=no
3631 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3632 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3633 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3634 done
3637 if test "$_smb" = yes; then
3638 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3639 inputmodules="smb $inputmodules"
3640 else
3641 def_smb="#undef CONFIG_LIBSMBCLIENT"
3642 noinputmodules="smb $noinputmodules"
3644 echores "$_smb"
3647 #########
3648 # VIDEO #
3649 #########
3652 echocheck "tdfxfb"
3653 if test "$_tdfxfb" = yes ; then
3654 def_tdfxfb='#define CONFIG_TDFXFB 1'
3655 vomodules="tdfxfb $vomodules"
3656 else
3657 def_tdfxfb='#undef CONFIG_TDFXFB'
3658 novomodules="tdfxfb $novomodules"
3660 echores "$_tdfxfb"
3662 echocheck "s3fb"
3663 if test "$_s3fb" = yes ; then
3664 def_s3fb='#define CONFIG_S3FB 1'
3665 vomodules="s3fb $vomodules"
3666 else
3667 def_s3fb='#undef CONFIG_S3FB'
3668 novomodules="s3fb $novomodules"
3670 echores "$_s3fb"
3672 echocheck "wii"
3673 if test "$_wii" = yes ; then
3674 def_wii='#define CONFIG_WII 1'
3675 vomodules="wii $vomodules"
3676 else
3677 def_wii='#undef CONFIG_WII'
3678 novomodules="wii $novomodules"
3680 echores "$_wii"
3682 echocheck "tdfxvid"
3683 if test "$_tdfxvid" = yes ; then
3684 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3685 vomodules="tdfx_vid $vomodules"
3686 else
3687 def_tdfxvid='#undef CONFIG_TDFX_VID'
3688 novomodules="tdfx_vid $novomodules"
3690 echores "$_tdfxvid"
3692 echocheck "xvr100"
3693 if test "$_xvr100" = auto ; then
3694 cat > $TMPC << EOF
3695 #include <unistd.h>
3696 #include <sys/fbio.h>
3697 #include <sys/visual_io.h>
3698 int main(void) {
3699 struct vis_identifier ident;
3700 struct fbgattr attr;
3701 ioctl(0, VIS_GETIDENTIFIER, &ident);
3702 ioctl(0, FBIOGATTR, &attr);
3703 return 0;
3706 _xvr100=no
3707 cc_check && _xvr100=yes
3709 if test "$_xvr100" = yes ; then
3710 def_xvr100='#define CONFIG_XVR100 1'
3711 vomodules="xvr100 $vomodules"
3712 else
3713 def_tdfxvid='#undef CONFIG_XVR100'
3714 novomodules="xvr100 $novomodules"
3716 echores "$_xvr100"
3718 echocheck "tga"
3719 if test "$_tga" = yes ; then
3720 def_tga='#define CONFIG_TGA 1'
3721 vomodules="tga $vomodules"
3722 else
3723 def_tga='#undef CONFIG_TGA'
3724 novomodules="tga $novomodules"
3726 echores "$_tga"
3729 echocheck "md5sum support"
3730 if test "$_md5sum" = yes; then
3731 def_md5sum="#define CONFIG_MD5SUM 1"
3732 vomodules="md5sum $vomodules"
3733 else
3734 def_md5sum="#undef CONFIG_MD5SUM"
3735 novomodules="md5sum $novomodules"
3737 echores "$_md5sum"
3740 echocheck "yuv4mpeg support"
3741 if test "$_yuv4mpeg" = yes; then
3742 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3743 vomodules="yuv4mpeg $vomodules"
3744 else
3745 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3746 novomodules="yuv4mpeg $novomodules"
3748 echores "$_yuv4mpeg"
3751 echocheck "bl"
3752 if test "$_bl" = yes ; then
3753 def_bl='#define CONFIG_BL 1'
3754 vomodules="bl $vomodules"
3755 else
3756 def_bl='#undef CONFIG_BL'
3757 novomodules="bl $novomodules"
3759 echores "$_bl"
3762 echocheck "DirectFB"
3763 if test "$_directfb" = auto ; then
3764 _directfb=no
3765 cat > $TMPC << EOF
3766 #include <directfb.h>
3767 #include <directfb_version.h>
3768 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3769 #error "DirectFB version too old."
3770 #endif
3771 int main(void) { DirectFBInit(0, 0); return 0; }
3773 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3774 cc_check $_inc_tmp -ldirectfb &&
3775 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3776 done
3778 if test "$_directfb" = yes ; then
3779 def_directfb='#define CONFIG_DIRECTFB 1'
3780 vomodules="directfb dfbmga $vomodules"
3781 libs_mplayer="$libs_mplayer -ldirectfb"
3782 else
3783 def_directfb='#undef CONFIG_DIRECTFB'
3784 novomodules="directfb dfbmga $novomodules"
3786 echores "$_directfb"
3789 echocheck "X11 headers presence"
3790 _x11_headers="no"
3791 res_comment="check if the dev(el) packages are installed"
3792 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3793 if test -f "$I/X11/Xlib.h" ; then
3794 _x11_headers="yes"
3795 res_comment=""
3796 break
3798 done
3799 if test $_cross_compile = no; then
3800 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3801 /usr/include/X11R6 /usr/openwin/include ; do
3802 if test -f "$I/X11/Xlib.h" ; then
3803 extra_cflags="$extra_cflags -I$I"
3804 _x11_headers="yes"
3805 res_comment="using $I"
3806 break
3808 done
3810 echores "$_x11_headers"
3813 echocheck "X11"
3814 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3815 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3816 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3817 -L/usr/lib ; do
3818 if netbsd; then
3819 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3820 else
3821 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3823 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3824 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3825 done
3827 if test "$_x11" = yes ; then
3828 def_x11='#define CONFIG_X11 1'
3829 vomodules="x11 xover $vomodules"
3830 else
3831 _x11=no
3832 def_x11='#undef CONFIG_X11'
3833 novomodules="x11 $novomodules"
3834 res_comment="check if the dev(el) packages are installed"
3836 echores "$_x11"
3838 echocheck "Xss screensaver extensions"
3839 if test "$_xss" = auto ; then
3840 _xss=no
3841 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3843 if test "$_xss" = yes ; then
3844 def_xss='#define CONFIG_XSS 1'
3845 libs_mplayer="$libs_mplayer -lXss"
3846 else
3847 def_xss='#undef CONFIG_XSS'
3849 echores "$_xss"
3851 echocheck "DPMS"
3852 _xdpms3=no
3853 _xdpms4=no
3854 if test "$_x11" = yes ; then
3855 cat > $TMPC <<EOF
3856 #include <X11/Xmd.h>
3857 #include <X11/Xlib.h>
3858 #include <X11/Xutil.h>
3859 #include <X11/Xatom.h>
3860 #include <X11/extensions/dpms.h>
3861 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3863 cc_check -lXdpms && _xdpms3=yes
3864 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3866 if test "$_xdpms4" = yes ; then
3867 def_xdpms='#define CONFIG_XDPMS 1'
3868 res_comment="using Xdpms 4"
3869 echores "yes"
3870 elif test "$_xdpms3" = yes ; then
3871 def_xdpms='#define CONFIG_XDPMS 1'
3872 libs_mplayer="$libs_mplayer -lXdpms"
3873 res_comment="using Xdpms 3"
3874 echores "yes"
3875 else
3876 def_xdpms='#undef CONFIG_XDPMS'
3877 echores "no"
3881 echocheck "Xv"
3882 if test "$_xv" = auto && test "$_x11" = yes ; then
3883 _xv=no
3884 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3887 if test "$_xv" = yes ; then
3888 def_xv='#define CONFIG_XV 1'
3889 libs_mplayer="$libs_mplayer -lXv"
3890 vomodules="xv $vomodules"
3891 else
3892 def_xv='#undef CONFIG_XV'
3893 novomodules="xv $novomodules"
3895 echores "$_xv"
3898 echocheck "VDPAU"
3899 if test "$_vdpau" = auto && test "$_x11" = yes ; then
3900 _vdpau=no
3901 if test "$_dl" = yes ; then
3902 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
3905 if test "$_vdpau" = yes ; then
3906 def_vdpau='#define CONFIG_VDPAU 1'
3907 libs_mplayer="$libs_mplayer -lvdpau"
3908 vomodules="vdpau $vomodules"
3909 else
3910 def_vdpau='#define CONFIG_VDPAU 0'
3911 novomodules="vdpau $novomodules"
3913 echores "$_vdpau"
3916 echocheck "Xinerama"
3917 if test "$_xinerama" = auto && test "$_x11" = yes ; then
3918 _xinerama=no
3919 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3922 if test "$_xinerama" = yes ; then
3923 def_xinerama='#define CONFIG_XINERAMA 1'
3924 libs_mplayer="$libs_mplayer -lXinerama"
3925 else
3926 def_xinerama='#undef CONFIG_XINERAMA'
3928 echores "$_xinerama"
3931 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3932 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3933 # named 'X extensions' or something similar.
3934 # This check may be useful for future mplayer versions (to change resolution)
3935 # If you run into problems, remove '-lXxf86vm'.
3936 echocheck "Xxf86vm"
3937 if test "$_vm" = auto && test "$_x11" = yes ; then
3938 _vm=no
3939 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3941 if test "$_vm" = yes ; then
3942 def_vm='#define CONFIG_XF86VM 1'
3943 libs_mplayer="$libs_mplayer -lXxf86vm"
3944 else
3945 def_vm='#undef CONFIG_XF86VM'
3947 echores "$_vm"
3949 # Check for the presence of special keycodes, like audio control buttons
3950 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3951 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3952 # have these new keycodes.
3953 echocheck "XF86keysym"
3954 if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
3955 _xf86keysym=no
3956 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3958 if test "$_xf86keysym" = yes ; then
3959 def_xf86keysym='#define CONFIG_XF86XK 1'
3960 else
3961 def_xf86keysym='#undef CONFIG_XF86XK'
3963 echores "$_xf86keysym"
3965 echocheck "DGA"
3966 if test "$_dga2" = auto && test "$_x11" = yes ; then
3967 _dga2=no
3968 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
3970 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
3971 _dga1=no
3972 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
3975 _dga=no
3976 def_dga='#undef CONFIG_DGA'
3977 def_dga1='#undef CONFIG_DGA1'
3978 def_dga2='#undef CONFIG_DGA2'
3979 if test "$_dga1" = yes ; then
3980 _dga=yes
3981 def_dga1='#define CONFIG_DGA1 1'
3982 res_comment="using DGA 1.0"
3983 elif test "$_dga2" = yes ; then
3984 _dga=yes
3985 def_dga2='#define CONFIG_DGA2 1'
3986 res_comment="using DGA 2.0"
3988 if test "$_dga" = yes ; then
3989 def_dga='#define CONFIG_DGA 1'
3990 libs_mplayer="$libs_mplayer -lXxf86dga"
3991 vomodules="dga $vomodules"
3992 else
3993 novomodules="dga $novomodules"
3995 echores "$_dga"
3998 echocheck "3dfx"
3999 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4000 def_3dfx='#define CONFIG_3DFX 1'
4001 vomodules="3dfx $vomodules"
4002 else
4003 _3dfx=no
4004 def_3dfx='#undef CONFIG_3DFX'
4005 novomodules="3dfx $novomodules"
4007 echores "$_3dfx"
4010 echocheck "GGI"
4011 if test "$_ggi" = auto ; then
4012 _ggi=no
4013 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4015 if test "$_ggi" = yes ; then
4016 def_ggi='#define CONFIG_GGI 1'
4017 libs_mplayer="$libs_mplayer -lggi"
4018 vomodules="ggi $vomodules"
4019 else
4020 def_ggi='#undef CONFIG_GGI'
4021 novomodules="ggi $novomodules"
4023 echores "$_ggi"
4025 echocheck "GGI extension: libggiwmh"
4026 if test "$_ggiwmh" = auto ; then
4027 _ggiwmh=no
4028 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4030 # needed to get right output on obscure combination
4031 # like --disable-ggi --enable-ggiwmh
4032 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4033 def_ggiwmh='#define CONFIG_GGIWMH 1'
4034 libs_mplayer="$libs_mplayer -lggiwmh"
4035 else
4036 _ggiwmh=no
4037 def_ggiwmh='#undef CONFIG_GGIWMH'
4039 echores "$_ggiwmh"
4042 echocheck "AA"
4043 if test "$_aa" = auto ; then
4044 cat > $TMPC << EOF
4045 #include <aalib.h>
4046 int main(void) {
4047 aa_context *c;
4048 aa_renderparams *p;
4049 aa_init(0, 0, 0);
4050 c = aa_autoinit(&aa_defparams);
4051 p = aa_getrenderparams();
4052 aa_autoinitkbd(c, 0);
4053 return 0; }
4055 _aa=no
4056 for _ld_tmp in "-laa" ; do
4057 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4058 done
4060 if test "$_aa" = yes ; then
4061 def_aa='#define CONFIG_AA 1'
4062 if cygwin ; then
4063 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4065 vomodules="aa $vomodules"
4066 else
4067 def_aa='#undef CONFIG_AA'
4068 novomodules="aa $novomodules"
4070 echores "$_aa"
4073 echocheck "CACA"
4074 if test "$_caca" = auto ; then
4075 _caca=no
4076 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4077 cat > $TMPC << EOF
4078 #include <caca.h>
4079 #ifdef CACA_API_VERSION_1
4080 #include <caca0.h>
4081 #endif
4082 int main(void) { caca_init(); return 0; }
4084 cc_check $(caca-config --libs) && _caca=yes
4087 if test "$_caca" = yes ; then
4088 def_caca='#define CONFIG_CACA 1'
4089 extra_cflags="$extra_cflags $(caca-config --cflags)"
4090 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4091 vomodules="caca $vomodules"
4092 else
4093 def_caca='#undef CONFIG_CACA'
4094 novomodules="caca $novomodules"
4096 echores "$_caca"
4099 echocheck "SVGAlib"
4100 if test "$_svga" = auto ; then
4101 _svga=no
4102 header_check vga.h -lvga $_ld_lm && _svga=yes
4104 if test "$_svga" = yes ; then
4105 def_svga='#define CONFIG_SVGALIB 1'
4106 libs_mplayer="$libs_mplayer -lvga"
4107 vomodules="svga $vomodules"
4108 else
4109 def_svga='#undef CONFIG_SVGALIB'
4110 novomodules="svga $novomodules"
4112 echores "$_svga"
4115 echocheck "FBDev"
4116 if test "$_fbdev" = auto ; then
4117 _fbdev=no
4118 linux && _fbdev=yes
4120 if test "$_fbdev" = yes ; then
4121 def_fbdev='#define CONFIG_FBDEV 1'
4122 vomodules="fbdev $vomodules"
4123 else
4124 def_fbdev='#undef CONFIG_FBDEV'
4125 novomodules="fbdev $novomodules"
4127 echores "$_fbdev"
4131 echocheck "DVB"
4132 if test "$_dvb" = auto ; then
4133 _dvb=no
4134 cat >$TMPC << EOF
4135 #include <poll.h>
4136 #include <sys/ioctl.h>
4137 #include <stdio.h>
4138 #include <time.h>
4139 #include <unistd.h>
4140 #include <linux/dvb/dmx.h>
4141 #include <linux/dvb/frontend.h>
4142 #include <linux/dvb/video.h>
4143 #include <linux/dvb/audio.h>
4144 int main(void) {return 0;}
4146 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4147 cc_check $_inc_tmp && _dvb=yes &&
4148 extra_cflags="$extra_cflags $_inc_tmp" && break
4149 done
4151 echores "$_dvb"
4152 if test "$_dvb" = yes ; then
4153 _dvbin=yes
4154 inputmodules="dvb $inputmodules"
4155 def_dvb='#define CONFIG_DVB 1'
4156 def_dvbin='#define CONFIG_DVBIN 1'
4157 aomodules="mpegpes(dvb) $aomodules"
4158 vomodules="mpegpes(dvb) $vomodules"
4159 else
4160 _dvbin=no
4161 noinputmodules="dvb $noinputmodules"
4162 def_dvb='#undef CONFIG_DVB'
4163 def_dvbin='#undef CONFIG_DVBIN '
4164 aomodules="mpegpes(file) $aomodules"
4165 vomodules="mpegpes(file) $vomodules"
4169 if darwin; then
4171 echocheck "QuickTime"
4172 if test "$quicktime" = auto ; then
4173 quicktime=no
4174 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4176 if test "$quicktime" = yes ; then
4177 extra_ldflags="$extra_ldflags -framework QuickTime"
4178 def_quicktime='#define CONFIG_QUICKTIME 1'
4179 else
4180 def_quicktime='#undef CONFIG_QUICKTIME'
4181 _quartz=no
4183 echores $quicktime
4185 echocheck "Quartz"
4186 if test "$_quartz" = auto ; then
4187 _quartz=no
4188 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4190 if test "$_quartz" = yes ; then
4191 libs_mplayer="$libs_mplayer -framework Carbon"
4192 def_quartz='#define CONFIG_QUARTZ 1'
4193 vomodules="quartz $vomodules"
4194 else
4195 def_quartz='#undef CONFIG_QUARTZ'
4196 novomodules="quartz $novomodules"
4198 echores $_quartz
4200 echocheck "CoreVideo"
4201 if test "$_corevideo" = auto ; then
4202 cat > $TMPC <<EOF
4203 #include <Carbon/Carbon.h>
4204 #include <CoreServices/CoreServices.h>
4205 #include <OpenGL/OpenGL.h>
4206 #include <QuartzCore/CoreVideo.h>
4207 int main(void) { return 0; }
4209 _corevideo=no
4210 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4212 if test "$_corevideo" = yes ; then
4213 vomodules="corevideo $vomodules"
4214 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4215 def_corevideo='#define CONFIG_COREVIDEO 1'
4216 else
4217 novomodules="corevideo $novomodules"
4218 def_corevideo='#undef CONFIG_COREVIDEO'
4220 echores "$_corevideo"
4222 echocheck "Cocoa"
4223 if test "$_gl" = no ; then
4224 # if _gl is not enabled there is no point to add potentially unused linker flags
4225 _cocoa=no
4227 if test "$_cocoa" = auto ; then
4228 cat > $TMPC <<EOF
4229 #include <CoreServices/CoreServices.h>
4230 #include <OpenGL/OpenGL.h>
4231 #include <QuartzCore/CoreVideo.h>
4232 int main(void) { return 0; }
4234 _cocoa=no
4235 cc_check -framework Cocoa -framework QuartzCore -framework OpenGL && _cocoa=yes
4237 if test "$_cocoa" = yes ; then
4238 libs_mplayer="$libs_mplayer -framework Cocoa -framework QuartzCore -framework OpenGL"
4240 echores "$_cocoa"
4242 fi #if darwin
4245 echocheck "PNG support"
4246 if test "$_png" = auto ; then
4247 _png=no
4248 if irix ; then
4249 # Don't check for -lpng on irix since it has its own libpng
4250 # incompatible with the GNU libpng
4251 res_comment="disabled on irix (not GNU libpng)"
4252 else
4253 cat > $TMPC << EOF
4254 #include <stdio.h>
4255 #include <string.h>
4256 #include <png.h>
4257 int main(void) {
4258 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4259 printf("libpng: %s\n", png_libpng_ver);
4260 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4263 cc_check -lpng -lz $_ld_lm && _png=yes
4266 echores "$_png"
4267 if test "$_png" = yes ; then
4268 def_png='#define CONFIG_PNG 1'
4269 extra_ldflags="$extra_ldflags -lpng -lz"
4270 else
4271 def_png='#undef CONFIG_PNG'
4274 echocheck "MNG support"
4275 if test "$_mng" = auto ; then
4276 _mng=no
4277 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4279 echores "$_mng"
4280 if test "$_mng" = yes ; then
4281 def_mng='#define CONFIG_MNG 1'
4282 extra_ldflags="$extra_ldflags -lmng -lz"
4283 else
4284 def_mng='#undef CONFIG_MNG'
4287 echocheck "JPEG support"
4288 if test "$_jpeg" = auto ; then
4289 _jpeg=no
4290 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4292 echores "$_jpeg"
4294 if test "$_jpeg" = yes ; then
4295 def_jpeg='#define CONFIG_JPEG 1'
4296 vomodules="jpeg $vomodules"
4297 extra_ldflags="$extra_ldflags -ljpeg"
4298 else
4299 def_jpeg='#undef CONFIG_JPEG'
4300 novomodules="jpeg $novomodules"
4305 echocheck "PNM support"
4306 if test "$_pnm" = yes; then
4307 def_pnm="#define CONFIG_PNM 1"
4308 vomodules="pnm $vomodules"
4309 else
4310 def_pnm="#undef CONFIG_PNM"
4311 novomodules="pnm $novomodules"
4313 echores "$_pnm"
4317 echocheck "GIF support"
4318 # This is to appease people who want to force gif support.
4319 # If it is forced to yes, then we still do checks to determine
4320 # which gif library to use.
4321 if test "$_gif" = yes ; then
4322 _force_gif=yes
4323 _gif=auto
4326 if test "$_gif" = auto ; then
4327 _gif=no
4328 for _ld_gif in "-lungif" "-lgif" ; do
4329 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4330 done
4333 # If no library was found, and the user wants support forced,
4334 # then we force it on with libgif, as this is the safest
4335 # assumption IMHO. (libungif & libregif both create symbolic
4336 # links to libgif. We also assume that no x11 support is needed,
4337 # because if you are forcing this, then you _should_ know what
4338 # you are doing. [ Besides, package maintainers should never
4339 # have compiled x11 deps into libungif in the first place. ] )
4340 # </rant>
4341 # --Joey
4342 if test "$_force_gif" = yes && test "$_gif" = no ; then
4343 _gif=yes
4344 _ld_gif="-lgif"
4347 if test "$_gif" = yes ; then
4348 def_gif='#define CONFIG_GIF 1'
4349 codecmodules="gif $codecmodules"
4350 vomodules="gif89a $vomodules"
4351 res_comment="old version, some encoding functions disabled"
4352 def_gif_4='#undef CONFIG_GIF_4'
4353 extra_ldflags="$extra_ldflags $_ld_gif"
4355 cat > $TMPC << EOF
4356 #include <signal.h>
4357 #include <stdio.h>
4358 #include <stdlib.h>
4359 #include <gif_lib.h>
4360 static void catch(int sig) { exit(1); }
4361 int main(void) {
4362 signal(SIGSEGV, catch); // catch segfault
4363 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4364 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4365 return 0;
4368 if cc_check "$_ld_gif" ; then
4369 def_gif_4='#define CONFIG_GIF_4 1'
4370 res_comment=""
4372 else
4373 def_gif='#undef CONFIG_GIF'
4374 def_gif_4='#undef CONFIG_GIF_4'
4375 novomodules="gif89a $novomodules"
4376 nocodecmodules="gif $nocodecmodules"
4378 echores "$_gif"
4381 case "$_gif" in yes*)
4382 echocheck "broken giflib workaround"
4383 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4385 cat > $TMPC << EOF
4386 #include <stdio.h>
4387 #include <gif_lib.h>
4388 int main(void) {
4389 GifFileType gif = {.UserData = NULL};
4390 printf("UserData is at address %p\n", gif.UserData);
4391 return 0;
4394 if cc_check "$_ld_gif" ; then
4395 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4396 echores "disabled"
4397 else
4398 echores "enabled"
4401 esac
4404 echocheck "VESA support"
4405 if test "$_vesa" = auto ; then
4406 _vesa=no
4407 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4409 if test "$_vesa" = yes ; then
4410 def_vesa='#define CONFIG_VESA 1'
4411 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4412 vomodules="vesa $vomodules"
4413 else
4414 def_vesa='#undef CONFIG_VESA'
4415 novomodules="vesa $novomodules"
4417 echores "$_vesa"
4419 #################
4420 # VIDEO + AUDIO #
4421 #################
4424 echocheck "SDL"
4425 _inc_tmp=""
4426 _ld_tmp=""
4427 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4428 if test -z "$_sdlconfig" ; then
4429 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4430 _sdlconfig="sdl-config"
4431 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4432 _sdlconfig="sdl11-config"
4433 else
4434 _sdlconfig=false
4437 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4438 cat > $TMPC << EOF
4439 #ifdef CONFIG_SDL_SDL_H
4440 #include <SDL/SDL.h>
4441 #else
4442 #include <SDL.h>
4443 #endif
4444 #ifndef __APPLE__
4445 // we allow SDL hacking our main() only on OSX
4446 #undef main
4447 #endif
4448 int main(int argc, char *argv[]) {
4449 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4450 return 0;
4453 _sdl=no
4454 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4455 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4456 _sdl=yes
4457 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4458 break
4460 done
4461 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4462 res_comment="using $_sdlconfig"
4463 if cygwin ; then
4464 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4465 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4466 elif mingw32 ; then
4467 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4468 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4469 else
4470 _inc_tmp="$($_sdlconfig --cflags)"
4471 _ld_tmp="$($_sdlconfig --libs)"
4473 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4474 _sdl=yes
4475 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4476 # HACK for BeOS/Haiku SDL
4477 _ld_tmp="$_ld_tmp -lstdc++"
4478 _sdl=yes
4482 if test "$_sdl" = yes ; then
4483 def_sdl='#define CONFIG_SDL 1'
4484 extra_cflags="$extra_cflags $_inc_tmp"
4485 libs_mplayer="$libs_mplayer $_ld_tmp"
4486 vomodules="sdl $vomodules"
4487 aomodules="sdl $aomodules"
4488 else
4489 def_sdl='#undef CONFIG_SDL'
4490 novomodules="sdl $novomodules"
4491 noaomodules="sdl $noaomodules"
4493 echores "$_sdl"
4496 # make sure this stays below CoreVideo to avoid issues due to namespace
4497 # conflicts between -lGL and -framework OpenGL
4498 echocheck "OpenGL"
4499 #Note: this test is run even with --enable-gl since we autodetect linker flags
4500 if (test "$_x11" = yes || test "$_sdl" = yes || test "$_cocoa" = yes || win32) && test "$_gl" != no ; then
4501 cat > $TMPC << EOF
4502 #ifdef GL_WIN32
4503 #include <windows.h>
4504 #include <GL/gl.h>
4505 #elif defined(GL_SDL)
4506 #include <GL/gl.h>
4507 #ifdef CONFIG_SDL_SDL_H
4508 #include <SDL/SDL.h>
4509 #else
4510 #include <SDL.h>
4511 #endif
4512 #ifndef __APPLE__
4513 // we allow SDL hacking our main() only on OSX
4514 #undef main
4515 #endif
4516 #else
4517 #include <GL/gl.h>
4518 #include <X11/Xlib.h>
4519 #include <GL/glx.h>
4520 #endif
4521 int main(int argc, char *argv[]) {
4522 #ifdef GL_WIN32
4523 HDC dc;
4524 wglCreateContext(dc);
4525 #elif defined(GL_SDL)
4526 SDL_GL_SwapBuffers();
4527 #else
4528 glXCreateContext(NULL, NULL, NULL, True);
4529 #endif
4530 glFinish();
4531 return 0;
4534 _gl=no
4535 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4536 if cc_check $_ld_tmp $_ld_lm ; then
4537 _gl=yes
4538 _gl_x11=yes
4539 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4540 break
4542 done
4543 if cc_check -DGL_WIN32 -lopengl32 ; then
4544 _gl=yes
4545 _gl_win32=yes
4546 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4548 if test "$_cocoa" = yes ; then
4549 _gl=yes
4550 _gl_cocoa=yes
4552 # last so it can reuse any linker etc. flags detected before
4553 if test "$_sdl" = yes ; then
4554 if cc_check -DGL_SDL ||
4555 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4556 _gl=yes
4557 _gl_sdl=yes
4558 elif cc_check -DGL_SDL -lGL ||
4559 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4560 _gl=yes
4561 _gl_sdl=yes
4562 libs_mplayer="$libs_mplayer -lGL"
4565 else
4566 _gl=no
4568 if test "$_gl" = yes ; then
4569 def_gl='#define CONFIG_GL 1'
4570 res_comment="backends:"
4571 if test "$_gl_cocoa" = yes ; then
4572 def_gl_cocoa='#define CONFIG_GL_COCOA 1'
4573 res_comment="$res_comment cocoa"
4575 if test "$_gl_win32" = yes ; then
4576 def_gl_win32='#define CONFIG_GL_WIN32 1'
4577 res_comment="$res_comment win32"
4579 if test "$_gl_x11" = yes ; then
4580 def_gl_x11='#define CONFIG_GL_X11 1'
4581 res_comment="$res_comment x11"
4583 if test "$_gl_sdl" = yes ; then
4584 def_gl_sdl='#define CONFIG_GL_SDL 1'
4585 res_comment="$res_comment sdl"
4587 vomodules="opengl $vomodules"
4588 else
4589 def_gl='#undef CONFIG_GL'
4590 def_gl_cocoa='#undef CONFIG_GL_COCOA'
4591 def_gl_win32='#undef CONFIG_GL_WIN32'
4592 def_gl_x11='#undef CONFIG_GL_X11'
4593 def_gl_sdl='#undef CONFIG_GL_SDL'
4594 novomodules="opengl $novomodules"
4596 echores "$_gl"
4599 if os2 ; then
4600 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4601 if test "$_kva" = auto; then
4602 _kva=no;
4603 header_check_broken os2.h kva.h -lkva && _kva=yes
4605 if test "$_kva" = yes ; then
4606 def_kva='#define CONFIG_KVA 1'
4607 libs_mplayer="$libs_mplayer -lkva"
4608 vomodules="kva $vomodules"
4609 else
4610 def_kva='#undef CONFIG_KVA'
4611 novomodules="kva $novomodules"
4613 echores "$_kva"
4614 fi #if os2
4617 if win32; then
4619 echocheck "Windows waveout"
4620 if test "$_win32waveout" = auto ; then
4621 _win32waveout=no
4622 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4624 if test "$_win32waveout" = yes ; then
4625 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4626 libs_mplayer="$libs_mplayer -lwinmm"
4627 aomodules="win32 $aomodules"
4628 else
4629 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4630 noaomodules="win32 $noaomodules"
4632 echores "$_win32waveout"
4634 echocheck "Direct3D"
4635 if test "$_direct3d" = auto ; then
4636 _direct3d=no
4637 header_check d3d9.h && _direct3d=yes
4639 if test "$_direct3d" = yes ; then
4640 def_direct3d='#define CONFIG_DIRECT3D 1'
4641 vomodules="direct3d $vomodules"
4642 else
4643 def_direct3d='#undef CONFIG_DIRECT3D'
4644 novomodules="direct3d $novomodules"
4646 echores "$_direct3d"
4648 echocheck "Directx"
4649 if test "$_directx" = auto ; then
4650 cat > $TMPC << EOF
4651 #include <ddraw.h>
4652 #include <dsound.h>
4653 int main(void) { return 0; }
4655 _directx=no
4656 cc_check -lgdi32 && _directx=yes
4658 if test "$_directx" = yes ; then
4659 def_directx='#define CONFIG_DIRECTX 1'
4660 libs_mplayer="$libs_mplayer -lgdi32"
4661 vomodules="directx $vomodules"
4662 aomodules="dsound $aomodules"
4663 else
4664 def_directx='#undef CONFIG_DIRECTX'
4665 novomodules="directx $novomodules"
4666 noaomodules="dsound $noaomodules"
4668 echores "$_directx"
4670 fi #if win32; then
4673 echocheck "DXR3/H+"
4674 if test "$_dxr3" = auto ; then
4675 _dxr3=no
4676 header_check linux/em8300.h && _dxr3=yes
4678 if test "$_dxr3" = yes ; then
4679 def_dxr3='#define CONFIG_DXR3 1'
4680 vomodules="dxr3 $vomodules"
4681 else
4682 def_dxr3='#undef CONFIG_DXR3'
4683 novomodules="dxr3 $novomodules"
4685 echores "$_dxr3"
4688 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4689 if test "$_ivtv" = auto ; then
4690 cat > $TMPC << EOF
4691 #include <sys/time.h>
4692 #include <linux/videodev2.h>
4693 #include <linux/ivtv.h>
4694 #include <sys/ioctl.h>
4695 int main(void) {
4696 struct ivtv_cfg_stop_decode sd;
4697 struct ivtv_cfg_start_decode sd1;
4698 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4699 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4700 return 0; }
4702 _ivtv=no
4703 cc_check && _ivtv=yes
4705 if test "$_ivtv" = yes ; then
4706 def_ivtv='#define CONFIG_IVTV 1'
4707 vomodules="ivtv $vomodules"
4708 aomodules="ivtv $aomodules"
4709 else
4710 def_ivtv='#undef CONFIG_IVTV'
4711 novomodules="ivtv $novomodules"
4712 noaomodules="ivtv $noaomodules"
4714 echores "$_ivtv"
4717 echocheck "V4L2 MPEG Decoder"
4718 if test "$_v4l2" = auto ; then
4719 cat > $TMPC << EOF
4720 #include <sys/time.h>
4721 #include <linux/videodev2.h>
4722 #include <linux/version.h>
4723 int main(void) {
4724 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4725 #error kernel headers too old, need 2.6.22
4726 #endif
4727 struct v4l2_ext_controls ctrls;
4728 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4729 return 0;
4732 _v4l2=no
4733 cc_check && _v4l2=yes
4735 if test "$_v4l2" = yes ; then
4736 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4737 vomodules="v4l2 $vomodules"
4738 aomodules="v4l2 $aomodules"
4739 else
4740 def_v4l2='#undef CONFIG_V4L2_DECODER'
4741 novomodules="v4l2 $novomodules"
4742 noaomodules="v4l2 $noaomodules"
4744 echores "$_v4l2"
4748 #########
4749 # AUDIO #
4750 #########
4753 echocheck "OSS Audio"
4754 if test "$_ossaudio" = auto ; then
4755 _ossaudio=no
4756 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4758 if test "$_ossaudio" = yes ; then
4759 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4760 aomodules="oss $aomodules"
4761 cat > $TMPC << EOF
4762 #include <$_soundcard_header>
4763 #ifdef OPEN_SOUND_SYSTEM
4764 int main(void) { return 0; }
4765 #else
4766 #error Not the real thing
4767 #endif
4769 _real_ossaudio=no
4770 cc_check && _real_ossaudio=yes
4771 if test "$_real_ossaudio" = yes; then
4772 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4773 # Check for OSS4 headers (override default headers)
4774 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4775 if test -f /etc/oss.conf; then
4776 . /etc/oss.conf
4777 _ossinc="$OSSLIBDIR/include"
4778 if test -f "$_ossinc/sys/soundcard.h"; then
4779 extra_cflags="-I$_ossinc $extra_cflags"
4782 elif netbsd || openbsd ; then
4783 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4784 extra_ldflags="$extra_ldflags -lossaudio"
4785 else
4786 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4788 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4789 else
4790 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4791 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4792 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4793 noaomodules="oss $noaomodules"
4795 echores "$_ossaudio"
4798 echocheck "aRts"
4799 if test "$_arts" = auto ; then
4800 _arts=no
4801 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4802 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4803 _arts=yes
4807 if test "$_arts" = yes ; then
4808 def_arts='#define CONFIG_ARTS 1'
4809 aomodules="arts $aomodules"
4810 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4811 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4812 else
4813 noaomodules="arts $noaomodules"
4815 echores "$_arts"
4818 echocheck "EsounD"
4819 if test "$_esd" = auto ; then
4820 _esd=no
4821 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4822 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4825 echores "$_esd"
4827 if test "$_esd" = yes ; then
4828 def_esd='#define CONFIG_ESD 1'
4829 aomodules="esd $aomodules"
4830 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4831 extra_cflags="$extra_cflags $(esd-config --cflags)"
4833 echocheck "esd_get_latency()"
4834 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4835 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4836 echores "$_esd_latency"
4837 else
4838 def_esd='#undef CONFIG_ESD'
4839 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4840 noaomodules="esd $noaomodules"
4843 echocheck "RSound"
4844 if test "$_rsound" = auto ; then
4845 _rsound=no
4846 statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
4848 echores "$_rsound"
4850 if test "$_rsound" = yes ; then
4851 def_rsound='#define CONFIG_RSOUND 1'
4852 aomodules="rsound $aomodules"
4853 libs_mplayer="$libs_mplayer -lrsound"
4854 else
4855 def_rsound='#undef CONFIG_RSOUND'
4856 noaomodules="rsound $noaomodules"
4860 echocheck "NAS"
4861 if test "$_nas" = auto ; then
4862 _nas=no
4863 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4865 if test "$_nas" = yes ; then
4866 def_nas='#define CONFIG_NAS 1'
4867 libs_mplayer="$libs_mplayer -laudio -lXt"
4868 aomodules="nas $aomodules"
4869 else
4870 noaomodules="nas $noaomodules"
4871 def_nas='#undef CONFIG_NAS'
4873 echores "$_nas"
4876 echocheck "pulse"
4877 if test "$_pulse" = auto ; then
4878 _pulse=no
4879 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4880 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4881 _pulse=yes
4884 echores "$_pulse"
4886 if test "$_pulse" = yes ; then
4887 def_pulse='#define CONFIG_PULSE 1'
4888 aomodules="pulse $aomodules"
4889 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4890 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4891 else
4892 def_pulse='#undef CONFIG_PULSE'
4893 noaomodules="pulse $noaomodules"
4897 echocheck "JACK"
4898 if test "$_jack" = auto ; then
4899 _jack=yes
4900 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4901 libs_mplayer="$libs_mplayer -ljack"
4902 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4903 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4904 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4905 else
4906 _jack=no
4910 if test "$_jack" = yes ; then
4911 def_jack='#define CONFIG_JACK 1'
4912 aomodules="jack $aomodules"
4913 else
4914 noaomodules="jack $noaomodules"
4916 echores "$_jack"
4918 echocheck "OpenAL"
4919 if test "$_openal" = auto ; then
4920 _openal=no
4921 cat > $TMPC << EOF
4922 #ifdef OPENAL_AL_H
4923 #include <OpenAL/al.h>
4924 #else
4925 #include <AL/al.h>
4926 #endif
4927 int main(void) {
4928 alSourceQueueBuffers(0, 0, 0);
4929 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4930 return 0;
4933 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4934 cc_check $I && _openal=yes && break
4935 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4936 done
4937 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4939 if test "$_openal" = yes ; then
4940 def_openal='#define CONFIG_OPENAL 1'
4941 aomodules="openal $aomodules"
4942 else
4943 noaomodules="openal $noaomodules"
4945 echores "$_openal"
4947 echocheck "ALSA audio"
4948 if test "$_alloca" != yes ; then
4949 _alsa=no
4950 res_comment="alloca missing"
4952 if test "$_alsa" != no ; then
4953 _alsa=no
4954 cat > $TMPC << EOF
4955 #include <sys/asoundlib.h>
4956 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
4957 #error "alsa version != 0.5.x"
4958 #endif
4959 int main(void) { return 0; }
4961 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
4963 cat > $TMPC << EOF
4964 #include <sys/asoundlib.h>
4965 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
4966 #error "alsa version != 0.9.x"
4967 #endif
4968 int main(void) { return 0; }
4970 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
4971 cat > $TMPC << EOF
4972 #include <alsa/asoundlib.h>
4973 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
4974 #error "alsa version != 0.9.x"
4975 #endif
4976 int main(void) { return 0; }
4978 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
4980 cat > $TMPC << EOF
4981 #include <sys/asoundlib.h>
4982 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
4983 #error "alsa version != 1.0.x"
4984 #endif
4985 int main(void) { return 0; }
4987 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
4988 cat > $TMPC << EOF
4989 #include <alsa/asoundlib.h>
4990 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
4991 #error "alsa version != 1.0.x"
4992 #endif
4993 int main(void) { return 0; }
4995 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
4997 def_alsa='#undef CONFIG_ALSA'
4998 def_alsa5='#undef CONFIG_ALSA5'
4999 def_alsa9='#undef CONFIG_ALSA9'
5000 def_alsa1x='#undef CONFIG_ALSA1X'
5001 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5002 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5003 if test "$_alsaver" ; then
5004 _alsa=yes
5005 if test "$_alsaver" = '0.5.x' ; then
5006 _alsa5=yes
5007 aomodules="alsa5 $aomodules"
5008 def_alsa5='#define CONFIG_ALSA5 1'
5009 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5010 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5011 elif test "$_alsaver" = '0.9.x-sys' ; then
5012 _alsa9=yes
5013 aomodules="alsa $aomodules"
5014 def_alsa='#define CONFIG_ALSA 1'
5015 def_alsa9='#define CONFIG_ALSA9 1'
5016 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5017 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5018 elif test "$_alsaver" = '0.9.x-alsa' ; then
5019 _alsa9=yes
5020 aomodules="alsa $aomodules"
5021 def_alsa='#define CONFIG_ALSA 1'
5022 def_alsa9='#define CONFIG_ALSA9 1'
5023 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5024 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5025 elif test "$_alsaver" = '1.0.x-sys' ; then
5026 _alsa1x=yes
5027 aomodules="alsa $aomodules"
5028 def_alsa='#define CONFIG_ALSA 1'
5029 def_alsa1x="#define CONFIG_ALSA1X 1"
5030 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5031 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5032 elif test "$_alsaver" = '1.0.x-alsa' ; then
5033 _alsa1x=yes
5034 aomodules="alsa $aomodules"
5035 def_alsa='#define CONFIG_ALSA 1'
5036 def_alsa1x="#define CONFIG_ALSA1X 1"
5037 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5038 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5039 else
5040 _alsa=no
5041 res_comment="unknown version"
5043 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5044 else
5045 noaomodules="alsa $noaomodules"
5047 echores "$_alsa"
5050 echocheck "Sun audio"
5051 if test "$_sunaudio" = auto ; then
5052 cat > $TMPC << EOF
5053 #include <sys/types.h>
5054 #include <sys/audioio.h>
5055 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5057 _sunaudio=no
5058 cc_check && _sunaudio=yes
5060 if test "$_sunaudio" = yes ; then
5061 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5062 aomodules="sun $aomodules"
5063 else
5064 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5065 noaomodules="sun $noaomodules"
5067 echores "$_sunaudio"
5070 if darwin; then
5071 echocheck "CoreAudio"
5072 if test "$_coreaudio" = auto ; then
5073 cat > $TMPC <<EOF
5074 #include <CoreAudio/CoreAudio.h>
5075 #include <AudioToolbox/AudioToolbox.h>
5076 #include <AudioUnit/AudioUnit.h>
5077 int main(void) { return 0; }
5079 _coreaudio=no
5080 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5082 if test "$_coreaudio" = yes ; then
5083 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5084 def_coreaudio='#define CONFIG_COREAUDIO 1'
5085 aomodules="coreaudio $aomodules"
5086 else
5087 def_coreaudio='#undef CONFIG_COREAUDIO'
5088 noaomodules="coreaudio $noaomodules"
5090 echores $_coreaudio
5091 fi #if darwin
5094 if irix; then
5095 echocheck "SGI audio"
5096 if test "$_sgiaudio" = auto ; then
5097 _sgiaudio=no
5098 header_check dmedia/audio.h && _sgiaudio=yes
5100 if test "$_sgiaudio" = "yes" ; then
5101 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5102 libs_mplayer="$libs_mplayer -laudio"
5103 aomodules="sgi $aomodules"
5104 else
5105 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5106 noaomodules="sgi $noaomodules"
5108 echores "$_sgiaudio"
5109 fi #if irix
5112 if os2 ; then
5113 echocheck "KAI (UNIAUD/DART)"
5114 if test "$_kai" = auto; then
5115 _kai=no;
5116 header_check_broken os2.h kai.h -lkai && _kai=yes
5118 if test "$_kai" = yes ; then
5119 def_kai='#define CONFIG_KAI 1'
5120 libs_mplayer="$libs_mplayer -lkai"
5121 aomodules="kai $aomodules"
5122 else
5123 def_kai='#undef CONFIG_KAI'
5124 noaomodules="kai $noaomodules"
5126 echores "$_kai"
5128 echocheck "DART"
5129 if test "$_dart" = auto; then
5130 _dart=no;
5131 header_check_broken os2.h dart.h -ldart && _dart=yes
5133 if test "$_dart" = yes ; then
5134 def_dart='#define CONFIG_DART 1'
5135 libs_mplayer="$libs_mplayer -ldart"
5136 aomodules="dart $aomodules"
5137 else
5138 def_dart='#undef CONFIG_DART'
5139 noaomodules="dart $noaomodules"
5141 echores "$_dart"
5142 fi #if os2
5145 # set default CD/DVD devices
5146 if win32 || os2 ; then
5147 default_cdrom_device="D:"
5148 elif darwin ; then
5149 default_cdrom_device="/dev/disk1"
5150 elif dragonfly ; then
5151 default_cdrom_device="/dev/cd0"
5152 elif freebsd ; then
5153 default_cdrom_device="/dev/acd0"
5154 elif openbsd ; then
5155 default_cdrom_device="/dev/rcd0c"
5156 elif sunos ; then
5157 default_cdrom_device="/vol/dev/aliases/cdrom0"
5158 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5159 # file system and the volfs service.
5160 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5161 elif amigaos ; then
5162 default_cdrom_device="a1ide.device:2"
5163 else
5164 default_cdrom_device="/dev/cdrom"
5167 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5168 default_dvd_device=$default_cdrom_device
5169 elif darwin ; then
5170 default_dvd_device="/dev/rdiskN"
5171 else
5172 default_dvd_device="/dev/dvd"
5176 echocheck "VCD support"
5177 if test "$_vcd" = auto; then
5178 _vcd=no
5179 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5180 _vcd=yes
5181 elif mingw32; then
5182 header_check ddk/ntddcdrm.h && _vcd=yes
5185 if test "$_vcd" = yes; then
5186 inputmodules="vcd $inputmodules"
5187 def_vcd='#define CONFIG_VCD 1'
5188 else
5189 def_vcd='#undef CONFIG_VCD'
5190 noinputmodules="vcd $noinputmodules"
5191 res_comment="not supported on this OS"
5193 echores "$_vcd"
5197 echocheck "Blu-ray support"
5198 if test "$_bluray" = auto ; then
5199 _bluray=no
5200 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0, 0)' -lbluray && _bluray=yes
5202 if test "$_bluray" = yes ; then
5203 def_bluray='#define CONFIG_LIBBLURAY 1'
5204 extra_ldflags="$extra_ldflags -lbluray"
5205 inputmodules="bluray $inputmodules"
5206 else
5207 def_bluray='#undef CONFIG_LIBBLURAY'
5208 noinputmodules="bluray $noinputmodules"
5210 echores "$_bluray"
5212 echocheck "dvdread"
5213 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5214 _dvdread_internal=no
5216 if test "$_dvdread_internal" = auto ; then
5217 _dvdread_internal=no
5218 _dvdread=no
5219 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5220 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5221 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5222 darwin || win32 || os2; then
5223 _dvdread_internal=yes
5224 _dvdread=yes
5225 extra_cflags="-Ilibdvdread4 $extra_cflags"
5227 elif test "$_dvdread" = auto ; then
5228 _dvdread=no
5229 if test "$_dl" = yes; then
5230 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5231 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5232 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5233 _dvdread=yes
5234 extra_cflags="$extra_cflags $_dvdreadcflags"
5235 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5236 res_comment="external"
5241 if test "$_dvdread_internal" = yes; then
5242 def_dvdread='#define CONFIG_DVDREAD 1'
5243 inputmodules="dvdread(internal) $inputmodules"
5244 res_comment="internal"
5245 elif test "$_dvdread" = yes; then
5246 def_dvdread='#define CONFIG_DVDREAD 1'
5247 extra_ldflags="$extra_ldflags -ldvdread"
5248 inputmodules="dvdread(external) $inputmodules"
5249 res_comment="external"
5250 else
5251 def_dvdread='#undef CONFIG_DVDREAD'
5252 noinputmodules="dvdread $noinputmodules"
5254 echores "$_dvdread"
5257 echocheck "internal libdvdcss"
5258 if test "$_libdvdcss_internal" = auto ; then
5259 _libdvdcss_internal=no
5260 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5261 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5263 if test "$_libdvdcss_internal" = yes ; then
5264 if linux || netbsd || openbsd || bsdos ; then
5265 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5266 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5267 elif freebsd || dragonfly ; then
5268 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5269 elif darwin ; then
5270 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5271 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5272 elif cygwin ; then
5273 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5274 elif beos ; then
5275 cflags_libdvdcss="-DSYS_BEOS"
5276 elif os2 ; then
5277 cflags_libdvdcss="-DSYS_OS2"
5279 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5280 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5281 inputmodules="libdvdcss(internal) $inputmodules"
5282 else
5283 noinputmodules="libdvdcss(internal) $noinputmodules"
5285 echores "$_libdvdcss_internal"
5288 echocheck "cdparanoia"
5289 if test "$_cdparanoia" = auto ; then
5290 cat > $TMPC <<EOF
5291 #include <cdda_interface.h>
5292 #include <cdda_paranoia.h>
5293 // This need a better test. How ?
5294 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5296 _cdparanoia=no
5297 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5298 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5299 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5300 done
5302 if test "$_cdparanoia" = yes ; then
5303 _cdda='yes'
5304 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5305 openbsd && extra_ldflags="$extra_ldflags -lutil"
5307 echores "$_cdparanoia"
5310 echocheck "libcdio"
5311 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5312 cat > $TMPC << EOF
5313 #include <stdio.h>
5314 #include <cdio/version.h>
5315 #include <cdio/cdda.h>
5316 #include <cdio/paranoia.h>
5317 int main(void) {
5318 void *test = cdda_verbose_set;
5319 printf("%s\n", CDIO_VERSION);
5320 return test == (void *)1;
5323 _libcdio=no
5324 for _ld_tmp in "" "-lwinmm" ; do
5325 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5326 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5327 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5328 done
5329 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5330 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5331 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5332 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5333 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5336 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5337 _cdda='yes'
5338 def_libcdio='#define CONFIG_LIBCDIO 1'
5339 def_havelibcdio='yes'
5340 else
5341 _libcdio=no
5342 if test "$_cdparanoia" = yes ; then
5343 res_comment="using cdparanoia"
5345 def_libcdio='#undef CONFIG_LIBCDIO'
5346 def_havelibcdio='no'
5348 echores "$_libcdio"
5350 if test "$_cdda" = yes ; then
5351 test $_cddb = auto && test $networking = yes && _cddb=yes
5352 def_cdparanoia='#define CONFIG_CDDA 1'
5353 inputmodules="cdda $inputmodules"
5354 else
5355 def_cdparanoia='#undef CONFIG_CDDA'
5356 noinputmodules="cdda $noinputmodules"
5359 if test "$_cddb" = yes ; then
5360 def_cddb='#define CONFIG_CDDB 1'
5361 inputmodules="cddb $inputmodules"
5362 else
5363 _cddb=no
5364 def_cddb='#undef CONFIG_CDDB'
5365 noinputmodules="cddb $noinputmodules"
5368 echocheck "bitmap font support"
5369 if test "$_bitmap_font" = yes ; then
5370 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5371 else
5372 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5374 echores "$_bitmap_font"
5377 echocheck "freetype >= 2.0.9"
5379 # freetype depends on iconv
5380 if test "$_iconv" = no ; then
5381 _freetype=no
5382 res_comment="iconv support needed"
5385 if test "$_freetype" = auto ; then
5386 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5387 cat > $TMPC << EOF
5388 #include <stdio.h>
5389 #include <ft2build.h>
5390 #include FT_FREETYPE_H
5391 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5392 #error "Need FreeType 2.0.9 or newer"
5393 #endif
5394 int main(void) {
5395 FT_Library library;
5396 FT_Init_FreeType(&library);
5397 return 0;
5400 _freetype=no
5401 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5402 else
5403 _freetype=no
5405 if test "$_freetype" != yes ; then
5406 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5409 if test "$_freetype" = yes ; then
5410 def_freetype='#define CONFIG_FREETYPE 1'
5411 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5412 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5413 else
5414 def_freetype='#undef CONFIG_FREETYPE'
5416 echores "$_freetype"
5418 if test "$_freetype" = no ; then
5419 _fontconfig=no
5420 res_comment="FreeType support needed"
5422 echocheck "fontconfig"
5423 if test "$_fontconfig" = auto ; then
5424 cat > $TMPC << EOF
5425 #include <stdio.h>
5426 #include <stdlib.h>
5427 #include <fontconfig/fontconfig.h>
5428 #if FC_VERSION < 20402
5429 #error At least version 2.4.2 of fontconfig required
5430 #endif
5431 int main(void) {
5432 int err = FcInit();
5433 if (err == FcFalse) {
5434 printf("Couldn't initialize fontconfig lib\n");
5435 exit(err);
5437 return 0;
5440 _fontconfig=no
5441 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5442 _ld_tmp="-lfontconfig $_ld_tmp"
5443 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5444 done
5445 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5446 _inc_tmp=$($_pkg_config --cflags fontconfig)
5447 _ld_tmp=$($_pkg_config --libs fontconfig)
5448 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5449 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5451 if test "$_fontconfig" != yes ; then
5452 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5455 if test "$_fontconfig" = yes ; then
5456 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5457 else
5458 def_fontconfig='#undef CONFIG_FONTCONFIG'
5460 echores "$_fontconfig"
5463 echocheck "SSA/ASS support"
5464 if test "$_ass" = auto -o "$_ass" = yes ; then
5465 if $_pkg_config libass; then
5466 _ass=yes
5467 def_ass='#define CONFIG_ASS 1'
5468 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5469 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5470 else
5471 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
5473 else
5474 def_ass='#undef CONFIG_ASS'
5476 echores "$_ass"
5479 echocheck "fribidi with charsets"
5480 _inc_tmp=""
5481 _ld_tmp=""
5482 if test "$_fribidi" = auto ; then
5483 cat > $TMPC << EOF
5484 #include <stdlib.h>
5485 /* workaround for fribidi 0.10.4 and below */
5486 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5487 #include <fribidi/fribidi.h>
5488 int main(void) {
5489 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5490 exit(1);
5491 return 0;
5494 _fribidi=no
5495 _inc_tmp=""
5496 _ld_tmp="-lfribidi"
5497 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5498 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5499 test "$_fribidi" = no ; then
5500 _inc_tmp="$($_pkg_config --cflags)"
5501 _ld_tmp="$($_pkg_config --libs)"
5502 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5505 if test "$_fribidi" = yes ; then
5506 def_fribidi='#define CONFIG_FRIBIDI 1'
5507 extra_cflags="$extra_cflags $_inc_tmp"
5508 extra_ldflags="$extra_ldflags $_ld_tmp"
5509 else
5510 def_fribidi='#undef CONFIG_FRIBIDI'
5512 echores "$_fribidi"
5515 echocheck "ENCA"
5516 if test "$_enca" = auto ; then
5517 _enca=no
5518 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5520 if test "$_enca" = yes ; then
5521 def_enca='#define CONFIG_ENCA 1'
5522 extra_ldflags="$extra_ldflags -lenca"
5523 else
5524 def_enca='#undef CONFIG_ENCA'
5526 echores "$_enca"
5529 echocheck "zlib"
5530 _zlib=no
5531 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5532 if test "$_zlib" = yes ; then
5533 def_zlib='#define CONFIG_ZLIB 1'
5534 extra_ldflags="$extra_ldflags -lz"
5535 else
5536 def_zlib='#define CONFIG_ZLIB 0'
5538 echores "$_zlib"
5541 echocheck "RTC"
5542 if test "$_rtc" = auto ; then
5543 cat > $TMPC << EOF
5544 #include <sys/ioctl.h>
5545 #ifdef __linux__
5546 #include <linux/rtc.h>
5547 #else
5548 #include <rtc.h>
5549 #define RTC_PIE_ON RTCIO_PIE_ON
5550 #endif
5551 int main(void) { return RTC_PIE_ON; }
5553 _rtc=no
5554 cc_check && _rtc=yes
5555 ppc && _rtc=no
5557 if test "$_rtc" = yes ; then
5558 def_rtc='#define HAVE_RTC 1'
5559 else
5560 def_rtc='#undef HAVE_RTC'
5562 echores "$_rtc"
5565 echocheck "mad support"
5566 if test "$_mad" = auto ; then
5567 _mad=no
5568 header_check mad.h -lmad && _mad=yes
5570 if test "$_mad" = yes ; then
5571 def_mad='#define CONFIG_LIBMAD 1'
5572 extra_ldflags="$extra_ldflags -lmad"
5573 codecmodules="libmad $codecmodules"
5574 else
5575 def_mad='#undef CONFIG_LIBMAD'
5576 nocodecmodules="libmad $nocodecmodules"
5578 echores "$_mad"
5580 echocheck "OggVorbis support"
5581 if test "$_libvorbis" = auto; then
5582 _libvorbis=no
5583 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5584 elif test "$_libvorbis" = yes ; then
5585 _tremor=no
5587 if test "$_tremor" = auto; then
5588 _tremor=no
5589 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5591 if test "$_tremor" = yes ; then
5592 _vorbis=yes
5593 def_vorbis='#define CONFIG_OGGVORBIS 1'
5594 def_tremor='#define CONFIG_TREMOR 1'
5595 codecmodules="tremor(external) $codecmodules"
5596 res_comment="external Tremor"
5597 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5598 elif test "$_libvorbis" = yes ; then
5599 _vorbis=yes
5600 def_vorbis='#define CONFIG_OGGVORBIS 1'
5601 codecmodules="libvorbis $codecmodules"
5602 res_comment="libvorbis"
5603 extra_ldflags="$extra_ldflags -lvorbis -logg"
5604 else
5605 _vorbis=no
5606 nocodecmodules="libvorbis $nocodecmodules"
5608 echores "$_vorbis"
5610 echocheck "libspeex (version >= 1.1 required)"
5611 if test "$_speex" = auto ; then
5612 _speex=no
5613 cat > $TMPC << EOF
5614 #include <stddef.h>
5615 #include <speex/speex.h>
5616 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5618 cc_check -lspeex $_ld_lm && _speex=yes
5620 if test "$_speex" = yes ; then
5621 def_speex='#define CONFIG_SPEEX 1'
5622 extra_ldflags="$extra_ldflags -lspeex"
5623 codecmodules="speex $codecmodules"
5624 else
5625 def_speex='#undef CONFIG_SPEEX'
5626 nocodecmodules="speex $nocodecmodules"
5628 echores "$_speex"
5630 echocheck "OggTheora support"
5631 if test "$_theora" = auto ; then
5632 _theora=no
5633 cat > $TMPC << EOF
5634 #include <theora/theora.h>
5635 #include <string.h>
5636 int main(void) {
5637 /* Theora is in flux, make sure that all interface routines and datatypes
5638 * exist and work the way we expect it, so we don't break MPlayer. */
5639 ogg_packet op;
5640 theora_comment tc;
5641 theora_info inf;
5642 theora_state st;
5643 yuv_buffer yuv;
5644 int r;
5645 double t;
5647 theora_info_init(&inf);
5648 theora_comment_init(&tc);
5650 return 0;
5652 /* we don't want to execute this kind of nonsense; just for making sure
5653 * that compilation works... */
5654 memset(&op, 0, sizeof(op));
5655 r = theora_decode_header(&inf, &tc, &op);
5656 r = theora_decode_init(&st, &inf);
5657 t = theora_granule_time(&st, op.granulepos);
5658 r = theora_decode_packetin(&st, &op);
5659 r = theora_decode_YUVout(&st, &yuv);
5660 theora_clear(&st);
5662 return 0;
5665 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5666 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5667 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5668 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5669 if test _theora = no; then
5670 _ld_theora="-ltheora -logg"
5671 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5674 if test "$_theora" = yes ; then
5675 def_theora='#define CONFIG_OGGTHEORA 1'
5676 codecmodules="libtheora $codecmodules"
5677 # when --enable-theora is forced, we'd better provide a probably sane
5678 # $_ld_theora than nothing
5679 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5680 else
5681 def_theora='#undef CONFIG_OGGTHEORA'
5682 nocodecmodules="libtheora $nocodecmodules"
5684 echores "$_theora"
5686 # Any version of libmpg123 shall be fine.
5687 echocheck "mpg123 support"
5688 def_mpg123='#undef CONFIG_MPG123'
5689 if test "$_mpg123" = auto; then
5690 _mpg123=no
5691 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5693 if test "$_mpg123" = yes ; then
5694 def_mpg123='#define CONFIG_MPG123 1'
5695 codecmodules="mpg123 $codecmodules"
5696 else
5697 nocodecmodules="mpg123 $nocodecmodules"
5699 echores "$_mpg123"
5701 echocheck "liba52 support"
5702 def_liba52='#undef CONFIG_LIBA52'
5703 if test "$_liba52" = auto ; then
5704 _liba52=no
5705 cat > $TMPC << EOF
5706 #include <inttypes.h>
5707 #include <a52dec/a52.h>
5708 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5710 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5712 if test "$_liba52" = yes ; then
5713 def_liba52='#define CONFIG_LIBA52 1'
5714 codecmodules="liba52 $codecmodules"
5715 else
5716 nocodecmodules="liba52 $nocodecmodules"
5718 echores "$_liba52"
5720 echocheck "libdca support"
5721 if test "$_libdca" = auto ; then
5722 _libdca=no
5723 for _ld_dca in -ldca -ldts ; do
5724 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5725 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5726 done
5728 if test "$_libdca" = yes ; then
5729 def_libdca='#define CONFIG_LIBDCA 1'
5730 codecmodules="libdca $codecmodules"
5731 else
5732 def_libdca='#undef CONFIG_LIBDCA'
5733 nocodecmodules="libdca $nocodecmodules"
5735 echores "$_libdca"
5737 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5738 if test "$_musepack" = yes ; then
5739 _musepack=no
5740 cat > $TMPC << EOF
5741 #include <stddef.h>
5742 #include <mpcdec/mpcdec.h>
5743 int main(void) {
5744 mpc_streaminfo info;
5745 mpc_decoder decoder;
5746 mpc_decoder_set_streaminfo(&decoder, &info);
5747 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5748 return 0;
5751 cc_check -lmpcdec $_ld_lm && _musepack=yes
5753 if test "$_musepack" = yes ; then
5754 def_musepack='#define CONFIG_MUSEPACK 1'
5755 extra_ldflags="$extra_ldflags -lmpcdec"
5756 codecmodules="musepack $codecmodules"
5757 else
5758 def_musepack='#undef CONFIG_MUSEPACK'
5759 nocodecmodules="musepack $nocodecmodules"
5761 echores "$_musepack"
5764 echocheck "FAAD2 support"
5765 if test "$_faad" = auto ; then
5766 _faad=no
5767 cat > $TMPC << EOF
5768 #include <faad.h>
5769 #ifndef FAAD_MIN_STREAMSIZE
5770 #error Too old version
5771 #endif
5772 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5773 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5775 cc_check -lfaad $_ld_lm && _faad=yes
5778 def_faad='#undef CONFIG_FAAD'
5779 if test "$_faad" = yes ; then
5780 def_faad='#define CONFIG_FAAD 1'
5781 extra_ldflags="$extra_ldflags -lfaad"
5782 codecmodules="faad2 $codecmodules"
5783 else
5784 nocodecmodules="faad2 $nocodecmodules"
5786 echores "$_faad"
5789 echocheck "LADSPA plugin support"
5790 if test "$_ladspa" = auto ; then
5791 _ladspa=no
5792 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5794 if test "$_ladspa" = yes; then
5795 def_ladspa="#define CONFIG_LADSPA 1"
5796 else
5797 def_ladspa="#undef CONFIG_LADSPA"
5799 echores "$_ladspa"
5802 echocheck "libbs2b audio filter support"
5803 if test "$_libbs2b" = auto ; then
5804 cat > $TMPC <<EOF
5805 #include <bs2b.h>
5806 #if BS2B_VERSION_MAJOR < 3
5807 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5808 #endif
5809 int main(void) {
5810 t_bs2bdp filter;
5811 filter=bs2b_open();
5812 bs2b_close(filter);
5813 return 0;
5816 _libbs2b=no
5817 if $_pkg_config --exists libbs2b ; then
5818 _inc_tmp=$($_pkg_config --cflags libbs2b)
5819 _ld_tmp=$($_pkg_config --libs libbs2b)
5820 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5821 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5822 else
5823 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5824 -I/usr/local/include/bs2b ; do
5825 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5826 extra_ldflags="$extra_ldflags -lbs2b"
5827 extra_cflags="$extra_cflags $_inc_tmp"
5828 _libbs2b=yes
5829 break
5831 done
5834 def_libbs2b="#undef CONFIG_LIBBS2B"
5835 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5836 echores "$_libbs2b"
5839 if test -z "$_codecsdir" ; then
5840 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5841 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5842 if test -d "$dir" ; then
5843 _codecsdir="$dir"
5844 break;
5846 done
5848 # Fall back on default directory.
5849 if test -z "$_codecsdir" ; then
5850 _codecsdir="$_libdir/codecs"
5851 mingw32 || os2 && _codecsdir="codecs"
5855 echocheck "Win32 codecs"
5856 if test "$_win32dll" = auto ; then
5857 _win32dll=no
5858 if x86_32 && ! qnx; then
5859 _win32dll=yes
5862 if test "$_win32dll" = yes ; then
5863 def_win32dll='#define CONFIG_WIN32DLL 1'
5864 if ! win32 ; then
5865 def_win32_loader='#define WIN32_LOADER 1'
5866 _win32_emulation=yes
5867 else
5868 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5869 res_comment="using native windows"
5871 codecmodules="win32 $codecmodules"
5872 else
5873 def_win32dll='#undef CONFIG_WIN32DLL'
5874 def_win32_loader='#undef WIN32_LOADER'
5875 nocodecmodules="win32 $nocodecmodules"
5877 echores "$_win32dll"
5880 echocheck "XAnim codecs"
5881 if test "$_xanim" = auto ; then
5882 _xanim=no
5883 res_comment="dynamic loader support needed"
5884 if test "$_dl" = yes ; then
5885 _xanim=yes
5888 if test "$_xanim" = yes ; then
5889 def_xanim='#define CONFIG_XANIM 1'
5890 codecmodules="xanim $codecmodules"
5891 else
5892 def_xanim='#undef CONFIG_XANIM'
5893 nocodecmodules="xanim $nocodecmodules"
5895 echores "$_xanim"
5898 echocheck "RealPlayer codecs"
5899 if test "$_real" = auto ; then
5900 _real=no
5901 res_comment="dynamic loader support needed"
5902 if test "$_dl" = yes || test "$_win32dll" = yes &&
5903 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5904 _real=yes
5907 if test "$_real" = yes ; then
5908 def_real='#define CONFIG_REALCODECS 1'
5909 codecmodules="real $codecmodules"
5910 else
5911 def_real='#undef CONFIG_REALCODECS'
5912 nocodecmodules="real $nocodecmodules"
5914 echores "$_real"
5917 echocheck "QuickTime codecs"
5918 _qtx_emulation=no
5919 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5920 if test "$_qtx" = auto ; then
5921 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5923 if test "$_qtx" = yes ; then
5924 def_qtx='#define CONFIG_QTX_CODECS 1'
5925 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5926 codecmodules="qtx $codecmodules"
5927 darwin || win32 || _qtx_emulation=yes
5928 else
5929 def_qtx='#undef CONFIG_QTX_CODECS'
5930 nocodecmodules="qtx $nocodecmodules"
5932 echores "$_qtx"
5934 echocheck "Nemesi Streaming Media libraries"
5935 if test "$_nemesi" = auto && test "$networking" = yes ; then
5936 _nemesi=no
5937 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
5938 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
5939 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
5940 _nemesi=yes
5943 if test "$_nemesi" = yes; then
5944 _native_rtsp=no
5945 def_nemesi='#define CONFIG_LIBNEMESI 1'
5946 inputmodules="nemesi $inputmodules"
5947 else
5948 _native_rtsp="$networking"
5949 _nemesi=no
5950 def_nemesi='#undef CONFIG_LIBNEMESI'
5951 noinputmodules="nemesi $noinputmodules"
5953 echores "$_nemesi"
5955 echocheck "LIVE555 Streaming Media libraries"
5956 if test "$_live" = auto && test "$networking" = yes ; then
5957 cat > $TMPCPP << EOF
5958 #include <liveMedia.hh>
5959 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5960 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5961 #endif
5962 int main(void) { return 0; }
5965 _live=no
5966 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
5967 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5968 _livelibdir=$(echo $I| sed s/-I//) &&
5969 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5970 $_livelibdir/groupsock/libgroupsock.a \
5971 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5972 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5973 $extra_ldflags -lstdc++" \
5974 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5975 -I$_livelibdir/UsageEnvironment/include \
5976 -I$_livelibdir/BasicUsageEnvironment/include \
5977 -I$_livelibdir/groupsock/include" &&
5978 _live=yes && break
5979 done
5980 if test "$_live" != yes ; then
5981 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5982 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5983 _live_dist=yes
5987 if test "$_live" = yes && test "$networking" = yes; then
5988 test $_livelibdir && res_comment="using $_livelibdir"
5989 def_live='#define CONFIG_LIVE555 1'
5990 inputmodules="live555 $inputmodules"
5991 elif test "$_live_dist" = yes && test "$networking" = yes; then
5992 res_comment="using distribution version"
5993 _live="yes"
5994 def_live='#define CONFIG_LIVE555 1'
5995 extra_ldflags="$extra_ldflags $ld_tmp"
5996 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
5997 inputmodules="live555 $inputmodules"
5998 else
5999 _live=no
6000 def_live='#undef CONFIG_LIVE555'
6001 noinputmodules="live555 $noinputmodules"
6003 echores "$_live"
6007 all_libav_libs="libavutil libavcodec libavformat libswscale libpostproc"
6008 echocheck "Libav ($all_libav_libs)"
6009 if test "$ffmpeg" = auto ; then
6010 ffmpeg=no
6011 if $_pkg_config --exists --print-errors $all_libav_libs ; then
6012 inc_ffmpeg=$($_pkg_config --cflags $all_libav_libs)
6013 _ld_tmp=$($_pkg_config --libs $all_libav_libs)
6014 extra_ldflags="$extra_ldflags $_ld_tmp"
6015 extra_cflags="$extra_cflags $inc_ffmpeg"
6016 ffmpeg=yes
6017 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6018 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6019 ffmpeg=yes
6020 else
6021 die "Unable to find development files for some of the Libav libraries above. Aborting. If you really mean to compile without Libav support use --disable-libav."
6025 ffmpeg_eval_api=no
6026 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6027 if test "$ffmpeg" = yes; then
6028 def_ffmpeg='#define CONFIG_FFMPEG 1'
6029 codecmodules="ffmpeg $codecmodules"
6030 if $_pkg_config --atleast-version=50.33.0 libavutil ; then
6031 ffmpeg_eval_api=yes
6032 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6034 else
6035 def_ffmpeg='#undef CONFIG_FFMPEG'
6036 nocodecmodules="ffmpeg $nocodecmodules"
6038 echores "$ffmpeg"
6040 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6041 if ! test -z "$_ffmpeg_source" ; then
6042 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6047 echocheck "libdv-0.9.5+"
6048 if test "$_libdv" = auto ; then
6049 _libdv=no
6050 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6052 if test "$_libdv" = yes ; then
6053 def_libdv='#define CONFIG_LIBDV095 1'
6054 extra_ldflags="$extra_ldflags -ldv"
6055 codecmodules="libdv $codecmodules"
6056 else
6057 def_libdv='#undef CONFIG_LIBDV095'
6058 nocodecmodules="libdv $nocodecmodules"
6060 echores "$_libdv"
6063 echocheck "Xvid"
6064 if test "$_xvid" = auto ; then
6065 _xvid=no
6066 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6067 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6068 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6069 done
6072 if test "$_xvid" = yes ; then
6073 def_xvid='#define CONFIG_XVID4 1'
6074 codecmodules="xvid $codecmodules"
6075 else
6076 def_xvid='#undef CONFIG_XVID4'
6077 nocodecmodules="xvid $nocodecmodules"
6079 echores "$_xvid"
6082 echocheck "libnut"
6083 if test "$_libnut" = auto ; then
6084 _libnut=no
6085 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6088 if test "$_libnut" = yes ; then
6089 def_libnut='#define CONFIG_LIBNUT 1'
6090 extra_ldflags="$extra_ldflags -lnut"
6091 else
6092 def_libnut='#undef CONFIG_LIBNUT'
6094 echores "$_libnut"
6096 # These VO checks must be done after the FFmpeg one
6097 echocheck "/dev/mga_vid"
6098 if test "$_mga" = auto ; then
6099 _mga=no
6100 test -c /dev/mga_vid && _mga=yes
6102 if test "$_mga" = yes ; then
6103 def_mga='#define CONFIG_MGA 1'
6104 vomodules="mga $vomodules"
6105 else
6106 def_mga='#undef CONFIG_MGA'
6107 novomodules="mga $novomodules"
6109 echores "$_mga"
6112 echocheck "xmga"
6113 if test "$_xmga" = auto ; then
6114 _xmga=no
6115 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6117 if test "$_xmga" = yes ; then
6118 def_xmga='#define CONFIG_XMGA 1'
6119 vomodules="xmga $vomodules"
6120 else
6121 def_xmga='#undef CONFIG_XMGA'
6122 novomodules="xmga $novomodules"
6124 echores "$_xmga"
6127 echocheck "UnRAR executable"
6128 if test "$_unrar_exec" = auto ; then
6129 _unrar_exec="yes"
6130 mingw32 && _unrar_exec="no"
6132 if test "$_unrar_exec" = yes ; then
6133 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6134 else
6135 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6137 echores "$_unrar_exec"
6139 echocheck "TV interface"
6140 if test "$_tv" = yes ; then
6141 def_tv='#define CONFIG_TV 1'
6142 inputmodules="tv $inputmodules"
6143 else
6144 noinputmodules="tv $noinputmodules"
6145 def_tv='#undef CONFIG_TV'
6147 echores "$_tv"
6150 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6151 echocheck "*BSD BT848 bt8xx header"
6152 _ioctl_bt848_h=no
6153 for file in "machine/ioctl_bt848.h" \
6154 "dev/bktr/ioctl_bt848.h" \
6155 "dev/video/bktr/ioctl_bt848.h" \
6156 "dev/ic/bt8xx.h" ; do
6157 cat > $TMPC <<EOF
6158 #include <sys/types.h>
6159 #include <sys/ioctl.h>
6160 #include <$file>
6161 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6163 if cc_check ; then
6164 _ioctl_bt848_h=yes
6165 _ioctl_bt848_h_name="$file"
6166 break;
6168 done
6169 if test "$_ioctl_bt848_h" = yes ; then
6170 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6171 res_comment="using $_ioctl_bt848_h_name"
6172 else
6173 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6175 echores "$_ioctl_bt848_h"
6177 echocheck "*BSD ioctl_meteor.h"
6178 _ioctl_meteor_h=no
6179 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6180 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6181 _ioctl_meteor_h=yes && break
6182 done
6183 if test "$_ioctl_meteor_h" = yes ; then
6184 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6185 res_comment="using $ioctl_meteor_h_path"
6186 else
6187 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6189 echores "$_ioctl_meteor_h"
6191 echocheck "*BSD BrookTree 848 TV interface"
6192 if test "$_tv_bsdbt848" = auto ; then
6193 _tv_bsdbt848=no
6194 if test "$_tv" = yes ; then
6195 cat > $TMPC <<EOF
6196 #include <sys/types.h>
6197 $def_ioctl_meteor_h_name
6198 $def_ioctl_bt848_h_name
6199 #ifdef IOCTL_METEOR_H_NAME
6200 #include IOCTL_METEOR_H_NAME
6201 #endif
6202 #ifdef IOCTL_BT848_H_NAME
6203 #include IOCTL_BT848_H_NAME
6204 #endif
6205 int main(void) {
6206 ioctl(0, METEORSINPUT, 0);
6207 ioctl(0, TVTUNER_GETFREQ, 0);
6208 return 0;
6211 cc_check && _tv_bsdbt848=yes
6214 if test "$_tv_bsdbt848" = yes ; then
6215 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6216 inputmodules="tv-bsdbt848 $inputmodules"
6217 else
6218 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6219 noinputmodules="tv-bsdbt848 $noinputmodules"
6221 echores "$_tv_bsdbt848"
6222 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6225 echocheck "DirectShow TV interface"
6226 if test "$_tv_dshow" = auto ; then
6227 _tv_dshow=no
6228 if test "$_tv" = yes && win32 ; then
6229 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6232 if test "$_tv_dshow" = yes ; then
6233 inputmodules="tv-dshow $inputmodules"
6234 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6235 extra_ldflags="$extra_ldflags -lole32 -luuid"
6236 else
6237 noinputmodules="tv-dshow $noinputmodules"
6238 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6240 echores "$_tv_dshow"
6243 echocheck "Video 4 Linux TV interface"
6244 if test "$_tv_v4l1" = auto ; then
6245 _tv_v4l1=no
6246 if test "$_tv" = yes && linux ; then
6247 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6250 if test "$_tv_v4l1" = yes ; then
6251 _audio_input=yes
6252 _tv_v4l=yes
6253 def_tv_v4l='#define CONFIG_TV_V4L 1'
6254 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6255 inputmodules="tv-v4l $inputmodules"
6256 else
6257 noinputmodules="tv-v4l1 $noinputmodules"
6258 def_tv_v4l='#undef CONFIG_TV_V4L'
6260 echores "$_tv_v4l1"
6263 echocheck "Video 4 Linux 2 TV interface"
6264 if test "$_tv_v4l2" = auto ; then
6265 _tv_v4l2=no
6266 if test "$_tv" = yes && linux ; then
6267 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6268 elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
6269 _tv_v4l2=yes
6272 if test "$_tv_v4l2" = yes ; then
6273 _audio_input=yes
6274 _tv_v4l=yes
6275 def_tv_v4l='#define CONFIG_TV_V4L 1'
6276 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6277 inputmodules="tv-v4l2 $inputmodules"
6278 else
6279 noinputmodules="tv-v4l2 $noinputmodules"
6280 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6282 echores "$_tv_v4l2"
6285 echocheck "Radio interface"
6286 if test "$_radio" = yes ; then
6287 def_radio='#define CONFIG_RADIO 1'
6288 inputmodules="radio $inputmodules"
6289 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6290 _radio_capture=no
6292 if test "$_radio_capture" = yes ; then
6293 _audio_input=yes
6294 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6295 else
6296 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6298 else
6299 noinputmodules="radio $noinputmodules"
6300 def_radio='#undef CONFIG_RADIO'
6301 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6302 _radio_capture=no
6304 echores "$_radio"
6305 echocheck "Capture for Radio interface"
6306 echores "$_radio_capture"
6308 echocheck "Video 4 Linux 2 Radio interface"
6309 if test "$_radio_v4l2" = auto ; then
6310 _radio_v4l2=no
6311 if test "$_radio" = yes && linux ; then
6312 header_check linux/videodev2.h && _radio_v4l2=yes
6315 if test "$_radio_v4l2" = yes ; then
6316 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6317 else
6318 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6320 echores "$_radio_v4l2"
6322 echocheck "Video 4 Linux Radio interface"
6323 if test "$_radio_v4l" = auto ; then
6324 _radio_v4l=no
6325 if test "$_radio" = yes && linux ; then
6326 header_check linux/videodev.h && _radio_v4l=yes
6329 if test "$_radio_v4l" = yes ; then
6330 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6331 else
6332 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6334 echores "$_radio_v4l"
6336 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6337 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6338 echocheck "*BSD BrookTree 848 Radio interface"
6339 _radio_bsdbt848=no
6340 cat > $TMPC <<EOF
6341 #include <sys/types.h>
6342 $def_ioctl_bt848_h_name
6343 #ifdef IOCTL_BT848_H_NAME
6344 #include IOCTL_BT848_H_NAME
6345 #endif
6346 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6348 cc_check && _radio_bsdbt848=yes
6349 echores "$_radio_bsdbt848"
6350 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6352 if test "$_radio_bsdbt848" = yes ; then
6353 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6354 else
6355 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6358 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6359 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6360 die "Radio driver requires BSD BT848, V4L or V4L2!"
6363 echocheck "Video 4 Linux 2 MPEG PVR interface"
6364 if test "$_pvr" = auto ; then
6365 _pvr=no
6366 if test "$_tv_v4l2" = yes && linux ; then
6367 cat > $TMPC <<EOF
6368 #include <sys/time.h>
6369 #include <linux/videodev2.h>
6370 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6372 cc_check && _pvr=yes
6375 if test "$_pvr" = yes ; then
6376 def_pvr='#define CONFIG_PVR 1'
6377 inputmodules="pvr $inputmodules"
6378 else
6379 noinputmodules="pvr $noinputmodules"
6380 def_pvr='#undef CONFIG_PVR'
6382 echores "$_pvr"
6385 echocheck "ftp"
6386 if test "$_ftp" = "auto" ; then
6387 test "$networking" = "yes" && ! beos && _ftp=yes
6389 if test "$_ftp" = yes ; then
6390 def_ftp='#define CONFIG_FTP 1'
6391 inputmodules="ftp $inputmodules"
6392 else
6393 noinputmodules="ftp $noinputmodules"
6394 def_ftp='#undef CONFIG_FTP'
6396 echores "$_ftp"
6398 echocheck "vstream client"
6399 if test "$_vstream" = auto ; then
6400 _vstream=no
6401 cat > $TMPC <<EOF
6402 #include <vstream-client.h>
6403 void vstream_error(const char *format, ... ) {}
6404 int main(void) { vstream_start(); return 0; }
6406 cc_check -lvstream-client && _vstream=yes
6408 if test "$_vstream" = yes ; then
6409 def_vstream='#define CONFIG_VSTREAM 1'
6410 inputmodules="vstream $inputmodules"
6411 extra_ldflags="$extra_ldflags -lvstream-client"
6412 else
6413 noinputmodules="vstream $noinputmodules"
6414 def_vstream='#undef CONFIG_VSTREAM'
6416 echores "$_vstream"
6419 echocheck "Subtitles sorting"
6420 if test "$_sortsub" = yes ; then
6421 def_sortsub='#define CONFIG_SORTSUB 1'
6422 else
6423 def_sortsub='#undef CONFIG_SORTSUB'
6425 echores "$_sortsub"
6428 echocheck "XMMS inputplugin support"
6429 if test "$_xmms" = yes ; then
6430 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6431 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6432 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6433 else
6434 _xmmsplugindir=/usr/lib/xmms/Input
6435 _xmmslibdir=/usr/lib
6438 def_xmms='#define CONFIG_XMMS 1'
6439 if darwin ; then
6440 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6441 else
6442 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6444 else
6445 def_xmms='#undef CONFIG_XMMS'
6447 echores "$_xmms"
6449 if test "$_charset" != "noconv" ; then
6450 def_charset="#define MSG_CHARSET \"$_charset\""
6451 else
6452 def_charset="#undef MSG_CHARSET"
6453 _charset="UTF-8"
6456 #############################################################################
6458 echocheck "automatic gdb attach"
6459 if test "$_crash_debug" = yes ; then
6460 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6461 else
6462 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6463 _crash_debug=no
6465 echores "$_crash_debug"
6467 echocheck "compiler support for noexecstack"
6468 if cflag_check -Wl,-z,noexecstack ; then
6469 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6470 echores "yes"
6471 else
6472 echores "no"
6475 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6476 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6477 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6478 echores "yes"
6479 else
6480 echores "no"
6484 # Dynamic linking flags
6485 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6486 _ld_dl_dynamic=''
6487 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6488 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6489 _ld_dl_dynamic='-rdynamic'
6492 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6493 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6494 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6496 def_debug='#undef MP_DEBUG'
6497 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6500 echocheck "joystick"
6501 def_joystick='#undef CONFIG_JOYSTICK'
6502 if test "$_joystick" = yes ; then
6503 if linux || freebsd ; then
6504 # TODO add some check
6505 def_joystick='#define CONFIG_JOYSTICK 1'
6506 else
6507 _joystick="no"
6508 res_comment="unsupported under $system_name"
6511 echores "$_joystick"
6513 echocheck "lirc"
6514 if test "$_lirc" = auto ; then
6515 _lirc=no
6516 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6518 if test "$_lirc" = yes ; then
6519 def_lirc='#define CONFIG_LIRC 1'
6520 libs_mplayer="$libs_mplayer -llirc_client"
6521 else
6522 def_lirc='#undef CONFIG_LIRC'
6524 echores "$_lirc"
6526 echocheck "lircc"
6527 if test "$_lircc" = auto ; then
6528 _lircc=no
6529 header_check lirc/lircc.h -llircc && _lircc=yes
6531 if test "$_lircc" = yes ; then
6532 def_lircc='#define CONFIG_LIRCC 1'
6533 libs_mplayer="$libs_mplayer -llircc"
6534 else
6535 def_lircc='#undef CONFIG_LIRCC'
6537 echores "$_lircc"
6539 #############################################################################
6541 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6542 # the OMF format needs to come after the 'extern symbol prefix' check, which
6543 # uses nm.
6544 if os2 ; then
6545 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6548 #############################################################################
6550 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6552 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6554 # This must be the last test to be performed. Any other tests following it
6555 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6556 # against libdvdread (to permit MPlayer to use its own copy of the library).
6557 # So any compilation using the flags added here but not linking against
6558 # libdvdread can fail.
6559 echocheck "DVD support (libdvdnav)"
6560 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6561 _dvdnav=no
6563 dvdnav_internal=no
6564 if test "$_dvdnav" = auto ; then
6565 if test "$_dvdread_internal" = yes ; then
6566 _dvdnav=yes
6567 dvdnav_internal=yes
6568 res_comment="internal"
6569 else
6570 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6573 if test "$_dvdnav" = auto ; then
6574 _dvdnav=no
6575 _dvdnavdir=$($_dvdnavconfig --cflags)
6576 _dvdnavlibs=$($_dvdnavconfig --libs)
6577 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6579 if test "$_dvdnav" = yes ; then
6580 def_dvdnav='#define CONFIG_DVDNAV 1'
6581 if test "$dvdnav_internal" = yes ; then
6582 cflags_libdvdnav="-Ilibdvdnav"
6583 inputmodules="dvdnav(internal) $inputmodules"
6584 else
6585 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6586 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6587 inputmodules="dvdnav $inputmodules"
6589 else
6590 def_dvdnav='#undef CONFIG_DVDNAV'
6591 noinputmodules="dvdnav $noinputmodules"
6593 echores "$_dvdnav"
6595 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6596 # Read dvdnav comment above.
6598 mak_enable () {
6599 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6600 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6601 nprefix=$3;
6602 for part in $list; do
6603 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6604 echo "${nprefix}_$part = yes"
6606 done
6609 #############################################################################
6610 echo "Creating config.mak"
6611 cat > config.mak << EOF
6612 # -------- Generated by configure -----------
6614 # Ensure that locale settings do not interfere with shell commands.
6615 export LC_ALL = C
6617 CONFIGURATION = $configuration
6619 CHARSET = $_charset
6620 DOC_LANGS = $language_doc
6621 DOC_LANG_ALL = $doc_lang_all
6622 MAN_LANGS = $language_man
6623 MAN_LANG_ALL = $man_lang_all
6624 MSG_LANGS = $language_msg
6625 MSG_LANG_ALL = $msg_lang_all
6627 prefix = \$(DESTDIR)$_prefix
6628 BINDIR = \$(DESTDIR)$_bindir
6629 DATADIR = \$(DESTDIR)$_datadir
6630 LIBDIR = \$(DESTDIR)$_libdir
6631 MANDIR = \$(DESTDIR)$_mandir
6632 CONFDIR = \$(DESTDIR)$_confdir
6633 LOCALEDIR = \$(DESTDIR)$_localedir
6635 AR = $_ar
6636 AS = $_cc
6637 CC = $_cc
6638 CXX = $_cc
6639 HOST_CC = $_host_cc
6640 INSTALL = $_install
6641 INSTALLSTRIP = $_install_strip
6642 WINDRES = $_windres
6644 CFLAGS = $WARNFLAGS $ERRORFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6645 CXXFLAGS = $WARNFLAGS $ERRORFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6646 DEPFLAGS = $DEPFLAGS
6648 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6649 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6650 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6651 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6652 CFLAGS_STACKREALIGN = $cflags_stackrealign
6654 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6655 EXTRALIBS_MPLAYER = $libs_mplayer
6657 GETCH = $_getch
6658 TIMER = $_timer
6660 EXESUF = $_exesuf
6661 EXESUFS_ALL = .exe
6663 ARCH = $arch
6664 $(mak_enable "$arch_all" "$arch" ARCH)
6665 $(mak_enable "$subarch_all" "$subarch" ARCH)
6666 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6668 MPLAYER = $_mplayer
6670 NEED_GETTIMEOFDAY = $need_gettimeofday
6671 NEED_GLOB = $need_glob
6672 NEED_MMAP = $need_mmap
6673 NEED_SETENV = $need_setenv
6674 NEED_SHMEM = $need_shmem
6675 NEED_STRSEP = $need_strsep
6676 NEED_SWAB = $need_swab
6677 NEED_VSSCANF = $need_vsscanf
6679 # features
6680 3DFX = $_3dfx
6681 AA = $_aa
6682 ALSA1X = $_alsa1x
6683 ALSA9 = $_alsa9
6684 ALSA5 = $_alsa5
6685 APPLE_IR = $_apple_ir
6686 APPLE_REMOTE = $_apple_remote
6687 ARTS = $_arts
6688 AUDIO_INPUT = $_audio_input
6689 BITMAP_FONT = $_bitmap_font
6690 BL = $_bl
6691 CACA = $_caca
6692 CDDA = $_cdda
6693 CDDB = $_cddb
6694 COREAUDIO = $_coreaudio
6695 COREVIDEO = $_corevideo
6696 DART = $_dart
6697 DGA = $_dga
6698 DIRECT3D = $_direct3d
6699 DIRECTFB = $_directfb
6700 DIRECTX = $_directx
6701 DVBIN = $_dvbin
6702 DVDNAV = $_dvdnav
6703 DVDNAV_INTERNAL = $dvdnav_internal
6704 DVDREAD = $_dvdread
6705 DVDREAD_INTERNAL = $_dvdread_internal
6706 DXR3 = $_dxr3
6707 ESD = $_esd
6708 FAAD = $_faad
6709 FASTMEMCPY = $_fastmemcpy
6710 FBDEV = $_fbdev
6711 FREETYPE = $_freetype
6712 FTP = $_ftp
6713 GIF = $_gif
6714 GGI = $_ggi
6715 GL = $_gl
6716 GL_COCOA = $_gl_cocoa
6717 GL_WIN32 = $_gl_win32
6718 GL_X11 = $_gl_x11
6719 GL_SDL = $_gl_sdl
6720 HAVE_POSIX_SELECT = $_posix_select
6721 HAVE_SYS_MMAN_H = $_mman
6722 IVTV = $_ivtv
6723 JACK = $_jack
6724 JOYSTICK = $_joystick
6725 JPEG = $_jpeg
6726 KAI = $_kai
6727 KVA = $_kva
6728 LADSPA = $_ladspa
6729 LIBA52 = $_liba52
6730 LIBASS = $_ass
6731 LIBBLURAY = $_bluray
6732 LIBBS2B = $_libbs2b
6733 LIBDCA = $_libdca
6734 LIBDV = $_libdv
6735 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6736 LIBMAD = $_mad
6737 LIBNEMESI = $_nemesi
6738 LIBNUT = $_libnut
6739 LIBSMBCLIENT = $_smb
6740 LIBTHEORA = $_theora
6741 LIRC = $_lirc
6742 LIVE555 = $_live
6743 MACOSX_FINDER = $_macosx_finder
6744 MD5SUM = $_md5sum
6745 MGA = $_mga
6746 MNG = $_mng
6747 MPG123 = $_mpg123
6748 MUSEPACK = $_musepack
6749 NAS = $_nas
6750 NATIVE_RTSP = $_native_rtsp
6751 NETWORKING = $networking
6752 OPENAL = $_openal
6753 OSS = $_ossaudio
6754 PE_EXECUTABLE = $_pe_executable
6755 PNG = $_png
6756 PNM = $_pnm
6757 PRIORITY = $_priority
6758 PULSE = $_pulse
6759 PVR = $_pvr
6760 QTX_CODECS = $_qtx
6761 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6762 QTX_EMULATION = $_qtx_emulation
6763 QUARTZ = $_quartz
6764 RADIO=$_radio
6765 RADIO_CAPTURE=$_radio_capture
6766 REAL_CODECS = $_real
6767 RSOUND = $_rsound
6768 S3FB = $_s3fb
6769 SDL = $_sdl
6770 SPEEX = $_speex
6771 STREAM_CACHE = $_stream_cache
6772 SGIAUDIO = $_sgiaudio
6773 SUNAUDIO = $_sunaudio
6774 SVGA = $_svga
6775 TDFXFB = $_tdfxfb
6776 TDFXVID = $_tdfxvid
6777 TGA = $_tga
6778 TV = $_tv
6779 TV_BSDBT848 = $_tv_bsdbt848
6780 TV_DSHOW = $_tv_dshow
6781 TV_V4L = $_tv_v4l
6782 TV_V4L1 = $_tv_v4l1
6783 TV_V4L2 = $_tv_v4l2
6784 UNRAR_EXEC = $_unrar_exec
6785 V4L2 = $_v4l2
6786 VCD = $_vcd
6787 VDPAU = $_vdpau
6788 VESA = $_vesa
6789 VORBIS = $_vorbis
6790 VSTREAM = $_vstream
6791 WII = $_wii
6792 WIN32DLL = $_win32dll
6793 WIN32WAVEOUT = $_win32waveout
6794 WIN32_EMULATION = $_win32_emulation
6795 X11 = $_x11
6796 XANIM_CODECS = $_xanim
6797 XMGA = $_xmga
6798 XMMS_PLUGINS = $_xmms
6799 XV = $_xv
6800 XVID4 = $_xvid
6801 XVR100 = $_xvr100
6802 YUV4MPEG = $_yuv4mpeg
6804 # FFmpeg
6805 FFMPEG = $ffmpeg
6806 FFMPEG_EVAL_API = $ffmpeg_eval_api
6807 FFMPEG_INTERNALS = $ffmpeg_internals
6808 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6810 RANLIB = $_ranlib
6811 YASM = $_yasm
6812 YASMFLAGS = $YASMFLAGS
6814 CONFIG_VDPAU = $_vdpau
6815 CONFIG_ZLIB = $_zlib
6817 HAVE_PTHREADS = $_pthreads
6818 HAVE_SHM = $_shm
6819 HAVE_W32THREADS = $_w32threads
6820 HAVE_YASM = $have_yasm
6824 #############################################################################
6826 ff_config_enable () {
6827 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6828 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6829 _nprefix=$3;
6830 test -z "$_nprefix" && _nprefix='CONFIG'
6831 for part in $list; do
6832 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6833 echo "#define ${_nprefix}_$part 1"
6834 else
6835 echo "#define ${_nprefix}_$part 0"
6837 done
6840 echo "Creating config.h"
6841 cat > $TMPH << EOF
6842 /*----------------------------------------------------------------------------
6843 ** This file has been automatically generated by configure any changes in it
6844 ** will be lost when you run configure again.
6845 ** Instead of modifying definitions here, use the --enable/--disable options
6846 ** of the configure script! See ./configure --help for details.
6847 *---------------------------------------------------------------------------*/
6849 #ifndef MPLAYER_CONFIG_H
6850 #define MPLAYER_CONFIG_H
6852 /* Undefine this if you do not want to select mono audio (left or right)
6853 with a stereo MPEG layer 2/3 audio stream. The command line option
6854 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6855 right-only), with 0 being the default.
6857 #define CONFIG_FAKE_MONO 1
6859 /* set up audio OUTBURST. Do not change this! */
6860 #define OUTBURST 512
6862 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6863 #undef FAST_OSD
6864 #undef FAST_OSD_TABLE
6868 #define CONFIGURATION "$configuration"
6870 #define MPLAYER_DATADIR "$_datadir"
6871 #define MPLAYER_CONFDIR "$_confdir"
6872 #define MPLAYER_LOCALEDIR "$_localedir"
6874 $def_translation
6876 /* definitions needed by included libraries */
6877 #define HAVE_INTTYPES_H 1
6878 /* libdvdcss */
6879 #define HAVE_ERRNO_H 1
6880 /* libdvdcss + libdvdread */
6881 #define HAVE_LIMITS_H 1
6882 /* libdvdcss */
6883 #define HAVE_UNISTD_H 1
6884 /* libdvdread */
6885 #define STDC_HEADERS 1
6886 #define HAVE_MEMCPY 1
6887 /* libdvdnav */
6888 #define READ_CACHE_TRACE 0
6889 /* libdvdread */
6890 #define HAVE_DLFCN_H 1
6891 $def_dvdcss
6894 /* system headers */
6895 $def_alloca_h
6896 $def_alsa_asoundlib_h
6897 $def_altivec_h
6898 $def_malloc_h
6899 $def_mman_h
6900 $def_mman_has_map_failed
6901 $def_soundcard_h
6902 $def_sys_asoundlib_h
6903 $def_sys_soundcard_h
6904 $def_sys_sysinfo_h
6905 $def_sys_videoio_h
6906 $def_termios_h
6907 $def_termios_sys_h
6908 $def_winsock2_h
6911 /* system functions */
6912 $def_gethostbyname2
6913 $def_gettimeofday
6914 $def_glob
6915 $def_langinfo
6916 $def_lrintf
6917 $def_map_memalign
6918 $def_memalign
6919 $def_nanosleep
6920 $def_posix_select
6921 $def_select
6922 $def_setenv
6923 $def_setmode
6924 $def_shm
6925 $def_strsep
6926 $def_swab
6927 $def_sysi86
6928 $def_sysi86_iv
6929 $def_termcap
6930 $def_termios
6931 $def_vsscanf
6934 /* system-specific features */
6935 $def_asmalign_pot
6936 $def_builtin_expect
6937 $def_dl
6938 $def_dos_paths
6939 $def_extern_asm
6940 $def_extern_prefix
6941 $def_iconv
6942 $def_kstat
6943 $def_macosx_bundle
6944 $def_macosx_finder
6945 $def_priority
6946 $def_quicktime
6947 $def_restrict_keyword
6948 $def_rtc
6949 $def_unrar_exec
6952 /* configurable options */
6953 $def_charset
6954 $def_crash_debug
6955 $def_debug
6956 $def_fastmemcpy
6957 $def_runtime_cpudetection
6958 $def_sighandler
6959 $def_sortsub
6960 $def_stream_cache
6961 $def_pthread_cache
6964 /* CPU stuff */
6965 #define __CPU__ $iproc
6966 $def_ebx_available
6967 $def_words_endian
6968 $def_bigendian
6969 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6970 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6971 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
6974 /* Blu-ray/DVD/VCD/CD */
6975 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
6976 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
6977 $def_bluray
6978 $def_bsdi_dvd
6979 $def_cddb
6980 $def_cdio
6981 $def_cdparanoia
6982 $def_cdrom
6983 $def_dvd
6984 $def_dvd_bsd
6985 $def_dvd_darwin
6986 $def_dvd_linux
6987 $def_dvd_openbsd
6988 $def_dvdio
6989 $def_dvdnav
6990 $def_dvdread
6991 $def_hpux_scsi_h
6992 $def_libcdio
6993 $def_sol_scsi_h
6994 $def_vcd
6997 /* codec libraries */
6998 $def_faad
6999 $def_liba52
7000 $def_libdca
7001 $def_libdv
7002 $def_mad
7003 $def_mpg123
7004 $def_musepack
7005 $def_speex
7006 $def_theora
7007 $def_tremor
7008 $def_vorbis
7009 $def_xvid
7010 $def_zlib
7012 $def_libnut
7015 /* binary codecs */
7016 $def_qtx
7017 $def_qtx_win32
7018 $def_real
7019 $def_win32_loader
7020 $def_win32dll
7021 $def_xanim
7022 $def_xmms
7023 #define BINARY_CODECS_PATH "$_codecsdir"
7024 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7027 /* Audio output drivers */
7028 $def_alsa
7029 $def_alsa1x
7030 $def_alsa5
7031 $def_alsa9
7032 $def_arts
7033 $def_coreaudio
7034 $def_dart
7035 $def_esd
7036 $def_esd_latency
7037 $def_jack
7038 $def_kai
7039 $def_nas
7040 $def_openal
7041 $def_openal_h
7042 $def_ossaudio
7043 $def_ossaudio_devdsp
7044 $def_ossaudio_devmixer
7045 $def_pulse
7046 $def_rsound
7047 $def_sgiaudio
7048 $def_sunaudio
7049 $def_win32waveout
7051 $def_ladspa
7052 $def_libbs2b
7055 /* input */
7056 $def_apple_ir
7057 $def_apple_remote
7058 $def_ioctl_bt848_h_name
7059 $def_ioctl_meteor_h_name
7060 $def_joystick
7061 $def_lirc
7062 $def_lircc
7063 $def_pvr
7064 $def_radio
7065 $def_radio_bsdbt848
7066 $def_radio_capture
7067 $def_radio_v4l
7068 $def_radio_v4l2
7069 $def_tv
7070 $def_tv_bsdbt848
7071 $def_tv_dshow
7072 $def_tv_v4l
7073 $def_tv_v4l1
7074 $def_tv_v4l2
7077 /* font stuff */
7078 $def_ass
7079 $def_bitmap_font
7080 $def_enca
7081 $def_fontconfig
7082 $def_freetype
7083 $def_fribidi
7086 /* networking */
7087 $def_closesocket
7088 $def_ftp
7089 $def_inet6
7090 $def_inet_aton
7091 $def_inet_pton
7092 $def_live
7093 $def_nemesi
7094 $def_networking
7095 $def_smb
7096 $def_socklen_t
7097 $def_vstream
7100 /* libvo options */
7101 $def_3dfx
7102 $def_aa
7103 $def_bl
7104 $def_caca
7105 $def_corevideo
7106 $def_dga
7107 $def_dga1
7108 $def_dga2
7109 $def_direct3d
7110 $def_directfb
7111 $def_directx
7112 $def_dvb
7113 $def_dvbin
7114 $def_dxr3
7115 $def_fbdev
7116 $def_ggi
7117 $def_ggiwmh
7118 $def_gif
7119 $def_gif_4
7120 $def_gif_tvt_hack
7121 $def_gl
7122 $def_gl_cocoa
7123 $def_gl_win32
7124 $def_gl_x11
7125 $def_gl_sdl
7126 $def_ivtv
7127 $def_jpeg
7128 $def_kva
7129 $def_md5sum
7130 $def_mga
7131 $def_mng
7132 $def_png
7133 $def_pnm
7134 $def_quartz
7135 $def_s3fb
7136 $def_sdl
7137 $def_sdl_sdl_h
7138 $def_svga
7139 $def_tdfxfb
7140 $def_tdfxvid
7141 $def_tga
7142 $def_v4l2
7143 $def_vdpau
7144 $def_vesa
7145 $def_vm
7146 $def_wii
7147 $def_x11
7148 $def_xdpms
7149 $def_xf86keysym
7150 $def_xinerama
7151 $def_xmga
7152 $def_xss
7153 $def_xv
7154 $def_xvr100
7155 $def_yuv4mpeg
7158 /* FFmpeg */
7159 $def_ffmpeg
7160 $def_ffmpeg_eval_api
7161 $def_ffmpeg_internals
7163 $def_arpa_inet_h
7164 $def_bswap
7165 $def_dcbzl
7166 $def_exp2
7167 $def_exp2f
7168 $def_fast_64bit
7169 $def_fast_unaligned
7170 $def_llrint
7171 $def_log2
7172 $def_log2f
7173 $def_lrint
7174 $def_memalign_hack
7175 $def_mkstemp
7176 $def_posix_memalign
7177 $def_pthreads
7178 $def_round
7179 $def_roundf
7180 $def_threads
7181 $def_truncf
7182 $def_xform_asm
7183 $def_yasm
7185 #define HAVE_INLINE_ASM 1
7187 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7188 #ifndef MP_DEBUG
7189 #define HAVE_EBP_AVAILABLE 1
7190 #else
7191 #define HAVE_EBP_AVAILABLE 0
7192 #endif
7194 #endif /* MPLAYER_CONFIG_H */
7197 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7198 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7200 #############################################################################
7202 cat << EOF
7204 Config files successfully generated by ./configure $configuration !
7206 Install prefix: $_prefix
7207 Data directory: $_datadir
7208 Config direct.: $_confdir
7210 Byte order: $_byte_order
7211 Optimizing for: $_optimizing
7213 Languages:
7214 Messages (in addition to English): $language_msg
7215 Manual pages: $language_man
7216 Documentation: $language_doc
7218 Enabled optional drivers:
7219 Input: $inputmodules
7220 Codecs: $codecmodules
7221 Audio output: $aomodules
7222 Video output: $vomodules
7224 Disabled optional drivers:
7225 Input: $noinputmodules
7226 Codecs: $nocodecmodules
7227 Audio output: $noaomodules
7228 Video output: $novomodules
7230 'config.h' and 'config.mak' contain your configuration options.
7231 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7232 compile *** DO NOT REPORT BUGS if you tweak these files ***
7234 'make' will now compile MPlayer and 'make install' will install it.
7235 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7240 if test "$_mtrr" = yes ; then
7241 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7242 echo
7245 if ! x86_32; then
7246 cat <<EOF
7247 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7248 operating system ($system_name). You may encounter a few files that cannot
7249 be played due to missing open source video/audio codec support.
7255 cat <<EOF
7256 Check $TMPLOG if you wonder why an autodetection failed (make sure
7257 development headers/packages are installed).
7259 NOTE: The --enable-* parameters unconditionally force options on, completely
7260 skipping autodetection. This behavior is unlike what you may be used to from
7261 autoconf-based configure scripts that can decide to override you. This greater
7262 level of control comes at a price. You may have to provide the correct compiler
7263 and linker flags yourself.
7264 If you used one of these options (except --enable-runtime-cpudetection and
7265 similar ones that turn on internal features) and experience a compilation or
7266 linking failure, make sure you have passed the necessary compiler/linker flags
7267 to configure.
7269 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7273 if test "$warn_cflags" = yes; then
7274 cat <<EOF
7276 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7277 but:
7279 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7281 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7282 To do so, execute 'CFLAGS= ./configure <options>'
7287 # Last move:
7288 rm -rf "$mplayer_tmpdir"