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