cleanup: Silence compilation warnings on MinGW-w64
[mplayer.git] / configure
blobfd3bfc83bd16da5b00571f3a5482584c62c85eee
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 echo >> "$TMPLOG"
170 echo "$_pkg_config --cflags $@" >> "$TMPLOG"
171 ctmp=$($_pkg_config --cflags "$@" 2>> "$TMPLOG") || return $?
172 echo >> "$TMPLOG"
173 echo "$_pkg_config --libs $@" >> "$TMPLOG"
174 ltmp=$($_pkg_config --libs "$@" 2>> "$TMPLOG") || return $?
175 echo >> "$TMPLOG"
176 echo "cflags: $ctmp" >> "$TMPLOG"
177 echo "libs: $ltmp" >> "$TMPLOG"
178 echo >> "$TMPLOG"
179 extra_cflags="$extra_cflags $ctmp"
180 extra_ldflags="$extra_ldflags $ltmp"
183 tmp_run() {
184 "$TMPEXE" >> "$TMPLOG" 2>&1
187 # Display error message, flushes tempfile, exit
188 die () {
189 echo
190 echo "Error: $@" >&2
191 echo >&2
192 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
193 echo "Check \"$TMPLOG\" if you do not understand why it failed."
194 exit 1
197 # OS test booleans functions
198 issystem() {
199 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
201 aix() { issystem "AIX"; }
202 amigaos() { issystem "AmigaOS"; }
203 beos() { issystem "BEOS"; }
204 bsdos() { issystem "BSD/OS"; }
205 cygwin() { issystem "CYGWIN"; }
206 darwin() { issystem "Darwin"; }
207 dragonfly() { issystem "DragonFly"; }
208 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
209 gnu() { issystem "GNU"; }
210 hpux() { issystem "HP-UX"; }
211 irix() { issystem "IRIX"; }
212 linux() { issystem "Linux"; }
213 mingw32() { issystem "MINGW32"; }
214 morphos() { issystem "MorphOS"; }
215 netbsd() { issystem "NetBSD"; }
216 openbsd() { issystem "OpenBSD"; }
217 os2() { issystem "OS/2"; }
218 qnx() { issystem "QNX"; }
219 sunos() { issystem "SunOS"; }
220 win32() { cygwin || mingw32; }
222 # arch test boolean functions
223 # x86/x86pc is used by QNX
224 x86_32() {
225 case "$host_arch" in
226 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
227 *) return 1 ;;
228 esac
231 x86_64() {
232 case "$host_arch" in
233 x86_64|amd64) return 0 ;;
234 *) return 1 ;;
235 esac
238 x86() {
239 x86_32 || x86_64
242 ppc() {
243 case "$host_arch" in
244 ppc|ppc64|powerpc|powerpc64) return 0;;
245 *) return 1;;
246 esac
249 alpha() {
250 case "$host_arch" in
251 alpha*) return 0;;
252 *) return 1;;
253 esac
256 arm() {
257 case "$host_arch" in
258 arm*) return 0;;
259 *) return 1;;
260 esac
263 # Use this before starting a check
264 echocheck() {
265 echo "============ Checking for $@ ============" >> "$TMPLOG"
266 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
269 # Use this to echo the results of a check
270 echores() {
271 if test "$res_comment" ; then
272 res_comment="($res_comment)"
274 echo "Result is: $@ $res_comment" >> "$TMPLOG"
275 echo "##########################################" >> "$TMPLOG"
276 echo "" >> "$TMPLOG"
277 echo "$@ $res_comment"
278 res_comment=""
280 #############################################################################
282 # Check how echo works in this /bin/sh
283 case $(echo -n) in
284 -n) _echo_n= _echo_c='\c' ;; # SysV echo
285 *) _echo_n='-n ' _echo_c= ;; # BSD echo
286 esac
288 msg_lang_all=''
289 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
290 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")
291 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
293 show_help(){
294 cat << EOF
295 Usage: $0 [OPTIONS]...
297 Configuration:
298 -h, --help display this help and exit
300 Installation directories:
301 --prefix=DIR prefix directory for installation [/usr/local]
302 --bindir=DIR directory for installing binaries [PREFIX/bin]
303 --datadir=DIR directory for installing machine independent
304 data files (skins, etc) [PREFIX/share/mplayer]
305 --mandir=DIR directory for installing man pages [PREFIX/share/man]
306 --confdir=DIR directory for installing configuration files
307 [PREFIX/etc/mplayer]
308 --localedir=DIR directory for locale tree [PREFIX/share/locale]
309 --libdir=DIR directory for object code libraries [PREFIX/lib]
310 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
312 Optional features:
313 --disable-mplayer disable MPlayer compilation [enable]
314 --enable-termcap use termcap database for key codes [autodetect]
315 --enable-termios use termios database for key codes [autodetect]
316 --disable-iconv disable iconv for encoding conversion [autodetect]
317 --disable-langinfo do not use langinfo [autodetect]
318 --enable-lirc enable LIRC (remote control) support [autodetect]
319 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
320 --enable-joystick enable joystick support [disable]
321 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
322 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
323 --disable-vm disable X video mode extensions [autodetect]
324 --disable-xf86keysym disable support for multimedia keys [autodetect]
325 --enable-radio enable radio interface [disable]
326 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
327 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
328 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
329 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
330 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
331 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
332 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
333 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
334 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
335 --disable-networking disable networking [enable]
336 --enable-winsock2_h enable winsock2_h [autodetect]
337 --enable-smb enable Samba (SMB) input [autodetect]
338 --enable-live enable LIVE555 Streaming Media [autodetect]
339 --enable-nemesi enable Nemesi Streaming Media [autodetect]
340 --disable-vcd disable VCD support [autodetect]
341 --disable-bluray disable Blu-ray support [autodetect]
342 --disable-dvdnav disable libdvdnav [autodetect]
343 --disable-dvdread disable libdvdread [autodetect]
344 --disable-dvdread-internal disable internal libdvdread [autodetect]
345 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
346 --disable-cdparanoia disable cdparanoia [autodetect]
347 --disable-cddb disable cddb [autodetect]
348 --disable-bitmap-font disable bitmap font support [enable]
349 --disable-freetype disable FreeType 2 font rendering [autodetect]
350 --disable-fontconfig disable fontconfig font lookup [autodetect]
351 --disable-unrarexec disable using of UnRAR executable [enabled]
352 --disable-sortsub disable subtitle sorting [enabled]
353 --enable-fribidi enable the FriBiDi libs [autodetect]
354 --disable-enca disable ENCA charset oracle library [autodetect]
355 --enable-macosx-finder enable Mac OS X Finder invocation parameter
356 parsing [disabled]
357 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
358 --disable-inet6 disable IPv6 support [autodetect]
359 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
360 --disable-ftp disable FTP support [enabled]
361 --disable-vstream disable TiVo vstream client support [autodetect]
362 --disable-pthreads disable Posix threads support [autodetect]
363 --disable-w32threads disable Win32 threads support [autodetect]
364 --disable-libass disable subtitle rendering with libass [autodetect]
365 --enable-rpath enable runtime linker path for extra libs [disabled]
366 --disable-libpostproc disable postprocess filter (vf_pp) [autodetect]
368 Codecs:
369 --enable-gif enable GIF support [autodetect]
370 --enable-png enable PNG input/output support [autodetect]
371 --enable-mng enable MNG input support [autodetect]
372 --enable-jpeg enable JPEG input/output support [autodetect]
373 --enable-libcdio enable libcdio support [autodetect]
374 --disable-win32dll disable Win32 DLL support [autodetect]
375 --disable-qtx disable QuickTime codecs support [enabled]
376 --disable-xanim disable XAnim codecs support [enabled]
377 --disable-real disable RealPlayer codecs support [enabled]
378 --disable-xvid disable Xvid [autodetect]
379 --disable-libnut disable libnut [autodetect]
380 --enable-libav skip Libav autodetection [autodetect]
381 --disable-libvorbis disable libvorbis support [autodetect]
382 --disable-tremor disable Tremor [autodetect if no libvorbis]
383 --disable-speex disable Speex support [autodetect]
384 --enable-theora enable OggTheora libraries [autodetect]
385 --enable-faad enable FAAD2 (AAC) [autodetect]
386 --disable-ladspa disable LADSPA plugin support [autodetect]
387 --disable-libbs2b disable libbs2b audio filter support [autodetect]
388 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
389 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
390 --disable-mad disable libmad (MPEG audio) support [autodetect]
391 --enable-xmms enable XMMS input plugin support [disabled]
392 --enable-libdca enable libdca support [autodetect]
393 --disable-liba52 disable liba52 [autodetect]
394 --enable-musepack enable libmpcdec support (deprecated, libavcodec
395 Musepack decoder is preferred) [disabled]
397 Video output:
398 --enable-gl enable OpenGL video output [autodetect]
399 --enable-dga2 enable DGA 2 support [autodetect]
400 --enable-dga1 enable DGA 1 support [autodetect]
401 --enable-vesa enable VESA video output [autodetect]
402 --enable-svga enable SVGAlib video output [autodetect]
403 --enable-sdl enable SDL video output [autodetect]
404 --enable-kva enable KVA video output [autodetect]
405 --enable-aa enable AAlib video output [autodetect]
406 --enable-caca enable CACA video output [autodetect]
407 --enable-ggi enable GGI video output [autodetect]
408 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
409 --enable-direct3d enable Direct3D video output [autodetect]
410 --enable-directx enable DirectX video output [autodetect]
411 --enable-dxr3 enable DXR3/H+ video output [autodetect]
412 --enable-ivtv enable IVTV TV-Out video output [autodetect]
413 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
414 --enable-dvb enable DVB video output [autodetect]
415 --enable-mga enable mga_vid video output [autodetect]
416 --enable-xmga enable mga_vid X11 video output [autodetect]
417 --enable-xv enable Xv video output [autodetect]
418 --enable-vdpau enable VDPAU acceleration [autodetect]
419 --enable-vm enable XF86VidMode support [autodetect]
420 --enable-xinerama enable Xinerama support [autodetect]
421 --enable-x11 enable X11 video output [autodetect]
422 --enable-xshape enable XShape support [autodetect]
423 --disable-xss disable screensaver support via xss [autodetect]
424 --enable-fbdev enable FBDev video output [autodetect]
425 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
426 --enable-tdfxfb enable tdfxfb video output [disable]
427 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
428 --enable-wii enable Nintendo Wii/GameCube video output [disable]
429 --enable-directfb enable DirectFB video output [autodetect]
430 --enable-bl enable Blinkenlights video output [disable]
431 --enable-tdfxvid enable tdfx_vid video output [disable]
432 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
433 --disable-tga disable Targa video output [enable]
434 --disable-pnm disable PNM video output [enable]
435 --disable-md5sum disable md5sum video output [enable]
436 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
437 --disable-corevideo disable CoreVideo video output [autodetect]
438 --disable-cocoa disable Cocoa OpenGL backend [autodetect]
439 --disable-quartz disable Quartz video output [autodetect]
441 Audio output:
442 --disable-alsa disable ALSA audio output [autodetect]
443 --disable-ossaudio disable OSS audio output [autodetect]
444 --disable-arts disable aRts audio output [autodetect]
445 --disable-esd disable esd audio output [autodetect]
446 --disable-rsound disable RSound audio output [autodetect]
447 --disable-pulse disable Pulseaudio audio output [autodetect]
448 --disable-jack disable JACK audio output [autodetect]
449 --enable-openal enable OpenAL audio output [disable]
450 --disable-nas disable NAS audio output [autodetect]
451 --disable-sgiaudio disable SGI audio output [autodetect]
452 --disable-sunaudio disable Sun audio output [autodetect]
453 --disable-kai disable KAI audio output [autodetect]
454 --disable-dart disable DART audio output [autodetect]
455 --disable-win32waveout disable Windows waveout audio output [autodetect]
456 --disable-coreaudio disable CoreAudio audio output [autodetect]
457 --disable-select disable using select() on the audio device [enable]
459 Language options:
460 --enable-translation enable support for translated output [disable]
461 --charset=charset convert the console messages to this character set
462 --language-doc=lang language to use for the documentation [en]
463 --language-man=lang language to use for the man pages [en]
464 --language-msg=lang extra languages for program messages [all]
465 --language=lang default language to use [en]
466 Specific options override --language. You can pass a list of languages separated
467 by whitespace or commas instead of a single language. Nonexisting translations
468 will be dropped from each list. All translations available in the list will be
469 installed. The value "all" will activate all translations. The LINGUAS
470 environment variable is honored. In all cases the fallback is English.
471 The program always supports English-language output; additional message
472 languages are only installed if --enable-translation is also specified.
473 Available values for --language-doc are: all $doc_lang_all
474 Available values for --language-man are: all $man_lang_all
475 Available values for --language-msg are: all $msg_lang_all
477 Miscellaneous options:
478 --enable-runtime-cpudetection enable runtime CPU detection [disable]
479 --enable-cross-compile enable cross-compilation [disable]
480 --cc=COMPILER C compiler to build MPlayer [gcc]
481 --host-cc=COMPILER C compiler for tools needed while building [gcc]
482 --as=ASSEMBLER assembler to build MPlayer [as]
483 --nm=NM nm tool to build MPlayer [nm]
484 --yasm=YASM Yasm assembler to build MPlayer [yasm]
485 --ar=AR librarian to build MPlayer [ar]
486 --pkg-config=PKGCONFIG pkg-config to find some libraries [pkg-config]
487 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
488 --windres=WINDRES windres to build MPlayer [windres]
489 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
490 --enable-static build a statically linked binary
491 --with-install=PATH path to a custom install program
493 Advanced options:
494 --enable-mmx enable MMX [autodetect]
495 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
496 --enable-3dnow enable 3DNow! [autodetect]
497 --enable-3dnowext enable extended 3DNow! [autodetect]
498 --enable-sse enable SSE [autodetect]
499 --enable-sse2 enable SSE2 [autodetect]
500 --enable-ssse3 enable SSSE3 [autodetect]
501 --enable-shm enable shm [autodetect]
502 --enable-altivec enable AltiVec (PowerPC) [autodetect]
503 --enable-armv5te enable DSP extensions (ARM) [autodetect]
504 --enable-armv6 enable ARMv6 (ARM) [autodetect]
505 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
506 --enable-armvfp enable ARM VFP (ARM) [autodetect]
507 --enable-neon enable NEON (ARM) [autodetect]
508 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
509 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
510 --enable-big-endian force byte order to big-endian [autodetect]
511 --enable-debug[=1-3] compile-in debugging information [disable]
512 --enable-profile compile-in profiling information [disable]
513 --disable-sighandler disable sighandler for crashes [enable]
514 --enable-crash-debug enable automatic gdb attach on crash [disable]
516 Use these options if autodetection fails:
517 --extra-cflags=FLAGS extra CFLAGS
518 --extra-ldflags=FLAGS extra LDFLAGS
519 --extra-libs=FLAGS extra linker flags
520 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
522 --with-sdl-config=PATH path to sdl*-config
523 --with-dvdnav-config=PATH path to dvdnav-config
524 --with-dvdread-config=PATH path to dvdread-config
526 This configure script is NOT autoconf-based, even though its output is similar.
527 It will try to autodetect all configuration options. If you --enable an option
528 it will be forcefully turned on, skipping autodetection. This can break
529 compilation, so you need to know what you are doing.
531 exit 0
532 } #show_help()
534 # GOTCHA: the variables below defines the default behavior for autodetection
535 # and have - unless stated otherwise - at least 2 states : yes no
536 # If autodetection is available then the third state is: auto
537 _mmx=auto
538 _3dnow=auto
539 _3dnowext=auto
540 _mmxext=auto
541 _sse=auto
542 _sse2=auto
543 _ssse3=auto
544 _cmov=auto
545 _fast_cmov=auto
546 _fast_clz=auto
547 _armv5te=auto
548 _armv6=auto
549 _armv6t2=auto
550 _armvfp=auto
551 neon=auto
552 _iwmmxt=auto
553 _altivec=auto
554 _install=install
555 _pkg_config=auto
556 _ranlib=auto
557 _windres=auto
558 _cc=auto
559 _ar=auto
560 test "$CC" && _cc="$CC"
561 _as=auto
562 _nm=auto
563 _yasm=auto
564 _runtime_cpudetection=no
565 _cross_compile=no
566 _prefix="/usr/local"
567 ffmpeg=auto
568 ffmpeg_internals=no
569 _mplayer=yes
570 _x11=auto
571 _xshape=auto
572 _xss=auto
573 _dga1=auto
574 _dga2=auto
575 _xv=auto
576 _vdpau=auto
577 _sdl=auto
578 _kva=auto
579 _direct3d=auto
580 _directx=auto
581 _win32waveout=auto
582 _nas=auto
583 _png=auto
584 _mng=auto
585 _jpeg=auto
586 _pnm=yes
587 _md5sum=yes
588 _yuv4mpeg=yes
589 _gif=auto
590 _gl=auto
591 _ggi=auto
592 _ggiwmh=auto
593 _aa=auto
594 _caca=auto
595 _svga=auto
596 _vesa=auto
597 _fbdev=auto
598 _dvb=auto
599 _dxr3=auto
600 _ivtv=auto
601 _v4l2=auto
602 _iconv=auto
603 _langinfo=auto
604 _rtc=auto
605 _ossaudio=auto
606 _arts=auto
607 _esd=auto
608 _rsound=auto
609 _pulse=auto
610 _jack=auto
611 _kai=auto
612 _dart=auto
613 _openal=no
614 _libcdio=auto
615 _mad=auto
616 _tremor=auto
617 _libvorbis=auto
618 _speex=auto
619 _theora=auto
620 _mpg123=auto
621 _liba52=auto
622 _libdca=auto
623 _faad=auto
624 _ladspa=auto
625 _libbs2b=auto
626 _xmms=no
627 _vcd=auto
628 _bluray=auto
629 _dvdnav=auto
630 _dvdnavconfig=dvdnav-config
631 _dvdreadconfig=dvdread-config
632 _dvdread=auto
633 _dvdread_internal=auto
634 _libdvdcss_internal=auto
635 _xanim=auto
636 _real=auto
637 _live=auto
638 _nemesi=auto
639 _native_rtsp=yes
640 _xinerama=auto
641 _mga=auto
642 _xmga=auto
643 _vm=auto
644 _xf86keysym=auto
645 _sgiaudio=auto
646 _sunaudio=auto
647 _alsa=auto
648 _fastmemcpy=yes
649 _unrar_exec=auto
650 _win32dll=auto
651 _select=yes
652 _radio=no
653 _radio_capture=no
654 _radio_v4l=auto
655 _radio_v4l2=auto
656 _radio_bsdbt848=auto
657 _tv=yes
658 _tv_v4l1=auto
659 _tv_v4l2=auto
660 _tv_bsdbt848=auto
661 _tv_dshow=auto
662 _pvr=auto
663 networking=yes
664 _winsock2_h=auto
665 _smb=auto
666 _joystick=no
667 _xvid=auto
668 _libnut=auto
669 _lirc=auto
670 _lircc=auto
671 _apple_remote=auto
672 _apple_ir=auto
673 _termcap=auto
674 _termios=auto
675 _3dfx=no
676 _s3fb=no
677 _wii=no
678 _tdfxfb=no
679 _tdfxvid=no
680 _xvr100=auto
681 _tga=yes
682 _directfb=auto
683 _bl=no
684 #language=en
685 _shm=auto
686 _translation=no
687 _charset="UTF-8"
688 _crash_debug=no
689 _sighandler=yes
690 _libdv=auto
691 _cdparanoia=auto
692 _cddb=auto
693 _big_endian=auto
694 _bitmap_font=yes
695 _freetype=auto
696 _fontconfig=auto
697 _qtx=auto
698 _coreaudio=auto
699 _corevideo=auto
700 _cocoa=auto
701 _quartz=auto
702 quicktime=auto
703 _macosx_finder=no
704 _macosx_bundle=auto
705 _sortsub=yes
706 _fribidi=auto
707 _enca=auto
708 _inet6=auto
709 _gethostbyname2=auto
710 _ftp=auto
711 _musepack=no
712 _vstream=auto
713 _pthreads=auto
714 _w32threads=auto
715 _ass=auto
716 _rpath=no
717 libpostproc=auto
718 _asmalign_pot=auto
719 _stream_cache=yes
720 _priority=no
721 def_dos_paths="#define HAVE_DOS_PATHS 0"
722 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
723 def_priority="#undef CONFIG_PRIORITY"
724 def_pthread_cache="#undef PTHREAD_CACHE"
725 need_shmem=yes
726 for ac_option do
727 case "$ac_option" in
728 --help|-help|-h)
729 show_help
731 --prefix=*)
732 _prefix=$(echo $ac_option | cut -d '=' -f 2)
734 --bindir=*)
735 _bindir=$(echo $ac_option | cut -d '=' -f 2)
737 --datadir=*)
738 _datadir=$(echo $ac_option | cut -d '=' -f 2)
740 --mandir=*)
741 _mandir=$(echo $ac_option | cut -d '=' -f 2)
743 --confdir=*)
744 _confdir=$(echo $ac_option | cut -d '=' -f 2)
746 --libdir=*)
747 _libdir=$(echo $ac_option | cut -d '=' -f 2)
749 --codecsdir=*)
750 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
752 --localedir=*)
753 _localedir=$(echo $ac_option | cut -d '=' -f 2)
756 --with-install=*)
757 _install=$(echo $ac_option | cut -d '=' -f 2 )
760 --with-sdl-config=*)
761 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
763 --with-dvdnav-config=*)
764 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
766 --with-dvdread-config=*)
767 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
770 --extra-cflags=*)
771 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
773 --extra-ldflags=*)
774 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
776 --extra-libs=*)
777 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
779 --extra-libs-mplayer=*)
780 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
783 --target=*)
784 _target=$(echo $ac_option | cut -d '=' -f 2)
786 --cc=*)
787 _cc=$(echo $ac_option | cut -d '=' -f 2)
789 --host-cc=*)
790 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
792 --as=*)
793 _as=$(echo $ac_option | cut -d '=' -f 2)
795 --nm=*)
796 _nm=$(echo $ac_option | cut -d '=' -f 2)
798 --yasm=*)
799 _yasm=$(echo $ac_option | cut -d '=' -f 2)
801 --ar=*)
802 _ar=$(echo $ac_option | cut -d '=' -f 2)
804 --pkg-config=*)
805 _pkg_config=$(echo $ac_option | cut -d '=' -f 2)
807 --ranlib=*)
808 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
810 --windres=*)
811 _windres=$(echo $ac_option | cut -d '=' -f 2)
813 --charset=*)
814 _charset=$(echo $ac_option | cut -d '=' -f 2)
816 --language-doc=*)
817 language_doc=$(echo $ac_option | cut -d '=' -f 2)
819 --language-man=*)
820 language_man=$(echo $ac_option | cut -d '=' -f 2)
822 --language-msg=*)
823 language_msg=$(echo $ac_option | cut -d '=' -f 2)
825 --language=*)
826 language=$(echo $ac_option | cut -d '=' -f 2)
829 --enable-static)
830 _ld_static='-static'
832 --disable-static)
833 _ld_static=''
835 --enable-profile)
836 _profile='-p'
838 --disable-profile)
839 _profile=
841 --enable-debug)
842 _debug='-g'
844 --enable-debug=*)
845 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
847 --disable-debug)
848 _debug=
850 --enable-translation) _translation=yes ;;
851 --disable-translation) _translation=no ;;
852 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
853 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
854 --enable-cross-compile) _cross_compile=yes ;;
855 --disable-cross-compile) _cross_compile=no ;;
856 --enable-mplayer) _mplayer=yes ;;
857 --disable-mplayer) _mplayer=no ;;
858 --enable-x11) _x11=yes ;;
859 --disable-x11) _x11=no ;;
860 --enable-xshape) _xshape=yes ;;
861 --disable-xshape) _xshape=no ;;
862 --enable-xss) _xss=yes ;;
863 --disable-xss) _xss=no ;;
864 --enable-xv) _xv=yes ;;
865 --disable-xv) _xv=no ;;
866 --enable-vdpau) _vdpau=yes ;;
867 --disable-vdpau) _vdpau=no ;;
868 --enable-sdl) _sdl=yes ;;
869 --disable-sdl) _sdl=no ;;
870 --enable-kva) _kva=yes ;;
871 --disable-kva) _kva=no ;;
872 --enable-direct3d) _direct3d=yes ;;
873 --disable-direct3d) _direct3d=no ;;
874 --enable-directx) _directx=yes ;;
875 --disable-directx) _directx=no ;;
876 --enable-win32waveout) _win32waveout=yes ;;
877 --disable-win32waveout) _win32waveout=no ;;
878 --enable-nas) _nas=yes ;;
879 --disable-nas) _nas=no ;;
880 --enable-png) _png=yes ;;
881 --disable-png) _png=no ;;
882 --enable-mng) _mng=yes ;;
883 --disable-mng) _mng=no ;;
884 --enable-jpeg) _jpeg=yes ;;
885 --disable-jpeg) _jpeg=no ;;
886 --enable-pnm) _pnm=yes ;;
887 --disable-pnm) _pnm=no ;;
888 --enable-md5sum) _md5sum=yes ;;
889 --disable-md5sum) _md5sum=no ;;
890 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
891 --disable-yuv4mpeg) _yuv4mpeg=no ;;
892 --enable-gif) _gif=yes ;;
893 --disable-gif) _gif=no ;;
894 --enable-gl) _gl=yes ;;
895 --disable-gl) _gl=no ;;
896 --enable-ggi) _ggi=yes ;;
897 --disable-ggi) _ggi=no ;;
898 --enable-ggiwmh) _ggiwmh=yes ;;
899 --disable-ggiwmh) _ggiwmh=no ;;
900 --enable-aa) _aa=yes ;;
901 --disable-aa) _aa=no ;;
902 --enable-caca) _caca=yes ;;
903 --disable-caca) _caca=no ;;
904 --enable-svga) _svga=yes ;;
905 --disable-svga) _svga=no ;;
906 --enable-vesa) _vesa=yes ;;
907 --disable-vesa) _vesa=no ;;
908 --enable-fbdev) _fbdev=yes ;;
909 --disable-fbdev) _fbdev=no ;;
910 --enable-dvb) _dvb=yes ;;
911 --disable-dvb) _dvb=no ;;
912 --enable-dxr3) _dxr3=yes ;;
913 --disable-dxr3) _dxr3=no ;;
914 --enable-ivtv) _ivtv=yes ;;
915 --disable-ivtv) _ivtv=no ;;
916 --enable-v4l2) _v4l2=yes ;;
917 --disable-v4l2) _v4l2=no ;;
918 --enable-iconv) _iconv=yes ;;
919 --disable-iconv) _iconv=no ;;
920 --enable-langinfo) _langinfo=yes ;;
921 --disable-langinfo) _langinfo=no ;;
922 --enable-rtc) _rtc=yes ;;
923 --disable-rtc) _rtc=no ;;
924 --enable-libdv) _libdv=yes ;;
925 --disable-libdv) _libdv=no ;;
926 --enable-ossaudio) _ossaudio=yes ;;
927 --disable-ossaudio) _ossaudio=no ;;
928 --enable-arts) _arts=yes ;;
929 --disable-arts) _arts=no ;;
930 --enable-esd) _esd=yes ;;
931 --disable-esd) _esd=no ;;
932 --enable-rsound) _rsound=yes ;;
933 --disable-rsound) _rsound=no ;;
934 --enable-pulse) _pulse=yes ;;
935 --disable-pulse) _pulse=no ;;
936 --enable-jack) _jack=yes ;;
937 --disable-jack) _jack=no ;;
938 --enable-openal) _openal=yes ;;
939 --disable-openal) _openal=no ;;
940 --enable-kai) _kai=yes ;;
941 --disable-kai) _kai=no ;;
942 --enable-dart) _dart=yes ;;
943 --disable-dart) _dart=no ;;
944 --enable-mad) _mad=yes ;;
945 --disable-mad) _mad=no ;;
946 --enable-libcdio) _libcdio=yes ;;
947 --disable-libcdio) _libcdio=no ;;
948 --enable-libvorbis) _libvorbis=yes ;;
949 --disable-libvorbis) _libvorbis=no ;;
950 --enable-speex) _speex=yes ;;
951 --disable-speex) _speex=no ;;
952 --enable-tremor) _tremor=yes ;;
953 --disable-tremor) _tremor=no ;;
954 --enable-theora) _theora=yes ;;
955 --disable-theora) _theora=no ;;
956 --enable-mpg123) _mpg123=yes ;;
957 --disable-mpg123) _mpg123=no ;;
958 --enable-liba52) _liba52=yes ;;
959 --disable-liba52) _liba52=no ;;
960 --enable-libdca) _libdca=yes ;;
961 --disable-libdca) _libdca=no ;;
962 --enable-musepack) _musepack=yes ;;
963 --disable-musepack) _musepack=no ;;
964 --enable-faad) _faad=yes ;;
965 --disable-faad) _faad=no ;;
966 --enable-ladspa) _ladspa=yes ;;
967 --disable-ladspa) _ladspa=no ;;
968 --enable-libbs2b) _libbs2b=yes ;;
969 --disable-libbs2b) _libbs2b=no ;;
970 --enable-xmms) _xmms=yes ;;
971 --disable-xmms) _xmms=no ;;
972 --enable-vcd) _vcd=yes ;;
973 --disable-vcd) _vcd=no ;;
974 --enable-bluray) _bluray=yes ;;
975 --disable-bluray) _bluray=no ;;
976 --enable-dvdread) _dvdread=yes ;;
977 --disable-dvdread) _dvdread=no ;;
978 --enable-dvdread-internal) _dvdread_internal=yes ;;
979 --disable-dvdread-internal) _dvdread_internal=no ;;
980 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
981 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
982 --enable-dvdnav) _dvdnav=yes ;;
983 --disable-dvdnav) _dvdnav=no ;;
984 --enable-xanim) _xanim=yes ;;
985 --disable-xanim) _xanim=no ;;
986 --enable-real) _real=yes ;;
987 --disable-real) _real=no ;;
988 --enable-live) _live=yes ;;
989 --disable-live) _live=no ;;
990 --enable-nemesi) _nemesi=yes ;;
991 --disable-nemesi) _nemesi=no ;;
992 --enable-xinerama) _xinerama=yes ;;
993 --disable-xinerama) _xinerama=no ;;
994 --enable-mga) _mga=yes ;;
995 --disable-mga) _mga=no ;;
996 --enable-xmga) _xmga=yes ;;
997 --disable-xmga) _xmga=no ;;
998 --enable-vm) _vm=yes ;;
999 --disable-vm) _vm=no ;;
1000 --enable-xf86keysym) _xf86keysym=yes ;;
1001 --disable-xf86keysym) _xf86keysym=no ;;
1002 --enable-sunaudio) _sunaudio=yes ;;
1003 --disable-sunaudio) _sunaudio=no ;;
1004 --enable-sgiaudio) _sgiaudio=yes ;;
1005 --disable-sgiaudio) _sgiaudio=no ;;
1006 --enable-alsa) _alsa=yes ;;
1007 --disable-alsa) _alsa=no ;;
1008 --enable-tv) _tv=yes ;;
1009 --disable-tv) _tv=no ;;
1010 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1011 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1012 --enable-tv-v4l1) _tv_v4l1=yes ;;
1013 --disable-tv-v4l1) _tv_v4l1=no ;;
1014 --enable-tv-v4l2) _tv_v4l2=yes ;;
1015 --disable-tv-v4l2) _tv_v4l2=no ;;
1016 --enable-tv-dshow) _tv_dshow=yes ;;
1017 --disable-tv-dshow) _tv_dshow=no ;;
1018 --enable-radio) _radio=yes ;;
1019 --enable-radio-capture) _radio_capture=yes ;;
1020 --disable-radio-capture) _radio_capture=no ;;
1021 --disable-radio) _radio=no ;;
1022 --enable-radio-v4l) _radio_v4l=yes ;;
1023 --disable-radio-v4l) _radio_v4l=no ;;
1024 --enable-radio-v4l2) _radio_v4l2=yes ;;
1025 --disable-radio-v4l2) _radio_v4l2=no ;;
1026 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1027 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1028 --enable-pvr) _pvr=yes ;;
1029 --disable-pvr) _pvr=no ;;
1030 --enable-fastmemcpy) _fastmemcpy=yes ;;
1031 --disable-fastmemcpy) _fastmemcpy=no ;;
1032 --enable-networking) networking=yes ;;
1033 --disable-networking) networking=no ;;
1034 --enable-winsock2_h) _winsock2_h=yes ;;
1035 --disable-winsock2_h) _winsock2_h=no ;;
1036 --enable-smb) _smb=yes ;;
1037 --disable-smb) _smb=no ;;
1038 --enable-joystick) _joystick=yes ;;
1039 --disable-joystick) _joystick=no ;;
1040 --enable-xvid) _xvid=yes ;;
1041 --disable-xvid) _xvid=no ;;
1042 --enable-libnut) _libnut=yes ;;
1043 --disable-libnut) _libnut=no ;;
1044 --enable-libav) ffmpeg=yes ;;
1045 --ffmpeg-source-dir=*)
1046 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1048 --enable-lirc) _lirc=yes ;;
1049 --disable-lirc) _lirc=no ;;
1050 --enable-lircc) _lircc=yes ;;
1051 --disable-lircc) _lircc=no ;;
1052 --enable-apple-remote) _apple_remote=yes ;;
1053 --disable-apple-remote) _apple_remote=no ;;
1054 --enable-apple-ir) _apple_ir=yes ;;
1055 --disable-apple-ir) _apple_ir=no ;;
1056 --enable-termcap) _termcap=yes ;;
1057 --disable-termcap) _termcap=no ;;
1058 --enable-termios) _termios=yes ;;
1059 --disable-termios) _termios=no ;;
1060 --enable-3dfx) _3dfx=yes ;;
1061 --disable-3dfx) _3dfx=no ;;
1062 --enable-s3fb) _s3fb=yes ;;
1063 --disable-s3fb) _s3fb=no ;;
1064 --enable-wii) _wii=yes ;;
1065 --disable-wii) _wii=no ;;
1066 --enable-tdfxfb) _tdfxfb=yes ;;
1067 --disable-tdfxfb) _tdfxfb=no ;;
1068 --disable-tdfxvid) _tdfxvid=no ;;
1069 --enable-tdfxvid) _tdfxvid=yes ;;
1070 --disable-xvr100) _xvr100=no ;;
1071 --enable-xvr100) _xvr100=yes ;;
1072 --disable-tga) _tga=no ;;
1073 --enable-tga) _tga=yes ;;
1074 --enable-directfb) _directfb=yes ;;
1075 --disable-directfb) _directfb=no ;;
1076 --enable-bl) _bl=yes ;;
1077 --disable-bl) _bl=no ;;
1078 --enable-shm) _shm=yes ;;
1079 --disable-shm) _shm=no ;;
1080 --enable-select) _select=yes ;;
1081 --disable-select) _select=no ;;
1082 --enable-cdparanoia) _cdparanoia=yes ;;
1083 --disable-cdparanoia) _cdparanoia=no ;;
1084 --enable-cddb) _cddb=yes ;;
1085 --disable-cddb) _cddb=no ;;
1086 --enable-big-endian) _big_endian=yes ;;
1087 --disable-big-endian) _big_endian=no ;;
1088 --enable-bitmap-font) _bitmap_font=yes ;;
1089 --disable-bitmap-font) _bitmap_font=no ;;
1090 --enable-freetype) _freetype=yes ;;
1091 --disable-freetype) _freetype=no ;;
1092 --enable-fontconfig) _fontconfig=yes ;;
1093 --disable-fontconfig) _fontconfig=no ;;
1094 --enable-unrarexec) _unrar_exec=yes ;;
1095 --disable-unrarexec) _unrar_exec=no ;;
1096 --enable-ftp) _ftp=yes ;;
1097 --disable-ftp) _ftp=no ;;
1098 --enable-vstream) _vstream=yes ;;
1099 --disable-vstream) _vstream=no ;;
1100 --enable-pthreads) _pthreads=yes ;;
1101 --disable-pthreads) _pthreads=no ;;
1102 --enable-w32threads) _w32threads=yes ;;
1103 --disable-w32threads) _w32threads=no ;;
1104 --enable-libass) _ass=yes ;;
1105 --disable-libass) _ass=no ;;
1106 --enable-rpath) _rpath=yes ;;
1107 --disable-rpath) _rpath=no ;;
1108 --enable-libpostproc) libpostproc=yes ;;
1109 --disable-libpostproc) libpostproc=no ;;
1111 --enable-fribidi) _fribidi=yes ;;
1112 --disable-fribidi) _fribidi=no ;;
1114 --enable-enca) _enca=yes ;;
1115 --disable-enca) _enca=no ;;
1117 --enable-inet6) _inet6=yes ;;
1118 --disable-inet6) _inet6=no ;;
1120 --enable-gethostbyname2) _gethostbyname2=yes ;;
1121 --disable-gethostbyname2) _gethostbyname2=no ;;
1123 --enable-dga1) _dga1=yes ;;
1124 --disable-dga1) _dga1=no ;;
1125 --enable-dga2) _dga2=yes ;;
1126 --disable-dga2) _dga2=no ;;
1128 --enable-qtx) _qtx=yes ;;
1129 --disable-qtx) _qtx=no ;;
1131 --enable-coreaudio) _coreaudio=yes ;;
1132 --disable-coreaudio) _coreaudio=no ;;
1133 --enable-corevideo) _corevideo=yes ;;
1134 --disable-corevideo) _corevideo=no ;;
1135 --enable-cocoa) _cocoa=yes ;;
1136 --disable-cocoa) _cocoa=no ;;
1137 --enable-quartz) _quartz=yes ;;
1138 --disable-quartz) _quartz=no ;;
1139 --enable-macosx-finder) _macosx_finder=yes ;;
1140 --disable-macosx-finder) _macosx_finder=no ;;
1141 --enable-macosx-bundle) _macosx_bundle=yes ;;
1142 --disable-macosx-bundle) _macosx_bundle=no ;;
1144 --enable-sortsub) _sortsub=yes ;;
1145 --disable-sortsub) _sortsub=no ;;
1147 --enable-crash-debug) _crash_debug=yes ;;
1148 --disable-crash-debug) _crash_debug=no ;;
1149 --enable-sighandler) _sighandler=yes ;;
1150 --disable-sighandler) _sighandler=no ;;
1151 --enable-win32dll) _win32dll=yes ;;
1152 --disable-win32dll) _win32dll=no ;;
1154 --enable-sse) _sse=yes ;;
1155 --disable-sse) _sse=no ;;
1156 --enable-sse2) _sse2=yes ;;
1157 --disable-sse2) _sse2=no ;;
1158 --enable-ssse3) _ssse3=yes ;;
1159 --disable-ssse3) _ssse3=no ;;
1160 --enable-mmxext) _mmxext=yes ;;
1161 --disable-mmxext) _mmxext=no ;;
1162 --enable-3dnow) _3dnow=yes ;;
1163 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1164 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1165 --disable-3dnowext) _3dnowext=no ;;
1166 --enable-cmov) _cmov=yes ;;
1167 --disable-cmov) _cmov=no ;;
1168 --enable-fast-cmov) _fast_cmov=yes ;;
1169 --disable-fast-cmov) _fast_cmov=no ;;
1170 --enable-fast-clz) _fast_clz=yes ;;
1171 --disable-fast-clz) _fast_clz=no ;;
1172 --enable-altivec) _altivec=yes ;;
1173 --disable-altivec) _altivec=no ;;
1174 --enable-armv5te) _armv5te=yes ;;
1175 --disable-armv5te) _armv5te=no ;;
1176 --enable-armv6) _armv6=yes ;;
1177 --disable-armv6) _armv6=no ;;
1178 --enable-armv6t2) _armv6t2=yes ;;
1179 --disable-armv6t2) _armv6t2=no ;;
1180 --enable-armvfp) _armvfp=yes ;;
1181 --disable-armvfp) _armvfp=no ;;
1182 --enable-neon) neon=yes ;;
1183 --disable-neon) neon=no ;;
1184 --enable-iwmmxt) _iwmmxt=yes ;;
1185 --disable-iwmmxt) _iwmmxt=no ;;
1186 --enable-mmx) _mmx=yes ;;
1187 --disable-mmx) # 3Dnow! and MMX2 require MMX
1188 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1191 echo "Unknown parameter: $ac_option" >&2
1192 exit 1
1195 esac
1196 done
1198 # Atmos: moved this here, to be correct, if --prefix is specified
1199 test -z "$_bindir" && _bindir="$_prefix/bin"
1200 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1201 test -z "$_mandir" && _mandir="$_prefix/share/man"
1202 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1203 test -z "$_libdir" && _libdir="$_prefix/lib"
1204 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1206 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1207 test "$tmpdir" && break
1208 done
1210 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1211 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1213 TMPLOG="config.log"
1215 rm -f "$TMPLOG"
1216 echo Parameters configure was run with: > "$TMPLOG"
1217 if test -n "$CFLAGS" ; then
1218 echo ${_echo_n} CFLAGS="'$CFLAGS' ${_echo_c}" >> "$TMPLOG"
1220 if test -n "$PKG_CONFIG_PATH" ; then
1221 echo ${_echo_n} PKG_CONFIG_PATH="'$PKG_CONFIG_PATH' ${_echo_c}" >> "$TMPLOG"
1223 echo ./configure $configuration >> "$TMPLOG"
1224 echo >> "$TMPLOG"
1227 echocheck "cross compilation"
1228 echores $_cross_compile
1230 if test $_cross_compile = yes; then
1231 tmp_run() {
1232 return 0
1234 test "$_host_cc" || _host_cc=cc
1237 tool_prefix=""
1239 if test $_cross_compile = yes ; then
1240 # Usually cross-compiler prefixes match with the target triplet
1241 test -n "$_target" && tool_prefix="$_target"-
1244 test "$_ranlib" = auto && _ranlib="$tool_prefix"ranlib
1245 test "$_windres" = auto && _windres="$tool_prefix"windres
1246 test "$_ar" = auto && _ar="$tool_prefix"ar
1247 test "$_yasm" = auto && _yasm="$tool_prefix"yasm
1248 test "$_pkg_config" = auto && _pkg_config="$tool_prefix"pkg-config
1250 if test "$_cc" = auto ; then
1251 if test -n "$tool_prefix" ; then
1252 _cc="$tool_prefix"gcc
1253 else
1254 _cc=cc
1258 # Determine our OS name and CPU architecture
1259 if test -z "$_target" ; then
1260 # OS name
1261 system_name=$(uname -s 2>&1)
1262 case "$system_name" in
1263 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1265 Haiku)
1266 system_name=BeOS
1268 IRIX*)
1269 system_name=IRIX
1271 GNU/kFreeBSD)
1272 system_name=FreeBSD
1274 HP-UX*)
1275 system_name=HP-UX
1277 [cC][yY][gG][wW][iI][nN]*)
1278 system_name=CYGWIN
1280 MINGW32*)
1281 system_name=MINGW32
1283 OS/2*)
1284 system_name=OS/2
1287 system_name="$system_name-UNKNOWN"
1289 esac
1292 # host's CPU/instruction set
1293 host_arch=$(uname -p 2>&1)
1294 case "$host_arch" in
1295 i386|sparc|ppc|alpha|arm|mips|vax)
1297 powerpc) # Darwin returns 'powerpc'
1298 host_arch=ppc
1300 *) # uname -p on Linux returns 'unknown' for the processor type,
1301 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1303 # Maybe uname -m (machine hardware name) returns something we
1304 # recognize.
1306 # x86/x86pc is used by QNX
1307 case "$(uname -m 2>&1)" in
1308 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 ;;
1309 ia64) host_arch=ia64 ;;
1310 macppc|ppc) host_arch=ppc ;;
1311 ppc64) host_arch=ppc64 ;;
1312 alpha) host_arch=alpha ;;
1313 sparc) host_arch=sparc ;;
1314 sparc64) host_arch=sparc64 ;;
1315 parisc*|hppa*|9000*) host_arch=hppa ;;
1316 arm*|zaurus|cats) host_arch=arm ;;
1317 sh3|sh4|sh4a) host_arch=sh ;;
1318 s390) host_arch=s390 ;;
1319 s390x) host_arch=s390x ;;
1320 *mips*) host_arch=mips ;;
1321 vax) host_arch=vax ;;
1322 xtensa*) host_arch=xtensa ;;
1323 *) host_arch=UNKNOWN ;;
1324 esac
1326 esac
1327 else # if test -z "$_target"
1328 for i in 2 3; do
1329 system_name=$(echo $_target | cut -d '-' -f $i)
1330 case "$(echo $system_name | tr A-Z a-z)" in
1331 linux) system_name=Linux ;;
1332 freebsd) system_name=FreeBSD ;;
1333 gnu/kfreebsd) system_name=FreeBSD ;;
1334 netbsd) system_name=NetBSD ;;
1335 bsd/os) system_name=BSD/OS ;;
1336 openbsd) system_name=OpenBSD ;;
1337 dragonfly) system_name=DragonFly ;;
1338 sunos) system_name=SunOS ;;
1339 qnx) system_name=QNX ;;
1340 morphos) system_name=MorphOS ;;
1341 amigaos) system_name=AmigaOS ;;
1342 mingw32*) system_name=MINGW32 ;;
1343 *) continue ;;
1344 esac
1345 break
1346 done
1347 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1348 host_arch=$(echo $_target | cut -d '-' -f 1)
1349 if test $(echo $host_arch) != "x86_64" ; then
1350 host_arch=$(echo $host_arch | tr '_' '-')
1354 extra_cflags="-I. $extra_cflags"
1355 _timer=timer-linux.c
1356 _getch=getch2.c
1357 if freebsd ; then
1358 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1359 extra_cflags="$extra_cflags -I/usr/local/include"
1362 if netbsd || dragonfly ; then
1363 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1364 extra_cflags="$extra_cflags -I/usr/pkg/include"
1367 if darwin; then
1368 extra_cflags="-mdynamic-no-pic $extra_cflags"
1369 if test "$(basename $_cc)" != "clang" ; then
1370 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1372 _timer=timer-darwin.c
1375 if aix ; then
1376 extra_ldflags="$extra_ldflags -lC"
1379 if irix ; then
1380 _ranlib='ar -r'
1381 elif linux ; then
1382 _ranlib='true'
1385 if win32 ; then
1386 _exesuf=".exe"
1387 extra_cflags="$extra_cflags -fno-common"
1388 # -lwinmm is always needed for osdep/timer-win2.c
1389 extra_ldflags="$extra_ldflags -lwinmm"
1390 _pe_executable=yes
1391 _timer=timer-win2.c
1392 _priority=yes
1393 def_dos_paths="#define HAVE_DOS_PATHS 1"
1394 def_priority="#define CONFIG_PRIORITY 1"
1397 if mingw32 ; then
1398 _getch=getch2-win.c
1399 need_shmem=no
1400 extra_cflags="$extra_cflags -D__USE_MINGW_ANSI_STDIO=1"
1403 if amigaos ; then
1404 _select=no
1405 _sighandler=no
1406 _stream_cache=no
1407 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1408 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1411 if qnx ; then
1412 extra_ldflags="$extra_ldflags -lph"
1415 if os2 ; then
1416 _exesuf=".exe"
1417 _getch=getch2-os2.c
1418 need_shmem=no
1419 _priority=yes
1420 def_dos_paths="#define HAVE_DOS_PATHS 1"
1421 def_priority="#define CONFIG_PRIORITY 1"
1424 TMPC="$mplayer_tmpdir/tmp.c"
1425 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1426 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1427 TMPH="$mplayer_tmpdir/tmp.h"
1428 TMPS="$mplayer_tmpdir/tmp.S"
1430 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1431 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1435 # Checking CC version...
1436 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1437 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1438 echocheck "$_cc version"
1439 cc_vendor=intel
1440 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1441 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1442 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1443 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1444 # TODO verify older icc/ecc compatibility
1445 case $cc_version in
1447 cc_version="v. ?.??, bad"
1448 cc_fail=yes
1450 10.1|11.0|11.1)
1451 cc_version="$cc_version, ok"
1454 cc_version="$cc_version, bad"
1455 cc_fail=yes
1457 esac
1458 echores "$cc_version"
1459 else
1460 for _cc in "$_cc" gcc cc ; do
1461 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1462 if test "$cc_name_tmp" = "gcc"; then
1463 cc_name=$cc_name_tmp
1464 echocheck "$_cc version"
1465 cc_vendor=gnu
1466 cc_version=$($_cc -dumpversion 2>&1)
1467 case $cc_version in
1468 2.96*)
1469 cc_fail=yes
1472 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1473 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1474 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1476 esac
1477 echores "$cc_version"
1478 break
1480 if $_cc -v 2>&1 | grep -q "clang"; then
1481 echocheck "$_cc version"
1482 cc_vendor=clang
1483 cc_version=$($_cc -dumpversion 2>&1)
1484 res_comment="experimental support only"
1485 echores "clang $cc_version"
1486 break
1488 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1489 if test "$cc_name_tmp" = "Sun C"; then
1490 echocheck "$_cc version"
1491 cc_vendor=sun
1492 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1493 res_comment="experimental support only"
1494 echores "Sun C $cc_version"
1495 break
1497 done
1498 fi # icc
1499 test "$cc_fail" = yes && die "unsupported compiler version"
1501 echocheck "working compiler"
1502 cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
1503 echo "yes"
1505 if test -z "$_target" && x86 ; then
1506 cat > $TMPC << EOF
1507 int main(void) {
1508 int test[(int)sizeof(char *)-7];
1509 return 0;
1512 cc_check && host_arch=x86_64 || host_arch=i386
1515 echocheck "host cc"
1516 test "$_host_cc" || _host_cc=$_cc
1517 echores $_host_cc
1519 echo "Detected operating system: $system_name"
1520 echo "Detected host architecture: $host_arch"
1522 # ---
1524 # now that we know what compiler should be used for compilation, try to find
1525 # out which assembler is used by the $_cc compiler
1526 if test "$_as" = auto ; then
1527 _as=$($_cc -print-prog-name=as)
1528 test -z "$_as" && _as=as
1531 if test "$_nm" = auto ; then
1532 _nm=$($_cc -print-prog-name=nm)
1533 test -z "$_nm" && _nm=nm
1536 # XXX: this should be ok..
1537 _cpuinfo="echo"
1539 if test "$_runtime_cpudetection" = no ; then
1541 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1542 # FIXME: Remove the cygwin check once AMD CPUs are supported
1543 if test -r /proc/cpuinfo && ! cygwin; then
1544 # Linux with /proc mounted, extract CPU information from it
1545 _cpuinfo="cat /proc/cpuinfo"
1546 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1547 # FreeBSD with Linux emulation /proc mounted,
1548 # extract CPU information from it
1549 # Don't use it on x86 though, it never reports 3Dnow
1550 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1551 elif darwin && ! x86 ; then
1552 # use hostinfo on Darwin
1553 _cpuinfo="hostinfo"
1554 elif aix; then
1555 # use 'lsattr' on AIX
1556 _cpuinfo="lsattr -E -l proc0 -a type"
1557 elif x86; then
1558 # all other OSes try to extract CPU information from a small helper
1559 # program cpuinfo instead
1560 $_cc -o cpuinfo$_exesuf cpuinfo.c
1561 _cpuinfo="./cpuinfo$_exesuf"
1564 if x86 ; then
1565 # gather more CPU information
1566 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1567 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1568 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1569 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1570 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1572 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1574 pparam=$(echo $exts | sed -e s/xmm/sse/ -e s/kni/sse/)
1575 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1576 pparam=$(echo $pparam | sed -e 's/sse/sse mmxext/')
1578 for ext in $pparam ; do
1579 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1580 done
1582 echocheck "CPU vendor"
1583 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1585 echocheck "CPU type"
1586 echores "$pname"
1589 fi # test "$_runtime_cpudetection" = no
1591 if x86 && test "$_runtime_cpudetection" = no ; then
1592 extcheck() {
1593 if test "$1" = kernel_check ; then
1594 echocheck "kernel support of $2"
1595 cat > $TMPC <<EOF
1596 #include <stdlib.h>
1597 #include <signal.h>
1598 static void catch(int sig) { exit(1); }
1599 int main(void) {
1600 signal(SIGILL, catch);
1601 __asm__ volatile ("$3":::"memory"); return 0;
1605 if cc_check && tmp_run ; then
1606 eval _$2=yes
1607 echores "yes"
1608 _optimizing="$_optimizing $2"
1609 return 0
1610 else
1611 eval _$2=no
1612 echores "failed"
1613 echo "It seems that your kernel does not correctly support $2."
1614 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1615 return 1
1618 return 0
1621 extcheck $_mmx "mmx" "emms"
1622 extcheck $_mmxext "mmxext" "sfence"
1623 extcheck $_3dnow "3dnow" "femms"
1624 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1625 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1626 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1627 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1628 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1630 if test "$_gcc3_ext" != ""; then
1631 # if we had to disable sse/sse2 because the active kernel does not
1632 # support this instruction set extension, we also have to tell
1633 # gcc3 to not generate sse/sse2 instructions for normal C code
1634 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1640 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1641 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1642 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1643 subarch_all='X86_32 X86_64 PPC64'
1644 case "$host_arch" in
1645 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1646 arch='x86'
1647 subarch='x86_32'
1648 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1649 iproc=486
1650 proc=i486
1653 if test "$_runtime_cpudetection" = no ; then
1654 case "$pvendor" in
1655 AuthenticAMD)
1656 case "$pfamily" in
1657 3) proc=i386 iproc=386 ;;
1658 4) proc=i486 iproc=486 ;;
1659 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1660 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1661 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1662 proc=k6-3
1663 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1664 proc=geode
1665 elif test "$pmodel" -ge 8; then
1666 proc=k6-2
1667 elif test "$pmodel" -ge 6; then
1668 proc=k6
1669 else
1670 proc=i586
1673 6) iproc=686
1674 # It's a bit difficult to determine the correct type of Family 6
1675 # AMD CPUs just from their signature. Instead, we check directly
1676 # whether it supports SSE.
1677 if test "$_sse" = yes; then
1678 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1679 proc=athlon-xp
1680 else
1681 # Again, gcc treats athlon and athlon-tbird similarly.
1682 proc=athlon
1685 15) iproc=686
1686 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1687 # caught and remedied in the optimization tests below.
1688 proc=k8
1691 *) proc=amdfam10 iproc=686
1692 test $_fast_clz = "auto" && _fast_clz=yes
1694 esac
1696 GenuineIntel)
1697 case "$pfamily" in
1698 3) proc=i386 iproc=386 ;;
1699 4) proc=i486 iproc=486 ;;
1700 5) iproc=586
1701 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1702 proc=pentium-mmx # 4 is desktop, 8 is mobile
1703 else
1704 proc=i586
1707 6) iproc=686
1708 if test "$pmodel" -ge 15; then
1709 proc=core2
1710 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1711 proc=pentium-m
1712 elif test "$pmodel" -ge 7; then
1713 proc=pentium3
1714 elif test "$pmodel" -ge 3; then
1715 proc=pentium2
1716 else
1717 proc=i686
1719 test $_fast_clz = "auto" && _fast_clz=yes
1721 15) iproc=686
1722 # A nocona in 32-bit mode has no more capabilities than a prescott.
1723 if test "$pmodel" -ge 3; then
1724 proc=prescott
1725 else
1726 proc=pentium4
1727 test $_fast_clz = "auto" && _fast_clz=yes
1729 test $_fast_cmov = "auto" && _fast_cmov=no
1731 *) proc=prescott iproc=686 ;;
1732 esac
1734 CentaurHauls)
1735 case "$pfamily" in
1736 5) iproc=586
1737 if test "$pmodel" -ge 8; then
1738 proc=winchip2
1739 elif test "$pmodel" -ge 4; then
1740 proc=winchip-c6
1741 else
1742 proc=i586
1745 6) iproc=686
1746 if test "$pmodel" -ge 9; then
1747 proc=c3-2
1748 else
1749 proc=c3
1750 iproc=586
1753 *) proc=i686 iproc=i686 ;;
1754 esac
1756 unknown)
1757 case "$pfamily" in
1758 3) proc=i386 iproc=386 ;;
1759 4) proc=i486 iproc=486 ;;
1760 *) proc=i586 iproc=586 ;;
1761 esac
1764 proc=i586 iproc=586 ;;
1765 esac
1766 test $_fast_clz = "auto" && _fast_clz=no
1767 fi # test "$_runtime_cpudetection" = no
1770 # check that gcc supports our CPU, if not, fall back to earlier ones
1771 # LGB: check -mcpu and -march swithing step by step with enabling
1772 # to fall back till 386.
1774 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1776 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1777 cpuopt=-mtune
1778 else
1779 cpuopt=-mcpu
1782 echocheck "GCC & CPU optimization abilities"
1783 if test "$_runtime_cpudetection" = no ; then
1784 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1785 cflag_check -march=native && proc=native
1787 if test "$proc" = "amdfam10"; then
1788 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1790 if test "$proc" = "k8"; then
1791 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1793 if test "$proc" = "athlon-xp"; then
1794 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1796 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1797 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1799 if test "$proc" = "k6" || test "$proc" = "c3"; then
1800 if ! cflag_check -march=$proc $cpuopt=$proc; then
1801 if cflag_check -march=i586 $cpuopt=i686; then
1802 proc=i586-i686
1803 else
1804 proc=i586
1808 if test "$proc" = "prescott" ; then
1809 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1811 if test "$proc" = "core2" ; then
1812 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1814 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
1815 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1817 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1818 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1820 if test "$proc" = "i586"; then
1821 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1823 if test "$proc" = "i486" ; then
1824 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1826 if test "$proc" = "i386" ; then
1827 cflag_check -march=$proc $cpuopt=$proc || proc=error
1829 if test "$proc" = "error" ; then
1830 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1831 _mcpu=""
1832 _march=""
1833 _optimizing=""
1834 elif test "$proc" = "i586-i686"; then
1835 _march="-march=i586"
1836 _mcpu="$cpuopt=i686"
1837 _optimizing="$proc"
1838 else
1839 _march="-march=$proc"
1840 _mcpu="$cpuopt=$proc"
1841 _optimizing="$proc"
1843 else # if test "$_runtime_cpudetection" = no
1844 _mcpu="$cpuopt=generic"
1845 # at least i486 required, for bswap instruction
1846 _march="-march=i486"
1847 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1848 cflag_check $_mcpu || _mcpu=""
1849 cflag_check $_march $_mcpu || _march=""
1852 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1853 ## autodetected mcpu/march parameters
1854 if test "$_target" ; then
1855 # TODO: it may be a good idea to check GCC and fall back in all cases
1856 if test "$host_arch" = "i586-i686"; then
1857 _march="-march=i586"
1858 _mcpu="$cpuopt=i686"
1859 else
1860 _march="-march=$host_arch"
1861 _mcpu="$cpuopt=$host_arch"
1864 proc="$host_arch"
1866 case "$proc" in
1867 i386) iproc=386 ;;
1868 i486) iproc=486 ;;
1869 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1870 i686|athlon*|pentium*) iproc=686 ;;
1871 *) iproc=586 ;;
1872 esac
1875 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1876 _fast_cmov="yes"
1877 else
1878 _fast_cmov="no"
1880 test $_fast_clz = "auto" && _fast_clz=yes
1882 echores "$proc"
1885 ia64)
1886 arch='ia64'
1887 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1888 iproc='ia64'
1891 x86_64|amd64)
1892 arch='x86'
1893 subarch='x86_64'
1894 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1895 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1896 iproc='x86_64'
1898 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1899 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1900 cpuopt=-mtune
1901 else
1902 cpuopt=-mcpu
1904 if test "$_runtime_cpudetection" = no ; then
1905 case "$pvendor" in
1906 AuthenticAMD)
1907 case "$pfamily" in
1908 15) proc=k8
1909 test $_fast_clz = "auto" && _fast_clz=no
1911 *) proc=amdfam10;;
1912 esac
1914 GenuineIntel)
1915 case "$pfamily" in
1916 6) proc=core2;;
1918 # 64-bit prescotts exist, but as far as GCC is concerned they
1919 # have the same capabilities as a nocona.
1920 proc=nocona
1921 test $_fast_cmov = "auto" && _fast_cmov=no
1922 test $_fast_clz = "auto" && _fast_clz=no
1924 esac
1927 proc=error;;
1928 esac
1929 fi # test "$_runtime_cpudetection" = no
1931 echocheck "GCC & CPU optimization abilities"
1932 # This is a stripped-down version of the i386 fallback.
1933 if test "$_runtime_cpudetection" = no ; then
1934 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1935 cflag_check -march=native && proc=native
1937 # --- AMD processors ---
1938 if test "$proc" = "amdfam10"; then
1939 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1941 if test "$proc" = "k8"; then
1942 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1944 # This will fail if gcc version < 3.3, which is ok because earlier
1945 # versions don't really support 64-bit on amd64.
1946 # Is this a valid assumption? -Corey
1947 if test "$proc" = "athlon-xp"; then
1948 cflag_check -march=$proc $cpuopt=$proc || proc=error
1950 # --- Intel processors ---
1951 if test "$proc" = "core2"; then
1952 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1954 if test "$proc" = "x86-64"; then
1955 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1957 if test "$proc" = "nocona"; then
1958 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1960 if test "$proc" = "pentium4"; then
1961 cflag_check -march=$proc $cpuopt=$proc || proc=error
1964 _march="-march=$proc"
1965 _mcpu="$cpuopt=$proc"
1966 if test "$proc" = "error" ; then
1967 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1968 _mcpu=""
1969 _march=""
1971 else # if test "$_runtime_cpudetection" = no
1972 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1973 _march="-march=x86-64"
1974 _mcpu="$cpuopt=generic"
1975 cflag_check $_mcpu || _mcpu="x86-64"
1976 cflag_check $_mcpu || _mcpu=""
1977 cflag_check $_march $_mcpu || _march=""
1980 _optimizing="$proc"
1981 test $_fast_cmov = "auto" && _fast_cmov=yes
1982 test $_fast_clz = "auto" && _fast_clz=yes
1984 echores "$proc"
1987 sparc|sparc64)
1988 arch='sparc'
1989 iproc='sparc'
1990 if test "$host_arch" = "sparc64" ; then
1991 _vis='yes'
1992 proc='ultrasparc'
1993 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1994 elif sunos ; then
1995 echocheck "CPU type"
1996 karch=$(uname -m)
1997 case "$(echo $karch)" in
1998 sun4) proc=v7 ;;
1999 sun4c) proc=v7 ;;
2000 sun4d) proc=v8 ;;
2001 sun4m) proc=v8 ;;
2002 sun4u) proc=ultrasparc _vis='yes' ;;
2003 sun4v) proc=v9 ;;
2004 *) proc=v8 ;;
2005 esac
2006 echores "$proc"
2007 else
2008 proc=v8
2010 _mcpu="-mcpu=$proc"
2011 _optimizing="$proc"
2014 arm*)
2015 arch='arm'
2016 iproc='arm'
2019 avr32)
2020 arch='avr32'
2021 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2022 iproc='avr32'
2023 test $_fast_clz = "auto" && _fast_clz=yes
2026 sh|sh4)
2027 arch='sh4'
2028 iproc='sh4'
2031 ppc|ppc64|powerpc|powerpc64)
2032 arch='ppc'
2033 def_dcbzl='#define HAVE_DCBZL 0'
2034 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2035 iproc='ppc'
2037 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2038 subarch='ppc64'
2039 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2041 echocheck "CPU type"
2042 case $system_name in
2043 Linux)
2044 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2045 if test -n "$($_cpuinfo | grep altivec)"; then
2046 test $_altivec = auto && _altivec=yes
2049 Darwin)
2050 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2051 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2052 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2053 test $_altivec = auto && _altivec=yes
2056 NetBSD)
2057 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2058 case $cc_version in
2059 2*|3.0*|3.1*|3.2*|3.3*)
2062 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2063 test $_altivec = auto && _altivec=yes
2066 esac
2068 AIX)
2069 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2071 esac
2072 if test "$_altivec" = yes; then
2073 echores "$proc altivec"
2074 else
2075 _altivec=no
2076 echores "$proc"
2079 echocheck "GCC & CPU optimization abilities"
2081 if test -n "$proc"; then
2082 case "$proc" in
2083 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2084 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2085 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2086 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2087 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2088 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2089 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2090 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2091 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2092 *) ;;
2093 esac
2094 # gcc 3.1(.1) and up supports 7400 and 7450
2095 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2096 case "$proc" in
2097 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2098 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2099 *) ;;
2100 esac
2102 # gcc 3.2 and up supports 970
2103 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2104 case "$proc" in
2105 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2106 def_dcbzl='#define HAVE_DCBZL 1' ;;
2107 *) ;;
2108 esac
2110 # gcc 3.3 and up supports POWER4
2111 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2112 case "$proc" in
2113 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2114 *) ;;
2115 esac
2117 # gcc 3.4 and up supports 440*
2118 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2119 case "$proc" in
2120 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2121 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2122 *) ;;
2123 esac
2125 # gcc 4.0 and up supports POWER5
2126 if test "$_cc_major" -ge "4"; then
2127 case "$proc" in
2128 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2129 *) ;;
2130 esac
2134 if test -n "$_mcpu"; then
2135 _optimizing=$(echo $_mcpu | cut -c 8-)
2136 echores "$_optimizing"
2137 else
2138 echores "none"
2141 test $_fast_clz = "auto" && _fast_clz=yes
2145 alpha*)
2146 arch='alpha'
2147 iproc='alpha'
2148 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2150 echocheck "CPU type"
2151 cat > $TMPC << EOF
2152 int main(void) {
2153 unsigned long ver, mask;
2154 __asm__ ("implver %0" : "=r" (ver));
2155 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2156 printf("%ld-%x\n", ver, ~mask);
2157 return 0;
2160 $_cc -o "$TMPEXE" "$TMPC"
2161 case $("$TMPEXE") in
2163 0-0) proc="ev4"; _mvi="0";;
2164 1-0) proc="ev5"; _mvi="0";;
2165 1-1) proc="ev56"; _mvi="0";;
2166 1-101) proc="pca56"; _mvi="1";;
2167 2-303) proc="ev6"; _mvi="1";;
2168 2-307) proc="ev67"; _mvi="1";;
2169 2-1307) proc="ev68"; _mvi="1";;
2170 esac
2171 echores "$proc"
2173 echocheck "GCC & CPU optimization abilities"
2174 if test "$proc" = "ev68" ; then
2175 cc_check -mcpu=$proc || proc=ev67
2177 if test "$proc" = "ev67" ; then
2178 cc_check -mcpu=$proc || proc=ev6
2180 _mcpu="-mcpu=$proc"
2181 echores "$proc"
2183 test $_fast_clz = "auto" && _fast_clz=yes
2185 _optimizing="$proc"
2188 mips*)
2189 arch='mips'
2190 iproc='mips'
2192 if irix ; then
2193 echocheck "CPU type"
2194 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2195 case "$(echo $proc)" in
2196 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2197 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2198 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2199 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2200 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2201 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2202 esac
2203 # gcc < 3.x does not support -mtune.
2204 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2205 _mcpu=''
2207 echores "$proc"
2210 test $_fast_clz = "auto" && _fast_clz=yes
2214 hppa)
2215 arch='pa_risc'
2216 iproc='PA-RISC'
2219 s390)
2220 arch='s390'
2221 iproc='390'
2224 s390x)
2225 arch='s390x'
2226 iproc='390x'
2229 vax)
2230 arch='vax'
2231 iproc='vax'
2234 xtensa)
2235 arch='xtensa'
2236 iproc='xtensa'
2239 generic)
2240 arch='generic'
2244 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2245 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2246 die "unsupported architecture $host_arch"
2248 esac # case "$host_arch" in
2250 if test "$_runtime_cpudetection" = yes ; then
2251 if x86 ; then
2252 test "$_cmov" != no && _cmov=yes
2253 x86_32 && _cmov=no
2254 test "$_mmx" != no && _mmx=yes
2255 test "$_3dnow" != no && _3dnow=yes
2256 test "$_3dnowext" != no && _3dnowext=yes
2257 test "$_mmxext" != no && _mmxext=yes
2258 test "$_sse" != no && _sse=yes
2259 test "$_sse2" != no && _sse2=yes
2260 test "$_ssse3" != no && _ssse3=yes
2262 if ppc; then
2263 _altivec=yes
2268 # endian testing
2269 echocheck "byte order"
2270 if test "$_big_endian" = auto ; then
2271 cat > $TMPC <<EOF
2272 short ascii_name[] = {
2273 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2274 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2275 int main(void) { return (long)ascii_name; }
2277 if cc_check ; then
2278 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2279 _big_endian=yes
2280 else
2281 _big_endian=no
2283 else
2284 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2287 if test "$_big_endian" = yes ; then
2288 _byte_order='big-endian'
2289 def_words_endian='#define WORDS_BIGENDIAN 1'
2290 def_bigendian='#define HAVE_BIGENDIAN 1'
2291 else
2292 _byte_order='little-endian'
2293 def_words_endian='#undef WORDS_BIGENDIAN'
2294 def_bigendian='#define HAVE_BIGENDIAN 0'
2296 echores "$_byte_order"
2299 echocheck "extern symbol prefix"
2300 cat > $TMPC << EOF
2301 int ff_extern;
2303 cc_check -c || die "Symbol mangling check failed."
2304 sym=$($_nm -P -g $TMPEXE)
2305 extern_prefix=${sym%%ff_extern*}
2306 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2307 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2308 echores $extern_prefix
2311 echocheck "assembler support of -pipe option"
2312 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2313 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2316 if darwin && test "$cc_vendor" = "gnu" ; then
2317 echocheck "GCC support of -mstackrealign"
2318 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2319 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2320 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2321 # wrong code with this flag, but this can be worked around by adding
2322 # -fno-unit-at-a-time as described in the blog post at
2323 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2324 cat > $TMPC << EOF
2325 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2326 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2328 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2329 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2330 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2331 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2332 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2335 # Checking for CFLAGS
2336 _install_strip="-s"
2337 if test "$_profile" != "" || test "$_debug" != "" ; then
2338 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2339 WARNFLAGS="-W -Wall"
2340 _install_strip=
2341 elif test -z "$CFLAGS" ; then
2342 if test "$cc_vendor" = "intel" ; then
2343 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2344 WARNFLAGS="-wd167 -wd556 -wd144"
2345 elif test "$cc_vendor" = "sun" ; then
2346 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2347 elif test "$cc_vendor" = "clang"; then
2348 CFLAGS="-O2 $_march $_pipe"
2349 WARNFLAGS="-Wall -Wno-switch-enum -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes"
2350 ERRORFLAGS="-Werror=implicit-function-declaration"
2351 elif test "$cc_vendor" != "gnu" ; then
2352 CFLAGS="-O2 $_march $_mcpu $_pipe"
2353 else
2354 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2355 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2356 ERRORFLAGS="-Werror-implicit-function-declaration"
2357 extra_ldflags="$extra_ldflags -ffast-math"
2359 else
2360 warn_cflags=yes
2363 if test "$cc_vendor" = "gnu" ; then
2364 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2365 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2366 # that's the only variable specific to C now, and this option is not valid
2367 # for C++.
2368 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2369 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2370 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2371 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2372 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2373 else
2374 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2377 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2378 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2381 if test -n "$LDFLAGS" ; then
2382 extra_ldflags="$extra_ldflags $LDFLAGS"
2383 warn_cflags=yes
2384 elif test "$cc_vendor" = "intel" ; then
2385 extra_ldflags="$extra_ldflags -i-static"
2387 if test -n "$CPPFLAGS" ; then
2388 extra_cflags="$extra_cflags $CPPFLAGS"
2389 warn_cflags=yes
2394 if x86_32 ; then
2395 # Checking assembler (_as) compatibility...
2396 # Added workaround for older as that reads from stdin by default - atmos
2397 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2398 echocheck "assembler ($_as $as_version)"
2400 _pref_as_version='2.9.1'
2401 echo 'nop' > $TMPS
2402 if test "$_mmx" = yes ; then
2403 echo 'emms' >> $TMPS
2405 if test "$_3dnow" = yes ; then
2406 _pref_as_version='2.10.1'
2407 echo 'femms' >> $TMPS
2409 if test "$_3dnowext" = yes ; then
2410 _pref_as_version='2.10.1'
2411 echo 'pswapd %mm0, %mm0' >> $TMPS
2413 if test "$_mmxext" = yes ; then
2414 _pref_as_version='2.10.1'
2415 echo 'movntq %mm0, (%eax)' >> $TMPS
2417 if test "$_sse" = yes ; then
2418 _pref_as_version='2.10.1'
2419 echo 'xorps %xmm0, %xmm0' >> $TMPS
2421 #if test "$_sse2" = yes ; then
2422 # _pref_as_version='2.11'
2423 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2425 if test "$_cmov" = yes ; then
2426 _pref_as_version='2.10.1'
2427 echo 'cmovb %eax, %ebx' >> $TMPS
2429 if test "$_ssse3" = yes ; then
2430 _pref_as_version='2.16.92'
2431 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2433 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2435 if test "$as_verc_fail" != yes ; then
2436 echores "ok"
2437 else
2438 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2439 echores "failed"
2440 die "obsolete binutils version"
2443 fi #if x86_32
2446 echocheck "PIC"
2447 pic=no
2448 cat > $TMPC << EOF
2449 int main(void) {
2450 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2451 #error PIC not enabled
2452 #endif
2453 return 0;
2456 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2457 echores $pic
2460 if x86 ; then
2462 echocheck ".align is a power of two"
2463 if test "$_asmalign_pot" = auto ; then
2464 _asmalign_pot=no
2465 inline_asm_check '".align 3"' && _asmalign_pot=yes
2467 if test "$_asmalign_pot" = "yes" ; then
2468 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2469 else
2470 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2472 echores $_asmalign_pot
2475 echocheck "ebx availability"
2476 ebx_available=no
2477 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2478 cat > $TMPC << EOF
2479 int main(void) {
2480 int x;
2481 __asm__ volatile(
2482 "xor %0, %0"
2483 :"=b"(x)
2484 // just adding ebx to clobber list seems unreliable with some
2485 // compilers, e.g. Haiku's gcc 2.95
2487 // and the above check does not work for OSX 64 bit...
2488 __asm__ volatile("":::"%ebx");
2489 return 0;
2492 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2493 echores $ebx_available
2496 echocheck "yasm"
2497 if test -z "$YASMFLAGS" ; then
2498 if darwin ; then
2499 x86_64 && objformat="macho64" || objformat="macho"
2500 elif win32 ; then
2501 objformat="win32"
2502 else
2503 objformat="elf"
2505 # currently tested for Linux x86, x86_64
2506 YASMFLAGS="-f $objformat"
2507 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2508 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2509 case "$objformat" in
2510 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2511 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2512 esac
2513 else
2514 warn_cflags=yes
2517 echo "pabsw xmm0, xmm0" > $TMPS
2518 yasm_check || _yasm=""
2519 if test $_yasm ; then
2520 def_yasm='#define HAVE_YASM 1'
2521 have_yasm="yes"
2522 echores "$_yasm"
2523 else
2524 def_yasm='#define HAVE_YASM 0'
2525 have_yasm="no"
2526 echores "no"
2529 echocheck "bswap"
2530 def_bswap='#define HAVE_BSWAP 0'
2531 echo 'bswap %eax' > $TMPS
2532 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2533 echores "$bswap"
2534 fi #if x86
2537 #FIXME: This should happen before the check for CFLAGS..
2538 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2539 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2541 # check if AltiVec is supported by the compiler, and how to enable it
2542 echocheck "GCC AltiVec flags"
2543 if $(cflag_check -maltivec -mabi=altivec) ; then
2544 _altivec_gcc_flags="-maltivec -mabi=altivec"
2545 # check if <altivec.h> should be included
2546 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2547 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2548 inc_altivec_h='#include <altivec.h>'
2549 else
2550 if $(cflag_check -faltivec) ; then
2551 _altivec_gcc_flags="-faltivec"
2552 else
2553 _altivec=no
2554 _altivec_gcc_flags="none, AltiVec disabled"
2558 echores "$_altivec_gcc_flags"
2560 # check if the compiler supports braces for vector declarations
2561 cat > $TMPC << EOF
2562 $inc_altivec_h
2563 int main(void) { (vector int) {1}; return 0; }
2565 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2567 # Disable runtime cpudetection if we cannot generate AltiVec code or
2568 # AltiVec is disabled by the user.
2569 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2570 && _runtime_cpudetection=no
2572 # Show that we are optimizing for AltiVec (if enabled and supported).
2573 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2574 && _optimizing="$_optimizing altivec"
2576 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2577 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2580 if ppc ; then
2581 def_xform_asm='#define HAVE_XFORM_ASM 0'
2582 xform_asm=no
2583 echocheck "XFORM ASM support"
2584 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2585 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2586 echores "$xform_asm"
2589 if arm ; then
2590 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2591 if test $_armv5te = "auto" ; then
2592 _armv5te=no
2593 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2595 echores "$_armv5te"
2597 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2599 echocheck "ARMv6 (SIMD instructions)"
2600 if test $_armv6 = "auto" ; then
2601 _armv6=no
2602 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2604 echores "$_armv6"
2606 echocheck "ARMv6t2 (SIMD instructions)"
2607 if test $_armv6t2 = "auto" ; then
2608 _armv6t2=no
2609 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2611 echores "$_armv6t2"
2613 echocheck "ARM VFP"
2614 if test $_armvfp = "auto" ; then
2615 _armvfp=no
2616 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2618 echores "$_armvfp"
2620 echocheck "ARM NEON"
2621 if test $neon = "auto" ; then
2622 neon=no
2623 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2625 echores "$neon"
2627 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2628 if test $_iwmmxt = "auto" ; then
2629 _iwmmxt=no
2630 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2632 echores "$_iwmmxt"
2635 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2636 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2637 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2638 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2639 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2640 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2641 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2642 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2643 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2644 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2645 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2646 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2647 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2648 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2649 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2650 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2651 test "$neon" = yes && cpuexts="NEON $cpuexts"
2652 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2653 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2654 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2656 # Checking kernel version...
2657 if x86_32 && linux ; then
2658 _k_verc_problem=no
2659 kernel_version=$(uname -r 2>&1)
2660 echocheck "$system_name kernel version"
2661 case "$kernel_version" in
2662 '') kernel_version="?.??"; _k_verc_fail=yes;;
2663 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2664 _k_verc_problem=yes;;
2665 esac
2666 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2667 _k_verc_fail=yes
2669 if test "$_k_verc_fail" ; then
2670 echores "$kernel_version, fail"
2671 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2672 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2673 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2674 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2675 echo "2.2.x you must upgrade it to get SSE support!"
2676 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2677 else
2678 echores "$kernel_version, ok"
2682 ######################
2683 # MAIN TESTS GO HERE #
2684 ######################
2687 echocheck "-lposix"
2688 if cflag_check -lposix ; then
2689 extra_ldflags="$extra_ldflags -lposix"
2690 echores "yes"
2691 else
2692 echores "no"
2695 echocheck "-lm"
2696 if cflag_check -lm ; then
2697 _ld_lm="-lm"
2698 echores "yes"
2699 else
2700 _ld_lm=""
2701 echores "no"
2705 echocheck "langinfo"
2706 if test "$_langinfo" = auto ; then
2707 _langinfo=no
2708 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2710 if test "$_langinfo" = yes ; then
2711 def_langinfo='#define HAVE_LANGINFO 1'
2712 else
2713 def_langinfo='#undef HAVE_LANGINFO'
2715 echores "$_langinfo"
2718 echocheck "translation support"
2719 if test "$_translation" = yes; then
2720 def_translation="#define CONFIG_TRANSLATION 1"
2721 else
2722 def_translation="#undef CONFIG_TRANSLATION"
2724 echores "$_translation"
2726 echocheck "language"
2727 # Set preferred languages, "all" uses English as main language.
2728 test -z "$language" && language=$LINGUAS
2729 test -z "$language_doc" && language_doc=$language
2730 test -z "$language_man" && language_man=$language
2731 test -z "$language_msg" && language_msg=$language
2732 test -z "$language_msg" && language_msg="all"
2733 language_doc=$(echo $language_doc | tr , " ")
2734 language_man=$(echo $language_man | tr , " ")
2735 language_msg=$(echo $language_msg | tr , " ")
2737 test "$language_doc" = "all" && language_doc=$doc_lang_all
2738 test "$language_man" = "all" && language_man=$man_lang_all
2739 test "$language_msg" = "all" && language_msg=$msg_lang_all
2741 if test "$_translation" != yes ; then
2742 language_msg=""
2745 # Prune non-existing translations from language lists.
2746 # Set message translation to the first available language.
2747 # Fall back on English.
2748 for lang in $language_doc ; do
2749 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2750 done
2751 language_doc=$tmp_language_doc
2752 test -z "$language_doc" && language_doc=en
2754 for lang in $language_man ; do
2755 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2756 done
2757 language_man=$tmp_language_man
2758 test -z "$language_man" && language_man=en
2760 for lang in $language_msg ; do
2761 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2762 done
2763 language_msg=$tmp_language_msg
2765 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2768 echocheck "enable sighandler"
2769 if test "$_sighandler" = yes ; then
2770 def_sighandler='#define CONFIG_SIGHANDLER 1'
2771 else
2772 def_sighandler='#undef CONFIG_SIGHANDLER'
2774 echores "$_sighandler"
2776 echocheck "runtime cpudetection"
2777 if test "$_runtime_cpudetection" = yes ; then
2778 _optimizing="Runtime CPU-Detection enabled"
2779 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2780 else
2781 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2783 echores "$_runtime_cpudetection"
2786 echocheck "restrict keyword"
2787 for restrict_keyword in restrict __restrict __restrict__ ; do
2788 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2789 if cc_check; then
2790 def_restrict_keyword=$restrict_keyword
2791 break;
2793 done
2794 if [ -n "$def_restrict_keyword" ]; then
2795 echores "$def_restrict_keyword"
2796 else
2797 echores "none"
2799 # Avoid infinite recursion loop ("#define restrict restrict")
2800 if [ "$def_restrict_keyword" != "restrict" ]; then
2801 def_restrict_keyword="#define restrict $def_restrict_keyword"
2802 else
2803 def_restrict_keyword=""
2807 echocheck "__builtin_expect"
2808 # GCC branch prediction hint
2809 cat > $TMPC << EOF
2810 static int foo(int a) {
2811 a = __builtin_expect(a, 10);
2812 return a == 10 ? 0 : 1;
2814 int main(void) { return foo(10) && foo(0); }
2816 _builtin_expect=no
2817 cc_check && _builtin_expect=yes
2818 if test "$_builtin_expect" = yes ; then
2819 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2820 else
2821 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2823 echores "$_builtin_expect"
2826 echocheck "kstat"
2827 _kstat=no
2828 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2829 if test "$_kstat" = yes ; then
2830 def_kstat="#define HAVE_LIBKSTAT 1"
2831 extra_ldflags="$extra_ldflags -lkstat"
2832 else
2833 def_kstat="#undef HAVE_LIBKSTAT"
2835 echores "$_kstat"
2838 echocheck "posix4"
2839 # required for nanosleep on some systems
2840 _posix4=no
2841 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2842 if test "$_posix4" = yes ; then
2843 extra_ldflags="$extra_ldflags -lposix4"
2845 echores "$_posix4"
2847 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2848 echocheck $func
2849 eval _$func=no
2850 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2851 if eval test "x\$_$func" = "xyes"; then
2852 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2853 echores yes
2854 else
2855 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2856 echores no
2858 done
2861 echocheck "mkstemp"
2862 _mkstemp=no
2863 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2864 if test "$_mkstemp" = yes ; then
2865 def_mkstemp='#define HAVE_MKSTEMP 1'
2866 else
2867 def_mkstemp='#define HAVE_MKSTEMP 0'
2869 echores "$_mkstemp"
2872 echocheck "nanosleep"
2873 _nanosleep=no
2874 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2875 if test "$_nanosleep" = yes ; then
2876 def_nanosleep='#define HAVE_NANOSLEEP 1'
2877 else
2878 def_nanosleep='#undef HAVE_NANOSLEEP'
2880 echores "$_nanosleep"
2883 echocheck "socklib"
2884 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2885 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2886 cat > $TMPC << EOF
2887 #include <netdb.h>
2888 #include <sys/socket.h>
2889 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2891 _socklib=no
2892 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2893 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2894 done
2895 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2896 if test $_winsock2_h = auto ; then
2897 _winsock2_h=no
2898 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2900 test "$_ld_sock" && res_comment="using $_ld_sock"
2901 echores "$_socklib"
2904 if test $_winsock2_h = yes ; then
2905 _ld_sock="-lws2_32"
2906 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2907 else
2908 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2912 echocheck "arpa/inet.h"
2913 arpa_inet_h=no
2914 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2915 header_check arpa/inet.h && arpa_inet_h=yes &&
2916 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2917 echores "$arpa_inet_h"
2920 echocheck "inet_pton()"
2921 def_inet_pton='#define HAVE_INET_PTON 0'
2922 inet_pton=no
2923 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2924 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2925 done
2926 if test $inet_pton = yes ; then
2927 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2928 def_inet_pton='#define HAVE_INET_PTON 1'
2930 echores "$inet_pton"
2933 echocheck "inet_aton()"
2934 def_inet_aton='#define HAVE_INET_ATON 0'
2935 inet_aton=no
2936 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2937 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2938 done
2939 if test $inet_aton = yes ; then
2940 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2941 def_inet_aton='#define HAVE_INET_ATON 1'
2943 echores "$inet_aton"
2946 echocheck "socklen_t"
2947 _socklen_t=no
2948 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2949 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2950 done
2951 if test "$_socklen_t" = yes ; then
2952 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2953 else
2954 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2956 echores "$_socklen_t"
2959 echocheck "closesocket()"
2960 _closesocket=no
2961 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2962 if test "$_closesocket" = yes ; then
2963 def_closesocket='#define HAVE_CLOSESOCKET 1'
2964 else
2965 def_closesocket='#define HAVE_CLOSESOCKET 0'
2967 echores "$_closesocket"
2970 echocheck "networking"
2971 test $_winsock2_h = no && test $inet_pton = no &&
2972 test $inet_aton = no && networking=no
2973 if test "$networking" = yes ; then
2974 def_network='#define CONFIG_NETWORK 1'
2975 def_networking='#define CONFIG_NETWORKING 1'
2976 extra_ldflags="$extra_ldflags $_ld_sock"
2977 inputmodules="networking $inputmodules"
2978 else
2979 noinputmodules="networking $noinputmodules"
2980 def_network='#define CONFIG_NETWORK 0'
2981 def_networking='#undef CONFIG_NETWORKING'
2983 echores "$networking"
2986 echocheck "inet6"
2987 if test "$_inet6" = auto ; then
2988 cat > $TMPC << EOF
2989 #include <sys/types.h>
2990 #if !defined(_WIN32)
2991 #include <sys/socket.h>
2992 #include <netinet/in.h>
2993 #else
2994 #include <ws2tcpip.h>
2995 #endif
2996 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2998 _inet6=no
2999 if cc_check $_ld_sock ; then
3000 _inet6=yes
3003 if test "$_inet6" = yes ; then
3004 def_inet6='#define HAVE_AF_INET6 1'
3005 else
3006 def_inet6='#undef HAVE_AF_INET6'
3008 echores "$_inet6"
3011 echocheck "gethostbyname2"
3012 if test "$_gethostbyname2" = auto ; then
3013 cat > $TMPC << EOF
3014 #include <sys/types.h>
3015 #include <sys/socket.h>
3016 #include <netdb.h>
3017 int main(void) { gethostbyname2("", AF_INET); return 0; }
3019 _gethostbyname2=no
3020 if cc_check ; then
3021 _gethostbyname2=yes
3024 if test "$_gethostbyname2" = yes ; then
3025 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3026 else
3027 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3029 echores "$_gethostbyname2"
3032 echocheck "inttypes.h (required)"
3033 _inttypes=no
3034 header_check inttypes.h && _inttypes=yes
3035 echores "$_inttypes"
3037 if test "$_inttypes" = no ; then
3038 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3039 header_check sys/bitypes.h && _inttypes=yes
3040 if test "$_inttypes" = yes ; then
3041 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."
3042 else
3043 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3048 echocheck "malloc.h"
3049 _malloc=no
3050 header_check malloc.h && _malloc=yes
3051 if test "$_malloc" = yes ; then
3052 def_malloc_h='#define HAVE_MALLOC_H 1'
3053 else
3054 def_malloc_h='#define HAVE_MALLOC_H 0'
3056 echores "$_malloc"
3059 echocheck "memalign()"
3060 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3061 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3062 _memalign=no
3063 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3064 if test "$_memalign" = yes ; then
3065 def_memalign='#define HAVE_MEMALIGN 1'
3066 else
3067 def_memalign='#define HAVE_MEMALIGN 0'
3068 def_map_memalign='#define memalign(a, b) malloc(b)'
3069 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3071 echores "$_memalign"
3074 echocheck "posix_memalign()"
3075 posix_memalign=no
3076 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3077 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3078 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3079 echores "$posix_memalign"
3082 echocheck "alloca.h"
3083 _alloca=no
3084 statement_check alloca.h 'alloca(0)' && _alloca=yes
3085 if cc_check ; then
3086 def_alloca_h='#define HAVE_ALLOCA_H 1'
3087 else
3088 def_alloca_h='#undef HAVE_ALLOCA_H'
3090 echores "$_alloca"
3093 echocheck "fastmemcpy"
3094 if test "$_fastmemcpy" = yes ; then
3095 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3096 else
3097 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3099 echores "$_fastmemcpy"
3102 echocheck "mman.h"
3103 _mman=no
3104 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3105 if test "$_mman" = yes ; then
3106 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3107 else
3108 def_mman_h='#undef HAVE_SYS_MMAN_H'
3109 os2 && need_mmap=yes
3111 echores "$_mman"
3113 _mman_has_map_failed=no
3114 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3115 if test "$_mman_has_map_failed" = yes ; then
3116 def_mman_has_map_failed=''
3117 else
3118 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3121 echocheck "dynamic loader"
3122 _dl=no
3123 for _ld_tmp in "" "-ldl"; do
3124 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3125 done
3126 if test "$_dl" = yes ; then
3127 def_dl='#define HAVE_LIBDL 1'
3128 else
3129 def_dl='#undef HAVE_LIBDL'
3131 echores "$_dl"
3134 def_threads='#define HAVE_THREADS 0'
3136 echocheck "pthread"
3137 if linux ; then
3138 THREAD_CFLAGS=-D_REENTRANT
3139 elif freebsd || netbsd || openbsd || bsdos ; then
3140 THREAD_CFLAGS=-D_THREAD_SAFE
3142 if test "$_pthreads" = auto ; then
3143 cat > $TMPC << EOF
3144 #include <pthread.h>
3145 static void *func(void *arg) { return arg; }
3146 int main(void) {
3147 pthread_t tid;
3148 #ifdef PTW32_STATIC_LIB
3149 pthread_win32_process_attach_np();
3150 pthread_win32_thread_attach_np();
3151 #endif
3152 return pthread_create (&tid, 0, func, 0) != 0;
3155 _pthreads=no
3156 if ! hpux ; then
3157 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3158 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3159 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3160 done
3161 if test "$_pthreads" = no && mingw32 ; then
3162 _ld_tmp="-lpthreadGC2 -lws2_32"
3163 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3167 if test "$_pthreads" = yes ; then
3168 test $_ld_pthread && res_comment="using $_ld_pthread"
3169 def_pthreads='#define HAVE_PTHREADS 1'
3170 def_threads='#define HAVE_THREADS 1'
3171 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3172 else
3173 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3174 def_pthreads='#undef HAVE_PTHREADS'
3175 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3176 mingw32 || _win32dll=no
3178 echores "$_pthreads"
3180 if cygwin ; then
3181 if test "$_pthreads" = yes ; then
3182 def_pthread_cache="#define PTHREAD_CACHE 1"
3183 else
3184 _stream_cache=no
3185 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3189 echocheck "w32threads"
3190 if test "$_pthreads" = yes ; then
3191 res_comment="using pthread instead"
3192 _w32threads=no
3194 if test "$_w32threads" = auto ; then
3195 _w32threads=no
3196 mingw32 && _w32threads=yes
3198 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3199 echores "$_w32threads"
3201 echocheck "rpath"
3202 if test "$_rpath" = yes ; then
3203 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3204 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3205 done
3206 extra_ldflags=$tmp
3208 echores "$_rpath"
3210 echocheck "iconv"
3211 if test "$_iconv" = auto ; then
3212 cat > $TMPC << EOF
3213 #include <stdio.h>
3214 #include <unistd.h>
3215 #include <iconv.h>
3216 #define INBUFSIZE 1024
3217 #define OUTBUFSIZE 4096
3219 char inbuffer[INBUFSIZE];
3220 char outbuffer[OUTBUFSIZE];
3222 int main(void) {
3223 size_t numread;
3224 iconv_t icdsc;
3225 char *tocode="UTF-8";
3226 char *fromcode="cp1250";
3227 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3228 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3229 char *iptr=inbuffer;
3230 char *optr=outbuffer;
3231 size_t inleft=numread;
3232 size_t outleft=OUTBUFSIZE;
3233 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3234 != (size_t)(-1)) {
3235 write(1, outbuffer, OUTBUFSIZE - outleft);
3238 if (iconv_close(icdsc) == -1)
3241 return 0;
3244 _iconv=no
3245 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3246 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3247 _iconv=yes && break
3248 done
3249 if test "$_iconv" != yes ; then
3250 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."
3253 if test "$_iconv" = yes ; then
3254 def_iconv='#define CONFIG_ICONV 1'
3255 else
3256 def_iconv='#undef CONFIG_ICONV'
3258 echores "$_iconv"
3261 echocheck "soundcard.h"
3262 _soundcard_h=no
3263 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3264 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3265 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3266 header_check $_soundcard_header && _soundcard_h=yes &&
3267 res_comment="$_soundcard_header" && break
3268 done
3270 if test "$_soundcard_h" = yes ; then
3271 if test $_soundcard_header = "sys/soundcard.h"; then
3272 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3273 else
3274 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3277 echores "$_soundcard_h"
3280 echocheck "sys/videoio.h"
3281 sys_videoio_h=no
3282 def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
3283 header_check sys/videoio.h && sys_videoio_h=yes &&
3284 def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
3285 echores "$sys_videoio_h"
3288 echocheck "sys/dvdio.h"
3289 _dvdio=no
3290 # FreeBSD 8.1 has broken dvdio.h
3291 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3292 if test "$_dvdio" = yes ; then
3293 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3294 else
3295 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3297 echores "$_dvdio"
3300 echocheck "sys/cdio.h"
3301 _cdio=no
3302 # at least OpenSolaris has a broken cdio.h
3303 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3304 if test "$_cdio" = yes ; then
3305 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3306 else
3307 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3309 echores "$_cdio"
3312 echocheck "linux/cdrom.h"
3313 _cdrom=no
3314 header_check linux/cdrom.h && _cdrom=yes
3315 if test "$_cdrom" = yes ; then
3316 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3317 else
3318 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3320 echores "$_cdrom"
3323 echocheck "dvd.h"
3324 _dvd=no
3325 header_check dvd.h && _dvd=yes
3326 if test "$_dvd" = yes ; then
3327 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3328 else
3329 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3331 echores "$_dvd"
3334 if bsdos; then
3335 echocheck "BSDI dvd.h"
3336 _bsdi_dvd=no
3337 header_check dvd.h && _bsdi_dvd=yes
3338 if test "$_bsdi_dvd" = yes ; then
3339 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3340 else
3341 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3343 echores "$_bsdi_dvd"
3344 fi #if bsdos
3347 if hpux; then
3348 # also used by AIX, but AIX does not support VCD and/or libdvdread
3349 echocheck "HP-UX SCSI header"
3350 _hpux_scsi_h=no
3351 header_check sys/scsi.h && _hpux_scsi_h=yes
3352 if test "$_hpux_scsi_h" = yes ; then
3353 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3354 else
3355 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3357 echores "$_hpux_scsi_h"
3358 fi #if hpux
3361 if sunos; then
3362 echocheck "userspace SCSI headers (Solaris)"
3363 _sol_scsi_h=no
3364 header_check sys/scsi/scsi_types.h &&
3365 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3366 _sol_scsi_h=yes
3367 if test "$_sol_scsi_h" = yes ; then
3368 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3369 else
3370 def_sol_scsi_h='#undef SOLARIS_USCSI'
3372 echores "$_sol_scsi_h"
3373 fi #if sunos
3376 echocheck "termcap"
3377 if test "$_termcap" = auto ; then
3378 _termcap=no
3379 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3380 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3381 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3382 done
3384 if test "$_termcap" = yes ; then
3385 def_termcap='#define HAVE_TERMCAP 1'
3386 test $_ld_tmp && res_comment="using $_ld_tmp"
3387 else
3388 def_termcap='#undef HAVE_TERMCAP'
3390 echores "$_termcap"
3393 echocheck "termios"
3394 def_termios='#undef HAVE_TERMIOS'
3395 def_termios_h='#undef HAVE_TERMIOS_H'
3396 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3397 if test "$_termios" = auto ; then
3398 _termios=no
3399 for _termios_header in "termios.h" "sys/termios.h"; do
3400 header_check $_termios_header && _termios=yes &&
3401 res_comment="using $_termios_header" && break
3402 done
3405 if test "$_termios" = yes ; then
3406 def_termios='#define HAVE_TERMIOS 1'
3407 if test "$_termios_header" = "termios.h" ; then
3408 def_termios_h='#define HAVE_TERMIOS_H 1'
3409 else
3410 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3413 echores "$_termios"
3416 echocheck "shm"
3417 if test "$_shm" = auto ; then
3418 _shm=no
3419 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3421 if test "$_shm" = yes ; then
3422 def_shm='#define HAVE_SHM 1'
3423 else
3424 def_shm='#undef HAVE_SHM'
3426 echores "$_shm"
3429 echocheck "strsep()"
3430 _strsep=no
3431 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3432 if test "$_strsep" = yes ; then
3433 def_strsep='#define HAVE_STRSEP 1'
3434 need_strsep=no
3435 else
3436 def_strsep='#undef HAVE_STRSEP'
3437 need_strsep=yes
3439 echores "$_strsep"
3442 echocheck "vsscanf()"
3443 cat > $TMPC << EOF
3444 #define _ISOC99_SOURCE
3445 #include <stdarg.h>
3446 #include <stdio.h>
3447 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3449 _vsscanf=no
3450 cc_check && _vsscanf=yes
3451 if test "$_vsscanf" = yes ; then
3452 def_vsscanf='#define HAVE_VSSCANF 1'
3453 need_vsscanf=no
3454 else
3455 def_vsscanf='#undef HAVE_VSSCANF'
3456 need_vsscanf=yes
3458 echores "$_vsscanf"
3461 echocheck "swab()"
3462 _swab=no
3463 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' ||
3464 statement_check "string.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3465 if test "$_swab" = yes ; then
3466 def_swab='#define HAVE_SWAB 1'
3467 need_swab=no
3468 else
3469 def_swab='#undef HAVE_SWAB'
3470 need_swab=yes
3472 echores "$_swab"
3474 echocheck "POSIX select()"
3475 cat > $TMPC << EOF
3476 #include <stdio.h>
3477 #include <stdlib.h>
3478 #include <sys/types.h>
3479 #include <string.h>
3480 #include <sys/time.h>
3481 #include <unistd.h>
3482 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3484 _posix_select=no
3485 def_posix_select='#undef HAVE_POSIX_SELECT'
3486 #select() of kLIBC (OS/2) supports socket only
3487 ! os2 && cc_check && _posix_select=yes &&
3488 def_posix_select='#define HAVE_POSIX_SELECT 1'
3489 echores "$_posix_select"
3492 echocheck "audio select()"
3493 if test "$_select" = no ; then
3494 def_select='#undef HAVE_AUDIO_SELECT'
3495 elif test "$_select" = yes ; then
3496 def_select='#define HAVE_AUDIO_SELECT 1'
3498 echores "$_select"
3501 echocheck "gettimeofday()"
3502 _gettimeofday=no
3503 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3504 if test "$_gettimeofday" = yes ; then
3505 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3506 need_gettimeofday=no
3507 else
3508 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3509 need_gettimeofday=yes
3511 echores "$_gettimeofday"
3514 echocheck "glob()"
3515 _glob=no
3516 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3517 need_glob=no
3518 if test "$_glob" = yes ; then
3519 def_glob='#define HAVE_GLOB 1'
3520 else
3521 def_glob='#undef HAVE_GLOB'
3522 # HACK! need_glob currently enables compilation of a
3523 # win32-specific glob()-replacement.
3524 # Other OS neither need it nor can they use it (mf:// is disabled for them).
3525 win32 && need_glob=yes
3527 echores "$_glob"
3530 echocheck "setenv()"
3531 _setenv=no
3532 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3533 if test "$_setenv" = yes ; then
3534 def_setenv='#define HAVE_SETENV 1'
3535 need_setenv=no
3536 else
3537 def_setenv='#undef HAVE_SETENV'
3538 need_setenv=yes
3540 echores "$_setenv"
3543 echocheck "setmode()"
3544 _setmode=no
3545 def_setmode='#define HAVE_SETMODE 0'
3546 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3547 echores "$_setmode"
3550 if sunos; then
3551 echocheck "sysi86()"
3552 _sysi86=no
3553 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3554 if test "$_sysi86" = yes ; then
3555 def_sysi86='#define HAVE_SYSI86 1'
3556 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3557 else
3558 def_sysi86='#undef HAVE_SYSI86'
3560 echores "$_sysi86"
3561 fi #if sunos
3564 echocheck "sys/sysinfo.h"
3565 _sys_sysinfo=no
3566 statement_check sys/sysinfo.h 'struct sysinfo s_info; s_info.mem_unit=0; sysinfo(&s_info)' && _sys_sysinfo=yes
3567 if test "$_sys_sysinfo" = yes ; then
3568 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3569 else
3570 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3572 echores "$_sys_sysinfo"
3575 if darwin; then
3577 echocheck "Mac OS X Finder Support"
3578 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3579 if test "$_macosx_finder" = yes ; then
3580 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3581 extra_ldflags="$extra_ldflags -framework Carbon"
3583 echores "$_macosx_finder"
3585 echocheck "Mac OS X Bundle file locations"
3586 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3587 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3588 if test "$_macosx_bundle" = yes ; then
3589 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3590 extra_ldflags="$extra_ldflags -framework Carbon"
3592 echores "$_macosx_bundle"
3594 echocheck "Apple Remote"
3595 if test "$_apple_remote" = auto ; then
3596 _apple_remote=no
3597 cat > $TMPC <<EOF
3598 #include <stdio.h>
3599 #include <IOKit/IOCFPlugIn.h>
3600 int main(void) {
3601 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3602 CFMutableDictionaryRef hidMatchDictionary;
3603 IOReturn ioReturnValue;
3605 // Set up a matching dictionary to search the I/O Registry by class.
3606 // name for all HID class devices
3607 hidMatchDictionary = IOServiceMatching("AppleIRController");
3609 // Now search I/O Registry for matching devices.
3610 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3611 hidMatchDictionary, &hidObjectIterator);
3613 // If search is unsuccessful, return nonzero.
3614 if (ioReturnValue != kIOReturnSuccess ||
3615 !IOIteratorIsValid(hidObjectIterator)) {
3616 return 1;
3618 return 0;
3621 cc_check -framework IOKit && _apple_remote=yes
3623 if test "$_apple_remote" = yes ; then
3624 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3625 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3626 else
3627 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3629 echores "$_apple_remote"
3631 fi #if darwin
3633 if linux; then
3635 echocheck "Apple IR"
3636 if test "$_apple_ir" = auto ; then
3637 _apple_ir=no
3638 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3640 if test "$_apple_ir" = yes ; then
3641 def_apple_ir='#define CONFIG_APPLE_IR 1'
3642 else
3643 def_apple_ir='#undef CONFIG_APPLE_IR'
3645 echores "$_apple_ir"
3646 fi #if linux
3648 echocheck "pkg-config"
3649 if $($_pkg_config --version > /dev/null 2>&1); then
3650 if test "$_ld_static"; then
3651 _pkg_config="$_pkg_config --static"
3653 echores "yes"
3654 else
3655 _pkg_config=false
3656 echores "no"
3660 echocheck "Samba support (libsmbclient)"
3661 if test "$_smb" = yes; then
3662 extra_ldflags="$extra_ldflags -lsmbclient"
3664 if test "$_smb" = auto; then
3665 _smb=no
3666 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3667 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3668 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3669 done
3672 if test "$_smb" = yes; then
3673 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3674 inputmodules="smb $inputmodules"
3675 else
3676 def_smb="#undef CONFIG_LIBSMBCLIENT"
3677 noinputmodules="smb $noinputmodules"
3679 echores "$_smb"
3682 #########
3683 # VIDEO #
3684 #########
3687 echocheck "tdfxfb"
3688 if test "$_tdfxfb" = yes ; then
3689 def_tdfxfb='#define CONFIG_TDFXFB 1'
3690 vomodules="tdfxfb $vomodules"
3691 else
3692 def_tdfxfb='#undef CONFIG_TDFXFB'
3693 novomodules="tdfxfb $novomodules"
3695 echores "$_tdfxfb"
3697 echocheck "s3fb"
3698 if test "$_s3fb" = yes ; then
3699 def_s3fb='#define CONFIG_S3FB 1'
3700 vomodules="s3fb $vomodules"
3701 else
3702 def_s3fb='#undef CONFIG_S3FB'
3703 novomodules="s3fb $novomodules"
3705 echores "$_s3fb"
3707 echocheck "wii"
3708 if test "$_wii" = yes ; then
3709 def_wii='#define CONFIG_WII 1'
3710 vomodules="wii $vomodules"
3711 else
3712 def_wii='#undef CONFIG_WII'
3713 novomodules="wii $novomodules"
3715 echores "$_wii"
3717 echocheck "tdfxvid"
3718 if test "$_tdfxvid" = yes ; then
3719 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3720 vomodules="tdfx_vid $vomodules"
3721 else
3722 def_tdfxvid='#undef CONFIG_TDFX_VID'
3723 novomodules="tdfx_vid $novomodules"
3725 echores "$_tdfxvid"
3727 echocheck "xvr100"
3728 if test "$_xvr100" = auto ; then
3729 cat > $TMPC << EOF
3730 #include <unistd.h>
3731 #include <sys/fbio.h>
3732 #include <sys/visual_io.h>
3733 int main(void) {
3734 struct vis_identifier ident;
3735 struct fbgattr attr;
3736 ioctl(0, VIS_GETIDENTIFIER, &ident);
3737 ioctl(0, FBIOGATTR, &attr);
3738 return 0;
3741 _xvr100=no
3742 cc_check && _xvr100=yes
3744 if test "$_xvr100" = yes ; then
3745 def_xvr100='#define CONFIG_XVR100 1'
3746 vomodules="xvr100 $vomodules"
3747 else
3748 def_tdfxvid='#undef CONFIG_XVR100'
3749 novomodules="xvr100 $novomodules"
3751 echores "$_xvr100"
3753 echocheck "tga"
3754 if test "$_tga" = yes ; then
3755 def_tga='#define CONFIG_TGA 1'
3756 vomodules="tga $vomodules"
3757 else
3758 def_tga='#undef CONFIG_TGA'
3759 novomodules="tga $novomodules"
3761 echores "$_tga"
3764 echocheck "md5sum support"
3765 if test "$_md5sum" = yes; then
3766 def_md5sum="#define CONFIG_MD5SUM 1"
3767 vomodules="md5sum $vomodules"
3768 else
3769 def_md5sum="#undef CONFIG_MD5SUM"
3770 novomodules="md5sum $novomodules"
3772 echores "$_md5sum"
3775 echocheck "yuv4mpeg support"
3776 if test "$_yuv4mpeg" = yes; then
3777 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3778 vomodules="yuv4mpeg $vomodules"
3779 else
3780 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3781 novomodules="yuv4mpeg $novomodules"
3783 echores "$_yuv4mpeg"
3786 echocheck "bl"
3787 if test "$_bl" = yes ; then
3788 def_bl='#define CONFIG_BL 1'
3789 vomodules="bl $vomodules"
3790 else
3791 def_bl='#undef CONFIG_BL'
3792 novomodules="bl $novomodules"
3794 echores "$_bl"
3797 echocheck "DirectFB"
3798 if test "$_directfb" = auto ; then
3799 _directfb=no
3800 cat > $TMPC << EOF
3801 #include <directfb.h>
3802 #include <directfb_version.h>
3803 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3804 #error "DirectFB version too old."
3805 #endif
3806 int main(void) { DirectFBInit(0, 0); return 0; }
3808 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3809 cc_check $_inc_tmp -ldirectfb &&
3810 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3811 done
3813 if test "$_directfb" = yes ; then
3814 def_directfb='#define CONFIG_DIRECTFB 1'
3815 vomodules="directfb dfbmga $vomodules"
3816 libs_mplayer="$libs_mplayer -ldirectfb"
3817 else
3818 def_directfb='#undef CONFIG_DIRECTFB'
3819 novomodules="directfb dfbmga $novomodules"
3821 echores "$_directfb"
3824 echocheck "X11 headers presence"
3825 _x11_headers="no"
3826 res_comment="check if the dev(el) packages are installed"
3827 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3828 if test -f "$I/X11/Xlib.h" ; then
3829 _x11_headers="yes"
3830 res_comment=""
3831 break
3833 done
3834 if test $_cross_compile = no; then
3835 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3836 /usr/include/X11R6 /usr/openwin/include ; do
3837 if test -f "$I/X11/Xlib.h" ; then
3838 extra_cflags="$extra_cflags -I$I"
3839 _x11_headers="yes"
3840 res_comment="using $I"
3841 break
3843 done
3845 echores "$_x11_headers"
3848 echocheck "X11"
3849 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3850 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3851 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3852 -L/usr/lib ; do
3853 if netbsd; then
3854 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3855 else
3856 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3858 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3859 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3860 done
3862 if test "$_x11" = yes ; then
3863 def_x11='#define CONFIG_X11 1'
3864 vomodules="x11 xover $vomodules"
3865 else
3866 _x11=no
3867 def_x11='#undef CONFIG_X11'
3868 novomodules="x11 $novomodules"
3869 res_comment="check if the dev(el) packages are installed"
3871 echores "$_x11"
3873 echocheck "Xss screensaver extensions"
3874 if test "$_xss" = auto ; then
3875 _xss=no
3876 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3878 if test "$_xss" = yes ; then
3879 def_xss='#define CONFIG_XSS 1'
3880 libs_mplayer="$libs_mplayer -lXss"
3881 else
3882 def_xss='#undef CONFIG_XSS'
3884 echores "$_xss"
3886 echocheck "DPMS"
3887 _xdpms3=no
3888 _xdpms4=no
3889 if test "$_x11" = yes ; then
3890 cat > $TMPC <<EOF
3891 #include <X11/Xmd.h>
3892 #include <X11/Xlib.h>
3893 #include <X11/Xutil.h>
3894 #include <X11/Xatom.h>
3895 #include <X11/extensions/dpms.h>
3896 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3898 cc_check -lXdpms && _xdpms3=yes
3899 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3901 if test "$_xdpms4" = yes ; then
3902 def_xdpms='#define CONFIG_XDPMS 1'
3903 res_comment="using Xdpms 4"
3904 echores "yes"
3905 elif test "$_xdpms3" = yes ; then
3906 def_xdpms='#define CONFIG_XDPMS 1'
3907 libs_mplayer="$libs_mplayer -lXdpms"
3908 res_comment="using Xdpms 3"
3909 echores "yes"
3910 else
3911 def_xdpms='#undef CONFIG_XDPMS'
3912 echores "no"
3916 echocheck "Xv"
3917 if test "$_xv" = auto && test "$_x11" = yes ; then
3918 _xv=no
3919 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3922 if test "$_xv" = yes ; then
3923 def_xv='#define CONFIG_XV 1'
3924 libs_mplayer="$libs_mplayer -lXv"
3925 vomodules="xv $vomodules"
3926 else
3927 def_xv='#undef CONFIG_XV'
3928 novomodules="xv $novomodules"
3930 echores "$_xv"
3933 echocheck "VDPAU"
3934 if test "$_vdpau" = auto && test "$_x11" = yes ; then
3935 _vdpau=no
3936 if test "$_dl" = yes ; then
3937 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
3940 if test "$_vdpau" = yes ; then
3941 def_vdpau='#define CONFIG_VDPAU 1'
3942 libs_mplayer="$libs_mplayer -lvdpau"
3943 vomodules="vdpau $vomodules"
3944 else
3945 def_vdpau='#define CONFIG_VDPAU 0'
3946 novomodules="vdpau $novomodules"
3948 echores "$_vdpau"
3951 echocheck "Xinerama"
3952 if test "$_xinerama" = auto && test "$_x11" = yes ; then
3953 _xinerama=no
3954 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3957 if test "$_xinerama" = yes ; then
3958 def_xinerama='#define CONFIG_XINERAMA 1'
3959 libs_mplayer="$libs_mplayer -lXinerama"
3960 else
3961 def_xinerama='#undef CONFIG_XINERAMA'
3963 echores "$_xinerama"
3966 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3967 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3968 # named 'X extensions' or something similar.
3969 # This check may be useful for future mplayer versions (to change resolution)
3970 # If you run into problems, remove '-lXxf86vm'.
3971 echocheck "Xxf86vm"
3972 if test "$_vm" = auto && test "$_x11" = yes ; then
3973 _vm=no
3974 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3976 if test "$_vm" = yes ; then
3977 def_vm='#define CONFIG_XF86VM 1'
3978 libs_mplayer="$libs_mplayer -lXxf86vm"
3979 else
3980 def_vm='#undef CONFIG_XF86VM'
3982 echores "$_vm"
3984 # Check for the presence of special keycodes, like audio control buttons
3985 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3986 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3987 # have these new keycodes.
3988 echocheck "XF86keysym"
3989 if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
3990 _xf86keysym=no
3991 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3993 if test "$_xf86keysym" = yes ; then
3994 def_xf86keysym='#define CONFIG_XF86XK 1'
3995 else
3996 def_xf86keysym='#undef CONFIG_XF86XK'
3998 echores "$_xf86keysym"
4000 echocheck "DGA"
4001 if test "$_dga2" = auto && test "$_x11" = yes ; then
4002 _dga2=no
4003 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4005 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4006 _dga1=no
4007 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4010 _dga=no
4011 def_dga='#undef CONFIG_DGA'
4012 def_dga1='#undef CONFIG_DGA1'
4013 def_dga2='#undef CONFIG_DGA2'
4014 if test "$_dga1" = yes ; then
4015 _dga=yes
4016 def_dga1='#define CONFIG_DGA1 1'
4017 res_comment="using DGA 1.0"
4018 elif test "$_dga2" = yes ; then
4019 _dga=yes
4020 def_dga2='#define CONFIG_DGA2 1'
4021 res_comment="using DGA 2.0"
4023 if test "$_dga" = yes ; then
4024 def_dga='#define CONFIG_DGA 1'
4025 libs_mplayer="$libs_mplayer -lXxf86dga"
4026 vomodules="dga $vomodules"
4027 else
4028 novomodules="dga $novomodules"
4030 echores "$_dga"
4033 echocheck "3dfx"
4034 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4035 def_3dfx='#define CONFIG_3DFX 1'
4036 vomodules="3dfx $vomodules"
4037 else
4038 _3dfx=no
4039 def_3dfx='#undef CONFIG_3DFX'
4040 novomodules="3dfx $novomodules"
4042 echores "$_3dfx"
4045 echocheck "GGI"
4046 if test "$_ggi" = auto ; then
4047 _ggi=no
4048 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4050 if test "$_ggi" = yes ; then
4051 def_ggi='#define CONFIG_GGI 1'
4052 libs_mplayer="$libs_mplayer -lggi"
4053 vomodules="ggi $vomodules"
4054 else
4055 def_ggi='#undef CONFIG_GGI'
4056 novomodules="ggi $novomodules"
4058 echores "$_ggi"
4060 echocheck "GGI extension: libggiwmh"
4061 if test "$_ggiwmh" = auto ; then
4062 _ggiwmh=no
4063 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4065 # needed to get right output on obscure combination
4066 # like --disable-ggi --enable-ggiwmh
4067 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4068 def_ggiwmh='#define CONFIG_GGIWMH 1'
4069 libs_mplayer="$libs_mplayer -lggiwmh"
4070 else
4071 _ggiwmh=no
4072 def_ggiwmh='#undef CONFIG_GGIWMH'
4074 echores "$_ggiwmh"
4077 echocheck "AA"
4078 if test "$_aa" = auto ; then
4079 cat > $TMPC << EOF
4080 #include <aalib.h>
4081 int main(void) {
4082 aa_context *c;
4083 aa_renderparams *p;
4084 aa_init(0, 0, 0);
4085 c = aa_autoinit(&aa_defparams);
4086 p = aa_getrenderparams();
4087 aa_autoinitkbd(c, 0);
4088 return 0; }
4090 _aa=no
4091 for _ld_tmp in "-laa" ; do
4092 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4093 done
4095 if test "$_aa" = yes ; then
4096 def_aa='#define CONFIG_AA 1'
4097 if cygwin ; then
4098 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4100 vomodules="aa $vomodules"
4101 else
4102 def_aa='#undef CONFIG_AA'
4103 novomodules="aa $novomodules"
4105 echores "$_aa"
4108 echocheck "CACA"
4109 if test "$_caca" = auto ; then
4110 _caca=no
4111 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4112 cat > $TMPC << EOF
4113 #include <caca.h>
4114 #ifdef CACA_API_VERSION_1
4115 #include <caca0.h>
4116 #endif
4117 int main(void) { caca_init(); return 0; }
4119 cc_check $(caca-config --libs) && _caca=yes
4122 if test "$_caca" = yes ; then
4123 def_caca='#define CONFIG_CACA 1'
4124 extra_cflags="$extra_cflags $(caca-config --cflags)"
4125 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4126 vomodules="caca $vomodules"
4127 else
4128 def_caca='#undef CONFIG_CACA'
4129 novomodules="caca $novomodules"
4131 echores "$_caca"
4134 echocheck "SVGAlib"
4135 if test "$_svga" = auto ; then
4136 _svga=no
4137 header_check vga.h -lvga $_ld_lm && _svga=yes
4139 if test "$_svga" = yes ; then
4140 def_svga='#define CONFIG_SVGALIB 1'
4141 libs_mplayer="$libs_mplayer -lvga"
4142 vomodules="svga $vomodules"
4143 else
4144 def_svga='#undef CONFIG_SVGALIB'
4145 novomodules="svga $novomodules"
4147 echores "$_svga"
4150 echocheck "FBDev"
4151 if test "$_fbdev" = auto ; then
4152 _fbdev=no
4153 linux && _fbdev=yes
4155 if test "$_fbdev" = yes ; then
4156 def_fbdev='#define CONFIG_FBDEV 1'
4157 vomodules="fbdev $vomodules"
4158 else
4159 def_fbdev='#undef CONFIG_FBDEV'
4160 novomodules="fbdev $novomodules"
4162 echores "$_fbdev"
4166 echocheck "DVB"
4167 if test "$_dvb" = auto ; then
4168 _dvb=no
4169 cat >$TMPC << EOF
4170 #include <poll.h>
4171 #include <sys/ioctl.h>
4172 #include <stdio.h>
4173 #include <time.h>
4174 #include <unistd.h>
4175 #include <linux/dvb/dmx.h>
4176 #include <linux/dvb/frontend.h>
4177 #include <linux/dvb/video.h>
4178 #include <linux/dvb/audio.h>
4179 int main(void) {return 0;}
4181 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4182 cc_check $_inc_tmp && _dvb=yes &&
4183 extra_cflags="$extra_cflags $_inc_tmp" && break
4184 done
4186 echores "$_dvb"
4187 if test "$_dvb" = yes ; then
4188 _dvbin=yes
4189 inputmodules="dvb $inputmodules"
4190 def_dvb='#define CONFIG_DVB 1'
4191 def_dvbin='#define CONFIG_DVBIN 1'
4192 aomodules="mpegpes(dvb) $aomodules"
4193 vomodules="mpegpes(dvb) $vomodules"
4194 else
4195 _dvbin=no
4196 noinputmodules="dvb $noinputmodules"
4197 def_dvb='#undef CONFIG_DVB'
4198 def_dvbin='#undef CONFIG_DVBIN '
4199 aomodules="mpegpes(file) $aomodules"
4200 vomodules="mpegpes(file) $vomodules"
4204 if darwin; then
4206 echocheck "QuickTime"
4207 if test "$quicktime" = auto ; then
4208 quicktime=no
4209 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4211 if test "$quicktime" = yes ; then
4212 extra_ldflags="$extra_ldflags -framework QuickTime"
4213 def_quicktime='#define CONFIG_QUICKTIME 1'
4214 else
4215 def_quicktime='#undef CONFIG_QUICKTIME'
4216 _quartz=no
4218 echores $quicktime
4220 echocheck "Quartz"
4221 if test "$_quartz" = auto ; then
4222 _quartz=no
4223 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4225 if test "$_quartz" = yes ; then
4226 libs_mplayer="$libs_mplayer -framework Carbon"
4227 def_quartz='#define CONFIG_QUARTZ 1'
4228 vomodules="quartz $vomodules"
4229 else
4230 def_quartz='#undef CONFIG_QUARTZ'
4231 novomodules="quartz $novomodules"
4233 echores $_quartz
4235 echocheck "CoreVideo"
4236 if test "$_corevideo" = auto ; then
4237 cat > $TMPC <<EOF
4238 #include <Carbon/Carbon.h>
4239 #include <CoreServices/CoreServices.h>
4240 #include <OpenGL/OpenGL.h>
4241 #include <QuartzCore/CoreVideo.h>
4242 int main(void) { return 0; }
4244 _corevideo=no
4245 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4247 if test "$_corevideo" = yes ; then
4248 vomodules="corevideo $vomodules"
4249 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4250 def_corevideo='#define CONFIG_COREVIDEO 1'
4251 else
4252 novomodules="corevideo $novomodules"
4253 def_corevideo='#undef CONFIG_COREVIDEO'
4255 echores "$_corevideo"
4257 echocheck "Cocoa"
4258 if test "$_gl" = no ; then
4259 # if _gl is not enabled there is no point to add potentially unused linker flags
4260 _cocoa=no
4262 if test "$_cocoa" = auto ; then
4263 cat > $TMPC <<EOF
4264 #include <CoreServices/CoreServices.h>
4265 #include <OpenGL/OpenGL.h>
4266 #include <QuartzCore/CoreVideo.h>
4267 int main(void) { return 0; }
4269 _cocoa=no
4270 cc_check -framework Cocoa -framework QuartzCore -framework OpenGL && _cocoa=yes
4272 if test "$_cocoa" = yes ; then
4273 libs_mplayer="$libs_mplayer -framework Cocoa -framework QuartzCore -framework OpenGL"
4275 echores "$_cocoa"
4277 fi #if darwin
4280 echocheck "PNG support"
4281 if test "$_png" = auto ; then
4282 _png=no
4283 if irix ; then
4284 # Don't check for -lpng on irix since it has its own libpng
4285 # incompatible with the GNU libpng
4286 res_comment="disabled on irix (not GNU libpng)"
4287 else
4288 cat > $TMPC << EOF
4289 #include <stdio.h>
4290 #include <string.h>
4291 #include <png.h>
4292 int main(void) {
4293 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4294 printf("libpng: %s\n", png_libpng_ver);
4295 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4298 cc_check -lpng -lz $_ld_lm && _png=yes
4301 echores "$_png"
4302 if test "$_png" = yes ; then
4303 def_png='#define CONFIG_PNG 1'
4304 extra_ldflags="$extra_ldflags -lpng -lz"
4305 else
4306 def_png='#undef CONFIG_PNG'
4309 echocheck "MNG support"
4310 if test "$_mng" = auto ; then
4311 _mng=no
4312 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4314 echores "$_mng"
4315 if test "$_mng" = yes ; then
4316 def_mng='#define CONFIG_MNG 1'
4317 extra_ldflags="$extra_ldflags -lmng -lz"
4318 else
4319 def_mng='#undef CONFIG_MNG'
4322 echocheck "JPEG support"
4323 if test "$_jpeg" = auto ; then
4324 _jpeg=no
4325 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4327 echores "$_jpeg"
4329 if test "$_jpeg" = yes ; then
4330 def_jpeg='#define CONFIG_JPEG 1'
4331 vomodules="jpeg $vomodules"
4332 extra_ldflags="$extra_ldflags -ljpeg"
4333 else
4334 def_jpeg='#undef CONFIG_JPEG'
4335 novomodules="jpeg $novomodules"
4340 echocheck "PNM support"
4341 if test "$_pnm" = yes; then
4342 def_pnm="#define CONFIG_PNM 1"
4343 vomodules="pnm $vomodules"
4344 else
4345 def_pnm="#undef CONFIG_PNM"
4346 novomodules="pnm $novomodules"
4348 echores "$_pnm"
4352 echocheck "GIF support"
4353 # This is to appease people who want to force gif support.
4354 # If it is forced to yes, then we still do checks to determine
4355 # which gif library to use.
4356 if test "$_gif" = yes ; then
4357 _force_gif=yes
4358 _gif=auto
4361 if test "$_gif" = auto ; then
4362 _gif=no
4363 for _ld_gif in "-lungif" "-lgif" ; do
4364 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4365 done
4368 # If no library was found, and the user wants support forced,
4369 # then we force it on with libgif, as this is the safest
4370 # assumption IMHO. (libungif & libregif both create symbolic
4371 # links to libgif. We also assume that no x11 support is needed,
4372 # because if you are forcing this, then you _should_ know what
4373 # you are doing. [ Besides, package maintainers should never
4374 # have compiled x11 deps into libungif in the first place. ] )
4375 # </rant>
4376 # --Joey
4377 if test "$_force_gif" = yes && test "$_gif" = no ; then
4378 _gif=yes
4379 _ld_gif="-lgif"
4382 if test "$_gif" = yes ; then
4383 def_gif='#define CONFIG_GIF 1'
4384 codecmodules="gif $codecmodules"
4385 vomodules="gif89a $vomodules"
4386 res_comment="old version, some encoding functions disabled"
4387 def_gif_4='#undef CONFIG_GIF_4'
4388 extra_ldflags="$extra_ldflags $_ld_gif"
4390 cat > $TMPC << EOF
4391 #include <signal.h>
4392 #include <stdio.h>
4393 #include <stdlib.h>
4394 #include <gif_lib.h>
4395 static void catch(int sig) { exit(1); }
4396 int main(void) {
4397 signal(SIGSEGV, catch); // catch segfault
4398 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4399 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4400 return 0;
4403 if cc_check "$_ld_gif" ; then
4404 def_gif_4='#define CONFIG_GIF_4 1'
4405 res_comment=""
4407 else
4408 def_gif='#undef CONFIG_GIF'
4409 def_gif_4='#undef CONFIG_GIF_4'
4410 novomodules="gif89a $novomodules"
4411 nocodecmodules="gif $nocodecmodules"
4413 echores "$_gif"
4416 case "$_gif" in yes*)
4417 echocheck "broken giflib workaround"
4418 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4420 cat > $TMPC << EOF
4421 #include <stdio.h>
4422 #include <gif_lib.h>
4423 int main(void) {
4424 GifFileType gif = {.UserData = NULL};
4425 printf("UserData is at address %p\n", gif.UserData);
4426 return 0;
4429 if cc_check "$_ld_gif" ; then
4430 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4431 echores "disabled"
4432 else
4433 echores "enabled"
4436 esac
4439 echocheck "VESA support"
4440 if test "$_vesa" = auto ; then
4441 _vesa=no
4442 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4444 if test "$_vesa" = yes ; then
4445 def_vesa='#define CONFIG_VESA 1'
4446 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4447 vomodules="vesa $vomodules"
4448 else
4449 def_vesa='#undef CONFIG_VESA'
4450 novomodules="vesa $novomodules"
4452 echores "$_vesa"
4454 #################
4455 # VIDEO + AUDIO #
4456 #################
4459 echocheck "SDL"
4460 _inc_tmp=""
4461 _ld_tmp=""
4462 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4463 if test -z "$_sdlconfig" ; then
4464 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4465 _sdlconfig="sdl-config"
4466 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4467 _sdlconfig="sdl11-config"
4468 else
4469 _sdlconfig=false
4472 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4473 cat > $TMPC << EOF
4474 #ifdef CONFIG_SDL_SDL_H
4475 #include <SDL/SDL.h>
4476 #else
4477 #include <SDL.h>
4478 #endif
4479 #ifndef __APPLE__
4480 // we allow SDL hacking our main() only on OSX
4481 #undef main
4482 #endif
4483 int main(int argc, char *argv[]) {
4484 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4485 return 0;
4488 _sdl=no
4489 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4490 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4491 _sdl=yes
4492 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4493 break
4495 done
4496 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4497 res_comment="using $_sdlconfig"
4498 if cygwin ; then
4499 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4500 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4501 elif mingw32 ; then
4502 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4503 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4504 else
4505 _inc_tmp="$($_sdlconfig --cflags)"
4506 _ld_tmp="$($_sdlconfig --libs)"
4508 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4509 _sdl=yes
4510 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4511 # HACK for BeOS/Haiku SDL
4512 _ld_tmp="$_ld_tmp -lstdc++"
4513 _sdl=yes
4517 if test "$_sdl" = yes ; then
4518 def_sdl='#define CONFIG_SDL 1'
4519 extra_cflags="$extra_cflags $_inc_tmp"
4520 libs_mplayer="$libs_mplayer $_ld_tmp"
4521 vomodules="sdl $vomodules"
4522 aomodules="sdl $aomodules"
4523 else
4524 def_sdl='#undef CONFIG_SDL'
4525 novomodules="sdl $novomodules"
4526 noaomodules="sdl $noaomodules"
4528 echores "$_sdl"
4531 # make sure this stays below CoreVideo to avoid issues due to namespace
4532 # conflicts between -lGL and -framework OpenGL
4533 echocheck "OpenGL"
4534 #Note: this test is run even with --enable-gl since we autodetect linker flags
4535 if (test "$_x11" = yes || test "$_sdl" = yes || test "$_cocoa" = yes || win32) && test "$_gl" != no ; then
4536 cat > $TMPC << EOF
4537 #ifdef GL_WIN32
4538 #include <windows.h>
4539 #include <GL/gl.h>
4540 #elif defined(GL_SDL)
4541 #include <GL/gl.h>
4542 #ifdef CONFIG_SDL_SDL_H
4543 #include <SDL/SDL.h>
4544 #else
4545 #include <SDL.h>
4546 #endif
4547 #ifndef __APPLE__
4548 // we allow SDL hacking our main() only on OSX
4549 #undef main
4550 #endif
4551 #else
4552 #include <GL/gl.h>
4553 #include <X11/Xlib.h>
4554 #include <GL/glx.h>
4555 #endif
4556 int main(int argc, char *argv[]) {
4557 #ifdef GL_WIN32
4558 HDC dc;
4559 wglCreateContext(dc);
4560 #elif defined(GL_SDL)
4561 SDL_GL_SwapBuffers();
4562 #else
4563 glXCreateContext(NULL, NULL, NULL, True);
4564 #endif
4565 glFinish();
4566 return 0;
4569 _gl=no
4570 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4571 if cc_check $_ld_tmp $_ld_lm ; then
4572 _gl=yes
4573 _gl_x11=yes
4574 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4575 break
4577 done
4578 if cc_check -DGL_WIN32 -lopengl32 ; then
4579 _gl=yes
4580 _gl_win32=yes
4581 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4583 if test "$_cocoa" = yes ; then
4584 _gl=yes
4585 _gl_cocoa=yes
4587 # last so it can reuse any linker etc. flags detected before
4588 if test "$_sdl" = yes ; then
4589 if cc_check -DGL_SDL ||
4590 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4591 _gl=yes
4592 _gl_sdl=yes
4593 elif cc_check -DGL_SDL -lGL ||
4594 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4595 _gl=yes
4596 _gl_sdl=yes
4597 libs_mplayer="$libs_mplayer -lGL"
4600 else
4601 _gl=no
4603 if test "$_gl" = yes ; then
4604 def_gl='#define CONFIG_GL 1'
4605 res_comment="backends:"
4606 if test "$_gl_cocoa" = yes ; then
4607 def_gl_cocoa='#define CONFIG_GL_COCOA 1'
4608 res_comment="$res_comment cocoa"
4610 if test "$_gl_win32" = yes ; then
4611 def_gl_win32='#define CONFIG_GL_WIN32 1'
4612 res_comment="$res_comment win32"
4614 if test "$_gl_x11" = yes ; then
4615 def_gl_x11='#define CONFIG_GL_X11 1'
4616 res_comment="$res_comment x11"
4618 if test "$_gl_sdl" = yes ; then
4619 def_gl_sdl='#define CONFIG_GL_SDL 1'
4620 res_comment="$res_comment sdl"
4622 vomodules="opengl $vomodules"
4623 else
4624 def_gl='#undef CONFIG_GL'
4625 def_gl_cocoa='#undef CONFIG_GL_COCOA'
4626 def_gl_win32='#undef CONFIG_GL_WIN32'
4627 def_gl_x11='#undef CONFIG_GL_X11'
4628 def_gl_sdl='#undef CONFIG_GL_SDL'
4629 novomodules="opengl $novomodules"
4631 echores "$_gl"
4634 if os2 ; then
4635 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4636 if test "$_kva" = auto; then
4637 _kva=no;
4638 header_check_broken os2.h kva.h -lkva && _kva=yes
4640 if test "$_kva" = yes ; then
4641 def_kva='#define CONFIG_KVA 1'
4642 libs_mplayer="$libs_mplayer -lkva"
4643 vomodules="kva $vomodules"
4644 else
4645 def_kva='#undef CONFIG_KVA'
4646 novomodules="kva $novomodules"
4648 echores "$_kva"
4649 fi #if os2
4652 if win32; then
4654 echocheck "Windows waveout"
4655 if test "$_win32waveout" = auto ; then
4656 _win32waveout=no
4657 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4659 if test "$_win32waveout" = yes ; then
4660 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4661 libs_mplayer="$libs_mplayer -lwinmm"
4662 aomodules="win32 $aomodules"
4663 else
4664 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4665 noaomodules="win32 $noaomodules"
4667 echores "$_win32waveout"
4669 echocheck "Direct3D"
4670 if test "$_direct3d" = auto ; then
4671 _direct3d=no
4672 header_check d3d9.h && _direct3d=yes
4674 if test "$_direct3d" = yes ; then
4675 def_direct3d='#define CONFIG_DIRECT3D 1'
4676 vomodules="direct3d $vomodules"
4677 else
4678 def_direct3d='#undef CONFIG_DIRECT3D'
4679 novomodules="direct3d $novomodules"
4681 echores "$_direct3d"
4683 echocheck "Directx"
4684 if test "$_directx" = auto ; then
4685 cat > $TMPC << EOF
4686 #include <ddraw.h>
4687 #include <dsound.h>
4688 int main(void) { return 0; }
4690 _directx=no
4691 cc_check -lgdi32 && _directx=yes
4693 if test "$_directx" = yes ; then
4694 def_directx='#define CONFIG_DIRECTX 1'
4695 libs_mplayer="$libs_mplayer -lgdi32"
4696 vomodules="directx $vomodules"
4697 aomodules="dsound $aomodules"
4698 else
4699 def_directx='#undef CONFIG_DIRECTX'
4700 novomodules="directx $novomodules"
4701 noaomodules="dsound $noaomodules"
4703 echores "$_directx"
4705 fi #if win32; then
4708 echocheck "DXR3/H+"
4709 if test "$_dxr3" = auto ; then
4710 _dxr3=no
4711 header_check linux/em8300.h && _dxr3=yes
4713 if test "$_dxr3" = yes ; then
4714 def_dxr3='#define CONFIG_DXR3 1'
4715 vomodules="dxr3 $vomodules"
4716 else
4717 def_dxr3='#undef CONFIG_DXR3'
4718 novomodules="dxr3 $novomodules"
4720 echores "$_dxr3"
4723 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4724 if test "$_ivtv" = auto ; then
4725 cat > $TMPC << EOF
4726 #include <sys/time.h>
4727 #include <linux/videodev2.h>
4728 #include <linux/ivtv.h>
4729 #include <sys/ioctl.h>
4730 int main(void) {
4731 struct ivtv_cfg_stop_decode sd;
4732 struct ivtv_cfg_start_decode sd1;
4733 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4734 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4735 return 0; }
4737 _ivtv=no
4738 cc_check && _ivtv=yes
4740 if test "$_ivtv" = yes ; then
4741 def_ivtv='#define CONFIG_IVTV 1'
4742 vomodules="ivtv $vomodules"
4743 aomodules="ivtv $aomodules"
4744 else
4745 def_ivtv='#undef CONFIG_IVTV'
4746 novomodules="ivtv $novomodules"
4747 noaomodules="ivtv $noaomodules"
4749 echores "$_ivtv"
4752 echocheck "V4L2 MPEG Decoder"
4753 if test "$_v4l2" = auto ; then
4754 cat > $TMPC << EOF
4755 #include <sys/time.h>
4756 #include <linux/videodev2.h>
4757 #include <linux/version.h>
4758 int main(void) {
4759 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4760 #error kernel headers too old, need 2.6.22
4761 #endif
4762 struct v4l2_ext_controls ctrls;
4763 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4764 return 0;
4767 _v4l2=no
4768 cc_check && _v4l2=yes
4770 if test "$_v4l2" = yes ; then
4771 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4772 vomodules="v4l2 $vomodules"
4773 aomodules="v4l2 $aomodules"
4774 else
4775 def_v4l2='#undef CONFIG_V4L2_DECODER'
4776 novomodules="v4l2 $novomodules"
4777 noaomodules="v4l2 $noaomodules"
4779 echores "$_v4l2"
4783 #########
4784 # AUDIO #
4785 #########
4788 echocheck "OSS Audio"
4789 if test "$_ossaudio" = auto ; then
4790 _ossaudio=no
4791 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4793 if test "$_ossaudio" = yes ; then
4794 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4795 aomodules="oss $aomodules"
4796 cat > $TMPC << EOF
4797 #include <$_soundcard_header>
4798 #ifdef OPEN_SOUND_SYSTEM
4799 int main(void) { return 0; }
4800 #else
4801 #error Not the real thing
4802 #endif
4804 _real_ossaudio=no
4805 cc_check && _real_ossaudio=yes
4806 if test "$_real_ossaudio" = yes; then
4807 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4808 # Check for OSS4 headers (override default headers)
4809 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4810 if test -f /etc/oss.conf; then
4811 . /etc/oss.conf
4812 _ossinc="$OSSLIBDIR/include"
4813 if test -f "$_ossinc/sys/soundcard.h"; then
4814 extra_cflags="-I$_ossinc $extra_cflags"
4817 elif netbsd || openbsd ; then
4818 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4819 extra_ldflags="$extra_ldflags -lossaudio"
4820 else
4821 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4823 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4824 else
4825 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4826 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4827 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4828 noaomodules="oss $noaomodules"
4830 echores "$_ossaudio"
4833 echocheck "aRts"
4834 if test "$_arts" = auto ; then
4835 _arts=no
4836 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4837 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4838 _arts=yes
4842 if test "$_arts" = yes ; then
4843 def_arts='#define CONFIG_ARTS 1'
4844 aomodules="arts $aomodules"
4845 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4846 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4847 else
4848 noaomodules="arts $noaomodules"
4850 echores "$_arts"
4853 echocheck "EsounD"
4854 if test "$_esd" = auto ; then
4855 _esd=no
4856 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4857 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4860 echores "$_esd"
4862 if test "$_esd" = yes ; then
4863 def_esd='#define CONFIG_ESD 1'
4864 aomodules="esd $aomodules"
4865 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4866 extra_cflags="$extra_cflags $(esd-config --cflags)"
4868 echocheck "esd_get_latency()"
4869 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4870 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4871 echores "$_esd_latency"
4872 else
4873 def_esd='#undef CONFIG_ESD'
4874 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4875 noaomodules="esd $noaomodules"
4878 echocheck "RSound"
4879 if test "$_rsound" = auto ; then
4880 _rsound=no
4881 statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
4883 echores "$_rsound"
4885 if test "$_rsound" = yes ; then
4886 def_rsound='#define CONFIG_RSOUND 1'
4887 aomodules="rsound $aomodules"
4888 libs_mplayer="$libs_mplayer -lrsound"
4889 else
4890 def_rsound='#undef CONFIG_RSOUND'
4891 noaomodules="rsound $noaomodules"
4895 echocheck "NAS"
4896 if test "$_nas" = auto ; then
4897 _nas=no
4898 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4900 if test "$_nas" = yes ; then
4901 def_nas='#define CONFIG_NAS 1'
4902 libs_mplayer="$libs_mplayer -laudio -lXt"
4903 aomodules="nas $aomodules"
4904 else
4905 noaomodules="nas $noaomodules"
4906 def_nas='#undef CONFIG_NAS'
4908 echores "$_nas"
4911 echocheck "pulse"
4912 if test "$_pulse" = auto ; then
4913 _pulse=no
4914 if pkg_config_add 'libpulse >= 0.9' ; then
4915 _pulse=yes
4918 echores "$_pulse"
4920 if test "$_pulse" = yes ; then
4921 def_pulse='#define CONFIG_PULSE 1'
4922 aomodules="pulse $aomodules"
4923 else
4924 def_pulse='#undef CONFIG_PULSE'
4925 noaomodules="pulse $noaomodules"
4929 echocheck "JACK"
4930 if test "$_jack" = auto ; then
4931 _jack=no
4932 if pkg_config_add jack ; then
4933 _jack=yes
4937 if test "$_jack" = yes ; then
4938 def_jack='#define CONFIG_JACK 1'
4939 aomodules="jack $aomodules"
4940 else
4941 noaomodules="jack $noaomodules"
4943 echores "$_jack"
4945 echocheck "OpenAL"
4946 if test "$_openal" = auto ; then
4947 _openal=no
4948 cat > $TMPC << EOF
4949 #ifdef OPENAL_AL_H
4950 #include <OpenAL/al.h>
4951 #else
4952 #include <AL/al.h>
4953 #endif
4954 int main(void) {
4955 alSourceQueueBuffers(0, 0, 0);
4956 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4957 return 0;
4960 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4961 cc_check $I && _openal=yes && break
4962 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4963 done
4964 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4966 if test "$_openal" = yes ; then
4967 def_openal='#define CONFIG_OPENAL 1'
4968 aomodules="openal $aomodules"
4969 else
4970 noaomodules="openal $noaomodules"
4972 echores "$_openal"
4974 echocheck "ALSA audio"
4975 if test "$_alloca" != yes ; then
4976 _alsa=no
4977 res_comment="alloca missing"
4979 if test "$_alsa" = auto ; then
4980 _alsa=no
4981 if pkg_config_add "alsa >= 1.0.9" ; then
4982 _alsa=yes
4985 def_alsa='#undef CONFIG_ALSA'
4986 if test "$_alsa" = yes ; then
4987 aomodules="alsa $aomodules"
4988 def_alsa='#define CONFIG_ALSA 1'
4989 else
4990 noaomodules="alsa $noaomodules"
4992 echores "$_alsa"
4995 echocheck "Sun audio"
4996 if test "$_sunaudio" = auto ; then
4997 cat > $TMPC << EOF
4998 #include <sys/types.h>
4999 #include <sys/audioio.h>
5000 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5002 _sunaudio=no
5003 cc_check && _sunaudio=yes
5005 if test "$_sunaudio" = yes ; then
5006 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5007 aomodules="sun $aomodules"
5008 else
5009 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5010 noaomodules="sun $noaomodules"
5012 echores "$_sunaudio"
5015 if darwin; then
5016 echocheck "CoreAudio"
5017 if test "$_coreaudio" = auto ; then
5018 cat > $TMPC <<EOF
5019 #include <CoreAudio/CoreAudio.h>
5020 #include <AudioToolbox/AudioToolbox.h>
5021 #include <AudioUnit/AudioUnit.h>
5022 int main(void) { return 0; }
5024 _coreaudio=no
5025 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5027 if test "$_coreaudio" = yes ; then
5028 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5029 def_coreaudio='#define CONFIG_COREAUDIO 1'
5030 aomodules="coreaudio $aomodules"
5031 else
5032 def_coreaudio='#undef CONFIG_COREAUDIO'
5033 noaomodules="coreaudio $noaomodules"
5035 echores $_coreaudio
5036 fi #if darwin
5039 if irix; then
5040 echocheck "SGI audio"
5041 if test "$_sgiaudio" = auto ; then
5042 _sgiaudio=no
5043 header_check dmedia/audio.h && _sgiaudio=yes
5045 if test "$_sgiaudio" = "yes" ; then
5046 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5047 libs_mplayer="$libs_mplayer -laudio"
5048 aomodules="sgi $aomodules"
5049 else
5050 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5051 noaomodules="sgi $noaomodules"
5053 echores "$_sgiaudio"
5054 fi #if irix
5057 if os2 ; then
5058 echocheck "KAI (UNIAUD/DART)"
5059 if test "$_kai" = auto; then
5060 _kai=no;
5061 header_check_broken os2.h kai.h -lkai && _kai=yes
5063 if test "$_kai" = yes ; then
5064 def_kai='#define CONFIG_KAI 1'
5065 libs_mplayer="$libs_mplayer -lkai"
5066 aomodules="kai $aomodules"
5067 else
5068 def_kai='#undef CONFIG_KAI'
5069 noaomodules="kai $noaomodules"
5071 echores "$_kai"
5073 echocheck "DART"
5074 if test "$_dart" = auto; then
5075 _dart=no;
5076 header_check_broken os2.h dart.h -ldart && _dart=yes
5078 if test "$_dart" = yes ; then
5079 def_dart='#define CONFIG_DART 1'
5080 libs_mplayer="$libs_mplayer -ldart"
5081 aomodules="dart $aomodules"
5082 else
5083 def_dart='#undef CONFIG_DART'
5084 noaomodules="dart $noaomodules"
5086 echores "$_dart"
5087 fi #if os2
5090 # set default CD/DVD devices
5091 if win32 || os2 ; then
5092 default_cdrom_device="D:"
5093 elif darwin ; then
5094 default_cdrom_device="/dev/disk1"
5095 elif dragonfly ; then
5096 default_cdrom_device="/dev/cd0"
5097 elif freebsd ; then
5098 default_cdrom_device="/dev/acd0"
5099 elif openbsd ; then
5100 default_cdrom_device="/dev/rcd0c"
5101 elif sunos ; then
5102 default_cdrom_device="/vol/dev/aliases/cdrom0"
5103 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5104 # file system and the volfs service.
5105 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5106 elif amigaos ; then
5107 default_cdrom_device="a1ide.device:2"
5108 else
5109 default_cdrom_device="/dev/cdrom"
5112 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5113 default_dvd_device=$default_cdrom_device
5114 elif darwin ; then
5115 default_dvd_device="/dev/rdiskN"
5116 else
5117 default_dvd_device="/dev/dvd"
5121 echocheck "VCD support"
5122 if test "$_vcd" = auto; then
5123 _vcd=no
5124 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5125 _vcd=yes
5126 elif mingw32; then
5127 header_check ddk/ntddcdrm.h && _vcd=yes
5130 if test "$_vcd" = yes; then
5131 inputmodules="vcd $inputmodules"
5132 def_vcd='#define CONFIG_VCD 1'
5133 else
5134 def_vcd='#undef CONFIG_VCD'
5135 noinputmodules="vcd $noinputmodules"
5136 res_comment="not supported on this OS"
5138 echores "$_vcd"
5142 echocheck "Blu-ray support"
5143 if test "$_bluray" = auto ; then
5144 _bluray=no
5145 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0, 0)' -lbluray && _bluray=yes
5147 if test "$_bluray" = yes ; then
5148 def_bluray='#define CONFIG_LIBBLURAY 1'
5149 extra_ldflags="$extra_ldflags -lbluray"
5150 inputmodules="bluray $inputmodules"
5151 else
5152 def_bluray='#undef CONFIG_LIBBLURAY'
5153 noinputmodules="bluray $noinputmodules"
5155 echores "$_bluray"
5157 echocheck "dvdread"
5158 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5159 _dvdread_internal=no
5161 if test "$_dvdread_internal" = auto ; then
5162 _dvdread_internal=no
5163 _dvdread=no
5164 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5165 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5166 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5167 darwin || win32 || os2; then
5168 _dvdread_internal=yes
5169 _dvdread=yes
5170 extra_cflags="-Ilibdvdread4 $extra_cflags"
5172 elif test "$_dvdread" = auto ; then
5173 _dvdread=no
5174 if test "$_dl" = yes; then
5175 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5176 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5177 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5178 _dvdread=yes
5179 extra_cflags="$extra_cflags $_dvdreadcflags"
5180 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5181 res_comment="external"
5186 if test "$_dvdread_internal" = yes; then
5187 def_dvdread='#define CONFIG_DVDREAD 1'
5188 inputmodules="dvdread(internal) $inputmodules"
5189 res_comment="internal"
5190 elif test "$_dvdread" = yes; then
5191 def_dvdread='#define CONFIG_DVDREAD 1'
5192 extra_ldflags="$extra_ldflags -ldvdread"
5193 inputmodules="dvdread(external) $inputmodules"
5194 res_comment="external"
5195 else
5196 def_dvdread='#undef CONFIG_DVDREAD'
5197 noinputmodules="dvdread $noinputmodules"
5199 echores "$_dvdread"
5202 echocheck "internal libdvdcss"
5203 if test "$_libdvdcss_internal" = auto ; then
5204 _libdvdcss_internal=no
5205 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5206 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5208 if test "$_libdvdcss_internal" = yes ; then
5209 if linux || netbsd || openbsd || bsdos ; then
5210 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5211 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5212 elif freebsd || dragonfly ; then
5213 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5214 elif darwin ; then
5215 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5216 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5217 elif cygwin ; then
5218 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5219 elif beos ; then
5220 cflags_libdvdcss="-DSYS_BEOS"
5221 elif os2 ; then
5222 cflags_libdvdcss="-DSYS_OS2"
5224 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5225 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5226 inputmodules="libdvdcss(internal) $inputmodules"
5227 else
5228 noinputmodules="libdvdcss(internal) $noinputmodules"
5230 echores "$_libdvdcss_internal"
5233 echocheck "cdparanoia"
5234 if test "$_cdparanoia" = auto ; then
5235 cat > $TMPC <<EOF
5236 #include <cdda_interface.h>
5237 #include <cdda_paranoia.h>
5238 // This need a better test. How ?
5239 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5241 _cdparanoia=no
5242 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5243 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5244 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5245 done
5247 if test "$_cdparanoia" = yes ; then
5248 _cdda='yes'
5249 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5250 openbsd && extra_ldflags="$extra_ldflags -lutil"
5252 echores "$_cdparanoia"
5255 echocheck "libcdio"
5256 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5257 _libcdio=no
5258 if pkg_config_add libcdio_paranoia ; then
5259 _libcdio=yes
5262 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5263 _cdda='yes'
5264 def_libcdio='#define CONFIG_LIBCDIO 1'
5265 def_havelibcdio='yes'
5266 else
5267 _libcdio=no
5268 if test "$_cdparanoia" = yes ; then
5269 res_comment="using cdparanoia"
5271 def_libcdio='#undef CONFIG_LIBCDIO'
5272 def_havelibcdio='no'
5274 echores "$_libcdio"
5276 if test "$_cdda" = yes ; then
5277 test $_cddb = auto && test $networking = yes && _cddb=yes
5278 def_cdparanoia='#define CONFIG_CDDA 1'
5279 inputmodules="cdda $inputmodules"
5280 else
5281 def_cdparanoia='#undef CONFIG_CDDA'
5282 noinputmodules="cdda $noinputmodules"
5285 if test "$_cddb" = yes ; then
5286 def_cddb='#define CONFIG_CDDB 1'
5287 inputmodules="cddb $inputmodules"
5288 else
5289 _cddb=no
5290 def_cddb='#undef CONFIG_CDDB'
5291 noinputmodules="cddb $noinputmodules"
5294 echocheck "bitmap font support"
5295 if test "$_bitmap_font" = yes ; then
5296 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5297 else
5298 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5300 echores "$_bitmap_font"
5303 echocheck "freetype >= 2.0.9"
5305 # freetype depends on iconv
5306 if test "$_iconv" = no ; then
5307 _freetype=no
5308 res_comment="iconv support needed"
5311 if test "$_freetype" = auto ; then
5312 if pkg_config_add freetype2 ; then
5313 _freetype=yes
5314 else
5315 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5318 if test "$_freetype" = yes ; then
5319 def_freetype='#define CONFIG_FREETYPE 1'
5320 else
5321 def_freetype='#undef CONFIG_FREETYPE'
5323 echores "$_freetype"
5325 if test "$_freetype" = no ; then
5326 _fontconfig=no
5327 res_comment="FreeType support needed"
5329 echocheck "fontconfig"
5330 if test "$_fontconfig" = auto ; then
5331 if pkg_config_add 'fontconfig >= 2.4.2' ; then
5332 _fontconfig=yes
5333 else
5334 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5337 if test "$_fontconfig" = yes ; then
5338 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5339 else
5340 def_fontconfig='#undef CONFIG_FONTCONFIG'
5342 echores "$_fontconfig"
5345 echocheck "SSA/ASS support"
5346 if test "$_ass" = auto ; then
5347 if pkg_config_add libass ; then
5348 _ass=yes
5349 def_ass='#define CONFIG_ASS 1'
5350 else
5351 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
5353 else
5354 def_ass='#undef CONFIG_ASS'
5356 echores "$_ass"
5359 echocheck "fribidi with charsets"
5360 if test "$_fribidi" = auto ; then
5361 _fribidi=no
5362 if pkg_config_add fribidi ; then
5363 _fribidi=yes
5366 if test "$_fribidi" = yes ; then
5367 def_fribidi='#define CONFIG_FRIBIDI 1'
5368 else
5369 def_fribidi='#undef CONFIG_FRIBIDI'
5371 echores "$_fribidi"
5374 echocheck "ENCA"
5375 if test "$_enca" = auto ; then
5376 _enca=no
5377 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5379 if test "$_enca" = yes ; then
5380 def_enca='#define CONFIG_ENCA 1'
5381 extra_ldflags="$extra_ldflags -lenca"
5382 else
5383 def_enca='#undef CONFIG_ENCA'
5385 echores "$_enca"
5388 echocheck "zlib"
5389 _zlib=no
5390 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5391 if test "$_zlib" = yes ; then
5392 def_zlib='#define CONFIG_ZLIB 1'
5393 extra_ldflags="$extra_ldflags -lz"
5394 else
5395 def_zlib='#define CONFIG_ZLIB 0'
5397 echores "$_zlib"
5400 echocheck "RTC"
5401 if test "$_rtc" = auto ; then
5402 cat > $TMPC << EOF
5403 #include <sys/ioctl.h>
5404 #ifdef __linux__
5405 #include <linux/rtc.h>
5406 #else
5407 #include <rtc.h>
5408 #define RTC_PIE_ON RTCIO_PIE_ON
5409 #endif
5410 int main(void) { return RTC_PIE_ON; }
5412 _rtc=no
5413 cc_check && _rtc=yes
5414 ppc && _rtc=no
5416 if test "$_rtc" = yes ; then
5417 def_rtc='#define HAVE_RTC 1'
5418 else
5419 def_rtc='#undef HAVE_RTC'
5421 echores "$_rtc"
5424 echocheck "mad support"
5425 if test "$_mad" = auto ; then
5426 _mad=no
5427 header_check mad.h -lmad && _mad=yes
5429 if test "$_mad" = yes ; then
5430 def_mad='#define CONFIG_LIBMAD 1'
5431 extra_ldflags="$extra_ldflags -lmad"
5432 codecmodules="libmad $codecmodules"
5433 else
5434 def_mad='#undef CONFIG_LIBMAD'
5435 nocodecmodules="libmad $nocodecmodules"
5437 echores "$_mad"
5439 echocheck "OggVorbis support"
5440 if test "$_libvorbis" = auto; then
5441 _libvorbis=no
5442 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5443 elif test "$_libvorbis" = yes ; then
5444 _tremor=no
5446 if test "$_tremor" = auto; then
5447 _tremor=no
5448 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5450 if test "$_tremor" = yes ; then
5451 _vorbis=yes
5452 def_vorbis='#define CONFIG_OGGVORBIS 1'
5453 def_tremor='#define CONFIG_TREMOR 1'
5454 codecmodules="tremor(external) $codecmodules"
5455 res_comment="external Tremor"
5456 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5457 elif test "$_libvorbis" = yes ; then
5458 _vorbis=yes
5459 def_vorbis='#define CONFIG_OGGVORBIS 1'
5460 codecmodules="libvorbis $codecmodules"
5461 res_comment="libvorbis"
5462 extra_ldflags="$extra_ldflags -lvorbis -logg"
5463 else
5464 _vorbis=no
5465 nocodecmodules="libvorbis $nocodecmodules"
5467 echores "$_vorbis"
5469 echocheck "libspeex (version >= 1.1 required)"
5470 if test "$_speex" = auto ; then
5471 _speex=no
5472 cat > $TMPC << EOF
5473 #include <stddef.h>
5474 #include <speex/speex.h>
5475 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5477 cc_check -lspeex $_ld_lm && _speex=yes
5479 if test "$_speex" = yes ; then
5480 def_speex='#define CONFIG_SPEEX 1'
5481 extra_ldflags="$extra_ldflags -lspeex"
5482 codecmodules="speex $codecmodules"
5483 else
5484 def_speex='#undef CONFIG_SPEEX'
5485 nocodecmodules="speex $nocodecmodules"
5487 echores "$_speex"
5489 echocheck "OggTheora support"
5490 if test "$_theora" = auto ; then
5491 _theora=no
5492 if pkg_config_add theora ; then
5493 _theora=yes
5496 if test "$_theora" = yes ; then
5497 def_theora='#define CONFIG_OGGTHEORA 1'
5498 codecmodules="libtheora $codecmodules"
5499 else
5500 def_theora='#undef CONFIG_OGGTHEORA'
5501 nocodecmodules="libtheora $nocodecmodules"
5503 echores "$_theora"
5505 # Any version of libmpg123 shall be fine.
5506 echocheck "mpg123 support"
5507 def_mpg123='#undef CONFIG_MPG123'
5508 if test "$_mpg123" = auto; then
5509 _mpg123=no
5510 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5512 if test "$_mpg123" = yes ; then
5513 def_mpg123='#define CONFIG_MPG123 1'
5514 codecmodules="mpg123 $codecmodules"
5515 else
5516 nocodecmodules="mpg123 $nocodecmodules"
5518 echores "$_mpg123"
5520 echocheck "liba52 support"
5521 def_liba52='#undef CONFIG_LIBA52'
5522 if test "$_liba52" = auto ; then
5523 _liba52=no
5524 cat > $TMPC << EOF
5525 #include <inttypes.h>
5526 #include <a52dec/a52.h>
5527 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5529 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5531 if test "$_liba52" = yes ; then
5532 def_liba52='#define CONFIG_LIBA52 1'
5533 codecmodules="liba52 $codecmodules"
5534 else
5535 nocodecmodules="liba52 $nocodecmodules"
5537 echores "$_liba52"
5539 echocheck "libdca support"
5540 if test "$_libdca" = auto ; then
5541 _libdca=no
5542 for _ld_dca in -ldca -ldts ; do
5543 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5544 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5545 done
5547 if test "$_libdca" = yes ; then
5548 def_libdca='#define CONFIG_LIBDCA 1'
5549 codecmodules="libdca $codecmodules"
5550 else
5551 def_libdca='#undef CONFIG_LIBDCA'
5552 nocodecmodules="libdca $nocodecmodules"
5554 echores "$_libdca"
5556 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5557 if test "$_musepack" = yes ; then
5558 _musepack=no
5559 cat > $TMPC << EOF
5560 #include <stddef.h>
5561 #include <mpcdec/mpcdec.h>
5562 int main(void) {
5563 mpc_streaminfo info;
5564 mpc_decoder decoder;
5565 mpc_decoder_set_streaminfo(&decoder, &info);
5566 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5567 return 0;
5570 cc_check -lmpcdec $_ld_lm && _musepack=yes
5572 if test "$_musepack" = yes ; then
5573 def_musepack='#define CONFIG_MUSEPACK 1'
5574 extra_ldflags="$extra_ldflags -lmpcdec"
5575 codecmodules="musepack $codecmodules"
5576 else
5577 def_musepack='#undef CONFIG_MUSEPACK'
5578 nocodecmodules="musepack $nocodecmodules"
5580 echores "$_musepack"
5583 echocheck "FAAD2 support"
5584 if test "$_faad" = auto ; then
5585 _faad=no
5586 cat > $TMPC << EOF
5587 #include <faad.h>
5588 #ifndef FAAD_MIN_STREAMSIZE
5589 #error Too old version
5590 #endif
5591 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5592 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5594 cc_check -lfaad $_ld_lm && _faad=yes
5597 def_faad='#undef CONFIG_FAAD'
5598 if test "$_faad" = yes ; then
5599 def_faad='#define CONFIG_FAAD 1'
5600 extra_ldflags="$extra_ldflags -lfaad"
5601 codecmodules="faad2 $codecmodules"
5602 else
5603 nocodecmodules="faad2 $nocodecmodules"
5605 echores "$_faad"
5608 echocheck "LADSPA plugin support"
5609 if test "$_ladspa" = auto ; then
5610 _ladspa=no
5611 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5613 if test "$_ladspa" = yes; then
5614 def_ladspa="#define CONFIG_LADSPA 1"
5615 else
5616 def_ladspa="#undef CONFIG_LADSPA"
5618 echores "$_ladspa"
5621 echocheck "libbs2b audio filter support"
5622 if test "$_libbs2b" = auto ; then
5623 _libbs2b=no
5624 if pkg_config_add libbs2b ; then
5625 _libbs2b=yes
5628 def_libbs2b="#undef CONFIG_LIBBS2B"
5629 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5630 echores "$_libbs2b"
5633 if test -z "$_codecsdir" ; then
5634 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5635 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5636 if test -d "$dir" ; then
5637 _codecsdir="$dir"
5638 break;
5640 done
5642 # Fall back on default directory.
5643 if test -z "$_codecsdir" ; then
5644 _codecsdir="$_libdir/codecs"
5645 mingw32 || os2 && _codecsdir="codecs"
5649 echocheck "Win32 codecs"
5650 if test "$_win32dll" = auto ; then
5651 _win32dll=no
5652 if x86_32 && ! qnx; then
5653 _win32dll=yes
5656 if test "$_win32dll" = yes ; then
5657 def_win32dll='#define CONFIG_WIN32DLL 1'
5658 if ! win32 ; then
5659 def_win32_loader='#define WIN32_LOADER 1'
5660 _win32_emulation=yes
5661 else
5662 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5663 res_comment="using native windows"
5665 codecmodules="win32 $codecmodules"
5666 else
5667 def_win32dll='#undef CONFIG_WIN32DLL'
5668 def_win32_loader='#undef WIN32_LOADER'
5669 nocodecmodules="win32 $nocodecmodules"
5671 echores "$_win32dll"
5674 echocheck "XAnim codecs"
5675 if test "$_xanim" = auto ; then
5676 _xanim=no
5677 res_comment="dynamic loader support needed"
5678 if test "$_dl" = yes ; then
5679 _xanim=yes
5682 if test "$_xanim" = yes ; then
5683 def_xanim='#define CONFIG_XANIM 1'
5684 codecmodules="xanim $codecmodules"
5685 else
5686 def_xanim='#undef CONFIG_XANIM'
5687 nocodecmodules="xanim $nocodecmodules"
5689 echores "$_xanim"
5692 echocheck "RealPlayer codecs"
5693 if test "$_real" = auto ; then
5694 _real=no
5695 res_comment="dynamic loader support needed"
5696 if test "$_dl" = yes || test "$_win32dll" = yes &&
5697 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5698 _real=yes
5701 if test "$_real" = yes ; then
5702 def_real='#define CONFIG_REALCODECS 1'
5703 codecmodules="real $codecmodules"
5704 else
5705 def_real='#undef CONFIG_REALCODECS'
5706 nocodecmodules="real $nocodecmodules"
5708 echores "$_real"
5711 echocheck "QuickTime codecs"
5712 _qtx_emulation=no
5713 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5714 if test "$_qtx" = auto ; then
5715 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5717 if test "$_qtx" = yes ; then
5718 def_qtx='#define CONFIG_QTX_CODECS 1'
5719 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5720 codecmodules="qtx $codecmodules"
5721 darwin || win32 || _qtx_emulation=yes
5722 else
5723 def_qtx='#undef CONFIG_QTX_CODECS'
5724 nocodecmodules="qtx $nocodecmodules"
5726 echores "$_qtx"
5728 echocheck "Nemesi Streaming Media libraries"
5729 if test "$_nemesi" = auto && test "$networking" = yes ; then
5730 _nemesi=no
5731 if pkg_config_add libnemesi ; then
5732 _nemesi=yes
5735 if test "$_nemesi" = yes; then
5736 _native_rtsp=no
5737 def_nemesi='#define CONFIG_LIBNEMESI 1'
5738 inputmodules="nemesi $inputmodules"
5739 else
5740 _native_rtsp="$networking"
5741 _nemesi=no
5742 def_nemesi='#undef CONFIG_LIBNEMESI'
5743 noinputmodules="nemesi $noinputmodules"
5745 echores "$_nemesi"
5747 echocheck "LIVE555 Streaming Media libraries"
5748 if test "$_live" = auto && test "$networking" = yes ; then
5749 cat > $TMPCPP << EOF
5750 #include <liveMedia.hh>
5751 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5752 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5753 #endif
5754 int main(void) { return 0; }
5757 _live=no
5758 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
5759 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5760 _livelibdir=$(echo $I| sed s/-I//) &&
5761 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5762 $_livelibdir/groupsock/libgroupsock.a \
5763 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5764 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5765 $extra_ldflags -lstdc++" \
5766 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5767 -I$_livelibdir/UsageEnvironment/include \
5768 -I$_livelibdir/BasicUsageEnvironment/include \
5769 -I$_livelibdir/groupsock/include" &&
5770 _live=yes && break
5771 done
5772 if test "$_live" != yes ; then
5773 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5774 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5775 _live_dist=yes
5779 if test "$_live" = yes && test "$networking" = yes; then
5780 test $_livelibdir && res_comment="using $_livelibdir"
5781 def_live='#define CONFIG_LIVE555 1'
5782 inputmodules="live555 $inputmodules"
5783 elif test "$_live_dist" = yes && test "$networking" = yes; then
5784 res_comment="using distribution version"
5785 _live="yes"
5786 def_live='#define CONFIG_LIVE555 1'
5787 extra_ldflags="$extra_ldflags $ld_tmp"
5788 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
5789 inputmodules="live555 $inputmodules"
5790 else
5791 _live=no
5792 def_live='#undef CONFIG_LIVE555'
5793 noinputmodules="live555 $noinputmodules"
5795 echores "$_live"
5799 # Test with > against Libav 0.8 versions which will NOT work rather than
5800 # specify minimum version, to allow (future) point releases to possibly work.
5801 all_libav_libs="libavutil > 51.21.0:libavcodec > 53.34.0:libavformat > 53.20.0:libswscale >= 2.0.0"
5802 echocheck "Libav ($all_libav_libs)"
5803 if test "$ffmpeg" = auto ; then
5804 IFS=":" # shell should not be used for programming
5805 if pkg_config_add $all_libav_libs ; then
5806 unset IFS
5807 else
5808 die "Unable to find development files for some of the required Libav libraries above. Aborting."
5811 echores "yes"
5813 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
5814 if ! test -z "$_ffmpeg_source" ; then
5815 def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
5818 echocheck "libpostproc >= 52.0.0"
5819 if test "$libpostproc" = auto ; then
5820 libpostproc=no
5821 if pkg_config_add "libpostproc >= 52.0.0" ; then
5822 libpostproc=yes
5825 if test "$libpostproc" = yes ; then
5826 def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
5827 else
5828 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
5830 echores "$libpostproc"
5833 echocheck "libdv-0.9.5+"
5834 if test "$_libdv" = auto ; then
5835 _libdv=no
5836 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
5838 if test "$_libdv" = yes ; then
5839 def_libdv='#define CONFIG_LIBDV095 1'
5840 extra_ldflags="$extra_ldflags -ldv"
5841 codecmodules="libdv $codecmodules"
5842 else
5843 def_libdv='#undef CONFIG_LIBDV095'
5844 nocodecmodules="libdv $nocodecmodules"
5846 echores "$_libdv"
5849 echocheck "Xvid"
5850 if test "$_xvid" = auto ; then
5851 _xvid=no
5852 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
5853 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
5854 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
5855 done
5858 if test "$_xvid" = yes ; then
5859 def_xvid='#define CONFIG_XVID4 1'
5860 codecmodules="xvid $codecmodules"
5861 else
5862 def_xvid='#undef CONFIG_XVID4'
5863 nocodecmodules="xvid $nocodecmodules"
5865 echores "$_xvid"
5868 echocheck "libnut"
5869 if test "$_libnut" = auto ; then
5870 _libnut=no
5871 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
5874 if test "$_libnut" = yes ; then
5875 def_libnut='#define CONFIG_LIBNUT 1'
5876 extra_ldflags="$extra_ldflags -lnut"
5877 else
5878 def_libnut='#undef CONFIG_LIBNUT'
5880 echores "$_libnut"
5882 # These VO checks must be done after the FFmpeg one
5883 echocheck "/dev/mga_vid"
5884 if test "$_mga" = auto ; then
5885 _mga=no
5886 test -c /dev/mga_vid && _mga=yes
5888 if test "$_mga" = yes ; then
5889 def_mga='#define CONFIG_MGA 1'
5890 vomodules="mga $vomodules"
5891 else
5892 def_mga='#undef CONFIG_MGA'
5893 novomodules="mga $novomodules"
5895 echores "$_mga"
5898 echocheck "xmga"
5899 if test "$_xmga" = auto ; then
5900 _xmga=no
5901 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
5903 if test "$_xmga" = yes ; then
5904 def_xmga='#define CONFIG_XMGA 1'
5905 vomodules="xmga $vomodules"
5906 else
5907 def_xmga='#undef CONFIG_XMGA'
5908 novomodules="xmga $novomodules"
5910 echores "$_xmga"
5913 echocheck "UnRAR executable"
5914 if test "$_unrar_exec" = auto ; then
5915 _unrar_exec="yes"
5916 mingw32 && _unrar_exec="no"
5918 if test "$_unrar_exec" = yes ; then
5919 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
5920 else
5921 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
5923 echores "$_unrar_exec"
5925 echocheck "TV interface"
5926 if test "$_tv" = yes ; then
5927 def_tv='#define CONFIG_TV 1'
5928 inputmodules="tv $inputmodules"
5929 else
5930 noinputmodules="tv $noinputmodules"
5931 def_tv='#undef CONFIG_TV'
5933 echores "$_tv"
5936 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
5937 echocheck "*BSD BT848 bt8xx header"
5938 _ioctl_bt848_h=no
5939 for file in "machine/ioctl_bt848.h" \
5940 "dev/bktr/ioctl_bt848.h" \
5941 "dev/video/bktr/ioctl_bt848.h" \
5942 "dev/ic/bt8xx.h" ; do
5943 cat > $TMPC <<EOF
5944 #include <sys/types.h>
5945 #include <sys/ioctl.h>
5946 #include <$file>
5947 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
5949 if cc_check ; then
5950 _ioctl_bt848_h=yes
5951 _ioctl_bt848_h_name="$file"
5952 break;
5954 done
5955 if test "$_ioctl_bt848_h" = yes ; then
5956 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
5957 res_comment="using $_ioctl_bt848_h_name"
5958 else
5959 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
5961 echores "$_ioctl_bt848_h"
5963 echocheck "*BSD ioctl_meteor.h"
5964 _ioctl_meteor_h=no
5965 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
5966 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
5967 _ioctl_meteor_h=yes && break
5968 done
5969 if test "$_ioctl_meteor_h" = yes ; then
5970 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
5971 res_comment="using $ioctl_meteor_h_path"
5972 else
5973 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
5975 echores "$_ioctl_meteor_h"
5977 echocheck "*BSD BrookTree 848 TV interface"
5978 if test "$_tv_bsdbt848" = auto ; then
5979 _tv_bsdbt848=no
5980 if test "$_tv" = yes ; then
5981 cat > $TMPC <<EOF
5982 #include <sys/types.h>
5983 $def_ioctl_meteor_h_name
5984 $def_ioctl_bt848_h_name
5985 #ifdef IOCTL_METEOR_H_NAME
5986 #include IOCTL_METEOR_H_NAME
5987 #endif
5988 #ifdef IOCTL_BT848_H_NAME
5989 #include IOCTL_BT848_H_NAME
5990 #endif
5991 int main(void) {
5992 ioctl(0, METEORSINPUT, 0);
5993 ioctl(0, TVTUNER_GETFREQ, 0);
5994 return 0;
5997 cc_check && _tv_bsdbt848=yes
6000 if test "$_tv_bsdbt848" = yes ; then
6001 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6002 inputmodules="tv-bsdbt848 $inputmodules"
6003 else
6004 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6005 noinputmodules="tv-bsdbt848 $noinputmodules"
6007 echores "$_tv_bsdbt848"
6008 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6011 echocheck "DirectShow TV interface"
6012 if test "$_tv_dshow" = auto ; then
6013 _tv_dshow=no
6014 if test "$_tv" = yes && win32 ; then
6015 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6018 if test "$_tv_dshow" = yes ; then
6019 inputmodules="tv-dshow $inputmodules"
6020 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6021 extra_ldflags="$extra_ldflags -lole32 -luuid"
6022 else
6023 noinputmodules="tv-dshow $noinputmodules"
6024 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6026 echores "$_tv_dshow"
6029 echocheck "Video 4 Linux TV interface"
6030 if test "$_tv_v4l1" = auto ; then
6031 _tv_v4l1=no
6032 if test "$_tv" = yes && linux ; then
6033 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6036 if test "$_tv_v4l1" = yes ; then
6037 _audio_input=yes
6038 _tv_v4l=yes
6039 def_tv_v4l='#define CONFIG_TV_V4L 1'
6040 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6041 inputmodules="tv-v4l $inputmodules"
6042 else
6043 noinputmodules="tv-v4l1 $noinputmodules"
6044 def_tv_v4l='#undef CONFIG_TV_V4L'
6046 echores "$_tv_v4l1"
6049 echocheck "Video 4 Linux 2 TV interface"
6050 if test "$_tv_v4l2" = auto ; then
6051 _tv_v4l2=no
6052 if test "$_tv" = yes && linux ; then
6053 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6054 elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
6055 _tv_v4l2=yes
6058 if test "$_tv_v4l2" = yes ; then
6059 _audio_input=yes
6060 _tv_v4l=yes
6061 def_tv_v4l='#define CONFIG_TV_V4L 1'
6062 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6063 inputmodules="tv-v4l2 $inputmodules"
6064 else
6065 noinputmodules="tv-v4l2 $noinputmodules"
6066 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6068 echores "$_tv_v4l2"
6071 echocheck "Radio interface"
6072 if test "$_radio" = yes ; then
6073 def_radio='#define CONFIG_RADIO 1'
6074 inputmodules="radio $inputmodules"
6075 if test "$_alsa" != yes -a "$_ossaudio" != yes ; then
6076 _radio_capture=no
6078 if test "$_radio_capture" = yes ; then
6079 _audio_input=yes
6080 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6081 else
6082 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6084 else
6085 noinputmodules="radio $noinputmodules"
6086 def_radio='#undef CONFIG_RADIO'
6087 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6088 _radio_capture=no
6090 echores "$_radio"
6091 echocheck "Capture for Radio interface"
6092 echores "$_radio_capture"
6094 echocheck "Video 4 Linux 2 Radio interface"
6095 if test "$_radio_v4l2" = auto ; then
6096 _radio_v4l2=no
6097 if test "$_radio" = yes && linux ; then
6098 header_check linux/videodev2.h && _radio_v4l2=yes
6101 if test "$_radio_v4l2" = yes ; then
6102 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6103 else
6104 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6106 echores "$_radio_v4l2"
6108 echocheck "Video 4 Linux Radio interface"
6109 if test "$_radio_v4l" = auto ; then
6110 _radio_v4l=no
6111 if test "$_radio" = yes && linux ; then
6112 header_check linux/videodev.h && _radio_v4l=yes
6115 if test "$_radio_v4l" = yes ; then
6116 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6117 else
6118 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6120 echores "$_radio_v4l"
6122 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6123 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6124 echocheck "*BSD BrookTree 848 Radio interface"
6125 _radio_bsdbt848=no
6126 cat > $TMPC <<EOF
6127 #include <sys/types.h>
6128 $def_ioctl_bt848_h_name
6129 #ifdef IOCTL_BT848_H_NAME
6130 #include IOCTL_BT848_H_NAME
6131 #endif
6132 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6134 cc_check && _radio_bsdbt848=yes
6135 echores "$_radio_bsdbt848"
6136 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6138 if test "$_radio_bsdbt848" = yes ; then
6139 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6140 else
6141 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6144 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6145 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6146 die "Radio driver requires BSD BT848, V4L or V4L2!"
6149 echocheck "Video 4 Linux 2 MPEG PVR interface"
6150 if test "$_pvr" = auto ; then
6151 _pvr=no
6152 if test "$_tv_v4l2" = yes && linux ; then
6153 cat > $TMPC <<EOF
6154 #include <sys/time.h>
6155 #include <linux/videodev2.h>
6156 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6158 cc_check && _pvr=yes
6161 if test "$_pvr" = yes ; then
6162 def_pvr='#define CONFIG_PVR 1'
6163 inputmodules="pvr $inputmodules"
6164 else
6165 noinputmodules="pvr $noinputmodules"
6166 def_pvr='#undef CONFIG_PVR'
6168 echores "$_pvr"
6171 echocheck "ftp"
6172 if test "$_ftp" = "auto" ; then
6173 test "$networking" = "yes" && ! beos && _ftp=yes
6175 if test "$_ftp" = yes ; then
6176 def_ftp='#define CONFIG_FTP 1'
6177 inputmodules="ftp $inputmodules"
6178 else
6179 noinputmodules="ftp $noinputmodules"
6180 def_ftp='#undef CONFIG_FTP'
6182 echores "$_ftp"
6184 echocheck "vstream client"
6185 if test "$_vstream" = auto ; then
6186 _vstream=no
6187 cat > $TMPC <<EOF
6188 #include <vstream-client.h>
6189 void vstream_error(const char *format, ... ) {}
6190 int main(void) { vstream_start(); return 0; }
6192 cc_check -lvstream-client && _vstream=yes
6194 if test "$_vstream" = yes ; then
6195 def_vstream='#define CONFIG_VSTREAM 1'
6196 inputmodules="vstream $inputmodules"
6197 extra_ldflags="$extra_ldflags -lvstream-client"
6198 else
6199 noinputmodules="vstream $noinputmodules"
6200 def_vstream='#undef CONFIG_VSTREAM'
6202 echores "$_vstream"
6205 echocheck "Subtitles sorting"
6206 if test "$_sortsub" = yes ; then
6207 def_sortsub='#define CONFIG_SORTSUB 1'
6208 else
6209 def_sortsub='#undef CONFIG_SORTSUB'
6211 echores "$_sortsub"
6214 echocheck "XMMS inputplugin support"
6215 if test "$_xmms" = yes ; then
6216 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6217 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6218 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6219 else
6220 _xmmsplugindir=/usr/lib/xmms/Input
6221 _xmmslibdir=/usr/lib
6224 def_xmms='#define CONFIG_XMMS 1'
6225 if darwin ; then
6226 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6227 else
6228 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6230 else
6231 def_xmms='#undef CONFIG_XMMS'
6233 echores "$_xmms"
6235 if test "$_charset" != "noconv" ; then
6236 def_charset="#define MSG_CHARSET \"$_charset\""
6237 else
6238 def_charset="#undef MSG_CHARSET"
6239 _charset="UTF-8"
6242 #############################################################################
6244 echocheck "automatic gdb attach"
6245 if test "$_crash_debug" = yes ; then
6246 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6247 else
6248 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6249 _crash_debug=no
6251 echores "$_crash_debug"
6253 echocheck "compiler support for noexecstack"
6254 if cflag_check -Wl,-z,noexecstack ; then
6255 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6256 echores "yes"
6257 else
6258 echores "no"
6261 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6262 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6263 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6264 echores "yes"
6265 else
6266 echores "no"
6270 # Dynamic linking flags
6271 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6272 _ld_dl_dynamic=''
6273 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6274 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6275 _ld_dl_dynamic='-rdynamic'
6278 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6279 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6280 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6282 def_debug='#undef MP_DEBUG'
6283 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6286 echocheck "joystick"
6287 def_joystick='#undef CONFIG_JOYSTICK'
6288 if test "$_joystick" = yes ; then
6289 if linux || freebsd ; then
6290 # TODO add some check
6291 def_joystick='#define CONFIG_JOYSTICK 1'
6292 else
6293 _joystick="no"
6294 res_comment="unsupported under $system_name"
6297 echores "$_joystick"
6299 echocheck "lirc"
6300 if test "$_lirc" = auto ; then
6301 _lirc=no
6302 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6304 if test "$_lirc" = yes ; then
6305 def_lirc='#define CONFIG_LIRC 1'
6306 libs_mplayer="$libs_mplayer -llirc_client"
6307 else
6308 def_lirc='#undef CONFIG_LIRC'
6310 echores "$_lirc"
6312 echocheck "lircc"
6313 if test "$_lircc" = auto ; then
6314 _lircc=no
6315 header_check lirc/lircc.h -llircc && _lircc=yes
6317 if test "$_lircc" = yes ; then
6318 def_lircc='#define CONFIG_LIRCC 1'
6319 libs_mplayer="$libs_mplayer -llircc"
6320 else
6321 def_lircc='#undef CONFIG_LIRCC'
6323 echores "$_lircc"
6325 #############################################################################
6327 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6328 # the OMF format needs to come after the 'extern symbol prefix' check, which
6329 # uses nm.
6330 if os2 ; then
6331 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6334 #############################################################################
6336 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6338 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6340 # This must be the last test to be performed. Any other tests following it
6341 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6342 # against libdvdread (to permit MPlayer to use its own copy of the library).
6343 # So any compilation using the flags added here but not linking against
6344 # libdvdread can fail.
6345 echocheck "DVD support (libdvdnav)"
6346 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6347 _dvdnav=no
6349 dvdnav_internal=no
6350 if test "$_dvdnav" = auto ; then
6351 if test "$_dvdread_internal" = yes ; then
6352 _dvdnav=yes
6353 dvdnav_internal=yes
6354 res_comment="internal"
6355 else
6356 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6359 if test "$_dvdnav" = auto ; then
6360 _dvdnav=no
6361 _dvdnavdir=$($_dvdnavconfig --cflags)
6362 _dvdnavlibs=$($_dvdnavconfig --libs)
6363 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6365 if test "$_dvdnav" = yes ; then
6366 def_dvdnav='#define CONFIG_DVDNAV 1'
6367 if test "$dvdnav_internal" = yes ; then
6368 cflags_libdvdnav="-Ilibdvdnav"
6369 inputmodules="dvdnav(internal) $inputmodules"
6370 else
6371 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6372 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6373 inputmodules="dvdnav $inputmodules"
6375 else
6376 def_dvdnav='#undef CONFIG_DVDNAV'
6377 noinputmodules="dvdnav $noinputmodules"
6379 echores "$_dvdnav"
6381 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6382 # Read dvdnav comment above.
6384 mak_enable () {
6385 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6386 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6387 nprefix=$3;
6388 for part in $list; do
6389 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6390 echo "${nprefix}_$part = yes"
6392 done
6395 #############################################################################
6396 echo "Creating config.mak"
6397 cat > config.mak << EOF
6398 # -------- Generated by configure -----------
6400 # Ensure that locale settings do not interfere with shell commands.
6401 export LC_ALL = C
6403 CONFIGURATION = $configuration
6405 CHARSET = $_charset
6406 DOC_LANGS = $language_doc
6407 DOC_LANG_ALL = $doc_lang_all
6408 MAN_LANGS = $language_man
6409 MAN_LANG_ALL = $man_lang_all
6410 MSG_LANGS = $language_msg
6411 MSG_LANG_ALL = $msg_lang_all
6413 prefix = \$(DESTDIR)$_prefix
6414 BINDIR = \$(DESTDIR)$_bindir
6415 DATADIR = \$(DESTDIR)$_datadir
6416 LIBDIR = \$(DESTDIR)$_libdir
6417 MANDIR = \$(DESTDIR)$_mandir
6418 CONFDIR = \$(DESTDIR)$_confdir
6419 LOCALEDIR = \$(DESTDIR)$_localedir
6421 AR = $_ar
6422 AS = $_cc
6423 CC = $_cc
6424 CXX = $_cc
6425 HOST_CC = $_host_cc
6426 INSTALL = $_install
6427 INSTALLSTRIP = $_install_strip
6428 WINDRES = $_windres
6430 CFLAGS = $WARNFLAGS $ERRORFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6431 CXXFLAGS = $WARNFLAGS $ERRORFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6432 DEPFLAGS = $DEPFLAGS
6434 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6435 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6436 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6437 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6438 CFLAGS_STACKREALIGN = $cflags_stackrealign
6440 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6441 EXTRALIBS_MPLAYER = $libs_mplayer
6443 GETCH = $_getch
6444 TIMER = $_timer
6446 EXESUF = $_exesuf
6447 EXESUFS_ALL = .exe
6449 ARCH = $arch
6450 $(mak_enable "$arch_all" "$arch" ARCH)
6451 $(mak_enable "$subarch_all" "$subarch" ARCH)
6452 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6454 MPLAYER = $_mplayer
6456 NEED_GETTIMEOFDAY = $need_gettimeofday
6457 NEED_GLOB = $need_glob
6458 NEED_MMAP = $need_mmap
6459 NEED_SETENV = $need_setenv
6460 NEED_SHMEM = $need_shmem
6461 NEED_STRSEP = $need_strsep
6462 NEED_SWAB = $need_swab
6463 NEED_VSSCANF = $need_vsscanf
6465 # features
6466 3DFX = $_3dfx
6467 AA = $_aa
6468 ALSA = $_alsa
6469 APPLE_IR = $_apple_ir
6470 APPLE_REMOTE = $_apple_remote
6471 ARTS = $_arts
6472 AUDIO_INPUT = $_audio_input
6473 BITMAP_FONT = $_bitmap_font
6474 BL = $_bl
6475 CACA = $_caca
6476 CDDA = $_cdda
6477 CDDB = $_cddb
6478 COREAUDIO = $_coreaudio
6479 COREVIDEO = $_corevideo
6480 DART = $_dart
6481 DGA = $_dga
6482 DIRECT3D = $_direct3d
6483 DIRECTFB = $_directfb
6484 DIRECTX = $_directx
6485 DVBIN = $_dvbin
6486 DVDNAV = $_dvdnav
6487 DVDNAV_INTERNAL = $dvdnav_internal
6488 DVDREAD = $_dvdread
6489 DVDREAD_INTERNAL = $_dvdread_internal
6490 DXR3 = $_dxr3
6491 ESD = $_esd
6492 FAAD = $_faad
6493 FASTMEMCPY = $_fastmemcpy
6494 FBDEV = $_fbdev
6495 FREETYPE = $_freetype
6496 FTP = $_ftp
6497 GIF = $_gif
6498 GGI = $_ggi
6499 GL = $_gl
6500 GL_COCOA = $_gl_cocoa
6501 GL_WIN32 = $_gl_win32
6502 GL_X11 = $_gl_x11
6503 GL_SDL = $_gl_sdl
6504 HAVE_POSIX_SELECT = $_posix_select
6505 HAVE_SYS_MMAN_H = $_mman
6506 IVTV = $_ivtv
6507 JACK = $_jack
6508 JOYSTICK = $_joystick
6509 JPEG = $_jpeg
6510 KAI = $_kai
6511 KVA = $_kva
6512 LADSPA = $_ladspa
6513 LIBA52 = $_liba52
6514 LIBASS = $_ass
6515 LIBBLURAY = $_bluray
6516 LIBBS2B = $_libbs2b
6517 LIBDCA = $_libdca
6518 LIBDV = $_libdv
6519 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6520 LIBMAD = $_mad
6521 LIBNEMESI = $_nemesi
6522 LIBNUT = $_libnut
6523 LIBPOSTPROC = $libpostproc
6524 LIBSMBCLIENT = $_smb
6525 LIBTHEORA = $_theora
6526 LIRC = $_lirc
6527 LIVE555 = $_live
6528 MACOSX_FINDER = $_macosx_finder
6529 MD5SUM = $_md5sum
6530 MGA = $_mga
6531 MNG = $_mng
6532 MPG123 = $_mpg123
6533 MUSEPACK = $_musepack
6534 NAS = $_nas
6535 NATIVE_RTSP = $_native_rtsp
6536 NETWORKING = $networking
6537 OPENAL = $_openal
6538 OSS = $_ossaudio
6539 PE_EXECUTABLE = $_pe_executable
6540 PNG = $_png
6541 PNM = $_pnm
6542 PRIORITY = $_priority
6543 PULSE = $_pulse
6544 PVR = $_pvr
6545 QTX_CODECS = $_qtx
6546 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6547 QTX_EMULATION = $_qtx_emulation
6548 QUARTZ = $_quartz
6549 RADIO=$_radio
6550 RADIO_CAPTURE=$_radio_capture
6551 REAL_CODECS = $_real
6552 RSOUND = $_rsound
6553 S3FB = $_s3fb
6554 SDL = $_sdl
6555 SPEEX = $_speex
6556 STREAM_CACHE = $_stream_cache
6557 SGIAUDIO = $_sgiaudio
6558 SUNAUDIO = $_sunaudio
6559 SVGA = $_svga
6560 TDFXFB = $_tdfxfb
6561 TDFXVID = $_tdfxvid
6562 TGA = $_tga
6563 TV = $_tv
6564 TV_BSDBT848 = $_tv_bsdbt848
6565 TV_DSHOW = $_tv_dshow
6566 TV_V4L = $_tv_v4l
6567 TV_V4L1 = $_tv_v4l1
6568 TV_V4L2 = $_tv_v4l2
6569 UNRAR_EXEC = $_unrar_exec
6570 V4L2 = $_v4l2
6571 VCD = $_vcd
6572 VDPAU = $_vdpau
6573 VESA = $_vesa
6574 VORBIS = $_vorbis
6575 VSTREAM = $_vstream
6576 WII = $_wii
6577 WIN32DLL = $_win32dll
6578 WIN32WAVEOUT = $_win32waveout
6579 WIN32_EMULATION = $_win32_emulation
6580 X11 = $_x11
6581 XANIM_CODECS = $_xanim
6582 XMGA = $_xmga
6583 XMMS_PLUGINS = $_xmms
6584 XV = $_xv
6585 XVID4 = $_xvid
6586 XVR100 = $_xvr100
6587 YUV4MPEG = $_yuv4mpeg
6589 # FFmpeg
6590 FFMPEG_INTERNALS = $ffmpeg_internals
6591 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6593 RANLIB = $_ranlib
6594 YASM = $_yasm
6595 YASMFLAGS = $YASMFLAGS
6597 CONFIG_VDPAU = $_vdpau
6598 CONFIG_ZLIB = $_zlib
6600 HAVE_PTHREADS = $_pthreads
6601 HAVE_SHM = $_shm
6602 HAVE_W32THREADS = $_w32threads
6603 HAVE_YASM = $have_yasm
6607 #############################################################################
6609 ff_config_enable () {
6610 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6611 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6612 _nprefix=$3;
6613 test -z "$_nprefix" && _nprefix='CONFIG'
6614 for part in $list; do
6615 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6616 echo "#define ${_nprefix}_$part 1"
6617 else
6618 echo "#define ${_nprefix}_$part 0"
6620 done
6623 echo "Creating config.h"
6624 cat > $TMPH << EOF
6625 /*----------------------------------------------------------------------------
6626 ** This file has been automatically generated by configure any changes in it
6627 ** will be lost when you run configure again.
6628 ** Instead of modifying definitions here, use the --enable/--disable options
6629 ** of the configure script! See ./configure --help for details.
6630 *---------------------------------------------------------------------------*/
6632 #ifndef MPLAYER_CONFIG_H
6633 #define MPLAYER_CONFIG_H
6635 /* Undefine this if you do not want to select mono audio (left or right)
6636 with a stereo MPEG layer 2/3 audio stream. The command line option
6637 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6638 right-only), with 0 being the default.
6640 #define CONFIG_FAKE_MONO 1
6642 /* set up audio OUTBURST. Do not change this! */
6643 #define OUTBURST 512
6645 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6646 #undef FAST_OSD
6647 #undef FAST_OSD_TABLE
6651 #define CONFIGURATION "$configuration"
6653 #define MPLAYER_DATADIR "$_datadir"
6654 #define MPLAYER_CONFDIR "$_confdir"
6655 #define MPLAYER_LOCALEDIR "$_localedir"
6657 $def_translation
6659 /* definitions needed by included libraries */
6660 #define HAVE_INTTYPES_H 1
6661 /* libdvdcss */
6662 #define HAVE_ERRNO_H 1
6663 /* libdvdcss + libdvdread */
6664 #define HAVE_LIMITS_H 1
6665 /* libdvdcss */
6666 #define HAVE_UNISTD_H 1
6667 /* libdvdread */
6668 #define STDC_HEADERS 1
6669 #define HAVE_MEMCPY 1
6670 /* libdvdnav */
6671 #define READ_CACHE_TRACE 0
6672 /* libdvdread */
6673 #define HAVE_DLFCN_H 1
6674 $def_dvdcss
6677 /* system headers */
6678 $def_alloca_h
6679 $def_altivec_h
6680 $def_malloc_h
6681 $def_mman_h
6682 $def_mman_has_map_failed
6683 $def_soundcard_h
6684 $def_sys_soundcard_h
6685 $def_sys_sysinfo_h
6686 $def_sys_videoio_h
6687 $def_termios_h
6688 $def_termios_sys_h
6689 $def_winsock2_h
6692 /* system functions */
6693 $def_gethostbyname2
6694 $def_gettimeofday
6695 $def_glob
6696 $def_langinfo
6697 $def_lrintf
6698 $def_map_memalign
6699 $def_memalign
6700 $def_nanosleep
6701 $def_posix_select
6702 $def_select
6703 $def_setenv
6704 $def_setmode
6705 $def_shm
6706 $def_strsep
6707 $def_swab
6708 $def_sysi86
6709 $def_sysi86_iv
6710 $def_termcap
6711 $def_termios
6712 $def_vsscanf
6715 /* system-specific features */
6716 $def_asmalign_pot
6717 $def_builtin_expect
6718 $def_dl
6719 $def_dos_paths
6720 $def_extern_asm
6721 $def_extern_prefix
6722 $def_iconv
6723 $def_kstat
6724 $def_macosx_bundle
6725 $def_macosx_finder
6726 $def_priority
6727 $def_quicktime
6728 $def_restrict_keyword
6729 $def_rtc
6730 $def_unrar_exec
6733 /* configurable options */
6734 $def_charset
6735 $def_crash_debug
6736 $def_debug
6737 $def_fastmemcpy
6738 $def_runtime_cpudetection
6739 $def_sighandler
6740 $def_sortsub
6741 $def_stream_cache
6742 $def_pthread_cache
6745 /* CPU stuff */
6746 #define __CPU__ $iproc
6747 $def_ebx_available
6748 $def_words_endian
6749 $def_bigendian
6750 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6751 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6752 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
6755 /* Blu-ray/DVD/VCD/CD */
6756 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
6757 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
6758 $def_bluray
6759 $def_bsdi_dvd
6760 $def_cddb
6761 $def_cdio
6762 $def_cdparanoia
6763 $def_cdrom
6764 $def_dvd
6765 $def_dvd_bsd
6766 $def_dvd_darwin
6767 $def_dvd_linux
6768 $def_dvd_openbsd
6769 $def_dvdio
6770 $def_dvdnav
6771 $def_dvdread
6772 $def_hpux_scsi_h
6773 $def_libcdio
6774 $def_sol_scsi_h
6775 $def_vcd
6778 /* codec libraries */
6779 $def_faad
6780 $def_liba52
6781 $def_libdca
6782 $def_libdv
6783 $def_mad
6784 $def_mpg123
6785 $def_musepack
6786 $def_speex
6787 $def_theora
6788 $def_tremor
6789 $def_vorbis
6790 $def_xvid
6791 $def_zlib
6793 $def_libpostproc
6794 $def_libnut
6797 /* binary codecs */
6798 $def_qtx
6799 $def_qtx_win32
6800 $def_real
6801 $def_win32_loader
6802 $def_win32dll
6803 $def_xanim
6804 $def_xmms
6805 #define BINARY_CODECS_PATH "$_codecsdir"
6806 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
6809 /* Audio output drivers */
6810 $def_alsa
6811 $def_arts
6812 $def_coreaudio
6813 $def_dart
6814 $def_esd
6815 $def_esd_latency
6816 $def_jack
6817 $def_kai
6818 $def_nas
6819 $def_openal
6820 $def_openal_h
6821 $def_ossaudio
6822 $def_ossaudio_devdsp
6823 $def_ossaudio_devmixer
6824 $def_pulse
6825 $def_rsound
6826 $def_sgiaudio
6827 $def_sunaudio
6828 $def_win32waveout
6830 $def_ladspa
6831 $def_libbs2b
6834 /* input */
6835 $def_apple_ir
6836 $def_apple_remote
6837 $def_ioctl_bt848_h_name
6838 $def_ioctl_meteor_h_name
6839 $def_joystick
6840 $def_lirc
6841 $def_lircc
6842 $def_pvr
6843 $def_radio
6844 $def_radio_bsdbt848
6845 $def_radio_capture
6846 $def_radio_v4l
6847 $def_radio_v4l2
6848 $def_tv
6849 $def_tv_bsdbt848
6850 $def_tv_dshow
6851 $def_tv_v4l
6852 $def_tv_v4l1
6853 $def_tv_v4l2
6856 /* font stuff */
6857 $def_ass
6858 $def_bitmap_font
6859 $def_enca
6860 $def_fontconfig
6861 $def_freetype
6862 $def_fribidi
6865 /* networking */
6866 $def_closesocket
6867 $def_ftp
6868 $def_inet6
6869 $def_inet_aton
6870 $def_inet_pton
6871 $def_live
6872 $def_nemesi
6873 $def_networking
6874 $def_smb
6875 $def_socklen_t
6876 $def_vstream
6879 /* libvo options */
6880 $def_3dfx
6881 $def_aa
6882 $def_bl
6883 $def_caca
6884 $def_corevideo
6885 $def_dga
6886 $def_dga1
6887 $def_dga2
6888 $def_direct3d
6889 $def_directfb
6890 $def_directx
6891 $def_dvb
6892 $def_dvbin
6893 $def_dxr3
6894 $def_fbdev
6895 $def_ggi
6896 $def_ggiwmh
6897 $def_gif
6898 $def_gif_4
6899 $def_gif_tvt_hack
6900 $def_gl
6901 $def_gl_cocoa
6902 $def_gl_win32
6903 $def_gl_x11
6904 $def_gl_sdl
6905 $def_ivtv
6906 $def_jpeg
6907 $def_kva
6908 $def_md5sum
6909 $def_mga
6910 $def_mng
6911 $def_png
6912 $def_pnm
6913 $def_quartz
6914 $def_s3fb
6915 $def_sdl
6916 $def_sdl_sdl_h
6917 $def_svga
6918 $def_tdfxfb
6919 $def_tdfxvid
6920 $def_tga
6921 $def_v4l2
6922 $def_vdpau
6923 $def_vesa
6924 $def_vm
6925 $def_wii
6926 $def_x11
6927 $def_xdpms
6928 $def_xf86keysym
6929 $def_xinerama
6930 $def_xmga
6931 $def_xss
6932 $def_xv
6933 $def_xvr100
6934 $def_yuv4mpeg
6937 /* FFmpeg */
6938 $def_ffmpeg_internals
6940 $def_arpa_inet_h
6941 $def_bswap
6942 $def_dcbzl
6943 $def_exp2
6944 $def_exp2f
6945 $def_fast_64bit
6946 $def_fast_unaligned
6947 $def_llrint
6948 $def_log2
6949 $def_log2f
6950 $def_lrint
6951 $def_memalign_hack
6952 $def_mkstemp
6953 $def_posix_memalign
6954 $def_pthreads
6955 $def_round
6956 $def_roundf
6957 $def_threads
6958 $def_truncf
6959 $def_xform_asm
6960 $def_yasm
6962 #define HAVE_INLINE_ASM 1
6964 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
6965 #ifndef MP_DEBUG
6966 #define HAVE_EBP_AVAILABLE 1
6967 #else
6968 #define HAVE_EBP_AVAILABLE 0
6969 #endif
6971 #endif /* MPLAYER_CONFIG_H */
6974 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
6975 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
6977 #############################################################################
6979 cat << EOF
6981 Config files successfully generated by ./configure $configuration !
6983 Install prefix: $_prefix
6984 Data directory: $_datadir
6985 Config direct.: $_confdir
6987 Byte order: $_byte_order
6988 Optimizing for: $_optimizing
6990 Languages:
6991 Messages (in addition to English): $language_msg
6992 Manual pages: $language_man
6993 Documentation: $language_doc
6995 Enabled optional drivers:
6996 Input: $inputmodules
6997 Codecs: $codecmodules
6998 Audio output: $aomodules
6999 Video output: $vomodules
7001 Disabled optional drivers:
7002 Input: $noinputmodules
7003 Codecs: $nocodecmodules
7004 Audio output: $noaomodules
7005 Video output: $novomodules
7007 'config.h' and 'config.mak' contain your configuration options.
7008 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7009 compile *** DO NOT REPORT BUGS if you tweak these files ***
7011 'make' will now compile MPlayer and 'make install' will install it.
7012 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7017 cat <<EOF
7018 Check $TMPLOG if you wonder why an autodetection failed (make sure
7019 development headers/packages are installed).
7021 NOTE: The --enable-* parameters unconditionally force options on, completely
7022 skipping autodetection. This behavior is unlike what you may be used to from
7023 autoconf-based configure scripts that can decide to override you. This greater
7024 level of control comes at a price. You may have to provide the correct compiler
7025 and linker flags yourself.
7026 If you used one of these options (except --enable-runtime-cpudetection and
7027 similar ones that turn on internal features) and experience a compilation or
7028 linking failure, make sure you have passed the necessary compiler/linker flags
7029 to configure.
7031 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7035 if test "$warn_cflags" = yes; then
7036 cat <<EOF
7038 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7039 but:
7041 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7043 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7044 To do so, execute 'CFLAGS= ./configure <options>'
7049 # Last move:
7050 rm -rf "$mplayer_tmpdir"