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