ao: fix crash after ao init failure (from recent 3a5fd15fa2)
[mplayer/greg.git] / configure
blob4a01a855b82e86c5c7dc9924c1eb1e476d33be1b
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-pulse disable Pulseaudio audio output [autodetect]
432 --disable-jack disable JACK audio output [autodetect]
433 --enable-openal enable OpenAL audio output [disable]
434 --disable-nas disable NAS audio output [autodetect]
435 --disable-sgiaudio disable SGI audio output [autodetect]
436 --disable-sunaudio disable Sun audio output [autodetect]
437 --disable-kai disable KAI audio output [autodetect]
438 --disable-dart disable DART audio output [autodetect]
439 --disable-win32waveout disable Windows waveout audio output [autodetect]
440 --disable-coreaudio disable CoreAudio audio output [autodetect]
441 --disable-select disable using select() on the audio device [enable]
443 Language options:
444 --enable-translation enable support for translated output [disable]
445 --charset=charset convert the console messages to this character set
446 --language-doc=lang language to use for the documentation [en]
447 --language-man=lang language to use for the man pages [en]
448 --language-msg=lang extra languages for program messages [all]
449 --language=lang default language to use [en]
450 Specific options override --language. You can pass a list of languages separated
451 by whitespace or commas instead of a single language. Nonexisting translations
452 will be dropped from each list. All translations available in the list will be
453 installed. The value "all" will activate all translations. The LINGUAS
454 environment variable is honored. In all cases the fallback is English.
455 The program always supports English-language output; additional message
456 languages are only installed if --enable-translation is also specified.
457 Available values for --language-doc are: all $doc_lang_all
458 Available values for --language-man are: all $man_lang_all
459 Available values for --language-msg are: all $msg_lang_all
461 Miscellaneous options:
462 --enable-runtime-cpudetection enable runtime CPU detection [disable]
463 --enable-cross-compile enable cross-compilation [autodetect]
464 --cc=COMPILER C compiler to build MPlayer [gcc]
465 --host-cc=COMPILER C compiler for tools needed while building [gcc]
466 --as=ASSEMBLER assembler to build MPlayer [as]
467 --nm=NM nm tool to build MPlayer [nm]
468 --yasm=YASM Yasm assembler to build MPlayer [yasm]
469 --ar=AR librarian to build MPlayer [ar]
470 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
471 --windres=WINDRES windres to build MPlayer [windres]
472 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
473 --enable-static build a statically linked binary
474 --with-install=PATH path to a custom install program
476 Advanced options:
477 --enable-mmx enable MMX [autodetect]
478 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
479 --enable-3dnow enable 3DNow! [autodetect]
480 --enable-3dnowext enable extended 3DNow! [autodetect]
481 --enable-sse enable SSE [autodetect]
482 --enable-sse2 enable SSE2 [autodetect]
483 --enable-ssse3 enable SSSE3 [autodetect]
484 --enable-shm enable shm [autodetect]
485 --enable-altivec enable AltiVec (PowerPC) [autodetect]
486 --enable-armv5te enable DSP extensions (ARM) [autodetect]
487 --enable-armv6 enable ARMv6 (ARM) [autodetect]
488 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
489 --enable-armvfp enable ARM VFP (ARM) [autodetect]
490 --enable-neon enable NEON (ARM) [autodetect]
491 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
492 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
493 --enable-big-endian force byte order to big-endian [autodetect]
494 --enable-debug[=1-3] compile-in debugging information [disable]
495 --enable-profile compile-in profiling information [disable]
496 --disable-sighandler disable sighandler for crashes [enable]
497 --enable-crash-debug enable automatic gdb attach on crash [disable]
498 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
500 Use these options if autodetection fails:
501 --extra-cflags=FLAGS extra CFLAGS
502 --extra-ldflags=FLAGS extra LDFLAGS
503 --extra-libs=FLAGS extra linker flags
504 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
506 --with-freetype-config=PATH path to freetype-config
507 --with-sdl-config=PATH path to sdl*-config
508 --with-dvdnav-config=PATH path to dvdnav-config
509 --with-dvdread-config=PATH path to dvdread-config
511 This configure script is NOT autoconf-based, even though its output is similar.
512 It will try to autodetect all configuration options. If you --enable an option
513 it will be forcefully turned on, skipping autodetection. This can break
514 compilation, so you need to know what you are doing.
516 exit 0
517 } #show_help()
519 # GOTCHA: the variables below defines the default behavior for autodetection
520 # and have - unless stated otherwise - at least 2 states : yes no
521 # If autodetection is available then the third state is: auto
522 _mmx=auto
523 _3dnow=auto
524 _3dnowext=auto
525 _mmxext=auto
526 _sse=auto
527 _sse2=auto
528 _ssse3=auto
529 _cmov=auto
530 _fast_cmov=auto
531 _fast_clz=auto
532 _armv5te=auto
533 _armv6=auto
534 _armv6t2=auto
535 _armvfp=auto
536 neon=auto
537 _iwmmxt=auto
538 _mtrr=auto
539 _altivec=auto
540 _install=install
541 _ranlib=ranlib
542 _windres=windres
543 _cc=cc
544 _ar=ar
545 test "$CC" && _cc="$CC"
546 _as=auto
547 _nm=auto
548 _yasm=yasm
549 _runtime_cpudetection=no
550 _cross_compile=auto
551 _prefix="/usr/local"
552 ffmpeg=auto
553 ffmpeg_internals=no
554 _mplayer=yes
555 _x11=auto
556 _xshape=auto
557 _xss=auto
558 _dga1=auto
559 _dga2=auto
560 _xv=auto
561 _vdpau=auto
562 _sdl=auto
563 _kva=auto
564 _direct3d=auto
565 _directx=auto
566 _win32waveout=auto
567 _nas=auto
568 _png=auto
569 _mng=auto
570 _jpeg=auto
571 _pnm=yes
572 _md5sum=yes
573 _yuv4mpeg=yes
574 _gif=auto
575 _gl=auto
576 matrixview=yes
577 _ggi=auto
578 _ggiwmh=auto
579 _aa=auto
580 _caca=auto
581 _svga=auto
582 _vesa=auto
583 _fbdev=auto
584 _dvb=auto
585 _dxr3=auto
586 _ivtv=auto
587 _v4l2=auto
588 _iconv=auto
589 _langinfo=auto
590 _rtc=auto
591 _ossaudio=auto
592 _arts=auto
593 _esd=auto
594 _pulse=auto
595 _jack=auto
596 _kai=auto
597 _dart=auto
598 _openal=no
599 _libcdio=auto
600 _mad=auto
601 _tremor=auto
602 _libvorbis=auto
603 _speex=auto
604 _theora=auto
605 _mpg123=auto
606 _liba52=auto
607 _libdca=auto
608 _faad=auto
609 _ladspa=auto
610 _libbs2b=auto
611 _xmms=no
612 _vcd=auto
613 _bluray=auto
614 _dvdnav=auto
615 _dvdnavconfig=dvdnav-config
616 _dvdreadconfig=dvdread-config
617 _dvdread=auto
618 _dvdread_internal=auto
619 _libdvdcss_internal=auto
620 _xanim=auto
621 _real=auto
622 _live=auto
623 _nemesi=auto
624 _native_rtsp=yes
625 _xinerama=auto
626 _mga=auto
627 _xmga=auto
628 _vm=auto
629 _xf86keysym=auto
630 _sgiaudio=auto
631 _sunaudio=auto
632 _alsa=auto
633 _fastmemcpy=yes
634 _unrar_exec=auto
635 _win32dll=auto
636 _select=yes
637 _radio=no
638 _radio_capture=no
639 _radio_v4l=auto
640 _radio_v4l2=auto
641 _radio_bsdbt848=auto
642 _tv=yes
643 _tv_v4l1=auto
644 _tv_v4l2=auto
645 _tv_bsdbt848=auto
646 _tv_dshow=auto
647 _pvr=auto
648 networking=yes
649 _winsock2_h=auto
650 _smb=auto
651 _joystick=no
652 _xvid=auto
653 _libnut=auto
654 _lirc=auto
655 _lircc=auto
656 _apple_remote=auto
657 _apple_ir=auto
658 _termcap=auto
659 _termios=auto
660 _3dfx=no
661 _s3fb=no
662 _wii=no
663 _tdfxfb=no
664 _tdfxvid=no
665 _xvr100=auto
666 _tga=yes
667 _directfb=auto
668 _bl=no
669 #language=en
670 _shm=auto
671 _translation=no
672 _charset="UTF-8"
673 _dynamic_plugins=no
674 _crash_debug=no
675 _sighandler=yes
676 _libdv=auto
677 _cdparanoia=auto
678 _cddb=auto
679 _big_endian=auto
680 _bitmap_font=yes
681 _freetype=auto
682 _fontconfig=auto
683 _menu=no
684 _qtx=auto
685 _coreaudio=auto
686 _corevideo=auto
687 _quartz=auto
688 quicktime=auto
689 _macosx_finder=no
690 _macosx_bundle=auto
691 _sortsub=yes
692 _freetypeconfig='freetype-config'
693 _fribidi=auto
694 _enca=auto
695 _inet6=auto
696 _gethostbyname2=auto
697 _ftp=auto
698 _musepack=no
699 _vstream=auto
700 _pthreads=auto
701 _w32threads=auto
702 _ass=auto
703 _rpath=no
704 _asmalign_pot=auto
705 _stream_cache=yes
706 _priority=no
707 def_dos_paths="#define HAVE_DOS_PATHS 0"
708 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
709 def_priority="#undef CONFIG_PRIORITY"
710 def_pthread_cache="#undef PTHREAD_CACHE"
711 need_shmem=yes
712 for ac_option do
713 case "$ac_option" in
714 --help|-help|-h)
715 show_help
717 --prefix=*)
718 _prefix=$(echo $ac_option | cut -d '=' -f 2)
720 --bindir=*)
721 _bindir=$(echo $ac_option | cut -d '=' -f 2)
723 --datadir=*)
724 _datadir=$(echo $ac_option | cut -d '=' -f 2)
726 --mandir=*)
727 _mandir=$(echo $ac_option | cut -d '=' -f 2)
729 --confdir=*)
730 _confdir=$(echo $ac_option | cut -d '=' -f 2)
732 --libdir=*)
733 _libdir=$(echo $ac_option | cut -d '=' -f 2)
735 --codecsdir=*)
736 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
738 --localedir=*)
739 _localedir=$(echo $ac_option | cut -d '=' -f 2)
742 --with-install=*)
743 _install=$(echo $ac_option | cut -d '=' -f 2 )
746 --with-sdl-config=*)
747 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
749 --with-freetype-config=*)
750 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
752 --with-dvdnav-config=*)
753 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
755 --with-dvdread-config=*)
756 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
759 --extra-cflags=*)
760 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
762 --extra-ldflags=*)
763 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
765 --extra-libs=*)
766 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
768 --extra-libs-mplayer=*)
769 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
772 --target=*)
773 _target=$(echo $ac_option | cut -d '=' -f 2)
775 --cc=*)
776 _cc=$(echo $ac_option | cut -d '=' -f 2)
778 --host-cc=*)
779 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
781 --as=*)
782 _as=$(echo $ac_option | cut -d '=' -f 2)
784 --nm=*)
785 _nm=$(echo $ac_option | cut -d '=' -f 2)
787 --yasm=*)
788 _yasm=$(echo $ac_option | cut -d '=' -f 2)
790 --ar=*)
791 _ar=$(echo $ac_option | cut -d '=' -f 2)
793 --ranlib=*)
794 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
796 --windres=*)
797 _windres=$(echo $ac_option | cut -d '=' -f 2)
799 --charset=*)
800 _charset=$(echo $ac_option | cut -d '=' -f 2)
802 --language-doc=*)
803 language_doc=$(echo $ac_option | cut -d '=' -f 2)
805 --language-man=*)
806 language_man=$(echo $ac_option | cut -d '=' -f 2)
808 --language-msg=*)
809 language_msg=$(echo $ac_option | cut -d '=' -f 2)
811 --language=*)
812 language=$(echo $ac_option | cut -d '=' -f 2)
815 --enable-static)
816 _ld_static='-static'
818 --disable-static)
819 _ld_static=''
821 --enable-profile)
822 _profile='-p'
824 --disable-profile)
825 _profile=
827 --enable-debug)
828 _debug='-g'
830 --enable-debug=*)
831 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
833 --disable-debug)
834 _debug=
836 --enable-translation) _translation=yes ;;
837 --disable-translation) _translation=no ;;
838 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
839 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
840 --enable-cross-compile) _cross_compile=yes ;;
841 --disable-cross-compile) _cross_compile=no ;;
842 --enable-mplayer) _mplayer=yes ;;
843 --disable-mplayer) _mplayer=no ;;
844 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
845 --disable-dynamic-plugins) _dynamic_plugins=no ;;
846 --enable-x11) _x11=yes ;;
847 --disable-x11) _x11=no ;;
848 --enable-xshape) _xshape=yes ;;
849 --disable-xshape) _xshape=no ;;
850 --enable-xss) _xss=yes ;;
851 --disable-xss) _xss=no ;;
852 --enable-xv) _xv=yes ;;
853 --disable-xv) _xv=no ;;
854 --enable-vdpau) _vdpau=yes ;;
855 --disable-vdpau) _vdpau=no ;;
856 --enable-sdl) _sdl=yes ;;
857 --disable-sdl) _sdl=no ;;
858 --enable-kva) _kva=yes ;;
859 --disable-kva) _kva=no ;;
860 --enable-direct3d) _direct3d=yes ;;
861 --disable-direct3d) _direct3d=no ;;
862 --enable-directx) _directx=yes ;;
863 --disable-directx) _directx=no ;;
864 --enable-win32waveout) _win32waveout=yes ;;
865 --disable-win32waveout) _win32waveout=no ;;
866 --enable-nas) _nas=yes ;;
867 --disable-nas) _nas=no ;;
868 --enable-png) _png=yes ;;
869 --disable-png) _png=no ;;
870 --enable-mng) _mng=yes ;;
871 --disable-mng) _mng=no ;;
872 --enable-jpeg) _jpeg=yes ;;
873 --disable-jpeg) _jpeg=no ;;
874 --enable-pnm) _pnm=yes ;;
875 --disable-pnm) _pnm=no ;;
876 --enable-md5sum) _md5sum=yes ;;
877 --disable-md5sum) _md5sum=no ;;
878 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
879 --disable-yuv4mpeg) _yuv4mpeg=no ;;
880 --enable-gif) _gif=yes ;;
881 --disable-gif) _gif=no ;;
882 --enable-gl) _gl=yes ;;
883 --disable-gl) _gl=no ;;
884 --enable-matrixview) matrixview=yes ;;
885 --disable-matrixview) matrixview=no ;;
886 --enable-ggi) _ggi=yes ;;
887 --disable-ggi) _ggi=no ;;
888 --enable-ggiwmh) _ggiwmh=yes ;;
889 --disable-ggiwmh) _ggiwmh=no ;;
890 --enable-aa) _aa=yes ;;
891 --disable-aa) _aa=no ;;
892 --enable-caca) _caca=yes ;;
893 --disable-caca) _caca=no ;;
894 --enable-svga) _svga=yes ;;
895 --disable-svga) _svga=no ;;
896 --enable-vesa) _vesa=yes ;;
897 --disable-vesa) _vesa=no ;;
898 --enable-fbdev) _fbdev=yes ;;
899 --disable-fbdev) _fbdev=no ;;
900 --enable-dvb) _dvb=yes ;;
901 --disable-dvb) _dvb=no ;;
902 --enable-dxr3) _dxr3=yes ;;
903 --disable-dxr3) _dxr3=no ;;
904 --enable-ivtv) _ivtv=yes ;;
905 --disable-ivtv) _ivtv=no ;;
906 --enable-v4l2) _v4l2=yes ;;
907 --disable-v4l2) _v4l2=no ;;
908 --enable-iconv) _iconv=yes ;;
909 --disable-iconv) _iconv=no ;;
910 --enable-langinfo) _langinfo=yes ;;
911 --disable-langinfo) _langinfo=no ;;
912 --enable-rtc) _rtc=yes ;;
913 --disable-rtc) _rtc=no ;;
914 --enable-libdv) _libdv=yes ;;
915 --disable-libdv) _libdv=no ;;
916 --enable-ossaudio) _ossaudio=yes ;;
917 --disable-ossaudio) _ossaudio=no ;;
918 --enable-arts) _arts=yes ;;
919 --disable-arts) _arts=no ;;
920 --enable-esd) _esd=yes ;;
921 --disable-esd) _esd=no ;;
922 --enable-pulse) _pulse=yes ;;
923 --disable-pulse) _pulse=no ;;
924 --enable-jack) _jack=yes ;;
925 --disable-jack) _jack=no ;;
926 --enable-openal) _openal=yes ;;
927 --disable-openal) _openal=no ;;
928 --enable-kai) _kai=yes ;;
929 --disable-kai) _kai=no ;;
930 --enable-dart) _dart=yes ;;
931 --disable-dart) _dart=no ;;
932 --enable-mad) _mad=yes ;;
933 --disable-mad) _mad=no ;;
934 --enable-libcdio) _libcdio=yes ;;
935 --disable-libcdio) _libcdio=no ;;
936 --enable-libvorbis) _libvorbis=yes ;;
937 --disable-libvorbis) _libvorbis=no ;;
938 --enable-speex) _speex=yes ;;
939 --disable-speex) _speex=no ;;
940 --enable-tremor) _tremor=yes ;;
941 --disable-tremor) _tremor=no ;;
942 --enable-theora) _theora=yes ;;
943 --disable-theora) _theora=no ;;
944 --enable-mpg123) _mpg123=yes ;;
945 --disable-mpg123) _mpg123=no ;;
946 --enable-liba52) _liba52=yes ;;
947 --disable-liba52) _liba52=no ;;
948 --enable-libdca) _libdca=yes ;;
949 --disable-libdca) _libdca=no ;;
950 --enable-musepack) _musepack=yes ;;
951 --disable-musepack) _musepack=no ;;
952 --enable-faad) _faad=yes ;;
953 --disable-faad) _faad=no ;;
954 --enable-ladspa) _ladspa=yes ;;
955 --disable-ladspa) _ladspa=no ;;
956 --enable-libbs2b) _libbs2b=yes ;;
957 --disable-libbs2b) _libbs2b=no ;;
958 --enable-xmms) _xmms=yes ;;
959 --disable-xmms) _xmms=no ;;
960 --enable-vcd) _vcd=yes ;;
961 --disable-vcd) _vcd=no ;;
962 --enable-bluray) _bluray=yes ;;
963 --disable-bluray) _bluray=no ;;
964 --enable-dvdread) _dvdread=yes ;;
965 --disable-dvdread) _dvdread=no ;;
966 --enable-dvdread-internal) _dvdread_internal=yes ;;
967 --disable-dvdread-internal) _dvdread_internal=no ;;
968 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
969 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
970 --enable-dvdnav) _dvdnav=yes ;;
971 --disable-dvdnav) _dvdnav=no ;;
972 --enable-xanim) _xanim=yes ;;
973 --disable-xanim) _xanim=no ;;
974 --enable-real) _real=yes ;;
975 --disable-real) _real=no ;;
976 --enable-live) _live=yes ;;
977 --disable-live) _live=no ;;
978 --enable-nemesi) _nemesi=yes ;;
979 --disable-nemesi) _nemesi=no ;;
980 --enable-xinerama) _xinerama=yes ;;
981 --disable-xinerama) _xinerama=no ;;
982 --enable-mga) _mga=yes ;;
983 --disable-mga) _mga=no ;;
984 --enable-xmga) _xmga=yes ;;
985 --disable-xmga) _xmga=no ;;
986 --enable-vm) _vm=yes ;;
987 --disable-vm) _vm=no ;;
988 --enable-xf86keysym) _xf86keysym=yes ;;
989 --disable-xf86keysym) _xf86keysym=no ;;
990 --enable-sunaudio) _sunaudio=yes ;;
991 --disable-sunaudio) _sunaudio=no ;;
992 --enable-sgiaudio) _sgiaudio=yes ;;
993 --disable-sgiaudio) _sgiaudio=no ;;
994 --enable-alsa) _alsa=yes ;;
995 --disable-alsa) _alsa=no ;;
996 --enable-tv) _tv=yes ;;
997 --disable-tv) _tv=no ;;
998 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
999 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1000 --enable-tv-v4l1) _tv_v4l1=yes ;;
1001 --disable-tv-v4l1) _tv_v4l1=no ;;
1002 --enable-tv-v4l2) _tv_v4l2=yes ;;
1003 --disable-tv-v4l2) _tv_v4l2=no ;;
1004 --enable-tv-dshow) _tv_dshow=yes ;;
1005 --disable-tv-dshow) _tv_dshow=no ;;
1006 --enable-radio) _radio=yes ;;
1007 --enable-radio-capture) _radio_capture=yes ;;
1008 --disable-radio-capture) _radio_capture=no ;;
1009 --disable-radio) _radio=no ;;
1010 --enable-radio-v4l) _radio_v4l=yes ;;
1011 --disable-radio-v4l) _radio_v4l=no ;;
1012 --enable-radio-v4l2) _radio_v4l2=yes ;;
1013 --disable-radio-v4l2) _radio_v4l2=no ;;
1014 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1015 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1016 --enable-pvr) _pvr=yes ;;
1017 --disable-pvr) _pvr=no ;;
1018 --enable-fastmemcpy) _fastmemcpy=yes ;;
1019 --disable-fastmemcpy) _fastmemcpy=no ;;
1020 --enable-networking) networking=yes ;;
1021 --disable-networking) networking=no ;;
1022 --enable-winsock2_h) _winsock2_h=yes ;;
1023 --disable-winsock2_h) _winsock2_h=no ;;
1024 --enable-smb) _smb=yes ;;
1025 --disable-smb) _smb=no ;;
1026 --enable-joystick) _joystick=yes ;;
1027 --disable-joystick) _joystick=no ;;
1028 --enable-xvid) _xvid=yes ;;
1029 --disable-xvid) _xvid=no ;;
1030 --enable-libnut) _libnut=yes ;;
1031 --disable-libnut) _libnut=no ;;
1032 --enable-ffmpeg) ffmpeg=yes ;;
1033 --disable-ffmpeg) ffmpeg=no ;;
1034 --ffmpeg-source-dir=*)
1035 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1037 --enable-lirc) _lirc=yes ;;
1038 --disable-lirc) _lirc=no ;;
1039 --enable-lircc) _lircc=yes ;;
1040 --disable-lircc) _lircc=no ;;
1041 --enable-apple-remote) _apple_remote=yes ;;
1042 --disable-apple-remote) _apple_remote=no ;;
1043 --enable-apple-ir) _apple_ir=yes ;;
1044 --disable-apple-ir) _apple_ir=no ;;
1045 --enable-termcap) _termcap=yes ;;
1046 --disable-termcap) _termcap=no ;;
1047 --enable-termios) _termios=yes ;;
1048 --disable-termios) _termios=no ;;
1049 --enable-3dfx) _3dfx=yes ;;
1050 --disable-3dfx) _3dfx=no ;;
1051 --enable-s3fb) _s3fb=yes ;;
1052 --disable-s3fb) _s3fb=no ;;
1053 --enable-wii) _wii=yes ;;
1054 --disable-wii) _wii=no ;;
1055 --enable-tdfxfb) _tdfxfb=yes ;;
1056 --disable-tdfxfb) _tdfxfb=no ;;
1057 --disable-tdfxvid) _tdfxvid=no ;;
1058 --enable-tdfxvid) _tdfxvid=yes ;;
1059 --disable-xvr100) _xvr100=no ;;
1060 --enable-xvr100) _xvr100=yes ;;
1061 --disable-tga) _tga=no ;;
1062 --enable-tga) _tga=yes ;;
1063 --enable-directfb) _directfb=yes ;;
1064 --disable-directfb) _directfb=no ;;
1065 --enable-bl) _bl=yes ;;
1066 --disable-bl) _bl=no ;;
1067 --enable-mtrr) _mtrr=yes ;;
1068 --disable-mtrr) _mtrr=no ;;
1069 --enable-shm) _shm=yes ;;
1070 --disable-shm) _shm=no ;;
1071 --enable-select) _select=yes ;;
1072 --disable-select) _select=no ;;
1073 --enable-cdparanoia) _cdparanoia=yes ;;
1074 --disable-cdparanoia) _cdparanoia=no ;;
1075 --enable-cddb) _cddb=yes ;;
1076 --disable-cddb) _cddb=no ;;
1077 --enable-big-endian) _big_endian=yes ;;
1078 --disable-big-endian) _big_endian=no ;;
1079 --enable-bitmap-font) _bitmap_font=yes ;;
1080 --disable-bitmap-font) _bitmap_font=no ;;
1081 --enable-freetype) _freetype=yes ;;
1082 --disable-freetype) _freetype=no ;;
1083 --enable-fontconfig) _fontconfig=yes ;;
1084 --disable-fontconfig) _fontconfig=no ;;
1085 --enable-unrarexec) _unrar_exec=yes ;;
1086 --disable-unrarexec) _unrar_exec=no ;;
1087 --enable-ftp) _ftp=yes ;;
1088 --disable-ftp) _ftp=no ;;
1089 --enable-vstream) _vstream=yes ;;
1090 --disable-vstream) _vstream=no ;;
1091 --enable-pthreads) _pthreads=yes ;;
1092 --disable-pthreads) _pthreads=no ;;
1093 --enable-w32threads) _w32threads=yes ;;
1094 --disable-w32threads) _w32threads=no ;;
1095 --enable-ass) _ass=yes ;;
1096 --disable-ass) _ass=no ;;
1097 --enable-rpath) _rpath=yes ;;
1098 --disable-rpath) _rpath=no ;;
1100 --enable-fribidi) _fribidi=yes ;;
1101 --disable-fribidi) _fribidi=no ;;
1103 --enable-enca) _enca=yes ;;
1104 --disable-enca) _enca=no ;;
1106 --enable-inet6) _inet6=yes ;;
1107 --disable-inet6) _inet6=no ;;
1109 --enable-gethostbyname2) _gethostbyname2=yes ;;
1110 --disable-gethostbyname2) _gethostbyname2=no ;;
1112 --enable-dga1) _dga1=yes ;;
1113 --disable-dga1) _dga1=no ;;
1114 --enable-dga2) _dga2=yes ;;
1115 --disable-dga2) _dga2=no ;;
1117 --enable-menu) _menu=yes ;;
1118 --disable-menu) _menu=no ;;
1120 --enable-qtx) _qtx=yes ;;
1121 --disable-qtx) _qtx=no ;;
1123 --enable-coreaudio) _coreaudio=yes ;;
1124 --disable-coreaudio) _coreaudio=no ;;
1125 --enable-corevideo) _corevideo=yes ;;
1126 --disable-corevideo) _corevideo=no ;;
1127 --enable-quartz) _quartz=yes ;;
1128 --disable-quartz) _quartz=no ;;
1129 --enable-macosx-finder) _macosx_finder=yes ;;
1130 --disable-macosx-finder) _macosx_finder=no ;;
1131 --enable-macosx-bundle) _macosx_bundle=yes ;;
1132 --disable-macosx-bundle) _macosx_bundle=no ;;
1134 --enable-sortsub) _sortsub=yes ;;
1135 --disable-sortsub) _sortsub=no ;;
1137 --enable-crash-debug) _crash_debug=yes ;;
1138 --disable-crash-debug) _crash_debug=no ;;
1139 --enable-sighandler) _sighandler=yes ;;
1140 --disable-sighandler) _sighandler=no ;;
1141 --enable-win32dll) _win32dll=yes ;;
1142 --disable-win32dll) _win32dll=no ;;
1144 --enable-sse) _sse=yes ;;
1145 --disable-sse) _sse=no ;;
1146 --enable-sse2) _sse2=yes ;;
1147 --disable-sse2) _sse2=no ;;
1148 --enable-ssse3) _ssse3=yes ;;
1149 --disable-ssse3) _ssse3=no ;;
1150 --enable-mmxext) _mmxext=yes ;;
1151 --disable-mmxext) _mmxext=no ;;
1152 --enable-3dnow) _3dnow=yes ;;
1153 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1154 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1155 --disable-3dnowext) _3dnowext=no ;;
1156 --enable-cmov) _cmov=yes ;;
1157 --disable-cmov) _cmov=no ;;
1158 --enable-fast-cmov) _fast_cmov=yes ;;
1159 --disable-fast-cmov) _fast_cmov=no ;;
1160 --enable-fast-clz) _fast_clz=yes ;;
1161 --disable-fast-clz) _fast_clz=no ;;
1162 --enable-altivec) _altivec=yes ;;
1163 --disable-altivec) _altivec=no ;;
1164 --enable-armv5te) _armv5te=yes ;;
1165 --disable-armv5te) _armv5te=no ;;
1166 --enable-armv6) _armv6=yes ;;
1167 --disable-armv6) _armv6=no ;;
1168 --enable-armv6t2) _armv6t2=yes ;;
1169 --disable-armv6t2) _armv6t2=no ;;
1170 --enable-armvfp) _armvfp=yes ;;
1171 --disable-armvfp) _armvfp=no ;;
1172 --enable-neon) neon=yes ;;
1173 --disable-neon) neon=no ;;
1174 --enable-iwmmxt) _iwmmxt=yes ;;
1175 --disable-iwmmxt) _iwmmxt=no ;;
1176 --enable-mmx) _mmx=yes ;;
1177 --disable-mmx) # 3Dnow! and MMX2 require MMX
1178 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1181 echo "Unknown parameter: $ac_option" >&2
1182 exit 1
1185 esac
1186 done
1188 # Atmos: moved this here, to be correct, if --prefix is specified
1189 test -z "$_bindir" && _bindir="$_prefix/bin"
1190 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1191 test -z "$_mandir" && _mandir="$_prefix/share/man"
1192 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1193 test -z "$_libdir" && _libdir="$_prefix/lib"
1194 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1196 # Determine our OS name and CPU architecture
1197 if test -z "$_target" ; then
1198 # OS name
1199 system_name=$(uname -s 2>&1)
1200 case "$system_name" in
1201 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1203 Haiku)
1204 system_name=BeOS
1206 IRIX*)
1207 system_name=IRIX
1209 GNU/kFreeBSD)
1210 system_name=FreeBSD
1212 HP-UX*)
1213 system_name=HP-UX
1215 [cC][yY][gG][wW][iI][nN]*)
1216 system_name=CYGWIN
1218 MINGW32*)
1219 system_name=MINGW32
1221 OS/2*)
1222 system_name=OS/2
1225 system_name="$system_name-UNKNOWN"
1227 esac
1230 # host's CPU/instruction set
1231 host_arch=$(uname -p 2>&1)
1232 case "$host_arch" in
1233 i386|sparc|ppc|alpha|arm|mips|vax)
1235 powerpc) # Darwin returns 'powerpc'
1236 host_arch=ppc
1238 *) # uname -p on Linux returns 'unknown' for the processor type,
1239 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1241 # Maybe uname -m (machine hardware name) returns something we
1242 # recognize.
1244 # x86/x86pc is used by QNX
1245 case "$(uname -m 2>&1)" in
1246 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 ;;
1247 ia64) host_arch=ia64 ;;
1248 macppc|ppc) host_arch=ppc ;;
1249 ppc64) host_arch=ppc64 ;;
1250 alpha) host_arch=alpha ;;
1251 sparc) host_arch=sparc ;;
1252 sparc64) host_arch=sparc64 ;;
1253 parisc*|hppa*|9000*) host_arch=hppa ;;
1254 arm*|zaurus|cats) host_arch=arm ;;
1255 sh3|sh4|sh4a) host_arch=sh ;;
1256 s390) host_arch=s390 ;;
1257 s390x) host_arch=s390x ;;
1258 *mips*) host_arch=mips ;;
1259 vax) host_arch=vax ;;
1260 xtensa*) host_arch=xtensa ;;
1261 *) host_arch=UNKNOWN ;;
1262 esac
1264 esac
1265 else # if test -z "$_target"
1266 system_name=$(echo $_target | cut -d '-' -f 2)
1267 case "$(echo $system_name | tr A-Z a-z)" in
1268 linux) system_name=Linux ;;
1269 freebsd) system_name=FreeBSD ;;
1270 gnu/kfreebsd) system_name=FreeBSD ;;
1271 netbsd) system_name=NetBSD ;;
1272 bsd/os) system_name=BSD/OS ;;
1273 openbsd) system_name=OpenBSD ;;
1274 dragonfly) system_name=DragonFly ;;
1275 sunos) system_name=SunOS ;;
1276 qnx) system_name=QNX ;;
1277 morphos) system_name=MorphOS ;;
1278 amigaos) system_name=AmigaOS ;;
1279 mingw32*) system_name=MINGW32 ;;
1280 esac
1281 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1282 host_arch=$(echo $_target | cut -d '-' -f 1)
1283 if test $(echo $host_arch) != "x86_64" ; then
1284 host_arch=$(echo $host_arch | tr '_' '-')
1288 extra_cflags="-I. $extra_cflags"
1289 _timer=timer-linux.c
1290 _getch=getch2.c
1291 if freebsd ; then
1292 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1293 extra_cflags="$extra_cflags -I/usr/local/include"
1296 if netbsd || dragonfly ; then
1297 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1298 extra_cflags="$extra_cflags -I/usr/pkg/include"
1301 if darwin; then
1302 extra_cflags="-mdynamic-no-pic $extra_cflags"
1303 if test "$(basename $_cc)" != "clang" ; then
1304 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1306 _timer=timer-darwin.c
1309 if aix ; then
1310 extra_ldflags="$extra_ldflags -lC"
1313 if irix ; then
1314 _ranlib='ar -r'
1315 elif linux ; then
1316 _ranlib='true'
1319 if win32 ; then
1320 _exesuf=".exe"
1321 extra_cflags="$extra_cflags -fno-common"
1322 # -lwinmm is always needed for osdep/timer-win2.c
1323 extra_ldflags="$extra_ldflags -lwinmm"
1324 _pe_executable=yes
1325 _timer=timer-win2.c
1326 _priority=yes
1327 def_dos_paths="#define HAVE_DOS_PATHS 1"
1328 def_priority="#define CONFIG_PRIORITY 1"
1331 if mingw32 ; then
1332 _getch=getch2-win.c
1333 need_shmem=no
1336 if amigaos ; then
1337 _select=no
1338 _sighandler=no
1339 _stream_cache=no
1340 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1341 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1344 if qnx ; then
1345 extra_ldflags="$extra_ldflags -lph"
1348 if os2 ; then
1349 _exesuf=".exe"
1350 _getch=getch2-os2.c
1351 need_shmem=no
1352 _priority=yes
1353 def_dos_paths="#define HAVE_DOS_PATHS 1"
1354 def_priority="#define CONFIG_PRIORITY 1"
1357 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1358 test "$tmpdir" && break
1359 done
1361 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1362 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1364 TMPLOG="config.log"
1365 TMPC="$mplayer_tmpdir/tmp.c"
1366 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1367 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1368 TMPH="$mplayer_tmpdir/tmp.h"
1369 TMPS="$mplayer_tmpdir/tmp.S"
1371 rm -f "$TMPLOG"
1372 echo configuration: $configuration > "$TMPLOG"
1373 echo >> "$TMPLOG"
1376 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1377 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1381 # Checking CC version...
1382 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1383 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1384 echocheck "$_cc version"
1385 cc_vendor=intel
1386 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1387 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1388 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1389 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1390 # TODO verify older icc/ecc compatibility
1391 case $cc_version in
1393 cc_version="v. ?.??, bad"
1394 cc_fail=yes
1396 10.1|11.0|11.1)
1397 cc_version="$cc_version, ok"
1400 cc_version="$cc_version, bad"
1401 cc_fail=yes
1403 esac
1404 echores "$cc_version"
1405 else
1406 for _cc in "$_cc" gcc cc ; do
1407 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1408 if test "$cc_name_tmp" = "gcc"; then
1409 cc_name=$cc_name_tmp
1410 echocheck "$_cc version"
1411 cc_vendor=gnu
1412 cc_version=$($_cc -dumpversion 2>&1)
1413 case $cc_version in
1414 2.96*)
1415 cc_fail=yes
1418 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1419 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1420 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1422 esac
1423 echores "$cc_version"
1424 break
1426 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1427 if test "$cc_name_tmp" = "clang"; then
1428 echocheck "$_cc version"
1429 cc_vendor=clang
1430 cc_version=$($_cc -dumpversion 2>&1)
1431 res_comment="experimental support only"
1432 echores "clang $cc_version"
1433 break
1435 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1436 if test "$cc_name_tmp" = "Sun C"; then
1437 echocheck "$_cc version"
1438 cc_vendor=sun
1439 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1440 res_comment="experimental support only"
1441 echores "Sun C $cc_version"
1442 break
1444 done
1445 fi # icc
1446 test "$cc_fail" = yes && die "unsupported compiler version"
1448 if test -z "$_target" && x86 ; then
1449 cat > $TMPC << EOF
1450 int main(void) {
1451 int test[(int)sizeof(char *)-7];
1452 return 0;
1455 cc_check && host_arch=x86_64 || host_arch=i386
1458 echo "Detected operating system: $system_name"
1459 echo "Detected host architecture: $host_arch"
1461 echocheck "host cc"
1462 test "$_host_cc" || _host_cc=$_cc
1463 echores $_host_cc
1465 echocheck "cross compilation"
1466 if test $_cross_compile = auto ; then
1467 _cross_compile=yes
1468 cflag_check "" && "$TMPEXE" && _cross_compile=no
1470 echores $_cross_compile
1472 if test $_cross_compile = yes; then
1473 tmp_run() {
1474 return 0
1478 # ---
1480 # now that we know what compiler should be used for compilation, try to find
1481 # out which assembler is used by the $_cc compiler
1482 if test "$_as" = auto ; then
1483 _as=$($_cc -print-prog-name=as)
1484 test -z "$_as" && _as=as
1487 if test "$_nm" = auto ; then
1488 _nm=$($_cc -print-prog-name=nm)
1489 test -z "$_nm" && _nm=nm
1492 # XXX: this should be ok..
1493 _cpuinfo="echo"
1495 if test "$_runtime_cpudetection" = no ; then
1497 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1498 # FIXME: Remove the cygwin check once AMD CPUs are supported
1499 if test -r /proc/cpuinfo && ! cygwin; then
1500 # Linux with /proc mounted, extract CPU information from it
1501 _cpuinfo="cat /proc/cpuinfo"
1502 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1503 # FreeBSD with Linux emulation /proc mounted,
1504 # extract CPU information from it
1505 # Don't use it on x86 though, it never reports 3Dnow
1506 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1507 elif darwin && ! x86 ; then
1508 # use hostinfo on Darwin
1509 _cpuinfo="hostinfo"
1510 elif aix; then
1511 # use 'lsattr' on AIX
1512 _cpuinfo="lsattr -E -l proc0 -a type"
1513 elif x86; then
1514 # all other OSes try to extract CPU information from a small helper
1515 # program cpuinfo instead
1516 $_cc -o cpuinfo$_exesuf cpuinfo.c
1517 _cpuinfo="./cpuinfo$_exesuf"
1520 if x86 ; then
1521 # gather more CPU information
1522 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1523 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1524 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1525 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1526 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1528 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1530 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1531 -e s/xmm/sse/ -e s/kni/sse/)
1533 for ext in $pparam ; do
1534 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1535 done
1537 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1538 test $_sse = kernel_check && _mmxext=kernel_check
1540 echocheck "CPU vendor"
1541 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1543 echocheck "CPU type"
1544 echores "$pname"
1547 fi # test "$_runtime_cpudetection" = no
1549 if x86 && test "$_runtime_cpudetection" = no ; then
1550 extcheck() {
1551 if test "$1" = kernel_check ; then
1552 echocheck "kernel support of $2"
1553 cat > $TMPC <<EOF
1554 #include <stdlib.h>
1555 #include <signal.h>
1556 static void catch(int sig) { exit(1); }
1557 int main(void) {
1558 signal(SIGILL, catch);
1559 __asm__ volatile ("$3":::"memory"); return 0;
1563 if cc_check && tmp_run ; then
1564 eval _$2=yes
1565 echores "yes"
1566 _optimizing="$_optimizing $2"
1567 return 0
1568 else
1569 eval _$2=no
1570 echores "failed"
1571 echo "It seems that your kernel does not correctly support $2."
1572 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1573 return 1
1576 return 0
1579 extcheck $_mmx "mmx" "emms"
1580 extcheck $_mmxext "mmxext" "sfence"
1581 extcheck $_3dnow "3dnow" "femms"
1582 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1583 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1584 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1585 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1586 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1588 echocheck "mtrr support"
1589 if test "$_mtrr" = kernel_check ; then
1590 _mtrr="yes"
1591 _optimizing="$_optimizing mtrr"
1593 echores "$_mtrr"
1595 if test "$_gcc3_ext" != ""; then
1596 # if we had to disable sse/sse2 because the active kernel does not
1597 # support this instruction set extension, we also have to tell
1598 # gcc3 to not generate sse/sse2 instructions for normal C code
1599 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1605 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1606 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1607 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1608 subarch_all='X86_32 X86_64 PPC64'
1609 case "$host_arch" in
1610 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1611 arch='x86'
1612 subarch='x86_32'
1613 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1614 iproc=486
1615 proc=i486
1618 if test "$_runtime_cpudetection" = no ; then
1619 case "$pvendor" in
1620 AuthenticAMD)
1621 case "$pfamily" in
1622 3) proc=i386 iproc=386 ;;
1623 4) proc=i486 iproc=486 ;;
1624 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1625 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1626 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1627 proc=k6-3
1628 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1629 proc=geode
1630 elif test "$pmodel" -ge 8; then
1631 proc=k6-2
1632 elif test "$pmodel" -ge 6; then
1633 proc=k6
1634 else
1635 proc=i586
1638 6) iproc=686
1639 # It's a bit difficult to determine the correct type of Family 6
1640 # AMD CPUs just from their signature. Instead, we check directly
1641 # whether it supports SSE.
1642 if test "$_sse" = yes; then
1643 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1644 proc=athlon-xp
1645 else
1646 # Again, gcc treats athlon and athlon-tbird similarly.
1647 proc=athlon
1650 15) iproc=686
1651 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1652 # caught and remedied in the optimization tests below.
1653 proc=k8
1656 *) proc=amdfam10 iproc=686
1657 test $_fast_clz = "auto" && _fast_clz=yes
1659 esac
1661 GenuineIntel)
1662 case "$pfamily" in
1663 3) proc=i386 iproc=386 ;;
1664 4) proc=i486 iproc=486 ;;
1665 5) iproc=586
1666 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1667 proc=pentium-mmx # 4 is desktop, 8 is mobile
1668 else
1669 proc=i586
1672 6) iproc=686
1673 if test "$pmodel" -ge 15; then
1674 proc=core2
1675 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1676 proc=pentium-m
1677 elif test "$pmodel" -ge 7; then
1678 proc=pentium3
1679 elif test "$pmodel" -ge 3; then
1680 proc=pentium2
1681 else
1682 proc=i686
1684 test $_fast_clz = "auto" && _fast_clz=yes
1686 15) iproc=686
1687 # A nocona in 32-bit mode has no more capabilities than a prescott.
1688 if test "$pmodel" -ge 3; then
1689 proc=prescott
1690 else
1691 proc=pentium4
1692 test $_fast_clz = "auto" && _fast_clz=yes
1694 test $_fast_cmov = "auto" && _fast_cmov=no
1696 *) proc=prescott iproc=686 ;;
1697 esac
1699 CentaurHauls)
1700 case "$pfamily" in
1701 5) iproc=586
1702 if test "$pmodel" -ge 8; then
1703 proc=winchip2
1704 elif test "$pmodel" -ge 4; then
1705 proc=winchip-c6
1706 else
1707 proc=i586
1710 6) iproc=686
1711 if test "$pmodel" -ge 9; then
1712 proc=c3-2
1713 else
1714 proc=c3
1715 iproc=586
1718 *) proc=i686 iproc=i686 ;;
1719 esac
1721 unknown)
1722 case "$pfamily" in
1723 3) proc=i386 iproc=386 ;;
1724 4) proc=i486 iproc=486 ;;
1725 *) proc=i586 iproc=586 ;;
1726 esac
1729 proc=i586 iproc=586 ;;
1730 esac
1731 test $_fast_clz = "auto" && _fast_clz=no
1732 fi # test "$_runtime_cpudetection" = no
1735 # check that gcc supports our CPU, if not, fall back to earlier ones
1736 # LGB: check -mcpu and -march swithing step by step with enabling
1737 # to fall back till 386.
1739 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1741 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1742 cpuopt=-mtune
1743 else
1744 cpuopt=-mcpu
1747 echocheck "GCC & CPU optimization abilities"
1748 if test "$_runtime_cpudetection" = no ; then
1749 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1750 cflag_check -march=native && proc=native
1752 if test "$proc" = "amdfam10"; then
1753 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1755 if test "$proc" = "k8"; then
1756 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1758 if test "$proc" = "athlon-xp"; then
1759 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1761 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1762 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1764 if test "$proc" = "k6" || test "$proc" = "c3"; then
1765 if ! cflag_check -march=$proc $cpuopt=$proc; then
1766 if cflag_check -march=i586 $cpuopt=i686; then
1767 proc=i586-i686
1768 else
1769 proc=i586
1773 if test "$proc" = "prescott" ; then
1774 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1776 if test "$proc" = "core2" ; then
1777 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1779 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
1780 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1782 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1783 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1785 if test "$proc" = "i586"; then
1786 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1788 if test "$proc" = "i486" ; then
1789 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1791 if test "$proc" = "i386" ; then
1792 cflag_check -march=$proc $cpuopt=$proc || proc=error
1794 if test "$proc" = "error" ; then
1795 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1796 _mcpu=""
1797 _march=""
1798 _optimizing=""
1799 elif test "$proc" = "i586-i686"; then
1800 _march="-march=i586"
1801 _mcpu="$cpuopt=i686"
1802 _optimizing="$proc"
1803 else
1804 _march="-march=$proc"
1805 _mcpu="$cpuopt=$proc"
1806 _optimizing="$proc"
1808 else # if test "$_runtime_cpudetection" = no
1809 _mcpu="$cpuopt=generic"
1810 # at least i486 required, for bswap instruction
1811 _march="-march=i486"
1812 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1813 cflag_check $_mcpu || _mcpu=""
1814 cflag_check $_march $_mcpu || _march=""
1817 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1818 ## autodetected mcpu/march parameters
1819 if test "$_target" ; then
1820 # TODO: it may be a good idea to check GCC and fall back in all cases
1821 if test "$host_arch" = "i586-i686"; then
1822 _march="-march=i586"
1823 _mcpu="$cpuopt=i686"
1824 else
1825 _march="-march=$host_arch"
1826 _mcpu="$cpuopt=$host_arch"
1829 proc="$host_arch"
1831 case "$proc" in
1832 i386) iproc=386 ;;
1833 i486) iproc=486 ;;
1834 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1835 i686|athlon*|pentium*) iproc=686 ;;
1836 *) iproc=586 ;;
1837 esac
1840 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1841 _fast_cmov="yes"
1842 else
1843 _fast_cmov="no"
1845 test $_fast_clz = "auto" && _fast_clz=yes
1847 echores "$proc"
1850 ia64)
1851 arch='ia64'
1852 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1853 iproc='ia64'
1856 x86_64|amd64)
1857 arch='x86'
1858 subarch='x86_64'
1859 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1860 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1861 iproc='x86_64'
1863 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1864 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1865 cpuopt=-mtune
1866 else
1867 cpuopt=-mcpu
1869 if test "$_runtime_cpudetection" = no ; then
1870 case "$pvendor" in
1871 AuthenticAMD)
1872 case "$pfamily" in
1873 15) proc=k8
1874 test $_fast_clz = "auto" && _fast_clz=no
1876 *) proc=amdfam10;;
1877 esac
1879 GenuineIntel)
1880 case "$pfamily" in
1881 6) proc=core2;;
1883 # 64-bit prescotts exist, but as far as GCC is concerned they
1884 # have the same capabilities as a nocona.
1885 proc=nocona
1886 test $_fast_cmov = "auto" && _fast_cmov=no
1887 test $_fast_clz = "auto" && _fast_clz=no
1889 esac
1892 proc=error;;
1893 esac
1894 fi # test "$_runtime_cpudetection" = no
1896 echocheck "GCC & CPU optimization abilities"
1897 # This is a stripped-down version of the i386 fallback.
1898 if test "$_runtime_cpudetection" = no ; then
1899 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1900 cflag_check -march=native && proc=native
1902 # --- AMD processors ---
1903 if test "$proc" = "amdfam10"; then
1904 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1906 if test "$proc" = "k8"; then
1907 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1909 # This will fail if gcc version < 3.3, which is ok because earlier
1910 # versions don't really support 64-bit on amd64.
1911 # Is this a valid assumption? -Corey
1912 if test "$proc" = "athlon-xp"; then
1913 cflag_check -march=$proc $cpuopt=$proc || proc=error
1915 # --- Intel processors ---
1916 if test "$proc" = "core2"; then
1917 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1919 if test "$proc" = "x86-64"; then
1920 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1922 if test "$proc" = "nocona"; then
1923 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1925 if test "$proc" = "pentium4"; then
1926 cflag_check -march=$proc $cpuopt=$proc || proc=error
1929 _march="-march=$proc"
1930 _mcpu="$cpuopt=$proc"
1931 if test "$proc" = "error" ; then
1932 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1933 _mcpu=""
1934 _march=""
1936 else # if test "$_runtime_cpudetection" = no
1937 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1938 _march="-march=x86-64"
1939 _mcpu="$cpuopt=generic"
1940 cflag_check $_mcpu || _mcpu="x86-64"
1941 cflag_check $_mcpu || _mcpu=""
1942 cflag_check $_march $_mcpu || _march=""
1945 _optimizing="$proc"
1946 test $_fast_cmov = "auto" && _fast_cmov=yes
1947 test $_fast_clz = "auto" && _fast_clz=yes
1949 echores "$proc"
1952 sparc|sparc64)
1953 arch='sparc'
1954 iproc='sparc'
1955 if test "$host_arch" = "sparc64" ; then
1956 _vis='yes'
1957 proc='ultrasparc'
1958 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1959 elif sunos ; then
1960 echocheck "CPU type"
1961 karch=$(uname -m)
1962 case "$(echo $karch)" in
1963 sun4) proc=v7 ;;
1964 sun4c) proc=v7 ;;
1965 sun4d) proc=v8 ;;
1966 sun4m) proc=v8 ;;
1967 sun4u) proc=ultrasparc _vis='yes' ;;
1968 sun4v) proc=v9 ;;
1969 *) proc=v8 ;;
1970 esac
1971 echores "$proc"
1972 else
1973 proc=v8
1975 _mcpu="-mcpu=$proc"
1976 _optimizing="$proc"
1979 arm*)
1980 arch='arm'
1981 iproc='arm'
1984 avr32)
1985 arch='avr32'
1986 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1987 iproc='avr32'
1988 test $_fast_clz = "auto" && _fast_clz=yes
1991 sh|sh4)
1992 arch='sh4'
1993 iproc='sh4'
1996 ppc|ppc64|powerpc|powerpc64)
1997 arch='ppc'
1998 def_dcbzl='#define HAVE_DCBZL 0'
1999 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2000 iproc='ppc'
2002 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2003 subarch='ppc64'
2004 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2006 echocheck "CPU type"
2007 case $system_name in
2008 Linux)
2009 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2010 if test -n "$($_cpuinfo | grep altivec)"; then
2011 test $_altivec = auto && _altivec=yes
2014 Darwin)
2015 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2016 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2017 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2018 test $_altivec = auto && _altivec=yes
2021 NetBSD)
2022 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2023 case $cc_version in
2024 2*|3.0*|3.1*|3.2*|3.3*)
2027 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2028 test $_altivec = auto && _altivec=yes
2031 esac
2033 AIX)
2034 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2036 esac
2037 if test "$_altivec" = yes; then
2038 echores "$proc altivec"
2039 else
2040 _altivec=no
2041 echores "$proc"
2044 echocheck "GCC & CPU optimization abilities"
2046 if test -n "$proc"; then
2047 case "$proc" in
2048 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2049 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2050 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2051 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2052 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2053 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2054 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2055 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2056 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2057 *) ;;
2058 esac
2059 # gcc 3.1(.1) and up supports 7400 and 7450
2060 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2061 case "$proc" in
2062 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2063 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2064 *) ;;
2065 esac
2067 # gcc 3.2 and up supports 970
2068 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2069 case "$proc" in
2070 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2071 def_dcbzl='#define HAVE_DCBZL 1' ;;
2072 *) ;;
2073 esac
2075 # gcc 3.3 and up supports POWER4
2076 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2077 case "$proc" in
2078 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2079 *) ;;
2080 esac
2082 # gcc 3.4 and up supports 440*
2083 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2084 case "$proc" in
2085 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2086 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2087 *) ;;
2088 esac
2090 # gcc 4.0 and up supports POWER5
2091 if test "$_cc_major" -ge "4"; then
2092 case "$proc" in
2093 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2094 *) ;;
2095 esac
2099 if test -n "$_mcpu"; then
2100 _optimizing=$(echo $_mcpu | cut -c 8-)
2101 echores "$_optimizing"
2102 else
2103 echores "none"
2106 test $_fast_clz = "auto" && _fast_clz=yes
2110 alpha*)
2111 arch='alpha'
2112 iproc='alpha'
2113 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2115 echocheck "CPU type"
2116 cat > $TMPC << EOF
2117 int main(void) {
2118 unsigned long ver, mask;
2119 __asm__ ("implver %0" : "=r" (ver));
2120 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2121 printf("%ld-%x\n", ver, ~mask);
2122 return 0;
2125 $_cc -o "$TMPEXE" "$TMPC"
2126 case $("$TMPEXE") in
2128 0-0) proc="ev4"; _mvi="0";;
2129 1-0) proc="ev5"; _mvi="0";;
2130 1-1) proc="ev56"; _mvi="0";;
2131 1-101) proc="pca56"; _mvi="1";;
2132 2-303) proc="ev6"; _mvi="1";;
2133 2-307) proc="ev67"; _mvi="1";;
2134 2-1307) proc="ev68"; _mvi="1";;
2135 esac
2136 echores "$proc"
2138 echocheck "GCC & CPU optimization abilities"
2139 if test "$proc" = "ev68" ; then
2140 cc_check -mcpu=$proc || proc=ev67
2142 if test "$proc" = "ev67" ; then
2143 cc_check -mcpu=$proc || proc=ev6
2145 _mcpu="-mcpu=$proc"
2146 echores "$proc"
2148 test $_fast_clz = "auto" && _fast_clz=yes
2150 _optimizing="$proc"
2153 mips*)
2154 arch='mips'
2155 iproc='mips'
2157 if irix ; then
2158 echocheck "CPU type"
2159 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2160 case "$(echo $proc)" in
2161 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2162 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2163 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2164 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2165 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2166 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2167 esac
2168 # gcc < 3.x does not support -mtune.
2169 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2170 _mcpu=''
2172 echores "$proc"
2175 test $_fast_clz = "auto" && _fast_clz=yes
2179 hppa)
2180 arch='pa_risc'
2181 iproc='PA-RISC'
2184 s390)
2185 arch='s390'
2186 iproc='390'
2189 s390x)
2190 arch='s390x'
2191 iproc='390x'
2194 vax)
2195 arch='vax'
2196 iproc='vax'
2199 xtensa)
2200 arch='xtensa'
2201 iproc='xtensa'
2204 generic)
2205 arch='generic'
2209 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2210 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2211 die "unsupported architecture $host_arch"
2213 esac # case "$host_arch" in
2215 if test "$_runtime_cpudetection" = yes ; then
2216 if x86 ; then
2217 test "$_cmov" != no && _cmov=yes
2218 x86_32 && _cmov=no
2219 test "$_mmx" != no && _mmx=yes
2220 test "$_3dnow" != no && _3dnow=yes
2221 test "$_3dnowext" != no && _3dnowext=yes
2222 test "$_mmxext" != no && _mmxext=yes
2223 test "$_sse" != no && _sse=yes
2224 test "$_sse2" != no && _sse2=yes
2225 test "$_ssse3" != no && _ssse3=yes
2226 test "$_mtrr" != no && _mtrr=yes
2228 if ppc; then
2229 _altivec=yes
2234 # endian testing
2235 echocheck "byte order"
2236 if test "$_big_endian" = auto ; then
2237 cat > $TMPC <<EOF
2238 short ascii_name[] = {
2239 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2240 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2241 int main(void) { return (long)ascii_name; }
2243 if cc_check ; then
2244 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2245 _big_endian=yes
2246 else
2247 _big_endian=no
2249 else
2250 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2253 if test "$_big_endian" = yes ; then
2254 _byte_order='big-endian'
2255 def_words_endian='#define WORDS_BIGENDIAN 1'
2256 def_bigendian='#define HAVE_BIGENDIAN 1'
2257 else
2258 _byte_order='little-endian'
2259 def_words_endian='#undef WORDS_BIGENDIAN'
2260 def_bigendian='#define HAVE_BIGENDIAN 0'
2262 echores "$_byte_order"
2265 echocheck "extern symbol prefix"
2266 cat > $TMPC << EOF
2267 int ff_extern;
2269 cc_check -c || die "Symbol mangling check failed."
2270 sym=$($_nm -P -g $TMPEXE)
2271 extern_prefix=${sym%%ff_extern*}
2272 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2273 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2274 echores $extern_prefix
2277 echocheck "assembler support of -pipe option"
2278 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2279 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2282 echocheck "compiler support of named assembler arguments"
2283 _named_asm_args=yes
2284 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2285 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2286 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2287 _named_asm_args=no
2288 def_named_asm_args="#undef NAMED_ASM_ARGS"
2290 echores $_named_asm_args
2293 if darwin && test "$cc_vendor" = "gnu" ; then
2294 echocheck "GCC support of -mstackrealign"
2295 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2296 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2297 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2298 # wrong code with this flag, but this can be worked around by adding
2299 # -fno-unit-at-a-time as described in the blog post at
2300 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2301 cat > $TMPC << EOF
2302 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2303 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2305 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2306 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2307 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2308 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2309 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2312 # Checking for CFLAGS
2313 _install_strip="-s"
2314 if test "$_profile" != "" || test "$_debug" != "" ; then
2315 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2316 WARNFLAGS="-W -Wall"
2317 _install_strip=
2318 elif test -z "$CFLAGS" ; then
2319 if test "$cc_vendor" = "intel" ; then
2320 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2321 WARNFLAGS="-wd167 -wd556 -wd144"
2322 elif test "$cc_vendor" = "sun" ; then
2323 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2324 elif test "$cc_vendor" = "clang"; then
2325 CFLAGS="-O2 $_march $_pipe"
2326 elif test "$cc_vendor" != "gnu" ; then
2327 CFLAGS="-O2 $_march $_mcpu $_pipe"
2328 else
2329 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2330 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2331 extra_ldflags="$extra_ldflags -ffast-math"
2333 else
2334 warn_cflags=yes
2337 if test "$cc_vendor" = "gnu" ; then
2338 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2339 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2340 # that's the only variable specific to C now, and this option is not valid
2341 # for C++.
2342 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2343 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2344 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2345 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2346 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2347 else
2348 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2351 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2352 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2355 if test -n "$LDFLAGS" ; then
2356 extra_ldflags="$extra_ldflags $LDFLAGS"
2357 warn_cflags=yes
2358 elif test "$cc_vendor" = "intel" ; then
2359 extra_ldflags="$extra_ldflags -i-static"
2361 if test -n "$CPPFLAGS" ; then
2362 extra_cflags="$extra_cflags $CPPFLAGS"
2363 warn_cflags=yes
2368 if x86_32 ; then
2369 # Checking assembler (_as) compatibility...
2370 # Added workaround for older as that reads from stdin by default - atmos
2371 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2372 echocheck "assembler ($_as $as_version)"
2374 _pref_as_version='2.9.1'
2375 echo 'nop' > $TMPS
2376 if test "$_mmx" = yes ; then
2377 echo 'emms' >> $TMPS
2379 if test "$_3dnow" = yes ; then
2380 _pref_as_version='2.10.1'
2381 echo 'femms' >> $TMPS
2383 if test "$_3dnowext" = yes ; then
2384 _pref_as_version='2.10.1'
2385 echo 'pswapd %mm0, %mm0' >> $TMPS
2387 if test "$_mmxext" = yes ; then
2388 _pref_as_version='2.10.1'
2389 echo 'movntq %mm0, (%eax)' >> $TMPS
2391 if test "$_sse" = yes ; then
2392 _pref_as_version='2.10.1'
2393 echo 'xorps %xmm0, %xmm0' >> $TMPS
2395 #if test "$_sse2" = yes ; then
2396 # _pref_as_version='2.11'
2397 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2399 if test "$_cmov" = yes ; then
2400 _pref_as_version='2.10.1'
2401 echo 'cmovb %eax, %ebx' >> $TMPS
2403 if test "$_ssse3" = yes ; then
2404 _pref_as_version='2.16.92'
2405 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2407 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2409 if test "$as_verc_fail" != yes ; then
2410 echores "ok"
2411 else
2412 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2413 echores "failed"
2414 die "obsolete binutils version"
2417 fi #if x86_32
2420 echocheck "PIC"
2421 pic=no
2422 cat > $TMPC << EOF
2423 int main(void) {
2424 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2425 #error PIC not enabled
2426 #endif
2427 return 0;
2430 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2431 echores $pic
2434 if x86 ; then
2436 echocheck ".align is a power of two"
2437 if test "$_asmalign_pot" = auto ; then
2438 _asmalign_pot=no
2439 inline_asm_check '".align 3"' && _asmalign_pot=yes
2441 if test "$_asmalign_pot" = "yes" ; then
2442 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2443 else
2444 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2446 echores $_asmalign_pot
2449 echocheck "10 assembler operands"
2450 ten_operands=no
2451 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2452 cat > $TMPC << EOF
2453 int main(void) {
2454 int x=0;
2455 __asm__ volatile(
2457 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2459 return 0;
2462 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2463 echores $ten_operands
2465 echocheck "ebx availability"
2466 ebx_available=no
2467 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2468 cat > $TMPC << EOF
2469 int main(void) {
2470 int x;
2471 __asm__ volatile(
2472 "xor %0, %0"
2473 :"=b"(x)
2474 // just adding ebx to clobber list seems unreliable with some
2475 // compilers, e.g. Haiku's gcc 2.95
2477 // and the above check does not work for OSX 64 bit...
2478 __asm__ volatile("":::"%ebx");
2479 return 0;
2482 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2483 echores $ebx_available
2486 echocheck "yasm"
2487 if test -z "$YASMFLAGS" ; then
2488 if darwin ; then
2489 x86_64 && objformat="macho64" || objformat="macho"
2490 elif win32 ; then
2491 objformat="win32"
2492 else
2493 objformat="elf"
2495 # currently tested for Linux x86, x86_64
2496 YASMFLAGS="-f $objformat"
2497 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2498 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2499 case "$objformat" in
2500 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2501 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2502 esac
2503 else
2504 warn_cflags=yes
2507 echo "pabsw xmm0, xmm0" > $TMPS
2508 yasm_check || _yasm=""
2509 if test $_yasm ; then
2510 def_yasm='#define HAVE_YASM 1'
2511 have_yasm="yes"
2512 echores "$_yasm"
2513 else
2514 def_yasm='#define HAVE_YASM 0'
2515 have_yasm="no"
2516 echores "no"
2519 echocheck "bswap"
2520 def_bswap='#define HAVE_BSWAP 0'
2521 echo 'bswap %eax' > $TMPS
2522 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2523 echores "$bswap"
2524 fi #if x86
2527 #FIXME: This should happen before the check for CFLAGS..
2528 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2529 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2531 # check if AltiVec is supported by the compiler, and how to enable it
2532 echocheck "GCC AltiVec flags"
2533 if $(cflag_check -maltivec -mabi=altivec) ; then
2534 _altivec_gcc_flags="-maltivec -mabi=altivec"
2535 # check if <altivec.h> should be included
2536 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2537 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2538 inc_altivec_h='#include <altivec.h>'
2539 else
2540 if $(cflag_check -faltivec) ; then
2541 _altivec_gcc_flags="-faltivec"
2542 else
2543 _altivec=no
2544 _altivec_gcc_flags="none, AltiVec disabled"
2548 echores "$_altivec_gcc_flags"
2550 # check if the compiler supports braces for vector declarations
2551 cat > $TMPC << EOF
2552 $inc_altivec_h
2553 int main(void) { (vector int) {1}; return 0; }
2555 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2557 # Disable runtime cpudetection if we cannot generate AltiVec code or
2558 # AltiVec is disabled by the user.
2559 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2560 && _runtime_cpudetection=no
2562 # Show that we are optimizing for AltiVec (if enabled and supported).
2563 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2564 && _optimizing="$_optimizing altivec"
2566 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2567 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2570 if ppc ; then
2571 def_xform_asm='#define HAVE_XFORM_ASM 0'
2572 xform_asm=no
2573 echocheck "XFORM ASM support"
2574 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2575 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2576 echores "$xform_asm"
2579 if arm ; then
2580 echocheck "ARM pld instruction"
2581 pld=no
2582 inline_asm_check '"pld [r0]"' && pld=yes
2583 echores "$pld"
2585 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2586 if test $_armv5te = "auto" ; then
2587 _armv5te=no
2588 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2590 echores "$_armv5te"
2592 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2594 echocheck "ARMv6 (SIMD instructions)"
2595 if test $_armv6 = "auto" ; then
2596 _armv6=no
2597 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2599 echores "$_armv6"
2601 echocheck "ARMv6t2 (SIMD instructions)"
2602 if test $_armv6t2 = "auto" ; then
2603 _armv6t2=no
2604 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2606 echores "$_armv6t2"
2608 echocheck "ARM VFP"
2609 if test $_armvfp = "auto" ; then
2610 _armvfp=no
2611 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2613 echores "$_armvfp"
2615 echocheck "ARM NEON"
2616 if test $neon = "auto" ; then
2617 neon=no
2618 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2620 echores "$neon"
2622 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2623 if test $_iwmmxt = "auto" ; then
2624 _iwmmxt=no
2625 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2627 echores "$_iwmmxt"
2630 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'
2631 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2632 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2633 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2634 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2635 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2636 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2637 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2638 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2639 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2640 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2641 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2642 test "$pld" = yes && cpuexts="PLD $cpuexts"
2643 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2644 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2645 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2646 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2647 test "$neon" = yes && cpuexts="NEON $cpuexts"
2648 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2649 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2650 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2652 # Checking kernel version...
2653 if x86_32 && linux ; then
2654 _k_verc_problem=no
2655 kernel_version=$(uname -r 2>&1)
2656 echocheck "$system_name kernel version"
2657 case "$kernel_version" in
2658 '') kernel_version="?.??"; _k_verc_fail=yes;;
2659 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2660 _k_verc_problem=yes;;
2661 esac
2662 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2663 _k_verc_fail=yes
2665 if test "$_k_verc_fail" ; then
2666 echores "$kernel_version, fail"
2667 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2668 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2669 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2670 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2671 echo "2.2.x you must upgrade it to get SSE support!"
2672 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2673 else
2674 echores "$kernel_version, ok"
2678 ######################
2679 # MAIN TESTS GO HERE #
2680 ######################
2683 echocheck "-lposix"
2684 if cflag_check -lposix ; then
2685 extra_ldflags="$extra_ldflags -lposix"
2686 echores "yes"
2687 else
2688 echores "no"
2691 echocheck "-lm"
2692 if cflag_check -lm ; then
2693 _ld_lm="-lm"
2694 echores "yes"
2695 else
2696 _ld_lm=""
2697 echores "no"
2701 echocheck "langinfo"
2702 if test "$_langinfo" = auto ; then
2703 _langinfo=no
2704 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2706 if test "$_langinfo" = yes ; then
2707 def_langinfo='#define HAVE_LANGINFO 1'
2708 else
2709 def_langinfo='#undef HAVE_LANGINFO'
2711 echores "$_langinfo"
2714 echocheck "translation support"
2715 if test "$_translation" = yes; then
2716 def_translation="#define CONFIG_TRANSLATION 1"
2717 else
2718 def_translation="#undef CONFIG_TRANSLATION"
2720 echores "$_translation"
2722 echocheck "language"
2723 # Set preferred languages, "all" uses English as main language.
2724 test -z "$language" && language=$LINGUAS
2725 test -z "$language_doc" && language_doc=$language
2726 test -z "$language_man" && language_man=$language
2727 test -z "$language_msg" && language_msg=$language
2728 test -z "$language_msg" && language_msg="all"
2729 language_doc=$(echo $language_doc | tr , " ")
2730 language_man=$(echo $language_man | tr , " ")
2731 language_msg=$(echo $language_msg | tr , " ")
2733 test "$language_doc" = "all" && language_doc=$doc_lang_all
2734 test "$language_man" = "all" && language_man=$man_lang_all
2735 test "$language_msg" = "all" && language_msg=$msg_lang_all
2737 if test "$_translation" != yes ; then
2738 language_msg=""
2741 # Prune non-existing translations from language lists.
2742 # Set message translation to the first available language.
2743 # Fall back on English.
2744 for lang in $language_doc ; do
2745 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2746 done
2747 language_doc=$tmp_language_doc
2748 test -z "$language_doc" && language_doc=en
2750 for lang in $language_man ; do
2751 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2752 done
2753 language_man=$tmp_language_man
2754 test -z "$language_man" && language_man=en
2756 for lang in $language_msg ; do
2757 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2758 done
2759 language_msg=$tmp_language_msg
2761 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2764 echocheck "enable sighandler"
2765 if test "$_sighandler" = yes ; then
2766 def_sighandler='#define CONFIG_SIGHANDLER 1'
2767 else
2768 def_sighandler='#undef CONFIG_SIGHANDLER'
2770 echores "$_sighandler"
2772 echocheck "runtime cpudetection"
2773 if test "$_runtime_cpudetection" = yes ; then
2774 _optimizing="Runtime CPU-Detection enabled"
2775 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2776 else
2777 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2779 echores "$_runtime_cpudetection"
2782 echocheck "restrict keyword"
2783 for restrict_keyword in restrict __restrict __restrict__ ; do
2784 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2785 if cc_check; then
2786 def_restrict_keyword=$restrict_keyword
2787 break;
2789 done
2790 if [ -n "$def_restrict_keyword" ]; then
2791 echores "$def_restrict_keyword"
2792 else
2793 echores "none"
2795 # Avoid infinite recursion loop ("#define restrict restrict")
2796 if [ "$def_restrict_keyword" != "restrict" ]; then
2797 def_restrict_keyword="#define restrict $def_restrict_keyword"
2798 else
2799 def_restrict_keyword=""
2803 echocheck "__builtin_expect"
2804 # GCC branch prediction hint
2805 cat > $TMPC << EOF
2806 static int foo(int a) {
2807 a = __builtin_expect(a, 10);
2808 return a == 10 ? 0 : 1;
2810 int main(void) { return foo(10) && foo(0); }
2812 _builtin_expect=no
2813 cc_check && _builtin_expect=yes
2814 if test "$_builtin_expect" = yes ; then
2815 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2816 else
2817 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2819 echores "$_builtin_expect"
2822 echocheck "kstat"
2823 _kstat=no
2824 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2825 if test "$_kstat" = yes ; then
2826 def_kstat="#define HAVE_LIBKSTAT 1"
2827 extra_ldflags="$extra_ldflags -lkstat"
2828 else
2829 def_kstat="#undef HAVE_LIBKSTAT"
2831 echores "$_kstat"
2834 echocheck "posix4"
2835 # required for nanosleep on some systems
2836 _posix4=no
2837 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2838 if test "$_posix4" = yes ; then
2839 extra_ldflags="$extra_ldflags -lposix4"
2841 echores "$_posix4"
2843 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2844 echocheck $func
2845 eval _$func=no
2846 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2847 if eval test "x\$_$func" = "xyes"; then
2848 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2849 echores yes
2850 else
2851 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2852 echores no
2854 done
2857 echocheck "mkstemp"
2858 _mkstemp=no
2859 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2860 if test "$_mkstemp" = yes ; then
2861 def_mkstemp='#define HAVE_MKSTEMP 1'
2862 else
2863 def_mkstemp='#define HAVE_MKSTEMP 0'
2865 echores "$_mkstemp"
2868 echocheck "nanosleep"
2869 _nanosleep=no
2870 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2871 if test "$_nanosleep" = yes ; then
2872 def_nanosleep='#define HAVE_NANOSLEEP 1'
2873 else
2874 def_nanosleep='#undef HAVE_NANOSLEEP'
2876 echores "$_nanosleep"
2879 echocheck "socklib"
2880 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2881 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2882 cat > $TMPC << EOF
2883 #include <netdb.h>
2884 #include <sys/socket.h>
2885 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2887 _socklib=no
2888 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2889 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2890 done
2891 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2892 if test $_winsock2_h = auto ; then
2893 _winsock2_h=no
2894 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2896 test "$_ld_sock" && res_comment="using $_ld_sock"
2897 echores "$_socklib"
2900 if test $_winsock2_h = yes ; then
2901 _ld_sock="-lws2_32"
2902 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2903 else
2904 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2908 echocheck "arpa/inet.h"
2909 arpa_inet_h=no
2910 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2911 header_check arpa/inet.h && arpa_inet_h=yes &&
2912 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2913 echores "$arpa_inet_h"
2916 echocheck "inet_pton()"
2917 def_inet_pton='#define HAVE_INET_PTON 0'
2918 inet_pton=no
2919 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2920 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2921 done
2922 if test $inet_pton = yes ; then
2923 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2924 def_inet_pton='#define HAVE_INET_PTON 1'
2926 echores "$inet_pton"
2929 echocheck "inet_aton()"
2930 def_inet_aton='#define HAVE_INET_ATON 0'
2931 inet_aton=no
2932 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2933 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2934 done
2935 if test $inet_aton = yes ; then
2936 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2937 def_inet_aton='#define HAVE_INET_ATON 1'
2939 echores "$inet_aton"
2942 echocheck "socklen_t"
2943 _socklen_t=no
2944 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2945 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2946 done
2947 if test "$_socklen_t" = yes ; then
2948 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2949 else
2950 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2952 echores "$_socklen_t"
2955 echocheck "closesocket()"
2956 _closesocket=no
2957 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2958 if test "$_closesocket" = yes ; then
2959 def_closesocket='#define HAVE_CLOSESOCKET 1'
2960 else
2961 def_closesocket='#define HAVE_CLOSESOCKET 0'
2963 echores "$_closesocket"
2966 echocheck "networking"
2967 test $_winsock2_h = no && test $inet_pton = no &&
2968 test $inet_aton = no && networking=no
2969 if test "$networking" = yes ; then
2970 def_network='#define CONFIG_NETWORK 1'
2971 def_networking='#define CONFIG_NETWORKING 1'
2972 extra_ldflags="$extra_ldflags $_ld_sock"
2973 inputmodules="networking $inputmodules"
2974 else
2975 noinputmodules="networking $noinputmodules"
2976 def_network='#define CONFIG_NETWORK 0'
2977 def_networking='#undef CONFIG_NETWORKING'
2979 echores "$networking"
2982 echocheck "inet6"
2983 if test "$_inet6" = auto ; then
2984 cat > $TMPC << EOF
2985 #include <sys/types.h>
2986 #if !defined(_WIN32)
2987 #include <sys/socket.h>
2988 #include <netinet/in.h>
2989 #else
2990 #include <ws2tcpip.h>
2991 #endif
2992 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2994 _inet6=no
2995 if cc_check $_ld_sock ; then
2996 _inet6=yes
2999 if test "$_inet6" = yes ; then
3000 def_inet6='#define HAVE_AF_INET6 1'
3001 else
3002 def_inet6='#undef HAVE_AF_INET6'
3004 echores "$_inet6"
3007 echocheck "gethostbyname2"
3008 if test "$_gethostbyname2" = auto ; then
3009 cat > $TMPC << EOF
3010 #include <sys/types.h>
3011 #include <sys/socket.h>
3012 #include <netdb.h>
3013 int main(void) { gethostbyname2("", AF_INET); return 0; }
3015 _gethostbyname2=no
3016 if cc_check ; then
3017 _gethostbyname2=yes
3020 if test "$_gethostbyname2" = yes ; then
3021 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3022 else
3023 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3025 echores "$_gethostbyname2"
3028 echocheck "inttypes.h (required)"
3029 _inttypes=no
3030 header_check inttypes.h && _inttypes=yes
3031 echores "$_inttypes"
3033 if test "$_inttypes" = no ; then
3034 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3035 header_check sys/bitypes.h && _inttypes=yes
3036 if test "$_inttypes" = yes ; then
3037 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."
3038 else
3039 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3044 echocheck "malloc.h"
3045 _malloc=no
3046 header_check malloc.h && _malloc=yes
3047 if test "$_malloc" = yes ; then
3048 def_malloc_h='#define HAVE_MALLOC_H 1'
3049 else
3050 def_malloc_h='#define HAVE_MALLOC_H 0'
3052 echores "$_malloc"
3055 echocheck "memalign()"
3056 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3057 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3058 _memalign=no
3059 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3060 if test "$_memalign" = yes ; then
3061 def_memalign='#define HAVE_MEMALIGN 1'
3062 else
3063 def_memalign='#define HAVE_MEMALIGN 0'
3064 def_map_memalign='#define memalign(a, b) malloc(b)'
3065 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3067 echores "$_memalign"
3070 echocheck "posix_memalign()"
3071 posix_memalign=no
3072 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3073 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3074 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3075 echores "$posix_memalign"
3078 echocheck "alloca.h"
3079 _alloca=no
3080 statement_check alloca.h 'alloca(0)' && _alloca=yes
3081 if cc_check ; then
3082 def_alloca_h='#define HAVE_ALLOCA_H 1'
3083 else
3084 def_alloca_h='#undef HAVE_ALLOCA_H'
3086 echores "$_alloca"
3089 echocheck "fastmemcpy"
3090 if test "$_fastmemcpy" = yes ; then
3091 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3092 else
3093 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3095 echores "$_fastmemcpy"
3098 echocheck "mman.h"
3099 _mman=no
3100 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3101 if test "$_mman" = yes ; then
3102 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3103 else
3104 def_mman_h='#undef HAVE_SYS_MMAN_H'
3105 os2 && need_mmap=yes
3107 echores "$_mman"
3109 _mman_has_map_failed=no
3110 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3111 if test "$_mman_has_map_failed" = yes ; then
3112 def_mman_has_map_failed=''
3113 else
3114 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3117 echocheck "dynamic loader"
3118 _dl=no
3119 for _ld_tmp in "" "-ldl"; do
3120 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3121 done
3122 if test "$_dl" = yes ; then
3123 def_dl='#define HAVE_LIBDL 1'
3124 else
3125 def_dl='#undef HAVE_LIBDL'
3127 echores "$_dl"
3130 echocheck "dynamic a/v plugins support"
3131 if test "$_dl" = no ; then
3132 _dynamic_plugins=no
3134 if test "$_dynamic_plugins" = yes ; then
3135 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3136 else
3137 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3139 echores "$_dynamic_plugins"
3142 def_threads='#define HAVE_THREADS 0'
3144 echocheck "pthread"
3145 if linux ; then
3146 THREAD_CFLAGS=-D_REENTRANT
3147 elif freebsd || netbsd || openbsd || bsdos ; then
3148 THREAD_CFLAGS=-D_THREAD_SAFE
3150 if test "$_pthreads" = auto ; then
3151 cat > $TMPC << EOF
3152 #include <pthread.h>
3153 static void *func(void *arg) { return arg; }
3154 int main(void) {
3155 pthread_t tid;
3156 #ifdef PTW32_STATIC_LIB
3157 pthread_win32_process_attach_np();
3158 pthread_win32_thread_attach_np();
3159 #endif
3160 return pthread_create (&tid, 0, func, 0) != 0;
3163 _pthreads=no
3164 if ! hpux ; then
3165 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3166 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3167 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3168 done
3169 if test "$_pthreads" = no && mingw32 ; then
3170 _ld_tmp="-lpthreadGC2 -lws2_32"
3171 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3175 if test "$_pthreads" = yes ; then
3176 test $_ld_pthread && res_comment="using $_ld_pthread"
3177 def_pthreads='#define HAVE_PTHREADS 1'
3178 def_threads='#define HAVE_THREADS 1'
3179 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3180 else
3181 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3182 def_pthreads='#undef HAVE_PTHREADS'
3183 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3184 mingw32 || _win32dll=no
3186 echores "$_pthreads"
3188 if cygwin ; then
3189 if test "$_pthreads" = yes ; then
3190 def_pthread_cache="#define PTHREAD_CACHE 1"
3191 else
3192 _stream_cache=no
3193 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3197 echocheck "w32threads"
3198 if test "$_pthreads" = yes ; then
3199 res_comment="using pthread instead"
3200 _w32threads=no
3202 if test "$_w32threads" = auto ; then
3203 _w32threads=no
3204 mingw32 && _w32threads=yes
3206 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3207 echores "$_w32threads"
3209 echocheck "rpath"
3210 if test "$_rpath" = yes ; then
3211 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3212 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3213 done
3214 extra_ldflags=$tmp
3216 echores "$_rpath"
3218 echocheck "iconv"
3219 if test "$_iconv" = auto ; then
3220 cat > $TMPC << EOF
3221 #include <stdio.h>
3222 #include <unistd.h>
3223 #include <iconv.h>
3224 #define INBUFSIZE 1024
3225 #define OUTBUFSIZE 4096
3227 char inbuffer[INBUFSIZE];
3228 char outbuffer[OUTBUFSIZE];
3230 int main(void) {
3231 size_t numread;
3232 iconv_t icdsc;
3233 char *tocode="UTF-8";
3234 char *fromcode="cp1250";
3235 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3236 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3237 char *iptr=inbuffer;
3238 char *optr=outbuffer;
3239 size_t inleft=numread;
3240 size_t outleft=OUTBUFSIZE;
3241 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3242 != (size_t)(-1)) {
3243 write(1, outbuffer, OUTBUFSIZE - outleft);
3246 if (iconv_close(icdsc) == -1)
3249 return 0;
3252 _iconv=no
3253 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3254 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3255 _iconv=yes && break
3256 done
3257 if test "$_iconv" != yes ; then
3258 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."
3261 if test "$_iconv" = yes ; then
3262 def_iconv='#define CONFIG_ICONV 1'
3263 else
3264 def_iconv='#undef CONFIG_ICONV'
3266 echores "$_iconv"
3269 echocheck "soundcard.h"
3270 _soundcard_h=no
3271 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3272 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3273 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3274 header_check $_soundcard_header && _soundcard_h=yes &&
3275 res_comment="$_soundcard_header" && break
3276 done
3278 if test "$_soundcard_h" = yes ; then
3279 if test $_soundcard_header = "sys/soundcard.h"; then
3280 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3281 else
3282 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3285 echores "$_soundcard_h"
3288 echocheck "sys/dvdio.h"
3289 _dvdio=no
3290 # FreeBSD 8.1 has broken dvdio.h
3291 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3292 if test "$_dvdio" = yes ; then
3293 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3294 else
3295 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3297 echores "$_dvdio"
3300 echocheck "sys/cdio.h"
3301 _cdio=no
3302 # at least OpenSolaris has a broken cdio.h
3303 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3304 if test "$_cdio" = yes ; then
3305 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3306 else
3307 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3309 echores "$_cdio"
3312 echocheck "linux/cdrom.h"
3313 _cdrom=no
3314 header_check linux/cdrom.h && _cdrom=yes
3315 if test "$_cdrom" = yes ; then
3316 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3317 else
3318 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3320 echores "$_cdrom"
3323 echocheck "dvd.h"
3324 _dvd=no
3325 header_check dvd.h && _dvd=yes
3326 if test "$_dvd" = yes ; then
3327 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3328 else
3329 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3331 echores "$_dvd"
3334 if bsdos; then
3335 echocheck "BSDI dvd.h"
3336 _bsdi_dvd=no
3337 header_check dvd.h && _bsdi_dvd=yes
3338 if test "$_bsdi_dvd" = yes ; then
3339 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3340 else
3341 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3343 echores "$_bsdi_dvd"
3344 fi #if bsdos
3347 if hpux; then
3348 # also used by AIX, but AIX does not support VCD and/or libdvdread
3349 echocheck "HP-UX SCSI header"
3350 _hpux_scsi_h=no
3351 header_check sys/scsi.h && _hpux_scsi_h=yes
3352 if test "$_hpux_scsi_h" = yes ; then
3353 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3354 else
3355 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3357 echores "$_hpux_scsi_h"
3358 fi #if hpux
3361 if sunos; then
3362 echocheck "userspace SCSI headers (Solaris)"
3363 _sol_scsi_h=no
3364 header_check sys/scsi/scsi_types.h &&
3365 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3366 _sol_scsi_h=yes
3367 if test "$_sol_scsi_h" = yes ; then
3368 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3369 else
3370 def_sol_scsi_h='#undef SOLARIS_USCSI'
3372 echores "$_sol_scsi_h"
3373 fi #if sunos
3376 echocheck "termcap"
3377 if test "$_termcap" = auto ; then
3378 _termcap=no
3379 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3380 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3381 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3382 done
3384 if test "$_termcap" = yes ; then
3385 def_termcap='#define HAVE_TERMCAP 1'
3386 test $_ld_tmp && res_comment="using $_ld_tmp"
3387 else
3388 def_termcap='#undef HAVE_TERMCAP'
3390 echores "$_termcap"
3393 echocheck "termios"
3394 def_termios='#undef HAVE_TERMIOS'
3395 def_termios_h='#undef HAVE_TERMIOS_H'
3396 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3397 if test "$_termios" = auto ; then
3398 _termios=no
3399 for _termios_header in "termios.h" "sys/termios.h"; do
3400 header_check $_termios_header && _termios=yes &&
3401 res_comment="using $_termios_header" && break
3402 done
3405 if test "$_termios" = yes ; then
3406 def_termios='#define HAVE_TERMIOS 1'
3407 if test "$_termios_header" = "termios.h" ; then
3408 def_termios_h='#define HAVE_TERMIOS_H 1'
3409 else
3410 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3413 echores "$_termios"
3416 echocheck "shm"
3417 if test "$_shm" = auto ; then
3418 _shm=no
3419 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3421 if test "$_shm" = yes ; then
3422 def_shm='#define HAVE_SHM 1'
3423 else
3424 def_shm='#undef HAVE_SHM'
3426 echores "$_shm"
3429 echocheck "strsep()"
3430 _strsep=no
3431 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3432 if test "$_strsep" = yes ; then
3433 def_strsep='#define HAVE_STRSEP 1'
3434 need_strsep=no
3435 else
3436 def_strsep='#undef HAVE_STRSEP'
3437 need_strsep=yes
3439 echores "$_strsep"
3442 echocheck "vsscanf()"
3443 cat > $TMPC << EOF
3444 #define _ISOC99_SOURCE
3445 #include <stdarg.h>
3446 #include <stdio.h>
3447 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3449 _vsscanf=no
3450 cc_check && _vsscanf=yes
3451 if test "$_vsscanf" = yes ; then
3452 def_vsscanf='#define HAVE_VSSCANF 1'
3453 need_vsscanf=no
3454 else
3455 def_vsscanf='#undef HAVE_VSSCANF'
3456 need_vsscanf=yes
3458 echores "$_vsscanf"
3461 echocheck "swab()"
3462 _swab=no
3463 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3464 if test "$_swab" = yes ; then
3465 def_swab='#define HAVE_SWAB 1'
3466 need_swab=no
3467 else
3468 def_swab='#undef HAVE_SWAB'
3469 need_swab=yes
3471 echores "$_swab"
3473 echocheck "POSIX select()"
3474 cat > $TMPC << EOF
3475 #include <stdio.h>
3476 #include <stdlib.h>
3477 #include <sys/types.h>
3478 #include <string.h>
3479 #include <sys/time.h>
3480 #include <unistd.h>
3481 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3483 _posix_select=no
3484 def_posix_select='#undef HAVE_POSIX_SELECT'
3485 #select() of kLIBC (OS/2) supports socket only
3486 ! os2 && cc_check && _posix_select=yes &&
3487 def_posix_select='#define HAVE_POSIX_SELECT 1'
3488 echores "$_posix_select"
3491 echocheck "audio select()"
3492 if test "$_select" = no ; then
3493 def_select='#undef HAVE_AUDIO_SELECT'
3494 elif test "$_select" = yes ; then
3495 def_select='#define HAVE_AUDIO_SELECT 1'
3497 echores "$_select"
3500 echocheck "gettimeofday()"
3501 _gettimeofday=no
3502 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3503 if test "$_gettimeofday" = yes ; then
3504 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3505 need_gettimeofday=no
3506 else
3507 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3508 need_gettimeofday=yes
3510 echores "$_gettimeofday"
3513 echocheck "glob()"
3514 _glob=no
3515 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3516 if test "$_glob" = yes ; then
3517 def_glob='#define HAVE_GLOB 1'
3518 need_glob=no
3519 else
3520 def_glob='#undef HAVE_GLOB'
3521 need_glob=yes
3523 echores "$_glob"
3526 echocheck "setenv()"
3527 _setenv=no
3528 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3529 if test "$_setenv" = yes ; then
3530 def_setenv='#define HAVE_SETENV 1'
3531 need_setenv=no
3532 else
3533 def_setenv='#undef HAVE_SETENV'
3534 need_setenv=yes
3536 echores "$_setenv"
3539 echocheck "setmode()"
3540 _setmode=no
3541 def_setmode='#define HAVE_SETMODE 0'
3542 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3543 echores "$_setmode"
3546 if sunos; then
3547 echocheck "sysi86()"
3548 _sysi86=no
3549 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3550 if test "$_sysi86" = yes ; then
3551 def_sysi86='#define HAVE_SYSI86 1'
3552 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3553 else
3554 def_sysi86='#undef HAVE_SYSI86'
3556 echores "$_sysi86"
3557 fi #if sunos
3560 echocheck "sys/sysinfo.h"
3561 _sys_sysinfo=no
3562 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3563 if test "$_sys_sysinfo" = yes ; then
3564 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3565 else
3566 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3568 echores "$_sys_sysinfo"
3571 if darwin; then
3573 echocheck "Mac OS X Finder Support"
3574 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3575 if test "$_macosx_finder" = yes ; then
3576 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3577 extra_ldflags="$extra_ldflags -framework Carbon"
3579 echores "$_macosx_finder"
3581 echocheck "Mac OS X Bundle file locations"
3582 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3583 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3584 if test "$_macosx_bundle" = yes ; then
3585 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3586 extra_ldflags="$extra_ldflags -framework Carbon"
3588 echores "$_macosx_bundle"
3590 echocheck "Apple Remote"
3591 if test "$_apple_remote" = auto ; then
3592 _apple_remote=no
3593 cat > $TMPC <<EOF
3594 #include <stdio.h>
3595 #include <IOKit/IOCFPlugIn.h>
3596 int main(void) {
3597 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3598 CFMutableDictionaryRef hidMatchDictionary;
3599 IOReturn ioReturnValue;
3601 // Set up a matching dictionary to search the I/O Registry by class.
3602 // name for all HID class devices
3603 hidMatchDictionary = IOServiceMatching("AppleIRController");
3605 // Now search I/O Registry for matching devices.
3606 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3607 hidMatchDictionary, &hidObjectIterator);
3609 // If search is unsuccessful, return nonzero.
3610 if (ioReturnValue != kIOReturnSuccess ||
3611 !IOIteratorIsValid(hidObjectIterator)) {
3612 return 1;
3614 return 0;
3617 cc_check -framework IOKit && _apple_remote=yes
3619 if test "$_apple_remote" = yes ; then
3620 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3621 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3622 else
3623 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3625 echores "$_apple_remote"
3627 fi #if darwin
3629 if linux; then
3631 echocheck "Apple IR"
3632 if test "$_apple_ir" = auto ; then
3633 _apple_ir=no
3634 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3636 if test "$_apple_ir" = yes ; then
3637 def_apple_ir='#define CONFIG_APPLE_IR 1'
3638 else
3639 def_apple_ir='#undef CONFIG_APPLE_IR'
3641 echores "$_apple_ir"
3642 fi #if linux
3644 echocheck "pkg-config"
3645 _pkg_config=pkg-config
3646 if $($_pkg_config --version > /dev/null 2>&1); then
3647 if test "$_ld_static"; then
3648 _pkg_config="$_pkg_config --static"
3650 echores "yes"
3651 else
3652 _pkg_config=false
3653 echores "no"
3657 echocheck "Samba support (libsmbclient)"
3658 if test "$_smb" = yes; then
3659 extra_ldflags="$extra_ldflags -lsmbclient"
3661 if test "$_smb" = auto; then
3662 _smb=no
3663 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3664 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3665 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3666 done
3669 if test "$_smb" = yes; then
3670 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3671 inputmodules="smb $inputmodules"
3672 else
3673 def_smb="#undef CONFIG_LIBSMBCLIENT"
3674 noinputmodules="smb $noinputmodules"
3676 echores "$_smb"
3679 #########
3680 # VIDEO #
3681 #########
3684 echocheck "tdfxfb"
3685 if test "$_tdfxfb" = yes ; then
3686 def_tdfxfb='#define CONFIG_TDFXFB 1'
3687 vomodules="tdfxfb $vomodules"
3688 else
3689 def_tdfxfb='#undef CONFIG_TDFXFB'
3690 novomodules="tdfxfb $novomodules"
3692 echores "$_tdfxfb"
3694 echocheck "s3fb"
3695 if test "$_s3fb" = yes ; then
3696 def_s3fb='#define CONFIG_S3FB 1'
3697 vomodules="s3fb $vomodules"
3698 else
3699 def_s3fb='#undef CONFIG_S3FB'
3700 novomodules="s3fb $novomodules"
3702 echores "$_s3fb"
3704 echocheck "wii"
3705 if test "$_wii" = yes ; then
3706 def_wii='#define CONFIG_WII 1'
3707 vomodules="wii $vomodules"
3708 else
3709 def_wii='#undef CONFIG_WII'
3710 novomodules="wii $novomodules"
3712 echores "$_wii"
3714 echocheck "tdfxvid"
3715 if test "$_tdfxvid" = yes ; then
3716 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3717 vomodules="tdfx_vid $vomodules"
3718 else
3719 def_tdfxvid='#undef CONFIG_TDFX_VID'
3720 novomodules="tdfx_vid $novomodules"
3722 echores "$_tdfxvid"
3724 echocheck "xvr100"
3725 if test "$_xvr100" = auto ; then
3726 cat > $TMPC << EOF
3727 #include <unistd.h>
3728 #include <sys/fbio.h>
3729 #include <sys/visual_io.h>
3730 int main(void) {
3731 struct vis_identifier ident;
3732 struct fbgattr attr;
3733 ioctl(0, VIS_GETIDENTIFIER, &ident);
3734 ioctl(0, FBIOGATTR, &attr);
3735 return 0;
3738 _xvr100=no
3739 cc_check && _xvr100=yes
3741 if test "$_xvr100" = yes ; then
3742 def_xvr100='#define CONFIG_XVR100 1'
3743 vomodules="xvr100 $vomodules"
3744 else
3745 def_tdfxvid='#undef CONFIG_XVR100'
3746 novomodules="xvr100 $novomodules"
3748 echores "$_xvr100"
3750 echocheck "tga"
3751 if test "$_tga" = yes ; then
3752 def_tga='#define CONFIG_TGA 1'
3753 vomodules="tga $vomodules"
3754 else
3755 def_tga='#undef CONFIG_TGA'
3756 novomodules="tga $novomodules"
3758 echores "$_tga"
3761 echocheck "md5sum support"
3762 if test "$_md5sum" = yes; then
3763 def_md5sum="#define CONFIG_MD5SUM 1"
3764 vomodules="md5sum $vomodules"
3765 else
3766 def_md5sum="#undef CONFIG_MD5SUM"
3767 novomodules="md5sum $novomodules"
3769 echores "$_md5sum"
3772 echocheck "yuv4mpeg support"
3773 if test "$_yuv4mpeg" = yes; then
3774 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3775 vomodules="yuv4mpeg $vomodules"
3776 else
3777 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3778 novomodules="yuv4mpeg $novomodules"
3780 echores "$_yuv4mpeg"
3783 echocheck "bl"
3784 if test "$_bl" = yes ; then
3785 def_bl='#define CONFIG_BL 1'
3786 vomodules="bl $vomodules"
3787 else
3788 def_bl='#undef CONFIG_BL'
3789 novomodules="bl $novomodules"
3791 echores "$_bl"
3794 echocheck "DirectFB"
3795 if test "$_directfb" = auto ; then
3796 _directfb=no
3797 cat > $TMPC << EOF
3798 #include <directfb.h>
3799 #include <directfb_version.h>
3800 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3801 #error "DirectFB version too old."
3802 #endif
3803 int main(void) { DirectFBInit(0, 0); return 0; }
3805 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3806 cc_check $_inc_tmp -ldirectfb &&
3807 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3808 done
3810 if test "$_directfb" = yes ; then
3811 def_directfb='#define CONFIG_DIRECTFB 1'
3812 vomodules="directfb dfbmga $vomodules"
3813 libs_mplayer="$libs_mplayer -ldirectfb"
3814 else
3815 def_directfb='#undef CONFIG_DIRECTFB'
3816 novomodules="directfb dfbmga $novomodules"
3818 echores "$_directfb"
3821 echocheck "X11 headers presence"
3822 _x11_headers="no"
3823 res_comment="check if the dev(el) packages are installed"
3824 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3825 if test -f "$I/X11/Xlib.h" ; then
3826 _x11_headers="yes"
3827 res_comment=""
3828 break
3830 done
3831 if test $_cross_compile = no; then
3832 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3833 /usr/include/X11R6 /usr/openwin/include ; do
3834 if test -f "$I/X11/Xlib.h" ; then
3835 extra_cflags="$extra_cflags -I$I"
3836 _x11_headers="yes"
3837 res_comment="using $I"
3838 break
3840 done
3842 echores "$_x11_headers"
3845 echocheck "X11"
3846 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3847 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3848 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3849 -L/usr/lib ; do
3850 if netbsd; then
3851 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3852 else
3853 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3855 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3856 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3857 done
3859 if test "$_x11" = yes ; then
3860 def_x11='#define CONFIG_X11 1'
3861 vomodules="x11 xover $vomodules"
3862 else
3863 _x11=no
3864 def_x11='#undef CONFIG_X11'
3865 novomodules="x11 $novomodules"
3866 res_comment="check if the dev(el) packages are installed"
3867 # disable stuff that depends on X
3868 _xv=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3870 echores "$_x11"
3872 echocheck "Xss screensaver extensions"
3873 if test "$_xss" = auto ; then
3874 _xss=no
3875 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3877 if test "$_xss" = yes ; then
3878 def_xss='#define CONFIG_XSS 1'
3879 libs_mplayer="$libs_mplayer -lXss"
3880 else
3881 def_xss='#undef CONFIG_XSS'
3883 echores "$_xss"
3885 echocheck "DPMS"
3886 _xdpms3=no
3887 _xdpms4=no
3888 if test "$_x11" = yes ; then
3889 cat > $TMPC <<EOF
3890 #include <X11/Xmd.h>
3891 #include <X11/Xlib.h>
3892 #include <X11/Xutil.h>
3893 #include <X11/Xatom.h>
3894 #include <X11/extensions/dpms.h>
3895 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3897 cc_check -lXdpms && _xdpms3=yes
3898 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3900 if test "$_xdpms4" = yes ; then
3901 def_xdpms='#define CONFIG_XDPMS 1'
3902 res_comment="using Xdpms 4"
3903 echores "yes"
3904 elif test "$_xdpms3" = yes ; then
3905 def_xdpms='#define CONFIG_XDPMS 1'
3906 libs_mplayer="$libs_mplayer -lXdpms"
3907 res_comment="using Xdpms 3"
3908 echores "yes"
3909 else
3910 def_xdpms='#undef CONFIG_XDPMS'
3911 echores "no"
3915 echocheck "Xv"
3916 if test "$_xv" = auto ; then
3917 _xv=no
3918 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3921 if test "$_xv" = yes ; then
3922 def_xv='#define CONFIG_XV 1'
3923 libs_mplayer="$libs_mplayer -lXv"
3924 vomodules="xv $vomodules"
3925 else
3926 def_xv='#undef CONFIG_XV'
3927 novomodules="xv $novomodules"
3929 echores "$_xv"
3932 echocheck "VDPAU"
3933 if test "$_vdpau" = auto ; then
3934 _vdpau=no
3935 if test "$_dl" = yes ; then
3936 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
3939 if test "$_vdpau" = yes ; then
3940 def_vdpau='#define CONFIG_VDPAU 1'
3941 libs_mplayer="$libs_mplayer -lvdpau"
3942 vomodules="vdpau $vomodules"
3943 else
3944 def_vdpau='#define CONFIG_VDPAU 0'
3945 novomodules="vdpau $novomodules"
3947 echores "$_vdpau"
3950 echocheck "Xinerama"
3951 if test "$_xinerama" = auto ; then
3952 _xinerama=no
3953 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3956 if test "$_xinerama" = yes ; then
3957 def_xinerama='#define CONFIG_XINERAMA 1'
3958 libs_mplayer="$libs_mplayer -lXinerama"
3959 else
3960 def_xinerama='#undef CONFIG_XINERAMA'
3962 echores "$_xinerama"
3965 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3966 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3967 # named 'X extensions' or something similar.
3968 # This check may be useful for future mplayer versions (to change resolution)
3969 # If you run into problems, remove '-lXxf86vm'.
3970 echocheck "Xxf86vm"
3971 if test "$_vm" = auto ; then
3972 _vm=no
3973 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3975 if test "$_vm" = yes ; then
3976 def_vm='#define CONFIG_XF86VM 1'
3977 libs_mplayer="$libs_mplayer -lXxf86vm"
3978 else
3979 def_vm='#undef CONFIG_XF86VM'
3981 echores "$_vm"
3983 # Check for the presence of special keycodes, like audio control buttons
3984 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3985 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3986 # have these new keycodes.
3987 echocheck "XF86keysym"
3988 if test "$_xf86keysym" = auto; then
3989 _xf86keysym=no
3990 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3992 if test "$_xf86keysym" = yes ; then
3993 def_xf86keysym='#define CONFIG_XF86XK 1'
3994 else
3995 def_xf86keysym='#undef CONFIG_XF86XK'
3997 echores "$_xf86keysym"
3999 echocheck "DGA"
4000 if test "$_dga2" = auto && test "$_x11" = yes ; then
4001 _dga2=no
4002 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4004 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4005 _dga1=no
4006 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4009 _dga=no
4010 def_dga='#undef CONFIG_DGA'
4011 def_dga1='#undef CONFIG_DGA1'
4012 def_dga2='#undef CONFIG_DGA2'
4013 if test "$_dga1" = yes ; then
4014 _dga=yes
4015 def_dga1='#define CONFIG_DGA1 1'
4016 res_comment="using DGA 1.0"
4017 elif test "$_dga2" = yes ; then
4018 _dga=yes
4019 def_dga2='#define CONFIG_DGA2 1'
4020 res_comment="using DGA 2.0"
4022 if test "$_dga" = yes ; then
4023 def_dga='#define CONFIG_DGA 1'
4024 libs_mplayer="$libs_mplayer -lXxf86dga"
4025 vomodules="dga $vomodules"
4026 else
4027 novomodules="dga $novomodules"
4029 echores "$_dga"
4032 echocheck "3dfx"
4033 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4034 def_3dfx='#define CONFIG_3DFX 1'
4035 vomodules="3dfx $vomodules"
4036 else
4037 _3dfx=no
4038 def_3dfx='#undef CONFIG_3DFX'
4039 novomodules="3dfx $novomodules"
4041 echores "$_3dfx"
4044 echocheck "GGI"
4045 if test "$_ggi" = auto ; then
4046 _ggi=no
4047 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4049 if test "$_ggi" = yes ; then
4050 def_ggi='#define CONFIG_GGI 1'
4051 libs_mplayer="$libs_mplayer -lggi"
4052 vomodules="ggi $vomodules"
4053 else
4054 def_ggi='#undef CONFIG_GGI'
4055 novomodules="ggi $novomodules"
4057 echores "$_ggi"
4059 echocheck "GGI extension: libggiwmh"
4060 if test "$_ggiwmh" = auto ; then
4061 _ggiwmh=no
4062 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4064 # needed to get right output on obscure combination
4065 # like --disable-ggi --enable-ggiwmh
4066 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4067 def_ggiwmh='#define CONFIG_GGIWMH 1'
4068 libs_mplayer="$libs_mplayer -lggiwmh"
4069 else
4070 _ggiwmh=no
4071 def_ggiwmh='#undef CONFIG_GGIWMH'
4073 echores "$_ggiwmh"
4076 echocheck "AA"
4077 if test "$_aa" = auto ; then
4078 cat > $TMPC << EOF
4079 #include <aalib.h>
4080 int main(void) {
4081 aa_context *c;
4082 aa_renderparams *p;
4083 aa_init(0, 0, 0);
4084 c = aa_autoinit(&aa_defparams);
4085 p = aa_getrenderparams();
4086 aa_autoinitkbd(c, 0);
4087 return 0; }
4089 _aa=no
4090 for _ld_tmp in "-laa" ; do
4091 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4092 done
4094 if test "$_aa" = yes ; then
4095 def_aa='#define CONFIG_AA 1'
4096 if cygwin ; then
4097 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4099 vomodules="aa $vomodules"
4100 else
4101 def_aa='#undef CONFIG_AA'
4102 novomodules="aa $novomodules"
4104 echores "$_aa"
4107 echocheck "CACA"
4108 if test "$_caca" = auto ; then
4109 _caca=no
4110 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4111 cat > $TMPC << EOF
4112 #include <caca.h>
4113 #ifdef CACA_API_VERSION_1
4114 #include <caca0.h>
4115 #endif
4116 int main(void) { caca_init(); return 0; }
4118 cc_check $(caca-config --libs) && _caca=yes
4121 if test "$_caca" = yes ; then
4122 def_caca='#define CONFIG_CACA 1'
4123 extra_cflags="$extra_cflags $(caca-config --cflags)"
4124 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4125 vomodules="caca $vomodules"
4126 else
4127 def_caca='#undef CONFIG_CACA'
4128 novomodules="caca $novomodules"
4130 echores "$_caca"
4133 echocheck "SVGAlib"
4134 if test "$_svga" = auto ; then
4135 _svga=no
4136 header_check vga.h -lvga $_ld_lm && _svga=yes
4138 if test "$_svga" = yes ; then
4139 def_svga='#define CONFIG_SVGALIB 1'
4140 libs_mplayer="$libs_mplayer -lvga"
4141 vomodules="svga $vomodules"
4142 else
4143 def_svga='#undef CONFIG_SVGALIB'
4144 novomodules="svga $novomodules"
4146 echores "$_svga"
4149 echocheck "FBDev"
4150 if test "$_fbdev" = auto ; then
4151 _fbdev=no
4152 linux && _fbdev=yes
4154 if test "$_fbdev" = yes ; then
4155 def_fbdev='#define CONFIG_FBDEV 1'
4156 vomodules="fbdev $vomodules"
4157 else
4158 def_fbdev='#undef CONFIG_FBDEV'
4159 novomodules="fbdev $novomodules"
4161 echores "$_fbdev"
4165 echocheck "DVB"
4166 if test "$_dvb" = auto ; then
4167 _dvb=no
4168 cat >$TMPC << EOF
4169 #include <poll.h>
4170 #include <sys/ioctl.h>
4171 #include <stdio.h>
4172 #include <time.h>
4173 #include <unistd.h>
4174 #include <linux/dvb/dmx.h>
4175 #include <linux/dvb/frontend.h>
4176 #include <linux/dvb/video.h>
4177 #include <linux/dvb/audio.h>
4178 int main(void) {return 0;}
4180 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4181 cc_check $_inc_tmp && _dvb=yes &&
4182 extra_cflags="$extra_cflags $_inc_tmp" && break
4183 done
4185 echores "$_dvb"
4186 if test "$_dvb" = yes ; then
4187 _dvbin=yes
4188 inputmodules="dvb $inputmodules"
4189 def_dvb='#define CONFIG_DVB 1'
4190 def_dvbin='#define CONFIG_DVBIN 1'
4191 aomodules="mpegpes(dvb) $aomodules"
4192 vomodules="mpegpes(dvb) $vomodules"
4193 else
4194 _dvbin=no
4195 noinputmodules="dvb $noinputmodules"
4196 def_dvb='#undef CONFIG_DVB'
4197 def_dvbin='#undef CONFIG_DVBIN '
4198 aomodules="mpegpes(file) $aomodules"
4199 vomodules="mpegpes(file) $vomodules"
4203 if darwin; then
4205 echocheck "QuickTime"
4206 if test "$quicktime" = auto ; then
4207 quicktime=no
4208 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4210 if test "$quicktime" = yes ; then
4211 extra_ldflags="$extra_ldflags -framework QuickTime"
4212 def_quicktime='#define CONFIG_QUICKTIME 1'
4213 else
4214 def_quicktime='#undef CONFIG_QUICKTIME'
4215 _quartz=no
4217 echores $quicktime
4219 echocheck "Quartz"
4220 if test "$_quartz" = auto ; then
4221 _quartz=no
4222 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4224 if test "$_quartz" = yes ; then
4225 libs_mplayer="$libs_mplayer -framework Carbon"
4226 def_quartz='#define CONFIG_QUARTZ 1'
4227 vomodules="quartz $vomodules"
4228 else
4229 def_quartz='#undef CONFIG_QUARTZ'
4230 novomodules="quartz $novomodules"
4232 echores $_quartz
4234 echocheck "CoreVideo"
4235 if test "$_corevideo" = auto ; then
4236 cat > $TMPC <<EOF
4237 #include <Carbon/Carbon.h>
4238 #include <CoreServices/CoreServices.h>
4239 #include <OpenGL/OpenGL.h>
4240 #include <QuartzCore/CoreVideo.h>
4241 int main(void) { return 0; }
4243 _corevideo=no
4244 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4246 if test "$_corevideo" = yes ; then
4247 vomodules="corevideo $vomodules"
4248 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4249 def_corevideo='#define CONFIG_COREVIDEO 1'
4250 else
4251 novomodules="corevideo $novomodules"
4252 def_corevideo='#undef CONFIG_COREVIDEO'
4254 echores "$_corevideo"
4256 fi #if darwin
4259 echocheck "PNG support"
4260 if test "$_png" = auto ; then
4261 _png=no
4262 if irix ; then
4263 # Don't check for -lpng on irix since it has its own libpng
4264 # incompatible with the GNU libpng
4265 res_comment="disabled on irix (not GNU libpng)"
4266 else
4267 cat > $TMPC << EOF
4268 #include <stdio.h>
4269 #include <string.h>
4270 #include <png.h>
4271 int main(void) {
4272 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4273 printf("libpng: %s\n", png_libpng_ver);
4274 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4277 cc_check -lpng -lz $_ld_lm && _png=yes
4280 echores "$_png"
4281 if test "$_png" = yes ; then
4282 def_png='#define CONFIG_PNG 1'
4283 extra_ldflags="$extra_ldflags -lpng -lz"
4284 else
4285 def_png='#undef CONFIG_PNG'
4288 echocheck "MNG support"
4289 if test "$_mng" = auto ; then
4290 _mng=no
4291 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4293 echores "$_mng"
4294 if test "$_mng" = yes ; then
4295 def_mng='#define CONFIG_MNG 1'
4296 extra_ldflags="$extra_ldflags -lmng -lz"
4297 else
4298 def_mng='#undef CONFIG_MNG'
4301 echocheck "JPEG support"
4302 if test "$_jpeg" = auto ; then
4303 _jpeg=no
4304 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4306 echores "$_jpeg"
4308 if test "$_jpeg" = yes ; then
4309 def_jpeg='#define CONFIG_JPEG 1'
4310 vomodules="jpeg $vomodules"
4311 extra_ldflags="$extra_ldflags -ljpeg"
4312 else
4313 def_jpeg='#undef CONFIG_JPEG'
4314 novomodules="jpeg $novomodules"
4319 echocheck "PNM support"
4320 if test "$_pnm" = yes; then
4321 def_pnm="#define CONFIG_PNM 1"
4322 vomodules="pnm $vomodules"
4323 else
4324 def_pnm="#undef CONFIG_PNM"
4325 novomodules="pnm $novomodules"
4327 echores "$_pnm"
4331 echocheck "GIF support"
4332 # This is to appease people who want to force gif support.
4333 # If it is forced to yes, then we still do checks to determine
4334 # which gif library to use.
4335 if test "$_gif" = yes ; then
4336 _force_gif=yes
4337 _gif=auto
4340 if test "$_gif" = auto ; then
4341 _gif=no
4342 for _ld_gif in "-lungif" "-lgif" ; do
4343 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4344 done
4347 # If no library was found, and the user wants support forced,
4348 # then we force it on with libgif, as this is the safest
4349 # assumption IMHO. (libungif & libregif both create symbolic
4350 # links to libgif. We also assume that no x11 support is needed,
4351 # because if you are forcing this, then you _should_ know what
4352 # you are doing. [ Besides, package maintainers should never
4353 # have compiled x11 deps into libungif in the first place. ] )
4354 # </rant>
4355 # --Joey
4356 if test "$_force_gif" = yes && test "$_gif" = no ; then
4357 _gif=yes
4358 _ld_gif="-lgif"
4361 if test "$_gif" = yes ; then
4362 def_gif='#define CONFIG_GIF 1'
4363 codecmodules="gif $codecmodules"
4364 vomodules="gif89a $vomodules"
4365 res_comment="old version, some encoding functions disabled"
4366 def_gif_4='#undef CONFIG_GIF_4'
4367 extra_ldflags="$extra_ldflags $_ld_gif"
4369 cat > $TMPC << EOF
4370 #include <signal.h>
4371 #include <stdio.h>
4372 #include <stdlib.h>
4373 #include <gif_lib.h>
4374 static void catch(int sig) { exit(1); }
4375 int main(void) {
4376 signal(SIGSEGV, catch); // catch segfault
4377 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4378 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4379 return 0;
4382 if cc_check "$_ld_gif" ; then
4383 def_gif_4='#define CONFIG_GIF_4 1'
4384 res_comment=""
4386 else
4387 def_gif='#undef CONFIG_GIF'
4388 def_gif_4='#undef CONFIG_GIF_4'
4389 novomodules="gif89a $novomodules"
4390 nocodecmodules="gif $nocodecmodules"
4392 echores "$_gif"
4395 case "$_gif" in yes*)
4396 echocheck "broken giflib workaround"
4397 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4399 cat > $TMPC << EOF
4400 #include <stdio.h>
4401 #include <gif_lib.h>
4402 int main(void) {
4403 GifFileType gif = {.UserData = NULL};
4404 printf("UserData is at address %p\n", gif.UserData);
4405 return 0;
4408 if cc_check "$_ld_gif" ; then
4409 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4410 echores "disabled"
4411 else
4412 echores "enabled"
4415 esac
4418 echocheck "VESA support"
4419 if test "$_vesa" = auto ; then
4420 _vesa=no
4421 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4423 if test "$_vesa" = yes ; then
4424 def_vesa='#define CONFIG_VESA 1'
4425 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4426 vomodules="vesa $vomodules"
4427 else
4428 def_vesa='#undef CONFIG_VESA'
4429 novomodules="vesa $novomodules"
4431 echores "$_vesa"
4433 #################
4434 # VIDEO + AUDIO #
4435 #################
4438 echocheck "SDL"
4439 _inc_tmp=""
4440 _ld_tmp=""
4441 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4442 if test -z "$_sdlconfig" ; then
4443 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4444 _sdlconfig="sdl-config"
4445 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4446 _sdlconfig="sdl11-config"
4447 else
4448 _sdlconfig=false
4451 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4452 cat > $TMPC << EOF
4453 #ifdef CONFIG_SDL_SDL_H
4454 #include <SDL/SDL.h>
4455 #else
4456 #include <SDL.h>
4457 #endif
4458 #ifndef __APPLE__
4459 // we allow SDL hacking our main() only on OSX
4460 #undef main
4461 #endif
4462 int main(int argc, char *argv[]) {
4463 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4464 return 0;
4467 _sdl=no
4468 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4469 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4470 _sdl=yes
4471 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4472 break
4474 done
4475 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4476 res_comment="using $_sdlconfig"
4477 if cygwin ; then
4478 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4479 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4480 elif mingw32 ; then
4481 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4482 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4483 else
4484 _inc_tmp="$($_sdlconfig --cflags)"
4485 _ld_tmp="$($_sdlconfig --libs)"
4487 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4488 _sdl=yes
4489 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4490 # HACK for BeOS/Haiku SDL
4491 _ld_tmp="$_ld_tmp -lstdc++"
4492 _sdl=yes
4496 if test "$_sdl" = yes ; then
4497 def_sdl='#define CONFIG_SDL 1'
4498 extra_cflags="$extra_cflags $_inc_tmp"
4499 libs_mplayer="$libs_mplayer $_ld_tmp"
4500 vomodules="sdl $vomodules"
4501 aomodules="sdl $aomodules"
4502 else
4503 def_sdl='#undef CONFIG_SDL'
4504 novomodules="sdl $novomodules"
4505 noaomodules="sdl $noaomodules"
4507 echores "$_sdl"
4510 # make sure this stays below CoreVideo to avoid issues due to namespace
4511 # conflicts between -lGL and -framework OpenGL
4512 echocheck "OpenGL"
4513 #Note: this test is run even with --enable-gl since we autodetect linker flags
4514 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4515 cat > $TMPC << EOF
4516 #ifdef GL_WIN32
4517 #include <windows.h>
4518 #include <GL/gl.h>
4519 #elif defined(GL_SDL)
4520 #include <GL/gl.h>
4521 #ifdef CONFIG_SDL_SDL_H
4522 #include <SDL/SDL.h>
4523 #else
4524 #include <SDL.h>
4525 #endif
4526 #ifndef __APPLE__
4527 // we allow SDL hacking our main() only on OSX
4528 #undef main
4529 #endif
4530 #else
4531 #include <GL/gl.h>
4532 #include <X11/Xlib.h>
4533 #include <GL/glx.h>
4534 #endif
4535 int main(int argc, char *argv[]) {
4536 #ifdef GL_WIN32
4537 HDC dc;
4538 wglCreateContext(dc);
4539 #elif defined(GL_SDL)
4540 SDL_GL_SwapBuffers();
4541 #else
4542 glXCreateContext(NULL, NULL, NULL, True);
4543 #endif
4544 glFinish();
4545 return 0;
4548 _gl=no
4549 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4550 if cc_check $_ld_tmp $_ld_lm ; then
4551 _gl=yes
4552 _gl_x11=yes
4553 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4554 break
4556 done
4557 if cc_check -DGL_WIN32 -lopengl32 ; then
4558 _gl=yes
4559 _gl_win32=yes
4560 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4562 # last so it can reuse any linker etc. flags detected before
4563 if test "$_sdl" = yes ; then
4564 if cc_check -DGL_SDL ||
4565 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4566 _gl=yes
4567 _gl_sdl=yes
4568 elif cc_check -DGL_SDL -lGL ||
4569 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4570 _gl=yes
4571 _gl_sdl=yes
4572 libs_mplayer="$libs_mplayer -lGL"
4575 else
4576 _gl=no
4578 if test "$_gl" = yes ; then
4579 def_gl='#define CONFIG_GL 1'
4580 res_comment="backends:"
4581 if test "$_gl_win32" = yes ; then
4582 def_gl_win32='#define CONFIG_GL_WIN32 1'
4583 res_comment="$res_comment win32"
4585 if test "$_gl_x11" = yes ; then
4586 def_gl_x11='#define CONFIG_GL_X11 1'
4587 res_comment="$res_comment x11"
4589 if test "$_gl_sdl" = yes ; then
4590 def_gl_sdl='#define CONFIG_GL_SDL 1'
4591 res_comment="$res_comment sdl"
4593 vomodules="opengl $vomodules"
4594 else
4595 def_gl='#undef CONFIG_GL'
4596 def_gl_win32='#undef CONFIG_GL_WIN32'
4597 def_gl_x11='#undef CONFIG_GL_X11'
4598 def_gl_sdl='#undef CONFIG_GL_SDL'
4599 novomodules="opengl $novomodules"
4601 echores "$_gl"
4604 echocheck "MatrixView"
4605 if test "$_gl" = no ; then
4606 matrixview=no
4608 if test "$matrixview" = yes ; then
4609 vomodules="matrixview $vomodules"
4610 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4611 else
4612 novomodules="matrixview $novomodules"
4613 def_matrixview='#undef CONFIG_MATRIXVIEW'
4615 echores "$matrixview"
4618 if os2 ; then
4619 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4620 if test "$_kva" = auto; then
4621 _kva=no;
4622 header_check_broken os2.h kva.h -lkva && _kva=yes
4624 if test "$_kva" = yes ; then
4625 def_kva='#define CONFIG_KVA 1'
4626 libs_mplayer="$libs_mplayer -lkva"
4627 vomodules="kva $vomodules"
4628 else
4629 def_kva='#undef CONFIG_KVA'
4630 novomodules="kva $novomodules"
4632 echores "$_kva"
4633 fi #if os2
4636 if win32; then
4638 echocheck "Windows waveout"
4639 if test "$_win32waveout" = auto ; then
4640 _win32waveout=no
4641 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4643 if test "$_win32waveout" = yes ; then
4644 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4645 libs_mplayer="$libs_mplayer -lwinmm"
4646 aomodules="win32 $aomodules"
4647 else
4648 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4649 noaomodules="win32 $noaomodules"
4651 echores "$_win32waveout"
4653 echocheck "Direct3D"
4654 if test "$_direct3d" = auto ; then
4655 _direct3d=no
4656 header_check d3d9.h && _direct3d=yes
4658 if test "$_direct3d" = yes ; then
4659 def_direct3d='#define CONFIG_DIRECT3D 1'
4660 vomodules="direct3d $vomodules"
4661 else
4662 def_direct3d='#undef CONFIG_DIRECT3D'
4663 novomodules="direct3d $novomodules"
4665 echores "$_direct3d"
4667 echocheck "Directx"
4668 if test "$_directx" = auto ; then
4669 cat > $TMPC << EOF
4670 #include <ddraw.h>
4671 #include <dsound.h>
4672 int main(void) { return 0; }
4674 _directx=no
4675 cc_check -lgdi32 && _directx=yes
4677 if test "$_directx" = yes ; then
4678 def_directx='#define CONFIG_DIRECTX 1'
4679 libs_mplayer="$libs_mplayer -lgdi32"
4680 vomodules="directx $vomodules"
4681 aomodules="dsound $aomodules"
4682 else
4683 def_directx='#undef CONFIG_DIRECTX'
4684 novomodules="directx $novomodules"
4685 noaomodules="dsound $noaomodules"
4687 echores "$_directx"
4689 fi #if win32; then
4692 echocheck "DXR3/H+"
4693 if test "$_dxr3" = auto ; then
4694 _dxr3=no
4695 header_check linux/em8300.h && _dxr3=yes
4697 if test "$_dxr3" = yes ; then
4698 def_dxr3='#define CONFIG_DXR3 1'
4699 vomodules="dxr3 $vomodules"
4700 else
4701 def_dxr3='#undef CONFIG_DXR3'
4702 novomodules="dxr3 $novomodules"
4704 echores "$_dxr3"
4707 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4708 if test "$_ivtv" = auto ; then
4709 cat > $TMPC << EOF
4710 #include <sys/time.h>
4711 #include <linux/videodev2.h>
4712 #include <linux/ivtv.h>
4713 #include <sys/ioctl.h>
4714 int main(void) {
4715 struct ivtv_cfg_stop_decode sd;
4716 struct ivtv_cfg_start_decode sd1;
4717 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4718 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4719 return 0; }
4721 _ivtv=no
4722 cc_check && _ivtv=yes
4724 if test "$_ivtv" = yes ; then
4725 def_ivtv='#define CONFIG_IVTV 1'
4726 vomodules="ivtv $vomodules"
4727 aomodules="ivtv $aomodules"
4728 else
4729 def_ivtv='#undef CONFIG_IVTV'
4730 novomodules="ivtv $novomodules"
4731 noaomodules="ivtv $noaomodules"
4733 echores "$_ivtv"
4736 echocheck "V4L2 MPEG Decoder"
4737 if test "$_v4l2" = auto ; then
4738 cat > $TMPC << EOF
4739 #include <sys/time.h>
4740 #include <linux/videodev2.h>
4741 #include <linux/version.h>
4742 int main(void) {
4743 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4744 #error kernel headers too old, need 2.6.22
4745 #endif
4746 struct v4l2_ext_controls ctrls;
4747 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4748 return 0;
4751 _v4l2=no
4752 cc_check && _v4l2=yes
4754 if test "$_v4l2" = yes ; then
4755 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4756 vomodules="v4l2 $vomodules"
4757 aomodules="v4l2 $aomodules"
4758 else
4759 def_v4l2='#undef CONFIG_V4L2_DECODER'
4760 novomodules="v4l2 $novomodules"
4761 noaomodules="v4l2 $noaomodules"
4763 echores "$_v4l2"
4767 #########
4768 # AUDIO #
4769 #########
4772 echocheck "OSS Audio"
4773 if test "$_ossaudio" = auto ; then
4774 _ossaudio=no
4775 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4777 if test "$_ossaudio" = yes ; then
4778 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4779 aomodules="oss $aomodules"
4780 cat > $TMPC << EOF
4781 #include <$_soundcard_header>
4782 #ifdef OPEN_SOUND_SYSTEM
4783 int main(void) { return 0; }
4784 #else
4785 #error Not the real thing
4786 #endif
4788 _real_ossaudio=no
4789 cc_check && _real_ossaudio=yes
4790 if test "$_real_ossaudio" = yes; then
4791 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4792 # Check for OSS4 headers (override default headers)
4793 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4794 if test -f /etc/oss.conf; then
4795 . /etc/oss.conf
4796 _ossinc="$OSSLIBDIR/include"
4797 if test -f "$_ossinc/sys/soundcard.h"; then
4798 extra_cflags="-I$_ossinc $extra_cflags"
4801 elif netbsd || openbsd ; then
4802 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4803 extra_ldflags="$extra_ldflags -lossaudio"
4804 else
4805 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4807 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4808 else
4809 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4810 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4811 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4812 noaomodules="oss $noaomodules"
4814 echores "$_ossaudio"
4817 echocheck "aRts"
4818 if test "$_arts" = auto ; then
4819 _arts=no
4820 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4821 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4822 _arts=yes
4826 if test "$_arts" = yes ; then
4827 def_arts='#define CONFIG_ARTS 1'
4828 aomodules="arts $aomodules"
4829 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4830 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4831 else
4832 noaomodules="arts $noaomodules"
4834 echores "$_arts"
4837 echocheck "EsounD"
4838 if test "$_esd" = auto ; then
4839 _esd=no
4840 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4841 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4844 echores "$_esd"
4846 if test "$_esd" = yes ; then
4847 def_esd='#define CONFIG_ESD 1'
4848 aomodules="esd $aomodules"
4849 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4850 extra_cflags="$extra_cflags $(esd-config --cflags)"
4852 echocheck "esd_get_latency()"
4853 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4854 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4855 echores "$_esd_latency"
4856 else
4857 def_esd='#undef CONFIG_ESD'
4858 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4859 noaomodules="esd $noaomodules"
4863 echocheck "NAS"
4864 if test "$_nas" = auto ; then
4865 _nas=no
4866 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4868 if test "$_nas" = yes ; then
4869 def_nas='#define CONFIG_NAS 1'
4870 libs_mplayer="$libs_mplayer -laudio -lXt"
4871 aomodules="nas $aomodules"
4872 else
4873 noaomodules="nas $noaomodules"
4874 def_nas='#undef CONFIG_NAS'
4876 echores "$_nas"
4879 echocheck "pulse"
4880 if test "$_pulse" = auto ; then
4881 _pulse=no
4882 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4883 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4884 _pulse=yes
4887 echores "$_pulse"
4889 if test "$_pulse" = yes ; then
4890 def_pulse='#define CONFIG_PULSE 1'
4891 aomodules="pulse $aomodules"
4892 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4893 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4894 else
4895 def_pulse='#undef CONFIG_PULSE'
4896 noaomodules="pulse $noaomodules"
4900 echocheck "JACK"
4901 if test "$_jack" = auto ; then
4902 _jack=yes
4903 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4904 libs_mplayer="$libs_mplayer -ljack"
4905 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4906 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4907 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4908 else
4909 _jack=no
4913 if test "$_jack" = yes ; then
4914 def_jack='#define CONFIG_JACK 1'
4915 aomodules="jack $aomodules"
4916 else
4917 noaomodules="jack $noaomodules"
4919 echores "$_jack"
4921 echocheck "OpenAL"
4922 if test "$_openal" = auto ; then
4923 _openal=no
4924 cat > $TMPC << EOF
4925 #ifdef OPENAL_AL_H
4926 #include <OpenAL/al.h>
4927 #else
4928 #include <AL/al.h>
4929 #endif
4930 int main(void) {
4931 alSourceQueueBuffers(0, 0, 0);
4932 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4933 return 0;
4936 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4937 cc_check $I && _openal=yes && break
4938 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4939 done
4940 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4942 if test "$_openal" = yes ; then
4943 def_openal='#define CONFIG_OPENAL 1'
4944 aomodules="openal $aomodules"
4945 else
4946 noaomodules="openal $noaomodules"
4948 echores "$_openal"
4950 echocheck "ALSA audio"
4951 if test "$_alloca" != yes ; then
4952 _alsa=no
4953 res_comment="alloca missing"
4955 if test "$_alsa" != no ; then
4956 _alsa=no
4957 cat > $TMPC << EOF
4958 #include <sys/asoundlib.h>
4959 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
4960 #error "alsa version != 0.5.x"
4961 #endif
4962 int main(void) { return 0; }
4964 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
4966 cat > $TMPC << EOF
4967 #include <sys/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-sys'
4974 cat > $TMPC << EOF
4975 #include <alsa/asoundlib.h>
4976 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
4977 #error "alsa version != 0.9.x"
4978 #endif
4979 int main(void) { return 0; }
4981 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
4983 cat > $TMPC << EOF
4984 #include <sys/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-sys'
4991 cat > $TMPC << EOF
4992 #include <alsa/asoundlib.h>
4993 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
4994 #error "alsa version != 1.0.x"
4995 #endif
4996 int main(void) { return 0; }
4998 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5000 def_alsa='#undef CONFIG_ALSA'
5001 def_alsa5='#undef CONFIG_ALSA5'
5002 def_alsa9='#undef CONFIG_ALSA9'
5003 def_alsa1x='#undef CONFIG_ALSA1X'
5004 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5005 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5006 if test "$_alsaver" ; then
5007 _alsa=yes
5008 if test "$_alsaver" = '0.5.x' ; then
5009 _alsa5=yes
5010 aomodules="alsa5 $aomodules"
5011 def_alsa5='#define CONFIG_ALSA5 1'
5012 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5013 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5014 elif test "$_alsaver" = '0.9.x-sys' ; then
5015 _alsa9=yes
5016 aomodules="alsa $aomodules"
5017 def_alsa='#define CONFIG_ALSA 1'
5018 def_alsa9='#define CONFIG_ALSA9 1'
5019 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5020 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5021 elif test "$_alsaver" = '0.9.x-alsa' ; then
5022 _alsa9=yes
5023 aomodules="alsa $aomodules"
5024 def_alsa='#define CONFIG_ALSA 1'
5025 def_alsa9='#define CONFIG_ALSA9 1'
5026 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5027 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5028 elif test "$_alsaver" = '1.0.x-sys' ; then
5029 _alsa1x=yes
5030 aomodules="alsa $aomodules"
5031 def_alsa='#define CONFIG_ALSA 1'
5032 def_alsa1x="#define CONFIG_ALSA1X 1"
5033 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5034 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5035 elif test "$_alsaver" = '1.0.x-alsa' ; then
5036 _alsa1x=yes
5037 aomodules="alsa $aomodules"
5038 def_alsa='#define CONFIG_ALSA 1'
5039 def_alsa1x="#define CONFIG_ALSA1X 1"
5040 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5041 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5042 else
5043 _alsa=no
5044 res_comment="unknown version"
5046 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5047 else
5048 noaomodules="alsa $noaomodules"
5050 echores "$_alsa"
5053 echocheck "Sun audio"
5054 if test "$_sunaudio" = auto ; then
5055 cat > $TMPC << EOF
5056 #include <sys/types.h>
5057 #include <sys/audioio.h>
5058 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5060 _sunaudio=no
5061 cc_check && _sunaudio=yes
5063 if test "$_sunaudio" = yes ; then
5064 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5065 aomodules="sun $aomodules"
5066 else
5067 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5068 noaomodules="sun $noaomodules"
5070 echores "$_sunaudio"
5073 if darwin; then
5074 echocheck "CoreAudio"
5075 if test "$_coreaudio" = auto ; then
5076 cat > $TMPC <<EOF
5077 #include <CoreAudio/CoreAudio.h>
5078 #include <AudioToolbox/AudioToolbox.h>
5079 #include <AudioUnit/AudioUnit.h>
5080 int main(void) { return 0; }
5082 _coreaudio=no
5083 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5085 if test "$_coreaudio" = yes ; then
5086 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5087 def_coreaudio='#define CONFIG_COREAUDIO 1'
5088 aomodules="coreaudio $aomodules"
5089 else
5090 def_coreaudio='#undef CONFIG_COREAUDIO'
5091 noaomodules="coreaudio $noaomodules"
5093 echores $_coreaudio
5094 fi #if darwin
5097 if irix; then
5098 echocheck "SGI audio"
5099 if test "$_sgiaudio" = auto ; then
5100 _sgiaudio=no
5101 header_check dmedia/audio.h && _sgiaudio=yes
5103 if test "$_sgiaudio" = "yes" ; then
5104 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5105 libs_mplayer="$libs_mplayer -laudio"
5106 aomodules="sgi $aomodules"
5107 else
5108 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5109 noaomodules="sgi $noaomodules"
5111 echores "$_sgiaudio"
5112 fi #if irix
5115 if os2 ; then
5116 echocheck "KAI (UNIAUD/DART)"
5117 if test "$_kai" = auto; then
5118 _kai=no;
5119 header_check_broken os2.h kai.h -lkai && _kai=yes
5121 if test "$_kai" = yes ; then
5122 def_kai='#define CONFIG_KAI 1'
5123 libs_mplayer="$libs_mplayer -lkai"
5124 aomodules="kai $aomodules"
5125 else
5126 def_kai='#undef CONFIG_KAI'
5127 noaomodules="kai $noaomodules"
5129 echores "$_kai"
5131 echocheck "DART"
5132 if test "$_dart" = auto; then
5133 _dart=no;
5134 header_check_broken os2.h dart.h -ldart && _dart=yes
5136 if test "$_dart" = yes ; then
5137 def_dart='#define CONFIG_DART 1'
5138 libs_mplayer="$libs_mplayer -ldart"
5139 aomodules="dart $aomodules"
5140 else
5141 def_dart='#undef CONFIG_DART'
5142 noaomodules="dart $noaomodules"
5144 echores "$_dart"
5145 fi #if os2
5148 # set default CD/DVD devices
5149 if win32 || os2 ; then
5150 default_cdrom_device="D:"
5151 elif darwin ; then
5152 default_cdrom_device="/dev/disk1"
5153 elif dragonfly ; then
5154 default_cdrom_device="/dev/cd0"
5155 elif freebsd ; then
5156 default_cdrom_device="/dev/acd0"
5157 elif openbsd ; then
5158 default_cdrom_device="/dev/rcd0c"
5159 elif sunos ; then
5160 default_cdrom_device="/vol/dev/aliases/cdrom0"
5161 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5162 # file system and the volfs service.
5163 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5164 elif amigaos ; then
5165 default_cdrom_device="a1ide.device:2"
5166 else
5167 default_cdrom_device="/dev/cdrom"
5170 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5171 default_dvd_device=$default_cdrom_device
5172 elif darwin ; then
5173 default_dvd_device="/dev/rdiskN"
5174 else
5175 default_dvd_device="/dev/dvd"
5179 echocheck "VCD support"
5180 if test "$_vcd" = auto; then
5181 _vcd=no
5182 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5183 _vcd=yes
5184 elif mingw32; then
5185 header_check ddk/ntddcdrm.h && _vcd=yes
5188 if test "$_vcd" = yes; then
5189 inputmodules="vcd $inputmodules"
5190 def_vcd='#define CONFIG_VCD 1'
5191 else
5192 def_vcd='#undef CONFIG_VCD'
5193 noinputmodules="vcd $noinputmodules"
5194 res_comment="not supported on this OS"
5196 echores "$_vcd"
5200 echocheck "Blu-ray support"
5201 if test "$_bluray" = auto ; then
5202 _bluray=no
5203 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5205 if test "$_bluray" = yes ; then
5206 def_bluray='#define CONFIG_LIBBLURAY 1'
5207 extra_ldflags="$extra_ldflags -lbluray"
5208 inputmodules="bluray $inputmodules"
5209 else
5210 def_bluray='#undef CONFIG_LIBBLURAY'
5211 noinputmodules="bluray $noinputmodules"
5213 echores "$_bluray"
5215 echocheck "dvdread"
5216 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5217 _dvdread_internal=no
5219 if test "$_dvdread_internal" = auto ; then
5220 _dvdread_internal=no
5221 _dvdread=no
5222 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5223 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5224 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5225 darwin || win32 || os2; then
5226 _dvdread_internal=yes
5227 _dvdread=yes
5228 extra_cflags="-Ilibdvdread4 $extra_cflags"
5230 elif test "$_dvdread" = auto ; then
5231 _dvdread=no
5232 if test "$_dl" = yes; then
5233 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5234 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5235 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5236 _dvdread=yes
5237 extra_cflags="$extra_cflags $_dvdreadcflags"
5238 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5239 res_comment="external"
5244 if test "$_dvdread_internal" = yes; then
5245 def_dvdread='#define CONFIG_DVDREAD 1'
5246 inputmodules="dvdread(internal) $inputmodules"
5247 res_comment="internal"
5248 elif test "$_dvdread" = yes; then
5249 def_dvdread='#define CONFIG_DVDREAD 1'
5250 extra_ldflags="$extra_ldflags -ldvdread"
5251 inputmodules="dvdread(external) $inputmodules"
5252 res_comment="external"
5253 else
5254 def_dvdread='#undef CONFIG_DVDREAD'
5255 noinputmodules="dvdread $noinputmodules"
5257 echores "$_dvdread"
5260 echocheck "internal libdvdcss"
5261 if test "$_libdvdcss_internal" = auto ; then
5262 _libdvdcss_internal=no
5263 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5264 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5266 if test "$_libdvdcss_internal" = yes ; then
5267 if linux || netbsd || openbsd || bsdos ; then
5268 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5269 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5270 elif freebsd || dragonfly ; then
5271 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5272 elif darwin ; then
5273 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5274 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5275 elif cygwin ; then
5276 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5277 elif beos ; then
5278 cflags_libdvdcss="-DSYS_BEOS"
5279 elif os2 ; then
5280 cflags_libdvdcss="-DSYS_OS2"
5282 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5283 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5284 inputmodules="libdvdcss(internal) $inputmodules"
5285 else
5286 noinputmodules="libdvdcss(internal) $noinputmodules"
5288 echores "$_libdvdcss_internal"
5291 echocheck "cdparanoia"
5292 if test "$_cdparanoia" = auto ; then
5293 cat > $TMPC <<EOF
5294 #include <cdda_interface.h>
5295 #include <cdda_paranoia.h>
5296 // This need a better test. How ?
5297 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5299 _cdparanoia=no
5300 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5301 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5302 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5303 done
5305 if test "$_cdparanoia" = yes ; then
5306 _cdda='yes'
5307 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5308 openbsd && extra_ldflags="$extra_ldflags -lutil"
5310 echores "$_cdparanoia"
5313 echocheck "libcdio"
5314 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5315 cat > $TMPC << EOF
5316 #include <stdio.h>
5317 #include <cdio/version.h>
5318 #include <cdio/cdda.h>
5319 #include <cdio/paranoia.h>
5320 int main(void) {
5321 void *test = cdda_verbose_set;
5322 printf("%s\n", CDIO_VERSION);
5323 return test == (void *)1;
5326 _libcdio=no
5327 for _ld_tmp in "" "-lwinmm" ; do
5328 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5329 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5330 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5331 done
5332 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5333 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5334 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5335 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5336 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5339 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5340 _cdda='yes'
5341 def_libcdio='#define CONFIG_LIBCDIO 1'
5342 def_havelibcdio='yes'
5343 else
5344 if test "$_cdparanoia" = yes ; then
5345 res_comment="using cdparanoia"
5347 def_libcdio='#undef CONFIG_LIBCDIO'
5348 def_havelibcdio='no'
5350 echores "$_libcdio"
5352 if test "$_cdda" = yes ; then
5353 test $_cddb = auto && test $networking = yes && _cddb=yes
5354 def_cdparanoia='#define CONFIG_CDDA 1'
5355 inputmodules="cdda $inputmodules"
5356 else
5357 def_cdparanoia='#undef CONFIG_CDDA'
5358 noinputmodules="cdda $noinputmodules"
5361 if test "$_cddb" = yes ; then
5362 def_cddb='#define CONFIG_CDDB 1'
5363 inputmodules="cddb $inputmodules"
5364 else
5365 _cddb=no
5366 def_cddb='#undef CONFIG_CDDB'
5367 noinputmodules="cddb $noinputmodules"
5370 echocheck "bitmap font support"
5371 if test "$_bitmap_font" = yes ; then
5372 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5373 else
5374 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5376 echores "$_bitmap_font"
5379 echocheck "freetype >= 2.0.9"
5381 # freetype depends on iconv
5382 if test "$_iconv" = no ; then
5383 _freetype=no
5384 res_comment="iconv support needed"
5387 if test "$_freetype" = auto ; then
5388 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5389 cat > $TMPC << EOF
5390 #include <stdio.h>
5391 #include <ft2build.h>
5392 #include FT_FREETYPE_H
5393 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5394 #error "Need FreeType 2.0.9 or newer"
5395 #endif
5396 int main(void) {
5397 FT_Library library;
5398 FT_Init_FreeType(&library);
5399 return 0;
5402 _freetype=no
5403 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5404 else
5405 _freetype=no
5407 if test "$_freetype" != yes ; then
5408 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5411 if test "$_freetype" = yes ; then
5412 def_freetype='#define CONFIG_FREETYPE 1'
5413 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5414 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5415 else
5416 def_freetype='#undef CONFIG_FREETYPE'
5418 echores "$_freetype"
5420 if test "$_freetype" = no ; then
5421 _fontconfig=no
5422 res_comment="FreeType support needed"
5424 echocheck "fontconfig"
5425 if test "$_fontconfig" = auto ; then
5426 cat > $TMPC << EOF
5427 #include <stdio.h>
5428 #include <stdlib.h>
5429 #include <fontconfig/fontconfig.h>
5430 #if FC_VERSION < 20402
5431 #error At least version 2.4.2 of fontconfig required
5432 #endif
5433 int main(void) {
5434 int err = FcInit();
5435 if (err == FcFalse) {
5436 printf("Couldn't initialize fontconfig lib\n");
5437 exit(err);
5439 return 0;
5442 _fontconfig=no
5443 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5444 _ld_tmp="-lfontconfig $_ld_tmp"
5445 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5446 done
5447 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5448 _inc_tmp=$($_pkg_config --cflags fontconfig)
5449 _ld_tmp=$($_pkg_config --libs fontconfig)
5450 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5451 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5453 if test "$_fontconfig" != yes ; then
5454 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5457 if test "$_fontconfig" = yes ; then
5458 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5459 else
5460 def_fontconfig='#undef CONFIG_FONTCONFIG'
5462 echores "$_fontconfig"
5465 echocheck "SSA/ASS support"
5466 if test "$_ass" = auto -o "$_ass" = yes ; then
5467 if $_pkg_config libass; then
5468 _ass=yes
5469 def_ass='#define CONFIG_ASS 1'
5470 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5471 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5472 else
5473 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-ass."
5475 else
5476 def_ass='#undef CONFIG_ASS'
5478 echores "$_ass"
5481 echocheck "fribidi with charsets"
5482 _inc_tmp=""
5483 _ld_tmp=""
5484 if test "$_fribidi" = auto ; then
5485 cat > $TMPC << EOF
5486 #include <stdlib.h>
5487 /* workaround for fribidi 0.10.4 and below */
5488 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5489 #include <fribidi/fribidi.h>
5490 int main(void) {
5491 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5492 exit(1);
5493 return 0;
5496 _fribidi=no
5497 _inc_tmp=""
5498 _ld_tmp="-lfribidi"
5499 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5500 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5501 test "$_fribidi" = no ; then
5502 _inc_tmp="$($_pkg_config --cflags)"
5503 _ld_tmp="$($_pkg_config --libs)"
5504 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5507 if test "$_fribidi" = yes ; then
5508 def_fribidi='#define CONFIG_FRIBIDI 1'
5509 extra_cflags="$extra_cflags $_inc_tmp"
5510 extra_ldflags="$extra_ldflags $_ld_tmp"
5511 else
5512 def_fribidi='#undef CONFIG_FRIBIDI'
5514 echores "$_fribidi"
5517 echocheck "ENCA"
5518 if test "$_enca" = auto ; then
5519 _enca=no
5520 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5522 if test "$_enca" = yes ; then
5523 def_enca='#define CONFIG_ENCA 1'
5524 extra_ldflags="$extra_ldflags -lenca"
5525 else
5526 def_enca='#undef CONFIG_ENCA'
5528 echores "$_enca"
5531 echocheck "zlib"
5532 _zlib=no
5533 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5534 if test "$_zlib" = yes ; then
5535 def_zlib='#define CONFIG_ZLIB 1'
5536 extra_ldflags="$extra_ldflags -lz"
5537 else
5538 def_zlib='#define CONFIG_ZLIB 0'
5540 echores "$_zlib"
5543 echocheck "RTC"
5544 if test "$_rtc" = auto ; then
5545 cat > $TMPC << EOF
5546 #include <sys/ioctl.h>
5547 #ifdef __linux__
5548 #include <linux/rtc.h>
5549 #else
5550 #include <rtc.h>
5551 #define RTC_PIE_ON RTCIO_PIE_ON
5552 #endif
5553 int main(void) { return RTC_PIE_ON; }
5555 _rtc=no
5556 cc_check && _rtc=yes
5557 ppc && _rtc=no
5559 if test "$_rtc" = yes ; then
5560 def_rtc='#define HAVE_RTC 1'
5561 else
5562 def_rtc='#undef HAVE_RTC'
5564 echores "$_rtc"
5567 echocheck "mad support"
5568 if test "$_mad" = auto ; then
5569 _mad=no
5570 header_check mad.h -lmad && _mad=yes
5572 if test "$_mad" = yes ; then
5573 def_mad='#define CONFIG_LIBMAD 1'
5574 extra_ldflags="$extra_ldflags -lmad"
5575 codecmodules="libmad $codecmodules"
5576 else
5577 def_mad='#undef CONFIG_LIBMAD'
5578 nocodecmodules="libmad $nocodecmodules"
5580 echores "$_mad"
5582 echocheck "OggVorbis support"
5583 if test "$_libvorbis" = auto; then
5584 _libvorbis=no
5585 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5586 elif test "$_libvorbis" = yes ; then
5587 _tremor=no
5589 if test "$_tremor" = auto; then
5590 _tremor=no
5591 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5593 if test "$_tremor" = yes ; then
5594 _vorbis=yes
5595 def_vorbis='#define CONFIG_OGGVORBIS 1'
5596 def_tremor='#define CONFIG_TREMOR 1'
5597 codecmodules="tremor(external) $codecmodules"
5598 res_comment="external Tremor"
5599 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5600 elif test "$_libvorbis" = yes ; then
5601 _vorbis=yes
5602 def_vorbis='#define CONFIG_OGGVORBIS 1'
5603 codecmodules="libvorbis $codecmodules"
5604 res_comment="libvorbis"
5605 extra_ldflags="$extra_ldflags -lvorbis -logg"
5606 else
5607 _vorbis=no
5608 nocodecmodules="libvorbis $nocodecmodules"
5610 echores "$_vorbis"
5612 echocheck "libspeex (version >= 1.1 required)"
5613 if test "$_speex" = auto ; then
5614 _speex=no
5615 cat > $TMPC << EOF
5616 #include <stddef.h>
5617 #include <speex/speex.h>
5618 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5620 cc_check -lspeex $_ld_lm && _speex=yes
5622 if test "$_speex" = yes ; then
5623 def_speex='#define CONFIG_SPEEX 1'
5624 extra_ldflags="$extra_ldflags -lspeex"
5625 codecmodules="speex $codecmodules"
5626 else
5627 def_speex='#undef CONFIG_SPEEX'
5628 nocodecmodules="speex $nocodecmodules"
5630 echores "$_speex"
5632 echocheck "OggTheora support"
5633 if test "$_theora" = auto ; then
5634 _theora=no
5635 cat > $TMPC << EOF
5636 #include <theora/theora.h>
5637 #include <string.h>
5638 int main(void) {
5639 /* Theora is in flux, make sure that all interface routines and datatypes
5640 * exist and work the way we expect it, so we don't break MPlayer. */
5641 ogg_packet op;
5642 theora_comment tc;
5643 theora_info inf;
5644 theora_state st;
5645 yuv_buffer yuv;
5646 int r;
5647 double t;
5649 theora_info_init(&inf);
5650 theora_comment_init(&tc);
5652 return 0;
5654 /* we don't want to execute this kind of nonsense; just for making sure
5655 * that compilation works... */
5656 memset(&op, 0, sizeof(op));
5657 r = theora_decode_header(&inf, &tc, &op);
5658 r = theora_decode_init(&st, &inf);
5659 t = theora_granule_time(&st, op.granulepos);
5660 r = theora_decode_packetin(&st, &op);
5661 r = theora_decode_YUVout(&st, &yuv);
5662 theora_clear(&st);
5664 return 0;
5667 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5668 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5669 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5670 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5671 if test _theora = no; then
5672 _ld_theora="-ltheora -logg"
5673 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5676 if test "$_theora" = yes ; then
5677 def_theora='#define CONFIG_OGGTHEORA 1'
5678 codecmodules="libtheora $codecmodules"
5679 # when --enable-theora is forced, we'd better provide a probably sane
5680 # $_ld_theora than nothing
5681 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5682 else
5683 def_theora='#undef CONFIG_OGGTHEORA'
5684 nocodecmodules="libtheora $nocodecmodules"
5686 echores "$_theora"
5688 # Any version of libmpg123 shall be fine.
5689 echocheck "mpg123 support"
5690 def_mpg123='#undef CONFIG_MPG123'
5691 if test "$_mpg123" = auto; then
5692 _mpg123=no
5693 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5695 if test "$_mpg123" = yes ; then
5696 def_mpg123='#define CONFIG_MPG123 1'
5697 codecmodules="mpg123 $codecmodules"
5698 else
5699 nocodecmodules="mpg123 $nocodecmodules"
5701 echores "$_mpg123"
5703 echocheck "liba52 support"
5704 def_liba52='#undef CONFIG_LIBA52'
5705 if test "$_liba52" = auto ; then
5706 _liba52=no
5707 cat > $TMPC << EOF
5708 #include <inttypes.h>
5709 #include <a52dec/a52.h>
5710 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5712 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5714 if test "$_liba52" = yes ; then
5715 def_liba52='#define CONFIG_LIBA52 1'
5716 codecmodules="liba52 $codecmodules"
5717 else
5718 nocodecmodules="liba52 $nocodecmodules"
5720 echores "$_liba52"
5722 echocheck "libdca support"
5723 if test "$_libdca" = auto ; then
5724 _libdca=no
5725 for _ld_dca in -ldca -ldts ; do
5726 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5727 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5728 done
5730 if test "$_libdca" = yes ; then
5731 def_libdca='#define CONFIG_LIBDCA 1'
5732 codecmodules="libdca $codecmodules"
5733 else
5734 def_libdca='#undef CONFIG_LIBDCA'
5735 nocodecmodules="libdca $nocodecmodules"
5737 echores "$_libdca"
5739 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5740 if test "$_musepack" = yes ; then
5741 _musepack=no
5742 cat > $TMPC << EOF
5743 #include <stddef.h>
5744 #include <mpcdec/mpcdec.h>
5745 int main(void) {
5746 mpc_streaminfo info;
5747 mpc_decoder decoder;
5748 mpc_decoder_set_streaminfo(&decoder, &info);
5749 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5750 return 0;
5753 cc_check -lmpcdec $_ld_lm && _musepack=yes
5755 if test "$_musepack" = yes ; then
5756 def_musepack='#define CONFIG_MUSEPACK 1'
5757 extra_ldflags="$extra_ldflags -lmpcdec"
5758 codecmodules="musepack $codecmodules"
5759 else
5760 def_musepack='#undef CONFIG_MUSEPACK'
5761 nocodecmodules="musepack $nocodecmodules"
5763 echores "$_musepack"
5766 echocheck "FAAD2 support"
5767 if test "$_faad" = auto ; then
5768 _faad=no
5769 cat > $TMPC << EOF
5770 #include <faad.h>
5771 #ifndef FAAD_MIN_STREAMSIZE
5772 #error Too old version
5773 #endif
5774 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5775 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5777 cc_check -lfaad $_ld_lm && _faad=yes
5780 def_faad='#undef CONFIG_FAAD'
5781 if test "$_faad" = yes ; then
5782 def_faad='#define CONFIG_FAAD 1'
5783 extra_ldflags="$extra_ldflags -lfaad"
5784 codecmodules="faad2 $codecmodules"
5785 else
5786 nocodecmodules="faad2 $nocodecmodules"
5788 echores "$_faad"
5791 echocheck "LADSPA plugin support"
5792 if test "$_ladspa" = auto ; then
5793 _ladspa=no
5794 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5796 if test "$_ladspa" = yes; then
5797 def_ladspa="#define CONFIG_LADSPA 1"
5798 else
5799 def_ladspa="#undef CONFIG_LADSPA"
5801 echores "$_ladspa"
5804 echocheck "libbs2b audio filter support"
5805 if test "$_libbs2b" = auto ; then
5806 cat > $TMPC <<EOF
5807 #include <bs2b.h>
5808 #if BS2B_VERSION_MAJOR < 3
5809 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5810 #endif
5811 int main(void) {
5812 t_bs2bdp filter;
5813 filter=bs2b_open();
5814 bs2b_close(filter);
5815 return 0;
5818 _libbs2b=no
5819 if $_pkg_config --exists libbs2b ; then
5820 _inc_tmp=$($_pkg_config --cflags libbs2b)
5821 _ld_tmp=$($_pkg_config --libs libbs2b)
5822 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5823 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5824 else
5825 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5826 -I/usr/local/include/bs2b ; do
5827 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5828 extra_ldflags="$extra_ldflags -lbs2b"
5829 extra_cflags="$extra_cflags $_inc_tmp"
5830 _libbs2b=yes
5831 break
5833 done
5836 def_libbs2b="#undef CONFIG_LIBBS2B"
5837 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5838 echores "$_libbs2b"
5841 if test -z "$_codecsdir" ; then
5842 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5843 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5844 if test -d "$dir" ; then
5845 _codecsdir="$dir"
5846 break;
5848 done
5850 # Fall back on default directory.
5851 if test -z "$_codecsdir" ; then
5852 _codecsdir="$_libdir/codecs"
5853 mingw32 || os2 && _codecsdir="codecs"
5857 echocheck "Win32 codecs"
5858 if test "$_win32dll" = auto ; then
5859 _win32dll=no
5860 if x86_32 && ! qnx; then
5861 _win32dll=yes
5864 if test "$_win32dll" = yes ; then
5865 def_win32dll='#define CONFIG_WIN32DLL 1'
5866 if ! win32 ; then
5867 def_win32_loader='#define WIN32_LOADER 1'
5868 _win32_emulation=yes
5869 else
5870 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5871 res_comment="using native windows"
5873 codecmodules="win32 $codecmodules"
5874 else
5875 def_win32dll='#undef CONFIG_WIN32DLL'
5876 def_win32_loader='#undef WIN32_LOADER'
5877 nocodecmodules="win32 $nocodecmodules"
5879 echores "$_win32dll"
5882 echocheck "XAnim codecs"
5883 if test "$_xanim" = auto ; then
5884 _xanim=no
5885 res_comment="dynamic loader support needed"
5886 if test "$_dl" = yes ; then
5887 _xanim=yes
5890 if test "$_xanim" = yes ; then
5891 def_xanim='#define CONFIG_XANIM 1'
5892 codecmodules="xanim $codecmodules"
5893 else
5894 def_xanim='#undef CONFIG_XANIM'
5895 nocodecmodules="xanim $nocodecmodules"
5897 echores "$_xanim"
5900 echocheck "RealPlayer codecs"
5901 if test "$_real" = auto ; then
5902 _real=no
5903 res_comment="dynamic loader support needed"
5904 if test "$_dl" = yes || test "$_win32dll" = yes &&
5905 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5906 _real=yes
5909 if test "$_real" = yes ; then
5910 def_real='#define CONFIG_REALCODECS 1'
5911 codecmodules="real $codecmodules"
5912 else
5913 def_real='#undef CONFIG_REALCODECS'
5914 nocodecmodules="real $nocodecmodules"
5916 echores "$_real"
5919 echocheck "QuickTime codecs"
5920 _qtx_emulation=no
5921 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5922 if test "$_qtx" = auto ; then
5923 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5925 if test "$_qtx" = yes ; then
5926 def_qtx='#define CONFIG_QTX_CODECS 1'
5927 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5928 codecmodules="qtx $codecmodules"
5929 darwin || win32 || _qtx_emulation=yes
5930 else
5931 def_qtx='#undef CONFIG_QTX_CODECS'
5932 nocodecmodules="qtx $nocodecmodules"
5934 echores "$_qtx"
5936 echocheck "Nemesi Streaming Media libraries"
5937 if test "$_nemesi" = auto && test "$networking" = yes ; then
5938 _nemesi=no
5939 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
5940 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
5941 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
5942 _nemesi=yes
5945 if test "$_nemesi" = yes; then
5946 _native_rtsp=no
5947 def_nemesi='#define CONFIG_LIBNEMESI 1'
5948 inputmodules="nemesi $inputmodules"
5949 else
5950 _native_rtsp="$networking"
5951 _nemesi=no
5952 def_nemesi='#undef CONFIG_LIBNEMESI'
5953 noinputmodules="nemesi $noinputmodules"
5955 echores "$_nemesi"
5957 echocheck "LIVE555 Streaming Media libraries"
5958 if test "$_live" = auto && test "$networking" = yes ; then
5959 cat > $TMPCPP << EOF
5960 #include <liveMedia.hh>
5961 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5962 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5963 #endif
5964 int main(void) { return 0; }
5967 _live=no
5968 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
5969 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5970 _livelibdir=$(echo $I| sed s/-I//) &&
5971 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5972 $_livelibdir/groupsock/libgroupsock.a \
5973 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5974 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5975 $extra_ldflags -lstdc++" \
5976 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5977 -I$_livelibdir/UsageEnvironment/include \
5978 -I$_livelibdir/BasicUsageEnvironment/include \
5979 -I$_livelibdir/groupsock/include" &&
5980 _live=yes && break
5981 done
5982 if test "$_live" != yes ; then
5983 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5984 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5985 _live_dist=yes
5989 if test "$_live" = yes && test "$networking" = yes; then
5990 test $_livelibdir && res_comment="using $_livelibdir"
5991 def_live='#define CONFIG_LIVE555 1'
5992 inputmodules="live555 $inputmodules"
5993 elif test "$_live_dist" = yes && test "$networking" = yes; then
5994 res_comment="using distribution version"
5995 _live="yes"
5996 def_live='#define CONFIG_LIVE555 1'
5997 extra_ldflags="$extra_ldflags $ld_tmp"
5998 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
5999 inputmodules="live555 $inputmodules"
6000 else
6001 _live=no
6002 def_live='#undef CONFIG_LIVE555'
6003 noinputmodules="live555 $noinputmodules"
6005 echores "$_live"
6009 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6010 echocheck "FFmpeg ($all_ffmpeg_libs)"
6011 if test "$ffmpeg" = auto ; then
6012 ffmpeg=no
6013 if $_pkg_config --exists $all_ffmpeg_libs ; then
6014 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6015 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6016 extra_ldflags="$extra_ldflags $_ld_tmp"
6017 extra_cflags="$extra_cflags $inc_ffmpeg"
6018 ffmpeg=yes
6019 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6020 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6021 ffmpeg=yes
6022 else
6023 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."
6027 ffmpeg_eval_api=no
6028 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6029 if test "$ffmpeg" = yes; then
6030 def_ffmpeg='#define CONFIG_FFMPEG 1'
6031 codecmodules="ffmpeg $codecmodules"
6032 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6033 ffmpeg_eval_api=yes
6034 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6036 else
6037 def_ffmpeg='#undef CONFIG_FFMPEG'
6038 nocodecmodules="ffmpeg $nocodecmodules"
6040 echores "$ffmpeg"
6042 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6043 if ! test -z "$_ffmpeg_source" ; then
6044 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6049 echocheck "libdv-0.9.5+"
6050 if test "$_libdv" = auto ; then
6051 _libdv=no
6052 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6054 if test "$_libdv" = yes ; then
6055 def_libdv='#define CONFIG_LIBDV095 1'
6056 extra_ldflags="$extra_ldflags -ldv"
6057 codecmodules="libdv $codecmodules"
6058 else
6059 def_libdv='#undef CONFIG_LIBDV095'
6060 nocodecmodules="libdv $nocodecmodules"
6062 echores "$_libdv"
6065 echocheck "Xvid"
6066 if test "$_xvid" = auto ; then
6067 _xvid=no
6068 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6069 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6070 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6071 done
6074 if test "$_xvid" = yes ; then
6075 def_xvid='#define CONFIG_XVID4 1'
6076 codecmodules="xvid $codecmodules"
6077 else
6078 def_xvid='#undef CONFIG_XVID4'
6079 nocodecmodules="xvid $nocodecmodules"
6081 echores "$_xvid"
6084 echocheck "libnut"
6085 if test "$_libnut" = auto ; then
6086 _libnut=no
6087 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6090 if test "$_libnut" = yes ; then
6091 def_libnut='#define CONFIG_LIBNUT 1'
6092 extra_ldflags="$extra_ldflags -lnut"
6093 else
6094 def_libnut='#undef CONFIG_LIBNUT'
6096 echores "$_libnut"
6098 # These VO checks must be done after the FFmpeg one
6099 echocheck "/dev/mga_vid"
6100 if test "$_mga" = auto ; then
6101 _mga=no
6102 test -c /dev/mga_vid && _mga=yes
6104 if test "$_mga" = yes ; then
6105 def_mga='#define CONFIG_MGA 1'
6106 vomodules="mga $vomodules"
6107 else
6108 def_mga='#undef CONFIG_MGA'
6109 novomodules="mga $novomodules"
6111 echores "$_mga"
6114 echocheck "xmga"
6115 if test "$_xmga" = auto ; then
6116 _xmga=no
6117 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6119 if test "$_xmga" = yes ; then
6120 def_xmga='#define CONFIG_XMGA 1'
6121 vomodules="xmga $vomodules"
6122 else
6123 def_xmga='#undef CONFIG_XMGA'
6124 novomodules="xmga $novomodules"
6126 echores "$_xmga"
6129 echocheck "UnRAR executable"
6130 if test "$_unrar_exec" = auto ; then
6131 _unrar_exec="yes"
6132 mingw32 && _unrar_exec="no"
6134 if test "$_unrar_exec" = yes ; then
6135 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6136 else
6137 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6139 echores "$_unrar_exec"
6141 echocheck "TV interface"
6142 if test "$_tv" = yes ; then
6143 def_tv='#define CONFIG_TV 1'
6144 inputmodules="tv $inputmodules"
6145 else
6146 noinputmodules="tv $noinputmodules"
6147 def_tv='#undef CONFIG_TV'
6149 echores "$_tv"
6152 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6153 echocheck "*BSD BT848 bt8xx header"
6154 _ioctl_bt848_h=no
6155 for file in "machine/ioctl_bt848.h" \
6156 "dev/bktr/ioctl_bt848.h" \
6157 "dev/video/bktr/ioctl_bt848.h" \
6158 "dev/ic/bt8xx.h" ; do
6159 cat > $TMPC <<EOF
6160 #include <sys/types.h>
6161 #include <sys/ioctl.h>
6162 #include <$file>
6163 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6165 if cc_check ; then
6166 _ioctl_bt848_h=yes
6167 _ioctl_bt848_h_name="$file"
6168 break;
6170 done
6171 if test "$_ioctl_bt848_h" = yes ; then
6172 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6173 res_comment="using $_ioctl_bt848_h_name"
6174 else
6175 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6177 echores "$_ioctl_bt848_h"
6179 echocheck "*BSD ioctl_meteor.h"
6180 _ioctl_meteor_h=no
6181 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6182 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6183 _ioctl_meteor_h=yes && break
6184 done
6185 if test "$_ioctl_meteor_h" = yes ; then
6186 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6187 res_comment="using $ioctl_meteor_h_path"
6188 else
6189 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6191 echores "$_ioctl_meteor_h"
6193 echocheck "*BSD BrookTree 848 TV interface"
6194 if test "$_tv_bsdbt848" = auto ; then
6195 _tv_bsdbt848=no
6196 if test "$_tv" = yes ; then
6197 cat > $TMPC <<EOF
6198 #include <sys/types.h>
6199 $def_ioctl_meteor_h_name
6200 $def_ioctl_bt848_h_name
6201 #ifdef IOCTL_METEOR_H_NAME
6202 #include IOCTL_METEOR_H_NAME
6203 #endif
6204 #ifdef IOCTL_BT848_H_NAME
6205 #include IOCTL_BT848_H_NAME
6206 #endif
6207 int main(void) {
6208 ioctl(0, METEORSINPUT, 0);
6209 ioctl(0, TVTUNER_GETFREQ, 0);
6210 return 0;
6213 cc_check && _tv_bsdbt848=yes
6216 if test "$_tv_bsdbt848" = yes ; then
6217 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6218 inputmodules="tv-bsdbt848 $inputmodules"
6219 else
6220 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6221 noinputmodules="tv-bsdbt848 $noinputmodules"
6223 echores "$_tv_bsdbt848"
6224 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6227 echocheck "DirectShow TV interface"
6228 if test "$_tv_dshow" = auto ; then
6229 _tv_dshow=no
6230 if test "$_tv" = yes && win32 ; then
6231 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6234 if test "$_tv_dshow" = yes ; then
6235 inputmodules="tv-dshow $inputmodules"
6236 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6237 extra_ldflags="$extra_ldflags -lole32 -luuid"
6238 else
6239 noinputmodules="tv-dshow $noinputmodules"
6240 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6242 echores "$_tv_dshow"
6245 echocheck "Video 4 Linux TV interface"
6246 if test "$_tv_v4l1" = auto ; then
6247 _tv_v4l1=no
6248 if test "$_tv" = yes && linux ; then
6249 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6252 if test "$_tv_v4l1" = yes ; then
6253 _audio_input=yes
6254 _tv_v4l=yes
6255 def_tv_v4l='#define CONFIG_TV_V4L 1'
6256 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6257 inputmodules="tv-v4l $inputmodules"
6258 else
6259 noinputmodules="tv-v4l1 $noinputmodules"
6260 def_tv_v4l='#undef CONFIG_TV_V4L'
6262 echores "$_tv_v4l1"
6265 echocheck "Video 4 Linux 2 TV interface"
6266 if test "$_tv_v4l2" = auto ; then
6267 _tv_v4l2=no
6268 if test "$_tv" = yes && linux ; then
6269 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6272 if test "$_tv_v4l2" = yes ; then
6273 _audio_input=yes
6274 _tv_v4l=yes
6275 def_tv_v4l='#define CONFIG_TV_V4L 1'
6276 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6277 inputmodules="tv-v4l2 $inputmodules"
6278 else
6279 noinputmodules="tv-v4l2 $noinputmodules"
6280 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6282 echores "$_tv_v4l2"
6285 echocheck "Radio interface"
6286 if test "$_radio" = yes ; then
6287 def_radio='#define CONFIG_RADIO 1'
6288 inputmodules="radio $inputmodules"
6289 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6290 _radio_capture=no
6292 if test "$_radio_capture" = yes ; then
6293 _audio_input=yes
6294 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6295 else
6296 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6298 else
6299 noinputmodules="radio $noinputmodules"
6300 def_radio='#undef CONFIG_RADIO'
6301 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6302 _radio_capture=no
6304 echores "$_radio"
6305 echocheck "Capture for Radio interface"
6306 echores "$_radio_capture"
6308 echocheck "Video 4 Linux 2 Radio interface"
6309 if test "$_radio_v4l2" = auto ; then
6310 _radio_v4l2=no
6311 if test "$_radio" = yes && linux ; then
6312 header_check linux/videodev2.h && _radio_v4l2=yes
6315 if test "$_radio_v4l2" = yes ; then
6316 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6317 else
6318 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6320 echores "$_radio_v4l2"
6322 echocheck "Video 4 Linux Radio interface"
6323 if test "$_radio_v4l" = auto ; then
6324 _radio_v4l=no
6325 if test "$_radio" = yes && linux ; then
6326 header_check linux/videodev.h && _radio_v4l=yes
6329 if test "$_radio_v4l" = yes ; then
6330 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6331 else
6332 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6334 echores "$_radio_v4l"
6336 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6337 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6338 echocheck "*BSD BrookTree 848 Radio interface"
6339 _radio_bsdbt848=no
6340 cat > $TMPC <<EOF
6341 #include <sys/types.h>
6342 $def_ioctl_bt848_h_name
6343 #ifdef IOCTL_BT848_H_NAME
6344 #include IOCTL_BT848_H_NAME
6345 #endif
6346 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6348 cc_check && _radio_bsdbt848=yes
6349 echores "$_radio_bsdbt848"
6350 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6352 if test "$_radio_bsdbt848" = yes ; then
6353 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6354 else
6355 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6358 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6359 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6360 die "Radio driver requires BSD BT848, V4L or V4L2!"
6363 echocheck "Video 4 Linux 2 MPEG PVR interface"
6364 if test "$_pvr" = auto ; then
6365 _pvr=no
6366 if test "$_tv_v4l2" = yes && linux ; then
6367 cat > $TMPC <<EOF
6368 #include <sys/time.h>
6369 #include <linux/videodev2.h>
6370 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6372 cc_check && _pvr=yes
6375 if test "$_pvr" = yes ; then
6376 def_pvr='#define CONFIG_PVR 1'
6377 inputmodules="pvr $inputmodules"
6378 else
6379 noinputmodules="pvr $noinputmodules"
6380 def_pvr='#undef CONFIG_PVR'
6382 echores "$_pvr"
6385 echocheck "ftp"
6386 if test "$_ftp" = "auto" ; then
6387 test "$networking" = "yes" && ! beos && _ftp=yes
6389 if test "$_ftp" = yes ; then
6390 def_ftp='#define CONFIG_FTP 1'
6391 inputmodules="ftp $inputmodules"
6392 else
6393 noinputmodules="ftp $noinputmodules"
6394 def_ftp='#undef CONFIG_FTP'
6396 echores "$_ftp"
6398 echocheck "vstream client"
6399 if test "$_vstream" = auto ; then
6400 _vstream=no
6401 cat > $TMPC <<EOF
6402 #include <vstream-client.h>
6403 void vstream_error(const char *format, ... ) {}
6404 int main(void) { vstream_start(); return 0; }
6406 cc_check -lvstream-client && _vstream=yes
6408 if test "$_vstream" = yes ; then
6409 def_vstream='#define CONFIG_VSTREAM 1'
6410 inputmodules="vstream $inputmodules"
6411 extra_ldflags="$extra_ldflags -lvstream-client"
6412 else
6413 noinputmodules="vstream $noinputmodules"
6414 def_vstream='#undef CONFIG_VSTREAM'
6416 echores "$_vstream"
6419 echocheck "OSD menu"
6420 if test "$_menu" = yes ; then
6421 def_menu='#define CONFIG_MENU 1'
6422 test $_dvbin = "yes" && _menu_dvbin=yes
6423 else
6424 def_menu='#undef CONFIG_MENU'
6425 _menu_dvbin=no
6427 echores "$_menu"
6430 echocheck "Subtitles sorting"
6431 if test "$_sortsub" = yes ; then
6432 def_sortsub='#define CONFIG_SORTSUB 1'
6433 else
6434 def_sortsub='#undef CONFIG_SORTSUB'
6436 echores "$_sortsub"
6439 echocheck "XMMS inputplugin support"
6440 if test "$_xmms" = yes ; then
6441 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6442 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6443 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6444 else
6445 _xmmsplugindir=/usr/lib/xmms/Input
6446 _xmmslibdir=/usr/lib
6449 def_xmms='#define CONFIG_XMMS 1'
6450 if darwin ; then
6451 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6452 else
6453 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6455 else
6456 def_xmms='#undef CONFIG_XMMS'
6458 echores "$_xmms"
6460 if test "$_charset" != "noconv" ; then
6461 def_charset="#define MSG_CHARSET \"$_charset\""
6462 else
6463 def_charset="#undef MSG_CHARSET"
6464 _charset="UTF-8"
6467 #############################################################################
6469 echocheck "automatic gdb attach"
6470 if test "$_crash_debug" = yes ; then
6471 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6472 else
6473 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6474 _crash_debug=no
6476 echores "$_crash_debug"
6478 echocheck "compiler support for noexecstack"
6479 if cflag_check -Wl,-z,noexecstack ; then
6480 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6481 echores "yes"
6482 else
6483 echores "no"
6486 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6487 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6488 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6489 echores "yes"
6490 else
6491 echores "no"
6495 # Dynamic linking flags
6496 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6497 _ld_dl_dynamic=''
6498 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6499 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6500 _ld_dl_dynamic='-rdynamic'
6503 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6504 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6505 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6507 def_debug='#undef MP_DEBUG'
6508 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6511 echocheck "joystick"
6512 def_joystick='#undef CONFIG_JOYSTICK'
6513 if test "$_joystick" = yes ; then
6514 if linux || freebsd ; then
6515 # TODO add some check
6516 def_joystick='#define CONFIG_JOYSTICK 1'
6517 else
6518 _joystick="no"
6519 res_comment="unsupported under $system_name"
6522 echores "$_joystick"
6524 echocheck "lirc"
6525 if test "$_lirc" = auto ; then
6526 _lirc=no
6527 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6529 if test "$_lirc" = yes ; then
6530 def_lirc='#define CONFIG_LIRC 1'
6531 libs_mplayer="$libs_mplayer -llirc_client"
6532 else
6533 def_lirc='#undef CONFIG_LIRC'
6535 echores "$_lirc"
6537 echocheck "lircc"
6538 if test "$_lircc" = auto ; then
6539 _lircc=no
6540 header_check lirc/lircc.h -llircc && _lircc=yes
6542 if test "$_lircc" = yes ; then
6543 def_lircc='#define CONFIG_LIRCC 1'
6544 libs_mplayer="$libs_mplayer -llircc"
6545 else
6546 def_lircc='#undef CONFIG_LIRCC'
6548 echores "$_lircc"
6550 #############################################################################
6552 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6553 # the OMF format needs to come after the 'extern symbol prefix' check, which
6554 # uses nm.
6555 if os2 ; then
6556 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6559 #############################################################################
6561 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6563 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6565 # This must be the last test to be performed. Any other tests following it
6566 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6567 # against libdvdread (to permit MPlayer to use its own copy of the library).
6568 # So any compilation using the flags added here but not linking against
6569 # libdvdread can fail.
6570 echocheck "DVD support (libdvdnav)"
6571 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6572 _dvdnav=no
6574 dvdnav_internal=no
6575 if test "$_dvdnav" = auto ; then
6576 if test "$_dvdread_internal" = yes ; then
6577 _dvdnav=yes
6578 dvdnav_internal=yes
6579 res_comment="internal"
6580 else
6581 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6584 if test "$_dvdnav" = auto ; then
6585 _dvdnav=no
6586 _dvdnavdir=$($_dvdnavconfig --cflags)
6587 _dvdnavlibs=$($_dvdnavconfig --libs)
6588 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6590 if test "$_dvdnav" = yes ; then
6591 def_dvdnav='#define CONFIG_DVDNAV 1'
6592 if test "$dvdnav_internal" = yes ; then
6593 cflags_libdvdnav="-Ilibdvdnav"
6594 inputmodules="dvdnav(internal) $inputmodules"
6595 else
6596 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6597 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6598 inputmodules="dvdnav $inputmodules"
6600 else
6601 def_dvdnav='#undef CONFIG_DVDNAV'
6602 noinputmodules="dvdnav $noinputmodules"
6604 echores "$_dvdnav"
6606 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6607 # Read dvdnav comment above.
6609 mak_enable () {
6610 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6611 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6612 nprefix=$3;
6613 for part in $list; do
6614 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6615 echo "${nprefix}_$part = yes"
6617 done
6620 #############################################################################
6621 echo "Creating config.mak"
6622 cat > config.mak << EOF
6623 # -------- Generated by configure -----------
6625 # Ensure that locale settings do not interfere with shell commands.
6626 export LC_ALL = C
6628 CONFIGURATION = $configuration
6630 CHARSET = $_charset
6631 DOC_LANGS = $language_doc
6632 DOC_LANG_ALL = $doc_lang_all
6633 MAN_LANGS = $language_man
6634 MAN_LANG_ALL = $man_lang_all
6635 MSG_LANGS = $language_msg
6636 MSG_LANG_ALL = $msg_lang_all
6638 prefix = \$(DESTDIR)$_prefix
6639 BINDIR = \$(DESTDIR)$_bindir
6640 DATADIR = \$(DESTDIR)$_datadir
6641 LIBDIR = \$(DESTDIR)$_libdir
6642 MANDIR = \$(DESTDIR)$_mandir
6643 CONFDIR = \$(DESTDIR)$_confdir
6644 LOCALEDIR = \$(DESTDIR)$_localedir
6646 AR = $_ar
6647 AS = $_cc
6648 CC = $_cc
6649 CXX = $_cc
6650 HOST_CC = $_host_cc
6651 INSTALL = $_install
6652 INSTALLSTRIP = $_install_strip
6653 WINDRES = $_windres
6655 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6656 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6657 DEPFLAGS = $DEPFLAGS
6659 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6660 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6661 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6662 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6663 CFLAGS_STACKREALIGN = $cflags_stackrealign
6665 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6666 EXTRALIBS_MPLAYER = $libs_mplayer
6668 GETCH = $_getch
6669 TIMER = $_timer
6671 EXESUF = $_exesuf
6672 EXESUFS_ALL = .exe
6674 ARCH = $arch
6675 $(mak_enable "$arch_all" "$arch" ARCH)
6676 $(mak_enable "$subarch_all" "$subarch" ARCH)
6677 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6679 MPLAYER = $_mplayer
6681 NEED_GETTIMEOFDAY = $need_gettimeofday
6682 NEED_GLOB = $need_glob
6683 NEED_MMAP = $need_mmap
6684 NEED_SETENV = $need_setenv
6685 NEED_SHMEM = $need_shmem
6686 NEED_STRSEP = $need_strsep
6687 NEED_SWAB = $need_swab
6688 NEED_VSSCANF = $need_vsscanf
6690 # features
6691 3DFX = $_3dfx
6692 AA = $_aa
6693 ALSA1X = $_alsa1x
6694 ALSA9 = $_alsa9
6695 ALSA5 = $_alsa5
6696 APPLE_IR = $_apple_ir
6697 APPLE_REMOTE = $_apple_remote
6698 ARTS = $_arts
6699 AUDIO_INPUT = $_audio_input
6700 BITMAP_FONT = $_bitmap_font
6701 BL = $_bl
6702 CACA = $_caca
6703 CDDA = $_cdda
6704 CDDB = $_cddb
6705 COREAUDIO = $_coreaudio
6706 COREVIDEO = $_corevideo
6707 DART = $_dart
6708 DGA = $_dga
6709 DIRECT3D = $_direct3d
6710 DIRECTFB = $_directfb
6711 DIRECTX = $_directx
6712 DVBIN = $_dvbin
6713 DVDNAV = $_dvdnav
6714 DVDNAV_INTERNAL = $dvdnav_internal
6715 DVDREAD = $_dvdread
6716 DVDREAD_INTERNAL = $_dvdread_internal
6717 DXR3 = $_dxr3
6718 ESD = $_esd
6719 FAAD = $_faad
6720 FASTMEMCPY = $_fastmemcpy
6721 FBDEV = $_fbdev
6722 FREETYPE = $_freetype
6723 FTP = $_ftp
6724 GIF = $_gif
6725 GGI = $_ggi
6726 GL = $_gl
6727 GL_WIN32 = $_gl_win32
6728 GL_X11 = $_gl_x11
6729 GL_SDL = $_gl_sdl
6730 MATRIXVIEW = $matrixview
6731 HAVE_POSIX_SELECT = $_posix_select
6732 HAVE_SYS_MMAN_H = $_mman
6733 IVTV = $_ivtv
6734 JACK = $_jack
6735 JOYSTICK = $_joystick
6736 JPEG = $_jpeg
6737 KAI = $_kai
6738 KVA = $_kva
6739 LADSPA = $_ladspa
6740 LIBA52 = $_liba52
6741 LIBASS = $_ass
6742 LIBBLURAY = $_bluray
6743 LIBBS2B = $_libbs2b
6744 LIBDCA = $_libdca
6745 LIBDV = $_libdv
6746 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6747 LIBMAD = $_mad
6748 LIBMENU = $_menu
6749 LIBMENU_DVBIN = $_menu_dvbin
6750 LIBNEMESI = $_nemesi
6751 LIBNUT = $_libnut
6752 LIBSMBCLIENT = $_smb
6753 LIBTHEORA = $_theora
6754 LIRC = $_lirc
6755 LIVE555 = $_live
6756 MACOSX_FINDER = $_macosx_finder
6757 MD5SUM = $_md5sum
6758 MGA = $_mga
6759 MNG = $_mng
6760 MPG123 = $_mpg123
6761 MUSEPACK = $_musepack
6762 NAS = $_nas
6763 NATIVE_RTSP = $_native_rtsp
6764 NETWORKING = $networking
6765 OPENAL = $_openal
6766 OSS = $_ossaudio
6767 PE_EXECUTABLE = $_pe_executable
6768 PNG = $_png
6769 PNM = $_pnm
6770 PRIORITY = $_priority
6771 PULSE = $_pulse
6772 PVR = $_pvr
6773 QTX_CODECS = $_qtx
6774 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6775 QTX_EMULATION = $_qtx_emulation
6776 QUARTZ = $_quartz
6777 RADIO=$_radio
6778 RADIO_CAPTURE=$_radio_capture
6779 REAL_CODECS = $_real
6780 S3FB = $_s3fb
6781 SDL = $_sdl
6782 SPEEX = $_speex
6783 STREAM_CACHE = $_stream_cache
6784 SGIAUDIO = $_sgiaudio
6785 SUNAUDIO = $_sunaudio
6786 SVGA = $_svga
6787 TDFXFB = $_tdfxfb
6788 TDFXVID = $_tdfxvid
6789 TGA = $_tga
6790 TV = $_tv
6791 TV_BSDBT848 = $_tv_bsdbt848
6792 TV_DSHOW = $_tv_dshow
6793 TV_V4L = $_tv_v4l
6794 TV_V4L1 = $_tv_v4l1
6795 TV_V4L2 = $_tv_v4l2
6796 UNRAR_EXEC = $_unrar_exec
6797 V4L2 = $_v4l2
6798 VCD = $_vcd
6799 VDPAU = $_vdpau
6800 VESA = $_vesa
6801 VORBIS = $_vorbis
6802 VSTREAM = $_vstream
6803 WII = $_wii
6804 WIN32DLL = $_win32dll
6805 WIN32WAVEOUT = $_win32waveout
6806 WIN32_EMULATION = $_win32_emulation
6807 X11 = $_x11
6808 XANIM_CODECS = $_xanim
6809 XMGA = $_xmga
6810 XMMS_PLUGINS = $_xmms
6811 XV = $_xv
6812 XVID4 = $_xvid
6813 XVR100 = $_xvr100
6814 YUV4MPEG = $_yuv4mpeg
6816 # FFmpeg
6817 FFMPEG = $ffmpeg
6818 FFMPEG_EVAL_API = $ffmpeg_eval_api
6819 FFMPEG_INTERNALS = $ffmpeg_internals
6820 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6822 RANLIB = $_ranlib
6823 YASM = $_yasm
6824 YASMFLAGS = $YASMFLAGS
6826 CONFIG_VDPAU = $_vdpau
6827 CONFIG_ZLIB = $_zlib
6829 HAVE_PTHREADS = $_pthreads
6830 HAVE_SHM = $_shm
6831 HAVE_W32THREADS = $_w32threads
6832 HAVE_YASM = $have_yasm
6836 #############################################################################
6838 ff_config_enable () {
6839 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6840 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6841 _nprefix=$3;
6842 test -z "$_nprefix" && _nprefix='CONFIG'
6843 for part in $list; do
6844 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6845 echo "#define ${_nprefix}_$part 1"
6846 else
6847 echo "#define ${_nprefix}_$part 0"
6849 done
6852 echo "Creating config.h"
6853 cat > $TMPH << EOF
6854 /*----------------------------------------------------------------------------
6855 ** This file has been automatically generated by configure any changes in it
6856 ** will be lost when you run configure again.
6857 ** Instead of modifying definitions here, use the --enable/--disable options
6858 ** of the configure script! See ./configure --help for details.
6859 *---------------------------------------------------------------------------*/
6861 #ifndef MPLAYER_CONFIG_H
6862 #define MPLAYER_CONFIG_H
6864 /* Undefine this if you do not want to select mono audio (left or right)
6865 with a stereo MPEG layer 2/3 audio stream. The command line option
6866 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6867 right-only), with 0 being the default.
6869 #define CONFIG_FAKE_MONO 1
6871 /* set up audio OUTBURST. Do not change this! */
6872 #define OUTBURST 512
6874 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6875 #undef FAST_OSD
6876 #undef FAST_OSD_TABLE
6880 #define CONFIGURATION "$configuration"
6882 #define MPLAYER_DATADIR "$_datadir"
6883 #define MPLAYER_CONFDIR "$_confdir"
6884 #define MPLAYER_LIBDIR "$_libdir"
6885 #define MPLAYER_LOCALEDIR "$_localedir"
6887 $def_translation
6889 /* definitions needed by included libraries */
6890 #define HAVE_INTTYPES_H 1
6891 /* libdvdcss */
6892 #define HAVE_ERRNO_H 1
6893 /* libdvdcss + libdvdread */
6894 #define HAVE_LIMITS_H 1
6895 /* libdvdcss */
6896 #define HAVE_UNISTD_H 1
6897 /* libdvdread */
6898 #define STDC_HEADERS 1
6899 #define HAVE_MEMCPY 1
6900 /* libdvdnav */
6901 #define READ_CACHE_TRACE 0
6902 /* libdvdread */
6903 #define HAVE_DLFCN_H 1
6904 $def_dvdcss
6907 /* system headers */
6908 $def_alloca_h
6909 $def_alsa_asoundlib_h
6910 $def_altivec_h
6911 $def_malloc_h
6912 $def_mman_h
6913 $def_mman_has_map_failed
6914 $def_soundcard_h
6915 $def_sys_asoundlib_h
6916 $def_sys_soundcard_h
6917 $def_sys_sysinfo_h
6918 $def_termios_h
6919 $def_termios_sys_h
6920 $def_winsock2_h
6923 /* system functions */
6924 $def_gethostbyname2
6925 $def_gettimeofday
6926 $def_glob
6927 $def_langinfo
6928 $def_lrintf
6929 $def_map_memalign
6930 $def_memalign
6931 $def_nanosleep
6932 $def_posix_select
6933 $def_select
6934 $def_setenv
6935 $def_setmode
6936 $def_shm
6937 $def_strsep
6938 $def_swab
6939 $def_sysi86
6940 $def_sysi86_iv
6941 $def_termcap
6942 $def_termios
6943 $def_vsscanf
6946 /* system-specific features */
6947 $def_asmalign_pot
6948 $def_builtin_expect
6949 $def_dl
6950 $def_dos_paths
6951 $def_extern_asm
6952 $def_extern_prefix
6953 $def_iconv
6954 $def_kstat
6955 $def_macosx_bundle
6956 $def_macosx_finder
6957 $def_named_asm_args
6958 $def_priority
6959 $def_quicktime
6960 $def_restrict_keyword
6961 $def_rtc
6962 $def_unrar_exec
6965 /* configurable options */
6966 $def_charset
6967 $def_crash_debug
6968 $def_debug
6969 $def_dynamic_plugins
6970 $def_fastmemcpy
6971 $def_menu
6972 $def_runtime_cpudetection
6973 $def_sighandler
6974 $def_sortsub
6975 $def_stream_cache
6976 $def_pthread_cache
6979 /* CPU stuff */
6980 #define __CPU__ $iproc
6981 $def_ebx_available
6982 $def_words_endian
6983 $def_bigendian
6984 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6985 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6986 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
6989 /* Blu-ray/DVD/VCD/CD */
6990 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
6991 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
6992 $def_bluray
6993 $def_bsdi_dvd
6994 $def_cddb
6995 $def_cdio
6996 $def_cdparanoia
6997 $def_cdrom
6998 $def_dvd
6999 $def_dvd_bsd
7000 $def_dvd_darwin
7001 $def_dvd_linux
7002 $def_dvd_openbsd
7003 $def_dvdio
7004 $def_dvdnav
7005 $def_dvdread
7006 $def_hpux_scsi_h
7007 $def_libcdio
7008 $def_sol_scsi_h
7009 $def_vcd
7012 /* codec libraries */
7013 $def_faad
7014 $def_liba52
7015 $def_libdca
7016 $def_libdv
7017 $def_mad
7018 $def_mpg123
7019 $def_musepack
7020 $def_speex
7021 $def_theora
7022 $def_tremor
7023 $def_vorbis
7024 $def_xvid
7025 $def_zlib
7027 $def_libnut
7030 /* binary codecs */
7031 $def_qtx
7032 $def_qtx_win32
7033 $def_real
7034 $def_win32_loader
7035 $def_win32dll
7036 $def_xanim
7037 $def_xmms
7038 #define BINARY_CODECS_PATH "$_codecsdir"
7039 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7042 /* Audio output drivers */
7043 $def_alsa
7044 $def_alsa1x
7045 $def_alsa5
7046 $def_alsa9
7047 $def_arts
7048 $def_coreaudio
7049 $def_dart
7050 $def_esd
7051 $def_esd_latency
7052 $def_jack
7053 $def_kai
7054 $def_nas
7055 $def_openal
7056 $def_openal_h
7057 $def_ossaudio
7058 $def_ossaudio_devdsp
7059 $def_ossaudio_devmixer
7060 $def_pulse
7061 $def_sgiaudio
7062 $def_sunaudio
7063 $def_win32waveout
7065 $def_ladspa
7066 $def_libbs2b
7069 /* input */
7070 $def_apple_ir
7071 $def_apple_remote
7072 $def_ioctl_bt848_h_name
7073 $def_ioctl_meteor_h_name
7074 $def_joystick
7075 $def_lirc
7076 $def_lircc
7077 $def_pvr
7078 $def_radio
7079 $def_radio_bsdbt848
7080 $def_radio_capture
7081 $def_radio_v4l
7082 $def_radio_v4l2
7083 $def_tv
7084 $def_tv_bsdbt848
7085 $def_tv_dshow
7086 $def_tv_v4l
7087 $def_tv_v4l1
7088 $def_tv_v4l2
7091 /* font stuff */
7092 $def_ass
7093 $def_bitmap_font
7094 $def_enca
7095 $def_fontconfig
7096 $def_freetype
7097 $def_fribidi
7100 /* networking */
7101 $def_closesocket
7102 $def_ftp
7103 $def_inet6
7104 $def_inet_aton
7105 $def_inet_pton
7106 $def_live
7107 $def_nemesi
7108 $def_networking
7109 $def_smb
7110 $def_socklen_t
7111 $def_vstream
7114 /* libvo options */
7115 $def_3dfx
7116 $def_aa
7117 $def_bl
7118 $def_caca
7119 $def_corevideo
7120 $def_dga
7121 $def_dga1
7122 $def_dga2
7123 $def_direct3d
7124 $def_directfb
7125 $def_directx
7126 $def_dvb
7127 $def_dvbin
7128 $def_dxr3
7129 $def_fbdev
7130 $def_ggi
7131 $def_ggiwmh
7132 $def_gif
7133 $def_gif_4
7134 $def_gif_tvt_hack
7135 $def_gl
7136 $def_gl_win32
7137 $def_gl_x11
7138 $def_gl_sdl
7139 $def_matrixview
7140 $def_ivtv
7141 $def_jpeg
7142 $def_kva
7143 $def_md5sum
7144 $def_mga
7145 $def_mng
7146 $def_png
7147 $def_pnm
7148 $def_quartz
7149 $def_s3fb
7150 $def_sdl
7151 $def_sdl_sdl_h
7152 $def_svga
7153 $def_tdfxfb
7154 $def_tdfxvid
7155 $def_tga
7156 $def_v4l2
7157 $def_vdpau
7158 $def_vesa
7159 $def_vm
7160 $def_wii
7161 $def_x11
7162 $def_xdpms
7163 $def_xf86keysym
7164 $def_xinerama
7165 $def_xmga
7166 $def_xss
7167 $def_xv
7168 $def_xvr100
7169 $def_yuv4mpeg
7172 /* FFmpeg */
7173 $def_ffmpeg
7174 $def_ffmpeg_eval_api
7175 $def_ffmpeg_internals
7177 $def_arpa_inet_h
7178 $def_bswap
7179 $def_dcbzl
7180 $def_exp2
7181 $def_exp2f
7182 $def_fast_64bit
7183 $def_fast_unaligned
7184 $def_llrint
7185 $def_log2
7186 $def_log2f
7187 $def_lrint
7188 $def_memalign_hack
7189 $def_mkstemp
7190 $def_posix_memalign
7191 $def_pthreads
7192 $def_round
7193 $def_roundf
7194 $def_ten_operands
7195 $def_threads
7196 $def_truncf
7197 $def_xform_asm
7198 $def_yasm
7200 #define HAVE_INLINE_ASM 1
7202 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7203 #ifndef MP_DEBUG
7204 #define HAVE_EBP_AVAILABLE 1
7205 #else
7206 #define HAVE_EBP_AVAILABLE 0
7207 #endif
7209 #endif /* MPLAYER_CONFIG_H */
7212 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7213 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7215 #############################################################################
7217 cat << EOF
7219 Config files successfully generated by ./configure $configuration !
7221 Install prefix: $_prefix
7222 Data directory: $_datadir
7223 Config direct.: $_confdir
7225 Byte order: $_byte_order
7226 Optimizing for: $_optimizing
7228 Languages:
7229 Messages (in addition to English): $language_msg
7230 Manual pages: $language_man
7231 Documentation: $language_doc
7233 Enabled optional drivers:
7234 Input: $inputmodules
7235 Codecs: $codecmodules
7236 Audio output: $aomodules
7237 Video output: $vomodules
7239 Disabled optional drivers:
7240 Input: $noinputmodules
7241 Codecs: $nocodecmodules
7242 Audio output: $noaomodules
7243 Video output: $novomodules
7245 'config.h' and 'config.mak' contain your configuration options.
7246 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7247 compile *** DO NOT REPORT BUGS if you tweak these files ***
7249 'make' will now compile MPlayer and 'make install' will install it.
7250 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7255 if test "$_mtrr" = yes ; then
7256 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7257 echo
7260 if ! x86_32; then
7261 cat <<EOF
7262 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7263 operating system ($system_name). You may encounter a few files that cannot
7264 be played due to missing open source video/audio codec support.
7270 cat <<EOF
7271 Check $TMPLOG if you wonder why an autodetection failed (make sure
7272 development headers/packages are installed).
7274 NOTE: The --enable-* parameters unconditionally force options on, completely
7275 skipping autodetection. This behavior is unlike what you may be used to from
7276 autoconf-based configure scripts that can decide to override you. This greater
7277 level of control comes at a price. You may have to provide the correct compiler
7278 and linker flags yourself.
7279 If you used one of these options (except --enable-menu and similar ones that
7280 turn on internal features) and experience a compilation or linking failure,
7281 make sure you have passed the necessary compiler/linker flags to configure.
7283 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7287 if test "$warn_cflags" = yes; then
7288 cat <<EOF
7290 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7291 but:
7293 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7295 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7296 To do so, execute 'CFLAGS= ./configure <options>'
7301 # Last move:
7302 rm -rf "$mplayer_tmpdir"