configure: drop unused liblzo and bzlib tests
[mplayer/greg.git] / configure
blobfd922f1fed1a757ed372f2afe11327033b46b258
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 --disable-largefiles disable support for files > 2GB [enable]
300 --enable-termcap use termcap database for key codes [autodetect]
301 --enable-termios use termios database for key codes [autodetect]
302 --disable-iconv disable iconv for encoding conversion [autodetect]
303 --disable-langinfo do not use langinfo [autodetect]
304 --enable-lirc enable LIRC (remote control) support [autodetect]
305 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
306 --enable-joystick enable joystick support [disable]
307 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
308 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
309 --disable-vm disable X video mode extensions [autodetect]
310 --disable-xf86keysym disable support for multimedia keys [autodetect]
311 --enable-radio enable radio interface [disable]
312 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
313 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
314 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
315 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
316 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
317 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
318 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
319 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
320 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
321 --disable-networking disable networking [enable]
322 --enable-winsock2_h enable winsock2_h [autodetect]
323 --enable-smb enable Samba (SMB) input [autodetect]
324 --enable-live enable LIVE555 Streaming Media [autodetect]
325 --enable-nemesi enable Nemesi Streaming Media [autodetect]
326 --disable-vcd disable VCD support [autodetect]
327 --disable-bluray disable Blu-ray support [autodetect]
328 --disable-dvdnav disable libdvdnav [autodetect]
329 --disable-dvdread disable libdvdread [autodetect]
330 --disable-dvdread-internal disable internal libdvdread [autodetect]
331 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
332 --disable-cdparanoia disable cdparanoia [autodetect]
333 --disable-cddb disable cddb [autodetect]
334 --disable-bitmap-font disable bitmap font support [enable]
335 --disable-freetype disable FreeType 2 font rendering [autodetect]
336 --disable-fontconfig disable fontconfig font lookup [autodetect]
337 --disable-unrarexec disable using of UnRAR executable [enabled]
338 --enable-menu enable OSD menu (not DVD menu) [disabled]
339 --disable-sortsub disable subtitle sorting [enabled]
340 --enable-fribidi enable the FriBiDi libs [autodetect]
341 --disable-enca disable ENCA charset oracle library [autodetect]
342 --disable-maemo disable maemo specific features [autodetect]
343 --enable-macosx-finder enable Mac OS X Finder invocation parameter
344 parsing [disabled]
345 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
346 --disable-inet6 disable IPv6 support [autodetect]
347 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
348 --disable-ftp disable FTP support [enabled]
349 --disable-vstream disable TiVo vstream client support [autodetect]
350 --disable-pthreads disable Posix threads support [autodetect]
351 --disable-w32threads disable Win32 threads support [autodetect]
352 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
353 --enable-rpath enable runtime linker path for extra libs [disabled]
355 Codecs:
356 --enable-gif enable GIF support [autodetect]
357 --enable-png enable PNG input/output support [autodetect]
358 --enable-mng enable MNG input support [autodetect]
359 --enable-jpeg enable JPEG input/output support [autodetect]
360 --enable-libcdio enable libcdio support [autodetect]
361 --disable-win32dll disable Win32 DLL support [autodetect]
362 --disable-qtx disable QuickTime codecs support [enabled]
363 --disable-xanim disable XAnim codecs support [enabled]
364 --disable-real disable RealPlayer codecs support [enabled]
365 --disable-xvid disable Xvid [autodetect]
366 --disable-libnut disable libnut [autodetect]
367 --disable-ffmpeg disable FFmpeg [autodetect]
368 --disable-libvorbis disable libvorbis support [autodetect]
369 --disable-tremor disable Tremor [autodetect if no libvorbis]
370 --disable-speex disable Speex support [autodetect]
371 --enable-theora enable OggTheora libraries [autodetect]
372 --enable-faad enable FAAD2 (AAC) [autodetect]
373 --disable-ladspa disable LADSPA plugin support [autodetect]
374 --disable-libbs2b disable libbs2b audio filter support [autodetect]
375 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
376 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
377 --disable-mad disable libmad (MPEG audio) support [autodetect]
378 --enable-xmms enable XMMS input plugin support [disabled]
379 --enable-libdca enable libdca support [autodetect]
380 --disable-mp3lib disable builtin mp3lib [autodetect]
381 --disable-liba52 disable liba52 [autodetect]
382 --disable-musepack disable musepack support [autodetect]
384 Video output:
385 --enable-gl enable OpenGL video output [autodetect]
386 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
387 --enable-dga2 enable DGA 2 support [autodetect]
388 --enable-dga1 enable DGA 1 support [autodetect]
389 --enable-vesa enable VESA video output [autodetect]
390 --enable-svga enable SVGAlib video output [autodetect]
391 --enable-sdl enable SDL video output [autodetect]
392 --enable-kva enable KVA video output [autodetect]
393 --enable-aa enable AAlib video output [autodetect]
394 --enable-caca enable CACA video output [autodetect]
395 --enable-ggi enable GGI video output [autodetect]
396 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
397 --enable-direct3d enable Direct3D video output [autodetect]
398 --enable-directx enable DirectX video output [autodetect]
399 --enable-dxr3 enable DXR3/H+ video output [autodetect]
400 --enable-ivtv enable IVTV TV-Out video output [autodetect]
401 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
402 --enable-dvb enable DVB video output [autodetect]
403 --enable-mga enable mga_vid video output [autodetect]
404 --enable-xmga enable mga_vid X11 video output [autodetect]
405 --enable-xv enable Xv video output [autodetect]
406 --enable-xvmc enable XvMC acceleration [disable]
407 --enable-vdpau enable VDPAU acceleration [autodetect]
408 --enable-vm enable XF86VidMode support [autodetect]
409 --enable-xinerama enable Xinerama support [autodetect]
410 --enable-x11 enable X11 video output [autodetect]
411 --enable-xshape enable XShape support [autodetect]
412 --disable-xss disable screensaver support via xss [autodetect]
413 --enable-fbdev enable FBDev video output [autodetect]
414 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
415 --enable-tdfxfb enable tdfxfb video output [disable]
416 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
417 --enable-wii enable Nintendo Wii/GameCube video output [disable]
418 --enable-directfb enable DirectFB video output [autodetect]
419 --enable-bl enable Blinkenlights video output [disable]
420 --enable-tdfxvid enable tdfx_vid video output [disable]
421 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
422 --disable-tga disable Targa video output [enable]
423 --disable-pnm disable PNM video output [enable]
424 --disable-md5sum disable md5sum video output [enable]
425 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
426 --disable-corevideo disable CoreVideo video output [autodetect]
427 --disable-quartz disable Quartz video output [autodetect]
429 Audio output:
430 --disable-alsa disable ALSA audio output [autodetect]
431 --disable-ossaudio disable OSS audio output [autodetect]
432 --disable-arts disable aRts audio output [autodetect]
433 --disable-esd disable esd audio output [autodetect]
434 --disable-pulse disable Pulseaudio audio output [autodetect]
435 --disable-jack disable JACK audio output [autodetect]
436 --enable-openal enable OpenAL audio output [disable]
437 --disable-nas disable NAS audio output [autodetect]
438 --disable-sgiaudio disable SGI audio output [autodetect]
439 --disable-sunaudio disable Sun audio output [autodetect]
440 --disable-kai disable KAI audio output [autodetect]
441 --disable-dart disable DART audio output [autodetect]
442 --disable-win32waveout disable Windows waveout audio output [autodetect]
443 --disable-coreaudio disable CoreAudio audio output [autodetect]
444 --disable-select disable using select() on the audio device [enable]
446 Language options:
447 --enable-translation enable support for translated output [disable]
448 --charset=charset convert the console messages to this character set
449 --language-doc=lang language to use for the documentation [en]
450 --language-man=lang language to use for the man pages [en]
451 --language-msg=lang extra languages for program messages [all]
452 --language=lang default language to use [en]
453 Specific options override --language. You can pass a list of languages separated
454 by whitespace or commas instead of a single language. Nonexisting translations
455 will be dropped from each list. All translations available in the list will be
456 installed. The value "all" will activate all translations. The LINGUAS
457 environment variable is honored. In all cases the fallback is English.
458 The program always supports English-language output; additional message
459 languages are only installed if --enable-translation is also specified.
460 Available values for --language-doc are: all $doc_lang_all
461 Available values for --language-man are: all $man_lang_all
462 Available values for --language-msg are: all $msg_lang_all
464 Miscellaneous options:
465 --enable-runtime-cpudetection enable runtime CPU detection [disable]
466 --enable-cross-compile enable cross-compilation [autodetect]
467 --cc=COMPILER C compiler to build MPlayer [gcc]
468 --host-cc=COMPILER C compiler for tools needed while building [gcc]
469 --as=ASSEMBLER assembler to build MPlayer [as]
470 --nm=NM nm tool to build MPlayer [nm]
471 --yasm=YASM Yasm assembler to build MPlayer [yasm]
472 --ar=AR librarian to build MPlayer [ar]
473 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
474 --windres=WINDRES windres to build MPlayer [windres]
475 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
476 --enable-static build a statically linked binary
477 --with-install=PATH path to a custom install program
479 Advanced options:
480 --enable-mmx enable MMX [autodetect]
481 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
482 --enable-3dnow enable 3DNow! [autodetect]
483 --enable-3dnowext enable extended 3DNow! [autodetect]
484 --enable-sse enable SSE [autodetect]
485 --enable-sse2 enable SSE2 [autodetect]
486 --enable-ssse3 enable SSSE3 [autodetect]
487 --enable-shm enable shm [autodetect]
488 --enable-altivec enable AltiVec (PowerPC) [autodetect]
489 --enable-armv5te enable DSP extensions (ARM) [autodetect]
490 --enable-armv6 enable ARMv6 (ARM) [autodetect]
491 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
492 --enable-armvfp enable ARM VFP (ARM) [autodetect]
493 --enable-neon enable NEON (ARM) [autodetect]
494 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
495 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
496 --enable-big-endian force byte order to big-endian [autodetect]
497 --enable-debug[=1-3] compile-in debugging information [disable]
498 --enable-profile compile-in profiling information [disable]
499 --disable-sighandler disable sighandler for crashes [enable]
500 --enable-crash-debug enable automatic gdb attach on crash [disable]
501 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
502 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
504 Use these options if autodetection fails:
505 --extra-cflags=FLAGS extra CFLAGS
506 --extra-ldflags=FLAGS extra LDFLAGS
507 --extra-libs=FLAGS extra linker flags
508 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
509 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
511 --with-freetype-config=PATH path to freetype-config
512 --with-glib-config=PATH path to glib*-config
513 --with-gtk-config=PATH path to gtk*-config
514 --with-sdl-config=PATH path to sdl*-config
515 --with-dvdnav-config=PATH path to dvdnav-config
516 --with-dvdread-config=PATH path to dvdread-config
518 This configure script is NOT autoconf-based, even though its output is similar.
519 It will try to autodetect all configuration options. If you --enable an option
520 it will be forcefully turned on, skipping autodetection. This can break
521 compilation, so you need to know what you are doing.
523 exit 0
524 } #show_help()
526 # GOTCHA: the variables below defines the default behavior for autodetection
527 # and have - unless stated otherwise - at least 2 states : yes no
528 # If autodetection is available then the third state is: auto
529 _mmx=auto
530 _3dnow=auto
531 _3dnowext=auto
532 _mmxext=auto
533 _sse=auto
534 _sse2=auto
535 _ssse3=auto
536 _cmov=auto
537 _fast_cmov=auto
538 _fast_clz=auto
539 _armv5te=auto
540 _armv6=auto
541 _armv6t2=auto
542 _armvfp=auto
543 neon=auto
544 _iwmmxt=auto
545 _mtrr=auto
546 _altivec=auto
547 _install=install
548 _ranlib=ranlib
549 _windres=windres
550 _cc=cc
551 _ar=ar
552 test "$CC" && _cc="$CC"
553 _as=auto
554 _nm=auto
555 _yasm=yasm
556 _runtime_cpudetection=no
557 _cross_compile=auto
558 _prefix="/usr/local"
559 ffmpeg=auto
560 ffmpeg_internals=no
561 _mplayer=yes
562 _x11=auto
563 _xshape=auto
564 _xss=auto
565 _dga1=auto
566 _dga2=auto
567 _xv=auto
568 _xvmc=no #auto when complete
569 _vdpau=auto
570 _sdl=auto
571 _kva=auto
572 _direct3d=auto
573 _directx=auto
574 _win32waveout=auto
575 _nas=auto
576 _png=auto
577 _mng=auto
578 _jpeg=auto
579 _pnm=yes
580 _md5sum=yes
581 _yuv4mpeg=yes
582 _gif=auto
583 _gl=auto
584 matrixview=yes
585 _ggi=auto
586 _ggiwmh=auto
587 _aa=auto
588 _caca=auto
589 _svga=auto
590 _vesa=auto
591 _fbdev=auto
592 _dvb=auto
593 _dxr3=auto
594 _ivtv=auto
595 _v4l2=auto
596 _iconv=auto
597 _langinfo=auto
598 _rtc=auto
599 _ossaudio=auto
600 _arts=auto
601 _esd=auto
602 _pulse=auto
603 _jack=auto
604 _kai=auto
605 _dart=auto
606 _openal=no
607 _libcdio=auto
608 _mad=auto
609 _tremor=auto
610 _libvorbis=auto
611 _speex=auto
612 _theora=auto
613 _mpg123=auto
614 _mp3lib=auto
615 _liba52=auto
616 _libdca=auto
617 _faad=auto
618 _ladspa=auto
619 _libbs2b=auto
620 _xmms=no
621 _vcd=auto
622 _bluray=auto
623 _dvdnav=auto
624 _dvdnavconfig=dvdnav-config
625 _dvdreadconfig=dvdread-config
626 _dvdread=auto
627 _dvdread_internal=auto
628 _libdvdcss_internal=auto
629 _xanim=auto
630 _real=auto
631 _live=auto
632 _nemesi=auto
633 _native_rtsp=yes
634 _xinerama=auto
635 _mga=auto
636 _xmga=auto
637 _vm=auto
638 _xf86keysym=auto
639 _sgiaudio=auto
640 _sunaudio=auto
641 _alsa=auto
642 _fastmemcpy=yes
643 _unrar_exec=auto
644 _win32dll=auto
645 _select=yes
646 _radio=no
647 _radio_capture=no
648 _radio_v4l=auto
649 _radio_v4l2=auto
650 _radio_bsdbt848=auto
651 _tv=yes
652 _tv_v4l1=auto
653 _tv_v4l2=auto
654 _tv_bsdbt848=auto
655 _tv_dshow=auto
656 _pvr=auto
657 networking=yes
658 _winsock2_h=auto
659 _smb=auto
660 _joystick=no
661 _xvid=auto
662 _libnut=auto
663 _lirc=auto
664 _lircc=auto
665 _apple_remote=auto
666 _apple_ir=auto
667 _gui=no
668 _gtk1=no
669 _termcap=auto
670 _termios=auto
671 _3dfx=no
672 _s3fb=no
673 _wii=no
674 _tdfxfb=no
675 _tdfxvid=no
676 _xvr100=auto
677 _tga=yes
678 _directfb=auto
679 _bl=no
680 _largefiles=yes
681 #language=en
682 _shm=auto
683 _translation=no
684 _charset="UTF-8"
685 _dynamic_plugins=no
686 _crash_debug=no
687 _sighandler=yes
688 _libdv=auto
689 _cdparanoia=auto
690 _cddb=auto
691 _big_endian=auto
692 _bitmap_font=yes
693 _freetype=auto
694 _fontconfig=auto
695 _menu=no
696 _qtx=auto
697 _maemo=auto
698 _coreaudio=auto
699 _corevideo=auto
700 _quartz=auto
701 quicktime=auto
702 _macosx_finder=no
703 _macosx_bundle=auto
704 _sortsub=yes
705 _freetypeconfig='freetype-config'
706 _fribidi=auto
707 _enca=auto
708 _inet6=auto
709 _gethostbyname2=auto
710 _ftp=auto
711 _musepack=auto
712 _vstream=auto
713 _pthreads=auto
714 _w32threads=auto
715 _ass=auto
716 _rpath=no
717 _asmalign_pot=auto
718 _stream_cache=yes
719 _priority=no
720 def_dos_paths="#define HAVE_DOS_PATHS 0"
721 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
722 def_priority="#undef CONFIG_PRIORITY"
723 def_pthread_cache="#undef PTHREAD_CACHE"
724 need_shmem=yes
725 for ac_option do
726 case "$ac_option" in
727 --help|-help|-h)
728 show_help
730 --prefix=*)
731 _prefix=$(echo $ac_option | cut -d '=' -f 2)
733 --bindir=*)
734 _bindir=$(echo $ac_option | cut -d '=' -f 2)
736 --datadir=*)
737 _datadir=$(echo $ac_option | cut -d '=' -f 2)
739 --mandir=*)
740 _mandir=$(echo $ac_option | cut -d '=' -f 2)
742 --confdir=*)
743 _confdir=$(echo $ac_option | cut -d '=' -f 2)
745 --libdir=*)
746 _libdir=$(echo $ac_option | cut -d '=' -f 2)
748 --codecsdir=*)
749 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
751 --localedir=*)
752 _localedir=$(echo $ac_option | cut -d '=' -f 2)
755 --with-install=*)
756 _install=$(echo $ac_option | cut -d '=' -f 2 )
758 --with-xvmclib=*)
759 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
762 --with-sdl-config=*)
763 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --with-freetype-config=*)
766 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
768 --with-gtk-config=*)
769 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
771 --with-glib-config=*)
772 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
774 --with-dvdnav-config=*)
775 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
777 --with-dvdread-config=*)
778 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
781 --extra-cflags=*)
782 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
784 --extra-ldflags=*)
785 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
787 --extra-libs=*)
788 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
790 --extra-libs-mplayer=*)
791 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
794 --target=*)
795 _target=$(echo $ac_option | cut -d '=' -f 2)
797 --cc=*)
798 _cc=$(echo $ac_option | cut -d '=' -f 2)
800 --host-cc=*)
801 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
803 --as=*)
804 _as=$(echo $ac_option | cut -d '=' -f 2)
806 --nm=*)
807 _nm=$(echo $ac_option | cut -d '=' -f 2)
809 --yasm=*)
810 _yasm=$(echo $ac_option | cut -d '=' -f 2)
812 --ar=*)
813 _ar=$(echo $ac_option | cut -d '=' -f 2)
815 --ranlib=*)
816 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
818 --windres=*)
819 _windres=$(echo $ac_option | cut -d '=' -f 2)
821 --charset=*)
822 _charset=$(echo $ac_option | cut -d '=' -f 2)
824 --language-doc=*)
825 language_doc=$(echo $ac_option | cut -d '=' -f 2)
827 --language-man=*)
828 language_man=$(echo $ac_option | cut -d '=' -f 2)
830 --language-msg=*)
831 language_msg=$(echo $ac_option | cut -d '=' -f 2)
833 --language=*)
834 language=$(echo $ac_option | cut -d '=' -f 2)
837 --enable-static)
838 _ld_static='-static'
840 --disable-static)
841 _ld_static=''
843 --enable-profile)
844 _profile='-p'
846 --disable-profile)
847 _profile=
849 --enable-debug)
850 _debug='-g'
852 --enable-debug=*)
853 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
855 --disable-debug)
856 _debug=
858 --enable-translation) _translation=yes ;;
859 --disable-translation) _translation=no ;;
860 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
861 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
862 --enable-cross-compile) _cross_compile=yes ;;
863 --disable-cross-compile) _cross_compile=no ;;
864 --enable-mplayer) _mplayer=yes ;;
865 --disable-mplayer) _mplayer=no ;;
866 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
867 --disable-dynamic-plugins) _dynamic_plugins=no ;;
868 --enable-x11) _x11=yes ;;
869 --disable-x11) _x11=no ;;
870 --enable-xshape) _xshape=yes ;;
871 --disable-xshape) _xshape=no ;;
872 --enable-xss) _xss=yes ;;
873 --disable-xss) _xss=no ;;
874 --enable-xv) _xv=yes ;;
875 --disable-xv) _xv=no ;;
876 --enable-xvmc) _xvmc=yes ;;
877 --disable-xvmc) _xvmc=no ;;
878 --enable-vdpau) _vdpau=yes ;;
879 --disable-vdpau) _vdpau=no ;;
880 --enable-sdl) _sdl=yes ;;
881 --disable-sdl) _sdl=no ;;
882 --enable-kva) _kva=yes ;;
883 --disable-kva) _kva=no ;;
884 --enable-direct3d) _direct3d=yes ;;
885 --disable-direct3d) _direct3d=no ;;
886 --enable-directx) _directx=yes ;;
887 --disable-directx) _directx=no ;;
888 --enable-win32waveout) _win32waveout=yes ;;
889 --disable-win32waveout) _win32waveout=no ;;
890 --enable-nas) _nas=yes ;;
891 --disable-nas) _nas=no ;;
892 --enable-png) _png=yes ;;
893 --disable-png) _png=no ;;
894 --enable-mng) _mng=yes ;;
895 --disable-mng) _mng=no ;;
896 --enable-jpeg) _jpeg=yes ;;
897 --disable-jpeg) _jpeg=no ;;
898 --enable-pnm) _pnm=yes ;;
899 --disable-pnm) _pnm=no ;;
900 --enable-md5sum) _md5sum=yes ;;
901 --disable-md5sum) _md5sum=no ;;
902 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
903 --disable-yuv4mpeg) _yuv4mpeg=no ;;
904 --enable-gif) _gif=yes ;;
905 --disable-gif) _gif=no ;;
906 --enable-gl) _gl=yes ;;
907 --disable-gl) _gl=no ;;
908 --enable-matrixview) matrixview=yes ;;
909 --disable-matrixview) matrixview=no ;;
910 --enable-ggi) _ggi=yes ;;
911 --disable-ggi) _ggi=no ;;
912 --enable-ggiwmh) _ggiwmh=yes ;;
913 --disable-ggiwmh) _ggiwmh=no ;;
914 --enable-aa) _aa=yes ;;
915 --disable-aa) _aa=no ;;
916 --enable-caca) _caca=yes ;;
917 --disable-caca) _caca=no ;;
918 --enable-svga) _svga=yes ;;
919 --disable-svga) _svga=no ;;
920 --enable-vesa) _vesa=yes ;;
921 --disable-vesa) _vesa=no ;;
922 --enable-fbdev) _fbdev=yes ;;
923 --disable-fbdev) _fbdev=no ;;
924 --enable-dvb) _dvb=yes ;;
925 --disable-dvb) _dvb=no ;;
926 --enable-dxr3) _dxr3=yes ;;
927 --disable-dxr3) _dxr3=no ;;
928 --enable-ivtv) _ivtv=yes ;;
929 --disable-ivtv) _ivtv=no ;;
930 --enable-v4l2) _v4l2=yes ;;
931 --disable-v4l2) _v4l2=no ;;
932 --enable-iconv) _iconv=yes ;;
933 --disable-iconv) _iconv=no ;;
934 --enable-langinfo) _langinfo=yes ;;
935 --disable-langinfo) _langinfo=no ;;
936 --enable-rtc) _rtc=yes ;;
937 --disable-rtc) _rtc=no ;;
938 --enable-libdv) _libdv=yes ;;
939 --disable-libdv) _libdv=no ;;
940 --enable-ossaudio) _ossaudio=yes ;;
941 --disable-ossaudio) _ossaudio=no ;;
942 --enable-arts) _arts=yes ;;
943 --disable-arts) _arts=no ;;
944 --enable-esd) _esd=yes ;;
945 --disable-esd) _esd=no ;;
946 --enable-pulse) _pulse=yes ;;
947 --disable-pulse) _pulse=no ;;
948 --enable-jack) _jack=yes ;;
949 --disable-jack) _jack=no ;;
950 --enable-openal) _openal=yes ;;
951 --disable-openal) _openal=no ;;
952 --enable-kai) _kai=yes ;;
953 --disable-kai) _kai=no ;;
954 --enable-dart) _dart=yes ;;
955 --disable-dart) _dart=no ;;
956 --enable-mad) _mad=yes ;;
957 --disable-mad) _mad=no ;;
958 --enable-libcdio) _libcdio=yes ;;
959 --disable-libcdio) _libcdio=no ;;
960 --enable-libvorbis) _libvorbis=yes ;;
961 --disable-libvorbis) _libvorbis=no ;;
962 --enable-speex) _speex=yes ;;
963 --disable-speex) _speex=no ;;
964 --enable-tremor) _tremor=yes ;;
965 --disable-tremor) _tremor=no ;;
966 --enable-theora) _theora=yes ;;
967 --disable-theora) _theora=no ;;
968 --enable-mpg123) _mpg123=yes ;;
969 --disable-mpg123) _mpg123=no ;;
970 --enable-mp3lib) _mp3lib=yes ;;
971 --disable-mp3lib) _mp3lib=no ;;
972 --enable-liba52) _liba52=yes ;;
973 --disable-liba52) _liba52=no ;;
974 --enable-libdca) _libdca=yes ;;
975 --disable-libdca) _libdca=no ;;
976 --enable-musepack) _musepack=yes ;;
977 --disable-musepack) _musepack=no ;;
978 --enable-faad) _faad=yes ;;
979 --disable-faad) _faad=no ;;
980 --enable-ladspa) _ladspa=yes ;;
981 --disable-ladspa) _ladspa=no ;;
982 --enable-libbs2b) _libbs2b=yes ;;
983 --disable-libbs2b) _libbs2b=no ;;
984 --enable-xmms) _xmms=yes ;;
985 --disable-xmms) _xmms=no ;;
986 --enable-vcd) _vcd=yes ;;
987 --disable-vcd) _vcd=no ;;
988 --enable-bluray) _bluray=yes ;;
989 --disable-bluray) _bluray=no ;;
990 --enable-dvdread) _dvdread=yes ;;
991 --disable-dvdread) _dvdread=no ;;
992 --enable-dvdread-internal) _dvdread_internal=yes ;;
993 --disable-dvdread-internal) _dvdread_internal=no ;;
994 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
995 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
996 --enable-dvdnav) _dvdnav=yes ;;
997 --disable-dvdnav) _dvdnav=no ;;
998 --enable-xanim) _xanim=yes ;;
999 --disable-xanim) _xanim=no ;;
1000 --enable-real) _real=yes ;;
1001 --disable-real) _real=no ;;
1002 --enable-live) _live=yes ;;
1003 --disable-live) _live=no ;;
1004 --enable-nemesi) _nemesi=yes ;;
1005 --disable-nemesi) _nemesi=no ;;
1006 --enable-xinerama) _xinerama=yes ;;
1007 --disable-xinerama) _xinerama=no ;;
1008 --enable-mga) _mga=yes ;;
1009 --disable-mga) _mga=no ;;
1010 --enable-xmga) _xmga=yes ;;
1011 --disable-xmga) _xmga=no ;;
1012 --enable-vm) _vm=yes ;;
1013 --disable-vm) _vm=no ;;
1014 --enable-xf86keysym) _xf86keysym=yes ;;
1015 --disable-xf86keysym) _xf86keysym=no ;;
1016 --enable-sunaudio) _sunaudio=yes ;;
1017 --disable-sunaudio) _sunaudio=no ;;
1018 --enable-sgiaudio) _sgiaudio=yes ;;
1019 --disable-sgiaudio) _sgiaudio=no ;;
1020 --enable-alsa) _alsa=yes ;;
1021 --disable-alsa) _alsa=no ;;
1022 --enable-tv) _tv=yes ;;
1023 --disable-tv) _tv=no ;;
1024 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1025 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1026 --enable-tv-v4l1) _tv_v4l1=yes ;;
1027 --disable-tv-v4l1) _tv_v4l1=no ;;
1028 --enable-tv-v4l2) _tv_v4l2=yes ;;
1029 --disable-tv-v4l2) _tv_v4l2=no ;;
1030 --enable-tv-dshow) _tv_dshow=yes ;;
1031 --disable-tv-dshow) _tv_dshow=no ;;
1032 --enable-radio) _radio=yes ;;
1033 --enable-radio-capture) _radio_capture=yes ;;
1034 --disable-radio-capture) _radio_capture=no ;;
1035 --disable-radio) _radio=no ;;
1036 --enable-radio-v4l) _radio_v4l=yes ;;
1037 --disable-radio-v4l) _radio_v4l=no ;;
1038 --enable-radio-v4l2) _radio_v4l2=yes ;;
1039 --disable-radio-v4l2) _radio_v4l2=no ;;
1040 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1041 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1042 --enable-pvr) _pvr=yes ;;
1043 --disable-pvr) _pvr=no ;;
1044 --enable-fastmemcpy) _fastmemcpy=yes ;;
1045 --disable-fastmemcpy) _fastmemcpy=no ;;
1046 --enable-networking) networking=yes ;;
1047 --disable-networking) networking=no ;;
1048 --enable-winsock2_h) _winsock2_h=yes ;;
1049 --disable-winsock2_h) _winsock2_h=no ;;
1050 --enable-smb) _smb=yes ;;
1051 --disable-smb) _smb=no ;;
1052 --enable-joystick) _joystick=yes ;;
1053 --disable-joystick) _joystick=no ;;
1054 --enable-xvid) _xvid=yes ;;
1055 --disable-xvid) _xvid=no ;;
1056 --enable-libnut) _libnut=yes ;;
1057 --disable-libnut) _libnut=no ;;
1058 --enable-ffmpeg) ffmpeg=yes ;;
1059 --disable-ffmpeg) ffmpeg=no ;;
1060 --ffmpeg-source-dir=*)
1061 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1063 --enable-lirc) _lirc=yes ;;
1064 --disable-lirc) _lirc=no ;;
1065 --enable-lircc) _lircc=yes ;;
1066 --disable-lircc) _lircc=no ;;
1067 --enable-apple-remote) _apple_remote=yes ;;
1068 --disable-apple-remote) _apple_remote=no ;;
1069 --enable-apple-ir) _apple_ir=yes ;;
1070 --disable-apple-ir) _apple_ir=no ;;
1071 --enable-gui) _gui=yes ;;
1072 --disable-gui) _gui=no ;;
1073 --enable-gtk1) _gtk1=yes ;;
1074 --disable-gtk1) _gtk1=no ;;
1075 --enable-termcap) _termcap=yes ;;
1076 --disable-termcap) _termcap=no ;;
1077 --enable-termios) _termios=yes ;;
1078 --disable-termios) _termios=no ;;
1079 --enable-3dfx) _3dfx=yes ;;
1080 --disable-3dfx) _3dfx=no ;;
1081 --enable-s3fb) _s3fb=yes ;;
1082 --disable-s3fb) _s3fb=no ;;
1083 --enable-wii) _wii=yes ;;
1084 --disable-wii) _wii=no ;;
1085 --enable-tdfxfb) _tdfxfb=yes ;;
1086 --disable-tdfxfb) _tdfxfb=no ;;
1087 --disable-tdfxvid) _tdfxvid=no ;;
1088 --enable-tdfxvid) _tdfxvid=yes ;;
1089 --disable-xvr100) _xvr100=no ;;
1090 --enable-xvr100) _xvr100=yes ;;
1091 --disable-tga) _tga=no ;;
1092 --enable-tga) _tga=yes ;;
1093 --enable-directfb) _directfb=yes ;;
1094 --disable-directfb) _directfb=no ;;
1095 --enable-bl) _bl=yes ;;
1096 --disable-bl) _bl=no ;;
1097 --enable-mtrr) _mtrr=yes ;;
1098 --disable-mtrr) _mtrr=no ;;
1099 --enable-largefiles) _largefiles=yes ;;
1100 --disable-largefiles) _largefiles=no ;;
1101 --enable-shm) _shm=yes ;;
1102 --disable-shm) _shm=no ;;
1103 --enable-select) _select=yes ;;
1104 --disable-select) _select=no ;;
1105 --enable-cdparanoia) _cdparanoia=yes ;;
1106 --disable-cdparanoia) _cdparanoia=no ;;
1107 --enable-cddb) _cddb=yes ;;
1108 --disable-cddb) _cddb=no ;;
1109 --enable-big-endian) _big_endian=yes ;;
1110 --disable-big-endian) _big_endian=no ;;
1111 --enable-bitmap-font) _bitmap_font=yes ;;
1112 --disable-bitmap-font) _bitmap_font=no ;;
1113 --enable-freetype) _freetype=yes ;;
1114 --disable-freetype) _freetype=no ;;
1115 --enable-fontconfig) _fontconfig=yes ;;
1116 --disable-fontconfig) _fontconfig=no ;;
1117 --enable-unrarexec) _unrar_exec=yes ;;
1118 --disable-unrarexec) _unrar_exec=no ;;
1119 --enable-ftp) _ftp=yes ;;
1120 --disable-ftp) _ftp=no ;;
1121 --enable-vstream) _vstream=yes ;;
1122 --disable-vstream) _vstream=no ;;
1123 --enable-pthreads) _pthreads=yes ;;
1124 --disable-pthreads) _pthreads=no ;;
1125 --enable-w32threads) _w32threads=yes ;;
1126 --disable-w32threads) _w32threads=no ;;
1127 --enable-ass) _ass=yes ;;
1128 --disable-ass) _ass=no ;;
1129 --enable-rpath) _rpath=yes ;;
1130 --disable-rpath) _rpath=no ;;
1132 --enable-fribidi) _fribidi=yes ;;
1133 --disable-fribidi) _fribidi=no ;;
1135 --enable-enca) _enca=yes ;;
1136 --disable-enca) _enca=no ;;
1138 --enable-inet6) _inet6=yes ;;
1139 --disable-inet6) _inet6=no ;;
1141 --enable-gethostbyname2) _gethostbyname2=yes ;;
1142 --disable-gethostbyname2) _gethostbyname2=no ;;
1144 --enable-dga1) _dga1=yes ;;
1145 --disable-dga1) _dga1=no ;;
1146 --enable-dga2) _dga2=yes ;;
1147 --disable-dga2) _dga2=no ;;
1149 --enable-menu) _menu=yes ;;
1150 --disable-menu) _menu=no ;;
1152 --enable-qtx) _qtx=yes ;;
1153 --disable-qtx) _qtx=no ;;
1155 --enable-coreaudio) _coreaudio=yes ;;
1156 --disable-coreaudio) _coreaudio=no ;;
1157 --enable-corevideo) _corevideo=yes ;;
1158 --disable-corevideo) _corevideo=no ;;
1159 --enable-quartz) _quartz=yes ;;
1160 --disable-quartz) _quartz=no ;;
1161 --enable-macosx-finder) _macosx_finder=yes ;;
1162 --disable-macosx-finder) _macosx_finder=no ;;
1163 --enable-macosx-bundle) _macosx_bundle=yes ;;
1164 --disable-macosx-bundle) _macosx_bundle=no ;;
1166 --enable-maemo) _maemo=yes ;;
1167 --disable-maemo) _maemo=no ;;
1169 --enable-sortsub) _sortsub=yes ;;
1170 --disable-sortsub) _sortsub=no ;;
1172 --enable-crash-debug) _crash_debug=yes ;;
1173 --disable-crash-debug) _crash_debug=no ;;
1174 --enable-sighandler) _sighandler=yes ;;
1175 --disable-sighandler) _sighandler=no ;;
1176 --enable-win32dll) _win32dll=yes ;;
1177 --disable-win32dll) _win32dll=no ;;
1179 --enable-sse) _sse=yes ;;
1180 --disable-sse) _sse=no ;;
1181 --enable-sse2) _sse2=yes ;;
1182 --disable-sse2) _sse2=no ;;
1183 --enable-ssse3) _ssse3=yes ;;
1184 --disable-ssse3) _ssse3=no ;;
1185 --enable-mmxext) _mmxext=yes ;;
1186 --disable-mmxext) _mmxext=no ;;
1187 --enable-3dnow) _3dnow=yes ;;
1188 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1189 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1190 --disable-3dnowext) _3dnowext=no ;;
1191 --enable-cmov) _cmov=yes ;;
1192 --disable-cmov) _cmov=no ;;
1193 --enable-fast-cmov) _fast_cmov=yes ;;
1194 --disable-fast-cmov) _fast_cmov=no ;;
1195 --enable-fast-clz) _fast_clz=yes ;;
1196 --disable-fast-clz) _fast_clz=no ;;
1197 --enable-altivec) _altivec=yes ;;
1198 --disable-altivec) _altivec=no ;;
1199 --enable-armv5te) _armv5te=yes ;;
1200 --disable-armv5te) _armv5te=no ;;
1201 --enable-armv6) _armv6=yes ;;
1202 --disable-armv6) _armv6=no ;;
1203 --enable-armv6t2) _armv6t2=yes ;;
1204 --disable-armv6t2) _armv6t2=no ;;
1205 --enable-armvfp) _armvfp=yes ;;
1206 --disable-armvfp) _armvfp=no ;;
1207 --enable-neon) neon=yes ;;
1208 --disable-neon) neon=no ;;
1209 --enable-iwmmxt) _iwmmxt=yes ;;
1210 --disable-iwmmxt) _iwmmxt=no ;;
1211 --enable-mmx) _mmx=yes ;;
1212 --disable-mmx) # 3Dnow! and MMX2 require MMX
1213 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1216 echo "Unknown parameter: $ac_option"
1217 exit 1
1220 esac
1221 done
1223 if test "$_gui" = yes ; then
1224 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1225 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1228 # Atmos: moved this here, to be correct, if --prefix is specified
1229 test -z "$_bindir" && _bindir="$_prefix/bin"
1230 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1231 test -z "$_mandir" && _mandir="$_prefix/share/man"
1232 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1233 test -z "$_libdir" && _libdir="$_prefix/lib"
1234 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1236 # Determine our OS name and CPU architecture
1237 if test -z "$_target" ; then
1238 # OS name
1239 system_name=$(uname -s 2>&1)
1240 case "$system_name" in
1241 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1243 Haiku)
1244 system_name=BeOS
1246 IRIX*)
1247 system_name=IRIX
1249 GNU/kFreeBSD)
1250 system_name=FreeBSD
1252 HP-UX*)
1253 system_name=HP-UX
1255 [cC][yY][gG][wW][iI][nN]*)
1256 system_name=CYGWIN
1258 MINGW32*)
1259 system_name=MINGW32
1261 OS/2*)
1262 system_name=OS/2
1265 system_name="$system_name-UNKNOWN"
1267 esac
1270 # host's CPU/instruction set
1271 host_arch=$(uname -p 2>&1)
1272 case "$host_arch" in
1273 i386|sparc|ppc|alpha|arm|mips|vax)
1275 powerpc) # Darwin returns 'powerpc'
1276 host_arch=ppc
1278 *) # uname -p on Linux returns 'unknown' for the processor type,
1279 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1281 # Maybe uname -m (machine hardware name) returns something we
1282 # recognize.
1284 # x86/x86pc is used by QNX
1285 case "$(uname -m 2>&1)" in
1286 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 ;;
1287 ia64) host_arch=ia64 ;;
1288 macppc|ppc) host_arch=ppc ;;
1289 ppc64) host_arch=ppc64 ;;
1290 alpha) host_arch=alpha ;;
1291 sparc) host_arch=sparc ;;
1292 sparc64) host_arch=sparc64 ;;
1293 parisc*|hppa*|9000*) host_arch=hppa ;;
1294 arm*|zaurus|cats) host_arch=arm ;;
1295 sh3|sh4|sh4a) host_arch=sh ;;
1296 s390) host_arch=s390 ;;
1297 s390x) host_arch=s390x ;;
1298 *mips*) host_arch=mips ;;
1299 vax) host_arch=vax ;;
1300 xtensa*) host_arch=xtensa ;;
1301 *) host_arch=UNKNOWN ;;
1302 esac
1304 esac
1305 else # if test -z "$_target"
1306 system_name=$(echo $_target | cut -d '-' -f 2)
1307 case "$(echo $system_name | tr A-Z a-z)" in
1308 linux) system_name=Linux ;;
1309 freebsd) system_name=FreeBSD ;;
1310 gnu/kfreebsd) system_name=FreeBSD ;;
1311 netbsd) system_name=NetBSD ;;
1312 bsd/os) system_name=BSD/OS ;;
1313 openbsd) system_name=OpenBSD ;;
1314 dragonfly) system_name=DragonFly ;;
1315 sunos) system_name=SunOS ;;
1316 qnx) system_name=QNX ;;
1317 morphos) system_name=MorphOS ;;
1318 amigaos) system_name=AmigaOS ;;
1319 mingw32*) system_name=MINGW32 ;;
1320 esac
1321 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1322 host_arch=$(echo $_target | cut -d '-' -f 1)
1323 if test $(echo $host_arch) != "x86_64" ; then
1324 host_arch=$(echo $host_arch | tr '_' '-')
1328 extra_cflags="-I. $extra_cflags"
1329 _timer=timer-linux.c
1330 _getch=getch2.c
1331 if freebsd ; then
1332 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1333 extra_cflags="$extra_cflags -I/usr/local/include"
1336 if netbsd || dragonfly ; then
1337 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1338 extra_cflags="$extra_cflags -I/usr/pkg/include"
1341 if darwin; then
1342 extra_cflags="-mdynamic-no-pic $extra_cflags"
1343 if test "$(basename $_cc)" != "clang" ; then
1344 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1346 _timer=timer-darwin.c
1349 if aix ; then
1350 extra_ldflags="$extra_ldflags -lC"
1353 if irix ; then
1354 _ranlib='ar -r'
1355 elif linux ; then
1356 _ranlib='true'
1359 if win32 ; then
1360 _exesuf=".exe"
1361 extra_cflags="$extra_cflags -fno-common"
1362 # -lwinmm is always needed for osdep/timer-win2.c
1363 extra_ldflags="$extra_ldflags -lwinmm"
1364 _pe_executable=yes
1365 _timer=timer-win2.c
1366 _priority=yes
1367 def_dos_paths="#define HAVE_DOS_PATHS 1"
1368 def_priority="#define CONFIG_PRIORITY 1"
1371 if mingw32 ; then
1372 _getch=getch2-win.c
1373 need_shmem=no
1376 if amigaos ; then
1377 _select=no
1378 _sighandler=no
1379 _stream_cache=no
1380 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1381 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1384 if qnx ; then
1385 extra_ldflags="$extra_ldflags -lph"
1388 if os2 ; then
1389 _exesuf=".exe"
1390 _getch=getch2-os2.c
1391 need_shmem=no
1392 _priority=yes
1393 def_dos_paths="#define HAVE_DOS_PATHS 1"
1394 def_priority="#define CONFIG_PRIORITY 1"
1397 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1398 test "$tmpdir" && break
1399 done
1401 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1402 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1404 TMPLOG="config.log"
1405 TMPC="$mplayer_tmpdir/tmp.c"
1406 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1407 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1408 TMPH="$mplayer_tmpdir/tmp.h"
1409 TMPS="$mplayer_tmpdir/tmp.S"
1411 rm -f "$TMPLOG"
1412 echo configuration: $configuration > "$TMPLOG"
1413 echo >> "$TMPLOG"
1416 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1417 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1421 # Checking CC version...
1422 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1423 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1424 echocheck "$_cc version"
1425 cc_vendor=intel
1426 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1427 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1428 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1429 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1430 # TODO verify older icc/ecc compatibility
1431 case $cc_version in
1433 cc_version="v. ?.??, bad"
1434 cc_fail=yes
1436 10.1|11.0|11.1)
1437 cc_version="$cc_version, ok"
1440 cc_version="$cc_version, bad"
1441 cc_fail=yes
1443 esac
1444 echores "$cc_version"
1445 else
1446 for _cc in "$_cc" gcc cc ; do
1447 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1448 if test "$cc_name_tmp" = "gcc"; then
1449 cc_name=$cc_name_tmp
1450 echocheck "$_cc version"
1451 cc_vendor=gnu
1452 cc_version=$($_cc -dumpversion 2>&1)
1453 case $cc_version in
1454 2.96*)
1455 cc_fail=yes
1458 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1459 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1460 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1462 esac
1463 echores "$cc_version"
1464 break
1466 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1467 if test "$cc_name_tmp" = "clang"; then
1468 echocheck "$_cc version"
1469 cc_vendor=clang
1470 cc_version=$($_cc -dumpversion 2>&1)
1471 res_comment="experimental support only"
1472 echores "clang $cc_version"
1473 break
1475 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1476 if test "$cc_name_tmp" = "Sun C"; then
1477 echocheck "$_cc version"
1478 cc_vendor=sun
1479 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1480 res_comment="experimental support only"
1481 echores "Sun C $cc_version"
1482 break
1484 done
1485 fi # icc
1486 test "$cc_fail" = yes && die "unsupported compiler version"
1488 if test -z "$_target" && x86 ; then
1489 cat > $TMPC << EOF
1490 int main(void) {
1491 int test[(int)sizeof(char *)-7];
1492 return 0;
1495 cc_check && host_arch=x86_64 || host_arch=i386
1498 echo "Detected operating system: $system_name"
1499 echo "Detected host architecture: $host_arch"
1501 echocheck "host cc"
1502 test "$_host_cc" || _host_cc=$_cc
1503 echores $_host_cc
1505 echocheck "cross compilation"
1506 if test $_cross_compile = auto ; then
1507 _cross_compile=yes
1508 cflag_check "" && "$TMPEXE" && _cross_compile=no
1510 echores $_cross_compile
1512 if test $_cross_compile = yes; then
1513 tmp_run() {
1514 return 0
1518 # ---
1520 # now that we know what compiler should be used for compilation, try to find
1521 # out which assembler is used by the $_cc compiler
1522 if test "$_as" = auto ; then
1523 _as=$($_cc -print-prog-name=as)
1524 test -z "$_as" && _as=as
1527 if test "$_nm" = auto ; then
1528 _nm=$($_cc -print-prog-name=nm)
1529 test -z "$_nm" && _nm=nm
1532 # XXX: this should be ok..
1533 _cpuinfo="echo"
1535 if test "$_runtime_cpudetection" = no ; then
1537 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1538 # FIXME: Remove the cygwin check once AMD CPUs are supported
1539 if test -r /proc/cpuinfo && ! cygwin; then
1540 # Linux with /proc mounted, extract CPU information from it
1541 _cpuinfo="cat /proc/cpuinfo"
1542 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1543 # FreeBSD with Linux emulation /proc mounted,
1544 # extract CPU information from it
1545 # Don't use it on x86 though, it never reports 3Dnow
1546 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1547 elif darwin && ! x86 ; then
1548 # use hostinfo on Darwin
1549 _cpuinfo="hostinfo"
1550 elif aix; then
1551 # use 'lsattr' on AIX
1552 _cpuinfo="lsattr -E -l proc0 -a type"
1553 elif x86; then
1554 # all other OSes try to extract CPU information from a small helper
1555 # program cpuinfo instead
1556 $_cc -o cpuinfo$_exesuf cpuinfo.c
1557 _cpuinfo="./cpuinfo$_exesuf"
1560 if x86 ; then
1561 # gather more CPU information
1562 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1563 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1564 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1565 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1566 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1568 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1570 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1571 -e s/xmm/sse/ -e s/kni/sse/)
1573 for ext in $pparam ; do
1574 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1575 done
1577 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1578 test $_sse = kernel_check && _mmxext=kernel_check
1580 echocheck "CPU vendor"
1581 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1583 echocheck "CPU type"
1584 echores "$pname"
1587 fi # test "$_runtime_cpudetection" = no
1589 if x86 && test "$_runtime_cpudetection" = no ; then
1590 extcheck() {
1591 if test "$1" = kernel_check ; then
1592 echocheck "kernel support of $2"
1593 cat > $TMPC <<EOF
1594 #include <stdlib.h>
1595 #include <signal.h>
1596 static void catch(int sig) { exit(1); }
1597 int main(void) {
1598 signal(SIGILL, catch);
1599 __asm__ volatile ("$3":::"memory"); return 0;
1603 if cc_check && tmp_run ; then
1604 eval _$2=yes
1605 echores "yes"
1606 _optimizing="$_optimizing $2"
1607 return 0
1608 else
1609 eval _$2=no
1610 echores "failed"
1611 echo "It seems that your kernel does not correctly support $2."
1612 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1613 return 1
1616 return 0
1619 extcheck $_mmx "mmx" "emms"
1620 extcheck $_mmxext "mmxext" "sfence"
1621 extcheck $_3dnow "3dnow" "femms"
1622 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1623 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1624 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1625 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1626 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1628 echocheck "mtrr support"
1629 if test "$_mtrr" = kernel_check ; then
1630 _mtrr="yes"
1631 _optimizing="$_optimizing mtrr"
1633 echores "$_mtrr"
1635 if test "$_gcc3_ext" != ""; then
1636 # if we had to disable sse/sse2 because the active kernel does not
1637 # support this instruction set extension, we also have to tell
1638 # gcc3 to not generate sse/sse2 instructions for normal C code
1639 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1645 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1646 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1647 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1648 subarch_all='X86_32 X86_64 PPC64'
1649 case "$host_arch" in
1650 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1651 arch='x86'
1652 subarch='x86_32'
1653 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1654 iproc=486
1655 proc=i486
1658 if test "$_runtime_cpudetection" = no ; then
1659 case "$pvendor" in
1660 AuthenticAMD)
1661 case "$pfamily" in
1662 3) proc=i386 iproc=386 ;;
1663 4) proc=i486 iproc=486 ;;
1664 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1665 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1666 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1667 proc=k6-3
1668 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1669 proc=geode
1670 elif test "$pmodel" -ge 8; then
1671 proc=k6-2
1672 elif test "$pmodel" -ge 6; then
1673 proc=k6
1674 else
1675 proc=i586
1678 6) iproc=686
1679 # It's a bit difficult to determine the correct type of Family 6
1680 # AMD CPUs just from their signature. Instead, we check directly
1681 # whether it supports SSE.
1682 if test "$_sse" = yes; then
1683 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1684 proc=athlon-xp
1685 else
1686 # Again, gcc treats athlon and athlon-tbird similarly.
1687 proc=athlon
1690 15) iproc=686
1691 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1692 # caught and remedied in the optimization tests below.
1693 proc=k8
1696 *) proc=amdfam10 iproc=686
1697 test $_fast_clz = "auto" && _fast_clz=yes
1699 esac
1701 GenuineIntel)
1702 case "$pfamily" in
1703 3) proc=i386 iproc=386 ;;
1704 4) proc=i486 iproc=486 ;;
1705 5) iproc=586
1706 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1707 proc=pentium-mmx # 4 is desktop, 8 is mobile
1708 else
1709 proc=i586
1712 6) iproc=686
1713 if test "$pmodel" -ge 15; then
1714 proc=core2
1715 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1716 proc=pentium-m
1717 elif test "$pmodel" -ge 7; then
1718 proc=pentium3
1719 elif test "$pmodel" -ge 3; then
1720 proc=pentium2
1721 else
1722 proc=i686
1724 test $_fast_clz = "auto" && _fast_clz=yes
1726 15) iproc=686
1727 # A nocona in 32-bit mode has no more capabilities than a prescott.
1728 if test "$pmodel" -ge 3; then
1729 proc=prescott
1730 else
1731 proc=pentium4
1732 test $_fast_clz = "auto" && _fast_clz=yes
1734 test $_fast_cmov = "auto" && _fast_cmov=no
1736 *) proc=prescott iproc=686 ;;
1737 esac
1739 CentaurHauls)
1740 case "$pfamily" in
1741 5) iproc=586
1742 if test "$pmodel" -ge 8; then
1743 proc=winchip2
1744 elif test "$pmodel" -ge 4; then
1745 proc=winchip-c6
1746 else
1747 proc=i586
1750 6) iproc=686
1751 if test "$pmodel" -ge 9; then
1752 proc=c3-2
1753 else
1754 proc=c3
1755 iproc=586
1758 *) proc=i686 iproc=i686 ;;
1759 esac
1761 unknown)
1762 case "$pfamily" in
1763 3) proc=i386 iproc=386 ;;
1764 4) proc=i486 iproc=486 ;;
1765 *) proc=i586 iproc=586 ;;
1766 esac
1769 proc=i586 iproc=586 ;;
1770 esac
1771 test $_fast_clz = "auto" && _fast_clz=no
1772 fi # test "$_runtime_cpudetection" = no
1775 # check that gcc supports our CPU, if not, fall back to earlier ones
1776 # LGB: check -mcpu and -march swithing step by step with enabling
1777 # to fall back till 386.
1779 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1781 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1782 cpuopt=-mtune
1783 else
1784 cpuopt=-mcpu
1787 echocheck "GCC & CPU optimization abilities"
1788 if test "$_runtime_cpudetection" = no ; then
1789 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1790 cflag_check -march=native && proc=native
1792 if test "$proc" = "amdfam10"; then
1793 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1795 if test "$proc" = "k8"; then
1796 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1798 if test "$proc" = "athlon-xp"; then
1799 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1801 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1802 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1804 if test "$proc" = "k6" || test "$proc" = "c3"; then
1805 if ! cflag_check -march=$proc $cpuopt=$proc; then
1806 if cflag_check -march=i586 $cpuopt=i686; then
1807 proc=i586-i686
1808 else
1809 proc=i586
1813 if test "$proc" = "prescott" ; then
1814 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1816 if test "$proc" = "core2" ; then
1817 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1819 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
1820 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1822 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1823 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1825 if test "$proc" = "i586"; then
1826 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1828 if test "$proc" = "i486" ; then
1829 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1831 if test "$proc" = "i386" ; then
1832 cflag_check -march=$proc $cpuopt=$proc || proc=error
1834 if test "$proc" = "error" ; then
1835 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1836 _mcpu=""
1837 _march=""
1838 _optimizing=""
1839 elif test "$proc" = "i586-i686"; then
1840 _march="-march=i586"
1841 _mcpu="$cpuopt=i686"
1842 _optimizing="$proc"
1843 else
1844 _march="-march=$proc"
1845 _mcpu="$cpuopt=$proc"
1846 _optimizing="$proc"
1848 else # if test "$_runtime_cpudetection" = no
1849 _mcpu="$cpuopt=generic"
1850 # at least i486 required, for bswap instruction
1851 _march="-march=i486"
1852 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1853 cflag_check $_mcpu || _mcpu=""
1854 cflag_check $_march $_mcpu || _march=""
1857 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1858 ## autodetected mcpu/march parameters
1859 if test "$_target" ; then
1860 # TODO: it may be a good idea to check GCC and fall back in all cases
1861 if test "$host_arch" = "i586-i686"; then
1862 _march="-march=i586"
1863 _mcpu="$cpuopt=i686"
1864 else
1865 _march="-march=$host_arch"
1866 _mcpu="$cpuopt=$host_arch"
1869 proc="$host_arch"
1871 case "$proc" in
1872 i386) iproc=386 ;;
1873 i486) iproc=486 ;;
1874 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1875 i686|athlon*|pentium*) iproc=686 ;;
1876 *) iproc=586 ;;
1877 esac
1880 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1881 _fast_cmov="yes"
1882 else
1883 _fast_cmov="no"
1885 test $_fast_clz = "auto" && _fast_clz=yes
1887 echores "$proc"
1890 ia64)
1891 arch='ia64'
1892 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1893 iproc='ia64'
1896 x86_64|amd64)
1897 arch='x86'
1898 subarch='x86_64'
1899 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1900 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1901 iproc='x86_64'
1903 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1904 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1905 cpuopt=-mtune
1906 else
1907 cpuopt=-mcpu
1909 if test "$_runtime_cpudetection" = no ; then
1910 case "$pvendor" in
1911 AuthenticAMD)
1912 case "$pfamily" in
1913 15) proc=k8
1914 test $_fast_clz = "auto" && _fast_clz=no
1916 *) proc=amdfam10;;
1917 esac
1919 GenuineIntel)
1920 case "$pfamily" in
1921 6) proc=core2;;
1923 # 64-bit prescotts exist, but as far as GCC is concerned they
1924 # have the same capabilities as a nocona.
1925 proc=nocona
1926 test $_fast_cmov = "auto" && _fast_cmov=no
1927 test $_fast_clz = "auto" && _fast_clz=no
1929 esac
1932 proc=error;;
1933 esac
1934 fi # test "$_runtime_cpudetection" = no
1936 echocheck "GCC & CPU optimization abilities"
1937 # This is a stripped-down version of the i386 fallback.
1938 if test "$_runtime_cpudetection" = no ; then
1939 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1940 cflag_check -march=native && proc=native
1942 # --- AMD processors ---
1943 if test "$proc" = "amdfam10"; then
1944 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1946 if test "$proc" = "k8"; then
1947 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1949 # This will fail if gcc version < 3.3, which is ok because earlier
1950 # versions don't really support 64-bit on amd64.
1951 # Is this a valid assumption? -Corey
1952 if test "$proc" = "athlon-xp"; then
1953 cflag_check -march=$proc $cpuopt=$proc || proc=error
1955 # --- Intel processors ---
1956 if test "$proc" = "core2"; then
1957 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1959 if test "$proc" = "x86-64"; then
1960 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1962 if test "$proc" = "nocona"; then
1963 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1965 if test "$proc" = "pentium4"; then
1966 cflag_check -march=$proc $cpuopt=$proc || proc=error
1969 _march="-march=$proc"
1970 _mcpu="$cpuopt=$proc"
1971 if test "$proc" = "error" ; then
1972 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1973 _mcpu=""
1974 _march=""
1976 else # if test "$_runtime_cpudetection" = no
1977 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1978 _march="-march=x86-64"
1979 _mcpu="$cpuopt=generic"
1980 cflag_check $_mcpu || _mcpu="x86-64"
1981 cflag_check $_mcpu || _mcpu=""
1982 cflag_check $_march $_mcpu || _march=""
1985 _optimizing="$proc"
1986 test $_fast_cmov = "auto" && _fast_cmov=yes
1987 test $_fast_clz = "auto" && _fast_clz=yes
1989 echores "$proc"
1992 sparc|sparc64)
1993 arch='sparc'
1994 iproc='sparc'
1995 if test "$host_arch" = "sparc64" ; then
1996 _vis='yes'
1997 proc='ultrasparc'
1998 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1999 elif sunos ; then
2000 echocheck "CPU type"
2001 karch=$(uname -m)
2002 case "$(echo $karch)" in
2003 sun4) proc=v7 ;;
2004 sun4c) proc=v7 ;;
2005 sun4d) proc=v8 ;;
2006 sun4m) proc=v8 ;;
2007 sun4u) proc=ultrasparc _vis='yes' ;;
2008 sun4v) proc=v9 ;;
2009 *) proc=v8 ;;
2010 esac
2011 echores "$proc"
2012 else
2013 proc=v8
2015 _mcpu="-mcpu=$proc"
2016 _optimizing="$proc"
2019 arm*)
2020 arch='arm'
2021 iproc='arm'
2024 avr32)
2025 arch='avr32'
2026 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2027 iproc='avr32'
2028 test $_fast_clz = "auto" && _fast_clz=yes
2031 sh|sh4)
2032 arch='sh4'
2033 iproc='sh4'
2036 ppc|ppc64|powerpc|powerpc64)
2037 arch='ppc'
2038 def_dcbzl='#define HAVE_DCBZL 0'
2039 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2040 iproc='ppc'
2042 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2043 subarch='ppc64'
2044 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2046 echocheck "CPU type"
2047 case $system_name in
2048 Linux)
2049 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2050 if test -n "$($_cpuinfo | grep altivec)"; then
2051 test $_altivec = auto && _altivec=yes
2054 Darwin)
2055 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2056 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2057 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2058 test $_altivec = auto && _altivec=yes
2061 NetBSD)
2062 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2063 case $cc_version in
2064 2*|3.0*|3.1*|3.2*|3.3*)
2067 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2068 test $_altivec = auto && _altivec=yes
2071 esac
2073 AIX)
2074 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2076 esac
2077 if test "$_altivec" = yes; then
2078 echores "$proc altivec"
2079 else
2080 _altivec=no
2081 echores "$proc"
2084 echocheck "GCC & CPU optimization abilities"
2086 if test -n "$proc"; then
2087 case "$proc" in
2088 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2089 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2090 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2091 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2092 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2093 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2094 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2095 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2096 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2097 *) ;;
2098 esac
2099 # gcc 3.1(.1) and up supports 7400 and 7450
2100 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2101 case "$proc" in
2102 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2103 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2104 *) ;;
2105 esac
2107 # gcc 3.2 and up supports 970
2108 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2109 case "$proc" in
2110 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2111 def_dcbzl='#define HAVE_DCBZL 1' ;;
2112 *) ;;
2113 esac
2115 # gcc 3.3 and up supports POWER4
2116 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2117 case "$proc" in
2118 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2119 *) ;;
2120 esac
2122 # gcc 3.4 and up supports 440*
2123 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2124 case "$proc" in
2125 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2126 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2127 *) ;;
2128 esac
2130 # gcc 4.0 and up supports POWER5
2131 if test "$_cc_major" -ge "4"; then
2132 case "$proc" in
2133 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2134 *) ;;
2135 esac
2139 if test -n "$_mcpu"; then
2140 _optimizing=$(echo $_mcpu | cut -c 8-)
2141 echores "$_optimizing"
2142 else
2143 echores "none"
2146 test $_fast_clz = "auto" && _fast_clz=yes
2150 alpha*)
2151 arch='alpha'
2152 iproc='alpha'
2153 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2155 echocheck "CPU type"
2156 cat > $TMPC << EOF
2157 int main(void) {
2158 unsigned long ver, mask;
2159 __asm__ ("implver %0" : "=r" (ver));
2160 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2161 printf("%ld-%x\n", ver, ~mask);
2162 return 0;
2165 $_cc -o "$TMPEXE" "$TMPC"
2166 case $("$TMPEXE") in
2168 0-0) proc="ev4"; _mvi="0";;
2169 1-0) proc="ev5"; _mvi="0";;
2170 1-1) proc="ev56"; _mvi="0";;
2171 1-101) proc="pca56"; _mvi="1";;
2172 2-303) proc="ev6"; _mvi="1";;
2173 2-307) proc="ev67"; _mvi="1";;
2174 2-1307) proc="ev68"; _mvi="1";;
2175 esac
2176 echores "$proc"
2178 echocheck "GCC & CPU optimization abilities"
2179 if test "$proc" = "ev68" ; then
2180 cc_check -mcpu=$proc || proc=ev67
2182 if test "$proc" = "ev67" ; then
2183 cc_check -mcpu=$proc || proc=ev6
2185 _mcpu="-mcpu=$proc"
2186 echores "$proc"
2188 test $_fast_clz = "auto" && _fast_clz=yes
2190 _optimizing="$proc"
2193 mips*)
2194 arch='mips'
2195 iproc='mips'
2197 if irix ; then
2198 echocheck "CPU type"
2199 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2200 case "$(echo $proc)" in
2201 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2202 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2203 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2204 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2205 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2206 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2207 esac
2208 # gcc < 3.x does not support -mtune.
2209 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2210 _mcpu=''
2212 echores "$proc"
2215 test $_fast_clz = "auto" && _fast_clz=yes
2219 hppa)
2220 arch='pa_risc'
2221 iproc='PA-RISC'
2224 s390)
2225 arch='s390'
2226 iproc='390'
2229 s390x)
2230 arch='s390x'
2231 iproc='390x'
2234 vax)
2235 arch='vax'
2236 iproc='vax'
2239 xtensa)
2240 arch='xtensa'
2241 iproc='xtensa'
2244 generic)
2245 arch='generic'
2249 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2250 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2251 die "unsupported architecture $host_arch"
2253 esac # case "$host_arch" in
2255 if test "$_runtime_cpudetection" = yes ; then
2256 if x86 ; then
2257 test "$_cmov" != no && _cmov=yes
2258 x86_32 && _cmov=no
2259 test "$_mmx" != no && _mmx=yes
2260 test "$_3dnow" != no && _3dnow=yes
2261 test "$_3dnowext" != no && _3dnowext=yes
2262 test "$_mmxext" != no && _mmxext=yes
2263 test "$_sse" != no && _sse=yes
2264 test "$_sse2" != no && _sse2=yes
2265 test "$_ssse3" != no && _ssse3=yes
2266 test "$_mtrr" != no && _mtrr=yes
2268 if ppc; then
2269 _altivec=yes
2274 # endian testing
2275 echocheck "byte order"
2276 if test "$_big_endian" = auto ; then
2277 cat > $TMPC <<EOF
2278 short ascii_name[] = {
2279 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2280 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2281 int main(void) { return (long)ascii_name; }
2283 if cc_check ; then
2284 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2285 _big_endian=yes
2286 else
2287 _big_endian=no
2289 else
2290 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2293 if test "$_big_endian" = yes ; then
2294 _byte_order='big-endian'
2295 def_words_endian='#define WORDS_BIGENDIAN 1'
2296 def_bigendian='#define HAVE_BIGENDIAN 1'
2297 else
2298 _byte_order='little-endian'
2299 def_words_endian='#undef WORDS_BIGENDIAN'
2300 def_bigendian='#define HAVE_BIGENDIAN 0'
2302 echores "$_byte_order"
2305 echocheck "extern symbol prefix"
2306 cat > $TMPC << EOF
2307 int ff_extern;
2309 cc_check -c || die "Symbol mangling check failed."
2310 sym=$($_nm -P -g $TMPEXE)
2311 extern_prefix=${sym%%ff_extern*}
2312 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2313 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2314 echores $extern_prefix
2317 echocheck "assembler support of -pipe option"
2318 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2319 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2322 echocheck "compiler support of named assembler arguments"
2323 _named_asm_args=yes
2324 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2325 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2326 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2327 _named_asm_args=no
2328 def_named_asm_args="#undef NAMED_ASM_ARGS"
2330 echores $_named_asm_args
2333 if darwin && test "$cc_vendor" = "gnu" ; then
2334 echocheck "GCC support of -mstackrealign"
2335 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2336 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2337 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2338 # wrong code with this flag, but this can be worked around by adding
2339 # -fno-unit-at-a-time as described in the blog post at
2340 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2341 cat > $TMPC << EOF
2342 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2343 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2345 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2346 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2347 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2348 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2349 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2352 # Checking for CFLAGS
2353 _install_strip="-s"
2354 if test "$_profile" != "" || test "$_debug" != "" ; then
2355 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2356 WARNFLAGS="-W -Wall"
2357 _install_strip=
2358 elif test -z "$CFLAGS" ; then
2359 if test "$cc_vendor" = "intel" ; then
2360 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2361 WARNFLAGS="-wd167 -wd556 -wd144"
2362 elif test "$cc_vendor" = "sun" ; then
2363 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2364 elif test "$cc_vendor" = "clang"; then
2365 CFLAGS="-O2 $_march $_pipe"
2366 elif test "$cc_vendor" != "gnu" ; then
2367 CFLAGS="-O2 $_march $_mcpu $_pipe"
2368 else
2369 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2370 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2371 extra_ldflags="$extra_ldflags -ffast-math"
2373 else
2374 warn_cflags=yes
2377 if test "$cc_vendor" = "gnu" ; then
2378 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2379 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2380 # that's the only variable specific to C now, and this option is not valid
2381 # for C++.
2382 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2383 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2384 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2385 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2386 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2387 else
2388 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2391 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2392 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2395 if test -n "$LDFLAGS" ; then
2396 extra_ldflags="$extra_ldflags $LDFLAGS"
2397 warn_cflags=yes
2398 elif test "$cc_vendor" = "intel" ; then
2399 extra_ldflags="$extra_ldflags -i-static"
2401 if test -n "$CPPFLAGS" ; then
2402 extra_cflags="$extra_cflags $CPPFLAGS"
2403 warn_cflags=yes
2408 if x86_32 ; then
2409 # Checking assembler (_as) compatibility...
2410 # Added workaround for older as that reads from stdin by default - atmos
2411 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2412 echocheck "assembler ($_as $as_version)"
2414 _pref_as_version='2.9.1'
2415 echo 'nop' > $TMPS
2416 if test "$_mmx" = yes ; then
2417 echo 'emms' >> $TMPS
2419 if test "$_3dnow" = yes ; then
2420 _pref_as_version='2.10.1'
2421 echo 'femms' >> $TMPS
2423 if test "$_3dnowext" = yes ; then
2424 _pref_as_version='2.10.1'
2425 echo 'pswapd %mm0, %mm0' >> $TMPS
2427 if test "$_mmxext" = yes ; then
2428 _pref_as_version='2.10.1'
2429 echo 'movntq %mm0, (%eax)' >> $TMPS
2431 if test "$_sse" = yes ; then
2432 _pref_as_version='2.10.1'
2433 echo 'xorps %xmm0, %xmm0' >> $TMPS
2435 #if test "$_sse2" = yes ; then
2436 # _pref_as_version='2.11'
2437 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2439 if test "$_cmov" = yes ; then
2440 _pref_as_version='2.10.1'
2441 echo 'cmovb %eax, %ebx' >> $TMPS
2443 if test "$_ssse3" = yes ; then
2444 _pref_as_version='2.16.92'
2445 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2447 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2449 if test "$as_verc_fail" != yes ; then
2450 echores "ok"
2451 else
2452 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2453 echores "failed"
2454 die "obsolete binutils version"
2457 fi #if x86_32
2460 echocheck "PIC"
2461 pic=no
2462 cat > $TMPC << EOF
2463 int main(void) {
2464 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2465 #error PIC not enabled
2466 #endif
2467 return 0;
2470 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2471 echores $pic
2474 if x86 ; then
2476 echocheck ".align is a power of two"
2477 if test "$_asmalign_pot" = auto ; then
2478 _asmalign_pot=no
2479 inline_asm_check '".align 3"' && _asmalign_pot=yes
2481 if test "$_asmalign_pot" = "yes" ; then
2482 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2483 else
2484 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2486 echores $_asmalign_pot
2489 echocheck "10 assembler operands"
2490 ten_operands=no
2491 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2492 cat > $TMPC << EOF
2493 int main(void) {
2494 int x=0;
2495 __asm__ volatile(
2497 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2499 return 0;
2502 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2503 echores $ten_operands
2505 echocheck "ebx availability"
2506 ebx_available=no
2507 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2508 cat > $TMPC << EOF
2509 int main(void) {
2510 int x;
2511 __asm__ volatile(
2512 "xor %0, %0"
2513 :"=b"(x)
2514 // just adding ebx to clobber list seems unreliable with some
2515 // compilers, e.g. Haiku's gcc 2.95
2517 // and the above check does not work for OSX 64 bit...
2518 __asm__ volatile("":::"%ebx");
2519 return 0;
2522 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2523 echores $ebx_available
2526 echocheck "yasm"
2527 if test -z "$YASMFLAGS" ; then
2528 if darwin ; then
2529 x86_64 && objformat="macho64" || objformat="macho"
2530 elif win32 ; then
2531 objformat="win32"
2532 else
2533 objformat="elf"
2535 # currently tested for Linux x86, x86_64
2536 YASMFLAGS="-f $objformat"
2537 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2538 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2539 case "$objformat" in
2540 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2541 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2542 esac
2543 else
2544 warn_cflags=yes
2547 echo "pabsw xmm0, xmm0" > $TMPS
2548 yasm_check || _yasm=""
2549 if test $_yasm ; then
2550 def_yasm='#define HAVE_YASM 1'
2551 have_yasm="yes"
2552 echores "$_yasm"
2553 else
2554 def_yasm='#define HAVE_YASM 0'
2555 have_yasm="no"
2556 echores "no"
2559 echocheck "bswap"
2560 def_bswap='#define HAVE_BSWAP 0'
2561 echo 'bswap %eax' > $TMPS
2562 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2563 echores "$bswap"
2564 fi #if x86
2567 #FIXME: This should happen before the check for CFLAGS..
2568 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2569 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2571 # check if AltiVec is supported by the compiler, and how to enable it
2572 echocheck "GCC AltiVec flags"
2573 if $(cflag_check -maltivec -mabi=altivec) ; then
2574 _altivec_gcc_flags="-maltivec -mabi=altivec"
2575 # check if <altivec.h> should be included
2576 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2577 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2578 inc_altivec_h='#include <altivec.h>'
2579 else
2580 if $(cflag_check -faltivec) ; then
2581 _altivec_gcc_flags="-faltivec"
2582 else
2583 _altivec=no
2584 _altivec_gcc_flags="none, AltiVec disabled"
2588 echores "$_altivec_gcc_flags"
2590 # check if the compiler supports braces for vector declarations
2591 cat > $TMPC << EOF
2592 $inc_altivec_h
2593 int main(void) { (vector int) {1}; return 0; }
2595 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2597 # Disable runtime cpudetection if we cannot generate AltiVec code or
2598 # AltiVec is disabled by the user.
2599 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2600 && _runtime_cpudetection=no
2602 # Show that we are optimizing for AltiVec (if enabled and supported).
2603 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2604 && _optimizing="$_optimizing altivec"
2606 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2607 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2610 if ppc ; then
2611 def_xform_asm='#define HAVE_XFORM_ASM 0'
2612 xform_asm=no
2613 echocheck "XFORM ASM support"
2614 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2615 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2616 echores "$xform_asm"
2619 if arm ; then
2620 echocheck "ARM pld instruction"
2621 pld=no
2622 inline_asm_check '"pld [r0]"' && pld=yes
2623 echores "$pld"
2625 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2626 if test $_armv5te = "auto" ; then
2627 _armv5te=no
2628 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2630 echores "$_armv5te"
2632 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2634 echocheck "ARMv6 (SIMD instructions)"
2635 if test $_armv6 = "auto" ; then
2636 _armv6=no
2637 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2639 echores "$_armv6"
2641 echocheck "ARMv6t2 (SIMD instructions)"
2642 if test $_armv6t2 = "auto" ; then
2643 _armv6t2=no
2644 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2646 echores "$_armv6"
2648 echocheck "ARM VFP"
2649 if test $_armvfp = "auto" ; then
2650 _armvfp=no
2651 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2653 echores "$_armvfp"
2655 echocheck "ARM NEON"
2656 if test $neon = "auto" ; then
2657 neon=no
2658 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2660 echores "$neon"
2662 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2663 if test $_iwmmxt = "auto" ; then
2664 _iwmmxt=no
2665 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2667 echores "$_iwmmxt"
2670 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'
2671 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2672 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2673 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2674 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2675 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2676 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2677 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2678 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2679 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2680 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2681 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2682 test "$pld" = yes && cpuexts="PLD $cpuexts"
2683 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2684 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2685 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2686 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2687 test "$neon" = yes && cpuexts="NEON $cpuexts"
2688 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2689 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2690 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2692 # Checking kernel version...
2693 if x86_32 && linux ; then
2694 _k_verc_problem=no
2695 kernel_version=$(uname -r 2>&1)
2696 echocheck "$system_name kernel version"
2697 case "$kernel_version" in
2698 '') kernel_version="?.??"; _k_verc_fail=yes;;
2699 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2700 _k_verc_problem=yes;;
2701 esac
2702 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2703 _k_verc_fail=yes
2705 if test "$_k_verc_fail" ; then
2706 echores "$kernel_version, fail"
2707 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2708 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2709 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2710 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2711 echo "2.2.x you must upgrade it to get SSE support!"
2712 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2713 else
2714 echores "$kernel_version, ok"
2718 ######################
2719 # MAIN TESTS GO HERE #
2720 ######################
2723 echocheck "-lposix"
2724 if cflag_check -lposix ; then
2725 extra_ldflags="$extra_ldflags -lposix"
2726 echores "yes"
2727 else
2728 echores "no"
2731 echocheck "-lm"
2732 if cflag_check -lm ; then
2733 _ld_lm="-lm"
2734 echores "yes"
2735 else
2736 _ld_lm=""
2737 echores "no"
2741 echocheck "langinfo"
2742 if test "$_langinfo" = auto ; then
2743 _langinfo=no
2744 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2746 if test "$_langinfo" = yes ; then
2747 def_langinfo='#define HAVE_LANGINFO 1'
2748 else
2749 def_langinfo='#undef HAVE_LANGINFO'
2751 echores "$_langinfo"
2754 echocheck "translation support"
2755 if test "$_translation" = yes; then
2756 def_translation="#define CONFIG_TRANSLATION 1"
2757 else
2758 def_translation="#undef CONFIG_TRANSLATION"
2760 echores "$_translation"
2762 echocheck "language"
2763 # Set preferred languages, "all" uses English as main language.
2764 test -z "$language" && language=$LINGUAS
2765 test -z "$language_doc" && language_doc=$language
2766 test -z "$language_man" && language_man=$language
2767 test -z "$language_msg" && language_msg="all"
2768 language_doc=$(echo $language_doc | tr , " ")
2769 language_man=$(echo $language_man | tr , " ")
2770 language_msg=$(echo $language_msg | tr , " ")
2772 test "$language_doc" = "all" && language_doc=$doc_lang_all
2773 test "$language_man" = "all" && language_man=$man_lang_all
2774 test "$language_msg" = "all" && language_msg=$msg_lang_all
2776 if test "$_translation" != yes ; then
2777 language_msg=""
2780 # Prune non-existing translations from language lists.
2781 # Set message translation to the first available language.
2782 # Fall back on English.
2783 for lang in $language_doc ; do
2784 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2785 done
2786 language_doc=$tmp_language_doc
2787 test -z "$language_doc" && language_doc=en
2789 for lang in $language_man ; do
2790 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2791 done
2792 language_man=$tmp_language_man
2793 test -z "$language_man" && language_man=en
2795 for lang in $language_msg ; do
2796 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2797 done
2798 language_msg=$tmp_language_msg
2800 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2803 echocheck "enable sighandler"
2804 if test "$_sighandler" = yes ; then
2805 def_sighandler='#define CONFIG_SIGHANDLER 1'
2806 else
2807 def_sighandler='#undef CONFIG_SIGHANDLER'
2809 echores "$_sighandler"
2811 echocheck "runtime cpudetection"
2812 if test "$_runtime_cpudetection" = yes ; then
2813 _optimizing="Runtime CPU-Detection enabled"
2814 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2815 else
2816 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2818 echores "$_runtime_cpudetection"
2821 echocheck "restrict keyword"
2822 for restrict_keyword in restrict __restrict __restrict__ ; do
2823 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2824 if cc_check; then
2825 def_restrict_keyword=$restrict_keyword
2826 break;
2828 done
2829 if [ -n "$def_restrict_keyword" ]; then
2830 echores "$def_restrict_keyword"
2831 else
2832 echores "none"
2834 # Avoid infinite recursion loop ("#define restrict restrict")
2835 if [ "$def_restrict_keyword" != "restrict" ]; then
2836 def_restrict_keyword="#define restrict $def_restrict_keyword"
2837 else
2838 def_restrict_keyword=""
2842 echocheck "__builtin_expect"
2843 # GCC branch prediction hint
2844 cat > $TMPC << EOF
2845 static int foo(int a) {
2846 a = __builtin_expect(a, 10);
2847 return a == 10 ? 0 : 1;
2849 int main(void) { return foo(10) && foo(0); }
2851 _builtin_expect=no
2852 cc_check && _builtin_expect=yes
2853 if test "$_builtin_expect" = yes ; then
2854 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2855 else
2856 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2858 echores "$_builtin_expect"
2861 echocheck "kstat"
2862 _kstat=no
2863 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2864 if test "$_kstat" = yes ; then
2865 def_kstat="#define HAVE_LIBKSTAT 1"
2866 extra_ldflags="$extra_ldflags -lkstat"
2867 else
2868 def_kstat="#undef HAVE_LIBKSTAT"
2870 echores "$_kstat"
2873 echocheck "posix4"
2874 # required for nanosleep on some systems
2875 _posix4=no
2876 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2877 if test "$_posix4" = yes ; then
2878 extra_ldflags="$extra_ldflags -lposix4"
2880 echores "$_posix4"
2882 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2883 echocheck $func
2884 eval _$func=no
2885 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2886 if eval test "x\$_$func" = "xyes"; then
2887 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2888 echores yes
2889 else
2890 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2891 echores no
2893 done
2896 echocheck "mkstemp"
2897 _mkstemp=no
2898 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2899 if test "$_mkstemp" = yes ; then
2900 def_mkstemp='#define HAVE_MKSTEMP 1'
2901 else
2902 def_mkstemp='#define HAVE_MKSTEMP 0'
2904 echores "$_mkstemp"
2907 echocheck "nanosleep"
2908 _nanosleep=no
2909 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2910 if test "$_nanosleep" = yes ; then
2911 def_nanosleep='#define HAVE_NANOSLEEP 1'
2912 else
2913 def_nanosleep='#undef HAVE_NANOSLEEP'
2915 echores "$_nanosleep"
2918 echocheck "socklib"
2919 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2920 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2921 cat > $TMPC << EOF
2922 #include <netdb.h>
2923 #include <sys/socket.h>
2924 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2926 _socklib=no
2927 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2928 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2929 done
2930 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2931 if test $_winsock2_h = auto ; then
2932 _winsock2_h=no
2933 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2935 test "$_ld_sock" && res_comment="using $_ld_sock"
2936 echores "$_socklib"
2939 if test $_winsock2_h = yes ; then
2940 _ld_sock="-lws2_32"
2941 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2942 else
2943 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2947 echocheck "arpa/inet.h"
2948 arpa_inet_h=no
2949 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2950 header_check arpa/inet.h && arpa_inet_h=yes &&
2951 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2952 echores "$arpa_inet_h"
2955 echocheck "inet_pton()"
2956 def_inet_pton='#define HAVE_INET_PTON 0'
2957 inet_pton=no
2958 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2959 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2960 done
2961 if test $inet_pton = yes ; then
2962 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2963 def_inet_pton='#define HAVE_INET_PTON 1'
2965 echores "$inet_pton"
2968 echocheck "inet_aton()"
2969 def_inet_aton='#define HAVE_INET_ATON 0'
2970 inet_aton=no
2971 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2972 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2973 done
2974 if test $inet_aton = yes ; then
2975 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2976 def_inet_aton='#define HAVE_INET_ATON 1'
2978 echores "$inet_aton"
2981 echocheck "socklen_t"
2982 _socklen_t=no
2983 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2984 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2985 done
2986 if test "$_socklen_t" = yes ; then
2987 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2988 else
2989 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2991 echores "$_socklen_t"
2994 echocheck "closesocket()"
2995 _closesocket=no
2996 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2997 if test "$_closesocket" = yes ; then
2998 def_closesocket='#define HAVE_CLOSESOCKET 1'
2999 else
3000 def_closesocket='#define HAVE_CLOSESOCKET 0'
3002 echores "$_closesocket"
3005 echocheck "networking"
3006 test $_winsock2_h = no && test $inet_pton = no &&
3007 test $inet_aton = no && networking=no
3008 if test "$networking" = yes ; then
3009 def_network='#define CONFIG_NETWORK 1'
3010 def_networking='#define CONFIG_NETWORKING 1'
3011 extra_ldflags="$extra_ldflags $_ld_sock"
3012 inputmodules="networking $inputmodules"
3013 else
3014 noinputmodules="networking $noinputmodules"
3015 def_network='#define CONFIG_NETWORK 0'
3016 def_networking='#undef CONFIG_NETWORKING'
3018 echores "$networking"
3021 echocheck "inet6"
3022 if test "$_inet6" = auto ; then
3023 cat > $TMPC << EOF
3024 #include <sys/types.h>
3025 #if !defined(_WIN32)
3026 #include <sys/socket.h>
3027 #include <netinet/in.h>
3028 #else
3029 #include <ws2tcpip.h>
3030 #endif
3031 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3033 _inet6=no
3034 if cc_check $_ld_sock ; then
3035 _inet6=yes
3038 if test "$_inet6" = yes ; then
3039 def_inet6='#define HAVE_AF_INET6 1'
3040 else
3041 def_inet6='#undef HAVE_AF_INET6'
3043 echores "$_inet6"
3046 echocheck "gethostbyname2"
3047 if test "$_gethostbyname2" = auto ; then
3048 cat > $TMPC << EOF
3049 #include <sys/types.h>
3050 #include <sys/socket.h>
3051 #include <netdb.h>
3052 int main(void) { gethostbyname2("", AF_INET); return 0; }
3054 _gethostbyname2=no
3055 if cc_check ; then
3056 _gethostbyname2=yes
3059 if test "$_gethostbyname2" = yes ; then
3060 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3061 else
3062 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3064 echores "$_gethostbyname2"
3067 echocheck "inttypes.h (required)"
3068 _inttypes=no
3069 header_check inttypes.h && _inttypes=yes
3070 echores "$_inttypes"
3072 if test "$_inttypes" = no ; then
3073 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3074 header_check sys/bitypes.h && _inttypes=yes
3075 if test "$_inttypes" = yes ; then
3076 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."
3077 else
3078 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3083 echocheck "malloc.h"
3084 _malloc=no
3085 header_check malloc.h && _malloc=yes
3086 if test "$_malloc" = yes ; then
3087 def_malloc_h='#define HAVE_MALLOC_H 1'
3088 else
3089 def_malloc_h='#define HAVE_MALLOC_H 0'
3091 echores "$_malloc"
3094 echocheck "memalign()"
3095 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3096 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3097 _memalign=no
3098 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3099 if test "$_memalign" = yes ; then
3100 def_memalign='#define HAVE_MEMALIGN 1'
3101 else
3102 def_memalign='#define HAVE_MEMALIGN 0'
3103 def_map_memalign='#define memalign(a, b) malloc(b)'
3104 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3106 echores "$_memalign"
3109 echocheck "posix_memalign()"
3110 posix_memalign=no
3111 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3112 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3113 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3114 echores "$posix_memalign"
3117 echocheck "alloca.h"
3118 _alloca=no
3119 statement_check alloca.h 'alloca(0)' && _alloca=yes
3120 if cc_check ; then
3121 def_alloca_h='#define HAVE_ALLOCA_H 1'
3122 else
3123 def_alloca_h='#undef HAVE_ALLOCA_H'
3125 echores "$_alloca"
3128 echocheck "fastmemcpy"
3129 if test "$_fastmemcpy" = yes ; then
3130 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3131 else
3132 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3134 echores "$_fastmemcpy"
3137 echocheck "mman.h"
3138 _mman=no
3139 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3140 if test "$_mman" = yes ; then
3141 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3142 else
3143 def_mman_h='#undef HAVE_SYS_MMAN_H'
3144 os2 && need_mmap=yes
3146 echores "$_mman"
3148 _mman_has_map_failed=no
3149 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3150 if test "$_mman_has_map_failed" = yes ; then
3151 def_mman_has_map_failed=''
3152 else
3153 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3156 echocheck "dynamic loader"
3157 _dl=no
3158 for _ld_tmp in "" "-ldl"; do
3159 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3160 done
3161 if test "$_dl" = yes ; then
3162 def_dl='#define HAVE_LIBDL 1'
3163 else
3164 def_dl='#undef HAVE_LIBDL'
3166 echores "$_dl"
3169 echocheck "dynamic a/v plugins support"
3170 if test "$_dl" = no ; then
3171 _dynamic_plugins=no
3173 if test "$_dynamic_plugins" = yes ; then
3174 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3175 else
3176 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3178 echores "$_dynamic_plugins"
3181 def_threads='#define HAVE_THREADS 0'
3183 echocheck "pthread"
3184 if linux ; then
3185 THREAD_CFLAGS=-D_REENTRANT
3186 elif freebsd || netbsd || openbsd || bsdos ; then
3187 THREAD_CFLAGS=-D_THREAD_SAFE
3189 if test "$_pthreads" = auto ; then
3190 cat > $TMPC << EOF
3191 #include <pthread.h>
3192 static void *func(void *arg) { return arg; }
3193 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3195 _pthreads=no
3196 if ! hpux ; then
3197 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3198 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3199 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3200 done
3203 if test "$_pthreads" = yes ; then
3204 test $_ld_pthread && res_comment="using $_ld_pthread"
3205 def_pthreads='#define HAVE_PTHREADS 1'
3206 def_threads='#define HAVE_THREADS 1'
3207 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3208 else
3209 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3210 def_pthreads='#undef HAVE_PTHREADS'
3211 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3212 mingw32 || _win32dll=no
3214 echores "$_pthreads"
3216 if cygwin ; then
3217 if test "$_pthreads" = yes ; then
3218 def_pthread_cache="#define PTHREAD_CACHE 1"
3219 else
3220 _stream_cache=no
3221 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3225 echocheck "w32threads"
3226 if test "$_pthreads" = yes ; then
3227 res_comment="using pthread instead"
3228 _w32threads=no
3230 if test "$_w32threads" = auto ; then
3231 _w32threads=no
3232 mingw32 && _w32threads=yes
3234 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3235 echores "$_w32threads"
3237 echocheck "rpath"
3238 if test "$_rpath" = yes ; then
3239 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3240 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3241 done
3242 extra_ldflags=$tmp
3244 echores "$_rpath"
3246 echocheck "iconv"
3247 if test "$_iconv" = auto ; then
3248 cat > $TMPC << EOF
3249 #include <stdio.h>
3250 #include <unistd.h>
3251 #include <iconv.h>
3252 #define INBUFSIZE 1024
3253 #define OUTBUFSIZE 4096
3255 char inbuffer[INBUFSIZE];
3256 char outbuffer[OUTBUFSIZE];
3258 int main(void) {
3259 size_t numread;
3260 iconv_t icdsc;
3261 char *tocode="UTF-8";
3262 char *fromcode="cp1250";
3263 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3264 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3265 char *iptr=inbuffer;
3266 char *optr=outbuffer;
3267 size_t inleft=numread;
3268 size_t outleft=OUTBUFSIZE;
3269 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3270 != (size_t)(-1)) {
3271 write(1, outbuffer, OUTBUFSIZE - outleft);
3274 if (iconv_close(icdsc) == -1)
3277 return 0;
3280 _iconv=no
3281 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3282 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3283 _iconv=yes && break
3284 done
3286 if test "$_iconv" = yes ; then
3287 def_iconv='#define CONFIG_ICONV 1'
3288 else
3289 def_iconv='#undef CONFIG_ICONV'
3291 echores "$_iconv"
3294 echocheck "soundcard.h"
3295 _soundcard_h=no
3296 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3297 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3298 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3299 header_check $_soundcard_header && _soundcard_h=yes &&
3300 res_comment="$_soundcard_header" && break
3301 done
3303 if test "$_soundcard_h" = yes ; then
3304 if test $_soundcard_header = "sys/soundcard.h"; then
3305 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3306 else
3307 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3310 echores "$_soundcard_h"
3313 echocheck "sys/dvdio.h"
3314 _dvdio=no
3315 # FreeBSD 8.1 has broken dvdio.h
3316 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3317 if test "$_dvdio" = yes ; then
3318 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3319 else
3320 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3322 echores "$_dvdio"
3325 echocheck "sys/cdio.h"
3326 _cdio=no
3327 # at least OpenSolaris has a broken cdio.h
3328 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3329 if test "$_cdio" = yes ; then
3330 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3331 else
3332 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3334 echores "$_cdio"
3337 echocheck "linux/cdrom.h"
3338 _cdrom=no
3339 header_check linux/cdrom.h && _cdrom=yes
3340 if test "$_cdrom" = yes ; then
3341 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3342 else
3343 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3345 echores "$_cdrom"
3348 echocheck "dvd.h"
3349 _dvd=no
3350 header_check dvd.h && _dvd=yes
3351 if test "$_dvd" = yes ; then
3352 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3353 else
3354 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3356 echores "$_dvd"
3359 if bsdos; then
3360 echocheck "BSDI dvd.h"
3361 _bsdi_dvd=no
3362 header_check dvd.h && _bsdi_dvd=yes
3363 if test "$_bsdi_dvd" = yes ; then
3364 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3365 else
3366 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3368 echores "$_bsdi_dvd"
3369 fi #if bsdos
3372 if hpux; then
3373 # also used by AIX, but AIX does not support VCD and/or libdvdread
3374 echocheck "HP-UX SCSI header"
3375 _hpux_scsi_h=no
3376 header_check sys/scsi.h && _hpux_scsi_h=yes
3377 if test "$_hpux_scsi_h" = yes ; then
3378 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3379 else
3380 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3382 echores "$_hpux_scsi_h"
3383 fi #if hpux
3386 if sunos; then
3387 echocheck "userspace SCSI headers (Solaris)"
3388 _sol_scsi_h=no
3389 header_check sys/scsi/scsi_types.h &&
3390 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3391 _sol_scsi_h=yes
3392 if test "$_sol_scsi_h" = yes ; then
3393 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3394 else
3395 def_sol_scsi_h='#undef SOLARIS_USCSI'
3397 echores "$_sol_scsi_h"
3398 fi #if sunos
3401 echocheck "termcap"
3402 if test "$_termcap" = auto ; then
3403 _termcap=no
3404 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3405 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3406 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3407 done
3409 if test "$_termcap" = yes ; then
3410 def_termcap='#define HAVE_TERMCAP 1'
3411 test $_ld_tmp && res_comment="using $_ld_tmp"
3412 else
3413 def_termcap='#undef HAVE_TERMCAP'
3415 echores "$_termcap"
3418 echocheck "termios"
3419 def_termios='#undef HAVE_TERMIOS'
3420 def_termios_h='#undef HAVE_TERMIOS_H'
3421 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3422 if test "$_termios" = auto ; then
3423 _termios=no
3424 for _termios_header in "termios.h" "sys/termios.h"; do
3425 header_check $_termios_header && _termios=yes &&
3426 res_comment="using $_termios_header" && break
3427 done
3430 if test "$_termios" = yes ; then
3431 def_termios='#define HAVE_TERMIOS 1'
3432 if test "$_termios_header" = "termios.h" ; then
3433 def_termios_h='#define HAVE_TERMIOS_H 1'
3434 else
3435 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3438 echores "$_termios"
3441 echocheck "shm"
3442 if test "$_shm" = auto ; then
3443 _shm=no
3444 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3446 if test "$_shm" = yes ; then
3447 def_shm='#define HAVE_SHM 1'
3448 else
3449 def_shm='#undef HAVE_SHM'
3451 echores "$_shm"
3454 echocheck "strsep()"
3455 _strsep=no
3456 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3457 if test "$_strsep" = yes ; then
3458 def_strsep='#define HAVE_STRSEP 1'
3459 need_strsep=no
3460 else
3461 def_strsep='#undef HAVE_STRSEP'
3462 need_strsep=yes
3464 echores "$_strsep"
3467 echocheck "vsscanf()"
3468 cat > $TMPC << EOF
3469 #define _ISOC99_SOURCE
3470 #include <stdarg.h>
3471 #include <stdio.h>
3472 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3474 _vsscanf=no
3475 cc_check && _vsscanf=yes
3476 if test "$_vsscanf" = yes ; then
3477 def_vsscanf='#define HAVE_VSSCANF 1'
3478 need_vsscanf=no
3479 else
3480 def_vsscanf='#undef HAVE_VSSCANF'
3481 need_vsscanf=yes
3483 echores "$_vsscanf"
3486 echocheck "swab()"
3487 _swab=no
3488 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3489 if test "$_swab" = yes ; then
3490 def_swab='#define HAVE_SWAB 1'
3491 need_swab=no
3492 else
3493 def_swab='#undef HAVE_SWAB'
3494 need_swab=yes
3496 echores "$_swab"
3498 echocheck "POSIX select()"
3499 cat > $TMPC << EOF
3500 #include <stdio.h>
3501 #include <stdlib.h>
3502 #include <sys/types.h>
3503 #include <string.h>
3504 #include <sys/time.h>
3505 #include <unistd.h>
3506 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3508 _posix_select=no
3509 def_posix_select='#undef HAVE_POSIX_SELECT'
3510 #select() of kLIBC (OS/2) supports socket only
3511 ! os2 && cc_check && _posix_select=yes &&
3512 def_posix_select='#define HAVE_POSIX_SELECT 1'
3513 echores "$_posix_select"
3516 echocheck "audio select()"
3517 if test "$_select" = no ; then
3518 def_select='#undef HAVE_AUDIO_SELECT'
3519 elif test "$_select" = yes ; then
3520 def_select='#define HAVE_AUDIO_SELECT 1'
3522 echores "$_select"
3525 echocheck "gettimeofday()"
3526 _gettimeofday=no
3527 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3528 if test "$_gettimeofday" = yes ; then
3529 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3530 need_gettimeofday=no
3531 else
3532 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3533 need_gettimeofday=yes
3535 echores "$_gettimeofday"
3538 echocheck "glob()"
3539 _glob=no
3540 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3541 if test "$_glob" = yes ; then
3542 def_glob='#define HAVE_GLOB 1'
3543 need_glob=no
3544 else
3545 def_glob='#undef HAVE_GLOB'
3546 need_glob=yes
3548 echores "$_glob"
3551 echocheck "setenv()"
3552 _setenv=no
3553 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3554 if test "$_setenv" = yes ; then
3555 def_setenv='#define HAVE_SETENV 1'
3556 need_setenv=no
3557 else
3558 def_setenv='#undef HAVE_SETENV'
3559 need_setenv=yes
3561 echores "$_setenv"
3564 echocheck "setmode()"
3565 _setmode=no
3566 def_setmode='#define HAVE_SETMODE 0'
3567 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3568 echores "$_setmode"
3571 if sunos; then
3572 echocheck "sysi86()"
3573 _sysi86=no
3574 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3575 if test "$_sysi86" = yes ; then
3576 def_sysi86='#define HAVE_SYSI86 1'
3577 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3578 else
3579 def_sysi86='#undef HAVE_SYSI86'
3581 echores "$_sysi86"
3582 fi #if sunos
3585 echocheck "sys/sysinfo.h"
3586 _sys_sysinfo=no
3587 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3588 if test "$_sys_sysinfo" = yes ; then
3589 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3590 else
3591 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3593 echores "$_sys_sysinfo"
3596 if darwin; then
3598 echocheck "Mac OS X Finder Support"
3599 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3600 if test "$_macosx_finder" = yes ; then
3601 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3602 extra_ldflags="$extra_ldflags -framework Carbon"
3604 echores "$_macosx_finder"
3606 echocheck "Mac OS X Bundle file locations"
3607 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3608 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3609 if test "$_macosx_bundle" = yes ; then
3610 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3611 extra_ldflags="$extra_ldflags -framework Carbon"
3613 echores "$_macosx_bundle"
3615 echocheck "Apple Remote"
3616 if test "$_apple_remote" = auto ; then
3617 _apple_remote=no
3618 cat > $TMPC <<EOF
3619 #include <stdio.h>
3620 #include <IOKit/IOCFPlugIn.h>
3621 int main(void) {
3622 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3623 CFMutableDictionaryRef hidMatchDictionary;
3624 IOReturn ioReturnValue;
3626 // Set up a matching dictionary to search the I/O Registry by class.
3627 // name for all HID class devices
3628 hidMatchDictionary = IOServiceMatching("AppleIRController");
3630 // Now search I/O Registry for matching devices.
3631 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3632 hidMatchDictionary, &hidObjectIterator);
3634 // If search is unsuccessful, return nonzero.
3635 if (ioReturnValue != kIOReturnSuccess ||
3636 !IOIteratorIsValid(hidObjectIterator)) {
3637 return 1;
3639 return 0;
3642 cc_check -framework IOKit && _apple_remote=yes
3644 if test "$_apple_remote" = yes ; then
3645 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3646 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3647 else
3648 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3650 echores "$_apple_remote"
3652 fi #if darwin
3654 if linux; then
3656 echocheck "Apple IR"
3657 if test "$_apple_ir" = auto ; then
3658 _apple_ir=no
3659 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3661 if test "$_apple_ir" = yes ; then
3662 def_apple_ir='#define CONFIG_APPLE_IR 1'
3663 else
3664 def_apple_ir='#undef CONFIG_APPLE_IR'
3666 echores "$_apple_ir"
3667 fi #if linux
3669 echocheck "pkg-config"
3670 _pkg_config=pkg-config
3671 if $($_pkg_config --version > /dev/null 2>&1); then
3672 if test "$_ld_static"; then
3673 _pkg_config="$_pkg_config --static"
3675 echores "yes"
3676 else
3677 _pkg_config=false
3678 echores "no"
3682 echocheck "Samba support (libsmbclient)"
3683 if test "$_smb" = yes; then
3684 extra_ldflags="$extra_ldflags -lsmbclient"
3686 if test "$_smb" = auto; then
3687 _smb=no
3688 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3689 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3690 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3691 done
3694 if test "$_smb" = yes; then
3695 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3696 inputmodules="smb $inputmodules"
3697 else
3698 def_smb="#undef CONFIG_LIBSMBCLIENT"
3699 noinputmodules="smb $noinputmodules"
3701 echores "$_smb"
3704 #########
3705 # VIDEO #
3706 #########
3709 echocheck "tdfxfb"
3710 if test "$_tdfxfb" = yes ; then
3711 def_tdfxfb='#define CONFIG_TDFXFB 1'
3712 vomodules="tdfxfb $vomodules"
3713 else
3714 def_tdfxfb='#undef CONFIG_TDFXFB'
3715 novomodules="tdfxfb $novomodules"
3717 echores "$_tdfxfb"
3719 echocheck "s3fb"
3720 if test "$_s3fb" = yes ; then
3721 def_s3fb='#define CONFIG_S3FB 1'
3722 vomodules="s3fb $vomodules"
3723 else
3724 def_s3fb='#undef CONFIG_S3FB'
3725 novomodules="s3fb $novomodules"
3727 echores "$_s3fb"
3729 echocheck "wii"
3730 if test "$_wii" = yes ; then
3731 def_wii='#define CONFIG_WII 1'
3732 vomodules="wii $vomodules"
3733 else
3734 def_wii='#undef CONFIG_WII'
3735 novomodules="wii $novomodules"
3737 echores "$_wii"
3739 echocheck "tdfxvid"
3740 if test "$_tdfxvid" = yes ; then
3741 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3742 vomodules="tdfx_vid $vomodules"
3743 else
3744 def_tdfxvid='#undef CONFIG_TDFX_VID'
3745 novomodules="tdfx_vid $novomodules"
3747 echores "$_tdfxvid"
3749 echocheck "xvr100"
3750 if test "$_xvr100" = auto ; then
3751 cat > $TMPC << EOF
3752 #include <unistd.h>
3753 #include <sys/fbio.h>
3754 #include <sys/visual_io.h>
3755 int main(void) {
3756 struct vis_identifier ident;
3757 struct fbgattr attr;
3758 ioctl(0, VIS_GETIDENTIFIER, &ident);
3759 ioctl(0, FBIOGATTR, &attr);
3760 return 0;
3763 _xvr100=no
3764 cc_check && _xvr100=yes
3766 if test "$_xvr100" = yes ; then
3767 def_xvr100='#define CONFIG_XVR100 1'
3768 vomodules="xvr100 $vomodules"
3769 else
3770 def_tdfxvid='#undef CONFIG_XVR100'
3771 novomodules="xvr100 $novomodules"
3773 echores "$_xvr100"
3775 echocheck "tga"
3776 if test "$_tga" = yes ; then
3777 def_tga='#define CONFIG_TGA 1'
3778 vomodules="tga $vomodules"
3779 else
3780 def_tga='#undef CONFIG_TGA'
3781 novomodules="tga $novomodules"
3783 echores "$_tga"
3786 echocheck "md5sum support"
3787 if test "$_md5sum" = yes; then
3788 def_md5sum="#define CONFIG_MD5SUM 1"
3789 vomodules="md5sum $vomodules"
3790 else
3791 def_md5sum="#undef CONFIG_MD5SUM"
3792 novomodules="md5sum $novomodules"
3794 echores "$_md5sum"
3797 echocheck "yuv4mpeg support"
3798 if test "$_yuv4mpeg" = yes; then
3799 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3800 vomodules="yuv4mpeg $vomodules"
3801 else
3802 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3803 novomodules="yuv4mpeg $novomodules"
3805 echores "$_yuv4mpeg"
3808 echocheck "bl"
3809 if test "$_bl" = yes ; then
3810 def_bl='#define CONFIG_BL 1'
3811 vomodules="bl $vomodules"
3812 else
3813 def_bl='#undef CONFIG_BL'
3814 novomodules="bl $novomodules"
3816 echores "$_bl"
3819 echocheck "DirectFB"
3820 if test "$_directfb" = auto ; then
3821 _directfb=no
3822 cat > $TMPC << EOF
3823 #include <directfb.h>
3824 #include <directfb_version.h>
3825 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3826 #error "DirectFB version too old."
3827 #endif
3828 int main(void) { DirectFBInit(0, 0); return 0; }
3830 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3831 cc_check $_inc_tmp -ldirectfb &&
3832 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3833 done
3835 if test "$_directfb" = yes ; then
3836 def_directfb='#define CONFIG_DIRECTFB 1'
3837 vomodules="directfb dfbmga $vomodules"
3838 libs_mplayer="$libs_mplayer -ldirectfb"
3839 else
3840 def_directfb='#undef CONFIG_DIRECTFB'
3841 novomodules="directfb dfbmga $novomodules"
3843 echores "$_directfb"
3846 echocheck "X11 headers presence"
3847 _x11_headers="no"
3848 res_comment="check if the dev(el) packages are installed"
3849 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3850 if test -f "$I/X11/Xlib.h" ; then
3851 _x11_headers="yes"
3852 res_comment=""
3853 break
3855 done
3856 if test $_cross_compile = no; then
3857 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3858 /usr/include/X11R6 /usr/openwin/include ; do
3859 if test -f "$I/X11/Xlib.h" ; then
3860 extra_cflags="$extra_cflags -I$I"
3861 _x11_headers="yes"
3862 res_comment="using $I"
3863 break
3865 done
3867 echores "$_x11_headers"
3870 echocheck "X11"
3871 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3872 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3873 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3874 -L/usr/lib ; do
3875 if netbsd; then
3876 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3877 else
3878 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3880 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3881 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3882 done
3884 if test "$_x11" = yes ; then
3885 def_x11='#define CONFIG_X11 1'
3886 vomodules="x11 xover $vomodules"
3887 else
3888 _x11=no
3889 def_x11='#undef CONFIG_X11'
3890 novomodules="x11 $novomodules"
3891 res_comment="check if the dev(el) packages are installed"
3892 # disable stuff that depends on X
3893 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3895 echores "$_x11"
3897 echocheck "Xss screensaver extensions"
3898 if test "$_xss" = auto ; then
3899 _xss=no
3900 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3902 if test "$_xss" = yes ; then
3903 def_xss='#define CONFIG_XSS 1'
3904 libs_mplayer="$libs_mplayer -lXss"
3905 else
3906 def_xss='#undef CONFIG_XSS'
3908 echores "$_xss"
3910 echocheck "DPMS"
3911 _xdpms3=no
3912 _xdpms4=no
3913 if test "$_x11" = yes ; then
3914 cat > $TMPC <<EOF
3915 #include <X11/Xmd.h>
3916 #include <X11/Xlib.h>
3917 #include <X11/Xutil.h>
3918 #include <X11/Xatom.h>
3919 #include <X11/extensions/dpms.h>
3920 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3922 cc_check -lXdpms && _xdpms3=yes
3923 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3925 if test "$_xdpms4" = yes ; then
3926 def_xdpms='#define CONFIG_XDPMS 1'
3927 res_comment="using Xdpms 4"
3928 echores "yes"
3929 elif test "$_xdpms3" = yes ; then
3930 def_xdpms='#define CONFIG_XDPMS 1'
3931 libs_mplayer="$libs_mplayer -lXdpms"
3932 res_comment="using Xdpms 3"
3933 echores "yes"
3934 else
3935 def_xdpms='#undef CONFIG_XDPMS'
3936 echores "no"
3940 echocheck "Xv"
3941 if test "$_xv" = auto ; then
3942 _xv=no
3943 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3946 if test "$_xv" = yes ; then
3947 def_xv='#define CONFIG_XV 1'
3948 libs_mplayer="$libs_mplayer -lXv"
3949 vomodules="xv $vomodules"
3950 else
3951 def_xv='#undef CONFIG_XV'
3952 novomodules="xv $novomodules"
3954 echores "$_xv"
3957 echocheck "XvMC"
3958 if test "$_xv" = yes && test "$_xvmc" != no ; then
3959 _xvmc=no
3960 cat > $TMPC <<EOF
3961 #include <X11/Xlib.h>
3962 #include <X11/extensions/Xvlib.h>
3963 #include <X11/extensions/XvMClib.h>
3964 int main(void) {
3965 XvMCQueryExtension(0, 0, 0);
3966 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
3967 return 0; }
3969 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
3970 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
3971 done
3973 if test "$_xvmc" = yes ; then
3974 def_xvmc='#define CONFIG_XVMC 1'
3975 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
3976 vomodules="xvmc $vomodules"
3977 res_comment="using $_xvmclib"
3978 else
3979 def_xvmc='#define CONFIG_XVMC 0'
3980 novomodules="xvmc $novomodules"
3982 echores "$_xvmc"
3985 echocheck "VDPAU"
3986 if test "$_vdpau" = auto ; then
3987 _vdpau=no
3988 if test "$_dl" = yes ; then
3989 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
3992 if test "$_vdpau" = yes ; then
3993 def_vdpau='#define CONFIG_VDPAU 1'
3994 libs_mplayer="$libs_mplayer -lvdpau"
3995 vomodules="vdpau $vomodules"
3996 else
3997 def_vdpau='#define CONFIG_VDPAU 0'
3998 novomodules="vdpau $novomodules"
4000 echores "$_vdpau"
4003 echocheck "Xinerama"
4004 if test "$_xinerama" = auto ; then
4005 _xinerama=no
4006 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
4009 if test "$_xinerama" = yes ; then
4010 def_xinerama='#define CONFIG_XINERAMA 1'
4011 libs_mplayer="$libs_mplayer -lXinerama"
4012 else
4013 def_xinerama='#undef CONFIG_XINERAMA'
4015 echores "$_xinerama"
4018 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4019 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4020 # named 'X extensions' or something similar.
4021 # This check may be useful for future mplayer versions (to change resolution)
4022 # If you run into problems, remove '-lXxf86vm'.
4023 echocheck "Xxf86vm"
4024 if test "$_vm" = auto ; then
4025 _vm=no
4026 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4028 if test "$_vm" = yes ; then
4029 def_vm='#define CONFIG_XF86VM 1'
4030 libs_mplayer="$libs_mplayer -lXxf86vm"
4031 else
4032 def_vm='#undef CONFIG_XF86VM'
4034 echores "$_vm"
4036 # Check for the presence of special keycodes, like audio control buttons
4037 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4038 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4039 # have these new keycodes.
4040 echocheck "XF86keysym"
4041 if test "$_xf86keysym" = auto; then
4042 _xf86keysym=no
4043 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4045 if test "$_xf86keysym" = yes ; then
4046 def_xf86keysym='#define CONFIG_XF86XK 1'
4047 else
4048 def_xf86keysym='#undef CONFIG_XF86XK'
4050 echores "$_xf86keysym"
4052 echocheck "DGA"
4053 if test "$_dga2" = auto && test "$_x11" = yes ; then
4054 _dga2=no
4055 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4057 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4058 _dga1=no
4059 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4062 _dga=no
4063 def_dga='#undef CONFIG_DGA'
4064 def_dga1='#undef CONFIG_DGA1'
4065 def_dga2='#undef CONFIG_DGA2'
4066 if test "$_dga1" = yes ; then
4067 _dga=yes
4068 def_dga1='#define CONFIG_DGA1 1'
4069 res_comment="using DGA 1.0"
4070 elif test "$_dga2" = yes ; then
4071 _dga=yes
4072 def_dga2='#define CONFIG_DGA2 1'
4073 res_comment="using DGA 2.0"
4075 if test "$_dga" = yes ; then
4076 def_dga='#define CONFIG_DGA 1'
4077 libs_mplayer="$libs_mplayer -lXxf86dga"
4078 vomodules="dga $vomodules"
4079 else
4080 novomodules="dga $novomodules"
4082 echores "$_dga"
4085 echocheck "3dfx"
4086 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4087 def_3dfx='#define CONFIG_3DFX 1'
4088 vomodules="3dfx $vomodules"
4089 else
4090 def_3dfx='#undef CONFIG_3DFX'
4091 novomodules="3dfx $novomodules"
4093 echores "$_3dfx"
4096 echocheck "GGI"
4097 if test "$_ggi" = auto ; then
4098 _ggi=no
4099 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4101 if test "$_ggi" = yes ; then
4102 def_ggi='#define CONFIG_GGI 1'
4103 libs_mplayer="$libs_mplayer -lggi"
4104 vomodules="ggi $vomodules"
4105 else
4106 def_ggi='#undef CONFIG_GGI'
4107 novomodules="ggi $novomodules"
4109 echores "$_ggi"
4111 echocheck "GGI extension: libggiwmh"
4112 if test "$_ggiwmh" = auto ; then
4113 _ggiwmh=no
4114 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4116 # needed to get right output on obscure combination
4117 # like --disable-ggi --enable-ggiwmh
4118 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4119 def_ggiwmh='#define CONFIG_GGIWMH 1'
4120 libs_mplayer="$libs_mplayer -lggiwmh"
4121 else
4122 _ggiwmh=no
4123 def_ggiwmh='#undef CONFIG_GGIWMH'
4125 echores "$_ggiwmh"
4128 echocheck "AA"
4129 if test "$_aa" = auto ; then
4130 cat > $TMPC << EOF
4131 #include <aalib.h>
4132 int main(void) {
4133 aa_context *c;
4134 aa_renderparams *p;
4135 aa_init(0, 0, 0);
4136 c = aa_autoinit(&aa_defparams);
4137 p = aa_getrenderparams();
4138 aa_autoinitkbd(c, 0);
4139 return 0; }
4141 _aa=no
4142 for _ld_tmp in "-laa" ; do
4143 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4144 done
4146 if test "$_aa" = yes ; then
4147 def_aa='#define CONFIG_AA 1'
4148 if cygwin ; then
4149 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4151 vomodules="aa $vomodules"
4152 else
4153 def_aa='#undef CONFIG_AA'
4154 novomodules="aa $novomodules"
4156 echores "$_aa"
4159 echocheck "CACA"
4160 if test "$_caca" = auto ; then
4161 _caca=no
4162 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4163 cat > $TMPC << EOF
4164 #include <caca.h>
4165 #ifdef CACA_API_VERSION_1
4166 #include <caca0.h>
4167 #endif
4168 int main(void) { caca_init(); return 0; }
4170 cc_check $(caca-config --libs) && _caca=yes
4173 if test "$_caca" = yes ; then
4174 def_caca='#define CONFIG_CACA 1'
4175 extra_cflags="$extra_cflags $(caca-config --cflags)"
4176 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4177 vomodules="caca $vomodules"
4178 else
4179 def_caca='#undef CONFIG_CACA'
4180 novomodules="caca $novomodules"
4182 echores "$_caca"
4185 echocheck "SVGAlib"
4186 if test "$_svga" = auto ; then
4187 _svga=no
4188 header_check vga.h -lvga $_ld_lm && _svga=yes
4190 if test "$_svga" = yes ; then
4191 def_svga='#define CONFIG_SVGALIB 1'
4192 libs_mplayer="$libs_mplayer -lvga"
4193 vomodules="svga $vomodules"
4194 else
4195 def_svga='#undef CONFIG_SVGALIB'
4196 novomodules="svga $novomodules"
4198 echores "$_svga"
4201 echocheck "FBDev"
4202 if test "$_fbdev" = auto ; then
4203 _fbdev=no
4204 linux && _fbdev=yes
4206 if test "$_fbdev" = yes ; then
4207 def_fbdev='#define CONFIG_FBDEV 1'
4208 vomodules="fbdev $vomodules"
4209 else
4210 def_fbdev='#undef CONFIG_FBDEV'
4211 novomodules="fbdev $novomodules"
4213 echores "$_fbdev"
4217 echocheck "DVB"
4218 if test "$_dvb" = auto ; then
4219 _dvb=no
4220 cat >$TMPC << EOF
4221 #include <poll.h>
4222 #include <sys/ioctl.h>
4223 #include <stdio.h>
4224 #include <time.h>
4225 #include <unistd.h>
4226 #include <linux/dvb/dmx.h>
4227 #include <linux/dvb/frontend.h>
4228 #include <linux/dvb/video.h>
4229 #include <linux/dvb/audio.h>
4230 int main(void) {return 0;}
4232 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4233 cc_check $_inc_tmp && _dvb=yes &&
4234 extra_cflags="$extra_cflags $_inc_tmp" && break
4235 done
4237 echores "$_dvb"
4238 if test "$_dvb" = yes ; then
4239 _dvbin=yes
4240 inputmodules="dvb $inputmodules"
4241 def_dvb='#define CONFIG_DVB 1'
4242 def_dvbin='#define CONFIG_DVBIN 1'
4243 aomodules="mpegpes(dvb) $aomodules"
4244 vomodules="mpegpes(dvb) $vomodules"
4245 else
4246 _dvbin=no
4247 noinputmodules="dvb $noinputmodules"
4248 def_dvb='#undef CONFIG_DVB'
4249 def_dvbin='#undef CONFIG_DVBIN '
4250 aomodules="mpegpes(file) $aomodules"
4251 vomodules="mpegpes(file) $vomodules"
4255 if darwin; then
4257 echocheck "QuickTime"
4258 if test "$quicktime" = auto ; then
4259 quicktime=no
4260 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4262 if test "$quicktime" = yes ; then
4263 extra_ldflags="$extra_ldflags -framework QuickTime"
4264 def_quicktime='#define CONFIG_QUICKTIME 1'
4265 else
4266 def_quicktime='#undef CONFIG_QUICKTIME'
4267 _quartz=no
4269 echores $quicktime
4271 echocheck "Quartz"
4272 if test "$_quartz" = auto ; then
4273 _quartz=no
4274 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4276 if test "$_quartz" = yes ; then
4277 libs_mplayer="$libs_mplayer -framework Carbon"
4278 def_quartz='#define CONFIG_QUARTZ 1'
4279 vomodules="quartz $vomodules"
4280 else
4281 def_quartz='#undef CONFIG_QUARTZ'
4282 novomodules="quartz $novomodules"
4284 echores $_quartz
4286 echocheck "CoreVideo"
4287 if test "$_corevideo" = auto ; then
4288 cat > $TMPC <<EOF
4289 #include <Carbon/Carbon.h>
4290 #include <CoreServices/CoreServices.h>
4291 #include <OpenGL/OpenGL.h>
4292 #include <QuartzCore/CoreVideo.h>
4293 int main(void) { return 0; }
4295 _corevideo=no
4296 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4298 if test "$_corevideo" = yes ; then
4299 vomodules="corevideo $vomodules"
4300 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4301 def_corevideo='#define CONFIG_COREVIDEO 1'
4302 else
4303 novomodules="corevideo $novomodules"
4304 def_corevideo='#undef CONFIG_COREVIDEO'
4306 echores "$_corevideo"
4308 fi #if darwin
4311 echocheck "PNG support"
4312 if test "$_png" = auto ; then
4313 _png=no
4314 if irix ; then
4315 # Don't check for -lpng on irix since it has its own libpng
4316 # incompatible with the GNU libpng
4317 res_comment="disabled on irix (not GNU libpng)"
4318 else
4319 cat > $TMPC << EOF
4320 #include <stdio.h>
4321 #include <string.h>
4322 #include <png.h>
4323 int main(void) {
4324 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4325 printf("libpng: %s\n", png_libpng_ver);
4326 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4329 cc_check -lpng -lz $_ld_lm && _png=yes
4332 echores "$_png"
4333 if test "$_png" = yes ; then
4334 def_png='#define CONFIG_PNG 1'
4335 extra_ldflags="$extra_ldflags -lpng -lz"
4336 else
4337 def_png='#undef CONFIG_PNG'
4340 echocheck "MNG support"
4341 if test "$_mng" = auto ; then
4342 _mng=no
4343 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4345 echores "$_mng"
4346 if test "$_mng" = yes ; then
4347 def_mng='#define CONFIG_MNG 1'
4348 extra_ldflags="$extra_ldflags -lmng -lz"
4349 else
4350 def_mng='#undef CONFIG_MNG'
4353 echocheck "JPEG support"
4354 if test "$_jpeg" = auto ; then
4355 _jpeg=no
4356 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4358 echores "$_jpeg"
4360 if test "$_jpeg" = yes ; then
4361 def_jpeg='#define CONFIG_JPEG 1'
4362 vomodules="jpeg $vomodules"
4363 extra_ldflags="$extra_ldflags -ljpeg"
4364 else
4365 def_jpeg='#undef CONFIG_JPEG'
4366 novomodules="jpeg $novomodules"
4371 echocheck "PNM support"
4372 if test "$_pnm" = yes; then
4373 def_pnm="#define CONFIG_PNM 1"
4374 vomodules="pnm $vomodules"
4375 else
4376 def_pnm="#undef CONFIG_PNM"
4377 novomodules="pnm $novomodules"
4379 echores "$_pnm"
4383 echocheck "GIF support"
4384 # This is to appease people who want to force gif support.
4385 # If it is forced to yes, then we still do checks to determine
4386 # which gif library to use.
4387 if test "$_gif" = yes ; then
4388 _force_gif=yes
4389 _gif=auto
4392 if test "$_gif" = auto ; then
4393 _gif=no
4394 for _ld_gif in "-lungif" "-lgif" ; do
4395 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4396 done
4399 # If no library was found, and the user wants support forced,
4400 # then we force it on with libgif, as this is the safest
4401 # assumption IMHO. (libungif & libregif both create symbolic
4402 # links to libgif. We also assume that no x11 support is needed,
4403 # because if you are forcing this, then you _should_ know what
4404 # you are doing. [ Besides, package maintainers should never
4405 # have compiled x11 deps into libungif in the first place. ] )
4406 # </rant>
4407 # --Joey
4408 if test "$_force_gif" = yes && test "$_gif" = no ; then
4409 _gif=yes
4410 _ld_gif="-lgif"
4413 if test "$_gif" = yes ; then
4414 def_gif='#define CONFIG_GIF 1'
4415 codecmodules="gif $codecmodules"
4416 vomodules="gif89a $vomodules"
4417 res_comment="old version, some encoding functions disabled"
4418 def_gif_4='#undef CONFIG_GIF_4'
4419 extra_ldflags="$extra_ldflags $_ld_gif"
4421 cat > $TMPC << EOF
4422 #include <signal.h>
4423 #include <stdio.h>
4424 #include <stdlib.h>
4425 #include <gif_lib.h>
4426 static void catch(int sig) { exit(1); }
4427 int main(void) {
4428 signal(SIGSEGV, catch); // catch segfault
4429 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4430 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4431 return 0;
4434 if cc_check "$_ld_gif" ; then
4435 def_gif_4='#define CONFIG_GIF_4 1'
4436 res_comment=""
4438 else
4439 def_gif='#undef CONFIG_GIF'
4440 def_gif_4='#undef CONFIG_GIF_4'
4441 novomodules="gif89a $novomodules"
4442 nocodecmodules="gif $nocodecmodules"
4444 echores "$_gif"
4447 case "$_gif" in yes*)
4448 echocheck "broken giflib workaround"
4449 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4451 cat > $TMPC << EOF
4452 #include <stdio.h>
4453 #include <gif_lib.h>
4454 int main(void) {
4455 GifFileType gif = {.UserData = NULL};
4456 printf("UserData is at address %p\n", gif.UserData);
4457 return 0;
4460 if cc_check "$_ld_gif" ; then
4461 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4462 echores "disabled"
4463 else
4464 echores "enabled"
4467 esac
4470 echocheck "VESA support"
4471 if test "$_vesa" = auto ; then
4472 _vesa=no
4473 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4475 if test "$_vesa" = yes ; then
4476 def_vesa='#define CONFIG_VESA 1'
4477 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4478 vomodules="vesa $vomodules"
4479 else
4480 def_vesa='#undef CONFIG_VESA'
4481 novomodules="vesa $novomodules"
4483 echores "$_vesa"
4485 #################
4486 # VIDEO + AUDIO #
4487 #################
4490 echocheck "SDL"
4491 _inc_tmp=""
4492 _ld_tmp=""
4493 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4494 if test -z "$_sdlconfig" ; then
4495 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4496 _sdlconfig="sdl-config"
4497 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4498 _sdlconfig="sdl11-config"
4499 else
4500 _sdlconfig=false
4503 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4504 cat > $TMPC << EOF
4505 #ifdef CONFIG_SDL_SDL_H
4506 #include <SDL/SDL.h>
4507 #else
4508 #include <SDL.h>
4509 #endif
4510 #ifndef __APPLE__
4511 // we allow SDL hacking our main() only on OSX
4512 #undef main
4513 #endif
4514 int main(int argc, char *argv[]) {
4515 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4516 return 0;
4519 _sdl=no
4520 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4521 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4522 _sdl=yes
4523 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4524 break
4526 done
4527 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4528 res_comment="using $_sdlconfig"
4529 if cygwin ; then
4530 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4531 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4532 elif mingw32 ; then
4533 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4534 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4535 else
4536 _inc_tmp="$($_sdlconfig --cflags)"
4537 _ld_tmp="$($_sdlconfig --libs)"
4539 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4540 _sdl=yes
4541 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4542 # HACK for BeOS/Haiku SDL
4543 _ld_tmp="$_ld_tmp -lstdc++"
4544 _sdl=yes
4548 if test "$_sdl" = yes ; then
4549 def_sdl='#define CONFIG_SDL 1'
4550 extra_cflags="$extra_cflags $_inc_tmp"
4551 libs_mplayer="$libs_mplayer $_ld_tmp"
4552 vomodules="sdl $vomodules"
4553 aomodules="sdl $aomodules"
4554 else
4555 def_sdl='#undef CONFIG_SDL'
4556 novomodules="sdl $novomodules"
4557 noaomodules="sdl $noaomodules"
4559 echores "$_sdl"
4562 # make sure this stays below CoreVideo to avoid issues due to namespace
4563 # conflicts between -lGL and -framework OpenGL
4564 echocheck "OpenGL"
4565 #Note: this test is run even with --enable-gl since we autodetect linker flags
4566 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4567 cat > $TMPC << EOF
4568 #ifdef GL_WIN32
4569 #include <windows.h>
4570 #include <GL/gl.h>
4571 #elif defined(GL_SDL)
4572 #include <GL/gl.h>
4573 #ifdef CONFIG_SDL_SDL_H
4574 #include <SDL/SDL.h>
4575 #else
4576 #include <SDL.h>
4577 #endif
4578 #ifndef __APPLE__
4579 // we allow SDL hacking our main() only on OSX
4580 #undef main
4581 #endif
4582 #else
4583 #include <GL/gl.h>
4584 #include <X11/Xlib.h>
4585 #include <GL/glx.h>
4586 #endif
4587 int main(int argc, char *argv[]) {
4588 #ifdef GL_WIN32
4589 HDC dc;
4590 wglCreateContext(dc);
4591 #elif defined(GL_SDL)
4592 SDL_GL_SwapBuffers();
4593 #else
4594 glXCreateContext(NULL, NULL, NULL, True);
4595 #endif
4596 glFinish();
4597 return 0;
4600 _gl=no
4601 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4602 if cc_check $_ld_tmp $_ld_lm ; then
4603 _gl=yes
4604 _gl_x11=yes
4605 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4606 break
4608 done
4609 if cc_check -DGL_WIN32 -lopengl32 ; then
4610 _gl=yes
4611 _gl_win32=yes
4612 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4614 # last so it can reuse any linker etc. flags detected before
4615 if test "$_sdl" = yes ; then
4616 if cc_check -DGL_SDL ||
4617 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4618 _gl=yes
4619 _gl_sdl=yes
4620 elif cc_check -DGL_SDL -lGL ||
4621 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4622 _gl=yes
4623 _gl_sdl=yes
4624 libs_mplayer="$libs_mplayer -lGL"
4627 else
4628 _gl=no
4630 if test "$_gl" = yes ; then
4631 def_gl='#define CONFIG_GL 1'
4632 res_comment="backends:"
4633 if test "$_gl_win32" = yes ; then
4634 def_gl_win32='#define CONFIG_GL_WIN32 1'
4635 res_comment="$res_comment win32"
4637 if test "$_gl_x11" = yes ; then
4638 def_gl_x11='#define CONFIG_GL_X11 1'
4639 res_comment="$res_comment x11"
4641 if test "$_gl_sdl" = yes ; then
4642 def_gl_sdl='#define CONFIG_GL_SDL 1'
4643 res_comment="$res_comment sdl"
4645 vomodules="opengl $vomodules"
4646 else
4647 def_gl='#undef CONFIG_GL'
4648 def_gl_win32='#undef CONFIG_GL_WIN32'
4649 def_gl_x11='#undef CONFIG_GL_X11'
4650 def_gl_sdl='#undef CONFIG_GL_SDL'
4651 novomodules="opengl $novomodules"
4653 echores "$_gl"
4656 echocheck "MatrixView"
4657 if test "$_gl" = no ; then
4658 matrixview=no
4660 if test "$matrixview" = yes ; then
4661 vomodules="matrixview $vomodules"
4662 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4663 else
4664 novomodules="matrixview $novomodules"
4665 def_matrixview='#undef CONFIG_MATRIXVIEW'
4667 echores "$matrixview"
4670 if os2 ; then
4671 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4672 if test "$_kva" = auto; then
4673 _kva=no;
4674 header_check_broken os2.h kva.h -lkva && _kva=yes
4676 if test "$_kva" = yes ; then
4677 def_kva='#define CONFIG_KVA 1'
4678 libs_mplayer="$libs_mplayer -lkva"
4679 vomodules="kva $vomodules"
4680 else
4681 def_kva='#undef CONFIG_KVA'
4682 novomodules="kva $novomodules"
4684 echores "$_kva"
4685 fi #if os2
4688 if win32; then
4690 echocheck "Windows waveout"
4691 if test "$_win32waveout" = auto ; then
4692 _win32waveout=no
4693 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4695 if test "$_win32waveout" = yes ; then
4696 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4697 libs_mplayer="$libs_mplayer -lwinmm"
4698 aomodules="win32 $aomodules"
4699 else
4700 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4701 noaomodules="win32 $noaomodules"
4703 echores "$_win32waveout"
4705 echocheck "Direct3D"
4706 if test "$_direct3d" = auto ; then
4707 _direct3d=no
4708 header_check d3d9.h && _direct3d=yes
4710 if test "$_direct3d" = yes ; then
4711 def_direct3d='#define CONFIG_DIRECT3D 1'
4712 vomodules="direct3d $vomodules"
4713 else
4714 def_direct3d='#undef CONFIG_DIRECT3D'
4715 novomodules="direct3d $novomodules"
4717 echores "$_direct3d"
4719 echocheck "Directx"
4720 if test "$_directx" = auto ; then
4721 cat > $TMPC << EOF
4722 #include <ddraw.h>
4723 #include <dsound.h>
4724 int main(void) { return 0; }
4726 _directx=no
4727 cc_check -lgdi32 && _directx=yes
4729 if test "$_directx" = yes ; then
4730 def_directx='#define CONFIG_DIRECTX 1'
4731 libs_mplayer="$libs_mplayer -lgdi32"
4732 vomodules="directx $vomodules"
4733 aomodules="dsound $aomodules"
4734 else
4735 def_directx='#undef CONFIG_DIRECTX'
4736 novomodules="directx $novomodules"
4737 noaomodules="dsound $noaomodules"
4739 echores "$_directx"
4741 fi #if win32; then
4744 echocheck "DXR3/H+"
4745 if test "$_dxr3" = auto ; then
4746 _dxr3=no
4747 header_check linux/em8300.h && _dxr3=yes
4749 if test "$_dxr3" = yes ; then
4750 def_dxr3='#define CONFIG_DXR3 1'
4751 vomodules="dxr3 $vomodules"
4752 else
4753 def_dxr3='#undef CONFIG_DXR3'
4754 novomodules="dxr3 $novomodules"
4756 echores "$_dxr3"
4759 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4760 if test "$_ivtv" = auto ; then
4761 cat > $TMPC << EOF
4762 #include <sys/time.h>
4763 #include <linux/videodev2.h>
4764 #include <linux/ivtv.h>
4765 #include <sys/ioctl.h>
4766 int main(void) {
4767 struct ivtv_cfg_stop_decode sd;
4768 struct ivtv_cfg_start_decode sd1;
4769 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4770 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4771 return 0; }
4773 _ivtv=no
4774 cc_check && _ivtv=yes
4776 if test "$_ivtv" = yes ; then
4777 def_ivtv='#define CONFIG_IVTV 1'
4778 vomodules="ivtv $vomodules"
4779 aomodules="ivtv $aomodules"
4780 else
4781 def_ivtv='#undef CONFIG_IVTV'
4782 novomodules="ivtv $novomodules"
4783 noaomodules="ivtv $noaomodules"
4785 echores "$_ivtv"
4788 echocheck "V4L2 MPEG Decoder"
4789 if test "$_v4l2" = auto ; then
4790 cat > $TMPC << EOF
4791 #include <sys/time.h>
4792 #include <linux/videodev2.h>
4793 #include <linux/version.h>
4794 int main(void) {
4795 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4796 #error kernel headers too old, need 2.6.22
4797 #endif
4798 struct v4l2_ext_controls ctrls;
4799 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4800 return 0;
4803 _v4l2=no
4804 cc_check && _v4l2=yes
4806 if test "$_v4l2" = yes ; then
4807 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4808 vomodules="v4l2 $vomodules"
4809 aomodules="v4l2 $aomodules"
4810 else
4811 def_v4l2='#undef CONFIG_V4L2_DECODER'
4812 novomodules="v4l2 $novomodules"
4813 noaomodules="v4l2 $noaomodules"
4815 echores "$_v4l2"
4819 #########
4820 # AUDIO #
4821 #########
4824 echocheck "OSS Audio"
4825 if test "$_ossaudio" = auto ; then
4826 _ossaudio=no
4827 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4829 if test "$_ossaudio" = yes ; then
4830 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4831 aomodules="oss $aomodules"
4832 cat > $TMPC << EOF
4833 #include <$_soundcard_header>
4834 #ifdef OPEN_SOUND_SYSTEM
4835 int main(void) { return 0; }
4836 #else
4837 #error Not the real thing
4838 #endif
4840 _real_ossaudio=no
4841 cc_check && _real_ossaudio=yes
4842 if test "$_real_ossaudio" = yes; then
4843 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4844 # Check for OSS4 headers (override default headers)
4845 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4846 if test -f /etc/oss.conf; then
4847 . /etc/oss.conf
4848 _ossinc="$OSSLIBDIR/include"
4849 if test -f "$_ossinc/sys/soundcard.h"; then
4850 extra_cflags="-I$_ossinc $extra_cflags"
4853 elif netbsd || openbsd ; then
4854 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4855 extra_ldflags="$extra_ldflags -lossaudio"
4856 else
4857 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4859 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4860 else
4861 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4862 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4863 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4864 noaomodules="oss $noaomodules"
4866 echores "$_ossaudio"
4869 echocheck "aRts"
4870 if test "$_arts" = auto ; then
4871 _arts=no
4872 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4873 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4874 _arts=yes
4878 if test "$_arts" = yes ; then
4879 def_arts='#define CONFIG_ARTS 1'
4880 aomodules="arts $aomodules"
4881 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4882 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4883 else
4884 noaomodules="arts $noaomodules"
4886 echores "$_arts"
4889 echocheck "EsounD"
4890 if test "$_esd" = auto ; then
4891 _esd=no
4892 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4893 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4896 echores "$_esd"
4898 if test "$_esd" = yes ; then
4899 def_esd='#define CONFIG_ESD 1'
4900 aomodules="esd $aomodules"
4901 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4902 extra_cflags="$extra_cflags $(esd-config --cflags)"
4904 echocheck "esd_get_latency()"
4905 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4906 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4907 echores "$_esd_latency"
4908 else
4909 def_esd='#undef CONFIG_ESD'
4910 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4911 noaomodules="esd $noaomodules"
4915 echocheck "NAS"
4916 if test "$_nas" = auto ; then
4917 _nas=no
4918 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4920 if test "$_nas" = yes ; then
4921 def_nas='#define CONFIG_NAS 1'
4922 libs_mplayer="$libs_mplayer -laudio -lXt"
4923 aomodules="nas $aomodules"
4924 else
4925 noaomodules="nas $noaomodules"
4926 def_nas='#undef CONFIG_NAS'
4928 echores "$_nas"
4931 echocheck "pulse"
4932 if test "$_pulse" = auto ; then
4933 _pulse=no
4934 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4935 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4936 _pulse=yes
4939 echores "$_pulse"
4941 if test "$_pulse" = yes ; then
4942 def_pulse='#define CONFIG_PULSE 1'
4943 aomodules="pulse $aomodules"
4944 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4945 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4946 else
4947 def_pulse='#undef CONFIG_PULSE'
4948 noaomodules="pulse $noaomodules"
4952 echocheck "JACK"
4953 if test "$_jack" = auto ; then
4954 _jack=yes
4955 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4956 libs_mplayer="$libs_mplayer -ljack"
4957 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4958 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4959 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4960 else
4961 _jack=no
4965 if test "$_jack" = yes ; then
4966 def_jack='#define CONFIG_JACK 1'
4967 aomodules="jack $aomodules"
4968 else
4969 noaomodules="jack $noaomodules"
4971 echores "$_jack"
4973 echocheck "OpenAL"
4974 if test "$_openal" = auto ; then
4975 _openal=no
4976 cat > $TMPC << EOF
4977 #ifdef OPENAL_AL_H
4978 #include <OpenAL/al.h>
4979 #else
4980 #include <AL/al.h>
4981 #endif
4982 int main(void) {
4983 alSourceQueueBuffers(0, 0, 0);
4984 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4985 return 0;
4988 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4989 cc_check $I && _openal=yes && break
4990 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4991 done
4992 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4994 if test "$_openal" = yes ; then
4995 def_openal='#define CONFIG_OPENAL 1'
4996 aomodules="openal $aomodules"
4997 else
4998 noaomodules="openal $noaomodules"
5000 echores "$_openal"
5002 echocheck "ALSA audio"
5003 if test "$_alloca" != yes ; then
5004 _alsa=no
5005 res_comment="alloca missing"
5007 if test "$_alsa" != no ; then
5008 _alsa=no
5009 cat > $TMPC << EOF
5010 #include <sys/asoundlib.h>
5011 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5012 #error "alsa version != 0.5.x"
5013 #endif
5014 int main(void) { return 0; }
5016 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5018 cat > $TMPC << EOF
5019 #include <sys/asoundlib.h>
5020 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5021 #error "alsa version != 0.9.x"
5022 #endif
5023 int main(void) { return 0; }
5025 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5026 cat > $TMPC << EOF
5027 #include <alsa/asoundlib.h>
5028 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5029 #error "alsa version != 0.9.x"
5030 #endif
5031 int main(void) { return 0; }
5033 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5035 cat > $TMPC << EOF
5036 #include <sys/asoundlib.h>
5037 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5038 #error "alsa version != 1.0.x"
5039 #endif
5040 int main(void) { return 0; }
5042 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5043 cat > $TMPC << EOF
5044 #include <alsa/asoundlib.h>
5045 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5046 #error "alsa version != 1.0.x"
5047 #endif
5048 int main(void) { return 0; }
5050 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5052 def_alsa='#undef CONFIG_ALSA'
5053 def_alsa5='#undef CONFIG_ALSA5'
5054 def_alsa9='#undef CONFIG_ALSA9'
5055 def_alsa1x='#undef CONFIG_ALSA1X'
5056 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5057 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5058 if test "$_alsaver" ; then
5059 _alsa=yes
5060 if test "$_alsaver" = '0.5.x' ; then
5061 _alsa5=yes
5062 aomodules="alsa5 $aomodules"
5063 def_alsa5='#define CONFIG_ALSA5 1'
5064 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5065 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5066 elif test "$_alsaver" = '0.9.x-sys' ; then
5067 _alsa9=yes
5068 aomodules="alsa $aomodules"
5069 def_alsa='#define CONFIG_ALSA 1'
5070 def_alsa9='#define CONFIG_ALSA9 1'
5071 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5072 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5073 elif test "$_alsaver" = '0.9.x-alsa' ; then
5074 _alsa9=yes
5075 aomodules="alsa $aomodules"
5076 def_alsa='#define CONFIG_ALSA 1'
5077 def_alsa9='#define CONFIG_ALSA9 1'
5078 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5079 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5080 elif test "$_alsaver" = '1.0.x-sys' ; then
5081 _alsa1x=yes
5082 aomodules="alsa $aomodules"
5083 def_alsa='#define CONFIG_ALSA 1'
5084 def_alsa1x="#define CONFIG_ALSA1X 1"
5085 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5086 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5087 elif test "$_alsaver" = '1.0.x-alsa' ; then
5088 _alsa1x=yes
5089 aomodules="alsa $aomodules"
5090 def_alsa='#define CONFIG_ALSA 1'
5091 def_alsa1x="#define CONFIG_ALSA1X 1"
5092 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5093 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5094 else
5095 _alsa=no
5096 res_comment="unknown version"
5098 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5099 else
5100 noaomodules="alsa $noaomodules"
5102 echores "$_alsa"
5105 echocheck "Sun audio"
5106 if test "$_sunaudio" = auto ; then
5107 cat > $TMPC << EOF
5108 #include <sys/types.h>
5109 #include <sys/audioio.h>
5110 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5112 _sunaudio=no
5113 cc_check && _sunaudio=yes
5115 if test "$_sunaudio" = yes ; then
5116 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5117 aomodules="sun $aomodules"
5118 else
5119 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5120 noaomodules="sun $noaomodules"
5122 echores "$_sunaudio"
5125 if darwin; then
5126 echocheck "CoreAudio"
5127 if test "$_coreaudio" = auto ; then
5128 cat > $TMPC <<EOF
5129 #include <CoreAudio/CoreAudio.h>
5130 #include <AudioToolbox/AudioToolbox.h>
5131 #include <AudioUnit/AudioUnit.h>
5132 int main(void) { return 0; }
5134 _coreaudio=no
5135 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5137 if test "$_coreaudio" = yes ; then
5138 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5139 def_coreaudio='#define CONFIG_COREAUDIO 1'
5140 aomodules="coreaudio $aomodules"
5141 else
5142 def_coreaudio='#undef CONFIG_COREAUDIO'
5143 noaomodules="coreaudio $noaomodules"
5145 echores $_coreaudio
5146 fi #if darwin
5149 if irix; then
5150 echocheck "SGI audio"
5151 if test "$_sgiaudio" = auto ; then
5152 _sgiaudio=no
5153 header_check dmedia/audio.h && _sgiaudio=yes
5155 if test "$_sgiaudio" = "yes" ; then
5156 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5157 libs_mplayer="$libs_mplayer -laudio"
5158 aomodules="sgi $aomodules"
5159 else
5160 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5161 noaomodules="sgi $noaomodules"
5163 echores "$_sgiaudio"
5164 fi #if irix
5167 if os2 ; then
5168 echocheck "KAI (UNIAUD/DART)"
5169 if test "$_kai" = auto; then
5170 _kai=no;
5171 header_check_broken os2.h kai.h -lkai && _kai=yes
5173 if test "$_kai" = yes ; then
5174 def_kai='#define CONFIG_KAI 1'
5175 libs_mplayer="$libs_mplayer -lkai"
5176 aomodules="kai $aomodules"
5177 else
5178 def_kai='#undef CONFIG_KAI'
5179 noaomodules="kai $noaomodules"
5181 echores "$_kai"
5183 echocheck "DART"
5184 if test "$_dart" = auto; then
5185 _dart=no;
5186 header_check_broken os2.h dart.h -ldart && _dart=yes
5188 if test "$_dart" = yes ; then
5189 def_dart='#define CONFIG_DART 1'
5190 libs_mplayer="$libs_mplayer -ldart"
5191 aomodules="dart $aomodules"
5192 else
5193 def_dart='#undef CONFIG_DART'
5194 noaomodules="dart $noaomodules"
5196 echores "$_dart"
5197 fi #if os2
5200 # set default CD/DVD devices
5201 if win32 || os2 ; then
5202 default_cdrom_device="D:"
5203 elif darwin ; then
5204 default_cdrom_device="/dev/disk1"
5205 elif dragonfly ; then
5206 default_cdrom_device="/dev/cd0"
5207 elif freebsd ; then
5208 default_cdrom_device="/dev/acd0"
5209 elif openbsd ; then
5210 default_cdrom_device="/dev/rcd0c"
5211 elif sunos ; then
5212 default_cdrom_device="/vol/dev/aliases/cdrom0"
5213 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5214 # file system and the volfs service.
5215 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5216 elif amigaos ; then
5217 default_cdrom_device="a1ide.device:2"
5218 else
5219 default_cdrom_device="/dev/cdrom"
5222 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5223 default_dvd_device=$default_cdrom_device
5224 elif darwin ; then
5225 default_dvd_device="/dev/rdiskN"
5226 else
5227 default_dvd_device="/dev/dvd"
5231 echocheck "VCD support"
5232 if test "$_vcd" = auto; then
5233 _vcd=no
5234 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5235 _vcd=yes
5236 elif mingw32; then
5237 header_check ddk/ntddcdrm.h && _vcd=yes
5240 if test "$_vcd" = yes; then
5241 inputmodules="vcd $inputmodules"
5242 def_vcd='#define CONFIG_VCD 1'
5243 else
5244 def_vcd='#undef CONFIG_VCD'
5245 noinputmodules="vcd $noinputmodules"
5246 res_comment="not supported on this OS"
5248 echores "$_vcd"
5252 echocheck "Blu-ray support"
5253 if test "$_bluray" = auto ; then
5254 _bluray=no
5255 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5257 if test "$_bluray" = yes ; then
5258 def_bluray='#define CONFIG_LIBBLURAY 1'
5259 extra_ldflags="$extra_ldflags -lbluray"
5260 inputmodules="bluray $inputmodules"
5261 else
5262 def_bluray='#undef CONFIG_LIBBLURAY'
5263 noinputmodules="bluray $noinputmodules"
5265 echores "$_bluray"
5267 echocheck "dvdread"
5268 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5269 _dvdread_internal=no
5271 if test "$_dvdread_internal" = auto ; then
5272 _dvdread_internal=no
5273 _dvdread=no
5274 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5275 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5276 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5277 darwin || win32 || os2; then
5278 _dvdread_internal=yes
5279 _dvdread=yes
5280 extra_cflags="-Ilibdvdread4 $extra_cflags"
5282 elif test "$_dvdread" = auto ; then
5283 _dvdread=no
5284 if test "$_dl" = yes; then
5285 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5286 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5287 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5288 _dvdread=yes
5289 extra_cflags="$extra_cflags $_dvdreadcflags"
5290 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5291 res_comment="external"
5296 if test "$_dvdread_internal" = yes; then
5297 def_dvdread='#define CONFIG_DVDREAD 1'
5298 inputmodules="dvdread(internal) $inputmodules"
5299 _largefiles=yes
5300 res_comment="internal"
5301 elif test "$_dvdread" = yes; then
5302 def_dvdread='#define CONFIG_DVDREAD 1'
5303 _largefiles=yes
5304 extra_ldflags="$extra_ldflags -ldvdread"
5305 inputmodules="dvdread(external) $inputmodules"
5306 res_comment="external"
5307 else
5308 def_dvdread='#undef CONFIG_DVDREAD'
5309 noinputmodules="dvdread $noinputmodules"
5311 echores "$_dvdread"
5314 echocheck "internal libdvdcss"
5315 if test "$_libdvdcss_internal" = auto ; then
5316 _libdvdcss_internal=no
5317 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5318 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5320 if test "$_libdvdcss_internal" = yes ; then
5321 if linux || netbsd || openbsd || bsdos ; then
5322 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5323 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5324 elif freebsd || dragonfly ; then
5325 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5326 elif darwin ; then
5327 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5328 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5329 elif cygwin ; then
5330 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5331 elif beos ; then
5332 cflags_libdvdcss="-DSYS_BEOS"
5333 elif os2 ; then
5334 cflags_libdvdcss="-DSYS_OS2"
5336 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5337 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5338 inputmodules="libdvdcss(internal) $inputmodules"
5339 _largefiles=yes
5340 else
5341 noinputmodules="libdvdcss(internal) $noinputmodules"
5343 echores "$_libdvdcss_internal"
5346 echocheck "cdparanoia"
5347 if test "$_cdparanoia" = auto ; then
5348 cat > $TMPC <<EOF
5349 #include <cdda_interface.h>
5350 #include <cdda_paranoia.h>
5351 // This need a better test. How ?
5352 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5354 _cdparanoia=no
5355 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5356 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5357 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5358 done
5360 if test "$_cdparanoia" = yes ; then
5361 _cdda='yes'
5362 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5363 openbsd && extra_ldflags="$extra_ldflags -lutil"
5365 echores "$_cdparanoia"
5368 echocheck "libcdio"
5369 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5370 cat > $TMPC << EOF
5371 #include <stdio.h>
5372 #include <cdio/version.h>
5373 #include <cdio/cdda.h>
5374 #include <cdio/paranoia.h>
5375 int main(void) {
5376 void *test = cdda_verbose_set;
5377 printf("%s\n", CDIO_VERSION);
5378 return test == (void *)1;
5381 _libcdio=no
5382 for _ld_tmp in "" "-lwinmm" ; do
5383 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5384 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5385 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5386 done
5387 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5388 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5389 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5390 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5391 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5394 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5395 _cdda='yes'
5396 def_libcdio='#define CONFIG_LIBCDIO 1'
5397 def_havelibcdio='yes'
5398 else
5399 if test "$_cdparanoia" = yes ; then
5400 res_comment="using cdparanoia"
5402 def_libcdio='#undef CONFIG_LIBCDIO'
5403 def_havelibcdio='no'
5405 echores "$_libcdio"
5407 if test "$_cdda" = yes ; then
5408 test $_cddb = auto && test $networking = yes && _cddb=yes
5409 def_cdparanoia='#define CONFIG_CDDA 1'
5410 inputmodules="cdda $inputmodules"
5411 else
5412 def_cdparanoia='#undef CONFIG_CDDA'
5413 noinputmodules="cdda $noinputmodules"
5416 if test "$_cddb" = yes ; then
5417 def_cddb='#define CONFIG_CDDB 1'
5418 inputmodules="cddb $inputmodules"
5419 else
5420 _cddb=no
5421 def_cddb='#undef CONFIG_CDDB'
5422 noinputmodules="cddb $noinputmodules"
5425 echocheck "bitmap font support"
5426 if test "$_bitmap_font" = yes ; then
5427 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5428 else
5429 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5431 echores "$_bitmap_font"
5434 echocheck "freetype >= 2.0.9"
5436 # freetype depends on iconv
5437 if test "$_iconv" = no ; then
5438 _freetype=no
5439 res_comment="iconv support needed"
5442 if test "$_freetype" = auto ; then
5443 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5444 cat > $TMPC << EOF
5445 #include <stdio.h>
5446 #include <ft2build.h>
5447 #include FT_FREETYPE_H
5448 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5449 #error "Need FreeType 2.0.9 or newer"
5450 #endif
5451 int main(void) {
5452 FT_Library library;
5453 FT_Init_FreeType(&library);
5454 return 0;
5457 _freetype=no
5458 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5459 else
5460 _freetype=no
5463 if test "$_freetype" = yes ; then
5464 def_freetype='#define CONFIG_FREETYPE 1'
5465 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5466 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5467 else
5468 def_freetype='#undef CONFIG_FREETYPE'
5470 echores "$_freetype"
5472 if test "$_freetype" = no ; then
5473 _fontconfig=no
5474 res_comment="FreeType support needed"
5476 echocheck "fontconfig"
5477 if test "$_fontconfig" = auto ; then
5478 cat > $TMPC << EOF
5479 #include <stdio.h>
5480 #include <stdlib.h>
5481 #include <fontconfig/fontconfig.h>
5482 #if FC_VERSION < 20402
5483 #error At least version 2.4.2 of fontconfig required
5484 #endif
5485 int main(void) {
5486 int err = FcInit();
5487 if (err == FcFalse) {
5488 printf("Couldn't initialize fontconfig lib\n");
5489 exit(err);
5491 return 0;
5494 _fontconfig=no
5495 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5496 _ld_tmp="-lfontconfig $_ld_tmp"
5497 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5498 done
5499 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5500 _inc_tmp=$($_pkg_config --cflags fontconfig)
5501 _ld_tmp=$($_pkg_config --libs fontconfig)
5502 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5503 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5506 if test "$_fontconfig" = yes ; then
5507 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5508 else
5509 def_fontconfig='#undef CONFIG_FONTCONFIG'
5511 echores "$_fontconfig"
5514 echocheck "SSA/ASS support"
5515 if test "$_ass" = auto -o "$_ass" = yes ; then
5516 if $_pkg_config libass; then
5517 _ass=yes
5518 def_ass='#define CONFIG_ASS 1'
5519 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5520 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5521 else
5522 _ass=no
5523 def_ass='#undef CONFIG_ASS'
5525 else
5526 def_ass='#undef CONFIG_ASS'
5528 echores "$_ass"
5531 echocheck "fribidi with charsets"
5532 _inc_tmp=""
5533 _ld_tmp=""
5534 if test "$_fribidi" = auto ; then
5535 cat > $TMPC << EOF
5536 #include <stdlib.h>
5537 /* workaround for fribidi 0.10.4 and below */
5538 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5539 #include <fribidi/fribidi.h>
5540 int main(void) {
5541 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5542 exit(1);
5543 return 0;
5546 _fribidi=no
5547 _inc_tmp=""
5548 _ld_tmp="-lfribidi"
5549 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5550 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5551 test "$_fribidi" = no ; then
5552 _inc_tmp="$($_pkg_config --cflags)"
5553 _ld_tmp="$($_pkg_config --libs)"
5554 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5557 if test "$_fribidi" = yes ; then
5558 def_fribidi='#define CONFIG_FRIBIDI 1'
5559 extra_cflags="$extra_cflags $_inc_tmp"
5560 extra_ldflags="$extra_ldflags $_ld_tmp"
5561 else
5562 def_fribidi='#undef CONFIG_FRIBIDI'
5564 echores "$_fribidi"
5567 echocheck "ENCA"
5568 if test "$_enca" = auto ; then
5569 _enca=no
5570 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5572 if test "$_enca" = yes ; then
5573 def_enca='#define CONFIG_ENCA 1'
5574 extra_ldflags="$extra_ldflags -lenca"
5575 else
5576 def_enca='#undef CONFIG_ENCA'
5578 echores "$_enca"
5581 echocheck "zlib"
5582 _zlib=no
5583 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5584 if test "$_zlib" = yes ; then
5585 def_zlib='#define CONFIG_ZLIB 1'
5586 extra_ldflags="$extra_ldflags -lz"
5587 else
5588 def_zlib='#define CONFIG_ZLIB 0'
5590 echores "$_zlib"
5593 echocheck "RTC"
5594 if test "$_rtc" = auto ; then
5595 cat > $TMPC << EOF
5596 #include <sys/ioctl.h>
5597 #ifdef __linux__
5598 #include <linux/rtc.h>
5599 #else
5600 #include <rtc.h>
5601 #define RTC_PIE_ON RTCIO_PIE_ON
5602 #endif
5603 int main(void) { return RTC_PIE_ON; }
5605 _rtc=no
5606 cc_check && _rtc=yes
5607 ppc && _rtc=no
5609 if test "$_rtc" = yes ; then
5610 def_rtc='#define HAVE_RTC 1'
5611 else
5612 def_rtc='#undef HAVE_RTC'
5614 echores "$_rtc"
5617 echocheck "mad support"
5618 if test "$_mad" = auto ; then
5619 _mad=no
5620 header_check mad.h -lmad && _mad=yes
5622 if test "$_mad" = yes ; then
5623 def_mad='#define CONFIG_LIBMAD 1'
5624 extra_ldflags="$extra_ldflags -lmad"
5625 codecmodules="libmad $codecmodules"
5626 else
5627 def_mad='#undef CONFIG_LIBMAD'
5628 nocodecmodules="libmad $nocodecmodules"
5630 echores "$_mad"
5632 echocheck "OggVorbis support"
5633 if test "$_libvorbis" = auto; then
5634 _libvorbis=no
5635 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5637 if test "$_tremor" = auto; then
5638 _tremor=no
5639 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5641 if test "$_tremor" = yes ; then
5642 _vorbis=yes
5643 def_vorbis='#define CONFIG_OGGVORBIS 1'
5644 def_tremor='#define CONFIG_TREMOR 1'
5645 codecmodules="tremor(external) $codecmodules"
5646 res_comment="external Tremor"
5647 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5648 elif test "$_libvorbis" = yes ; then
5649 _vorbis=yes
5650 def_vorbis='#define CONFIG_OGGVORBIS 1'
5651 codecmodules="libvorbis $codecmodules"
5652 res_comment="libvorbis"
5653 extra_ldflags="$extra_ldflags -lvorbis -logg"
5654 else
5655 _vorbis=no
5656 nocodecmodules="libvorbis $nocodecmodules"
5658 echores "$_vorbis"
5660 echocheck "libspeex (version >= 1.1 required)"
5661 if test "$_speex" = auto ; then
5662 _speex=no
5663 cat > $TMPC << EOF
5664 #include <stddef.h>
5665 #include <speex/speex.h>
5666 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5668 cc_check -lspeex $_ld_lm && _speex=yes
5670 if test "$_speex" = yes ; then
5671 def_speex='#define CONFIG_SPEEX 1'
5672 extra_ldflags="$extra_ldflags -lspeex"
5673 codecmodules="speex $codecmodules"
5674 else
5675 def_speex='#undef CONFIG_SPEEX'
5676 nocodecmodules="speex $nocodecmodules"
5678 echores "$_speex"
5680 echocheck "OggTheora support"
5681 if test "$_theora" = auto ; then
5682 _theora=no
5683 cat > $TMPC << EOF
5684 #include <theora/theora.h>
5685 #include <string.h>
5686 int main(void) {
5687 /* Theora is in flux, make sure that all interface routines and datatypes
5688 * exist and work the way we expect it, so we don't break MPlayer. */
5689 ogg_packet op;
5690 theora_comment tc;
5691 theora_info inf;
5692 theora_state st;
5693 yuv_buffer yuv;
5694 int r;
5695 double t;
5697 theora_info_init(&inf);
5698 theora_comment_init(&tc);
5700 return 0;
5702 /* we don't want to execute this kind of nonsense; just for making sure
5703 * that compilation works... */
5704 memset(&op, 0, sizeof(op));
5705 r = theora_decode_header(&inf, &tc, &op);
5706 r = theora_decode_init(&st, &inf);
5707 t = theora_granule_time(&st, op.granulepos);
5708 r = theora_decode_packetin(&st, &op);
5709 r = theora_decode_YUVout(&st, &yuv);
5710 theora_clear(&st);
5712 return 0;
5715 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5716 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5717 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5718 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5719 if test _theora = no; then
5720 _ld_theora="-ltheora -logg"
5721 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5724 if test "$_theora" = yes ; then
5725 def_theora='#define CONFIG_OGGTHEORA 1'
5726 codecmodules="libtheora $codecmodules"
5727 # when --enable-theora is forced, we'd better provide a probably sane
5728 # $_ld_theora than nothing
5729 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5730 else
5731 def_theora='#undef CONFIG_OGGTHEORA'
5732 nocodecmodules="libtheora $nocodecmodules"
5734 echores "$_theora"
5736 echocheck "mp3lib support"
5737 if test "$_mp3lib" = auto ; then
5738 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
5740 if test "$_mp3lib" = yes ; then
5741 def_mp3lib='#define CONFIG_MP3LIB 1'
5742 codecmodules="mp3lib(internal) $codecmodules"
5743 else
5744 def_mp3lib='#undef CONFIG_MP3LIB'
5745 nocodecmodules="mp3lib(internal) $nocodecmodules"
5747 echores "$_mp3lib"
5749 # Any version of libmpg123 shall be fine.
5750 echocheck "mpg123 support"
5751 def_mpg123='#undef CONFIG_MPG123'
5752 if test "$_mpg123" = auto; then
5753 _mpg123=no
5754 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5756 if test "$_mpg123" = yes ; then
5757 def_mpg123='#define CONFIG_MPG123 1'
5758 codecmodules="mpg123 $codecmodules"
5759 else
5760 nocodecmodules="mpg123 $nocodecmodules"
5762 echores "$_mpg123"
5764 echocheck "liba52 support"
5765 def_liba52='#undef CONFIG_LIBA52'
5766 if test "$_liba52" = auto ; then
5767 _liba52=no
5768 cat > $TMPC << EOF
5769 #include <inttypes.h>
5770 #include <a52dec/a52.h>
5771 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5773 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5775 if test "$_liba52" = yes ; then
5776 def_liba52='#define CONFIG_LIBA52 1'
5777 codecmodules="liba52 $codecmodules"
5778 else
5779 nocodecmodules="liba52 $nocodecmodules"
5781 echores "$_liba52"
5783 echocheck "libdca support"
5784 if test "$_libdca" = auto ; then
5785 _libdca=no
5786 for _ld_dca in -ldca -ldts ; do
5787 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5788 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5789 done
5791 if test "$_libdca" = yes ; then
5792 def_libdca='#define CONFIG_LIBDCA 1'
5793 codecmodules="libdca $codecmodules"
5794 else
5795 def_libdca='#undef CONFIG_LIBDCA'
5796 nocodecmodules="libdca $nocodecmodules"
5798 echores "$_libdca"
5800 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5801 if test "$_musepack" = auto ; then
5802 _musepack=no
5803 cat > $TMPC << EOF
5804 #include <stddef.h>
5805 #include <mpcdec/mpcdec.h>
5806 int main(void) {
5807 mpc_streaminfo info;
5808 mpc_decoder decoder;
5809 mpc_decoder_set_streaminfo(&decoder, &info);
5810 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5811 return 0;
5814 cc_check -lmpcdec $_ld_lm && _musepack=yes
5816 if test "$_musepack" = yes ; then
5817 def_musepack='#define CONFIG_MUSEPACK 1'
5818 extra_ldflags="$extra_ldflags -lmpcdec"
5819 codecmodules="musepack $codecmodules"
5820 else
5821 def_musepack='#undef CONFIG_MUSEPACK'
5822 nocodecmodules="musepack $nocodecmodules"
5824 echores "$_musepack"
5827 echocheck "FAAD2 support"
5828 if test "$_faad" = auto ; then
5829 _faad=no
5830 cat > $TMPC << EOF
5831 #include <faad.h>
5832 #ifndef FAAD_MIN_STREAMSIZE
5833 #error Too old version
5834 #endif
5835 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5836 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5838 cc_check -lfaad $_ld_lm && _faad=yes
5841 def_faad='#undef CONFIG_FAAD'
5842 if test "$_faad" = yes ; then
5843 def_faad='#define CONFIG_FAAD 1'
5844 extra_ldflags="$extra_ldflags -lfaad"
5845 codecmodules="faad2 $codecmodules"
5846 else
5847 nocodecmodules="faad2 $nocodecmodules"
5849 echores "$_faad"
5852 echocheck "LADSPA plugin support"
5853 if test "$_ladspa" = auto ; then
5854 _ladspa=no
5855 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5857 if test "$_ladspa" = yes; then
5858 def_ladspa="#define CONFIG_LADSPA 1"
5859 else
5860 def_ladspa="#undef CONFIG_LADSPA"
5862 echores "$_ladspa"
5865 echocheck "libbs2b audio filter support"
5866 if test "$_libbs2b" = auto ; then
5867 cat > $TMPC <<EOF
5868 #include <bs2b.h>
5869 #if BS2B_VERSION_MAJOR < 3
5870 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5871 #endif
5872 int main(void) {
5873 t_bs2bdp filter;
5874 filter=bs2b_open();
5875 bs2b_close(filter);
5876 return 0;
5879 _libbs2b=no
5880 if $_pkg_config --exists libbs2b ; then
5881 _inc_tmp=$($_pkg_config --cflags libbs2b)
5882 _ld_tmp=$($_pkg_config --libs libbs2b)
5883 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5884 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5885 else
5886 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5887 -I/usr/local/include/bs2b ; do
5888 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5889 extra_ldflags="$extra_ldflags -lbs2b"
5890 extra_cflags="$extra_cflags $_inc_tmp"
5891 _libbs2b=yes
5892 break
5894 done
5897 def_libbs2b="#undef CONFIG_LIBBS2B"
5898 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5899 echores "$_libbs2b"
5902 if test -z "$_codecsdir" ; then
5903 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5904 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5905 if test -d "$dir" ; then
5906 _codecsdir="$dir"
5907 break;
5909 done
5911 # Fall back on default directory.
5912 if test -z "$_codecsdir" ; then
5913 _codecsdir="$_libdir/codecs"
5914 mingw32 || os2 && _codecsdir="codecs"
5918 echocheck "Win32 codecs"
5919 if test "$_win32dll" = auto ; then
5920 _win32dll=no
5921 if x86_32 && ! qnx; then
5922 _win32dll=yes
5925 if test "$_win32dll" = yes ; then
5926 def_win32dll='#define CONFIG_WIN32DLL 1'
5927 if ! win32 ; then
5928 def_win32_loader='#define WIN32_LOADER 1'
5929 _win32_emulation=yes
5930 else
5931 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5932 res_comment="using native windows"
5934 codecmodules="win32 $codecmodules"
5935 else
5936 def_win32dll='#undef CONFIG_WIN32DLL'
5937 def_win32_loader='#undef WIN32_LOADER'
5938 nocodecmodules="win32 $nocodecmodules"
5940 echores "$_win32dll"
5943 echocheck "XAnim codecs"
5944 if test "$_xanim" = auto ; then
5945 _xanim=no
5946 res_comment="dynamic loader support needed"
5947 if test "$_dl" = yes ; then
5948 _xanim=yes
5951 if test "$_xanim" = yes ; then
5952 def_xanim='#define CONFIG_XANIM 1'
5953 codecmodules="xanim $codecmodules"
5954 else
5955 def_xanim='#undef CONFIG_XANIM'
5956 nocodecmodules="xanim $nocodecmodules"
5958 echores "$_xanim"
5961 echocheck "RealPlayer codecs"
5962 if test "$_real" = auto ; then
5963 _real=no
5964 res_comment="dynamic loader support needed"
5965 if test "$_dl" = yes || test "$_win32dll" = yes &&
5966 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5967 _real=yes
5970 if test "$_real" = yes ; then
5971 def_real='#define CONFIG_REALCODECS 1'
5972 codecmodules="real $codecmodules"
5973 else
5974 def_real='#undef CONFIG_REALCODECS'
5975 nocodecmodules="real $nocodecmodules"
5977 echores "$_real"
5980 echocheck "QuickTime codecs"
5981 _qtx_emulation=no
5982 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5983 if test "$_qtx" = auto ; then
5984 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5986 if test "$_qtx" = yes ; then
5987 def_qtx='#define CONFIG_QTX_CODECS 1'
5988 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5989 codecmodules="qtx $codecmodules"
5990 darwin || win32 || _qtx_emulation=yes
5991 else
5992 def_qtx='#undef CONFIG_QTX_CODECS'
5993 nocodecmodules="qtx $nocodecmodules"
5995 echores "$_qtx"
5997 echocheck "Nemesi Streaming Media libraries"
5998 if test "$_nemesi" = auto && test "$networking" = yes ; then
5999 _nemesi=no
6000 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6001 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6002 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6003 _nemesi=yes
6006 if test "$_nemesi" = yes; then
6007 _native_rtsp=no
6008 def_nemesi='#define CONFIG_LIBNEMESI 1'
6009 inputmodules="nemesi $inputmodules"
6010 else
6011 _native_rtsp="$networking"
6012 _nemesi=no
6013 def_nemesi='#undef CONFIG_LIBNEMESI'
6014 noinputmodules="nemesi $noinputmodules"
6016 echores "$_nemesi"
6018 echocheck "LIVE555 Streaming Media libraries"
6019 if test "$_live" = auto && test "$networking" = yes ; then
6020 cat > $TMPCPP << EOF
6021 #include <liveMedia.hh>
6022 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6023 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6024 #endif
6025 int main(void) { return 0; }
6028 _live=no
6029 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
6030 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
6031 _livelibdir=$(echo $I| sed s/-I//) &&
6032 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6033 $_livelibdir/groupsock/libgroupsock.a \
6034 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6035 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6036 $extra_ldflags -lstdc++" \
6037 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6038 -I$_livelibdir/UsageEnvironment/include \
6039 -I$_livelibdir/BasicUsageEnvironment/include \
6040 -I$_livelibdir/groupsock/include" &&
6041 _live=yes && break
6042 done
6043 if test "$_live" != yes ; then
6044 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6045 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6046 _live_dist=yes
6050 if test "$_live" = yes && test "$networking" = yes; then
6051 test $_livelibdir && res_comment="using $_livelibdir"
6052 def_live='#define CONFIG_LIVE555 1'
6053 inputmodules="live555 $inputmodules"
6054 elif test "$_live_dist" = yes && test "$networking" = yes; then
6055 res_comment="using distribution version"
6056 _live="yes"
6057 def_live='#define CONFIG_LIVE555 1'
6058 extra_ldflags="$extra_ldflags $ld_tmp"
6059 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6060 inputmodules="live555 $inputmodules"
6061 else
6062 _live=no
6063 def_live='#undef CONFIG_LIVE555'
6064 noinputmodules="live555 $noinputmodules"
6066 echores "$_live"
6070 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6071 echocheck "FFmpeg ($all_ffmpeg_libs)"
6072 if test "$ffmpeg" = auto ; then
6073 ffmpeg=no
6074 if $_pkg_config --exists $all_ffmpeg_libs ; then
6075 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6076 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6077 extra_ldflags="$extra_ldflags $_ld_tmp"
6078 extra_cflags="$extra_cflags $inc_ffmpeg"
6079 ffmpeg=yes
6080 elif header_check libavcore/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6081 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6082 ffmpeg=yes
6086 ffmpeg_eval_api=no
6087 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6088 if test "$ffmpeg" = yes; then
6089 def_ffmpeg='#define CONFIG_FFMPEG 1'
6090 codecmodules="ffmpeg $codecmodules"
6091 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6092 ffmpeg_eval_api=yes
6093 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6095 else
6096 def_ffmpeg='#undef CONFIG_FFMPEG'
6097 nocodecmodules="ffmpeg $nocodecmodules"
6099 echores "$ffmpeg"
6101 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6102 if ! test -z "$_ffmpeg_source" ; then
6103 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6108 echocheck "libdv-0.9.5+"
6109 if test "$_libdv" = auto ; then
6110 _libdv=no
6111 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6113 if test "$_libdv" = yes ; then
6114 def_libdv='#define CONFIG_LIBDV095 1'
6115 extra_ldflags="$extra_ldflags -ldv"
6116 codecmodules="libdv $codecmodules"
6117 else
6118 def_libdv='#undef CONFIG_LIBDV095'
6119 nocodecmodules="libdv $nocodecmodules"
6121 echores "$_libdv"
6124 echocheck "Xvid"
6125 if test "$_xvid" = auto ; then
6126 _xvid=no
6127 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6128 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6129 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6130 done
6133 if test "$_xvid" = yes ; then
6134 def_xvid='#define CONFIG_XVID4 1'
6135 codecmodules="xvid $codecmodules"
6136 else
6137 def_xvid='#undef CONFIG_XVID4'
6138 nocodecmodules="xvid $nocodecmodules"
6140 echores "$_xvid"
6143 echocheck "libnut"
6144 if test "$_libnut" = auto ; then
6145 _libnut=no
6146 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6149 if test "$_libnut" = yes ; then
6150 def_libnut='#define CONFIG_LIBNUT 1'
6151 extra_ldflags="$extra_ldflags -lnut"
6152 else
6153 def_libnut='#undef CONFIG_LIBNUT'
6155 echores "$_libnut"
6157 # These VO checks must be done after the FFmpeg one
6158 echocheck "/dev/mga_vid"
6159 if test "$_mga" = auto ; then
6160 _mga=no
6161 test -c /dev/mga_vid && _mga=yes
6163 if test "$_mga" = yes ; then
6164 def_mga='#define CONFIG_MGA 1'
6165 vomodules="mga $vomodules"
6166 else
6167 def_mga='#undef CONFIG_MGA'
6168 novomodules="mga $novomodules"
6170 echores "$_mga"
6173 echocheck "xmga"
6174 if test "$_xmga" = auto ; then
6175 _xmga=no
6176 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6178 if test "$_xmga" = yes ; then
6179 def_xmga='#define CONFIG_XMGA 1'
6180 vomodules="xmga $vomodules"
6181 else
6182 def_xmga='#undef CONFIG_XMGA'
6183 novomodules="xmga $novomodules"
6185 echores "$_xmga"
6188 echocheck "UnRAR executable"
6189 if test "$_unrar_exec" = auto ; then
6190 _unrar_exec="yes"
6191 mingw32 && _unrar_exec="no"
6193 if test "$_unrar_exec" = yes ; then
6194 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6195 else
6196 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6198 echores "$_unrar_exec"
6200 echocheck "TV interface"
6201 if test "$_tv" = yes ; then
6202 def_tv='#define CONFIG_TV 1'
6203 inputmodules="tv $inputmodules"
6204 else
6205 noinputmodules="tv $noinputmodules"
6206 def_tv='#undef CONFIG_TV'
6208 echores "$_tv"
6211 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6212 echocheck "*BSD BT848 bt8xx header"
6213 _ioctl_bt848_h=no
6214 for file in "machine/ioctl_bt848.h" \
6215 "dev/bktr/ioctl_bt848.h" \
6216 "dev/video/bktr/ioctl_bt848.h" \
6217 "dev/ic/bt8xx.h" ; do
6218 cat > $TMPC <<EOF
6219 #include <sys/types.h>
6220 #include <sys/ioctl.h>
6221 #include <$file>
6222 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6224 if cc_check ; then
6225 _ioctl_bt848_h=yes
6226 _ioctl_bt848_h_name="$file"
6227 break;
6229 done
6230 if test "$_ioctl_bt848_h" = yes ; then
6231 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6232 res_comment="using $_ioctl_bt848_h_name"
6233 else
6234 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6236 echores "$_ioctl_bt848_h"
6238 echocheck "*BSD ioctl_meteor.h"
6239 _ioctl_meteor_h=no
6240 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6241 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6242 _ioctl_meteor_h=yes && break
6243 done
6244 if test "$_ioctl_meteor_h" = yes ; then
6245 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6246 res_comment="using $ioctl_meteor_h_path"
6247 else
6248 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6250 echores "$_ioctl_meteor_h"
6252 echocheck "*BSD BrookTree 848 TV interface"
6253 if test "$_tv_bsdbt848" = auto ; then
6254 _tv_bsdbt848=no
6255 if test "$_tv" = yes ; then
6256 cat > $TMPC <<EOF
6257 #include <sys/types.h>
6258 $def_ioctl_meteor_h_name
6259 $def_ioctl_bt848_h_name
6260 #ifdef IOCTL_METEOR_H_NAME
6261 #include IOCTL_METEOR_H_NAME
6262 #endif
6263 #ifdef IOCTL_BT848_H_NAME
6264 #include IOCTL_BT848_H_NAME
6265 #endif
6266 int main(void) {
6267 ioctl(0, METEORSINPUT, 0);
6268 ioctl(0, TVTUNER_GETFREQ, 0);
6269 return 0;
6272 cc_check && _tv_bsdbt848=yes
6275 if test "$_tv_bsdbt848" = yes ; then
6276 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6277 inputmodules="tv-bsdbt848 $inputmodules"
6278 else
6279 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6280 noinputmodules="tv-bsdbt848 $noinputmodules"
6282 echores "$_tv_bsdbt848"
6283 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6286 echocheck "DirectShow TV interface"
6287 if test "$_tv_dshow" = auto ; then
6288 _tv_dshow=no
6289 if test "$_tv" = yes && win32 ; then
6290 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6293 if test "$_tv_dshow" = yes ; then
6294 inputmodules="tv-dshow $inputmodules"
6295 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6296 extra_ldflags="$extra_ldflags -lole32 -luuid"
6297 else
6298 noinputmodules="tv-dshow $noinputmodules"
6299 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6301 echores "$_tv_dshow"
6304 echocheck "Video 4 Linux TV interface"
6305 if test "$_tv_v4l1" = auto ; then
6306 _tv_v4l1=no
6307 if test "$_tv" = yes && linux ; then
6308 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6311 if test "$_tv_v4l1" = yes ; then
6312 _audio_input=yes
6313 _tv_v4l=yes
6314 def_tv_v4l='#define CONFIG_TV_V4L 1'
6315 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6316 inputmodules="tv-v4l $inputmodules"
6317 else
6318 noinputmodules="tv-v4l1 $noinputmodules"
6319 def_tv_v4l='#undef CONFIG_TV_V4L'
6321 echores "$_tv_v4l1"
6324 echocheck "Video 4 Linux 2 TV interface"
6325 if test "$_tv_v4l2" = auto ; then
6326 _tv_v4l2=no
6327 if test "$_tv" = yes && linux ; then
6328 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6331 if test "$_tv_v4l2" = yes ; then
6332 _audio_input=yes
6333 _tv_v4l=yes
6334 def_tv_v4l='#define CONFIG_TV_V4L 1'
6335 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6336 inputmodules="tv-v4l2 $inputmodules"
6337 else
6338 noinputmodules="tv-v4l2 $noinputmodules"
6339 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6341 echores "$_tv_v4l2"
6344 echocheck "Radio interface"
6345 if test "$_radio" = yes ; then
6346 def_radio='#define CONFIG_RADIO 1'
6347 inputmodules="radio $inputmodules"
6348 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6349 _radio_capture=no
6351 if test "$_radio_capture" = yes ; then
6352 _audio_input=yes
6353 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6354 else
6355 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6357 else
6358 noinputmodules="radio $noinputmodules"
6359 def_radio='#undef CONFIG_RADIO'
6360 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6361 _radio_capture=no
6363 echores "$_radio"
6364 echocheck "Capture for Radio interface"
6365 echores "$_radio_capture"
6367 echocheck "Video 4 Linux 2 Radio interface"
6368 if test "$_radio_v4l2" = auto ; then
6369 _radio_v4l2=no
6370 if test "$_radio" = yes && linux ; then
6371 header_check linux/videodev2.h && _radio_v4l2=yes
6374 if test "$_radio_v4l2" = yes ; then
6375 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6376 else
6377 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6379 echores "$_radio_v4l2"
6381 echocheck "Video 4 Linux Radio interface"
6382 if test "$_radio_v4l" = auto ; then
6383 _radio_v4l=no
6384 if test "$_radio" = yes && linux ; then
6385 header_check linux/videodev.h && _radio_v4l=yes
6388 if test "$_radio_v4l" = yes ; then
6389 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6390 else
6391 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6393 echores "$_radio_v4l"
6395 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6396 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6397 echocheck "*BSD BrookTree 848 Radio interface"
6398 _radio_bsdbt848=no
6399 cat > $TMPC <<EOF
6400 #include <sys/types.h>
6401 $def_ioctl_bt848_h_name
6402 #ifdef IOCTL_BT848_H_NAME
6403 #include IOCTL_BT848_H_NAME
6404 #endif
6405 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6407 cc_check && _radio_bsdbt848=yes
6408 echores "$_radio_bsdbt848"
6409 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6411 if test "$_radio_bsdbt848" = yes ; then
6412 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6413 else
6414 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6417 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6418 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6419 die "Radio driver requires BSD BT848, V4L or V4L2!"
6422 echocheck "Video 4 Linux 2 MPEG PVR interface"
6423 if test "$_pvr" = auto ; then
6424 _pvr=no
6425 if test "$_tv_v4l2" = yes && linux ; then
6426 cat > $TMPC <<EOF
6427 #include <sys/time.h>
6428 #include <linux/videodev2.h>
6429 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6431 cc_check && _pvr=yes
6434 if test "$_pvr" = yes ; then
6435 def_pvr='#define CONFIG_PVR 1'
6436 inputmodules="pvr $inputmodules"
6437 else
6438 noinputmodules="pvr $noinputmodules"
6439 def_pvr='#undef CONFIG_PVR'
6441 echores "$_pvr"
6444 echocheck "ftp"
6445 if test "$_ftp" = "auto" ; then
6446 test "$networking" = "yes" && ! beos && _ftp=yes
6448 if test "$_ftp" = yes ; then
6449 def_ftp='#define CONFIG_FTP 1'
6450 inputmodules="ftp $inputmodules"
6451 else
6452 noinputmodules="ftp $noinputmodules"
6453 def_ftp='#undef CONFIG_FTP'
6455 echores "$_ftp"
6457 echocheck "vstream client"
6458 if test "$_vstream" = auto ; then
6459 _vstream=no
6460 cat > $TMPC <<EOF
6461 #include <vstream-client.h>
6462 void vstream_error(const char *format, ... ) {}
6463 int main(void) { vstream_start(); return 0; }
6465 cc_check -lvstream-client && _vstream=yes
6467 if test "$_vstream" = yes ; then
6468 def_vstream='#define CONFIG_VSTREAM 1'
6469 inputmodules="vstream $inputmodules"
6470 extra_ldflags="$extra_ldflags -lvstream-client"
6471 else
6472 noinputmodules="vstream $noinputmodules"
6473 def_vstream='#undef CONFIG_VSTREAM'
6475 echores "$_vstream"
6478 echocheck "OSD menu"
6479 if test "$_menu" = yes ; then
6480 def_menu='#define CONFIG_MENU 1'
6481 test $_dvbin = "yes" && _menu_dvbin=yes
6482 else
6483 def_menu='#undef CONFIG_MENU'
6484 _menu_dvbin=no
6486 echores "$_menu"
6489 echocheck "Subtitles sorting"
6490 if test "$_sortsub" = yes ; then
6491 def_sortsub='#define CONFIG_SORTSUB 1'
6492 else
6493 def_sortsub='#undef CONFIG_SORTSUB'
6495 echores "$_sortsub"
6498 echocheck "XMMS inputplugin support"
6499 if test "$_xmms" = yes ; then
6500 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6501 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6502 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6503 else
6504 _xmmsplugindir=/usr/lib/xmms/Input
6505 _xmmslibdir=/usr/lib
6508 def_xmms='#define CONFIG_XMMS 1'
6509 if darwin ; then
6510 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6511 else
6512 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6514 else
6515 def_xmms='#undef CONFIG_XMMS'
6517 echores "$_xmms"
6519 if test "$_charset" != "noconv" ; then
6520 def_charset="#define MSG_CHARSET \"$_charset\""
6521 else
6522 def_charset="#undef MSG_CHARSET"
6523 _charset="UTF-8"
6526 #############################################################################
6528 echocheck "automatic gdb attach"
6529 if test "$_crash_debug" = yes ; then
6530 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6531 else
6532 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6533 _crash_debug=no
6535 echores "$_crash_debug"
6537 echocheck "compiler support for noexecstack"
6538 if cflag_check -Wl,-z,noexecstack ; then
6539 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6540 echores "yes"
6541 else
6542 echores "no"
6545 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6546 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6547 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6548 echores "yes"
6549 else
6550 echores "no"
6554 # Dynamic linking flags
6555 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6556 _ld_dl_dynamic=''
6557 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6558 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6559 _ld_dl_dynamic='-rdynamic'
6562 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6563 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6564 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6566 def_debug='#undef MP_DEBUG'
6567 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6570 echocheck "joystick"
6571 def_joystick='#undef CONFIG_JOYSTICK'
6572 if test "$_joystick" = yes ; then
6573 if linux || freebsd ; then
6574 # TODO add some check
6575 def_joystick='#define CONFIG_JOYSTICK 1'
6576 else
6577 _joystick="no"
6578 res_comment="unsupported under $system_name"
6581 echores "$_joystick"
6583 echocheck "lirc"
6584 if test "$_lirc" = auto ; then
6585 _lirc=no
6586 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6588 if test "$_lirc" = yes ; then
6589 def_lirc='#define CONFIG_LIRC 1'
6590 libs_mplayer="$libs_mplayer -llirc_client"
6591 else
6592 def_lirc='#undef CONFIG_LIRC'
6594 echores "$_lirc"
6596 echocheck "lircc"
6597 if test "$_lircc" = auto ; then
6598 _lircc=no
6599 header_check lirc/lircc.h -llircc && _lircc=yes
6601 if test "$_lircc" = yes ; then
6602 def_lircc='#define CONFIG_LIRCC 1'
6603 libs_mplayer="$libs_mplayer -llircc"
6604 else
6605 def_lircc='#undef CONFIG_LIRCC'
6607 echores "$_lircc"
6609 if arm; then
6610 # Detect maemo development platform libraries availability (http://www.maemo.org),
6611 # they are used when run on Nokia 770|8x0
6612 echocheck "maemo (Nokia 770|8x0)"
6613 if test "$_maemo" = auto ; then
6614 _maemo=no
6615 statement_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
6617 if test "$_maemo" = yes ; then
6618 def_maemo='#define CONFIG_MAEMO 1'
6619 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
6620 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
6621 else
6622 def_maemo='#undef CONFIG_MAEMO'
6624 echores "$_maemo"
6627 #############################################################################
6629 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6630 # the OMF format needs to come after the 'extern symbol prefix' check, which
6631 # uses nm.
6632 if os2 ; then
6633 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6636 #############################################################################
6637 # 64 bit file offsets?
6638 if test "$_largefiles" = yes || freebsd ; then
6639 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
6640 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
6641 # dvdread support requires this (for off64_t)
6642 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
6646 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6648 # This must be the last test to be performed. Any other tests following it
6649 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6650 # against libdvdread (to permit MPlayer to use its own copy of the library).
6651 # So any compilation using the flags added here but not linking against
6652 # libdvdread can fail.
6653 echocheck "DVD support (libdvdnav)"
6654 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6655 _dvdnav=no
6657 dvdnav_internal=no
6658 if test "$_dvdnav" = auto ; then
6659 if test "$_dvdread_internal" = yes ; then
6660 _dvdnav=yes
6661 dvdnav_internal=yes
6662 res_comment="internal"
6663 else
6664 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6667 if test "$_dvdnav" = auto ; then
6668 _dvdnav=no
6669 _dvdnavdir=$($_dvdnavconfig --cflags)
6670 _dvdnavlibs=$($_dvdnavconfig --libs)
6671 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6673 if test "$_dvdnav" = yes ; then
6674 _largefiles=yes
6675 def_dvdnav='#define CONFIG_DVDNAV 1'
6676 if test "$dvdnav_internal" = yes ; then
6677 cflags_libdvdnav="-Ilibdvdnav"
6678 inputmodules="dvdnav(internal) $inputmodules"
6679 else
6680 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6681 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6682 inputmodules="dvdnav $inputmodules"
6684 else
6685 def_dvdnav='#undef CONFIG_DVDNAV'
6686 noinputmodules="dvdnav $noinputmodules"
6688 echores "$_dvdnav"
6690 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6691 # Read dvdnav comment above.
6693 mak_enable () {
6694 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6695 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6696 nprefix=$3;
6697 for part in $list; do
6698 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6699 echo "${nprefix}_$part = yes"
6701 done
6704 #############################################################################
6705 echo "Creating config.mak"
6706 cat > config.mak << EOF
6707 # -------- Generated by configure -----------
6709 # Ensure that locale settings do not interfere with shell commands.
6710 export LC_ALL = C
6712 CONFIGURATION = $configuration
6714 CHARSET = $_charset
6715 DOC_LANGS = $language_doc
6716 DOC_LANG_ALL = $doc_lang_all
6717 MAN_LANGS = $language_man
6718 MAN_LANG_ALL = $man_lang_all
6719 MSG_LANGS = $language_msg
6720 MSG_LANG_ALL = $msg_lang_all
6722 prefix = \$(DESTDIR)$_prefix
6723 BINDIR = \$(DESTDIR)$_bindir
6724 DATADIR = \$(DESTDIR)$_datadir
6725 LIBDIR = \$(DESTDIR)$_libdir
6726 MANDIR = \$(DESTDIR)$_mandir
6727 CONFDIR = \$(DESTDIR)$_confdir
6728 LOCALEDIR = \$(DESTDIR)$_localedir
6730 AR = $_ar
6731 AS = $_cc
6732 CC = $_cc
6733 CXX = $_cc
6734 HOST_CC = $_host_cc
6735 INSTALL = $_install
6736 INSTALLSTRIP = $_install_strip
6737 WINDRES = $_windres
6739 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6740 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6741 DEPFLAGS = $DEPFLAGS
6743 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6744 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6745 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6746 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6747 CFLAGS_STACKREALIGN = $cflags_stackrealign
6749 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6750 EXTRALIBS_MPLAYER = $libs_mplayer
6752 GETCH = $_getch
6753 TIMER = $_timer
6755 EXESUF = $_exesuf
6756 EXESUFS_ALL = .exe
6758 ARCH = $arch
6759 $(mak_enable "$arch_all" "$arch" ARCH)
6760 $(mak_enable "$subarch_all" "$subarch" ARCH)
6761 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6763 MPLAYER = $_mplayer
6765 NEED_GETTIMEOFDAY = $need_gettimeofday
6766 NEED_GLOB = $need_glob
6767 NEED_MMAP = $need_mmap
6768 NEED_SETENV = $need_setenv
6769 NEED_SHMEM = $need_shmem
6770 NEED_STRSEP = $need_strsep
6771 NEED_SWAB = $need_swab
6772 NEED_VSSCANF = $need_vsscanf
6774 # features
6775 3DFX = $_3dfx
6776 AA = $_aa
6777 ALSA1X = $_alsa1x
6778 ALSA9 = $_alsa9
6779 ALSA5 = $_alsa5
6780 APPLE_IR = $_apple_ir
6781 APPLE_REMOTE = $_apple_remote
6782 ARTS = $_arts
6783 AUDIO_INPUT = $_audio_input
6784 BITMAP_FONT = $_bitmap_font
6785 BL = $_bl
6786 CACA = $_caca
6787 CDDA = $_cdda
6788 CDDB = $_cddb
6789 COREAUDIO = $_coreaudio
6790 COREVIDEO = $_corevideo
6791 DART = $_dart
6792 DGA = $_dga
6793 DIRECT3D = $_direct3d
6794 DIRECTFB = $_directfb
6795 DIRECTX = $_directx
6796 DVBIN = $_dvbin
6797 DVDNAV = $_dvdnav
6798 DVDNAV_INTERNAL = $dvdnav_internal
6799 DVDREAD = $_dvdread
6800 DVDREAD_INTERNAL = $_dvdread_internal
6801 DXR3 = $_dxr3
6802 ESD = $_esd
6803 FAAD = $_faad
6804 FASTMEMCPY = $_fastmemcpy
6805 FBDEV = $_fbdev
6806 FREETYPE = $_freetype
6807 FTP = $_ftp
6808 GIF = $_gif
6809 GGI = $_ggi
6810 GL = $_gl
6811 GL_WIN32 = $_gl_win32
6812 GL_X11 = $_gl_x11
6813 GL_SDL = $_gl_sdl
6814 MATRIXVIEW = $matrixview
6815 HAVE_POSIX_SELECT = $_posix_select
6816 HAVE_SYS_MMAN_H = $_mman
6817 IVTV = $_ivtv
6818 JACK = $_jack
6819 JOYSTICK = $_joystick
6820 JPEG = $_jpeg
6821 KAI = $_kai
6822 KVA = $_kva
6823 LADSPA = $_ladspa
6824 LIBA52 = $_liba52
6825 LIBASS = $_ass
6826 LIBBLURAY = $_bluray
6827 LIBBS2B = $_libbs2b
6828 LIBDCA = $_libdca
6829 LIBDV = $_libdv
6830 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6831 LIBMAD = $_mad
6832 LIBMENU = $_menu
6833 LIBMENU_DVBIN = $_menu_dvbin
6834 LIBNEMESI = $_nemesi
6835 LIBNUT = $_libnut
6836 LIBSMBCLIENT = $_smb
6837 LIBTHEORA = $_theora
6838 LIRC = $_lirc
6839 LIVE555 = $_live
6840 MACOSX_FINDER = $_macosx_finder
6841 MD5SUM = $_md5sum
6842 MGA = $_mga
6843 MNG = $_mng
6844 MP3LIB = $_mp3lib
6845 MPG123 = $_mpg123
6846 MUSEPACK = $_musepack
6847 NAS = $_nas
6848 NATIVE_RTSP = $_native_rtsp
6849 NETWORKING = $networking
6850 OPENAL = $_openal
6851 OSS = $_ossaudio
6852 PE_EXECUTABLE = $_pe_executable
6853 PNG = $_png
6854 PNM = $_pnm
6855 PRIORITY = $_priority
6856 PULSE = $_pulse
6857 PVR = $_pvr
6858 QTX_CODECS = $_qtx
6859 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6860 QTX_EMULATION = $_qtx_emulation
6861 QUARTZ = $_quartz
6862 RADIO=$_radio
6863 RADIO_CAPTURE=$_radio_capture
6864 REAL_CODECS = $_real
6865 S3FB = $_s3fb
6866 SDL = $_sdl
6867 SPEEX = $_speex
6868 STREAM_CACHE = $_stream_cache
6869 SGIAUDIO = $_sgiaudio
6870 SUNAUDIO = $_sunaudio
6871 SVGA = $_svga
6872 TDFXFB = $_tdfxfb
6873 TDFXVID = $_tdfxvid
6874 TGA = $_tga
6875 TV = $_tv
6876 TV_BSDBT848 = $_tv_bsdbt848
6877 TV_DSHOW = $_tv_dshow
6878 TV_V4L = $_tv_v4l
6879 TV_V4L1 = $_tv_v4l1
6880 TV_V4L2 = $_tv_v4l2
6881 UNRAR_EXEC = $_unrar_exec
6882 V4L2 = $_v4l2
6883 VCD = $_vcd
6884 VDPAU = $_vdpau
6885 VESA = $_vesa
6886 VORBIS = $_vorbis
6887 VSTREAM = $_vstream
6888 WII = $_wii
6889 WIN32DLL = $_win32dll
6890 WIN32WAVEOUT = $_win32waveout
6891 WIN32_EMULATION = $_win32_emulation
6892 X11 = $_x11
6893 XANIM_CODECS = $_xanim
6894 XMGA = $_xmga
6895 XMMS_PLUGINS = $_xmms
6896 XV = $_xv
6897 XVID4 = $_xvid
6898 XVMC = $_xvmc
6899 XVR100 = $_xvr100
6900 YUV4MPEG = $_yuv4mpeg
6902 # FFmpeg
6903 FFMPEG = $ffmpeg
6904 FFMPEG_EVAL_API = $ffmpeg_eval_api
6905 FFMPEG_INTERNALS = $ffmpeg_internals
6906 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6908 RANLIB = $_ranlib
6909 YASM = $_yasm
6910 YASMFLAGS = $YASMFLAGS
6912 CONFIG_VDPAU = $_vdpau
6913 CONFIG_XVMC = $_xvmc
6914 CONFIG_ZLIB = $_zlib
6916 HAVE_PTHREADS = $_pthreads
6917 HAVE_SHM = $_shm
6918 HAVE_W32THREADS = $_w32threads
6919 HAVE_YASM = $have_yasm
6923 #############################################################################
6925 ff_config_enable () {
6926 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6927 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6928 _nprefix=$3;
6929 test -z "$_nprefix" && _nprefix='CONFIG'
6930 for part in $list; do
6931 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6932 echo "#define ${_nprefix}_$part 1"
6933 else
6934 echo "#define ${_nprefix}_$part 0"
6936 done
6939 echo "Creating config.h"
6940 cat > $TMPH << EOF
6941 /*----------------------------------------------------------------------------
6942 ** This file has been automatically generated by configure any changes in it
6943 ** will be lost when you run configure again.
6944 ** Instead of modifying definitions here, use the --enable/--disable options
6945 ** of the configure script! See ./configure --help for details.
6946 *---------------------------------------------------------------------------*/
6948 #ifndef MPLAYER_CONFIG_H
6949 #define MPLAYER_CONFIG_H
6951 /* Undefine this if you do not want to select mono audio (left or right)
6952 with a stereo MPEG layer 2/3 audio stream. The command line option
6953 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6954 right-only), with 0 being the default.
6956 #define CONFIG_FAKE_MONO 1
6958 /* set up audio OUTBURST. Do not change this! */
6959 #define OUTBURST 512
6961 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6962 #undef FAST_OSD
6963 #undef FAST_OSD_TABLE
6967 #define CONFIGURATION "$configuration"
6969 #define MPLAYER_DATADIR "$_datadir"
6970 #define MPLAYER_CONFDIR "$_confdir"
6971 #define MPLAYER_LIBDIR "$_libdir"
6972 #define MPLAYER_LOCALEDIR "$_localedir"
6974 $def_translation
6976 /* definitions needed by included libraries */
6977 #define HAVE_INTTYPES_H 1
6978 /* libdvdcss */
6979 #define HAVE_ERRNO_H 1
6980 /* libdvdcss + libdvdread */
6981 #define HAVE_LIMITS_H 1
6982 /* libdvdcss */
6983 #define HAVE_UNISTD_H 1
6984 /* libdvdread */
6985 #define STDC_HEADERS 1
6986 #define HAVE_MEMCPY 1
6987 /* libdvdnav */
6988 #define READ_CACHE_TRACE 0
6989 /* libdvdread */
6990 #define HAVE_DLFCN_H 1
6991 $def_dvdcss
6994 /* system headers */
6995 $def_alloca_h
6996 $def_alsa_asoundlib_h
6997 $def_altivec_h
6998 $def_malloc_h
6999 $def_mman_h
7000 $def_mman_has_map_failed
7001 $def_soundcard_h
7002 $def_sys_asoundlib_h
7003 $def_sys_soundcard_h
7004 $def_sys_sysinfo_h
7005 $def_termios_h
7006 $def_termios_sys_h
7007 $def_winsock2_h
7010 /* system functions */
7011 $def_gethostbyname2
7012 $def_gettimeofday
7013 $def_glob
7014 $def_langinfo
7015 $def_lrintf
7016 $def_map_memalign
7017 $def_memalign
7018 $def_nanosleep
7019 $def_posix_select
7020 $def_select
7021 $def_setenv
7022 $def_setmode
7023 $def_shm
7024 $def_strsep
7025 $def_swab
7026 $def_sysi86
7027 $def_sysi86_iv
7028 $def_termcap
7029 $def_termios
7030 $def_vsscanf
7033 /* system-specific features */
7034 $def_asmalign_pot
7035 $def_builtin_expect
7036 $def_dl
7037 $def_dos_paths
7038 $def_extern_asm
7039 $def_extern_prefix
7040 $def_iconv
7041 $def_kstat
7042 $def_macosx_bundle
7043 $def_macosx_finder
7044 $def_maemo
7045 $def_named_asm_args
7046 $def_priority
7047 $def_quicktime
7048 $def_restrict_keyword
7049 $def_rtc
7050 $def_unrar_exec
7053 /* configurable options */
7054 $def_charset
7055 $def_crash_debug
7056 $def_debug
7057 $def_dynamic_plugins
7058 $def_fastmemcpy
7059 $def_menu
7060 $def_runtime_cpudetection
7061 $def_sighandler
7062 $def_sortsub
7063 $def_stream_cache
7064 $def_pthread_cache
7067 /* CPU stuff */
7068 #define __CPU__ $iproc
7069 $def_ebx_available
7070 $def_words_endian
7071 $def_bigendian
7072 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7073 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7074 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7077 /* Blu-ray/DVD/VCD/CD */
7078 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7079 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7080 $def_bluray
7081 $def_bsdi_dvd
7082 $def_cddb
7083 $def_cdio
7084 $def_cdparanoia
7085 $def_cdrom
7086 $def_dvd
7087 $def_dvd_bsd
7088 $def_dvd_darwin
7089 $def_dvd_linux
7090 $def_dvd_openbsd
7091 $def_dvdio
7092 $def_dvdnav
7093 $def_dvdread
7094 $def_hpux_scsi_h
7095 $def_libcdio
7096 $def_sol_scsi_h
7097 $def_vcd
7100 /* codec libraries */
7101 $def_faad
7102 $def_liba52
7103 $def_libdca
7104 $def_libdv
7105 $def_mad
7106 $def_mp3lib
7107 $def_mpg123
7108 $def_musepack
7109 $def_speex
7110 $def_theora
7111 $def_tremor
7112 $def_vorbis
7113 $def_xvid
7114 $def_zlib
7116 $def_libnut
7119 /* binary codecs */
7120 $def_qtx
7121 $def_qtx_win32
7122 $def_real
7123 $def_win32_loader
7124 $def_win32dll
7125 $def_xanim
7126 $def_xmms
7127 #define BINARY_CODECS_PATH "$_codecsdir"
7128 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7131 /* Audio output drivers */
7132 $def_alsa
7133 $def_alsa1x
7134 $def_alsa5
7135 $def_alsa9
7136 $def_arts
7137 $def_coreaudio
7138 $def_dart
7139 $def_esd
7140 $def_esd_latency
7141 $def_jack
7142 $def_kai
7143 $def_nas
7144 $def_openal
7145 $def_openal_h
7146 $def_ossaudio
7147 $def_ossaudio_devdsp
7148 $def_ossaudio_devmixer
7149 $def_pulse
7150 $def_sgiaudio
7151 $def_sunaudio
7152 $def_win32waveout
7154 $def_ladspa
7155 $def_libbs2b
7158 /* input */
7159 $def_apple_ir
7160 $def_apple_remote
7161 $def_ioctl_bt848_h_name
7162 $def_ioctl_meteor_h_name
7163 $def_joystick
7164 $def_lirc
7165 $def_lircc
7166 $def_pvr
7167 $def_radio
7168 $def_radio_bsdbt848
7169 $def_radio_capture
7170 $def_radio_v4l
7171 $def_radio_v4l2
7172 $def_tv
7173 $def_tv_bsdbt848
7174 $def_tv_dshow
7175 $def_tv_v4l
7176 $def_tv_v4l1
7177 $def_tv_v4l2
7180 /* font stuff */
7181 $def_ass
7182 $def_bitmap_font
7183 $def_enca
7184 $def_fontconfig
7185 $def_freetype
7186 $def_fribidi
7189 /* networking */
7190 $def_closesocket
7191 $def_ftp
7192 $def_inet6
7193 $def_inet_aton
7194 $def_inet_pton
7195 $def_live
7196 $def_nemesi
7197 $def_networking
7198 $def_smb
7199 $def_socklen_t
7200 $def_vstream
7203 /* libvo options */
7204 $def_3dfx
7205 $def_aa
7206 $def_bl
7207 $def_caca
7208 $def_corevideo
7209 $def_dga
7210 $def_dga1
7211 $def_dga2
7212 $def_direct3d
7213 $def_directfb
7214 $def_directx
7215 $def_dvb
7216 $def_dvbin
7217 $def_dxr3
7218 $def_fbdev
7219 $def_ggi
7220 $def_ggiwmh
7221 $def_gif
7222 $def_gif_4
7223 $def_gif_tvt_hack
7224 $def_gl
7225 $def_gl_win32
7226 $def_gl_x11
7227 $def_gl_sdl
7228 $def_matrixview
7229 $def_ivtv
7230 $def_jpeg
7231 $def_kva
7232 $def_md5sum
7233 $def_mga
7234 $def_mng
7235 $def_png
7236 $def_pnm
7237 $def_quartz
7238 $def_s3fb
7239 $def_sdl
7240 $def_sdl_sdl_h
7241 $def_svga
7242 $def_tdfxfb
7243 $def_tdfxvid
7244 $def_tga
7245 $def_v4l2
7246 $def_vdpau
7247 $def_vesa
7248 $def_vm
7249 $def_wii
7250 $def_x11
7251 $def_xdpms
7252 $def_xf86keysym
7253 $def_xinerama
7254 $def_xmga
7255 $def_xss
7256 $def_xv
7257 $def_xvmc
7258 $def_xvr100
7259 $def_yuv4mpeg
7262 /* FFmpeg */
7263 $def_ffmpeg
7264 $def_ffmpeg_eval_api
7265 $def_ffmpeg_internals
7267 $def_arpa_inet_h
7268 $def_bswap
7269 $def_dcbzl
7270 $def_exp2
7271 $def_exp2f
7272 $def_fast_64bit
7273 $def_fast_unaligned
7274 $def_llrint
7275 $def_log2
7276 $def_log2f
7277 $def_lrint
7278 $def_memalign_hack
7279 $def_mkstemp
7280 $def_posix_memalign
7281 $def_pthreads
7282 $def_round
7283 $def_roundf
7284 $def_ten_operands
7285 $def_threads
7286 $def_truncf
7287 $def_xform_asm
7288 $def_yasm
7290 #define HAVE_INLINE_ASM 1
7292 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7293 #ifndef MP_DEBUG
7294 #define HAVE_EBP_AVAILABLE 1
7295 #else
7296 #define HAVE_EBP_AVAILABLE 0
7297 #endif
7299 #endif /* MPLAYER_CONFIG_H */
7302 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7303 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7305 #############################################################################
7307 ./version.sh `$_cc -dumpversion`
7309 cat << EOF
7311 Config files successfully generated by ./configure $configuration !
7313 Install prefix: $_prefix
7314 Data directory: $_datadir
7315 Config direct.: $_confdir
7317 Byte order: $_byte_order
7318 Optimizing for: $_optimizing
7320 Languages:
7321 Messages (in addition to English): $language_msg
7322 Manual pages: $language_man
7323 Documentation: $language_doc
7325 Enabled optional drivers:
7326 Input: $inputmodules
7327 Codecs: $codecmodules
7328 Audio output: $aomodules
7329 Video output: $vomodules
7331 Disabled optional drivers:
7332 Input: $noinputmodules
7333 Codecs: $nocodecmodules
7334 Audio output: $noaomodules
7335 Video output: $novomodules
7337 'config.h' and 'config.mak' contain your configuration options.
7338 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7339 compile *** DO NOT REPORT BUGS if you tweak these files ***
7341 'make' will now compile MPlayer and 'make install' will install it.
7342 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7347 if test "$_mtrr" = yes ; then
7348 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7349 echo
7352 if ! x86_32; then
7353 cat <<EOF
7354 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7355 operating system ($system_name). You may encounter a few files that cannot
7356 be played due to missing open source video/audio codec support.
7362 cat <<EOF
7363 Check $TMPLOG if you wonder why an autodetection failed (make sure
7364 development headers/packages are installed).
7366 NOTE: The --enable-* parameters unconditionally force options on, completely
7367 skipping autodetection. This behavior is unlike what you may be used to from
7368 autoconf-based configure scripts that can decide to override you. This greater
7369 level of control comes at a price. You may have to provide the correct compiler
7370 and linker flags yourself.
7371 If you used one of these options (except --enable-menu and similar ones that
7372 turn on internal features) and experience a compilation or linking failure,
7373 make sure you have passed the necessary compiler/linker flags to configure.
7375 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7379 if test "$warn_cflags" = yes; then
7380 cat <<EOF
7382 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7383 but:
7385 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7387 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7388 To do so, execute 'CFLAGS= ./configure <options>'
7393 # Last move:
7394 rm -rf "$mplayer_tmpdir"