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