demux_ogg: fix slang selection
[mplayer.git] / configure
blob53b58f348bbd021b60544f556f5bf0403ab5e2c9
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, look at the existing checks
23 # and try to use helper functions where you can.
25 # Furthermore you need to add the variable _feature to the list of default
26 # settings and set it to one of yes/no/auto. Also add appropriate
27 # --enable-feature/--disable-feature command line options.
28 # The results of the check should be written to config.h and config.mak
29 # at the end of this script. The variable names used for this should be
30 # uniform, i.e. if the option is named 'feature':
32 # _feature : should have a value of yes/no/auto
33 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
34 # _ld_feature : '-L/path/dir -lfeature' GCC options
36 #############################################################################
38 # Prevent locale nonsense from breaking basic text processing utils
39 export LC_ALL=C
41 # Store the configure line that was used
42 configuration="$*"
44 # Prefer these macros to full length text !
45 # These macros only return an error code - NO display is done
46 compile_check() {
47 source="$1"
48 shift
49 echo >> "$TMPLOG"
50 cat "$source" >> "$TMPLOG"
51 echo >> "$TMPLOG"
52 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
53 rm -f "$TMPEXE"
54 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
55 TMPRES="$?"
56 echo >> "$TMPLOG"
57 echo >> "$TMPLOG"
58 return "$TMPRES"
61 cc_check() {
62 compile_check $TMPC $@
65 cxx_check() {
66 compile_check $TMPCPP $@ -lstdc++
69 cflag_check() {
70 cat > $TMPC << EOF
71 int main(void) { return 0; }
72 EOF
73 compile_check $TMPC $@
76 header_check() {
77 cat > $TMPC << EOF
78 #include <$1>
79 int main(void) { return 0; }
80 EOF
81 shift
82 compile_check $TMPC $@
85 return_check() {
86 cat > $TMPC << EOF
87 #include <$1>
88 int main(void) { return $2; }
89 EOF
90 shift 2
91 compile_check $TMPC $@
94 statement_check() {
95 cat > $TMPC << EOF
96 #include <$1>
97 int main(void) { $2; return 0; }
98 EOF
99 shift
100 shift
101 compile_check $TMPC $@
104 define_statement_check() {
105 cat > $TMPC << EOF
106 #define $1
107 #include <$2>
108 int main(void) { $3; return 0; }
110 shift 3
111 compile_check $TMPC $@
114 return_statement_check() {
115 cat > $TMPC << EOF
116 #include <$1>
117 int main(void) { $2; return $3; }
119 shift 3
120 compile_check $TMPC $@
123 inline_asm_check() {
124 cat > $TMPC << EOF
125 int main(void) { __asm__ volatile ($1); return 0; }
127 shift
128 compile_check $TMPC $@
131 # The following checks are special and should only be used with broken and
132 # non-selfsufficient headers that do not include all of their dependencies.
134 header_check_broken() {
135 cat > $TMPC << EOF
136 #include <$1>
137 #include <$2>
138 int main(void) { return 0; }
140 shift
141 shift
142 compile_check $TMPC $@
145 statement_check_broken() {
146 cat > $TMPC << EOF
147 #include <$1>
148 #include <$2>
149 int main(void) { $3; return 0; }
151 shift 3
152 compile_check $TMPC $@
155 yasm_check() {
156 echo >> "$TMPLOG"
157 cat "$TMPS" >> "$TMPLOG"
158 echo >> "$TMPLOG"
159 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
160 rm -f "$TMPEXE"
161 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
162 TMPRES="$?"
163 echo >> "$TMPLOG"
164 echo >> "$TMPLOG"
165 return "$TMPRES"
168 tmp_run() {
169 "$TMPEXE" >> "$TMPLOG" 2>&1
172 # Display error message, flushes tempfile, exit
173 die () {
174 echo
175 echo "Error: $@" >&2
176 echo >&2
177 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
178 echo "Check \"$TMPLOG\" if you do not understand why it failed."
179 exit 1
182 # OS test booleans functions
183 issystem() {
184 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
186 aix() { issystem "AIX"; }
187 amigaos() { issystem "AmigaOS"; }
188 beos() { issystem "BEOS"; }
189 bsdos() { issystem "BSD/OS"; }
190 cygwin() { issystem "CYGWIN"; }
191 darwin() { issystem "Darwin"; }
192 dragonfly() { issystem "DragonFly"; }
193 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
194 gnu() { issystem "GNU"; }
195 hpux() { issystem "HP-UX"; }
196 irix() { issystem "IRIX"; }
197 linux() { issystem "Linux"; }
198 mingw32() { issystem "MINGW32"; }
199 morphos() { issystem "MorphOS"; }
200 netbsd() { issystem "NetBSD"; }
201 openbsd() { issystem "OpenBSD"; }
202 os2() { issystem "OS/2"; }
203 qnx() { issystem "QNX"; }
204 sunos() { issystem "SunOS"; }
205 win32() { cygwin || mingw32; }
207 # arch test boolean functions
208 # x86/x86pc is used by QNX
209 x86_32() {
210 case "$host_arch" in
211 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
212 *) return 1 ;;
213 esac
216 x86_64() {
217 case "$host_arch" in
218 x86_64|amd64) return 0 ;;
219 *) return 1 ;;
220 esac
223 x86() {
224 x86_32 || x86_64
227 ppc() {
228 case "$host_arch" in
229 ppc|ppc64|powerpc|powerpc64) return 0;;
230 *) return 1;;
231 esac
234 alpha() {
235 case "$host_arch" in
236 alpha*) return 0;;
237 *) return 1;;
238 esac
241 arm() {
242 case "$host_arch" in
243 arm*) return 0;;
244 *) return 1;;
245 esac
248 # Use this before starting a check
249 echocheck() {
250 echo "============ Checking for $@ ============" >> "$TMPLOG"
251 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
254 # Use this to echo the results of a check
255 echores() {
256 if test "$res_comment" ; then
257 res_comment="($res_comment)"
259 echo "Result is: $@ $res_comment" >> "$TMPLOG"
260 echo "##########################################" >> "$TMPLOG"
261 echo "" >> "$TMPLOG"
262 echo "$@ $res_comment"
263 res_comment=""
265 #############################################################################
267 # Check how echo works in this /bin/sh
268 case $(echo -n) in
269 -n) _echo_n= _echo_c='\c' ;; # SysV echo
270 *) _echo_n='-n ' _echo_c= ;; # BSD echo
271 esac
273 msg_lang_all=''
274 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
275 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
276 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
278 show_help(){
279 cat << EOF
280 Usage: $0 [OPTIONS]...
282 Configuration:
283 -h, --help display this help and exit
285 Installation directories:
286 --prefix=DIR prefix directory for installation [/usr/local]
287 --bindir=DIR directory for installing binaries [PREFIX/bin]
288 --datadir=DIR directory for installing machine independent
289 data files (skins, etc) [PREFIX/share/mplayer]
290 --mandir=DIR directory for installing man pages [PREFIX/share/man]
291 --confdir=DIR directory for installing configuration files
292 [PREFIX/etc/mplayer]
293 --localedir=DIR directory for locale tree [PREFIX/share/locale]
294 --libdir=DIR directory for object code libraries [PREFIX/lib]
295 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
297 Optional features:
298 --disable-mplayer disable MPlayer compilation [enable]
299 --disable-largefiles disable support for files > 2GB [enable]
300 --enable-termcap use termcap database for key codes [autodetect]
301 --enable-termios use termios database for key codes [autodetect]
302 --disable-iconv disable iconv for encoding conversion [autodetect]
303 --disable-langinfo do not use langinfo [autodetect]
304 --enable-lirc enable LIRC (remote control) support [autodetect]
305 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
306 --enable-joystick enable joystick support [disable]
307 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
308 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
309 --disable-vm disable X video mode extensions [autodetect]
310 --disable-xf86keysym disable support for multimedia keys [autodetect]
311 --enable-radio enable radio interface [disable]
312 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
313 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
314 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
315 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
316 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
317 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
318 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
319 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
320 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
321 --disable-networking disable networking [enable]
322 --enable-winsock2_h enable winsock2_h [autodetect]
323 --enable-smb enable Samba (SMB) input [autodetect]
324 --enable-live enable LIVE555 Streaming Media [autodetect]
325 --enable-nemesi enable Nemesi Streaming Media [autodetect]
326 --disable-vcd disable VCD support [autodetect]
327 --disable-bluray disable Blu-ray support [autodetect]
328 --disable-dvdnav disable libdvdnav [autodetect]
329 --disable-dvdread disable libdvdread [autodetect]
330 --disable-dvdread-internal disable internal libdvdread [autodetect]
331 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
332 --disable-cdparanoia disable cdparanoia [autodetect]
333 --disable-cddb disable cddb [autodetect]
334 --disable-bitmap-font disable bitmap font support [enable]
335 --disable-freetype disable FreeType 2 font rendering [autodetect]
336 --disable-fontconfig disable fontconfig font lookup [autodetect]
337 --disable-unrarexec disable using of UnRAR executable [enabled]
338 --enable-menu enable OSD menu (not DVD menu) [disabled]
339 --disable-sortsub disable subtitle sorting [enabled]
340 --enable-fribidi enable the FriBiDi libs [autodetect]
341 --disable-enca disable ENCA charset oracle library [autodetect]
342 --enable-macosx-finder enable Mac OS X Finder invocation parameter
343 parsing [disabled]
344 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
345 --disable-inet6 disable IPv6 support [autodetect]
346 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
347 --disable-ftp disable FTP support [enabled]
348 --disable-vstream disable TiVo vstream client support [autodetect]
349 --disable-pthreads disable Posix threads support [autodetect]
350 --disable-w32threads disable Win32 threads support [autodetect]
351 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
352 --enable-rpath enable runtime linker path for extra libs [disabled]
354 Codecs:
355 --enable-gif enable GIF support [autodetect]
356 --enable-png enable PNG input/output support [autodetect]
357 --enable-mng enable MNG input support [autodetect]
358 --enable-jpeg enable JPEG input/output support [autodetect]
359 --enable-libcdio enable libcdio support [autodetect]
360 --disable-win32dll disable Win32 DLL support [autodetect]
361 --disable-qtx disable QuickTime codecs support [enabled]
362 --disable-xanim disable XAnim codecs support [enabled]
363 --disable-real disable RealPlayer codecs support [enabled]
364 --disable-xvid disable Xvid [autodetect]
365 --disable-libnut disable libnut [autodetect]
366 --disable-ffmpeg disable FFmpeg [autodetect]
367 --disable-libvorbis disable libvorbis support [autodetect]
368 --disable-tremor disable Tremor [autodetect if no libvorbis]
369 --disable-speex disable Speex support [autodetect]
370 --enable-theora enable OggTheora libraries [autodetect]
371 --enable-faad enable FAAD2 (AAC) [autodetect]
372 --disable-ladspa disable LADSPA plugin support [autodetect]
373 --disable-libbs2b disable libbs2b audio filter support [autodetect]
374 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
375 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
376 --disable-mad disable libmad (MPEG audio) support [autodetect]
377 --enable-xmms enable XMMS input plugin support [disabled]
378 --enable-libdca enable libdca support [autodetect]
379 --disable-liba52 disable liba52 [autodetect]
380 --enable-musepack enable libmpcdec support (deprecated, libavcodec
381 Musepack decoder is preferred) [disabled]
383 Video output:
384 --enable-gl enable OpenGL video output [autodetect]
385 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
386 --enable-dga2 enable DGA 2 support [autodetect]
387 --enable-dga1 enable DGA 1 support [autodetect]
388 --enable-vesa enable VESA video output [autodetect]
389 --enable-svga enable SVGAlib video output [autodetect]
390 --enable-sdl enable SDL video output [autodetect]
391 --enable-kva enable KVA video output [autodetect]
392 --enable-aa enable AAlib video output [autodetect]
393 --enable-caca enable CACA video output [autodetect]
394 --enable-ggi enable GGI video output [autodetect]
395 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
396 --enable-direct3d enable Direct3D video output [autodetect]
397 --enable-directx enable DirectX video output [autodetect]
398 --enable-dxr3 enable DXR3/H+ video output [autodetect]
399 --enable-ivtv enable IVTV TV-Out video output [autodetect]
400 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
401 --enable-dvb enable DVB video output [autodetect]
402 --enable-mga enable mga_vid video output [autodetect]
403 --enable-xmga enable mga_vid X11 video output [autodetect]
404 --enable-xv enable Xv video output [autodetect]
405 --enable-xvmc enable XvMC acceleration [disable]
406 --enable-vdpau enable VDPAU acceleration [autodetect]
407 --enable-vm enable XF86VidMode support [autodetect]
408 --enable-xinerama enable Xinerama support [autodetect]
409 --enable-x11 enable X11 video output [autodetect]
410 --enable-xshape enable XShape support [autodetect]
411 --disable-xss disable screensaver support via xss [autodetect]
412 --enable-fbdev enable FBDev video output [autodetect]
413 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
414 --enable-tdfxfb enable tdfxfb video output [disable]
415 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
416 --enable-wii enable Nintendo Wii/GameCube video output [disable]
417 --enable-directfb enable DirectFB video output [autodetect]
418 --enable-bl enable Blinkenlights video output [disable]
419 --enable-tdfxvid enable tdfx_vid video output [disable]
420 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
421 --disable-tga disable Targa video output [enable]
422 --disable-pnm disable PNM video output [enable]
423 --disable-md5sum disable md5sum video output [enable]
424 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
425 --disable-corevideo disable CoreVideo video output [autodetect]
426 --disable-quartz disable Quartz video output [autodetect]
428 Audio output:
429 --disable-alsa disable ALSA audio output [autodetect]
430 --disable-ossaudio disable OSS audio output [autodetect]
431 --disable-arts disable aRts audio output [autodetect]
432 --disable-esd disable esd audio output [autodetect]
433 --disable-pulse disable Pulseaudio audio output [autodetect]
434 --disable-jack disable JACK audio output [autodetect]
435 --enable-openal enable OpenAL audio output [disable]
436 --disable-nas disable NAS audio output [autodetect]
437 --disable-sgiaudio disable SGI audio output [autodetect]
438 --disable-sunaudio disable Sun audio output [autodetect]
439 --disable-kai disable KAI audio output [autodetect]
440 --disable-dart disable DART audio output [autodetect]
441 --disable-win32waveout disable Windows waveout audio output [autodetect]
442 --disable-coreaudio disable CoreAudio audio output [autodetect]
443 --disable-select disable using select() on the audio device [enable]
445 Language options:
446 --enable-translation enable support for translated output [disable]
447 --charset=charset convert the console messages to this character set
448 --language-doc=lang language to use for the documentation [en]
449 --language-man=lang language to use for the man pages [en]
450 --language-msg=lang extra languages for program messages [all]
451 --language=lang default language to use [en]
452 Specific options override --language. You can pass a list of languages separated
453 by whitespace or commas instead of a single language. Nonexisting translations
454 will be dropped from each list. All translations available in the list will be
455 installed. The value "all" will activate all translations. The LINGUAS
456 environment variable is honored. In all cases the fallback is English.
457 The program always supports English-language output; additional message
458 languages are only installed if --enable-translation is also specified.
459 Available values for --language-doc are: all $doc_lang_all
460 Available values for --language-man are: all $man_lang_all
461 Available values for --language-msg are: all $msg_lang_all
463 Miscellaneous options:
464 --enable-runtime-cpudetection enable runtime CPU detection [disable]
465 --enable-cross-compile enable cross-compilation [autodetect]
466 --cc=COMPILER C compiler to build MPlayer [gcc]
467 --host-cc=COMPILER C compiler for tools needed while building [gcc]
468 --as=ASSEMBLER assembler to build MPlayer [as]
469 --nm=NM nm tool to build MPlayer [nm]
470 --yasm=YASM Yasm assembler to build MPlayer [yasm]
471 --ar=AR librarian to build MPlayer [ar]
472 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
473 --windres=WINDRES windres to build MPlayer [windres]
474 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
475 --enable-static build a statically linked binary
476 --with-install=PATH path to a custom install program
478 Advanced options:
479 --enable-mmx enable MMX [autodetect]
480 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
481 --enable-3dnow enable 3DNow! [autodetect]
482 --enable-3dnowext enable extended 3DNow! [autodetect]
483 --enable-sse enable SSE [autodetect]
484 --enable-sse2 enable SSE2 [autodetect]
485 --enable-ssse3 enable SSSE3 [autodetect]
486 --enable-shm enable shm [autodetect]
487 --enable-altivec enable AltiVec (PowerPC) [autodetect]
488 --enable-armv5te enable DSP extensions (ARM) [autodetect]
489 --enable-armv6 enable ARMv6 (ARM) [autodetect]
490 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
491 --enable-armvfp enable ARM VFP (ARM) [autodetect]
492 --enable-neon enable NEON (ARM) [autodetect]
493 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
494 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
495 --enable-big-endian force byte order to big-endian [autodetect]
496 --enable-debug[=1-3] compile-in debugging information [disable]
497 --enable-profile compile-in profiling information [disable]
498 --disable-sighandler disable sighandler for crashes [enable]
499 --enable-crash-debug enable automatic gdb attach on crash [disable]
500 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
502 Use these options if autodetection fails:
503 --extra-cflags=FLAGS extra CFLAGS
504 --extra-ldflags=FLAGS extra LDFLAGS
505 --extra-libs=FLAGS extra linker flags
506 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
507 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
509 --with-freetype-config=PATH path to freetype-config
510 --with-sdl-config=PATH path to sdl*-config
511 --with-dvdnav-config=PATH path to dvdnav-config
512 --with-dvdread-config=PATH path to dvdread-config
514 This configure script is NOT autoconf-based, even though its output is similar.
515 It will try to autodetect all configuration options. If you --enable an option
516 it will be forcefully turned on, skipping autodetection. This can break
517 compilation, so you need to know what you are doing.
519 exit 0
520 } #show_help()
522 # GOTCHA: the variables below defines the default behavior for autodetection
523 # and have - unless stated otherwise - at least 2 states : yes no
524 # If autodetection is available then the third state is: auto
525 _mmx=auto
526 _3dnow=auto
527 _3dnowext=auto
528 _mmxext=auto
529 _sse=auto
530 _sse2=auto
531 _ssse3=auto
532 _cmov=auto
533 _fast_cmov=auto
534 _fast_clz=auto
535 _armv5te=auto
536 _armv6=auto
537 _armv6t2=auto
538 _armvfp=auto
539 neon=auto
540 _iwmmxt=auto
541 _mtrr=auto
542 _altivec=auto
543 _install=install
544 _ranlib=ranlib
545 _windres=windres
546 _cc=cc
547 _ar=ar
548 test "$CC" && _cc="$CC"
549 _as=auto
550 _nm=auto
551 _yasm=yasm
552 _runtime_cpudetection=no
553 _cross_compile=auto
554 _prefix="/usr/local"
555 ffmpeg=auto
556 ffmpeg_internals=no
557 _mplayer=yes
558 _x11=auto
559 _xshape=auto
560 _xss=auto
561 _dga1=auto
562 _dga2=auto
563 _xv=auto
564 _xvmc=no #auto when complete
565 _vdpau=auto
566 _sdl=auto
567 _kva=auto
568 _direct3d=auto
569 _directx=auto
570 _win32waveout=auto
571 _nas=auto
572 _png=auto
573 _mng=auto
574 _jpeg=auto
575 _pnm=yes
576 _md5sum=yes
577 _yuv4mpeg=yes
578 _gif=auto
579 _gl=auto
580 matrixview=yes
581 _ggi=auto
582 _ggiwmh=auto
583 _aa=auto
584 _caca=auto
585 _svga=auto
586 _vesa=auto
587 _fbdev=auto
588 _dvb=auto
589 _dxr3=auto
590 _ivtv=auto
591 _v4l2=auto
592 _iconv=auto
593 _langinfo=auto
594 _rtc=auto
595 _ossaudio=auto
596 _arts=auto
597 _esd=auto
598 _pulse=auto
599 _jack=auto
600 _kai=auto
601 _dart=auto
602 _openal=no
603 _libcdio=auto
604 _mad=auto
605 _tremor=auto
606 _libvorbis=auto
607 _speex=auto
608 _theora=auto
609 _mpg123=auto
610 _liba52=auto
611 _libdca=auto
612 _faad=auto
613 _ladspa=auto
614 _libbs2b=auto
615 _xmms=no
616 _vcd=auto
617 _bluray=auto
618 _dvdnav=auto
619 _dvdnavconfig=dvdnav-config
620 _dvdreadconfig=dvdread-config
621 _dvdread=auto
622 _dvdread_internal=auto
623 _libdvdcss_internal=auto
624 _xanim=auto
625 _real=auto
626 _live=auto
627 _nemesi=auto
628 _native_rtsp=yes
629 _xinerama=auto
630 _mga=auto
631 _xmga=auto
632 _vm=auto
633 _xf86keysym=auto
634 _sgiaudio=auto
635 _sunaudio=auto
636 _alsa=auto
637 _fastmemcpy=yes
638 _unrar_exec=auto
639 _win32dll=auto
640 _select=yes
641 _radio=no
642 _radio_capture=no
643 _radio_v4l=auto
644 _radio_v4l2=auto
645 _radio_bsdbt848=auto
646 _tv=yes
647 _tv_v4l1=auto
648 _tv_v4l2=auto
649 _tv_bsdbt848=auto
650 _tv_dshow=auto
651 _pvr=auto
652 networking=yes
653 _winsock2_h=auto
654 _smb=auto
655 _joystick=no
656 _xvid=auto
657 _libnut=auto
658 _lirc=auto
659 _lircc=auto
660 _apple_remote=auto
661 _apple_ir=auto
662 _termcap=auto
663 _termios=auto
664 _3dfx=no
665 _s3fb=no
666 _wii=no
667 _tdfxfb=no
668 _tdfxvid=no
669 _xvr100=auto
670 _tga=yes
671 _directfb=auto
672 _bl=no
673 _largefiles=yes
674 #language=en
675 _shm=auto
676 _translation=no
677 _charset="UTF-8"
678 _dynamic_plugins=no
679 _crash_debug=no
680 _sighandler=yes
681 _libdv=auto
682 _cdparanoia=auto
683 _cddb=auto
684 _big_endian=auto
685 _bitmap_font=yes
686 _freetype=auto
687 _fontconfig=auto
688 _menu=no
689 _qtx=auto
690 _coreaudio=auto
691 _corevideo=auto
692 _quartz=auto
693 quicktime=auto
694 _macosx_finder=no
695 _macosx_bundle=auto
696 _sortsub=yes
697 _freetypeconfig='freetype-config'
698 _fribidi=auto
699 _enca=auto
700 _inet6=auto
701 _gethostbyname2=auto
702 _ftp=auto
703 _musepack=no
704 _vstream=auto
705 _pthreads=auto
706 _w32threads=auto
707 _ass=auto
708 _rpath=no
709 _asmalign_pot=auto
710 _stream_cache=yes
711 _priority=no
712 def_dos_paths="#define HAVE_DOS_PATHS 0"
713 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
714 def_priority="#undef CONFIG_PRIORITY"
715 def_pthread_cache="#undef PTHREAD_CACHE"
716 need_shmem=yes
717 for ac_option do
718 case "$ac_option" in
719 --help|-help|-h)
720 show_help
722 --prefix=*)
723 _prefix=$(echo $ac_option | cut -d '=' -f 2)
725 --bindir=*)
726 _bindir=$(echo $ac_option | cut -d '=' -f 2)
728 --datadir=*)
729 _datadir=$(echo $ac_option | cut -d '=' -f 2)
731 --mandir=*)
732 _mandir=$(echo $ac_option | cut -d '=' -f 2)
734 --confdir=*)
735 _confdir=$(echo $ac_option | cut -d '=' -f 2)
737 --libdir=*)
738 _libdir=$(echo $ac_option | cut -d '=' -f 2)
740 --codecsdir=*)
741 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
743 --localedir=*)
744 _localedir=$(echo $ac_option | cut -d '=' -f 2)
747 --with-install=*)
748 _install=$(echo $ac_option | cut -d '=' -f 2 )
750 --with-xvmclib=*)
751 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
754 --with-sdl-config=*)
755 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --with-freetype-config=*)
758 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
760 --with-dvdnav-config=*)
761 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
763 --with-dvdread-config=*)
764 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
767 --extra-cflags=*)
768 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
770 --extra-ldflags=*)
771 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
773 --extra-libs=*)
774 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
776 --extra-libs-mplayer=*)
777 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
780 --target=*)
781 _target=$(echo $ac_option | cut -d '=' -f 2)
783 --cc=*)
784 _cc=$(echo $ac_option | cut -d '=' -f 2)
786 --host-cc=*)
787 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
789 --as=*)
790 _as=$(echo $ac_option | cut -d '=' -f 2)
792 --nm=*)
793 _nm=$(echo $ac_option | cut -d '=' -f 2)
795 --yasm=*)
796 _yasm=$(echo $ac_option | cut -d '=' -f 2)
798 --ar=*)
799 _ar=$(echo $ac_option | cut -d '=' -f 2)
801 --ranlib=*)
802 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
804 --windres=*)
805 _windres=$(echo $ac_option | cut -d '=' -f 2)
807 --charset=*)
808 _charset=$(echo $ac_option | cut -d '=' -f 2)
810 --language-doc=*)
811 language_doc=$(echo $ac_option | cut -d '=' -f 2)
813 --language-man=*)
814 language_man=$(echo $ac_option | cut -d '=' -f 2)
816 --language-msg=*)
817 language_msg=$(echo $ac_option | cut -d '=' -f 2)
819 --language=*)
820 language=$(echo $ac_option | cut -d '=' -f 2)
823 --enable-static)
824 _ld_static='-static'
826 --disable-static)
827 _ld_static=''
829 --enable-profile)
830 _profile='-p'
832 --disable-profile)
833 _profile=
835 --enable-debug)
836 _debug='-g'
838 --enable-debug=*)
839 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
841 --disable-debug)
842 _debug=
844 --enable-translation) _translation=yes ;;
845 --disable-translation) _translation=no ;;
846 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
847 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
848 --enable-cross-compile) _cross_compile=yes ;;
849 --disable-cross-compile) _cross_compile=no ;;
850 --enable-mplayer) _mplayer=yes ;;
851 --disable-mplayer) _mplayer=no ;;
852 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
853 --disable-dynamic-plugins) _dynamic_plugins=no ;;
854 --enable-x11) _x11=yes ;;
855 --disable-x11) _x11=no ;;
856 --enable-xshape) _xshape=yes ;;
857 --disable-xshape) _xshape=no ;;
858 --enable-xss) _xss=yes ;;
859 --disable-xss) _xss=no ;;
860 --enable-xv) _xv=yes ;;
861 --disable-xv) _xv=no ;;
862 --enable-xvmc) _xvmc=yes ;;
863 --disable-xvmc) _xvmc=no ;;
864 --enable-vdpau) _vdpau=yes ;;
865 --disable-vdpau) _vdpau=no ;;
866 --enable-sdl) _sdl=yes ;;
867 --disable-sdl) _sdl=no ;;
868 --enable-kva) _kva=yes ;;
869 --disable-kva) _kva=no ;;
870 --enable-direct3d) _direct3d=yes ;;
871 --disable-direct3d) _direct3d=no ;;
872 --enable-directx) _directx=yes ;;
873 --disable-directx) _directx=no ;;
874 --enable-win32waveout) _win32waveout=yes ;;
875 --disable-win32waveout) _win32waveout=no ;;
876 --enable-nas) _nas=yes ;;
877 --disable-nas) _nas=no ;;
878 --enable-png) _png=yes ;;
879 --disable-png) _png=no ;;
880 --enable-mng) _mng=yes ;;
881 --disable-mng) _mng=no ;;
882 --enable-jpeg) _jpeg=yes ;;
883 --disable-jpeg) _jpeg=no ;;
884 --enable-pnm) _pnm=yes ;;
885 --disable-pnm) _pnm=no ;;
886 --enable-md5sum) _md5sum=yes ;;
887 --disable-md5sum) _md5sum=no ;;
888 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
889 --disable-yuv4mpeg) _yuv4mpeg=no ;;
890 --enable-gif) _gif=yes ;;
891 --disable-gif) _gif=no ;;
892 --enable-gl) _gl=yes ;;
893 --disable-gl) _gl=no ;;
894 --enable-matrixview) matrixview=yes ;;
895 --disable-matrixview) matrixview=no ;;
896 --enable-ggi) _ggi=yes ;;
897 --disable-ggi) _ggi=no ;;
898 --enable-ggiwmh) _ggiwmh=yes ;;
899 --disable-ggiwmh) _ggiwmh=no ;;
900 --enable-aa) _aa=yes ;;
901 --disable-aa) _aa=no ;;
902 --enable-caca) _caca=yes ;;
903 --disable-caca) _caca=no ;;
904 --enable-svga) _svga=yes ;;
905 --disable-svga) _svga=no ;;
906 --enable-vesa) _vesa=yes ;;
907 --disable-vesa) _vesa=no ;;
908 --enable-fbdev) _fbdev=yes ;;
909 --disable-fbdev) _fbdev=no ;;
910 --enable-dvb) _dvb=yes ;;
911 --disable-dvb) _dvb=no ;;
912 --enable-dxr3) _dxr3=yes ;;
913 --disable-dxr3) _dxr3=no ;;
914 --enable-ivtv) _ivtv=yes ;;
915 --disable-ivtv) _ivtv=no ;;
916 --enable-v4l2) _v4l2=yes ;;
917 --disable-v4l2) _v4l2=no ;;
918 --enable-iconv) _iconv=yes ;;
919 --disable-iconv) _iconv=no ;;
920 --enable-langinfo) _langinfo=yes ;;
921 --disable-langinfo) _langinfo=no ;;
922 --enable-rtc) _rtc=yes ;;
923 --disable-rtc) _rtc=no ;;
924 --enable-libdv) _libdv=yes ;;
925 --disable-libdv) _libdv=no ;;
926 --enable-ossaudio) _ossaudio=yes ;;
927 --disable-ossaudio) _ossaudio=no ;;
928 --enable-arts) _arts=yes ;;
929 --disable-arts) _arts=no ;;
930 --enable-esd) _esd=yes ;;
931 --disable-esd) _esd=no ;;
932 --enable-pulse) _pulse=yes ;;
933 --disable-pulse) _pulse=no ;;
934 --enable-jack) _jack=yes ;;
935 --disable-jack) _jack=no ;;
936 --enable-openal) _openal=yes ;;
937 --disable-openal) _openal=no ;;
938 --enable-kai) _kai=yes ;;
939 --disable-kai) _kai=no ;;
940 --enable-dart) _dart=yes ;;
941 --disable-dart) _dart=no ;;
942 --enable-mad) _mad=yes ;;
943 --disable-mad) _mad=no ;;
944 --enable-libcdio) _libcdio=yes ;;
945 --disable-libcdio) _libcdio=no ;;
946 --enable-libvorbis) _libvorbis=yes ;;
947 --disable-libvorbis) _libvorbis=no ;;
948 --enable-speex) _speex=yes ;;
949 --disable-speex) _speex=no ;;
950 --enable-tremor) _tremor=yes ;;
951 --disable-tremor) _tremor=no ;;
952 --enable-theora) _theora=yes ;;
953 --disable-theora) _theora=no ;;
954 --enable-mpg123) _mpg123=yes ;;
955 --disable-mpg123) _mpg123=no ;;
956 --enable-liba52) _liba52=yes ;;
957 --disable-liba52) _liba52=no ;;
958 --enable-libdca) _libdca=yes ;;
959 --disable-libdca) _libdca=no ;;
960 --enable-musepack) _musepack=yes ;;
961 --disable-musepack) _musepack=no ;;
962 --enable-faad) _faad=yes ;;
963 --disable-faad) _faad=no ;;
964 --enable-ladspa) _ladspa=yes ;;
965 --disable-ladspa) _ladspa=no ;;
966 --enable-libbs2b) _libbs2b=yes ;;
967 --disable-libbs2b) _libbs2b=no ;;
968 --enable-xmms) _xmms=yes ;;
969 --disable-xmms) _xmms=no ;;
970 --enable-vcd) _vcd=yes ;;
971 --disable-vcd) _vcd=no ;;
972 --enable-bluray) _bluray=yes ;;
973 --disable-bluray) _bluray=no ;;
974 --enable-dvdread) _dvdread=yes ;;
975 --disable-dvdread) _dvdread=no ;;
976 --enable-dvdread-internal) _dvdread_internal=yes ;;
977 --disable-dvdread-internal) _dvdread_internal=no ;;
978 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
979 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
980 --enable-dvdnav) _dvdnav=yes ;;
981 --disable-dvdnav) _dvdnav=no ;;
982 --enable-xanim) _xanim=yes ;;
983 --disable-xanim) _xanim=no ;;
984 --enable-real) _real=yes ;;
985 --disable-real) _real=no ;;
986 --enable-live) _live=yes ;;
987 --disable-live) _live=no ;;
988 --enable-nemesi) _nemesi=yes ;;
989 --disable-nemesi) _nemesi=no ;;
990 --enable-xinerama) _xinerama=yes ;;
991 --disable-xinerama) _xinerama=no ;;
992 --enable-mga) _mga=yes ;;
993 --disable-mga) _mga=no ;;
994 --enable-xmga) _xmga=yes ;;
995 --disable-xmga) _xmga=no ;;
996 --enable-vm) _vm=yes ;;
997 --disable-vm) _vm=no ;;
998 --enable-xf86keysym) _xf86keysym=yes ;;
999 --disable-xf86keysym) _xf86keysym=no ;;
1000 --enable-sunaudio) _sunaudio=yes ;;
1001 --disable-sunaudio) _sunaudio=no ;;
1002 --enable-sgiaudio) _sgiaudio=yes ;;
1003 --disable-sgiaudio) _sgiaudio=no ;;
1004 --enable-alsa) _alsa=yes ;;
1005 --disable-alsa) _alsa=no ;;
1006 --enable-tv) _tv=yes ;;
1007 --disable-tv) _tv=no ;;
1008 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1009 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1010 --enable-tv-v4l1) _tv_v4l1=yes ;;
1011 --disable-tv-v4l1) _tv_v4l1=no ;;
1012 --enable-tv-v4l2) _tv_v4l2=yes ;;
1013 --disable-tv-v4l2) _tv_v4l2=no ;;
1014 --enable-tv-dshow) _tv_dshow=yes ;;
1015 --disable-tv-dshow) _tv_dshow=no ;;
1016 --enable-radio) _radio=yes ;;
1017 --enable-radio-capture) _radio_capture=yes ;;
1018 --disable-radio-capture) _radio_capture=no ;;
1019 --disable-radio) _radio=no ;;
1020 --enable-radio-v4l) _radio_v4l=yes ;;
1021 --disable-radio-v4l) _radio_v4l=no ;;
1022 --enable-radio-v4l2) _radio_v4l2=yes ;;
1023 --disable-radio-v4l2) _radio_v4l2=no ;;
1024 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1025 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1026 --enable-pvr) _pvr=yes ;;
1027 --disable-pvr) _pvr=no ;;
1028 --enable-fastmemcpy) _fastmemcpy=yes ;;
1029 --disable-fastmemcpy) _fastmemcpy=no ;;
1030 --enable-networking) networking=yes ;;
1031 --disable-networking) networking=no ;;
1032 --enable-winsock2_h) _winsock2_h=yes ;;
1033 --disable-winsock2_h) _winsock2_h=no ;;
1034 --enable-smb) _smb=yes ;;
1035 --disable-smb) _smb=no ;;
1036 --enable-joystick) _joystick=yes ;;
1037 --disable-joystick) _joystick=no ;;
1038 --enable-xvid) _xvid=yes ;;
1039 --disable-xvid) _xvid=no ;;
1040 --enable-libnut) _libnut=yes ;;
1041 --disable-libnut) _libnut=no ;;
1042 --enable-ffmpeg) ffmpeg=yes ;;
1043 --disable-ffmpeg) ffmpeg=no ;;
1044 --ffmpeg-source-dir=*)
1045 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1047 --enable-lirc) _lirc=yes ;;
1048 --disable-lirc) _lirc=no ;;
1049 --enable-lircc) _lircc=yes ;;
1050 --disable-lircc) _lircc=no ;;
1051 --enable-apple-remote) _apple_remote=yes ;;
1052 --disable-apple-remote) _apple_remote=no ;;
1053 --enable-apple-ir) _apple_ir=yes ;;
1054 --disable-apple-ir) _apple_ir=no ;;
1055 --enable-termcap) _termcap=yes ;;
1056 --disable-termcap) _termcap=no ;;
1057 --enable-termios) _termios=yes ;;
1058 --disable-termios) _termios=no ;;
1059 --enable-3dfx) _3dfx=yes ;;
1060 --disable-3dfx) _3dfx=no ;;
1061 --enable-s3fb) _s3fb=yes ;;
1062 --disable-s3fb) _s3fb=no ;;
1063 --enable-wii) _wii=yes ;;
1064 --disable-wii) _wii=no ;;
1065 --enable-tdfxfb) _tdfxfb=yes ;;
1066 --disable-tdfxfb) _tdfxfb=no ;;
1067 --disable-tdfxvid) _tdfxvid=no ;;
1068 --enable-tdfxvid) _tdfxvid=yes ;;
1069 --disable-xvr100) _xvr100=no ;;
1070 --enable-xvr100) _xvr100=yes ;;
1071 --disable-tga) _tga=no ;;
1072 --enable-tga) _tga=yes ;;
1073 --enable-directfb) _directfb=yes ;;
1074 --disable-directfb) _directfb=no ;;
1075 --enable-bl) _bl=yes ;;
1076 --disable-bl) _bl=no ;;
1077 --enable-mtrr) _mtrr=yes ;;
1078 --disable-mtrr) _mtrr=no ;;
1079 --enable-largefiles) _largefiles=yes ;;
1080 --disable-largefiles) _largefiles=no ;;
1081 --enable-shm) _shm=yes ;;
1082 --disable-shm) _shm=no ;;
1083 --enable-select) _select=yes ;;
1084 --disable-select) _select=no ;;
1085 --enable-cdparanoia) _cdparanoia=yes ;;
1086 --disable-cdparanoia) _cdparanoia=no ;;
1087 --enable-cddb) _cddb=yes ;;
1088 --disable-cddb) _cddb=no ;;
1089 --enable-big-endian) _big_endian=yes ;;
1090 --disable-big-endian) _big_endian=no ;;
1091 --enable-bitmap-font) _bitmap_font=yes ;;
1092 --disable-bitmap-font) _bitmap_font=no ;;
1093 --enable-freetype) _freetype=yes ;;
1094 --disable-freetype) _freetype=no ;;
1095 --enable-fontconfig) _fontconfig=yes ;;
1096 --disable-fontconfig) _fontconfig=no ;;
1097 --enable-unrarexec) _unrar_exec=yes ;;
1098 --disable-unrarexec) _unrar_exec=no ;;
1099 --enable-ftp) _ftp=yes ;;
1100 --disable-ftp) _ftp=no ;;
1101 --enable-vstream) _vstream=yes ;;
1102 --disable-vstream) _vstream=no ;;
1103 --enable-pthreads) _pthreads=yes ;;
1104 --disable-pthreads) _pthreads=no ;;
1105 --enable-w32threads) _w32threads=yes ;;
1106 --disable-w32threads) _w32threads=no ;;
1107 --enable-ass) _ass=yes ;;
1108 --disable-ass) _ass=no ;;
1109 --enable-rpath) _rpath=yes ;;
1110 --disable-rpath) _rpath=no ;;
1112 --enable-fribidi) _fribidi=yes ;;
1113 --disable-fribidi) _fribidi=no ;;
1115 --enable-enca) _enca=yes ;;
1116 --disable-enca) _enca=no ;;
1118 --enable-inet6) _inet6=yes ;;
1119 --disable-inet6) _inet6=no ;;
1121 --enable-gethostbyname2) _gethostbyname2=yes ;;
1122 --disable-gethostbyname2) _gethostbyname2=no ;;
1124 --enable-dga1) _dga1=yes ;;
1125 --disable-dga1) _dga1=no ;;
1126 --enable-dga2) _dga2=yes ;;
1127 --disable-dga2) _dga2=no ;;
1129 --enable-menu) _menu=yes ;;
1130 --disable-menu) _menu=no ;;
1132 --enable-qtx) _qtx=yes ;;
1133 --disable-qtx) _qtx=no ;;
1135 --enable-coreaudio) _coreaudio=yes ;;
1136 --disable-coreaudio) _coreaudio=no ;;
1137 --enable-corevideo) _corevideo=yes ;;
1138 --disable-corevideo) _corevideo=no ;;
1139 --enable-quartz) _quartz=yes ;;
1140 --disable-quartz) _quartz=no ;;
1141 --enable-macosx-finder) _macosx_finder=yes ;;
1142 --disable-macosx-finder) _macosx_finder=no ;;
1143 --enable-macosx-bundle) _macosx_bundle=yes ;;
1144 --disable-macosx-bundle) _macosx_bundle=no ;;
1146 --enable-sortsub) _sortsub=yes ;;
1147 --disable-sortsub) _sortsub=no ;;
1149 --enable-crash-debug) _crash_debug=yes ;;
1150 --disable-crash-debug) _crash_debug=no ;;
1151 --enable-sighandler) _sighandler=yes ;;
1152 --disable-sighandler) _sighandler=no ;;
1153 --enable-win32dll) _win32dll=yes ;;
1154 --disable-win32dll) _win32dll=no ;;
1156 --enable-sse) _sse=yes ;;
1157 --disable-sse) _sse=no ;;
1158 --enable-sse2) _sse2=yes ;;
1159 --disable-sse2) _sse2=no ;;
1160 --enable-ssse3) _ssse3=yes ;;
1161 --disable-ssse3) _ssse3=no ;;
1162 --enable-mmxext) _mmxext=yes ;;
1163 --disable-mmxext) _mmxext=no ;;
1164 --enable-3dnow) _3dnow=yes ;;
1165 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1166 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1167 --disable-3dnowext) _3dnowext=no ;;
1168 --enable-cmov) _cmov=yes ;;
1169 --disable-cmov) _cmov=no ;;
1170 --enable-fast-cmov) _fast_cmov=yes ;;
1171 --disable-fast-cmov) _fast_cmov=no ;;
1172 --enable-fast-clz) _fast_clz=yes ;;
1173 --disable-fast-clz) _fast_clz=no ;;
1174 --enable-altivec) _altivec=yes ;;
1175 --disable-altivec) _altivec=no ;;
1176 --enable-armv5te) _armv5te=yes ;;
1177 --disable-armv5te) _armv5te=no ;;
1178 --enable-armv6) _armv6=yes ;;
1179 --disable-armv6) _armv6=no ;;
1180 --enable-armv6t2) _armv6t2=yes ;;
1181 --disable-armv6t2) _armv6t2=no ;;
1182 --enable-armvfp) _armvfp=yes ;;
1183 --disable-armvfp) _armvfp=no ;;
1184 --enable-neon) neon=yes ;;
1185 --disable-neon) neon=no ;;
1186 --enable-iwmmxt) _iwmmxt=yes ;;
1187 --disable-iwmmxt) _iwmmxt=no ;;
1188 --enable-mmx) _mmx=yes ;;
1189 --disable-mmx) # 3Dnow! and MMX2 require MMX
1190 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1193 echo "Unknown parameter: $ac_option" >&2
1194 exit 1
1197 esac
1198 done
1200 # Atmos: moved this here, to be correct, if --prefix is specified
1201 test -z "$_bindir" && _bindir="$_prefix/bin"
1202 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1203 test -z "$_mandir" && _mandir="$_prefix/share/man"
1204 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1205 test -z "$_libdir" && _libdir="$_prefix/lib"
1206 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1208 # Determine our OS name and CPU architecture
1209 if test -z "$_target" ; then
1210 # OS name
1211 system_name=$(uname -s 2>&1)
1212 case "$system_name" in
1213 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1215 Haiku)
1216 system_name=BeOS
1218 IRIX*)
1219 system_name=IRIX
1221 GNU/kFreeBSD)
1222 system_name=FreeBSD
1224 HP-UX*)
1225 system_name=HP-UX
1227 [cC][yY][gG][wW][iI][nN]*)
1228 system_name=CYGWIN
1230 MINGW32*)
1231 system_name=MINGW32
1233 OS/2*)
1234 system_name=OS/2
1237 system_name="$system_name-UNKNOWN"
1239 esac
1242 # host's CPU/instruction set
1243 host_arch=$(uname -p 2>&1)
1244 case "$host_arch" in
1245 i386|sparc|ppc|alpha|arm|mips|vax)
1247 powerpc) # Darwin returns 'powerpc'
1248 host_arch=ppc
1250 *) # uname -p on Linux returns 'unknown' for the processor type,
1251 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1253 # Maybe uname -m (machine hardware name) returns something we
1254 # recognize.
1256 # x86/x86pc is used by QNX
1257 case "$(uname -m 2>&1)" in
1258 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 ;;
1259 ia64) host_arch=ia64 ;;
1260 macppc|ppc) host_arch=ppc ;;
1261 ppc64) host_arch=ppc64 ;;
1262 alpha) host_arch=alpha ;;
1263 sparc) host_arch=sparc ;;
1264 sparc64) host_arch=sparc64 ;;
1265 parisc*|hppa*|9000*) host_arch=hppa ;;
1266 arm*|zaurus|cats) host_arch=arm ;;
1267 sh3|sh4|sh4a) host_arch=sh ;;
1268 s390) host_arch=s390 ;;
1269 s390x) host_arch=s390x ;;
1270 *mips*) host_arch=mips ;;
1271 vax) host_arch=vax ;;
1272 xtensa*) host_arch=xtensa ;;
1273 *) host_arch=UNKNOWN ;;
1274 esac
1276 esac
1277 else # if test -z "$_target"
1278 system_name=$(echo $_target | cut -d '-' -f 2)
1279 case "$(echo $system_name | tr A-Z a-z)" in
1280 linux) system_name=Linux ;;
1281 freebsd) system_name=FreeBSD ;;
1282 gnu/kfreebsd) system_name=FreeBSD ;;
1283 netbsd) system_name=NetBSD ;;
1284 bsd/os) system_name=BSD/OS ;;
1285 openbsd) system_name=OpenBSD ;;
1286 dragonfly) system_name=DragonFly ;;
1287 sunos) system_name=SunOS ;;
1288 qnx) system_name=QNX ;;
1289 morphos) system_name=MorphOS ;;
1290 amigaos) system_name=AmigaOS ;;
1291 mingw32*) system_name=MINGW32 ;;
1292 esac
1293 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1294 host_arch=$(echo $_target | cut -d '-' -f 1)
1295 if test $(echo $host_arch) != "x86_64" ; then
1296 host_arch=$(echo $host_arch | tr '_' '-')
1300 extra_cflags="-I. $extra_cflags"
1301 _timer=timer-linux.c
1302 _getch=getch2.c
1303 if freebsd ; then
1304 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1305 extra_cflags="$extra_cflags -I/usr/local/include"
1308 if netbsd || dragonfly ; then
1309 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1310 extra_cflags="$extra_cflags -I/usr/pkg/include"
1313 if darwin; then
1314 extra_cflags="-mdynamic-no-pic $extra_cflags"
1315 if test "$(basename $_cc)" != "clang" ; then
1316 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1318 _timer=timer-darwin.c
1321 if aix ; then
1322 extra_ldflags="$extra_ldflags -lC"
1325 if irix ; then
1326 _ranlib='ar -r'
1327 elif linux ; then
1328 _ranlib='true'
1331 if win32 ; then
1332 _exesuf=".exe"
1333 extra_cflags="$extra_cflags -fno-common"
1334 # -lwinmm is always needed for osdep/timer-win2.c
1335 extra_ldflags="$extra_ldflags -lwinmm"
1336 _pe_executable=yes
1337 _timer=timer-win2.c
1338 _priority=yes
1339 def_dos_paths="#define HAVE_DOS_PATHS 1"
1340 def_priority="#define CONFIG_PRIORITY 1"
1343 if mingw32 ; then
1344 _getch=getch2-win.c
1345 need_shmem=no
1348 if amigaos ; then
1349 _select=no
1350 _sighandler=no
1351 _stream_cache=no
1352 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1353 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1356 if qnx ; then
1357 extra_ldflags="$extra_ldflags -lph"
1360 if os2 ; then
1361 _exesuf=".exe"
1362 _getch=getch2-os2.c
1363 need_shmem=no
1364 _priority=yes
1365 def_dos_paths="#define HAVE_DOS_PATHS 1"
1366 def_priority="#define CONFIG_PRIORITY 1"
1369 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1370 test "$tmpdir" && break
1371 done
1373 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1374 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1376 TMPLOG="config.log"
1377 TMPC="$mplayer_tmpdir/tmp.c"
1378 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1379 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1380 TMPH="$mplayer_tmpdir/tmp.h"
1381 TMPS="$mplayer_tmpdir/tmp.S"
1383 rm -f "$TMPLOG"
1384 echo configuration: $configuration > "$TMPLOG"
1385 echo >> "$TMPLOG"
1388 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1389 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1393 # Checking CC version...
1394 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1395 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1396 echocheck "$_cc version"
1397 cc_vendor=intel
1398 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1399 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1400 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1401 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1402 # TODO verify older icc/ecc compatibility
1403 case $cc_version in
1405 cc_version="v. ?.??, bad"
1406 cc_fail=yes
1408 10.1|11.0|11.1)
1409 cc_version="$cc_version, ok"
1412 cc_version="$cc_version, bad"
1413 cc_fail=yes
1415 esac
1416 echores "$cc_version"
1417 else
1418 for _cc in "$_cc" gcc cc ; do
1419 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1420 if test "$cc_name_tmp" = "gcc"; then
1421 cc_name=$cc_name_tmp
1422 echocheck "$_cc version"
1423 cc_vendor=gnu
1424 cc_version=$($_cc -dumpversion 2>&1)
1425 case $cc_version in
1426 2.96*)
1427 cc_fail=yes
1430 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1431 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1432 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1434 esac
1435 echores "$cc_version"
1436 break
1438 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1439 if test "$cc_name_tmp" = "clang"; then
1440 echocheck "$_cc version"
1441 cc_vendor=clang
1442 cc_version=$($_cc -dumpversion 2>&1)
1443 res_comment="experimental support only"
1444 echores "clang $cc_version"
1445 break
1447 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1448 if test "$cc_name_tmp" = "Sun C"; then
1449 echocheck "$_cc version"
1450 cc_vendor=sun
1451 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1452 res_comment="experimental support only"
1453 echores "Sun C $cc_version"
1454 break
1456 done
1457 fi # icc
1458 test "$cc_fail" = yes && die "unsupported compiler version"
1460 if test -z "$_target" && x86 ; then
1461 cat > $TMPC << EOF
1462 int main(void) {
1463 int test[(int)sizeof(char *)-7];
1464 return 0;
1467 cc_check && host_arch=x86_64 || host_arch=i386
1470 echo "Detected operating system: $system_name"
1471 echo "Detected host architecture: $host_arch"
1473 echocheck "host cc"
1474 test "$_host_cc" || _host_cc=$_cc
1475 echores $_host_cc
1477 echocheck "cross compilation"
1478 if test $_cross_compile = auto ; then
1479 _cross_compile=yes
1480 cflag_check "" && "$TMPEXE" && _cross_compile=no
1482 echores $_cross_compile
1484 if test $_cross_compile = yes; then
1485 tmp_run() {
1486 return 0
1490 # ---
1492 # now that we know what compiler should be used for compilation, try to find
1493 # out which assembler is used by the $_cc compiler
1494 if test "$_as" = auto ; then
1495 _as=$($_cc -print-prog-name=as)
1496 test -z "$_as" && _as=as
1499 if test "$_nm" = auto ; then
1500 _nm=$($_cc -print-prog-name=nm)
1501 test -z "$_nm" && _nm=nm
1504 # XXX: this should be ok..
1505 _cpuinfo="echo"
1507 if test "$_runtime_cpudetection" = no ; then
1509 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1510 # FIXME: Remove the cygwin check once AMD CPUs are supported
1511 if test -r /proc/cpuinfo && ! cygwin; then
1512 # Linux with /proc mounted, extract CPU information from it
1513 _cpuinfo="cat /proc/cpuinfo"
1514 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1515 # FreeBSD with Linux emulation /proc mounted,
1516 # extract CPU information from it
1517 # Don't use it on x86 though, it never reports 3Dnow
1518 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1519 elif darwin && ! x86 ; then
1520 # use hostinfo on Darwin
1521 _cpuinfo="hostinfo"
1522 elif aix; then
1523 # use 'lsattr' on AIX
1524 _cpuinfo="lsattr -E -l proc0 -a type"
1525 elif x86; then
1526 # all other OSes try to extract CPU information from a small helper
1527 # program cpuinfo instead
1528 $_cc -o cpuinfo$_exesuf cpuinfo.c
1529 _cpuinfo="./cpuinfo$_exesuf"
1532 if x86 ; then
1533 # gather more CPU information
1534 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1535 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1536 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1537 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1538 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1540 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1542 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1543 -e s/xmm/sse/ -e s/kni/sse/)
1545 for ext in $pparam ; do
1546 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1547 done
1549 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1550 test $_sse = kernel_check && _mmxext=kernel_check
1552 echocheck "CPU vendor"
1553 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1555 echocheck "CPU type"
1556 echores "$pname"
1559 fi # test "$_runtime_cpudetection" = no
1561 if x86 && test "$_runtime_cpudetection" = no ; then
1562 extcheck() {
1563 if test "$1" = kernel_check ; then
1564 echocheck "kernel support of $2"
1565 cat > $TMPC <<EOF
1566 #include <stdlib.h>
1567 #include <signal.h>
1568 static void catch(int sig) { exit(1); }
1569 int main(void) {
1570 signal(SIGILL, catch);
1571 __asm__ volatile ("$3":::"memory"); return 0;
1575 if cc_check && tmp_run ; then
1576 eval _$2=yes
1577 echores "yes"
1578 _optimizing="$_optimizing $2"
1579 return 0
1580 else
1581 eval _$2=no
1582 echores "failed"
1583 echo "It seems that your kernel does not correctly support $2."
1584 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1585 return 1
1588 return 0
1591 extcheck $_mmx "mmx" "emms"
1592 extcheck $_mmxext "mmxext" "sfence"
1593 extcheck $_3dnow "3dnow" "femms"
1594 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1595 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1596 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1597 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1598 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1600 echocheck "mtrr support"
1601 if test "$_mtrr" = kernel_check ; then
1602 _mtrr="yes"
1603 _optimizing="$_optimizing mtrr"
1605 echores "$_mtrr"
1607 if test "$_gcc3_ext" != ""; then
1608 # if we had to disable sse/sse2 because the active kernel does not
1609 # support this instruction set extension, we also have to tell
1610 # gcc3 to not generate sse/sse2 instructions for normal C code
1611 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1617 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1618 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1619 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1620 subarch_all='X86_32 X86_64 PPC64'
1621 case "$host_arch" in
1622 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1623 arch='x86'
1624 subarch='x86_32'
1625 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1626 iproc=486
1627 proc=i486
1630 if test "$_runtime_cpudetection" = no ; then
1631 case "$pvendor" in
1632 AuthenticAMD)
1633 case "$pfamily" in
1634 3) proc=i386 iproc=386 ;;
1635 4) proc=i486 iproc=486 ;;
1636 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1637 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1638 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1639 proc=k6-3
1640 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1641 proc=geode
1642 elif test "$pmodel" -ge 8; then
1643 proc=k6-2
1644 elif test "$pmodel" -ge 6; then
1645 proc=k6
1646 else
1647 proc=i586
1650 6) iproc=686
1651 # It's a bit difficult to determine the correct type of Family 6
1652 # AMD CPUs just from their signature. Instead, we check directly
1653 # whether it supports SSE.
1654 if test "$_sse" = yes; then
1655 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1656 proc=athlon-xp
1657 else
1658 # Again, gcc treats athlon and athlon-tbird similarly.
1659 proc=athlon
1662 15) iproc=686
1663 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1664 # caught and remedied in the optimization tests below.
1665 proc=k8
1668 *) proc=amdfam10 iproc=686
1669 test $_fast_clz = "auto" && _fast_clz=yes
1671 esac
1673 GenuineIntel)
1674 case "$pfamily" in
1675 3) proc=i386 iproc=386 ;;
1676 4) proc=i486 iproc=486 ;;
1677 5) iproc=586
1678 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1679 proc=pentium-mmx # 4 is desktop, 8 is mobile
1680 else
1681 proc=i586
1684 6) iproc=686
1685 if test "$pmodel" -ge 15; then
1686 proc=core2
1687 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1688 proc=pentium-m
1689 elif test "$pmodel" -ge 7; then
1690 proc=pentium3
1691 elif test "$pmodel" -ge 3; then
1692 proc=pentium2
1693 else
1694 proc=i686
1696 test $_fast_clz = "auto" && _fast_clz=yes
1698 15) iproc=686
1699 # A nocona in 32-bit mode has no more capabilities than a prescott.
1700 if test "$pmodel" -ge 3; then
1701 proc=prescott
1702 else
1703 proc=pentium4
1704 test $_fast_clz = "auto" && _fast_clz=yes
1706 test $_fast_cmov = "auto" && _fast_cmov=no
1708 *) proc=prescott iproc=686 ;;
1709 esac
1711 CentaurHauls)
1712 case "$pfamily" in
1713 5) iproc=586
1714 if test "$pmodel" -ge 8; then
1715 proc=winchip2
1716 elif test "$pmodel" -ge 4; then
1717 proc=winchip-c6
1718 else
1719 proc=i586
1722 6) iproc=686
1723 if test "$pmodel" -ge 9; then
1724 proc=c3-2
1725 else
1726 proc=c3
1727 iproc=586
1730 *) proc=i686 iproc=i686 ;;
1731 esac
1733 unknown)
1734 case "$pfamily" in
1735 3) proc=i386 iproc=386 ;;
1736 4) proc=i486 iproc=486 ;;
1737 *) proc=i586 iproc=586 ;;
1738 esac
1741 proc=i586 iproc=586 ;;
1742 esac
1743 test $_fast_clz = "auto" && _fast_clz=no
1744 fi # test "$_runtime_cpudetection" = no
1747 # check that gcc supports our CPU, if not, fall back to earlier ones
1748 # LGB: check -mcpu and -march swithing step by step with enabling
1749 # to fall back till 386.
1751 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1753 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1754 cpuopt=-mtune
1755 else
1756 cpuopt=-mcpu
1759 echocheck "GCC & CPU optimization abilities"
1760 if test "$_runtime_cpudetection" = no ; then
1761 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1762 cflag_check -march=native && proc=native
1764 if test "$proc" = "amdfam10"; then
1765 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1767 if test "$proc" = "k8"; then
1768 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1770 if test "$proc" = "athlon-xp"; then
1771 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1773 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1774 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1776 if test "$proc" = "k6" || test "$proc" = "c3"; then
1777 if ! cflag_check -march=$proc $cpuopt=$proc; then
1778 if cflag_check -march=i586 $cpuopt=i686; then
1779 proc=i586-i686
1780 else
1781 proc=i586
1785 if test "$proc" = "prescott" ; then
1786 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1788 if test "$proc" = "core2" ; then
1789 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1791 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
1792 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1794 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1795 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1797 if test "$proc" = "i586"; then
1798 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1800 if test "$proc" = "i486" ; then
1801 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1803 if test "$proc" = "i386" ; then
1804 cflag_check -march=$proc $cpuopt=$proc || proc=error
1806 if test "$proc" = "error" ; then
1807 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1808 _mcpu=""
1809 _march=""
1810 _optimizing=""
1811 elif test "$proc" = "i586-i686"; then
1812 _march="-march=i586"
1813 _mcpu="$cpuopt=i686"
1814 _optimizing="$proc"
1815 else
1816 _march="-march=$proc"
1817 _mcpu="$cpuopt=$proc"
1818 _optimizing="$proc"
1820 else # if test "$_runtime_cpudetection" = no
1821 _mcpu="$cpuopt=generic"
1822 # at least i486 required, for bswap instruction
1823 _march="-march=i486"
1824 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1825 cflag_check $_mcpu || _mcpu=""
1826 cflag_check $_march $_mcpu || _march=""
1829 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1830 ## autodetected mcpu/march parameters
1831 if test "$_target" ; then
1832 # TODO: it may be a good idea to check GCC and fall back in all cases
1833 if test "$host_arch" = "i586-i686"; then
1834 _march="-march=i586"
1835 _mcpu="$cpuopt=i686"
1836 else
1837 _march="-march=$host_arch"
1838 _mcpu="$cpuopt=$host_arch"
1841 proc="$host_arch"
1843 case "$proc" in
1844 i386) iproc=386 ;;
1845 i486) iproc=486 ;;
1846 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1847 i686|athlon*|pentium*) iproc=686 ;;
1848 *) iproc=586 ;;
1849 esac
1852 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1853 _fast_cmov="yes"
1854 else
1855 _fast_cmov="no"
1857 test $_fast_clz = "auto" && _fast_clz=yes
1859 echores "$proc"
1862 ia64)
1863 arch='ia64'
1864 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1865 iproc='ia64'
1868 x86_64|amd64)
1869 arch='x86'
1870 subarch='x86_64'
1871 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1872 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1873 iproc='x86_64'
1875 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1876 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1877 cpuopt=-mtune
1878 else
1879 cpuopt=-mcpu
1881 if test "$_runtime_cpudetection" = no ; then
1882 case "$pvendor" in
1883 AuthenticAMD)
1884 case "$pfamily" in
1885 15) proc=k8
1886 test $_fast_clz = "auto" && _fast_clz=no
1888 *) proc=amdfam10;;
1889 esac
1891 GenuineIntel)
1892 case "$pfamily" in
1893 6) proc=core2;;
1895 # 64-bit prescotts exist, but as far as GCC is concerned they
1896 # have the same capabilities as a nocona.
1897 proc=nocona
1898 test $_fast_cmov = "auto" && _fast_cmov=no
1899 test $_fast_clz = "auto" && _fast_clz=no
1901 esac
1904 proc=error;;
1905 esac
1906 fi # test "$_runtime_cpudetection" = no
1908 echocheck "GCC & CPU optimization abilities"
1909 # This is a stripped-down version of the i386 fallback.
1910 if test "$_runtime_cpudetection" = no ; then
1911 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1912 cflag_check -march=native && proc=native
1914 # --- AMD processors ---
1915 if test "$proc" = "amdfam10"; then
1916 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1918 if test "$proc" = "k8"; then
1919 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1921 # This will fail if gcc version < 3.3, which is ok because earlier
1922 # versions don't really support 64-bit on amd64.
1923 # Is this a valid assumption? -Corey
1924 if test "$proc" = "athlon-xp"; then
1925 cflag_check -march=$proc $cpuopt=$proc || proc=error
1927 # --- Intel processors ---
1928 if test "$proc" = "core2"; then
1929 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1931 if test "$proc" = "x86-64"; then
1932 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1934 if test "$proc" = "nocona"; then
1935 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1937 if test "$proc" = "pentium4"; then
1938 cflag_check -march=$proc $cpuopt=$proc || proc=error
1941 _march="-march=$proc"
1942 _mcpu="$cpuopt=$proc"
1943 if test "$proc" = "error" ; then
1944 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1945 _mcpu=""
1946 _march=""
1948 else # if test "$_runtime_cpudetection" = no
1949 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1950 _march="-march=x86-64"
1951 _mcpu="$cpuopt=generic"
1952 cflag_check $_mcpu || _mcpu="x86-64"
1953 cflag_check $_mcpu || _mcpu=""
1954 cflag_check $_march $_mcpu || _march=""
1957 _optimizing="$proc"
1958 test $_fast_cmov = "auto" && _fast_cmov=yes
1959 test $_fast_clz = "auto" && _fast_clz=yes
1961 echores "$proc"
1964 sparc|sparc64)
1965 arch='sparc'
1966 iproc='sparc'
1967 if test "$host_arch" = "sparc64" ; then
1968 _vis='yes'
1969 proc='ultrasparc'
1970 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1971 elif sunos ; then
1972 echocheck "CPU type"
1973 karch=$(uname -m)
1974 case "$(echo $karch)" in
1975 sun4) proc=v7 ;;
1976 sun4c) proc=v7 ;;
1977 sun4d) proc=v8 ;;
1978 sun4m) proc=v8 ;;
1979 sun4u) proc=ultrasparc _vis='yes' ;;
1980 sun4v) proc=v9 ;;
1981 *) proc=v8 ;;
1982 esac
1983 echores "$proc"
1984 else
1985 proc=v8
1987 _mcpu="-mcpu=$proc"
1988 _optimizing="$proc"
1991 arm*)
1992 arch='arm'
1993 iproc='arm'
1996 avr32)
1997 arch='avr32'
1998 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1999 iproc='avr32'
2000 test $_fast_clz = "auto" && _fast_clz=yes
2003 sh|sh4)
2004 arch='sh4'
2005 iproc='sh4'
2008 ppc|ppc64|powerpc|powerpc64)
2009 arch='ppc'
2010 def_dcbzl='#define HAVE_DCBZL 0'
2011 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2012 iproc='ppc'
2014 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2015 subarch='ppc64'
2016 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2018 echocheck "CPU type"
2019 case $system_name in
2020 Linux)
2021 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2022 if test -n "$($_cpuinfo | grep altivec)"; then
2023 test $_altivec = auto && _altivec=yes
2026 Darwin)
2027 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2028 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2029 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2030 test $_altivec = auto && _altivec=yes
2033 NetBSD)
2034 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2035 case $cc_version in
2036 2*|3.0*|3.1*|3.2*|3.3*)
2039 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2040 test $_altivec = auto && _altivec=yes
2043 esac
2045 AIX)
2046 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2048 esac
2049 if test "$_altivec" = yes; then
2050 echores "$proc altivec"
2051 else
2052 _altivec=no
2053 echores "$proc"
2056 echocheck "GCC & CPU optimization abilities"
2058 if test -n "$proc"; then
2059 case "$proc" in
2060 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2061 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2062 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2063 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2064 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2065 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2066 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2067 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2068 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2069 *) ;;
2070 esac
2071 # gcc 3.1(.1) and up supports 7400 and 7450
2072 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2073 case "$proc" in
2074 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2075 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2076 *) ;;
2077 esac
2079 # gcc 3.2 and up supports 970
2080 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2081 case "$proc" in
2082 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2083 def_dcbzl='#define HAVE_DCBZL 1' ;;
2084 *) ;;
2085 esac
2087 # gcc 3.3 and up supports POWER4
2088 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2089 case "$proc" in
2090 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2091 *) ;;
2092 esac
2094 # gcc 3.4 and up supports 440*
2095 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2096 case "$proc" in
2097 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2098 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2099 *) ;;
2100 esac
2102 # gcc 4.0 and up supports POWER5
2103 if test "$_cc_major" -ge "4"; then
2104 case "$proc" in
2105 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2106 *) ;;
2107 esac
2111 if test -n "$_mcpu"; then
2112 _optimizing=$(echo $_mcpu | cut -c 8-)
2113 echores "$_optimizing"
2114 else
2115 echores "none"
2118 test $_fast_clz = "auto" && _fast_clz=yes
2122 alpha*)
2123 arch='alpha'
2124 iproc='alpha'
2125 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2127 echocheck "CPU type"
2128 cat > $TMPC << EOF
2129 int main(void) {
2130 unsigned long ver, mask;
2131 __asm__ ("implver %0" : "=r" (ver));
2132 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2133 printf("%ld-%x\n", ver, ~mask);
2134 return 0;
2137 $_cc -o "$TMPEXE" "$TMPC"
2138 case $("$TMPEXE") in
2140 0-0) proc="ev4"; _mvi="0";;
2141 1-0) proc="ev5"; _mvi="0";;
2142 1-1) proc="ev56"; _mvi="0";;
2143 1-101) proc="pca56"; _mvi="1";;
2144 2-303) proc="ev6"; _mvi="1";;
2145 2-307) proc="ev67"; _mvi="1";;
2146 2-1307) proc="ev68"; _mvi="1";;
2147 esac
2148 echores "$proc"
2150 echocheck "GCC & CPU optimization abilities"
2151 if test "$proc" = "ev68" ; then
2152 cc_check -mcpu=$proc || proc=ev67
2154 if test "$proc" = "ev67" ; then
2155 cc_check -mcpu=$proc || proc=ev6
2157 _mcpu="-mcpu=$proc"
2158 echores "$proc"
2160 test $_fast_clz = "auto" && _fast_clz=yes
2162 _optimizing="$proc"
2165 mips*)
2166 arch='mips'
2167 iproc='mips'
2169 if irix ; then
2170 echocheck "CPU type"
2171 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2172 case "$(echo $proc)" in
2173 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2174 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2175 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2176 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2177 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2178 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2179 esac
2180 # gcc < 3.x does not support -mtune.
2181 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2182 _mcpu=''
2184 echores "$proc"
2187 test $_fast_clz = "auto" && _fast_clz=yes
2191 hppa)
2192 arch='pa_risc'
2193 iproc='PA-RISC'
2196 s390)
2197 arch='s390'
2198 iproc='390'
2201 s390x)
2202 arch='s390x'
2203 iproc='390x'
2206 vax)
2207 arch='vax'
2208 iproc='vax'
2211 xtensa)
2212 arch='xtensa'
2213 iproc='xtensa'
2216 generic)
2217 arch='generic'
2221 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2222 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2223 die "unsupported architecture $host_arch"
2225 esac # case "$host_arch" in
2227 if test "$_runtime_cpudetection" = yes ; then
2228 if x86 ; then
2229 test "$_cmov" != no && _cmov=yes
2230 x86_32 && _cmov=no
2231 test "$_mmx" != no && _mmx=yes
2232 test "$_3dnow" != no && _3dnow=yes
2233 test "$_3dnowext" != no && _3dnowext=yes
2234 test "$_mmxext" != no && _mmxext=yes
2235 test "$_sse" != no && _sse=yes
2236 test "$_sse2" != no && _sse2=yes
2237 test "$_ssse3" != no && _ssse3=yes
2238 test "$_mtrr" != no && _mtrr=yes
2240 if ppc; then
2241 _altivec=yes
2246 # endian testing
2247 echocheck "byte order"
2248 if test "$_big_endian" = auto ; then
2249 cat > $TMPC <<EOF
2250 short ascii_name[] = {
2251 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2252 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2253 int main(void) { return (long)ascii_name; }
2255 if cc_check ; then
2256 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2257 _big_endian=yes
2258 else
2259 _big_endian=no
2261 else
2262 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2265 if test "$_big_endian" = yes ; then
2266 _byte_order='big-endian'
2267 def_words_endian='#define WORDS_BIGENDIAN 1'
2268 def_bigendian='#define HAVE_BIGENDIAN 1'
2269 else
2270 _byte_order='little-endian'
2271 def_words_endian='#undef WORDS_BIGENDIAN'
2272 def_bigendian='#define HAVE_BIGENDIAN 0'
2274 echores "$_byte_order"
2277 echocheck "extern symbol prefix"
2278 cat > $TMPC << EOF
2279 int ff_extern;
2281 cc_check -c || die "Symbol mangling check failed."
2282 sym=$($_nm -P -g $TMPEXE)
2283 extern_prefix=${sym%%ff_extern*}
2284 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2285 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2286 echores $extern_prefix
2289 echocheck "assembler support of -pipe option"
2290 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2291 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2294 echocheck "compiler support of named assembler arguments"
2295 _named_asm_args=yes
2296 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2297 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2298 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2299 _named_asm_args=no
2300 def_named_asm_args="#undef NAMED_ASM_ARGS"
2302 echores $_named_asm_args
2305 if darwin && test "$cc_vendor" = "gnu" ; then
2306 echocheck "GCC support of -mstackrealign"
2307 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2308 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2309 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2310 # wrong code with this flag, but this can be worked around by adding
2311 # -fno-unit-at-a-time as described in the blog post at
2312 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2313 cat > $TMPC << EOF
2314 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2315 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2317 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2318 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2319 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2320 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2321 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2324 # Checking for CFLAGS
2325 _install_strip="-s"
2326 if test "$_profile" != "" || test "$_debug" != "" ; then
2327 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2328 WARNFLAGS="-W -Wall"
2329 _install_strip=
2330 elif test -z "$CFLAGS" ; then
2331 if test "$cc_vendor" = "intel" ; then
2332 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2333 WARNFLAGS="-wd167 -wd556 -wd144"
2334 elif test "$cc_vendor" = "sun" ; then
2335 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2336 elif test "$cc_vendor" = "clang"; then
2337 CFLAGS="-O2 $_march $_pipe"
2338 elif test "$cc_vendor" != "gnu" ; then
2339 CFLAGS="-O2 $_march $_mcpu $_pipe"
2340 else
2341 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2342 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2343 extra_ldflags="$extra_ldflags -ffast-math"
2345 else
2346 warn_cflags=yes
2349 if test "$cc_vendor" = "gnu" ; then
2350 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2351 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2352 # that's the only variable specific to C now, and this option is not valid
2353 # for C++.
2354 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2355 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2356 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2357 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2358 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2359 else
2360 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2363 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2364 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2367 if test -n "$LDFLAGS" ; then
2368 extra_ldflags="$extra_ldflags $LDFLAGS"
2369 warn_cflags=yes
2370 elif test "$cc_vendor" = "intel" ; then
2371 extra_ldflags="$extra_ldflags -i-static"
2373 if test -n "$CPPFLAGS" ; then
2374 extra_cflags="$extra_cflags $CPPFLAGS"
2375 warn_cflags=yes
2380 if x86_32 ; then
2381 # Checking assembler (_as) compatibility...
2382 # Added workaround for older as that reads from stdin by default - atmos
2383 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2384 echocheck "assembler ($_as $as_version)"
2386 _pref_as_version='2.9.1'
2387 echo 'nop' > $TMPS
2388 if test "$_mmx" = yes ; then
2389 echo 'emms' >> $TMPS
2391 if test "$_3dnow" = yes ; then
2392 _pref_as_version='2.10.1'
2393 echo 'femms' >> $TMPS
2395 if test "$_3dnowext" = yes ; then
2396 _pref_as_version='2.10.1'
2397 echo 'pswapd %mm0, %mm0' >> $TMPS
2399 if test "$_mmxext" = yes ; then
2400 _pref_as_version='2.10.1'
2401 echo 'movntq %mm0, (%eax)' >> $TMPS
2403 if test "$_sse" = yes ; then
2404 _pref_as_version='2.10.1'
2405 echo 'xorps %xmm0, %xmm0' >> $TMPS
2407 #if test "$_sse2" = yes ; then
2408 # _pref_as_version='2.11'
2409 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2411 if test "$_cmov" = yes ; then
2412 _pref_as_version='2.10.1'
2413 echo 'cmovb %eax, %ebx' >> $TMPS
2415 if test "$_ssse3" = yes ; then
2416 _pref_as_version='2.16.92'
2417 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2419 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2421 if test "$as_verc_fail" != yes ; then
2422 echores "ok"
2423 else
2424 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2425 echores "failed"
2426 die "obsolete binutils version"
2429 fi #if x86_32
2432 echocheck "PIC"
2433 pic=no
2434 cat > $TMPC << EOF
2435 int main(void) {
2436 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2437 #error PIC not enabled
2438 #endif
2439 return 0;
2442 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2443 echores $pic
2446 if x86 ; then
2448 echocheck ".align is a power of two"
2449 if test "$_asmalign_pot" = auto ; then
2450 _asmalign_pot=no
2451 inline_asm_check '".align 3"' && _asmalign_pot=yes
2453 if test "$_asmalign_pot" = "yes" ; then
2454 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2455 else
2456 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2458 echores $_asmalign_pot
2461 echocheck "10 assembler operands"
2462 ten_operands=no
2463 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2464 cat > $TMPC << EOF
2465 int main(void) {
2466 int x=0;
2467 __asm__ volatile(
2469 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2471 return 0;
2474 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2475 echores $ten_operands
2477 echocheck "ebx availability"
2478 ebx_available=no
2479 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2480 cat > $TMPC << EOF
2481 int main(void) {
2482 int x;
2483 __asm__ volatile(
2484 "xor %0, %0"
2485 :"=b"(x)
2486 // just adding ebx to clobber list seems unreliable with some
2487 // compilers, e.g. Haiku's gcc 2.95
2489 // and the above check does not work for OSX 64 bit...
2490 __asm__ volatile("":::"%ebx");
2491 return 0;
2494 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2495 echores $ebx_available
2498 echocheck "yasm"
2499 if test -z "$YASMFLAGS" ; then
2500 if darwin ; then
2501 x86_64 && objformat="macho64" || objformat="macho"
2502 elif win32 ; then
2503 objformat="win32"
2504 else
2505 objformat="elf"
2507 # currently tested for Linux x86, x86_64
2508 YASMFLAGS="-f $objformat"
2509 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2510 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2511 case "$objformat" in
2512 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2513 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2514 esac
2515 else
2516 warn_cflags=yes
2519 echo "pabsw xmm0, xmm0" > $TMPS
2520 yasm_check || _yasm=""
2521 if test $_yasm ; then
2522 def_yasm='#define HAVE_YASM 1'
2523 have_yasm="yes"
2524 echores "$_yasm"
2525 else
2526 def_yasm='#define HAVE_YASM 0'
2527 have_yasm="no"
2528 echores "no"
2531 echocheck "bswap"
2532 def_bswap='#define HAVE_BSWAP 0'
2533 echo 'bswap %eax' > $TMPS
2534 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2535 echores "$bswap"
2536 fi #if x86
2539 #FIXME: This should happen before the check for CFLAGS..
2540 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2541 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2543 # check if AltiVec is supported by the compiler, and how to enable it
2544 echocheck "GCC AltiVec flags"
2545 if $(cflag_check -maltivec -mabi=altivec) ; then
2546 _altivec_gcc_flags="-maltivec -mabi=altivec"
2547 # check if <altivec.h> should be included
2548 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2549 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2550 inc_altivec_h='#include <altivec.h>'
2551 else
2552 if $(cflag_check -faltivec) ; then
2553 _altivec_gcc_flags="-faltivec"
2554 else
2555 _altivec=no
2556 _altivec_gcc_flags="none, AltiVec disabled"
2560 echores "$_altivec_gcc_flags"
2562 # check if the compiler supports braces for vector declarations
2563 cat > $TMPC << EOF
2564 $inc_altivec_h
2565 int main(void) { (vector int) {1}; return 0; }
2567 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2569 # Disable runtime cpudetection if we cannot generate AltiVec code or
2570 # AltiVec is disabled by the user.
2571 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2572 && _runtime_cpudetection=no
2574 # Show that we are optimizing for AltiVec (if enabled and supported).
2575 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2576 && _optimizing="$_optimizing altivec"
2578 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2579 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2582 if ppc ; then
2583 def_xform_asm='#define HAVE_XFORM_ASM 0'
2584 xform_asm=no
2585 echocheck "XFORM ASM support"
2586 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2587 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2588 echores "$xform_asm"
2591 if arm ; then
2592 echocheck "ARM pld instruction"
2593 pld=no
2594 inline_asm_check '"pld [r0]"' && pld=yes
2595 echores "$pld"
2597 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2598 if test $_armv5te = "auto" ; then
2599 _armv5te=no
2600 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2602 echores "$_armv5te"
2604 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2606 echocheck "ARMv6 (SIMD instructions)"
2607 if test $_armv6 = "auto" ; then
2608 _armv6=no
2609 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2611 echores "$_armv6"
2613 echocheck "ARMv6t2 (SIMD instructions)"
2614 if test $_armv6t2 = "auto" ; then
2615 _armv6t2=no
2616 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2618 echores "$_armv6"
2620 echocheck "ARM VFP"
2621 if test $_armvfp = "auto" ; then
2622 _armvfp=no
2623 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2625 echores "$_armvfp"
2627 echocheck "ARM NEON"
2628 if test $neon = "auto" ; then
2629 neon=no
2630 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2632 echores "$neon"
2634 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2635 if test $_iwmmxt = "auto" ; then
2636 _iwmmxt=no
2637 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2639 echores "$_iwmmxt"
2642 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'
2643 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2644 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2645 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2646 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2647 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2648 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2649 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2650 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2651 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2652 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2653 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2654 test "$pld" = yes && cpuexts="PLD $cpuexts"
2655 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2656 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2657 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2658 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2659 test "$neon" = yes && cpuexts="NEON $cpuexts"
2660 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2661 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2662 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2664 # Checking kernel version...
2665 if x86_32 && linux ; then
2666 _k_verc_problem=no
2667 kernel_version=$(uname -r 2>&1)
2668 echocheck "$system_name kernel version"
2669 case "$kernel_version" in
2670 '') kernel_version="?.??"; _k_verc_fail=yes;;
2671 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2672 _k_verc_problem=yes;;
2673 esac
2674 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2675 _k_verc_fail=yes
2677 if test "$_k_verc_fail" ; then
2678 echores "$kernel_version, fail"
2679 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2680 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2681 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2682 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2683 echo "2.2.x you must upgrade it to get SSE support!"
2684 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2685 else
2686 echores "$kernel_version, ok"
2690 ######################
2691 # MAIN TESTS GO HERE #
2692 ######################
2695 echocheck "-lposix"
2696 if cflag_check -lposix ; then
2697 extra_ldflags="$extra_ldflags -lposix"
2698 echores "yes"
2699 else
2700 echores "no"
2703 echocheck "-lm"
2704 if cflag_check -lm ; then
2705 _ld_lm="-lm"
2706 echores "yes"
2707 else
2708 _ld_lm=""
2709 echores "no"
2713 echocheck "langinfo"
2714 if test "$_langinfo" = auto ; then
2715 _langinfo=no
2716 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2718 if test "$_langinfo" = yes ; then
2719 def_langinfo='#define HAVE_LANGINFO 1'
2720 else
2721 def_langinfo='#undef HAVE_LANGINFO'
2723 echores "$_langinfo"
2726 echocheck "translation support"
2727 if test "$_translation" = yes; then
2728 def_translation="#define CONFIG_TRANSLATION 1"
2729 else
2730 def_translation="#undef CONFIG_TRANSLATION"
2732 echores "$_translation"
2734 echocheck "language"
2735 # Set preferred languages, "all" uses English as main language.
2736 test -z "$language" && language=$LINGUAS
2737 test -z "$language_doc" && language_doc=$language
2738 test -z "$language_man" && language_man=$language
2739 test -z "$language_msg" && language_msg=$language
2740 test -z "$language_msg" && language_msg="all"
2741 language_doc=$(echo $language_doc | tr , " ")
2742 language_man=$(echo $language_man | tr , " ")
2743 language_msg=$(echo $language_msg | tr , " ")
2745 test "$language_doc" = "all" && language_doc=$doc_lang_all
2746 test "$language_man" = "all" && language_man=$man_lang_all
2747 test "$language_msg" = "all" && language_msg=$msg_lang_all
2749 if test "$_translation" != yes ; then
2750 language_msg=""
2753 # Prune non-existing translations from language lists.
2754 # Set message translation to the first available language.
2755 # Fall back on English.
2756 for lang in $language_doc ; do
2757 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2758 done
2759 language_doc=$tmp_language_doc
2760 test -z "$language_doc" && language_doc=en
2762 for lang in $language_man ; do
2763 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2764 done
2765 language_man=$tmp_language_man
2766 test -z "$language_man" && language_man=en
2768 for lang in $language_msg ; do
2769 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2770 done
2771 language_msg=$tmp_language_msg
2773 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2776 echocheck "enable sighandler"
2777 if test "$_sighandler" = yes ; then
2778 def_sighandler='#define CONFIG_SIGHANDLER 1'
2779 else
2780 def_sighandler='#undef CONFIG_SIGHANDLER'
2782 echores "$_sighandler"
2784 echocheck "runtime cpudetection"
2785 if test "$_runtime_cpudetection" = yes ; then
2786 _optimizing="Runtime CPU-Detection enabled"
2787 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2788 else
2789 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2791 echores "$_runtime_cpudetection"
2794 echocheck "restrict keyword"
2795 for restrict_keyword in restrict __restrict __restrict__ ; do
2796 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2797 if cc_check; then
2798 def_restrict_keyword=$restrict_keyword
2799 break;
2801 done
2802 if [ -n "$def_restrict_keyword" ]; then
2803 echores "$def_restrict_keyword"
2804 else
2805 echores "none"
2807 # Avoid infinite recursion loop ("#define restrict restrict")
2808 if [ "$def_restrict_keyword" != "restrict" ]; then
2809 def_restrict_keyword="#define restrict $def_restrict_keyword"
2810 else
2811 def_restrict_keyword=""
2815 echocheck "__builtin_expect"
2816 # GCC branch prediction hint
2817 cat > $TMPC << EOF
2818 static int foo(int a) {
2819 a = __builtin_expect(a, 10);
2820 return a == 10 ? 0 : 1;
2822 int main(void) { return foo(10) && foo(0); }
2824 _builtin_expect=no
2825 cc_check && _builtin_expect=yes
2826 if test "$_builtin_expect" = yes ; then
2827 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2828 else
2829 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2831 echores "$_builtin_expect"
2834 echocheck "kstat"
2835 _kstat=no
2836 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2837 if test "$_kstat" = yes ; then
2838 def_kstat="#define HAVE_LIBKSTAT 1"
2839 extra_ldflags="$extra_ldflags -lkstat"
2840 else
2841 def_kstat="#undef HAVE_LIBKSTAT"
2843 echores "$_kstat"
2846 echocheck "posix4"
2847 # required for nanosleep on some systems
2848 _posix4=no
2849 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2850 if test "$_posix4" = yes ; then
2851 extra_ldflags="$extra_ldflags -lposix4"
2853 echores "$_posix4"
2855 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2856 echocheck $func
2857 eval _$func=no
2858 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2859 if eval test "x\$_$func" = "xyes"; then
2860 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2861 echores yes
2862 else
2863 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2864 echores no
2866 done
2869 echocheck "mkstemp"
2870 _mkstemp=no
2871 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2872 if test "$_mkstemp" = yes ; then
2873 def_mkstemp='#define HAVE_MKSTEMP 1'
2874 else
2875 def_mkstemp='#define HAVE_MKSTEMP 0'
2877 echores "$_mkstemp"
2880 echocheck "nanosleep"
2881 _nanosleep=no
2882 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2883 if test "$_nanosleep" = yes ; then
2884 def_nanosleep='#define HAVE_NANOSLEEP 1'
2885 else
2886 def_nanosleep='#undef HAVE_NANOSLEEP'
2888 echores "$_nanosleep"
2891 echocheck "socklib"
2892 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2893 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2894 cat > $TMPC << EOF
2895 #include <netdb.h>
2896 #include <sys/socket.h>
2897 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2899 _socklib=no
2900 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2901 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2902 done
2903 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2904 if test $_winsock2_h = auto ; then
2905 _winsock2_h=no
2906 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2908 test "$_ld_sock" && res_comment="using $_ld_sock"
2909 echores "$_socklib"
2912 if test $_winsock2_h = yes ; then
2913 _ld_sock="-lws2_32"
2914 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2915 else
2916 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2920 echocheck "arpa/inet.h"
2921 arpa_inet_h=no
2922 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2923 header_check arpa/inet.h && arpa_inet_h=yes &&
2924 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2925 echores "$arpa_inet_h"
2928 echocheck "inet_pton()"
2929 def_inet_pton='#define HAVE_INET_PTON 0'
2930 inet_pton=no
2931 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2932 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2933 done
2934 if test $inet_pton = yes ; then
2935 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2936 def_inet_pton='#define HAVE_INET_PTON 1'
2938 echores "$inet_pton"
2941 echocheck "inet_aton()"
2942 def_inet_aton='#define HAVE_INET_ATON 0'
2943 inet_aton=no
2944 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2945 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2946 done
2947 if test $inet_aton = yes ; then
2948 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2949 def_inet_aton='#define HAVE_INET_ATON 1'
2951 echores "$inet_aton"
2954 echocheck "socklen_t"
2955 _socklen_t=no
2956 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2957 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2958 done
2959 if test "$_socklen_t" = yes ; then
2960 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2961 else
2962 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2964 echores "$_socklen_t"
2967 echocheck "closesocket()"
2968 _closesocket=no
2969 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2970 if test "$_closesocket" = yes ; then
2971 def_closesocket='#define HAVE_CLOSESOCKET 1'
2972 else
2973 def_closesocket='#define HAVE_CLOSESOCKET 0'
2975 echores "$_closesocket"
2978 echocheck "networking"
2979 test $_winsock2_h = no && test $inet_pton = no &&
2980 test $inet_aton = no && networking=no
2981 if test "$networking" = yes ; then
2982 def_network='#define CONFIG_NETWORK 1'
2983 def_networking='#define CONFIG_NETWORKING 1'
2984 extra_ldflags="$extra_ldflags $_ld_sock"
2985 inputmodules="networking $inputmodules"
2986 else
2987 noinputmodules="networking $noinputmodules"
2988 def_network='#define CONFIG_NETWORK 0'
2989 def_networking='#undef CONFIG_NETWORKING'
2991 echores "$networking"
2994 echocheck "inet6"
2995 if test "$_inet6" = auto ; then
2996 cat > $TMPC << EOF
2997 #include <sys/types.h>
2998 #if !defined(_WIN32)
2999 #include <sys/socket.h>
3000 #include <netinet/in.h>
3001 #else
3002 #include <ws2tcpip.h>
3003 #endif
3004 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3006 _inet6=no
3007 if cc_check $_ld_sock ; then
3008 _inet6=yes
3011 if test "$_inet6" = yes ; then
3012 def_inet6='#define HAVE_AF_INET6 1'
3013 else
3014 def_inet6='#undef HAVE_AF_INET6'
3016 echores "$_inet6"
3019 echocheck "gethostbyname2"
3020 if test "$_gethostbyname2" = auto ; then
3021 cat > $TMPC << EOF
3022 #include <sys/types.h>
3023 #include <sys/socket.h>
3024 #include <netdb.h>
3025 int main(void) { gethostbyname2("", AF_INET); return 0; }
3027 _gethostbyname2=no
3028 if cc_check ; then
3029 _gethostbyname2=yes
3032 if test "$_gethostbyname2" = yes ; then
3033 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3034 else
3035 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3037 echores "$_gethostbyname2"
3040 echocheck "inttypes.h (required)"
3041 _inttypes=no
3042 header_check inttypes.h && _inttypes=yes
3043 echores "$_inttypes"
3045 if test "$_inttypes" = no ; then
3046 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3047 header_check sys/bitypes.h && _inttypes=yes
3048 if test "$_inttypes" = yes ; then
3049 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."
3050 else
3051 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3056 echocheck "malloc.h"
3057 _malloc=no
3058 header_check malloc.h && _malloc=yes
3059 if test "$_malloc" = yes ; then
3060 def_malloc_h='#define HAVE_MALLOC_H 1'
3061 else
3062 def_malloc_h='#define HAVE_MALLOC_H 0'
3064 echores "$_malloc"
3067 echocheck "memalign()"
3068 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3069 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3070 _memalign=no
3071 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3072 if test "$_memalign" = yes ; then
3073 def_memalign='#define HAVE_MEMALIGN 1'
3074 else
3075 def_memalign='#define HAVE_MEMALIGN 0'
3076 def_map_memalign='#define memalign(a, b) malloc(b)'
3077 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3079 echores "$_memalign"
3082 echocheck "posix_memalign()"
3083 posix_memalign=no
3084 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3085 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3086 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3087 echores "$posix_memalign"
3090 echocheck "alloca.h"
3091 _alloca=no
3092 statement_check alloca.h 'alloca(0)' && _alloca=yes
3093 if cc_check ; then
3094 def_alloca_h='#define HAVE_ALLOCA_H 1'
3095 else
3096 def_alloca_h='#undef HAVE_ALLOCA_H'
3098 echores "$_alloca"
3101 echocheck "fastmemcpy"
3102 if test "$_fastmemcpy" = yes ; then
3103 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3104 else
3105 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3107 echores "$_fastmemcpy"
3110 echocheck "mman.h"
3111 _mman=no
3112 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3113 if test "$_mman" = yes ; then
3114 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3115 else
3116 def_mman_h='#undef HAVE_SYS_MMAN_H'
3117 os2 && need_mmap=yes
3119 echores "$_mman"
3121 _mman_has_map_failed=no
3122 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3123 if test "$_mman_has_map_failed" = yes ; then
3124 def_mman_has_map_failed=''
3125 else
3126 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3129 echocheck "dynamic loader"
3130 _dl=no
3131 for _ld_tmp in "" "-ldl"; do
3132 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3133 done
3134 if test "$_dl" = yes ; then
3135 def_dl='#define HAVE_LIBDL 1'
3136 else
3137 def_dl='#undef HAVE_LIBDL'
3139 echores "$_dl"
3142 echocheck "dynamic a/v plugins support"
3143 if test "$_dl" = no ; then
3144 _dynamic_plugins=no
3146 if test "$_dynamic_plugins" = yes ; then
3147 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3148 else
3149 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3151 echores "$_dynamic_plugins"
3154 def_threads='#define HAVE_THREADS 0'
3156 echocheck "pthread"
3157 if linux ; then
3158 THREAD_CFLAGS=-D_REENTRANT
3159 elif freebsd || netbsd || openbsd || bsdos ; then
3160 THREAD_CFLAGS=-D_THREAD_SAFE
3162 if test "$_pthreads" = auto ; then
3163 cat > $TMPC << EOF
3164 #include <pthread.h>
3165 static void *func(void *arg) { return arg; }
3166 int main(void) {
3167 pthread_t tid;
3168 #ifdef PTW32_STATIC_LIB
3169 pthread_win32_process_attach_np();
3170 pthread_win32_thread_attach_np();
3171 #endif
3172 return pthread_create (&tid, 0, func, 0) != 0;
3175 _pthreads=no
3176 if ! hpux ; then
3177 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3178 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3179 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3180 done
3181 if test "$_pthreads" = no && mingw32 ; then
3182 _ld_tmp="-lpthreadGC2 -lws2_32"
3183 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3187 if test "$_pthreads" = yes ; then
3188 test $_ld_pthread && res_comment="using $_ld_pthread"
3189 def_pthreads='#define HAVE_PTHREADS 1'
3190 def_threads='#define HAVE_THREADS 1'
3191 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3192 else
3193 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3194 def_pthreads='#undef HAVE_PTHREADS'
3195 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3196 mingw32 || _win32dll=no
3198 echores "$_pthreads"
3200 if cygwin ; then
3201 if test "$_pthreads" = yes ; then
3202 def_pthread_cache="#define PTHREAD_CACHE 1"
3203 else
3204 _stream_cache=no
3205 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3209 echocheck "w32threads"
3210 if test "$_pthreads" = yes ; then
3211 res_comment="using pthread instead"
3212 _w32threads=no
3214 if test "$_w32threads" = auto ; then
3215 _w32threads=no
3216 mingw32 && _w32threads=yes
3218 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3219 echores "$_w32threads"
3221 echocheck "rpath"
3222 if test "$_rpath" = yes ; then
3223 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3224 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3225 done
3226 extra_ldflags=$tmp
3228 echores "$_rpath"
3230 echocheck "iconv"
3231 if test "$_iconv" = auto ; then
3232 cat > $TMPC << EOF
3233 #include <stdio.h>
3234 #include <unistd.h>
3235 #include <iconv.h>
3236 #define INBUFSIZE 1024
3237 #define OUTBUFSIZE 4096
3239 char inbuffer[INBUFSIZE];
3240 char outbuffer[OUTBUFSIZE];
3242 int main(void) {
3243 size_t numread;
3244 iconv_t icdsc;
3245 char *tocode="UTF-8";
3246 char *fromcode="cp1250";
3247 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3248 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3249 char *iptr=inbuffer;
3250 char *optr=outbuffer;
3251 size_t inleft=numread;
3252 size_t outleft=OUTBUFSIZE;
3253 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3254 != (size_t)(-1)) {
3255 write(1, outbuffer, OUTBUFSIZE - outleft);
3258 if (iconv_close(icdsc) == -1)
3261 return 0;
3264 _iconv=no
3265 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3266 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3267 _iconv=yes && break
3268 done
3269 if test "$_iconv" != yes ; then
3270 die "Unable to find iconv which should be part of standard compilation environment. Aborting. If you really mean to compile without iconv support use --disable-iconv."
3273 if test "$_iconv" = yes ; then
3274 def_iconv='#define CONFIG_ICONV 1'
3275 else
3276 def_iconv='#undef CONFIG_ICONV'
3278 echores "$_iconv"
3281 echocheck "soundcard.h"
3282 _soundcard_h=no
3283 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3284 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3285 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3286 header_check $_soundcard_header && _soundcard_h=yes &&
3287 res_comment="$_soundcard_header" && break
3288 done
3290 if test "$_soundcard_h" = yes ; then
3291 if test $_soundcard_header = "sys/soundcard.h"; then
3292 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3293 else
3294 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3297 echores "$_soundcard_h"
3300 echocheck "sys/dvdio.h"
3301 _dvdio=no
3302 # FreeBSD 8.1 has broken dvdio.h
3303 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3304 if test "$_dvdio" = yes ; then
3305 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3306 else
3307 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3309 echores "$_dvdio"
3312 echocheck "sys/cdio.h"
3313 _cdio=no
3314 # at least OpenSolaris has a broken cdio.h
3315 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3316 if test "$_cdio" = yes ; then
3317 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3318 else
3319 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3321 echores "$_cdio"
3324 echocheck "linux/cdrom.h"
3325 _cdrom=no
3326 header_check linux/cdrom.h && _cdrom=yes
3327 if test "$_cdrom" = yes ; then
3328 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3329 else
3330 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3332 echores "$_cdrom"
3335 echocheck "dvd.h"
3336 _dvd=no
3337 header_check dvd.h && _dvd=yes
3338 if test "$_dvd" = yes ; then
3339 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3340 else
3341 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3343 echores "$_dvd"
3346 if bsdos; then
3347 echocheck "BSDI dvd.h"
3348 _bsdi_dvd=no
3349 header_check dvd.h && _bsdi_dvd=yes
3350 if test "$_bsdi_dvd" = yes ; then
3351 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3352 else
3353 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3355 echores "$_bsdi_dvd"
3356 fi #if bsdos
3359 if hpux; then
3360 # also used by AIX, but AIX does not support VCD and/or libdvdread
3361 echocheck "HP-UX SCSI header"
3362 _hpux_scsi_h=no
3363 header_check sys/scsi.h && _hpux_scsi_h=yes
3364 if test "$_hpux_scsi_h" = yes ; then
3365 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3366 else
3367 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3369 echores "$_hpux_scsi_h"
3370 fi #if hpux
3373 if sunos; then
3374 echocheck "userspace SCSI headers (Solaris)"
3375 _sol_scsi_h=no
3376 header_check sys/scsi/scsi_types.h &&
3377 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3378 _sol_scsi_h=yes
3379 if test "$_sol_scsi_h" = yes ; then
3380 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3381 else
3382 def_sol_scsi_h='#undef SOLARIS_USCSI'
3384 echores "$_sol_scsi_h"
3385 fi #if sunos
3388 echocheck "termcap"
3389 if test "$_termcap" = auto ; then
3390 _termcap=no
3391 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3392 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3393 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3394 done
3396 if test "$_termcap" = yes ; then
3397 def_termcap='#define HAVE_TERMCAP 1'
3398 test $_ld_tmp && res_comment="using $_ld_tmp"
3399 else
3400 def_termcap='#undef HAVE_TERMCAP'
3402 echores "$_termcap"
3405 echocheck "termios"
3406 def_termios='#undef HAVE_TERMIOS'
3407 def_termios_h='#undef HAVE_TERMIOS_H'
3408 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3409 if test "$_termios" = auto ; then
3410 _termios=no
3411 for _termios_header in "termios.h" "sys/termios.h"; do
3412 header_check $_termios_header && _termios=yes &&
3413 res_comment="using $_termios_header" && break
3414 done
3417 if test "$_termios" = yes ; then
3418 def_termios='#define HAVE_TERMIOS 1'
3419 if test "$_termios_header" = "termios.h" ; then
3420 def_termios_h='#define HAVE_TERMIOS_H 1'
3421 else
3422 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3425 echores "$_termios"
3428 echocheck "shm"
3429 if test "$_shm" = auto ; then
3430 _shm=no
3431 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3433 if test "$_shm" = yes ; then
3434 def_shm='#define HAVE_SHM 1'
3435 else
3436 def_shm='#undef HAVE_SHM'
3438 echores "$_shm"
3441 echocheck "strsep()"
3442 _strsep=no
3443 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3444 if test "$_strsep" = yes ; then
3445 def_strsep='#define HAVE_STRSEP 1'
3446 need_strsep=no
3447 else
3448 def_strsep='#undef HAVE_STRSEP'
3449 need_strsep=yes
3451 echores "$_strsep"
3454 echocheck "vsscanf()"
3455 cat > $TMPC << EOF
3456 #define _ISOC99_SOURCE
3457 #include <stdarg.h>
3458 #include <stdio.h>
3459 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3461 _vsscanf=no
3462 cc_check && _vsscanf=yes
3463 if test "$_vsscanf" = yes ; then
3464 def_vsscanf='#define HAVE_VSSCANF 1'
3465 need_vsscanf=no
3466 else
3467 def_vsscanf='#undef HAVE_VSSCANF'
3468 need_vsscanf=yes
3470 echores "$_vsscanf"
3473 echocheck "swab()"
3474 _swab=no
3475 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3476 if test "$_swab" = yes ; then
3477 def_swab='#define HAVE_SWAB 1'
3478 need_swab=no
3479 else
3480 def_swab='#undef HAVE_SWAB'
3481 need_swab=yes
3483 echores "$_swab"
3485 echocheck "POSIX select()"
3486 cat > $TMPC << EOF
3487 #include <stdio.h>
3488 #include <stdlib.h>
3489 #include <sys/types.h>
3490 #include <string.h>
3491 #include <sys/time.h>
3492 #include <unistd.h>
3493 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3495 _posix_select=no
3496 def_posix_select='#undef HAVE_POSIX_SELECT'
3497 #select() of kLIBC (OS/2) supports socket only
3498 ! os2 && cc_check && _posix_select=yes &&
3499 def_posix_select='#define HAVE_POSIX_SELECT 1'
3500 echores "$_posix_select"
3503 echocheck "audio select()"
3504 if test "$_select" = no ; then
3505 def_select='#undef HAVE_AUDIO_SELECT'
3506 elif test "$_select" = yes ; then
3507 def_select='#define HAVE_AUDIO_SELECT 1'
3509 echores "$_select"
3512 echocheck "gettimeofday()"
3513 _gettimeofday=no
3514 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3515 if test "$_gettimeofday" = yes ; then
3516 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3517 need_gettimeofday=no
3518 else
3519 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3520 need_gettimeofday=yes
3522 echores "$_gettimeofday"
3525 echocheck "glob()"
3526 _glob=no
3527 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3528 if test "$_glob" = yes ; then
3529 def_glob='#define HAVE_GLOB 1'
3530 need_glob=no
3531 else
3532 def_glob='#undef HAVE_GLOB'
3533 need_glob=yes
3535 echores "$_glob"
3538 echocheck "setenv()"
3539 _setenv=no
3540 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3541 if test "$_setenv" = yes ; then
3542 def_setenv='#define HAVE_SETENV 1'
3543 need_setenv=no
3544 else
3545 def_setenv='#undef HAVE_SETENV'
3546 need_setenv=yes
3548 echores "$_setenv"
3551 echocheck "setmode()"
3552 _setmode=no
3553 def_setmode='#define HAVE_SETMODE 0'
3554 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3555 echores "$_setmode"
3558 if sunos; then
3559 echocheck "sysi86()"
3560 _sysi86=no
3561 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3562 if test "$_sysi86" = yes ; then
3563 def_sysi86='#define HAVE_SYSI86 1'
3564 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3565 else
3566 def_sysi86='#undef HAVE_SYSI86'
3568 echores "$_sysi86"
3569 fi #if sunos
3572 echocheck "sys/sysinfo.h"
3573 _sys_sysinfo=no
3574 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3575 if test "$_sys_sysinfo" = yes ; then
3576 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3577 else
3578 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3580 echores "$_sys_sysinfo"
3583 if darwin; then
3585 echocheck "Mac OS X Finder Support"
3586 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3587 if test "$_macosx_finder" = yes ; then
3588 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3589 extra_ldflags="$extra_ldflags -framework Carbon"
3591 echores "$_macosx_finder"
3593 echocheck "Mac OS X Bundle file locations"
3594 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3595 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3596 if test "$_macosx_bundle" = yes ; then
3597 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3598 extra_ldflags="$extra_ldflags -framework Carbon"
3600 echores "$_macosx_bundle"
3602 echocheck "Apple Remote"
3603 if test "$_apple_remote" = auto ; then
3604 _apple_remote=no
3605 cat > $TMPC <<EOF
3606 #include <stdio.h>
3607 #include <IOKit/IOCFPlugIn.h>
3608 int main(void) {
3609 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3610 CFMutableDictionaryRef hidMatchDictionary;
3611 IOReturn ioReturnValue;
3613 // Set up a matching dictionary to search the I/O Registry by class.
3614 // name for all HID class devices
3615 hidMatchDictionary = IOServiceMatching("AppleIRController");
3617 // Now search I/O Registry for matching devices.
3618 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3619 hidMatchDictionary, &hidObjectIterator);
3621 // If search is unsuccessful, return nonzero.
3622 if (ioReturnValue != kIOReturnSuccess ||
3623 !IOIteratorIsValid(hidObjectIterator)) {
3624 return 1;
3626 return 0;
3629 cc_check -framework IOKit && _apple_remote=yes
3631 if test "$_apple_remote" = yes ; then
3632 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3633 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3634 else
3635 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3637 echores "$_apple_remote"
3639 fi #if darwin
3641 if linux; then
3643 echocheck "Apple IR"
3644 if test "$_apple_ir" = auto ; then
3645 _apple_ir=no
3646 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3648 if test "$_apple_ir" = yes ; then
3649 def_apple_ir='#define CONFIG_APPLE_IR 1'
3650 else
3651 def_apple_ir='#undef CONFIG_APPLE_IR'
3653 echores "$_apple_ir"
3654 fi #if linux
3656 echocheck "pkg-config"
3657 _pkg_config=pkg-config
3658 if $($_pkg_config --version > /dev/null 2>&1); then
3659 if test "$_ld_static"; then
3660 _pkg_config="$_pkg_config --static"
3662 echores "yes"
3663 else
3664 _pkg_config=false
3665 echores "no"
3669 echocheck "Samba support (libsmbclient)"
3670 if test "$_smb" = yes; then
3671 extra_ldflags="$extra_ldflags -lsmbclient"
3673 if test "$_smb" = auto; then
3674 _smb=no
3675 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3676 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3677 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3678 done
3681 if test "$_smb" = yes; then
3682 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3683 inputmodules="smb $inputmodules"
3684 else
3685 def_smb="#undef CONFIG_LIBSMBCLIENT"
3686 noinputmodules="smb $noinputmodules"
3688 echores "$_smb"
3691 #########
3692 # VIDEO #
3693 #########
3696 echocheck "tdfxfb"
3697 if test "$_tdfxfb" = yes ; then
3698 def_tdfxfb='#define CONFIG_TDFXFB 1'
3699 vomodules="tdfxfb $vomodules"
3700 else
3701 def_tdfxfb='#undef CONFIG_TDFXFB'
3702 novomodules="tdfxfb $novomodules"
3704 echores "$_tdfxfb"
3706 echocheck "s3fb"
3707 if test "$_s3fb" = yes ; then
3708 def_s3fb='#define CONFIG_S3FB 1'
3709 vomodules="s3fb $vomodules"
3710 else
3711 def_s3fb='#undef CONFIG_S3FB'
3712 novomodules="s3fb $novomodules"
3714 echores "$_s3fb"
3716 echocheck "wii"
3717 if test "$_wii" = yes ; then
3718 def_wii='#define CONFIG_WII 1'
3719 vomodules="wii $vomodules"
3720 else
3721 def_wii='#undef CONFIG_WII'
3722 novomodules="wii $novomodules"
3724 echores "$_wii"
3726 echocheck "tdfxvid"
3727 if test "$_tdfxvid" = yes ; then
3728 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3729 vomodules="tdfx_vid $vomodules"
3730 else
3731 def_tdfxvid='#undef CONFIG_TDFX_VID'
3732 novomodules="tdfx_vid $novomodules"
3734 echores "$_tdfxvid"
3736 echocheck "xvr100"
3737 if test "$_xvr100" = auto ; then
3738 cat > $TMPC << EOF
3739 #include <unistd.h>
3740 #include <sys/fbio.h>
3741 #include <sys/visual_io.h>
3742 int main(void) {
3743 struct vis_identifier ident;
3744 struct fbgattr attr;
3745 ioctl(0, VIS_GETIDENTIFIER, &ident);
3746 ioctl(0, FBIOGATTR, &attr);
3747 return 0;
3750 _xvr100=no
3751 cc_check && _xvr100=yes
3753 if test "$_xvr100" = yes ; then
3754 def_xvr100='#define CONFIG_XVR100 1'
3755 vomodules="xvr100 $vomodules"
3756 else
3757 def_tdfxvid='#undef CONFIG_XVR100'
3758 novomodules="xvr100 $novomodules"
3760 echores "$_xvr100"
3762 echocheck "tga"
3763 if test "$_tga" = yes ; then
3764 def_tga='#define CONFIG_TGA 1'
3765 vomodules="tga $vomodules"
3766 else
3767 def_tga='#undef CONFIG_TGA'
3768 novomodules="tga $novomodules"
3770 echores "$_tga"
3773 echocheck "md5sum support"
3774 if test "$_md5sum" = yes; then
3775 def_md5sum="#define CONFIG_MD5SUM 1"
3776 vomodules="md5sum $vomodules"
3777 else
3778 def_md5sum="#undef CONFIG_MD5SUM"
3779 novomodules="md5sum $novomodules"
3781 echores "$_md5sum"
3784 echocheck "yuv4mpeg support"
3785 if test "$_yuv4mpeg" = yes; then
3786 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3787 vomodules="yuv4mpeg $vomodules"
3788 else
3789 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3790 novomodules="yuv4mpeg $novomodules"
3792 echores "$_yuv4mpeg"
3795 echocheck "bl"
3796 if test "$_bl" = yes ; then
3797 def_bl='#define CONFIG_BL 1'
3798 vomodules="bl $vomodules"
3799 else
3800 def_bl='#undef CONFIG_BL'
3801 novomodules="bl $novomodules"
3803 echores "$_bl"
3806 echocheck "DirectFB"
3807 if test "$_directfb" = auto ; then
3808 _directfb=no
3809 cat > $TMPC << EOF
3810 #include <directfb.h>
3811 #include <directfb_version.h>
3812 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3813 #error "DirectFB version too old."
3814 #endif
3815 int main(void) { DirectFBInit(0, 0); return 0; }
3817 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3818 cc_check $_inc_tmp -ldirectfb &&
3819 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3820 done
3822 if test "$_directfb" = yes ; then
3823 def_directfb='#define CONFIG_DIRECTFB 1'
3824 vomodules="directfb dfbmga $vomodules"
3825 libs_mplayer="$libs_mplayer -ldirectfb"
3826 else
3827 def_directfb='#undef CONFIG_DIRECTFB'
3828 novomodules="directfb dfbmga $novomodules"
3830 echores "$_directfb"
3833 echocheck "X11 headers presence"
3834 _x11_headers="no"
3835 res_comment="check if the dev(el) packages are installed"
3836 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3837 if test -f "$I/X11/Xlib.h" ; then
3838 _x11_headers="yes"
3839 res_comment=""
3840 break
3842 done
3843 if test $_cross_compile = no; then
3844 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3845 /usr/include/X11R6 /usr/openwin/include ; do
3846 if test -f "$I/X11/Xlib.h" ; then
3847 extra_cflags="$extra_cflags -I$I"
3848 _x11_headers="yes"
3849 res_comment="using $I"
3850 break
3852 done
3854 echores "$_x11_headers"
3857 echocheck "X11"
3858 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3859 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3860 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3861 -L/usr/lib ; do
3862 if netbsd; then
3863 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3864 else
3865 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3867 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3868 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3869 done
3871 if test "$_x11" = yes ; then
3872 def_x11='#define CONFIG_X11 1'
3873 vomodules="x11 xover $vomodules"
3874 else
3875 _x11=no
3876 def_x11='#undef CONFIG_X11'
3877 novomodules="x11 $novomodules"
3878 res_comment="check if the dev(el) packages are installed"
3879 # disable stuff that depends on X
3880 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3882 echores "$_x11"
3884 echocheck "Xss screensaver extensions"
3885 if test "$_xss" = auto ; then
3886 _xss=no
3887 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3889 if test "$_xss" = yes ; then
3890 def_xss='#define CONFIG_XSS 1'
3891 libs_mplayer="$libs_mplayer -lXss"
3892 else
3893 def_xss='#undef CONFIG_XSS'
3895 echores "$_xss"
3897 echocheck "DPMS"
3898 _xdpms3=no
3899 _xdpms4=no
3900 if test "$_x11" = yes ; then
3901 cat > $TMPC <<EOF
3902 #include <X11/Xmd.h>
3903 #include <X11/Xlib.h>
3904 #include <X11/Xutil.h>
3905 #include <X11/Xatom.h>
3906 #include <X11/extensions/dpms.h>
3907 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3909 cc_check -lXdpms && _xdpms3=yes
3910 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3912 if test "$_xdpms4" = yes ; then
3913 def_xdpms='#define CONFIG_XDPMS 1'
3914 res_comment="using Xdpms 4"
3915 echores "yes"
3916 elif test "$_xdpms3" = yes ; then
3917 def_xdpms='#define CONFIG_XDPMS 1'
3918 libs_mplayer="$libs_mplayer -lXdpms"
3919 res_comment="using Xdpms 3"
3920 echores "yes"
3921 else
3922 def_xdpms='#undef CONFIG_XDPMS'
3923 echores "no"
3927 echocheck "Xv"
3928 if test "$_xv" = auto ; then
3929 _xv=no
3930 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3933 if test "$_xv" = yes ; then
3934 def_xv='#define CONFIG_XV 1'
3935 libs_mplayer="$libs_mplayer -lXv"
3936 vomodules="xv $vomodules"
3937 else
3938 def_xv='#undef CONFIG_XV'
3939 novomodules="xv $novomodules"
3941 echores "$_xv"
3944 echocheck "XvMC"
3945 if test "$_xv" = yes && test "$_xvmc" != no ; then
3946 _xvmc=no
3947 cat > $TMPC <<EOF
3948 #include <X11/Xlib.h>
3949 #include <X11/extensions/Xvlib.h>
3950 #include <X11/extensions/XvMClib.h>
3951 int main(void) {
3952 XvMCQueryExtension(0, 0, 0);
3953 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
3954 return 0; }
3956 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
3957 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
3958 done
3960 if test "$_xvmc" = yes ; then
3961 def_xvmc='#define CONFIG_XVMC 1'
3962 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
3963 vomodules="xvmc $vomodules"
3964 res_comment="using $_xvmclib"
3965 else
3966 def_xvmc='#define CONFIG_XVMC 0'
3967 novomodules="xvmc $novomodules"
3969 echores "$_xvmc"
3972 echocheck "VDPAU"
3973 if test "$_vdpau" = auto ; then
3974 _vdpau=no
3975 if test "$_dl" = yes ; then
3976 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
3979 if test "$_vdpau" = yes ; then
3980 def_vdpau='#define CONFIG_VDPAU 1'
3981 libs_mplayer="$libs_mplayer -lvdpau"
3982 vomodules="vdpau $vomodules"
3983 else
3984 def_vdpau='#define CONFIG_VDPAU 0'
3985 novomodules="vdpau $novomodules"
3987 echores "$_vdpau"
3990 echocheck "Xinerama"
3991 if test "$_xinerama" = auto ; then
3992 _xinerama=no
3993 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3996 if test "$_xinerama" = yes ; then
3997 def_xinerama='#define CONFIG_XINERAMA 1'
3998 libs_mplayer="$libs_mplayer -lXinerama"
3999 else
4000 def_xinerama='#undef CONFIG_XINERAMA'
4002 echores "$_xinerama"
4005 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4006 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4007 # named 'X extensions' or something similar.
4008 # This check may be useful for future mplayer versions (to change resolution)
4009 # If you run into problems, remove '-lXxf86vm'.
4010 echocheck "Xxf86vm"
4011 if test "$_vm" = auto ; then
4012 _vm=no
4013 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4015 if test "$_vm" = yes ; then
4016 def_vm='#define CONFIG_XF86VM 1'
4017 libs_mplayer="$libs_mplayer -lXxf86vm"
4018 else
4019 def_vm='#undef CONFIG_XF86VM'
4021 echores "$_vm"
4023 # Check for the presence of special keycodes, like audio control buttons
4024 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4025 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4026 # have these new keycodes.
4027 echocheck "XF86keysym"
4028 if test "$_xf86keysym" = auto; then
4029 _xf86keysym=no
4030 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4032 if test "$_xf86keysym" = yes ; then
4033 def_xf86keysym='#define CONFIG_XF86XK 1'
4034 else
4035 def_xf86keysym='#undef CONFIG_XF86XK'
4037 echores "$_xf86keysym"
4039 echocheck "DGA"
4040 if test "$_dga2" = auto && test "$_x11" = yes ; then
4041 _dga2=no
4042 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4044 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4045 _dga1=no
4046 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4049 _dga=no
4050 def_dga='#undef CONFIG_DGA'
4051 def_dga1='#undef CONFIG_DGA1'
4052 def_dga2='#undef CONFIG_DGA2'
4053 if test "$_dga1" = yes ; then
4054 _dga=yes
4055 def_dga1='#define CONFIG_DGA1 1'
4056 res_comment="using DGA 1.0"
4057 elif test "$_dga2" = yes ; then
4058 _dga=yes
4059 def_dga2='#define CONFIG_DGA2 1'
4060 res_comment="using DGA 2.0"
4062 if test "$_dga" = yes ; then
4063 def_dga='#define CONFIG_DGA 1'
4064 libs_mplayer="$libs_mplayer -lXxf86dga"
4065 vomodules="dga $vomodules"
4066 else
4067 novomodules="dga $novomodules"
4069 echores "$_dga"
4072 echocheck "3dfx"
4073 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4074 def_3dfx='#define CONFIG_3DFX 1'
4075 vomodules="3dfx $vomodules"
4076 else
4077 _3dfx=no
4078 def_3dfx='#undef CONFIG_3DFX'
4079 novomodules="3dfx $novomodules"
4081 echores "$_3dfx"
4084 echocheck "GGI"
4085 if test "$_ggi" = auto ; then
4086 _ggi=no
4087 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4089 if test "$_ggi" = yes ; then
4090 def_ggi='#define CONFIG_GGI 1'
4091 libs_mplayer="$libs_mplayer -lggi"
4092 vomodules="ggi $vomodules"
4093 else
4094 def_ggi='#undef CONFIG_GGI'
4095 novomodules="ggi $novomodules"
4097 echores "$_ggi"
4099 echocheck "GGI extension: libggiwmh"
4100 if test "$_ggiwmh" = auto ; then
4101 _ggiwmh=no
4102 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4104 # needed to get right output on obscure combination
4105 # like --disable-ggi --enable-ggiwmh
4106 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4107 def_ggiwmh='#define CONFIG_GGIWMH 1'
4108 libs_mplayer="$libs_mplayer -lggiwmh"
4109 else
4110 _ggiwmh=no
4111 def_ggiwmh='#undef CONFIG_GGIWMH'
4113 echores "$_ggiwmh"
4116 echocheck "AA"
4117 if test "$_aa" = auto ; then
4118 cat > $TMPC << EOF
4119 #include <aalib.h>
4120 int main(void) {
4121 aa_context *c;
4122 aa_renderparams *p;
4123 aa_init(0, 0, 0);
4124 c = aa_autoinit(&aa_defparams);
4125 p = aa_getrenderparams();
4126 aa_autoinitkbd(c, 0);
4127 return 0; }
4129 _aa=no
4130 for _ld_tmp in "-laa" ; do
4131 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4132 done
4134 if test "$_aa" = yes ; then
4135 def_aa='#define CONFIG_AA 1'
4136 if cygwin ; then
4137 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4139 vomodules="aa $vomodules"
4140 else
4141 def_aa='#undef CONFIG_AA'
4142 novomodules="aa $novomodules"
4144 echores "$_aa"
4147 echocheck "CACA"
4148 if test "$_caca" = auto ; then
4149 _caca=no
4150 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4151 cat > $TMPC << EOF
4152 #include <caca.h>
4153 #ifdef CACA_API_VERSION_1
4154 #include <caca0.h>
4155 #endif
4156 int main(void) { caca_init(); return 0; }
4158 cc_check $(caca-config --libs) && _caca=yes
4161 if test "$_caca" = yes ; then
4162 def_caca='#define CONFIG_CACA 1'
4163 extra_cflags="$extra_cflags $(caca-config --cflags)"
4164 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4165 vomodules="caca $vomodules"
4166 else
4167 def_caca='#undef CONFIG_CACA'
4168 novomodules="caca $novomodules"
4170 echores "$_caca"
4173 echocheck "SVGAlib"
4174 if test "$_svga" = auto ; then
4175 _svga=no
4176 header_check vga.h -lvga $_ld_lm && _svga=yes
4178 if test "$_svga" = yes ; then
4179 def_svga='#define CONFIG_SVGALIB 1'
4180 libs_mplayer="$libs_mplayer -lvga"
4181 vomodules="svga $vomodules"
4182 else
4183 def_svga='#undef CONFIG_SVGALIB'
4184 novomodules="svga $novomodules"
4186 echores "$_svga"
4189 echocheck "FBDev"
4190 if test "$_fbdev" = auto ; then
4191 _fbdev=no
4192 linux && _fbdev=yes
4194 if test "$_fbdev" = yes ; then
4195 def_fbdev='#define CONFIG_FBDEV 1'
4196 vomodules="fbdev $vomodules"
4197 else
4198 def_fbdev='#undef CONFIG_FBDEV'
4199 novomodules="fbdev $novomodules"
4201 echores "$_fbdev"
4205 echocheck "DVB"
4206 if test "$_dvb" = auto ; then
4207 _dvb=no
4208 cat >$TMPC << EOF
4209 #include <poll.h>
4210 #include <sys/ioctl.h>
4211 #include <stdio.h>
4212 #include <time.h>
4213 #include <unistd.h>
4214 #include <linux/dvb/dmx.h>
4215 #include <linux/dvb/frontend.h>
4216 #include <linux/dvb/video.h>
4217 #include <linux/dvb/audio.h>
4218 int main(void) {return 0;}
4220 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4221 cc_check $_inc_tmp && _dvb=yes &&
4222 extra_cflags="$extra_cflags $_inc_tmp" && break
4223 done
4225 echores "$_dvb"
4226 if test "$_dvb" = yes ; then
4227 _dvbin=yes
4228 inputmodules="dvb $inputmodules"
4229 def_dvb='#define CONFIG_DVB 1'
4230 def_dvbin='#define CONFIG_DVBIN 1'
4231 aomodules="mpegpes(dvb) $aomodules"
4232 vomodules="mpegpes(dvb) $vomodules"
4233 else
4234 _dvbin=no
4235 noinputmodules="dvb $noinputmodules"
4236 def_dvb='#undef CONFIG_DVB'
4237 def_dvbin='#undef CONFIG_DVBIN '
4238 aomodules="mpegpes(file) $aomodules"
4239 vomodules="mpegpes(file) $vomodules"
4243 if darwin; then
4245 echocheck "QuickTime"
4246 if test "$quicktime" = auto ; then
4247 quicktime=no
4248 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4250 if test "$quicktime" = yes ; then
4251 extra_ldflags="$extra_ldflags -framework QuickTime"
4252 def_quicktime='#define CONFIG_QUICKTIME 1'
4253 else
4254 def_quicktime='#undef CONFIG_QUICKTIME'
4255 _quartz=no
4257 echores $quicktime
4259 echocheck "Quartz"
4260 if test "$_quartz" = auto ; then
4261 _quartz=no
4262 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4264 if test "$_quartz" = yes ; then
4265 libs_mplayer="$libs_mplayer -framework Carbon"
4266 def_quartz='#define CONFIG_QUARTZ 1'
4267 vomodules="quartz $vomodules"
4268 else
4269 def_quartz='#undef CONFIG_QUARTZ'
4270 novomodules="quartz $novomodules"
4272 echores $_quartz
4274 echocheck "CoreVideo"
4275 if test "$_corevideo" = auto ; then
4276 cat > $TMPC <<EOF
4277 #include <Carbon/Carbon.h>
4278 #include <CoreServices/CoreServices.h>
4279 #include <OpenGL/OpenGL.h>
4280 #include <QuartzCore/CoreVideo.h>
4281 int main(void) { return 0; }
4283 _corevideo=no
4284 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4286 if test "$_corevideo" = yes ; then
4287 vomodules="corevideo $vomodules"
4288 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4289 def_corevideo='#define CONFIG_COREVIDEO 1'
4290 else
4291 novomodules="corevideo $novomodules"
4292 def_corevideo='#undef CONFIG_COREVIDEO'
4294 echores "$_corevideo"
4296 fi #if darwin
4299 echocheck "PNG support"
4300 if test "$_png" = auto ; then
4301 _png=no
4302 if irix ; then
4303 # Don't check for -lpng on irix since it has its own libpng
4304 # incompatible with the GNU libpng
4305 res_comment="disabled on irix (not GNU libpng)"
4306 else
4307 cat > $TMPC << EOF
4308 #include <stdio.h>
4309 #include <string.h>
4310 #include <png.h>
4311 int main(void) {
4312 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4313 printf("libpng: %s\n", png_libpng_ver);
4314 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4317 cc_check -lpng -lz $_ld_lm && _png=yes
4320 echores "$_png"
4321 if test "$_png" = yes ; then
4322 def_png='#define CONFIG_PNG 1'
4323 extra_ldflags="$extra_ldflags -lpng -lz"
4324 else
4325 def_png='#undef CONFIG_PNG'
4328 echocheck "MNG support"
4329 if test "$_mng" = auto ; then
4330 _mng=no
4331 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4333 echores "$_mng"
4334 if test "$_mng" = yes ; then
4335 def_mng='#define CONFIG_MNG 1'
4336 extra_ldflags="$extra_ldflags -lmng -lz"
4337 else
4338 def_mng='#undef CONFIG_MNG'
4341 echocheck "JPEG support"
4342 if test "$_jpeg" = auto ; then
4343 _jpeg=no
4344 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4346 echores "$_jpeg"
4348 if test "$_jpeg" = yes ; then
4349 def_jpeg='#define CONFIG_JPEG 1'
4350 vomodules="jpeg $vomodules"
4351 extra_ldflags="$extra_ldflags -ljpeg"
4352 else
4353 def_jpeg='#undef CONFIG_JPEG'
4354 novomodules="jpeg $novomodules"
4359 echocheck "PNM support"
4360 if test "$_pnm" = yes; then
4361 def_pnm="#define CONFIG_PNM 1"
4362 vomodules="pnm $vomodules"
4363 else
4364 def_pnm="#undef CONFIG_PNM"
4365 novomodules="pnm $novomodules"
4367 echores "$_pnm"
4371 echocheck "GIF support"
4372 # This is to appease people who want to force gif support.
4373 # If it is forced to yes, then we still do checks to determine
4374 # which gif library to use.
4375 if test "$_gif" = yes ; then
4376 _force_gif=yes
4377 _gif=auto
4380 if test "$_gif" = auto ; then
4381 _gif=no
4382 for _ld_gif in "-lungif" "-lgif" ; do
4383 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4384 done
4387 # If no library was found, and the user wants support forced,
4388 # then we force it on with libgif, as this is the safest
4389 # assumption IMHO. (libungif & libregif both create symbolic
4390 # links to libgif. We also assume that no x11 support is needed,
4391 # because if you are forcing this, then you _should_ know what
4392 # you are doing. [ Besides, package maintainers should never
4393 # have compiled x11 deps into libungif in the first place. ] )
4394 # </rant>
4395 # --Joey
4396 if test "$_force_gif" = yes && test "$_gif" = no ; then
4397 _gif=yes
4398 _ld_gif="-lgif"
4401 if test "$_gif" = yes ; then
4402 def_gif='#define CONFIG_GIF 1'
4403 codecmodules="gif $codecmodules"
4404 vomodules="gif89a $vomodules"
4405 res_comment="old version, some encoding functions disabled"
4406 def_gif_4='#undef CONFIG_GIF_4'
4407 extra_ldflags="$extra_ldflags $_ld_gif"
4409 cat > $TMPC << EOF
4410 #include <signal.h>
4411 #include <stdio.h>
4412 #include <stdlib.h>
4413 #include <gif_lib.h>
4414 static void catch(int sig) { exit(1); }
4415 int main(void) {
4416 signal(SIGSEGV, catch); // catch segfault
4417 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4418 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4419 return 0;
4422 if cc_check "$_ld_gif" ; then
4423 def_gif_4='#define CONFIG_GIF_4 1'
4424 res_comment=""
4426 else
4427 def_gif='#undef CONFIG_GIF'
4428 def_gif_4='#undef CONFIG_GIF_4'
4429 novomodules="gif89a $novomodules"
4430 nocodecmodules="gif $nocodecmodules"
4432 echores "$_gif"
4435 case "$_gif" in yes*)
4436 echocheck "broken giflib workaround"
4437 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4439 cat > $TMPC << EOF
4440 #include <stdio.h>
4441 #include <gif_lib.h>
4442 int main(void) {
4443 GifFileType gif = {.UserData = NULL};
4444 printf("UserData is at address %p\n", gif.UserData);
4445 return 0;
4448 if cc_check "$_ld_gif" ; then
4449 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4450 echores "disabled"
4451 else
4452 echores "enabled"
4455 esac
4458 echocheck "VESA support"
4459 if test "$_vesa" = auto ; then
4460 _vesa=no
4461 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4463 if test "$_vesa" = yes ; then
4464 def_vesa='#define CONFIG_VESA 1'
4465 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4466 vomodules="vesa $vomodules"
4467 else
4468 def_vesa='#undef CONFIG_VESA'
4469 novomodules="vesa $novomodules"
4471 echores "$_vesa"
4473 #################
4474 # VIDEO + AUDIO #
4475 #################
4478 echocheck "SDL"
4479 _inc_tmp=""
4480 _ld_tmp=""
4481 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4482 if test -z "$_sdlconfig" ; then
4483 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4484 _sdlconfig="sdl-config"
4485 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4486 _sdlconfig="sdl11-config"
4487 else
4488 _sdlconfig=false
4491 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4492 cat > $TMPC << EOF
4493 #ifdef CONFIG_SDL_SDL_H
4494 #include <SDL/SDL.h>
4495 #else
4496 #include <SDL.h>
4497 #endif
4498 #ifndef __APPLE__
4499 // we allow SDL hacking our main() only on OSX
4500 #undef main
4501 #endif
4502 int main(int argc, char *argv[]) {
4503 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4504 return 0;
4507 _sdl=no
4508 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4509 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4510 _sdl=yes
4511 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4512 break
4514 done
4515 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4516 res_comment="using $_sdlconfig"
4517 if cygwin ; then
4518 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4519 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4520 elif mingw32 ; then
4521 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4522 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4523 else
4524 _inc_tmp="$($_sdlconfig --cflags)"
4525 _ld_tmp="$($_sdlconfig --libs)"
4527 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4528 _sdl=yes
4529 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4530 # HACK for BeOS/Haiku SDL
4531 _ld_tmp="$_ld_tmp -lstdc++"
4532 _sdl=yes
4536 if test "$_sdl" = yes ; then
4537 def_sdl='#define CONFIG_SDL 1'
4538 extra_cflags="$extra_cflags $_inc_tmp"
4539 libs_mplayer="$libs_mplayer $_ld_tmp"
4540 vomodules="sdl $vomodules"
4541 aomodules="sdl $aomodules"
4542 else
4543 def_sdl='#undef CONFIG_SDL'
4544 novomodules="sdl $novomodules"
4545 noaomodules="sdl $noaomodules"
4547 echores "$_sdl"
4550 # make sure this stays below CoreVideo to avoid issues due to namespace
4551 # conflicts between -lGL and -framework OpenGL
4552 echocheck "OpenGL"
4553 #Note: this test is run even with --enable-gl since we autodetect linker flags
4554 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4555 cat > $TMPC << EOF
4556 #ifdef GL_WIN32
4557 #include <windows.h>
4558 #include <GL/gl.h>
4559 #elif defined(GL_SDL)
4560 #include <GL/gl.h>
4561 #ifdef CONFIG_SDL_SDL_H
4562 #include <SDL/SDL.h>
4563 #else
4564 #include <SDL.h>
4565 #endif
4566 #ifndef __APPLE__
4567 // we allow SDL hacking our main() only on OSX
4568 #undef main
4569 #endif
4570 #else
4571 #include <GL/gl.h>
4572 #include <X11/Xlib.h>
4573 #include <GL/glx.h>
4574 #endif
4575 int main(int argc, char *argv[]) {
4576 #ifdef GL_WIN32
4577 HDC dc;
4578 wglCreateContext(dc);
4579 #elif defined(GL_SDL)
4580 SDL_GL_SwapBuffers();
4581 #else
4582 glXCreateContext(NULL, NULL, NULL, True);
4583 #endif
4584 glFinish();
4585 return 0;
4588 _gl=no
4589 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4590 if cc_check $_ld_tmp $_ld_lm ; then
4591 _gl=yes
4592 _gl_x11=yes
4593 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4594 break
4596 done
4597 if cc_check -DGL_WIN32 -lopengl32 ; then
4598 _gl=yes
4599 _gl_win32=yes
4600 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4602 # last so it can reuse any linker etc. flags detected before
4603 if test "$_sdl" = yes ; then
4604 if cc_check -DGL_SDL ||
4605 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4606 _gl=yes
4607 _gl_sdl=yes
4608 elif cc_check -DGL_SDL -lGL ||
4609 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4610 _gl=yes
4611 _gl_sdl=yes
4612 libs_mplayer="$libs_mplayer -lGL"
4615 else
4616 _gl=no
4618 if test "$_gl" = yes ; then
4619 def_gl='#define CONFIG_GL 1'
4620 res_comment="backends:"
4621 if test "$_gl_win32" = yes ; then
4622 def_gl_win32='#define CONFIG_GL_WIN32 1'
4623 res_comment="$res_comment win32"
4625 if test "$_gl_x11" = yes ; then
4626 def_gl_x11='#define CONFIG_GL_X11 1'
4627 res_comment="$res_comment x11"
4629 if test "$_gl_sdl" = yes ; then
4630 def_gl_sdl='#define CONFIG_GL_SDL 1'
4631 res_comment="$res_comment sdl"
4633 vomodules="opengl $vomodules"
4634 else
4635 def_gl='#undef CONFIG_GL'
4636 def_gl_win32='#undef CONFIG_GL_WIN32'
4637 def_gl_x11='#undef CONFIG_GL_X11'
4638 def_gl_sdl='#undef CONFIG_GL_SDL'
4639 novomodules="opengl $novomodules"
4641 echores "$_gl"
4644 echocheck "MatrixView"
4645 if test "$_gl" = no ; then
4646 matrixview=no
4648 if test "$matrixview" = yes ; then
4649 vomodules="matrixview $vomodules"
4650 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4651 else
4652 novomodules="matrixview $novomodules"
4653 def_matrixview='#undef CONFIG_MATRIXVIEW'
4655 echores "$matrixview"
4658 if os2 ; then
4659 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4660 if test "$_kva" = auto; then
4661 _kva=no;
4662 header_check_broken os2.h kva.h -lkva && _kva=yes
4664 if test "$_kva" = yes ; then
4665 def_kva='#define CONFIG_KVA 1'
4666 libs_mplayer="$libs_mplayer -lkva"
4667 vomodules="kva $vomodules"
4668 else
4669 def_kva='#undef CONFIG_KVA'
4670 novomodules="kva $novomodules"
4672 echores "$_kva"
4673 fi #if os2
4676 if win32; then
4678 echocheck "Windows waveout"
4679 if test "$_win32waveout" = auto ; then
4680 _win32waveout=no
4681 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4683 if test "$_win32waveout" = yes ; then
4684 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4685 libs_mplayer="$libs_mplayer -lwinmm"
4686 aomodules="win32 $aomodules"
4687 else
4688 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4689 noaomodules="win32 $noaomodules"
4691 echores "$_win32waveout"
4693 echocheck "Direct3D"
4694 if test "$_direct3d" = auto ; then
4695 _direct3d=no
4696 header_check d3d9.h && _direct3d=yes
4698 if test "$_direct3d" = yes ; then
4699 def_direct3d='#define CONFIG_DIRECT3D 1'
4700 vomodules="direct3d $vomodules"
4701 else
4702 def_direct3d='#undef CONFIG_DIRECT3D'
4703 novomodules="direct3d $novomodules"
4705 echores "$_direct3d"
4707 echocheck "Directx"
4708 if test "$_directx" = auto ; then
4709 cat > $TMPC << EOF
4710 #include <ddraw.h>
4711 #include <dsound.h>
4712 int main(void) { return 0; }
4714 _directx=no
4715 cc_check -lgdi32 && _directx=yes
4717 if test "$_directx" = yes ; then
4718 def_directx='#define CONFIG_DIRECTX 1'
4719 libs_mplayer="$libs_mplayer -lgdi32"
4720 vomodules="directx $vomodules"
4721 aomodules="dsound $aomodules"
4722 else
4723 def_directx='#undef CONFIG_DIRECTX'
4724 novomodules="directx $novomodules"
4725 noaomodules="dsound $noaomodules"
4727 echores "$_directx"
4729 fi #if win32; then
4732 echocheck "DXR3/H+"
4733 if test "$_dxr3" = auto ; then
4734 _dxr3=no
4735 header_check linux/em8300.h && _dxr3=yes
4737 if test "$_dxr3" = yes ; then
4738 def_dxr3='#define CONFIG_DXR3 1'
4739 vomodules="dxr3 $vomodules"
4740 else
4741 def_dxr3='#undef CONFIG_DXR3'
4742 novomodules="dxr3 $novomodules"
4744 echores "$_dxr3"
4747 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4748 if test "$_ivtv" = auto ; then
4749 cat > $TMPC << EOF
4750 #include <sys/time.h>
4751 #include <linux/videodev2.h>
4752 #include <linux/ivtv.h>
4753 #include <sys/ioctl.h>
4754 int main(void) {
4755 struct ivtv_cfg_stop_decode sd;
4756 struct ivtv_cfg_start_decode sd1;
4757 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4758 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4759 return 0; }
4761 _ivtv=no
4762 cc_check && _ivtv=yes
4764 if test "$_ivtv" = yes ; then
4765 def_ivtv='#define CONFIG_IVTV 1'
4766 vomodules="ivtv $vomodules"
4767 aomodules="ivtv $aomodules"
4768 else
4769 def_ivtv='#undef CONFIG_IVTV'
4770 novomodules="ivtv $novomodules"
4771 noaomodules="ivtv $noaomodules"
4773 echores "$_ivtv"
4776 echocheck "V4L2 MPEG Decoder"
4777 if test "$_v4l2" = auto ; then
4778 cat > $TMPC << EOF
4779 #include <sys/time.h>
4780 #include <linux/videodev2.h>
4781 #include <linux/version.h>
4782 int main(void) {
4783 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4784 #error kernel headers too old, need 2.6.22
4785 #endif
4786 struct v4l2_ext_controls ctrls;
4787 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4788 return 0;
4791 _v4l2=no
4792 cc_check && _v4l2=yes
4794 if test "$_v4l2" = yes ; then
4795 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4796 vomodules="v4l2 $vomodules"
4797 aomodules="v4l2 $aomodules"
4798 else
4799 def_v4l2='#undef CONFIG_V4L2_DECODER'
4800 novomodules="v4l2 $novomodules"
4801 noaomodules="v4l2 $noaomodules"
4803 echores "$_v4l2"
4807 #########
4808 # AUDIO #
4809 #########
4812 echocheck "OSS Audio"
4813 if test "$_ossaudio" = auto ; then
4814 _ossaudio=no
4815 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4817 if test "$_ossaudio" = yes ; then
4818 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4819 aomodules="oss $aomodules"
4820 cat > $TMPC << EOF
4821 #include <$_soundcard_header>
4822 #ifdef OPEN_SOUND_SYSTEM
4823 int main(void) { return 0; }
4824 #else
4825 #error Not the real thing
4826 #endif
4828 _real_ossaudio=no
4829 cc_check && _real_ossaudio=yes
4830 if test "$_real_ossaudio" = yes; then
4831 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4832 # Check for OSS4 headers (override default headers)
4833 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4834 if test -f /etc/oss.conf; then
4835 . /etc/oss.conf
4836 _ossinc="$OSSLIBDIR/include"
4837 if test -f "$_ossinc/sys/soundcard.h"; then
4838 extra_cflags="-I$_ossinc $extra_cflags"
4841 elif netbsd || openbsd ; then
4842 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4843 extra_ldflags="$extra_ldflags -lossaudio"
4844 else
4845 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4847 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4848 else
4849 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4850 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4851 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4852 noaomodules="oss $noaomodules"
4854 echores "$_ossaudio"
4857 echocheck "aRts"
4858 if test "$_arts" = auto ; then
4859 _arts=no
4860 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4861 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4862 _arts=yes
4866 if test "$_arts" = yes ; then
4867 def_arts='#define CONFIG_ARTS 1'
4868 aomodules="arts $aomodules"
4869 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4870 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4871 else
4872 noaomodules="arts $noaomodules"
4874 echores "$_arts"
4877 echocheck "EsounD"
4878 if test "$_esd" = auto ; then
4879 _esd=no
4880 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4881 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4884 echores "$_esd"
4886 if test "$_esd" = yes ; then
4887 def_esd='#define CONFIG_ESD 1'
4888 aomodules="esd $aomodules"
4889 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4890 extra_cflags="$extra_cflags $(esd-config --cflags)"
4892 echocheck "esd_get_latency()"
4893 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4894 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4895 echores "$_esd_latency"
4896 else
4897 def_esd='#undef CONFIG_ESD'
4898 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4899 noaomodules="esd $noaomodules"
4903 echocheck "NAS"
4904 if test "$_nas" = auto ; then
4905 _nas=no
4906 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4908 if test "$_nas" = yes ; then
4909 def_nas='#define CONFIG_NAS 1'
4910 libs_mplayer="$libs_mplayer -laudio -lXt"
4911 aomodules="nas $aomodules"
4912 else
4913 noaomodules="nas $noaomodules"
4914 def_nas='#undef CONFIG_NAS'
4916 echores "$_nas"
4919 echocheck "pulse"
4920 if test "$_pulse" = auto ; then
4921 _pulse=no
4922 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4923 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4924 _pulse=yes
4927 echores "$_pulse"
4929 if test "$_pulse" = yes ; then
4930 def_pulse='#define CONFIG_PULSE 1'
4931 aomodules="pulse $aomodules"
4932 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4933 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4934 else
4935 def_pulse='#undef CONFIG_PULSE'
4936 noaomodules="pulse $noaomodules"
4940 echocheck "JACK"
4941 if test "$_jack" = auto ; then
4942 _jack=yes
4943 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4944 libs_mplayer="$libs_mplayer -ljack"
4945 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4946 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4947 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4948 else
4949 _jack=no
4953 if test "$_jack" = yes ; then
4954 def_jack='#define CONFIG_JACK 1'
4955 aomodules="jack $aomodules"
4956 else
4957 noaomodules="jack $noaomodules"
4959 echores "$_jack"
4961 echocheck "OpenAL"
4962 if test "$_openal" = auto ; then
4963 _openal=no
4964 cat > $TMPC << EOF
4965 #ifdef OPENAL_AL_H
4966 #include <OpenAL/al.h>
4967 #else
4968 #include <AL/al.h>
4969 #endif
4970 int main(void) {
4971 alSourceQueueBuffers(0, 0, 0);
4972 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4973 return 0;
4976 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4977 cc_check $I && _openal=yes && break
4978 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4979 done
4980 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4982 if test "$_openal" = yes ; then
4983 def_openal='#define CONFIG_OPENAL 1'
4984 aomodules="openal $aomodules"
4985 else
4986 noaomodules="openal $noaomodules"
4988 echores "$_openal"
4990 echocheck "ALSA audio"
4991 if test "$_alloca" != yes ; then
4992 _alsa=no
4993 res_comment="alloca missing"
4995 if test "$_alsa" != no ; then
4996 _alsa=no
4997 cat > $TMPC << EOF
4998 #include <sys/asoundlib.h>
4999 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5000 #error "alsa version != 0.5.x"
5001 #endif
5002 int main(void) { return 0; }
5004 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5006 cat > $TMPC << EOF
5007 #include <sys/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-sys'
5014 cat > $TMPC << EOF
5015 #include <alsa/asoundlib.h>
5016 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5017 #error "alsa version != 0.9.x"
5018 #endif
5019 int main(void) { return 0; }
5021 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5023 cat > $TMPC << EOF
5024 #include <sys/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-sys'
5031 cat > $TMPC << EOF
5032 #include <alsa/asoundlib.h>
5033 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5034 #error "alsa version != 1.0.x"
5035 #endif
5036 int main(void) { return 0; }
5038 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5040 def_alsa='#undef CONFIG_ALSA'
5041 def_alsa5='#undef CONFIG_ALSA5'
5042 def_alsa9='#undef CONFIG_ALSA9'
5043 def_alsa1x='#undef CONFIG_ALSA1X'
5044 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5045 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5046 if test "$_alsaver" ; then
5047 _alsa=yes
5048 if test "$_alsaver" = '0.5.x' ; then
5049 _alsa5=yes
5050 aomodules="alsa5 $aomodules"
5051 def_alsa5='#define CONFIG_ALSA5 1'
5052 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5053 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5054 elif test "$_alsaver" = '0.9.x-sys' ; then
5055 _alsa9=yes
5056 aomodules="alsa $aomodules"
5057 def_alsa='#define CONFIG_ALSA 1'
5058 def_alsa9='#define CONFIG_ALSA9 1'
5059 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5060 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5061 elif test "$_alsaver" = '0.9.x-alsa' ; then
5062 _alsa9=yes
5063 aomodules="alsa $aomodules"
5064 def_alsa='#define CONFIG_ALSA 1'
5065 def_alsa9='#define CONFIG_ALSA9 1'
5066 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5067 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5068 elif test "$_alsaver" = '1.0.x-sys' ; then
5069 _alsa1x=yes
5070 aomodules="alsa $aomodules"
5071 def_alsa='#define CONFIG_ALSA 1'
5072 def_alsa1x="#define CONFIG_ALSA1X 1"
5073 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5074 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5075 elif test "$_alsaver" = '1.0.x-alsa' ; then
5076 _alsa1x=yes
5077 aomodules="alsa $aomodules"
5078 def_alsa='#define CONFIG_ALSA 1'
5079 def_alsa1x="#define CONFIG_ALSA1X 1"
5080 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5081 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5082 else
5083 _alsa=no
5084 res_comment="unknown version"
5086 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5087 else
5088 noaomodules="alsa $noaomodules"
5090 echores "$_alsa"
5093 echocheck "Sun audio"
5094 if test "$_sunaudio" = auto ; then
5095 cat > $TMPC << EOF
5096 #include <sys/types.h>
5097 #include <sys/audioio.h>
5098 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5100 _sunaudio=no
5101 cc_check && _sunaudio=yes
5103 if test "$_sunaudio" = yes ; then
5104 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5105 aomodules="sun $aomodules"
5106 else
5107 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5108 noaomodules="sun $noaomodules"
5110 echores "$_sunaudio"
5113 if darwin; then
5114 echocheck "CoreAudio"
5115 if test "$_coreaudio" = auto ; then
5116 cat > $TMPC <<EOF
5117 #include <CoreAudio/CoreAudio.h>
5118 #include <AudioToolbox/AudioToolbox.h>
5119 #include <AudioUnit/AudioUnit.h>
5120 int main(void) { return 0; }
5122 _coreaudio=no
5123 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5125 if test "$_coreaudio" = yes ; then
5126 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5127 def_coreaudio='#define CONFIG_COREAUDIO 1'
5128 aomodules="coreaudio $aomodules"
5129 else
5130 def_coreaudio='#undef CONFIG_COREAUDIO'
5131 noaomodules="coreaudio $noaomodules"
5133 echores $_coreaudio
5134 fi #if darwin
5137 if irix; then
5138 echocheck "SGI audio"
5139 if test "$_sgiaudio" = auto ; then
5140 _sgiaudio=no
5141 header_check dmedia/audio.h && _sgiaudio=yes
5143 if test "$_sgiaudio" = "yes" ; then
5144 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5145 libs_mplayer="$libs_mplayer -laudio"
5146 aomodules="sgi $aomodules"
5147 else
5148 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5149 noaomodules="sgi $noaomodules"
5151 echores "$_sgiaudio"
5152 fi #if irix
5155 if os2 ; then
5156 echocheck "KAI (UNIAUD/DART)"
5157 if test "$_kai" = auto; then
5158 _kai=no;
5159 header_check_broken os2.h kai.h -lkai && _kai=yes
5161 if test "$_kai" = yes ; then
5162 def_kai='#define CONFIG_KAI 1'
5163 libs_mplayer="$libs_mplayer -lkai"
5164 aomodules="kai $aomodules"
5165 else
5166 def_kai='#undef CONFIG_KAI'
5167 noaomodules="kai $noaomodules"
5169 echores "$_kai"
5171 echocheck "DART"
5172 if test "$_dart" = auto; then
5173 _dart=no;
5174 header_check_broken os2.h dart.h -ldart && _dart=yes
5176 if test "$_dart" = yes ; then
5177 def_dart='#define CONFIG_DART 1'
5178 libs_mplayer="$libs_mplayer -ldart"
5179 aomodules="dart $aomodules"
5180 else
5181 def_dart='#undef CONFIG_DART'
5182 noaomodules="dart $noaomodules"
5184 echores "$_dart"
5185 fi #if os2
5188 # set default CD/DVD devices
5189 if win32 || os2 ; then
5190 default_cdrom_device="D:"
5191 elif darwin ; then
5192 default_cdrom_device="/dev/disk1"
5193 elif dragonfly ; then
5194 default_cdrom_device="/dev/cd0"
5195 elif freebsd ; then
5196 default_cdrom_device="/dev/acd0"
5197 elif openbsd ; then
5198 default_cdrom_device="/dev/rcd0c"
5199 elif sunos ; then
5200 default_cdrom_device="/vol/dev/aliases/cdrom0"
5201 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5202 # file system and the volfs service.
5203 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5204 elif amigaos ; then
5205 default_cdrom_device="a1ide.device:2"
5206 else
5207 default_cdrom_device="/dev/cdrom"
5210 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5211 default_dvd_device=$default_cdrom_device
5212 elif darwin ; then
5213 default_dvd_device="/dev/rdiskN"
5214 else
5215 default_dvd_device="/dev/dvd"
5219 echocheck "VCD support"
5220 if test "$_vcd" = auto; then
5221 _vcd=no
5222 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5223 _vcd=yes
5224 elif mingw32; then
5225 header_check ddk/ntddcdrm.h && _vcd=yes
5228 if test "$_vcd" = yes; then
5229 inputmodules="vcd $inputmodules"
5230 def_vcd='#define CONFIG_VCD 1'
5231 else
5232 def_vcd='#undef CONFIG_VCD'
5233 noinputmodules="vcd $noinputmodules"
5234 res_comment="not supported on this OS"
5236 echores "$_vcd"
5240 echocheck "Blu-ray support"
5241 if test "$_bluray" = auto ; then
5242 _bluray=no
5243 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5245 if test "$_bluray" = yes ; then
5246 def_bluray='#define CONFIG_LIBBLURAY 1'
5247 extra_ldflags="$extra_ldflags -lbluray"
5248 inputmodules="bluray $inputmodules"
5249 else
5250 def_bluray='#undef CONFIG_LIBBLURAY'
5251 noinputmodules="bluray $noinputmodules"
5253 echores "$_bluray"
5255 echocheck "dvdread"
5256 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5257 _dvdread_internal=no
5259 if test "$_dvdread_internal" = auto ; then
5260 _dvdread_internal=no
5261 _dvdread=no
5262 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5263 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5264 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5265 darwin || win32 || os2; then
5266 _dvdread_internal=yes
5267 _dvdread=yes
5268 extra_cflags="-Ilibdvdread4 $extra_cflags"
5270 elif test "$_dvdread" = auto ; then
5271 _dvdread=no
5272 if test "$_dl" = yes; then
5273 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5274 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5275 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5276 _dvdread=yes
5277 extra_cflags="$extra_cflags $_dvdreadcflags"
5278 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5279 res_comment="external"
5284 if test "$_dvdread_internal" = yes; then
5285 def_dvdread='#define CONFIG_DVDREAD 1'
5286 inputmodules="dvdread(internal) $inputmodules"
5287 _largefiles=yes
5288 res_comment="internal"
5289 elif test "$_dvdread" = yes; then
5290 def_dvdread='#define CONFIG_DVDREAD 1'
5291 _largefiles=yes
5292 extra_ldflags="$extra_ldflags -ldvdread"
5293 inputmodules="dvdread(external) $inputmodules"
5294 res_comment="external"
5295 else
5296 def_dvdread='#undef CONFIG_DVDREAD'
5297 noinputmodules="dvdread $noinputmodules"
5299 echores "$_dvdread"
5302 echocheck "internal libdvdcss"
5303 if test "$_libdvdcss_internal" = auto ; then
5304 _libdvdcss_internal=no
5305 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5306 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5308 if test "$_libdvdcss_internal" = yes ; then
5309 if linux || netbsd || openbsd || bsdos ; then
5310 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5311 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5312 elif freebsd || dragonfly ; then
5313 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5314 elif darwin ; then
5315 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5316 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5317 elif cygwin ; then
5318 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5319 elif beos ; then
5320 cflags_libdvdcss="-DSYS_BEOS"
5321 elif os2 ; then
5322 cflags_libdvdcss="-DSYS_OS2"
5324 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5325 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5326 inputmodules="libdvdcss(internal) $inputmodules"
5327 _largefiles=yes
5328 else
5329 noinputmodules="libdvdcss(internal) $noinputmodules"
5331 echores "$_libdvdcss_internal"
5334 echocheck "cdparanoia"
5335 if test "$_cdparanoia" = auto ; then
5336 cat > $TMPC <<EOF
5337 #include <cdda_interface.h>
5338 #include <cdda_paranoia.h>
5339 // This need a better test. How ?
5340 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5342 _cdparanoia=no
5343 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5344 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5345 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5346 done
5348 if test "$_cdparanoia" = yes ; then
5349 _cdda='yes'
5350 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5351 openbsd && extra_ldflags="$extra_ldflags -lutil"
5353 echores "$_cdparanoia"
5356 echocheck "libcdio"
5357 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5358 cat > $TMPC << EOF
5359 #include <stdio.h>
5360 #include <cdio/version.h>
5361 #include <cdio/cdda.h>
5362 #include <cdio/paranoia.h>
5363 int main(void) {
5364 void *test = cdda_verbose_set;
5365 printf("%s\n", CDIO_VERSION);
5366 return test == (void *)1;
5369 _libcdio=no
5370 for _ld_tmp in "" "-lwinmm" ; do
5371 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5372 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5373 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5374 done
5375 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5376 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5377 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5378 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5379 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5382 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5383 _cdda='yes'
5384 def_libcdio='#define CONFIG_LIBCDIO 1'
5385 def_havelibcdio='yes'
5386 else
5387 if test "$_cdparanoia" = yes ; then
5388 res_comment="using cdparanoia"
5390 def_libcdio='#undef CONFIG_LIBCDIO'
5391 def_havelibcdio='no'
5393 echores "$_libcdio"
5395 if test "$_cdda" = yes ; then
5396 test $_cddb = auto && test $networking = yes && _cddb=yes
5397 def_cdparanoia='#define CONFIG_CDDA 1'
5398 inputmodules="cdda $inputmodules"
5399 else
5400 def_cdparanoia='#undef CONFIG_CDDA'
5401 noinputmodules="cdda $noinputmodules"
5404 if test "$_cddb" = yes ; then
5405 def_cddb='#define CONFIG_CDDB 1'
5406 inputmodules="cddb $inputmodules"
5407 else
5408 _cddb=no
5409 def_cddb='#undef CONFIG_CDDB'
5410 noinputmodules="cddb $noinputmodules"
5413 echocheck "bitmap font support"
5414 if test "$_bitmap_font" = yes ; then
5415 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5416 else
5417 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5419 echores "$_bitmap_font"
5422 echocheck "freetype >= 2.0.9"
5424 # freetype depends on iconv
5425 if test "$_iconv" = no ; then
5426 _freetype=no
5427 res_comment="iconv support needed"
5430 if test "$_freetype" = auto ; then
5431 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5432 cat > $TMPC << EOF
5433 #include <stdio.h>
5434 #include <ft2build.h>
5435 #include FT_FREETYPE_H
5436 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5437 #error "Need FreeType 2.0.9 or newer"
5438 #endif
5439 int main(void) {
5440 FT_Library library;
5441 FT_Init_FreeType(&library);
5442 return 0;
5445 _freetype=no
5446 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5447 else
5448 _freetype=no
5450 if test "$_freetype" != yes ; then
5451 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5454 if test "$_freetype" = yes ; then
5455 def_freetype='#define CONFIG_FREETYPE 1'
5456 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5457 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5458 else
5459 def_freetype='#undef CONFIG_FREETYPE'
5461 echores "$_freetype"
5463 if test "$_freetype" = no ; then
5464 _fontconfig=no
5465 res_comment="FreeType support needed"
5467 echocheck "fontconfig"
5468 if test "$_fontconfig" = auto ; then
5469 cat > $TMPC << EOF
5470 #include <stdio.h>
5471 #include <stdlib.h>
5472 #include <fontconfig/fontconfig.h>
5473 #if FC_VERSION < 20402
5474 #error At least version 2.4.2 of fontconfig required
5475 #endif
5476 int main(void) {
5477 int err = FcInit();
5478 if (err == FcFalse) {
5479 printf("Couldn't initialize fontconfig lib\n");
5480 exit(err);
5482 return 0;
5485 _fontconfig=no
5486 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5487 _ld_tmp="-lfontconfig $_ld_tmp"
5488 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5489 done
5490 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5491 _inc_tmp=$($_pkg_config --cflags fontconfig)
5492 _ld_tmp=$($_pkg_config --libs fontconfig)
5493 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5494 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5496 if test "$_fontconfig" != yes ; then
5497 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5500 if test "$_fontconfig" = yes ; then
5501 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5502 else
5503 def_fontconfig='#undef CONFIG_FONTCONFIG'
5505 echores "$_fontconfig"
5508 echocheck "SSA/ASS support"
5509 if test "$_ass" = auto -o "$_ass" = yes ; then
5510 if $_pkg_config libass; then
5511 _ass=yes
5512 def_ass='#define CONFIG_ASS 1'
5513 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5514 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5515 else
5516 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-ass."
5518 else
5519 def_ass='#undef CONFIG_ASS'
5521 echores "$_ass"
5524 echocheck "fribidi with charsets"
5525 _inc_tmp=""
5526 _ld_tmp=""
5527 if test "$_fribidi" = auto ; then
5528 cat > $TMPC << EOF
5529 #include <stdlib.h>
5530 /* workaround for fribidi 0.10.4 and below */
5531 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5532 #include <fribidi/fribidi.h>
5533 int main(void) {
5534 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5535 exit(1);
5536 return 0;
5539 _fribidi=no
5540 _inc_tmp=""
5541 _ld_tmp="-lfribidi"
5542 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5543 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5544 test "$_fribidi" = no ; then
5545 _inc_tmp="$($_pkg_config --cflags)"
5546 _ld_tmp="$($_pkg_config --libs)"
5547 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5550 if test "$_fribidi" = yes ; then
5551 def_fribidi='#define CONFIG_FRIBIDI 1'
5552 extra_cflags="$extra_cflags $_inc_tmp"
5553 extra_ldflags="$extra_ldflags $_ld_tmp"
5554 else
5555 def_fribidi='#undef CONFIG_FRIBIDI'
5557 echores "$_fribidi"
5560 echocheck "ENCA"
5561 if test "$_enca" = auto ; then
5562 _enca=no
5563 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5565 if test "$_enca" = yes ; then
5566 def_enca='#define CONFIG_ENCA 1'
5567 extra_ldflags="$extra_ldflags -lenca"
5568 else
5569 def_enca='#undef CONFIG_ENCA'
5571 echores "$_enca"
5574 echocheck "zlib"
5575 _zlib=no
5576 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5577 if test "$_zlib" = yes ; then
5578 def_zlib='#define CONFIG_ZLIB 1'
5579 extra_ldflags="$extra_ldflags -lz"
5580 else
5581 def_zlib='#define CONFIG_ZLIB 0'
5583 echores "$_zlib"
5586 echocheck "RTC"
5587 if test "$_rtc" = auto ; then
5588 cat > $TMPC << EOF
5589 #include <sys/ioctl.h>
5590 #ifdef __linux__
5591 #include <linux/rtc.h>
5592 #else
5593 #include <rtc.h>
5594 #define RTC_PIE_ON RTCIO_PIE_ON
5595 #endif
5596 int main(void) { return RTC_PIE_ON; }
5598 _rtc=no
5599 cc_check && _rtc=yes
5600 ppc && _rtc=no
5602 if test "$_rtc" = yes ; then
5603 def_rtc='#define HAVE_RTC 1'
5604 else
5605 def_rtc='#undef HAVE_RTC'
5607 echores "$_rtc"
5610 echocheck "mad support"
5611 if test "$_mad" = auto ; then
5612 _mad=no
5613 header_check mad.h -lmad && _mad=yes
5615 if test "$_mad" = yes ; then
5616 def_mad='#define CONFIG_LIBMAD 1'
5617 extra_ldflags="$extra_ldflags -lmad"
5618 codecmodules="libmad $codecmodules"
5619 else
5620 def_mad='#undef CONFIG_LIBMAD'
5621 nocodecmodules="libmad $nocodecmodules"
5623 echores "$_mad"
5625 echocheck "OggVorbis support"
5626 if test "$_libvorbis" = auto; then
5627 _libvorbis=no
5628 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5629 elif test "$_libvorbis" = yes ; then
5630 _tremor=no
5632 if test "$_tremor" = auto; then
5633 _tremor=no
5634 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5636 if test "$_tremor" = yes ; then
5637 _vorbis=yes
5638 def_vorbis='#define CONFIG_OGGVORBIS 1'
5639 def_tremor='#define CONFIG_TREMOR 1'
5640 codecmodules="tremor(external) $codecmodules"
5641 res_comment="external Tremor"
5642 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5643 elif test "$_libvorbis" = yes ; then
5644 _vorbis=yes
5645 def_vorbis='#define CONFIG_OGGVORBIS 1'
5646 codecmodules="libvorbis $codecmodules"
5647 res_comment="libvorbis"
5648 extra_ldflags="$extra_ldflags -lvorbis -logg"
5649 else
5650 _vorbis=no
5651 nocodecmodules="libvorbis $nocodecmodules"
5653 echores "$_vorbis"
5655 echocheck "libspeex (version >= 1.1 required)"
5656 if test "$_speex" = auto ; then
5657 _speex=no
5658 cat > $TMPC << EOF
5659 #include <stddef.h>
5660 #include <speex/speex.h>
5661 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5663 cc_check -lspeex $_ld_lm && _speex=yes
5665 if test "$_speex" = yes ; then
5666 def_speex='#define CONFIG_SPEEX 1'
5667 extra_ldflags="$extra_ldflags -lspeex"
5668 codecmodules="speex $codecmodules"
5669 else
5670 def_speex='#undef CONFIG_SPEEX'
5671 nocodecmodules="speex $nocodecmodules"
5673 echores "$_speex"
5675 echocheck "OggTheora support"
5676 if test "$_theora" = auto ; then
5677 _theora=no
5678 cat > $TMPC << EOF
5679 #include <theora/theora.h>
5680 #include <string.h>
5681 int main(void) {
5682 /* Theora is in flux, make sure that all interface routines and datatypes
5683 * exist and work the way we expect it, so we don't break MPlayer. */
5684 ogg_packet op;
5685 theora_comment tc;
5686 theora_info inf;
5687 theora_state st;
5688 yuv_buffer yuv;
5689 int r;
5690 double t;
5692 theora_info_init(&inf);
5693 theora_comment_init(&tc);
5695 return 0;
5697 /* we don't want to execute this kind of nonsense; just for making sure
5698 * that compilation works... */
5699 memset(&op, 0, sizeof(op));
5700 r = theora_decode_header(&inf, &tc, &op);
5701 r = theora_decode_init(&st, &inf);
5702 t = theora_granule_time(&st, op.granulepos);
5703 r = theora_decode_packetin(&st, &op);
5704 r = theora_decode_YUVout(&st, &yuv);
5705 theora_clear(&st);
5707 return 0;
5710 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5711 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5712 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5713 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5714 if test _theora = no; then
5715 _ld_theora="-ltheora -logg"
5716 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5719 if test "$_theora" = yes ; then
5720 def_theora='#define CONFIG_OGGTHEORA 1'
5721 codecmodules="libtheora $codecmodules"
5722 # when --enable-theora is forced, we'd better provide a probably sane
5723 # $_ld_theora than nothing
5724 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5725 else
5726 def_theora='#undef CONFIG_OGGTHEORA'
5727 nocodecmodules="libtheora $nocodecmodules"
5729 echores "$_theora"
5731 # Any version of libmpg123 shall be fine.
5732 echocheck "mpg123 support"
5733 def_mpg123='#undef CONFIG_MPG123'
5734 if test "$_mpg123" = auto; then
5735 _mpg123=no
5736 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5738 if test "$_mpg123" = yes ; then
5739 def_mpg123='#define CONFIG_MPG123 1'
5740 codecmodules="mpg123 $codecmodules"
5741 else
5742 nocodecmodules="mpg123 $nocodecmodules"
5744 echores "$_mpg123"
5746 echocheck "liba52 support"
5747 def_liba52='#undef CONFIG_LIBA52'
5748 if test "$_liba52" = auto ; then
5749 _liba52=no
5750 cat > $TMPC << EOF
5751 #include <inttypes.h>
5752 #include <a52dec/a52.h>
5753 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5755 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5757 if test "$_liba52" = yes ; then
5758 def_liba52='#define CONFIG_LIBA52 1'
5759 codecmodules="liba52 $codecmodules"
5760 else
5761 nocodecmodules="liba52 $nocodecmodules"
5763 echores "$_liba52"
5765 echocheck "libdca support"
5766 if test "$_libdca" = auto ; then
5767 _libdca=no
5768 for _ld_dca in -ldca -ldts ; do
5769 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5770 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5771 done
5773 if test "$_libdca" = yes ; then
5774 def_libdca='#define CONFIG_LIBDCA 1'
5775 codecmodules="libdca $codecmodules"
5776 else
5777 def_libdca='#undef CONFIG_LIBDCA'
5778 nocodecmodules="libdca $nocodecmodules"
5780 echores "$_libdca"
5782 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5783 if test "$_musepack" = yes ; then
5784 _musepack=no
5785 cat > $TMPC << EOF
5786 #include <stddef.h>
5787 #include <mpcdec/mpcdec.h>
5788 int main(void) {
5789 mpc_streaminfo info;
5790 mpc_decoder decoder;
5791 mpc_decoder_set_streaminfo(&decoder, &info);
5792 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5793 return 0;
5796 cc_check -lmpcdec $_ld_lm && _musepack=yes
5798 if test "$_musepack" = yes ; then
5799 def_musepack='#define CONFIG_MUSEPACK 1'
5800 extra_ldflags="$extra_ldflags -lmpcdec"
5801 codecmodules="musepack $codecmodules"
5802 else
5803 def_musepack='#undef CONFIG_MUSEPACK'
5804 nocodecmodules="musepack $nocodecmodules"
5806 echores "$_musepack"
5809 echocheck "FAAD2 support"
5810 if test "$_faad" = auto ; then
5811 _faad=no
5812 cat > $TMPC << EOF
5813 #include <faad.h>
5814 #ifndef FAAD_MIN_STREAMSIZE
5815 #error Too old version
5816 #endif
5817 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5818 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5820 cc_check -lfaad $_ld_lm && _faad=yes
5823 def_faad='#undef CONFIG_FAAD'
5824 if test "$_faad" = yes ; then
5825 def_faad='#define CONFIG_FAAD 1'
5826 extra_ldflags="$extra_ldflags -lfaad"
5827 codecmodules="faad2 $codecmodules"
5828 else
5829 nocodecmodules="faad2 $nocodecmodules"
5831 echores "$_faad"
5834 echocheck "LADSPA plugin support"
5835 if test "$_ladspa" = auto ; then
5836 _ladspa=no
5837 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5839 if test "$_ladspa" = yes; then
5840 def_ladspa="#define CONFIG_LADSPA 1"
5841 else
5842 def_ladspa="#undef CONFIG_LADSPA"
5844 echores "$_ladspa"
5847 echocheck "libbs2b audio filter support"
5848 if test "$_libbs2b" = auto ; then
5849 cat > $TMPC <<EOF
5850 #include <bs2b.h>
5851 #if BS2B_VERSION_MAJOR < 3
5852 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5853 #endif
5854 int main(void) {
5855 t_bs2bdp filter;
5856 filter=bs2b_open();
5857 bs2b_close(filter);
5858 return 0;
5861 _libbs2b=no
5862 if $_pkg_config --exists libbs2b ; then
5863 _inc_tmp=$($_pkg_config --cflags libbs2b)
5864 _ld_tmp=$($_pkg_config --libs libbs2b)
5865 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5866 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5867 else
5868 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5869 -I/usr/local/include/bs2b ; do
5870 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5871 extra_ldflags="$extra_ldflags -lbs2b"
5872 extra_cflags="$extra_cflags $_inc_tmp"
5873 _libbs2b=yes
5874 break
5876 done
5879 def_libbs2b="#undef CONFIG_LIBBS2B"
5880 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5881 echores "$_libbs2b"
5884 if test -z "$_codecsdir" ; then
5885 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5886 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5887 if test -d "$dir" ; then
5888 _codecsdir="$dir"
5889 break;
5891 done
5893 # Fall back on default directory.
5894 if test -z "$_codecsdir" ; then
5895 _codecsdir="$_libdir/codecs"
5896 mingw32 || os2 && _codecsdir="codecs"
5900 echocheck "Win32 codecs"
5901 if test "$_win32dll" = auto ; then
5902 _win32dll=no
5903 if x86_32 && ! qnx; then
5904 _win32dll=yes
5907 if test "$_win32dll" = yes ; then
5908 def_win32dll='#define CONFIG_WIN32DLL 1'
5909 if ! win32 ; then
5910 def_win32_loader='#define WIN32_LOADER 1'
5911 _win32_emulation=yes
5912 else
5913 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5914 res_comment="using native windows"
5916 codecmodules="win32 $codecmodules"
5917 else
5918 def_win32dll='#undef CONFIG_WIN32DLL'
5919 def_win32_loader='#undef WIN32_LOADER'
5920 nocodecmodules="win32 $nocodecmodules"
5922 echores "$_win32dll"
5925 echocheck "XAnim codecs"
5926 if test "$_xanim" = auto ; then
5927 _xanim=no
5928 res_comment="dynamic loader support needed"
5929 if test "$_dl" = yes ; then
5930 _xanim=yes
5933 if test "$_xanim" = yes ; then
5934 def_xanim='#define CONFIG_XANIM 1'
5935 codecmodules="xanim $codecmodules"
5936 else
5937 def_xanim='#undef CONFIG_XANIM'
5938 nocodecmodules="xanim $nocodecmodules"
5940 echores "$_xanim"
5943 echocheck "RealPlayer codecs"
5944 if test "$_real" = auto ; then
5945 _real=no
5946 res_comment="dynamic loader support needed"
5947 if test "$_dl" = yes || test "$_win32dll" = yes &&
5948 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5949 _real=yes
5952 if test "$_real" = yes ; then
5953 def_real='#define CONFIG_REALCODECS 1'
5954 codecmodules="real $codecmodules"
5955 else
5956 def_real='#undef CONFIG_REALCODECS'
5957 nocodecmodules="real $nocodecmodules"
5959 echores "$_real"
5962 echocheck "QuickTime codecs"
5963 _qtx_emulation=no
5964 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5965 if test "$_qtx" = auto ; then
5966 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5968 if test "$_qtx" = yes ; then
5969 def_qtx='#define CONFIG_QTX_CODECS 1'
5970 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5971 codecmodules="qtx $codecmodules"
5972 darwin || win32 || _qtx_emulation=yes
5973 else
5974 def_qtx='#undef CONFIG_QTX_CODECS'
5975 nocodecmodules="qtx $nocodecmodules"
5977 echores "$_qtx"
5979 echocheck "Nemesi Streaming Media libraries"
5980 if test "$_nemesi" = auto && test "$networking" = yes ; then
5981 _nemesi=no
5982 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
5983 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
5984 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
5985 _nemesi=yes
5988 if test "$_nemesi" = yes; then
5989 _native_rtsp=no
5990 def_nemesi='#define CONFIG_LIBNEMESI 1'
5991 inputmodules="nemesi $inputmodules"
5992 else
5993 _native_rtsp="$networking"
5994 _nemesi=no
5995 def_nemesi='#undef CONFIG_LIBNEMESI'
5996 noinputmodules="nemesi $noinputmodules"
5998 echores "$_nemesi"
6000 echocheck "LIVE555 Streaming Media libraries"
6001 if test "$_live" = auto && test "$networking" = yes ; then
6002 cat > $TMPCPP << EOF
6003 #include <liveMedia.hh>
6004 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6005 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6006 #endif
6007 int main(void) { return 0; }
6010 _live=no
6011 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
6012 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
6013 _livelibdir=$(echo $I| sed s/-I//) &&
6014 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6015 $_livelibdir/groupsock/libgroupsock.a \
6016 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6017 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6018 $extra_ldflags -lstdc++" \
6019 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6020 -I$_livelibdir/UsageEnvironment/include \
6021 -I$_livelibdir/BasicUsageEnvironment/include \
6022 -I$_livelibdir/groupsock/include" &&
6023 _live=yes && break
6024 done
6025 if test "$_live" != yes ; then
6026 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6027 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6028 _live_dist=yes
6032 if test "$_live" = yes && test "$networking" = yes; then
6033 test $_livelibdir && res_comment="using $_livelibdir"
6034 def_live='#define CONFIG_LIVE555 1'
6035 inputmodules="live555 $inputmodules"
6036 elif test "$_live_dist" = yes && test "$networking" = yes; then
6037 res_comment="using distribution version"
6038 _live="yes"
6039 def_live='#define CONFIG_LIVE555 1'
6040 extra_ldflags="$extra_ldflags $ld_tmp"
6041 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6042 inputmodules="live555 $inputmodules"
6043 else
6044 _live=no
6045 def_live='#undef CONFIG_LIVE555'
6046 noinputmodules="live555 $noinputmodules"
6048 echores "$_live"
6052 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6053 echocheck "FFmpeg ($all_ffmpeg_libs)"
6054 if test "$ffmpeg" = auto ; then
6055 ffmpeg=no
6056 if $_pkg_config --exists $all_ffmpeg_libs ; then
6057 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6058 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6059 extra_ldflags="$extra_ldflags $_ld_tmp"
6060 extra_cflags="$extra_cflags $inc_ffmpeg"
6061 ffmpeg=yes
6062 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6063 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6064 ffmpeg=yes
6065 else
6066 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."
6070 ffmpeg_eval_api=no
6071 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6072 if test "$ffmpeg" = yes; then
6073 def_ffmpeg='#define CONFIG_FFMPEG 1'
6074 codecmodules="ffmpeg $codecmodules"
6075 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6076 ffmpeg_eval_api=yes
6077 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6079 else
6080 def_ffmpeg='#undef CONFIG_FFMPEG'
6081 nocodecmodules="ffmpeg $nocodecmodules"
6083 echores "$ffmpeg"
6085 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6086 if ! test -z "$_ffmpeg_source" ; then
6087 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6092 echocheck "libdv-0.9.5+"
6093 if test "$_libdv" = auto ; then
6094 _libdv=no
6095 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6097 if test "$_libdv" = yes ; then
6098 def_libdv='#define CONFIG_LIBDV095 1'
6099 extra_ldflags="$extra_ldflags -ldv"
6100 codecmodules="libdv $codecmodules"
6101 else
6102 def_libdv='#undef CONFIG_LIBDV095'
6103 nocodecmodules="libdv $nocodecmodules"
6105 echores "$_libdv"
6108 echocheck "Xvid"
6109 if test "$_xvid" = auto ; then
6110 _xvid=no
6111 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6112 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6113 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6114 done
6117 if test "$_xvid" = yes ; then
6118 def_xvid='#define CONFIG_XVID4 1'
6119 codecmodules="xvid $codecmodules"
6120 else
6121 def_xvid='#undef CONFIG_XVID4'
6122 nocodecmodules="xvid $nocodecmodules"
6124 echores "$_xvid"
6127 echocheck "libnut"
6128 if test "$_libnut" = auto ; then
6129 _libnut=no
6130 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6133 if test "$_libnut" = yes ; then
6134 def_libnut='#define CONFIG_LIBNUT 1'
6135 extra_ldflags="$extra_ldflags -lnut"
6136 else
6137 def_libnut='#undef CONFIG_LIBNUT'
6139 echores "$_libnut"
6141 # These VO checks must be done after the FFmpeg one
6142 echocheck "/dev/mga_vid"
6143 if test "$_mga" = auto ; then
6144 _mga=no
6145 test -c /dev/mga_vid && _mga=yes
6147 if test "$_mga" = yes ; then
6148 def_mga='#define CONFIG_MGA 1'
6149 vomodules="mga $vomodules"
6150 else
6151 def_mga='#undef CONFIG_MGA'
6152 novomodules="mga $novomodules"
6154 echores "$_mga"
6157 echocheck "xmga"
6158 if test "$_xmga" = auto ; then
6159 _xmga=no
6160 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6162 if test "$_xmga" = yes ; then
6163 def_xmga='#define CONFIG_XMGA 1'
6164 vomodules="xmga $vomodules"
6165 else
6166 def_xmga='#undef CONFIG_XMGA'
6167 novomodules="xmga $novomodules"
6169 echores "$_xmga"
6172 echocheck "UnRAR executable"
6173 if test "$_unrar_exec" = auto ; then
6174 _unrar_exec="yes"
6175 mingw32 && _unrar_exec="no"
6177 if test "$_unrar_exec" = yes ; then
6178 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6179 else
6180 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6182 echores "$_unrar_exec"
6184 echocheck "TV interface"
6185 if test "$_tv" = yes ; then
6186 def_tv='#define CONFIG_TV 1'
6187 inputmodules="tv $inputmodules"
6188 else
6189 noinputmodules="tv $noinputmodules"
6190 def_tv='#undef CONFIG_TV'
6192 echores "$_tv"
6195 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6196 echocheck "*BSD BT848 bt8xx header"
6197 _ioctl_bt848_h=no
6198 for file in "machine/ioctl_bt848.h" \
6199 "dev/bktr/ioctl_bt848.h" \
6200 "dev/video/bktr/ioctl_bt848.h" \
6201 "dev/ic/bt8xx.h" ; do
6202 cat > $TMPC <<EOF
6203 #include <sys/types.h>
6204 #include <sys/ioctl.h>
6205 #include <$file>
6206 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6208 if cc_check ; then
6209 _ioctl_bt848_h=yes
6210 _ioctl_bt848_h_name="$file"
6211 break;
6213 done
6214 if test "$_ioctl_bt848_h" = yes ; then
6215 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6216 res_comment="using $_ioctl_bt848_h_name"
6217 else
6218 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6220 echores "$_ioctl_bt848_h"
6222 echocheck "*BSD ioctl_meteor.h"
6223 _ioctl_meteor_h=no
6224 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6225 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6226 _ioctl_meteor_h=yes && break
6227 done
6228 if test "$_ioctl_meteor_h" = yes ; then
6229 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6230 res_comment="using $ioctl_meteor_h_path"
6231 else
6232 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6234 echores "$_ioctl_meteor_h"
6236 echocheck "*BSD BrookTree 848 TV interface"
6237 if test "$_tv_bsdbt848" = auto ; then
6238 _tv_bsdbt848=no
6239 if test "$_tv" = yes ; then
6240 cat > $TMPC <<EOF
6241 #include <sys/types.h>
6242 $def_ioctl_meteor_h_name
6243 $def_ioctl_bt848_h_name
6244 #ifdef IOCTL_METEOR_H_NAME
6245 #include IOCTL_METEOR_H_NAME
6246 #endif
6247 #ifdef IOCTL_BT848_H_NAME
6248 #include IOCTL_BT848_H_NAME
6249 #endif
6250 int main(void) {
6251 ioctl(0, METEORSINPUT, 0);
6252 ioctl(0, TVTUNER_GETFREQ, 0);
6253 return 0;
6256 cc_check && _tv_bsdbt848=yes
6259 if test "$_tv_bsdbt848" = yes ; then
6260 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6261 inputmodules="tv-bsdbt848 $inputmodules"
6262 else
6263 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6264 noinputmodules="tv-bsdbt848 $noinputmodules"
6266 echores "$_tv_bsdbt848"
6267 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6270 echocheck "DirectShow TV interface"
6271 if test "$_tv_dshow" = auto ; then
6272 _tv_dshow=no
6273 if test "$_tv" = yes && win32 ; then
6274 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6277 if test "$_tv_dshow" = yes ; then
6278 inputmodules="tv-dshow $inputmodules"
6279 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6280 extra_ldflags="$extra_ldflags -lole32 -luuid"
6281 else
6282 noinputmodules="tv-dshow $noinputmodules"
6283 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6285 echores "$_tv_dshow"
6288 echocheck "Video 4 Linux TV interface"
6289 if test "$_tv_v4l1" = auto ; then
6290 _tv_v4l1=no
6291 if test "$_tv" = yes && linux ; then
6292 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6295 if test "$_tv_v4l1" = yes ; then
6296 _audio_input=yes
6297 _tv_v4l=yes
6298 def_tv_v4l='#define CONFIG_TV_V4L 1'
6299 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6300 inputmodules="tv-v4l $inputmodules"
6301 else
6302 noinputmodules="tv-v4l1 $noinputmodules"
6303 def_tv_v4l='#undef CONFIG_TV_V4L'
6305 echores "$_tv_v4l1"
6308 echocheck "Video 4 Linux 2 TV interface"
6309 if test "$_tv_v4l2" = auto ; then
6310 _tv_v4l2=no
6311 if test "$_tv" = yes && linux ; then
6312 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6315 if test "$_tv_v4l2" = yes ; then
6316 _audio_input=yes
6317 _tv_v4l=yes
6318 def_tv_v4l='#define CONFIG_TV_V4L 1'
6319 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6320 inputmodules="tv-v4l2 $inputmodules"
6321 else
6322 noinputmodules="tv-v4l2 $noinputmodules"
6323 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6325 echores "$_tv_v4l2"
6328 echocheck "Radio interface"
6329 if test "$_radio" = yes ; then
6330 def_radio='#define CONFIG_RADIO 1'
6331 inputmodules="radio $inputmodules"
6332 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6333 _radio_capture=no
6335 if test "$_radio_capture" = yes ; then
6336 _audio_input=yes
6337 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6338 else
6339 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6341 else
6342 noinputmodules="radio $noinputmodules"
6343 def_radio='#undef CONFIG_RADIO'
6344 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6345 _radio_capture=no
6347 echores "$_radio"
6348 echocheck "Capture for Radio interface"
6349 echores "$_radio_capture"
6351 echocheck "Video 4 Linux 2 Radio interface"
6352 if test "$_radio_v4l2" = auto ; then
6353 _radio_v4l2=no
6354 if test "$_radio" = yes && linux ; then
6355 header_check linux/videodev2.h && _radio_v4l2=yes
6358 if test "$_radio_v4l2" = yes ; then
6359 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6360 else
6361 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6363 echores "$_radio_v4l2"
6365 echocheck "Video 4 Linux Radio interface"
6366 if test "$_radio_v4l" = auto ; then
6367 _radio_v4l=no
6368 if test "$_radio" = yes && linux ; then
6369 header_check linux/videodev.h && _radio_v4l=yes
6372 if test "$_radio_v4l" = yes ; then
6373 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6374 else
6375 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6377 echores "$_radio_v4l"
6379 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6380 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6381 echocheck "*BSD BrookTree 848 Radio interface"
6382 _radio_bsdbt848=no
6383 cat > $TMPC <<EOF
6384 #include <sys/types.h>
6385 $def_ioctl_bt848_h_name
6386 #ifdef IOCTL_BT848_H_NAME
6387 #include IOCTL_BT848_H_NAME
6388 #endif
6389 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6391 cc_check && _radio_bsdbt848=yes
6392 echores "$_radio_bsdbt848"
6393 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6395 if test "$_radio_bsdbt848" = yes ; then
6396 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6397 else
6398 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6401 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6402 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6403 die "Radio driver requires BSD BT848, V4L or V4L2!"
6406 echocheck "Video 4 Linux 2 MPEG PVR interface"
6407 if test "$_pvr" = auto ; then
6408 _pvr=no
6409 if test "$_tv_v4l2" = yes && linux ; then
6410 cat > $TMPC <<EOF
6411 #include <sys/time.h>
6412 #include <linux/videodev2.h>
6413 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6415 cc_check && _pvr=yes
6418 if test "$_pvr" = yes ; then
6419 def_pvr='#define CONFIG_PVR 1'
6420 inputmodules="pvr $inputmodules"
6421 else
6422 noinputmodules="pvr $noinputmodules"
6423 def_pvr='#undef CONFIG_PVR'
6425 echores "$_pvr"
6428 echocheck "ftp"
6429 if test "$_ftp" = "auto" ; then
6430 test "$networking" = "yes" && ! beos && _ftp=yes
6432 if test "$_ftp" = yes ; then
6433 def_ftp='#define CONFIG_FTP 1'
6434 inputmodules="ftp $inputmodules"
6435 else
6436 noinputmodules="ftp $noinputmodules"
6437 def_ftp='#undef CONFIG_FTP'
6439 echores "$_ftp"
6441 echocheck "vstream client"
6442 if test "$_vstream" = auto ; then
6443 _vstream=no
6444 cat > $TMPC <<EOF
6445 #include <vstream-client.h>
6446 void vstream_error(const char *format, ... ) {}
6447 int main(void) { vstream_start(); return 0; }
6449 cc_check -lvstream-client && _vstream=yes
6451 if test "$_vstream" = yes ; then
6452 def_vstream='#define CONFIG_VSTREAM 1'
6453 inputmodules="vstream $inputmodules"
6454 extra_ldflags="$extra_ldflags -lvstream-client"
6455 else
6456 noinputmodules="vstream $noinputmodules"
6457 def_vstream='#undef CONFIG_VSTREAM'
6459 echores "$_vstream"
6462 echocheck "OSD menu"
6463 if test "$_menu" = yes ; then
6464 def_menu='#define CONFIG_MENU 1'
6465 test $_dvbin = "yes" && _menu_dvbin=yes
6466 else
6467 def_menu='#undef CONFIG_MENU'
6468 _menu_dvbin=no
6470 echores "$_menu"
6473 echocheck "Subtitles sorting"
6474 if test "$_sortsub" = yes ; then
6475 def_sortsub='#define CONFIG_SORTSUB 1'
6476 else
6477 def_sortsub='#undef CONFIG_SORTSUB'
6479 echores "$_sortsub"
6482 echocheck "XMMS inputplugin support"
6483 if test "$_xmms" = yes ; then
6484 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6485 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6486 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6487 else
6488 _xmmsplugindir=/usr/lib/xmms/Input
6489 _xmmslibdir=/usr/lib
6492 def_xmms='#define CONFIG_XMMS 1'
6493 if darwin ; then
6494 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6495 else
6496 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6498 else
6499 def_xmms='#undef CONFIG_XMMS'
6501 echores "$_xmms"
6503 if test "$_charset" != "noconv" ; then
6504 def_charset="#define MSG_CHARSET \"$_charset\""
6505 else
6506 def_charset="#undef MSG_CHARSET"
6507 _charset="UTF-8"
6510 #############################################################################
6512 echocheck "automatic gdb attach"
6513 if test "$_crash_debug" = yes ; then
6514 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6515 else
6516 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6517 _crash_debug=no
6519 echores "$_crash_debug"
6521 echocheck "compiler support for noexecstack"
6522 if cflag_check -Wl,-z,noexecstack ; then
6523 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6524 echores "yes"
6525 else
6526 echores "no"
6529 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6530 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6531 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6532 echores "yes"
6533 else
6534 echores "no"
6538 # Dynamic linking flags
6539 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6540 _ld_dl_dynamic=''
6541 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6542 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6543 _ld_dl_dynamic='-rdynamic'
6546 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6547 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6548 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6550 def_debug='#undef MP_DEBUG'
6551 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6554 echocheck "joystick"
6555 def_joystick='#undef CONFIG_JOYSTICK'
6556 if test "$_joystick" = yes ; then
6557 if linux || freebsd ; then
6558 # TODO add some check
6559 def_joystick='#define CONFIG_JOYSTICK 1'
6560 else
6561 _joystick="no"
6562 res_comment="unsupported under $system_name"
6565 echores "$_joystick"
6567 echocheck "lirc"
6568 if test "$_lirc" = auto ; then
6569 _lirc=no
6570 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6572 if test "$_lirc" = yes ; then
6573 def_lirc='#define CONFIG_LIRC 1'
6574 libs_mplayer="$libs_mplayer -llirc_client"
6575 else
6576 def_lirc='#undef CONFIG_LIRC'
6578 echores "$_lirc"
6580 echocheck "lircc"
6581 if test "$_lircc" = auto ; then
6582 _lircc=no
6583 header_check lirc/lircc.h -llircc && _lircc=yes
6585 if test "$_lircc" = yes ; then
6586 def_lircc='#define CONFIG_LIRCC 1'
6587 libs_mplayer="$libs_mplayer -llircc"
6588 else
6589 def_lircc='#undef CONFIG_LIRCC'
6591 echores "$_lircc"
6593 #############################################################################
6595 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6596 # the OMF format needs to come after the 'extern symbol prefix' check, which
6597 # uses nm.
6598 if os2 ; then
6599 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6602 #############################################################################
6603 # 64 bit file offsets?
6604 if test "$_largefiles" = yes || freebsd ; then
6605 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
6606 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
6607 # dvdread support requires this (for off64_t)
6608 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
6612 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6614 # This must be the last test to be performed. Any other tests following it
6615 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6616 # against libdvdread (to permit MPlayer to use its own copy of the library).
6617 # So any compilation using the flags added here but not linking against
6618 # libdvdread can fail.
6619 echocheck "DVD support (libdvdnav)"
6620 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6621 _dvdnav=no
6623 dvdnav_internal=no
6624 if test "$_dvdnav" = auto ; then
6625 if test "$_dvdread_internal" = yes ; then
6626 _dvdnav=yes
6627 dvdnav_internal=yes
6628 res_comment="internal"
6629 else
6630 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6633 if test "$_dvdnav" = auto ; then
6634 _dvdnav=no
6635 _dvdnavdir=$($_dvdnavconfig --cflags)
6636 _dvdnavlibs=$($_dvdnavconfig --libs)
6637 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6639 if test "$_dvdnav" = yes ; then
6640 _largefiles=yes
6641 def_dvdnav='#define CONFIG_DVDNAV 1'
6642 if test "$dvdnav_internal" = yes ; then
6643 cflags_libdvdnav="-Ilibdvdnav"
6644 inputmodules="dvdnav(internal) $inputmodules"
6645 else
6646 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6647 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6648 inputmodules="dvdnav $inputmodules"
6650 else
6651 def_dvdnav='#undef CONFIG_DVDNAV'
6652 noinputmodules="dvdnav $noinputmodules"
6654 echores "$_dvdnav"
6656 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6657 # Read dvdnav comment above.
6659 mak_enable () {
6660 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6661 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6662 nprefix=$3;
6663 for part in $list; do
6664 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6665 echo "${nprefix}_$part = yes"
6667 done
6670 #############################################################################
6671 echo "Creating config.mak"
6672 cat > config.mak << EOF
6673 # -------- Generated by configure -----------
6675 # Ensure that locale settings do not interfere with shell commands.
6676 export LC_ALL = C
6678 CONFIGURATION = $configuration
6680 CHARSET = $_charset
6681 DOC_LANGS = $language_doc
6682 DOC_LANG_ALL = $doc_lang_all
6683 MAN_LANGS = $language_man
6684 MAN_LANG_ALL = $man_lang_all
6685 MSG_LANGS = $language_msg
6686 MSG_LANG_ALL = $msg_lang_all
6688 prefix = \$(DESTDIR)$_prefix
6689 BINDIR = \$(DESTDIR)$_bindir
6690 DATADIR = \$(DESTDIR)$_datadir
6691 LIBDIR = \$(DESTDIR)$_libdir
6692 MANDIR = \$(DESTDIR)$_mandir
6693 CONFDIR = \$(DESTDIR)$_confdir
6694 LOCALEDIR = \$(DESTDIR)$_localedir
6696 AR = $_ar
6697 AS = $_cc
6698 CC = $_cc
6699 CXX = $_cc
6700 HOST_CC = $_host_cc
6701 INSTALL = $_install
6702 INSTALLSTRIP = $_install_strip
6703 WINDRES = $_windres
6705 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6706 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6707 DEPFLAGS = $DEPFLAGS
6709 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6710 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6711 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6712 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6713 CFLAGS_STACKREALIGN = $cflags_stackrealign
6715 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6716 EXTRALIBS_MPLAYER = $libs_mplayer
6718 GETCH = $_getch
6719 TIMER = $_timer
6721 EXESUF = $_exesuf
6722 EXESUFS_ALL = .exe
6724 ARCH = $arch
6725 $(mak_enable "$arch_all" "$arch" ARCH)
6726 $(mak_enable "$subarch_all" "$subarch" ARCH)
6727 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6729 MPLAYER = $_mplayer
6731 NEED_GETTIMEOFDAY = $need_gettimeofday
6732 NEED_GLOB = $need_glob
6733 NEED_MMAP = $need_mmap
6734 NEED_SETENV = $need_setenv
6735 NEED_SHMEM = $need_shmem
6736 NEED_STRSEP = $need_strsep
6737 NEED_SWAB = $need_swab
6738 NEED_VSSCANF = $need_vsscanf
6740 # features
6741 3DFX = $_3dfx
6742 AA = $_aa
6743 ALSA1X = $_alsa1x
6744 ALSA9 = $_alsa9
6745 ALSA5 = $_alsa5
6746 APPLE_IR = $_apple_ir
6747 APPLE_REMOTE = $_apple_remote
6748 ARTS = $_arts
6749 AUDIO_INPUT = $_audio_input
6750 BITMAP_FONT = $_bitmap_font
6751 BL = $_bl
6752 CACA = $_caca
6753 CDDA = $_cdda
6754 CDDB = $_cddb
6755 COREAUDIO = $_coreaudio
6756 COREVIDEO = $_corevideo
6757 DART = $_dart
6758 DGA = $_dga
6759 DIRECT3D = $_direct3d
6760 DIRECTFB = $_directfb
6761 DIRECTX = $_directx
6762 DVBIN = $_dvbin
6763 DVDNAV = $_dvdnav
6764 DVDNAV_INTERNAL = $dvdnav_internal
6765 DVDREAD = $_dvdread
6766 DVDREAD_INTERNAL = $_dvdread_internal
6767 DXR3 = $_dxr3
6768 ESD = $_esd
6769 FAAD = $_faad
6770 FASTMEMCPY = $_fastmemcpy
6771 FBDEV = $_fbdev
6772 FREETYPE = $_freetype
6773 FTP = $_ftp
6774 GIF = $_gif
6775 GGI = $_ggi
6776 GL = $_gl
6777 GL_WIN32 = $_gl_win32
6778 GL_X11 = $_gl_x11
6779 GL_SDL = $_gl_sdl
6780 MATRIXVIEW = $matrixview
6781 HAVE_POSIX_SELECT = $_posix_select
6782 HAVE_SYS_MMAN_H = $_mman
6783 IVTV = $_ivtv
6784 JACK = $_jack
6785 JOYSTICK = $_joystick
6786 JPEG = $_jpeg
6787 KAI = $_kai
6788 KVA = $_kva
6789 LADSPA = $_ladspa
6790 LIBA52 = $_liba52
6791 LIBASS = $_ass
6792 LIBBLURAY = $_bluray
6793 LIBBS2B = $_libbs2b
6794 LIBDCA = $_libdca
6795 LIBDV = $_libdv
6796 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6797 LIBMAD = $_mad
6798 LIBMENU = $_menu
6799 LIBMENU_DVBIN = $_menu_dvbin
6800 LIBNEMESI = $_nemesi
6801 LIBNUT = $_libnut
6802 LIBSMBCLIENT = $_smb
6803 LIBTHEORA = $_theora
6804 LIRC = $_lirc
6805 LIVE555 = $_live
6806 MACOSX_FINDER = $_macosx_finder
6807 MD5SUM = $_md5sum
6808 MGA = $_mga
6809 MNG = $_mng
6810 MPG123 = $_mpg123
6811 MUSEPACK = $_musepack
6812 NAS = $_nas
6813 NATIVE_RTSP = $_native_rtsp
6814 NETWORKING = $networking
6815 OPENAL = $_openal
6816 OSS = $_ossaudio
6817 PE_EXECUTABLE = $_pe_executable
6818 PNG = $_png
6819 PNM = $_pnm
6820 PRIORITY = $_priority
6821 PULSE = $_pulse
6822 PVR = $_pvr
6823 QTX_CODECS = $_qtx
6824 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6825 QTX_EMULATION = $_qtx_emulation
6826 QUARTZ = $_quartz
6827 RADIO=$_radio
6828 RADIO_CAPTURE=$_radio_capture
6829 REAL_CODECS = $_real
6830 S3FB = $_s3fb
6831 SDL = $_sdl
6832 SPEEX = $_speex
6833 STREAM_CACHE = $_stream_cache
6834 SGIAUDIO = $_sgiaudio
6835 SUNAUDIO = $_sunaudio
6836 SVGA = $_svga
6837 TDFXFB = $_tdfxfb
6838 TDFXVID = $_tdfxvid
6839 TGA = $_tga
6840 TV = $_tv
6841 TV_BSDBT848 = $_tv_bsdbt848
6842 TV_DSHOW = $_tv_dshow
6843 TV_V4L = $_tv_v4l
6844 TV_V4L1 = $_tv_v4l1
6845 TV_V4L2 = $_tv_v4l2
6846 UNRAR_EXEC = $_unrar_exec
6847 V4L2 = $_v4l2
6848 VCD = $_vcd
6849 VDPAU = $_vdpau
6850 VESA = $_vesa
6851 VORBIS = $_vorbis
6852 VSTREAM = $_vstream
6853 WII = $_wii
6854 WIN32DLL = $_win32dll
6855 WIN32WAVEOUT = $_win32waveout
6856 WIN32_EMULATION = $_win32_emulation
6857 X11 = $_x11
6858 XANIM_CODECS = $_xanim
6859 XMGA = $_xmga
6860 XMMS_PLUGINS = $_xmms
6861 XV = $_xv
6862 XVID4 = $_xvid
6863 XVMC = $_xvmc
6864 XVR100 = $_xvr100
6865 YUV4MPEG = $_yuv4mpeg
6867 # FFmpeg
6868 FFMPEG = $ffmpeg
6869 FFMPEG_EVAL_API = $ffmpeg_eval_api
6870 FFMPEG_INTERNALS = $ffmpeg_internals
6871 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6873 RANLIB = $_ranlib
6874 YASM = $_yasm
6875 YASMFLAGS = $YASMFLAGS
6877 CONFIG_VDPAU = $_vdpau
6878 CONFIG_XVMC = $_xvmc
6879 CONFIG_ZLIB = $_zlib
6881 HAVE_PTHREADS = $_pthreads
6882 HAVE_SHM = $_shm
6883 HAVE_W32THREADS = $_w32threads
6884 HAVE_YASM = $have_yasm
6888 #############################################################################
6890 ff_config_enable () {
6891 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6892 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6893 _nprefix=$3;
6894 test -z "$_nprefix" && _nprefix='CONFIG'
6895 for part in $list; do
6896 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6897 echo "#define ${_nprefix}_$part 1"
6898 else
6899 echo "#define ${_nprefix}_$part 0"
6901 done
6904 echo "Creating config.h"
6905 cat > $TMPH << EOF
6906 /*----------------------------------------------------------------------------
6907 ** This file has been automatically generated by configure any changes in it
6908 ** will be lost when you run configure again.
6909 ** Instead of modifying definitions here, use the --enable/--disable options
6910 ** of the configure script! See ./configure --help for details.
6911 *---------------------------------------------------------------------------*/
6913 #ifndef MPLAYER_CONFIG_H
6914 #define MPLAYER_CONFIG_H
6916 /* Undefine this if you do not want to select mono audio (left or right)
6917 with a stereo MPEG layer 2/3 audio stream. The command line option
6918 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6919 right-only), with 0 being the default.
6921 #define CONFIG_FAKE_MONO 1
6923 /* set up audio OUTBURST. Do not change this! */
6924 #define OUTBURST 512
6926 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6927 #undef FAST_OSD
6928 #undef FAST_OSD_TABLE
6932 #define CONFIGURATION "$configuration"
6934 #define MPLAYER_DATADIR "$_datadir"
6935 #define MPLAYER_CONFDIR "$_confdir"
6936 #define MPLAYER_LIBDIR "$_libdir"
6937 #define MPLAYER_LOCALEDIR "$_localedir"
6939 $def_translation
6941 /* definitions needed by included libraries */
6942 #define HAVE_INTTYPES_H 1
6943 /* libdvdcss */
6944 #define HAVE_ERRNO_H 1
6945 /* libdvdcss + libdvdread */
6946 #define HAVE_LIMITS_H 1
6947 /* libdvdcss */
6948 #define HAVE_UNISTD_H 1
6949 /* libdvdread */
6950 #define STDC_HEADERS 1
6951 #define HAVE_MEMCPY 1
6952 /* libdvdnav */
6953 #define READ_CACHE_TRACE 0
6954 /* libdvdread */
6955 #define HAVE_DLFCN_H 1
6956 $def_dvdcss
6959 /* system headers */
6960 $def_alloca_h
6961 $def_alsa_asoundlib_h
6962 $def_altivec_h
6963 $def_malloc_h
6964 $def_mman_h
6965 $def_mman_has_map_failed
6966 $def_soundcard_h
6967 $def_sys_asoundlib_h
6968 $def_sys_soundcard_h
6969 $def_sys_sysinfo_h
6970 $def_termios_h
6971 $def_termios_sys_h
6972 $def_winsock2_h
6975 /* system functions */
6976 $def_gethostbyname2
6977 $def_gettimeofday
6978 $def_glob
6979 $def_langinfo
6980 $def_lrintf
6981 $def_map_memalign
6982 $def_memalign
6983 $def_nanosleep
6984 $def_posix_select
6985 $def_select
6986 $def_setenv
6987 $def_setmode
6988 $def_shm
6989 $def_strsep
6990 $def_swab
6991 $def_sysi86
6992 $def_sysi86_iv
6993 $def_termcap
6994 $def_termios
6995 $def_vsscanf
6998 /* system-specific features */
6999 $def_asmalign_pot
7000 $def_builtin_expect
7001 $def_dl
7002 $def_dos_paths
7003 $def_extern_asm
7004 $def_extern_prefix
7005 $def_iconv
7006 $def_kstat
7007 $def_macosx_bundle
7008 $def_macosx_finder
7009 $def_named_asm_args
7010 $def_priority
7011 $def_quicktime
7012 $def_restrict_keyword
7013 $def_rtc
7014 $def_unrar_exec
7017 /* configurable options */
7018 $def_charset
7019 $def_crash_debug
7020 $def_debug
7021 $def_dynamic_plugins
7022 $def_fastmemcpy
7023 $def_menu
7024 $def_runtime_cpudetection
7025 $def_sighandler
7026 $def_sortsub
7027 $def_stream_cache
7028 $def_pthread_cache
7031 /* CPU stuff */
7032 #define __CPU__ $iproc
7033 $def_ebx_available
7034 $def_words_endian
7035 $def_bigendian
7036 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7037 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7038 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7041 /* Blu-ray/DVD/VCD/CD */
7042 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7043 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7044 $def_bluray
7045 $def_bsdi_dvd
7046 $def_cddb
7047 $def_cdio
7048 $def_cdparanoia
7049 $def_cdrom
7050 $def_dvd
7051 $def_dvd_bsd
7052 $def_dvd_darwin
7053 $def_dvd_linux
7054 $def_dvd_openbsd
7055 $def_dvdio
7056 $def_dvdnav
7057 $def_dvdread
7058 $def_hpux_scsi_h
7059 $def_libcdio
7060 $def_sol_scsi_h
7061 $def_vcd
7064 /* codec libraries */
7065 $def_faad
7066 $def_liba52
7067 $def_libdca
7068 $def_libdv
7069 $def_mad
7070 $def_mpg123
7071 $def_musepack
7072 $def_speex
7073 $def_theora
7074 $def_tremor
7075 $def_vorbis
7076 $def_xvid
7077 $def_zlib
7079 $def_libnut
7082 /* binary codecs */
7083 $def_qtx
7084 $def_qtx_win32
7085 $def_real
7086 $def_win32_loader
7087 $def_win32dll
7088 $def_xanim
7089 $def_xmms
7090 #define BINARY_CODECS_PATH "$_codecsdir"
7091 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7094 /* Audio output drivers */
7095 $def_alsa
7096 $def_alsa1x
7097 $def_alsa5
7098 $def_alsa9
7099 $def_arts
7100 $def_coreaudio
7101 $def_dart
7102 $def_esd
7103 $def_esd_latency
7104 $def_jack
7105 $def_kai
7106 $def_nas
7107 $def_openal
7108 $def_openal_h
7109 $def_ossaudio
7110 $def_ossaudio_devdsp
7111 $def_ossaudio_devmixer
7112 $def_pulse
7113 $def_sgiaudio
7114 $def_sunaudio
7115 $def_win32waveout
7117 $def_ladspa
7118 $def_libbs2b
7121 /* input */
7122 $def_apple_ir
7123 $def_apple_remote
7124 $def_ioctl_bt848_h_name
7125 $def_ioctl_meteor_h_name
7126 $def_joystick
7127 $def_lirc
7128 $def_lircc
7129 $def_pvr
7130 $def_radio
7131 $def_radio_bsdbt848
7132 $def_radio_capture
7133 $def_radio_v4l
7134 $def_radio_v4l2
7135 $def_tv
7136 $def_tv_bsdbt848
7137 $def_tv_dshow
7138 $def_tv_v4l
7139 $def_tv_v4l1
7140 $def_tv_v4l2
7143 /* font stuff */
7144 $def_ass
7145 $def_bitmap_font
7146 $def_enca
7147 $def_fontconfig
7148 $def_freetype
7149 $def_fribidi
7152 /* networking */
7153 $def_closesocket
7154 $def_ftp
7155 $def_inet6
7156 $def_inet_aton
7157 $def_inet_pton
7158 $def_live
7159 $def_nemesi
7160 $def_networking
7161 $def_smb
7162 $def_socklen_t
7163 $def_vstream
7166 /* libvo options */
7167 $def_3dfx
7168 $def_aa
7169 $def_bl
7170 $def_caca
7171 $def_corevideo
7172 $def_dga
7173 $def_dga1
7174 $def_dga2
7175 $def_direct3d
7176 $def_directfb
7177 $def_directx
7178 $def_dvb
7179 $def_dvbin
7180 $def_dxr3
7181 $def_fbdev
7182 $def_ggi
7183 $def_ggiwmh
7184 $def_gif
7185 $def_gif_4
7186 $def_gif_tvt_hack
7187 $def_gl
7188 $def_gl_win32
7189 $def_gl_x11
7190 $def_gl_sdl
7191 $def_matrixview
7192 $def_ivtv
7193 $def_jpeg
7194 $def_kva
7195 $def_md5sum
7196 $def_mga
7197 $def_mng
7198 $def_png
7199 $def_pnm
7200 $def_quartz
7201 $def_s3fb
7202 $def_sdl
7203 $def_sdl_sdl_h
7204 $def_svga
7205 $def_tdfxfb
7206 $def_tdfxvid
7207 $def_tga
7208 $def_v4l2
7209 $def_vdpau
7210 $def_vesa
7211 $def_vm
7212 $def_wii
7213 $def_x11
7214 $def_xdpms
7215 $def_xf86keysym
7216 $def_xinerama
7217 $def_xmga
7218 $def_xss
7219 $def_xv
7220 $def_xvmc
7221 $def_xvr100
7222 $def_yuv4mpeg
7225 /* FFmpeg */
7226 $def_ffmpeg
7227 $def_ffmpeg_eval_api
7228 $def_ffmpeg_internals
7230 $def_arpa_inet_h
7231 $def_bswap
7232 $def_dcbzl
7233 $def_exp2
7234 $def_exp2f
7235 $def_fast_64bit
7236 $def_fast_unaligned
7237 $def_llrint
7238 $def_log2
7239 $def_log2f
7240 $def_lrint
7241 $def_memalign_hack
7242 $def_mkstemp
7243 $def_posix_memalign
7244 $def_pthreads
7245 $def_round
7246 $def_roundf
7247 $def_ten_operands
7248 $def_threads
7249 $def_truncf
7250 $def_xform_asm
7251 $def_yasm
7253 #define HAVE_INLINE_ASM 1
7255 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7256 #ifndef MP_DEBUG
7257 #define HAVE_EBP_AVAILABLE 1
7258 #else
7259 #define HAVE_EBP_AVAILABLE 0
7260 #endif
7262 #endif /* MPLAYER_CONFIG_H */
7265 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7266 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7268 #############################################################################
7270 cat << EOF
7272 Config files successfully generated by ./configure $configuration !
7274 Install prefix: $_prefix
7275 Data directory: $_datadir
7276 Config direct.: $_confdir
7278 Byte order: $_byte_order
7279 Optimizing for: $_optimizing
7281 Languages:
7282 Messages (in addition to English): $language_msg
7283 Manual pages: $language_man
7284 Documentation: $language_doc
7286 Enabled optional drivers:
7287 Input: $inputmodules
7288 Codecs: $codecmodules
7289 Audio output: $aomodules
7290 Video output: $vomodules
7292 Disabled optional drivers:
7293 Input: $noinputmodules
7294 Codecs: $nocodecmodules
7295 Audio output: $noaomodules
7296 Video output: $novomodules
7298 'config.h' and 'config.mak' contain your configuration options.
7299 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7300 compile *** DO NOT REPORT BUGS if you tweak these files ***
7302 'make' will now compile MPlayer and 'make install' will install it.
7303 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7308 if test "$_mtrr" = yes ; then
7309 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7310 echo
7313 if ! x86_32; then
7314 cat <<EOF
7315 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7316 operating system ($system_name). You may encounter a few files that cannot
7317 be played due to missing open source video/audio codec support.
7323 cat <<EOF
7324 Check $TMPLOG if you wonder why an autodetection failed (make sure
7325 development headers/packages are installed).
7327 NOTE: The --enable-* parameters unconditionally force options on, completely
7328 skipping autodetection. This behavior is unlike what you may be used to from
7329 autoconf-based configure scripts that can decide to override you. This greater
7330 level of control comes at a price. You may have to provide the correct compiler
7331 and linker flags yourself.
7332 If you used one of these options (except --enable-menu and similar ones that
7333 turn on internal features) and experience a compilation or linking failure,
7334 make sure you have passed the necessary compiler/linker flags to configure.
7336 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7340 if test "$warn_cflags" = yes; then
7341 cat <<EOF
7343 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7344 but:
7346 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7348 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7349 To do so, execute 'CFLAGS= ./configure <options>'
7354 # Last move:
7355 rm -rf "$mplayer_tmpdir"