options, x11+cocoa: add option --cursor-autohide-delay
[mplayer.git] / configure
blob53a9ead72649f3c2b6427e21390c46f7e996848c
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 pkg_config_add() {
169 unset IFS # shell should not be used for programming
170 echo >> "$TMPLOG"
171 echo "$_pkg_config --cflags $@" >> "$TMPLOG"
172 ctmp=$($_pkg_config --cflags "$@" 2>> "$TMPLOG") || return $?
173 echo >> "$TMPLOG"
174 echo "$_pkg_config --libs $@" >> "$TMPLOG"
175 ltmp=$($_pkg_config --libs "$@" 2>> "$TMPLOG") || return $?
176 echo >> "$TMPLOG"
177 echo "cflags: $ctmp" >> "$TMPLOG"
178 echo "libs: $ltmp" >> "$TMPLOG"
179 echo >> "$TMPLOG"
180 extra_cflags="$extra_cflags $ctmp"
181 extra_ldflags="$extra_ldflags $ltmp"
184 tmp_run() {
185 "$TMPEXE" >> "$TMPLOG" 2>&1
188 # Display error message, flushes tempfile, exit
189 die () {
190 echo
191 echo "Error: $@" >&2
192 echo >&2
193 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
194 echo "Check \"$TMPLOG\" if you do not understand why it failed."
195 exit 1
198 # OS test booleans functions
199 issystem() {
200 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
202 aix() { issystem "AIX"; }
203 amigaos() { issystem "AmigaOS"; }
204 beos() { issystem "BEOS"; }
205 bsdos() { issystem "BSD/OS"; }
206 cygwin() { issystem "CYGWIN"; }
207 darwin() { issystem "Darwin"; }
208 dragonfly() { issystem "DragonFly"; }
209 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
210 gnu() { issystem "GNU"; }
211 hpux() { issystem "HP-UX"; }
212 irix() { issystem "IRIX"; }
213 linux() { issystem "Linux"; }
214 mingw32() { issystem "MINGW32"; }
215 morphos() { issystem "MorphOS"; }
216 netbsd() { issystem "NetBSD"; }
217 openbsd() { issystem "OpenBSD"; }
218 os2() { issystem "OS/2"; }
219 qnx() { issystem "QNX"; }
220 sunos() { issystem "SunOS"; }
221 win32() { cygwin || mingw32; }
223 # arch test boolean functions
224 # x86/x86pc is used by QNX
225 x86_32() {
226 case "$host_arch" in
227 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
228 *) return 1 ;;
229 esac
232 x86_64() {
233 case "$host_arch" in
234 x86_64|amd64) return 0 ;;
235 *) return 1 ;;
236 esac
239 x86() {
240 x86_32 || x86_64
243 ppc() {
244 case "$host_arch" in
245 ppc|ppc64|powerpc|powerpc64) return 0;;
246 *) return 1;;
247 esac
250 alpha() {
251 case "$host_arch" in
252 alpha*) return 0;;
253 *) return 1;;
254 esac
257 arm() {
258 case "$host_arch" in
259 arm*) return 0;;
260 *) return 1;;
261 esac
264 # Use this before starting a check
265 echocheck() {
266 echo "============ Checking for $@ ============" >> "$TMPLOG"
267 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
270 # Use this to echo the results of a check
271 echores() {
272 if test "$res_comment" ; then
273 res_comment="($res_comment)"
275 echo "Result is: $@ $res_comment" >> "$TMPLOG"
276 echo "##########################################" >> "$TMPLOG"
277 echo "" >> "$TMPLOG"
278 echo "$@ $res_comment"
279 res_comment=""
281 #############################################################################
283 # Check how echo works in this /bin/sh
284 case $(echo -n) in
285 -n) _echo_n= _echo_c='\c' ;; # SysV echo
286 *) _echo_n='-n ' _echo_c= ;; # BSD echo
287 esac
289 msg_lang_all=''
290 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
291 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")
292 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
294 show_help(){
295 cat << EOF
296 Usage: $0 [OPTIONS]...
298 Configuration:
299 -h, --help display this help and exit
301 Installation directories:
302 --prefix=DIR prefix directory for installation [/usr/local]
303 --bindir=DIR directory for installing binaries [PREFIX/bin]
304 --datadir=DIR directory for installing machine independent
305 data files (skins, etc) [PREFIX/share/mplayer]
306 --mandir=DIR directory for installing man pages [PREFIX/share/man]
307 --confdir=DIR directory for installing configuration files
308 [PREFIX/etc/mplayer]
309 --localedir=DIR directory for locale tree [PREFIX/share/locale]
310 --libdir=DIR directory for object code libraries [PREFIX/lib]
311 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
313 Optional features:
314 --disable-mplayer disable MPlayer compilation [enable]
315 --enable-termcap use termcap database for key codes [autodetect]
316 --enable-termios use termios database for key codes [autodetect]
317 --disable-iconv disable iconv for encoding conversion [autodetect]
318 --disable-langinfo do not use langinfo [autodetect]
319 --enable-lirc enable LIRC (remote control) support [autodetect]
320 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
321 --enable-joystick enable joystick support [disable]
322 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
323 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
324 --disable-vm disable X video mode extensions [autodetect]
325 --disable-xf86keysym disable support for multimedia keys [autodetect]
326 --enable-radio enable radio interface [disable]
327 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
328 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
329 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
330 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
331 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
332 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
333 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
334 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
335 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
336 --disable-networking disable networking [enable]
337 --enable-winsock2_h enable winsock2_h [autodetect]
338 --enable-smb enable Samba (SMB) input [autodetect]
339 --enable-live enable LIVE555 Streaming Media [disable]
340 --enable-nemesi enable Nemesi Streaming Media [autodetect]
341 --disable-vcd disable VCD support [autodetect]
342 --disable-bluray disable Blu-ray support [autodetect]
343 --disable-dvdnav disable libdvdnav [autodetect]
344 --disable-dvdread disable libdvdread [autodetect]
345 --disable-dvdread-internal disable internal libdvdread [autodetect]
346 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
347 --disable-cdparanoia disable cdparanoia [autodetect]
348 --disable-cddb disable cddb [autodetect]
349 --disable-bitmap-font disable bitmap font support [enable]
350 --disable-freetype disable FreeType 2 font rendering [autodetect]
351 --disable-fontconfig disable fontconfig font lookup [autodetect]
352 --disable-unrarexec disable using of UnRAR executable [enabled]
353 --disable-sortsub disable subtitle sorting [enabled]
354 --enable-fribidi enable the FriBiDi libs [autodetect]
355 --disable-enca disable ENCA charset oracle library [autodetect]
356 --enable-macosx-finder enable Mac OS X Finder invocation parameter
357 parsing [disabled]
358 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
359 --disable-inet6 disable IPv6 support [autodetect]
360 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
361 --disable-ftp disable FTP support [enabled]
362 --disable-vstream disable TiVo vstream client support [autodetect]
363 --disable-pthreads disable Posix threads support [autodetect]
364 --disable-w32threads disable Win32 threads support [autodetect]
365 --disable-libass disable subtitle rendering with libass [autodetect]
366 --enable-rpath enable runtime linker path for extra libs [disabled]
367 --disable-libpostproc disable postprocess filter (vf_pp) [autodetect]
369 Codecs:
370 --enable-gif enable GIF support [autodetect]
371 --enable-png enable PNG input/output support [autodetect]
372 --enable-mng enable MNG input support [autodetect]
373 --enable-jpeg enable JPEG input/output support [autodetect]
374 --enable-libcdio enable libcdio support [autodetect]
375 --disable-win32dll disable Win32 DLL support [autodetect]
376 --disable-qtx disable QuickTime codecs support [enabled]
377 --disable-xanim disable XAnim codecs support [enabled]
378 --disable-real disable RealPlayer codecs support [enabled]
379 --disable-xvid disable Xvid [autodetect]
380 --disable-libnut disable libnut [autodetect]
381 --enable-libav skip Libav autodetection [autodetect]
382 --disable-libvorbis disable libvorbis support [autodetect]
383 --disable-tremor disable Tremor [autodetect if no libvorbis]
384 --disable-speex disable Speex support [autodetect]
385 --enable-theora enable OggTheora libraries [autodetect]
386 --enable-faad enable FAAD2 (AAC) [autodetect]
387 --disable-ladspa disable LADSPA plugin support [autodetect]
388 --disable-libbs2b disable libbs2b audio filter support [autodetect]
389 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
390 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
391 --disable-mad disable libmad (MPEG audio) support [autodetect]
392 --enable-xmms enable XMMS input plugin support [disabled]
393 --enable-libdca enable libdca support [autodetect]
394 --disable-liba52 disable liba52 [autodetect]
395 --enable-musepack enable libmpcdec support (deprecated, libavcodec
396 Musepack decoder is preferred) [disabled]
398 Video output:
399 --enable-gl enable OpenGL video output [autodetect]
400 --enable-dga2 enable DGA 2 support [autodetect]
401 --enable-dga1 enable DGA 1 support [autodetect]
402 --enable-vesa enable VESA video output [autodetect]
403 --enable-svga enable SVGAlib video output [autodetect]
404 --enable-sdl enable SDL video output [autodetect]
405 --enable-kva enable KVA video output [autodetect]
406 --enable-aa enable AAlib video output [autodetect]
407 --enable-caca enable CACA video output [autodetect]
408 --enable-ggi enable GGI video output [autodetect]
409 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
410 --enable-direct3d enable Direct3D video output [autodetect]
411 --enable-directx enable DirectX video output [autodetect]
412 --enable-dxr3 enable DXR3/H+ video output [autodetect]
413 --enable-ivtv enable IVTV TV-Out video output [autodetect]
414 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
415 --enable-dvb enable DVB video output [autodetect]
416 --enable-mga enable mga_vid video output [autodetect]
417 --enable-xmga enable mga_vid X11 video output [autodetect]
418 --enable-xv enable Xv video output [autodetect]
419 --enable-vdpau enable VDPAU acceleration [autodetect]
420 --enable-vm enable XF86VidMode support [autodetect]
421 --enable-xinerama enable Xinerama support [autodetect]
422 --enable-x11 enable X11 video output [autodetect]
423 --enable-xshape enable XShape support [autodetect]
424 --disable-xss disable screensaver support via xss [autodetect]
425 --enable-fbdev enable FBDev video output [autodetect]
426 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
427 --enable-tdfxfb enable tdfxfb video output [disable]
428 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
429 --enable-wii enable Nintendo Wii/GameCube video output [disable]
430 --enable-directfb enable DirectFB video output [autodetect]
431 --enable-bl enable Blinkenlights video output [disable]
432 --enable-tdfxvid enable tdfx_vid video output [disable]
433 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
434 --disable-tga disable Targa video output [enable]
435 --disable-pnm disable PNM video output [enable]
436 --disable-md5sum disable md5sum video output [enable]
437 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
438 --disable-corevideo disable CoreVideo video output [autodetect]
439 --disable-cocoa disable Cocoa OpenGL backend [autodetect]
440 --disable-quartz disable Quartz video output [autodetect]
442 Audio output:
443 --disable-alsa disable ALSA audio output [autodetect]
444 --disable-ossaudio disable OSS audio output [autodetect]
445 --disable-arts disable aRts audio output [autodetect]
446 --disable-esd disable esd audio output [autodetect]
447 --disable-rsound disable RSound audio output [autodetect]
448 --disable-pulse disable Pulseaudio audio output [autodetect]
449 --disable-jack disable JACK audio output [autodetect]
450 --enable-openal enable OpenAL audio output [disable]
451 --disable-nas disable NAS audio output [autodetect]
452 --disable-sgiaudio disable SGI audio output [autodetect]
453 --disable-sunaudio disable Sun audio output [autodetect]
454 --disable-kai disable KAI audio output [autodetect]
455 --disable-dart disable DART audio output [autodetect]
456 --disable-win32waveout disable Windows waveout audio output [autodetect]
457 --disable-coreaudio disable CoreAudio audio output [autodetect]
458 --disable-select disable using select() on the audio device [enable]
460 Language options:
461 --enable-translation enable support for translated output [disable]
462 --charset=charset convert the console messages to this character set
463 --language-doc=lang language to use for the documentation [en]
464 --language-man=lang language to use for the man pages [en]
465 --language-msg=lang extra languages for program messages [all]
466 --language=lang default language to use [en]
467 Specific options override --language. You can pass a list of languages separated
468 by whitespace or commas instead of a single language. Nonexisting translations
469 will be dropped from each list. All translations available in the list will be
470 installed. The value "all" will activate all translations. The LINGUAS
471 environment variable is honored. In all cases the fallback is English.
472 The program always supports English-language output; additional message
473 languages are only installed if --enable-translation is also specified.
474 Available values for --language-doc are: all $doc_lang_all
475 Available values for --language-man are: all $man_lang_all
476 Available values for --language-msg are: all $msg_lang_all
478 Miscellaneous options:
479 --enable-runtime-cpudetection enable runtime CPU detection [disable]
480 --enable-cross-compile enable cross-compilation [disable]
481 --cc=COMPILER C compiler to build MPlayer [gcc]
482 --host-cc=COMPILER C compiler for tools needed while building [gcc]
483 --as=ASSEMBLER assembler to build MPlayer [as]
484 --nm=NM nm tool to build MPlayer [nm]
485 --yasm=YASM Yasm assembler to build MPlayer [yasm]
486 --ar=AR librarian to build MPlayer [ar]
487 --pkg-config=PKGCONFIG pkg-config to find some libraries [pkg-config]
488 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
489 --windres=WINDRES windres to build MPlayer [windres]
490 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
491 --enable-static build a statically linked binary
492 --with-install=PATH path to a custom install program
494 Advanced options:
495 --enable-mmx enable MMX [autodetect]
496 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
497 --enable-3dnow enable 3DNow! [autodetect]
498 --enable-3dnowext enable extended 3DNow! [autodetect]
499 --enable-sse enable SSE [autodetect]
500 --enable-sse2 enable SSE2 [autodetect]
501 --enable-ssse3 enable SSSE3 [autodetect]
502 --enable-shm enable shm [autodetect]
503 --enable-altivec enable AltiVec (PowerPC) [autodetect]
504 --enable-armv5te enable DSP extensions (ARM) [autodetect]
505 --enable-armv6 enable ARMv6 (ARM) [autodetect]
506 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
507 --enable-armvfp enable ARM VFP (ARM) [autodetect]
508 --enable-neon enable NEON (ARM) [autodetect]
509 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
510 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
511 --enable-big-endian force byte order to big-endian [autodetect]
512 --enable-debug[=1-3] compile-in debugging information [disable]
513 --enable-profile compile-in profiling information [disable]
514 --disable-sighandler disable sighandler for crashes [enable]
515 --enable-crash-debug enable automatic gdb attach on crash [disable]
517 Use these options if autodetection fails:
518 --extra-cflags=FLAGS extra CFLAGS
519 --extra-ldflags=FLAGS extra LDFLAGS
520 --extra-libs=FLAGS extra linker flags
521 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
523 --with-sdl-config=PATH path to sdl*-config
524 --with-dvdnav-config=PATH path to dvdnav-config
525 --with-dvdread-config=PATH path to dvdread-config
527 This configure script is NOT autoconf-based, even though its output is similar.
528 It will try to autodetect all configuration options. If you --enable an option
529 it will be forcefully turned on, skipping autodetection. This can break
530 compilation, so you need to know what you are doing.
532 exit 0
533 } #show_help()
535 # GOTCHA: the variables below defines the default behavior for autodetection
536 # and have - unless stated otherwise - at least 2 states : yes no
537 # If autodetection is available then the third state is: auto
538 _mmx=auto
539 _3dnow=auto
540 _3dnowext=auto
541 _mmxext=auto
542 _sse=auto
543 _sse2=auto
544 _ssse3=auto
545 _cmov=auto
546 _fast_cmov=auto
547 _fast_clz=auto
548 _armv5te=auto
549 _armv6=auto
550 _armv6t2=auto
551 _armvfp=auto
552 neon=auto
553 _iwmmxt=auto
554 _altivec=auto
555 _install=install
556 _pkg_config=auto
557 _ranlib=auto
558 _windres=auto
559 _cc=auto
560 _ar=auto
561 test "$CC" && _cc="$CC"
562 _as=auto
563 _nm=auto
564 _yasm=auto
565 _runtime_cpudetection=no
566 _cross_compile=no
567 _prefix="/usr/local"
568 ffmpeg=auto
569 ffmpeg_internals=no
570 _mplayer=yes
571 _x11=auto
572 _xshape=auto
573 _xss=auto
574 _dga1=auto
575 _dga2=auto
576 _xv=auto
577 _vdpau=auto
578 _sdl=auto
579 _kva=auto
580 _direct3d=auto
581 _directx=auto
582 _win32waveout=auto
583 _nas=auto
584 _png=auto
585 _mng=auto
586 _jpeg=auto
587 _pnm=yes
588 _md5sum=yes
589 _yuv4mpeg=yes
590 _gif=auto
591 _gl=auto
592 _ggi=auto
593 _ggiwmh=auto
594 _aa=auto
595 _caca=auto
596 _svga=auto
597 _vesa=auto
598 _fbdev=auto
599 _dvb=auto
600 _dxr3=auto
601 _ivtv=auto
602 _v4l2=auto
603 _iconv=auto
604 _langinfo=auto
605 _rtc=auto
606 _ossaudio=auto
607 _arts=auto
608 _esd=auto
609 _rsound=auto
610 _pulse=auto
611 _jack=auto
612 _kai=auto
613 _dart=auto
614 _openal=no
615 _libcdio=auto
616 _mad=auto
617 _tremor=auto
618 _libvorbis=auto
619 _speex=auto
620 _theora=auto
621 _mpg123=auto
622 _liba52=auto
623 _libdca=auto
624 _faad=auto
625 _ladspa=auto
626 _libbs2b=auto
627 _xmms=no
628 _vcd=auto
629 _bluray=auto
630 _dvdnav=auto
631 _dvdnavconfig=dvdnav-config
632 _dvdreadconfig=dvdread-config
633 _dvdread=auto
634 _dvdread_internal=auto
635 _libdvdcss_internal=auto
636 _xanim=auto
637 _real=auto
638 _live=no
639 _nemesi=auto
640 _native_rtsp=yes
641 _xinerama=auto
642 _mga=auto
643 _xmga=auto
644 _vm=auto
645 _xf86keysym=auto
646 _sgiaudio=auto
647 _sunaudio=auto
648 _alsa=auto
649 _fastmemcpy=yes
650 _unrar_exec=auto
651 _win32dll=auto
652 _select=yes
653 _radio=no
654 _radio_capture=no
655 _radio_v4l=auto
656 _radio_v4l2=auto
657 _radio_bsdbt848=auto
658 _tv=yes
659 _tv_v4l1=auto
660 _tv_v4l2=auto
661 _tv_bsdbt848=auto
662 _tv_dshow=auto
663 _pvr=auto
664 networking=yes
665 _winsock2_h=auto
666 _smb=auto
667 _joystick=no
668 _xvid=auto
669 _libnut=auto
670 _lirc=auto
671 _lircc=auto
672 _apple_remote=auto
673 _apple_ir=auto
674 _termcap=auto
675 _termios=auto
676 _3dfx=no
677 _s3fb=no
678 _wii=no
679 _tdfxfb=no
680 _tdfxvid=no
681 _xvr100=auto
682 _tga=yes
683 _directfb=auto
684 _bl=no
685 #language=en
686 _shm=auto
687 _translation=no
688 _charset="UTF-8"
689 _crash_debug=no
690 _sighandler=yes
691 _libdv=auto
692 _cdparanoia=auto
693 _cddb=auto
694 _big_endian=auto
695 _bitmap_font=yes
696 _freetype=auto
697 _fontconfig=auto
698 _qtx=auto
699 _coreaudio=auto
700 _corevideo=auto
701 _cocoa=auto
702 _quartz=auto
703 quicktime=auto
704 _macosx_finder=no
705 _macosx_bundle=auto
706 _sortsub=yes
707 _fribidi=auto
708 _enca=auto
709 _inet6=auto
710 _gethostbyname2=auto
711 _ftp=auto
712 _musepack=no
713 _vstream=auto
714 _pthreads=auto
715 _w32threads=auto
716 _ass=auto
717 _rpath=no
718 libpostproc=auto
719 _asmalign_pot=auto
720 _stream_cache=yes
721 _priority=no
722 def_dos_paths="#define HAVE_DOS_PATHS 0"
723 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
724 def_priority="#undef CONFIG_PRIORITY"
725 def_pthread_cache="#undef PTHREAD_CACHE"
726 need_shmem=yes
727 for ac_option do
728 case "$ac_option" in
729 --help|-help|-h)
730 show_help
732 --prefix=*)
733 _prefix=$(echo $ac_option | cut -d '=' -f 2)
735 --bindir=*)
736 _bindir=$(echo $ac_option | cut -d '=' -f 2)
738 --datadir=*)
739 _datadir=$(echo $ac_option | cut -d '=' -f 2)
741 --mandir=*)
742 _mandir=$(echo $ac_option | cut -d '=' -f 2)
744 --confdir=*)
745 _confdir=$(echo $ac_option | cut -d '=' -f 2)
747 --libdir=*)
748 _libdir=$(echo $ac_option | cut -d '=' -f 2)
750 --codecsdir=*)
751 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
753 --localedir=*)
754 _localedir=$(echo $ac_option | cut -d '=' -f 2)
757 --with-install=*)
758 _install=$(echo $ac_option | cut -d '=' -f 2 )
761 --with-sdl-config=*)
762 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
764 --with-dvdnav-config=*)
765 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
767 --with-dvdread-config=*)
768 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
771 --extra-cflags=*)
772 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
774 --extra-ldflags=*)
775 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
777 --extra-libs=*)
778 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
780 --extra-libs-mplayer=*)
781 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
784 --target=*)
785 _target=$(echo $ac_option | cut -d '=' -f 2)
787 --cc=*)
788 _cc=$(echo $ac_option | cut -d '=' -f 2)
790 --host-cc=*)
791 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
793 --as=*)
794 _as=$(echo $ac_option | cut -d '=' -f 2)
796 --nm=*)
797 _nm=$(echo $ac_option | cut -d '=' -f 2)
799 --yasm=*)
800 _yasm=$(echo $ac_option | cut -d '=' -f 2)
802 --ar=*)
803 _ar=$(echo $ac_option | cut -d '=' -f 2)
805 --pkg-config=*)
806 _pkg_config=$(echo $ac_option | cut -d '=' -f 2)
808 --ranlib=*)
809 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
811 --windres=*)
812 _windres=$(echo $ac_option | cut -d '=' -f 2)
814 --charset=*)
815 _charset=$(echo $ac_option | cut -d '=' -f 2)
817 --language-doc=*)
818 language_doc=$(echo $ac_option | cut -d '=' -f 2)
820 --language-man=*)
821 language_man=$(echo $ac_option | cut -d '=' -f 2)
823 --language-msg=*)
824 language_msg=$(echo $ac_option | cut -d '=' -f 2)
826 --language=*)
827 language=$(echo $ac_option | cut -d '=' -f 2)
830 --enable-static)
831 _ld_static='-static'
833 --disable-static)
834 _ld_static=''
836 --enable-profile)
837 _profile='-p'
839 --disable-profile)
840 _profile=
842 --enable-debug)
843 _debug='-g'
845 --enable-debug=*)
846 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
848 --disable-debug)
849 _debug=
851 --enable-translation) _translation=yes ;;
852 --disable-translation) _translation=no ;;
853 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
854 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
855 --enable-cross-compile) _cross_compile=yes ;;
856 --disable-cross-compile) _cross_compile=no ;;
857 --enable-mplayer) _mplayer=yes ;;
858 --disable-mplayer) _mplayer=no ;;
859 --enable-x11) _x11=yes ;;
860 --disable-x11) _x11=no ;;
861 --enable-xshape) _xshape=yes ;;
862 --disable-xshape) _xshape=no ;;
863 --enable-xss) _xss=yes ;;
864 --disable-xss) _xss=no ;;
865 --enable-xv) _xv=yes ;;
866 --disable-xv) _xv=no ;;
867 --enable-vdpau) _vdpau=yes ;;
868 --disable-vdpau) _vdpau=no ;;
869 --enable-sdl) _sdl=yes ;;
870 --disable-sdl) _sdl=no ;;
871 --enable-kva) _kva=yes ;;
872 --disable-kva) _kva=no ;;
873 --enable-direct3d) _direct3d=yes ;;
874 --disable-direct3d) _direct3d=no ;;
875 --enable-directx) _directx=yes ;;
876 --disable-directx) _directx=no ;;
877 --enable-win32waveout) _win32waveout=yes ;;
878 --disable-win32waveout) _win32waveout=no ;;
879 --enable-nas) _nas=yes ;;
880 --disable-nas) _nas=no ;;
881 --enable-png) _png=yes ;;
882 --disable-png) _png=no ;;
883 --enable-mng) _mng=yes ;;
884 --disable-mng) _mng=no ;;
885 --enable-jpeg) _jpeg=yes ;;
886 --disable-jpeg) _jpeg=no ;;
887 --enable-pnm) _pnm=yes ;;
888 --disable-pnm) _pnm=no ;;
889 --enable-md5sum) _md5sum=yes ;;
890 --disable-md5sum) _md5sum=no ;;
891 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
892 --disable-yuv4mpeg) _yuv4mpeg=no ;;
893 --enable-gif) _gif=yes ;;
894 --disable-gif) _gif=no ;;
895 --enable-gl) _gl=yes ;;
896 --disable-gl) _gl=no ;;
897 --enable-ggi) _ggi=yes ;;
898 --disable-ggi) _ggi=no ;;
899 --enable-ggiwmh) _ggiwmh=yes ;;
900 --disable-ggiwmh) _ggiwmh=no ;;
901 --enable-aa) _aa=yes ;;
902 --disable-aa) _aa=no ;;
903 --enable-caca) _caca=yes ;;
904 --disable-caca) _caca=no ;;
905 --enable-svga) _svga=yes ;;
906 --disable-svga) _svga=no ;;
907 --enable-vesa) _vesa=yes ;;
908 --disable-vesa) _vesa=no ;;
909 --enable-fbdev) _fbdev=yes ;;
910 --disable-fbdev) _fbdev=no ;;
911 --enable-dvb) _dvb=yes ;;
912 --disable-dvb) _dvb=no ;;
913 --enable-dxr3) _dxr3=yes ;;
914 --disable-dxr3) _dxr3=no ;;
915 --enable-ivtv) _ivtv=yes ;;
916 --disable-ivtv) _ivtv=no ;;
917 --enable-v4l2) _v4l2=yes ;;
918 --disable-v4l2) _v4l2=no ;;
919 --enable-iconv) _iconv=yes ;;
920 --disable-iconv) _iconv=no ;;
921 --enable-langinfo) _langinfo=yes ;;
922 --disable-langinfo) _langinfo=no ;;
923 --enable-rtc) _rtc=yes ;;
924 --disable-rtc) _rtc=no ;;
925 --enable-libdv) _libdv=yes ;;
926 --disable-libdv) _libdv=no ;;
927 --enable-ossaudio) _ossaudio=yes ;;
928 --disable-ossaudio) _ossaudio=no ;;
929 --enable-arts) _arts=yes ;;
930 --disable-arts) _arts=no ;;
931 --enable-esd) _esd=yes ;;
932 --disable-esd) _esd=no ;;
933 --enable-rsound) _rsound=yes ;;
934 --disable-rsound) _rsound=no ;;
935 --enable-pulse) _pulse=yes ;;
936 --disable-pulse) _pulse=no ;;
937 --enable-jack) _jack=yes ;;
938 --disable-jack) _jack=no ;;
939 --enable-openal) _openal=yes ;;
940 --disable-openal) _openal=no ;;
941 --enable-kai) _kai=yes ;;
942 --disable-kai) _kai=no ;;
943 --enable-dart) _dart=yes ;;
944 --disable-dart) _dart=no ;;
945 --enable-mad) _mad=yes ;;
946 --disable-mad) _mad=no ;;
947 --enable-libcdio) _libcdio=yes ;;
948 --disable-libcdio) _libcdio=no ;;
949 --enable-libvorbis) _libvorbis=yes ;;
950 --disable-libvorbis) _libvorbis=no ;;
951 --enable-speex) _speex=yes ;;
952 --disable-speex) _speex=no ;;
953 --enable-tremor) _tremor=yes ;;
954 --disable-tremor) _tremor=no ;;
955 --enable-theora) _theora=yes ;;
956 --disable-theora) _theora=no ;;
957 --enable-mpg123) _mpg123=yes ;;
958 --disable-mpg123) _mpg123=no ;;
959 --enable-liba52) _liba52=yes ;;
960 --disable-liba52) _liba52=no ;;
961 --enable-libdca) _libdca=yes ;;
962 --disable-libdca) _libdca=no ;;
963 --enable-musepack) _musepack=yes ;;
964 --disable-musepack) _musepack=no ;;
965 --enable-faad) _faad=yes ;;
966 --disable-faad) _faad=no ;;
967 --enable-ladspa) _ladspa=yes ;;
968 --disable-ladspa) _ladspa=no ;;
969 --enable-libbs2b) _libbs2b=yes ;;
970 --disable-libbs2b) _libbs2b=no ;;
971 --enable-xmms) _xmms=yes ;;
972 --disable-xmms) _xmms=no ;;
973 --enable-vcd) _vcd=yes ;;
974 --disable-vcd) _vcd=no ;;
975 --enable-bluray) _bluray=yes ;;
976 --disable-bluray) _bluray=no ;;
977 --enable-dvdread) _dvdread=yes ;;
978 --disable-dvdread) _dvdread=no ;;
979 --enable-dvdread-internal) _dvdread_internal=yes ;;
980 --disable-dvdread-internal) _dvdread_internal=no ;;
981 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
982 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
983 --enable-dvdnav) _dvdnav=yes ;;
984 --disable-dvdnav) _dvdnav=no ;;
985 --enable-xanim) _xanim=yes ;;
986 --disable-xanim) _xanim=no ;;
987 --enable-real) _real=yes ;;
988 --disable-real) _real=no ;;
989 --enable-live) _live=yes ;;
990 --disable-live) _live=no ;;
991 --enable-nemesi) _nemesi=yes ;;
992 --disable-nemesi) _nemesi=no ;;
993 --enable-xinerama) _xinerama=yes ;;
994 --disable-xinerama) _xinerama=no ;;
995 --enable-mga) _mga=yes ;;
996 --disable-mga) _mga=no ;;
997 --enable-xmga) _xmga=yes ;;
998 --disable-xmga) _xmga=no ;;
999 --enable-vm) _vm=yes ;;
1000 --disable-vm) _vm=no ;;
1001 --enable-xf86keysym) _xf86keysym=yes ;;
1002 --disable-xf86keysym) _xf86keysym=no ;;
1003 --enable-sunaudio) _sunaudio=yes ;;
1004 --disable-sunaudio) _sunaudio=no ;;
1005 --enable-sgiaudio) _sgiaudio=yes ;;
1006 --disable-sgiaudio) _sgiaudio=no ;;
1007 --enable-alsa) _alsa=yes ;;
1008 --disable-alsa) _alsa=no ;;
1009 --enable-tv) _tv=yes ;;
1010 --disable-tv) _tv=no ;;
1011 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1012 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1013 --enable-tv-v4l1) _tv_v4l1=yes ;;
1014 --disable-tv-v4l1) _tv_v4l1=no ;;
1015 --enable-tv-v4l2) _tv_v4l2=yes ;;
1016 --disable-tv-v4l2) _tv_v4l2=no ;;
1017 --enable-tv-dshow) _tv_dshow=yes ;;
1018 --disable-tv-dshow) _tv_dshow=no ;;
1019 --enable-radio) _radio=yes ;;
1020 --enable-radio-capture) _radio_capture=yes ;;
1021 --disable-radio-capture) _radio_capture=no ;;
1022 --disable-radio) _radio=no ;;
1023 --enable-radio-v4l) _radio_v4l=yes ;;
1024 --disable-radio-v4l) _radio_v4l=no ;;
1025 --enable-radio-v4l2) _radio_v4l2=yes ;;
1026 --disable-radio-v4l2) _radio_v4l2=no ;;
1027 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1028 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1029 --enable-pvr) _pvr=yes ;;
1030 --disable-pvr) _pvr=no ;;
1031 --enable-fastmemcpy) _fastmemcpy=yes ;;
1032 --disable-fastmemcpy) _fastmemcpy=no ;;
1033 --enable-networking) networking=yes ;;
1034 --disable-networking) networking=no ;;
1035 --enable-winsock2_h) _winsock2_h=yes ;;
1036 --disable-winsock2_h) _winsock2_h=no ;;
1037 --enable-smb) _smb=yes ;;
1038 --disable-smb) _smb=no ;;
1039 --enable-joystick) _joystick=yes ;;
1040 --disable-joystick) _joystick=no ;;
1041 --enable-xvid) _xvid=yes ;;
1042 --disable-xvid) _xvid=no ;;
1043 --enable-libnut) _libnut=yes ;;
1044 --disable-libnut) _libnut=no ;;
1045 --enable-libav) ffmpeg=yes ;;
1046 --ffmpeg-source-dir=*)
1047 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1049 --enable-lirc) _lirc=yes ;;
1050 --disable-lirc) _lirc=no ;;
1051 --enable-lircc) _lircc=yes ;;
1052 --disable-lircc) _lircc=no ;;
1053 --enable-apple-remote) _apple_remote=yes ;;
1054 --disable-apple-remote) _apple_remote=no ;;
1055 --enable-apple-ir) _apple_ir=yes ;;
1056 --disable-apple-ir) _apple_ir=no ;;
1057 --enable-termcap) _termcap=yes ;;
1058 --disable-termcap) _termcap=no ;;
1059 --enable-termios) _termios=yes ;;
1060 --disable-termios) _termios=no ;;
1061 --enable-3dfx) _3dfx=yes ;;
1062 --disable-3dfx) _3dfx=no ;;
1063 --enable-s3fb) _s3fb=yes ;;
1064 --disable-s3fb) _s3fb=no ;;
1065 --enable-wii) _wii=yes ;;
1066 --disable-wii) _wii=no ;;
1067 --enable-tdfxfb) _tdfxfb=yes ;;
1068 --disable-tdfxfb) _tdfxfb=no ;;
1069 --disable-tdfxvid) _tdfxvid=no ;;
1070 --enable-tdfxvid) _tdfxvid=yes ;;
1071 --disable-xvr100) _xvr100=no ;;
1072 --enable-xvr100) _xvr100=yes ;;
1073 --disable-tga) _tga=no ;;
1074 --enable-tga) _tga=yes ;;
1075 --enable-directfb) _directfb=yes ;;
1076 --disable-directfb) _directfb=no ;;
1077 --enable-bl) _bl=yes ;;
1078 --disable-bl) _bl=no ;;
1079 --enable-shm) _shm=yes ;;
1080 --disable-shm) _shm=no ;;
1081 --enable-select) _select=yes ;;
1082 --disable-select) _select=no ;;
1083 --enable-cdparanoia) _cdparanoia=yes ;;
1084 --disable-cdparanoia) _cdparanoia=no ;;
1085 --enable-cddb) _cddb=yes ;;
1086 --disable-cddb) _cddb=no ;;
1087 --enable-big-endian) _big_endian=yes ;;
1088 --disable-big-endian) _big_endian=no ;;
1089 --enable-bitmap-font) _bitmap_font=yes ;;
1090 --disable-bitmap-font) _bitmap_font=no ;;
1091 --enable-freetype) _freetype=yes ;;
1092 --disable-freetype) _freetype=no ;;
1093 --enable-fontconfig) _fontconfig=yes ;;
1094 --disable-fontconfig) _fontconfig=no ;;
1095 --enable-unrarexec) _unrar_exec=yes ;;
1096 --disable-unrarexec) _unrar_exec=no ;;
1097 --enable-ftp) _ftp=yes ;;
1098 --disable-ftp) _ftp=no ;;
1099 --enable-vstream) _vstream=yes ;;
1100 --disable-vstream) _vstream=no ;;
1101 --enable-pthreads) _pthreads=yes ;;
1102 --disable-pthreads) _pthreads=no ;;
1103 --enable-w32threads) _w32threads=yes ;;
1104 --disable-w32threads) _w32threads=no ;;
1105 --enable-libass) _ass=yes ;;
1106 --disable-libass) _ass=no ;;
1107 --enable-rpath) _rpath=yes ;;
1108 --disable-rpath) _rpath=no ;;
1109 --enable-libpostproc) libpostproc=yes ;;
1110 --disable-libpostproc) libpostproc=no ;;
1112 --enable-fribidi) _fribidi=yes ;;
1113 --disable-fribidi) _fribidi=no ;;
1115 --enable-enca) _enca=yes ;;
1116 --disable-enca) _enca=no ;;
1118 --enable-inet6) _inet6=yes ;;
1119 --disable-inet6) _inet6=no ;;
1121 --enable-gethostbyname2) _gethostbyname2=yes ;;
1122 --disable-gethostbyname2) _gethostbyname2=no ;;
1124 --enable-dga1) _dga1=yes ;;
1125 --disable-dga1) _dga1=no ;;
1126 --enable-dga2) _dga2=yes ;;
1127 --disable-dga2) _dga2=no ;;
1129 --enable-qtx) _qtx=yes ;;
1130 --disable-qtx) _qtx=no ;;
1132 --enable-coreaudio) _coreaudio=yes ;;
1133 --disable-coreaudio) _coreaudio=no ;;
1134 --enable-corevideo) _corevideo=yes ;;
1135 --disable-corevideo) _corevideo=no ;;
1136 --enable-cocoa) _cocoa=yes ;;
1137 --disable-cocoa) _cocoa=no ;;
1138 --enable-quartz) _quartz=yes ;;
1139 --disable-quartz) _quartz=no ;;
1140 --enable-macosx-finder) _macosx_finder=yes ;;
1141 --disable-macosx-finder) _macosx_finder=no ;;
1142 --enable-macosx-bundle) _macosx_bundle=yes ;;
1143 --disable-macosx-bundle) _macosx_bundle=no ;;
1145 --enable-sortsub) _sortsub=yes ;;
1146 --disable-sortsub) _sortsub=no ;;
1148 --enable-crash-debug) _crash_debug=yes ;;
1149 --disable-crash-debug) _crash_debug=no ;;
1150 --enable-sighandler) _sighandler=yes ;;
1151 --disable-sighandler) _sighandler=no ;;
1152 --enable-win32dll) _win32dll=yes ;;
1153 --disable-win32dll) _win32dll=no ;;
1155 --enable-sse) _sse=yes ;;
1156 --disable-sse) _sse=no ;;
1157 --enable-sse2) _sse2=yes ;;
1158 --disable-sse2) _sse2=no ;;
1159 --enable-ssse3) _ssse3=yes ;;
1160 --disable-ssse3) _ssse3=no ;;
1161 --enable-mmxext) _mmxext=yes ;;
1162 --disable-mmxext) _mmxext=no ;;
1163 --enable-3dnow) _3dnow=yes ;;
1164 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1165 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1166 --disable-3dnowext) _3dnowext=no ;;
1167 --enable-cmov) _cmov=yes ;;
1168 --disable-cmov) _cmov=no ;;
1169 --enable-fast-cmov) _fast_cmov=yes ;;
1170 --disable-fast-cmov) _fast_cmov=no ;;
1171 --enable-fast-clz) _fast_clz=yes ;;
1172 --disable-fast-clz) _fast_clz=no ;;
1173 --enable-altivec) _altivec=yes ;;
1174 --disable-altivec) _altivec=no ;;
1175 --enable-armv5te) _armv5te=yes ;;
1176 --disable-armv5te) _armv5te=no ;;
1177 --enable-armv6) _armv6=yes ;;
1178 --disable-armv6) _armv6=no ;;
1179 --enable-armv6t2) _armv6t2=yes ;;
1180 --disable-armv6t2) _armv6t2=no ;;
1181 --enable-armvfp) _armvfp=yes ;;
1182 --disable-armvfp) _armvfp=no ;;
1183 --enable-neon) neon=yes ;;
1184 --disable-neon) neon=no ;;
1185 --enable-iwmmxt) _iwmmxt=yes ;;
1186 --disable-iwmmxt) _iwmmxt=no ;;
1187 --enable-mmx) _mmx=yes ;;
1188 --disable-mmx) # 3Dnow! and MMX2 require MMX
1189 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1192 echo "Unknown parameter: $ac_option" >&2
1193 exit 1
1196 esac
1197 done
1199 # Atmos: moved this here, to be correct, if --prefix is specified
1200 test -z "$_bindir" && _bindir="$_prefix/bin"
1201 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1202 test -z "$_mandir" && _mandir="$_prefix/share/man"
1203 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1204 test -z "$_libdir" && _libdir="$_prefix/lib"
1205 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1207 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1208 test "$tmpdir" && break
1209 done
1211 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1212 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1214 TMPLOG="config.log"
1216 rm -f "$TMPLOG"
1217 echo Parameters configure was run with: > "$TMPLOG"
1218 if test -n "$CFLAGS" ; then
1219 echo ${_echo_n} CFLAGS="'$CFLAGS' ${_echo_c}" >> "$TMPLOG"
1221 if test -n "$PKG_CONFIG_PATH" ; then
1222 echo ${_echo_n} PKG_CONFIG_PATH="'$PKG_CONFIG_PATH' ${_echo_c}" >> "$TMPLOG"
1224 echo ./configure $configuration >> "$TMPLOG"
1225 echo >> "$TMPLOG"
1228 echocheck "cross compilation"
1229 echores $_cross_compile
1231 if test $_cross_compile = yes; then
1232 tmp_run() {
1233 return 0
1235 test "$_host_cc" || _host_cc=cc
1238 tool_prefix=""
1240 if test $_cross_compile = yes ; then
1241 # Usually cross-compiler prefixes match with the target triplet
1242 test -n "$_target" && tool_prefix="$_target"-
1245 test "$_ranlib" = auto && _ranlib="$tool_prefix"ranlib
1246 test "$_windres" = auto && _windres="$tool_prefix"windres
1247 test "$_ar" = auto && _ar="$tool_prefix"ar
1248 test "$_yasm" = auto && _yasm="$tool_prefix"yasm
1249 test "$_pkg_config" = auto && _pkg_config="$tool_prefix"pkg-config
1251 if test "$_cc" = auto ; then
1252 if test -n "$tool_prefix" ; then
1253 _cc="$tool_prefix"gcc
1254 else
1255 _cc=cc
1259 # Determine our OS name and CPU architecture
1260 if test -z "$_target" ; then
1261 # OS name
1262 system_name=$(uname -s 2>&1)
1263 case "$system_name" in
1264 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1266 Haiku)
1267 system_name=BeOS
1269 IRIX*)
1270 system_name=IRIX
1272 GNU/kFreeBSD)
1273 system_name=FreeBSD
1275 HP-UX*)
1276 system_name=HP-UX
1278 [cC][yY][gG][wW][iI][nN]*)
1279 system_name=CYGWIN
1281 MINGW32*)
1282 system_name=MINGW32
1284 OS/2*)
1285 system_name=OS/2
1288 system_name="$system_name-UNKNOWN"
1290 esac
1293 # host's CPU/instruction set
1294 host_arch=$(uname -p 2>&1)
1295 case "$host_arch" in
1296 i386|sparc|ppc|alpha|arm|mips|vax)
1298 powerpc) # Darwin returns 'powerpc'
1299 host_arch=ppc
1301 *) # uname -p on Linux returns 'unknown' for the processor type,
1302 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1304 # Maybe uname -m (machine hardware name) returns something we
1305 # recognize.
1307 # x86/x86pc is used by QNX
1308 case "$(uname -m 2>&1)" in
1309 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 ;;
1310 ia64) host_arch=ia64 ;;
1311 macppc|ppc) host_arch=ppc ;;
1312 ppc64) host_arch=ppc64 ;;
1313 alpha) host_arch=alpha ;;
1314 sparc) host_arch=sparc ;;
1315 sparc64) host_arch=sparc64 ;;
1316 parisc*|hppa*|9000*) host_arch=hppa ;;
1317 arm*|zaurus|cats) host_arch=arm ;;
1318 sh3|sh4|sh4a) host_arch=sh ;;
1319 s390) host_arch=s390 ;;
1320 s390x) host_arch=s390x ;;
1321 *mips*) host_arch=mips ;;
1322 vax) host_arch=vax ;;
1323 xtensa*) host_arch=xtensa ;;
1324 *) host_arch=UNKNOWN ;;
1325 esac
1327 esac
1328 else # if test -z "$_target"
1329 for i in 2 3; do
1330 system_name=$(echo $_target | cut -d '-' -f $i)
1331 case "$(echo $system_name | tr A-Z a-z)" in
1332 linux) system_name=Linux ;;
1333 freebsd) system_name=FreeBSD ;;
1334 gnu/kfreebsd) system_name=FreeBSD ;;
1335 netbsd) system_name=NetBSD ;;
1336 bsd/os) system_name=BSD/OS ;;
1337 openbsd) system_name=OpenBSD ;;
1338 dragonfly) system_name=DragonFly ;;
1339 sunos) system_name=SunOS ;;
1340 qnx) system_name=QNX ;;
1341 morphos) system_name=MorphOS ;;
1342 amigaos) system_name=AmigaOS ;;
1343 mingw32*) system_name=MINGW32 ;;
1344 *) continue ;;
1345 esac
1346 break
1347 done
1348 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1349 host_arch=$(echo $_target | cut -d '-' -f 1)
1350 if test $(echo $host_arch) != "x86_64" ; then
1351 host_arch=$(echo $host_arch | tr '_' '-')
1355 extra_cflags="-I. $extra_cflags"
1356 _timer=timer-linux.c
1357 _getch=getch2.c
1358 if freebsd ; then
1359 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1360 extra_cflags="$extra_cflags -I/usr/local/include"
1363 if netbsd || dragonfly ; then
1364 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1365 extra_cflags="$extra_cflags -I/usr/pkg/include"
1368 if darwin; then
1369 extra_cflags="-mdynamic-no-pic $extra_cflags"
1370 if test "$(basename $_cc)" != "clang" ; then
1371 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1373 _timer=timer-darwin.c
1376 if aix ; then
1377 extra_ldflags="$extra_ldflags -lC"
1380 if irix ; then
1381 _ranlib='ar -r'
1382 elif linux ; then
1383 _ranlib='true'
1386 if win32 ; then
1387 _exesuf=".exe"
1388 extra_cflags="$extra_cflags -fno-common"
1389 # -lwinmm is always needed for osdep/timer-win2.c
1390 extra_ldflags="$extra_ldflags -lwinmm"
1391 _pe_executable=yes
1392 _timer=timer-win2.c
1393 _priority=yes
1394 def_dos_paths="#define HAVE_DOS_PATHS 1"
1395 def_priority="#define CONFIG_PRIORITY 1"
1398 if mingw32 ; then
1399 _getch=getch2-win.c
1400 need_shmem=no
1401 extra_cflags="$extra_cflags -D__USE_MINGW_ANSI_STDIO=1"
1404 if amigaos ; then
1405 _select=no
1406 _sighandler=no
1407 _stream_cache=no
1408 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1409 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1412 if qnx ; then
1413 extra_ldflags="$extra_ldflags -lph"
1416 if os2 ; then
1417 _exesuf=".exe"
1418 _getch=getch2-os2.c
1419 need_shmem=no
1420 _priority=yes
1421 def_dos_paths="#define HAVE_DOS_PATHS 1"
1422 def_priority="#define CONFIG_PRIORITY 1"
1425 TMPC="$mplayer_tmpdir/tmp.c"
1426 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1427 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1428 TMPH="$mplayer_tmpdir/tmp.h"
1429 TMPS="$mplayer_tmpdir/tmp.S"
1431 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1432 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1436 # Checking CC version...
1437 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1438 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1439 echocheck "$_cc version"
1440 cc_vendor=intel
1441 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1442 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1443 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1444 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1445 # TODO verify older icc/ecc compatibility
1446 case $cc_version in
1448 cc_version="v. ?.??, bad"
1449 cc_fail=yes
1451 10.1|11.0|11.1)
1452 cc_version="$cc_version, ok"
1455 cc_version="$cc_version, bad"
1456 cc_fail=yes
1458 esac
1459 echores "$cc_version"
1460 else
1461 for _cc in "$_cc" gcc cc ; do
1462 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1463 if test "$cc_name_tmp" = "gcc"; then
1464 cc_name=$cc_name_tmp
1465 echocheck "$_cc version"
1466 cc_vendor=gnu
1467 cc_version=$($_cc -dumpversion 2>&1)
1468 case $cc_version in
1469 2.96*)
1470 cc_fail=yes
1473 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1474 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1475 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1477 esac
1478 echores "$cc_version"
1479 break
1481 if $_cc -v 2>&1 | grep -q "clang"; then
1482 echocheck "$_cc version"
1483 cc_vendor=clang
1484 cc_version=$($_cc -dumpversion 2>&1)
1485 res_comment="experimental support only"
1486 echores "clang $cc_version"
1487 break
1489 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1490 if test "$cc_name_tmp" = "Sun C"; then
1491 echocheck "$_cc version"
1492 cc_vendor=sun
1493 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1494 res_comment="experimental support only"
1495 echores "Sun C $cc_version"
1496 break
1498 done
1499 fi # icc
1500 test "$cc_fail" = yes && die "unsupported compiler version"
1502 echocheck "working compiler"
1503 cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
1504 echo "yes"
1506 if test -z "$_target" && x86 ; then
1507 cat > $TMPC << EOF
1508 int main(void) {
1509 int test[(int)sizeof(char *)-7];
1510 return 0;
1513 cc_check && host_arch=x86_64 || host_arch=i386
1516 echocheck "host cc"
1517 test "$_host_cc" || _host_cc=$_cc
1518 echores $_host_cc
1520 echo "Detected operating system: $system_name"
1521 echo "Detected host architecture: $host_arch"
1523 # ---
1525 # now that we know what compiler should be used for compilation, try to find
1526 # out which assembler is used by the $_cc compiler
1527 if test "$_as" = auto ; then
1528 _as=$($_cc -print-prog-name=as)
1529 test -z "$_as" && _as=as
1532 if test "$_nm" = auto ; then
1533 _nm=$($_cc -print-prog-name=nm)
1534 test -z "$_nm" && _nm=nm
1537 # XXX: this should be ok..
1538 _cpuinfo="echo"
1540 if test "$_runtime_cpudetection" = no ; then
1542 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1543 # FIXME: Remove the cygwin check once AMD CPUs are supported
1544 if test -r /proc/cpuinfo && ! cygwin; then
1545 # Linux with /proc mounted, extract CPU information from it
1546 _cpuinfo="cat /proc/cpuinfo"
1547 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1548 # FreeBSD with Linux emulation /proc mounted,
1549 # extract CPU information from it
1550 # Don't use it on x86 though, it never reports 3Dnow
1551 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1552 elif darwin && ! x86 ; then
1553 # use hostinfo on Darwin
1554 _cpuinfo="hostinfo"
1555 elif aix; then
1556 # use 'lsattr' on AIX
1557 _cpuinfo="lsattr -E -l proc0 -a type"
1558 elif x86; then
1559 # all other OSes try to extract CPU information from a small helper
1560 # program cpuinfo instead
1561 $_cc -o cpuinfo$_exesuf cpuinfo.c
1562 _cpuinfo="./cpuinfo$_exesuf"
1565 if x86 ; then
1566 # gather more CPU information
1567 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1568 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1569 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1570 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1571 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1573 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1575 pparam=$(echo $exts | sed -e s/xmm/sse/ -e s/kni/sse/)
1576 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1577 pparam=$(echo $pparam | sed -e 's/sse/sse mmxext/')
1579 for ext in $pparam ; do
1580 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1581 done
1583 echocheck "CPU vendor"
1584 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1586 echocheck "CPU type"
1587 echores "$pname"
1590 fi # test "$_runtime_cpudetection" = no
1592 if x86 && test "$_runtime_cpudetection" = no ; then
1593 extcheck() {
1594 if test "$1" = kernel_check ; then
1595 echocheck "kernel support of $2"
1596 cat > $TMPC <<EOF
1597 #include <stdlib.h>
1598 #include <signal.h>
1599 static void catch(int sig) { exit(1); }
1600 int main(void) {
1601 signal(SIGILL, catch);
1602 __asm__ volatile ("$3":::"memory"); return 0;
1606 if cc_check && tmp_run ; then
1607 eval _$2=yes
1608 echores "yes"
1609 _optimizing="$_optimizing $2"
1610 return 0
1611 else
1612 eval _$2=no
1613 echores "failed"
1614 echo "It seems that your kernel does not correctly support $2."
1615 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1616 return 1
1619 return 0
1622 extcheck $_mmx "mmx" "emms"
1623 extcheck $_mmxext "mmxext" "sfence"
1624 extcheck $_3dnow "3dnow" "femms"
1625 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1626 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1627 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1628 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1629 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1631 if test "$_gcc3_ext" != ""; then
1632 # if we had to disable sse/sse2 because the active kernel does not
1633 # support this instruction set extension, we also have to tell
1634 # gcc3 to not generate sse/sse2 instructions for normal C code
1635 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1641 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1642 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1643 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1644 subarch_all='X86_32 X86_64 PPC64'
1645 case "$host_arch" in
1646 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1647 arch='x86'
1648 subarch='x86_32'
1649 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1650 iproc=486
1651 proc=i486
1654 if test "$_runtime_cpudetection" = no ; then
1655 case "$pvendor" in
1656 AuthenticAMD)
1657 case "$pfamily" in
1658 3) proc=i386 iproc=386 ;;
1659 4) proc=i486 iproc=486 ;;
1660 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1661 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1662 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1663 proc=k6-3
1664 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1665 proc=geode
1666 elif test "$pmodel" -ge 8; then
1667 proc=k6-2
1668 elif test "$pmodel" -ge 6; then
1669 proc=k6
1670 else
1671 proc=i586
1674 6) iproc=686
1675 # It's a bit difficult to determine the correct type of Family 6
1676 # AMD CPUs just from their signature. Instead, we check directly
1677 # whether it supports SSE.
1678 if test "$_sse" = yes; then
1679 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1680 proc=athlon-xp
1681 else
1682 # Again, gcc treats athlon and athlon-tbird similarly.
1683 proc=athlon
1686 15) iproc=686
1687 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1688 # caught and remedied in the optimization tests below.
1689 proc=k8
1692 *) proc=amdfam10 iproc=686
1693 test $_fast_clz = "auto" && _fast_clz=yes
1695 esac
1697 GenuineIntel)
1698 case "$pfamily" in
1699 3) proc=i386 iproc=386 ;;
1700 4) proc=i486 iproc=486 ;;
1701 5) iproc=586
1702 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1703 proc=pentium-mmx # 4 is desktop, 8 is mobile
1704 else
1705 proc=i586
1708 6) iproc=686
1709 if test "$pmodel" -ge 15; then
1710 proc=core2
1711 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1712 proc=pentium-m
1713 elif test "$pmodel" -ge 7; then
1714 proc=pentium3
1715 elif test "$pmodel" -ge 3; then
1716 proc=pentium2
1717 else
1718 proc=i686
1720 test $_fast_clz = "auto" && _fast_clz=yes
1722 15) iproc=686
1723 # A nocona in 32-bit mode has no more capabilities than a prescott.
1724 if test "$pmodel" -ge 3; then
1725 proc=prescott
1726 else
1727 proc=pentium4
1728 test $_fast_clz = "auto" && _fast_clz=yes
1730 test $_fast_cmov = "auto" && _fast_cmov=no
1732 *) proc=prescott iproc=686 ;;
1733 esac
1735 CentaurHauls)
1736 case "$pfamily" in
1737 5) iproc=586
1738 if test "$pmodel" -ge 8; then
1739 proc=winchip2
1740 elif test "$pmodel" -ge 4; then
1741 proc=winchip-c6
1742 else
1743 proc=i586
1746 6) iproc=686
1747 if test "$pmodel" -ge 9; then
1748 proc=c3-2
1749 else
1750 proc=c3
1751 iproc=586
1754 *) proc=i686 iproc=i686 ;;
1755 esac
1757 unknown)
1758 case "$pfamily" in
1759 3) proc=i386 iproc=386 ;;
1760 4) proc=i486 iproc=486 ;;
1761 *) proc=i586 iproc=586 ;;
1762 esac
1765 proc=i586 iproc=586 ;;
1766 esac
1767 test $_fast_clz = "auto" && _fast_clz=no
1768 fi # test "$_runtime_cpudetection" = no
1771 # check that gcc supports our CPU, if not, fall back to earlier ones
1772 # LGB: check -mcpu and -march swithing step by step with enabling
1773 # to fall back till 386.
1775 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1777 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1778 cpuopt=-mtune
1779 else
1780 cpuopt=-mcpu
1783 echocheck "GCC & CPU optimization abilities"
1784 if test "$_runtime_cpudetection" = no ; then
1785 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1786 cflag_check -march=native && proc=native
1788 if test "$proc" = "amdfam10"; then
1789 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1791 if test "$proc" = "k8"; then
1792 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1794 if test "$proc" = "athlon-xp"; then
1795 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1797 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1798 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1800 if test "$proc" = "k6" || test "$proc" = "c3"; then
1801 if ! cflag_check -march=$proc $cpuopt=$proc; then
1802 if cflag_check -march=i586 $cpuopt=i686; then
1803 proc=i586-i686
1804 else
1805 proc=i586
1809 if test "$proc" = "prescott" ; then
1810 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1812 if test "$proc" = "core2" ; then
1813 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1815 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
1816 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1818 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1819 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1821 if test "$proc" = "i586"; then
1822 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1824 if test "$proc" = "i486" ; then
1825 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1827 if test "$proc" = "i386" ; then
1828 cflag_check -march=$proc $cpuopt=$proc || proc=error
1830 if test "$proc" = "error" ; then
1831 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1832 _mcpu=""
1833 _march=""
1834 _optimizing=""
1835 elif test "$proc" = "i586-i686"; then
1836 _march="-march=i586"
1837 _mcpu="$cpuopt=i686"
1838 _optimizing="$proc"
1839 else
1840 _march="-march=$proc"
1841 _mcpu="$cpuopt=$proc"
1842 _optimizing="$proc"
1844 else # if test "$_runtime_cpudetection" = no
1845 _mcpu="$cpuopt=generic"
1846 # at least i486 required, for bswap instruction
1847 _march="-march=i486"
1848 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1849 cflag_check $_mcpu || _mcpu=""
1850 cflag_check $_march $_mcpu || _march=""
1853 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1854 ## autodetected mcpu/march parameters
1855 if test "$_target" ; then
1856 # TODO: it may be a good idea to check GCC and fall back in all cases
1857 if test "$host_arch" = "i586-i686"; then
1858 _march="-march=i586"
1859 _mcpu="$cpuopt=i686"
1860 else
1861 _march="-march=$host_arch"
1862 _mcpu="$cpuopt=$host_arch"
1865 proc="$host_arch"
1867 case "$proc" in
1868 i386) iproc=386 ;;
1869 i486) iproc=486 ;;
1870 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1871 i686|athlon*|pentium*) iproc=686 ;;
1872 *) iproc=586 ;;
1873 esac
1876 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1877 _fast_cmov="yes"
1878 else
1879 _fast_cmov="no"
1881 test $_fast_clz = "auto" && _fast_clz=yes
1883 echores "$proc"
1886 ia64)
1887 arch='ia64'
1888 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1889 iproc='ia64'
1892 x86_64|amd64)
1893 arch='x86'
1894 subarch='x86_64'
1895 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1896 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1897 iproc='x86_64'
1899 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1900 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1901 cpuopt=-mtune
1902 else
1903 cpuopt=-mcpu
1905 if test "$_runtime_cpudetection" = no ; then
1906 case "$pvendor" in
1907 AuthenticAMD)
1908 case "$pfamily" in
1909 15) proc=k8
1910 test $_fast_clz = "auto" && _fast_clz=no
1912 *) proc=amdfam10;;
1913 esac
1915 GenuineIntel)
1916 case "$pfamily" in
1917 6) proc=core2;;
1919 # 64-bit prescotts exist, but as far as GCC is concerned they
1920 # have the same capabilities as a nocona.
1921 proc=nocona
1922 test $_fast_cmov = "auto" && _fast_cmov=no
1923 test $_fast_clz = "auto" && _fast_clz=no
1925 esac
1928 proc=error;;
1929 esac
1930 fi # test "$_runtime_cpudetection" = no
1932 echocheck "GCC & CPU optimization abilities"
1933 # This is a stripped-down version of the i386 fallback.
1934 if test "$_runtime_cpudetection" = no ; then
1935 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1936 cflag_check -march=native && proc=native
1938 # --- AMD processors ---
1939 if test "$proc" = "amdfam10"; then
1940 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1942 if test "$proc" = "k8"; then
1943 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1945 # This will fail if gcc version < 3.3, which is ok because earlier
1946 # versions don't really support 64-bit on amd64.
1947 # Is this a valid assumption? -Corey
1948 if test "$proc" = "athlon-xp"; then
1949 cflag_check -march=$proc $cpuopt=$proc || proc=error
1951 # --- Intel processors ---
1952 if test "$proc" = "core2"; then
1953 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1955 if test "$proc" = "x86-64"; then
1956 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1958 if test "$proc" = "nocona"; then
1959 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1961 if test "$proc" = "pentium4"; then
1962 cflag_check -march=$proc $cpuopt=$proc || proc=error
1965 _march="-march=$proc"
1966 _mcpu="$cpuopt=$proc"
1967 if test "$proc" = "error" ; then
1968 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1969 _mcpu=""
1970 _march=""
1972 else # if test "$_runtime_cpudetection" = no
1973 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1974 _march="-march=x86-64"
1975 _mcpu="$cpuopt=generic"
1976 cflag_check $_mcpu || _mcpu="x86-64"
1977 cflag_check $_mcpu || _mcpu=""
1978 cflag_check $_march $_mcpu || _march=""
1981 _optimizing="$proc"
1982 test $_fast_cmov = "auto" && _fast_cmov=yes
1983 test $_fast_clz = "auto" && _fast_clz=yes
1985 echores "$proc"
1988 sparc|sparc64)
1989 arch='sparc'
1990 iproc='sparc'
1991 if test "$host_arch" = "sparc64" ; then
1992 _vis='yes'
1993 proc='ultrasparc'
1994 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1995 elif sunos ; then
1996 echocheck "CPU type"
1997 karch=$(uname -m)
1998 case "$(echo $karch)" in
1999 sun4) proc=v7 ;;
2000 sun4c) proc=v7 ;;
2001 sun4d) proc=v8 ;;
2002 sun4m) proc=v8 ;;
2003 sun4u) proc=ultrasparc _vis='yes' ;;
2004 sun4v) proc=v9 ;;
2005 *) proc=v8 ;;
2006 esac
2007 echores "$proc"
2008 else
2009 proc=v8
2011 _mcpu="-mcpu=$proc"
2012 _optimizing="$proc"
2015 arm*)
2016 arch='arm'
2017 iproc='arm'
2020 avr32)
2021 arch='avr32'
2022 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2023 iproc='avr32'
2024 test $_fast_clz = "auto" && _fast_clz=yes
2027 sh|sh4)
2028 arch='sh4'
2029 iproc='sh4'
2032 ppc|ppc64|powerpc|powerpc64)
2033 arch='ppc'
2034 def_dcbzl='#define HAVE_DCBZL 0'
2035 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2036 iproc='ppc'
2038 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2039 subarch='ppc64'
2040 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2042 echocheck "CPU type"
2043 case $system_name in
2044 Linux)
2045 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2046 if test -n "$($_cpuinfo | grep altivec)"; then
2047 test $_altivec = auto && _altivec=yes
2050 Darwin)
2051 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2052 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2053 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2054 test $_altivec = auto && _altivec=yes
2057 NetBSD)
2058 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2059 case $cc_version in
2060 2*|3.0*|3.1*|3.2*|3.3*)
2063 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2064 test $_altivec = auto && _altivec=yes
2067 esac
2069 AIX)
2070 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2072 esac
2073 if test "$_altivec" = yes; then
2074 echores "$proc altivec"
2075 else
2076 _altivec=no
2077 echores "$proc"
2080 echocheck "GCC & CPU optimization abilities"
2082 if test -n "$proc"; then
2083 case "$proc" in
2084 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2085 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2086 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2087 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2088 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2089 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2090 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2091 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2092 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2093 *) ;;
2094 esac
2095 # gcc 3.1(.1) and up supports 7400 and 7450
2096 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2097 case "$proc" in
2098 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2099 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2100 *) ;;
2101 esac
2103 # gcc 3.2 and up supports 970
2104 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2105 case "$proc" in
2106 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2107 def_dcbzl='#define HAVE_DCBZL 1' ;;
2108 *) ;;
2109 esac
2111 # gcc 3.3 and up supports POWER4
2112 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2113 case "$proc" in
2114 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2115 *) ;;
2116 esac
2118 # gcc 3.4 and up supports 440*
2119 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2120 case "$proc" in
2121 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2122 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2123 *) ;;
2124 esac
2126 # gcc 4.0 and up supports POWER5
2127 if test "$_cc_major" -ge "4"; then
2128 case "$proc" in
2129 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2130 *) ;;
2131 esac
2135 if test -n "$_mcpu"; then
2136 _optimizing=$(echo $_mcpu | cut -c 8-)
2137 echores "$_optimizing"
2138 else
2139 echores "none"
2142 test $_fast_clz = "auto" && _fast_clz=yes
2146 alpha*)
2147 arch='alpha'
2148 iproc='alpha'
2149 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2151 echocheck "CPU type"
2152 cat > $TMPC << EOF
2153 int main(void) {
2154 unsigned long ver, mask;
2155 __asm__ ("implver %0" : "=r" (ver));
2156 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2157 printf("%ld-%x\n", ver, ~mask);
2158 return 0;
2161 $_cc -o "$TMPEXE" "$TMPC"
2162 case $("$TMPEXE") in
2164 0-0) proc="ev4"; _mvi="0";;
2165 1-0) proc="ev5"; _mvi="0";;
2166 1-1) proc="ev56"; _mvi="0";;
2167 1-101) proc="pca56"; _mvi="1";;
2168 2-303) proc="ev6"; _mvi="1";;
2169 2-307) proc="ev67"; _mvi="1";;
2170 2-1307) proc="ev68"; _mvi="1";;
2171 esac
2172 echores "$proc"
2174 echocheck "GCC & CPU optimization abilities"
2175 if test "$proc" = "ev68" ; then
2176 cc_check -mcpu=$proc || proc=ev67
2178 if test "$proc" = "ev67" ; then
2179 cc_check -mcpu=$proc || proc=ev6
2181 _mcpu="-mcpu=$proc"
2182 echores "$proc"
2184 test $_fast_clz = "auto" && _fast_clz=yes
2186 _optimizing="$proc"
2189 mips*)
2190 arch='mips'
2191 iproc='mips'
2193 if irix ; then
2194 echocheck "CPU type"
2195 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2196 case "$(echo $proc)" in
2197 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2198 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2199 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2200 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2201 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2202 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2203 esac
2204 # gcc < 3.x does not support -mtune.
2205 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2206 _mcpu=''
2208 echores "$proc"
2211 test $_fast_clz = "auto" && _fast_clz=yes
2215 hppa)
2216 arch='pa_risc'
2217 iproc='PA-RISC'
2220 s390)
2221 arch='s390'
2222 iproc='390'
2225 s390x)
2226 arch='s390x'
2227 iproc='390x'
2230 vax)
2231 arch='vax'
2232 iproc='vax'
2235 xtensa)
2236 arch='xtensa'
2237 iproc='xtensa'
2240 generic)
2241 arch='generic'
2245 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2246 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2247 die "unsupported architecture $host_arch"
2249 esac # case "$host_arch" in
2251 if test "$_runtime_cpudetection" = yes ; then
2252 if x86 ; then
2253 test "$_cmov" != no && _cmov=yes
2254 x86_32 && _cmov=no
2255 test "$_mmx" != no && _mmx=yes
2256 test "$_3dnow" != no && _3dnow=yes
2257 test "$_3dnowext" != no && _3dnowext=yes
2258 test "$_mmxext" != no && _mmxext=yes
2259 test "$_sse" != no && _sse=yes
2260 test "$_sse2" != no && _sse2=yes
2261 test "$_ssse3" != no && _ssse3=yes
2263 if ppc; then
2264 _altivec=yes
2269 # endian testing
2270 echocheck "byte order"
2271 if test "$_big_endian" = auto ; then
2272 cat > $TMPC <<EOF
2273 short ascii_name[] = {
2274 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2275 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2276 int main(void) { return (long)ascii_name; }
2278 if cc_check ; then
2279 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2280 _big_endian=yes
2281 else
2282 _big_endian=no
2284 else
2285 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2288 if test "$_big_endian" = yes ; then
2289 _byte_order='big-endian'
2290 def_words_endian='#define WORDS_BIGENDIAN 1'
2291 def_bigendian='#define HAVE_BIGENDIAN 1'
2292 else
2293 _byte_order='little-endian'
2294 def_words_endian='#undef WORDS_BIGENDIAN'
2295 def_bigendian='#define HAVE_BIGENDIAN 0'
2297 echores "$_byte_order"
2300 echocheck "extern symbol prefix"
2301 cat > $TMPC << EOF
2302 int ff_extern;
2304 cc_check -c || die "Symbol mangling check failed."
2305 sym=$($_nm -P -g $TMPEXE)
2306 extern_prefix=${sym%%ff_extern*}
2307 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2308 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2309 echores $extern_prefix
2312 echocheck "assembler support of -pipe option"
2313 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2314 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2317 if darwin && test "$cc_vendor" = "gnu" ; then
2318 echocheck "GCC support of -mstackrealign"
2319 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2320 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2321 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2322 # wrong code with this flag, but this can be worked around by adding
2323 # -fno-unit-at-a-time as described in the blog post at
2324 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2325 cat > $TMPC << EOF
2326 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2327 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2329 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2330 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2331 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2332 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2333 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2336 # Checking for CFLAGS
2337 _install_strip="-s"
2338 if test "$_profile" != "" || test "$_debug" != "" ; then
2339 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2340 WARNFLAGS="-W -Wall"
2341 _install_strip=
2342 elif test -z "$CFLAGS" ; then
2343 if test "$cc_vendor" = "intel" ; then
2344 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2345 WARNFLAGS="-wd167 -wd556 -wd144"
2346 elif test "$cc_vendor" = "sun" ; then
2347 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2348 elif test "$cc_vendor" = "clang"; then
2349 CFLAGS="-O2 $_march $_pipe"
2350 WARNFLAGS="-Wall -Wno-switch-enum -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes"
2351 ERRORFLAGS="-Werror=implicit-function-declaration"
2352 elif test "$cc_vendor" != "gnu" ; then
2353 CFLAGS="-O2 $_march $_mcpu $_pipe"
2354 else
2355 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2356 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2357 ERRORFLAGS="-Werror-implicit-function-declaration"
2358 extra_ldflags="$extra_ldflags -ffast-math"
2360 else
2361 warn_cflags=yes
2364 if test "$cc_vendor" = "gnu" ; then
2365 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2366 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2367 # that's the only variable specific to C now, and this option is not valid
2368 # for C++.
2369 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2370 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2371 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2372 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2373 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2374 else
2375 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2378 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2379 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2382 if test -n "$LDFLAGS" ; then
2383 extra_ldflags="$extra_ldflags $LDFLAGS"
2384 warn_cflags=yes
2385 elif test "$cc_vendor" = "intel" ; then
2386 extra_ldflags="$extra_ldflags -i-static"
2388 if test -n "$CPPFLAGS" ; then
2389 extra_cflags="$extra_cflags $CPPFLAGS"
2390 warn_cflags=yes
2395 if x86_32 ; then
2396 # Checking assembler (_as) compatibility...
2397 # Added workaround for older as that reads from stdin by default - atmos
2398 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2399 echocheck "assembler ($_as $as_version)"
2401 _pref_as_version='2.9.1'
2402 echo 'nop' > $TMPS
2403 if test "$_mmx" = yes ; then
2404 echo 'emms' >> $TMPS
2406 if test "$_3dnow" = yes ; then
2407 _pref_as_version='2.10.1'
2408 echo 'femms' >> $TMPS
2410 if test "$_3dnowext" = yes ; then
2411 _pref_as_version='2.10.1'
2412 echo 'pswapd %mm0, %mm0' >> $TMPS
2414 if test "$_mmxext" = yes ; then
2415 _pref_as_version='2.10.1'
2416 echo 'movntq %mm0, (%eax)' >> $TMPS
2418 if test "$_sse" = yes ; then
2419 _pref_as_version='2.10.1'
2420 echo 'xorps %xmm0, %xmm0' >> $TMPS
2422 #if test "$_sse2" = yes ; then
2423 # _pref_as_version='2.11'
2424 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2426 if test "$_cmov" = yes ; then
2427 _pref_as_version='2.10.1'
2428 echo 'cmovb %eax, %ebx' >> $TMPS
2430 if test "$_ssse3" = yes ; then
2431 _pref_as_version='2.16.92'
2432 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2434 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2436 if test "$as_verc_fail" != yes ; then
2437 echores "ok"
2438 else
2439 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2440 echores "failed"
2441 die "obsolete binutils version"
2444 fi #if x86_32
2447 echocheck "PIC"
2448 pic=no
2449 cat > $TMPC << EOF
2450 int main(void) {
2451 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2452 #error PIC not enabled
2453 #endif
2454 return 0;
2457 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2458 echores $pic
2461 if x86 ; then
2463 echocheck ".align is a power of two"
2464 if test "$_asmalign_pot" = auto ; then
2465 _asmalign_pot=no
2466 inline_asm_check '".align 3"' && _asmalign_pot=yes
2468 if test "$_asmalign_pot" = "yes" ; then
2469 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2470 else
2471 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2473 echores $_asmalign_pot
2476 echocheck "ebx availability"
2477 ebx_available=no
2478 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2479 cat > $TMPC << EOF
2480 int main(void) {
2481 int x;
2482 __asm__ volatile(
2483 "xor %0, %0"
2484 :"=b"(x)
2485 // just adding ebx to clobber list seems unreliable with some
2486 // compilers, e.g. Haiku's gcc 2.95
2488 // and the above check does not work for OSX 64 bit...
2489 __asm__ volatile("":::"%ebx");
2490 return 0;
2493 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2494 echores $ebx_available
2497 echocheck "yasm"
2498 if test -z "$YASMFLAGS" ; then
2499 if darwin ; then
2500 x86_64 && objformat="macho64" || objformat="macho"
2501 elif win32 ; then
2502 objformat="win32"
2503 else
2504 objformat="elf"
2506 # currently tested for Linux x86, x86_64
2507 YASMFLAGS="-f $objformat"
2508 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2509 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2510 case "$objformat" in
2511 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2512 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2513 esac
2514 else
2515 warn_cflags=yes
2518 echo "pabsw xmm0, xmm0" > $TMPS
2519 yasm_check || _yasm=""
2520 if test $_yasm ; then
2521 def_yasm='#define HAVE_YASM 1'
2522 have_yasm="yes"
2523 echores "$_yasm"
2524 else
2525 def_yasm='#define HAVE_YASM 0'
2526 have_yasm="no"
2527 echores "no"
2530 echocheck "bswap"
2531 def_bswap='#define HAVE_BSWAP 0'
2532 echo 'bswap %eax' > $TMPS
2533 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2534 echores "$bswap"
2535 fi #if x86
2538 #FIXME: This should happen before the check for CFLAGS..
2539 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2540 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2542 # check if AltiVec is supported by the compiler, and how to enable it
2543 echocheck "GCC AltiVec flags"
2544 if $(cflag_check -maltivec -mabi=altivec) ; then
2545 _altivec_gcc_flags="-maltivec -mabi=altivec"
2546 # check if <altivec.h> should be included
2547 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2548 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2549 inc_altivec_h='#include <altivec.h>'
2550 else
2551 if $(cflag_check -faltivec) ; then
2552 _altivec_gcc_flags="-faltivec"
2553 else
2554 _altivec=no
2555 _altivec_gcc_flags="none, AltiVec disabled"
2559 echores "$_altivec_gcc_flags"
2561 # check if the compiler supports braces for vector declarations
2562 cat > $TMPC << EOF
2563 $inc_altivec_h
2564 int main(void) { (vector int) {1}; return 0; }
2566 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2568 # Disable runtime cpudetection if we cannot generate AltiVec code or
2569 # AltiVec is disabled by the user.
2570 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2571 && _runtime_cpudetection=no
2573 # Show that we are optimizing for AltiVec (if enabled and supported).
2574 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2575 && _optimizing="$_optimizing altivec"
2577 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2578 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2581 if ppc ; then
2582 def_xform_asm='#define HAVE_XFORM_ASM 0'
2583 xform_asm=no
2584 echocheck "XFORM ASM support"
2585 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2586 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2587 echores "$xform_asm"
2590 if arm ; then
2591 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2592 if test $_armv5te = "auto" ; then
2593 _armv5te=no
2594 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2596 echores "$_armv5te"
2598 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2600 echocheck "ARMv6 (SIMD instructions)"
2601 if test $_armv6 = "auto" ; then
2602 _armv6=no
2603 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2605 echores "$_armv6"
2607 echocheck "ARMv6t2 (SIMD instructions)"
2608 if test $_armv6t2 = "auto" ; then
2609 _armv6t2=no
2610 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2612 echores "$_armv6t2"
2614 echocheck "ARM VFP"
2615 if test $_armvfp = "auto" ; then
2616 _armvfp=no
2617 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2619 echores "$_armvfp"
2621 echocheck "ARM NEON"
2622 if test $neon = "auto" ; then
2623 neon=no
2624 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2626 echores "$neon"
2628 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2629 if test $_iwmmxt = "auto" ; then
2630 _iwmmxt=no
2631 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2633 echores "$_iwmmxt"
2636 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2637 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2638 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2639 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2640 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2641 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2642 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2643 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2644 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2645 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2646 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2647 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2648 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2649 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2650 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2651 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2652 test "$neon" = yes && cpuexts="NEON $cpuexts"
2653 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2654 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2655 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2657 # Checking kernel version...
2658 if x86_32 && linux ; then
2659 _k_verc_problem=no
2660 kernel_version=$(uname -r 2>&1)
2661 echocheck "$system_name kernel version"
2662 case "$kernel_version" in
2663 '') kernel_version="?.??"; _k_verc_fail=yes;;
2664 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2665 _k_verc_problem=yes;;
2666 esac
2667 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2668 _k_verc_fail=yes
2670 if test "$_k_verc_fail" ; then
2671 echores "$kernel_version, fail"
2672 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2673 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2674 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2675 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2676 echo "2.2.x you must upgrade it to get SSE support!"
2677 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2678 else
2679 echores "$kernel_version, ok"
2683 ######################
2684 # MAIN TESTS GO HERE #
2685 ######################
2688 echocheck "-lposix"
2689 if cflag_check -lposix ; then
2690 extra_ldflags="$extra_ldflags -lposix"
2691 echores "yes"
2692 else
2693 echores "no"
2696 echocheck "-lm"
2697 if cflag_check -lm ; then
2698 _ld_lm="-lm"
2699 echores "yes"
2700 else
2701 _ld_lm=""
2702 echores "no"
2706 echocheck "langinfo"
2707 if test "$_langinfo" = auto ; then
2708 _langinfo=no
2709 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2711 if test "$_langinfo" = yes ; then
2712 def_langinfo='#define HAVE_LANGINFO 1'
2713 else
2714 def_langinfo='#undef HAVE_LANGINFO'
2716 echores "$_langinfo"
2719 echocheck "translation support"
2720 if test "$_translation" = yes; then
2721 def_translation="#define CONFIG_TRANSLATION 1"
2722 else
2723 def_translation="#undef CONFIG_TRANSLATION"
2725 echores "$_translation"
2727 echocheck "language"
2728 # Set preferred languages, "all" uses English as main language.
2729 test -z "$language" && language=$LINGUAS
2730 test -z "$language_doc" && language_doc=$language
2731 test -z "$language_man" && language_man=$language
2732 test -z "$language_msg" && language_msg=$language
2733 test -z "$language_msg" && language_msg="all"
2734 language_doc=$(echo $language_doc | tr , " ")
2735 language_man=$(echo $language_man | tr , " ")
2736 language_msg=$(echo $language_msg | tr , " ")
2738 test "$language_doc" = "all" && language_doc=$doc_lang_all
2739 test "$language_man" = "all" && language_man=$man_lang_all
2740 test "$language_msg" = "all" && language_msg=$msg_lang_all
2742 if test "$_translation" != yes ; then
2743 language_msg=""
2746 # Prune non-existing translations from language lists.
2747 # Set message translation to the first available language.
2748 # Fall back on English.
2749 for lang in $language_doc ; do
2750 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2751 done
2752 language_doc=$tmp_language_doc
2753 test -z "$language_doc" && language_doc=en
2755 for lang in $language_man ; do
2756 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2757 done
2758 language_man=$tmp_language_man
2759 test -z "$language_man" && language_man=en
2761 for lang in $language_msg ; do
2762 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2763 done
2764 language_msg=$tmp_language_msg
2766 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2769 echocheck "enable sighandler"
2770 if test "$_sighandler" = yes ; then
2771 def_sighandler='#define CONFIG_SIGHANDLER 1'
2772 else
2773 def_sighandler='#undef CONFIG_SIGHANDLER'
2775 echores "$_sighandler"
2777 echocheck "runtime cpudetection"
2778 if test "$_runtime_cpudetection" = yes ; then
2779 _optimizing="Runtime CPU-Detection enabled"
2780 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2781 else
2782 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2784 echores "$_runtime_cpudetection"
2787 echocheck "restrict keyword"
2788 for restrict_keyword in restrict __restrict __restrict__ ; do
2789 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2790 if cc_check; then
2791 def_restrict_keyword=$restrict_keyword
2792 break;
2794 done
2795 if [ -n "$def_restrict_keyword" ]; then
2796 echores "$def_restrict_keyword"
2797 else
2798 echores "none"
2800 # Avoid infinite recursion loop ("#define restrict restrict")
2801 if [ "$def_restrict_keyword" != "restrict" ]; then
2802 def_restrict_keyword="#define restrict $def_restrict_keyword"
2803 else
2804 def_restrict_keyword=""
2808 echocheck "__builtin_expect"
2809 # GCC branch prediction hint
2810 cat > $TMPC << EOF
2811 static int foo(int a) {
2812 a = __builtin_expect(a, 10);
2813 return a == 10 ? 0 : 1;
2815 int main(void) { return foo(10) && foo(0); }
2817 _builtin_expect=no
2818 cc_check && _builtin_expect=yes
2819 if test "$_builtin_expect" = yes ; then
2820 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2821 else
2822 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2824 echores "$_builtin_expect"
2827 echocheck "kstat"
2828 _kstat=no
2829 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2830 if test "$_kstat" = yes ; then
2831 def_kstat="#define HAVE_LIBKSTAT 1"
2832 extra_ldflags="$extra_ldflags -lkstat"
2833 else
2834 def_kstat="#undef HAVE_LIBKSTAT"
2836 echores "$_kstat"
2839 echocheck "posix4"
2840 # required for nanosleep on some systems
2841 _posix4=no
2842 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2843 if test "$_posix4" = yes ; then
2844 extra_ldflags="$extra_ldflags -lposix4"
2846 echores "$_posix4"
2848 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2849 echocheck $func
2850 eval _$func=no
2851 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2852 if eval test "x\$_$func" = "xyes"; then
2853 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2854 echores yes
2855 else
2856 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2857 echores no
2859 done
2862 echocheck "mkstemp"
2863 _mkstemp=no
2864 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2865 if test "$_mkstemp" = yes ; then
2866 def_mkstemp='#define HAVE_MKSTEMP 1'
2867 else
2868 def_mkstemp='#define HAVE_MKSTEMP 0'
2870 echores "$_mkstemp"
2873 echocheck "nanosleep"
2874 _nanosleep=no
2875 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2876 if test "$_nanosleep" = yes ; then
2877 def_nanosleep='#define HAVE_NANOSLEEP 1'
2878 else
2879 def_nanosleep='#undef HAVE_NANOSLEEP'
2881 echores "$_nanosleep"
2884 echocheck "socklib"
2885 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2886 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2887 cat > $TMPC << EOF
2888 #include <netdb.h>
2889 #include <sys/socket.h>
2890 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2892 _socklib=no
2893 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2894 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2895 done
2896 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2897 if test $_winsock2_h = auto ; then
2898 _winsock2_h=no
2899 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2901 test "$_ld_sock" && res_comment="using $_ld_sock"
2902 echores "$_socklib"
2905 if test $_winsock2_h = yes ; then
2906 _ld_sock="-lws2_32"
2907 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2908 else
2909 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2913 echocheck "arpa/inet.h"
2914 arpa_inet_h=no
2915 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2916 header_check arpa/inet.h && arpa_inet_h=yes &&
2917 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2918 echores "$arpa_inet_h"
2921 echocheck "inet_pton()"
2922 def_inet_pton='#define HAVE_INET_PTON 0'
2923 inet_pton=no
2924 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2925 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2926 done
2927 if test $inet_pton = yes ; then
2928 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2929 def_inet_pton='#define HAVE_INET_PTON 1'
2931 echores "$inet_pton"
2934 echocheck "inet_aton()"
2935 def_inet_aton='#define HAVE_INET_ATON 0'
2936 inet_aton=no
2937 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2938 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2939 done
2940 if test $inet_aton = yes ; then
2941 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2942 def_inet_aton='#define HAVE_INET_ATON 1'
2944 echores "$inet_aton"
2947 echocheck "socklen_t"
2948 _socklen_t=no
2949 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2950 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2951 done
2952 if test "$_socklen_t" = yes ; then
2953 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2954 else
2955 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2957 echores "$_socklen_t"
2960 echocheck "closesocket()"
2961 _closesocket=no
2962 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2963 if test "$_closesocket" = yes ; then
2964 def_closesocket='#define HAVE_CLOSESOCKET 1'
2965 else
2966 def_closesocket='#define HAVE_CLOSESOCKET 0'
2968 echores "$_closesocket"
2971 echocheck "networking"
2972 test $_winsock2_h = no && test $inet_pton = no &&
2973 test $inet_aton = no && networking=no
2974 if test "$networking" = yes ; then
2975 def_network='#define CONFIG_NETWORK 1'
2976 def_networking='#define CONFIG_NETWORKING 1'
2977 extra_ldflags="$extra_ldflags $_ld_sock"
2978 inputmodules="networking $inputmodules"
2979 else
2980 noinputmodules="networking $noinputmodules"
2981 def_network='#define CONFIG_NETWORK 0'
2982 def_networking='#undef CONFIG_NETWORKING'
2984 echores "$networking"
2987 echocheck "inet6"
2988 if test "$_inet6" = auto ; then
2989 cat > $TMPC << EOF
2990 #include <sys/types.h>
2991 #if !defined(_WIN32)
2992 #include <sys/socket.h>
2993 #include <netinet/in.h>
2994 #else
2995 #include <ws2tcpip.h>
2996 #endif
2997 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2999 _inet6=no
3000 if cc_check $_ld_sock ; then
3001 _inet6=yes
3004 if test "$_inet6" = yes ; then
3005 def_inet6='#define HAVE_AF_INET6 1'
3006 else
3007 def_inet6='#undef HAVE_AF_INET6'
3009 echores "$_inet6"
3012 echocheck "gethostbyname2"
3013 if test "$_gethostbyname2" = auto ; then
3014 cat > $TMPC << EOF
3015 #include <sys/types.h>
3016 #include <sys/socket.h>
3017 #include <netdb.h>
3018 int main(void) { gethostbyname2("", AF_INET); return 0; }
3020 _gethostbyname2=no
3021 if cc_check ; then
3022 _gethostbyname2=yes
3025 if test "$_gethostbyname2" = yes ; then
3026 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3027 else
3028 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3030 echores "$_gethostbyname2"
3033 echocheck "inttypes.h (required)"
3034 _inttypes=no
3035 header_check inttypes.h && _inttypes=yes
3036 echores "$_inttypes"
3038 if test "$_inttypes" = no ; then
3039 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3040 header_check sys/bitypes.h && _inttypes=yes
3041 if test "$_inttypes" = yes ; then
3042 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."
3043 else
3044 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3049 echocheck "malloc.h"
3050 _malloc=no
3051 header_check malloc.h && _malloc=yes
3052 if test "$_malloc" = yes ; then
3053 def_malloc_h='#define HAVE_MALLOC_H 1'
3054 else
3055 def_malloc_h='#define HAVE_MALLOC_H 0'
3057 echores "$_malloc"
3060 echocheck "memalign()"
3061 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3062 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3063 _memalign=no
3064 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3065 if test "$_memalign" = yes ; then
3066 def_memalign='#define HAVE_MEMALIGN 1'
3067 else
3068 def_memalign='#define HAVE_MEMALIGN 0'
3069 def_map_memalign='#define memalign(a, b) malloc(b)'
3070 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3072 echores "$_memalign"
3075 echocheck "posix_memalign()"
3076 posix_memalign=no
3077 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3078 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3079 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3080 echores "$posix_memalign"
3083 echocheck "alloca.h"
3084 _alloca=no
3085 statement_check alloca.h 'alloca(0)' && _alloca=yes
3086 if cc_check ; then
3087 def_alloca_h='#define HAVE_ALLOCA_H 1'
3088 else
3089 def_alloca_h='#undef HAVE_ALLOCA_H'
3091 echores "$_alloca"
3094 echocheck "fastmemcpy"
3095 if test "$_fastmemcpy" = yes ; then
3096 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3097 else
3098 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3100 echores "$_fastmemcpy"
3103 echocheck "mman.h"
3104 _mman=no
3105 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3106 if test "$_mman" = yes ; then
3107 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3108 else
3109 def_mman_h='#undef HAVE_SYS_MMAN_H'
3110 os2 && need_mmap=yes
3112 echores "$_mman"
3114 _mman_has_map_failed=no
3115 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3116 if test "$_mman_has_map_failed" = yes ; then
3117 def_mman_has_map_failed=''
3118 else
3119 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3122 echocheck "dynamic loader"
3123 _dl=no
3124 for _ld_tmp in "" "-ldl"; do
3125 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3126 done
3127 if test "$_dl" = yes ; then
3128 def_dl='#define HAVE_LIBDL 1'
3129 else
3130 def_dl='#undef HAVE_LIBDL'
3132 echores "$_dl"
3135 def_threads='#define HAVE_THREADS 0'
3137 echocheck "pthread"
3138 if linux ; then
3139 THREAD_CFLAGS=-D_REENTRANT
3140 elif freebsd || netbsd || openbsd || bsdos ; then
3141 THREAD_CFLAGS=-D_THREAD_SAFE
3143 if test "$_pthreads" = auto ; then
3144 cat > $TMPC << EOF
3145 #include <pthread.h>
3146 static void *func(void *arg) { return arg; }
3147 int main(void) {
3148 pthread_t tid;
3149 #ifdef PTW32_STATIC_LIB
3150 pthread_win32_process_attach_np();
3151 pthread_win32_thread_attach_np();
3152 #endif
3153 return pthread_create (&tid, 0, func, 0) != 0;
3156 _pthreads=no
3157 if ! hpux ; then
3158 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3159 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3160 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3161 done
3162 if test "$_pthreads" = no && mingw32 ; then
3163 _ld_tmp="-lpthreadGC2 -lws2_32"
3164 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3168 if test "$_pthreads" = yes ; then
3169 test $_ld_pthread && res_comment="using $_ld_pthread"
3170 def_pthreads='#define HAVE_PTHREADS 1'
3171 def_threads='#define HAVE_THREADS 1'
3172 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3173 else
3174 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3175 def_pthreads='#undef HAVE_PTHREADS'
3176 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3177 mingw32 || _win32dll=no
3179 echores "$_pthreads"
3181 if cygwin ; then
3182 if test "$_pthreads" = yes ; then
3183 def_pthread_cache="#define PTHREAD_CACHE 1"
3184 else
3185 _stream_cache=no
3186 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3190 echocheck "w32threads"
3191 if test "$_pthreads" = yes ; then
3192 res_comment="using pthread instead"
3193 _w32threads=no
3195 if test "$_w32threads" = auto ; then
3196 _w32threads=no
3197 mingw32 && _w32threads=yes
3199 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3200 echores "$_w32threads"
3202 echocheck "rpath"
3203 if test "$_rpath" = yes ; then
3204 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3205 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3206 done
3207 extra_ldflags=$tmp
3209 echores "$_rpath"
3211 echocheck "iconv"
3212 if test "$_iconv" = auto ; then
3213 cat > $TMPC << EOF
3214 #include <stdio.h>
3215 #include <unistd.h>
3216 #include <iconv.h>
3217 #define INBUFSIZE 1024
3218 #define OUTBUFSIZE 4096
3220 char inbuffer[INBUFSIZE];
3221 char outbuffer[OUTBUFSIZE];
3223 int main(void) {
3224 size_t numread;
3225 iconv_t icdsc;
3226 char *tocode="UTF-8";
3227 char *fromcode="cp1250";
3228 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3229 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3230 char *iptr=inbuffer;
3231 char *optr=outbuffer;
3232 size_t inleft=numread;
3233 size_t outleft=OUTBUFSIZE;
3234 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3235 != (size_t)(-1)) {
3236 write(1, outbuffer, OUTBUFSIZE - outleft);
3239 if (iconv_close(icdsc) == -1)
3242 return 0;
3245 _iconv=no
3246 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3247 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3248 _iconv=yes && break
3249 done
3250 if test "$_iconv" != yes ; then
3251 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."
3254 if test "$_iconv" = yes ; then
3255 def_iconv='#define CONFIG_ICONV 1'
3256 else
3257 def_iconv='#undef CONFIG_ICONV'
3259 echores "$_iconv"
3262 echocheck "soundcard.h"
3263 _soundcard_h=no
3264 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3265 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3266 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3267 header_check $_soundcard_header && _soundcard_h=yes &&
3268 res_comment="$_soundcard_header" && break
3269 done
3271 if test "$_soundcard_h" = yes ; then
3272 if test $_soundcard_header = "sys/soundcard.h"; then
3273 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3274 else
3275 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3278 echores "$_soundcard_h"
3281 echocheck "sys/videoio.h"
3282 sys_videoio_h=no
3283 def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
3284 header_check sys/videoio.h && sys_videoio_h=yes &&
3285 def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
3286 echores "$sys_videoio_h"
3289 echocheck "sys/dvdio.h"
3290 _dvdio=no
3291 # FreeBSD 8.1 has broken dvdio.h
3292 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3293 if test "$_dvdio" = yes ; then
3294 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3295 else
3296 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3298 echores "$_dvdio"
3301 echocheck "sys/cdio.h"
3302 _cdio=no
3303 # at least OpenSolaris has a broken cdio.h
3304 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3305 if test "$_cdio" = yes ; then
3306 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3307 else
3308 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3310 echores "$_cdio"
3313 echocheck "linux/cdrom.h"
3314 _cdrom=no
3315 header_check linux/cdrom.h && _cdrom=yes
3316 if test "$_cdrom" = yes ; then
3317 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3318 else
3319 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3321 echores "$_cdrom"
3324 echocheck "dvd.h"
3325 _dvd=no
3326 header_check dvd.h && _dvd=yes
3327 if test "$_dvd" = yes ; then
3328 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3329 else
3330 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3332 echores "$_dvd"
3335 if bsdos; then
3336 echocheck "BSDI dvd.h"
3337 _bsdi_dvd=no
3338 header_check dvd.h && _bsdi_dvd=yes
3339 if test "$_bsdi_dvd" = yes ; then
3340 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3341 else
3342 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3344 echores "$_bsdi_dvd"
3345 fi #if bsdos
3348 if hpux; then
3349 # also used by AIX, but AIX does not support VCD and/or libdvdread
3350 echocheck "HP-UX SCSI header"
3351 _hpux_scsi_h=no
3352 header_check sys/scsi.h && _hpux_scsi_h=yes
3353 if test "$_hpux_scsi_h" = yes ; then
3354 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3355 else
3356 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3358 echores "$_hpux_scsi_h"
3359 fi #if hpux
3362 if sunos; then
3363 echocheck "userspace SCSI headers (Solaris)"
3364 _sol_scsi_h=no
3365 header_check sys/scsi/scsi_types.h &&
3366 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3367 _sol_scsi_h=yes
3368 if test "$_sol_scsi_h" = yes ; then
3369 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3370 else
3371 def_sol_scsi_h='#undef SOLARIS_USCSI'
3373 echores "$_sol_scsi_h"
3374 fi #if sunos
3377 echocheck "termcap"
3378 if test "$_termcap" = auto ; then
3379 _termcap=no
3380 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3381 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3382 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3383 done
3385 if test "$_termcap" = yes ; then
3386 def_termcap='#define HAVE_TERMCAP 1'
3387 test $_ld_tmp && res_comment="using $_ld_tmp"
3388 else
3389 def_termcap='#undef HAVE_TERMCAP'
3391 echores "$_termcap"
3394 echocheck "termios"
3395 def_termios='#undef HAVE_TERMIOS'
3396 def_termios_h='#undef HAVE_TERMIOS_H'
3397 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3398 if test "$_termios" = auto ; then
3399 _termios=no
3400 for _termios_header in "termios.h" "sys/termios.h"; do
3401 header_check $_termios_header && _termios=yes &&
3402 res_comment="using $_termios_header" && break
3403 done
3406 if test "$_termios" = yes ; then
3407 def_termios='#define HAVE_TERMIOS 1'
3408 if test "$_termios_header" = "termios.h" ; then
3409 def_termios_h='#define HAVE_TERMIOS_H 1'
3410 else
3411 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3414 echores "$_termios"
3417 echocheck "shm"
3418 if test "$_shm" = auto ; then
3419 _shm=no
3420 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3422 if test "$_shm" = yes ; then
3423 def_shm='#define HAVE_SHM 1'
3424 else
3425 def_shm='#undef HAVE_SHM'
3427 echores "$_shm"
3430 echocheck "strsep()"
3431 _strsep=no
3432 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3433 if test "$_strsep" = yes ; then
3434 def_strsep='#define HAVE_STRSEP 1'
3435 need_strsep=no
3436 else
3437 def_strsep='#undef HAVE_STRSEP'
3438 need_strsep=yes
3440 echores "$_strsep"
3443 echocheck "vsscanf()"
3444 cat > $TMPC << EOF
3445 #define _ISOC99_SOURCE
3446 #include <stdarg.h>
3447 #include <stdio.h>
3448 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3450 _vsscanf=no
3451 cc_check && _vsscanf=yes
3452 if test "$_vsscanf" = yes ; then
3453 def_vsscanf='#define HAVE_VSSCANF 1'
3454 need_vsscanf=no
3455 else
3456 def_vsscanf='#undef HAVE_VSSCANF'
3457 need_vsscanf=yes
3459 echores "$_vsscanf"
3462 echocheck "swab()"
3463 _swab=no
3464 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' ||
3465 statement_check "string.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3466 if test "$_swab" = yes ; then
3467 def_swab='#define HAVE_SWAB 1'
3468 need_swab=no
3469 else
3470 def_swab='#undef HAVE_SWAB'
3471 need_swab=yes
3473 echores "$_swab"
3475 echocheck "POSIX select()"
3476 cat > $TMPC << EOF
3477 #include <stdio.h>
3478 #include <stdlib.h>
3479 #include <sys/types.h>
3480 #include <string.h>
3481 #include <sys/time.h>
3482 #include <unistd.h>
3483 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3485 _posix_select=no
3486 def_posix_select='#undef HAVE_POSIX_SELECT'
3487 #select() of kLIBC (OS/2) supports socket only
3488 ! os2 && cc_check && _posix_select=yes &&
3489 def_posix_select='#define HAVE_POSIX_SELECT 1'
3490 echores "$_posix_select"
3493 echocheck "audio select()"
3494 if test "$_select" = no ; then
3495 def_select='#undef HAVE_AUDIO_SELECT'
3496 elif test "$_select" = yes ; then
3497 def_select='#define HAVE_AUDIO_SELECT 1'
3499 echores "$_select"
3502 echocheck "gettimeofday()"
3503 _gettimeofday=no
3504 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3505 if test "$_gettimeofday" = yes ; then
3506 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3507 need_gettimeofday=no
3508 else
3509 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3510 need_gettimeofday=yes
3512 echores "$_gettimeofday"
3515 echocheck "glob()"
3516 _glob=no
3517 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3518 need_glob=no
3519 if test "$_glob" = yes ; then
3520 def_glob='#define HAVE_GLOB 1'
3521 else
3522 def_glob='#undef HAVE_GLOB'
3523 # HACK! need_glob currently enables compilation of a
3524 # win32-specific glob()-replacement.
3525 # Other OS neither need it nor can they use it (mf:// is disabled for them).
3526 win32 && need_glob=yes
3528 echores "$_glob"
3531 echocheck "setenv()"
3532 _setenv=no
3533 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3534 if test "$_setenv" = yes ; then
3535 def_setenv='#define HAVE_SETENV 1'
3536 need_setenv=no
3537 else
3538 def_setenv='#undef HAVE_SETENV'
3539 need_setenv=yes
3541 echores "$_setenv"
3544 echocheck "setmode()"
3545 _setmode=no
3546 def_setmode='#define HAVE_SETMODE 0'
3547 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3548 echores "$_setmode"
3551 if sunos; then
3552 echocheck "sysi86()"
3553 _sysi86=no
3554 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3555 if test "$_sysi86" = yes ; then
3556 def_sysi86='#define HAVE_SYSI86 1'
3557 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3558 else
3559 def_sysi86='#undef HAVE_SYSI86'
3561 echores "$_sysi86"
3562 fi #if sunos
3565 echocheck "sys/sysinfo.h"
3566 _sys_sysinfo=no
3567 statement_check sys/sysinfo.h 'struct sysinfo s_info; s_info.mem_unit=0; sysinfo(&s_info)' && _sys_sysinfo=yes
3568 if test "$_sys_sysinfo" = yes ; then
3569 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3570 else
3571 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3573 echores "$_sys_sysinfo"
3576 if darwin; then
3578 echocheck "Mac OS X Finder Support"
3579 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3580 if test "$_macosx_finder" = yes ; then
3581 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3582 extra_ldflags="$extra_ldflags -framework Carbon"
3584 echores "$_macosx_finder"
3586 echocheck "Mac OS X Bundle file locations"
3587 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3588 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3589 if test "$_macosx_bundle" = yes ; then
3590 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3591 extra_ldflags="$extra_ldflags -framework Carbon"
3593 echores "$_macosx_bundle"
3595 echocheck "Apple Remote"
3596 if test "$_apple_remote" = auto ; then
3597 _apple_remote=no
3598 cat > $TMPC <<EOF
3599 #include <stdio.h>
3600 #include <IOKit/IOCFPlugIn.h>
3601 int main(void) {
3602 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3603 CFMutableDictionaryRef hidMatchDictionary;
3604 IOReturn ioReturnValue;
3606 // Set up a matching dictionary to search the I/O Registry by class.
3607 // name for all HID class devices
3608 hidMatchDictionary = IOServiceMatching("AppleIRController");
3610 // Now search I/O Registry for matching devices.
3611 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3612 hidMatchDictionary, &hidObjectIterator);
3614 // If search is unsuccessful, return nonzero.
3615 if (ioReturnValue != kIOReturnSuccess ||
3616 !IOIteratorIsValid(hidObjectIterator)) {
3617 return 1;
3619 return 0;
3622 cc_check -framework IOKit && _apple_remote=yes
3624 if test "$_apple_remote" = yes ; then
3625 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3626 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3627 else
3628 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3630 echores "$_apple_remote"
3632 fi #if darwin
3634 if linux; then
3636 echocheck "Apple IR"
3637 if test "$_apple_ir" = auto ; then
3638 _apple_ir=no
3639 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3641 if test "$_apple_ir" = yes ; then
3642 def_apple_ir='#define CONFIG_APPLE_IR 1'
3643 else
3644 def_apple_ir='#undef CONFIG_APPLE_IR'
3646 echores "$_apple_ir"
3647 fi #if linux
3649 echocheck "pkg-config"
3650 if $($_pkg_config --version > /dev/null 2>&1); then
3651 if test "$_ld_static"; then
3652 _pkg_config="$_pkg_config --static"
3654 echores "yes"
3655 else
3656 _pkg_config=false
3657 echores "no"
3661 echocheck "Samba support (libsmbclient)"
3662 if test "$_smb" = yes; then
3663 extra_ldflags="$extra_ldflags -lsmbclient"
3665 if test "$_smb" = auto; then
3666 _smb=no
3667 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3668 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3669 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3670 done
3673 if test "$_smb" = yes; then
3674 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3675 inputmodules="smb $inputmodules"
3676 else
3677 def_smb="#undef CONFIG_LIBSMBCLIENT"
3678 noinputmodules="smb $noinputmodules"
3680 echores "$_smb"
3683 #########
3684 # VIDEO #
3685 #########
3688 echocheck "tdfxfb"
3689 if test "$_tdfxfb" = yes ; then
3690 def_tdfxfb='#define CONFIG_TDFXFB 1'
3691 vomodules="tdfxfb $vomodules"
3692 else
3693 def_tdfxfb='#undef CONFIG_TDFXFB'
3694 novomodules="tdfxfb $novomodules"
3696 echores "$_tdfxfb"
3698 echocheck "s3fb"
3699 if test "$_s3fb" = yes ; then
3700 def_s3fb='#define CONFIG_S3FB 1'
3701 vomodules="s3fb $vomodules"
3702 else
3703 def_s3fb='#undef CONFIG_S3FB'
3704 novomodules="s3fb $novomodules"
3706 echores "$_s3fb"
3708 echocheck "wii"
3709 if test "$_wii" = yes ; then
3710 def_wii='#define CONFIG_WII 1'
3711 vomodules="wii $vomodules"
3712 else
3713 def_wii='#undef CONFIG_WII'
3714 novomodules="wii $novomodules"
3716 echores "$_wii"
3718 echocheck "tdfxvid"
3719 if test "$_tdfxvid" = yes ; then
3720 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3721 vomodules="tdfx_vid $vomodules"
3722 else
3723 def_tdfxvid='#undef CONFIG_TDFX_VID'
3724 novomodules="tdfx_vid $novomodules"
3726 echores "$_tdfxvid"
3728 echocheck "xvr100"
3729 if test "$_xvr100" = auto ; then
3730 cat > $TMPC << EOF
3731 #include <unistd.h>
3732 #include <sys/fbio.h>
3733 #include <sys/visual_io.h>
3734 int main(void) {
3735 struct vis_identifier ident;
3736 struct fbgattr attr;
3737 ioctl(0, VIS_GETIDENTIFIER, &ident);
3738 ioctl(0, FBIOGATTR, &attr);
3739 return 0;
3742 _xvr100=no
3743 cc_check && _xvr100=yes
3745 if test "$_xvr100" = yes ; then
3746 def_xvr100='#define CONFIG_XVR100 1'
3747 vomodules="xvr100 $vomodules"
3748 else
3749 def_tdfxvid='#undef CONFIG_XVR100'
3750 novomodules="xvr100 $novomodules"
3752 echores "$_xvr100"
3754 echocheck "tga"
3755 if test "$_tga" = yes ; then
3756 def_tga='#define CONFIG_TGA 1'
3757 vomodules="tga $vomodules"
3758 else
3759 def_tga='#undef CONFIG_TGA'
3760 novomodules="tga $novomodules"
3762 echores "$_tga"
3765 echocheck "md5sum support"
3766 if test "$_md5sum" = yes; then
3767 def_md5sum="#define CONFIG_MD5SUM 1"
3768 vomodules="md5sum $vomodules"
3769 else
3770 def_md5sum="#undef CONFIG_MD5SUM"
3771 novomodules="md5sum $novomodules"
3773 echores "$_md5sum"
3776 echocheck "yuv4mpeg support"
3777 if test "$_yuv4mpeg" = yes; then
3778 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3779 vomodules="yuv4mpeg $vomodules"
3780 else
3781 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3782 novomodules="yuv4mpeg $novomodules"
3784 echores "$_yuv4mpeg"
3787 echocheck "bl"
3788 if test "$_bl" = yes ; then
3789 def_bl='#define CONFIG_BL 1'
3790 vomodules="bl $vomodules"
3791 else
3792 def_bl='#undef CONFIG_BL'
3793 novomodules="bl $novomodules"
3795 echores "$_bl"
3798 echocheck "DirectFB"
3799 if test "$_directfb" = auto ; then
3800 _directfb=no
3801 cat > $TMPC << EOF
3802 #include <directfb.h>
3803 #include <directfb_version.h>
3804 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3805 #error "DirectFB version too old."
3806 #endif
3807 int main(void) { DirectFBInit(0, 0); return 0; }
3809 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3810 cc_check $_inc_tmp -ldirectfb &&
3811 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3812 done
3814 if test "$_directfb" = yes ; then
3815 def_directfb='#define CONFIG_DIRECTFB 1'
3816 vomodules="directfb dfbmga $vomodules"
3817 libs_mplayer="$libs_mplayer -ldirectfb"
3818 else
3819 def_directfb='#undef CONFIG_DIRECTFB'
3820 novomodules="directfb dfbmga $novomodules"
3822 echores "$_directfb"
3825 echocheck "X11 headers presence"
3826 _x11_headers="no"
3827 res_comment="check if the dev(el) packages are installed"
3828 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3829 if test -f "$I/X11/Xlib.h" ; then
3830 _x11_headers="yes"
3831 res_comment=""
3832 break
3834 done
3835 if test $_cross_compile = no; then
3836 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3837 /usr/include/X11R6 /usr/openwin/include ; do
3838 if test -f "$I/X11/Xlib.h" ; then
3839 extra_cflags="$extra_cflags -I$I"
3840 _x11_headers="yes"
3841 res_comment="using $I"
3842 break
3844 done
3846 echores "$_x11_headers"
3849 echocheck "X11"
3850 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3851 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3852 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3853 -L/usr/lib ; do
3854 if netbsd; then
3855 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3856 else
3857 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3859 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3860 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3861 done
3863 if test "$_x11" = yes ; then
3864 def_x11='#define CONFIG_X11 1'
3865 vomodules="x11 xover $vomodules"
3866 else
3867 _x11=no
3868 def_x11='#undef CONFIG_X11'
3869 novomodules="x11 $novomodules"
3870 res_comment="check if the dev(el) packages are installed"
3872 echores "$_x11"
3874 echocheck "Xss screensaver extensions"
3875 if test "$_xss" = auto ; then
3876 _xss=no
3877 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3879 if test "$_xss" = yes ; then
3880 def_xss='#define CONFIG_XSS 1'
3881 libs_mplayer="$libs_mplayer -lXss"
3882 else
3883 def_xss='#undef CONFIG_XSS'
3885 echores "$_xss"
3887 echocheck "DPMS"
3888 _xdpms3=no
3889 _xdpms4=no
3890 if test "$_x11" = yes ; then
3891 cat > $TMPC <<EOF
3892 #include <X11/Xmd.h>
3893 #include <X11/Xlib.h>
3894 #include <X11/Xutil.h>
3895 #include <X11/Xatom.h>
3896 #include <X11/extensions/dpms.h>
3897 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3899 cc_check -lXdpms && _xdpms3=yes
3900 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3902 if test "$_xdpms4" = yes ; then
3903 def_xdpms='#define CONFIG_XDPMS 1'
3904 res_comment="using Xdpms 4"
3905 echores "yes"
3906 elif test "$_xdpms3" = yes ; then
3907 def_xdpms='#define CONFIG_XDPMS 1'
3908 libs_mplayer="$libs_mplayer -lXdpms"
3909 res_comment="using Xdpms 3"
3910 echores "yes"
3911 else
3912 def_xdpms='#undef CONFIG_XDPMS'
3913 echores "no"
3917 echocheck "Xv"
3918 if test "$_xv" = auto && test "$_x11" = yes ; then
3919 _xv=no
3920 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3923 if test "$_xv" = yes ; then
3924 def_xv='#define CONFIG_XV 1'
3925 libs_mplayer="$libs_mplayer -lXv"
3926 vomodules="xv $vomodules"
3927 else
3928 def_xv='#undef CONFIG_XV'
3929 novomodules="xv $novomodules"
3931 echores "$_xv"
3934 echocheck "VDPAU"
3935 if test "$_vdpau" = auto && test "$_x11" = yes ; then
3936 _vdpau=no
3937 if test "$_dl" = yes ; then
3938 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
3941 if test "$_vdpau" = yes ; then
3942 def_vdpau='#define CONFIG_VDPAU 1'
3943 libs_mplayer="$libs_mplayer -lvdpau"
3944 vomodules="vdpau $vomodules"
3945 else
3946 def_vdpau='#define CONFIG_VDPAU 0'
3947 novomodules="vdpau $novomodules"
3949 echores "$_vdpau"
3952 echocheck "Xinerama"
3953 if test "$_xinerama" = auto && test "$_x11" = yes ; then
3954 _xinerama=no
3955 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3958 if test "$_xinerama" = yes ; then
3959 def_xinerama='#define CONFIG_XINERAMA 1'
3960 libs_mplayer="$libs_mplayer -lXinerama"
3961 else
3962 def_xinerama='#undef CONFIG_XINERAMA'
3964 echores "$_xinerama"
3967 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3968 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3969 # named 'X extensions' or something similar.
3970 # This check may be useful for future mplayer versions (to change resolution)
3971 # If you run into problems, remove '-lXxf86vm'.
3972 echocheck "Xxf86vm"
3973 if test "$_vm" = auto && test "$_x11" = yes ; then
3974 _vm=no
3975 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3977 if test "$_vm" = yes ; then
3978 def_vm='#define CONFIG_XF86VM 1'
3979 libs_mplayer="$libs_mplayer -lXxf86vm"
3980 else
3981 def_vm='#undef CONFIG_XF86VM'
3983 echores "$_vm"
3985 # Check for the presence of special keycodes, like audio control buttons
3986 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3987 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3988 # have these new keycodes.
3989 echocheck "XF86keysym"
3990 if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
3991 _xf86keysym=no
3992 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3994 if test "$_xf86keysym" = yes ; then
3995 def_xf86keysym='#define CONFIG_XF86XK 1'
3996 else
3997 def_xf86keysym='#undef CONFIG_XF86XK'
3999 echores "$_xf86keysym"
4001 echocheck "DGA"
4002 if test "$_dga2" = auto && test "$_x11" = yes ; then
4003 _dga2=no
4004 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4006 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4007 _dga1=no
4008 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4011 _dga=no
4012 def_dga='#undef CONFIG_DGA'
4013 def_dga1='#undef CONFIG_DGA1'
4014 def_dga2='#undef CONFIG_DGA2'
4015 if test "$_dga1" = yes ; then
4016 _dga=yes
4017 def_dga1='#define CONFIG_DGA1 1'
4018 res_comment="using DGA 1.0"
4019 elif test "$_dga2" = yes ; then
4020 _dga=yes
4021 def_dga2='#define CONFIG_DGA2 1'
4022 res_comment="using DGA 2.0"
4024 if test "$_dga" = yes ; then
4025 def_dga='#define CONFIG_DGA 1'
4026 libs_mplayer="$libs_mplayer -lXxf86dga"
4027 vomodules="dga $vomodules"
4028 else
4029 novomodules="dga $novomodules"
4031 echores "$_dga"
4034 echocheck "3dfx"
4035 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4036 def_3dfx='#define CONFIG_3DFX 1'
4037 vomodules="3dfx $vomodules"
4038 else
4039 _3dfx=no
4040 def_3dfx='#undef CONFIG_3DFX'
4041 novomodules="3dfx $novomodules"
4043 echores "$_3dfx"
4046 echocheck "GGI"
4047 if test "$_ggi" = auto ; then
4048 _ggi=no
4049 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4051 if test "$_ggi" = yes ; then
4052 def_ggi='#define CONFIG_GGI 1'
4053 libs_mplayer="$libs_mplayer -lggi"
4054 vomodules="ggi $vomodules"
4055 else
4056 def_ggi='#undef CONFIG_GGI'
4057 novomodules="ggi $novomodules"
4059 echores "$_ggi"
4061 echocheck "GGI extension: libggiwmh"
4062 if test "$_ggiwmh" = auto ; then
4063 _ggiwmh=no
4064 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4066 # needed to get right output on obscure combination
4067 # like --disable-ggi --enable-ggiwmh
4068 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4069 def_ggiwmh='#define CONFIG_GGIWMH 1'
4070 libs_mplayer="$libs_mplayer -lggiwmh"
4071 else
4072 _ggiwmh=no
4073 def_ggiwmh='#undef CONFIG_GGIWMH'
4075 echores "$_ggiwmh"
4078 echocheck "AA"
4079 if test "$_aa" = auto ; then
4080 cat > $TMPC << EOF
4081 #include <aalib.h>
4082 int main(void) {
4083 aa_context *c;
4084 aa_renderparams *p;
4085 aa_init(0, 0, 0);
4086 c = aa_autoinit(&aa_defparams);
4087 p = aa_getrenderparams();
4088 aa_autoinitkbd(c, 0);
4089 return 0; }
4091 _aa=no
4092 for _ld_tmp in "-laa" ; do
4093 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4094 done
4096 if test "$_aa" = yes ; then
4097 def_aa='#define CONFIG_AA 1'
4098 if cygwin ; then
4099 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4101 vomodules="aa $vomodules"
4102 else
4103 def_aa='#undef CONFIG_AA'
4104 novomodules="aa $novomodules"
4106 echores "$_aa"
4109 echocheck "CACA"
4110 if test "$_caca" = auto ; then
4111 _caca=no
4112 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4113 cat > $TMPC << EOF
4114 #include <caca.h>
4115 #ifdef CACA_API_VERSION_1
4116 #include <caca0.h>
4117 #endif
4118 int main(void) { caca_init(); return 0; }
4120 cc_check $(caca-config --libs) && _caca=yes
4123 if test "$_caca" = yes ; then
4124 def_caca='#define CONFIG_CACA 1'
4125 extra_cflags="$extra_cflags $(caca-config --cflags)"
4126 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4127 vomodules="caca $vomodules"
4128 else
4129 def_caca='#undef CONFIG_CACA'
4130 novomodules="caca $novomodules"
4132 echores "$_caca"
4135 echocheck "SVGAlib"
4136 if test "$_svga" = auto ; then
4137 _svga=no
4138 header_check vga.h -lvga $_ld_lm && _svga=yes
4140 if test "$_svga" = yes ; then
4141 def_svga='#define CONFIG_SVGALIB 1'
4142 libs_mplayer="$libs_mplayer -lvga"
4143 vomodules="svga $vomodules"
4144 else
4145 def_svga='#undef CONFIG_SVGALIB'
4146 novomodules="svga $novomodules"
4148 echores "$_svga"
4151 echocheck "FBDev"
4152 if test "$_fbdev" = auto ; then
4153 _fbdev=no
4154 linux && _fbdev=yes
4156 if test "$_fbdev" = yes ; then
4157 def_fbdev='#define CONFIG_FBDEV 1'
4158 vomodules="fbdev $vomodules"
4159 else
4160 def_fbdev='#undef CONFIG_FBDEV'
4161 novomodules="fbdev $novomodules"
4163 echores "$_fbdev"
4167 echocheck "DVB"
4168 if test "$_dvb" = auto ; then
4169 _dvb=no
4170 cat >$TMPC << EOF
4171 #include <poll.h>
4172 #include <sys/ioctl.h>
4173 #include <stdio.h>
4174 #include <time.h>
4175 #include <unistd.h>
4176 #include <linux/dvb/dmx.h>
4177 #include <linux/dvb/frontend.h>
4178 #include <linux/dvb/video.h>
4179 #include <linux/dvb/audio.h>
4180 int main(void) {return 0;}
4182 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4183 cc_check $_inc_tmp && _dvb=yes &&
4184 extra_cflags="$extra_cflags $_inc_tmp" && break
4185 done
4187 echores "$_dvb"
4188 if test "$_dvb" = yes ; then
4189 _dvbin=yes
4190 inputmodules="dvb $inputmodules"
4191 def_dvb='#define CONFIG_DVB 1'
4192 def_dvbin='#define CONFIG_DVBIN 1'
4193 aomodules="mpegpes(dvb) $aomodules"
4194 vomodules="mpegpes(dvb) $vomodules"
4195 else
4196 _dvbin=no
4197 noinputmodules="dvb $noinputmodules"
4198 def_dvb='#undef CONFIG_DVB'
4199 def_dvbin='#undef CONFIG_DVBIN '
4200 aomodules="mpegpes(file) $aomodules"
4201 vomodules="mpegpes(file) $vomodules"
4205 if darwin; then
4207 echocheck "QuickTime"
4208 if test "$quicktime" = auto ; then
4209 quicktime=no
4210 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4212 if test "$quicktime" = yes ; then
4213 extra_ldflags="$extra_ldflags -framework QuickTime"
4214 def_quicktime='#define CONFIG_QUICKTIME 1'
4215 else
4216 def_quicktime='#undef CONFIG_QUICKTIME'
4217 _quartz=no
4219 echores $quicktime
4221 echocheck "Quartz"
4222 if test "$_quartz" = auto ; then
4223 _quartz=no
4224 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4226 if test "$_quartz" = yes ; then
4227 libs_mplayer="$libs_mplayer -framework Carbon"
4228 def_quartz='#define CONFIG_QUARTZ 1'
4229 vomodules="quartz $vomodules"
4230 else
4231 def_quartz='#undef CONFIG_QUARTZ'
4232 novomodules="quartz $novomodules"
4234 echores $_quartz
4236 echocheck "CoreVideo"
4237 if test "$_corevideo" = auto ; then
4238 cat > $TMPC <<EOF
4239 #include <Carbon/Carbon.h>
4240 #include <CoreServices/CoreServices.h>
4241 #include <OpenGL/OpenGL.h>
4242 #include <QuartzCore/CoreVideo.h>
4243 int main(void) { return 0; }
4245 _corevideo=no
4246 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4248 if test "$_corevideo" = yes ; then
4249 vomodules="corevideo $vomodules"
4250 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4251 def_corevideo='#define CONFIG_COREVIDEO 1'
4252 else
4253 novomodules="corevideo $novomodules"
4254 def_corevideo='#undef CONFIG_COREVIDEO'
4256 echores "$_corevideo"
4258 echocheck "Cocoa"
4259 if test "$_gl" = no ; then
4260 # if _gl is not enabled there is no point to add potentially unused linker flags
4261 _cocoa=no
4263 if test "$_cocoa" = auto ; then
4264 cat > $TMPC <<EOF
4265 #include <CoreServices/CoreServices.h>
4266 #include <OpenGL/OpenGL.h>
4267 #include <QuartzCore/CoreVideo.h>
4268 int main(void) { return 0; }
4270 _cocoa=no
4271 cc_check -framework Cocoa -framework QuartzCore -framework OpenGL && _cocoa=yes
4273 if test "$_cocoa" = yes ; then
4274 libs_mplayer="$libs_mplayer -framework Cocoa -framework QuartzCore -framework OpenGL"
4276 echores "$_cocoa"
4278 fi #if darwin
4281 echocheck "PNG support"
4282 if test "$_png" = auto ; then
4283 _png=no
4284 if irix ; then
4285 # Don't check for -lpng on irix since it has its own libpng
4286 # incompatible with the GNU libpng
4287 res_comment="disabled on irix (not GNU libpng)"
4288 else
4289 cat > $TMPC << EOF
4290 #include <stdio.h>
4291 #include <string.h>
4292 #include <png.h>
4293 int main(void) {
4294 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4295 printf("libpng: %s\n", png_libpng_ver);
4296 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4299 cc_check -lpng -lz $_ld_lm && _png=yes
4302 echores "$_png"
4303 if test "$_png" = yes ; then
4304 def_png='#define CONFIG_PNG 1'
4305 extra_ldflags="$extra_ldflags -lpng -lz"
4306 else
4307 def_png='#undef CONFIG_PNG'
4310 echocheck "MNG support"
4311 if test "$_mng" = auto ; then
4312 _mng=no
4313 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4315 echores "$_mng"
4316 if test "$_mng" = yes ; then
4317 def_mng='#define CONFIG_MNG 1'
4318 extra_ldflags="$extra_ldflags -lmng -lz"
4319 else
4320 def_mng='#undef CONFIG_MNG'
4323 echocheck "JPEG support"
4324 if test "$_jpeg" = auto ; then
4325 _jpeg=no
4326 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4328 echores "$_jpeg"
4330 if test "$_jpeg" = yes ; then
4331 def_jpeg='#define CONFIG_JPEG 1'
4332 vomodules="jpeg $vomodules"
4333 extra_ldflags="$extra_ldflags -ljpeg"
4334 else
4335 def_jpeg='#undef CONFIG_JPEG'
4336 novomodules="jpeg $novomodules"
4341 echocheck "PNM support"
4342 if test "$_pnm" = yes; then
4343 def_pnm="#define CONFIG_PNM 1"
4344 vomodules="pnm $vomodules"
4345 else
4346 def_pnm="#undef CONFIG_PNM"
4347 novomodules="pnm $novomodules"
4349 echores "$_pnm"
4353 echocheck "GIF support"
4354 # This is to appease people who want to force gif support.
4355 # If it is forced to yes, then we still do checks to determine
4356 # which gif library to use.
4357 if test "$_gif" = yes ; then
4358 _force_gif=yes
4359 _gif=auto
4362 if test "$_gif" = auto ; then
4363 _gif=no
4364 for _ld_gif in "-lungif" "-lgif" ; do
4365 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4366 done
4369 # If no library was found, and the user wants support forced,
4370 # then we force it on with libgif, as this is the safest
4371 # assumption IMHO. (libungif & libregif both create symbolic
4372 # links to libgif. We also assume that no x11 support is needed,
4373 # because if you are forcing this, then you _should_ know what
4374 # you are doing. [ Besides, package maintainers should never
4375 # have compiled x11 deps into libungif in the first place. ] )
4376 # </rant>
4377 # --Joey
4378 if test "$_force_gif" = yes && test "$_gif" = no ; then
4379 _gif=yes
4380 _ld_gif="-lgif"
4383 if test "$_gif" = yes ; then
4384 def_gif='#define CONFIG_GIF 1'
4385 codecmodules="gif $codecmodules"
4386 vomodules="gif89a $vomodules"
4387 res_comment="old version, some encoding functions disabled"
4388 def_gif_4='#undef CONFIG_GIF_4'
4389 extra_ldflags="$extra_ldflags $_ld_gif"
4391 cat > $TMPC << EOF
4392 #include <signal.h>
4393 #include <stdio.h>
4394 #include <stdlib.h>
4395 #include <gif_lib.h>
4396 static void catch(int sig) { exit(1); }
4397 int main(void) {
4398 signal(SIGSEGV, catch); // catch segfault
4399 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4400 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4401 return 0;
4404 if cc_check "$_ld_gif" ; then
4405 def_gif_4='#define CONFIG_GIF_4 1'
4406 res_comment=""
4408 else
4409 def_gif='#undef CONFIG_GIF'
4410 def_gif_4='#undef CONFIG_GIF_4'
4411 novomodules="gif89a $novomodules"
4412 nocodecmodules="gif $nocodecmodules"
4414 echores "$_gif"
4417 case "$_gif" in yes*)
4418 echocheck "broken giflib workaround"
4419 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4421 cat > $TMPC << EOF
4422 #include <stdio.h>
4423 #include <gif_lib.h>
4424 int main(void) {
4425 GifFileType gif = {.UserData = NULL};
4426 printf("UserData is at address %p\n", gif.UserData);
4427 return 0;
4430 if cc_check "$_ld_gif" ; then
4431 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4432 echores "disabled"
4433 else
4434 echores "enabled"
4437 esac
4440 echocheck "VESA support"
4441 if test "$_vesa" = auto ; then
4442 _vesa=no
4443 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4445 if test "$_vesa" = yes ; then
4446 def_vesa='#define CONFIG_VESA 1'
4447 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4448 vomodules="vesa $vomodules"
4449 else
4450 def_vesa='#undef CONFIG_VESA'
4451 novomodules="vesa $novomodules"
4453 echores "$_vesa"
4455 #################
4456 # VIDEO + AUDIO #
4457 #################
4460 echocheck "SDL"
4461 _inc_tmp=""
4462 _ld_tmp=""
4463 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4464 if test -z "$_sdlconfig" ; then
4465 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4466 _sdlconfig="sdl-config"
4467 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4468 _sdlconfig="sdl11-config"
4469 else
4470 _sdlconfig=false
4473 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4474 cat > $TMPC << EOF
4475 #ifdef CONFIG_SDL_SDL_H
4476 #include <SDL/SDL.h>
4477 #else
4478 #include <SDL.h>
4479 #endif
4480 #ifndef __APPLE__
4481 // we allow SDL hacking our main() only on OSX
4482 #undef main
4483 #endif
4484 int main(int argc, char *argv[]) {
4485 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4486 return 0;
4489 _sdl=no
4490 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4491 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4492 _sdl=yes
4493 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4494 break
4496 done
4497 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4498 res_comment="using $_sdlconfig"
4499 if cygwin ; then
4500 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4501 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4502 elif mingw32 ; then
4503 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4504 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4505 else
4506 _inc_tmp="$($_sdlconfig --cflags)"
4507 _ld_tmp="$($_sdlconfig --libs)"
4509 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4510 _sdl=yes
4511 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4512 # HACK for BeOS/Haiku SDL
4513 _ld_tmp="$_ld_tmp -lstdc++"
4514 _sdl=yes
4518 if test "$_sdl" = yes ; then
4519 def_sdl='#define CONFIG_SDL 1'
4520 extra_cflags="$extra_cflags $_inc_tmp"
4521 libs_mplayer="$libs_mplayer $_ld_tmp"
4522 vomodules="sdl $vomodules"
4523 aomodules="sdl $aomodules"
4524 else
4525 def_sdl='#undef CONFIG_SDL'
4526 novomodules="sdl $novomodules"
4527 noaomodules="sdl $noaomodules"
4529 echores "$_sdl"
4532 # make sure this stays below CoreVideo to avoid issues due to namespace
4533 # conflicts between -lGL and -framework OpenGL
4534 echocheck "OpenGL"
4535 #Note: this test is run even with --enable-gl since we autodetect linker flags
4536 if (test "$_x11" = yes || test "$_sdl" = yes || test "$_cocoa" = yes || win32) && test "$_gl" != no ; then
4537 cat > $TMPC << EOF
4538 #ifdef GL_WIN32
4539 #include <windows.h>
4540 #include <GL/gl.h>
4541 #elif defined(GL_SDL)
4542 #include <GL/gl.h>
4543 #ifdef CONFIG_SDL_SDL_H
4544 #include <SDL/SDL.h>
4545 #else
4546 #include <SDL.h>
4547 #endif
4548 #ifndef __APPLE__
4549 // we allow SDL hacking our main() only on OSX
4550 #undef main
4551 #endif
4552 #else
4553 #include <GL/gl.h>
4554 #include <X11/Xlib.h>
4555 #include <GL/glx.h>
4556 #endif
4557 int main(int argc, char *argv[]) {
4558 #ifdef GL_WIN32
4559 HDC dc;
4560 wglCreateContext(dc);
4561 #elif defined(GL_SDL)
4562 SDL_GL_SwapBuffers();
4563 #else
4564 glXCreateContext(NULL, NULL, NULL, True);
4565 #endif
4566 glFinish();
4567 return 0;
4570 _gl=no
4571 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4572 if cc_check $_ld_tmp $_ld_lm ; then
4573 _gl=yes
4574 _gl_x11=yes
4575 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4576 break
4578 done
4579 if cc_check -DGL_WIN32 -lopengl32 ; then
4580 _gl=yes
4581 _gl_win32=yes
4582 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4584 if test "$_cocoa" = yes ; then
4585 _gl=yes
4586 _gl_cocoa=yes
4588 # last so it can reuse any linker etc. flags detected before
4589 if test "$_sdl" = yes ; then
4590 if cc_check -DGL_SDL ||
4591 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4592 _gl=yes
4593 _gl_sdl=yes
4594 elif cc_check -DGL_SDL -lGL ||
4595 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4596 _gl=yes
4597 _gl_sdl=yes
4598 libs_mplayer="$libs_mplayer -lGL"
4601 else
4602 _gl=no
4604 if test "$_gl" = yes ; then
4605 def_gl='#define CONFIG_GL 1'
4606 res_comment="backends:"
4607 if test "$_gl_cocoa" = yes ; then
4608 def_gl_cocoa='#define CONFIG_GL_COCOA 1'
4609 res_comment="$res_comment cocoa"
4611 if test "$_gl_win32" = yes ; then
4612 def_gl_win32='#define CONFIG_GL_WIN32 1'
4613 res_comment="$res_comment win32"
4615 if test "$_gl_x11" = yes ; then
4616 def_gl_x11='#define CONFIG_GL_X11 1'
4617 res_comment="$res_comment x11"
4619 if test "$_gl_sdl" = yes ; then
4620 def_gl_sdl='#define CONFIG_GL_SDL 1'
4621 res_comment="$res_comment sdl"
4623 vomodules="opengl $vomodules"
4624 else
4625 def_gl='#undef CONFIG_GL'
4626 def_gl_cocoa='#undef CONFIG_GL_COCOA'
4627 def_gl_win32='#undef CONFIG_GL_WIN32'
4628 def_gl_x11='#undef CONFIG_GL_X11'
4629 def_gl_sdl='#undef CONFIG_GL_SDL'
4630 novomodules="opengl $novomodules"
4632 echores "$_gl"
4635 if os2 ; then
4636 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4637 if test "$_kva" = auto; then
4638 _kva=no;
4639 header_check_broken os2.h kva.h -lkva && _kva=yes
4641 if test "$_kva" = yes ; then
4642 def_kva='#define CONFIG_KVA 1'
4643 libs_mplayer="$libs_mplayer -lkva"
4644 vomodules="kva $vomodules"
4645 else
4646 def_kva='#undef CONFIG_KVA'
4647 novomodules="kva $novomodules"
4649 echores "$_kva"
4650 fi #if os2
4653 if win32; then
4655 echocheck "Windows waveout"
4656 if test "$_win32waveout" = auto ; then
4657 _win32waveout=no
4658 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4660 if test "$_win32waveout" = yes ; then
4661 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4662 libs_mplayer="$libs_mplayer -lwinmm"
4663 aomodules="win32 $aomodules"
4664 else
4665 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4666 noaomodules="win32 $noaomodules"
4668 echores "$_win32waveout"
4670 echocheck "Direct3D"
4671 if test "$_direct3d" = auto ; then
4672 _direct3d=no
4673 header_check d3d9.h && _direct3d=yes
4675 if test "$_direct3d" = yes ; then
4676 def_direct3d='#define CONFIG_DIRECT3D 1'
4677 vomodules="direct3d $vomodules"
4678 else
4679 def_direct3d='#undef CONFIG_DIRECT3D'
4680 novomodules="direct3d $novomodules"
4682 echores "$_direct3d"
4684 echocheck "Directx"
4685 if test "$_directx" = auto ; then
4686 cat > $TMPC << EOF
4687 #include <ddraw.h>
4688 #include <dsound.h>
4689 int main(void) { return 0; }
4691 _directx=no
4692 cc_check -lgdi32 && _directx=yes
4694 if test "$_directx" = yes ; then
4695 def_directx='#define CONFIG_DIRECTX 1'
4696 libs_mplayer="$libs_mplayer -lgdi32"
4697 vomodules="directx $vomodules"
4698 aomodules="dsound $aomodules"
4699 else
4700 def_directx='#undef CONFIG_DIRECTX'
4701 novomodules="directx $novomodules"
4702 noaomodules="dsound $noaomodules"
4704 echores "$_directx"
4706 fi #if win32; then
4709 echocheck "DXR3/H+"
4710 if test "$_dxr3" = auto ; then
4711 _dxr3=no
4712 header_check linux/em8300.h && _dxr3=yes
4714 if test "$_dxr3" = yes ; then
4715 def_dxr3='#define CONFIG_DXR3 1'
4716 vomodules="dxr3 $vomodules"
4717 else
4718 def_dxr3='#undef CONFIG_DXR3'
4719 novomodules="dxr3 $novomodules"
4721 echores "$_dxr3"
4724 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4725 if test "$_ivtv" = auto ; then
4726 cat > $TMPC << EOF
4727 #include <sys/time.h>
4728 #include <linux/videodev2.h>
4729 #include <linux/ivtv.h>
4730 #include <sys/ioctl.h>
4731 int main(void) {
4732 struct ivtv_cfg_stop_decode sd;
4733 struct ivtv_cfg_start_decode sd1;
4734 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4735 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4736 return 0; }
4738 _ivtv=no
4739 cc_check && _ivtv=yes
4741 if test "$_ivtv" = yes ; then
4742 def_ivtv='#define CONFIG_IVTV 1'
4743 vomodules="ivtv $vomodules"
4744 aomodules="ivtv $aomodules"
4745 else
4746 def_ivtv='#undef CONFIG_IVTV'
4747 novomodules="ivtv $novomodules"
4748 noaomodules="ivtv $noaomodules"
4750 echores "$_ivtv"
4753 echocheck "V4L2 MPEG Decoder"
4754 if test "$_v4l2" = auto ; then
4755 cat > $TMPC << EOF
4756 #include <sys/time.h>
4757 #include <linux/videodev2.h>
4758 #include <linux/version.h>
4759 int main(void) {
4760 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4761 #error kernel headers too old, need 2.6.22
4762 #endif
4763 struct v4l2_ext_controls ctrls;
4764 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4765 return 0;
4768 _v4l2=no
4769 cc_check && _v4l2=yes
4771 if test "$_v4l2" = yes ; then
4772 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4773 vomodules="v4l2 $vomodules"
4774 aomodules="v4l2 $aomodules"
4775 else
4776 def_v4l2='#undef CONFIG_V4L2_DECODER'
4777 novomodules="v4l2 $novomodules"
4778 noaomodules="v4l2 $noaomodules"
4780 echores "$_v4l2"
4784 #########
4785 # AUDIO #
4786 #########
4789 echocheck "OSS Audio"
4790 if test "$_ossaudio" = auto ; then
4791 _ossaudio=no
4792 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4794 if test "$_ossaudio" = yes ; then
4795 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4796 aomodules="oss $aomodules"
4797 cat > $TMPC << EOF
4798 #include <$_soundcard_header>
4799 #ifdef OPEN_SOUND_SYSTEM
4800 int main(void) { return 0; }
4801 #else
4802 #error Not the real thing
4803 #endif
4805 _real_ossaudio=no
4806 cc_check && _real_ossaudio=yes
4807 if test "$_real_ossaudio" = yes; then
4808 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4809 # Check for OSS4 headers (override default headers)
4810 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4811 if test -f /etc/oss.conf; then
4812 . /etc/oss.conf
4813 _ossinc="$OSSLIBDIR/include"
4814 if test -f "$_ossinc/sys/soundcard.h"; then
4815 extra_cflags="-I$_ossinc $extra_cflags"
4818 elif netbsd || openbsd ; then
4819 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4820 extra_ldflags="$extra_ldflags -lossaudio"
4821 else
4822 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4824 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4825 else
4826 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4827 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4828 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4829 noaomodules="oss $noaomodules"
4831 echores "$_ossaudio"
4834 echocheck "aRts"
4835 if test "$_arts" = auto ; then
4836 _arts=no
4837 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4838 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4839 _arts=yes
4843 if test "$_arts" = yes ; then
4844 def_arts='#define CONFIG_ARTS 1'
4845 aomodules="arts $aomodules"
4846 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4847 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4848 else
4849 noaomodules="arts $noaomodules"
4851 echores "$_arts"
4854 echocheck "EsounD"
4855 if test "$_esd" = auto ; then
4856 _esd=no
4857 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4858 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4861 echores "$_esd"
4863 if test "$_esd" = yes ; then
4864 def_esd='#define CONFIG_ESD 1'
4865 aomodules="esd $aomodules"
4866 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4867 extra_cflags="$extra_cflags $(esd-config --cflags)"
4869 echocheck "esd_get_latency()"
4870 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4871 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4872 echores "$_esd_latency"
4873 else
4874 def_esd='#undef CONFIG_ESD'
4875 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4876 noaomodules="esd $noaomodules"
4879 echocheck "RSound"
4880 if test "$_rsound" = auto ; then
4881 _rsound=no
4882 statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
4884 echores "$_rsound"
4886 if test "$_rsound" = yes ; then
4887 def_rsound='#define CONFIG_RSOUND 1'
4888 aomodules="rsound $aomodules"
4889 libs_mplayer="$libs_mplayer -lrsound"
4890 else
4891 def_rsound='#undef CONFIG_RSOUND'
4892 noaomodules="rsound $noaomodules"
4896 echocheck "NAS"
4897 if test "$_nas" = auto ; then
4898 _nas=no
4899 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4901 if test "$_nas" = yes ; then
4902 def_nas='#define CONFIG_NAS 1'
4903 libs_mplayer="$libs_mplayer -laudio -lXt"
4904 aomodules="nas $aomodules"
4905 else
4906 noaomodules="nas $noaomodules"
4907 def_nas='#undef CONFIG_NAS'
4909 echores "$_nas"
4912 echocheck "pulse"
4913 if test "$_pulse" = auto ; then
4914 _pulse=no
4915 if pkg_config_add 'libpulse >= 0.9' ; then
4916 _pulse=yes
4919 echores "$_pulse"
4921 if test "$_pulse" = yes ; then
4922 def_pulse='#define CONFIG_PULSE 1'
4923 aomodules="pulse $aomodules"
4924 else
4925 def_pulse='#undef CONFIG_PULSE'
4926 noaomodules="pulse $noaomodules"
4930 echocheck "JACK"
4931 if test "$_jack" = auto ; then
4932 _jack=no
4933 if pkg_config_add jack ; then
4934 _jack=yes
4938 if test "$_jack" = yes ; then
4939 def_jack='#define CONFIG_JACK 1'
4940 aomodules="jack $aomodules"
4941 else
4942 noaomodules="jack $noaomodules"
4944 echores "$_jack"
4946 echocheck "OpenAL"
4947 if test "$_openal" = auto ; then
4948 _openal=no
4949 cat > $TMPC << EOF
4950 #ifdef OPENAL_AL_H
4951 #include <OpenAL/al.h>
4952 #else
4953 #include <AL/al.h>
4954 #endif
4955 int main(void) {
4956 alSourceQueueBuffers(0, 0, 0);
4957 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4958 return 0;
4961 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4962 cc_check $I && _openal=yes && break
4963 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4964 done
4965 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4967 if test "$_openal" = yes ; then
4968 def_openal='#define CONFIG_OPENAL 1'
4969 aomodules="openal $aomodules"
4970 else
4971 noaomodules="openal $noaomodules"
4973 echores "$_openal"
4975 echocheck "ALSA audio"
4976 if test "$_alloca" != yes ; then
4977 _alsa=no
4978 res_comment="alloca missing"
4980 if test "$_alsa" = auto ; then
4981 _alsa=no
4982 if pkg_config_add "alsa >= 1.0.9" ; then
4983 _alsa=yes
4986 def_alsa='#undef CONFIG_ALSA'
4987 if test "$_alsa" = yes ; then
4988 aomodules="alsa $aomodules"
4989 def_alsa='#define CONFIG_ALSA 1'
4990 else
4991 noaomodules="alsa $noaomodules"
4993 echores "$_alsa"
4996 echocheck "Sun audio"
4997 if test "$_sunaudio" = auto ; then
4998 cat > $TMPC << EOF
4999 #include <sys/types.h>
5000 #include <sys/audioio.h>
5001 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5003 _sunaudio=no
5004 cc_check && _sunaudio=yes
5006 if test "$_sunaudio" = yes ; then
5007 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5008 aomodules="sun $aomodules"
5009 else
5010 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5011 noaomodules="sun $noaomodules"
5013 echores "$_sunaudio"
5016 if darwin; then
5017 echocheck "CoreAudio"
5018 if test "$_coreaudio" = auto ; then
5019 cat > $TMPC <<EOF
5020 #include <CoreAudio/CoreAudio.h>
5021 #include <AudioToolbox/AudioToolbox.h>
5022 #include <AudioUnit/AudioUnit.h>
5023 int main(void) { return 0; }
5025 _coreaudio=no
5026 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5028 if test "$_coreaudio" = yes ; then
5029 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5030 def_coreaudio='#define CONFIG_COREAUDIO 1'
5031 aomodules="coreaudio $aomodules"
5032 else
5033 def_coreaudio='#undef CONFIG_COREAUDIO'
5034 noaomodules="coreaudio $noaomodules"
5036 echores $_coreaudio
5037 fi #if darwin
5040 if irix; then
5041 echocheck "SGI audio"
5042 if test "$_sgiaudio" = auto ; then
5043 _sgiaudio=no
5044 header_check dmedia/audio.h && _sgiaudio=yes
5046 if test "$_sgiaudio" = "yes" ; then
5047 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5048 libs_mplayer="$libs_mplayer -laudio"
5049 aomodules="sgi $aomodules"
5050 else
5051 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5052 noaomodules="sgi $noaomodules"
5054 echores "$_sgiaudio"
5055 fi #if irix
5058 if os2 ; then
5059 echocheck "KAI (UNIAUD/DART)"
5060 if test "$_kai" = auto; then
5061 _kai=no;
5062 header_check_broken os2.h kai.h -lkai && _kai=yes
5064 if test "$_kai" = yes ; then
5065 def_kai='#define CONFIG_KAI 1'
5066 libs_mplayer="$libs_mplayer -lkai"
5067 aomodules="kai $aomodules"
5068 else
5069 def_kai='#undef CONFIG_KAI'
5070 noaomodules="kai $noaomodules"
5072 echores "$_kai"
5074 echocheck "DART"
5075 if test "$_dart" = auto; then
5076 _dart=no;
5077 header_check_broken os2.h dart.h -ldart && _dart=yes
5079 if test "$_dart" = yes ; then
5080 def_dart='#define CONFIG_DART 1'
5081 libs_mplayer="$libs_mplayer -ldart"
5082 aomodules="dart $aomodules"
5083 else
5084 def_dart='#undef CONFIG_DART'
5085 noaomodules="dart $noaomodules"
5087 echores "$_dart"
5088 fi #if os2
5091 # set default CD/DVD devices
5092 if win32 || os2 ; then
5093 default_cdrom_device="D:"
5094 elif darwin ; then
5095 default_cdrom_device="/dev/disk1"
5096 elif dragonfly ; then
5097 default_cdrom_device="/dev/cd0"
5098 elif freebsd ; then
5099 default_cdrom_device="/dev/acd0"
5100 elif openbsd ; then
5101 default_cdrom_device="/dev/rcd0c"
5102 elif sunos ; then
5103 default_cdrom_device="/vol/dev/aliases/cdrom0"
5104 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5105 # file system and the volfs service.
5106 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5107 elif amigaos ; then
5108 default_cdrom_device="a1ide.device:2"
5109 else
5110 default_cdrom_device="/dev/cdrom"
5113 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5114 default_dvd_device=$default_cdrom_device
5115 elif darwin ; then
5116 default_dvd_device="/dev/rdiskN"
5117 else
5118 default_dvd_device="/dev/dvd"
5122 echocheck "VCD support"
5123 if test "$_vcd" = auto; then
5124 _vcd=no
5125 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5126 _vcd=yes
5127 elif mingw32; then
5128 header_check ddk/ntddcdrm.h && _vcd=yes
5131 if test "$_vcd" = yes; then
5132 inputmodules="vcd $inputmodules"
5133 def_vcd='#define CONFIG_VCD 1'
5134 else
5135 def_vcd='#undef CONFIG_VCD'
5136 noinputmodules="vcd $noinputmodules"
5137 res_comment="not supported on this OS"
5139 echores "$_vcd"
5143 echocheck "Blu-ray support"
5144 if test "$_bluray" = auto ; then
5145 _bluray=no
5146 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0, 0)' -lbluray && _bluray=yes
5148 if test "$_bluray" = yes ; then
5149 def_bluray='#define CONFIG_LIBBLURAY 1'
5150 extra_ldflags="$extra_ldflags -lbluray"
5151 inputmodules="bluray $inputmodules"
5152 else
5153 def_bluray='#undef CONFIG_LIBBLURAY'
5154 noinputmodules="bluray $noinputmodules"
5156 echores "$_bluray"
5158 echocheck "dvdread"
5159 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5160 _dvdread_internal=no
5162 if test "$_dvdread_internal" = auto ; then
5163 _dvdread_internal=no
5164 _dvdread=no
5165 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5166 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5167 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5168 darwin || win32 || os2; then
5169 _dvdread_internal=yes
5170 _dvdread=yes
5171 extra_cflags="-Ilibdvdread4 $extra_cflags"
5173 elif test "$_dvdread" = auto ; then
5174 _dvdread=no
5175 if test "$_dl" = yes; then
5176 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5177 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5178 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5179 _dvdread=yes
5180 extra_cflags="$extra_cflags $_dvdreadcflags"
5181 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5182 res_comment="external"
5187 if test "$_dvdread_internal" = yes; then
5188 def_dvdread='#define CONFIG_DVDREAD 1'
5189 inputmodules="dvdread(internal) $inputmodules"
5190 res_comment="internal"
5191 elif test "$_dvdread" = yes; then
5192 def_dvdread='#define CONFIG_DVDREAD 1'
5193 extra_ldflags="$extra_ldflags -ldvdread"
5194 inputmodules="dvdread(external) $inputmodules"
5195 res_comment="external"
5196 else
5197 def_dvdread='#undef CONFIG_DVDREAD'
5198 noinputmodules="dvdread $noinputmodules"
5200 echores "$_dvdread"
5203 echocheck "internal libdvdcss"
5204 if test "$_libdvdcss_internal" = auto ; then
5205 _libdvdcss_internal=no
5206 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5207 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5209 if test "$_libdvdcss_internal" = yes ; then
5210 if linux || netbsd || openbsd || bsdos ; then
5211 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5212 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5213 elif freebsd || dragonfly ; then
5214 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5215 elif darwin ; then
5216 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5217 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5218 elif cygwin ; then
5219 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5220 elif beos ; then
5221 cflags_libdvdcss="-DSYS_BEOS"
5222 elif os2 ; then
5223 cflags_libdvdcss="-DSYS_OS2"
5225 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5226 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5227 inputmodules="libdvdcss(internal) $inputmodules"
5228 else
5229 noinputmodules="libdvdcss(internal) $noinputmodules"
5231 echores "$_libdvdcss_internal"
5234 echocheck "cdparanoia"
5235 if test "$_cdparanoia" = auto ; then
5236 cat > $TMPC <<EOF
5237 #include <cdda_interface.h>
5238 #include <cdda_paranoia.h>
5239 // This need a better test. How ?
5240 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5242 _cdparanoia=no
5243 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5244 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5245 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5246 done
5248 if test "$_cdparanoia" = yes ; then
5249 _cdda='yes'
5250 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5251 openbsd && extra_ldflags="$extra_ldflags -lutil"
5253 echores "$_cdparanoia"
5256 echocheck "libcdio"
5257 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5258 _libcdio=no
5259 if pkg_config_add libcdio_paranoia ; then
5260 _libcdio=yes
5263 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5264 _cdda='yes'
5265 def_libcdio='#define CONFIG_LIBCDIO 1'
5266 def_havelibcdio='yes'
5267 else
5268 _libcdio=no
5269 if test "$_cdparanoia" = yes ; then
5270 res_comment="using cdparanoia"
5272 def_libcdio='#undef CONFIG_LIBCDIO'
5273 def_havelibcdio='no'
5275 echores "$_libcdio"
5277 if test "$_cdda" = yes ; then
5278 test $_cddb = auto && test $networking = yes && _cddb=yes
5279 def_cdparanoia='#define CONFIG_CDDA 1'
5280 inputmodules="cdda $inputmodules"
5281 else
5282 def_cdparanoia='#undef CONFIG_CDDA'
5283 noinputmodules="cdda $noinputmodules"
5286 if test "$_cddb" = yes ; then
5287 def_cddb='#define CONFIG_CDDB 1'
5288 inputmodules="cddb $inputmodules"
5289 else
5290 _cddb=no
5291 def_cddb='#undef CONFIG_CDDB'
5292 noinputmodules="cddb $noinputmodules"
5295 echocheck "bitmap font support"
5296 if test "$_bitmap_font" = yes ; then
5297 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5298 else
5299 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5301 echores "$_bitmap_font"
5304 echocheck "freetype >= 2.0.9"
5306 # freetype depends on iconv
5307 if test "$_iconv" = no ; then
5308 _freetype=no
5309 res_comment="iconv support needed"
5312 if test "$_freetype" = auto ; then
5313 if pkg_config_add freetype2 ; then
5314 _freetype=yes
5315 else
5316 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5319 if test "$_freetype" = yes ; then
5320 def_freetype='#define CONFIG_FREETYPE 1'
5321 else
5322 def_freetype='#undef CONFIG_FREETYPE'
5324 echores "$_freetype"
5326 if test "$_freetype" = no ; then
5327 _fontconfig=no
5328 res_comment="FreeType support needed"
5330 echocheck "fontconfig"
5331 if test "$_fontconfig" = auto ; then
5332 if pkg_config_add 'fontconfig >= 2.4.2' ; then
5333 _fontconfig=yes
5334 else
5335 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5338 if test "$_fontconfig" = yes ; then
5339 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5340 else
5341 def_fontconfig='#undef CONFIG_FONTCONFIG'
5343 echores "$_fontconfig"
5346 echocheck "SSA/ASS support"
5347 if test "$_ass" = auto ; then
5348 if pkg_config_add libass ; then
5349 _ass=yes
5350 def_ass='#define CONFIG_ASS 1'
5351 else
5352 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
5354 else
5355 def_ass='#undef CONFIG_ASS'
5357 echores "$_ass"
5360 echocheck "fribidi with charsets"
5361 if test "$_fribidi" = auto ; then
5362 _fribidi=no
5363 if pkg_config_add fribidi ; then
5364 _fribidi=yes
5367 if test "$_fribidi" = yes ; then
5368 def_fribidi='#define CONFIG_FRIBIDI 1'
5369 else
5370 def_fribidi='#undef CONFIG_FRIBIDI'
5372 echores "$_fribidi"
5375 echocheck "ENCA"
5376 if test "$_enca" = auto ; then
5377 _enca=no
5378 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5380 if test "$_enca" = yes ; then
5381 def_enca='#define CONFIG_ENCA 1'
5382 extra_ldflags="$extra_ldflags -lenca"
5383 else
5384 def_enca='#undef CONFIG_ENCA'
5386 echores "$_enca"
5389 echocheck "zlib"
5390 _zlib=no
5391 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5392 if test "$_zlib" = yes ; then
5393 def_zlib='#define CONFIG_ZLIB 1'
5394 extra_ldflags="$extra_ldflags -lz"
5395 else
5396 def_zlib='#define CONFIG_ZLIB 0'
5398 echores "$_zlib"
5401 echocheck "RTC"
5402 if test "$_rtc" = auto ; then
5403 cat > $TMPC << EOF
5404 #include <sys/ioctl.h>
5405 #ifdef __linux__
5406 #include <linux/rtc.h>
5407 #else
5408 #include <rtc.h>
5409 #define RTC_PIE_ON RTCIO_PIE_ON
5410 #endif
5411 int main(void) { return RTC_PIE_ON; }
5413 _rtc=no
5414 cc_check && _rtc=yes
5415 ppc && _rtc=no
5417 if test "$_rtc" = yes ; then
5418 def_rtc='#define HAVE_RTC 1'
5419 else
5420 def_rtc='#undef HAVE_RTC'
5422 echores "$_rtc"
5425 echocheck "mad support"
5426 if test "$_mad" = auto ; then
5427 _mad=no
5428 header_check mad.h -lmad && _mad=yes
5430 if test "$_mad" = yes ; then
5431 def_mad='#define CONFIG_LIBMAD 1'
5432 extra_ldflags="$extra_ldflags -lmad"
5433 codecmodules="libmad $codecmodules"
5434 else
5435 def_mad='#undef CONFIG_LIBMAD'
5436 nocodecmodules="libmad $nocodecmodules"
5438 echores "$_mad"
5440 echocheck "OggVorbis support"
5441 if test "$_libvorbis" = auto; then
5442 _libvorbis=no
5443 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5444 elif test "$_libvorbis" = yes ; then
5445 _tremor=no
5447 if test "$_tremor" = auto; then
5448 _tremor=no
5449 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5451 if test "$_tremor" = yes ; then
5452 _vorbis=yes
5453 def_vorbis='#define CONFIG_OGGVORBIS 1'
5454 def_tremor='#define CONFIG_TREMOR 1'
5455 codecmodules="tremor(external) $codecmodules"
5456 res_comment="external Tremor"
5457 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5458 elif test "$_libvorbis" = yes ; then
5459 _vorbis=yes
5460 def_vorbis='#define CONFIG_OGGVORBIS 1'
5461 codecmodules="libvorbis $codecmodules"
5462 res_comment="libvorbis"
5463 extra_ldflags="$extra_ldflags -lvorbis -logg"
5464 else
5465 _vorbis=no
5466 nocodecmodules="libvorbis $nocodecmodules"
5468 echores "$_vorbis"
5470 echocheck "libspeex (version >= 1.1 required)"
5471 if test "$_speex" = auto ; then
5472 _speex=no
5473 cat > $TMPC << EOF
5474 #include <stddef.h>
5475 #include <speex/speex.h>
5476 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5478 cc_check -lspeex $_ld_lm && _speex=yes
5480 if test "$_speex" = yes ; then
5481 def_speex='#define CONFIG_SPEEX 1'
5482 extra_ldflags="$extra_ldflags -lspeex"
5483 codecmodules="speex $codecmodules"
5484 else
5485 def_speex='#undef CONFIG_SPEEX'
5486 nocodecmodules="speex $nocodecmodules"
5488 echores "$_speex"
5490 echocheck "OggTheora support"
5491 if test "$_theora" = auto ; then
5492 _theora=no
5493 if pkg_config_add theora ; then
5494 _theora=yes
5497 if test "$_theora" = yes ; then
5498 def_theora='#define CONFIG_OGGTHEORA 1'
5499 codecmodules="libtheora $codecmodules"
5500 else
5501 def_theora='#undef CONFIG_OGGTHEORA'
5502 nocodecmodules="libtheora $nocodecmodules"
5504 echores "$_theora"
5506 # Any version of libmpg123 shall be fine.
5507 echocheck "mpg123 support"
5508 def_mpg123='#undef CONFIG_MPG123'
5509 if test "$_mpg123" = auto; then
5510 _mpg123=no
5511 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5513 if test "$_mpg123" = yes ; then
5514 def_mpg123='#define CONFIG_MPG123 1'
5515 codecmodules="mpg123 $codecmodules"
5516 else
5517 nocodecmodules="mpg123 $nocodecmodules"
5519 echores "$_mpg123"
5521 echocheck "liba52 support"
5522 def_liba52='#undef CONFIG_LIBA52'
5523 if test "$_liba52" = auto ; then
5524 _liba52=no
5525 cat > $TMPC << EOF
5526 #include <inttypes.h>
5527 #include <a52dec/a52.h>
5528 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5530 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5532 if test "$_liba52" = yes ; then
5533 def_liba52='#define CONFIG_LIBA52 1'
5534 codecmodules="liba52 $codecmodules"
5535 else
5536 nocodecmodules="liba52 $nocodecmodules"
5538 echores "$_liba52"
5540 echocheck "libdca support"
5541 if test "$_libdca" = auto ; then
5542 _libdca=no
5543 for _ld_dca in -ldca -ldts ; do
5544 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5545 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5546 done
5548 if test "$_libdca" = yes ; then
5549 def_libdca='#define CONFIG_LIBDCA 1'
5550 codecmodules="libdca $codecmodules"
5551 else
5552 def_libdca='#undef CONFIG_LIBDCA'
5553 nocodecmodules="libdca $nocodecmodules"
5555 echores "$_libdca"
5557 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5558 if test "$_musepack" = yes ; then
5559 _musepack=no
5560 cat > $TMPC << EOF
5561 #include <stddef.h>
5562 #include <mpcdec/mpcdec.h>
5563 int main(void) {
5564 mpc_streaminfo info;
5565 mpc_decoder decoder;
5566 mpc_decoder_set_streaminfo(&decoder, &info);
5567 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5568 return 0;
5571 cc_check -lmpcdec $_ld_lm && _musepack=yes
5573 if test "$_musepack" = yes ; then
5574 def_musepack='#define CONFIG_MUSEPACK 1'
5575 extra_ldflags="$extra_ldflags -lmpcdec"
5576 codecmodules="musepack $codecmodules"
5577 else
5578 def_musepack='#undef CONFIG_MUSEPACK'
5579 nocodecmodules="musepack $nocodecmodules"
5581 echores "$_musepack"
5584 echocheck "FAAD2 support"
5585 if test "$_faad" = auto ; then
5586 _faad=no
5587 cat > $TMPC << EOF
5588 #include <faad.h>
5589 #ifndef FAAD_MIN_STREAMSIZE
5590 #error Too old version
5591 #endif
5592 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5593 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5595 cc_check -lfaad $_ld_lm && _faad=yes
5598 def_faad='#undef CONFIG_FAAD'
5599 if test "$_faad" = yes ; then
5600 def_faad='#define CONFIG_FAAD 1'
5601 extra_ldflags="$extra_ldflags -lfaad"
5602 codecmodules="faad2 $codecmodules"
5603 else
5604 nocodecmodules="faad2 $nocodecmodules"
5606 echores "$_faad"
5609 echocheck "LADSPA plugin support"
5610 if test "$_ladspa" = auto ; then
5611 _ladspa=no
5612 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5614 if test "$_ladspa" = yes; then
5615 def_ladspa="#define CONFIG_LADSPA 1"
5616 else
5617 def_ladspa="#undef CONFIG_LADSPA"
5619 echores "$_ladspa"
5622 echocheck "libbs2b audio filter support"
5623 if test "$_libbs2b" = auto ; then
5624 _libbs2b=no
5625 if pkg_config_add libbs2b ; then
5626 _libbs2b=yes
5629 def_libbs2b="#undef CONFIG_LIBBS2B"
5630 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5631 echores "$_libbs2b"
5634 if test -z "$_codecsdir" ; then
5635 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5636 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5637 if test -d "$dir" ; then
5638 _codecsdir="$dir"
5639 break;
5641 done
5643 # Fall back on default directory.
5644 if test -z "$_codecsdir" ; then
5645 _codecsdir="$_libdir/codecs"
5646 mingw32 || os2 && _codecsdir="codecs"
5650 echocheck "Win32 codecs"
5651 if test "$_win32dll" = auto ; then
5652 _win32dll=no
5653 if x86_32 && ! qnx; then
5654 _win32dll=yes
5657 if test "$_win32dll" = yes ; then
5658 def_win32dll='#define CONFIG_WIN32DLL 1'
5659 if ! win32 ; then
5660 def_win32_loader='#define WIN32_LOADER 1'
5661 _win32_emulation=yes
5662 else
5663 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5664 res_comment="using native windows"
5666 codecmodules="win32 $codecmodules"
5667 else
5668 def_win32dll='#undef CONFIG_WIN32DLL'
5669 def_win32_loader='#undef WIN32_LOADER'
5670 nocodecmodules="win32 $nocodecmodules"
5672 echores "$_win32dll"
5675 echocheck "XAnim codecs"
5676 if test "$_xanim" = auto ; then
5677 _xanim=no
5678 res_comment="dynamic loader support needed"
5679 if test "$_dl" = yes ; then
5680 _xanim=yes
5683 if test "$_xanim" = yes ; then
5684 def_xanim='#define CONFIG_XANIM 1'
5685 codecmodules="xanim $codecmodules"
5686 else
5687 def_xanim='#undef CONFIG_XANIM'
5688 nocodecmodules="xanim $nocodecmodules"
5690 echores "$_xanim"
5693 echocheck "RealPlayer codecs"
5694 if test "$_real" = auto ; then
5695 _real=no
5696 res_comment="dynamic loader support needed"
5697 if test "$_dl" = yes || test "$_win32dll" = yes &&
5698 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5699 _real=yes
5702 if test "$_real" = yes ; then
5703 def_real='#define CONFIG_REALCODECS 1'
5704 codecmodules="real $codecmodules"
5705 else
5706 def_real='#undef CONFIG_REALCODECS'
5707 nocodecmodules="real $nocodecmodules"
5709 echores "$_real"
5712 echocheck "QuickTime codecs"
5713 _qtx_emulation=no
5714 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5715 if test "$_qtx" = auto ; then
5716 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5718 if test "$_qtx" = yes ; then
5719 def_qtx='#define CONFIG_QTX_CODECS 1'
5720 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5721 codecmodules="qtx $codecmodules"
5722 darwin || win32 || _qtx_emulation=yes
5723 else
5724 def_qtx='#undef CONFIG_QTX_CODECS'
5725 nocodecmodules="qtx $nocodecmodules"
5727 echores "$_qtx"
5729 echocheck "Nemesi Streaming Media libraries"
5730 if test "$_nemesi" = auto && test "$networking" = yes ; then
5731 _nemesi=no
5732 if pkg_config_add libnemesi ; then
5733 _nemesi=yes
5736 if test "$_nemesi" = yes; then
5737 _native_rtsp=no
5738 def_nemesi='#define CONFIG_LIBNEMESI 1'
5739 inputmodules="nemesi $inputmodules"
5740 else
5741 _native_rtsp="$networking"
5742 _nemesi=no
5743 def_nemesi='#undef CONFIG_LIBNEMESI'
5744 noinputmodules="nemesi $noinputmodules"
5746 echores "$_nemesi"
5748 echocheck "LIVE555 Streaming Media libraries"
5749 if test "$_live" != no && test "$networking" = yes ; then
5750 cat > $TMPCPP << EOF
5751 #include <liveMedia.hh>
5752 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5753 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5754 #endif
5755 int main(void) { return 0; }
5758 _live=no
5759 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
5760 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5761 _livelibdir=$(echo $I| sed s/-I//) &&
5762 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5763 $_livelibdir/groupsock/libgroupsock.a \
5764 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5765 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5766 $extra_ldflags -lstdc++" \
5767 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5768 -I$_livelibdir/UsageEnvironment/include \
5769 -I$_livelibdir/BasicUsageEnvironment/include \
5770 -I$_livelibdir/groupsock/include" &&
5771 _live=yes && break
5772 done
5773 if test "$_live" != yes ; then
5774 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5775 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5776 _live_dist=yes
5780 if test "$_live" = yes && test "$networking" = yes; then
5781 test $_livelibdir && res_comment="using $_livelibdir"
5782 def_live='#define CONFIG_LIVE555 1'
5783 inputmodules="live555 $inputmodules"
5784 elif test "$_live_dist" = yes && test "$networking" = yes; then
5785 res_comment="using distribution version"
5786 _live="yes"
5787 def_live='#define CONFIG_LIVE555 1'
5788 extra_ldflags="$extra_ldflags $ld_tmp"
5789 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
5790 inputmodules="live555 $inputmodules"
5791 else
5792 _live=no
5793 def_live='#undef CONFIG_LIVE555'
5794 noinputmodules="live555 $noinputmodules"
5796 echores "$_live"
5800 # Test with > against Libav 0.8 versions which will NOT work rather than
5801 # specify minimum version, to allow (future) point releases to possibly work.
5802 all_libav_libs="libavutil > 51.21.0:libavcodec > 53.34.0:libavformat > 53.20.0:libswscale >= 2.0.0"
5803 echocheck "Libav ($all_libav_libs)"
5804 if test "$ffmpeg" = auto ; then
5805 IFS=":" # shell should not be used for programming
5806 if ! pkg_config_add $all_libav_libs ; then
5807 die "Unable to find development files for some of the required Libav libraries above. Aborting."
5810 echores "yes"
5812 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
5813 if ! test -z "$_ffmpeg_source" ; then
5814 def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
5817 echocheck "libpostproc >= 52.0.0"
5818 if test "$libpostproc" = auto ; then
5819 libpostproc=no
5820 if pkg_config_add "libpostproc >= 52.0.0" ; then
5821 libpostproc=yes
5824 if test "$libpostproc" = yes ; then
5825 def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
5826 else
5827 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
5829 echores "$libpostproc"
5832 echocheck "libdv-0.9.5+"
5833 if test "$_libdv" = auto ; then
5834 _libdv=no
5835 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
5837 if test "$_libdv" = yes ; then
5838 def_libdv='#define CONFIG_LIBDV095 1'
5839 extra_ldflags="$extra_ldflags -ldv"
5840 codecmodules="libdv $codecmodules"
5841 else
5842 def_libdv='#undef CONFIG_LIBDV095'
5843 nocodecmodules="libdv $nocodecmodules"
5845 echores "$_libdv"
5848 echocheck "Xvid"
5849 if test "$_xvid" = auto ; then
5850 _xvid=no
5851 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
5852 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
5853 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
5854 done
5857 if test "$_xvid" = yes ; then
5858 def_xvid='#define CONFIG_XVID4 1'
5859 codecmodules="xvid $codecmodules"
5860 else
5861 def_xvid='#undef CONFIG_XVID4'
5862 nocodecmodules="xvid $nocodecmodules"
5864 echores "$_xvid"
5867 echocheck "libnut"
5868 if test "$_libnut" = auto ; then
5869 _libnut=no
5870 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
5873 if test "$_libnut" = yes ; then
5874 def_libnut='#define CONFIG_LIBNUT 1'
5875 extra_ldflags="$extra_ldflags -lnut"
5876 else
5877 def_libnut='#undef CONFIG_LIBNUT'
5879 echores "$_libnut"
5881 # These VO checks must be done after the FFmpeg one
5882 echocheck "/dev/mga_vid"
5883 if test "$_mga" = auto ; then
5884 _mga=no
5885 test -c /dev/mga_vid && _mga=yes
5887 if test "$_mga" = yes ; then
5888 def_mga='#define CONFIG_MGA 1'
5889 vomodules="mga $vomodules"
5890 else
5891 def_mga='#undef CONFIG_MGA'
5892 novomodules="mga $novomodules"
5894 echores "$_mga"
5897 echocheck "xmga"
5898 if test "$_xmga" = auto ; then
5899 _xmga=no
5900 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
5902 if test "$_xmga" = yes ; then
5903 def_xmga='#define CONFIG_XMGA 1'
5904 vomodules="xmga $vomodules"
5905 else
5906 def_xmga='#undef CONFIG_XMGA'
5907 novomodules="xmga $novomodules"
5909 echores "$_xmga"
5912 echocheck "UnRAR executable"
5913 if test "$_unrar_exec" = auto ; then
5914 _unrar_exec="yes"
5915 mingw32 && _unrar_exec="no"
5917 if test "$_unrar_exec" = yes ; then
5918 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
5919 else
5920 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
5922 echores "$_unrar_exec"
5924 echocheck "TV interface"
5925 if test "$_tv" = yes ; then
5926 def_tv='#define CONFIG_TV 1'
5927 inputmodules="tv $inputmodules"
5928 else
5929 noinputmodules="tv $noinputmodules"
5930 def_tv='#undef CONFIG_TV'
5932 echores "$_tv"
5935 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
5936 echocheck "*BSD BT848 bt8xx header"
5937 _ioctl_bt848_h=no
5938 for file in "machine/ioctl_bt848.h" \
5939 "dev/bktr/ioctl_bt848.h" \
5940 "dev/video/bktr/ioctl_bt848.h" \
5941 "dev/ic/bt8xx.h" ; do
5942 cat > $TMPC <<EOF
5943 #include <sys/types.h>
5944 #include <sys/ioctl.h>
5945 #include <$file>
5946 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
5948 if cc_check ; then
5949 _ioctl_bt848_h=yes
5950 _ioctl_bt848_h_name="$file"
5951 break;
5953 done
5954 if test "$_ioctl_bt848_h" = yes ; then
5955 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
5956 res_comment="using $_ioctl_bt848_h_name"
5957 else
5958 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
5960 echores "$_ioctl_bt848_h"
5962 echocheck "*BSD ioctl_meteor.h"
5963 _ioctl_meteor_h=no
5964 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
5965 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
5966 _ioctl_meteor_h=yes && break
5967 done
5968 if test "$_ioctl_meteor_h" = yes ; then
5969 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
5970 res_comment="using $ioctl_meteor_h_path"
5971 else
5972 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
5974 echores "$_ioctl_meteor_h"
5976 echocheck "*BSD BrookTree 848 TV interface"
5977 if test "$_tv_bsdbt848" = auto ; then
5978 _tv_bsdbt848=no
5979 if test "$_tv" = yes ; then
5980 cat > $TMPC <<EOF
5981 #include <sys/types.h>
5982 $def_ioctl_meteor_h_name
5983 $def_ioctl_bt848_h_name
5984 #ifdef IOCTL_METEOR_H_NAME
5985 #include IOCTL_METEOR_H_NAME
5986 #endif
5987 #ifdef IOCTL_BT848_H_NAME
5988 #include IOCTL_BT848_H_NAME
5989 #endif
5990 int main(void) {
5991 ioctl(0, METEORSINPUT, 0);
5992 ioctl(0, TVTUNER_GETFREQ, 0);
5993 return 0;
5996 cc_check && _tv_bsdbt848=yes
5999 if test "$_tv_bsdbt848" = yes ; then
6000 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6001 inputmodules="tv-bsdbt848 $inputmodules"
6002 else
6003 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6004 noinputmodules="tv-bsdbt848 $noinputmodules"
6006 echores "$_tv_bsdbt848"
6007 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6010 echocheck "DirectShow TV interface"
6011 if test "$_tv_dshow" = auto ; then
6012 _tv_dshow=no
6013 if test "$_tv" = yes && win32 ; then
6014 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6017 if test "$_tv_dshow" = yes ; then
6018 inputmodules="tv-dshow $inputmodules"
6019 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6020 extra_ldflags="$extra_ldflags -lole32 -luuid"
6021 else
6022 noinputmodules="tv-dshow $noinputmodules"
6023 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6025 echores "$_tv_dshow"
6028 echocheck "Video 4 Linux TV interface"
6029 if test "$_tv_v4l1" = auto ; then
6030 _tv_v4l1=no
6031 if test "$_tv" = yes && linux ; then
6032 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6035 if test "$_tv_v4l1" = yes ; then
6036 _audio_input=yes
6037 _tv_v4l=yes
6038 def_tv_v4l='#define CONFIG_TV_V4L 1'
6039 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6040 inputmodules="tv-v4l $inputmodules"
6041 else
6042 noinputmodules="tv-v4l1 $noinputmodules"
6043 def_tv_v4l='#undef CONFIG_TV_V4L'
6045 echores "$_tv_v4l1"
6048 echocheck "Video 4 Linux 2 TV interface"
6049 if test "$_tv_v4l2" = auto ; then
6050 _tv_v4l2=no
6051 if test "$_tv" = yes && linux ; then
6052 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6053 elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
6054 _tv_v4l2=yes
6057 if test "$_tv_v4l2" = yes ; then
6058 _audio_input=yes
6059 _tv_v4l=yes
6060 def_tv_v4l='#define CONFIG_TV_V4L 1'
6061 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6062 inputmodules="tv-v4l2 $inputmodules"
6063 else
6064 noinputmodules="tv-v4l2 $noinputmodules"
6065 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6067 echores "$_tv_v4l2"
6070 echocheck "Radio interface"
6071 if test "$_radio" = yes ; then
6072 def_radio='#define CONFIG_RADIO 1'
6073 inputmodules="radio $inputmodules"
6074 if test "$_alsa" != yes -a "$_ossaudio" != yes ; then
6075 _radio_capture=no
6077 if test "$_radio_capture" = yes ; then
6078 _audio_input=yes
6079 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6080 else
6081 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6083 else
6084 noinputmodules="radio $noinputmodules"
6085 def_radio='#undef CONFIG_RADIO'
6086 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6087 _radio_capture=no
6089 echores "$_radio"
6090 echocheck "Capture for Radio interface"
6091 echores "$_radio_capture"
6093 echocheck "Video 4 Linux 2 Radio interface"
6094 if test "$_radio_v4l2" = auto ; then
6095 _radio_v4l2=no
6096 if test "$_radio" = yes && linux ; then
6097 header_check linux/videodev2.h && _radio_v4l2=yes
6100 if test "$_radio_v4l2" = yes ; then
6101 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6102 else
6103 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6105 echores "$_radio_v4l2"
6107 echocheck "Video 4 Linux Radio interface"
6108 if test "$_radio_v4l" = auto ; then
6109 _radio_v4l=no
6110 if test "$_radio" = yes && linux ; then
6111 header_check linux/videodev.h && _radio_v4l=yes
6114 if test "$_radio_v4l" = yes ; then
6115 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6116 else
6117 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6119 echores "$_radio_v4l"
6121 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6122 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6123 echocheck "*BSD BrookTree 848 Radio interface"
6124 _radio_bsdbt848=no
6125 cat > $TMPC <<EOF
6126 #include <sys/types.h>
6127 $def_ioctl_bt848_h_name
6128 #ifdef IOCTL_BT848_H_NAME
6129 #include IOCTL_BT848_H_NAME
6130 #endif
6131 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6133 cc_check && _radio_bsdbt848=yes
6134 echores "$_radio_bsdbt848"
6135 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6137 if test "$_radio_bsdbt848" = yes ; then
6138 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6139 else
6140 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6143 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6144 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6145 die "Radio driver requires BSD BT848, V4L or V4L2!"
6148 echocheck "Video 4 Linux 2 MPEG PVR interface"
6149 if test "$_pvr" = auto ; then
6150 _pvr=no
6151 if test "$_tv_v4l2" = yes && linux ; then
6152 cat > $TMPC <<EOF
6153 #include <sys/time.h>
6154 #include <linux/videodev2.h>
6155 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6157 cc_check && _pvr=yes
6160 if test "$_pvr" = yes ; then
6161 def_pvr='#define CONFIG_PVR 1'
6162 inputmodules="pvr $inputmodules"
6163 else
6164 noinputmodules="pvr $noinputmodules"
6165 def_pvr='#undef CONFIG_PVR'
6167 echores "$_pvr"
6170 echocheck "ftp"
6171 if test "$_ftp" = "auto" ; then
6172 test "$networking" = "yes" && ! beos && _ftp=yes
6174 if test "$_ftp" = yes ; then
6175 def_ftp='#define CONFIG_FTP 1'
6176 inputmodules="ftp $inputmodules"
6177 else
6178 noinputmodules="ftp $noinputmodules"
6179 def_ftp='#undef CONFIG_FTP'
6181 echores "$_ftp"
6183 echocheck "vstream client"
6184 if test "$_vstream" = auto ; then
6185 _vstream=no
6186 cat > $TMPC <<EOF
6187 #include <vstream-client.h>
6188 void vstream_error(const char *format, ... ) {}
6189 int main(void) { vstream_start(); return 0; }
6191 cc_check -lvstream-client && _vstream=yes
6193 if test "$_vstream" = yes ; then
6194 def_vstream='#define CONFIG_VSTREAM 1'
6195 inputmodules="vstream $inputmodules"
6196 extra_ldflags="$extra_ldflags -lvstream-client"
6197 else
6198 noinputmodules="vstream $noinputmodules"
6199 def_vstream='#undef CONFIG_VSTREAM'
6201 echores "$_vstream"
6204 echocheck "Subtitles sorting"
6205 if test "$_sortsub" = yes ; then
6206 def_sortsub='#define CONFIG_SORTSUB 1'
6207 else
6208 def_sortsub='#undef CONFIG_SORTSUB'
6210 echores "$_sortsub"
6213 echocheck "XMMS inputplugin support"
6214 if test "$_xmms" = yes ; then
6215 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6216 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6217 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6218 else
6219 _xmmsplugindir=/usr/lib/xmms/Input
6220 _xmmslibdir=/usr/lib
6223 def_xmms='#define CONFIG_XMMS 1'
6224 if darwin ; then
6225 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6226 else
6227 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6229 else
6230 def_xmms='#undef CONFIG_XMMS'
6232 echores "$_xmms"
6234 if test "$_charset" != "noconv" ; then
6235 def_charset="#define MSG_CHARSET \"$_charset\""
6236 else
6237 def_charset="#undef MSG_CHARSET"
6238 _charset="UTF-8"
6241 #############################################################################
6243 echocheck "automatic gdb attach"
6244 if test "$_crash_debug" = yes ; then
6245 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6246 else
6247 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6248 _crash_debug=no
6250 echores "$_crash_debug"
6252 echocheck "compiler support for noexecstack"
6253 if cflag_check -Wl,-z,noexecstack ; then
6254 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6255 echores "yes"
6256 else
6257 echores "no"
6260 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6261 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6262 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6263 echores "yes"
6264 else
6265 echores "no"
6269 # Dynamic linking flags
6270 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6271 _ld_dl_dynamic=''
6272 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6273 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6274 _ld_dl_dynamic='-rdynamic'
6277 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6278 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6279 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6281 def_debug='#undef MP_DEBUG'
6282 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6285 echocheck "joystick"
6286 def_joystick='#undef CONFIG_JOYSTICK'
6287 if test "$_joystick" = yes ; then
6288 if linux || freebsd ; then
6289 # TODO add some check
6290 def_joystick='#define CONFIG_JOYSTICK 1'
6291 else
6292 _joystick="no"
6293 res_comment="unsupported under $system_name"
6296 echores "$_joystick"
6298 echocheck "lirc"
6299 if test "$_lirc" = auto ; then
6300 _lirc=no
6301 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6303 if test "$_lirc" = yes ; then
6304 def_lirc='#define CONFIG_LIRC 1'
6305 libs_mplayer="$libs_mplayer -llirc_client"
6306 else
6307 def_lirc='#undef CONFIG_LIRC'
6309 echores "$_lirc"
6311 echocheck "lircc"
6312 if test "$_lircc" = auto ; then
6313 _lircc=no
6314 header_check lirc/lircc.h -llircc && _lircc=yes
6316 if test "$_lircc" = yes ; then
6317 def_lircc='#define CONFIG_LIRCC 1'
6318 libs_mplayer="$libs_mplayer -llircc"
6319 else
6320 def_lircc='#undef CONFIG_LIRCC'
6322 echores "$_lircc"
6324 #############################################################################
6326 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6327 # the OMF format needs to come after the 'extern symbol prefix' check, which
6328 # uses nm.
6329 if os2 ; then
6330 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6333 #############################################################################
6335 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6337 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6339 # This must be the last test to be performed. Any other tests following it
6340 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6341 # against libdvdread (to permit MPlayer to use its own copy of the library).
6342 # So any compilation using the flags added here but not linking against
6343 # libdvdread can fail.
6344 echocheck "DVD support (libdvdnav)"
6345 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6346 _dvdnav=no
6348 dvdnav_internal=no
6349 if test "$_dvdnav" = auto ; then
6350 if test "$_dvdread_internal" = yes ; then
6351 _dvdnav=yes
6352 dvdnav_internal=yes
6353 res_comment="internal"
6354 else
6355 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6358 if test "$_dvdnav" = auto ; then
6359 _dvdnav=no
6360 _dvdnavdir=$($_dvdnavconfig --cflags)
6361 _dvdnavlibs=$($_dvdnavconfig --libs)
6362 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6364 if test "$_dvdnav" = yes ; then
6365 def_dvdnav='#define CONFIG_DVDNAV 1'
6366 if test "$dvdnav_internal" = yes ; then
6367 cflags_libdvdnav="-Ilibdvdnav"
6368 inputmodules="dvdnav(internal) $inputmodules"
6369 else
6370 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6371 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6372 inputmodules="dvdnav $inputmodules"
6374 else
6375 def_dvdnav='#undef CONFIG_DVDNAV'
6376 noinputmodules="dvdnav $noinputmodules"
6378 echores "$_dvdnav"
6380 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6381 # Read dvdnav comment above.
6383 mak_enable () {
6384 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6385 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6386 nprefix=$3;
6387 for part in $list; do
6388 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6389 echo "${nprefix}_$part = yes"
6391 done
6394 #############################################################################
6395 echo "Creating config.mak"
6396 cat > config.mak << EOF
6397 # -------- Generated by configure -----------
6399 # Ensure that locale settings do not interfere with shell commands.
6400 export LC_ALL = C
6402 CONFIGURATION = $configuration
6404 CHARSET = $_charset
6405 DOC_LANGS = $language_doc
6406 DOC_LANG_ALL = $doc_lang_all
6407 MAN_LANGS = $language_man
6408 MAN_LANG_ALL = $man_lang_all
6409 MSG_LANGS = $language_msg
6410 MSG_LANG_ALL = $msg_lang_all
6412 prefix = \$(DESTDIR)$_prefix
6413 BINDIR = \$(DESTDIR)$_bindir
6414 DATADIR = \$(DESTDIR)$_datadir
6415 LIBDIR = \$(DESTDIR)$_libdir
6416 MANDIR = \$(DESTDIR)$_mandir
6417 CONFDIR = \$(DESTDIR)$_confdir
6418 LOCALEDIR = \$(DESTDIR)$_localedir
6420 AR = $_ar
6421 AS = $_cc
6422 CC = $_cc
6423 CXX = $_cc
6424 HOST_CC = $_host_cc
6425 INSTALL = $_install
6426 INSTALLSTRIP = $_install_strip
6427 WINDRES = $_windres
6429 CFLAGS = $WARNFLAGS $ERRORFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6430 CXXFLAGS = $WARNFLAGS $ERRORFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6431 DEPFLAGS = $DEPFLAGS
6433 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6434 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6435 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6436 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6437 CFLAGS_STACKREALIGN = $cflags_stackrealign
6439 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6440 EXTRALIBS_MPLAYER = $libs_mplayer
6442 GETCH = $_getch
6443 TIMER = $_timer
6445 EXESUF = $_exesuf
6446 EXESUFS_ALL = .exe
6448 ARCH = $arch
6449 $(mak_enable "$arch_all" "$arch" ARCH)
6450 $(mak_enable "$subarch_all" "$subarch" ARCH)
6451 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6453 MPLAYER = $_mplayer
6455 NEED_GETTIMEOFDAY = $need_gettimeofday
6456 NEED_GLOB = $need_glob
6457 NEED_MMAP = $need_mmap
6458 NEED_SETENV = $need_setenv
6459 NEED_SHMEM = $need_shmem
6460 NEED_STRSEP = $need_strsep
6461 NEED_SWAB = $need_swab
6462 NEED_VSSCANF = $need_vsscanf
6464 # features
6465 3DFX = $_3dfx
6466 AA = $_aa
6467 ALSA = $_alsa
6468 APPLE_IR = $_apple_ir
6469 APPLE_REMOTE = $_apple_remote
6470 ARTS = $_arts
6471 AUDIO_INPUT = $_audio_input
6472 BITMAP_FONT = $_bitmap_font
6473 BL = $_bl
6474 CACA = $_caca
6475 CDDA = $_cdda
6476 CDDB = $_cddb
6477 COREAUDIO = $_coreaudio
6478 COREVIDEO = $_corevideo
6479 DART = $_dart
6480 DGA = $_dga
6481 DIRECT3D = $_direct3d
6482 DIRECTFB = $_directfb
6483 DIRECTX = $_directx
6484 DVBIN = $_dvbin
6485 DVDNAV = $_dvdnav
6486 DVDNAV_INTERNAL = $dvdnav_internal
6487 DVDREAD = $_dvdread
6488 DVDREAD_INTERNAL = $_dvdread_internal
6489 DXR3 = $_dxr3
6490 ESD = $_esd
6491 FAAD = $_faad
6492 FASTMEMCPY = $_fastmemcpy
6493 FBDEV = $_fbdev
6494 FREETYPE = $_freetype
6495 FTP = $_ftp
6496 GIF = $_gif
6497 GGI = $_ggi
6498 GL = $_gl
6499 GL_COCOA = $_gl_cocoa
6500 GL_WIN32 = $_gl_win32
6501 GL_X11 = $_gl_x11
6502 GL_SDL = $_gl_sdl
6503 HAVE_POSIX_SELECT = $_posix_select
6504 HAVE_SYS_MMAN_H = $_mman
6505 IVTV = $_ivtv
6506 JACK = $_jack
6507 JOYSTICK = $_joystick
6508 JPEG = $_jpeg
6509 KAI = $_kai
6510 KVA = $_kva
6511 LADSPA = $_ladspa
6512 LIBA52 = $_liba52
6513 LIBASS = $_ass
6514 LIBBLURAY = $_bluray
6515 LIBBS2B = $_libbs2b
6516 LIBDCA = $_libdca
6517 LIBDV = $_libdv
6518 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6519 LIBMAD = $_mad
6520 LIBNEMESI = $_nemesi
6521 LIBNUT = $_libnut
6522 LIBPOSTPROC = $libpostproc
6523 LIBSMBCLIENT = $_smb
6524 LIBTHEORA = $_theora
6525 LIRC = $_lirc
6526 LIVE555 = $_live
6527 MACOSX_FINDER = $_macosx_finder
6528 MD5SUM = $_md5sum
6529 MGA = $_mga
6530 MNG = $_mng
6531 MPG123 = $_mpg123
6532 MUSEPACK = $_musepack
6533 NAS = $_nas
6534 NATIVE_RTSP = $_native_rtsp
6535 NETWORKING = $networking
6536 OPENAL = $_openal
6537 OSS = $_ossaudio
6538 PE_EXECUTABLE = $_pe_executable
6539 PNG = $_png
6540 PNM = $_pnm
6541 PRIORITY = $_priority
6542 PULSE = $_pulse
6543 PVR = $_pvr
6544 QTX_CODECS = $_qtx
6545 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6546 QTX_EMULATION = $_qtx_emulation
6547 QUARTZ = $_quartz
6548 RADIO=$_radio
6549 RADIO_CAPTURE=$_radio_capture
6550 REAL_CODECS = $_real
6551 RSOUND = $_rsound
6552 S3FB = $_s3fb
6553 SDL = $_sdl
6554 SPEEX = $_speex
6555 STREAM_CACHE = $_stream_cache
6556 SGIAUDIO = $_sgiaudio
6557 SUNAUDIO = $_sunaudio
6558 SVGA = $_svga
6559 TDFXFB = $_tdfxfb
6560 TDFXVID = $_tdfxvid
6561 TGA = $_tga
6562 TV = $_tv
6563 TV_BSDBT848 = $_tv_bsdbt848
6564 TV_DSHOW = $_tv_dshow
6565 TV_V4L = $_tv_v4l
6566 TV_V4L1 = $_tv_v4l1
6567 TV_V4L2 = $_tv_v4l2
6568 UNRAR_EXEC = $_unrar_exec
6569 V4L2 = $_v4l2
6570 VCD = $_vcd
6571 VDPAU = $_vdpau
6572 VESA = $_vesa
6573 VORBIS = $_vorbis
6574 VSTREAM = $_vstream
6575 WII = $_wii
6576 WIN32DLL = $_win32dll
6577 WIN32WAVEOUT = $_win32waveout
6578 WIN32_EMULATION = $_win32_emulation
6579 X11 = $_x11
6580 XANIM_CODECS = $_xanim
6581 XMGA = $_xmga
6582 XMMS_PLUGINS = $_xmms
6583 XV = $_xv
6584 XVID4 = $_xvid
6585 XVR100 = $_xvr100
6586 YUV4MPEG = $_yuv4mpeg
6588 # FFmpeg
6589 FFMPEG_INTERNALS = $ffmpeg_internals
6590 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6592 RANLIB = $_ranlib
6593 YASM = $_yasm
6594 YASMFLAGS = $YASMFLAGS
6596 CONFIG_VDPAU = $_vdpau
6597 CONFIG_ZLIB = $_zlib
6599 HAVE_PTHREADS = $_pthreads
6600 HAVE_SHM = $_shm
6601 HAVE_W32THREADS = $_w32threads
6602 HAVE_YASM = $have_yasm
6606 #############################################################################
6608 ff_config_enable () {
6609 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6610 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6611 _nprefix=$3;
6612 test -z "$_nprefix" && _nprefix='CONFIG'
6613 for part in $list; do
6614 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6615 echo "#define ${_nprefix}_$part 1"
6616 else
6617 echo "#define ${_nprefix}_$part 0"
6619 done
6622 echo "Creating config.h"
6623 cat > $TMPH << EOF
6624 /*----------------------------------------------------------------------------
6625 ** This file has been automatically generated by configure any changes in it
6626 ** will be lost when you run configure again.
6627 ** Instead of modifying definitions here, use the --enable/--disable options
6628 ** of the configure script! See ./configure --help for details.
6629 *---------------------------------------------------------------------------*/
6631 #ifndef MPLAYER_CONFIG_H
6632 #define MPLAYER_CONFIG_H
6634 /* Undefine this if you do not want to select mono audio (left or right)
6635 with a stereo MPEG layer 2/3 audio stream. The command line option
6636 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6637 right-only), with 0 being the default.
6639 #define CONFIG_FAKE_MONO 1
6641 /* set up audio OUTBURST. Do not change this! */
6642 #define OUTBURST 512
6644 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6645 #undef FAST_OSD
6646 #undef FAST_OSD_TABLE
6650 #define CONFIGURATION "$configuration"
6652 #define MPLAYER_DATADIR "$_datadir"
6653 #define MPLAYER_CONFDIR "$_confdir"
6654 #define MPLAYER_LOCALEDIR "$_localedir"
6656 $def_translation
6658 /* definitions needed by included libraries */
6659 #define HAVE_INTTYPES_H 1
6660 /* libdvdcss */
6661 #define HAVE_ERRNO_H 1
6662 /* libdvdcss + libdvdread */
6663 #define HAVE_LIMITS_H 1
6664 /* libdvdcss */
6665 #define HAVE_UNISTD_H 1
6666 /* libdvdread */
6667 #define STDC_HEADERS 1
6668 #define HAVE_MEMCPY 1
6669 /* libdvdnav */
6670 #define READ_CACHE_TRACE 0
6671 /* libdvdread */
6672 #define HAVE_DLFCN_H 1
6673 $def_dvdcss
6676 /* system headers */
6677 $def_alloca_h
6678 $def_altivec_h
6679 $def_malloc_h
6680 $def_mman_h
6681 $def_mman_has_map_failed
6682 $def_soundcard_h
6683 $def_sys_soundcard_h
6684 $def_sys_sysinfo_h
6685 $def_sys_videoio_h
6686 $def_termios_h
6687 $def_termios_sys_h
6688 $def_winsock2_h
6691 /* system functions */
6692 $def_gethostbyname2
6693 $def_gettimeofday
6694 $def_glob
6695 $def_langinfo
6696 $def_lrintf
6697 $def_map_memalign
6698 $def_memalign
6699 $def_nanosleep
6700 $def_posix_select
6701 $def_select
6702 $def_setenv
6703 $def_setmode
6704 $def_shm
6705 $def_strsep
6706 $def_swab
6707 $def_sysi86
6708 $def_sysi86_iv
6709 $def_termcap
6710 $def_termios
6711 $def_vsscanf
6714 /* system-specific features */
6715 $def_asmalign_pot
6716 $def_builtin_expect
6717 $def_dl
6718 $def_dos_paths
6719 $def_extern_asm
6720 $def_extern_prefix
6721 $def_iconv
6722 $def_kstat
6723 $def_macosx_bundle
6724 $def_macosx_finder
6725 $def_priority
6726 $def_quicktime
6727 $def_restrict_keyword
6728 $def_rtc
6729 $def_unrar_exec
6732 /* configurable options */
6733 $def_charset
6734 $def_crash_debug
6735 $def_debug
6736 $def_fastmemcpy
6737 $def_runtime_cpudetection
6738 $def_sighandler
6739 $def_sortsub
6740 $def_stream_cache
6741 $def_pthread_cache
6744 /* CPU stuff */
6745 #define __CPU__ $iproc
6746 $def_ebx_available
6747 $def_words_endian
6748 $def_bigendian
6749 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6750 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6751 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
6754 /* Blu-ray/DVD/VCD/CD */
6755 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
6756 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
6757 $def_bluray
6758 $def_bsdi_dvd
6759 $def_cddb
6760 $def_cdio
6761 $def_cdparanoia
6762 $def_cdrom
6763 $def_dvd
6764 $def_dvd_bsd
6765 $def_dvd_darwin
6766 $def_dvd_linux
6767 $def_dvd_openbsd
6768 $def_dvdio
6769 $def_dvdnav
6770 $def_dvdread
6771 $def_hpux_scsi_h
6772 $def_libcdio
6773 $def_sol_scsi_h
6774 $def_vcd
6777 /* codec libraries */
6778 $def_faad
6779 $def_liba52
6780 $def_libdca
6781 $def_libdv
6782 $def_mad
6783 $def_mpg123
6784 $def_musepack
6785 $def_speex
6786 $def_theora
6787 $def_tremor
6788 $def_vorbis
6789 $def_xvid
6790 $def_zlib
6792 $def_libpostproc
6793 $def_libnut
6796 /* binary codecs */
6797 $def_qtx
6798 $def_qtx_win32
6799 $def_real
6800 $def_win32_loader
6801 $def_win32dll
6802 $def_xanim
6803 $def_xmms
6804 #define BINARY_CODECS_PATH "$_codecsdir"
6805 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
6808 /* Audio output drivers */
6809 $def_alsa
6810 $def_arts
6811 $def_coreaudio
6812 $def_dart
6813 $def_esd
6814 $def_esd_latency
6815 $def_jack
6816 $def_kai
6817 $def_nas
6818 $def_openal
6819 $def_openal_h
6820 $def_ossaudio
6821 $def_ossaudio_devdsp
6822 $def_ossaudio_devmixer
6823 $def_pulse
6824 $def_rsound
6825 $def_sgiaudio
6826 $def_sunaudio
6827 $def_win32waveout
6829 $def_ladspa
6830 $def_libbs2b
6833 /* input */
6834 $def_apple_ir
6835 $def_apple_remote
6836 $def_ioctl_bt848_h_name
6837 $def_ioctl_meteor_h_name
6838 $def_joystick
6839 $def_lirc
6840 $def_lircc
6841 $def_pvr
6842 $def_radio
6843 $def_radio_bsdbt848
6844 $def_radio_capture
6845 $def_radio_v4l
6846 $def_radio_v4l2
6847 $def_tv
6848 $def_tv_bsdbt848
6849 $def_tv_dshow
6850 $def_tv_v4l
6851 $def_tv_v4l1
6852 $def_tv_v4l2
6855 /* font stuff */
6856 $def_ass
6857 $def_bitmap_font
6858 $def_enca
6859 $def_fontconfig
6860 $def_freetype
6861 $def_fribidi
6864 /* networking */
6865 $def_closesocket
6866 $def_ftp
6867 $def_inet6
6868 $def_inet_aton
6869 $def_inet_pton
6870 $def_live
6871 $def_nemesi
6872 $def_networking
6873 $def_smb
6874 $def_socklen_t
6875 $def_vstream
6878 /* libvo options */
6879 $def_3dfx
6880 $def_aa
6881 $def_bl
6882 $def_caca
6883 $def_corevideo
6884 $def_dga
6885 $def_dga1
6886 $def_dga2
6887 $def_direct3d
6888 $def_directfb
6889 $def_directx
6890 $def_dvb
6891 $def_dvbin
6892 $def_dxr3
6893 $def_fbdev
6894 $def_ggi
6895 $def_ggiwmh
6896 $def_gif
6897 $def_gif_4
6898 $def_gif_tvt_hack
6899 $def_gl
6900 $def_gl_cocoa
6901 $def_gl_win32
6902 $def_gl_x11
6903 $def_gl_sdl
6904 $def_ivtv
6905 $def_jpeg
6906 $def_kva
6907 $def_md5sum
6908 $def_mga
6909 $def_mng
6910 $def_png
6911 $def_pnm
6912 $def_quartz
6913 $def_s3fb
6914 $def_sdl
6915 $def_sdl_sdl_h
6916 $def_svga
6917 $def_tdfxfb
6918 $def_tdfxvid
6919 $def_tga
6920 $def_v4l2
6921 $def_vdpau
6922 $def_vesa
6923 $def_vm
6924 $def_wii
6925 $def_x11
6926 $def_xdpms
6927 $def_xf86keysym
6928 $def_xinerama
6929 $def_xmga
6930 $def_xss
6931 $def_xv
6932 $def_xvr100
6933 $def_yuv4mpeg
6936 /* FFmpeg */
6937 $def_ffmpeg_internals
6939 $def_arpa_inet_h
6940 $def_bswap
6941 $def_dcbzl
6942 $def_exp2
6943 $def_exp2f
6944 $def_fast_64bit
6945 $def_fast_unaligned
6946 $def_llrint
6947 $def_log2
6948 $def_log2f
6949 $def_lrint
6950 $def_memalign_hack
6951 $def_mkstemp
6952 $def_posix_memalign
6953 $def_pthreads
6954 $def_round
6955 $def_roundf
6956 $def_threads
6957 $def_truncf
6958 $def_xform_asm
6959 $def_yasm
6961 #define HAVE_INLINE_ASM 1
6963 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
6964 #ifndef MP_DEBUG
6965 #define HAVE_EBP_AVAILABLE 1
6966 #else
6967 #define HAVE_EBP_AVAILABLE 0
6968 #endif
6970 #endif /* MPLAYER_CONFIG_H */
6973 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
6974 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
6976 #############################################################################
6978 cat << EOF
6980 Config files successfully generated by ./configure $configuration !
6982 Install prefix: $_prefix
6983 Data directory: $_datadir
6984 Config direct.: $_confdir
6986 Byte order: $_byte_order
6987 Optimizing for: $_optimizing
6989 Languages:
6990 Messages (in addition to English): $language_msg
6991 Manual pages: $language_man
6992 Documentation: $language_doc
6994 Enabled optional drivers:
6995 Input: $inputmodules
6996 Codecs: $codecmodules
6997 Audio output: $aomodules
6998 Video output: $vomodules
7000 Disabled optional drivers:
7001 Input: $noinputmodules
7002 Codecs: $nocodecmodules
7003 Audio output: $noaomodules
7004 Video output: $novomodules
7006 'config.h' and 'config.mak' contain your configuration options.
7007 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7008 compile *** DO NOT REPORT BUGS if you tweak these files ***
7010 'make' will now compile MPlayer and 'make install' will install it.
7011 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7016 cat <<EOF
7017 Check $TMPLOG if you wonder why an autodetection failed (make sure
7018 development headers/packages are installed).
7020 NOTE: The --enable-* parameters unconditionally force options on, completely
7021 skipping autodetection. This behavior is unlike what you may be used to from
7022 autoconf-based configure scripts that can decide to override you. This greater
7023 level of control comes at a price. You may have to provide the correct compiler
7024 and linker flags yourself.
7025 If you used one of these options (except --enable-runtime-cpudetection and
7026 similar ones that turn on internal features) and experience a compilation or
7027 linking failure, make sure you have passed the necessary compiler/linker flags
7028 to configure.
7030 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7034 if test "$warn_cflags" = yes; then
7035 cat <<EOF
7037 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7038 but:
7040 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7042 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7043 To do so, execute 'CFLAGS= ./configure <options>'
7048 # Last move:
7049 rm -rf "$mplayer_tmpdir"