configure: Make largefile support non-optional
[mplayer/greg.git] / configure
blob0b5f61c14d637af79176c7d4934d2c64f25e7b8c
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, look at the existing checks
23 # and try to use helper functions where you can.
25 # Furthermore you need to add the variable _feature to the list of default
26 # settings and set it to one of yes/no/auto. Also add appropriate
27 # --enable-feature/--disable-feature command line options.
28 # The results of the check should be written to config.h and config.mak
29 # at the end of this script. The variable names used for this should be
30 # uniform, i.e. if the option is named 'feature':
32 # _feature : should have a value of yes/no/auto
33 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
34 # _ld_feature : '-L/path/dir -lfeature' GCC options
36 #############################################################################
38 # Prevent locale nonsense from breaking basic text processing utils
39 export LC_ALL=C
41 # Store the configure line that was used
42 configuration="$*"
44 # Prefer these macros to full length text !
45 # These macros only return an error code - NO display is done
46 compile_check() {
47 source="$1"
48 shift
49 echo >> "$TMPLOG"
50 cat "$source" >> "$TMPLOG"
51 echo >> "$TMPLOG"
52 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
53 rm -f "$TMPEXE"
54 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
55 TMPRES="$?"
56 echo >> "$TMPLOG"
57 echo >> "$TMPLOG"
58 return "$TMPRES"
61 cc_check() {
62 compile_check $TMPC $@
65 cxx_check() {
66 compile_check $TMPCPP $@ -lstdc++
69 cflag_check() {
70 cat > $TMPC << EOF
71 int main(void) { return 0; }
72 EOF
73 compile_check $TMPC $@
76 header_check() {
77 cat > $TMPC << EOF
78 #include <$1>
79 int main(void) { return 0; }
80 EOF
81 shift
82 compile_check $TMPC $@
85 return_check() {
86 cat > $TMPC << EOF
87 #include <$1>
88 int main(void) { return $2; }
89 EOF
90 shift 2
91 compile_check $TMPC $@
94 statement_check() {
95 cat > $TMPC << EOF
96 #include <$1>
97 int main(void) { $2; return 0; }
98 EOF
99 shift
100 shift
101 compile_check $TMPC $@
104 define_statement_check() {
105 cat > $TMPC << EOF
106 #define $1
107 #include <$2>
108 int main(void) { $3; return 0; }
110 shift 3
111 compile_check $TMPC $@
114 return_statement_check() {
115 cat > $TMPC << EOF
116 #include <$1>
117 int main(void) { $2; return $3; }
119 shift 3
120 compile_check $TMPC $@
123 inline_asm_check() {
124 cat > $TMPC << EOF
125 int main(void) { __asm__ volatile ($1); return 0; }
127 shift
128 compile_check $TMPC $@
131 # The following checks are special and should only be used with broken and
132 # non-selfsufficient headers that do not include all of their dependencies.
134 header_check_broken() {
135 cat > $TMPC << EOF
136 #include <$1>
137 #include <$2>
138 int main(void) { return 0; }
140 shift
141 shift
142 compile_check $TMPC $@
145 statement_check_broken() {
146 cat > $TMPC << EOF
147 #include <$1>
148 #include <$2>
149 int main(void) { $3; return 0; }
151 shift 3
152 compile_check $TMPC $@
155 yasm_check() {
156 echo >> "$TMPLOG"
157 cat "$TMPS" >> "$TMPLOG"
158 echo >> "$TMPLOG"
159 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
160 rm -f "$TMPEXE"
161 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
162 TMPRES="$?"
163 echo >> "$TMPLOG"
164 echo >> "$TMPLOG"
165 return "$TMPRES"
168 tmp_run() {
169 "$TMPEXE" >> "$TMPLOG" 2>&1
172 # Display error message, flushes tempfile, exit
173 die () {
174 echo
175 echo "Error: $@" >&2
176 echo >&2
177 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
178 echo "Check \"$TMPLOG\" if you do not understand why it failed."
179 exit 1
182 # OS test booleans functions
183 issystem() {
184 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
186 aix() { issystem "AIX"; }
187 amigaos() { issystem "AmigaOS"; }
188 beos() { issystem "BEOS"; }
189 bsdos() { issystem "BSD/OS"; }
190 cygwin() { issystem "CYGWIN"; }
191 darwin() { issystem "Darwin"; }
192 dragonfly() { issystem "DragonFly"; }
193 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
194 gnu() { issystem "GNU"; }
195 hpux() { issystem "HP-UX"; }
196 irix() { issystem "IRIX"; }
197 linux() { issystem "Linux"; }
198 mingw32() { issystem "MINGW32"; }
199 morphos() { issystem "MorphOS"; }
200 netbsd() { issystem "NetBSD"; }
201 openbsd() { issystem "OpenBSD"; }
202 os2() { issystem "OS/2"; }
203 qnx() { issystem "QNX"; }
204 sunos() { issystem "SunOS"; }
205 win32() { cygwin || mingw32; }
207 # arch test boolean functions
208 # x86/x86pc is used by QNX
209 x86_32() {
210 case "$host_arch" in
211 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
212 *) return 1 ;;
213 esac
216 x86_64() {
217 case "$host_arch" in
218 x86_64|amd64) return 0 ;;
219 *) return 1 ;;
220 esac
223 x86() {
224 x86_32 || x86_64
227 ppc() {
228 case "$host_arch" in
229 ppc|ppc64|powerpc|powerpc64) return 0;;
230 *) return 1;;
231 esac
234 alpha() {
235 case "$host_arch" in
236 alpha*) return 0;;
237 *) return 1;;
238 esac
241 arm() {
242 case "$host_arch" in
243 arm*) return 0;;
244 *) return 1;;
245 esac
248 # Use this before starting a check
249 echocheck() {
250 echo "============ Checking for $@ ============" >> "$TMPLOG"
251 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
254 # Use this to echo the results of a check
255 echores() {
256 if test "$res_comment" ; then
257 res_comment="($res_comment)"
259 echo "Result is: $@ $res_comment" >> "$TMPLOG"
260 echo "##########################################" >> "$TMPLOG"
261 echo "" >> "$TMPLOG"
262 echo "$@ $res_comment"
263 res_comment=""
265 #############################################################################
267 # Check how echo works in this /bin/sh
268 case $(echo -n) in
269 -n) _echo_n= _echo_c='\c' ;; # SysV echo
270 *) _echo_n='-n ' _echo_c= ;; # BSD echo
271 esac
273 msg_lang_all=''
274 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
275 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
276 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
278 show_help(){
279 cat << EOF
280 Usage: $0 [OPTIONS]...
282 Configuration:
283 -h, --help display this help and exit
285 Installation directories:
286 --prefix=DIR prefix directory for installation [/usr/local]
287 --bindir=DIR directory for installing binaries [PREFIX/bin]
288 --datadir=DIR directory for installing machine independent
289 data files (skins, etc) [PREFIX/share/mplayer]
290 --mandir=DIR directory for installing man pages [PREFIX/share/man]
291 --confdir=DIR directory for installing configuration files
292 [PREFIX/etc/mplayer]
293 --localedir=DIR directory for locale tree [PREFIX/share/locale]
294 --libdir=DIR directory for object code libraries [PREFIX/lib]
295 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
297 Optional features:
298 --disable-mplayer disable MPlayer compilation [enable]
299 --enable-termcap use termcap database for key codes [autodetect]
300 --enable-termios use termios database for key codes [autodetect]
301 --disable-iconv disable iconv for encoding conversion [autodetect]
302 --disable-langinfo do not use langinfo [autodetect]
303 --enable-lirc enable LIRC (remote control) support [autodetect]
304 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
305 --enable-joystick enable joystick support [disable]
306 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
307 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
308 --disable-vm disable X video mode extensions [autodetect]
309 --disable-xf86keysym disable support for multimedia keys [autodetect]
310 --enable-radio enable radio interface [disable]
311 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
312 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
313 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
314 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
315 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
316 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
317 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
318 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
319 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
320 --disable-networking disable networking [enable]
321 --enable-winsock2_h enable winsock2_h [autodetect]
322 --enable-smb enable Samba (SMB) input [autodetect]
323 --enable-live enable LIVE555 Streaming Media [autodetect]
324 --enable-nemesi enable Nemesi Streaming Media [autodetect]
325 --disable-vcd disable VCD support [autodetect]
326 --disable-bluray disable Blu-ray support [autodetect]
327 --disable-dvdnav disable libdvdnav [autodetect]
328 --disable-dvdread disable libdvdread [autodetect]
329 --disable-dvdread-internal disable internal libdvdread [autodetect]
330 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
331 --disable-cdparanoia disable cdparanoia [autodetect]
332 --disable-cddb disable cddb [autodetect]
333 --disable-bitmap-font disable bitmap font support [enable]
334 --disable-freetype disable FreeType 2 font rendering [autodetect]
335 --disable-fontconfig disable fontconfig font lookup [autodetect]
336 --disable-unrarexec disable using of UnRAR executable [enabled]
337 --enable-menu enable OSD menu (not DVD menu) [disabled]
338 --disable-sortsub disable subtitle sorting [enabled]
339 --enable-fribidi enable the FriBiDi libs [autodetect]
340 --disable-enca disable ENCA charset oracle library [autodetect]
341 --enable-macosx-finder enable Mac OS X Finder invocation parameter
342 parsing [disabled]
343 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
344 --disable-inet6 disable IPv6 support [autodetect]
345 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
346 --disable-ftp disable FTP support [enabled]
347 --disable-vstream disable TiVo vstream client support [autodetect]
348 --disable-pthreads disable Posix threads support [autodetect]
349 --disable-w32threads disable Win32 threads support [autodetect]
350 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
351 --enable-rpath enable runtime linker path for extra libs [disabled]
353 Codecs:
354 --enable-gif enable GIF support [autodetect]
355 --enable-png enable PNG input/output support [autodetect]
356 --enable-mng enable MNG input support [autodetect]
357 --enable-jpeg enable JPEG input/output support [autodetect]
358 --enable-libcdio enable libcdio support [autodetect]
359 --disable-win32dll disable Win32 DLL support [autodetect]
360 --disable-qtx disable QuickTime codecs support [enabled]
361 --disable-xanim disable XAnim codecs support [enabled]
362 --disable-real disable RealPlayer codecs support [enabled]
363 --disable-xvid disable Xvid [autodetect]
364 --disable-libnut disable libnut [autodetect]
365 --disable-ffmpeg disable FFmpeg [autodetect]
366 --disable-libvorbis disable libvorbis support [autodetect]
367 --disable-tremor disable Tremor [autodetect if no libvorbis]
368 --disable-speex disable Speex support [autodetect]
369 --enable-theora enable OggTheora libraries [autodetect]
370 --enable-faad enable FAAD2 (AAC) [autodetect]
371 --disable-ladspa disable LADSPA plugin support [autodetect]
372 --disable-libbs2b disable libbs2b audio filter support [autodetect]
373 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
374 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
375 --disable-mad disable libmad (MPEG audio) support [autodetect]
376 --enable-xmms enable XMMS input plugin support [disabled]
377 --enable-libdca enable libdca support [autodetect]
378 --disable-liba52 disable liba52 [autodetect]
379 --enable-musepack enable libmpcdec support (deprecated, libavcodec
380 Musepack decoder is preferred) [disabled]
382 Video output:
383 --enable-gl enable OpenGL video output [autodetect]
384 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
385 --enable-dga2 enable DGA 2 support [autodetect]
386 --enable-dga1 enable DGA 1 support [autodetect]
387 --enable-vesa enable VESA video output [autodetect]
388 --enable-svga enable SVGAlib video output [autodetect]
389 --enable-sdl enable SDL video output [autodetect]
390 --enable-kva enable KVA video output [autodetect]
391 --enable-aa enable AAlib video output [autodetect]
392 --enable-caca enable CACA video output [autodetect]
393 --enable-ggi enable GGI video output [autodetect]
394 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
395 --enable-direct3d enable Direct3D video output [autodetect]
396 --enable-directx enable DirectX video output [autodetect]
397 --enable-dxr3 enable DXR3/H+ video output [autodetect]
398 --enable-ivtv enable IVTV TV-Out video output [autodetect]
399 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
400 --enable-dvb enable DVB video output [autodetect]
401 --enable-mga enable mga_vid video output [autodetect]
402 --enable-xmga enable mga_vid X11 video output [autodetect]
403 --enable-xv enable Xv video output [autodetect]
404 --enable-xvmc enable XvMC acceleration [disable]
405 --enable-vdpau enable VDPAU acceleration [autodetect]
406 --enable-vm enable XF86VidMode support [autodetect]
407 --enable-xinerama enable Xinerama support [autodetect]
408 --enable-x11 enable X11 video output [autodetect]
409 --enable-xshape enable XShape support [autodetect]
410 --disable-xss disable screensaver support via xss [autodetect]
411 --enable-fbdev enable FBDev video output [autodetect]
412 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
413 --enable-tdfxfb enable tdfxfb video output [disable]
414 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
415 --enable-wii enable Nintendo Wii/GameCube video output [disable]
416 --enable-directfb enable DirectFB video output [autodetect]
417 --enable-bl enable Blinkenlights video output [disable]
418 --enable-tdfxvid enable tdfx_vid video output [disable]
419 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
420 --disable-tga disable Targa video output [enable]
421 --disable-pnm disable PNM video output [enable]
422 --disable-md5sum disable md5sum video output [enable]
423 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
424 --disable-corevideo disable CoreVideo video output [autodetect]
425 --disable-quartz disable Quartz video output [autodetect]
427 Audio output:
428 --disable-alsa disable ALSA audio output [autodetect]
429 --disable-ossaudio disable OSS audio output [autodetect]
430 --disable-arts disable aRts audio output [autodetect]
431 --disable-esd disable esd audio output [autodetect]
432 --disable-pulse disable Pulseaudio audio output [autodetect]
433 --disable-jack disable JACK audio output [autodetect]
434 --enable-openal enable OpenAL audio output [disable]
435 --disable-nas disable NAS audio output [autodetect]
436 --disable-sgiaudio disable SGI audio output [autodetect]
437 --disable-sunaudio disable Sun audio output [autodetect]
438 --disable-kai disable KAI audio output [autodetect]
439 --disable-dart disable DART audio output [autodetect]
440 --disable-win32waveout disable Windows waveout audio output [autodetect]
441 --disable-coreaudio disable CoreAudio audio output [autodetect]
442 --disable-select disable using select() on the audio device [enable]
444 Language options:
445 --enable-translation enable support for translated output [disable]
446 --charset=charset convert the console messages to this character set
447 --language-doc=lang language to use for the documentation [en]
448 --language-man=lang language to use for the man pages [en]
449 --language-msg=lang extra languages for program messages [all]
450 --language=lang default language to use [en]
451 Specific options override --language. You can pass a list of languages separated
452 by whitespace or commas instead of a single language. Nonexisting translations
453 will be dropped from each list. All translations available in the list will be
454 installed. The value "all" will activate all translations. The LINGUAS
455 environment variable is honored. In all cases the fallback is English.
456 The program always supports English-language output; additional message
457 languages are only installed if --enable-translation is also specified.
458 Available values for --language-doc are: all $doc_lang_all
459 Available values for --language-man are: all $man_lang_all
460 Available values for --language-msg are: all $msg_lang_all
462 Miscellaneous options:
463 --enable-runtime-cpudetection enable runtime CPU detection [disable]
464 --enable-cross-compile enable cross-compilation [autodetect]
465 --cc=COMPILER C compiler to build MPlayer [gcc]
466 --host-cc=COMPILER C compiler for tools needed while building [gcc]
467 --as=ASSEMBLER assembler to build MPlayer [as]
468 --nm=NM nm tool to build MPlayer [nm]
469 --yasm=YASM Yasm assembler to build MPlayer [yasm]
470 --ar=AR librarian to build MPlayer [ar]
471 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
472 --windres=WINDRES windres to build MPlayer [windres]
473 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
474 --enable-static build a statically linked binary
475 --with-install=PATH path to a custom install program
477 Advanced options:
478 --enable-mmx enable MMX [autodetect]
479 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
480 --enable-3dnow enable 3DNow! [autodetect]
481 --enable-3dnowext enable extended 3DNow! [autodetect]
482 --enable-sse enable SSE [autodetect]
483 --enable-sse2 enable SSE2 [autodetect]
484 --enable-ssse3 enable SSSE3 [autodetect]
485 --enable-shm enable shm [autodetect]
486 --enable-altivec enable AltiVec (PowerPC) [autodetect]
487 --enable-armv5te enable DSP extensions (ARM) [autodetect]
488 --enable-armv6 enable ARMv6 (ARM) [autodetect]
489 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
490 --enable-armvfp enable ARM VFP (ARM) [autodetect]
491 --enable-neon enable NEON (ARM) [autodetect]
492 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
493 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
494 --enable-big-endian force byte order to big-endian [autodetect]
495 --enable-debug[=1-3] compile-in debugging information [disable]
496 --enable-profile compile-in profiling information [disable]
497 --disable-sighandler disable sighandler for crashes [enable]
498 --enable-crash-debug enable automatic gdb attach on crash [disable]
499 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
501 Use these options if autodetection fails:
502 --extra-cflags=FLAGS extra CFLAGS
503 --extra-ldflags=FLAGS extra LDFLAGS
504 --extra-libs=FLAGS extra linker flags
505 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
506 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
508 --with-freetype-config=PATH path to freetype-config
509 --with-sdl-config=PATH path to sdl*-config
510 --with-dvdnav-config=PATH path to dvdnav-config
511 --with-dvdread-config=PATH path to dvdread-config
513 This configure script is NOT autoconf-based, even though its output is similar.
514 It will try to autodetect all configuration options. If you --enable an option
515 it will be forcefully turned on, skipping autodetection. This can break
516 compilation, so you need to know what you are doing.
518 exit 0
519 } #show_help()
521 # GOTCHA: the variables below defines the default behavior for autodetection
522 # and have - unless stated otherwise - at least 2 states : yes no
523 # If autodetection is available then the third state is: auto
524 _mmx=auto
525 _3dnow=auto
526 _3dnowext=auto
527 _mmxext=auto
528 _sse=auto
529 _sse2=auto
530 _ssse3=auto
531 _cmov=auto
532 _fast_cmov=auto
533 _fast_clz=auto
534 _armv5te=auto
535 _armv6=auto
536 _armv6t2=auto
537 _armvfp=auto
538 neon=auto
539 _iwmmxt=auto
540 _mtrr=auto
541 _altivec=auto
542 _install=install
543 _ranlib=ranlib
544 _windres=windres
545 _cc=cc
546 _ar=ar
547 test "$CC" && _cc="$CC"
548 _as=auto
549 _nm=auto
550 _yasm=yasm
551 _runtime_cpudetection=no
552 _cross_compile=auto
553 _prefix="/usr/local"
554 ffmpeg=auto
555 ffmpeg_internals=no
556 _mplayer=yes
557 _x11=auto
558 _xshape=auto
559 _xss=auto
560 _dga1=auto
561 _dga2=auto
562 _xv=auto
563 _xvmc=no #auto when complete
564 _vdpau=auto
565 _sdl=auto
566 _kva=auto
567 _direct3d=auto
568 _directx=auto
569 _win32waveout=auto
570 _nas=auto
571 _png=auto
572 _mng=auto
573 _jpeg=auto
574 _pnm=yes
575 _md5sum=yes
576 _yuv4mpeg=yes
577 _gif=auto
578 _gl=auto
579 matrixview=yes
580 _ggi=auto
581 _ggiwmh=auto
582 _aa=auto
583 _caca=auto
584 _svga=auto
585 _vesa=auto
586 _fbdev=auto
587 _dvb=auto
588 _dxr3=auto
589 _ivtv=auto
590 _v4l2=auto
591 _iconv=auto
592 _langinfo=auto
593 _rtc=auto
594 _ossaudio=auto
595 _arts=auto
596 _esd=auto
597 _pulse=auto
598 _jack=auto
599 _kai=auto
600 _dart=auto
601 _openal=no
602 _libcdio=auto
603 _mad=auto
604 _tremor=auto
605 _libvorbis=auto
606 _speex=auto
607 _theora=auto
608 _mpg123=auto
609 _liba52=auto
610 _libdca=auto
611 _faad=auto
612 _ladspa=auto
613 _libbs2b=auto
614 _xmms=no
615 _vcd=auto
616 _bluray=auto
617 _dvdnav=auto
618 _dvdnavconfig=dvdnav-config
619 _dvdreadconfig=dvdread-config
620 _dvdread=auto
621 _dvdread_internal=auto
622 _libdvdcss_internal=auto
623 _xanim=auto
624 _real=auto
625 _live=auto
626 _nemesi=auto
627 _native_rtsp=yes
628 _xinerama=auto
629 _mga=auto
630 _xmga=auto
631 _vm=auto
632 _xf86keysym=auto
633 _sgiaudio=auto
634 _sunaudio=auto
635 _alsa=auto
636 _fastmemcpy=yes
637 _unrar_exec=auto
638 _win32dll=auto
639 _select=yes
640 _radio=no
641 _radio_capture=no
642 _radio_v4l=auto
643 _radio_v4l2=auto
644 _radio_bsdbt848=auto
645 _tv=yes
646 _tv_v4l1=auto
647 _tv_v4l2=auto
648 _tv_bsdbt848=auto
649 _tv_dshow=auto
650 _pvr=auto
651 networking=yes
652 _winsock2_h=auto
653 _smb=auto
654 _joystick=no
655 _xvid=auto
656 _libnut=auto
657 _lirc=auto
658 _lircc=auto
659 _apple_remote=auto
660 _apple_ir=auto
661 _termcap=auto
662 _termios=auto
663 _3dfx=no
664 _s3fb=no
665 _wii=no
666 _tdfxfb=no
667 _tdfxvid=no
668 _xvr100=auto
669 _tga=yes
670 _directfb=auto
671 _bl=no
672 #language=en
673 _shm=auto
674 _translation=no
675 _charset="UTF-8"
676 _dynamic_plugins=no
677 _crash_debug=no
678 _sighandler=yes
679 _libdv=auto
680 _cdparanoia=auto
681 _cddb=auto
682 _big_endian=auto
683 _bitmap_font=yes
684 _freetype=auto
685 _fontconfig=auto
686 _menu=no
687 _qtx=auto
688 _coreaudio=auto
689 _corevideo=auto
690 _quartz=auto
691 quicktime=auto
692 _macosx_finder=no
693 _macosx_bundle=auto
694 _sortsub=yes
695 _freetypeconfig='freetype-config'
696 _fribidi=auto
697 _enca=auto
698 _inet6=auto
699 _gethostbyname2=auto
700 _ftp=auto
701 _musepack=no
702 _vstream=auto
703 _pthreads=auto
704 _w32threads=auto
705 _ass=auto
706 _rpath=no
707 _asmalign_pot=auto
708 _stream_cache=yes
709 _priority=no
710 def_dos_paths="#define HAVE_DOS_PATHS 0"
711 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
712 def_priority="#undef CONFIG_PRIORITY"
713 def_pthread_cache="#undef PTHREAD_CACHE"
714 need_shmem=yes
715 for ac_option do
716 case "$ac_option" in
717 --help|-help|-h)
718 show_help
720 --prefix=*)
721 _prefix=$(echo $ac_option | cut -d '=' -f 2)
723 --bindir=*)
724 _bindir=$(echo $ac_option | cut -d '=' -f 2)
726 --datadir=*)
727 _datadir=$(echo $ac_option | cut -d '=' -f 2)
729 --mandir=*)
730 _mandir=$(echo $ac_option | cut -d '=' -f 2)
732 --confdir=*)
733 _confdir=$(echo $ac_option | cut -d '=' -f 2)
735 --libdir=*)
736 _libdir=$(echo $ac_option | cut -d '=' -f 2)
738 --codecsdir=*)
739 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
741 --localedir=*)
742 _localedir=$(echo $ac_option | cut -d '=' -f 2)
745 --with-install=*)
746 _install=$(echo $ac_option | cut -d '=' -f 2 )
748 --with-xvmclib=*)
749 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
752 --with-sdl-config=*)
753 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
755 --with-freetype-config=*)
756 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
758 --with-dvdnav-config=*)
759 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
761 --with-dvdread-config=*)
762 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --extra-cflags=*)
766 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
768 --extra-ldflags=*)
769 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
771 --extra-libs=*)
772 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
774 --extra-libs-mplayer=*)
775 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
778 --target=*)
779 _target=$(echo $ac_option | cut -d '=' -f 2)
781 --cc=*)
782 _cc=$(echo $ac_option | cut -d '=' -f 2)
784 --host-cc=*)
785 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
787 --as=*)
788 _as=$(echo $ac_option | cut -d '=' -f 2)
790 --nm=*)
791 _nm=$(echo $ac_option | cut -d '=' -f 2)
793 --yasm=*)
794 _yasm=$(echo $ac_option | cut -d '=' -f 2)
796 --ar=*)
797 _ar=$(echo $ac_option | cut -d '=' -f 2)
799 --ranlib=*)
800 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
802 --windres=*)
803 _windres=$(echo $ac_option | cut -d '=' -f 2)
805 --charset=*)
806 _charset=$(echo $ac_option | cut -d '=' -f 2)
808 --language-doc=*)
809 language_doc=$(echo $ac_option | cut -d '=' -f 2)
811 --language-man=*)
812 language_man=$(echo $ac_option | cut -d '=' -f 2)
814 --language-msg=*)
815 language_msg=$(echo $ac_option | cut -d '=' -f 2)
817 --language=*)
818 language=$(echo $ac_option | cut -d '=' -f 2)
821 --enable-static)
822 _ld_static='-static'
824 --disable-static)
825 _ld_static=''
827 --enable-profile)
828 _profile='-p'
830 --disable-profile)
831 _profile=
833 --enable-debug)
834 _debug='-g'
836 --enable-debug=*)
837 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
839 --disable-debug)
840 _debug=
842 --enable-translation) _translation=yes ;;
843 --disable-translation) _translation=no ;;
844 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
845 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
846 --enable-cross-compile) _cross_compile=yes ;;
847 --disable-cross-compile) _cross_compile=no ;;
848 --enable-mplayer) _mplayer=yes ;;
849 --disable-mplayer) _mplayer=no ;;
850 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
851 --disable-dynamic-plugins) _dynamic_plugins=no ;;
852 --enable-x11) _x11=yes ;;
853 --disable-x11) _x11=no ;;
854 --enable-xshape) _xshape=yes ;;
855 --disable-xshape) _xshape=no ;;
856 --enable-xss) _xss=yes ;;
857 --disable-xss) _xss=no ;;
858 --enable-xv) _xv=yes ;;
859 --disable-xv) _xv=no ;;
860 --enable-xvmc) _xvmc=yes ;;
861 --disable-xvmc) _xvmc=no ;;
862 --enable-vdpau) _vdpau=yes ;;
863 --disable-vdpau) _vdpau=no ;;
864 --enable-sdl) _sdl=yes ;;
865 --disable-sdl) _sdl=no ;;
866 --enable-kva) _kva=yes ;;
867 --disable-kva) _kva=no ;;
868 --enable-direct3d) _direct3d=yes ;;
869 --disable-direct3d) _direct3d=no ;;
870 --enable-directx) _directx=yes ;;
871 --disable-directx) _directx=no ;;
872 --enable-win32waveout) _win32waveout=yes ;;
873 --disable-win32waveout) _win32waveout=no ;;
874 --enable-nas) _nas=yes ;;
875 --disable-nas) _nas=no ;;
876 --enable-png) _png=yes ;;
877 --disable-png) _png=no ;;
878 --enable-mng) _mng=yes ;;
879 --disable-mng) _mng=no ;;
880 --enable-jpeg) _jpeg=yes ;;
881 --disable-jpeg) _jpeg=no ;;
882 --enable-pnm) _pnm=yes ;;
883 --disable-pnm) _pnm=no ;;
884 --enable-md5sum) _md5sum=yes ;;
885 --disable-md5sum) _md5sum=no ;;
886 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
887 --disable-yuv4mpeg) _yuv4mpeg=no ;;
888 --enable-gif) _gif=yes ;;
889 --disable-gif) _gif=no ;;
890 --enable-gl) _gl=yes ;;
891 --disable-gl) _gl=no ;;
892 --enable-matrixview) matrixview=yes ;;
893 --disable-matrixview) matrixview=no ;;
894 --enable-ggi) _ggi=yes ;;
895 --disable-ggi) _ggi=no ;;
896 --enable-ggiwmh) _ggiwmh=yes ;;
897 --disable-ggiwmh) _ggiwmh=no ;;
898 --enable-aa) _aa=yes ;;
899 --disable-aa) _aa=no ;;
900 --enable-caca) _caca=yes ;;
901 --disable-caca) _caca=no ;;
902 --enable-svga) _svga=yes ;;
903 --disable-svga) _svga=no ;;
904 --enable-vesa) _vesa=yes ;;
905 --disable-vesa) _vesa=no ;;
906 --enable-fbdev) _fbdev=yes ;;
907 --disable-fbdev) _fbdev=no ;;
908 --enable-dvb) _dvb=yes ;;
909 --disable-dvb) _dvb=no ;;
910 --enable-dxr3) _dxr3=yes ;;
911 --disable-dxr3) _dxr3=no ;;
912 --enable-ivtv) _ivtv=yes ;;
913 --disable-ivtv) _ivtv=no ;;
914 --enable-v4l2) _v4l2=yes ;;
915 --disable-v4l2) _v4l2=no ;;
916 --enable-iconv) _iconv=yes ;;
917 --disable-iconv) _iconv=no ;;
918 --enable-langinfo) _langinfo=yes ;;
919 --disable-langinfo) _langinfo=no ;;
920 --enable-rtc) _rtc=yes ;;
921 --disable-rtc) _rtc=no ;;
922 --enable-libdv) _libdv=yes ;;
923 --disable-libdv) _libdv=no ;;
924 --enable-ossaudio) _ossaudio=yes ;;
925 --disable-ossaudio) _ossaudio=no ;;
926 --enable-arts) _arts=yes ;;
927 --disable-arts) _arts=no ;;
928 --enable-esd) _esd=yes ;;
929 --disable-esd) _esd=no ;;
930 --enable-pulse) _pulse=yes ;;
931 --disable-pulse) _pulse=no ;;
932 --enable-jack) _jack=yes ;;
933 --disable-jack) _jack=no ;;
934 --enable-openal) _openal=yes ;;
935 --disable-openal) _openal=no ;;
936 --enable-kai) _kai=yes ;;
937 --disable-kai) _kai=no ;;
938 --enable-dart) _dart=yes ;;
939 --disable-dart) _dart=no ;;
940 --enable-mad) _mad=yes ;;
941 --disable-mad) _mad=no ;;
942 --enable-libcdio) _libcdio=yes ;;
943 --disable-libcdio) _libcdio=no ;;
944 --enable-libvorbis) _libvorbis=yes ;;
945 --disable-libvorbis) _libvorbis=no ;;
946 --enable-speex) _speex=yes ;;
947 --disable-speex) _speex=no ;;
948 --enable-tremor) _tremor=yes ;;
949 --disable-tremor) _tremor=no ;;
950 --enable-theora) _theora=yes ;;
951 --disable-theora) _theora=no ;;
952 --enable-mpg123) _mpg123=yes ;;
953 --disable-mpg123) _mpg123=no ;;
954 --enable-liba52) _liba52=yes ;;
955 --disable-liba52) _liba52=no ;;
956 --enable-libdca) _libdca=yes ;;
957 --disable-libdca) _libdca=no ;;
958 --enable-musepack) _musepack=yes ;;
959 --disable-musepack) _musepack=no ;;
960 --enable-faad) _faad=yes ;;
961 --disable-faad) _faad=no ;;
962 --enable-ladspa) _ladspa=yes ;;
963 --disable-ladspa) _ladspa=no ;;
964 --enable-libbs2b) _libbs2b=yes ;;
965 --disable-libbs2b) _libbs2b=no ;;
966 --enable-xmms) _xmms=yes ;;
967 --disable-xmms) _xmms=no ;;
968 --enable-vcd) _vcd=yes ;;
969 --disable-vcd) _vcd=no ;;
970 --enable-bluray) _bluray=yes ;;
971 --disable-bluray) _bluray=no ;;
972 --enable-dvdread) _dvdread=yes ;;
973 --disable-dvdread) _dvdread=no ;;
974 --enable-dvdread-internal) _dvdread_internal=yes ;;
975 --disable-dvdread-internal) _dvdread_internal=no ;;
976 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
977 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
978 --enable-dvdnav) _dvdnav=yes ;;
979 --disable-dvdnav) _dvdnav=no ;;
980 --enable-xanim) _xanim=yes ;;
981 --disable-xanim) _xanim=no ;;
982 --enable-real) _real=yes ;;
983 --disable-real) _real=no ;;
984 --enable-live) _live=yes ;;
985 --disable-live) _live=no ;;
986 --enable-nemesi) _nemesi=yes ;;
987 --disable-nemesi) _nemesi=no ;;
988 --enable-xinerama) _xinerama=yes ;;
989 --disable-xinerama) _xinerama=no ;;
990 --enable-mga) _mga=yes ;;
991 --disable-mga) _mga=no ;;
992 --enable-xmga) _xmga=yes ;;
993 --disable-xmga) _xmga=no ;;
994 --enable-vm) _vm=yes ;;
995 --disable-vm) _vm=no ;;
996 --enable-xf86keysym) _xf86keysym=yes ;;
997 --disable-xf86keysym) _xf86keysym=no ;;
998 --enable-sunaudio) _sunaudio=yes ;;
999 --disable-sunaudio) _sunaudio=no ;;
1000 --enable-sgiaudio) _sgiaudio=yes ;;
1001 --disable-sgiaudio) _sgiaudio=no ;;
1002 --enable-alsa) _alsa=yes ;;
1003 --disable-alsa) _alsa=no ;;
1004 --enable-tv) _tv=yes ;;
1005 --disable-tv) _tv=no ;;
1006 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1007 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1008 --enable-tv-v4l1) _tv_v4l1=yes ;;
1009 --disable-tv-v4l1) _tv_v4l1=no ;;
1010 --enable-tv-v4l2) _tv_v4l2=yes ;;
1011 --disable-tv-v4l2) _tv_v4l2=no ;;
1012 --enable-tv-dshow) _tv_dshow=yes ;;
1013 --disable-tv-dshow) _tv_dshow=no ;;
1014 --enable-radio) _radio=yes ;;
1015 --enable-radio-capture) _radio_capture=yes ;;
1016 --disable-radio-capture) _radio_capture=no ;;
1017 --disable-radio) _radio=no ;;
1018 --enable-radio-v4l) _radio_v4l=yes ;;
1019 --disable-radio-v4l) _radio_v4l=no ;;
1020 --enable-radio-v4l2) _radio_v4l2=yes ;;
1021 --disable-radio-v4l2) _radio_v4l2=no ;;
1022 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1023 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1024 --enable-pvr) _pvr=yes ;;
1025 --disable-pvr) _pvr=no ;;
1026 --enable-fastmemcpy) _fastmemcpy=yes ;;
1027 --disable-fastmemcpy) _fastmemcpy=no ;;
1028 --enable-networking) networking=yes ;;
1029 --disable-networking) networking=no ;;
1030 --enable-winsock2_h) _winsock2_h=yes ;;
1031 --disable-winsock2_h) _winsock2_h=no ;;
1032 --enable-smb) _smb=yes ;;
1033 --disable-smb) _smb=no ;;
1034 --enable-joystick) _joystick=yes ;;
1035 --disable-joystick) _joystick=no ;;
1036 --enable-xvid) _xvid=yes ;;
1037 --disable-xvid) _xvid=no ;;
1038 --enable-libnut) _libnut=yes ;;
1039 --disable-libnut) _libnut=no ;;
1040 --enable-ffmpeg) ffmpeg=yes ;;
1041 --disable-ffmpeg) ffmpeg=no ;;
1042 --ffmpeg-source-dir=*)
1043 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1045 --enable-lirc) _lirc=yes ;;
1046 --disable-lirc) _lirc=no ;;
1047 --enable-lircc) _lircc=yes ;;
1048 --disable-lircc) _lircc=no ;;
1049 --enable-apple-remote) _apple_remote=yes ;;
1050 --disable-apple-remote) _apple_remote=no ;;
1051 --enable-apple-ir) _apple_ir=yes ;;
1052 --disable-apple-ir) _apple_ir=no ;;
1053 --enable-termcap) _termcap=yes ;;
1054 --disable-termcap) _termcap=no ;;
1055 --enable-termios) _termios=yes ;;
1056 --disable-termios) _termios=no ;;
1057 --enable-3dfx) _3dfx=yes ;;
1058 --disable-3dfx) _3dfx=no ;;
1059 --enable-s3fb) _s3fb=yes ;;
1060 --disable-s3fb) _s3fb=no ;;
1061 --enable-wii) _wii=yes ;;
1062 --disable-wii) _wii=no ;;
1063 --enable-tdfxfb) _tdfxfb=yes ;;
1064 --disable-tdfxfb) _tdfxfb=no ;;
1065 --disable-tdfxvid) _tdfxvid=no ;;
1066 --enable-tdfxvid) _tdfxvid=yes ;;
1067 --disable-xvr100) _xvr100=no ;;
1068 --enable-xvr100) _xvr100=yes ;;
1069 --disable-tga) _tga=no ;;
1070 --enable-tga) _tga=yes ;;
1071 --enable-directfb) _directfb=yes ;;
1072 --disable-directfb) _directfb=no ;;
1073 --enable-bl) _bl=yes ;;
1074 --disable-bl) _bl=no ;;
1075 --enable-mtrr) _mtrr=yes ;;
1076 --disable-mtrr) _mtrr=no ;;
1077 --enable-shm) _shm=yes ;;
1078 --disable-shm) _shm=no ;;
1079 --enable-select) _select=yes ;;
1080 --disable-select) _select=no ;;
1081 --enable-cdparanoia) _cdparanoia=yes ;;
1082 --disable-cdparanoia) _cdparanoia=no ;;
1083 --enable-cddb) _cddb=yes ;;
1084 --disable-cddb) _cddb=no ;;
1085 --enable-big-endian) _big_endian=yes ;;
1086 --disable-big-endian) _big_endian=no ;;
1087 --enable-bitmap-font) _bitmap_font=yes ;;
1088 --disable-bitmap-font) _bitmap_font=no ;;
1089 --enable-freetype) _freetype=yes ;;
1090 --disable-freetype) _freetype=no ;;
1091 --enable-fontconfig) _fontconfig=yes ;;
1092 --disable-fontconfig) _fontconfig=no ;;
1093 --enable-unrarexec) _unrar_exec=yes ;;
1094 --disable-unrarexec) _unrar_exec=no ;;
1095 --enable-ftp) _ftp=yes ;;
1096 --disable-ftp) _ftp=no ;;
1097 --enable-vstream) _vstream=yes ;;
1098 --disable-vstream) _vstream=no ;;
1099 --enable-pthreads) _pthreads=yes ;;
1100 --disable-pthreads) _pthreads=no ;;
1101 --enable-w32threads) _w32threads=yes ;;
1102 --disable-w32threads) _w32threads=no ;;
1103 --enable-ass) _ass=yes ;;
1104 --disable-ass) _ass=no ;;
1105 --enable-rpath) _rpath=yes ;;
1106 --disable-rpath) _rpath=no ;;
1108 --enable-fribidi) _fribidi=yes ;;
1109 --disable-fribidi) _fribidi=no ;;
1111 --enable-enca) _enca=yes ;;
1112 --disable-enca) _enca=no ;;
1114 --enable-inet6) _inet6=yes ;;
1115 --disable-inet6) _inet6=no ;;
1117 --enable-gethostbyname2) _gethostbyname2=yes ;;
1118 --disable-gethostbyname2) _gethostbyname2=no ;;
1120 --enable-dga1) _dga1=yes ;;
1121 --disable-dga1) _dga1=no ;;
1122 --enable-dga2) _dga2=yes ;;
1123 --disable-dga2) _dga2=no ;;
1125 --enable-menu) _menu=yes ;;
1126 --disable-menu) _menu=no ;;
1128 --enable-qtx) _qtx=yes ;;
1129 --disable-qtx) _qtx=no ;;
1131 --enable-coreaudio) _coreaudio=yes ;;
1132 --disable-coreaudio) _coreaudio=no ;;
1133 --enable-corevideo) _corevideo=yes ;;
1134 --disable-corevideo) _corevideo=no ;;
1135 --enable-quartz) _quartz=yes ;;
1136 --disable-quartz) _quartz=no ;;
1137 --enable-macosx-finder) _macosx_finder=yes ;;
1138 --disable-macosx-finder) _macosx_finder=no ;;
1139 --enable-macosx-bundle) _macosx_bundle=yes ;;
1140 --disable-macosx-bundle) _macosx_bundle=no ;;
1142 --enable-sortsub) _sortsub=yes ;;
1143 --disable-sortsub) _sortsub=no ;;
1145 --enable-crash-debug) _crash_debug=yes ;;
1146 --disable-crash-debug) _crash_debug=no ;;
1147 --enable-sighandler) _sighandler=yes ;;
1148 --disable-sighandler) _sighandler=no ;;
1149 --enable-win32dll) _win32dll=yes ;;
1150 --disable-win32dll) _win32dll=no ;;
1152 --enable-sse) _sse=yes ;;
1153 --disable-sse) _sse=no ;;
1154 --enable-sse2) _sse2=yes ;;
1155 --disable-sse2) _sse2=no ;;
1156 --enable-ssse3) _ssse3=yes ;;
1157 --disable-ssse3) _ssse3=no ;;
1158 --enable-mmxext) _mmxext=yes ;;
1159 --disable-mmxext) _mmxext=no ;;
1160 --enable-3dnow) _3dnow=yes ;;
1161 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1162 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1163 --disable-3dnowext) _3dnowext=no ;;
1164 --enable-cmov) _cmov=yes ;;
1165 --disable-cmov) _cmov=no ;;
1166 --enable-fast-cmov) _fast_cmov=yes ;;
1167 --disable-fast-cmov) _fast_cmov=no ;;
1168 --enable-fast-clz) _fast_clz=yes ;;
1169 --disable-fast-clz) _fast_clz=no ;;
1170 --enable-altivec) _altivec=yes ;;
1171 --disable-altivec) _altivec=no ;;
1172 --enable-armv5te) _armv5te=yes ;;
1173 --disable-armv5te) _armv5te=no ;;
1174 --enable-armv6) _armv6=yes ;;
1175 --disable-armv6) _armv6=no ;;
1176 --enable-armv6t2) _armv6t2=yes ;;
1177 --disable-armv6t2) _armv6t2=no ;;
1178 --enable-armvfp) _armvfp=yes ;;
1179 --disable-armvfp) _armvfp=no ;;
1180 --enable-neon) neon=yes ;;
1181 --disable-neon) neon=no ;;
1182 --enable-iwmmxt) _iwmmxt=yes ;;
1183 --disable-iwmmxt) _iwmmxt=no ;;
1184 --enable-mmx) _mmx=yes ;;
1185 --disable-mmx) # 3Dnow! and MMX2 require MMX
1186 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1189 echo "Unknown parameter: $ac_option" >&2
1190 exit 1
1193 esac
1194 done
1196 # Atmos: moved this here, to be correct, if --prefix is specified
1197 test -z "$_bindir" && _bindir="$_prefix/bin"
1198 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1199 test -z "$_mandir" && _mandir="$_prefix/share/man"
1200 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1201 test -z "$_libdir" && _libdir="$_prefix/lib"
1202 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1204 # Determine our OS name and CPU architecture
1205 if test -z "$_target" ; then
1206 # OS name
1207 system_name=$(uname -s 2>&1)
1208 case "$system_name" in
1209 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1211 Haiku)
1212 system_name=BeOS
1214 IRIX*)
1215 system_name=IRIX
1217 GNU/kFreeBSD)
1218 system_name=FreeBSD
1220 HP-UX*)
1221 system_name=HP-UX
1223 [cC][yY][gG][wW][iI][nN]*)
1224 system_name=CYGWIN
1226 MINGW32*)
1227 system_name=MINGW32
1229 OS/2*)
1230 system_name=OS/2
1233 system_name="$system_name-UNKNOWN"
1235 esac
1238 # host's CPU/instruction set
1239 host_arch=$(uname -p 2>&1)
1240 case "$host_arch" in
1241 i386|sparc|ppc|alpha|arm|mips|vax)
1243 powerpc) # Darwin returns 'powerpc'
1244 host_arch=ppc
1246 *) # uname -p on Linux returns 'unknown' for the processor type,
1247 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1249 # Maybe uname -m (machine hardware name) returns something we
1250 # recognize.
1252 # x86/x86pc is used by QNX
1253 case "$(uname -m 2>&1)" in
1254 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 ;;
1255 ia64) host_arch=ia64 ;;
1256 macppc|ppc) host_arch=ppc ;;
1257 ppc64) host_arch=ppc64 ;;
1258 alpha) host_arch=alpha ;;
1259 sparc) host_arch=sparc ;;
1260 sparc64) host_arch=sparc64 ;;
1261 parisc*|hppa*|9000*) host_arch=hppa ;;
1262 arm*|zaurus|cats) host_arch=arm ;;
1263 sh3|sh4|sh4a) host_arch=sh ;;
1264 s390) host_arch=s390 ;;
1265 s390x) host_arch=s390x ;;
1266 *mips*) host_arch=mips ;;
1267 vax) host_arch=vax ;;
1268 xtensa*) host_arch=xtensa ;;
1269 *) host_arch=UNKNOWN ;;
1270 esac
1272 esac
1273 else # if test -z "$_target"
1274 system_name=$(echo $_target | cut -d '-' -f 2)
1275 case "$(echo $system_name | tr A-Z a-z)" in
1276 linux) system_name=Linux ;;
1277 freebsd) system_name=FreeBSD ;;
1278 gnu/kfreebsd) system_name=FreeBSD ;;
1279 netbsd) system_name=NetBSD ;;
1280 bsd/os) system_name=BSD/OS ;;
1281 openbsd) system_name=OpenBSD ;;
1282 dragonfly) system_name=DragonFly ;;
1283 sunos) system_name=SunOS ;;
1284 qnx) system_name=QNX ;;
1285 morphos) system_name=MorphOS ;;
1286 amigaos) system_name=AmigaOS ;;
1287 mingw32*) system_name=MINGW32 ;;
1288 esac
1289 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1290 host_arch=$(echo $_target | cut -d '-' -f 1)
1291 if test $(echo $host_arch) != "x86_64" ; then
1292 host_arch=$(echo $host_arch | tr '_' '-')
1296 extra_cflags="-I. $extra_cflags"
1297 _timer=timer-linux.c
1298 _getch=getch2.c
1299 if freebsd ; then
1300 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1301 extra_cflags="$extra_cflags -I/usr/local/include"
1304 if netbsd || dragonfly ; then
1305 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1306 extra_cflags="$extra_cflags -I/usr/pkg/include"
1309 if darwin; then
1310 extra_cflags="-mdynamic-no-pic $extra_cflags"
1311 if test "$(basename $_cc)" != "clang" ; then
1312 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1314 _timer=timer-darwin.c
1317 if aix ; then
1318 extra_ldflags="$extra_ldflags -lC"
1321 if irix ; then
1322 _ranlib='ar -r'
1323 elif linux ; then
1324 _ranlib='true'
1327 if win32 ; then
1328 _exesuf=".exe"
1329 extra_cflags="$extra_cflags -fno-common"
1330 # -lwinmm is always needed for osdep/timer-win2.c
1331 extra_ldflags="$extra_ldflags -lwinmm"
1332 _pe_executable=yes
1333 _timer=timer-win2.c
1334 _priority=yes
1335 def_dos_paths="#define HAVE_DOS_PATHS 1"
1336 def_priority="#define CONFIG_PRIORITY 1"
1339 if mingw32 ; then
1340 _getch=getch2-win.c
1341 need_shmem=no
1344 if amigaos ; then
1345 _select=no
1346 _sighandler=no
1347 _stream_cache=no
1348 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1349 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1352 if qnx ; then
1353 extra_ldflags="$extra_ldflags -lph"
1356 if os2 ; then
1357 _exesuf=".exe"
1358 _getch=getch2-os2.c
1359 need_shmem=no
1360 _priority=yes
1361 def_dos_paths="#define HAVE_DOS_PATHS 1"
1362 def_priority="#define CONFIG_PRIORITY 1"
1365 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1366 test "$tmpdir" && break
1367 done
1369 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1370 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1372 TMPLOG="config.log"
1373 TMPC="$mplayer_tmpdir/tmp.c"
1374 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1375 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1376 TMPH="$mplayer_tmpdir/tmp.h"
1377 TMPS="$mplayer_tmpdir/tmp.S"
1379 rm -f "$TMPLOG"
1380 echo configuration: $configuration > "$TMPLOG"
1381 echo >> "$TMPLOG"
1384 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1385 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1389 # Checking CC version...
1390 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1391 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1392 echocheck "$_cc version"
1393 cc_vendor=intel
1394 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1395 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1396 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1397 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1398 # TODO verify older icc/ecc compatibility
1399 case $cc_version in
1401 cc_version="v. ?.??, bad"
1402 cc_fail=yes
1404 10.1|11.0|11.1)
1405 cc_version="$cc_version, ok"
1408 cc_version="$cc_version, bad"
1409 cc_fail=yes
1411 esac
1412 echores "$cc_version"
1413 else
1414 for _cc in "$_cc" gcc cc ; do
1415 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1416 if test "$cc_name_tmp" = "gcc"; then
1417 cc_name=$cc_name_tmp
1418 echocheck "$_cc version"
1419 cc_vendor=gnu
1420 cc_version=$($_cc -dumpversion 2>&1)
1421 case $cc_version in
1422 2.96*)
1423 cc_fail=yes
1426 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1427 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1428 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1430 esac
1431 echores "$cc_version"
1432 break
1434 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1435 if test "$cc_name_tmp" = "clang"; then
1436 echocheck "$_cc version"
1437 cc_vendor=clang
1438 cc_version=$($_cc -dumpversion 2>&1)
1439 res_comment="experimental support only"
1440 echores "clang $cc_version"
1441 break
1443 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1444 if test "$cc_name_tmp" = "Sun C"; then
1445 echocheck "$_cc version"
1446 cc_vendor=sun
1447 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1448 res_comment="experimental support only"
1449 echores "Sun C $cc_version"
1450 break
1452 done
1453 fi # icc
1454 test "$cc_fail" = yes && die "unsupported compiler version"
1456 if test -z "$_target" && x86 ; then
1457 cat > $TMPC << EOF
1458 int main(void) {
1459 int test[(int)sizeof(char *)-7];
1460 return 0;
1463 cc_check && host_arch=x86_64 || host_arch=i386
1466 echo "Detected operating system: $system_name"
1467 echo "Detected host architecture: $host_arch"
1469 echocheck "host cc"
1470 test "$_host_cc" || _host_cc=$_cc
1471 echores $_host_cc
1473 echocheck "cross compilation"
1474 if test $_cross_compile = auto ; then
1475 _cross_compile=yes
1476 cflag_check "" && "$TMPEXE" && _cross_compile=no
1478 echores $_cross_compile
1480 if test $_cross_compile = yes; then
1481 tmp_run() {
1482 return 0
1486 # ---
1488 # now that we know what compiler should be used for compilation, try to find
1489 # out which assembler is used by the $_cc compiler
1490 if test "$_as" = auto ; then
1491 _as=$($_cc -print-prog-name=as)
1492 test -z "$_as" && _as=as
1495 if test "$_nm" = auto ; then
1496 _nm=$($_cc -print-prog-name=nm)
1497 test -z "$_nm" && _nm=nm
1500 # XXX: this should be ok..
1501 _cpuinfo="echo"
1503 if test "$_runtime_cpudetection" = no ; then
1505 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1506 # FIXME: Remove the cygwin check once AMD CPUs are supported
1507 if test -r /proc/cpuinfo && ! cygwin; then
1508 # Linux with /proc mounted, extract CPU information from it
1509 _cpuinfo="cat /proc/cpuinfo"
1510 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1511 # FreeBSD with Linux emulation /proc mounted,
1512 # extract CPU information from it
1513 # Don't use it on x86 though, it never reports 3Dnow
1514 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1515 elif darwin && ! x86 ; then
1516 # use hostinfo on Darwin
1517 _cpuinfo="hostinfo"
1518 elif aix; then
1519 # use 'lsattr' on AIX
1520 _cpuinfo="lsattr -E -l proc0 -a type"
1521 elif x86; then
1522 # all other OSes try to extract CPU information from a small helper
1523 # program cpuinfo instead
1524 $_cc -o cpuinfo$_exesuf cpuinfo.c
1525 _cpuinfo="./cpuinfo$_exesuf"
1528 if x86 ; then
1529 # gather more CPU information
1530 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1531 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1532 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1533 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1534 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1536 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1538 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1539 -e s/xmm/sse/ -e s/kni/sse/)
1541 for ext in $pparam ; do
1542 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1543 done
1545 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1546 test $_sse = kernel_check && _mmxext=kernel_check
1548 echocheck "CPU vendor"
1549 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1551 echocheck "CPU type"
1552 echores "$pname"
1555 fi # test "$_runtime_cpudetection" = no
1557 if x86 && test "$_runtime_cpudetection" = no ; then
1558 extcheck() {
1559 if test "$1" = kernel_check ; then
1560 echocheck "kernel support of $2"
1561 cat > $TMPC <<EOF
1562 #include <stdlib.h>
1563 #include <signal.h>
1564 static void catch(int sig) { exit(1); }
1565 int main(void) {
1566 signal(SIGILL, catch);
1567 __asm__ volatile ("$3":::"memory"); return 0;
1571 if cc_check && tmp_run ; then
1572 eval _$2=yes
1573 echores "yes"
1574 _optimizing="$_optimizing $2"
1575 return 0
1576 else
1577 eval _$2=no
1578 echores "failed"
1579 echo "It seems that your kernel does not correctly support $2."
1580 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1581 return 1
1584 return 0
1587 extcheck $_mmx "mmx" "emms"
1588 extcheck $_mmxext "mmxext" "sfence"
1589 extcheck $_3dnow "3dnow" "femms"
1590 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1591 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1592 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1593 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1594 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1596 echocheck "mtrr support"
1597 if test "$_mtrr" = kernel_check ; then
1598 _mtrr="yes"
1599 _optimizing="$_optimizing mtrr"
1601 echores "$_mtrr"
1603 if test "$_gcc3_ext" != ""; then
1604 # if we had to disable sse/sse2 because the active kernel does not
1605 # support this instruction set extension, we also have to tell
1606 # gcc3 to not generate sse/sse2 instructions for normal C code
1607 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1613 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1614 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1615 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1616 subarch_all='X86_32 X86_64 PPC64'
1617 case "$host_arch" in
1618 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1619 arch='x86'
1620 subarch='x86_32'
1621 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1622 iproc=486
1623 proc=i486
1626 if test "$_runtime_cpudetection" = no ; then
1627 case "$pvendor" in
1628 AuthenticAMD)
1629 case "$pfamily" in
1630 3) proc=i386 iproc=386 ;;
1631 4) proc=i486 iproc=486 ;;
1632 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1633 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1634 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1635 proc=k6-3
1636 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1637 proc=geode
1638 elif test "$pmodel" -ge 8; then
1639 proc=k6-2
1640 elif test "$pmodel" -ge 6; then
1641 proc=k6
1642 else
1643 proc=i586
1646 6) iproc=686
1647 # It's a bit difficult to determine the correct type of Family 6
1648 # AMD CPUs just from their signature. Instead, we check directly
1649 # whether it supports SSE.
1650 if test "$_sse" = yes; then
1651 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1652 proc=athlon-xp
1653 else
1654 # Again, gcc treats athlon and athlon-tbird similarly.
1655 proc=athlon
1658 15) iproc=686
1659 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1660 # caught and remedied in the optimization tests below.
1661 proc=k8
1664 *) proc=amdfam10 iproc=686
1665 test $_fast_clz = "auto" && _fast_clz=yes
1667 esac
1669 GenuineIntel)
1670 case "$pfamily" in
1671 3) proc=i386 iproc=386 ;;
1672 4) proc=i486 iproc=486 ;;
1673 5) iproc=586
1674 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1675 proc=pentium-mmx # 4 is desktop, 8 is mobile
1676 else
1677 proc=i586
1680 6) iproc=686
1681 if test "$pmodel" -ge 15; then
1682 proc=core2
1683 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1684 proc=pentium-m
1685 elif test "$pmodel" -ge 7; then
1686 proc=pentium3
1687 elif test "$pmodel" -ge 3; then
1688 proc=pentium2
1689 else
1690 proc=i686
1692 test $_fast_clz = "auto" && _fast_clz=yes
1694 15) iproc=686
1695 # A nocona in 32-bit mode has no more capabilities than a prescott.
1696 if test "$pmodel" -ge 3; then
1697 proc=prescott
1698 else
1699 proc=pentium4
1700 test $_fast_clz = "auto" && _fast_clz=yes
1702 test $_fast_cmov = "auto" && _fast_cmov=no
1704 *) proc=prescott iproc=686 ;;
1705 esac
1707 CentaurHauls)
1708 case "$pfamily" in
1709 5) iproc=586
1710 if test "$pmodel" -ge 8; then
1711 proc=winchip2
1712 elif test "$pmodel" -ge 4; then
1713 proc=winchip-c6
1714 else
1715 proc=i586
1718 6) iproc=686
1719 if test "$pmodel" -ge 9; then
1720 proc=c3-2
1721 else
1722 proc=c3
1723 iproc=586
1726 *) proc=i686 iproc=i686 ;;
1727 esac
1729 unknown)
1730 case "$pfamily" in
1731 3) proc=i386 iproc=386 ;;
1732 4) proc=i486 iproc=486 ;;
1733 *) proc=i586 iproc=586 ;;
1734 esac
1737 proc=i586 iproc=586 ;;
1738 esac
1739 test $_fast_clz = "auto" && _fast_clz=no
1740 fi # test "$_runtime_cpudetection" = no
1743 # check that gcc supports our CPU, if not, fall back to earlier ones
1744 # LGB: check -mcpu and -march swithing step by step with enabling
1745 # to fall back till 386.
1747 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1749 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1750 cpuopt=-mtune
1751 else
1752 cpuopt=-mcpu
1755 echocheck "GCC & CPU optimization abilities"
1756 if test "$_runtime_cpudetection" = no ; then
1757 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1758 cflag_check -march=native && proc=native
1760 if test "$proc" = "amdfam10"; then
1761 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1763 if test "$proc" = "k8"; then
1764 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1766 if test "$proc" = "athlon-xp"; then
1767 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1769 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1770 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1772 if test "$proc" = "k6" || test "$proc" = "c3"; then
1773 if ! cflag_check -march=$proc $cpuopt=$proc; then
1774 if cflag_check -march=i586 $cpuopt=i686; then
1775 proc=i586-i686
1776 else
1777 proc=i586
1781 if test "$proc" = "prescott" ; then
1782 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1784 if test "$proc" = "core2" ; then
1785 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1787 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
1788 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1790 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1791 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1793 if test "$proc" = "i586"; then
1794 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1796 if test "$proc" = "i486" ; then
1797 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1799 if test "$proc" = "i386" ; then
1800 cflag_check -march=$proc $cpuopt=$proc || proc=error
1802 if test "$proc" = "error" ; then
1803 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1804 _mcpu=""
1805 _march=""
1806 _optimizing=""
1807 elif test "$proc" = "i586-i686"; then
1808 _march="-march=i586"
1809 _mcpu="$cpuopt=i686"
1810 _optimizing="$proc"
1811 else
1812 _march="-march=$proc"
1813 _mcpu="$cpuopt=$proc"
1814 _optimizing="$proc"
1816 else # if test "$_runtime_cpudetection" = no
1817 _mcpu="$cpuopt=generic"
1818 # at least i486 required, for bswap instruction
1819 _march="-march=i486"
1820 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1821 cflag_check $_mcpu || _mcpu=""
1822 cflag_check $_march $_mcpu || _march=""
1825 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1826 ## autodetected mcpu/march parameters
1827 if test "$_target" ; then
1828 # TODO: it may be a good idea to check GCC and fall back in all cases
1829 if test "$host_arch" = "i586-i686"; then
1830 _march="-march=i586"
1831 _mcpu="$cpuopt=i686"
1832 else
1833 _march="-march=$host_arch"
1834 _mcpu="$cpuopt=$host_arch"
1837 proc="$host_arch"
1839 case "$proc" in
1840 i386) iproc=386 ;;
1841 i486) iproc=486 ;;
1842 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1843 i686|athlon*|pentium*) iproc=686 ;;
1844 *) iproc=586 ;;
1845 esac
1848 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1849 _fast_cmov="yes"
1850 else
1851 _fast_cmov="no"
1853 test $_fast_clz = "auto" && _fast_clz=yes
1855 echores "$proc"
1858 ia64)
1859 arch='ia64'
1860 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1861 iproc='ia64'
1864 x86_64|amd64)
1865 arch='x86'
1866 subarch='x86_64'
1867 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1868 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1869 iproc='x86_64'
1871 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1872 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1873 cpuopt=-mtune
1874 else
1875 cpuopt=-mcpu
1877 if test "$_runtime_cpudetection" = no ; then
1878 case "$pvendor" in
1879 AuthenticAMD)
1880 case "$pfamily" in
1881 15) proc=k8
1882 test $_fast_clz = "auto" && _fast_clz=no
1884 *) proc=amdfam10;;
1885 esac
1887 GenuineIntel)
1888 case "$pfamily" in
1889 6) proc=core2;;
1891 # 64-bit prescotts exist, but as far as GCC is concerned they
1892 # have the same capabilities as a nocona.
1893 proc=nocona
1894 test $_fast_cmov = "auto" && _fast_cmov=no
1895 test $_fast_clz = "auto" && _fast_clz=no
1897 esac
1900 proc=error;;
1901 esac
1902 fi # test "$_runtime_cpudetection" = no
1904 echocheck "GCC & CPU optimization abilities"
1905 # This is a stripped-down version of the i386 fallback.
1906 if test "$_runtime_cpudetection" = no ; then
1907 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1908 cflag_check -march=native && proc=native
1910 # --- AMD processors ---
1911 if test "$proc" = "amdfam10"; then
1912 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1914 if test "$proc" = "k8"; then
1915 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1917 # This will fail if gcc version < 3.3, which is ok because earlier
1918 # versions don't really support 64-bit on amd64.
1919 # Is this a valid assumption? -Corey
1920 if test "$proc" = "athlon-xp"; then
1921 cflag_check -march=$proc $cpuopt=$proc || proc=error
1923 # --- Intel processors ---
1924 if test "$proc" = "core2"; then
1925 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1927 if test "$proc" = "x86-64"; then
1928 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1930 if test "$proc" = "nocona"; then
1931 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1933 if test "$proc" = "pentium4"; then
1934 cflag_check -march=$proc $cpuopt=$proc || proc=error
1937 _march="-march=$proc"
1938 _mcpu="$cpuopt=$proc"
1939 if test "$proc" = "error" ; then
1940 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1941 _mcpu=""
1942 _march=""
1944 else # if test "$_runtime_cpudetection" = no
1945 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1946 _march="-march=x86-64"
1947 _mcpu="$cpuopt=generic"
1948 cflag_check $_mcpu || _mcpu="x86-64"
1949 cflag_check $_mcpu || _mcpu=""
1950 cflag_check $_march $_mcpu || _march=""
1953 _optimizing="$proc"
1954 test $_fast_cmov = "auto" && _fast_cmov=yes
1955 test $_fast_clz = "auto" && _fast_clz=yes
1957 echores "$proc"
1960 sparc|sparc64)
1961 arch='sparc'
1962 iproc='sparc'
1963 if test "$host_arch" = "sparc64" ; then
1964 _vis='yes'
1965 proc='ultrasparc'
1966 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1967 elif sunos ; then
1968 echocheck "CPU type"
1969 karch=$(uname -m)
1970 case "$(echo $karch)" in
1971 sun4) proc=v7 ;;
1972 sun4c) proc=v7 ;;
1973 sun4d) proc=v8 ;;
1974 sun4m) proc=v8 ;;
1975 sun4u) proc=ultrasparc _vis='yes' ;;
1976 sun4v) proc=v9 ;;
1977 *) proc=v8 ;;
1978 esac
1979 echores "$proc"
1980 else
1981 proc=v8
1983 _mcpu="-mcpu=$proc"
1984 _optimizing="$proc"
1987 arm*)
1988 arch='arm'
1989 iproc='arm'
1992 avr32)
1993 arch='avr32'
1994 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1995 iproc='avr32'
1996 test $_fast_clz = "auto" && _fast_clz=yes
1999 sh|sh4)
2000 arch='sh4'
2001 iproc='sh4'
2004 ppc|ppc64|powerpc|powerpc64)
2005 arch='ppc'
2006 def_dcbzl='#define HAVE_DCBZL 0'
2007 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2008 iproc='ppc'
2010 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2011 subarch='ppc64'
2012 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2014 echocheck "CPU type"
2015 case $system_name in
2016 Linux)
2017 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2018 if test -n "$($_cpuinfo | grep altivec)"; then
2019 test $_altivec = auto && _altivec=yes
2022 Darwin)
2023 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2024 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2025 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2026 test $_altivec = auto && _altivec=yes
2029 NetBSD)
2030 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2031 case $cc_version in
2032 2*|3.0*|3.1*|3.2*|3.3*)
2035 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2036 test $_altivec = auto && _altivec=yes
2039 esac
2041 AIX)
2042 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2044 esac
2045 if test "$_altivec" = yes; then
2046 echores "$proc altivec"
2047 else
2048 _altivec=no
2049 echores "$proc"
2052 echocheck "GCC & CPU optimization abilities"
2054 if test -n "$proc"; then
2055 case "$proc" in
2056 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2057 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2058 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2059 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2060 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2061 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2062 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2063 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2064 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2065 *) ;;
2066 esac
2067 # gcc 3.1(.1) and up supports 7400 and 7450
2068 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2069 case "$proc" in
2070 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2071 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2072 *) ;;
2073 esac
2075 # gcc 3.2 and up supports 970
2076 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2077 case "$proc" in
2078 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2079 def_dcbzl='#define HAVE_DCBZL 1' ;;
2080 *) ;;
2081 esac
2083 # gcc 3.3 and up supports POWER4
2084 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2085 case "$proc" in
2086 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2087 *) ;;
2088 esac
2090 # gcc 3.4 and up supports 440*
2091 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2092 case "$proc" in
2093 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2094 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2095 *) ;;
2096 esac
2098 # gcc 4.0 and up supports POWER5
2099 if test "$_cc_major" -ge "4"; then
2100 case "$proc" in
2101 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2102 *) ;;
2103 esac
2107 if test -n "$_mcpu"; then
2108 _optimizing=$(echo $_mcpu | cut -c 8-)
2109 echores "$_optimizing"
2110 else
2111 echores "none"
2114 test $_fast_clz = "auto" && _fast_clz=yes
2118 alpha*)
2119 arch='alpha'
2120 iproc='alpha'
2121 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2123 echocheck "CPU type"
2124 cat > $TMPC << EOF
2125 int main(void) {
2126 unsigned long ver, mask;
2127 __asm__ ("implver %0" : "=r" (ver));
2128 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2129 printf("%ld-%x\n", ver, ~mask);
2130 return 0;
2133 $_cc -o "$TMPEXE" "$TMPC"
2134 case $("$TMPEXE") in
2136 0-0) proc="ev4"; _mvi="0";;
2137 1-0) proc="ev5"; _mvi="0";;
2138 1-1) proc="ev56"; _mvi="0";;
2139 1-101) proc="pca56"; _mvi="1";;
2140 2-303) proc="ev6"; _mvi="1";;
2141 2-307) proc="ev67"; _mvi="1";;
2142 2-1307) proc="ev68"; _mvi="1";;
2143 esac
2144 echores "$proc"
2146 echocheck "GCC & CPU optimization abilities"
2147 if test "$proc" = "ev68" ; then
2148 cc_check -mcpu=$proc || proc=ev67
2150 if test "$proc" = "ev67" ; then
2151 cc_check -mcpu=$proc || proc=ev6
2153 _mcpu="-mcpu=$proc"
2154 echores "$proc"
2156 test $_fast_clz = "auto" && _fast_clz=yes
2158 _optimizing="$proc"
2161 mips*)
2162 arch='mips'
2163 iproc='mips'
2165 if irix ; then
2166 echocheck "CPU type"
2167 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2168 case "$(echo $proc)" in
2169 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2170 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2171 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2172 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2173 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2174 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2175 esac
2176 # gcc < 3.x does not support -mtune.
2177 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2178 _mcpu=''
2180 echores "$proc"
2183 test $_fast_clz = "auto" && _fast_clz=yes
2187 hppa)
2188 arch='pa_risc'
2189 iproc='PA-RISC'
2192 s390)
2193 arch='s390'
2194 iproc='390'
2197 s390x)
2198 arch='s390x'
2199 iproc='390x'
2202 vax)
2203 arch='vax'
2204 iproc='vax'
2207 xtensa)
2208 arch='xtensa'
2209 iproc='xtensa'
2212 generic)
2213 arch='generic'
2217 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2218 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2219 die "unsupported architecture $host_arch"
2221 esac # case "$host_arch" in
2223 if test "$_runtime_cpudetection" = yes ; then
2224 if x86 ; then
2225 test "$_cmov" != no && _cmov=yes
2226 x86_32 && _cmov=no
2227 test "$_mmx" != no && _mmx=yes
2228 test "$_3dnow" != no && _3dnow=yes
2229 test "$_3dnowext" != no && _3dnowext=yes
2230 test "$_mmxext" != no && _mmxext=yes
2231 test "$_sse" != no && _sse=yes
2232 test "$_sse2" != no && _sse2=yes
2233 test "$_ssse3" != no && _ssse3=yes
2234 test "$_mtrr" != no && _mtrr=yes
2236 if ppc; then
2237 _altivec=yes
2242 # endian testing
2243 echocheck "byte order"
2244 if test "$_big_endian" = auto ; then
2245 cat > $TMPC <<EOF
2246 short ascii_name[] = {
2247 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2248 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2249 int main(void) { return (long)ascii_name; }
2251 if cc_check ; then
2252 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2253 _big_endian=yes
2254 else
2255 _big_endian=no
2257 else
2258 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2261 if test "$_big_endian" = yes ; then
2262 _byte_order='big-endian'
2263 def_words_endian='#define WORDS_BIGENDIAN 1'
2264 def_bigendian='#define HAVE_BIGENDIAN 1'
2265 else
2266 _byte_order='little-endian'
2267 def_words_endian='#undef WORDS_BIGENDIAN'
2268 def_bigendian='#define HAVE_BIGENDIAN 0'
2270 echores "$_byte_order"
2273 echocheck "extern symbol prefix"
2274 cat > $TMPC << EOF
2275 int ff_extern;
2277 cc_check -c || die "Symbol mangling check failed."
2278 sym=$($_nm -P -g $TMPEXE)
2279 extern_prefix=${sym%%ff_extern*}
2280 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2281 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2282 echores $extern_prefix
2285 echocheck "assembler support of -pipe option"
2286 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2287 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2290 echocheck "compiler support of named assembler arguments"
2291 _named_asm_args=yes
2292 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2293 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2294 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2295 _named_asm_args=no
2296 def_named_asm_args="#undef NAMED_ASM_ARGS"
2298 echores $_named_asm_args
2301 if darwin && test "$cc_vendor" = "gnu" ; then
2302 echocheck "GCC support of -mstackrealign"
2303 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2304 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2305 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2306 # wrong code with this flag, but this can be worked around by adding
2307 # -fno-unit-at-a-time as described in the blog post at
2308 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2309 cat > $TMPC << EOF
2310 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2311 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2313 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2314 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2315 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2316 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2317 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2320 # Checking for CFLAGS
2321 _install_strip="-s"
2322 if test "$_profile" != "" || test "$_debug" != "" ; then
2323 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2324 WARNFLAGS="-W -Wall"
2325 _install_strip=
2326 elif test -z "$CFLAGS" ; then
2327 if test "$cc_vendor" = "intel" ; then
2328 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2329 WARNFLAGS="-wd167 -wd556 -wd144"
2330 elif test "$cc_vendor" = "sun" ; then
2331 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2332 elif test "$cc_vendor" = "clang"; then
2333 CFLAGS="-O2 $_march $_pipe"
2334 elif test "$cc_vendor" != "gnu" ; then
2335 CFLAGS="-O2 $_march $_mcpu $_pipe"
2336 else
2337 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2338 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2339 extra_ldflags="$extra_ldflags -ffast-math"
2341 else
2342 warn_cflags=yes
2345 if test "$cc_vendor" = "gnu" ; then
2346 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2347 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2348 # that's the only variable specific to C now, and this option is not valid
2349 # for C++.
2350 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2351 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2352 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2353 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2354 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2355 else
2356 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2359 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2360 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2363 if test -n "$LDFLAGS" ; then
2364 extra_ldflags="$extra_ldflags $LDFLAGS"
2365 warn_cflags=yes
2366 elif test "$cc_vendor" = "intel" ; then
2367 extra_ldflags="$extra_ldflags -i-static"
2369 if test -n "$CPPFLAGS" ; then
2370 extra_cflags="$extra_cflags $CPPFLAGS"
2371 warn_cflags=yes
2376 if x86_32 ; then
2377 # Checking assembler (_as) compatibility...
2378 # Added workaround for older as that reads from stdin by default - atmos
2379 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2380 echocheck "assembler ($_as $as_version)"
2382 _pref_as_version='2.9.1'
2383 echo 'nop' > $TMPS
2384 if test "$_mmx" = yes ; then
2385 echo 'emms' >> $TMPS
2387 if test "$_3dnow" = yes ; then
2388 _pref_as_version='2.10.1'
2389 echo 'femms' >> $TMPS
2391 if test "$_3dnowext" = yes ; then
2392 _pref_as_version='2.10.1'
2393 echo 'pswapd %mm0, %mm0' >> $TMPS
2395 if test "$_mmxext" = yes ; then
2396 _pref_as_version='2.10.1'
2397 echo 'movntq %mm0, (%eax)' >> $TMPS
2399 if test "$_sse" = yes ; then
2400 _pref_as_version='2.10.1'
2401 echo 'xorps %xmm0, %xmm0' >> $TMPS
2403 #if test "$_sse2" = yes ; then
2404 # _pref_as_version='2.11'
2405 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2407 if test "$_cmov" = yes ; then
2408 _pref_as_version='2.10.1'
2409 echo 'cmovb %eax, %ebx' >> $TMPS
2411 if test "$_ssse3" = yes ; then
2412 _pref_as_version='2.16.92'
2413 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2415 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2417 if test "$as_verc_fail" != yes ; then
2418 echores "ok"
2419 else
2420 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2421 echores "failed"
2422 die "obsolete binutils version"
2425 fi #if x86_32
2428 echocheck "PIC"
2429 pic=no
2430 cat > $TMPC << EOF
2431 int main(void) {
2432 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2433 #error PIC not enabled
2434 #endif
2435 return 0;
2438 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2439 echores $pic
2442 if x86 ; then
2444 echocheck ".align is a power of two"
2445 if test "$_asmalign_pot" = auto ; then
2446 _asmalign_pot=no
2447 inline_asm_check '".align 3"' && _asmalign_pot=yes
2449 if test "$_asmalign_pot" = "yes" ; then
2450 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2451 else
2452 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2454 echores $_asmalign_pot
2457 echocheck "10 assembler operands"
2458 ten_operands=no
2459 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2460 cat > $TMPC << EOF
2461 int main(void) {
2462 int x=0;
2463 __asm__ volatile(
2465 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2467 return 0;
2470 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2471 echores $ten_operands
2473 echocheck "ebx availability"
2474 ebx_available=no
2475 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2476 cat > $TMPC << EOF
2477 int main(void) {
2478 int x;
2479 __asm__ volatile(
2480 "xor %0, %0"
2481 :"=b"(x)
2482 // just adding ebx to clobber list seems unreliable with some
2483 // compilers, e.g. Haiku's gcc 2.95
2485 // and the above check does not work for OSX 64 bit...
2486 __asm__ volatile("":::"%ebx");
2487 return 0;
2490 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2491 echores $ebx_available
2494 echocheck "yasm"
2495 if test -z "$YASMFLAGS" ; then
2496 if darwin ; then
2497 x86_64 && objformat="macho64" || objformat="macho"
2498 elif win32 ; then
2499 objformat="win32"
2500 else
2501 objformat="elf"
2503 # currently tested for Linux x86, x86_64
2504 YASMFLAGS="-f $objformat"
2505 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2506 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2507 case "$objformat" in
2508 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2509 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2510 esac
2511 else
2512 warn_cflags=yes
2515 echo "pabsw xmm0, xmm0" > $TMPS
2516 yasm_check || _yasm=""
2517 if test $_yasm ; then
2518 def_yasm='#define HAVE_YASM 1'
2519 have_yasm="yes"
2520 echores "$_yasm"
2521 else
2522 def_yasm='#define HAVE_YASM 0'
2523 have_yasm="no"
2524 echores "no"
2527 echocheck "bswap"
2528 def_bswap='#define HAVE_BSWAP 0'
2529 echo 'bswap %eax' > $TMPS
2530 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2531 echores "$bswap"
2532 fi #if x86
2535 #FIXME: This should happen before the check for CFLAGS..
2536 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2537 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2539 # check if AltiVec is supported by the compiler, and how to enable it
2540 echocheck "GCC AltiVec flags"
2541 if $(cflag_check -maltivec -mabi=altivec) ; then
2542 _altivec_gcc_flags="-maltivec -mabi=altivec"
2543 # check if <altivec.h> should be included
2544 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2545 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2546 inc_altivec_h='#include <altivec.h>'
2547 else
2548 if $(cflag_check -faltivec) ; then
2549 _altivec_gcc_flags="-faltivec"
2550 else
2551 _altivec=no
2552 _altivec_gcc_flags="none, AltiVec disabled"
2556 echores "$_altivec_gcc_flags"
2558 # check if the compiler supports braces for vector declarations
2559 cat > $TMPC << EOF
2560 $inc_altivec_h
2561 int main(void) { (vector int) {1}; return 0; }
2563 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2565 # Disable runtime cpudetection if we cannot generate AltiVec code or
2566 # AltiVec is disabled by the user.
2567 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2568 && _runtime_cpudetection=no
2570 # Show that we are optimizing for AltiVec (if enabled and supported).
2571 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2572 && _optimizing="$_optimizing altivec"
2574 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2575 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2578 if ppc ; then
2579 def_xform_asm='#define HAVE_XFORM_ASM 0'
2580 xform_asm=no
2581 echocheck "XFORM ASM support"
2582 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2583 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2584 echores "$xform_asm"
2587 if arm ; then
2588 echocheck "ARM pld instruction"
2589 pld=no
2590 inline_asm_check '"pld [r0]"' && pld=yes
2591 echores "$pld"
2593 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2594 if test $_armv5te = "auto" ; then
2595 _armv5te=no
2596 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2598 echores "$_armv5te"
2600 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2602 echocheck "ARMv6 (SIMD instructions)"
2603 if test $_armv6 = "auto" ; then
2604 _armv6=no
2605 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2607 echores "$_armv6"
2609 echocheck "ARMv6t2 (SIMD instructions)"
2610 if test $_armv6t2 = "auto" ; then
2611 _armv6t2=no
2612 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2614 echores "$_armv6t2"
2616 echocheck "ARM VFP"
2617 if test $_armvfp = "auto" ; then
2618 _armvfp=no
2619 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2621 echores "$_armvfp"
2623 echocheck "ARM NEON"
2624 if test $neon = "auto" ; then
2625 neon=no
2626 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2628 echores "$neon"
2630 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2631 if test $_iwmmxt = "auto" ; then
2632 _iwmmxt=no
2633 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2635 echores "$_iwmmxt"
2638 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'
2639 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2640 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2641 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2642 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2643 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2644 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2645 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2646 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2647 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2648 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2649 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2650 test "$pld" = yes && cpuexts="PLD $cpuexts"
2651 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2652 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2653 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2654 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2655 test "$neon" = yes && cpuexts="NEON $cpuexts"
2656 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2657 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2658 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2660 # Checking kernel version...
2661 if x86_32 && linux ; then
2662 _k_verc_problem=no
2663 kernel_version=$(uname -r 2>&1)
2664 echocheck "$system_name kernel version"
2665 case "$kernel_version" in
2666 '') kernel_version="?.??"; _k_verc_fail=yes;;
2667 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2668 _k_verc_problem=yes;;
2669 esac
2670 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2671 _k_verc_fail=yes
2673 if test "$_k_verc_fail" ; then
2674 echores "$kernel_version, fail"
2675 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2676 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2677 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2678 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2679 echo "2.2.x you must upgrade it to get SSE support!"
2680 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2681 else
2682 echores "$kernel_version, ok"
2686 ######################
2687 # MAIN TESTS GO HERE #
2688 ######################
2691 echocheck "-lposix"
2692 if cflag_check -lposix ; then
2693 extra_ldflags="$extra_ldflags -lposix"
2694 echores "yes"
2695 else
2696 echores "no"
2699 echocheck "-lm"
2700 if cflag_check -lm ; then
2701 _ld_lm="-lm"
2702 echores "yes"
2703 else
2704 _ld_lm=""
2705 echores "no"
2709 echocheck "langinfo"
2710 if test "$_langinfo" = auto ; then
2711 _langinfo=no
2712 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2714 if test "$_langinfo" = yes ; then
2715 def_langinfo='#define HAVE_LANGINFO 1'
2716 else
2717 def_langinfo='#undef HAVE_LANGINFO'
2719 echores "$_langinfo"
2722 echocheck "translation support"
2723 if test "$_translation" = yes; then
2724 def_translation="#define CONFIG_TRANSLATION 1"
2725 else
2726 def_translation="#undef CONFIG_TRANSLATION"
2728 echores "$_translation"
2730 echocheck "language"
2731 # Set preferred languages, "all" uses English as main language.
2732 test -z "$language" && language=$LINGUAS
2733 test -z "$language_doc" && language_doc=$language
2734 test -z "$language_man" && language_man=$language
2735 test -z "$language_msg" && language_msg=$language
2736 test -z "$language_msg" && language_msg="all"
2737 language_doc=$(echo $language_doc | tr , " ")
2738 language_man=$(echo $language_man | tr , " ")
2739 language_msg=$(echo $language_msg | tr , " ")
2741 test "$language_doc" = "all" && language_doc=$doc_lang_all
2742 test "$language_man" = "all" && language_man=$man_lang_all
2743 test "$language_msg" = "all" && language_msg=$msg_lang_all
2745 if test "$_translation" != yes ; then
2746 language_msg=""
2749 # Prune non-existing translations from language lists.
2750 # Set message translation to the first available language.
2751 # Fall back on English.
2752 for lang in $language_doc ; do
2753 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2754 done
2755 language_doc=$tmp_language_doc
2756 test -z "$language_doc" && language_doc=en
2758 for lang in $language_man ; do
2759 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2760 done
2761 language_man=$tmp_language_man
2762 test -z "$language_man" && language_man=en
2764 for lang in $language_msg ; do
2765 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2766 done
2767 language_msg=$tmp_language_msg
2769 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2772 echocheck "enable sighandler"
2773 if test "$_sighandler" = yes ; then
2774 def_sighandler='#define CONFIG_SIGHANDLER 1'
2775 else
2776 def_sighandler='#undef CONFIG_SIGHANDLER'
2778 echores "$_sighandler"
2780 echocheck "runtime cpudetection"
2781 if test "$_runtime_cpudetection" = yes ; then
2782 _optimizing="Runtime CPU-Detection enabled"
2783 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2784 else
2785 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2787 echores "$_runtime_cpudetection"
2790 echocheck "restrict keyword"
2791 for restrict_keyword in restrict __restrict __restrict__ ; do
2792 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2793 if cc_check; then
2794 def_restrict_keyword=$restrict_keyword
2795 break;
2797 done
2798 if [ -n "$def_restrict_keyword" ]; then
2799 echores "$def_restrict_keyword"
2800 else
2801 echores "none"
2803 # Avoid infinite recursion loop ("#define restrict restrict")
2804 if [ "$def_restrict_keyword" != "restrict" ]; then
2805 def_restrict_keyword="#define restrict $def_restrict_keyword"
2806 else
2807 def_restrict_keyword=""
2811 echocheck "__builtin_expect"
2812 # GCC branch prediction hint
2813 cat > $TMPC << EOF
2814 static int foo(int a) {
2815 a = __builtin_expect(a, 10);
2816 return a == 10 ? 0 : 1;
2818 int main(void) { return foo(10) && foo(0); }
2820 _builtin_expect=no
2821 cc_check && _builtin_expect=yes
2822 if test "$_builtin_expect" = yes ; then
2823 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2824 else
2825 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2827 echores "$_builtin_expect"
2830 echocheck "kstat"
2831 _kstat=no
2832 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2833 if test "$_kstat" = yes ; then
2834 def_kstat="#define HAVE_LIBKSTAT 1"
2835 extra_ldflags="$extra_ldflags -lkstat"
2836 else
2837 def_kstat="#undef HAVE_LIBKSTAT"
2839 echores "$_kstat"
2842 echocheck "posix4"
2843 # required for nanosleep on some systems
2844 _posix4=no
2845 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2846 if test "$_posix4" = yes ; then
2847 extra_ldflags="$extra_ldflags -lposix4"
2849 echores "$_posix4"
2851 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2852 echocheck $func
2853 eval _$func=no
2854 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2855 if eval test "x\$_$func" = "xyes"; then
2856 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2857 echores yes
2858 else
2859 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2860 echores no
2862 done
2865 echocheck "mkstemp"
2866 _mkstemp=no
2867 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2868 if test "$_mkstemp" = yes ; then
2869 def_mkstemp='#define HAVE_MKSTEMP 1'
2870 else
2871 def_mkstemp='#define HAVE_MKSTEMP 0'
2873 echores "$_mkstemp"
2876 echocheck "nanosleep"
2877 _nanosleep=no
2878 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2879 if test "$_nanosleep" = yes ; then
2880 def_nanosleep='#define HAVE_NANOSLEEP 1'
2881 else
2882 def_nanosleep='#undef HAVE_NANOSLEEP'
2884 echores "$_nanosleep"
2887 echocheck "socklib"
2888 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2889 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2890 cat > $TMPC << EOF
2891 #include <netdb.h>
2892 #include <sys/socket.h>
2893 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2895 _socklib=no
2896 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2897 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2898 done
2899 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2900 if test $_winsock2_h = auto ; then
2901 _winsock2_h=no
2902 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2904 test "$_ld_sock" && res_comment="using $_ld_sock"
2905 echores "$_socklib"
2908 if test $_winsock2_h = yes ; then
2909 _ld_sock="-lws2_32"
2910 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2911 else
2912 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2916 echocheck "arpa/inet.h"
2917 arpa_inet_h=no
2918 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2919 header_check arpa/inet.h && arpa_inet_h=yes &&
2920 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2921 echores "$arpa_inet_h"
2924 echocheck "inet_pton()"
2925 def_inet_pton='#define HAVE_INET_PTON 0'
2926 inet_pton=no
2927 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2928 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2929 done
2930 if test $inet_pton = yes ; then
2931 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2932 def_inet_pton='#define HAVE_INET_PTON 1'
2934 echores "$inet_pton"
2937 echocheck "inet_aton()"
2938 def_inet_aton='#define HAVE_INET_ATON 0'
2939 inet_aton=no
2940 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2941 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2942 done
2943 if test $inet_aton = yes ; then
2944 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2945 def_inet_aton='#define HAVE_INET_ATON 1'
2947 echores "$inet_aton"
2950 echocheck "socklen_t"
2951 _socklen_t=no
2952 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2953 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2954 done
2955 if test "$_socklen_t" = yes ; then
2956 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2957 else
2958 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2960 echores "$_socklen_t"
2963 echocheck "closesocket()"
2964 _closesocket=no
2965 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2966 if test "$_closesocket" = yes ; then
2967 def_closesocket='#define HAVE_CLOSESOCKET 1'
2968 else
2969 def_closesocket='#define HAVE_CLOSESOCKET 0'
2971 echores "$_closesocket"
2974 echocheck "networking"
2975 test $_winsock2_h = no && test $inet_pton = no &&
2976 test $inet_aton = no && networking=no
2977 if test "$networking" = yes ; then
2978 def_network='#define CONFIG_NETWORK 1'
2979 def_networking='#define CONFIG_NETWORKING 1'
2980 extra_ldflags="$extra_ldflags $_ld_sock"
2981 inputmodules="networking $inputmodules"
2982 else
2983 noinputmodules="networking $noinputmodules"
2984 def_network='#define CONFIG_NETWORK 0'
2985 def_networking='#undef CONFIG_NETWORKING'
2987 echores "$networking"
2990 echocheck "inet6"
2991 if test "$_inet6" = auto ; then
2992 cat > $TMPC << EOF
2993 #include <sys/types.h>
2994 #if !defined(_WIN32)
2995 #include <sys/socket.h>
2996 #include <netinet/in.h>
2997 #else
2998 #include <ws2tcpip.h>
2999 #endif
3000 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3002 _inet6=no
3003 if cc_check $_ld_sock ; then
3004 _inet6=yes
3007 if test "$_inet6" = yes ; then
3008 def_inet6='#define HAVE_AF_INET6 1'
3009 else
3010 def_inet6='#undef HAVE_AF_INET6'
3012 echores "$_inet6"
3015 echocheck "gethostbyname2"
3016 if test "$_gethostbyname2" = auto ; then
3017 cat > $TMPC << EOF
3018 #include <sys/types.h>
3019 #include <sys/socket.h>
3020 #include <netdb.h>
3021 int main(void) { gethostbyname2("", AF_INET); return 0; }
3023 _gethostbyname2=no
3024 if cc_check ; then
3025 _gethostbyname2=yes
3028 if test "$_gethostbyname2" = yes ; then
3029 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3030 else
3031 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3033 echores "$_gethostbyname2"
3036 echocheck "inttypes.h (required)"
3037 _inttypes=no
3038 header_check inttypes.h && _inttypes=yes
3039 echores "$_inttypes"
3041 if test "$_inttypes" = no ; then
3042 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3043 header_check sys/bitypes.h && _inttypes=yes
3044 if test "$_inttypes" = yes ; then
3045 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."
3046 else
3047 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3052 echocheck "malloc.h"
3053 _malloc=no
3054 header_check malloc.h && _malloc=yes
3055 if test "$_malloc" = yes ; then
3056 def_malloc_h='#define HAVE_MALLOC_H 1'
3057 else
3058 def_malloc_h='#define HAVE_MALLOC_H 0'
3060 echores "$_malloc"
3063 echocheck "memalign()"
3064 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3065 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3066 _memalign=no
3067 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3068 if test "$_memalign" = yes ; then
3069 def_memalign='#define HAVE_MEMALIGN 1'
3070 else
3071 def_memalign='#define HAVE_MEMALIGN 0'
3072 def_map_memalign='#define memalign(a, b) malloc(b)'
3073 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3075 echores "$_memalign"
3078 echocheck "posix_memalign()"
3079 posix_memalign=no
3080 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3081 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3082 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3083 echores "$posix_memalign"
3086 echocheck "alloca.h"
3087 _alloca=no
3088 statement_check alloca.h 'alloca(0)' && _alloca=yes
3089 if cc_check ; then
3090 def_alloca_h='#define HAVE_ALLOCA_H 1'
3091 else
3092 def_alloca_h='#undef HAVE_ALLOCA_H'
3094 echores "$_alloca"
3097 echocheck "fastmemcpy"
3098 if test "$_fastmemcpy" = yes ; then
3099 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3100 else
3101 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3103 echores "$_fastmemcpy"
3106 echocheck "mman.h"
3107 _mman=no
3108 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3109 if test "$_mman" = yes ; then
3110 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3111 else
3112 def_mman_h='#undef HAVE_SYS_MMAN_H'
3113 os2 && need_mmap=yes
3115 echores "$_mman"
3117 _mman_has_map_failed=no
3118 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3119 if test "$_mman_has_map_failed" = yes ; then
3120 def_mman_has_map_failed=''
3121 else
3122 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3125 echocheck "dynamic loader"
3126 _dl=no
3127 for _ld_tmp in "" "-ldl"; do
3128 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3129 done
3130 if test "$_dl" = yes ; then
3131 def_dl='#define HAVE_LIBDL 1'
3132 else
3133 def_dl='#undef HAVE_LIBDL'
3135 echores "$_dl"
3138 echocheck "dynamic a/v plugins support"
3139 if test "$_dl" = no ; then
3140 _dynamic_plugins=no
3142 if test "$_dynamic_plugins" = yes ; then
3143 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3144 else
3145 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3147 echores "$_dynamic_plugins"
3150 def_threads='#define HAVE_THREADS 0'
3152 echocheck "pthread"
3153 if linux ; then
3154 THREAD_CFLAGS=-D_REENTRANT
3155 elif freebsd || netbsd || openbsd || bsdos ; then
3156 THREAD_CFLAGS=-D_THREAD_SAFE
3158 if test "$_pthreads" = auto ; then
3159 cat > $TMPC << EOF
3160 #include <pthread.h>
3161 static void *func(void *arg) { return arg; }
3162 int main(void) {
3163 pthread_t tid;
3164 #ifdef PTW32_STATIC_LIB
3165 pthread_win32_process_attach_np();
3166 pthread_win32_thread_attach_np();
3167 #endif
3168 return pthread_create (&tid, 0, func, 0) != 0;
3171 _pthreads=no
3172 if ! hpux ; then
3173 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3174 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3175 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3176 done
3177 if test "$_pthreads" = no && mingw32 ; then
3178 _ld_tmp="-lpthreadGC2 -lws2_32"
3179 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3183 if test "$_pthreads" = yes ; then
3184 test $_ld_pthread && res_comment="using $_ld_pthread"
3185 def_pthreads='#define HAVE_PTHREADS 1'
3186 def_threads='#define HAVE_THREADS 1'
3187 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3188 else
3189 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3190 def_pthreads='#undef HAVE_PTHREADS'
3191 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3192 mingw32 || _win32dll=no
3194 echores "$_pthreads"
3196 if cygwin ; then
3197 if test "$_pthreads" = yes ; then
3198 def_pthread_cache="#define PTHREAD_CACHE 1"
3199 else
3200 _stream_cache=no
3201 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3205 echocheck "w32threads"
3206 if test "$_pthreads" = yes ; then
3207 res_comment="using pthread instead"
3208 _w32threads=no
3210 if test "$_w32threads" = auto ; then
3211 _w32threads=no
3212 mingw32 && _w32threads=yes
3214 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3215 echores "$_w32threads"
3217 echocheck "rpath"
3218 if test "$_rpath" = yes ; then
3219 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3220 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3221 done
3222 extra_ldflags=$tmp
3224 echores "$_rpath"
3226 echocheck "iconv"
3227 if test "$_iconv" = auto ; then
3228 cat > $TMPC << EOF
3229 #include <stdio.h>
3230 #include <unistd.h>
3231 #include <iconv.h>
3232 #define INBUFSIZE 1024
3233 #define OUTBUFSIZE 4096
3235 char inbuffer[INBUFSIZE];
3236 char outbuffer[OUTBUFSIZE];
3238 int main(void) {
3239 size_t numread;
3240 iconv_t icdsc;
3241 char *tocode="UTF-8";
3242 char *fromcode="cp1250";
3243 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3244 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3245 char *iptr=inbuffer;
3246 char *optr=outbuffer;
3247 size_t inleft=numread;
3248 size_t outleft=OUTBUFSIZE;
3249 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3250 != (size_t)(-1)) {
3251 write(1, outbuffer, OUTBUFSIZE - outleft);
3254 if (iconv_close(icdsc) == -1)
3257 return 0;
3260 _iconv=no
3261 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3262 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3263 _iconv=yes && break
3264 done
3266 if test "$_iconv" = yes ; then
3267 def_iconv='#define CONFIG_ICONV 1'
3268 else
3269 def_iconv='#undef CONFIG_ICONV'
3271 echores "$_iconv"
3274 echocheck "soundcard.h"
3275 _soundcard_h=no
3276 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3277 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3278 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3279 header_check $_soundcard_header && _soundcard_h=yes &&
3280 res_comment="$_soundcard_header" && break
3281 done
3283 if test "$_soundcard_h" = yes ; then
3284 if test $_soundcard_header = "sys/soundcard.h"; then
3285 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3286 else
3287 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3290 echores "$_soundcard_h"
3293 echocheck "sys/dvdio.h"
3294 _dvdio=no
3295 # FreeBSD 8.1 has broken dvdio.h
3296 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3297 if test "$_dvdio" = yes ; then
3298 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3299 else
3300 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3302 echores "$_dvdio"
3305 echocheck "sys/cdio.h"
3306 _cdio=no
3307 # at least OpenSolaris has a broken cdio.h
3308 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3309 if test "$_cdio" = yes ; then
3310 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3311 else
3312 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3314 echores "$_cdio"
3317 echocheck "linux/cdrom.h"
3318 _cdrom=no
3319 header_check linux/cdrom.h && _cdrom=yes
3320 if test "$_cdrom" = yes ; then
3321 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3322 else
3323 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3325 echores "$_cdrom"
3328 echocheck "dvd.h"
3329 _dvd=no
3330 header_check dvd.h && _dvd=yes
3331 if test "$_dvd" = yes ; then
3332 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3333 else
3334 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3336 echores "$_dvd"
3339 if bsdos; then
3340 echocheck "BSDI dvd.h"
3341 _bsdi_dvd=no
3342 header_check dvd.h && _bsdi_dvd=yes
3343 if test "$_bsdi_dvd" = yes ; then
3344 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3345 else
3346 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3348 echores "$_bsdi_dvd"
3349 fi #if bsdos
3352 if hpux; then
3353 # also used by AIX, but AIX does not support VCD and/or libdvdread
3354 echocheck "HP-UX SCSI header"
3355 _hpux_scsi_h=no
3356 header_check sys/scsi.h && _hpux_scsi_h=yes
3357 if test "$_hpux_scsi_h" = yes ; then
3358 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3359 else
3360 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3362 echores "$_hpux_scsi_h"
3363 fi #if hpux
3366 if sunos; then
3367 echocheck "userspace SCSI headers (Solaris)"
3368 _sol_scsi_h=no
3369 header_check sys/scsi/scsi_types.h &&
3370 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3371 _sol_scsi_h=yes
3372 if test "$_sol_scsi_h" = yes ; then
3373 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3374 else
3375 def_sol_scsi_h='#undef SOLARIS_USCSI'
3377 echores "$_sol_scsi_h"
3378 fi #if sunos
3381 echocheck "termcap"
3382 if test "$_termcap" = auto ; then
3383 _termcap=no
3384 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3385 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3386 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3387 done
3389 if test "$_termcap" = yes ; then
3390 def_termcap='#define HAVE_TERMCAP 1'
3391 test $_ld_tmp && res_comment="using $_ld_tmp"
3392 else
3393 def_termcap='#undef HAVE_TERMCAP'
3395 echores "$_termcap"
3398 echocheck "termios"
3399 def_termios='#undef HAVE_TERMIOS'
3400 def_termios_h='#undef HAVE_TERMIOS_H'
3401 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3402 if test "$_termios" = auto ; then
3403 _termios=no
3404 for _termios_header in "termios.h" "sys/termios.h"; do
3405 header_check $_termios_header && _termios=yes &&
3406 res_comment="using $_termios_header" && break
3407 done
3410 if test "$_termios" = yes ; then
3411 def_termios='#define HAVE_TERMIOS 1'
3412 if test "$_termios_header" = "termios.h" ; then
3413 def_termios_h='#define HAVE_TERMIOS_H 1'
3414 else
3415 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3418 echores "$_termios"
3421 echocheck "shm"
3422 if test "$_shm" = auto ; then
3423 _shm=no
3424 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3426 if test "$_shm" = yes ; then
3427 def_shm='#define HAVE_SHM 1'
3428 else
3429 def_shm='#undef HAVE_SHM'
3431 echores "$_shm"
3434 echocheck "strsep()"
3435 _strsep=no
3436 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3437 if test "$_strsep" = yes ; then
3438 def_strsep='#define HAVE_STRSEP 1'
3439 need_strsep=no
3440 else
3441 def_strsep='#undef HAVE_STRSEP'
3442 need_strsep=yes
3444 echores "$_strsep"
3447 echocheck "vsscanf()"
3448 cat > $TMPC << EOF
3449 #define _ISOC99_SOURCE
3450 #include <stdarg.h>
3451 #include <stdio.h>
3452 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3454 _vsscanf=no
3455 cc_check && _vsscanf=yes
3456 if test "$_vsscanf" = yes ; then
3457 def_vsscanf='#define HAVE_VSSCANF 1'
3458 need_vsscanf=no
3459 else
3460 def_vsscanf='#undef HAVE_VSSCANF'
3461 need_vsscanf=yes
3463 echores "$_vsscanf"
3466 echocheck "swab()"
3467 _swab=no
3468 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3469 if test "$_swab" = yes ; then
3470 def_swab='#define HAVE_SWAB 1'
3471 need_swab=no
3472 else
3473 def_swab='#undef HAVE_SWAB'
3474 need_swab=yes
3476 echores "$_swab"
3478 echocheck "POSIX select()"
3479 cat > $TMPC << EOF
3480 #include <stdio.h>
3481 #include <stdlib.h>
3482 #include <sys/types.h>
3483 #include <string.h>
3484 #include <sys/time.h>
3485 #include <unistd.h>
3486 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3488 _posix_select=no
3489 def_posix_select='#undef HAVE_POSIX_SELECT'
3490 #select() of kLIBC (OS/2) supports socket only
3491 ! os2 && cc_check && _posix_select=yes &&
3492 def_posix_select='#define HAVE_POSIX_SELECT 1'
3493 echores "$_posix_select"
3496 echocheck "audio select()"
3497 if test "$_select" = no ; then
3498 def_select='#undef HAVE_AUDIO_SELECT'
3499 elif test "$_select" = yes ; then
3500 def_select='#define HAVE_AUDIO_SELECT 1'
3502 echores "$_select"
3505 echocheck "gettimeofday()"
3506 _gettimeofday=no
3507 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3508 if test "$_gettimeofday" = yes ; then
3509 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3510 need_gettimeofday=no
3511 else
3512 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3513 need_gettimeofday=yes
3515 echores "$_gettimeofday"
3518 echocheck "glob()"
3519 _glob=no
3520 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3521 if test "$_glob" = yes ; then
3522 def_glob='#define HAVE_GLOB 1'
3523 need_glob=no
3524 else
3525 def_glob='#undef HAVE_GLOB'
3526 need_glob=yes
3528 echores "$_glob"
3531 echocheck "setenv()"
3532 _setenv=no
3533 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3534 if test "$_setenv" = yes ; then
3535 def_setenv='#define HAVE_SETENV 1'
3536 need_setenv=no
3537 else
3538 def_setenv='#undef HAVE_SETENV'
3539 need_setenv=yes
3541 echores "$_setenv"
3544 echocheck "setmode()"
3545 _setmode=no
3546 def_setmode='#define HAVE_SETMODE 0'
3547 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3548 echores "$_setmode"
3551 if sunos; then
3552 echocheck "sysi86()"
3553 _sysi86=no
3554 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3555 if test "$_sysi86" = yes ; then
3556 def_sysi86='#define HAVE_SYSI86 1'
3557 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3558 else
3559 def_sysi86='#undef HAVE_SYSI86'
3561 echores "$_sysi86"
3562 fi #if sunos
3565 echocheck "sys/sysinfo.h"
3566 _sys_sysinfo=no
3567 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3568 if test "$_sys_sysinfo" = yes ; then
3569 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3570 else
3571 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3573 echores "$_sys_sysinfo"
3576 if darwin; then
3578 echocheck "Mac OS X Finder Support"
3579 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3580 if test "$_macosx_finder" = yes ; then
3581 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3582 extra_ldflags="$extra_ldflags -framework Carbon"
3584 echores "$_macosx_finder"
3586 echocheck "Mac OS X Bundle file locations"
3587 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3588 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3589 if test "$_macosx_bundle" = yes ; then
3590 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3591 extra_ldflags="$extra_ldflags -framework Carbon"
3593 echores "$_macosx_bundle"
3595 echocheck "Apple Remote"
3596 if test "$_apple_remote" = auto ; then
3597 _apple_remote=no
3598 cat > $TMPC <<EOF
3599 #include <stdio.h>
3600 #include <IOKit/IOCFPlugIn.h>
3601 int main(void) {
3602 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3603 CFMutableDictionaryRef hidMatchDictionary;
3604 IOReturn ioReturnValue;
3606 // Set up a matching dictionary to search the I/O Registry by class.
3607 // name for all HID class devices
3608 hidMatchDictionary = IOServiceMatching("AppleIRController");
3610 // Now search I/O Registry for matching devices.
3611 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3612 hidMatchDictionary, &hidObjectIterator);
3614 // If search is unsuccessful, return nonzero.
3615 if (ioReturnValue != kIOReturnSuccess ||
3616 !IOIteratorIsValid(hidObjectIterator)) {
3617 return 1;
3619 return 0;
3622 cc_check -framework IOKit && _apple_remote=yes
3624 if test "$_apple_remote" = yes ; then
3625 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3626 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3627 else
3628 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3630 echores "$_apple_remote"
3632 fi #if darwin
3634 if linux; then
3636 echocheck "Apple IR"
3637 if test "$_apple_ir" = auto ; then
3638 _apple_ir=no
3639 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3641 if test "$_apple_ir" = yes ; then
3642 def_apple_ir='#define CONFIG_APPLE_IR 1'
3643 else
3644 def_apple_ir='#undef CONFIG_APPLE_IR'
3646 echores "$_apple_ir"
3647 fi #if linux
3649 echocheck "pkg-config"
3650 _pkg_config=pkg-config
3651 if $($_pkg_config --version > /dev/null 2>&1); then
3652 if test "$_ld_static"; then
3653 _pkg_config="$_pkg_config --static"
3655 echores "yes"
3656 else
3657 _pkg_config=false
3658 echores "no"
3662 echocheck "Samba support (libsmbclient)"
3663 if test "$_smb" = yes; then
3664 extra_ldflags="$extra_ldflags -lsmbclient"
3666 if test "$_smb" = auto; then
3667 _smb=no
3668 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3669 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3670 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3671 done
3674 if test "$_smb" = yes; then
3675 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3676 inputmodules="smb $inputmodules"
3677 else
3678 def_smb="#undef CONFIG_LIBSMBCLIENT"
3679 noinputmodules="smb $noinputmodules"
3681 echores "$_smb"
3684 #########
3685 # VIDEO #
3686 #########
3689 echocheck "tdfxfb"
3690 if test "$_tdfxfb" = yes ; then
3691 def_tdfxfb='#define CONFIG_TDFXFB 1'
3692 vomodules="tdfxfb $vomodules"
3693 else
3694 def_tdfxfb='#undef CONFIG_TDFXFB'
3695 novomodules="tdfxfb $novomodules"
3697 echores "$_tdfxfb"
3699 echocheck "s3fb"
3700 if test "$_s3fb" = yes ; then
3701 def_s3fb='#define CONFIG_S3FB 1'
3702 vomodules="s3fb $vomodules"
3703 else
3704 def_s3fb='#undef CONFIG_S3FB'
3705 novomodules="s3fb $novomodules"
3707 echores "$_s3fb"
3709 echocheck "wii"
3710 if test "$_wii" = yes ; then
3711 def_wii='#define CONFIG_WII 1'
3712 vomodules="wii $vomodules"
3713 else
3714 def_wii='#undef CONFIG_WII'
3715 novomodules="wii $novomodules"
3717 echores "$_wii"
3719 echocheck "tdfxvid"
3720 if test "$_tdfxvid" = yes ; then
3721 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3722 vomodules="tdfx_vid $vomodules"
3723 else
3724 def_tdfxvid='#undef CONFIG_TDFX_VID'
3725 novomodules="tdfx_vid $novomodules"
3727 echores "$_tdfxvid"
3729 echocheck "xvr100"
3730 if test "$_xvr100" = auto ; then
3731 cat > $TMPC << EOF
3732 #include <unistd.h>
3733 #include <sys/fbio.h>
3734 #include <sys/visual_io.h>
3735 int main(void) {
3736 struct vis_identifier ident;
3737 struct fbgattr attr;
3738 ioctl(0, VIS_GETIDENTIFIER, &ident);
3739 ioctl(0, FBIOGATTR, &attr);
3740 return 0;
3743 _xvr100=no
3744 cc_check && _xvr100=yes
3746 if test "$_xvr100" = yes ; then
3747 def_xvr100='#define CONFIG_XVR100 1'
3748 vomodules="xvr100 $vomodules"
3749 else
3750 def_tdfxvid='#undef CONFIG_XVR100'
3751 novomodules="xvr100 $novomodules"
3753 echores "$_xvr100"
3755 echocheck "tga"
3756 if test "$_tga" = yes ; then
3757 def_tga='#define CONFIG_TGA 1'
3758 vomodules="tga $vomodules"
3759 else
3760 def_tga='#undef CONFIG_TGA'
3761 novomodules="tga $novomodules"
3763 echores "$_tga"
3766 echocheck "md5sum support"
3767 if test "$_md5sum" = yes; then
3768 def_md5sum="#define CONFIG_MD5SUM 1"
3769 vomodules="md5sum $vomodules"
3770 else
3771 def_md5sum="#undef CONFIG_MD5SUM"
3772 novomodules="md5sum $novomodules"
3774 echores "$_md5sum"
3777 echocheck "yuv4mpeg support"
3778 if test "$_yuv4mpeg" = yes; then
3779 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3780 vomodules="yuv4mpeg $vomodules"
3781 else
3782 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3783 novomodules="yuv4mpeg $novomodules"
3785 echores "$_yuv4mpeg"
3788 echocheck "bl"
3789 if test "$_bl" = yes ; then
3790 def_bl='#define CONFIG_BL 1'
3791 vomodules="bl $vomodules"
3792 else
3793 def_bl='#undef CONFIG_BL'
3794 novomodules="bl $novomodules"
3796 echores "$_bl"
3799 echocheck "DirectFB"
3800 if test "$_directfb" = auto ; then
3801 _directfb=no
3802 cat > $TMPC << EOF
3803 #include <directfb.h>
3804 #include <directfb_version.h>
3805 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3806 #error "DirectFB version too old."
3807 #endif
3808 int main(void) { DirectFBInit(0, 0); return 0; }
3810 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3811 cc_check $_inc_tmp -ldirectfb &&
3812 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3813 done
3815 if test "$_directfb" = yes ; then
3816 def_directfb='#define CONFIG_DIRECTFB 1'
3817 vomodules="directfb dfbmga $vomodules"
3818 libs_mplayer="$libs_mplayer -ldirectfb"
3819 else
3820 def_directfb='#undef CONFIG_DIRECTFB'
3821 novomodules="directfb dfbmga $novomodules"
3823 echores "$_directfb"
3826 echocheck "X11 headers presence"
3827 _x11_headers="no"
3828 res_comment="check if the dev(el) packages are installed"
3829 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3830 if test -f "$I/X11/Xlib.h" ; then
3831 _x11_headers="yes"
3832 res_comment=""
3833 break
3835 done
3836 if test $_cross_compile = no; then
3837 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3838 /usr/include/X11R6 /usr/openwin/include ; do
3839 if test -f "$I/X11/Xlib.h" ; then
3840 extra_cflags="$extra_cflags -I$I"
3841 _x11_headers="yes"
3842 res_comment="using $I"
3843 break
3845 done
3847 echores "$_x11_headers"
3850 echocheck "X11"
3851 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3852 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3853 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3854 -L/usr/lib ; do
3855 if netbsd; then
3856 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3857 else
3858 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3860 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3861 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3862 done
3864 if test "$_x11" = yes ; then
3865 def_x11='#define CONFIG_X11 1'
3866 vomodules="x11 xover $vomodules"
3867 else
3868 _x11=no
3869 def_x11='#undef CONFIG_X11'
3870 novomodules="x11 $novomodules"
3871 res_comment="check if the dev(el) packages are installed"
3872 # disable stuff that depends on X
3873 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3875 echores "$_x11"
3877 echocheck "Xss screensaver extensions"
3878 if test "$_xss" = auto ; then
3879 _xss=no
3880 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3882 if test "$_xss" = yes ; then
3883 def_xss='#define CONFIG_XSS 1'
3884 libs_mplayer="$libs_mplayer -lXss"
3885 else
3886 def_xss='#undef CONFIG_XSS'
3888 echores "$_xss"
3890 echocheck "DPMS"
3891 _xdpms3=no
3892 _xdpms4=no
3893 if test "$_x11" = yes ; then
3894 cat > $TMPC <<EOF
3895 #include <X11/Xmd.h>
3896 #include <X11/Xlib.h>
3897 #include <X11/Xutil.h>
3898 #include <X11/Xatom.h>
3899 #include <X11/extensions/dpms.h>
3900 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3902 cc_check -lXdpms && _xdpms3=yes
3903 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3905 if test "$_xdpms4" = yes ; then
3906 def_xdpms='#define CONFIG_XDPMS 1'
3907 res_comment="using Xdpms 4"
3908 echores "yes"
3909 elif test "$_xdpms3" = yes ; then
3910 def_xdpms='#define CONFIG_XDPMS 1'
3911 libs_mplayer="$libs_mplayer -lXdpms"
3912 res_comment="using Xdpms 3"
3913 echores "yes"
3914 else
3915 def_xdpms='#undef CONFIG_XDPMS'
3916 echores "no"
3920 echocheck "Xv"
3921 if test "$_xv" = auto ; then
3922 _xv=no
3923 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3926 if test "$_xv" = yes ; then
3927 def_xv='#define CONFIG_XV 1'
3928 libs_mplayer="$libs_mplayer -lXv"
3929 vomodules="xv $vomodules"
3930 else
3931 def_xv='#undef CONFIG_XV'
3932 novomodules="xv $novomodules"
3934 echores "$_xv"
3937 echocheck "XvMC"
3938 if test "$_xv" = yes && test "$_xvmc" != no ; then
3939 _xvmc=no
3940 cat > $TMPC <<EOF
3941 #include <X11/Xlib.h>
3942 #include <X11/extensions/Xvlib.h>
3943 #include <X11/extensions/XvMClib.h>
3944 int main(void) {
3945 XvMCQueryExtension(0, 0, 0);
3946 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
3947 return 0; }
3949 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
3950 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
3951 done
3953 if test "$_xvmc" = yes ; then
3954 def_xvmc='#define CONFIG_XVMC 1'
3955 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
3956 vomodules="xvmc $vomodules"
3957 res_comment="using $_xvmclib"
3958 else
3959 def_xvmc='#define CONFIG_XVMC 0'
3960 novomodules="xvmc $novomodules"
3962 echores "$_xvmc"
3965 echocheck "VDPAU"
3966 if test "$_vdpau" = auto ; then
3967 _vdpau=no
3968 if test "$_dl" = yes ; then
3969 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
3972 if test "$_vdpau" = yes ; then
3973 def_vdpau='#define CONFIG_VDPAU 1'
3974 libs_mplayer="$libs_mplayer -lvdpau"
3975 vomodules="vdpau $vomodules"
3976 else
3977 def_vdpau='#define CONFIG_VDPAU 0'
3978 novomodules="vdpau $novomodules"
3980 echores "$_vdpau"
3983 echocheck "Xinerama"
3984 if test "$_xinerama" = auto ; then
3985 _xinerama=no
3986 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3989 if test "$_xinerama" = yes ; then
3990 def_xinerama='#define CONFIG_XINERAMA 1'
3991 libs_mplayer="$libs_mplayer -lXinerama"
3992 else
3993 def_xinerama='#undef CONFIG_XINERAMA'
3995 echores "$_xinerama"
3998 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3999 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4000 # named 'X extensions' or something similar.
4001 # This check may be useful for future mplayer versions (to change resolution)
4002 # If you run into problems, remove '-lXxf86vm'.
4003 echocheck "Xxf86vm"
4004 if test "$_vm" = auto ; then
4005 _vm=no
4006 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4008 if test "$_vm" = yes ; then
4009 def_vm='#define CONFIG_XF86VM 1'
4010 libs_mplayer="$libs_mplayer -lXxf86vm"
4011 else
4012 def_vm='#undef CONFIG_XF86VM'
4014 echores "$_vm"
4016 # Check for the presence of special keycodes, like audio control buttons
4017 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4018 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4019 # have these new keycodes.
4020 echocheck "XF86keysym"
4021 if test "$_xf86keysym" = auto; then
4022 _xf86keysym=no
4023 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4025 if test "$_xf86keysym" = yes ; then
4026 def_xf86keysym='#define CONFIG_XF86XK 1'
4027 else
4028 def_xf86keysym='#undef CONFIG_XF86XK'
4030 echores "$_xf86keysym"
4032 echocheck "DGA"
4033 if test "$_dga2" = auto && test "$_x11" = yes ; then
4034 _dga2=no
4035 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4037 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4038 _dga1=no
4039 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4042 _dga=no
4043 def_dga='#undef CONFIG_DGA'
4044 def_dga1='#undef CONFIG_DGA1'
4045 def_dga2='#undef CONFIG_DGA2'
4046 if test "$_dga1" = yes ; then
4047 _dga=yes
4048 def_dga1='#define CONFIG_DGA1 1'
4049 res_comment="using DGA 1.0"
4050 elif test "$_dga2" = yes ; then
4051 _dga=yes
4052 def_dga2='#define CONFIG_DGA2 1'
4053 res_comment="using DGA 2.0"
4055 if test "$_dga" = yes ; then
4056 def_dga='#define CONFIG_DGA 1'
4057 libs_mplayer="$libs_mplayer -lXxf86dga"
4058 vomodules="dga $vomodules"
4059 else
4060 novomodules="dga $novomodules"
4062 echores "$_dga"
4065 echocheck "3dfx"
4066 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4067 def_3dfx='#define CONFIG_3DFX 1'
4068 vomodules="3dfx $vomodules"
4069 else
4070 def_3dfx='#undef CONFIG_3DFX'
4071 novomodules="3dfx $novomodules"
4073 echores "$_3dfx"
4076 echocheck "GGI"
4077 if test "$_ggi" = auto ; then
4078 _ggi=no
4079 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4081 if test "$_ggi" = yes ; then
4082 def_ggi='#define CONFIG_GGI 1'
4083 libs_mplayer="$libs_mplayer -lggi"
4084 vomodules="ggi $vomodules"
4085 else
4086 def_ggi='#undef CONFIG_GGI'
4087 novomodules="ggi $novomodules"
4089 echores "$_ggi"
4091 echocheck "GGI extension: libggiwmh"
4092 if test "$_ggiwmh" = auto ; then
4093 _ggiwmh=no
4094 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4096 # needed to get right output on obscure combination
4097 # like --disable-ggi --enable-ggiwmh
4098 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4099 def_ggiwmh='#define CONFIG_GGIWMH 1'
4100 libs_mplayer="$libs_mplayer -lggiwmh"
4101 else
4102 _ggiwmh=no
4103 def_ggiwmh='#undef CONFIG_GGIWMH'
4105 echores "$_ggiwmh"
4108 echocheck "AA"
4109 if test "$_aa" = auto ; then
4110 cat > $TMPC << EOF
4111 #include <aalib.h>
4112 int main(void) {
4113 aa_context *c;
4114 aa_renderparams *p;
4115 aa_init(0, 0, 0);
4116 c = aa_autoinit(&aa_defparams);
4117 p = aa_getrenderparams();
4118 aa_autoinitkbd(c, 0);
4119 return 0; }
4121 _aa=no
4122 for _ld_tmp in "-laa" ; do
4123 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4124 done
4126 if test "$_aa" = yes ; then
4127 def_aa='#define CONFIG_AA 1'
4128 if cygwin ; then
4129 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4131 vomodules="aa $vomodules"
4132 else
4133 def_aa='#undef CONFIG_AA'
4134 novomodules="aa $novomodules"
4136 echores "$_aa"
4139 echocheck "CACA"
4140 if test "$_caca" = auto ; then
4141 _caca=no
4142 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4143 cat > $TMPC << EOF
4144 #include <caca.h>
4145 #ifdef CACA_API_VERSION_1
4146 #include <caca0.h>
4147 #endif
4148 int main(void) { caca_init(); return 0; }
4150 cc_check $(caca-config --libs) && _caca=yes
4153 if test "$_caca" = yes ; then
4154 def_caca='#define CONFIG_CACA 1'
4155 extra_cflags="$extra_cflags $(caca-config --cflags)"
4156 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4157 vomodules="caca $vomodules"
4158 else
4159 def_caca='#undef CONFIG_CACA'
4160 novomodules="caca $novomodules"
4162 echores "$_caca"
4165 echocheck "SVGAlib"
4166 if test "$_svga" = auto ; then
4167 _svga=no
4168 header_check vga.h -lvga $_ld_lm && _svga=yes
4170 if test "$_svga" = yes ; then
4171 def_svga='#define CONFIG_SVGALIB 1'
4172 libs_mplayer="$libs_mplayer -lvga"
4173 vomodules="svga $vomodules"
4174 else
4175 def_svga='#undef CONFIG_SVGALIB'
4176 novomodules="svga $novomodules"
4178 echores "$_svga"
4181 echocheck "FBDev"
4182 if test "$_fbdev" = auto ; then
4183 _fbdev=no
4184 linux && _fbdev=yes
4186 if test "$_fbdev" = yes ; then
4187 def_fbdev='#define CONFIG_FBDEV 1'
4188 vomodules="fbdev $vomodules"
4189 else
4190 def_fbdev='#undef CONFIG_FBDEV'
4191 novomodules="fbdev $novomodules"
4193 echores "$_fbdev"
4197 echocheck "DVB"
4198 if test "$_dvb" = auto ; then
4199 _dvb=no
4200 cat >$TMPC << EOF
4201 #include <poll.h>
4202 #include <sys/ioctl.h>
4203 #include <stdio.h>
4204 #include <time.h>
4205 #include <unistd.h>
4206 #include <linux/dvb/dmx.h>
4207 #include <linux/dvb/frontend.h>
4208 #include <linux/dvb/video.h>
4209 #include <linux/dvb/audio.h>
4210 int main(void) {return 0;}
4212 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4213 cc_check $_inc_tmp && _dvb=yes &&
4214 extra_cflags="$extra_cflags $_inc_tmp" && break
4215 done
4217 echores "$_dvb"
4218 if test "$_dvb" = yes ; then
4219 _dvbin=yes
4220 inputmodules="dvb $inputmodules"
4221 def_dvb='#define CONFIG_DVB 1'
4222 def_dvbin='#define CONFIG_DVBIN 1'
4223 aomodules="mpegpes(dvb) $aomodules"
4224 vomodules="mpegpes(dvb) $vomodules"
4225 else
4226 _dvbin=no
4227 noinputmodules="dvb $noinputmodules"
4228 def_dvb='#undef CONFIG_DVB'
4229 def_dvbin='#undef CONFIG_DVBIN '
4230 aomodules="mpegpes(file) $aomodules"
4231 vomodules="mpegpes(file) $vomodules"
4235 if darwin; then
4237 echocheck "QuickTime"
4238 if test "$quicktime" = auto ; then
4239 quicktime=no
4240 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4242 if test "$quicktime" = yes ; then
4243 extra_ldflags="$extra_ldflags -framework QuickTime"
4244 def_quicktime='#define CONFIG_QUICKTIME 1'
4245 else
4246 def_quicktime='#undef CONFIG_QUICKTIME'
4247 _quartz=no
4249 echores $quicktime
4251 echocheck "Quartz"
4252 if test "$_quartz" = auto ; then
4253 _quartz=no
4254 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4256 if test "$_quartz" = yes ; then
4257 libs_mplayer="$libs_mplayer -framework Carbon"
4258 def_quartz='#define CONFIG_QUARTZ 1'
4259 vomodules="quartz $vomodules"
4260 else
4261 def_quartz='#undef CONFIG_QUARTZ'
4262 novomodules="quartz $novomodules"
4264 echores $_quartz
4266 echocheck "CoreVideo"
4267 if test "$_corevideo" = auto ; then
4268 cat > $TMPC <<EOF
4269 #include <Carbon/Carbon.h>
4270 #include <CoreServices/CoreServices.h>
4271 #include <OpenGL/OpenGL.h>
4272 #include <QuartzCore/CoreVideo.h>
4273 int main(void) { return 0; }
4275 _corevideo=no
4276 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4278 if test "$_corevideo" = yes ; then
4279 vomodules="corevideo $vomodules"
4280 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4281 def_corevideo='#define CONFIG_COREVIDEO 1'
4282 else
4283 novomodules="corevideo $novomodules"
4284 def_corevideo='#undef CONFIG_COREVIDEO'
4286 echores "$_corevideo"
4288 fi #if darwin
4291 echocheck "PNG support"
4292 if test "$_png" = auto ; then
4293 _png=no
4294 if irix ; then
4295 # Don't check for -lpng on irix since it has its own libpng
4296 # incompatible with the GNU libpng
4297 res_comment="disabled on irix (not GNU libpng)"
4298 else
4299 cat > $TMPC << EOF
4300 #include <stdio.h>
4301 #include <string.h>
4302 #include <png.h>
4303 int main(void) {
4304 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4305 printf("libpng: %s\n", png_libpng_ver);
4306 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4309 cc_check -lpng -lz $_ld_lm && _png=yes
4312 echores "$_png"
4313 if test "$_png" = yes ; then
4314 def_png='#define CONFIG_PNG 1'
4315 extra_ldflags="$extra_ldflags -lpng -lz"
4316 else
4317 def_png='#undef CONFIG_PNG'
4320 echocheck "MNG support"
4321 if test "$_mng" = auto ; then
4322 _mng=no
4323 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4325 echores "$_mng"
4326 if test "$_mng" = yes ; then
4327 def_mng='#define CONFIG_MNG 1'
4328 extra_ldflags="$extra_ldflags -lmng -lz"
4329 else
4330 def_mng='#undef CONFIG_MNG'
4333 echocheck "JPEG support"
4334 if test "$_jpeg" = auto ; then
4335 _jpeg=no
4336 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4338 echores "$_jpeg"
4340 if test "$_jpeg" = yes ; then
4341 def_jpeg='#define CONFIG_JPEG 1'
4342 vomodules="jpeg $vomodules"
4343 extra_ldflags="$extra_ldflags -ljpeg"
4344 else
4345 def_jpeg='#undef CONFIG_JPEG'
4346 novomodules="jpeg $novomodules"
4351 echocheck "PNM support"
4352 if test "$_pnm" = yes; then
4353 def_pnm="#define CONFIG_PNM 1"
4354 vomodules="pnm $vomodules"
4355 else
4356 def_pnm="#undef CONFIG_PNM"
4357 novomodules="pnm $novomodules"
4359 echores "$_pnm"
4363 echocheck "GIF support"
4364 # This is to appease people who want to force gif support.
4365 # If it is forced to yes, then we still do checks to determine
4366 # which gif library to use.
4367 if test "$_gif" = yes ; then
4368 _force_gif=yes
4369 _gif=auto
4372 if test "$_gif" = auto ; then
4373 _gif=no
4374 for _ld_gif in "-lungif" "-lgif" ; do
4375 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4376 done
4379 # If no library was found, and the user wants support forced,
4380 # then we force it on with libgif, as this is the safest
4381 # assumption IMHO. (libungif & libregif both create symbolic
4382 # links to libgif. We also assume that no x11 support is needed,
4383 # because if you are forcing this, then you _should_ know what
4384 # you are doing. [ Besides, package maintainers should never
4385 # have compiled x11 deps into libungif in the first place. ] )
4386 # </rant>
4387 # --Joey
4388 if test "$_force_gif" = yes && test "$_gif" = no ; then
4389 _gif=yes
4390 _ld_gif="-lgif"
4393 if test "$_gif" = yes ; then
4394 def_gif='#define CONFIG_GIF 1'
4395 codecmodules="gif $codecmodules"
4396 vomodules="gif89a $vomodules"
4397 res_comment="old version, some encoding functions disabled"
4398 def_gif_4='#undef CONFIG_GIF_4'
4399 extra_ldflags="$extra_ldflags $_ld_gif"
4401 cat > $TMPC << EOF
4402 #include <signal.h>
4403 #include <stdio.h>
4404 #include <stdlib.h>
4405 #include <gif_lib.h>
4406 static void catch(int sig) { exit(1); }
4407 int main(void) {
4408 signal(SIGSEGV, catch); // catch segfault
4409 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4410 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4411 return 0;
4414 if cc_check "$_ld_gif" ; then
4415 def_gif_4='#define CONFIG_GIF_4 1'
4416 res_comment=""
4418 else
4419 def_gif='#undef CONFIG_GIF'
4420 def_gif_4='#undef CONFIG_GIF_4'
4421 novomodules="gif89a $novomodules"
4422 nocodecmodules="gif $nocodecmodules"
4424 echores "$_gif"
4427 case "$_gif" in yes*)
4428 echocheck "broken giflib workaround"
4429 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4431 cat > $TMPC << EOF
4432 #include <stdio.h>
4433 #include <gif_lib.h>
4434 int main(void) {
4435 GifFileType gif = {.UserData = NULL};
4436 printf("UserData is at address %p\n", gif.UserData);
4437 return 0;
4440 if cc_check "$_ld_gif" ; then
4441 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4442 echores "disabled"
4443 else
4444 echores "enabled"
4447 esac
4450 echocheck "VESA support"
4451 if test "$_vesa" = auto ; then
4452 _vesa=no
4453 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4455 if test "$_vesa" = yes ; then
4456 def_vesa='#define CONFIG_VESA 1'
4457 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4458 vomodules="vesa $vomodules"
4459 else
4460 def_vesa='#undef CONFIG_VESA'
4461 novomodules="vesa $novomodules"
4463 echores "$_vesa"
4465 #################
4466 # VIDEO + AUDIO #
4467 #################
4470 echocheck "SDL"
4471 _inc_tmp=""
4472 _ld_tmp=""
4473 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4474 if test -z "$_sdlconfig" ; then
4475 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4476 _sdlconfig="sdl-config"
4477 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4478 _sdlconfig="sdl11-config"
4479 else
4480 _sdlconfig=false
4483 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4484 cat > $TMPC << EOF
4485 #ifdef CONFIG_SDL_SDL_H
4486 #include <SDL/SDL.h>
4487 #else
4488 #include <SDL.h>
4489 #endif
4490 #ifndef __APPLE__
4491 // we allow SDL hacking our main() only on OSX
4492 #undef main
4493 #endif
4494 int main(int argc, char *argv[]) {
4495 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4496 return 0;
4499 _sdl=no
4500 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4501 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4502 _sdl=yes
4503 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4504 break
4506 done
4507 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4508 res_comment="using $_sdlconfig"
4509 if cygwin ; then
4510 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4511 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4512 elif mingw32 ; then
4513 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4514 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4515 else
4516 _inc_tmp="$($_sdlconfig --cflags)"
4517 _ld_tmp="$($_sdlconfig --libs)"
4519 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4520 _sdl=yes
4521 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4522 # HACK for BeOS/Haiku SDL
4523 _ld_tmp="$_ld_tmp -lstdc++"
4524 _sdl=yes
4528 if test "$_sdl" = yes ; then
4529 def_sdl='#define CONFIG_SDL 1'
4530 extra_cflags="$extra_cflags $_inc_tmp"
4531 libs_mplayer="$libs_mplayer $_ld_tmp"
4532 vomodules="sdl $vomodules"
4533 aomodules="sdl $aomodules"
4534 else
4535 def_sdl='#undef CONFIG_SDL'
4536 novomodules="sdl $novomodules"
4537 noaomodules="sdl $noaomodules"
4539 echores "$_sdl"
4542 # make sure this stays below CoreVideo to avoid issues due to namespace
4543 # conflicts between -lGL and -framework OpenGL
4544 echocheck "OpenGL"
4545 #Note: this test is run even with --enable-gl since we autodetect linker flags
4546 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4547 cat > $TMPC << EOF
4548 #ifdef GL_WIN32
4549 #include <windows.h>
4550 #include <GL/gl.h>
4551 #elif defined(GL_SDL)
4552 #include <GL/gl.h>
4553 #ifdef CONFIG_SDL_SDL_H
4554 #include <SDL/SDL.h>
4555 #else
4556 #include <SDL.h>
4557 #endif
4558 #ifndef __APPLE__
4559 // we allow SDL hacking our main() only on OSX
4560 #undef main
4561 #endif
4562 #else
4563 #include <GL/gl.h>
4564 #include <X11/Xlib.h>
4565 #include <GL/glx.h>
4566 #endif
4567 int main(int argc, char *argv[]) {
4568 #ifdef GL_WIN32
4569 HDC dc;
4570 wglCreateContext(dc);
4571 #elif defined(GL_SDL)
4572 SDL_GL_SwapBuffers();
4573 #else
4574 glXCreateContext(NULL, NULL, NULL, True);
4575 #endif
4576 glFinish();
4577 return 0;
4580 _gl=no
4581 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4582 if cc_check $_ld_tmp $_ld_lm ; then
4583 _gl=yes
4584 _gl_x11=yes
4585 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4586 break
4588 done
4589 if cc_check -DGL_WIN32 -lopengl32 ; then
4590 _gl=yes
4591 _gl_win32=yes
4592 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4594 # last so it can reuse any linker etc. flags detected before
4595 if test "$_sdl" = yes ; then
4596 if cc_check -DGL_SDL ||
4597 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4598 _gl=yes
4599 _gl_sdl=yes
4600 elif cc_check -DGL_SDL -lGL ||
4601 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4602 _gl=yes
4603 _gl_sdl=yes
4604 libs_mplayer="$libs_mplayer -lGL"
4607 else
4608 _gl=no
4610 if test "$_gl" = yes ; then
4611 def_gl='#define CONFIG_GL 1'
4612 res_comment="backends:"
4613 if test "$_gl_win32" = yes ; then
4614 def_gl_win32='#define CONFIG_GL_WIN32 1'
4615 res_comment="$res_comment win32"
4617 if test "$_gl_x11" = yes ; then
4618 def_gl_x11='#define CONFIG_GL_X11 1'
4619 res_comment="$res_comment x11"
4621 if test "$_gl_sdl" = yes ; then
4622 def_gl_sdl='#define CONFIG_GL_SDL 1'
4623 res_comment="$res_comment sdl"
4625 vomodules="opengl $vomodules"
4626 else
4627 def_gl='#undef CONFIG_GL'
4628 def_gl_win32='#undef CONFIG_GL_WIN32'
4629 def_gl_x11='#undef CONFIG_GL_X11'
4630 def_gl_sdl='#undef CONFIG_GL_SDL'
4631 novomodules="opengl $novomodules"
4633 echores "$_gl"
4636 echocheck "MatrixView"
4637 if test "$_gl" = no ; then
4638 matrixview=no
4640 if test "$matrixview" = yes ; then
4641 vomodules="matrixview $vomodules"
4642 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4643 else
4644 novomodules="matrixview $novomodules"
4645 def_matrixview='#undef CONFIG_MATRIXVIEW'
4647 echores "$matrixview"
4650 if os2 ; then
4651 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4652 if test "$_kva" = auto; then
4653 _kva=no;
4654 header_check_broken os2.h kva.h -lkva && _kva=yes
4656 if test "$_kva" = yes ; then
4657 def_kva='#define CONFIG_KVA 1'
4658 libs_mplayer="$libs_mplayer -lkva"
4659 vomodules="kva $vomodules"
4660 else
4661 def_kva='#undef CONFIG_KVA'
4662 novomodules="kva $novomodules"
4664 echores "$_kva"
4665 fi #if os2
4668 if win32; then
4670 echocheck "Windows waveout"
4671 if test "$_win32waveout" = auto ; then
4672 _win32waveout=no
4673 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4675 if test "$_win32waveout" = yes ; then
4676 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4677 libs_mplayer="$libs_mplayer -lwinmm"
4678 aomodules="win32 $aomodules"
4679 else
4680 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4681 noaomodules="win32 $noaomodules"
4683 echores "$_win32waveout"
4685 echocheck "Direct3D"
4686 if test "$_direct3d" = auto ; then
4687 _direct3d=no
4688 header_check d3d9.h && _direct3d=yes
4690 if test "$_direct3d" = yes ; then
4691 def_direct3d='#define CONFIG_DIRECT3D 1'
4692 vomodules="direct3d $vomodules"
4693 else
4694 def_direct3d='#undef CONFIG_DIRECT3D'
4695 novomodules="direct3d $novomodules"
4697 echores "$_direct3d"
4699 echocheck "Directx"
4700 if test "$_directx" = auto ; then
4701 cat > $TMPC << EOF
4702 #include <ddraw.h>
4703 #include <dsound.h>
4704 int main(void) { return 0; }
4706 _directx=no
4707 cc_check -lgdi32 && _directx=yes
4709 if test "$_directx" = yes ; then
4710 def_directx='#define CONFIG_DIRECTX 1'
4711 libs_mplayer="$libs_mplayer -lgdi32"
4712 vomodules="directx $vomodules"
4713 aomodules="dsound $aomodules"
4714 else
4715 def_directx='#undef CONFIG_DIRECTX'
4716 novomodules="directx $novomodules"
4717 noaomodules="dsound $noaomodules"
4719 echores "$_directx"
4721 fi #if win32; then
4724 echocheck "DXR3/H+"
4725 if test "$_dxr3" = auto ; then
4726 _dxr3=no
4727 header_check linux/em8300.h && _dxr3=yes
4729 if test "$_dxr3" = yes ; then
4730 def_dxr3='#define CONFIG_DXR3 1'
4731 vomodules="dxr3 $vomodules"
4732 else
4733 def_dxr3='#undef CONFIG_DXR3'
4734 novomodules="dxr3 $novomodules"
4736 echores "$_dxr3"
4739 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4740 if test "$_ivtv" = auto ; then
4741 cat > $TMPC << EOF
4742 #include <sys/time.h>
4743 #include <linux/videodev2.h>
4744 #include <linux/ivtv.h>
4745 #include <sys/ioctl.h>
4746 int main(void) {
4747 struct ivtv_cfg_stop_decode sd;
4748 struct ivtv_cfg_start_decode sd1;
4749 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4750 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4751 return 0; }
4753 _ivtv=no
4754 cc_check && _ivtv=yes
4756 if test "$_ivtv" = yes ; then
4757 def_ivtv='#define CONFIG_IVTV 1'
4758 vomodules="ivtv $vomodules"
4759 aomodules="ivtv $aomodules"
4760 else
4761 def_ivtv='#undef CONFIG_IVTV'
4762 novomodules="ivtv $novomodules"
4763 noaomodules="ivtv $noaomodules"
4765 echores "$_ivtv"
4768 echocheck "V4L2 MPEG Decoder"
4769 if test "$_v4l2" = auto ; then
4770 cat > $TMPC << EOF
4771 #include <sys/time.h>
4772 #include <linux/videodev2.h>
4773 #include <linux/version.h>
4774 int main(void) {
4775 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4776 #error kernel headers too old, need 2.6.22
4777 #endif
4778 struct v4l2_ext_controls ctrls;
4779 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4780 return 0;
4783 _v4l2=no
4784 cc_check && _v4l2=yes
4786 if test "$_v4l2" = yes ; then
4787 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4788 vomodules="v4l2 $vomodules"
4789 aomodules="v4l2 $aomodules"
4790 else
4791 def_v4l2='#undef CONFIG_V4L2_DECODER'
4792 novomodules="v4l2 $novomodules"
4793 noaomodules="v4l2 $noaomodules"
4795 echores "$_v4l2"
4799 #########
4800 # AUDIO #
4801 #########
4804 echocheck "OSS Audio"
4805 if test "$_ossaudio" = auto ; then
4806 _ossaudio=no
4807 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4809 if test "$_ossaudio" = yes ; then
4810 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4811 aomodules="oss $aomodules"
4812 cat > $TMPC << EOF
4813 #include <$_soundcard_header>
4814 #ifdef OPEN_SOUND_SYSTEM
4815 int main(void) { return 0; }
4816 #else
4817 #error Not the real thing
4818 #endif
4820 _real_ossaudio=no
4821 cc_check && _real_ossaudio=yes
4822 if test "$_real_ossaudio" = yes; then
4823 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4824 # Check for OSS4 headers (override default headers)
4825 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4826 if test -f /etc/oss.conf; then
4827 . /etc/oss.conf
4828 _ossinc="$OSSLIBDIR/include"
4829 if test -f "$_ossinc/sys/soundcard.h"; then
4830 extra_cflags="-I$_ossinc $extra_cflags"
4833 elif netbsd || openbsd ; then
4834 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4835 extra_ldflags="$extra_ldflags -lossaudio"
4836 else
4837 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4839 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4840 else
4841 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4842 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4843 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4844 noaomodules="oss $noaomodules"
4846 echores "$_ossaudio"
4849 echocheck "aRts"
4850 if test "$_arts" = auto ; then
4851 _arts=no
4852 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4853 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4854 _arts=yes
4858 if test "$_arts" = yes ; then
4859 def_arts='#define CONFIG_ARTS 1'
4860 aomodules="arts $aomodules"
4861 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4862 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4863 else
4864 noaomodules="arts $noaomodules"
4866 echores "$_arts"
4869 echocheck "EsounD"
4870 if test "$_esd" = auto ; then
4871 _esd=no
4872 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4873 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4876 echores "$_esd"
4878 if test "$_esd" = yes ; then
4879 def_esd='#define CONFIG_ESD 1'
4880 aomodules="esd $aomodules"
4881 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4882 extra_cflags="$extra_cflags $(esd-config --cflags)"
4884 echocheck "esd_get_latency()"
4885 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4886 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4887 echores "$_esd_latency"
4888 else
4889 def_esd='#undef CONFIG_ESD'
4890 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4891 noaomodules="esd $noaomodules"
4895 echocheck "NAS"
4896 if test "$_nas" = auto ; then
4897 _nas=no
4898 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4900 if test "$_nas" = yes ; then
4901 def_nas='#define CONFIG_NAS 1'
4902 libs_mplayer="$libs_mplayer -laudio -lXt"
4903 aomodules="nas $aomodules"
4904 else
4905 noaomodules="nas $noaomodules"
4906 def_nas='#undef CONFIG_NAS'
4908 echores "$_nas"
4911 echocheck "pulse"
4912 if test "$_pulse" = auto ; then
4913 _pulse=no
4914 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4915 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4916 _pulse=yes
4919 echores "$_pulse"
4921 if test "$_pulse" = yes ; then
4922 def_pulse='#define CONFIG_PULSE 1'
4923 aomodules="pulse $aomodules"
4924 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4925 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4926 else
4927 def_pulse='#undef CONFIG_PULSE'
4928 noaomodules="pulse $noaomodules"
4932 echocheck "JACK"
4933 if test "$_jack" = auto ; then
4934 _jack=yes
4935 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4936 libs_mplayer="$libs_mplayer -ljack"
4937 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4938 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4939 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4940 else
4941 _jack=no
4945 if test "$_jack" = yes ; then
4946 def_jack='#define CONFIG_JACK 1'
4947 aomodules="jack $aomodules"
4948 else
4949 noaomodules="jack $noaomodules"
4951 echores "$_jack"
4953 echocheck "OpenAL"
4954 if test "$_openal" = auto ; then
4955 _openal=no
4956 cat > $TMPC << EOF
4957 #ifdef OPENAL_AL_H
4958 #include <OpenAL/al.h>
4959 #else
4960 #include <AL/al.h>
4961 #endif
4962 int main(void) {
4963 alSourceQueueBuffers(0, 0, 0);
4964 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4965 return 0;
4968 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4969 cc_check $I && _openal=yes && break
4970 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4971 done
4972 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4974 if test "$_openal" = yes ; then
4975 def_openal='#define CONFIG_OPENAL 1'
4976 aomodules="openal $aomodules"
4977 else
4978 noaomodules="openal $noaomodules"
4980 echores "$_openal"
4982 echocheck "ALSA audio"
4983 if test "$_alloca" != yes ; then
4984 _alsa=no
4985 res_comment="alloca missing"
4987 if test "$_alsa" != no ; then
4988 _alsa=no
4989 cat > $TMPC << EOF
4990 #include <sys/asoundlib.h>
4991 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
4992 #error "alsa version != 0.5.x"
4993 #endif
4994 int main(void) { return 0; }
4996 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
4998 cat > $TMPC << EOF
4999 #include <sys/asoundlib.h>
5000 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5001 #error "alsa version != 0.9.x"
5002 #endif
5003 int main(void) { return 0; }
5005 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5006 cat > $TMPC << EOF
5007 #include <alsa/asoundlib.h>
5008 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5009 #error "alsa version != 0.9.x"
5010 #endif
5011 int main(void) { return 0; }
5013 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5015 cat > $TMPC << EOF
5016 #include <sys/asoundlib.h>
5017 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5018 #error "alsa version != 1.0.x"
5019 #endif
5020 int main(void) { return 0; }
5022 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5023 cat > $TMPC << EOF
5024 #include <alsa/asoundlib.h>
5025 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5026 #error "alsa version != 1.0.x"
5027 #endif
5028 int main(void) { return 0; }
5030 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5032 def_alsa='#undef CONFIG_ALSA'
5033 def_alsa5='#undef CONFIG_ALSA5'
5034 def_alsa9='#undef CONFIG_ALSA9'
5035 def_alsa1x='#undef CONFIG_ALSA1X'
5036 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5037 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5038 if test "$_alsaver" ; then
5039 _alsa=yes
5040 if test "$_alsaver" = '0.5.x' ; then
5041 _alsa5=yes
5042 aomodules="alsa5 $aomodules"
5043 def_alsa5='#define CONFIG_ALSA5 1'
5044 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5045 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5046 elif test "$_alsaver" = '0.9.x-sys' ; then
5047 _alsa9=yes
5048 aomodules="alsa $aomodules"
5049 def_alsa='#define CONFIG_ALSA 1'
5050 def_alsa9='#define CONFIG_ALSA9 1'
5051 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5052 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5053 elif test "$_alsaver" = '0.9.x-alsa' ; then
5054 _alsa9=yes
5055 aomodules="alsa $aomodules"
5056 def_alsa='#define CONFIG_ALSA 1'
5057 def_alsa9='#define CONFIG_ALSA9 1'
5058 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5059 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5060 elif test "$_alsaver" = '1.0.x-sys' ; then
5061 _alsa1x=yes
5062 aomodules="alsa $aomodules"
5063 def_alsa='#define CONFIG_ALSA 1'
5064 def_alsa1x="#define CONFIG_ALSA1X 1"
5065 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5066 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5067 elif test "$_alsaver" = '1.0.x-alsa' ; then
5068 _alsa1x=yes
5069 aomodules="alsa $aomodules"
5070 def_alsa='#define CONFIG_ALSA 1'
5071 def_alsa1x="#define CONFIG_ALSA1X 1"
5072 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5073 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5074 else
5075 _alsa=no
5076 res_comment="unknown version"
5078 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5079 else
5080 noaomodules="alsa $noaomodules"
5082 echores "$_alsa"
5085 echocheck "Sun audio"
5086 if test "$_sunaudio" = auto ; then
5087 cat > $TMPC << EOF
5088 #include <sys/types.h>
5089 #include <sys/audioio.h>
5090 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5092 _sunaudio=no
5093 cc_check && _sunaudio=yes
5095 if test "$_sunaudio" = yes ; then
5096 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5097 aomodules="sun $aomodules"
5098 else
5099 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5100 noaomodules="sun $noaomodules"
5102 echores "$_sunaudio"
5105 if darwin; then
5106 echocheck "CoreAudio"
5107 if test "$_coreaudio" = auto ; then
5108 cat > $TMPC <<EOF
5109 #include <CoreAudio/CoreAudio.h>
5110 #include <AudioToolbox/AudioToolbox.h>
5111 #include <AudioUnit/AudioUnit.h>
5112 int main(void) { return 0; }
5114 _coreaudio=no
5115 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5117 if test "$_coreaudio" = yes ; then
5118 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5119 def_coreaudio='#define CONFIG_COREAUDIO 1'
5120 aomodules="coreaudio $aomodules"
5121 else
5122 def_coreaudio='#undef CONFIG_COREAUDIO'
5123 noaomodules="coreaudio $noaomodules"
5125 echores $_coreaudio
5126 fi #if darwin
5129 if irix; then
5130 echocheck "SGI audio"
5131 if test "$_sgiaudio" = auto ; then
5132 _sgiaudio=no
5133 header_check dmedia/audio.h && _sgiaudio=yes
5135 if test "$_sgiaudio" = "yes" ; then
5136 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5137 libs_mplayer="$libs_mplayer -laudio"
5138 aomodules="sgi $aomodules"
5139 else
5140 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5141 noaomodules="sgi $noaomodules"
5143 echores "$_sgiaudio"
5144 fi #if irix
5147 if os2 ; then
5148 echocheck "KAI (UNIAUD/DART)"
5149 if test "$_kai" = auto; then
5150 _kai=no;
5151 header_check_broken os2.h kai.h -lkai && _kai=yes
5153 if test "$_kai" = yes ; then
5154 def_kai='#define CONFIG_KAI 1'
5155 libs_mplayer="$libs_mplayer -lkai"
5156 aomodules="kai $aomodules"
5157 else
5158 def_kai='#undef CONFIG_KAI'
5159 noaomodules="kai $noaomodules"
5161 echores "$_kai"
5163 echocheck "DART"
5164 if test "$_dart" = auto; then
5165 _dart=no;
5166 header_check_broken os2.h dart.h -ldart && _dart=yes
5168 if test "$_dart" = yes ; then
5169 def_dart='#define CONFIG_DART 1'
5170 libs_mplayer="$libs_mplayer -ldart"
5171 aomodules="dart $aomodules"
5172 else
5173 def_dart='#undef CONFIG_DART'
5174 noaomodules="dart $noaomodules"
5176 echores "$_dart"
5177 fi #if os2
5180 # set default CD/DVD devices
5181 if win32 || os2 ; then
5182 default_cdrom_device="D:"
5183 elif darwin ; then
5184 default_cdrom_device="/dev/disk1"
5185 elif dragonfly ; then
5186 default_cdrom_device="/dev/cd0"
5187 elif freebsd ; then
5188 default_cdrom_device="/dev/acd0"
5189 elif openbsd ; then
5190 default_cdrom_device="/dev/rcd0c"
5191 elif sunos ; then
5192 default_cdrom_device="/vol/dev/aliases/cdrom0"
5193 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5194 # file system and the volfs service.
5195 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5196 elif amigaos ; then
5197 default_cdrom_device="a1ide.device:2"
5198 else
5199 default_cdrom_device="/dev/cdrom"
5202 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5203 default_dvd_device=$default_cdrom_device
5204 elif darwin ; then
5205 default_dvd_device="/dev/rdiskN"
5206 else
5207 default_dvd_device="/dev/dvd"
5211 echocheck "VCD support"
5212 if test "$_vcd" = auto; then
5213 _vcd=no
5214 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5215 _vcd=yes
5216 elif mingw32; then
5217 header_check ddk/ntddcdrm.h && _vcd=yes
5220 if test "$_vcd" = yes; then
5221 inputmodules="vcd $inputmodules"
5222 def_vcd='#define CONFIG_VCD 1'
5223 else
5224 def_vcd='#undef CONFIG_VCD'
5225 noinputmodules="vcd $noinputmodules"
5226 res_comment="not supported on this OS"
5228 echores "$_vcd"
5232 echocheck "Blu-ray support"
5233 if test "$_bluray" = auto ; then
5234 _bluray=no
5235 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5237 if test "$_bluray" = yes ; then
5238 def_bluray='#define CONFIG_LIBBLURAY 1'
5239 extra_ldflags="$extra_ldflags -lbluray"
5240 inputmodules="bluray $inputmodules"
5241 else
5242 def_bluray='#undef CONFIG_LIBBLURAY'
5243 noinputmodules="bluray $noinputmodules"
5245 echores "$_bluray"
5247 echocheck "dvdread"
5248 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5249 _dvdread_internal=no
5251 if test "$_dvdread_internal" = auto ; then
5252 _dvdread_internal=no
5253 _dvdread=no
5254 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5255 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5256 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5257 darwin || win32 || os2; then
5258 _dvdread_internal=yes
5259 _dvdread=yes
5260 extra_cflags="-Ilibdvdread4 $extra_cflags"
5262 elif test "$_dvdread" = auto ; then
5263 _dvdread=no
5264 if test "$_dl" = yes; then
5265 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5266 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5267 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5268 _dvdread=yes
5269 extra_cflags="$extra_cflags $_dvdreadcflags"
5270 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5271 res_comment="external"
5276 if test "$_dvdread_internal" = yes; then
5277 def_dvdread='#define CONFIG_DVDREAD 1'
5278 inputmodules="dvdread(internal) $inputmodules"
5279 res_comment="internal"
5280 elif test "$_dvdread" = yes; then
5281 def_dvdread='#define CONFIG_DVDREAD 1'
5282 extra_ldflags="$extra_ldflags -ldvdread"
5283 inputmodules="dvdread(external) $inputmodules"
5284 res_comment="external"
5285 else
5286 def_dvdread='#undef CONFIG_DVDREAD'
5287 noinputmodules="dvdread $noinputmodules"
5289 echores "$_dvdread"
5292 echocheck "internal libdvdcss"
5293 if test "$_libdvdcss_internal" = auto ; then
5294 _libdvdcss_internal=no
5295 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5296 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5298 if test "$_libdvdcss_internal" = yes ; then
5299 if linux || netbsd || openbsd || bsdos ; then
5300 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5301 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5302 elif freebsd || dragonfly ; then
5303 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5304 elif darwin ; then
5305 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5306 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5307 elif cygwin ; then
5308 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5309 elif beos ; then
5310 cflags_libdvdcss="-DSYS_BEOS"
5311 elif os2 ; then
5312 cflags_libdvdcss="-DSYS_OS2"
5314 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5315 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5316 inputmodules="libdvdcss(internal) $inputmodules"
5317 else
5318 noinputmodules="libdvdcss(internal) $noinputmodules"
5320 echores "$_libdvdcss_internal"
5323 echocheck "cdparanoia"
5324 if test "$_cdparanoia" = auto ; then
5325 cat > $TMPC <<EOF
5326 #include <cdda_interface.h>
5327 #include <cdda_paranoia.h>
5328 // This need a better test. How ?
5329 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5331 _cdparanoia=no
5332 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5333 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5334 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5335 done
5337 if test "$_cdparanoia" = yes ; then
5338 _cdda='yes'
5339 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5340 openbsd && extra_ldflags="$extra_ldflags -lutil"
5342 echores "$_cdparanoia"
5345 echocheck "libcdio"
5346 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5347 cat > $TMPC << EOF
5348 #include <stdio.h>
5349 #include <cdio/version.h>
5350 #include <cdio/cdda.h>
5351 #include <cdio/paranoia.h>
5352 int main(void) {
5353 void *test = cdda_verbose_set;
5354 printf("%s\n", CDIO_VERSION);
5355 return test == (void *)1;
5358 _libcdio=no
5359 for _ld_tmp in "" "-lwinmm" ; do
5360 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5361 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5362 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5363 done
5364 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5365 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5366 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5367 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5368 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5371 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5372 _cdda='yes'
5373 def_libcdio='#define CONFIG_LIBCDIO 1'
5374 def_havelibcdio='yes'
5375 else
5376 if test "$_cdparanoia" = yes ; then
5377 res_comment="using cdparanoia"
5379 def_libcdio='#undef CONFIG_LIBCDIO'
5380 def_havelibcdio='no'
5382 echores "$_libcdio"
5384 if test "$_cdda" = yes ; then
5385 test $_cddb = auto && test $networking = yes && _cddb=yes
5386 def_cdparanoia='#define CONFIG_CDDA 1'
5387 inputmodules="cdda $inputmodules"
5388 else
5389 def_cdparanoia='#undef CONFIG_CDDA'
5390 noinputmodules="cdda $noinputmodules"
5393 if test "$_cddb" = yes ; then
5394 def_cddb='#define CONFIG_CDDB 1'
5395 inputmodules="cddb $inputmodules"
5396 else
5397 _cddb=no
5398 def_cddb='#undef CONFIG_CDDB'
5399 noinputmodules="cddb $noinputmodules"
5402 echocheck "bitmap font support"
5403 if test "$_bitmap_font" = yes ; then
5404 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5405 else
5406 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5408 echores "$_bitmap_font"
5411 echocheck "freetype >= 2.0.9"
5413 # freetype depends on iconv
5414 if test "$_iconv" = no ; then
5415 _freetype=no
5416 res_comment="iconv support needed"
5419 if test "$_freetype" = auto ; then
5420 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5421 cat > $TMPC << EOF
5422 #include <stdio.h>
5423 #include <ft2build.h>
5424 #include FT_FREETYPE_H
5425 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5426 #error "Need FreeType 2.0.9 or newer"
5427 #endif
5428 int main(void) {
5429 FT_Library library;
5430 FT_Init_FreeType(&library);
5431 return 0;
5434 _freetype=no
5435 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5436 else
5437 _freetype=no
5440 if test "$_freetype" = yes ; then
5441 def_freetype='#define CONFIG_FREETYPE 1'
5442 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5443 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5444 else
5445 def_freetype='#undef CONFIG_FREETYPE'
5447 echores "$_freetype"
5449 if test "$_freetype" = no ; then
5450 _fontconfig=no
5451 res_comment="FreeType support needed"
5453 echocheck "fontconfig"
5454 if test "$_fontconfig" = auto ; then
5455 cat > $TMPC << EOF
5456 #include <stdio.h>
5457 #include <stdlib.h>
5458 #include <fontconfig/fontconfig.h>
5459 #if FC_VERSION < 20402
5460 #error At least version 2.4.2 of fontconfig required
5461 #endif
5462 int main(void) {
5463 int err = FcInit();
5464 if (err == FcFalse) {
5465 printf("Couldn't initialize fontconfig lib\n");
5466 exit(err);
5468 return 0;
5471 _fontconfig=no
5472 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5473 _ld_tmp="-lfontconfig $_ld_tmp"
5474 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5475 done
5476 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5477 _inc_tmp=$($_pkg_config --cflags fontconfig)
5478 _ld_tmp=$($_pkg_config --libs fontconfig)
5479 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5480 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5483 if test "$_fontconfig" = yes ; then
5484 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5485 else
5486 def_fontconfig='#undef CONFIG_FONTCONFIG'
5488 echores "$_fontconfig"
5491 echocheck "SSA/ASS support"
5492 if test "$_ass" = auto -o "$_ass" = yes ; then
5493 if $_pkg_config libass; then
5494 _ass=yes
5495 def_ass='#define CONFIG_ASS 1'
5496 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5497 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5498 else
5499 _ass=no
5500 def_ass='#undef CONFIG_ASS'
5502 else
5503 def_ass='#undef CONFIG_ASS'
5505 echores "$_ass"
5508 echocheck "fribidi with charsets"
5509 _inc_tmp=""
5510 _ld_tmp=""
5511 if test "$_fribidi" = auto ; then
5512 cat > $TMPC << EOF
5513 #include <stdlib.h>
5514 /* workaround for fribidi 0.10.4 and below */
5515 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5516 #include <fribidi/fribidi.h>
5517 int main(void) {
5518 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5519 exit(1);
5520 return 0;
5523 _fribidi=no
5524 _inc_tmp=""
5525 _ld_tmp="-lfribidi"
5526 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5527 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5528 test "$_fribidi" = no ; then
5529 _inc_tmp="$($_pkg_config --cflags)"
5530 _ld_tmp="$($_pkg_config --libs)"
5531 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5534 if test "$_fribidi" = yes ; then
5535 def_fribidi='#define CONFIG_FRIBIDI 1'
5536 extra_cflags="$extra_cflags $_inc_tmp"
5537 extra_ldflags="$extra_ldflags $_ld_tmp"
5538 else
5539 def_fribidi='#undef CONFIG_FRIBIDI'
5541 echores "$_fribidi"
5544 echocheck "ENCA"
5545 if test "$_enca" = auto ; then
5546 _enca=no
5547 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5549 if test "$_enca" = yes ; then
5550 def_enca='#define CONFIG_ENCA 1'
5551 extra_ldflags="$extra_ldflags -lenca"
5552 else
5553 def_enca='#undef CONFIG_ENCA'
5555 echores "$_enca"
5558 echocheck "zlib"
5559 _zlib=no
5560 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5561 if test "$_zlib" = yes ; then
5562 def_zlib='#define CONFIG_ZLIB 1'
5563 extra_ldflags="$extra_ldflags -lz"
5564 else
5565 def_zlib='#define CONFIG_ZLIB 0'
5567 echores "$_zlib"
5570 echocheck "RTC"
5571 if test "$_rtc" = auto ; then
5572 cat > $TMPC << EOF
5573 #include <sys/ioctl.h>
5574 #ifdef __linux__
5575 #include <linux/rtc.h>
5576 #else
5577 #include <rtc.h>
5578 #define RTC_PIE_ON RTCIO_PIE_ON
5579 #endif
5580 int main(void) { return RTC_PIE_ON; }
5582 _rtc=no
5583 cc_check && _rtc=yes
5584 ppc && _rtc=no
5586 if test "$_rtc" = yes ; then
5587 def_rtc='#define HAVE_RTC 1'
5588 else
5589 def_rtc='#undef HAVE_RTC'
5591 echores "$_rtc"
5594 echocheck "mad support"
5595 if test "$_mad" = auto ; then
5596 _mad=no
5597 header_check mad.h -lmad && _mad=yes
5599 if test "$_mad" = yes ; then
5600 def_mad='#define CONFIG_LIBMAD 1'
5601 extra_ldflags="$extra_ldflags -lmad"
5602 codecmodules="libmad $codecmodules"
5603 else
5604 def_mad='#undef CONFIG_LIBMAD'
5605 nocodecmodules="libmad $nocodecmodules"
5607 echores "$_mad"
5609 echocheck "OggVorbis support"
5610 if test "$_libvorbis" = auto; then
5611 _libvorbis=no
5612 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5613 elif test "$_libvorbis" = yes ; then
5614 _tremor=no
5616 if test "$_tremor" = auto; then
5617 _tremor=no
5618 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5620 if test "$_tremor" = yes ; then
5621 _vorbis=yes
5622 def_vorbis='#define CONFIG_OGGVORBIS 1'
5623 def_tremor='#define CONFIG_TREMOR 1'
5624 codecmodules="tremor(external) $codecmodules"
5625 res_comment="external Tremor"
5626 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5627 elif test "$_libvorbis" = yes ; then
5628 _vorbis=yes
5629 def_vorbis='#define CONFIG_OGGVORBIS 1'
5630 codecmodules="libvorbis $codecmodules"
5631 res_comment="libvorbis"
5632 extra_ldflags="$extra_ldflags -lvorbis -logg"
5633 else
5634 _vorbis=no
5635 nocodecmodules="libvorbis $nocodecmodules"
5637 echores "$_vorbis"
5639 echocheck "libspeex (version >= 1.1 required)"
5640 if test "$_speex" = auto ; then
5641 _speex=no
5642 cat > $TMPC << EOF
5643 #include <stddef.h>
5644 #include <speex/speex.h>
5645 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5647 cc_check -lspeex $_ld_lm && _speex=yes
5649 if test "$_speex" = yes ; then
5650 def_speex='#define CONFIG_SPEEX 1'
5651 extra_ldflags="$extra_ldflags -lspeex"
5652 codecmodules="speex $codecmodules"
5653 else
5654 def_speex='#undef CONFIG_SPEEX'
5655 nocodecmodules="speex $nocodecmodules"
5657 echores "$_speex"
5659 echocheck "OggTheora support"
5660 if test "$_theora" = auto ; then
5661 _theora=no
5662 cat > $TMPC << EOF
5663 #include <theora/theora.h>
5664 #include <string.h>
5665 int main(void) {
5666 /* Theora is in flux, make sure that all interface routines and datatypes
5667 * exist and work the way we expect it, so we don't break MPlayer. */
5668 ogg_packet op;
5669 theora_comment tc;
5670 theora_info inf;
5671 theora_state st;
5672 yuv_buffer yuv;
5673 int r;
5674 double t;
5676 theora_info_init(&inf);
5677 theora_comment_init(&tc);
5679 return 0;
5681 /* we don't want to execute this kind of nonsense; just for making sure
5682 * that compilation works... */
5683 memset(&op, 0, sizeof(op));
5684 r = theora_decode_header(&inf, &tc, &op);
5685 r = theora_decode_init(&st, &inf);
5686 t = theora_granule_time(&st, op.granulepos);
5687 r = theora_decode_packetin(&st, &op);
5688 r = theora_decode_YUVout(&st, &yuv);
5689 theora_clear(&st);
5691 return 0;
5694 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5695 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5696 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5697 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5698 if test _theora = no; then
5699 _ld_theora="-ltheora -logg"
5700 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5703 if test "$_theora" = yes ; then
5704 def_theora='#define CONFIG_OGGTHEORA 1'
5705 codecmodules="libtheora $codecmodules"
5706 # when --enable-theora is forced, we'd better provide a probably sane
5707 # $_ld_theora than nothing
5708 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5709 else
5710 def_theora='#undef CONFIG_OGGTHEORA'
5711 nocodecmodules="libtheora $nocodecmodules"
5713 echores "$_theora"
5715 # Any version of libmpg123 shall be fine.
5716 echocheck "mpg123 support"
5717 def_mpg123='#undef CONFIG_MPG123'
5718 if test "$_mpg123" = auto; then
5719 _mpg123=no
5720 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5722 if test "$_mpg123" = yes ; then
5723 def_mpg123='#define CONFIG_MPG123 1'
5724 codecmodules="mpg123 $codecmodules"
5725 else
5726 nocodecmodules="mpg123 $nocodecmodules"
5728 echores "$_mpg123"
5730 echocheck "liba52 support"
5731 def_liba52='#undef CONFIG_LIBA52'
5732 if test "$_liba52" = auto ; then
5733 _liba52=no
5734 cat > $TMPC << EOF
5735 #include <inttypes.h>
5736 #include <a52dec/a52.h>
5737 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5739 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5741 if test "$_liba52" = yes ; then
5742 def_liba52='#define CONFIG_LIBA52 1'
5743 codecmodules="liba52 $codecmodules"
5744 else
5745 nocodecmodules="liba52 $nocodecmodules"
5747 echores "$_liba52"
5749 echocheck "libdca support"
5750 if test "$_libdca" = auto ; then
5751 _libdca=no
5752 for _ld_dca in -ldca -ldts ; do
5753 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5754 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5755 done
5757 if test "$_libdca" = yes ; then
5758 def_libdca='#define CONFIG_LIBDCA 1'
5759 codecmodules="libdca $codecmodules"
5760 else
5761 def_libdca='#undef CONFIG_LIBDCA'
5762 nocodecmodules="libdca $nocodecmodules"
5764 echores "$_libdca"
5766 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5767 if test "$_musepack" = yes ; then
5768 _musepack=no
5769 cat > $TMPC << EOF
5770 #include <stddef.h>
5771 #include <mpcdec/mpcdec.h>
5772 int main(void) {
5773 mpc_streaminfo info;
5774 mpc_decoder decoder;
5775 mpc_decoder_set_streaminfo(&decoder, &info);
5776 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5777 return 0;
5780 cc_check -lmpcdec $_ld_lm && _musepack=yes
5782 if test "$_musepack" = yes ; then
5783 def_musepack='#define CONFIG_MUSEPACK 1'
5784 extra_ldflags="$extra_ldflags -lmpcdec"
5785 codecmodules="musepack $codecmodules"
5786 else
5787 def_musepack='#undef CONFIG_MUSEPACK'
5788 nocodecmodules="musepack $nocodecmodules"
5790 echores "$_musepack"
5793 echocheck "FAAD2 support"
5794 if test "$_faad" = auto ; then
5795 _faad=no
5796 cat > $TMPC << EOF
5797 #include <faad.h>
5798 #ifndef FAAD_MIN_STREAMSIZE
5799 #error Too old version
5800 #endif
5801 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5802 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5804 cc_check -lfaad $_ld_lm && _faad=yes
5807 def_faad='#undef CONFIG_FAAD'
5808 if test "$_faad" = yes ; then
5809 def_faad='#define CONFIG_FAAD 1'
5810 extra_ldflags="$extra_ldflags -lfaad"
5811 codecmodules="faad2 $codecmodules"
5812 else
5813 nocodecmodules="faad2 $nocodecmodules"
5815 echores "$_faad"
5818 echocheck "LADSPA plugin support"
5819 if test "$_ladspa" = auto ; then
5820 _ladspa=no
5821 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5823 if test "$_ladspa" = yes; then
5824 def_ladspa="#define CONFIG_LADSPA 1"
5825 else
5826 def_ladspa="#undef CONFIG_LADSPA"
5828 echores "$_ladspa"
5831 echocheck "libbs2b audio filter support"
5832 if test "$_libbs2b" = auto ; then
5833 cat > $TMPC <<EOF
5834 #include <bs2b.h>
5835 #if BS2B_VERSION_MAJOR < 3
5836 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5837 #endif
5838 int main(void) {
5839 t_bs2bdp filter;
5840 filter=bs2b_open();
5841 bs2b_close(filter);
5842 return 0;
5845 _libbs2b=no
5846 if $_pkg_config --exists libbs2b ; then
5847 _inc_tmp=$($_pkg_config --cflags libbs2b)
5848 _ld_tmp=$($_pkg_config --libs libbs2b)
5849 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5850 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5851 else
5852 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5853 -I/usr/local/include/bs2b ; do
5854 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5855 extra_ldflags="$extra_ldflags -lbs2b"
5856 extra_cflags="$extra_cflags $_inc_tmp"
5857 _libbs2b=yes
5858 break
5860 done
5863 def_libbs2b="#undef CONFIG_LIBBS2B"
5864 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5865 echores "$_libbs2b"
5868 if test -z "$_codecsdir" ; then
5869 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5870 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5871 if test -d "$dir" ; then
5872 _codecsdir="$dir"
5873 break;
5875 done
5877 # Fall back on default directory.
5878 if test -z "$_codecsdir" ; then
5879 _codecsdir="$_libdir/codecs"
5880 mingw32 || os2 && _codecsdir="codecs"
5884 echocheck "Win32 codecs"
5885 if test "$_win32dll" = auto ; then
5886 _win32dll=no
5887 if x86_32 && ! qnx; then
5888 _win32dll=yes
5891 if test "$_win32dll" = yes ; then
5892 def_win32dll='#define CONFIG_WIN32DLL 1'
5893 if ! win32 ; then
5894 def_win32_loader='#define WIN32_LOADER 1'
5895 _win32_emulation=yes
5896 else
5897 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5898 res_comment="using native windows"
5900 codecmodules="win32 $codecmodules"
5901 else
5902 def_win32dll='#undef CONFIG_WIN32DLL'
5903 def_win32_loader='#undef WIN32_LOADER'
5904 nocodecmodules="win32 $nocodecmodules"
5906 echores "$_win32dll"
5909 echocheck "XAnim codecs"
5910 if test "$_xanim" = auto ; then
5911 _xanim=no
5912 res_comment="dynamic loader support needed"
5913 if test "$_dl" = yes ; then
5914 _xanim=yes
5917 if test "$_xanim" = yes ; then
5918 def_xanim='#define CONFIG_XANIM 1'
5919 codecmodules="xanim $codecmodules"
5920 else
5921 def_xanim='#undef CONFIG_XANIM'
5922 nocodecmodules="xanim $nocodecmodules"
5924 echores "$_xanim"
5927 echocheck "RealPlayer codecs"
5928 if test "$_real" = auto ; then
5929 _real=no
5930 res_comment="dynamic loader support needed"
5931 if test "$_dl" = yes || test "$_win32dll" = yes &&
5932 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5933 _real=yes
5936 if test "$_real" = yes ; then
5937 def_real='#define CONFIG_REALCODECS 1'
5938 codecmodules="real $codecmodules"
5939 else
5940 def_real='#undef CONFIG_REALCODECS'
5941 nocodecmodules="real $nocodecmodules"
5943 echores "$_real"
5946 echocheck "QuickTime codecs"
5947 _qtx_emulation=no
5948 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5949 if test "$_qtx" = auto ; then
5950 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5952 if test "$_qtx" = yes ; then
5953 def_qtx='#define CONFIG_QTX_CODECS 1'
5954 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5955 codecmodules="qtx $codecmodules"
5956 darwin || win32 || _qtx_emulation=yes
5957 else
5958 def_qtx='#undef CONFIG_QTX_CODECS'
5959 nocodecmodules="qtx $nocodecmodules"
5961 echores "$_qtx"
5963 echocheck "Nemesi Streaming Media libraries"
5964 if test "$_nemesi" = auto && test "$networking" = yes ; then
5965 _nemesi=no
5966 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
5967 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
5968 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
5969 _nemesi=yes
5972 if test "$_nemesi" = yes; then
5973 _native_rtsp=no
5974 def_nemesi='#define CONFIG_LIBNEMESI 1'
5975 inputmodules="nemesi $inputmodules"
5976 else
5977 _native_rtsp="$networking"
5978 _nemesi=no
5979 def_nemesi='#undef CONFIG_LIBNEMESI'
5980 noinputmodules="nemesi $noinputmodules"
5982 echores "$_nemesi"
5984 echocheck "LIVE555 Streaming Media libraries"
5985 if test "$_live" = auto && test "$networking" = yes ; then
5986 cat > $TMPCPP << EOF
5987 #include <liveMedia.hh>
5988 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5989 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5990 #endif
5991 int main(void) { return 0; }
5994 _live=no
5995 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
5996 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5997 _livelibdir=$(echo $I| sed s/-I//) &&
5998 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5999 $_livelibdir/groupsock/libgroupsock.a \
6000 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6001 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6002 $extra_ldflags -lstdc++" \
6003 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6004 -I$_livelibdir/UsageEnvironment/include \
6005 -I$_livelibdir/BasicUsageEnvironment/include \
6006 -I$_livelibdir/groupsock/include" &&
6007 _live=yes && break
6008 done
6009 if test "$_live" != yes ; then
6010 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6011 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6012 _live_dist=yes
6016 if test "$_live" = yes && test "$networking" = yes; then
6017 test $_livelibdir && res_comment="using $_livelibdir"
6018 def_live='#define CONFIG_LIVE555 1'
6019 inputmodules="live555 $inputmodules"
6020 elif test "$_live_dist" = yes && test "$networking" = yes; then
6021 res_comment="using distribution version"
6022 _live="yes"
6023 def_live='#define CONFIG_LIVE555 1'
6024 extra_ldflags="$extra_ldflags $ld_tmp"
6025 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6026 inputmodules="live555 $inputmodules"
6027 else
6028 _live=no
6029 def_live='#undef CONFIG_LIVE555'
6030 noinputmodules="live555 $noinputmodules"
6032 echores "$_live"
6036 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6037 echocheck "FFmpeg ($all_ffmpeg_libs)"
6038 if test "$ffmpeg" = auto ; then
6039 ffmpeg=no
6040 if $_pkg_config --exists $all_ffmpeg_libs ; then
6041 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6042 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6043 extra_ldflags="$extra_ldflags $_ld_tmp"
6044 extra_cflags="$extra_cflags $inc_ffmpeg"
6045 ffmpeg=yes
6046 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6047 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6048 ffmpeg=yes
6049 else
6050 die "Unable to find development files for some of the FFmpeg libraries above. Aborting. If you really mean to compile without FFmpeg support use --disable-ffmpeg."
6054 ffmpeg_eval_api=no
6055 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6056 if test "$ffmpeg" = yes; then
6057 def_ffmpeg='#define CONFIG_FFMPEG 1'
6058 codecmodules="ffmpeg $codecmodules"
6059 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6060 ffmpeg_eval_api=yes
6061 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6063 else
6064 def_ffmpeg='#undef CONFIG_FFMPEG'
6065 nocodecmodules="ffmpeg $nocodecmodules"
6067 echores "$ffmpeg"
6069 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6070 if ! test -z "$_ffmpeg_source" ; then
6071 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6076 echocheck "libdv-0.9.5+"
6077 if test "$_libdv" = auto ; then
6078 _libdv=no
6079 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6081 if test "$_libdv" = yes ; then
6082 def_libdv='#define CONFIG_LIBDV095 1'
6083 extra_ldflags="$extra_ldflags -ldv"
6084 codecmodules="libdv $codecmodules"
6085 else
6086 def_libdv='#undef CONFIG_LIBDV095'
6087 nocodecmodules="libdv $nocodecmodules"
6089 echores "$_libdv"
6092 echocheck "Xvid"
6093 if test "$_xvid" = auto ; then
6094 _xvid=no
6095 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6096 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6097 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6098 done
6101 if test "$_xvid" = yes ; then
6102 def_xvid='#define CONFIG_XVID4 1'
6103 codecmodules="xvid $codecmodules"
6104 else
6105 def_xvid='#undef CONFIG_XVID4'
6106 nocodecmodules="xvid $nocodecmodules"
6108 echores "$_xvid"
6111 echocheck "libnut"
6112 if test "$_libnut" = auto ; then
6113 _libnut=no
6114 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6117 if test "$_libnut" = yes ; then
6118 def_libnut='#define CONFIG_LIBNUT 1'
6119 extra_ldflags="$extra_ldflags -lnut"
6120 else
6121 def_libnut='#undef CONFIG_LIBNUT'
6123 echores "$_libnut"
6125 # These VO checks must be done after the FFmpeg one
6126 echocheck "/dev/mga_vid"
6127 if test "$_mga" = auto ; then
6128 _mga=no
6129 test -c /dev/mga_vid && _mga=yes
6131 if test "$_mga" = yes ; then
6132 def_mga='#define CONFIG_MGA 1'
6133 vomodules="mga $vomodules"
6134 else
6135 def_mga='#undef CONFIG_MGA'
6136 novomodules="mga $novomodules"
6138 echores "$_mga"
6141 echocheck "xmga"
6142 if test "$_xmga" = auto ; then
6143 _xmga=no
6144 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6146 if test "$_xmga" = yes ; then
6147 def_xmga='#define CONFIG_XMGA 1'
6148 vomodules="xmga $vomodules"
6149 else
6150 def_xmga='#undef CONFIG_XMGA'
6151 novomodules="xmga $novomodules"
6153 echores "$_xmga"
6156 echocheck "UnRAR executable"
6157 if test "$_unrar_exec" = auto ; then
6158 _unrar_exec="yes"
6159 mingw32 && _unrar_exec="no"
6161 if test "$_unrar_exec" = yes ; then
6162 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6163 else
6164 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6166 echores "$_unrar_exec"
6168 echocheck "TV interface"
6169 if test "$_tv" = yes ; then
6170 def_tv='#define CONFIG_TV 1'
6171 inputmodules="tv $inputmodules"
6172 else
6173 noinputmodules="tv $noinputmodules"
6174 def_tv='#undef CONFIG_TV'
6176 echores "$_tv"
6179 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6180 echocheck "*BSD BT848 bt8xx header"
6181 _ioctl_bt848_h=no
6182 for file in "machine/ioctl_bt848.h" \
6183 "dev/bktr/ioctl_bt848.h" \
6184 "dev/video/bktr/ioctl_bt848.h" \
6185 "dev/ic/bt8xx.h" ; do
6186 cat > $TMPC <<EOF
6187 #include <sys/types.h>
6188 #include <sys/ioctl.h>
6189 #include <$file>
6190 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6192 if cc_check ; then
6193 _ioctl_bt848_h=yes
6194 _ioctl_bt848_h_name="$file"
6195 break;
6197 done
6198 if test "$_ioctl_bt848_h" = yes ; then
6199 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6200 res_comment="using $_ioctl_bt848_h_name"
6201 else
6202 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6204 echores "$_ioctl_bt848_h"
6206 echocheck "*BSD ioctl_meteor.h"
6207 _ioctl_meteor_h=no
6208 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6209 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6210 _ioctl_meteor_h=yes && break
6211 done
6212 if test "$_ioctl_meteor_h" = yes ; then
6213 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6214 res_comment="using $ioctl_meteor_h_path"
6215 else
6216 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6218 echores "$_ioctl_meteor_h"
6220 echocheck "*BSD BrookTree 848 TV interface"
6221 if test "$_tv_bsdbt848" = auto ; then
6222 _tv_bsdbt848=no
6223 if test "$_tv" = yes ; then
6224 cat > $TMPC <<EOF
6225 #include <sys/types.h>
6226 $def_ioctl_meteor_h_name
6227 $def_ioctl_bt848_h_name
6228 #ifdef IOCTL_METEOR_H_NAME
6229 #include IOCTL_METEOR_H_NAME
6230 #endif
6231 #ifdef IOCTL_BT848_H_NAME
6232 #include IOCTL_BT848_H_NAME
6233 #endif
6234 int main(void) {
6235 ioctl(0, METEORSINPUT, 0);
6236 ioctl(0, TVTUNER_GETFREQ, 0);
6237 return 0;
6240 cc_check && _tv_bsdbt848=yes
6243 if test "$_tv_bsdbt848" = yes ; then
6244 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6245 inputmodules="tv-bsdbt848 $inputmodules"
6246 else
6247 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6248 noinputmodules="tv-bsdbt848 $noinputmodules"
6250 echores "$_tv_bsdbt848"
6251 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6254 echocheck "DirectShow TV interface"
6255 if test "$_tv_dshow" = auto ; then
6256 _tv_dshow=no
6257 if test "$_tv" = yes && win32 ; then
6258 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6261 if test "$_tv_dshow" = yes ; then
6262 inputmodules="tv-dshow $inputmodules"
6263 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6264 extra_ldflags="$extra_ldflags -lole32 -luuid"
6265 else
6266 noinputmodules="tv-dshow $noinputmodules"
6267 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6269 echores "$_tv_dshow"
6272 echocheck "Video 4 Linux TV interface"
6273 if test "$_tv_v4l1" = auto ; then
6274 _tv_v4l1=no
6275 if test "$_tv" = yes && linux ; then
6276 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6279 if test "$_tv_v4l1" = yes ; then
6280 _audio_input=yes
6281 _tv_v4l=yes
6282 def_tv_v4l='#define CONFIG_TV_V4L 1'
6283 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6284 inputmodules="tv-v4l $inputmodules"
6285 else
6286 noinputmodules="tv-v4l1 $noinputmodules"
6287 def_tv_v4l='#undef CONFIG_TV_V4L'
6289 echores "$_tv_v4l1"
6292 echocheck "Video 4 Linux 2 TV interface"
6293 if test "$_tv_v4l2" = auto ; then
6294 _tv_v4l2=no
6295 if test "$_tv" = yes && linux ; then
6296 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6299 if test "$_tv_v4l2" = yes ; then
6300 _audio_input=yes
6301 _tv_v4l=yes
6302 def_tv_v4l='#define CONFIG_TV_V4L 1'
6303 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6304 inputmodules="tv-v4l2 $inputmodules"
6305 else
6306 noinputmodules="tv-v4l2 $noinputmodules"
6307 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6309 echores "$_tv_v4l2"
6312 echocheck "Radio interface"
6313 if test "$_radio" = yes ; then
6314 def_radio='#define CONFIG_RADIO 1'
6315 inputmodules="radio $inputmodules"
6316 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6317 _radio_capture=no
6319 if test "$_radio_capture" = yes ; then
6320 _audio_input=yes
6321 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6322 else
6323 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6325 else
6326 noinputmodules="radio $noinputmodules"
6327 def_radio='#undef CONFIG_RADIO'
6328 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6329 _radio_capture=no
6331 echores "$_radio"
6332 echocheck "Capture for Radio interface"
6333 echores "$_radio_capture"
6335 echocheck "Video 4 Linux 2 Radio interface"
6336 if test "$_radio_v4l2" = auto ; then
6337 _radio_v4l2=no
6338 if test "$_radio" = yes && linux ; then
6339 header_check linux/videodev2.h && _radio_v4l2=yes
6342 if test "$_radio_v4l2" = yes ; then
6343 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6344 else
6345 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6347 echores "$_radio_v4l2"
6349 echocheck "Video 4 Linux Radio interface"
6350 if test "$_radio_v4l" = auto ; then
6351 _radio_v4l=no
6352 if test "$_radio" = yes && linux ; then
6353 header_check linux/videodev.h && _radio_v4l=yes
6356 if test "$_radio_v4l" = yes ; then
6357 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6358 else
6359 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6361 echores "$_radio_v4l"
6363 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6364 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6365 echocheck "*BSD BrookTree 848 Radio interface"
6366 _radio_bsdbt848=no
6367 cat > $TMPC <<EOF
6368 #include <sys/types.h>
6369 $def_ioctl_bt848_h_name
6370 #ifdef IOCTL_BT848_H_NAME
6371 #include IOCTL_BT848_H_NAME
6372 #endif
6373 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6375 cc_check && _radio_bsdbt848=yes
6376 echores "$_radio_bsdbt848"
6377 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6379 if test "$_radio_bsdbt848" = yes ; then
6380 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6381 else
6382 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6385 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6386 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6387 die "Radio driver requires BSD BT848, V4L or V4L2!"
6390 echocheck "Video 4 Linux 2 MPEG PVR interface"
6391 if test "$_pvr" = auto ; then
6392 _pvr=no
6393 if test "$_tv_v4l2" = yes && linux ; then
6394 cat > $TMPC <<EOF
6395 #include <sys/time.h>
6396 #include <linux/videodev2.h>
6397 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6399 cc_check && _pvr=yes
6402 if test "$_pvr" = yes ; then
6403 def_pvr='#define CONFIG_PVR 1'
6404 inputmodules="pvr $inputmodules"
6405 else
6406 noinputmodules="pvr $noinputmodules"
6407 def_pvr='#undef CONFIG_PVR'
6409 echores "$_pvr"
6412 echocheck "ftp"
6413 if test "$_ftp" = "auto" ; then
6414 test "$networking" = "yes" && ! beos && _ftp=yes
6416 if test "$_ftp" = yes ; then
6417 def_ftp='#define CONFIG_FTP 1'
6418 inputmodules="ftp $inputmodules"
6419 else
6420 noinputmodules="ftp $noinputmodules"
6421 def_ftp='#undef CONFIG_FTP'
6423 echores "$_ftp"
6425 echocheck "vstream client"
6426 if test "$_vstream" = auto ; then
6427 _vstream=no
6428 cat > $TMPC <<EOF
6429 #include <vstream-client.h>
6430 void vstream_error(const char *format, ... ) {}
6431 int main(void) { vstream_start(); return 0; }
6433 cc_check -lvstream-client && _vstream=yes
6435 if test "$_vstream" = yes ; then
6436 def_vstream='#define CONFIG_VSTREAM 1'
6437 inputmodules="vstream $inputmodules"
6438 extra_ldflags="$extra_ldflags -lvstream-client"
6439 else
6440 noinputmodules="vstream $noinputmodules"
6441 def_vstream='#undef CONFIG_VSTREAM'
6443 echores "$_vstream"
6446 echocheck "OSD menu"
6447 if test "$_menu" = yes ; then
6448 def_menu='#define CONFIG_MENU 1'
6449 test $_dvbin = "yes" && _menu_dvbin=yes
6450 else
6451 def_menu='#undef CONFIG_MENU'
6452 _menu_dvbin=no
6454 echores "$_menu"
6457 echocheck "Subtitles sorting"
6458 if test "$_sortsub" = yes ; then
6459 def_sortsub='#define CONFIG_SORTSUB 1'
6460 else
6461 def_sortsub='#undef CONFIG_SORTSUB'
6463 echores "$_sortsub"
6466 echocheck "XMMS inputplugin support"
6467 if test "$_xmms" = yes ; then
6468 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6469 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6470 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6471 else
6472 _xmmsplugindir=/usr/lib/xmms/Input
6473 _xmmslibdir=/usr/lib
6476 def_xmms='#define CONFIG_XMMS 1'
6477 if darwin ; then
6478 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6479 else
6480 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6482 else
6483 def_xmms='#undef CONFIG_XMMS'
6485 echores "$_xmms"
6487 if test "$_charset" != "noconv" ; then
6488 def_charset="#define MSG_CHARSET \"$_charset\""
6489 else
6490 def_charset="#undef MSG_CHARSET"
6491 _charset="UTF-8"
6494 #############################################################################
6496 echocheck "automatic gdb attach"
6497 if test "$_crash_debug" = yes ; then
6498 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6499 else
6500 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6501 _crash_debug=no
6503 echores "$_crash_debug"
6505 echocheck "compiler support for noexecstack"
6506 if cflag_check -Wl,-z,noexecstack ; then
6507 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6508 echores "yes"
6509 else
6510 echores "no"
6513 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6514 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6515 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6516 echores "yes"
6517 else
6518 echores "no"
6522 # Dynamic linking flags
6523 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6524 _ld_dl_dynamic=''
6525 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6526 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6527 _ld_dl_dynamic='-rdynamic'
6530 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6531 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6532 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6534 def_debug='#undef MP_DEBUG'
6535 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6538 echocheck "joystick"
6539 def_joystick='#undef CONFIG_JOYSTICK'
6540 if test "$_joystick" = yes ; then
6541 if linux || freebsd ; then
6542 # TODO add some check
6543 def_joystick='#define CONFIG_JOYSTICK 1'
6544 else
6545 _joystick="no"
6546 res_comment="unsupported under $system_name"
6549 echores "$_joystick"
6551 echocheck "lirc"
6552 if test "$_lirc" = auto ; then
6553 _lirc=no
6554 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6556 if test "$_lirc" = yes ; then
6557 def_lirc='#define CONFIG_LIRC 1'
6558 libs_mplayer="$libs_mplayer -llirc_client"
6559 else
6560 def_lirc='#undef CONFIG_LIRC'
6562 echores "$_lirc"
6564 echocheck "lircc"
6565 if test "$_lircc" = auto ; then
6566 _lircc=no
6567 header_check lirc/lircc.h -llircc && _lircc=yes
6569 if test "$_lircc" = yes ; then
6570 def_lircc='#define CONFIG_LIRCC 1'
6571 libs_mplayer="$libs_mplayer -llircc"
6572 else
6573 def_lircc='#undef CONFIG_LIRCC'
6575 echores "$_lircc"
6577 #############################################################################
6579 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6580 # the OMF format needs to come after the 'extern symbol prefix' check, which
6581 # uses nm.
6582 if os2 ; then
6583 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6586 #############################################################################
6588 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6590 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6592 # This must be the last test to be performed. Any other tests following it
6593 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6594 # against libdvdread (to permit MPlayer to use its own copy of the library).
6595 # So any compilation using the flags added here but not linking against
6596 # libdvdread can fail.
6597 echocheck "DVD support (libdvdnav)"
6598 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6599 _dvdnav=no
6601 dvdnav_internal=no
6602 if test "$_dvdnav" = auto ; then
6603 if test "$_dvdread_internal" = yes ; then
6604 _dvdnav=yes
6605 dvdnav_internal=yes
6606 res_comment="internal"
6607 else
6608 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6611 if test "$_dvdnav" = auto ; then
6612 _dvdnav=no
6613 _dvdnavdir=$($_dvdnavconfig --cflags)
6614 _dvdnavlibs=$($_dvdnavconfig --libs)
6615 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6617 if test "$_dvdnav" = yes ; then
6618 def_dvdnav='#define CONFIG_DVDNAV 1'
6619 if test "$dvdnav_internal" = yes ; then
6620 cflags_libdvdnav="-Ilibdvdnav"
6621 inputmodules="dvdnav(internal) $inputmodules"
6622 else
6623 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6624 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6625 inputmodules="dvdnav $inputmodules"
6627 else
6628 def_dvdnav='#undef CONFIG_DVDNAV'
6629 noinputmodules="dvdnav $noinputmodules"
6631 echores "$_dvdnav"
6633 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6634 # Read dvdnav comment above.
6636 mak_enable () {
6637 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6638 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6639 nprefix=$3;
6640 for part in $list; do
6641 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6642 echo "${nprefix}_$part = yes"
6644 done
6647 #############################################################################
6648 echo "Creating config.mak"
6649 cat > config.mak << EOF
6650 # -------- Generated by configure -----------
6652 # Ensure that locale settings do not interfere with shell commands.
6653 export LC_ALL = C
6655 CONFIGURATION = $configuration
6657 CHARSET = $_charset
6658 DOC_LANGS = $language_doc
6659 DOC_LANG_ALL = $doc_lang_all
6660 MAN_LANGS = $language_man
6661 MAN_LANG_ALL = $man_lang_all
6662 MSG_LANGS = $language_msg
6663 MSG_LANG_ALL = $msg_lang_all
6665 prefix = \$(DESTDIR)$_prefix
6666 BINDIR = \$(DESTDIR)$_bindir
6667 DATADIR = \$(DESTDIR)$_datadir
6668 LIBDIR = \$(DESTDIR)$_libdir
6669 MANDIR = \$(DESTDIR)$_mandir
6670 CONFDIR = \$(DESTDIR)$_confdir
6671 LOCALEDIR = \$(DESTDIR)$_localedir
6673 AR = $_ar
6674 AS = $_cc
6675 CC = $_cc
6676 CXX = $_cc
6677 HOST_CC = $_host_cc
6678 INSTALL = $_install
6679 INSTALLSTRIP = $_install_strip
6680 WINDRES = $_windres
6682 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6683 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6684 DEPFLAGS = $DEPFLAGS
6686 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6687 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6688 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6689 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6690 CFLAGS_STACKREALIGN = $cflags_stackrealign
6692 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6693 EXTRALIBS_MPLAYER = $libs_mplayer
6695 GETCH = $_getch
6696 TIMER = $_timer
6698 EXESUF = $_exesuf
6699 EXESUFS_ALL = .exe
6701 ARCH = $arch
6702 $(mak_enable "$arch_all" "$arch" ARCH)
6703 $(mak_enable "$subarch_all" "$subarch" ARCH)
6704 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6706 MPLAYER = $_mplayer
6708 NEED_GETTIMEOFDAY = $need_gettimeofday
6709 NEED_GLOB = $need_glob
6710 NEED_MMAP = $need_mmap
6711 NEED_SETENV = $need_setenv
6712 NEED_SHMEM = $need_shmem
6713 NEED_STRSEP = $need_strsep
6714 NEED_SWAB = $need_swab
6715 NEED_VSSCANF = $need_vsscanf
6717 # features
6718 3DFX = $_3dfx
6719 AA = $_aa
6720 ALSA1X = $_alsa1x
6721 ALSA9 = $_alsa9
6722 ALSA5 = $_alsa5
6723 APPLE_IR = $_apple_ir
6724 APPLE_REMOTE = $_apple_remote
6725 ARTS = $_arts
6726 AUDIO_INPUT = $_audio_input
6727 BITMAP_FONT = $_bitmap_font
6728 BL = $_bl
6729 CACA = $_caca
6730 CDDA = $_cdda
6731 CDDB = $_cddb
6732 COREAUDIO = $_coreaudio
6733 COREVIDEO = $_corevideo
6734 DART = $_dart
6735 DGA = $_dga
6736 DIRECT3D = $_direct3d
6737 DIRECTFB = $_directfb
6738 DIRECTX = $_directx
6739 DVBIN = $_dvbin
6740 DVDNAV = $_dvdnav
6741 DVDNAV_INTERNAL = $dvdnav_internal
6742 DVDREAD = $_dvdread
6743 DVDREAD_INTERNAL = $_dvdread_internal
6744 DXR3 = $_dxr3
6745 ESD = $_esd
6746 FAAD = $_faad
6747 FASTMEMCPY = $_fastmemcpy
6748 FBDEV = $_fbdev
6749 FREETYPE = $_freetype
6750 FTP = $_ftp
6751 GIF = $_gif
6752 GGI = $_ggi
6753 GL = $_gl
6754 GL_WIN32 = $_gl_win32
6755 GL_X11 = $_gl_x11
6756 GL_SDL = $_gl_sdl
6757 MATRIXVIEW = $matrixview
6758 HAVE_POSIX_SELECT = $_posix_select
6759 HAVE_SYS_MMAN_H = $_mman
6760 IVTV = $_ivtv
6761 JACK = $_jack
6762 JOYSTICK = $_joystick
6763 JPEG = $_jpeg
6764 KAI = $_kai
6765 KVA = $_kva
6766 LADSPA = $_ladspa
6767 LIBA52 = $_liba52
6768 LIBASS = $_ass
6769 LIBBLURAY = $_bluray
6770 LIBBS2B = $_libbs2b
6771 LIBDCA = $_libdca
6772 LIBDV = $_libdv
6773 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6774 LIBMAD = $_mad
6775 LIBMENU = $_menu
6776 LIBMENU_DVBIN = $_menu_dvbin
6777 LIBNEMESI = $_nemesi
6778 LIBNUT = $_libnut
6779 LIBSMBCLIENT = $_smb
6780 LIBTHEORA = $_theora
6781 LIRC = $_lirc
6782 LIVE555 = $_live
6783 MACOSX_FINDER = $_macosx_finder
6784 MD5SUM = $_md5sum
6785 MGA = $_mga
6786 MNG = $_mng
6787 MPG123 = $_mpg123
6788 MUSEPACK = $_musepack
6789 NAS = $_nas
6790 NATIVE_RTSP = $_native_rtsp
6791 NETWORKING = $networking
6792 OPENAL = $_openal
6793 OSS = $_ossaudio
6794 PE_EXECUTABLE = $_pe_executable
6795 PNG = $_png
6796 PNM = $_pnm
6797 PRIORITY = $_priority
6798 PULSE = $_pulse
6799 PVR = $_pvr
6800 QTX_CODECS = $_qtx
6801 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6802 QTX_EMULATION = $_qtx_emulation
6803 QUARTZ = $_quartz
6804 RADIO=$_radio
6805 RADIO_CAPTURE=$_radio_capture
6806 REAL_CODECS = $_real
6807 S3FB = $_s3fb
6808 SDL = $_sdl
6809 SPEEX = $_speex
6810 STREAM_CACHE = $_stream_cache
6811 SGIAUDIO = $_sgiaudio
6812 SUNAUDIO = $_sunaudio
6813 SVGA = $_svga
6814 TDFXFB = $_tdfxfb
6815 TDFXVID = $_tdfxvid
6816 TGA = $_tga
6817 TV = $_tv
6818 TV_BSDBT848 = $_tv_bsdbt848
6819 TV_DSHOW = $_tv_dshow
6820 TV_V4L = $_tv_v4l
6821 TV_V4L1 = $_tv_v4l1
6822 TV_V4L2 = $_tv_v4l2
6823 UNRAR_EXEC = $_unrar_exec
6824 V4L2 = $_v4l2
6825 VCD = $_vcd
6826 VDPAU = $_vdpau
6827 VESA = $_vesa
6828 VORBIS = $_vorbis
6829 VSTREAM = $_vstream
6830 WII = $_wii
6831 WIN32DLL = $_win32dll
6832 WIN32WAVEOUT = $_win32waveout
6833 WIN32_EMULATION = $_win32_emulation
6834 X11 = $_x11
6835 XANIM_CODECS = $_xanim
6836 XMGA = $_xmga
6837 XMMS_PLUGINS = $_xmms
6838 XV = $_xv
6839 XVID4 = $_xvid
6840 XVMC = $_xvmc
6841 XVR100 = $_xvr100
6842 YUV4MPEG = $_yuv4mpeg
6844 # FFmpeg
6845 FFMPEG = $ffmpeg
6846 FFMPEG_EVAL_API = $ffmpeg_eval_api
6847 FFMPEG_INTERNALS = $ffmpeg_internals
6848 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6850 RANLIB = $_ranlib
6851 YASM = $_yasm
6852 YASMFLAGS = $YASMFLAGS
6854 CONFIG_VDPAU = $_vdpau
6855 CONFIG_XVMC = $_xvmc
6856 CONFIG_ZLIB = $_zlib
6858 HAVE_PTHREADS = $_pthreads
6859 HAVE_SHM = $_shm
6860 HAVE_W32THREADS = $_w32threads
6861 HAVE_YASM = $have_yasm
6865 #############################################################################
6867 ff_config_enable () {
6868 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6869 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6870 _nprefix=$3;
6871 test -z "$_nprefix" && _nprefix='CONFIG'
6872 for part in $list; do
6873 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6874 echo "#define ${_nprefix}_$part 1"
6875 else
6876 echo "#define ${_nprefix}_$part 0"
6878 done
6881 echo "Creating config.h"
6882 cat > $TMPH << EOF
6883 /*----------------------------------------------------------------------------
6884 ** This file has been automatically generated by configure any changes in it
6885 ** will be lost when you run configure again.
6886 ** Instead of modifying definitions here, use the --enable/--disable options
6887 ** of the configure script! See ./configure --help for details.
6888 *---------------------------------------------------------------------------*/
6890 #ifndef MPLAYER_CONFIG_H
6891 #define MPLAYER_CONFIG_H
6893 /* Undefine this if you do not want to select mono audio (left or right)
6894 with a stereo MPEG layer 2/3 audio stream. The command line option
6895 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6896 right-only), with 0 being the default.
6898 #define CONFIG_FAKE_MONO 1
6900 /* set up audio OUTBURST. Do not change this! */
6901 #define OUTBURST 512
6903 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6904 #undef FAST_OSD
6905 #undef FAST_OSD_TABLE
6909 #define CONFIGURATION "$configuration"
6911 #define MPLAYER_DATADIR "$_datadir"
6912 #define MPLAYER_CONFDIR "$_confdir"
6913 #define MPLAYER_LIBDIR "$_libdir"
6914 #define MPLAYER_LOCALEDIR "$_localedir"
6916 $def_translation
6918 /* definitions needed by included libraries */
6919 #define HAVE_INTTYPES_H 1
6920 /* libdvdcss */
6921 #define HAVE_ERRNO_H 1
6922 /* libdvdcss + libdvdread */
6923 #define HAVE_LIMITS_H 1
6924 /* libdvdcss */
6925 #define HAVE_UNISTD_H 1
6926 /* libdvdread */
6927 #define STDC_HEADERS 1
6928 #define HAVE_MEMCPY 1
6929 /* libdvdnav */
6930 #define READ_CACHE_TRACE 0
6931 /* libdvdread */
6932 #define HAVE_DLFCN_H 1
6933 $def_dvdcss
6936 /* system headers */
6937 $def_alloca_h
6938 $def_alsa_asoundlib_h
6939 $def_altivec_h
6940 $def_malloc_h
6941 $def_mman_h
6942 $def_mman_has_map_failed
6943 $def_soundcard_h
6944 $def_sys_asoundlib_h
6945 $def_sys_soundcard_h
6946 $def_sys_sysinfo_h
6947 $def_termios_h
6948 $def_termios_sys_h
6949 $def_winsock2_h
6952 /* system functions */
6953 $def_gethostbyname2
6954 $def_gettimeofday
6955 $def_glob
6956 $def_langinfo
6957 $def_lrintf
6958 $def_map_memalign
6959 $def_memalign
6960 $def_nanosleep
6961 $def_posix_select
6962 $def_select
6963 $def_setenv
6964 $def_setmode
6965 $def_shm
6966 $def_strsep
6967 $def_swab
6968 $def_sysi86
6969 $def_sysi86_iv
6970 $def_termcap
6971 $def_termios
6972 $def_vsscanf
6975 /* system-specific features */
6976 $def_asmalign_pot
6977 $def_builtin_expect
6978 $def_dl
6979 $def_dos_paths
6980 $def_extern_asm
6981 $def_extern_prefix
6982 $def_iconv
6983 $def_kstat
6984 $def_macosx_bundle
6985 $def_macosx_finder
6986 $def_named_asm_args
6987 $def_priority
6988 $def_quicktime
6989 $def_restrict_keyword
6990 $def_rtc
6991 $def_unrar_exec
6994 /* configurable options */
6995 $def_charset
6996 $def_crash_debug
6997 $def_debug
6998 $def_dynamic_plugins
6999 $def_fastmemcpy
7000 $def_menu
7001 $def_runtime_cpudetection
7002 $def_sighandler
7003 $def_sortsub
7004 $def_stream_cache
7005 $def_pthread_cache
7008 /* CPU stuff */
7009 #define __CPU__ $iproc
7010 $def_ebx_available
7011 $def_words_endian
7012 $def_bigendian
7013 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7014 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7015 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7018 /* Blu-ray/DVD/VCD/CD */
7019 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7020 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7021 $def_bluray
7022 $def_bsdi_dvd
7023 $def_cddb
7024 $def_cdio
7025 $def_cdparanoia
7026 $def_cdrom
7027 $def_dvd
7028 $def_dvd_bsd
7029 $def_dvd_darwin
7030 $def_dvd_linux
7031 $def_dvd_openbsd
7032 $def_dvdio
7033 $def_dvdnav
7034 $def_dvdread
7035 $def_hpux_scsi_h
7036 $def_libcdio
7037 $def_sol_scsi_h
7038 $def_vcd
7041 /* codec libraries */
7042 $def_faad
7043 $def_liba52
7044 $def_libdca
7045 $def_libdv
7046 $def_mad
7047 $def_mpg123
7048 $def_musepack
7049 $def_speex
7050 $def_theora
7051 $def_tremor
7052 $def_vorbis
7053 $def_xvid
7054 $def_zlib
7056 $def_libnut
7059 /* binary codecs */
7060 $def_qtx
7061 $def_qtx_win32
7062 $def_real
7063 $def_win32_loader
7064 $def_win32dll
7065 $def_xanim
7066 $def_xmms
7067 #define BINARY_CODECS_PATH "$_codecsdir"
7068 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7071 /* Audio output drivers */
7072 $def_alsa
7073 $def_alsa1x
7074 $def_alsa5
7075 $def_alsa9
7076 $def_arts
7077 $def_coreaudio
7078 $def_dart
7079 $def_esd
7080 $def_esd_latency
7081 $def_jack
7082 $def_kai
7083 $def_nas
7084 $def_openal
7085 $def_openal_h
7086 $def_ossaudio
7087 $def_ossaudio_devdsp
7088 $def_ossaudio_devmixer
7089 $def_pulse
7090 $def_sgiaudio
7091 $def_sunaudio
7092 $def_win32waveout
7094 $def_ladspa
7095 $def_libbs2b
7098 /* input */
7099 $def_apple_ir
7100 $def_apple_remote
7101 $def_ioctl_bt848_h_name
7102 $def_ioctl_meteor_h_name
7103 $def_joystick
7104 $def_lirc
7105 $def_lircc
7106 $def_pvr
7107 $def_radio
7108 $def_radio_bsdbt848
7109 $def_radio_capture
7110 $def_radio_v4l
7111 $def_radio_v4l2
7112 $def_tv
7113 $def_tv_bsdbt848
7114 $def_tv_dshow
7115 $def_tv_v4l
7116 $def_tv_v4l1
7117 $def_tv_v4l2
7120 /* font stuff */
7121 $def_ass
7122 $def_bitmap_font
7123 $def_enca
7124 $def_fontconfig
7125 $def_freetype
7126 $def_fribidi
7129 /* networking */
7130 $def_closesocket
7131 $def_ftp
7132 $def_inet6
7133 $def_inet_aton
7134 $def_inet_pton
7135 $def_live
7136 $def_nemesi
7137 $def_networking
7138 $def_smb
7139 $def_socklen_t
7140 $def_vstream
7143 /* libvo options */
7144 $def_3dfx
7145 $def_aa
7146 $def_bl
7147 $def_caca
7148 $def_corevideo
7149 $def_dga
7150 $def_dga1
7151 $def_dga2
7152 $def_direct3d
7153 $def_directfb
7154 $def_directx
7155 $def_dvb
7156 $def_dvbin
7157 $def_dxr3
7158 $def_fbdev
7159 $def_ggi
7160 $def_ggiwmh
7161 $def_gif
7162 $def_gif_4
7163 $def_gif_tvt_hack
7164 $def_gl
7165 $def_gl_win32
7166 $def_gl_x11
7167 $def_gl_sdl
7168 $def_matrixview
7169 $def_ivtv
7170 $def_jpeg
7171 $def_kva
7172 $def_md5sum
7173 $def_mga
7174 $def_mng
7175 $def_png
7176 $def_pnm
7177 $def_quartz
7178 $def_s3fb
7179 $def_sdl
7180 $def_sdl_sdl_h
7181 $def_svga
7182 $def_tdfxfb
7183 $def_tdfxvid
7184 $def_tga
7185 $def_v4l2
7186 $def_vdpau
7187 $def_vesa
7188 $def_vm
7189 $def_wii
7190 $def_x11
7191 $def_xdpms
7192 $def_xf86keysym
7193 $def_xinerama
7194 $def_xmga
7195 $def_xss
7196 $def_xv
7197 $def_xvmc
7198 $def_xvr100
7199 $def_yuv4mpeg
7202 /* FFmpeg */
7203 $def_ffmpeg
7204 $def_ffmpeg_eval_api
7205 $def_ffmpeg_internals
7207 $def_arpa_inet_h
7208 $def_bswap
7209 $def_dcbzl
7210 $def_exp2
7211 $def_exp2f
7212 $def_fast_64bit
7213 $def_fast_unaligned
7214 $def_llrint
7215 $def_log2
7216 $def_log2f
7217 $def_lrint
7218 $def_memalign_hack
7219 $def_mkstemp
7220 $def_posix_memalign
7221 $def_pthreads
7222 $def_round
7223 $def_roundf
7224 $def_ten_operands
7225 $def_threads
7226 $def_truncf
7227 $def_xform_asm
7228 $def_yasm
7230 #define HAVE_INLINE_ASM 1
7232 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7233 #ifndef MP_DEBUG
7234 #define HAVE_EBP_AVAILABLE 1
7235 #else
7236 #define HAVE_EBP_AVAILABLE 0
7237 #endif
7239 #endif /* MPLAYER_CONFIG_H */
7242 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7243 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7245 #############################################################################
7247 cat << EOF
7249 Config files successfully generated by ./configure $configuration !
7251 Install prefix: $_prefix
7252 Data directory: $_datadir
7253 Config direct.: $_confdir
7255 Byte order: $_byte_order
7256 Optimizing for: $_optimizing
7258 Languages:
7259 Messages (in addition to English): $language_msg
7260 Manual pages: $language_man
7261 Documentation: $language_doc
7263 Enabled optional drivers:
7264 Input: $inputmodules
7265 Codecs: $codecmodules
7266 Audio output: $aomodules
7267 Video output: $vomodules
7269 Disabled optional drivers:
7270 Input: $noinputmodules
7271 Codecs: $nocodecmodules
7272 Audio output: $noaomodules
7273 Video output: $novomodules
7275 'config.h' and 'config.mak' contain your configuration options.
7276 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7277 compile *** DO NOT REPORT BUGS if you tweak these files ***
7279 'make' will now compile MPlayer and 'make install' will install it.
7280 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7285 if test "$_mtrr" = yes ; then
7286 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7287 echo
7290 if ! x86_32; then
7291 cat <<EOF
7292 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7293 operating system ($system_name). You may encounter a few files that cannot
7294 be played due to missing open source video/audio codec support.
7300 cat <<EOF
7301 Check $TMPLOG if you wonder why an autodetection failed (make sure
7302 development headers/packages are installed).
7304 NOTE: The --enable-* parameters unconditionally force options on, completely
7305 skipping autodetection. This behavior is unlike what you may be used to from
7306 autoconf-based configure scripts that can decide to override you. This greater
7307 level of control comes at a price. You may have to provide the correct compiler
7308 and linker flags yourself.
7309 If you used one of these options (except --enable-menu and similar ones that
7310 turn on internal features) and experience a compilation or linking failure,
7311 make sure you have passed the necessary compiler/linker flags to configure.
7313 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7317 if test "$warn_cflags" = yes; then
7318 cat <<EOF
7320 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7321 but:
7323 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7325 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7326 To do so, execute 'CFLAGS= ./configure <options>'
7331 # Last move:
7332 rm -rf "$mplayer_tmpdir"