configure: disable X11 opengl backend if Cocoa is enabled
[mplayer.git] / configure
blob4374d745b6d2f3a4c385202e2395a7cc20355464
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, look at the existing checks
23 # and try to use helper functions where you can.
25 # Furthermore you need to add the variable _feature to the list of default
26 # settings and set it to one of yes/no/auto. Also add appropriate
27 # --enable-feature/--disable-feature command line options.
28 # The results of the check should be written to config.h and config.mak
29 # at the end of this script. The variable names used for this should be
30 # uniform, i.e. if the option is named 'feature':
32 # _feature : should have a value of yes/no/auto
33 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
34 # _ld_feature : '-L/path/dir -lfeature' GCC options
36 #############################################################################
38 # Prevent locale nonsense from breaking basic text processing utils
39 export LC_ALL=C
41 # Store the configure line that was used
42 configuration="$*"
44 # Prefer these macros to full length text !
45 # These macros only return an error code - NO display is done
46 compile_check() {
47 source="$1"
48 shift
49 echo >> "$TMPLOG"
50 cat "$source" >> "$TMPLOG"
51 echo >> "$TMPLOG"
52 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
53 rm -f "$TMPEXE"
54 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
55 TMPRES="$?"
56 echo >> "$TMPLOG"
57 echo >> "$TMPLOG"
58 return "$TMPRES"
61 cc_check() {
62 compile_check $TMPC $@
65 cxx_check() {
66 compile_check $TMPCPP $@ -lstdc++
69 cflag_check() {
70 cat > $TMPC << EOF
71 int main(void) { return 0; }
72 EOF
73 compile_check $TMPC $@
76 header_check() {
77 cat > $TMPC << EOF
78 #include <$1>
79 int main(void) { return 0; }
80 EOF
81 shift
82 compile_check $TMPC $@
85 return_check() {
86 cat > $TMPC << EOF
87 #include <$1>
88 int main(void) { return $2; }
89 EOF
90 shift 2
91 compile_check $TMPC $@
94 statement_check() {
95 cat > $TMPC << EOF
96 #include <$1>
97 int main(void) { $2; return 0; }
98 EOF
99 shift
100 shift
101 compile_check $TMPC $@
104 define_statement_check() {
105 cat > $TMPC << EOF
106 #define $1
107 #include <$2>
108 int main(void) { $3; return 0; }
110 shift 3
111 compile_check $TMPC $@
114 return_statement_check() {
115 cat > $TMPC << EOF
116 #include <$1>
117 int main(void) { $2; return $3; }
119 shift 3
120 compile_check $TMPC $@
123 inline_asm_check() {
124 cat > $TMPC << EOF
125 int main(void) { __asm__ volatile ($1); return 0; }
127 shift
128 compile_check $TMPC $@
131 # The following checks are special and should only be used with broken and
132 # non-selfsufficient headers that do not include all of their dependencies.
134 header_check_broken() {
135 cat > $TMPC << EOF
136 #include <$1>
137 #include <$2>
138 int main(void) { return 0; }
140 shift
141 shift
142 compile_check $TMPC $@
145 statement_check_broken() {
146 cat > $TMPC << EOF
147 #include <$1>
148 #include <$2>
149 int main(void) { $3; return 0; }
151 shift 3
152 compile_check $TMPC $@
155 yasm_check() {
156 echo >> "$TMPLOG"
157 cat "$TMPS" >> "$TMPLOG"
158 echo >> "$TMPLOG"
159 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
160 rm -f "$TMPEXE"
161 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
162 TMPRES="$?"
163 echo >> "$TMPLOG"
164 echo >> "$TMPLOG"
165 return "$TMPRES"
168 pkg_config_add() {
169 unset IFS # shell should not be used for programming
170 echo >> "$TMPLOG"
171 echo "$_pkg_config --cflags $@" >> "$TMPLOG"
172 ctmp=$($_pkg_config --cflags "$@" 2>> "$TMPLOG") || return $?
173 echo >> "$TMPLOG"
174 echo "$_pkg_config --libs $@" >> "$TMPLOG"
175 ltmp=$($_pkg_config --libs "$@" 2>> "$TMPLOG") || return $?
176 echo >> "$TMPLOG"
177 echo "cflags: $ctmp" >> "$TMPLOG"
178 echo "libs: $ltmp" >> "$TMPLOG"
179 echo >> "$TMPLOG"
180 extra_cflags="$extra_cflags $ctmp"
181 extra_ldflags="$extra_ldflags $ltmp"
184 tmp_run() {
185 "$TMPEXE" >> "$TMPLOG" 2>&1
188 # Display error message, flushes tempfile, exit
189 die () {
190 echo
191 echo "Error: $@" >&2
192 echo >&2
193 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
194 echo "Check \"$TMPLOG\" if you do not understand why it failed."
195 exit 1
198 # OS test booleans functions
199 issystem() {
200 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
202 aix() { issystem "AIX"; }
203 amigaos() { issystem "AmigaOS"; }
204 beos() { issystem "BEOS"; }
205 bsdos() { issystem "BSD/OS"; }
206 cygwin() { issystem "CYGWIN"; }
207 darwin() { issystem "Darwin"; }
208 dragonfly() { issystem "DragonFly"; }
209 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
210 gnu() { issystem "GNU"; }
211 hpux() { issystem "HP-UX"; }
212 irix() { issystem "IRIX"; }
213 linux() { issystem "Linux"; }
214 mingw32() { issystem "MINGW32"; }
215 morphos() { issystem "MorphOS"; }
216 netbsd() { issystem "NetBSD"; }
217 openbsd() { issystem "OpenBSD"; }
218 os2() { issystem "OS/2"; }
219 qnx() { issystem "QNX"; }
220 sunos() { issystem "SunOS"; }
221 win32() { cygwin || mingw32; }
223 # arch test boolean functions
224 # x86/x86pc is used by QNX
225 x86_32() {
226 case "$host_arch" in
227 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
228 *) return 1 ;;
229 esac
232 x86_64() {
233 case "$host_arch" in
234 x86_64|amd64) return 0 ;;
235 *) return 1 ;;
236 esac
239 x86() {
240 x86_32 || x86_64
243 ppc() {
244 case "$host_arch" in
245 ppc|ppc64|powerpc|powerpc64) return 0;;
246 *) return 1;;
247 esac
250 alpha() {
251 case "$host_arch" in
252 alpha*) return 0;;
253 *) return 1;;
254 esac
257 arm() {
258 case "$host_arch" in
259 arm*) return 0;;
260 *) return 1;;
261 esac
264 # Use this before starting a check
265 echocheck() {
266 echo "============ Checking for $@ ============" >> "$TMPLOG"
267 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
270 # Use this to echo the results of a check
271 echores() {
272 if test "$res_comment" ; then
273 res_comment="($res_comment)"
275 echo "Result is: $@ $res_comment" >> "$TMPLOG"
276 echo "##########################################" >> "$TMPLOG"
277 echo "" >> "$TMPLOG"
278 echo "$@ $res_comment"
279 res_comment=""
281 #############################################################################
283 # Check how echo works in this /bin/sh
284 case $(echo -n) in
285 -n) _echo_n= _echo_c='\c' ;; # SysV echo
286 *) _echo_n='-n ' _echo_c= ;; # BSD echo
287 esac
289 msg_lang_all=''
290 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
291 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
292 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
294 show_help(){
295 cat << EOF
296 Usage: $0 [OPTIONS]...
298 Configuration:
299 -h, --help display this help and exit
301 Installation directories:
302 --prefix=DIR prefix directory for installation [/usr/local]
303 --bindir=DIR directory for installing binaries [PREFIX/bin]
304 --datadir=DIR directory for installing machine independent
305 data files (skins, etc) [PREFIX/share/mplayer]
306 --mandir=DIR directory for installing man pages [PREFIX/share/man]
307 --confdir=DIR directory for installing configuration files
308 [PREFIX/etc/mplayer]
309 --localedir=DIR directory for locale tree [PREFIX/share/locale]
310 --libdir=DIR directory for object code libraries [PREFIX/lib]
311 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
313 Optional features:
314 --disable-mplayer disable MPlayer compilation [enable]
315 --enable-termcap use termcap database for key codes [autodetect]
316 --enable-termios use termios database for key codes [autodetect]
317 --disable-iconv disable iconv for encoding conversion [autodetect]
318 --disable-langinfo do not use langinfo [autodetect]
319 --enable-lirc enable LIRC (remote control) support [autodetect]
320 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
321 --enable-joystick enable joystick support [disable]
322 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
323 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
324 --disable-vm disable X video mode extensions [autodetect]
325 --disable-xf86keysym disable support for multimedia keys [autodetect]
326 --enable-radio enable radio interface [disable]
327 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
328 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
329 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
330 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
331 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
332 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
333 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
334 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
335 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
336 --disable-networking disable networking [enable]
337 --enable-winsock2_h enable winsock2_h [autodetect]
338 --enable-smb enable Samba (SMB) input [autodetect]
339 --enable-live enable LIVE555 Streaming Media [disable]
340 --enable-nemesi enable Nemesi Streaming Media [autodetect]
341 --disable-vcd disable VCD support [autodetect]
342 --disable-bluray disable Blu-ray support [autodetect]
343 --disable-dvdnav disable libdvdnav [autodetect]
344 --disable-dvdread disable libdvdread [autodetect]
345 --disable-dvdread-internal disable internal libdvdread [autodetect]
346 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
347 --disable-cdparanoia disable cdparanoia [autodetect]
348 --disable-cddb disable cddb [autodetect]
349 --disable-bitmap-font disable bitmap font support [enable]
350 --disable-freetype disable FreeType 2 font rendering [autodetect]
351 --disable-fontconfig disable fontconfig font lookup [autodetect]
352 --disable-unrarexec disable using of UnRAR executable [enabled]
353 --disable-sortsub disable subtitle sorting [enabled]
354 --enable-fribidi enable the FriBiDi libs [autodetect]
355 --disable-enca disable ENCA charset oracle library [autodetect]
356 --enable-macosx-finder enable Mac OS X Finder invocation parameter
357 parsing [disabled]
358 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
359 --disable-inet6 disable IPv6 support [autodetect]
360 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
361 --disable-ftp disable FTP support [enabled]
362 --disable-vstream disable TiVo vstream client support [autodetect]
363 --disable-pthreads disable Posix threads support [autodetect]
364 --disable-w32threads disable Win32 threads support [autodetect]
365 --disable-libass disable subtitle rendering with libass [autodetect]
366 --enable-rpath enable runtime linker path for extra libs [disabled]
367 --disable-libpostproc disable postprocess filter (vf_pp) [autodetect]
369 Codecs:
370 --enable-gif enable GIF support [autodetect]
371 --enable-png enable PNG input/output support [autodetect]
372 --enable-mng enable MNG input support [autodetect]
373 --enable-jpeg enable JPEG input/output support [autodetect]
374 --enable-libcdio enable libcdio support [autodetect]
375 --disable-win32dll disable Win32 DLL support [autodetect]
376 --disable-qtx disable QuickTime codecs support [enabled]
377 --disable-xanim disable XAnim codecs support [enabled]
378 --disable-real disable RealPlayer codecs support [enabled]
379 --disable-xvid disable Xvid [autodetect]
380 --disable-libnut disable libnut [autodetect]
381 --enable-libav skip Libav autodetection [autodetect]
382 --disable-libvorbis disable libvorbis support [autodetect]
383 --disable-tremor disable Tremor [autodetect if no libvorbis]
384 --disable-speex disable Speex support [autodetect]
385 --enable-theora enable OggTheora libraries [autodetect]
386 --enable-faad enable FAAD2 (AAC) [autodetect]
387 --disable-ladspa disable LADSPA plugin support [autodetect]
388 --disable-libbs2b disable libbs2b audio filter support [autodetect]
389 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
390 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
391 --disable-mad disable libmad (MPEG audio) support [autodetect]
392 --enable-xmms enable XMMS input plugin support [disabled]
393 --enable-libdca enable libdca support [autodetect]
394 --disable-liba52 disable liba52 [autodetect]
395 --enable-musepack enable libmpcdec support (deprecated, libavcodec
396 Musepack decoder is preferred) [disabled]
398 Video output:
399 --enable-gl enable OpenGL video output [autodetect]
400 --enable-dga2 enable DGA 2 support [autodetect]
401 --enable-dga1 enable DGA 1 support [autodetect]
402 --enable-vesa enable VESA video output [autodetect]
403 --enable-svga enable SVGAlib video output [autodetect]
404 --enable-sdl enable SDL video output [autodetect]
405 --enable-kva enable KVA video output [autodetect]
406 --enable-aa enable AAlib video output [autodetect]
407 --enable-caca enable CACA video output [autodetect]
408 --enable-ggi enable GGI video output [autodetect]
409 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
410 --enable-direct3d enable Direct3D video output [autodetect]
411 --enable-directx enable DirectX video output [autodetect]
412 --enable-dxr3 enable DXR3/H+ video output [autodetect]
413 --enable-ivtv enable IVTV TV-Out video output [autodetect]
414 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
415 --enable-dvb enable DVB video output [autodetect]
416 --enable-mga enable mga_vid video output [autodetect]
417 --enable-xmga enable mga_vid X11 video output [autodetect]
418 --enable-xv enable Xv video output [autodetect]
419 --enable-vdpau enable VDPAU acceleration [autodetect]
420 --enable-vm enable XF86VidMode support [autodetect]
421 --enable-xinerama enable Xinerama support [autodetect]
422 --enable-x11 enable X11 video output [autodetect]
423 --enable-xshape enable XShape support [autodetect]
424 --disable-xss disable screensaver support via xss [autodetect]
425 --enable-fbdev enable FBDev video output [autodetect]
426 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
427 --enable-tdfxfb enable tdfxfb video output [disable]
428 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
429 --enable-wii enable Nintendo Wii/GameCube video output [disable]
430 --enable-directfb enable DirectFB video output [autodetect]
431 --enable-bl enable Blinkenlights video output [disable]
432 --enable-tdfxvid enable tdfx_vid video output [disable]
433 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
434 --disable-tga disable Targa video output [enable]
435 --disable-pnm disable PNM video output [enable]
436 --disable-md5sum disable md5sum video output [enable]
437 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
438 --disable-corevideo disable CoreVideo video output [autodetect]
439 --disable-cocoa disable Cocoa OpenGL backend [autodetect]
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=no
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 quicktime=auto
702 _macosx_finder=no
703 _macosx_bundle=auto
704 _sortsub=yes
705 _fribidi=auto
706 _enca=auto
707 _inet6=auto
708 _gethostbyname2=auto
709 _ftp=auto
710 _musepack=no
711 _vstream=auto
712 _pthreads=auto
713 _w32threads=auto
714 _ass=auto
715 _rpath=no
716 libpostproc=auto
717 _asmalign_pot=auto
718 _stream_cache=yes
719 _priority=no
720 def_dos_paths="#define HAVE_DOS_PATHS 0"
721 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
722 def_priority="#undef CONFIG_PRIORITY"
723 def_pthread_cache="#undef PTHREAD_CACHE"
724 need_shmem=yes
725 for ac_option do
726 case "$ac_option" in
727 --help|-help|-h)
728 show_help
730 --prefix=*)
731 _prefix=$(echo $ac_option | cut -d '=' -f 2)
733 --bindir=*)
734 _bindir=$(echo $ac_option | cut -d '=' -f 2)
736 --datadir=*)
737 _datadir=$(echo $ac_option | cut -d '=' -f 2)
739 --mandir=*)
740 _mandir=$(echo $ac_option | cut -d '=' -f 2)
742 --confdir=*)
743 _confdir=$(echo $ac_option | cut -d '=' -f 2)
745 --libdir=*)
746 _libdir=$(echo $ac_option | cut -d '=' -f 2)
748 --codecsdir=*)
749 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
751 --localedir=*)
752 _localedir=$(echo $ac_option | cut -d '=' -f 2)
755 --with-install=*)
756 _install=$(echo $ac_option | cut -d '=' -f 2 )
759 --with-sdl-config=*)
760 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
762 --with-dvdnav-config=*)
763 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --with-dvdread-config=*)
766 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
769 --extra-cflags=*)
770 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
772 --extra-ldflags=*)
773 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
775 --extra-libs=*)
776 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
778 --extra-libs-mplayer=*)
779 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
782 --target=*)
783 _target=$(echo $ac_option | cut -d '=' -f 2)
785 --cc=*)
786 _cc=$(echo $ac_option | cut -d '=' -f 2)
788 --host-cc=*)
789 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
791 --as=*)
792 _as=$(echo $ac_option | cut -d '=' -f 2)
794 --nm=*)
795 _nm=$(echo $ac_option | cut -d '=' -f 2)
797 --yasm=*)
798 _yasm=$(echo $ac_option | cut -d '=' -f 2)
800 --ar=*)
801 _ar=$(echo $ac_option | cut -d '=' -f 2)
803 --pkg-config=*)
804 _pkg_config=$(echo $ac_option | cut -d '=' -f 2)
806 --ranlib=*)
807 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
809 --windres=*)
810 _windres=$(echo $ac_option | cut -d '=' -f 2)
812 --charset=*)
813 _charset=$(echo $ac_option | cut -d '=' -f 2)
815 --language-doc=*)
816 language_doc=$(echo $ac_option | cut -d '=' -f 2)
818 --language-man=*)
819 language_man=$(echo $ac_option | cut -d '=' -f 2)
821 --language-msg=*)
822 language_msg=$(echo $ac_option | cut -d '=' -f 2)
824 --language=*)
825 language=$(echo $ac_option | cut -d '=' -f 2)
828 --enable-static)
829 _ld_static='-static'
831 --disable-static)
832 _ld_static=''
834 --enable-profile)
835 _profile='-p'
837 --disable-profile)
838 _profile=
840 --enable-debug)
841 _debug='-g'
843 --enable-debug=*)
844 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
846 --disable-debug)
847 _debug=
849 --enable-translation) _translation=yes ;;
850 --disable-translation) _translation=no ;;
851 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
852 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
853 --enable-cross-compile) _cross_compile=yes ;;
854 --disable-cross-compile) _cross_compile=no ;;
855 --enable-mplayer) _mplayer=yes ;;
856 --disable-mplayer) _mplayer=no ;;
857 --enable-x11) _x11=yes ;;
858 --disable-x11) _x11=no ;;
859 --enable-xshape) _xshape=yes ;;
860 --disable-xshape) _xshape=no ;;
861 --enable-xss) _xss=yes ;;
862 --disable-xss) _xss=no ;;
863 --enable-xv) _xv=yes ;;
864 --disable-xv) _xv=no ;;
865 --enable-vdpau) _vdpau=yes ;;
866 --disable-vdpau) _vdpau=no ;;
867 --enable-sdl) _sdl=yes ;;
868 --disable-sdl) _sdl=no ;;
869 --enable-kva) _kva=yes ;;
870 --disable-kva) _kva=no ;;
871 --enable-direct3d) _direct3d=yes ;;
872 --disable-direct3d) _direct3d=no ;;
873 --enable-directx) _directx=yes ;;
874 --disable-directx) _directx=no ;;
875 --enable-win32waveout) _win32waveout=yes ;;
876 --disable-win32waveout) _win32waveout=no ;;
877 --enable-nas) _nas=yes ;;
878 --disable-nas) _nas=no ;;
879 --enable-png) _png=yes ;;
880 --disable-png) _png=no ;;
881 --enable-mng) _mng=yes ;;
882 --disable-mng) _mng=no ;;
883 --enable-jpeg) _jpeg=yes ;;
884 --disable-jpeg) _jpeg=no ;;
885 --enable-pnm) _pnm=yes ;;
886 --disable-pnm) _pnm=no ;;
887 --enable-md5sum) _md5sum=yes ;;
888 --disable-md5sum) _md5sum=no ;;
889 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
890 --disable-yuv4mpeg) _yuv4mpeg=no ;;
891 --enable-gif) _gif=yes ;;
892 --disable-gif) _gif=no ;;
893 --enable-gl) _gl=yes ;;
894 --disable-gl) _gl=no ;;
895 --enable-ggi) _ggi=yes ;;
896 --disable-ggi) _ggi=no ;;
897 --enable-ggiwmh) _ggiwmh=yes ;;
898 --disable-ggiwmh) _ggiwmh=no ;;
899 --enable-aa) _aa=yes ;;
900 --disable-aa) _aa=no ;;
901 --enable-caca) _caca=yes ;;
902 --disable-caca) _caca=no ;;
903 --enable-svga) _svga=yes ;;
904 --disable-svga) _svga=no ;;
905 --enable-vesa) _vesa=yes ;;
906 --disable-vesa) _vesa=no ;;
907 --enable-fbdev) _fbdev=yes ;;
908 --disable-fbdev) _fbdev=no ;;
909 --enable-dvb) _dvb=yes ;;
910 --disable-dvb) _dvb=no ;;
911 --enable-dxr3) _dxr3=yes ;;
912 --disable-dxr3) _dxr3=no ;;
913 --enable-ivtv) _ivtv=yes ;;
914 --disable-ivtv) _ivtv=no ;;
915 --enable-v4l2) _v4l2=yes ;;
916 --disable-v4l2) _v4l2=no ;;
917 --enable-iconv) _iconv=yes ;;
918 --disable-iconv) _iconv=no ;;
919 --enable-langinfo) _langinfo=yes ;;
920 --disable-langinfo) _langinfo=no ;;
921 --enable-rtc) _rtc=yes ;;
922 --disable-rtc) _rtc=no ;;
923 --enable-libdv) _libdv=yes ;;
924 --disable-libdv) _libdv=no ;;
925 --enable-ossaudio) _ossaudio=yes ;;
926 --disable-ossaudio) _ossaudio=no ;;
927 --enable-arts) _arts=yes ;;
928 --disable-arts) _arts=no ;;
929 --enable-esd) _esd=yes ;;
930 --disable-esd) _esd=no ;;
931 --enable-rsound) _rsound=yes ;;
932 --disable-rsound) _rsound=no ;;
933 --enable-pulse) _pulse=yes ;;
934 --disable-pulse) _pulse=no ;;
935 --enable-jack) _jack=yes ;;
936 --disable-jack) _jack=no ;;
937 --enable-openal) _openal=yes ;;
938 --disable-openal) _openal=no ;;
939 --enable-kai) _kai=yes ;;
940 --disable-kai) _kai=no ;;
941 --enable-dart) _dart=yes ;;
942 --disable-dart) _dart=no ;;
943 --enable-mad) _mad=yes ;;
944 --disable-mad) _mad=no ;;
945 --enable-libcdio) _libcdio=yes ;;
946 --disable-libcdio) _libcdio=no ;;
947 --enable-libvorbis) _libvorbis=yes ;;
948 --disable-libvorbis) _libvorbis=no ;;
949 --enable-speex) _speex=yes ;;
950 --disable-speex) _speex=no ;;
951 --enable-tremor) _tremor=yes ;;
952 --disable-tremor) _tremor=no ;;
953 --enable-theora) _theora=yes ;;
954 --disable-theora) _theora=no ;;
955 --enable-mpg123) _mpg123=yes ;;
956 --disable-mpg123) _mpg123=no ;;
957 --enable-liba52) _liba52=yes ;;
958 --disable-liba52) _liba52=no ;;
959 --enable-libdca) _libdca=yes ;;
960 --disable-libdca) _libdca=no ;;
961 --enable-musepack) _musepack=yes ;;
962 --disable-musepack) _musepack=no ;;
963 --enable-faad) _faad=yes ;;
964 --disable-faad) _faad=no ;;
965 --enable-ladspa) _ladspa=yes ;;
966 --disable-ladspa) _ladspa=no ;;
967 --enable-libbs2b) _libbs2b=yes ;;
968 --disable-libbs2b) _libbs2b=no ;;
969 --enable-xmms) _xmms=yes ;;
970 --disable-xmms) _xmms=no ;;
971 --enable-vcd) _vcd=yes ;;
972 --disable-vcd) _vcd=no ;;
973 --enable-bluray) _bluray=yes ;;
974 --disable-bluray) _bluray=no ;;
975 --enable-dvdread) _dvdread=yes ;;
976 --disable-dvdread) _dvdread=no ;;
977 --enable-dvdread-internal) _dvdread_internal=yes ;;
978 --disable-dvdread-internal) _dvdread_internal=no ;;
979 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
980 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
981 --enable-dvdnav) _dvdnav=yes ;;
982 --disable-dvdnav) _dvdnav=no ;;
983 --enable-xanim) _xanim=yes ;;
984 --disable-xanim) _xanim=no ;;
985 --enable-real) _real=yes ;;
986 --disable-real) _real=no ;;
987 --enable-live) _live=yes ;;
988 --disable-live) _live=no ;;
989 --enable-nemesi) _nemesi=yes ;;
990 --disable-nemesi) _nemesi=no ;;
991 --enable-xinerama) _xinerama=yes ;;
992 --disable-xinerama) _xinerama=no ;;
993 --enable-mga) _mga=yes ;;
994 --disable-mga) _mga=no ;;
995 --enable-xmga) _xmga=yes ;;
996 --disable-xmga) _xmga=no ;;
997 --enable-vm) _vm=yes ;;
998 --disable-vm) _vm=no ;;
999 --enable-xf86keysym) _xf86keysym=yes ;;
1000 --disable-xf86keysym) _xf86keysym=no ;;
1001 --enable-sunaudio) _sunaudio=yes ;;
1002 --disable-sunaudio) _sunaudio=no ;;
1003 --enable-sgiaudio) _sgiaudio=yes ;;
1004 --disable-sgiaudio) _sgiaudio=no ;;
1005 --enable-alsa) _alsa=yes ;;
1006 --disable-alsa) _alsa=no ;;
1007 --enable-tv) _tv=yes ;;
1008 --disable-tv) _tv=no ;;
1009 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1010 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1011 --enable-tv-v4l1) _tv_v4l1=yes ;;
1012 --disable-tv-v4l1) _tv_v4l1=no ;;
1013 --enable-tv-v4l2) _tv_v4l2=yes ;;
1014 --disable-tv-v4l2) _tv_v4l2=no ;;
1015 --enable-tv-dshow) _tv_dshow=yes ;;
1016 --disable-tv-dshow) _tv_dshow=no ;;
1017 --enable-radio) _radio=yes ;;
1018 --enable-radio-capture) _radio_capture=yes ;;
1019 --disable-radio-capture) _radio_capture=no ;;
1020 --disable-radio) _radio=no ;;
1021 --enable-radio-v4l) _radio_v4l=yes ;;
1022 --disable-radio-v4l) _radio_v4l=no ;;
1023 --enable-radio-v4l2) _radio_v4l2=yes ;;
1024 --disable-radio-v4l2) _radio_v4l2=no ;;
1025 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1026 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1027 --enable-pvr) _pvr=yes ;;
1028 --disable-pvr) _pvr=no ;;
1029 --enable-fastmemcpy) _fastmemcpy=yes ;;
1030 --disable-fastmemcpy) _fastmemcpy=no ;;
1031 --enable-networking) networking=yes ;;
1032 --disable-networking) networking=no ;;
1033 --enable-winsock2_h) _winsock2_h=yes ;;
1034 --disable-winsock2_h) _winsock2_h=no ;;
1035 --enable-smb) _smb=yes ;;
1036 --disable-smb) _smb=no ;;
1037 --enable-joystick) _joystick=yes ;;
1038 --disable-joystick) _joystick=no ;;
1039 --enable-xvid) _xvid=yes ;;
1040 --disable-xvid) _xvid=no ;;
1041 --enable-libnut) _libnut=yes ;;
1042 --disable-libnut) _libnut=no ;;
1043 --enable-libav) ffmpeg=yes ;;
1044 --ffmpeg-source-dir=*)
1045 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1047 --enable-lirc) _lirc=yes ;;
1048 --disable-lirc) _lirc=no ;;
1049 --enable-lircc) _lircc=yes ;;
1050 --disable-lircc) _lircc=no ;;
1051 --enable-apple-remote) _apple_remote=yes ;;
1052 --disable-apple-remote) _apple_remote=no ;;
1053 --enable-apple-ir) _apple_ir=yes ;;
1054 --disable-apple-ir) _apple_ir=no ;;
1055 --enable-termcap) _termcap=yes ;;
1056 --disable-termcap) _termcap=no ;;
1057 --enable-termios) _termios=yes ;;
1058 --disable-termios) _termios=no ;;
1059 --enable-3dfx) _3dfx=yes ;;
1060 --disable-3dfx) _3dfx=no ;;
1061 --enable-s3fb) _s3fb=yes ;;
1062 --disable-s3fb) _s3fb=no ;;
1063 --enable-wii) _wii=yes ;;
1064 --disable-wii) _wii=no ;;
1065 --enable-tdfxfb) _tdfxfb=yes ;;
1066 --disable-tdfxfb) _tdfxfb=no ;;
1067 --disable-tdfxvid) _tdfxvid=no ;;
1068 --enable-tdfxvid) _tdfxvid=yes ;;
1069 --disable-xvr100) _xvr100=no ;;
1070 --enable-xvr100) _xvr100=yes ;;
1071 --disable-tga) _tga=no ;;
1072 --enable-tga) _tga=yes ;;
1073 --enable-directfb) _directfb=yes ;;
1074 --disable-directfb) _directfb=no ;;
1075 --enable-bl) _bl=yes ;;
1076 --disable-bl) _bl=no ;;
1077 --enable-shm) _shm=yes ;;
1078 --disable-shm) _shm=no ;;
1079 --enable-select) _select=yes ;;
1080 --disable-select) _select=no ;;
1081 --enable-cdparanoia) _cdparanoia=yes ;;
1082 --disable-cdparanoia) _cdparanoia=no ;;
1083 --enable-cddb) _cddb=yes ;;
1084 --disable-cddb) _cddb=no ;;
1085 --enable-big-endian) _big_endian=yes ;;
1086 --disable-big-endian) _big_endian=no ;;
1087 --enable-bitmap-font) _bitmap_font=yes ;;
1088 --disable-bitmap-font) _bitmap_font=no ;;
1089 --enable-freetype) _freetype=yes ;;
1090 --disable-freetype) _freetype=no ;;
1091 --enable-fontconfig) _fontconfig=yes ;;
1092 --disable-fontconfig) _fontconfig=no ;;
1093 --enable-unrarexec) _unrar_exec=yes ;;
1094 --disable-unrarexec) _unrar_exec=no ;;
1095 --enable-ftp) _ftp=yes ;;
1096 --disable-ftp) _ftp=no ;;
1097 --enable-vstream) _vstream=yes ;;
1098 --disable-vstream) _vstream=no ;;
1099 --enable-pthreads) _pthreads=yes ;;
1100 --disable-pthreads) _pthreads=no ;;
1101 --enable-w32threads) _w32threads=yes ;;
1102 --disable-w32threads) _w32threads=no ;;
1103 --enable-libass) _ass=yes ;;
1104 --disable-libass) _ass=no ;;
1105 --enable-rpath) _rpath=yes ;;
1106 --disable-rpath) _rpath=no ;;
1107 --enable-libpostproc) libpostproc=yes ;;
1108 --disable-libpostproc) libpostproc=no ;;
1110 --enable-fribidi) _fribidi=yes ;;
1111 --disable-fribidi) _fribidi=no ;;
1113 --enable-enca) _enca=yes ;;
1114 --disable-enca) _enca=no ;;
1116 --enable-inet6) _inet6=yes ;;
1117 --disable-inet6) _inet6=no ;;
1119 --enable-gethostbyname2) _gethostbyname2=yes ;;
1120 --disable-gethostbyname2) _gethostbyname2=no ;;
1122 --enable-dga1) _dga1=yes ;;
1123 --disable-dga1) _dga1=no ;;
1124 --enable-dga2) _dga2=yes ;;
1125 --disable-dga2) _dga2=no ;;
1127 --enable-qtx) _qtx=yes ;;
1128 --disable-qtx) _qtx=no ;;
1130 --enable-coreaudio) _coreaudio=yes ;;
1131 --disable-coreaudio) _coreaudio=no ;;
1132 --enable-corevideo) _corevideo=yes ;;
1133 --disable-corevideo) _corevideo=no ;;
1134 --enable-cocoa) _cocoa=yes ;;
1135 --disable-cocoa) _cocoa=no ;;
1136 --enable-macosx-finder) _macosx_finder=yes ;;
1137 --disable-macosx-finder) _macosx_finder=no ;;
1138 --enable-macosx-bundle) _macosx_bundle=yes ;;
1139 --disable-macosx-bundle) _macosx_bundle=no ;;
1141 --enable-sortsub) _sortsub=yes ;;
1142 --disable-sortsub) _sortsub=no ;;
1144 --enable-crash-debug) _crash_debug=yes ;;
1145 --disable-crash-debug) _crash_debug=no ;;
1146 --enable-sighandler) _sighandler=yes ;;
1147 --disable-sighandler) _sighandler=no ;;
1148 --enable-win32dll) _win32dll=yes ;;
1149 --disable-win32dll) _win32dll=no ;;
1151 --enable-sse) _sse=yes ;;
1152 --disable-sse) _sse=no ;;
1153 --enable-sse2) _sse2=yes ;;
1154 --disable-sse2) _sse2=no ;;
1155 --enable-ssse3) _ssse3=yes ;;
1156 --disable-ssse3) _ssse3=no ;;
1157 --enable-mmxext) _mmxext=yes ;;
1158 --disable-mmxext) _mmxext=no ;;
1159 --enable-3dnow) _3dnow=yes ;;
1160 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1161 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1162 --disable-3dnowext) _3dnowext=no ;;
1163 --enable-cmov) _cmov=yes ;;
1164 --disable-cmov) _cmov=no ;;
1165 --enable-fast-cmov) _fast_cmov=yes ;;
1166 --disable-fast-cmov) _fast_cmov=no ;;
1167 --enable-fast-clz) _fast_clz=yes ;;
1168 --disable-fast-clz) _fast_clz=no ;;
1169 --enable-altivec) _altivec=yes ;;
1170 --disable-altivec) _altivec=no ;;
1171 --enable-armv5te) _armv5te=yes ;;
1172 --disable-armv5te) _armv5te=no ;;
1173 --enable-armv6) _armv6=yes ;;
1174 --disable-armv6) _armv6=no ;;
1175 --enable-armv6t2) _armv6t2=yes ;;
1176 --disable-armv6t2) _armv6t2=no ;;
1177 --enable-armvfp) _armvfp=yes ;;
1178 --disable-armvfp) _armvfp=no ;;
1179 --enable-neon) neon=yes ;;
1180 --disable-neon) neon=no ;;
1181 --enable-iwmmxt) _iwmmxt=yes ;;
1182 --disable-iwmmxt) _iwmmxt=no ;;
1183 --enable-mmx) _mmx=yes ;;
1184 --disable-mmx) # 3Dnow! and MMX2 require MMX
1185 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1188 echo "Unknown parameter: $ac_option" >&2
1189 exit 1
1192 esac
1193 done
1195 # Atmos: moved this here, to be correct, if --prefix is specified
1196 test -z "$_bindir" && _bindir="$_prefix/bin"
1197 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1198 test -z "$_mandir" && _mandir="$_prefix/share/man"
1199 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1200 test -z "$_libdir" && _libdir="$_prefix/lib"
1201 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1203 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1204 test "$tmpdir" && break
1205 done
1207 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1208 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1210 TMPLOG="config.log"
1212 rm -f "$TMPLOG"
1213 echo Parameters configure was run with: > "$TMPLOG"
1214 if test -n "$CFLAGS" ; then
1215 echo ${_echo_n} CFLAGS="'$CFLAGS' ${_echo_c}" >> "$TMPLOG"
1217 if test -n "$PKG_CONFIG_PATH" ; then
1218 echo ${_echo_n} PKG_CONFIG_PATH="'$PKG_CONFIG_PATH' ${_echo_c}" >> "$TMPLOG"
1220 echo ./configure $configuration >> "$TMPLOG"
1221 echo >> "$TMPLOG"
1224 echocheck "cross compilation"
1225 echores $_cross_compile
1227 if test $_cross_compile = yes; then
1228 tmp_run() {
1229 return 0
1231 test "$_host_cc" || _host_cc=cc
1234 tool_prefix=""
1236 if test $_cross_compile = yes ; then
1237 # Usually cross-compiler prefixes match with the target triplet
1238 test -n "$_target" && tool_prefix="$_target"-
1241 test "$_ranlib" = auto && _ranlib="$tool_prefix"ranlib
1242 test "$_windres" = auto && _windres="$tool_prefix"windres
1243 test "$_ar" = auto && _ar="$tool_prefix"ar
1244 test "$_yasm" = auto && _yasm="$tool_prefix"yasm
1245 test "$_pkg_config" = auto && _pkg_config="$tool_prefix"pkg-config
1247 if test "$_cc" = auto ; then
1248 if test -n "$tool_prefix" ; then
1249 _cc="$tool_prefix"gcc
1250 else
1251 _cc=cc
1255 # Determine our OS name and CPU architecture
1256 if test -z "$_target" ; then
1257 # OS name
1258 system_name=$(uname -s 2>&1)
1259 case "$system_name" in
1260 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1262 Haiku)
1263 system_name=BeOS
1265 IRIX*)
1266 system_name=IRIX
1268 GNU/kFreeBSD)
1269 system_name=FreeBSD
1271 HP-UX*)
1272 system_name=HP-UX
1274 [cC][yY][gG][wW][iI][nN]*)
1275 system_name=CYGWIN
1277 MINGW32*)
1278 system_name=MINGW32
1280 OS/2*)
1281 system_name=OS/2
1284 system_name="$system_name-UNKNOWN"
1286 esac
1289 # host's CPU/instruction set
1290 host_arch=$(uname -p 2>&1)
1291 case "$host_arch" in
1292 i386|sparc|ppc|alpha|arm|mips|vax)
1294 powerpc) # Darwin returns 'powerpc'
1295 host_arch=ppc
1297 *) # uname -p on Linux returns 'unknown' for the processor type,
1298 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1300 # Maybe uname -m (machine hardware name) returns something we
1301 # recognize.
1303 # x86/x86pc is used by QNX
1304 case "$(uname -m 2>&1)" in
1305 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 ;;
1306 ia64) host_arch=ia64 ;;
1307 macppc|ppc) host_arch=ppc ;;
1308 ppc64) host_arch=ppc64 ;;
1309 alpha) host_arch=alpha ;;
1310 sparc) host_arch=sparc ;;
1311 sparc64) host_arch=sparc64 ;;
1312 parisc*|hppa*|9000*) host_arch=hppa ;;
1313 arm*|zaurus|cats) host_arch=arm ;;
1314 sh3|sh4|sh4a) host_arch=sh ;;
1315 s390) host_arch=s390 ;;
1316 s390x) host_arch=s390x ;;
1317 *mips*) host_arch=mips ;;
1318 vax) host_arch=vax ;;
1319 xtensa*) host_arch=xtensa ;;
1320 *) host_arch=UNKNOWN ;;
1321 esac
1323 esac
1324 else # if test -z "$_target"
1325 for i in 2 3; do
1326 system_name=$(echo $_target | cut -d '-' -f $i)
1327 case "$(echo $system_name | tr A-Z a-z)" in
1328 linux) system_name=Linux ;;
1329 freebsd) system_name=FreeBSD ;;
1330 gnu/kfreebsd) system_name=FreeBSD ;;
1331 netbsd) system_name=NetBSD ;;
1332 bsd/os) system_name=BSD/OS ;;
1333 openbsd) system_name=OpenBSD ;;
1334 dragonfly) system_name=DragonFly ;;
1335 sunos) system_name=SunOS ;;
1336 qnx) system_name=QNX ;;
1337 morphos) system_name=MorphOS ;;
1338 amigaos) system_name=AmigaOS ;;
1339 mingw32*) system_name=MINGW32 ;;
1340 *) continue ;;
1341 esac
1342 break
1343 done
1344 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1345 host_arch=$(echo $_target | cut -d '-' -f 1)
1346 if test $(echo $host_arch) != "x86_64" ; then
1347 host_arch=$(echo $host_arch | tr '_' '-')
1351 extra_cflags="-I. $extra_cflags"
1352 _timer=timer-linux.c
1353 _getch=getch2.c
1354 if freebsd ; then
1355 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1356 extra_cflags="$extra_cflags -I/usr/local/include"
1359 if netbsd || dragonfly ; then
1360 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1361 extra_cflags="$extra_cflags -I/usr/pkg/include"
1364 if darwin; then
1365 extra_cflags="-mdynamic-no-pic $extra_cflags"
1366 if test "$(basename $_cc)" != "clang" ; then
1367 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1369 _timer=timer-darwin.c
1372 if aix ; then
1373 extra_ldflags="$extra_ldflags -lC"
1376 if irix ; then
1377 _ranlib='ar -r'
1378 elif linux ; then
1379 _ranlib='true'
1382 if win32 ; then
1383 _exesuf=".exe"
1384 extra_cflags="$extra_cflags -fno-common"
1385 # -lwinmm is always needed for osdep/timer-win2.c
1386 extra_ldflags="$extra_ldflags -lwinmm"
1387 _pe_executable=yes
1388 _timer=timer-win2.c
1389 _priority=yes
1390 def_dos_paths="#define HAVE_DOS_PATHS 1"
1391 def_priority="#define CONFIG_PRIORITY 1"
1394 if mingw32 ; then
1395 _getch=getch2-win.c
1396 need_shmem=no
1397 extra_cflags="$extra_cflags -D__USE_MINGW_ANSI_STDIO=1"
1400 if amigaos ; then
1401 _select=no
1402 _sighandler=no
1403 _stream_cache=no
1404 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1405 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1408 if qnx ; then
1409 extra_ldflags="$extra_ldflags -lph"
1412 if os2 ; then
1413 _exesuf=".exe"
1414 _getch=getch2-os2.c
1415 need_shmem=no
1416 _priority=yes
1417 def_dos_paths="#define HAVE_DOS_PATHS 1"
1418 def_priority="#define CONFIG_PRIORITY 1"
1421 TMPC="$mplayer_tmpdir/tmp.c"
1422 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1423 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1424 TMPH="$mplayer_tmpdir/tmp.h"
1425 TMPS="$mplayer_tmpdir/tmp.S"
1427 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1428 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1432 # Checking CC version...
1433 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1434 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1435 echocheck "$_cc version"
1436 cc_vendor=intel
1437 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1438 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1439 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1440 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1441 # TODO verify older icc/ecc compatibility
1442 case $cc_version in
1444 cc_version="v. ?.??, bad"
1445 cc_fail=yes
1447 10.1|11.0|11.1)
1448 cc_version="$cc_version, ok"
1451 cc_version="$cc_version, bad"
1452 cc_fail=yes
1454 esac
1455 echores "$cc_version"
1456 else
1457 for _cc in "$_cc" gcc cc ; do
1458 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1459 if test "$cc_name_tmp" = "gcc"; then
1460 cc_name=$cc_name_tmp
1461 echocheck "$_cc version"
1462 cc_vendor=gnu
1463 cc_version=$($_cc -dumpversion 2>&1)
1464 case $cc_version in
1465 2.96*)
1466 cc_fail=yes
1469 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1470 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1471 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1473 esac
1474 echores "$cc_version"
1475 break
1477 if $_cc -v 2>&1 | grep -q "clang"; then
1478 echocheck "$_cc version"
1479 cc_vendor=clang
1480 cc_version=$($_cc -dumpversion 2>&1)
1481 res_comment="experimental support only"
1482 echores "clang $cc_version"
1483 break
1485 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1486 if test "$cc_name_tmp" = "Sun C"; then
1487 echocheck "$_cc version"
1488 cc_vendor=sun
1489 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1490 res_comment="experimental support only"
1491 echores "Sun C $cc_version"
1492 break
1494 done
1495 fi # icc
1496 test "$cc_fail" = yes && die "unsupported compiler version"
1498 echocheck "working compiler"
1499 cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
1500 echo "yes"
1502 if test -z "$_target" && x86 ; then
1503 cat > $TMPC << EOF
1504 int main(void) {
1505 int test[(int)sizeof(char *)-7];
1506 return 0;
1509 cc_check && host_arch=x86_64 || host_arch=i386
1512 echocheck "host cc"
1513 test "$_host_cc" || _host_cc=$_cc
1514 echores $_host_cc
1516 echo "Detected operating system: $system_name"
1517 echo "Detected host architecture: $host_arch"
1519 # ---
1521 # now that we know what compiler should be used for compilation, try to find
1522 # out which assembler is used by the $_cc compiler
1523 if test "$_as" = auto ; then
1524 _as=$($_cc -print-prog-name=as)
1525 test -z "$_as" && _as=as
1528 if test "$_nm" = auto ; then
1529 _nm=$($_cc -print-prog-name=nm)
1530 test -z "$_nm" && _nm=nm
1533 # XXX: this should be ok..
1534 _cpuinfo="echo"
1536 if test "$_runtime_cpudetection" = no ; then
1538 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1539 # FIXME: Remove the cygwin check once AMD CPUs are supported
1540 if test -r /proc/cpuinfo && ! cygwin; then
1541 # Linux with /proc mounted, extract CPU information from it
1542 _cpuinfo="cat /proc/cpuinfo"
1543 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1544 # FreeBSD with Linux emulation /proc mounted,
1545 # extract CPU information from it
1546 # Don't use it on x86 though, it never reports 3Dnow
1547 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1548 elif darwin && ! x86 ; then
1549 # use hostinfo on Darwin
1550 _cpuinfo="hostinfo"
1551 elif aix; then
1552 # use 'lsattr' on AIX
1553 _cpuinfo="lsattr -E -l proc0 -a type"
1554 elif x86; then
1555 # all other OSes try to extract CPU information from a small helper
1556 # program cpuinfo instead
1557 $_cc -o cpuinfo$_exesuf cpuinfo.c
1558 _cpuinfo="./cpuinfo$_exesuf"
1561 if x86 ; then
1562 # gather more CPU information
1563 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1564 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1565 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1566 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1567 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1569 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1571 pparam=$(echo $exts | sed -e s/xmm/sse/ -e s/kni/sse/)
1572 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1573 pparam=$(echo $pparam | sed -e 's/sse/sse mmxext/')
1575 for ext in $pparam ; do
1576 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1577 done
1579 echocheck "CPU vendor"
1580 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1582 echocheck "CPU type"
1583 echores "$pname"
1586 fi # test "$_runtime_cpudetection" = no
1588 if x86 && test "$_runtime_cpudetection" = no ; then
1589 extcheck() {
1590 if test "$1" = kernel_check ; then
1591 echocheck "kernel support of $2"
1592 cat > $TMPC <<EOF
1593 #include <stdlib.h>
1594 #include <signal.h>
1595 static void catch(int sig) { exit(1); }
1596 int main(void) {
1597 signal(SIGILL, catch);
1598 __asm__ volatile ("$3":::"memory"); return 0;
1602 if cc_check && tmp_run ; then
1603 eval _$2=yes
1604 echores "yes"
1605 _optimizing="$_optimizing $2"
1606 return 0
1607 else
1608 eval _$2=no
1609 echores "failed"
1610 echo "It seems that your kernel does not correctly support $2."
1611 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1612 return 1
1615 return 0
1618 extcheck $_mmx "mmx" "emms"
1619 extcheck $_mmxext "mmxext" "sfence"
1620 extcheck $_3dnow "3dnow" "femms"
1621 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1622 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1623 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1624 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1625 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1627 if test "$_gcc3_ext" != ""; then
1628 # if we had to disable sse/sse2 because the active kernel does not
1629 # support this instruction set extension, we also have to tell
1630 # gcc3 to not generate sse/sse2 instructions for normal C code
1631 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1637 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1638 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1639 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1640 subarch_all='X86_32 X86_64 PPC64'
1641 case "$host_arch" in
1642 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1643 arch='x86'
1644 subarch='x86_32'
1645 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1646 iproc=486
1647 proc=i486
1650 if test "$_runtime_cpudetection" = no ; then
1651 case "$pvendor" in
1652 AuthenticAMD)
1653 case "$pfamily" in
1654 3) proc=i386 iproc=386 ;;
1655 4) proc=i486 iproc=486 ;;
1656 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1657 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1658 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1659 proc=k6-3
1660 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1661 proc=geode
1662 elif test "$pmodel" -ge 8; then
1663 proc=k6-2
1664 elif test "$pmodel" -ge 6; then
1665 proc=k6
1666 else
1667 proc=i586
1670 6) iproc=686
1671 # It's a bit difficult to determine the correct type of Family 6
1672 # AMD CPUs just from their signature. Instead, we check directly
1673 # whether it supports SSE.
1674 if test "$_sse" = yes; then
1675 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1676 proc=athlon-xp
1677 else
1678 # Again, gcc treats athlon and athlon-tbird similarly.
1679 proc=athlon
1682 15) iproc=686
1683 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1684 # caught and remedied in the optimization tests below.
1685 proc=k8
1688 *) proc=amdfam10 iproc=686
1689 test $_fast_clz = "auto" && _fast_clz=yes
1691 esac
1693 GenuineIntel)
1694 case "$pfamily" in
1695 3) proc=i386 iproc=386 ;;
1696 4) proc=i486 iproc=486 ;;
1697 5) iproc=586
1698 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1699 proc=pentium-mmx # 4 is desktop, 8 is mobile
1700 else
1701 proc=i586
1704 6) iproc=686
1705 if test "$pmodel" -ge 15; then
1706 proc=core2
1707 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1708 proc=pentium-m
1709 elif test "$pmodel" -ge 7; then
1710 proc=pentium3
1711 elif test "$pmodel" -ge 3; then
1712 proc=pentium2
1713 else
1714 proc=i686
1716 test $_fast_clz = "auto" && _fast_clz=yes
1718 15) iproc=686
1719 # A nocona in 32-bit mode has no more capabilities than a prescott.
1720 if test "$pmodel" -ge 3; then
1721 proc=prescott
1722 else
1723 proc=pentium4
1724 test $_fast_clz = "auto" && _fast_clz=yes
1726 test $_fast_cmov = "auto" && _fast_cmov=no
1728 *) proc=prescott iproc=686 ;;
1729 esac
1731 CentaurHauls)
1732 case "$pfamily" in
1733 5) iproc=586
1734 if test "$pmodel" -ge 8; then
1735 proc=winchip2
1736 elif test "$pmodel" -ge 4; then
1737 proc=winchip-c6
1738 else
1739 proc=i586
1742 6) iproc=686
1743 if test "$pmodel" -ge 9; then
1744 proc=c3-2
1745 else
1746 proc=c3
1747 iproc=586
1750 *) proc=i686 iproc=i686 ;;
1751 esac
1753 unknown)
1754 case "$pfamily" in
1755 3) proc=i386 iproc=386 ;;
1756 4) proc=i486 iproc=486 ;;
1757 *) proc=i586 iproc=586 ;;
1758 esac
1761 proc=i586 iproc=586 ;;
1762 esac
1763 test $_fast_clz = "auto" && _fast_clz=no
1764 fi # test "$_runtime_cpudetection" = no
1767 # check that gcc supports our CPU, if not, fall back to earlier ones
1768 # LGB: check -mcpu and -march swithing step by step with enabling
1769 # to fall back till 386.
1771 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1773 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1774 cpuopt=-mtune
1775 else
1776 cpuopt=-mcpu
1779 echocheck "GCC & CPU optimization abilities"
1780 if test "$_runtime_cpudetection" = no ; then
1781 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1782 cflag_check -march=native && proc=native
1784 if test "$proc" = "amdfam10"; then
1785 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1787 if test "$proc" = "k8"; then
1788 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1790 if test "$proc" = "athlon-xp"; then
1791 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1793 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1794 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1796 if test "$proc" = "k6" || test "$proc" = "c3"; then
1797 if ! cflag_check -march=$proc $cpuopt=$proc; then
1798 if cflag_check -march=i586 $cpuopt=i686; then
1799 proc=i586-i686
1800 else
1801 proc=i586
1805 if test "$proc" = "prescott" ; then
1806 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1808 if test "$proc" = "core2" ; then
1809 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1811 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
1812 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1814 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1815 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1817 if test "$proc" = "i586"; then
1818 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1820 if test "$proc" = "i486" ; then
1821 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1823 if test "$proc" = "i386" ; then
1824 cflag_check -march=$proc $cpuopt=$proc || proc=error
1826 if test "$proc" = "error" ; then
1827 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1828 _mcpu=""
1829 _march=""
1830 _optimizing=""
1831 elif test "$proc" = "i586-i686"; then
1832 _march="-march=i586"
1833 _mcpu="$cpuopt=i686"
1834 _optimizing="$proc"
1835 else
1836 _march="-march=$proc"
1837 _mcpu="$cpuopt=$proc"
1838 _optimizing="$proc"
1840 else # if test "$_runtime_cpudetection" = no
1841 _mcpu="$cpuopt=generic"
1842 # at least i486 required, for bswap instruction
1843 _march="-march=i486"
1844 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1845 cflag_check $_mcpu || _mcpu=""
1846 cflag_check $_march $_mcpu || _march=""
1849 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1850 ## autodetected mcpu/march parameters
1851 if test "$_target" ; then
1852 # TODO: it may be a good idea to check GCC and fall back in all cases
1853 if test "$host_arch" = "i586-i686"; then
1854 _march="-march=i586"
1855 _mcpu="$cpuopt=i686"
1856 else
1857 _march="-march=$host_arch"
1858 _mcpu="$cpuopt=$host_arch"
1861 proc="$host_arch"
1863 case "$proc" in
1864 i386) iproc=386 ;;
1865 i486) iproc=486 ;;
1866 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1867 i686|athlon*|pentium*) iproc=686 ;;
1868 *) iproc=586 ;;
1869 esac
1872 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1873 _fast_cmov="yes"
1874 else
1875 _fast_cmov="no"
1877 test $_fast_clz = "auto" && _fast_clz=yes
1879 echores "$proc"
1882 ia64)
1883 arch='ia64'
1884 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1885 iproc='ia64'
1888 x86_64|amd64)
1889 arch='x86'
1890 subarch='x86_64'
1891 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1892 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1893 iproc='x86_64'
1895 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1896 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1897 cpuopt=-mtune
1898 else
1899 cpuopt=-mcpu
1901 if test "$_runtime_cpudetection" = no ; then
1902 case "$pvendor" in
1903 AuthenticAMD)
1904 case "$pfamily" in
1905 15) proc=k8
1906 test $_fast_clz = "auto" && _fast_clz=no
1908 *) proc=amdfam10;;
1909 esac
1911 GenuineIntel)
1912 case "$pfamily" in
1913 6) proc=core2;;
1915 # 64-bit prescotts exist, but as far as GCC is concerned they
1916 # have the same capabilities as a nocona.
1917 proc=nocona
1918 test $_fast_cmov = "auto" && _fast_cmov=no
1919 test $_fast_clz = "auto" && _fast_clz=no
1921 esac
1924 proc=error;;
1925 esac
1926 fi # test "$_runtime_cpudetection" = no
1928 echocheck "GCC & CPU optimization abilities"
1929 # This is a stripped-down version of the i386 fallback.
1930 if test "$_runtime_cpudetection" = no ; then
1931 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1932 cflag_check -march=native && proc=native
1934 # --- AMD processors ---
1935 if test "$proc" = "amdfam10"; then
1936 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1938 if test "$proc" = "k8"; then
1939 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1941 # This will fail if gcc version < 3.3, which is ok because earlier
1942 # versions don't really support 64-bit on amd64.
1943 # Is this a valid assumption? -Corey
1944 if test "$proc" = "athlon-xp"; then
1945 cflag_check -march=$proc $cpuopt=$proc || proc=error
1947 # --- Intel processors ---
1948 if test "$proc" = "core2"; then
1949 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1951 if test "$proc" = "x86-64"; then
1952 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1954 if test "$proc" = "nocona"; then
1955 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1957 if test "$proc" = "pentium4"; then
1958 cflag_check -march=$proc $cpuopt=$proc || proc=error
1961 _march="-march=$proc"
1962 _mcpu="$cpuopt=$proc"
1963 if test "$proc" = "error" ; then
1964 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1965 _mcpu=""
1966 _march=""
1968 else # if test "$_runtime_cpudetection" = no
1969 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1970 _march="-march=x86-64"
1971 _mcpu="$cpuopt=generic"
1972 cflag_check $_mcpu || _mcpu="x86-64"
1973 cflag_check $_mcpu || _mcpu=""
1974 cflag_check $_march $_mcpu || _march=""
1977 _optimizing="$proc"
1978 test $_fast_cmov = "auto" && _fast_cmov=yes
1979 test $_fast_clz = "auto" && _fast_clz=yes
1981 echores "$proc"
1984 sparc|sparc64)
1985 arch='sparc'
1986 iproc='sparc'
1987 if test "$host_arch" = "sparc64" ; then
1988 _vis='yes'
1989 proc='ultrasparc'
1990 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1991 elif sunos ; then
1992 echocheck "CPU type"
1993 karch=$(uname -m)
1994 case "$(echo $karch)" in
1995 sun4) proc=v7 ;;
1996 sun4c) proc=v7 ;;
1997 sun4d) proc=v8 ;;
1998 sun4m) proc=v8 ;;
1999 sun4u) proc=ultrasparc _vis='yes' ;;
2000 sun4v) proc=v9 ;;
2001 *) proc=v8 ;;
2002 esac
2003 echores "$proc"
2004 else
2005 proc=v8
2007 _mcpu="-mcpu=$proc"
2008 _optimizing="$proc"
2011 arm*)
2012 arch='arm'
2013 iproc='arm'
2016 avr32)
2017 arch='avr32'
2018 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2019 iproc='avr32'
2020 test $_fast_clz = "auto" && _fast_clz=yes
2023 sh|sh4)
2024 arch='sh4'
2025 iproc='sh4'
2028 ppc|ppc64|powerpc|powerpc64)
2029 arch='ppc'
2030 def_dcbzl='#define HAVE_DCBZL 0'
2031 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2032 iproc='ppc'
2034 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2035 subarch='ppc64'
2036 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2038 echocheck "CPU type"
2039 case $system_name in
2040 Linux)
2041 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2042 if test -n "$($_cpuinfo | grep altivec)"; then
2043 test $_altivec = auto && _altivec=yes
2046 Darwin)
2047 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2048 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2049 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2050 test $_altivec = auto && _altivec=yes
2053 NetBSD)
2054 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2055 case $cc_version in
2056 2*|3.0*|3.1*|3.2*|3.3*)
2059 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2060 test $_altivec = auto && _altivec=yes
2063 esac
2065 AIX)
2066 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2068 esac
2069 if test "$_altivec" = yes; then
2070 echores "$proc altivec"
2071 else
2072 _altivec=no
2073 echores "$proc"
2076 echocheck "GCC & CPU optimization abilities"
2078 if test -n "$proc"; then
2079 case "$proc" in
2080 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2081 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2082 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2083 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2084 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2085 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2086 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2087 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2088 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2089 *) ;;
2090 esac
2091 # gcc 3.1(.1) and up supports 7400 and 7450
2092 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2093 case "$proc" in
2094 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2095 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2096 *) ;;
2097 esac
2099 # gcc 3.2 and up supports 970
2100 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2101 case "$proc" in
2102 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2103 def_dcbzl='#define HAVE_DCBZL 1' ;;
2104 *) ;;
2105 esac
2107 # gcc 3.3 and up supports POWER4
2108 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2109 case "$proc" in
2110 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2111 *) ;;
2112 esac
2114 # gcc 3.4 and up supports 440*
2115 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2116 case "$proc" in
2117 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2118 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2119 *) ;;
2120 esac
2122 # gcc 4.0 and up supports POWER5
2123 if test "$_cc_major" -ge "4"; then
2124 case "$proc" in
2125 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2126 *) ;;
2127 esac
2131 if test -n "$_mcpu"; then
2132 _optimizing=$(echo $_mcpu | cut -c 8-)
2133 echores "$_optimizing"
2134 else
2135 echores "none"
2138 test $_fast_clz = "auto" && _fast_clz=yes
2142 alpha*)
2143 arch='alpha'
2144 iproc='alpha'
2145 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2147 echocheck "CPU type"
2148 cat > $TMPC << EOF
2149 int main(void) {
2150 unsigned long ver, mask;
2151 __asm__ ("implver %0" : "=r" (ver));
2152 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2153 printf("%ld-%x\n", ver, ~mask);
2154 return 0;
2157 $_cc -o "$TMPEXE" "$TMPC"
2158 case $("$TMPEXE") in
2160 0-0) proc="ev4"; _mvi="0";;
2161 1-0) proc="ev5"; _mvi="0";;
2162 1-1) proc="ev56"; _mvi="0";;
2163 1-101) proc="pca56"; _mvi="1";;
2164 2-303) proc="ev6"; _mvi="1";;
2165 2-307) proc="ev67"; _mvi="1";;
2166 2-1307) proc="ev68"; _mvi="1";;
2167 esac
2168 echores "$proc"
2170 echocheck "GCC & CPU optimization abilities"
2171 if test "$proc" = "ev68" ; then
2172 cc_check -mcpu=$proc || proc=ev67
2174 if test "$proc" = "ev67" ; then
2175 cc_check -mcpu=$proc || proc=ev6
2177 _mcpu="-mcpu=$proc"
2178 echores "$proc"
2180 test $_fast_clz = "auto" && _fast_clz=yes
2182 _optimizing="$proc"
2185 mips*)
2186 arch='mips'
2187 iproc='mips'
2189 if irix ; then
2190 echocheck "CPU type"
2191 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2192 case "$(echo $proc)" in
2193 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2194 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2195 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2196 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2197 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2198 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2199 esac
2200 # gcc < 3.x does not support -mtune.
2201 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2202 _mcpu=''
2204 echores "$proc"
2207 test $_fast_clz = "auto" && _fast_clz=yes
2211 hppa)
2212 arch='pa_risc'
2213 iproc='PA-RISC'
2216 s390)
2217 arch='s390'
2218 iproc='390'
2221 s390x)
2222 arch='s390x'
2223 iproc='390x'
2226 vax)
2227 arch='vax'
2228 iproc='vax'
2231 xtensa)
2232 arch='xtensa'
2233 iproc='xtensa'
2236 generic)
2237 arch='generic'
2241 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2242 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2243 die "unsupported architecture $host_arch"
2245 esac # case "$host_arch" in
2247 if test "$_runtime_cpudetection" = yes ; then
2248 if x86 ; then
2249 test "$_cmov" != no && _cmov=yes
2250 x86_32 && _cmov=no
2251 test "$_mmx" != no && _mmx=yes
2252 test "$_3dnow" != no && _3dnow=yes
2253 test "$_3dnowext" != no && _3dnowext=yes
2254 test "$_mmxext" != no && _mmxext=yes
2255 test "$_sse" != no && _sse=yes
2256 test "$_sse2" != no && _sse2=yes
2257 test "$_ssse3" != no && _ssse3=yes
2259 if ppc; then
2260 _altivec=yes
2265 # endian testing
2266 echocheck "byte order"
2267 if test "$_big_endian" = auto ; then
2268 cat > $TMPC <<EOF
2269 short ascii_name[] = {
2270 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2271 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2272 int main(void) { return (long)ascii_name; }
2274 if cc_check ; then
2275 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2276 _big_endian=yes
2277 else
2278 _big_endian=no
2280 else
2281 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2284 if test "$_big_endian" = yes ; then
2285 _byte_order='big-endian'
2286 def_words_endian='#define WORDS_BIGENDIAN 1'
2287 def_bigendian='#define HAVE_BIGENDIAN 1'
2288 else
2289 _byte_order='little-endian'
2290 def_words_endian='#undef WORDS_BIGENDIAN'
2291 def_bigendian='#define HAVE_BIGENDIAN 0'
2293 echores "$_byte_order"
2296 echocheck "extern symbol prefix"
2297 cat > $TMPC << EOF
2298 int ff_extern;
2300 cc_check -c || die "Symbol mangling check failed."
2301 sym=$($_nm -P -g $TMPEXE)
2302 extern_prefix=${sym%%ff_extern*}
2303 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2304 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2305 echores $extern_prefix
2308 echocheck "assembler support of -pipe option"
2309 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2310 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2313 if darwin && test "$cc_vendor" = "gnu" ; then
2314 echocheck "GCC support of -mstackrealign"
2315 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2316 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2317 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2318 # wrong code with this flag, but this can be worked around by adding
2319 # -fno-unit-at-a-time as described in the blog post at
2320 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2321 cat > $TMPC << EOF
2322 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2323 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2325 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2326 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2327 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2328 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2329 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2332 # Checking for CFLAGS
2333 _install_strip="-s"
2334 if test "$_profile" != "" || test "$_debug" != "" ; then
2335 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2336 WARNFLAGS="-W -Wall"
2337 _install_strip=
2338 elif test -z "$CFLAGS" ; then
2339 if test "$cc_vendor" = "intel" ; then
2340 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2341 WARNFLAGS="-wd167 -wd556 -wd144"
2342 elif test "$cc_vendor" = "sun" ; then
2343 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2344 elif test "$cc_vendor" = "clang"; then
2345 CFLAGS="-O2 $_march $_pipe"
2346 WARNFLAGS="-Wall -Wno-switch-enum -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes"
2347 ERRORFLAGS="-Werror=implicit-function-declaration"
2348 elif test "$cc_vendor" != "gnu" ; then
2349 CFLAGS="-O2 $_march $_mcpu $_pipe"
2350 else
2351 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2352 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2353 ERRORFLAGS="-Werror-implicit-function-declaration"
2354 extra_ldflags="$extra_ldflags -ffast-math"
2356 else
2357 warn_cflags=yes
2360 if test "$cc_vendor" = "gnu" ; then
2361 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2362 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2363 # that's the only variable specific to C now, and this option is not valid
2364 # for C++.
2365 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2366 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2367 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2368 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2369 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2370 else
2371 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2374 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2375 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2378 if test -n "$LDFLAGS" ; then
2379 extra_ldflags="$extra_ldflags $LDFLAGS"
2380 warn_cflags=yes
2381 elif test "$cc_vendor" = "intel" ; then
2382 extra_ldflags="$extra_ldflags -i-static"
2384 if test -n "$CPPFLAGS" ; then
2385 extra_cflags="$extra_cflags $CPPFLAGS"
2386 warn_cflags=yes
2391 if x86_32 ; then
2392 # Checking assembler (_as) compatibility...
2393 # Added workaround for older as that reads from stdin by default - atmos
2394 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2395 echocheck "assembler ($_as $as_version)"
2397 _pref_as_version='2.9.1'
2398 echo 'nop' > $TMPS
2399 if test "$_mmx" = yes ; then
2400 echo 'emms' >> $TMPS
2402 if test "$_3dnow" = yes ; then
2403 _pref_as_version='2.10.1'
2404 echo 'femms' >> $TMPS
2406 if test "$_3dnowext" = yes ; then
2407 _pref_as_version='2.10.1'
2408 echo 'pswapd %mm0, %mm0' >> $TMPS
2410 if test "$_mmxext" = yes ; then
2411 _pref_as_version='2.10.1'
2412 echo 'movntq %mm0, (%eax)' >> $TMPS
2414 if test "$_sse" = yes ; then
2415 _pref_as_version='2.10.1'
2416 echo 'xorps %xmm0, %xmm0' >> $TMPS
2418 #if test "$_sse2" = yes ; then
2419 # _pref_as_version='2.11'
2420 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2422 if test "$_cmov" = yes ; then
2423 _pref_as_version='2.10.1'
2424 echo 'cmovb %eax, %ebx' >> $TMPS
2426 if test "$_ssse3" = yes ; then
2427 _pref_as_version='2.16.92'
2428 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2430 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2432 if test "$as_verc_fail" != yes ; then
2433 echores "ok"
2434 else
2435 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2436 echores "failed"
2437 die "obsolete binutils version"
2440 fi #if x86_32
2443 echocheck "PIC"
2444 pic=no
2445 cat > $TMPC << EOF
2446 int main(void) {
2447 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2448 #error PIC not enabled
2449 #endif
2450 return 0;
2453 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2454 echores $pic
2457 if x86 ; then
2459 echocheck ".align is a power of two"
2460 if test "$_asmalign_pot" = auto ; then
2461 _asmalign_pot=no
2462 inline_asm_check '".align 3"' && _asmalign_pot=yes
2464 if test "$_asmalign_pot" = "yes" ; then
2465 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2466 else
2467 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2469 echores $_asmalign_pot
2472 echocheck "ebx availability"
2473 ebx_available=no
2474 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2475 cat > $TMPC << EOF
2476 int main(void) {
2477 int x;
2478 __asm__ volatile(
2479 "xor %0, %0"
2480 :"=b"(x)
2481 // just adding ebx to clobber list seems unreliable with some
2482 // compilers, e.g. Haiku's gcc 2.95
2484 // and the above check does not work for OSX 64 bit...
2485 __asm__ volatile("":::"%ebx");
2486 return 0;
2489 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2490 echores $ebx_available
2493 echocheck "yasm"
2494 if test -z "$YASMFLAGS" ; then
2495 if darwin ; then
2496 x86_64 && objformat="macho64" || objformat="macho"
2497 elif win32 ; then
2498 objformat="win32"
2499 else
2500 objformat="elf"
2502 # currently tested for Linux x86, x86_64
2503 YASMFLAGS="-f $objformat"
2504 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2505 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2506 case "$objformat" in
2507 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2508 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2509 esac
2510 else
2511 warn_cflags=yes
2514 echo "pabsw xmm0, xmm0" > $TMPS
2515 yasm_check || _yasm=""
2516 if test $_yasm ; then
2517 def_yasm='#define HAVE_YASM 1'
2518 have_yasm="yes"
2519 echores "$_yasm"
2520 else
2521 def_yasm='#define HAVE_YASM 0'
2522 have_yasm="no"
2523 echores "no"
2526 echocheck "bswap"
2527 def_bswap='#define HAVE_BSWAP 0'
2528 echo 'bswap %eax' > $TMPS
2529 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2530 echores "$bswap"
2531 fi #if x86
2534 #FIXME: This should happen before the check for CFLAGS..
2535 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2536 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2538 # check if AltiVec is supported by the compiler, and how to enable it
2539 echocheck "GCC AltiVec flags"
2540 if $(cflag_check -maltivec -mabi=altivec) ; then
2541 _altivec_gcc_flags="-maltivec -mabi=altivec"
2542 # check if <altivec.h> should be included
2543 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2544 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2545 inc_altivec_h='#include <altivec.h>'
2546 else
2547 if $(cflag_check -faltivec) ; then
2548 _altivec_gcc_flags="-faltivec"
2549 else
2550 _altivec=no
2551 _altivec_gcc_flags="none, AltiVec disabled"
2555 echores "$_altivec_gcc_flags"
2557 # check if the compiler supports braces for vector declarations
2558 cat > $TMPC << EOF
2559 $inc_altivec_h
2560 int main(void) { (vector int) {1}; return 0; }
2562 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2564 # Disable runtime cpudetection if we cannot generate AltiVec code or
2565 # AltiVec is disabled by the user.
2566 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2567 && _runtime_cpudetection=no
2569 # Show that we are optimizing for AltiVec (if enabled and supported).
2570 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2571 && _optimizing="$_optimizing altivec"
2573 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2574 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2577 if ppc ; then
2578 def_xform_asm='#define HAVE_XFORM_ASM 0'
2579 xform_asm=no
2580 echocheck "XFORM ASM support"
2581 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2582 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2583 echores "$xform_asm"
2586 if arm ; then
2587 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2588 if test $_armv5te = "auto" ; then
2589 _armv5te=no
2590 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2592 echores "$_armv5te"
2594 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2596 echocheck "ARMv6 (SIMD instructions)"
2597 if test $_armv6 = "auto" ; then
2598 _armv6=no
2599 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2601 echores "$_armv6"
2603 echocheck "ARMv6t2 (SIMD instructions)"
2604 if test $_armv6t2 = "auto" ; then
2605 _armv6t2=no
2606 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2608 echores "$_armv6t2"
2610 echocheck "ARM VFP"
2611 if test $_armvfp = "auto" ; then
2612 _armvfp=no
2613 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2615 echores "$_armvfp"
2617 echocheck "ARM NEON"
2618 if test $neon = "auto" ; then
2619 neon=no
2620 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2622 echores "$neon"
2624 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2625 if test $_iwmmxt = "auto" ; then
2626 _iwmmxt=no
2627 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2629 echores "$_iwmmxt"
2632 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2633 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2634 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2635 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2636 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2637 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2638 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2639 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2640 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2641 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2642 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2643 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2644 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2645 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2646 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2647 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2648 test "$neon" = yes && cpuexts="NEON $cpuexts"
2649 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2650 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2651 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2653 # Checking kernel version...
2654 if x86_32 && linux ; then
2655 _k_verc_problem=no
2656 kernel_version=$(uname -r 2>&1)
2657 echocheck "$system_name kernel version"
2658 case "$kernel_version" in
2659 '') kernel_version="?.??"; _k_verc_fail=yes;;
2660 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2661 _k_verc_problem=yes;;
2662 esac
2663 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2664 _k_verc_fail=yes
2666 if test "$_k_verc_fail" ; then
2667 echores "$kernel_version, fail"
2668 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2669 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2670 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2671 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2672 echo "2.2.x you must upgrade it to get SSE support!"
2673 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2674 else
2675 echores "$kernel_version, ok"
2679 ######################
2680 # MAIN TESTS GO HERE #
2681 ######################
2684 echocheck "-lposix"
2685 if cflag_check -lposix ; then
2686 extra_ldflags="$extra_ldflags -lposix"
2687 echores "yes"
2688 else
2689 echores "no"
2692 echocheck "-lm"
2693 if cflag_check -lm ; then
2694 _ld_lm="-lm"
2695 echores "yes"
2696 else
2697 _ld_lm=""
2698 echores "no"
2702 echocheck "langinfo"
2703 if test "$_langinfo" = auto ; then
2704 _langinfo=no
2705 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2707 if test "$_langinfo" = yes ; then
2708 def_langinfo='#define HAVE_LANGINFO 1'
2709 else
2710 def_langinfo='#undef HAVE_LANGINFO'
2712 echores "$_langinfo"
2715 echocheck "translation support"
2716 if test "$_translation" = yes; then
2717 def_translation="#define CONFIG_TRANSLATION 1"
2718 else
2719 def_translation="#undef CONFIG_TRANSLATION"
2721 echores "$_translation"
2723 echocheck "language"
2724 # Set preferred languages, "all" uses English as main language.
2725 test -z "$language" && language=$LINGUAS
2726 test -z "$language_doc" && language_doc=$language
2727 test -z "$language_man" && language_man=$language
2728 test -z "$language_msg" && language_msg=$language
2729 test -z "$language_msg" && language_msg="all"
2730 language_doc=$(echo $language_doc | tr , " ")
2731 language_man=$(echo $language_man | tr , " ")
2732 language_msg=$(echo $language_msg | tr , " ")
2734 test "$language_doc" = "all" && language_doc=$doc_lang_all
2735 test "$language_man" = "all" && language_man=$man_lang_all
2736 test "$language_msg" = "all" && language_msg=$msg_lang_all
2738 if test "$_translation" != yes ; then
2739 language_msg=""
2742 # Prune non-existing translations from language lists.
2743 # Set message translation to the first available language.
2744 # Fall back on English.
2745 for lang in $language_doc ; do
2746 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2747 done
2748 language_doc=$tmp_language_doc
2749 test -z "$language_doc" && language_doc=en
2751 for lang in $language_man ; do
2752 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2753 done
2754 language_man=$tmp_language_man
2755 test -z "$language_man" && language_man=en
2757 for lang in $language_msg ; do
2758 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2759 done
2760 language_msg=$tmp_language_msg
2762 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2765 echocheck "enable sighandler"
2766 if test "$_sighandler" = yes ; then
2767 def_sighandler='#define CONFIG_SIGHANDLER 1'
2768 else
2769 def_sighandler='#undef CONFIG_SIGHANDLER'
2771 echores "$_sighandler"
2773 echocheck "runtime cpudetection"
2774 if test "$_runtime_cpudetection" = yes ; then
2775 _optimizing="Runtime CPU-Detection enabled"
2776 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2777 else
2778 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2780 echores "$_runtime_cpudetection"
2783 echocheck "restrict keyword"
2784 for restrict_keyword in restrict __restrict __restrict__ ; do
2785 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2786 if cc_check; then
2787 def_restrict_keyword=$restrict_keyword
2788 break;
2790 done
2791 if [ -n "$def_restrict_keyword" ]; then
2792 echores "$def_restrict_keyword"
2793 else
2794 echores "none"
2796 # Avoid infinite recursion loop ("#define restrict restrict")
2797 if [ "$def_restrict_keyword" != "restrict" ]; then
2798 def_restrict_keyword="#define restrict $def_restrict_keyword"
2799 else
2800 def_restrict_keyword=""
2804 echocheck "__builtin_expect"
2805 # GCC branch prediction hint
2806 cat > $TMPC << EOF
2807 static int foo(int a) {
2808 a = __builtin_expect(a, 10);
2809 return a == 10 ? 0 : 1;
2811 int main(void) { return foo(10) && foo(0); }
2813 _builtin_expect=no
2814 cc_check && _builtin_expect=yes
2815 if test "$_builtin_expect" = yes ; then
2816 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2817 else
2818 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2820 echores "$_builtin_expect"
2823 echocheck "kstat"
2824 _kstat=no
2825 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2826 if test "$_kstat" = yes ; then
2827 def_kstat="#define HAVE_LIBKSTAT 1"
2828 extra_ldflags="$extra_ldflags -lkstat"
2829 else
2830 def_kstat="#undef HAVE_LIBKSTAT"
2832 echores "$_kstat"
2835 echocheck "posix4"
2836 # required for nanosleep on some systems
2837 _posix4=no
2838 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2839 if test "$_posix4" = yes ; then
2840 extra_ldflags="$extra_ldflags -lposix4"
2842 echores "$_posix4"
2844 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2845 echocheck $func
2846 eval _$func=no
2847 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2848 if eval test "x\$_$func" = "xyes"; then
2849 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2850 echores yes
2851 else
2852 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2853 echores no
2855 done
2858 echocheck "mkstemp"
2859 _mkstemp=no
2860 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2861 if test "$_mkstemp" = yes ; then
2862 def_mkstemp='#define HAVE_MKSTEMP 1'
2863 else
2864 def_mkstemp='#define HAVE_MKSTEMP 0'
2866 echores "$_mkstemp"
2869 echocheck "nanosleep"
2870 _nanosleep=no
2871 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2872 if test "$_nanosleep" = yes ; then
2873 def_nanosleep='#define HAVE_NANOSLEEP 1'
2874 else
2875 def_nanosleep='#undef HAVE_NANOSLEEP'
2877 echores "$_nanosleep"
2880 echocheck "socklib"
2881 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2882 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2883 cat > $TMPC << EOF
2884 #include <netdb.h>
2885 #include <sys/socket.h>
2886 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2888 _socklib=no
2889 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2890 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2891 done
2892 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2893 if test $_winsock2_h = auto ; then
2894 _winsock2_h=no
2895 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2897 test "$_ld_sock" && res_comment="using $_ld_sock"
2898 echores "$_socklib"
2901 if test $_winsock2_h = yes ; then
2902 _ld_sock="-lws2_32"
2903 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2904 else
2905 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2909 echocheck "arpa/inet.h"
2910 arpa_inet_h=no
2911 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2912 header_check arpa/inet.h && arpa_inet_h=yes &&
2913 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2914 echores "$arpa_inet_h"
2917 echocheck "inet_pton()"
2918 def_inet_pton='#define HAVE_INET_PTON 0'
2919 inet_pton=no
2920 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2921 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2922 done
2923 if test $inet_pton = yes ; then
2924 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2925 def_inet_pton='#define HAVE_INET_PTON 1'
2927 echores "$inet_pton"
2930 echocheck "inet_aton()"
2931 def_inet_aton='#define HAVE_INET_ATON 0'
2932 inet_aton=no
2933 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2934 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2935 done
2936 if test $inet_aton = yes ; then
2937 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2938 def_inet_aton='#define HAVE_INET_ATON 1'
2940 echores "$inet_aton"
2943 echocheck "socklen_t"
2944 _socklen_t=no
2945 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2946 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2947 done
2948 if test "$_socklen_t" = yes ; then
2949 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2950 else
2951 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2953 echores "$_socklen_t"
2956 echocheck "closesocket()"
2957 _closesocket=no
2958 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2959 if test "$_closesocket" = yes ; then
2960 def_closesocket='#define HAVE_CLOSESOCKET 1'
2961 else
2962 def_closesocket='#define HAVE_CLOSESOCKET 0'
2964 echores "$_closesocket"
2967 echocheck "networking"
2968 test $_winsock2_h = no && test $inet_pton = no &&
2969 test $inet_aton = no && networking=no
2970 if test "$networking" = yes ; then
2971 def_network='#define CONFIG_NETWORK 1'
2972 def_networking='#define CONFIG_NETWORKING 1'
2973 extra_ldflags="$extra_ldflags $_ld_sock"
2974 inputmodules="networking $inputmodules"
2975 else
2976 noinputmodules="networking $noinputmodules"
2977 def_network='#define CONFIG_NETWORK 0'
2978 def_networking='#undef CONFIG_NETWORKING'
2980 echores "$networking"
2983 echocheck "inet6"
2984 if test "$_inet6" = auto ; then
2985 cat > $TMPC << EOF
2986 #include <sys/types.h>
2987 #if !defined(_WIN32)
2988 #include <sys/socket.h>
2989 #include <netinet/in.h>
2990 #else
2991 #include <ws2tcpip.h>
2992 #endif
2993 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
2995 _inet6=no
2996 if cc_check $_ld_sock ; then
2997 _inet6=yes
3000 if test "$_inet6" = yes ; then
3001 def_inet6='#define HAVE_AF_INET6 1'
3002 else
3003 def_inet6='#undef HAVE_AF_INET6'
3005 echores "$_inet6"
3008 echocheck "gethostbyname2"
3009 if test "$_gethostbyname2" = auto ; then
3010 cat > $TMPC << EOF
3011 #include <sys/types.h>
3012 #include <sys/socket.h>
3013 #include <netdb.h>
3014 int main(void) { gethostbyname2("", AF_INET); return 0; }
3016 _gethostbyname2=no
3017 if cc_check ; then
3018 _gethostbyname2=yes
3021 if test "$_gethostbyname2" = yes ; then
3022 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3023 else
3024 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3026 echores "$_gethostbyname2"
3029 echocheck "inttypes.h (required)"
3030 _inttypes=no
3031 header_check inttypes.h && _inttypes=yes
3032 echores "$_inttypes"
3034 if test "$_inttypes" = no ; then
3035 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3036 header_check sys/bitypes.h && _inttypes=yes
3037 if test "$_inttypes" = yes ; then
3038 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."
3039 else
3040 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3045 echocheck "malloc.h"
3046 _malloc=no
3047 header_check malloc.h && _malloc=yes
3048 if test "$_malloc" = yes ; then
3049 def_malloc_h='#define HAVE_MALLOC_H 1'
3050 else
3051 def_malloc_h='#define HAVE_MALLOC_H 0'
3053 echores "$_malloc"
3056 echocheck "memalign()"
3057 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3058 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3059 _memalign=no
3060 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3061 if test "$_memalign" = yes ; then
3062 def_memalign='#define HAVE_MEMALIGN 1'
3063 else
3064 def_memalign='#define HAVE_MEMALIGN 0'
3065 def_map_memalign='#define memalign(a, b) malloc(b)'
3066 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3068 echores "$_memalign"
3071 echocheck "posix_memalign()"
3072 posix_memalign=no
3073 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3074 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3075 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3076 echores "$posix_memalign"
3079 echocheck "alloca.h"
3080 _alloca=no
3081 statement_check alloca.h 'alloca(0)' && _alloca=yes
3082 if cc_check ; then
3083 def_alloca_h='#define HAVE_ALLOCA_H 1'
3084 else
3085 def_alloca_h='#undef HAVE_ALLOCA_H'
3087 echores "$_alloca"
3090 echocheck "fastmemcpy"
3091 if test "$_fastmemcpy" = yes ; then
3092 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3093 else
3094 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3096 echores "$_fastmemcpy"
3099 echocheck "mman.h"
3100 _mman=no
3101 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3102 if test "$_mman" = yes ; then
3103 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3104 else
3105 def_mman_h='#undef HAVE_SYS_MMAN_H'
3106 os2 && need_mmap=yes
3108 echores "$_mman"
3110 _mman_has_map_failed=no
3111 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3112 if test "$_mman_has_map_failed" = yes ; then
3113 def_mman_has_map_failed=''
3114 else
3115 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3118 echocheck "dynamic loader"
3119 _dl=no
3120 for _ld_tmp in "" "-ldl"; do
3121 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3122 done
3123 if test "$_dl" = yes ; then
3124 def_dl='#define HAVE_LIBDL 1'
3125 else
3126 def_dl='#undef HAVE_LIBDL'
3128 echores "$_dl"
3131 def_threads='#define HAVE_THREADS 0'
3133 echocheck "pthread"
3134 if linux ; then
3135 THREAD_CFLAGS=-D_REENTRANT
3136 elif freebsd || netbsd || openbsd || bsdos ; then
3137 THREAD_CFLAGS=-D_THREAD_SAFE
3139 if test "$_pthreads" = auto ; then
3140 cat > $TMPC << EOF
3141 #include <pthread.h>
3142 static void *func(void *arg) { return arg; }
3143 int main(void) {
3144 pthread_t tid;
3145 #ifdef PTW32_STATIC_LIB
3146 pthread_win32_process_attach_np();
3147 pthread_win32_thread_attach_np();
3148 #endif
3149 return pthread_create (&tid, 0, func, 0) != 0;
3152 _pthreads=no
3153 if ! hpux ; then
3154 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3155 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3156 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3157 done
3158 if test "$_pthreads" = no && mingw32 ; then
3159 _ld_tmp="-lpthreadGC2 -lws2_32"
3160 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3164 if test "$_pthreads" = yes ; then
3165 test $_ld_pthread && res_comment="using $_ld_pthread"
3166 def_pthreads='#define HAVE_PTHREADS 1'
3167 def_threads='#define HAVE_THREADS 1'
3168 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3169 else
3170 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3171 def_pthreads='#undef HAVE_PTHREADS'
3172 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3173 mingw32 || _win32dll=no
3175 echores "$_pthreads"
3177 if cygwin ; then
3178 if test "$_pthreads" = yes ; then
3179 def_pthread_cache="#define PTHREAD_CACHE 1"
3180 else
3181 _stream_cache=no
3182 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3186 echocheck "w32threads"
3187 if test "$_pthreads" = yes ; then
3188 res_comment="using pthread instead"
3189 _w32threads=no
3191 if test "$_w32threads" = auto ; then
3192 _w32threads=no
3193 mingw32 && _w32threads=yes
3195 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3196 echores "$_w32threads"
3198 echocheck "rpath"
3199 if test "$_rpath" = yes ; then
3200 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3201 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3202 done
3203 extra_ldflags=$tmp
3205 echores "$_rpath"
3207 echocheck "iconv"
3208 if test "$_iconv" = auto ; then
3209 cat > $TMPC << EOF
3210 #include <stdio.h>
3211 #include <unistd.h>
3212 #include <iconv.h>
3213 #define INBUFSIZE 1024
3214 #define OUTBUFSIZE 4096
3216 char inbuffer[INBUFSIZE];
3217 char outbuffer[OUTBUFSIZE];
3219 int main(void) {
3220 size_t numread;
3221 iconv_t icdsc;
3222 char *tocode="UTF-8";
3223 char *fromcode="cp1250";
3224 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3225 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3226 char *iptr=inbuffer;
3227 char *optr=outbuffer;
3228 size_t inleft=numread;
3229 size_t outleft=OUTBUFSIZE;
3230 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3231 != (size_t)(-1)) {
3232 write(1, outbuffer, OUTBUFSIZE - outleft);
3235 if (iconv_close(icdsc) == -1)
3238 return 0;
3241 _iconv=no
3242 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3243 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3244 _iconv=yes && break
3245 done
3246 if test "$_iconv" != yes ; then
3247 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."
3250 if test "$_iconv" = yes ; then
3251 def_iconv='#define CONFIG_ICONV 1'
3252 else
3253 def_iconv='#undef CONFIG_ICONV'
3255 echores "$_iconv"
3258 echocheck "soundcard.h"
3259 _soundcard_h=no
3260 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3261 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3262 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3263 header_check $_soundcard_header && _soundcard_h=yes &&
3264 res_comment="$_soundcard_header" && break
3265 done
3267 if test "$_soundcard_h" = yes ; then
3268 if test $_soundcard_header = "sys/soundcard.h"; then
3269 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3270 else
3271 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3274 echores "$_soundcard_h"
3277 echocheck "sys/videoio.h"
3278 sys_videoio_h=no
3279 def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
3280 header_check sys/videoio.h && sys_videoio_h=yes &&
3281 def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
3282 echores "$sys_videoio_h"
3285 echocheck "sys/dvdio.h"
3286 _dvdio=no
3287 # FreeBSD 8.1 has broken dvdio.h
3288 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3289 if test "$_dvdio" = yes ; then
3290 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3291 else
3292 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3294 echores "$_dvdio"
3297 echocheck "sys/cdio.h"
3298 _cdio=no
3299 # at least OpenSolaris has a broken cdio.h
3300 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3301 if test "$_cdio" = yes ; then
3302 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3303 else
3304 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3306 echores "$_cdio"
3309 echocheck "linux/cdrom.h"
3310 _cdrom=no
3311 header_check linux/cdrom.h && _cdrom=yes
3312 if test "$_cdrom" = yes ; then
3313 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3314 else
3315 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3317 echores "$_cdrom"
3320 echocheck "dvd.h"
3321 _dvd=no
3322 header_check dvd.h && _dvd=yes
3323 if test "$_dvd" = yes ; then
3324 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3325 else
3326 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3328 echores "$_dvd"
3331 if bsdos; then
3332 echocheck "BSDI dvd.h"
3333 _bsdi_dvd=no
3334 header_check dvd.h && _bsdi_dvd=yes
3335 if test "$_bsdi_dvd" = yes ; then
3336 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3337 else
3338 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3340 echores "$_bsdi_dvd"
3341 fi #if bsdos
3344 if hpux; then
3345 # also used by AIX, but AIX does not support VCD and/or libdvdread
3346 echocheck "HP-UX SCSI header"
3347 _hpux_scsi_h=no
3348 header_check sys/scsi.h && _hpux_scsi_h=yes
3349 if test "$_hpux_scsi_h" = yes ; then
3350 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3351 else
3352 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3354 echores "$_hpux_scsi_h"
3355 fi #if hpux
3358 if sunos; then
3359 echocheck "userspace SCSI headers (Solaris)"
3360 _sol_scsi_h=no
3361 header_check sys/scsi/scsi_types.h &&
3362 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3363 _sol_scsi_h=yes
3364 if test "$_sol_scsi_h" = yes ; then
3365 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3366 else
3367 def_sol_scsi_h='#undef SOLARIS_USCSI'
3369 echores "$_sol_scsi_h"
3370 fi #if sunos
3373 echocheck "termcap"
3374 if test "$_termcap" = auto ; then
3375 _termcap=no
3376 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3377 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3378 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3379 done
3381 if test "$_termcap" = yes ; then
3382 def_termcap='#define HAVE_TERMCAP 1'
3383 test $_ld_tmp && res_comment="using $_ld_tmp"
3384 else
3385 def_termcap='#undef HAVE_TERMCAP'
3387 echores "$_termcap"
3390 echocheck "termios"
3391 def_termios='#undef HAVE_TERMIOS'
3392 def_termios_h='#undef HAVE_TERMIOS_H'
3393 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3394 if test "$_termios" = auto ; then
3395 _termios=no
3396 for _termios_header in "termios.h" "sys/termios.h"; do
3397 header_check $_termios_header && _termios=yes &&
3398 res_comment="using $_termios_header" && break
3399 done
3402 if test "$_termios" = yes ; then
3403 def_termios='#define HAVE_TERMIOS 1'
3404 if test "$_termios_header" = "termios.h" ; then
3405 def_termios_h='#define HAVE_TERMIOS_H 1'
3406 else
3407 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3410 echores "$_termios"
3413 echocheck "shm"
3414 if test "$_shm" = auto ; then
3415 _shm=no
3416 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3418 if test "$_shm" = yes ; then
3419 def_shm='#define HAVE_SHM 1'
3420 else
3421 def_shm='#undef HAVE_SHM'
3423 echores "$_shm"
3426 echocheck "strsep()"
3427 _strsep=no
3428 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3429 if test "$_strsep" = yes ; then
3430 def_strsep='#define HAVE_STRSEP 1'
3431 need_strsep=no
3432 else
3433 def_strsep='#undef HAVE_STRSEP'
3434 need_strsep=yes
3436 echores "$_strsep"
3439 echocheck "vsscanf()"
3440 cat > $TMPC << EOF
3441 #define _ISOC99_SOURCE
3442 #include <stdarg.h>
3443 #include <stdio.h>
3444 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3446 _vsscanf=no
3447 cc_check && _vsscanf=yes
3448 if test "$_vsscanf" = yes ; then
3449 def_vsscanf='#define HAVE_VSSCANF 1'
3450 need_vsscanf=no
3451 else
3452 def_vsscanf='#undef HAVE_VSSCANF'
3453 need_vsscanf=yes
3455 echores "$_vsscanf"
3458 echocheck "swab()"
3459 _swab=no
3460 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' ||
3461 statement_check "string.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3462 if test "$_swab" = yes ; then
3463 def_swab='#define HAVE_SWAB 1'
3464 need_swab=no
3465 else
3466 def_swab='#undef HAVE_SWAB'
3467 need_swab=yes
3469 echores "$_swab"
3471 echocheck "POSIX select()"
3472 cat > $TMPC << EOF
3473 #include <stdio.h>
3474 #include <stdlib.h>
3475 #include <sys/types.h>
3476 #include <string.h>
3477 #include <sys/time.h>
3478 #include <unistd.h>
3479 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3481 _posix_select=no
3482 def_posix_select='#undef HAVE_POSIX_SELECT'
3483 #select() of kLIBC (OS/2) supports socket only
3484 ! os2 && cc_check && _posix_select=yes &&
3485 def_posix_select='#define HAVE_POSIX_SELECT 1'
3486 echores "$_posix_select"
3489 echocheck "audio select()"
3490 if test "$_select" = no ; then
3491 def_select='#undef HAVE_AUDIO_SELECT'
3492 elif test "$_select" = yes ; then
3493 def_select='#define HAVE_AUDIO_SELECT 1'
3495 echores "$_select"
3498 echocheck "gettimeofday()"
3499 _gettimeofday=no
3500 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3501 if test "$_gettimeofday" = yes ; then
3502 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3503 need_gettimeofday=no
3504 else
3505 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3506 need_gettimeofday=yes
3508 echores "$_gettimeofday"
3511 echocheck "glob()"
3512 _glob=no
3513 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3514 need_glob=no
3515 if test "$_glob" = yes ; then
3516 def_glob='#define HAVE_GLOB 1'
3517 else
3518 def_glob='#undef HAVE_GLOB'
3519 # HACK! need_glob currently enables compilation of a
3520 # win32-specific glob()-replacement.
3521 # Other OS neither need it nor can they use it (mf:// is disabled for them).
3522 win32 && need_glob=yes
3524 echores "$_glob"
3527 echocheck "setenv()"
3528 _setenv=no
3529 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3530 if test "$_setenv" = yes ; then
3531 def_setenv='#define HAVE_SETENV 1'
3532 need_setenv=no
3533 else
3534 def_setenv='#undef HAVE_SETENV'
3535 need_setenv=yes
3537 echores "$_setenv"
3540 echocheck "setmode()"
3541 _setmode=no
3542 def_setmode='#define HAVE_SETMODE 0'
3543 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3544 echores "$_setmode"
3547 if sunos; then
3548 echocheck "sysi86()"
3549 _sysi86=no
3550 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3551 if test "$_sysi86" = yes ; then
3552 def_sysi86='#define HAVE_SYSI86 1'
3553 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3554 else
3555 def_sysi86='#undef HAVE_SYSI86'
3557 echores "$_sysi86"
3558 fi #if sunos
3561 echocheck "sys/sysinfo.h"
3562 _sys_sysinfo=no
3563 statement_check sys/sysinfo.h 'struct sysinfo s_info; s_info.mem_unit=0; sysinfo(&s_info)' && _sys_sysinfo=yes
3564 if test "$_sys_sysinfo" = yes ; then
3565 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3566 else
3567 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3569 echores "$_sys_sysinfo"
3572 if darwin; then
3574 echocheck "Mac OS X Finder Support"
3575 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3576 if test "$_macosx_finder" = yes ; then
3577 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3578 extra_ldflags="$extra_ldflags -framework Cocoa"
3580 echores "$_macosx_finder"
3582 echocheck "Mac OS X Bundle file locations"
3583 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3584 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3585 if test "$_macosx_bundle" = yes ; then
3586 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3588 echores "$_macosx_bundle"
3590 echocheck "Apple Remote"
3591 if test "$_apple_remote" = auto ; then
3592 _apple_remote=no
3593 cat > $TMPC <<EOF
3594 #include <stdio.h>
3595 #include <IOKit/IOCFPlugIn.h>
3596 int main(void) {
3597 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3598 CFMutableDictionaryRef hidMatchDictionary;
3599 IOReturn ioReturnValue;
3601 // Set up a matching dictionary to search the I/O Registry by class.
3602 // name for all HID class devices
3603 hidMatchDictionary = IOServiceMatching("AppleIRController");
3605 // Now search I/O Registry for matching devices.
3606 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3607 hidMatchDictionary, &hidObjectIterator);
3609 // If search is unsuccessful, return nonzero.
3610 if (ioReturnValue != kIOReturnSuccess ||
3611 !IOIteratorIsValid(hidObjectIterator)) {
3612 return 1;
3614 return 0;
3617 cc_check -framework IOKit && _apple_remote=yes
3619 if test "$_apple_remote" = yes ; then
3620 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3621 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3622 else
3623 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3625 echores "$_apple_remote"
3627 fi #if darwin
3629 if linux; then
3631 echocheck "Apple IR"
3632 if test "$_apple_ir" = auto ; then
3633 _apple_ir=no
3634 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3636 if test "$_apple_ir" = yes ; then
3637 def_apple_ir='#define CONFIG_APPLE_IR 1'
3638 else
3639 def_apple_ir='#undef CONFIG_APPLE_IR'
3641 echores "$_apple_ir"
3642 fi #if linux
3644 echocheck "pkg-config"
3645 if $($_pkg_config --version > /dev/null 2>&1); then
3646 if test "$_ld_static"; then
3647 _pkg_config="$_pkg_config --static"
3649 echores "yes"
3650 else
3651 _pkg_config=false
3652 echores "no"
3656 echocheck "Samba support (libsmbclient)"
3657 if test "$_smb" = yes; then
3658 extra_ldflags="$extra_ldflags -lsmbclient"
3660 if test "$_smb" = auto; then
3661 _smb=no
3662 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3663 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3664 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3665 done
3668 if test "$_smb" = yes; then
3669 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3670 inputmodules="smb $inputmodules"
3671 else
3672 def_smb="#undef CONFIG_LIBSMBCLIENT"
3673 noinputmodules="smb $noinputmodules"
3675 echores "$_smb"
3678 #########
3679 # VIDEO #
3680 #########
3683 echocheck "tdfxfb"
3684 if test "$_tdfxfb" = yes ; then
3685 def_tdfxfb='#define CONFIG_TDFXFB 1'
3686 vomodules="tdfxfb $vomodules"
3687 else
3688 def_tdfxfb='#undef CONFIG_TDFXFB'
3689 novomodules="tdfxfb $novomodules"
3691 echores "$_tdfxfb"
3693 echocheck "s3fb"
3694 if test "$_s3fb" = yes ; then
3695 def_s3fb='#define CONFIG_S3FB 1'
3696 vomodules="s3fb $vomodules"
3697 else
3698 def_s3fb='#undef CONFIG_S3FB'
3699 novomodules="s3fb $novomodules"
3701 echores "$_s3fb"
3703 echocheck "wii"
3704 if test "$_wii" = yes ; then
3705 def_wii='#define CONFIG_WII 1'
3706 vomodules="wii $vomodules"
3707 else
3708 def_wii='#undef CONFIG_WII'
3709 novomodules="wii $novomodules"
3711 echores "$_wii"
3713 echocheck "tdfxvid"
3714 if test "$_tdfxvid" = yes ; then
3715 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3716 vomodules="tdfx_vid $vomodules"
3717 else
3718 def_tdfxvid='#undef CONFIG_TDFX_VID'
3719 novomodules="tdfx_vid $novomodules"
3721 echores "$_tdfxvid"
3723 echocheck "xvr100"
3724 if test "$_xvr100" = auto ; then
3725 cat > $TMPC << EOF
3726 #include <unistd.h>
3727 #include <sys/fbio.h>
3728 #include <sys/visual_io.h>
3729 int main(void) {
3730 struct vis_identifier ident;
3731 struct fbgattr attr;
3732 ioctl(0, VIS_GETIDENTIFIER, &ident);
3733 ioctl(0, FBIOGATTR, &attr);
3734 return 0;
3737 _xvr100=no
3738 cc_check && _xvr100=yes
3740 if test "$_xvr100" = yes ; then
3741 def_xvr100='#define CONFIG_XVR100 1'
3742 vomodules="xvr100 $vomodules"
3743 else
3744 def_tdfxvid='#undef CONFIG_XVR100'
3745 novomodules="xvr100 $novomodules"
3747 echores "$_xvr100"
3749 echocheck "tga"
3750 if test "$_tga" = yes ; then
3751 def_tga='#define CONFIG_TGA 1'
3752 vomodules="tga $vomodules"
3753 else
3754 def_tga='#undef CONFIG_TGA'
3755 novomodules="tga $novomodules"
3757 echores "$_tga"
3760 echocheck "md5sum support"
3761 if test "$_md5sum" = yes; then
3762 def_md5sum="#define CONFIG_MD5SUM 1"
3763 vomodules="md5sum $vomodules"
3764 else
3765 def_md5sum="#undef CONFIG_MD5SUM"
3766 novomodules="md5sum $novomodules"
3768 echores "$_md5sum"
3771 echocheck "yuv4mpeg support"
3772 if test "$_yuv4mpeg" = yes; then
3773 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3774 vomodules="yuv4mpeg $vomodules"
3775 else
3776 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3777 novomodules="yuv4mpeg $novomodules"
3779 echores "$_yuv4mpeg"
3782 echocheck "bl"
3783 if test "$_bl" = yes ; then
3784 def_bl='#define CONFIG_BL 1'
3785 vomodules="bl $vomodules"
3786 else
3787 def_bl='#undef CONFIG_BL'
3788 novomodules="bl $novomodules"
3790 echores "$_bl"
3793 echocheck "DirectFB"
3794 if test "$_directfb" = auto ; then
3795 _directfb=no
3796 cat > $TMPC << EOF
3797 #include <directfb.h>
3798 #include <directfb_version.h>
3799 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3800 #error "DirectFB version too old."
3801 #endif
3802 int main(void) { DirectFBInit(0, 0); return 0; }
3804 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3805 cc_check $_inc_tmp -ldirectfb &&
3806 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3807 done
3809 if test "$_directfb" = yes ; then
3810 def_directfb='#define CONFIG_DIRECTFB 1'
3811 vomodules="directfb dfbmga $vomodules"
3812 libs_mplayer="$libs_mplayer -ldirectfb"
3813 else
3814 def_directfb='#undef CONFIG_DIRECTFB'
3815 novomodules="directfb dfbmga $novomodules"
3817 echores "$_directfb"
3820 echocheck "X11 headers presence"
3821 _x11_headers="no"
3822 res_comment="check if the dev(el) packages are installed"
3823 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3824 if test -f "$I/X11/Xlib.h" ; then
3825 _x11_headers="yes"
3826 res_comment=""
3827 break
3829 done
3830 if test $_cross_compile = no; then
3831 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3832 /usr/include/X11R6 /usr/openwin/include ; do
3833 if test -f "$I/X11/Xlib.h" ; then
3834 extra_cflags="$extra_cflags -I$I"
3835 _x11_headers="yes"
3836 res_comment="using $I"
3837 break
3839 done
3841 echores "$_x11_headers"
3844 echocheck "X11"
3845 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3846 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3847 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3848 -L/usr/lib ; do
3849 if netbsd; then
3850 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3851 else
3852 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3854 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3855 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3856 done
3858 if test "$_x11" = yes ; then
3859 def_x11='#define CONFIG_X11 1'
3860 vomodules="x11 xover $vomodules"
3861 else
3862 _x11=no
3863 def_x11='#undef CONFIG_X11'
3864 novomodules="x11 $novomodules"
3865 res_comment="check if the dev(el) packages are installed"
3867 echores "$_x11"
3869 echocheck "Xss screensaver extensions"
3870 if test "$_xss" = auto ; then
3871 _xss=no
3872 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3874 if test "$_xss" = yes ; then
3875 def_xss='#define CONFIG_XSS 1'
3876 libs_mplayer="$libs_mplayer -lXss"
3877 else
3878 def_xss='#undef CONFIG_XSS'
3880 echores "$_xss"
3882 echocheck "DPMS"
3883 _xdpms3=no
3884 _xdpms4=no
3885 if test "$_x11" = yes ; then
3886 cat > $TMPC <<EOF
3887 #include <X11/Xmd.h>
3888 #include <X11/Xlib.h>
3889 #include <X11/Xutil.h>
3890 #include <X11/Xatom.h>
3891 #include <X11/extensions/dpms.h>
3892 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3894 cc_check -lXdpms && _xdpms3=yes
3895 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3897 if test "$_xdpms4" = yes ; then
3898 def_xdpms='#define CONFIG_XDPMS 1'
3899 res_comment="using Xdpms 4"
3900 echores "yes"
3901 elif test "$_xdpms3" = yes ; then
3902 def_xdpms='#define CONFIG_XDPMS 1'
3903 libs_mplayer="$libs_mplayer -lXdpms"
3904 res_comment="using Xdpms 3"
3905 echores "yes"
3906 else
3907 def_xdpms='#undef CONFIG_XDPMS'
3908 echores "no"
3912 echocheck "Xv"
3913 if test "$_xv" = auto && test "$_x11" = yes ; then
3914 _xv=no
3915 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3918 if test "$_xv" = yes ; then
3919 def_xv='#define CONFIG_XV 1'
3920 libs_mplayer="$libs_mplayer -lXv"
3921 vomodules="xv $vomodules"
3922 else
3923 def_xv='#undef CONFIG_XV'
3924 novomodules="xv $novomodules"
3926 echores "$_xv"
3929 echocheck "VDPAU"
3930 if test "$_vdpau" = auto && test "$_x11" = yes ; then
3931 _vdpau=no
3932 if test "$_dl" = yes ; then
3933 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
3936 if test "$_vdpau" = yes ; then
3937 def_vdpau='#define CONFIG_VDPAU 1'
3938 libs_mplayer="$libs_mplayer -lvdpau"
3939 vomodules="vdpau $vomodules"
3940 else
3941 def_vdpau='#define CONFIG_VDPAU 0'
3942 novomodules="vdpau $novomodules"
3944 echores "$_vdpau"
3947 echocheck "Xinerama"
3948 if test "$_xinerama" = auto && test "$_x11" = yes ; then
3949 _xinerama=no
3950 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
3953 if test "$_xinerama" = yes ; then
3954 def_xinerama='#define CONFIG_XINERAMA 1'
3955 libs_mplayer="$libs_mplayer -lXinerama"
3956 else
3957 def_xinerama='#undef CONFIG_XINERAMA'
3959 echores "$_xinerama"
3962 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
3963 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
3964 # named 'X extensions' or something similar.
3965 # This check may be useful for future mplayer versions (to change resolution)
3966 # If you run into problems, remove '-lXxf86vm'.
3967 echocheck "Xxf86vm"
3968 if test "$_vm" = auto && test "$_x11" = yes ; then
3969 _vm=no
3970 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
3972 if test "$_vm" = yes ; then
3973 def_vm='#define CONFIG_XF86VM 1'
3974 libs_mplayer="$libs_mplayer -lXxf86vm"
3975 else
3976 def_vm='#undef CONFIG_XF86VM'
3978 echores "$_vm"
3980 # Check for the presence of special keycodes, like audio control buttons
3981 # that XFree86 might have. Used to be bundled with the xf86vm check, but
3982 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
3983 # have these new keycodes.
3984 echocheck "XF86keysym"
3985 if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
3986 _xf86keysym=no
3987 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
3989 if test "$_xf86keysym" = yes ; then
3990 def_xf86keysym='#define CONFIG_XF86XK 1'
3991 else
3992 def_xf86keysym='#undef CONFIG_XF86XK'
3994 echores "$_xf86keysym"
3996 echocheck "DGA"
3997 if test "$_dga2" = auto && test "$_x11" = yes ; then
3998 _dga2=no
3999 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4001 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4002 _dga1=no
4003 statement_check_broken X11/Xlib.h X11/extensions/Xxf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4006 _dga=no
4007 def_dga='#undef CONFIG_DGA'
4008 def_dga1='#undef CONFIG_DGA1'
4009 def_dga2='#undef CONFIG_DGA2'
4010 if test "$_dga1" = yes ; then
4011 _dga=yes
4012 def_dga1='#define CONFIG_DGA1 1'
4013 res_comment="using DGA 1.0"
4014 elif test "$_dga2" = yes ; then
4015 _dga=yes
4016 def_dga2='#define CONFIG_DGA2 1'
4017 res_comment="using DGA 2.0"
4019 if test "$_dga" = yes ; then
4020 def_dga='#define CONFIG_DGA 1'
4021 libs_mplayer="$libs_mplayer -lXxf86dga"
4022 vomodules="dga $vomodules"
4023 else
4024 novomodules="dga $novomodules"
4026 echores "$_dga"
4029 echocheck "3dfx"
4030 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4031 def_3dfx='#define CONFIG_3DFX 1'
4032 vomodules="3dfx $vomodules"
4033 else
4034 _3dfx=no
4035 def_3dfx='#undef CONFIG_3DFX'
4036 novomodules="3dfx $novomodules"
4038 echores "$_3dfx"
4041 echocheck "GGI"
4042 if test "$_ggi" = auto ; then
4043 _ggi=no
4044 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4046 if test "$_ggi" = yes ; then
4047 def_ggi='#define CONFIG_GGI 1'
4048 libs_mplayer="$libs_mplayer -lggi"
4049 vomodules="ggi $vomodules"
4050 else
4051 def_ggi='#undef CONFIG_GGI'
4052 novomodules="ggi $novomodules"
4054 echores "$_ggi"
4056 echocheck "GGI extension: libggiwmh"
4057 if test "$_ggiwmh" = auto ; then
4058 _ggiwmh=no
4059 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4061 # needed to get right output on obscure combination
4062 # like --disable-ggi --enable-ggiwmh
4063 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4064 def_ggiwmh='#define CONFIG_GGIWMH 1'
4065 libs_mplayer="$libs_mplayer -lggiwmh"
4066 else
4067 _ggiwmh=no
4068 def_ggiwmh='#undef CONFIG_GGIWMH'
4070 echores "$_ggiwmh"
4073 echocheck "AA"
4074 if test "$_aa" = auto ; then
4075 cat > $TMPC << EOF
4076 #include <aalib.h>
4077 int main(void) {
4078 aa_context *c;
4079 aa_renderparams *p;
4080 aa_init(0, 0, 0);
4081 c = aa_autoinit(&aa_defparams);
4082 p = aa_getrenderparams();
4083 aa_autoinitkbd(c, 0);
4084 return 0; }
4086 _aa=no
4087 for _ld_tmp in "-laa" ; do
4088 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4089 done
4091 if test "$_aa" = yes ; then
4092 def_aa='#define CONFIG_AA 1'
4093 if cygwin ; then
4094 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4096 vomodules="aa $vomodules"
4097 else
4098 def_aa='#undef CONFIG_AA'
4099 novomodules="aa $novomodules"
4101 echores "$_aa"
4104 echocheck "CACA"
4105 if test "$_caca" = auto ; then
4106 _caca=no
4107 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4108 cat > $TMPC << EOF
4109 #include <caca.h>
4110 #ifdef CACA_API_VERSION_1
4111 #include <caca0.h>
4112 #endif
4113 int main(void) { caca_init(); return 0; }
4115 cc_check $(caca-config --libs) && _caca=yes
4118 if test "$_caca" = yes ; then
4119 def_caca='#define CONFIG_CACA 1'
4120 extra_cflags="$extra_cflags $(caca-config --cflags)"
4121 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4122 vomodules="caca $vomodules"
4123 else
4124 def_caca='#undef CONFIG_CACA'
4125 novomodules="caca $novomodules"
4127 echores "$_caca"
4130 echocheck "SVGAlib"
4131 if test "$_svga" = auto ; then
4132 _svga=no
4133 header_check vga.h -lvga $_ld_lm && _svga=yes
4135 if test "$_svga" = yes ; then
4136 def_svga='#define CONFIG_SVGALIB 1'
4137 libs_mplayer="$libs_mplayer -lvga"
4138 vomodules="svga $vomodules"
4139 else
4140 def_svga='#undef CONFIG_SVGALIB'
4141 novomodules="svga $novomodules"
4143 echores "$_svga"
4146 echocheck "FBDev"
4147 if test "$_fbdev" = auto ; then
4148 _fbdev=no
4149 linux && _fbdev=yes
4151 if test "$_fbdev" = yes ; then
4152 def_fbdev='#define CONFIG_FBDEV 1'
4153 vomodules="fbdev $vomodules"
4154 else
4155 def_fbdev='#undef CONFIG_FBDEV'
4156 novomodules="fbdev $novomodules"
4158 echores "$_fbdev"
4162 echocheck "DVB"
4163 if test "$_dvb" = auto ; then
4164 _dvb=no
4165 cat >$TMPC << EOF
4166 #include <poll.h>
4167 #include <sys/ioctl.h>
4168 #include <stdio.h>
4169 #include <time.h>
4170 #include <unistd.h>
4171 #include <linux/dvb/dmx.h>
4172 #include <linux/dvb/frontend.h>
4173 #include <linux/dvb/video.h>
4174 #include <linux/dvb/audio.h>
4175 int main(void) {return 0;}
4177 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4178 cc_check $_inc_tmp && _dvb=yes &&
4179 extra_cflags="$extra_cflags $_inc_tmp" && break
4180 done
4182 echores "$_dvb"
4183 if test "$_dvb" = yes ; then
4184 _dvbin=yes
4185 inputmodules="dvb $inputmodules"
4186 def_dvb='#define CONFIG_DVB 1'
4187 def_dvbin='#define CONFIG_DVBIN 1'
4188 aomodules="mpegpes(dvb) $aomodules"
4189 vomodules="mpegpes(dvb) $vomodules"
4190 else
4191 _dvbin=no
4192 noinputmodules="dvb $noinputmodules"
4193 def_dvb='#undef CONFIG_DVB'
4194 def_dvbin='#undef CONFIG_DVBIN '
4195 aomodules="mpegpes(file) $aomodules"
4196 vomodules="mpegpes(file) $vomodules"
4200 if darwin; then
4202 echocheck "QuickTime"
4203 if test "$quicktime" = auto ; then
4204 quicktime=no
4205 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4207 if test "$quicktime" = yes ; then
4208 extra_ldflags="$extra_ldflags -framework QuickTime"
4209 def_quicktime='#define CONFIG_QUICKTIME 1'
4210 else
4211 def_quicktime='#undef CONFIG_QUICKTIME'
4213 echores $quicktime
4215 echocheck "CoreVideo"
4216 if test "$_corevideo" = auto ; then
4217 cat > $TMPC <<EOF
4218 #include <Carbon/Carbon.h>
4219 #include <CoreServices/CoreServices.h>
4220 #include <OpenGL/OpenGL.h>
4221 #include <QuartzCore/CoreVideo.h>
4222 int main(void) { return 0; }
4224 _corevideo=no
4225 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4227 if test "$_corevideo" = yes ; then
4228 vomodules="corevideo $vomodules"
4229 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4230 def_corevideo='#define CONFIG_COREVIDEO 1'
4231 else
4232 novomodules="corevideo $novomodules"
4233 def_corevideo='#undef CONFIG_COREVIDEO'
4235 echores "$_corevideo"
4237 echocheck "Cocoa"
4238 if test "$_gl" = no ; then
4239 # if _gl is not enabled there is no point to add potentially unused linker flags
4240 _cocoa=no
4242 if test "$_cocoa" = auto ; then
4243 cat > $TMPC <<EOF
4244 #include <CoreServices/CoreServices.h>
4245 #include <OpenGL/OpenGL.h>
4246 #include <QuartzCore/CoreVideo.h>
4247 int main(void) { return 0; }
4249 _cocoa=no
4250 cc_check -framework Cocoa -framework QuartzCore -framework OpenGL && _cocoa=yes
4252 if test "$_cocoa" = yes ; then
4253 libs_mplayer="$libs_mplayer -framework Cocoa -framework QuartzCore -framework OpenGL"
4255 echores "$_cocoa"
4257 fi #if darwin
4260 echocheck "PNG support"
4261 if test "$_png" = auto ; then
4262 _png=no
4263 if irix ; then
4264 # Don't check for -lpng on irix since it has its own libpng
4265 # incompatible with the GNU libpng
4266 res_comment="disabled on irix (not GNU libpng)"
4267 else
4268 cat > $TMPC << EOF
4269 #include <stdio.h>
4270 #include <string.h>
4271 #include <png.h>
4272 int main(void) {
4273 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4274 printf("libpng: %s\n", png_libpng_ver);
4275 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4278 cc_check -lpng -lz $_ld_lm && _png=yes
4281 echores "$_png"
4282 if test "$_png" = yes ; then
4283 def_png='#define CONFIG_PNG 1'
4284 extra_ldflags="$extra_ldflags -lpng -lz"
4285 else
4286 def_png='#undef CONFIG_PNG'
4289 echocheck "MNG support"
4290 if test "$_mng" = auto ; then
4291 _mng=no
4292 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4294 echores "$_mng"
4295 if test "$_mng" = yes ; then
4296 def_mng='#define CONFIG_MNG 1'
4297 extra_ldflags="$extra_ldflags -lmng -lz"
4298 else
4299 def_mng='#undef CONFIG_MNG'
4302 echocheck "JPEG support"
4303 if test "$_jpeg" = auto ; then
4304 _jpeg=no
4305 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4307 echores "$_jpeg"
4309 if test "$_jpeg" = yes ; then
4310 def_jpeg='#define CONFIG_JPEG 1'
4311 vomodules="jpeg $vomodules"
4312 extra_ldflags="$extra_ldflags -ljpeg"
4313 else
4314 def_jpeg='#undef CONFIG_JPEG'
4315 novomodules="jpeg $novomodules"
4320 echocheck "PNM support"
4321 if test "$_pnm" = yes; then
4322 def_pnm="#define CONFIG_PNM 1"
4323 vomodules="pnm $vomodules"
4324 else
4325 def_pnm="#undef CONFIG_PNM"
4326 novomodules="pnm $novomodules"
4328 echores "$_pnm"
4332 echocheck "GIF support"
4333 # This is to appease people who want to force gif support.
4334 # If it is forced to yes, then we still do checks to determine
4335 # which gif library to use.
4336 if test "$_gif" = yes ; then
4337 _force_gif=yes
4338 _gif=auto
4341 if test "$_gif" = auto ; then
4342 _gif=no
4343 for _ld_gif in "-lungif" "-lgif" ; do
4344 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4345 done
4348 # If no library was found, and the user wants support forced,
4349 # then we force it on with libgif, as this is the safest
4350 # assumption IMHO. (libungif & libregif both create symbolic
4351 # links to libgif. We also assume that no x11 support is needed,
4352 # because if you are forcing this, then you _should_ know what
4353 # you are doing. [ Besides, package maintainers should never
4354 # have compiled x11 deps into libungif in the first place. ] )
4355 # </rant>
4356 # --Joey
4357 if test "$_force_gif" = yes && test "$_gif" = no ; then
4358 _gif=yes
4359 _ld_gif="-lgif"
4362 if test "$_gif" = yes ; then
4363 def_gif='#define CONFIG_GIF 1'
4364 codecmodules="gif $codecmodules"
4365 vomodules="gif89a $vomodules"
4366 res_comment="old version, some encoding functions disabled"
4367 def_gif_4='#undef CONFIG_GIF_4'
4368 extra_ldflags="$extra_ldflags $_ld_gif"
4370 cat > $TMPC << EOF
4371 #include <signal.h>
4372 #include <stdio.h>
4373 #include <stdlib.h>
4374 #include <gif_lib.h>
4375 static void catch(int sig) { exit(1); }
4376 int main(void) {
4377 signal(SIGSEGV, catch); // catch segfault
4378 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4379 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4380 return 0;
4383 if cc_check "$_ld_gif" ; then
4384 def_gif_4='#define CONFIG_GIF_4 1'
4385 res_comment=""
4387 else
4388 def_gif='#undef CONFIG_GIF'
4389 def_gif_4='#undef CONFIG_GIF_4'
4390 novomodules="gif89a $novomodules"
4391 nocodecmodules="gif $nocodecmodules"
4393 echores "$_gif"
4396 case "$_gif" in yes*)
4397 echocheck "broken giflib workaround"
4398 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4400 cat > $TMPC << EOF
4401 #include <stdio.h>
4402 #include <gif_lib.h>
4403 int main(void) {
4404 GifFileType gif = {.UserData = NULL};
4405 printf("UserData is at address %p\n", gif.UserData);
4406 return 0;
4409 if cc_check "$_ld_gif" ; then
4410 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4411 echores "disabled"
4412 else
4413 echores "enabled"
4416 esac
4419 echocheck "VESA support"
4420 if test "$_vesa" = auto ; then
4421 _vesa=no
4422 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4424 if test "$_vesa" = yes ; then
4425 def_vesa='#define CONFIG_VESA 1'
4426 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4427 vomodules="vesa $vomodules"
4428 else
4429 def_vesa='#undef CONFIG_VESA'
4430 novomodules="vesa $novomodules"
4432 echores "$_vesa"
4434 #################
4435 # VIDEO + AUDIO #
4436 #################
4439 echocheck "SDL"
4440 _inc_tmp=""
4441 _ld_tmp=""
4442 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4443 if test -z "$_sdlconfig" ; then
4444 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4445 _sdlconfig="sdl-config"
4446 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4447 _sdlconfig="sdl11-config"
4448 else
4449 _sdlconfig=false
4452 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4453 cat > $TMPC << EOF
4454 #ifdef CONFIG_SDL_SDL_H
4455 #include <SDL/SDL.h>
4456 #else
4457 #include <SDL.h>
4458 #endif
4459 #ifndef __APPLE__
4460 // we allow SDL hacking our main() only on OSX
4461 #undef main
4462 #endif
4463 int main(int argc, char *argv[]) {
4464 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4465 return 0;
4468 _sdl=no
4469 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4470 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4471 _sdl=yes
4472 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4473 break
4475 done
4476 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4477 res_comment="using $_sdlconfig"
4478 if cygwin ; then
4479 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4480 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4481 elif mingw32 ; then
4482 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4483 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4484 else
4485 _inc_tmp="$($_sdlconfig --cflags)"
4486 _ld_tmp="$($_sdlconfig --libs)"
4488 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4489 _sdl=yes
4490 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4491 # HACK for BeOS/Haiku SDL
4492 _ld_tmp="$_ld_tmp -lstdc++"
4493 _sdl=yes
4497 if test "$_sdl" = yes ; then
4498 def_sdl='#define CONFIG_SDL 1'
4499 extra_cflags="$extra_cflags $_inc_tmp"
4500 libs_mplayer="$libs_mplayer $_ld_tmp"
4501 vomodules="sdl $vomodules"
4502 aomodules="sdl $aomodules"
4503 else
4504 def_sdl='#undef CONFIG_SDL'
4505 novomodules="sdl $novomodules"
4506 noaomodules="sdl $noaomodules"
4508 echores "$_sdl"
4511 # make sure this stays below CoreVideo to avoid issues due to namespace
4512 # conflicts between -lGL and -framework OpenGL
4513 echocheck "OpenGL"
4514 #Note: this test is run even with --enable-gl since we autodetect linker flags
4515 if (test "$_x11" = yes || test "$_sdl" = yes || test "$_cocoa" = yes || win32) && test "$_gl" != no ; then
4516 cat > $TMPC << EOF
4517 #ifdef GL_WIN32
4518 #include <windows.h>
4519 #include <GL/gl.h>
4520 #elif defined(GL_SDL)
4521 #include <GL/gl.h>
4522 #ifdef CONFIG_SDL_SDL_H
4523 #include <SDL/SDL.h>
4524 #else
4525 #include <SDL.h>
4526 #endif
4527 #ifndef __APPLE__
4528 // we allow SDL hacking our main() only on OSX
4529 #undef main
4530 #endif
4531 #else
4532 #include <GL/gl.h>
4533 #include <X11/Xlib.h>
4534 #include <GL/glx.h>
4535 #endif
4536 int main(int argc, char *argv[]) {
4537 #ifdef GL_WIN32
4538 HDC dc;
4539 wglCreateContext(dc);
4540 #elif defined(GL_SDL)
4541 SDL_GL_SwapBuffers();
4542 #else
4543 glXCreateContext(NULL, NULL, NULL, True);
4544 #endif
4545 glFinish();
4546 return 0;
4549 _gl=no
4550 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4551 if test "$_cocoa" != yes && cc_check $_ld_tmp $_ld_lm ; then
4552 _gl=yes
4553 _gl_x11=yes
4554 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4555 break
4557 done
4558 if cc_check -DGL_WIN32 -lopengl32 ; then
4559 _gl=yes
4560 _gl_win32=yes
4561 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4563 if test "$_cocoa" = yes ; then
4564 _gl=yes
4565 _gl_cocoa=yes
4567 # last so it can reuse any linker etc. flags detected before
4568 if test "$_sdl" = yes ; then
4569 if cc_check -DGL_SDL ||
4570 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4571 _gl=yes
4572 _gl_sdl=yes
4573 elif cc_check -DGL_SDL -lGL ||
4574 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4575 _gl=yes
4576 _gl_sdl=yes
4577 libs_mplayer="$libs_mplayer -lGL"
4580 else
4581 _gl=no
4583 if test "$_gl" = yes ; then
4584 def_gl='#define CONFIG_GL 1'
4585 res_comment="backends:"
4586 if test "$_gl_cocoa" = yes ; then
4587 def_gl_cocoa='#define CONFIG_GL_COCOA 1'
4588 res_comment="$res_comment cocoa"
4590 if test "$_gl_win32" = yes ; then
4591 def_gl_win32='#define CONFIG_GL_WIN32 1'
4592 res_comment="$res_comment win32"
4594 if test "$_gl_x11" = yes ; then
4595 def_gl_x11='#define CONFIG_GL_X11 1'
4596 res_comment="$res_comment x11"
4598 if test "$_gl_sdl" = yes ; then
4599 def_gl_sdl='#define CONFIG_GL_SDL 1'
4600 res_comment="$res_comment sdl"
4602 vomodules="opengl $vomodules"
4603 else
4604 def_gl='#undef CONFIG_GL'
4605 def_gl_cocoa='#undef CONFIG_GL_COCOA'
4606 def_gl_win32='#undef CONFIG_GL_WIN32'
4607 def_gl_x11='#undef CONFIG_GL_X11'
4608 def_gl_sdl='#undef CONFIG_GL_SDL'
4609 novomodules="opengl $novomodules"
4611 echores "$_gl"
4614 if os2 ; then
4615 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4616 if test "$_kva" = auto; then
4617 _kva=no;
4618 header_check_broken os2.h kva.h -lkva && _kva=yes
4620 if test "$_kva" = yes ; then
4621 def_kva='#define CONFIG_KVA 1'
4622 libs_mplayer="$libs_mplayer -lkva"
4623 vomodules="kva $vomodules"
4624 else
4625 def_kva='#undef CONFIG_KVA'
4626 novomodules="kva $novomodules"
4628 echores "$_kva"
4629 fi #if os2
4632 if win32; then
4634 echocheck "Windows waveout"
4635 if test "$_win32waveout" = auto ; then
4636 _win32waveout=no
4637 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4639 if test "$_win32waveout" = yes ; then
4640 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4641 libs_mplayer="$libs_mplayer -lwinmm"
4642 aomodules="win32 $aomodules"
4643 else
4644 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4645 noaomodules="win32 $noaomodules"
4647 echores "$_win32waveout"
4649 echocheck "Direct3D"
4650 if test "$_direct3d" = auto ; then
4651 _direct3d=no
4652 header_check d3d9.h && _direct3d=yes
4654 if test "$_direct3d" = yes ; then
4655 def_direct3d='#define CONFIG_DIRECT3D 1'
4656 vomodules="direct3d $vomodules"
4657 else
4658 def_direct3d='#undef CONFIG_DIRECT3D'
4659 novomodules="direct3d $novomodules"
4661 echores "$_direct3d"
4663 echocheck "Directx"
4664 if test "$_directx" = auto ; then
4665 cat > $TMPC << EOF
4666 #include <ddraw.h>
4667 #include <dsound.h>
4668 int main(void) { return 0; }
4670 _directx=no
4671 cc_check -lgdi32 && _directx=yes
4673 if test "$_directx" = yes ; then
4674 def_directx='#define CONFIG_DIRECTX 1'
4675 libs_mplayer="$libs_mplayer -lgdi32"
4676 vomodules="directx $vomodules"
4677 aomodules="dsound $aomodules"
4678 else
4679 def_directx='#undef CONFIG_DIRECTX'
4680 novomodules="directx $novomodules"
4681 noaomodules="dsound $noaomodules"
4683 echores "$_directx"
4685 fi #if win32; then
4688 echocheck "DXR3/H+"
4689 if test "$_dxr3" = auto ; then
4690 _dxr3=no
4691 header_check linux/em8300.h && _dxr3=yes
4693 if test "$_dxr3" = yes ; then
4694 def_dxr3='#define CONFIG_DXR3 1'
4695 vomodules="dxr3 $vomodules"
4696 else
4697 def_dxr3='#undef CONFIG_DXR3'
4698 novomodules="dxr3 $novomodules"
4700 echores "$_dxr3"
4703 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4704 if test "$_ivtv" = auto ; then
4705 cat > $TMPC << EOF
4706 #include <sys/time.h>
4707 #include <linux/videodev2.h>
4708 #include <linux/ivtv.h>
4709 #include <sys/ioctl.h>
4710 int main(void) {
4711 struct ivtv_cfg_stop_decode sd;
4712 struct ivtv_cfg_start_decode sd1;
4713 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4714 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4715 return 0; }
4717 _ivtv=no
4718 cc_check && _ivtv=yes
4720 if test "$_ivtv" = yes ; then
4721 def_ivtv='#define CONFIG_IVTV 1'
4722 vomodules="ivtv $vomodules"
4723 aomodules="ivtv $aomodules"
4724 else
4725 def_ivtv='#undef CONFIG_IVTV'
4726 novomodules="ivtv $novomodules"
4727 noaomodules="ivtv $noaomodules"
4729 echores "$_ivtv"
4732 echocheck "V4L2 MPEG Decoder"
4733 if test "$_v4l2" = auto ; then
4734 cat > $TMPC << EOF
4735 #include <sys/time.h>
4736 #include <linux/videodev2.h>
4737 #include <linux/version.h>
4738 int main(void) {
4739 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4740 #error kernel headers too old, need 2.6.22
4741 #endif
4742 struct v4l2_ext_controls ctrls;
4743 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4744 return 0;
4747 _v4l2=no
4748 cc_check && _v4l2=yes
4750 if test "$_v4l2" = yes ; then
4751 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4752 vomodules="v4l2 $vomodules"
4753 aomodules="v4l2 $aomodules"
4754 else
4755 def_v4l2='#undef CONFIG_V4L2_DECODER'
4756 novomodules="v4l2 $novomodules"
4757 noaomodules="v4l2 $noaomodules"
4759 echores "$_v4l2"
4763 #########
4764 # AUDIO #
4765 #########
4768 echocheck "OSS Audio"
4769 if test "$_ossaudio" = auto ; then
4770 _ossaudio=no
4771 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4773 if test "$_ossaudio" = yes ; then
4774 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4775 aomodules="oss $aomodules"
4776 cat > $TMPC << EOF
4777 #include <$_soundcard_header>
4778 #ifdef OPEN_SOUND_SYSTEM
4779 int main(void) { return 0; }
4780 #else
4781 #error Not the real thing
4782 #endif
4784 _real_ossaudio=no
4785 cc_check && _real_ossaudio=yes
4786 if test "$_real_ossaudio" = yes; then
4787 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4788 # Check for OSS4 headers (override default headers)
4789 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4790 if test -f /etc/oss.conf; then
4791 . /etc/oss.conf
4792 _ossinc="$OSSLIBDIR/include"
4793 if test -f "$_ossinc/sys/soundcard.h"; then
4794 extra_cflags="-I$_ossinc $extra_cflags"
4797 elif netbsd || openbsd ; then
4798 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4799 extra_ldflags="$extra_ldflags -lossaudio"
4800 else
4801 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4803 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4804 else
4805 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4806 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4807 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4808 noaomodules="oss $noaomodules"
4810 echores "$_ossaudio"
4813 echocheck "aRts"
4814 if test "$_arts" = auto ; then
4815 _arts=no
4816 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4817 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4818 _arts=yes
4822 if test "$_arts" = yes ; then
4823 def_arts='#define CONFIG_ARTS 1'
4824 aomodules="arts $aomodules"
4825 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4826 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4827 else
4828 noaomodules="arts $noaomodules"
4830 echores "$_arts"
4833 echocheck "EsounD"
4834 if test "$_esd" = auto ; then
4835 _esd=no
4836 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4837 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4840 echores "$_esd"
4842 if test "$_esd" = yes ; then
4843 def_esd='#define CONFIG_ESD 1'
4844 aomodules="esd $aomodules"
4845 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4846 extra_cflags="$extra_cflags $(esd-config --cflags)"
4848 echocheck "esd_get_latency()"
4849 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4850 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4851 echores "$_esd_latency"
4852 else
4853 def_esd='#undef CONFIG_ESD'
4854 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4855 noaomodules="esd $noaomodules"
4858 echocheck "RSound"
4859 if test "$_rsound" = auto ; then
4860 _rsound=no
4861 statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
4863 echores "$_rsound"
4865 if test "$_rsound" = yes ; then
4866 def_rsound='#define CONFIG_RSOUND 1'
4867 aomodules="rsound $aomodules"
4868 libs_mplayer="$libs_mplayer -lrsound"
4869 else
4870 def_rsound='#undef CONFIG_RSOUND'
4871 noaomodules="rsound $noaomodules"
4875 echocheck "NAS"
4876 if test "$_nas" = auto ; then
4877 _nas=no
4878 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4880 if test "$_nas" = yes ; then
4881 def_nas='#define CONFIG_NAS 1'
4882 libs_mplayer="$libs_mplayer -laudio -lXt"
4883 aomodules="nas $aomodules"
4884 else
4885 noaomodules="nas $noaomodules"
4886 def_nas='#undef CONFIG_NAS'
4888 echores "$_nas"
4891 echocheck "pulse"
4892 if test "$_pulse" = auto ; then
4893 _pulse=no
4894 if pkg_config_add 'libpulse >= 0.9' ; then
4895 _pulse=yes
4898 echores "$_pulse"
4900 if test "$_pulse" = yes ; then
4901 def_pulse='#define CONFIG_PULSE 1'
4902 aomodules="pulse $aomodules"
4903 else
4904 def_pulse='#undef CONFIG_PULSE'
4905 noaomodules="pulse $noaomodules"
4909 echocheck "JACK"
4910 if test "$_jack" = auto ; then
4911 _jack=no
4912 if pkg_config_add jack ; then
4913 _jack=yes
4917 if test "$_jack" = yes ; then
4918 def_jack='#define CONFIG_JACK 1'
4919 aomodules="jack $aomodules"
4920 else
4921 noaomodules="jack $noaomodules"
4923 echores "$_jack"
4925 echocheck "OpenAL"
4926 if test "$_openal" = auto ; then
4927 _openal=no
4928 cat > $TMPC << EOF
4929 #ifdef OPENAL_AL_H
4930 #include <OpenAL/al.h>
4931 #else
4932 #include <AL/al.h>
4933 #endif
4934 int main(void) {
4935 alSourceQueueBuffers(0, 0, 0);
4936 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4937 return 0;
4940 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4941 cc_check $I && _openal=yes && break
4942 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4943 done
4944 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4946 if test "$_openal" = yes ; then
4947 def_openal='#define CONFIG_OPENAL 1'
4948 aomodules="openal $aomodules"
4949 else
4950 noaomodules="openal $noaomodules"
4952 echores "$_openal"
4954 echocheck "ALSA audio"
4955 if test "$_alloca" != yes ; then
4956 _alsa=no
4957 res_comment="alloca missing"
4959 if test "$_alsa" = auto ; then
4960 _alsa=no
4961 if pkg_config_add "alsa >= 1.0.9" ; then
4962 _alsa=yes
4965 def_alsa='#undef CONFIG_ALSA'
4966 if test "$_alsa" = yes ; then
4967 aomodules="alsa $aomodules"
4968 def_alsa='#define CONFIG_ALSA 1'
4969 else
4970 noaomodules="alsa $noaomodules"
4972 echores "$_alsa"
4975 echocheck "Sun audio"
4976 if test "$_sunaudio" = auto ; then
4977 cat > $TMPC << EOF
4978 #include <sys/types.h>
4979 #include <sys/audioio.h>
4980 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
4982 _sunaudio=no
4983 cc_check && _sunaudio=yes
4985 if test "$_sunaudio" = yes ; then
4986 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
4987 aomodules="sun $aomodules"
4988 else
4989 def_sunaudio='#undef CONFIG_SUN_AUDIO'
4990 noaomodules="sun $noaomodules"
4992 echores "$_sunaudio"
4995 if darwin; then
4996 echocheck "CoreAudio"
4997 if test "$_coreaudio" = auto ; then
4998 cat > $TMPC <<EOF
4999 #include <CoreAudio/CoreAudio.h>
5000 #include <AudioToolbox/AudioToolbox.h>
5001 #include <AudioUnit/AudioUnit.h>
5002 int main(void) { return 0; }
5004 _coreaudio=no
5005 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5007 if test "$_coreaudio" = yes ; then
5008 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5009 def_coreaudio='#define CONFIG_COREAUDIO 1'
5010 aomodules="coreaudio $aomodules"
5011 else
5012 def_coreaudio='#undef CONFIG_COREAUDIO'
5013 noaomodules="coreaudio $noaomodules"
5015 echores $_coreaudio
5016 fi #if darwin
5019 if irix; then
5020 echocheck "SGI audio"
5021 if test "$_sgiaudio" = auto ; then
5022 _sgiaudio=no
5023 header_check dmedia/audio.h && _sgiaudio=yes
5025 if test "$_sgiaudio" = "yes" ; then
5026 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5027 libs_mplayer="$libs_mplayer -laudio"
5028 aomodules="sgi $aomodules"
5029 else
5030 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5031 noaomodules="sgi $noaomodules"
5033 echores "$_sgiaudio"
5034 fi #if irix
5037 if os2 ; then
5038 echocheck "KAI (UNIAUD/DART)"
5039 if test "$_kai" = auto; then
5040 _kai=no;
5041 header_check_broken os2.h kai.h -lkai && _kai=yes
5043 if test "$_kai" = yes ; then
5044 def_kai='#define CONFIG_KAI 1'
5045 libs_mplayer="$libs_mplayer -lkai"
5046 aomodules="kai $aomodules"
5047 else
5048 def_kai='#undef CONFIG_KAI'
5049 noaomodules="kai $noaomodules"
5051 echores "$_kai"
5053 echocheck "DART"
5054 if test "$_dart" = auto; then
5055 _dart=no;
5056 header_check_broken os2.h dart.h -ldart && _dart=yes
5058 if test "$_dart" = yes ; then
5059 def_dart='#define CONFIG_DART 1'
5060 libs_mplayer="$libs_mplayer -ldart"
5061 aomodules="dart $aomodules"
5062 else
5063 def_dart='#undef CONFIG_DART'
5064 noaomodules="dart $noaomodules"
5066 echores "$_dart"
5067 fi #if os2
5070 # set default CD/DVD devices
5071 if win32 || os2 ; then
5072 default_cdrom_device="D:"
5073 elif darwin ; then
5074 default_cdrom_device="/dev/disk1"
5075 elif dragonfly ; then
5076 default_cdrom_device="/dev/cd0"
5077 elif freebsd ; then
5078 default_cdrom_device="/dev/acd0"
5079 elif openbsd ; then
5080 default_cdrom_device="/dev/rcd0c"
5081 elif sunos ; then
5082 default_cdrom_device="/vol/dev/aliases/cdrom0"
5083 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5084 # file system and the volfs service.
5085 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5086 elif amigaos ; then
5087 default_cdrom_device="a1ide.device:2"
5088 else
5089 default_cdrom_device="/dev/cdrom"
5092 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5093 default_dvd_device=$default_cdrom_device
5094 elif darwin ; then
5095 default_dvd_device="/dev/rdiskN"
5096 else
5097 default_dvd_device="/dev/dvd"
5101 echocheck "VCD support"
5102 if test "$_vcd" = auto; then
5103 _vcd=no
5104 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5105 _vcd=yes
5106 elif mingw32; then
5107 header_check ddk/ntddcdrm.h && _vcd=yes
5110 if test "$_vcd" = yes; then
5111 inputmodules="vcd $inputmodules"
5112 def_vcd='#define CONFIG_VCD 1'
5113 else
5114 def_vcd='#undef CONFIG_VCD'
5115 noinputmodules="vcd $noinputmodules"
5116 res_comment="not supported on this OS"
5118 echores "$_vcd"
5122 echocheck "Blu-ray support"
5123 if test "$_bluray" = auto ; then
5124 _bluray=no
5125 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0, 0)' -lbluray && _bluray=yes
5127 if test "$_bluray" = yes ; then
5128 def_bluray='#define CONFIG_LIBBLURAY 1'
5129 extra_ldflags="$extra_ldflags -lbluray"
5130 inputmodules="bluray $inputmodules"
5131 else
5132 def_bluray='#undef CONFIG_LIBBLURAY'
5133 noinputmodules="bluray $noinputmodules"
5135 echores "$_bluray"
5137 echocheck "dvdread"
5138 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5139 _dvdread_internal=no
5141 if test "$_dvdread_internal" = auto ; then
5142 _dvdread_internal=no
5143 _dvdread=no
5144 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5145 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5146 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5147 darwin || win32 || os2; then
5148 _dvdread_internal=yes
5149 _dvdread=yes
5150 extra_cflags="-Ilibdvdread4 $extra_cflags"
5152 elif test "$_dvdread" = auto ; then
5153 _dvdread=no
5154 if test "$_dl" = yes; then
5155 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5156 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5157 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5158 _dvdread=yes
5159 extra_cflags="$extra_cflags $_dvdreadcflags"
5160 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5161 res_comment="external"
5166 if test "$_dvdread_internal" = yes; then
5167 def_dvdread='#define CONFIG_DVDREAD 1'
5168 inputmodules="dvdread(internal) $inputmodules"
5169 res_comment="internal"
5170 elif test "$_dvdread" = yes; then
5171 def_dvdread='#define CONFIG_DVDREAD 1'
5172 extra_ldflags="$extra_ldflags -ldvdread"
5173 inputmodules="dvdread(external) $inputmodules"
5174 res_comment="external"
5175 else
5176 def_dvdread='#undef CONFIG_DVDREAD'
5177 noinputmodules="dvdread $noinputmodules"
5179 echores "$_dvdread"
5182 echocheck "internal libdvdcss"
5183 if test "$_libdvdcss_internal" = auto ; then
5184 _libdvdcss_internal=no
5185 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5186 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5188 if test "$_libdvdcss_internal" = yes ; then
5189 if linux || netbsd || openbsd || bsdos ; then
5190 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5191 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5192 elif freebsd || dragonfly ; then
5193 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5194 elif darwin ; then
5195 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5196 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5197 elif cygwin ; then
5198 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5199 elif beos ; then
5200 cflags_libdvdcss="-DSYS_BEOS"
5201 elif os2 ; then
5202 cflags_libdvdcss="-DSYS_OS2"
5204 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5205 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5206 inputmodules="libdvdcss(internal) $inputmodules"
5207 else
5208 noinputmodules="libdvdcss(internal) $noinputmodules"
5210 echores "$_libdvdcss_internal"
5213 echocheck "cdparanoia"
5214 if test "$_cdparanoia" = auto ; then
5215 cat > $TMPC <<EOF
5216 #include <cdda_interface.h>
5217 #include <cdda_paranoia.h>
5218 // This need a better test. How ?
5219 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5221 _cdparanoia=no
5222 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5223 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5224 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5225 done
5227 if test "$_cdparanoia" = yes ; then
5228 _cdda='yes'
5229 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5230 openbsd && extra_ldflags="$extra_ldflags -lutil"
5232 echores "$_cdparanoia"
5235 echocheck "libcdio"
5236 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5237 _libcdio=no
5238 if pkg_config_add libcdio_paranoia ; then
5239 _libcdio=yes
5242 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5243 _cdda='yes'
5244 def_libcdio='#define CONFIG_LIBCDIO 1'
5245 def_havelibcdio='yes'
5246 else
5247 _libcdio=no
5248 if test "$_cdparanoia" = yes ; then
5249 res_comment="using cdparanoia"
5251 def_libcdio='#undef CONFIG_LIBCDIO'
5252 def_havelibcdio='no'
5254 echores "$_libcdio"
5256 if test "$_cdda" = yes ; then
5257 test $_cddb = auto && test $networking = yes && _cddb=yes
5258 def_cdparanoia='#define CONFIG_CDDA 1'
5259 inputmodules="cdda $inputmodules"
5260 else
5261 def_cdparanoia='#undef CONFIG_CDDA'
5262 noinputmodules="cdda $noinputmodules"
5265 if test "$_cddb" = yes ; then
5266 def_cddb='#define CONFIG_CDDB 1'
5267 inputmodules="cddb $inputmodules"
5268 else
5269 _cddb=no
5270 def_cddb='#undef CONFIG_CDDB'
5271 noinputmodules="cddb $noinputmodules"
5274 echocheck "bitmap font support"
5275 if test "$_bitmap_font" = yes ; then
5276 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5277 else
5278 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5280 echores "$_bitmap_font"
5283 echocheck "freetype >= 2.0.9"
5285 # freetype depends on iconv
5286 if test "$_iconv" = no ; then
5287 _freetype=no
5288 res_comment="iconv support needed"
5291 if test "$_freetype" = auto ; then
5292 if pkg_config_add freetype2 ; then
5293 _freetype=yes
5294 else
5295 die "Unable to find development files for libfreetype. Aborting. If you really mean to compile without FreeType support use --disable-freetype."
5298 if test "$_freetype" = yes ; then
5299 def_freetype='#define CONFIG_FREETYPE 1'
5300 else
5301 def_freetype='#undef CONFIG_FREETYPE'
5303 echores "$_freetype"
5305 if test "$_freetype" = no ; then
5306 _fontconfig=no
5307 res_comment="FreeType support needed"
5309 echocheck "fontconfig"
5310 if test "$_fontconfig" = auto ; then
5311 if pkg_config_add 'fontconfig >= 2.4.2' ; then
5312 _fontconfig=yes
5313 else
5314 die "Unable to find development files for libfontconfig. Aborting. If you really mean to compile without fontconfig support use --disable-fontconfig."
5317 if test "$_fontconfig" = yes ; then
5318 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5319 else
5320 def_fontconfig='#undef CONFIG_FONTCONFIG'
5322 echores "$_fontconfig"
5325 echocheck "SSA/ASS support"
5326 if test "$_ass" = auto ; then
5327 if pkg_config_add libass ; then
5328 _ass=yes
5329 def_ass='#define CONFIG_ASS 1'
5330 else
5331 die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
5333 else
5334 def_ass='#undef CONFIG_ASS'
5336 echores "$_ass"
5339 echocheck "fribidi with charsets"
5340 if test "$_fribidi" = auto ; then
5341 _fribidi=no
5342 if pkg_config_add fribidi ; then
5343 _fribidi=yes
5346 if test "$_fribidi" = yes ; then
5347 def_fribidi='#define CONFIG_FRIBIDI 1'
5348 else
5349 def_fribidi='#undef CONFIG_FRIBIDI'
5351 echores "$_fribidi"
5354 echocheck "ENCA"
5355 if test "$_enca" = auto ; then
5356 _enca=no
5357 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5359 if test "$_enca" = yes ; then
5360 def_enca='#define CONFIG_ENCA 1'
5361 extra_ldflags="$extra_ldflags -lenca"
5362 else
5363 def_enca='#undef CONFIG_ENCA'
5365 echores "$_enca"
5368 echocheck "zlib"
5369 _zlib=no
5370 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5371 if test "$_zlib" = yes ; then
5372 def_zlib='#define CONFIG_ZLIB 1'
5373 extra_ldflags="$extra_ldflags -lz"
5374 else
5375 def_zlib='#define CONFIG_ZLIB 0'
5377 echores "$_zlib"
5380 echocheck "RTC"
5381 if test "$_rtc" = auto ; then
5382 cat > $TMPC << EOF
5383 #include <sys/ioctl.h>
5384 #ifdef __linux__
5385 #include <linux/rtc.h>
5386 #else
5387 #include <rtc.h>
5388 #define RTC_PIE_ON RTCIO_PIE_ON
5389 #endif
5390 int main(void) { return RTC_PIE_ON; }
5392 _rtc=no
5393 cc_check && _rtc=yes
5394 ppc && _rtc=no
5396 if test "$_rtc" = yes ; then
5397 def_rtc='#define HAVE_RTC 1'
5398 else
5399 def_rtc='#undef HAVE_RTC'
5401 echores "$_rtc"
5404 echocheck "mad support"
5405 if test "$_mad" = auto ; then
5406 _mad=no
5407 header_check mad.h -lmad && _mad=yes
5409 if test "$_mad" = yes ; then
5410 def_mad='#define CONFIG_LIBMAD 1'
5411 extra_ldflags="$extra_ldflags -lmad"
5412 codecmodules="libmad $codecmodules"
5413 else
5414 def_mad='#undef CONFIG_LIBMAD'
5415 nocodecmodules="libmad $nocodecmodules"
5417 echores "$_mad"
5419 echocheck "OggVorbis support"
5420 if test "$_libvorbis" = auto; then
5421 _libvorbis=no
5422 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5423 elif test "$_libvorbis" = yes ; then
5424 _tremor=no
5426 if test "$_tremor" = auto; then
5427 _tremor=no
5428 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5430 if test "$_tremor" = yes ; then
5431 _vorbis=yes
5432 def_vorbis='#define CONFIG_OGGVORBIS 1'
5433 def_tremor='#define CONFIG_TREMOR 1'
5434 codecmodules="tremor(external) $codecmodules"
5435 res_comment="external Tremor"
5436 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5437 elif test "$_libvorbis" = yes ; then
5438 _vorbis=yes
5439 def_vorbis='#define CONFIG_OGGVORBIS 1'
5440 codecmodules="libvorbis $codecmodules"
5441 res_comment="libvorbis"
5442 extra_ldflags="$extra_ldflags -lvorbis -logg"
5443 else
5444 _vorbis=no
5445 nocodecmodules="libvorbis $nocodecmodules"
5447 echores "$_vorbis"
5449 echocheck "libspeex (version >= 1.1 required)"
5450 if test "$_speex" = auto ; then
5451 _speex=no
5452 cat > $TMPC << EOF
5453 #include <stddef.h>
5454 #include <speex/speex.h>
5455 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5457 cc_check -lspeex $_ld_lm && _speex=yes
5459 if test "$_speex" = yes ; then
5460 def_speex='#define CONFIG_SPEEX 1'
5461 extra_ldflags="$extra_ldflags -lspeex"
5462 codecmodules="speex $codecmodules"
5463 else
5464 def_speex='#undef CONFIG_SPEEX'
5465 nocodecmodules="speex $nocodecmodules"
5467 echores "$_speex"
5469 echocheck "OggTheora support"
5470 if test "$_theora" = auto ; then
5471 _theora=no
5472 if pkg_config_add theora ; then
5473 _theora=yes
5476 if test "$_theora" = yes ; then
5477 def_theora='#define CONFIG_OGGTHEORA 1'
5478 codecmodules="libtheora $codecmodules"
5479 else
5480 def_theora='#undef CONFIG_OGGTHEORA'
5481 nocodecmodules="libtheora $nocodecmodules"
5483 echores "$_theora"
5485 # Any version of libmpg123 shall be fine.
5486 echocheck "mpg123 support"
5487 def_mpg123='#undef CONFIG_MPG123'
5488 if test "$_mpg123" = auto; then
5489 _mpg123=no
5490 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5492 if test "$_mpg123" = yes ; then
5493 def_mpg123='#define CONFIG_MPG123 1'
5494 codecmodules="mpg123 $codecmodules"
5495 else
5496 nocodecmodules="mpg123 $nocodecmodules"
5498 echores "$_mpg123"
5500 echocheck "liba52 support"
5501 def_liba52='#undef CONFIG_LIBA52'
5502 if test "$_liba52" = auto ; then
5503 _liba52=no
5504 cat > $TMPC << EOF
5505 #include <inttypes.h>
5506 #include <a52dec/a52.h>
5507 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5509 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5511 if test "$_liba52" = yes ; then
5512 def_liba52='#define CONFIG_LIBA52 1'
5513 codecmodules="liba52 $codecmodules"
5514 else
5515 nocodecmodules="liba52 $nocodecmodules"
5517 echores "$_liba52"
5519 echocheck "libdca support"
5520 if test "$_libdca" = auto ; then
5521 _libdca=no
5522 for _ld_dca in -ldca -ldts ; do
5523 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5524 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5525 done
5527 if test "$_libdca" = yes ; then
5528 def_libdca='#define CONFIG_LIBDCA 1'
5529 codecmodules="libdca $codecmodules"
5530 else
5531 def_libdca='#undef CONFIG_LIBDCA'
5532 nocodecmodules="libdca $nocodecmodules"
5534 echores "$_libdca"
5536 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5537 if test "$_musepack" = yes ; then
5538 _musepack=no
5539 cat > $TMPC << EOF
5540 #include <stddef.h>
5541 #include <mpcdec/mpcdec.h>
5542 int main(void) {
5543 mpc_streaminfo info;
5544 mpc_decoder decoder;
5545 mpc_decoder_set_streaminfo(&decoder, &info);
5546 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5547 return 0;
5550 cc_check -lmpcdec $_ld_lm && _musepack=yes
5552 if test "$_musepack" = yes ; then
5553 def_musepack='#define CONFIG_MUSEPACK 1'
5554 extra_ldflags="$extra_ldflags -lmpcdec"
5555 codecmodules="musepack $codecmodules"
5556 else
5557 def_musepack='#undef CONFIG_MUSEPACK'
5558 nocodecmodules="musepack $nocodecmodules"
5560 echores "$_musepack"
5563 echocheck "FAAD2 support"
5564 if test "$_faad" = auto ; then
5565 _faad=no
5566 cat > $TMPC << EOF
5567 #include <faad.h>
5568 #ifndef FAAD_MIN_STREAMSIZE
5569 #error Too old version
5570 #endif
5571 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5572 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5574 cc_check -lfaad $_ld_lm && _faad=yes
5577 def_faad='#undef CONFIG_FAAD'
5578 if test "$_faad" = yes ; then
5579 def_faad='#define CONFIG_FAAD 1'
5580 extra_ldflags="$extra_ldflags -lfaad"
5581 codecmodules="faad2 $codecmodules"
5582 else
5583 nocodecmodules="faad2 $nocodecmodules"
5585 echores "$_faad"
5588 echocheck "LADSPA plugin support"
5589 if test "$_ladspa" = auto ; then
5590 _ladspa=no
5591 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5593 if test "$_ladspa" = yes; then
5594 def_ladspa="#define CONFIG_LADSPA 1"
5595 else
5596 def_ladspa="#undef CONFIG_LADSPA"
5598 echores "$_ladspa"
5601 echocheck "libbs2b audio filter support"
5602 if test "$_libbs2b" = auto ; then
5603 _libbs2b=no
5604 if pkg_config_add libbs2b ; then
5605 _libbs2b=yes
5608 def_libbs2b="#undef CONFIG_LIBBS2B"
5609 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5610 echores "$_libbs2b"
5613 if test -z "$_codecsdir" ; then
5614 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5615 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5616 if test -d "$dir" ; then
5617 _codecsdir="$dir"
5618 break;
5620 done
5622 # Fall back on default directory.
5623 if test -z "$_codecsdir" ; then
5624 _codecsdir="$_libdir/codecs"
5625 mingw32 || os2 && _codecsdir="codecs"
5629 echocheck "Win32 codecs"
5630 if test "$_win32dll" = auto ; then
5631 _win32dll=no
5632 if x86_32 && ! qnx; then
5633 _win32dll=yes
5636 if test "$_win32dll" = yes ; then
5637 def_win32dll='#define CONFIG_WIN32DLL 1'
5638 if ! win32 ; then
5639 def_win32_loader='#define WIN32_LOADER 1'
5640 _win32_emulation=yes
5641 else
5642 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5643 res_comment="using native windows"
5645 codecmodules="win32 $codecmodules"
5646 else
5647 def_win32dll='#undef CONFIG_WIN32DLL'
5648 def_win32_loader='#undef WIN32_LOADER'
5649 nocodecmodules="win32 $nocodecmodules"
5651 echores "$_win32dll"
5654 echocheck "XAnim codecs"
5655 if test "$_xanim" = auto ; then
5656 _xanim=no
5657 res_comment="dynamic loader support needed"
5658 if test "$_dl" = yes ; then
5659 _xanim=yes
5662 if test "$_xanim" = yes ; then
5663 def_xanim='#define CONFIG_XANIM 1'
5664 codecmodules="xanim $codecmodules"
5665 else
5666 def_xanim='#undef CONFIG_XANIM'
5667 nocodecmodules="xanim $nocodecmodules"
5669 echores "$_xanim"
5672 echocheck "RealPlayer codecs"
5673 if test "$_real" = auto ; then
5674 _real=no
5675 res_comment="dynamic loader support needed"
5676 if test "$_dl" = yes || test "$_win32dll" = yes &&
5677 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5678 _real=yes
5681 if test "$_real" = yes ; then
5682 def_real='#define CONFIG_REALCODECS 1'
5683 codecmodules="real $codecmodules"
5684 else
5685 def_real='#undef CONFIG_REALCODECS'
5686 nocodecmodules="real $nocodecmodules"
5688 echores "$_real"
5691 echocheck "QuickTime codecs"
5692 _qtx_emulation=no
5693 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5694 if test "$_qtx" = auto ; then
5695 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5697 if test "$_qtx" = yes ; then
5698 def_qtx='#define CONFIG_QTX_CODECS 1'
5699 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5700 codecmodules="qtx $codecmodules"
5701 darwin || win32 || _qtx_emulation=yes
5702 else
5703 def_qtx='#undef CONFIG_QTX_CODECS'
5704 nocodecmodules="qtx $nocodecmodules"
5706 echores "$_qtx"
5708 echocheck "Nemesi Streaming Media libraries"
5709 if test "$_nemesi" = auto && test "$networking" = yes ; then
5710 _nemesi=no
5711 if pkg_config_add libnemesi ; then
5712 _nemesi=yes
5715 if test "$_nemesi" = yes; then
5716 _native_rtsp=no
5717 def_nemesi='#define CONFIG_LIBNEMESI 1'
5718 inputmodules="nemesi $inputmodules"
5719 else
5720 _native_rtsp="$networking"
5721 _nemesi=no
5722 def_nemesi='#undef CONFIG_LIBNEMESI'
5723 noinputmodules="nemesi $noinputmodules"
5725 echores "$_nemesi"
5727 echocheck "LIVE555 Streaming Media libraries"
5728 if test "$_live" != no && test "$networking" = yes ; then
5729 cat > $TMPCPP << EOF
5730 #include <liveMedia.hh>
5731 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
5732 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
5733 #endif
5734 int main(void) { return 0; }
5737 _live=no
5738 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
5739 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
5740 _livelibdir=$(echo $I| sed s/-I//) &&
5741 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
5742 $_livelibdir/groupsock/libgroupsock.a \
5743 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
5744 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
5745 $extra_ldflags -lstdc++" \
5746 extra_cxxflags="-I$_livelibdir/liveMedia/include \
5747 -I$_livelibdir/UsageEnvironment/include \
5748 -I$_livelibdir/BasicUsageEnvironment/include \
5749 -I$_livelibdir/groupsock/include" &&
5750 _live=yes && break
5751 done
5752 if test "$_live" != yes ; then
5753 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
5754 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
5755 _live_dist=yes
5759 if test "$_live" = yes && test "$networking" = yes; then
5760 test $_livelibdir && res_comment="using $_livelibdir"
5761 def_live='#define CONFIG_LIVE555 1'
5762 inputmodules="live555 $inputmodules"
5763 elif test "$_live_dist" = yes && test "$networking" = yes; then
5764 res_comment="using distribution version"
5765 _live="yes"
5766 def_live='#define CONFIG_LIVE555 1'
5767 extra_ldflags="$extra_ldflags $ld_tmp"
5768 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
5769 inputmodules="live555 $inputmodules"
5770 else
5771 _live=no
5772 def_live='#undef CONFIG_LIVE555'
5773 noinputmodules="live555 $noinputmodules"
5775 echores "$_live"
5779 # Test with > against Libav 0.8 versions which will NOT work rather than
5780 # specify minimum version, to allow (future) point releases to possibly work.
5781 all_libav_libs="libavutil > 51.21.0:libavcodec > 53.34.0:libavformat > 53.20.0:libswscale >= 2.0.0"
5782 echocheck "Libav ($all_libav_libs)"
5783 if test "$ffmpeg" = auto ; then
5784 IFS=":" # shell should not be used for programming
5785 if ! pkg_config_add $all_libav_libs ; then
5786 die "Unable to find development files for some of the required Libav libraries above. Aborting."
5789 echores "yes"
5791 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
5792 if ! test -z "$_ffmpeg_source" ; then
5793 def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
5796 echocheck "libpostproc >= 52.0.0"
5797 if test "$libpostproc" = auto ; then
5798 libpostproc=no
5799 if pkg_config_add "libpostproc >= 52.0.0" ; then
5800 libpostproc=yes
5803 if test "$libpostproc" = yes ; then
5804 def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
5805 else
5806 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
5808 echores "$libpostproc"
5811 echocheck "libdv-0.9.5+"
5812 if test "$_libdv" = auto ; then
5813 _libdv=no
5814 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
5816 if test "$_libdv" = yes ; then
5817 def_libdv='#define CONFIG_LIBDV095 1'
5818 extra_ldflags="$extra_ldflags -ldv"
5819 codecmodules="libdv $codecmodules"
5820 else
5821 def_libdv='#undef CONFIG_LIBDV095'
5822 nocodecmodules="libdv $nocodecmodules"
5824 echores "$_libdv"
5827 echocheck "Xvid"
5828 if test "$_xvid" = auto ; then
5829 _xvid=no
5830 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
5831 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
5832 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
5833 done
5836 if test "$_xvid" = yes ; then
5837 def_xvid='#define CONFIG_XVID4 1'
5838 codecmodules="xvid $codecmodules"
5839 else
5840 def_xvid='#undef CONFIG_XVID4'
5841 nocodecmodules="xvid $nocodecmodules"
5843 echores "$_xvid"
5846 echocheck "libnut"
5847 if test "$_libnut" = auto ; then
5848 _libnut=no
5849 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
5852 if test "$_libnut" = yes ; then
5853 def_libnut='#define CONFIG_LIBNUT 1'
5854 extra_ldflags="$extra_ldflags -lnut"
5855 else
5856 def_libnut='#undef CONFIG_LIBNUT'
5858 echores "$_libnut"
5860 # These VO checks must be done after the FFmpeg one
5861 echocheck "/dev/mga_vid"
5862 if test "$_mga" = auto ; then
5863 _mga=no
5864 test -c /dev/mga_vid && _mga=yes
5866 if test "$_mga" = yes ; then
5867 def_mga='#define CONFIG_MGA 1'
5868 vomodules="mga $vomodules"
5869 else
5870 def_mga='#undef CONFIG_MGA'
5871 novomodules="mga $novomodules"
5873 echores "$_mga"
5876 echocheck "xmga"
5877 if test "$_xmga" = auto ; then
5878 _xmga=no
5879 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
5881 if test "$_xmga" = yes ; then
5882 def_xmga='#define CONFIG_XMGA 1'
5883 vomodules="xmga $vomodules"
5884 else
5885 def_xmga='#undef CONFIG_XMGA'
5886 novomodules="xmga $novomodules"
5888 echores "$_xmga"
5891 echocheck "UnRAR executable"
5892 if test "$_unrar_exec" = auto ; then
5893 _unrar_exec="yes"
5894 mingw32 && _unrar_exec="no"
5896 if test "$_unrar_exec" = yes ; then
5897 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
5898 else
5899 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
5901 echores "$_unrar_exec"
5903 echocheck "TV interface"
5904 if test "$_tv" = yes ; then
5905 def_tv='#define CONFIG_TV 1'
5906 inputmodules="tv $inputmodules"
5907 else
5908 noinputmodules="tv $noinputmodules"
5909 def_tv='#undef CONFIG_TV'
5911 echores "$_tv"
5914 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
5915 echocheck "*BSD BT848 bt8xx header"
5916 _ioctl_bt848_h=no
5917 for file in "machine/ioctl_bt848.h" \
5918 "dev/bktr/ioctl_bt848.h" \
5919 "dev/video/bktr/ioctl_bt848.h" \
5920 "dev/ic/bt8xx.h" ; do
5921 cat > $TMPC <<EOF
5922 #include <sys/types.h>
5923 #include <sys/ioctl.h>
5924 #include <$file>
5925 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
5927 if cc_check ; then
5928 _ioctl_bt848_h=yes
5929 _ioctl_bt848_h_name="$file"
5930 break;
5932 done
5933 if test "$_ioctl_bt848_h" = yes ; then
5934 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
5935 res_comment="using $_ioctl_bt848_h_name"
5936 else
5937 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
5939 echores "$_ioctl_bt848_h"
5941 echocheck "*BSD ioctl_meteor.h"
5942 _ioctl_meteor_h=no
5943 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
5944 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
5945 _ioctl_meteor_h=yes && break
5946 done
5947 if test "$_ioctl_meteor_h" = yes ; then
5948 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
5949 res_comment="using $ioctl_meteor_h_path"
5950 else
5951 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
5953 echores "$_ioctl_meteor_h"
5955 echocheck "*BSD BrookTree 848 TV interface"
5956 if test "$_tv_bsdbt848" = auto ; then
5957 _tv_bsdbt848=no
5958 if test "$_tv" = yes ; then
5959 cat > $TMPC <<EOF
5960 #include <sys/types.h>
5961 $def_ioctl_meteor_h_name
5962 $def_ioctl_bt848_h_name
5963 #ifdef IOCTL_METEOR_H_NAME
5964 #include IOCTL_METEOR_H_NAME
5965 #endif
5966 #ifdef IOCTL_BT848_H_NAME
5967 #include IOCTL_BT848_H_NAME
5968 #endif
5969 int main(void) {
5970 ioctl(0, METEORSINPUT, 0);
5971 ioctl(0, TVTUNER_GETFREQ, 0);
5972 return 0;
5975 cc_check && _tv_bsdbt848=yes
5978 if test "$_tv_bsdbt848" = yes ; then
5979 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
5980 inputmodules="tv-bsdbt848 $inputmodules"
5981 else
5982 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
5983 noinputmodules="tv-bsdbt848 $noinputmodules"
5985 echores "$_tv_bsdbt848"
5986 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
5989 echocheck "DirectShow TV interface"
5990 if test "$_tv_dshow" = auto ; then
5991 _tv_dshow=no
5992 if test "$_tv" = yes && win32 ; then
5993 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
5996 if test "$_tv_dshow" = yes ; then
5997 inputmodules="tv-dshow $inputmodules"
5998 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
5999 extra_ldflags="$extra_ldflags -lole32 -luuid"
6000 else
6001 noinputmodules="tv-dshow $noinputmodules"
6002 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6004 echores "$_tv_dshow"
6007 echocheck "Video 4 Linux TV interface"
6008 if test "$_tv_v4l1" = auto ; then
6009 _tv_v4l1=no
6010 if test "$_tv" = yes && linux ; then
6011 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6014 if test "$_tv_v4l1" = yes ; then
6015 _audio_input=yes
6016 _tv_v4l=yes
6017 def_tv_v4l='#define CONFIG_TV_V4L 1'
6018 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6019 inputmodules="tv-v4l $inputmodules"
6020 else
6021 noinputmodules="tv-v4l1 $noinputmodules"
6022 def_tv_v4l='#undef CONFIG_TV_V4L'
6024 echores "$_tv_v4l1"
6027 echocheck "Video 4 Linux 2 TV interface"
6028 if test "$_tv_v4l2" = auto ; then
6029 _tv_v4l2=no
6030 if test "$_tv" = yes && linux ; then
6031 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6032 elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
6033 _tv_v4l2=yes
6036 if test "$_tv_v4l2" = yes ; then
6037 _audio_input=yes
6038 _tv_v4l=yes
6039 def_tv_v4l='#define CONFIG_TV_V4L 1'
6040 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6041 inputmodules="tv-v4l2 $inputmodules"
6042 else
6043 noinputmodules="tv-v4l2 $noinputmodules"
6044 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6046 echores "$_tv_v4l2"
6049 echocheck "Radio interface"
6050 if test "$_radio" = yes ; then
6051 def_radio='#define CONFIG_RADIO 1'
6052 inputmodules="radio $inputmodules"
6053 if test "$_alsa" != yes -a "$_ossaudio" != yes ; then
6054 _radio_capture=no
6056 if test "$_radio_capture" = yes ; then
6057 _audio_input=yes
6058 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6059 else
6060 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6062 else
6063 noinputmodules="radio $noinputmodules"
6064 def_radio='#undef CONFIG_RADIO'
6065 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6066 _radio_capture=no
6068 echores "$_radio"
6069 echocheck "Capture for Radio interface"
6070 echores "$_radio_capture"
6072 echocheck "Video 4 Linux 2 Radio interface"
6073 if test "$_radio_v4l2" = auto ; then
6074 _radio_v4l2=no
6075 if test "$_radio" = yes && linux ; then
6076 header_check linux/videodev2.h && _radio_v4l2=yes
6079 if test "$_radio_v4l2" = yes ; then
6080 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6081 else
6082 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6084 echores "$_radio_v4l2"
6086 echocheck "Video 4 Linux Radio interface"
6087 if test "$_radio_v4l" = auto ; then
6088 _radio_v4l=no
6089 if test "$_radio" = yes && linux ; then
6090 header_check linux/videodev.h && _radio_v4l=yes
6093 if test "$_radio_v4l" = yes ; then
6094 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6095 else
6096 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6098 echores "$_radio_v4l"
6100 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6101 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6102 echocheck "*BSD BrookTree 848 Radio interface"
6103 _radio_bsdbt848=no
6104 cat > $TMPC <<EOF
6105 #include <sys/types.h>
6106 $def_ioctl_bt848_h_name
6107 #ifdef IOCTL_BT848_H_NAME
6108 #include IOCTL_BT848_H_NAME
6109 #endif
6110 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6112 cc_check && _radio_bsdbt848=yes
6113 echores "$_radio_bsdbt848"
6114 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6116 if test "$_radio_bsdbt848" = yes ; then
6117 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6118 else
6119 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6122 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6123 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6124 die "Radio driver requires BSD BT848, V4L or V4L2!"
6127 echocheck "Video 4 Linux 2 MPEG PVR interface"
6128 if test "$_pvr" = auto ; then
6129 _pvr=no
6130 if test "$_tv_v4l2" = yes && linux ; then
6131 cat > $TMPC <<EOF
6132 #include <sys/time.h>
6133 #include <linux/videodev2.h>
6134 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6136 cc_check && _pvr=yes
6139 if test "$_pvr" = yes ; then
6140 def_pvr='#define CONFIG_PVR 1'
6141 inputmodules="pvr $inputmodules"
6142 else
6143 noinputmodules="pvr $noinputmodules"
6144 def_pvr='#undef CONFIG_PVR'
6146 echores "$_pvr"
6149 echocheck "ftp"
6150 if test "$_ftp" = "auto" ; then
6151 test "$networking" = "yes" && ! beos && _ftp=yes
6153 if test "$_ftp" = yes ; then
6154 def_ftp='#define CONFIG_FTP 1'
6155 inputmodules="ftp $inputmodules"
6156 else
6157 noinputmodules="ftp $noinputmodules"
6158 def_ftp='#undef CONFIG_FTP'
6160 echores "$_ftp"
6162 echocheck "vstream client"
6163 if test "$_vstream" = auto ; then
6164 _vstream=no
6165 cat > $TMPC <<EOF
6166 #include <vstream-client.h>
6167 void vstream_error(const char *format, ... ) {}
6168 int main(void) { vstream_start(); return 0; }
6170 cc_check -lvstream-client && _vstream=yes
6172 if test "$_vstream" = yes ; then
6173 def_vstream='#define CONFIG_VSTREAM 1'
6174 inputmodules="vstream $inputmodules"
6175 extra_ldflags="$extra_ldflags -lvstream-client"
6176 else
6177 noinputmodules="vstream $noinputmodules"
6178 def_vstream='#undef CONFIG_VSTREAM'
6180 echores "$_vstream"
6183 echocheck "Subtitles sorting"
6184 if test "$_sortsub" = yes ; then
6185 def_sortsub='#define CONFIG_SORTSUB 1'
6186 else
6187 def_sortsub='#undef CONFIG_SORTSUB'
6189 echores "$_sortsub"
6192 echocheck "XMMS inputplugin support"
6193 if test "$_xmms" = yes ; then
6194 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6195 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6196 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6197 else
6198 _xmmsplugindir=/usr/lib/xmms/Input
6199 _xmmslibdir=/usr/lib
6202 def_xmms='#define CONFIG_XMMS 1'
6203 if darwin ; then
6204 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6205 else
6206 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6208 else
6209 def_xmms='#undef CONFIG_XMMS'
6211 echores "$_xmms"
6213 if test "$_charset" != "noconv" ; then
6214 def_charset="#define MSG_CHARSET \"$_charset\""
6215 else
6216 def_charset="#undef MSG_CHARSET"
6217 _charset="UTF-8"
6220 #############################################################################
6222 echocheck "automatic gdb attach"
6223 if test "$_crash_debug" = yes ; then
6224 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6225 else
6226 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6227 _crash_debug=no
6229 echores "$_crash_debug"
6231 echocheck "compiler support for noexecstack"
6232 if cflag_check -Wl,-z,noexecstack ; then
6233 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6234 echores "yes"
6235 else
6236 echores "no"
6239 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6240 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6241 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6242 echores "yes"
6243 else
6244 echores "no"
6248 # Dynamic linking flags
6249 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6250 _ld_dl_dynamic=''
6251 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6252 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6253 _ld_dl_dynamic='-rdynamic'
6256 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6257 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6258 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6260 def_debug='#undef MP_DEBUG'
6261 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6264 echocheck "joystick"
6265 def_joystick='#undef CONFIG_JOYSTICK'
6266 if test "$_joystick" = yes ; then
6267 if linux || freebsd ; then
6268 # TODO add some check
6269 def_joystick='#define CONFIG_JOYSTICK 1'
6270 else
6271 _joystick="no"
6272 res_comment="unsupported under $system_name"
6275 echores "$_joystick"
6277 echocheck "lirc"
6278 if test "$_lirc" = auto ; then
6279 _lirc=no
6280 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6282 if test "$_lirc" = yes ; then
6283 def_lirc='#define CONFIG_LIRC 1'
6284 libs_mplayer="$libs_mplayer -llirc_client"
6285 else
6286 def_lirc='#undef CONFIG_LIRC'
6288 echores "$_lirc"
6290 echocheck "lircc"
6291 if test "$_lircc" = auto ; then
6292 _lircc=no
6293 header_check lirc/lircc.h -llircc && _lircc=yes
6295 if test "$_lircc" = yes ; then
6296 def_lircc='#define CONFIG_LIRCC 1'
6297 libs_mplayer="$libs_mplayer -llircc"
6298 else
6299 def_lircc='#undef CONFIG_LIRCC'
6301 echores "$_lircc"
6303 #############################################################################
6305 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6306 # the OMF format needs to come after the 'extern symbol prefix' check, which
6307 # uses nm.
6308 if os2 ; then
6309 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6312 #############################################################################
6314 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
6316 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6318 # This must be the last test to be performed. Any other tests following it
6319 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6320 # against libdvdread (to permit MPlayer to use its own copy of the library).
6321 # So any compilation using the flags added here but not linking against
6322 # libdvdread can fail.
6323 echocheck "DVD support (libdvdnav)"
6324 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6325 _dvdnav=no
6327 dvdnav_internal=no
6328 if test "$_dvdnav" = auto ; then
6329 if test "$_dvdread_internal" = yes ; then
6330 _dvdnav=yes
6331 dvdnav_internal=yes
6332 res_comment="internal"
6333 else
6334 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6337 if test "$_dvdnav" = auto ; then
6338 _dvdnav=no
6339 _dvdnavdir=$($_dvdnavconfig --cflags)
6340 _dvdnavlibs=$($_dvdnavconfig --libs)
6341 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6343 if test "$_dvdnav" = yes ; then
6344 def_dvdnav='#define CONFIG_DVDNAV 1'
6345 if test "$dvdnav_internal" = yes ; then
6346 cflags_libdvdnav="-Ilibdvdnav"
6347 inputmodules="dvdnav(internal) $inputmodules"
6348 else
6349 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6350 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6351 inputmodules="dvdnav $inputmodules"
6353 else
6354 def_dvdnav='#undef CONFIG_DVDNAV'
6355 noinputmodules="dvdnav $noinputmodules"
6357 echores "$_dvdnav"
6359 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6360 # Read dvdnav comment above.
6362 mak_enable () {
6363 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6364 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6365 nprefix=$3;
6366 for part in $list; do
6367 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6368 echo "${nprefix}_$part = yes"
6370 done
6373 #############################################################################
6374 echo "Creating config.mak"
6375 cat > config.mak << EOF
6376 # -------- Generated by configure -----------
6378 # Ensure that locale settings do not interfere with shell commands.
6379 export LC_ALL = C
6381 CONFIGURATION = $configuration
6383 CHARSET = $_charset
6384 DOC_LANGS = $language_doc
6385 DOC_LANG_ALL = $doc_lang_all
6386 MAN_LANGS = $language_man
6387 MAN_LANG_ALL = $man_lang_all
6388 MSG_LANGS = $language_msg
6389 MSG_LANG_ALL = $msg_lang_all
6391 prefix = \$(DESTDIR)$_prefix
6392 BINDIR = \$(DESTDIR)$_bindir
6393 DATADIR = \$(DESTDIR)$_datadir
6394 LIBDIR = \$(DESTDIR)$_libdir
6395 MANDIR = \$(DESTDIR)$_mandir
6396 CONFDIR = \$(DESTDIR)$_confdir
6397 LOCALEDIR = \$(DESTDIR)$_localedir
6399 AR = $_ar
6400 AS = $_cc
6401 CC = $_cc
6402 CXX = $_cc
6403 HOST_CC = $_host_cc
6404 INSTALL = $_install
6405 INSTALLSTRIP = $_install_strip
6406 WINDRES = $_windres
6408 CFLAGS = $WARNFLAGS $ERRORFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6409 CXXFLAGS = $WARNFLAGS $ERRORFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6410 DEPFLAGS = $DEPFLAGS
6412 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6413 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6414 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6415 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6416 CFLAGS_STACKREALIGN = $cflags_stackrealign
6418 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6419 EXTRALIBS_MPLAYER = $libs_mplayer
6421 GETCH = $_getch
6422 TIMER = $_timer
6424 EXESUF = $_exesuf
6425 EXESUFS_ALL = .exe
6427 ARCH = $arch
6428 $(mak_enable "$arch_all" "$arch" ARCH)
6429 $(mak_enable "$subarch_all" "$subarch" ARCH)
6430 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6432 MPLAYER = $_mplayer
6434 NEED_GETTIMEOFDAY = $need_gettimeofday
6435 NEED_GLOB = $need_glob
6436 NEED_MMAP = $need_mmap
6437 NEED_SETENV = $need_setenv
6438 NEED_SHMEM = $need_shmem
6439 NEED_STRSEP = $need_strsep
6440 NEED_SWAB = $need_swab
6441 NEED_VSSCANF = $need_vsscanf
6443 # features
6444 3DFX = $_3dfx
6445 AA = $_aa
6446 ALSA = $_alsa
6447 APPLE_IR = $_apple_ir
6448 APPLE_REMOTE = $_apple_remote
6449 ARTS = $_arts
6450 AUDIO_INPUT = $_audio_input
6451 BITMAP_FONT = $_bitmap_font
6452 BL = $_bl
6453 CACA = $_caca
6454 CDDA = $_cdda
6455 CDDB = $_cddb
6456 COREAUDIO = $_coreaudio
6457 COREVIDEO = $_corevideo
6458 DART = $_dart
6459 DGA = $_dga
6460 DIRECT3D = $_direct3d
6461 DIRECTFB = $_directfb
6462 DIRECTX = $_directx
6463 DVBIN = $_dvbin
6464 DVDNAV = $_dvdnav
6465 DVDNAV_INTERNAL = $dvdnav_internal
6466 DVDREAD = $_dvdread
6467 DVDREAD_INTERNAL = $_dvdread_internal
6468 DXR3 = $_dxr3
6469 ESD = $_esd
6470 FAAD = $_faad
6471 FASTMEMCPY = $_fastmemcpy
6472 FBDEV = $_fbdev
6473 FREETYPE = $_freetype
6474 FTP = $_ftp
6475 GIF = $_gif
6476 GGI = $_ggi
6477 GL = $_gl
6478 GL_COCOA = $_gl_cocoa
6479 GL_WIN32 = $_gl_win32
6480 GL_X11 = $_gl_x11
6481 GL_SDL = $_gl_sdl
6482 HAVE_POSIX_SELECT = $_posix_select
6483 HAVE_SYS_MMAN_H = $_mman
6484 IVTV = $_ivtv
6485 JACK = $_jack
6486 JOYSTICK = $_joystick
6487 JPEG = $_jpeg
6488 KAI = $_kai
6489 KVA = $_kva
6490 LADSPA = $_ladspa
6491 LIBA52 = $_liba52
6492 LIBASS = $_ass
6493 LIBBLURAY = $_bluray
6494 LIBBS2B = $_libbs2b
6495 LIBDCA = $_libdca
6496 LIBDV = $_libdv
6497 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6498 LIBMAD = $_mad
6499 LIBNEMESI = $_nemesi
6500 LIBNUT = $_libnut
6501 LIBPOSTPROC = $libpostproc
6502 LIBSMBCLIENT = $_smb
6503 LIBTHEORA = $_theora
6504 LIRC = $_lirc
6505 LIVE555 = $_live
6506 MACOSX_FINDER = $_macosx_finder
6507 MD5SUM = $_md5sum
6508 MGA = $_mga
6509 MNG = $_mng
6510 MPG123 = $_mpg123
6511 MUSEPACK = $_musepack
6512 NAS = $_nas
6513 NATIVE_RTSP = $_native_rtsp
6514 NETWORKING = $networking
6515 OPENAL = $_openal
6516 OSS = $_ossaudio
6517 PE_EXECUTABLE = $_pe_executable
6518 PNG = $_png
6519 PNM = $_pnm
6520 PRIORITY = $_priority
6521 PULSE = $_pulse
6522 PVR = $_pvr
6523 QTX_CODECS = $_qtx
6524 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6525 QTX_EMULATION = $_qtx_emulation
6526 RADIO=$_radio
6527 RADIO_CAPTURE=$_radio_capture
6528 REAL_CODECS = $_real
6529 RSOUND = $_rsound
6530 S3FB = $_s3fb
6531 SDL = $_sdl
6532 SPEEX = $_speex
6533 STREAM_CACHE = $_stream_cache
6534 SGIAUDIO = $_sgiaudio
6535 SUNAUDIO = $_sunaudio
6536 SVGA = $_svga
6537 TDFXFB = $_tdfxfb
6538 TDFXVID = $_tdfxvid
6539 TGA = $_tga
6540 TV = $_tv
6541 TV_BSDBT848 = $_tv_bsdbt848
6542 TV_DSHOW = $_tv_dshow
6543 TV_V4L = $_tv_v4l
6544 TV_V4L1 = $_tv_v4l1
6545 TV_V4L2 = $_tv_v4l2
6546 UNRAR_EXEC = $_unrar_exec
6547 V4L2 = $_v4l2
6548 VCD = $_vcd
6549 VDPAU = $_vdpau
6550 VESA = $_vesa
6551 VORBIS = $_vorbis
6552 VSTREAM = $_vstream
6553 WII = $_wii
6554 WIN32DLL = $_win32dll
6555 WIN32WAVEOUT = $_win32waveout
6556 WIN32_EMULATION = $_win32_emulation
6557 X11 = $_x11
6558 XANIM_CODECS = $_xanim
6559 XMGA = $_xmga
6560 XMMS_PLUGINS = $_xmms
6561 XV = $_xv
6562 XVID4 = $_xvid
6563 XVR100 = $_xvr100
6564 YUV4MPEG = $_yuv4mpeg
6566 # FFmpeg
6567 FFMPEG_INTERNALS = $ffmpeg_internals
6568 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6570 RANLIB = $_ranlib
6571 YASM = $_yasm
6572 YASMFLAGS = $YASMFLAGS
6574 CONFIG_VDPAU = $_vdpau
6575 CONFIG_ZLIB = $_zlib
6577 HAVE_PTHREADS = $_pthreads
6578 HAVE_SHM = $_shm
6579 HAVE_W32THREADS = $_w32threads
6580 HAVE_YASM = $have_yasm
6584 #############################################################################
6586 ff_config_enable () {
6587 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6588 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6589 _nprefix=$3;
6590 test -z "$_nprefix" && _nprefix='CONFIG'
6591 for part in $list; do
6592 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6593 echo "#define ${_nprefix}_$part 1"
6594 else
6595 echo "#define ${_nprefix}_$part 0"
6597 done
6600 echo "Creating config.h"
6601 cat > $TMPH << EOF
6602 /*----------------------------------------------------------------------------
6603 ** This file has been automatically generated by configure any changes in it
6604 ** will be lost when you run configure again.
6605 ** Instead of modifying definitions here, use the --enable/--disable options
6606 ** of the configure script! See ./configure --help for details.
6607 *---------------------------------------------------------------------------*/
6609 #ifndef MPLAYER_CONFIG_H
6610 #define MPLAYER_CONFIG_H
6612 /* Undefine this if you do not want to select mono audio (left or right)
6613 with a stereo MPEG layer 2/3 audio stream. The command line option
6614 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6615 right-only), with 0 being the default.
6617 #define CONFIG_FAKE_MONO 1
6619 /* set up audio OUTBURST. Do not change this! */
6620 #define OUTBURST 512
6622 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6623 #undef FAST_OSD
6624 #undef FAST_OSD_TABLE
6628 #define CONFIGURATION "$configuration"
6630 #define MPLAYER_DATADIR "$_datadir"
6631 #define MPLAYER_CONFDIR "$_confdir"
6632 #define MPLAYER_LOCALEDIR "$_localedir"
6634 $def_translation
6636 /* definitions needed by included libraries */
6637 #define HAVE_INTTYPES_H 1
6638 /* libdvdcss */
6639 #define HAVE_ERRNO_H 1
6640 /* libdvdcss + libdvdread */
6641 #define HAVE_LIMITS_H 1
6642 /* libdvdcss */
6643 #define HAVE_UNISTD_H 1
6644 /* libdvdread */
6645 #define STDC_HEADERS 1
6646 #define HAVE_MEMCPY 1
6647 /* libdvdnav */
6648 #define READ_CACHE_TRACE 0
6649 /* libdvdread */
6650 #define HAVE_DLFCN_H 1
6651 $def_dvdcss
6654 /* system headers */
6655 $def_alloca_h
6656 $def_altivec_h
6657 $def_malloc_h
6658 $def_mman_h
6659 $def_mman_has_map_failed
6660 $def_soundcard_h
6661 $def_sys_soundcard_h
6662 $def_sys_sysinfo_h
6663 $def_sys_videoio_h
6664 $def_termios_h
6665 $def_termios_sys_h
6666 $def_winsock2_h
6669 /* system functions */
6670 $def_gethostbyname2
6671 $def_gettimeofday
6672 $def_glob
6673 $def_langinfo
6674 $def_lrintf
6675 $def_map_memalign
6676 $def_memalign
6677 $def_nanosleep
6678 $def_posix_select
6679 $def_select
6680 $def_setenv
6681 $def_setmode
6682 $def_shm
6683 $def_strsep
6684 $def_swab
6685 $def_sysi86
6686 $def_sysi86_iv
6687 $def_termcap
6688 $def_termios
6689 $def_vsscanf
6692 /* system-specific features */
6693 $def_asmalign_pot
6694 $def_builtin_expect
6695 $def_dl
6696 $def_dos_paths
6697 $def_extern_asm
6698 $def_extern_prefix
6699 $def_iconv
6700 $def_kstat
6701 $def_macosx_bundle
6702 $def_macosx_finder
6703 $def_priority
6704 $def_quicktime
6705 $def_restrict_keyword
6706 $def_rtc
6707 $def_unrar_exec
6710 /* configurable options */
6711 $def_charset
6712 $def_crash_debug
6713 $def_debug
6714 $def_fastmemcpy
6715 $def_runtime_cpudetection
6716 $def_sighandler
6717 $def_sortsub
6718 $def_stream_cache
6719 $def_pthread_cache
6722 /* CPU stuff */
6723 #define __CPU__ $iproc
6724 $def_ebx_available
6725 $def_words_endian
6726 $def_bigendian
6727 $(ff_config_enable "$arch_all" "$arch" "ARCH")
6728 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
6729 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
6732 /* Blu-ray/DVD/VCD/CD */
6733 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
6734 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
6735 $def_bluray
6736 $def_bsdi_dvd
6737 $def_cddb
6738 $def_cdio
6739 $def_cdparanoia
6740 $def_cdrom
6741 $def_dvd
6742 $def_dvd_bsd
6743 $def_dvd_darwin
6744 $def_dvd_linux
6745 $def_dvd_openbsd
6746 $def_dvdio
6747 $def_dvdnav
6748 $def_dvdread
6749 $def_hpux_scsi_h
6750 $def_libcdio
6751 $def_sol_scsi_h
6752 $def_vcd
6755 /* codec libraries */
6756 $def_faad
6757 $def_liba52
6758 $def_libdca
6759 $def_libdv
6760 $def_mad
6761 $def_mpg123
6762 $def_musepack
6763 $def_speex
6764 $def_theora
6765 $def_tremor
6766 $def_vorbis
6767 $def_xvid
6768 $def_zlib
6770 $def_libpostproc
6771 $def_libnut
6774 /* binary codecs */
6775 $def_qtx
6776 $def_qtx_win32
6777 $def_real
6778 $def_win32_loader
6779 $def_win32dll
6780 $def_xanim
6781 $def_xmms
6782 #define BINARY_CODECS_PATH "$_codecsdir"
6783 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
6786 /* Audio output drivers */
6787 $def_alsa
6788 $def_arts
6789 $def_coreaudio
6790 $def_dart
6791 $def_esd
6792 $def_esd_latency
6793 $def_jack
6794 $def_kai
6795 $def_nas
6796 $def_openal
6797 $def_openal_h
6798 $def_ossaudio
6799 $def_ossaudio_devdsp
6800 $def_ossaudio_devmixer
6801 $def_pulse
6802 $def_rsound
6803 $def_sgiaudio
6804 $def_sunaudio
6805 $def_win32waveout
6807 $def_ladspa
6808 $def_libbs2b
6811 /* input */
6812 $def_apple_ir
6813 $def_apple_remote
6814 $def_ioctl_bt848_h_name
6815 $def_ioctl_meteor_h_name
6816 $def_joystick
6817 $def_lirc
6818 $def_lircc
6819 $def_pvr
6820 $def_radio
6821 $def_radio_bsdbt848
6822 $def_radio_capture
6823 $def_radio_v4l
6824 $def_radio_v4l2
6825 $def_tv
6826 $def_tv_bsdbt848
6827 $def_tv_dshow
6828 $def_tv_v4l
6829 $def_tv_v4l1
6830 $def_tv_v4l2
6833 /* font stuff */
6834 $def_ass
6835 $def_bitmap_font
6836 $def_enca
6837 $def_fontconfig
6838 $def_freetype
6839 $def_fribidi
6842 /* networking */
6843 $def_closesocket
6844 $def_ftp
6845 $def_inet6
6846 $def_inet_aton
6847 $def_inet_pton
6848 $def_live
6849 $def_nemesi
6850 $def_networking
6851 $def_smb
6852 $def_socklen_t
6853 $def_vstream
6856 /* libvo options */
6857 $def_3dfx
6858 $def_aa
6859 $def_bl
6860 $def_caca
6861 $def_corevideo
6862 $def_dga
6863 $def_dga1
6864 $def_dga2
6865 $def_direct3d
6866 $def_directfb
6867 $def_directx
6868 $def_dvb
6869 $def_dvbin
6870 $def_dxr3
6871 $def_fbdev
6872 $def_ggi
6873 $def_ggiwmh
6874 $def_gif
6875 $def_gif_4
6876 $def_gif_tvt_hack
6877 $def_gl
6878 $def_gl_cocoa
6879 $def_gl_win32
6880 $def_gl_x11
6881 $def_gl_sdl
6882 $def_ivtv
6883 $def_jpeg
6884 $def_kva
6885 $def_md5sum
6886 $def_mga
6887 $def_mng
6888 $def_png
6889 $def_pnm
6890 $def_s3fb
6891 $def_sdl
6892 $def_sdl_sdl_h
6893 $def_svga
6894 $def_tdfxfb
6895 $def_tdfxvid
6896 $def_tga
6897 $def_v4l2
6898 $def_vdpau
6899 $def_vesa
6900 $def_vm
6901 $def_wii
6902 $def_x11
6903 $def_xdpms
6904 $def_xf86keysym
6905 $def_xinerama
6906 $def_xmga
6907 $def_xss
6908 $def_xv
6909 $def_xvr100
6910 $def_yuv4mpeg
6913 /* FFmpeg */
6914 $def_ffmpeg_internals
6916 $def_arpa_inet_h
6917 $def_bswap
6918 $def_dcbzl
6919 $def_exp2
6920 $def_exp2f
6921 $def_fast_64bit
6922 $def_fast_unaligned
6923 $def_llrint
6924 $def_log2
6925 $def_log2f
6926 $def_lrint
6927 $def_memalign_hack
6928 $def_mkstemp
6929 $def_posix_memalign
6930 $def_pthreads
6931 $def_round
6932 $def_roundf
6933 $def_threads
6934 $def_truncf
6935 $def_xform_asm
6936 $def_yasm
6938 #define HAVE_INLINE_ASM 1
6940 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
6941 #ifndef MP_DEBUG
6942 #define HAVE_EBP_AVAILABLE 1
6943 #else
6944 #define HAVE_EBP_AVAILABLE 0
6945 #endif
6947 #endif /* MPLAYER_CONFIG_H */
6950 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
6951 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
6953 #############################################################################
6955 cat << EOF
6957 Config files successfully generated by ./configure $configuration !
6959 Install prefix: $_prefix
6960 Data directory: $_datadir
6961 Config direct.: $_confdir
6963 Byte order: $_byte_order
6964 Optimizing for: $_optimizing
6966 Languages:
6967 Messages (in addition to English): $language_msg
6968 Manual pages: $language_man
6969 Documentation: $language_doc
6971 Enabled optional drivers:
6972 Input: $inputmodules
6973 Codecs: $codecmodules
6974 Audio output: $aomodules
6975 Video output: $vomodules
6977 Disabled optional drivers:
6978 Input: $noinputmodules
6979 Codecs: $nocodecmodules
6980 Audio output: $noaomodules
6981 Video output: $novomodules
6983 'config.h' and 'config.mak' contain your configuration options.
6984 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
6985 compile *** DO NOT REPORT BUGS if you tweak these files ***
6987 'make' will now compile MPlayer and 'make install' will install it.
6988 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
6993 cat <<EOF
6994 Check $TMPLOG if you wonder why an autodetection failed (make sure
6995 development headers/packages are installed).
6997 NOTE: The --enable-* parameters unconditionally force options on, completely
6998 skipping autodetection. This behavior is unlike what you may be used to from
6999 autoconf-based configure scripts that can decide to override you. This greater
7000 level of control comes at a price. You may have to provide the correct compiler
7001 and linker flags yourself.
7002 If you used one of these options (except --enable-runtime-cpudetection and
7003 similar ones that turn on internal features) and experience a compilation or
7004 linking failure, make sure you have passed the necessary compiler/linker flags
7005 to configure.
7007 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7011 if test "$warn_cflags" = yes; then
7012 cat <<EOF
7014 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7015 but:
7017 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7019 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7020 To do so, execute 'CFLAGS= ./configure <options>'
7025 # Last move:
7026 rm -rf "$mplayer_tmpdir"