configure: use LINGUAS environment variable for messages
[mplayer/greg.git] / configure
blob1d24c408d447eb35560c4768c0d35f0f7b8ac138
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, look at the existing checks
23 # and try to use helper functions where you can.
25 # Furthermore you need to add the variable _feature to the list of default
26 # settings and set it to one of yes/no/auto. Also add appropriate
27 # --enable-feature/--disable-feature command line options.
28 # The results of the check should be written to config.h and config.mak
29 # at the end of this script. The variable names used for this should be
30 # uniform, i.e. if the option is named 'feature':
32 # _feature : should have a value of yes/no/auto
33 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
34 # _ld_feature : '-L/path/dir -lfeature' GCC options
36 #############################################################################
38 # Prevent locale nonsense from breaking basic text processing utils
39 export LC_ALL=C
41 # Store the configure line that was used
42 configuration="$*"
44 # Prefer these macros to full length text !
45 # These macros only return an error code - NO display is done
46 compile_check() {
47 source="$1"
48 shift
49 echo >> "$TMPLOG"
50 cat "$source" >> "$TMPLOG"
51 echo >> "$TMPLOG"
52 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
53 rm -f "$TMPEXE"
54 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
55 TMPRES="$?"
56 echo >> "$TMPLOG"
57 echo >> "$TMPLOG"
58 return "$TMPRES"
61 cc_check() {
62 compile_check $TMPC $@
65 cxx_check() {
66 compile_check $TMPCPP $@ -lstdc++
69 cflag_check() {
70 cat > $TMPC << EOF
71 int main(void) { return 0; }
72 EOF
73 compile_check $TMPC $@
76 header_check() {
77 cat > $TMPC << EOF
78 #include <$1>
79 int main(void) { return 0; }
80 EOF
81 shift
82 compile_check $TMPC $@
85 return_check() {
86 cat > $TMPC << EOF
87 #include <$1>
88 int main(void) { return $2; }
89 EOF
90 shift 2
91 compile_check $TMPC $@
94 statement_check() {
95 cat > $TMPC << EOF
96 #include <$1>
97 int main(void) { $2; return 0; }
98 EOF
99 shift
100 shift
101 compile_check $TMPC $@
104 define_statement_check() {
105 cat > $TMPC << EOF
106 #define $1
107 #include <$2>
108 int main(void) { $3; return 0; }
110 shift 3
111 compile_check $TMPC $@
114 return_statement_check() {
115 cat > $TMPC << EOF
116 #include <$1>
117 int main(void) { $2; return $3; }
119 shift 3
120 compile_check $TMPC $@
123 inline_asm_check() {
124 cat > $TMPC << EOF
125 int main(void) { __asm__ volatile ($1); return 0; }
127 shift
128 compile_check $TMPC $@
131 # The following checks are special and should only be used with broken and
132 # non-selfsufficient headers that do not include all of their dependencies.
134 header_check_broken() {
135 cat > $TMPC << EOF
136 #include <$1>
137 #include <$2>
138 int main(void) { return 0; }
140 shift
141 shift
142 compile_check $TMPC $@
145 statement_check_broken() {
146 cat > $TMPC << EOF
147 #include <$1>
148 #include <$2>
149 int main(void) { $3; return 0; }
151 shift 3
152 compile_check $TMPC $@
155 yasm_check() {
156 echo >> "$TMPLOG"
157 cat "$TMPS" >> "$TMPLOG"
158 echo >> "$TMPLOG"
159 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
160 rm -f "$TMPEXE"
161 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
162 TMPRES="$?"
163 echo >> "$TMPLOG"
164 echo >> "$TMPLOG"
165 return "$TMPRES"
168 tmp_run() {
169 "$TMPEXE" >> "$TMPLOG" 2>&1
172 # Display error message, flushes tempfile, exit
173 die () {
174 echo
175 echo "Error: $@" >&2
176 echo >&2
177 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
178 echo "Check \"$TMPLOG\" if you do not understand why it failed."
179 exit 1
182 # OS test booleans functions
183 issystem() {
184 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
186 aix() { issystem "AIX"; }
187 amigaos() { issystem "AmigaOS"; }
188 beos() { issystem "BEOS"; }
189 bsdos() { issystem "BSD/OS"; }
190 cygwin() { issystem "CYGWIN"; }
191 darwin() { issystem "Darwin"; }
192 dragonfly() { issystem "DragonFly"; }
193 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
194 gnu() { issystem "GNU"; }
195 hpux() { issystem "HP-UX"; }
196 irix() { issystem "IRIX"; }
197 linux() { issystem "Linux"; }
198 mingw32() { issystem "MINGW32"; }
199 morphos() { issystem "MorphOS"; }
200 netbsd() { issystem "NetBSD"; }
201 openbsd() { issystem "OpenBSD"; }
202 os2() { issystem "OS/2"; }
203 qnx() { issystem "QNX"; }
204 sunos() { issystem "SunOS"; }
205 win32() { cygwin || mingw32; }
207 # arch test boolean functions
208 # x86/x86pc is used by QNX
209 x86_32() {
210 case "$host_arch" in
211 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
212 *) return 1 ;;
213 esac
216 x86_64() {
217 case "$host_arch" in
218 x86_64|amd64) return 0 ;;
219 *) return 1 ;;
220 esac
223 x86() {
224 x86_32 || x86_64
227 ppc() {
228 case "$host_arch" in
229 ppc|ppc64|powerpc|powerpc64) return 0;;
230 *) return 1;;
231 esac
234 alpha() {
235 case "$host_arch" in
236 alpha*) return 0;;
237 *) return 1;;
238 esac
241 arm() {
242 case "$host_arch" in
243 arm*) return 0;;
244 *) return 1;;
245 esac
248 # Use this before starting a check
249 echocheck() {
250 echo "============ Checking for $@ ============" >> "$TMPLOG"
251 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
254 # Use this to echo the results of a check
255 echores() {
256 if test "$res_comment" ; then
257 res_comment="($res_comment)"
259 echo "Result is: $@ $res_comment" >> "$TMPLOG"
260 echo "##########################################" >> "$TMPLOG"
261 echo "" >> "$TMPLOG"
262 echo "$@ $res_comment"
263 res_comment=""
265 #############################################################################
267 # Check how echo works in this /bin/sh
268 case $(echo -n) in
269 -n) _echo_n= _echo_c='\c' ;; # SysV echo
270 *) _echo_n='-n ' _echo_c= ;; # BSD echo
271 esac
273 msg_lang_all=''
274 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
275 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
276 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
278 show_help(){
279 cat << EOF
280 Usage: $0 [OPTIONS]...
282 Configuration:
283 -h, --help display this help and exit
285 Installation directories:
286 --prefix=DIR prefix directory for installation [/usr/local]
287 --bindir=DIR directory for installing binaries [PREFIX/bin]
288 --datadir=DIR directory for installing machine independent
289 data files (skins, etc) [PREFIX/share/mplayer]
290 --mandir=DIR directory for installing man pages [PREFIX/share/man]
291 --confdir=DIR directory for installing configuration files
292 [PREFIX/etc/mplayer]
293 --localedir=DIR directory for locale tree [PREFIX/share/locale]
294 --libdir=DIR directory for object code libraries [PREFIX/lib]
295 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
297 Optional features:
298 --disable-mplayer disable MPlayer compilation [enable]
299 --disable-largefiles disable support for files > 2GB [enable]
300 --enable-termcap use termcap database for key codes [autodetect]
301 --enable-termios use termios database for key codes [autodetect]
302 --disable-iconv disable iconv for encoding conversion [autodetect]
303 --disable-langinfo do not use langinfo [autodetect]
304 --enable-lirc enable LIRC (remote control) support [autodetect]
305 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
306 --enable-joystick enable joystick support [disable]
307 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
308 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
309 --disable-vm disable X video mode extensions [autodetect]
310 --disable-xf86keysym disable support for multimedia keys [autodetect]
311 --enable-radio enable radio interface [disable]
312 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
313 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
314 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
315 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
316 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
317 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
318 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
319 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
320 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
321 --disable-networking disable networking [enable]
322 --enable-winsock2_h enable winsock2_h [autodetect]
323 --enable-smb enable Samba (SMB) input [autodetect]
324 --enable-live enable LIVE555 Streaming Media [autodetect]
325 --enable-nemesi enable Nemesi Streaming Media [autodetect]
326 --disable-vcd disable VCD support [autodetect]
327 --disable-bluray disable Blu-ray support [autodetect]
328 --disable-dvdnav disable libdvdnav [autodetect]
329 --disable-dvdread disable libdvdread [autodetect]
330 --disable-dvdread-internal disable internal libdvdread [autodetect]
331 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
332 --disable-cdparanoia disable cdparanoia [autodetect]
333 --disable-cddb disable cddb [autodetect]
334 --disable-bitmap-font disable bitmap font support [enable]
335 --disable-freetype disable FreeType 2 font rendering [autodetect]
336 --disable-fontconfig disable fontconfig font lookup [autodetect]
337 --disable-unrarexec disable using of UnRAR executable [enabled]
338 --enable-menu enable OSD menu (not DVD menu) [disabled]
339 --disable-sortsub disable subtitle sorting [enabled]
340 --enable-fribidi enable the FriBiDi libs [autodetect]
341 --disable-enca disable ENCA charset oracle library [autodetect]
342 --disable-maemo disable maemo specific features [autodetect]
343 --enable-macosx-finder enable Mac OS X Finder invocation parameter
344 parsing [disabled]
345 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
346 --disable-inet6 disable IPv6 support [autodetect]
347 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
348 --disable-ftp disable FTP support [enabled]
349 --disable-vstream disable TiVo vstream client support [autodetect]
350 --disable-pthreads disable Posix threads support [autodetect]
351 --disable-w32threads disable Win32 threads support [autodetect]
352 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
353 --enable-rpath enable runtime linker path for extra libs [disabled]
355 Codecs:
356 --enable-gif enable GIF support [autodetect]
357 --enable-png enable PNG input/output support [autodetect]
358 --enable-mng enable MNG input support [autodetect]
359 --enable-jpeg enable JPEG input/output support [autodetect]
360 --enable-libcdio enable libcdio support [autodetect]
361 --disable-win32dll disable Win32 DLL support [autodetect]
362 --disable-qtx disable QuickTime codecs support [enabled]
363 --disable-xanim disable XAnim codecs support [enabled]
364 --disable-real disable RealPlayer codecs support [enabled]
365 --disable-xvid disable Xvid [autodetect]
366 --disable-libnut disable libnut [autodetect]
367 --disable-ffmpeg disable FFmpeg [autodetect]
368 --disable-libvorbis disable libvorbis support [autodetect]
369 --disable-tremor disable Tremor [autodetect if no libvorbis]
370 --disable-speex disable Speex support [autodetect]
371 --enable-theora enable OggTheora libraries [autodetect]
372 --enable-faad enable FAAD2 (AAC) [autodetect]
373 --disable-ladspa disable LADSPA plugin support [autodetect]
374 --disable-libbs2b disable libbs2b audio filter support [autodetect]
375 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
376 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
377 --disable-mad disable libmad (MPEG audio) support [autodetect]
378 --enable-xmms enable XMMS input plugin support [disabled]
379 --enable-libdca enable libdca support [autodetect]
380 --disable-mp3lib disable builtin mp3lib [autodetect]
381 --disable-liba52 disable liba52 [autodetect]
382 --disable-musepack disable musepack support [autodetect]
384 Video output:
385 --enable-gl enable OpenGL video output [autodetect]
386 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
387 --enable-dga2 enable DGA 2 support [autodetect]
388 --enable-dga1 enable DGA 1 support [autodetect]
389 --enable-vesa enable VESA video output [autodetect]
390 --enable-svga enable SVGAlib video output [autodetect]
391 --enable-sdl enable SDL video output [autodetect]
392 --enable-kva enable KVA video output [autodetect]
393 --enable-aa enable AAlib video output [autodetect]
394 --enable-caca enable CACA video output [autodetect]
395 --enable-ggi enable GGI video output [autodetect]
396 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
397 --enable-direct3d enable Direct3D video output [autodetect]
398 --enable-directx enable DirectX video output [autodetect]
399 --enable-dxr3 enable DXR3/H+ video output [autodetect]
400 --enable-ivtv enable IVTV TV-Out video output [autodetect]
401 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
402 --enable-dvb enable DVB video output [autodetect]
403 --enable-mga enable mga_vid video output [autodetect]
404 --enable-xmga enable mga_vid X11 video output [autodetect]
405 --enable-xv enable Xv video output [autodetect]
406 --enable-xvmc enable XvMC acceleration [disable]
407 --enable-vdpau enable VDPAU acceleration [autodetect]
408 --enable-vm enable XF86VidMode support [autodetect]
409 --enable-xinerama enable Xinerama support [autodetect]
410 --enable-x11 enable X11 video output [autodetect]
411 --enable-xshape enable XShape support [autodetect]
412 --disable-xss disable screensaver support via xss [autodetect]
413 --enable-fbdev enable FBDev video output [autodetect]
414 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
415 --enable-tdfxfb enable tdfxfb video output [disable]
416 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
417 --enable-wii enable Nintendo Wii/GameCube video output [disable]
418 --enable-directfb enable DirectFB video output [autodetect]
419 --enable-bl enable Blinkenlights video output [disable]
420 --enable-tdfxvid enable tdfx_vid video output [disable]
421 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
422 --disable-tga disable Targa video output [enable]
423 --disable-pnm disable PNM video output [enable]
424 --disable-md5sum disable md5sum video output [enable]
425 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
426 --disable-corevideo disable CoreVideo video output [autodetect]
427 --disable-quartz disable Quartz video output [autodetect]
429 Audio output:
430 --disable-alsa disable ALSA audio output [autodetect]
431 --disable-ossaudio disable OSS audio output [autodetect]
432 --disable-arts disable aRts audio output [autodetect]
433 --disable-esd disable esd audio output [autodetect]
434 --disable-pulse disable Pulseaudio audio output [autodetect]
435 --disable-jack disable JACK audio output [autodetect]
436 --enable-openal enable OpenAL audio output [disable]
437 --disable-nas disable NAS audio output [autodetect]
438 --disable-sgiaudio disable SGI audio output [autodetect]
439 --disable-sunaudio disable Sun audio output [autodetect]
440 --disable-kai disable KAI audio output [autodetect]
441 --disable-dart disable DART audio output [autodetect]
442 --disable-win32waveout disable Windows waveout audio output [autodetect]
443 --disable-coreaudio disable CoreAudio audio output [autodetect]
444 --disable-select disable using select() on the audio device [enable]
446 Language options:
447 --enable-translation enable support for translated output [disable]
448 --charset=charset convert the console messages to this character set
449 --language-doc=lang language to use for the documentation [en]
450 --language-man=lang language to use for the man pages [en]
451 --language-msg=lang extra languages for program messages [all]
452 --language=lang default language to use [en]
453 Specific options override --language. You can pass a list of languages separated
454 by whitespace or commas instead of a single language. Nonexisting translations
455 will be dropped from each list. All translations available in the list will be
456 installed. The value "all" will activate all translations. The LINGUAS
457 environment variable is honored. In all cases the fallback is English.
458 The program always supports English-language output; additional message
459 languages are only installed if --enable-translation is also specified.
460 Available values for --language-doc are: all $doc_lang_all
461 Available values for --language-man are: all $man_lang_all
462 Available values for --language-msg are: all $msg_lang_all
464 Miscellaneous options:
465 --enable-runtime-cpudetection enable runtime CPU detection [disable]
466 --enable-cross-compile enable cross-compilation [autodetect]
467 --cc=COMPILER C compiler to build MPlayer [gcc]
468 --host-cc=COMPILER C compiler for tools needed while building [gcc]
469 --as=ASSEMBLER assembler to build MPlayer [as]
470 --nm=NM nm tool to build MPlayer [nm]
471 --yasm=YASM Yasm assembler to build MPlayer [yasm]
472 --ar=AR librarian to build MPlayer [ar]
473 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
474 --windres=WINDRES windres to build MPlayer [windres]
475 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
476 --enable-static build a statically linked binary
477 --with-install=PATH path to a custom install program
479 Advanced options:
480 --enable-mmx enable MMX [autodetect]
481 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
482 --enable-3dnow enable 3DNow! [autodetect]
483 --enable-3dnowext enable extended 3DNow! [autodetect]
484 --enable-sse enable SSE [autodetect]
485 --enable-sse2 enable SSE2 [autodetect]
486 --enable-ssse3 enable SSSE3 [autodetect]
487 --enable-shm enable shm [autodetect]
488 --enable-altivec enable AltiVec (PowerPC) [autodetect]
489 --enable-armv5te enable DSP extensions (ARM) [autodetect]
490 --enable-armv6 enable ARMv6 (ARM) [autodetect]
491 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
492 --enable-armvfp enable ARM VFP (ARM) [autodetect]
493 --enable-neon enable NEON (ARM) [autodetect]
494 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
495 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
496 --enable-big-endian force byte order to big-endian [autodetect]
497 --enable-debug[=1-3] compile-in debugging information [disable]
498 --enable-profile compile-in profiling information [disable]
499 --disable-sighandler disable sighandler for crashes [enable]
500 --enable-crash-debug enable automatic gdb attach on crash [disable]
501 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
502 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
504 Use these options if autodetection fails:
505 --extra-cflags=FLAGS extra CFLAGS
506 --extra-ldflags=FLAGS extra LDFLAGS
507 --extra-libs=FLAGS extra linker flags
508 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
509 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
511 --with-freetype-config=PATH path to freetype-config
512 --with-glib-config=PATH path to glib*-config
513 --with-gtk-config=PATH path to gtk*-config
514 --with-sdl-config=PATH path to sdl*-config
515 --with-dvdnav-config=PATH path to dvdnav-config
516 --with-dvdread-config=PATH path to dvdread-config
518 This configure script is NOT autoconf-based, even though its output is similar.
519 It will try to autodetect all configuration options. If you --enable an option
520 it will be forcefully turned on, skipping autodetection. This can break
521 compilation, so you need to know what you are doing.
523 exit 0
524 } #show_help()
526 # GOTCHA: the variables below defines the default behavior for autodetection
527 # and have - unless stated otherwise - at least 2 states : yes no
528 # If autodetection is available then the third state is: auto
529 _mmx=auto
530 _3dnow=auto
531 _3dnowext=auto
532 _mmxext=auto
533 _sse=auto
534 _sse2=auto
535 _ssse3=auto
536 _cmov=auto
537 _fast_cmov=auto
538 _fast_clz=auto
539 _armv5te=auto
540 _armv6=auto
541 _armv6t2=auto
542 _armvfp=auto
543 neon=auto
544 _iwmmxt=auto
545 _mtrr=auto
546 _altivec=auto
547 _install=install
548 _ranlib=ranlib
549 _windres=windres
550 _cc=cc
551 _ar=ar
552 test "$CC" && _cc="$CC"
553 _as=auto
554 _nm=auto
555 _yasm=yasm
556 _runtime_cpudetection=no
557 _cross_compile=auto
558 _prefix="/usr/local"
559 ffmpeg=auto
560 ffmpeg_internals=no
561 _mplayer=yes
562 _x11=auto
563 _xshape=auto
564 _xss=auto
565 _dga1=auto
566 _dga2=auto
567 _xv=auto
568 _xvmc=no #auto when complete
569 _vdpau=auto
570 _sdl=auto
571 _kva=auto
572 _direct3d=auto
573 _directx=auto
574 _win32waveout=auto
575 _nas=auto
576 _png=auto
577 _mng=auto
578 _jpeg=auto
579 _pnm=yes
580 _md5sum=yes
581 _yuv4mpeg=yes
582 _gif=auto
583 _gl=auto
584 matrixview=yes
585 _ggi=auto
586 _ggiwmh=auto
587 _aa=auto
588 _caca=auto
589 _svga=auto
590 _vesa=auto
591 _fbdev=auto
592 _dvb=auto
593 _dxr3=auto
594 _ivtv=auto
595 _v4l2=auto
596 _iconv=auto
597 _langinfo=auto
598 _rtc=auto
599 _ossaudio=auto
600 _arts=auto
601 _esd=auto
602 _pulse=auto
603 _jack=auto
604 _kai=auto
605 _dart=auto
606 _openal=no
607 _libcdio=auto
608 _mad=auto
609 _tremor=auto
610 _libvorbis=auto
611 _speex=auto
612 _theora=auto
613 _mpg123=auto
614 _mp3lib=auto
615 _liba52=auto
616 _libdca=auto
617 _faad=auto
618 _ladspa=auto
619 _libbs2b=auto
620 _xmms=no
621 _vcd=auto
622 _bluray=auto
623 _dvdnav=auto
624 _dvdnavconfig=dvdnav-config
625 _dvdreadconfig=dvdread-config
626 _dvdread=auto
627 _dvdread_internal=auto
628 _libdvdcss_internal=auto
629 _xanim=auto
630 _real=auto
631 _live=auto
632 _nemesi=auto
633 _native_rtsp=yes
634 _xinerama=auto
635 _mga=auto
636 _xmga=auto
637 _vm=auto
638 _xf86keysym=auto
639 _sgiaudio=auto
640 _sunaudio=auto
641 _alsa=auto
642 _fastmemcpy=yes
643 _unrar_exec=auto
644 _win32dll=auto
645 _select=yes
646 _radio=no
647 _radio_capture=no
648 _radio_v4l=auto
649 _radio_v4l2=auto
650 _radio_bsdbt848=auto
651 _tv=yes
652 _tv_v4l1=auto
653 _tv_v4l2=auto
654 _tv_bsdbt848=auto
655 _tv_dshow=auto
656 _pvr=auto
657 networking=yes
658 _winsock2_h=auto
659 _smb=auto
660 _joystick=no
661 _xvid=auto
662 _libnut=auto
663 _lirc=auto
664 _lircc=auto
665 _apple_remote=auto
666 _apple_ir=auto
667 _gui=no
668 _gtk1=no
669 _termcap=auto
670 _termios=auto
671 _3dfx=no
672 _s3fb=no
673 _wii=no
674 _tdfxfb=no
675 _tdfxvid=no
676 _xvr100=auto
677 _tga=yes
678 _directfb=auto
679 _bl=no
680 _largefiles=yes
681 #language=en
682 _shm=auto
683 _translation=no
684 _charset="UTF-8"
685 _dynamic_plugins=no
686 _crash_debug=no
687 _sighandler=yes
688 _libdv=auto
689 _cdparanoia=auto
690 _cddb=auto
691 _big_endian=auto
692 _bitmap_font=yes
693 _freetype=auto
694 _fontconfig=auto
695 _menu=no
696 _qtx=auto
697 _maemo=auto
698 _coreaudio=auto
699 _corevideo=auto
700 _quartz=auto
701 quicktime=auto
702 _macosx_finder=no
703 _macosx_bundle=auto
704 _sortsub=yes
705 _freetypeconfig='freetype-config'
706 _fribidi=auto
707 _enca=auto
708 _inet6=auto
709 _gethostbyname2=auto
710 _ftp=auto
711 _musepack=auto
712 _vstream=auto
713 _pthreads=auto
714 _w32threads=auto
715 _ass=auto
716 _rpath=no
717 _asmalign_pot=auto
718 _stream_cache=yes
719 _priority=no
720 def_dos_paths="#define HAVE_DOS_PATHS 0"
721 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
722 def_priority="#undef CONFIG_PRIORITY"
723 def_pthread_cache="#undef PTHREAD_CACHE"
724 need_shmem=yes
725 for ac_option do
726 case "$ac_option" in
727 --help|-help|-h)
728 show_help
730 --prefix=*)
731 _prefix=$(echo $ac_option | cut -d '=' -f 2)
733 --bindir=*)
734 _bindir=$(echo $ac_option | cut -d '=' -f 2)
736 --datadir=*)
737 _datadir=$(echo $ac_option | cut -d '=' -f 2)
739 --mandir=*)
740 _mandir=$(echo $ac_option | cut -d '=' -f 2)
742 --confdir=*)
743 _confdir=$(echo $ac_option | cut -d '=' -f 2)
745 --libdir=*)
746 _libdir=$(echo $ac_option | cut -d '=' -f 2)
748 --codecsdir=*)
749 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
751 --localedir=*)
752 _localedir=$(echo $ac_option | cut -d '=' -f 2)
755 --with-install=*)
756 _install=$(echo $ac_option | cut -d '=' -f 2 )
758 --with-xvmclib=*)
759 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
762 --with-sdl-config=*)
763 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --with-freetype-config=*)
766 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
768 --with-gtk-config=*)
769 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
771 --with-glib-config=*)
772 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
774 --with-dvdnav-config=*)
775 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
777 --with-dvdread-config=*)
778 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
781 --extra-cflags=*)
782 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
784 --extra-ldflags=*)
785 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
787 --extra-libs=*)
788 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
790 --extra-libs-mplayer=*)
791 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
794 --target=*)
795 _target=$(echo $ac_option | cut -d '=' -f 2)
797 --cc=*)
798 _cc=$(echo $ac_option | cut -d '=' -f 2)
800 --host-cc=*)
801 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
803 --as=*)
804 _as=$(echo $ac_option | cut -d '=' -f 2)
806 --nm=*)
807 _nm=$(echo $ac_option | cut -d '=' -f 2)
809 --yasm=*)
810 _yasm=$(echo $ac_option | cut -d '=' -f 2)
812 --ar=*)
813 _ar=$(echo $ac_option | cut -d '=' -f 2)
815 --ranlib=*)
816 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
818 --windres=*)
819 _windres=$(echo $ac_option | cut -d '=' -f 2)
821 --charset=*)
822 _charset=$(echo $ac_option | cut -d '=' -f 2)
824 --language-doc=*)
825 language_doc=$(echo $ac_option | cut -d '=' -f 2)
827 --language-man=*)
828 language_man=$(echo $ac_option | cut -d '=' -f 2)
830 --language-msg=*)
831 language_msg=$(echo $ac_option | cut -d '=' -f 2)
833 --language=*)
834 language=$(echo $ac_option | cut -d '=' -f 2)
837 --enable-static)
838 _ld_static='-static'
840 --disable-static)
841 _ld_static=''
843 --enable-profile)
844 _profile='-p'
846 --disable-profile)
847 _profile=
849 --enable-debug)
850 _debug='-g'
852 --enable-debug=*)
853 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
855 --disable-debug)
856 _debug=
858 --enable-translation) _translation=yes ;;
859 --disable-translation) _translation=no ;;
860 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
861 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
862 --enable-cross-compile) _cross_compile=yes ;;
863 --disable-cross-compile) _cross_compile=no ;;
864 --enable-mplayer) _mplayer=yes ;;
865 --disable-mplayer) _mplayer=no ;;
866 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
867 --disable-dynamic-plugins) _dynamic_plugins=no ;;
868 --enable-x11) _x11=yes ;;
869 --disable-x11) _x11=no ;;
870 --enable-xshape) _xshape=yes ;;
871 --disable-xshape) _xshape=no ;;
872 --enable-xss) _xss=yes ;;
873 --disable-xss) _xss=no ;;
874 --enable-xv) _xv=yes ;;
875 --disable-xv) _xv=no ;;
876 --enable-xvmc) _xvmc=yes ;;
877 --disable-xvmc) _xvmc=no ;;
878 --enable-vdpau) _vdpau=yes ;;
879 --disable-vdpau) _vdpau=no ;;
880 --enable-sdl) _sdl=yes ;;
881 --disable-sdl) _sdl=no ;;
882 --enable-kva) _kva=yes ;;
883 --disable-kva) _kva=no ;;
884 --enable-direct3d) _direct3d=yes ;;
885 --disable-direct3d) _direct3d=no ;;
886 --enable-directx) _directx=yes ;;
887 --disable-directx) _directx=no ;;
888 --enable-win32waveout) _win32waveout=yes ;;
889 --disable-win32waveout) _win32waveout=no ;;
890 --enable-nas) _nas=yes ;;
891 --disable-nas) _nas=no ;;
892 --enable-png) _png=yes ;;
893 --disable-png) _png=no ;;
894 --enable-mng) _mng=yes ;;
895 --disable-mng) _mng=no ;;
896 --enable-jpeg) _jpeg=yes ;;
897 --disable-jpeg) _jpeg=no ;;
898 --enable-pnm) _pnm=yes ;;
899 --disable-pnm) _pnm=no ;;
900 --enable-md5sum) _md5sum=yes ;;
901 --disable-md5sum) _md5sum=no ;;
902 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
903 --disable-yuv4mpeg) _yuv4mpeg=no ;;
904 --enable-gif) _gif=yes ;;
905 --disable-gif) _gif=no ;;
906 --enable-gl) _gl=yes ;;
907 --disable-gl) _gl=no ;;
908 --enable-matrixview) matrixview=yes ;;
909 --disable-matrixview) matrixview=no ;;
910 --enable-ggi) _ggi=yes ;;
911 --disable-ggi) _ggi=no ;;
912 --enable-ggiwmh) _ggiwmh=yes ;;
913 --disable-ggiwmh) _ggiwmh=no ;;
914 --enable-aa) _aa=yes ;;
915 --disable-aa) _aa=no ;;
916 --enable-caca) _caca=yes ;;
917 --disable-caca) _caca=no ;;
918 --enable-svga) _svga=yes ;;
919 --disable-svga) _svga=no ;;
920 --enable-vesa) _vesa=yes ;;
921 --disable-vesa) _vesa=no ;;
922 --enable-fbdev) _fbdev=yes ;;
923 --disable-fbdev) _fbdev=no ;;
924 --enable-dvb) _dvb=yes ;;
925 --disable-dvb) _dvb=no ;;
926 --enable-dxr3) _dxr3=yes ;;
927 --disable-dxr3) _dxr3=no ;;
928 --enable-ivtv) _ivtv=yes ;;
929 --disable-ivtv) _ivtv=no ;;
930 --enable-v4l2) _v4l2=yes ;;
931 --disable-v4l2) _v4l2=no ;;
932 --enable-iconv) _iconv=yes ;;
933 --disable-iconv) _iconv=no ;;
934 --enable-langinfo) _langinfo=yes ;;
935 --disable-langinfo) _langinfo=no ;;
936 --enable-rtc) _rtc=yes ;;
937 --disable-rtc) _rtc=no ;;
938 --enable-libdv) _libdv=yes ;;
939 --disable-libdv) _libdv=no ;;
940 --enable-ossaudio) _ossaudio=yes ;;
941 --disable-ossaudio) _ossaudio=no ;;
942 --enable-arts) _arts=yes ;;
943 --disable-arts) _arts=no ;;
944 --enable-esd) _esd=yes ;;
945 --disable-esd) _esd=no ;;
946 --enable-pulse) _pulse=yes ;;
947 --disable-pulse) _pulse=no ;;
948 --enable-jack) _jack=yes ;;
949 --disable-jack) _jack=no ;;
950 --enable-openal) _openal=yes ;;
951 --disable-openal) _openal=no ;;
952 --enable-kai) _kai=yes ;;
953 --disable-kai) _kai=no ;;
954 --enable-dart) _dart=yes ;;
955 --disable-dart) _dart=no ;;
956 --enable-mad) _mad=yes ;;
957 --disable-mad) _mad=no ;;
958 --enable-libcdio) _libcdio=yes ;;
959 --disable-libcdio) _libcdio=no ;;
960 --enable-libvorbis) _libvorbis=yes ;;
961 --disable-libvorbis) _libvorbis=no ;;
962 --enable-speex) _speex=yes ;;
963 --disable-speex) _speex=no ;;
964 --enable-tremor) _tremor=yes ;;
965 --disable-tremor) _tremor=no ;;
966 --enable-theora) _theora=yes ;;
967 --disable-theora) _theora=no ;;
968 --enable-mpg123) _mpg123=yes ;;
969 --disable-mpg123) _mpg123=no ;;
970 --enable-mp3lib) _mp3lib=yes ;;
971 --disable-mp3lib) _mp3lib=no ;;
972 --enable-liba52) _liba52=yes ;;
973 --disable-liba52) _liba52=no ;;
974 --enable-libdca) _libdca=yes ;;
975 --disable-libdca) _libdca=no ;;
976 --enable-musepack) _musepack=yes ;;
977 --disable-musepack) _musepack=no ;;
978 --enable-faad) _faad=yes ;;
979 --disable-faad) _faad=no ;;
980 --enable-ladspa) _ladspa=yes ;;
981 --disable-ladspa) _ladspa=no ;;
982 --enable-libbs2b) _libbs2b=yes ;;
983 --disable-libbs2b) _libbs2b=no ;;
984 --enable-xmms) _xmms=yes ;;
985 --disable-xmms) _xmms=no ;;
986 --enable-vcd) _vcd=yes ;;
987 --disable-vcd) _vcd=no ;;
988 --enable-bluray) _bluray=yes ;;
989 --disable-bluray) _bluray=no ;;
990 --enable-dvdread) _dvdread=yes ;;
991 --disable-dvdread) _dvdread=no ;;
992 --enable-dvdread-internal) _dvdread_internal=yes ;;
993 --disable-dvdread-internal) _dvdread_internal=no ;;
994 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
995 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
996 --enable-dvdnav) _dvdnav=yes ;;
997 --disable-dvdnav) _dvdnav=no ;;
998 --enable-xanim) _xanim=yes ;;
999 --disable-xanim) _xanim=no ;;
1000 --enable-real) _real=yes ;;
1001 --disable-real) _real=no ;;
1002 --enable-live) _live=yes ;;
1003 --disable-live) _live=no ;;
1004 --enable-nemesi) _nemesi=yes ;;
1005 --disable-nemesi) _nemesi=no ;;
1006 --enable-xinerama) _xinerama=yes ;;
1007 --disable-xinerama) _xinerama=no ;;
1008 --enable-mga) _mga=yes ;;
1009 --disable-mga) _mga=no ;;
1010 --enable-xmga) _xmga=yes ;;
1011 --disable-xmga) _xmga=no ;;
1012 --enable-vm) _vm=yes ;;
1013 --disable-vm) _vm=no ;;
1014 --enable-xf86keysym) _xf86keysym=yes ;;
1015 --disable-xf86keysym) _xf86keysym=no ;;
1016 --enable-sunaudio) _sunaudio=yes ;;
1017 --disable-sunaudio) _sunaudio=no ;;
1018 --enable-sgiaudio) _sgiaudio=yes ;;
1019 --disable-sgiaudio) _sgiaudio=no ;;
1020 --enable-alsa) _alsa=yes ;;
1021 --disable-alsa) _alsa=no ;;
1022 --enable-tv) _tv=yes ;;
1023 --disable-tv) _tv=no ;;
1024 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1025 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1026 --enable-tv-v4l1) _tv_v4l1=yes ;;
1027 --disable-tv-v4l1) _tv_v4l1=no ;;
1028 --enable-tv-v4l2) _tv_v4l2=yes ;;
1029 --disable-tv-v4l2) _tv_v4l2=no ;;
1030 --enable-tv-dshow) _tv_dshow=yes ;;
1031 --disable-tv-dshow) _tv_dshow=no ;;
1032 --enable-radio) _radio=yes ;;
1033 --enable-radio-capture) _radio_capture=yes ;;
1034 --disable-radio-capture) _radio_capture=no ;;
1035 --disable-radio) _radio=no ;;
1036 --enable-radio-v4l) _radio_v4l=yes ;;
1037 --disable-radio-v4l) _radio_v4l=no ;;
1038 --enable-radio-v4l2) _radio_v4l2=yes ;;
1039 --disable-radio-v4l2) _radio_v4l2=no ;;
1040 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1041 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1042 --enable-pvr) _pvr=yes ;;
1043 --disable-pvr) _pvr=no ;;
1044 --enable-fastmemcpy) _fastmemcpy=yes ;;
1045 --disable-fastmemcpy) _fastmemcpy=no ;;
1046 --enable-networking) networking=yes ;;
1047 --disable-networking) networking=no ;;
1048 --enable-winsock2_h) _winsock2_h=yes ;;
1049 --disable-winsock2_h) _winsock2_h=no ;;
1050 --enable-smb) _smb=yes ;;
1051 --disable-smb) _smb=no ;;
1052 --enable-joystick) _joystick=yes ;;
1053 --disable-joystick) _joystick=no ;;
1054 --enable-xvid) _xvid=yes ;;
1055 --disable-xvid) _xvid=no ;;
1056 --enable-libnut) _libnut=yes ;;
1057 --disable-libnut) _libnut=no ;;
1058 --enable-ffmpeg) ffmpeg=yes ;;
1059 --disable-ffmpeg) ffmpeg=no ;;
1060 --ffmpeg-source-dir=*)
1061 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1063 --enable-lirc) _lirc=yes ;;
1064 --disable-lirc) _lirc=no ;;
1065 --enable-lircc) _lircc=yes ;;
1066 --disable-lircc) _lircc=no ;;
1067 --enable-apple-remote) _apple_remote=yes ;;
1068 --disable-apple-remote) _apple_remote=no ;;
1069 --enable-apple-ir) _apple_ir=yes ;;
1070 --disable-apple-ir) _apple_ir=no ;;
1071 --enable-gui) _gui=yes ;;
1072 --disable-gui) _gui=no ;;
1073 --enable-gtk1) _gtk1=yes ;;
1074 --disable-gtk1) _gtk1=no ;;
1075 --enable-termcap) _termcap=yes ;;
1076 --disable-termcap) _termcap=no ;;
1077 --enable-termios) _termios=yes ;;
1078 --disable-termios) _termios=no ;;
1079 --enable-3dfx) _3dfx=yes ;;
1080 --disable-3dfx) _3dfx=no ;;
1081 --enable-s3fb) _s3fb=yes ;;
1082 --disable-s3fb) _s3fb=no ;;
1083 --enable-wii) _wii=yes ;;
1084 --disable-wii) _wii=no ;;
1085 --enable-tdfxfb) _tdfxfb=yes ;;
1086 --disable-tdfxfb) _tdfxfb=no ;;
1087 --disable-tdfxvid) _tdfxvid=no ;;
1088 --enable-tdfxvid) _tdfxvid=yes ;;
1089 --disable-xvr100) _xvr100=no ;;
1090 --enable-xvr100) _xvr100=yes ;;
1091 --disable-tga) _tga=no ;;
1092 --enable-tga) _tga=yes ;;
1093 --enable-directfb) _directfb=yes ;;
1094 --disable-directfb) _directfb=no ;;
1095 --enable-bl) _bl=yes ;;
1096 --disable-bl) _bl=no ;;
1097 --enable-mtrr) _mtrr=yes ;;
1098 --disable-mtrr) _mtrr=no ;;
1099 --enable-largefiles) _largefiles=yes ;;
1100 --disable-largefiles) _largefiles=no ;;
1101 --enable-shm) _shm=yes ;;
1102 --disable-shm) _shm=no ;;
1103 --enable-select) _select=yes ;;
1104 --disable-select) _select=no ;;
1105 --enable-cdparanoia) _cdparanoia=yes ;;
1106 --disable-cdparanoia) _cdparanoia=no ;;
1107 --enable-cddb) _cddb=yes ;;
1108 --disable-cddb) _cddb=no ;;
1109 --enable-big-endian) _big_endian=yes ;;
1110 --disable-big-endian) _big_endian=no ;;
1111 --enable-bitmap-font) _bitmap_font=yes ;;
1112 --disable-bitmap-font) _bitmap_font=no ;;
1113 --enable-freetype) _freetype=yes ;;
1114 --disable-freetype) _freetype=no ;;
1115 --enable-fontconfig) _fontconfig=yes ;;
1116 --disable-fontconfig) _fontconfig=no ;;
1117 --enable-unrarexec) _unrar_exec=yes ;;
1118 --disable-unrarexec) _unrar_exec=no ;;
1119 --enable-ftp) _ftp=yes ;;
1120 --disable-ftp) _ftp=no ;;
1121 --enable-vstream) _vstream=yes ;;
1122 --disable-vstream) _vstream=no ;;
1123 --enable-pthreads) _pthreads=yes ;;
1124 --disable-pthreads) _pthreads=no ;;
1125 --enable-w32threads) _w32threads=yes ;;
1126 --disable-w32threads) _w32threads=no ;;
1127 --enable-ass) _ass=yes ;;
1128 --disable-ass) _ass=no ;;
1129 --enable-rpath) _rpath=yes ;;
1130 --disable-rpath) _rpath=no ;;
1132 --enable-fribidi) _fribidi=yes ;;
1133 --disable-fribidi) _fribidi=no ;;
1135 --enable-enca) _enca=yes ;;
1136 --disable-enca) _enca=no ;;
1138 --enable-inet6) _inet6=yes ;;
1139 --disable-inet6) _inet6=no ;;
1141 --enable-gethostbyname2) _gethostbyname2=yes ;;
1142 --disable-gethostbyname2) _gethostbyname2=no ;;
1144 --enable-dga1) _dga1=yes ;;
1145 --disable-dga1) _dga1=no ;;
1146 --enable-dga2) _dga2=yes ;;
1147 --disable-dga2) _dga2=no ;;
1149 --enable-menu) _menu=yes ;;
1150 --disable-menu) _menu=no ;;
1152 --enable-qtx) _qtx=yes ;;
1153 --disable-qtx) _qtx=no ;;
1155 --enable-coreaudio) _coreaudio=yes ;;
1156 --disable-coreaudio) _coreaudio=no ;;
1157 --enable-corevideo) _corevideo=yes ;;
1158 --disable-corevideo) _corevideo=no ;;
1159 --enable-quartz) _quartz=yes ;;
1160 --disable-quartz) _quartz=no ;;
1161 --enable-macosx-finder) _macosx_finder=yes ;;
1162 --disable-macosx-finder) _macosx_finder=no ;;
1163 --enable-macosx-bundle) _macosx_bundle=yes ;;
1164 --disable-macosx-bundle) _macosx_bundle=no ;;
1166 --enable-maemo) _maemo=yes ;;
1167 --disable-maemo) _maemo=no ;;
1169 --enable-sortsub) _sortsub=yes ;;
1170 --disable-sortsub) _sortsub=no ;;
1172 --enable-crash-debug) _crash_debug=yes ;;
1173 --disable-crash-debug) _crash_debug=no ;;
1174 --enable-sighandler) _sighandler=yes ;;
1175 --disable-sighandler) _sighandler=no ;;
1176 --enable-win32dll) _win32dll=yes ;;
1177 --disable-win32dll) _win32dll=no ;;
1179 --enable-sse) _sse=yes ;;
1180 --disable-sse) _sse=no ;;
1181 --enable-sse2) _sse2=yes ;;
1182 --disable-sse2) _sse2=no ;;
1183 --enable-ssse3) _ssse3=yes ;;
1184 --disable-ssse3) _ssse3=no ;;
1185 --enable-mmxext) _mmxext=yes ;;
1186 --disable-mmxext) _mmxext=no ;;
1187 --enable-3dnow) _3dnow=yes ;;
1188 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1189 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1190 --disable-3dnowext) _3dnowext=no ;;
1191 --enable-cmov) _cmov=yes ;;
1192 --disable-cmov) _cmov=no ;;
1193 --enable-fast-cmov) _fast_cmov=yes ;;
1194 --disable-fast-cmov) _fast_cmov=no ;;
1195 --enable-fast-clz) _fast_clz=yes ;;
1196 --disable-fast-clz) _fast_clz=no ;;
1197 --enable-altivec) _altivec=yes ;;
1198 --disable-altivec) _altivec=no ;;
1199 --enable-armv5te) _armv5te=yes ;;
1200 --disable-armv5te) _armv5te=no ;;
1201 --enable-armv6) _armv6=yes ;;
1202 --disable-armv6) _armv6=no ;;
1203 --enable-armv6t2) _armv6t2=yes ;;
1204 --disable-armv6t2) _armv6t2=no ;;
1205 --enable-armvfp) _armvfp=yes ;;
1206 --disable-armvfp) _armvfp=no ;;
1207 --enable-neon) neon=yes ;;
1208 --disable-neon) neon=no ;;
1209 --enable-iwmmxt) _iwmmxt=yes ;;
1210 --disable-iwmmxt) _iwmmxt=no ;;
1211 --enable-mmx) _mmx=yes ;;
1212 --disable-mmx) # 3Dnow! and MMX2 require MMX
1213 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1216 echo "Unknown parameter: $ac_option" >&2
1217 exit 1
1220 esac
1221 done
1223 if test "$_gui" = yes ; then
1224 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1225 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1228 # Atmos: moved this here, to be correct, if --prefix is specified
1229 test -z "$_bindir" && _bindir="$_prefix/bin"
1230 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1231 test -z "$_mandir" && _mandir="$_prefix/share/man"
1232 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1233 test -z "$_libdir" && _libdir="$_prefix/lib"
1234 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1236 # Determine our OS name and CPU architecture
1237 if test -z "$_target" ; then
1238 # OS name
1239 system_name=$(uname -s 2>&1)
1240 case "$system_name" in
1241 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1243 Haiku)
1244 system_name=BeOS
1246 IRIX*)
1247 system_name=IRIX
1249 GNU/kFreeBSD)
1250 system_name=FreeBSD
1252 HP-UX*)
1253 system_name=HP-UX
1255 [cC][yY][gG][wW][iI][nN]*)
1256 system_name=CYGWIN
1258 MINGW32*)
1259 system_name=MINGW32
1261 OS/2*)
1262 system_name=OS/2
1265 system_name="$system_name-UNKNOWN"
1267 esac
1270 # host's CPU/instruction set
1271 host_arch=$(uname -p 2>&1)
1272 case "$host_arch" in
1273 i386|sparc|ppc|alpha|arm|mips|vax)
1275 powerpc) # Darwin returns 'powerpc'
1276 host_arch=ppc
1278 *) # uname -p on Linux returns 'unknown' for the processor type,
1279 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1281 # Maybe uname -m (machine hardware name) returns something we
1282 # recognize.
1284 # x86/x86pc is used by QNX
1285 case "$(uname -m 2>&1)" in
1286 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 ;;
1287 ia64) host_arch=ia64 ;;
1288 macppc|ppc) host_arch=ppc ;;
1289 ppc64) host_arch=ppc64 ;;
1290 alpha) host_arch=alpha ;;
1291 sparc) host_arch=sparc ;;
1292 sparc64) host_arch=sparc64 ;;
1293 parisc*|hppa*|9000*) host_arch=hppa ;;
1294 arm*|zaurus|cats) host_arch=arm ;;
1295 sh3|sh4|sh4a) host_arch=sh ;;
1296 s390) host_arch=s390 ;;
1297 s390x) host_arch=s390x ;;
1298 *mips*) host_arch=mips ;;
1299 vax) host_arch=vax ;;
1300 xtensa*) host_arch=xtensa ;;
1301 *) host_arch=UNKNOWN ;;
1302 esac
1304 esac
1305 else # if test -z "$_target"
1306 system_name=$(echo $_target | cut -d '-' -f 2)
1307 case "$(echo $system_name | tr A-Z a-z)" in
1308 linux) system_name=Linux ;;
1309 freebsd) system_name=FreeBSD ;;
1310 gnu/kfreebsd) system_name=FreeBSD ;;
1311 netbsd) system_name=NetBSD ;;
1312 bsd/os) system_name=BSD/OS ;;
1313 openbsd) system_name=OpenBSD ;;
1314 dragonfly) system_name=DragonFly ;;
1315 sunos) system_name=SunOS ;;
1316 qnx) system_name=QNX ;;
1317 morphos) system_name=MorphOS ;;
1318 amigaos) system_name=AmigaOS ;;
1319 mingw32*) system_name=MINGW32 ;;
1320 esac
1321 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1322 host_arch=$(echo $_target | cut -d '-' -f 1)
1323 if test $(echo $host_arch) != "x86_64" ; then
1324 host_arch=$(echo $host_arch | tr '_' '-')
1328 extra_cflags="-I. $extra_cflags"
1329 _timer=timer-linux.c
1330 _getch=getch2.c
1331 if freebsd ; then
1332 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1333 extra_cflags="$extra_cflags -I/usr/local/include"
1336 if netbsd || dragonfly ; then
1337 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1338 extra_cflags="$extra_cflags -I/usr/pkg/include"
1341 if darwin; then
1342 extra_cflags="-mdynamic-no-pic $extra_cflags"
1343 if test "$(basename $_cc)" != "clang" ; then
1344 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1346 _timer=timer-darwin.c
1349 if aix ; then
1350 extra_ldflags="$extra_ldflags -lC"
1353 if irix ; then
1354 _ranlib='ar -r'
1355 elif linux ; then
1356 _ranlib='true'
1359 if win32 ; then
1360 _exesuf=".exe"
1361 extra_cflags="$extra_cflags -fno-common"
1362 # -lwinmm is always needed for osdep/timer-win2.c
1363 extra_ldflags="$extra_ldflags -lwinmm"
1364 _pe_executable=yes
1365 _timer=timer-win2.c
1366 _priority=yes
1367 def_dos_paths="#define HAVE_DOS_PATHS 1"
1368 def_priority="#define CONFIG_PRIORITY 1"
1371 if mingw32 ; then
1372 _getch=getch2-win.c
1373 need_shmem=no
1376 if amigaos ; then
1377 _select=no
1378 _sighandler=no
1379 _stream_cache=no
1380 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1381 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1384 if qnx ; then
1385 extra_ldflags="$extra_ldflags -lph"
1388 if os2 ; then
1389 _exesuf=".exe"
1390 _getch=getch2-os2.c
1391 need_shmem=no
1392 _priority=yes
1393 def_dos_paths="#define HAVE_DOS_PATHS 1"
1394 def_priority="#define CONFIG_PRIORITY 1"
1397 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1398 test "$tmpdir" && break
1399 done
1401 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1402 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1404 TMPLOG="config.log"
1405 TMPC="$mplayer_tmpdir/tmp.c"
1406 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1407 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1408 TMPH="$mplayer_tmpdir/tmp.h"
1409 TMPS="$mplayer_tmpdir/tmp.S"
1411 rm -f "$TMPLOG"
1412 echo configuration: $configuration > "$TMPLOG"
1413 echo >> "$TMPLOG"
1416 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1417 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1421 # Checking CC version...
1422 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1423 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1424 echocheck "$_cc version"
1425 cc_vendor=intel
1426 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1427 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1428 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1429 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1430 # TODO verify older icc/ecc compatibility
1431 case $cc_version in
1433 cc_version="v. ?.??, bad"
1434 cc_fail=yes
1436 10.1|11.0|11.1)
1437 cc_version="$cc_version, ok"
1440 cc_version="$cc_version, bad"
1441 cc_fail=yes
1443 esac
1444 echores "$cc_version"
1445 else
1446 for _cc in "$_cc" gcc cc ; do
1447 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1448 if test "$cc_name_tmp" = "gcc"; then
1449 cc_name=$cc_name_tmp
1450 echocheck "$_cc version"
1451 cc_vendor=gnu
1452 cc_version=$($_cc -dumpversion 2>&1)
1453 case $cc_version in
1454 2.96*)
1455 cc_fail=yes
1458 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1459 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1460 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1462 esac
1463 echores "$cc_version"
1464 break
1466 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1467 if test "$cc_name_tmp" = "clang"; then
1468 echocheck "$_cc version"
1469 cc_vendor=clang
1470 cc_version=$($_cc -dumpversion 2>&1)
1471 res_comment="experimental support only"
1472 echores "clang $cc_version"
1473 break
1475 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1476 if test "$cc_name_tmp" = "Sun C"; then
1477 echocheck "$_cc version"
1478 cc_vendor=sun
1479 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1480 res_comment="experimental support only"
1481 echores "Sun C $cc_version"
1482 break
1484 done
1485 fi # icc
1486 test "$cc_fail" = yes && die "unsupported compiler version"
1488 if test -z "$_target" && x86 ; then
1489 cat > $TMPC << EOF
1490 int main(void) {
1491 int test[(int)sizeof(char *)-7];
1492 return 0;
1495 cc_check && host_arch=x86_64 || host_arch=i386
1498 echo "Detected operating system: $system_name"
1499 echo "Detected host architecture: $host_arch"
1501 echocheck "host cc"
1502 test "$_host_cc" || _host_cc=$_cc
1503 echores $_host_cc
1505 echocheck "cross compilation"
1506 if test $_cross_compile = auto ; then
1507 _cross_compile=yes
1508 cflag_check "" && "$TMPEXE" && _cross_compile=no
1510 echores $_cross_compile
1512 if test $_cross_compile = yes; then
1513 tmp_run() {
1514 return 0
1518 # ---
1520 # now that we know what compiler should be used for compilation, try to find
1521 # out which assembler is used by the $_cc compiler
1522 if test "$_as" = auto ; then
1523 _as=$($_cc -print-prog-name=as)
1524 test -z "$_as" && _as=as
1527 if test "$_nm" = auto ; then
1528 _nm=$($_cc -print-prog-name=nm)
1529 test -z "$_nm" && _nm=nm
1532 # XXX: this should be ok..
1533 _cpuinfo="echo"
1535 if test "$_runtime_cpudetection" = no ; then
1537 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1538 # FIXME: Remove the cygwin check once AMD CPUs are supported
1539 if test -r /proc/cpuinfo && ! cygwin; then
1540 # Linux with /proc mounted, extract CPU information from it
1541 _cpuinfo="cat /proc/cpuinfo"
1542 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1543 # FreeBSD with Linux emulation /proc mounted,
1544 # extract CPU information from it
1545 # Don't use it on x86 though, it never reports 3Dnow
1546 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1547 elif darwin && ! x86 ; then
1548 # use hostinfo on Darwin
1549 _cpuinfo="hostinfo"
1550 elif aix; then
1551 # use 'lsattr' on AIX
1552 _cpuinfo="lsattr -E -l proc0 -a type"
1553 elif x86; then
1554 # all other OSes try to extract CPU information from a small helper
1555 # program cpuinfo instead
1556 $_cc -o cpuinfo$_exesuf cpuinfo.c
1557 _cpuinfo="./cpuinfo$_exesuf"
1560 if x86 ; then
1561 # gather more CPU information
1562 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1563 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1564 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1565 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1566 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1568 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1570 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1571 -e s/xmm/sse/ -e s/kni/sse/)
1573 for ext in $pparam ; do
1574 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1575 done
1577 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1578 test $_sse = kernel_check && _mmxext=kernel_check
1580 echocheck "CPU vendor"
1581 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1583 echocheck "CPU type"
1584 echores "$pname"
1587 fi # test "$_runtime_cpudetection" = no
1589 if x86 && test "$_runtime_cpudetection" = no ; then
1590 extcheck() {
1591 if test "$1" = kernel_check ; then
1592 echocheck "kernel support of $2"
1593 cat > $TMPC <<EOF
1594 #include <stdlib.h>
1595 #include <signal.h>
1596 static void catch(int sig) { exit(1); }
1597 int main(void) {
1598 signal(SIGILL, catch);
1599 __asm__ volatile ("$3":::"memory"); return 0;
1603 if cc_check && tmp_run ; then
1604 eval _$2=yes
1605 echores "yes"
1606 _optimizing="$_optimizing $2"
1607 return 0
1608 else
1609 eval _$2=no
1610 echores "failed"
1611 echo "It seems that your kernel does not correctly support $2."
1612 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1613 return 1
1616 return 0
1619 extcheck $_mmx "mmx" "emms"
1620 extcheck $_mmxext "mmxext" "sfence"
1621 extcheck $_3dnow "3dnow" "femms"
1622 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1623 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1624 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1625 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1626 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1628 echocheck "mtrr support"
1629 if test "$_mtrr" = kernel_check ; then
1630 _mtrr="yes"
1631 _optimizing="$_optimizing mtrr"
1633 echores "$_mtrr"
1635 if test "$_gcc3_ext" != ""; then
1636 # if we had to disable sse/sse2 because the active kernel does not
1637 # support this instruction set extension, we also have to tell
1638 # gcc3 to not generate sse/sse2 instructions for normal C code
1639 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1645 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1646 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1647 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1648 subarch_all='X86_32 X86_64 PPC64'
1649 case "$host_arch" in
1650 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1651 arch='x86'
1652 subarch='x86_32'
1653 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1654 iproc=486
1655 proc=i486
1658 if test "$_runtime_cpudetection" = no ; then
1659 case "$pvendor" in
1660 AuthenticAMD)
1661 case "$pfamily" in
1662 3) proc=i386 iproc=386 ;;
1663 4) proc=i486 iproc=486 ;;
1664 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1665 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1666 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1667 proc=k6-3
1668 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1669 proc=geode
1670 elif test "$pmodel" -ge 8; then
1671 proc=k6-2
1672 elif test "$pmodel" -ge 6; then
1673 proc=k6
1674 else
1675 proc=i586
1678 6) iproc=686
1679 # It's a bit difficult to determine the correct type of Family 6
1680 # AMD CPUs just from their signature. Instead, we check directly
1681 # whether it supports SSE.
1682 if test "$_sse" = yes; then
1683 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1684 proc=athlon-xp
1685 else
1686 # Again, gcc treats athlon and athlon-tbird similarly.
1687 proc=athlon
1690 15) iproc=686
1691 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1692 # caught and remedied in the optimization tests below.
1693 proc=k8
1696 *) proc=amdfam10 iproc=686
1697 test $_fast_clz = "auto" && _fast_clz=yes
1699 esac
1701 GenuineIntel)
1702 case "$pfamily" in
1703 3) proc=i386 iproc=386 ;;
1704 4) proc=i486 iproc=486 ;;
1705 5) iproc=586
1706 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1707 proc=pentium-mmx # 4 is desktop, 8 is mobile
1708 else
1709 proc=i586
1712 6) iproc=686
1713 if test "$pmodel" -ge 15; then
1714 proc=core2
1715 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1716 proc=pentium-m
1717 elif test "$pmodel" -ge 7; then
1718 proc=pentium3
1719 elif test "$pmodel" -ge 3; then
1720 proc=pentium2
1721 else
1722 proc=i686
1724 test $_fast_clz = "auto" && _fast_clz=yes
1726 15) iproc=686
1727 # A nocona in 32-bit mode has no more capabilities than a prescott.
1728 if test "$pmodel" -ge 3; then
1729 proc=prescott
1730 else
1731 proc=pentium4
1732 test $_fast_clz = "auto" && _fast_clz=yes
1734 test $_fast_cmov = "auto" && _fast_cmov=no
1736 *) proc=prescott iproc=686 ;;
1737 esac
1739 CentaurHauls)
1740 case "$pfamily" in
1741 5) iproc=586
1742 if test "$pmodel" -ge 8; then
1743 proc=winchip2
1744 elif test "$pmodel" -ge 4; then
1745 proc=winchip-c6
1746 else
1747 proc=i586
1750 6) iproc=686
1751 if test "$pmodel" -ge 9; then
1752 proc=c3-2
1753 else
1754 proc=c3
1755 iproc=586
1758 *) proc=i686 iproc=i686 ;;
1759 esac
1761 unknown)
1762 case "$pfamily" in
1763 3) proc=i386 iproc=386 ;;
1764 4) proc=i486 iproc=486 ;;
1765 *) proc=i586 iproc=586 ;;
1766 esac
1769 proc=i586 iproc=586 ;;
1770 esac
1771 test $_fast_clz = "auto" && _fast_clz=no
1772 fi # test "$_runtime_cpudetection" = no
1775 # check that gcc supports our CPU, if not, fall back to earlier ones
1776 # LGB: check -mcpu and -march swithing step by step with enabling
1777 # to fall back till 386.
1779 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1781 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1782 cpuopt=-mtune
1783 else
1784 cpuopt=-mcpu
1787 echocheck "GCC & CPU optimization abilities"
1788 if test "$_runtime_cpudetection" = no ; then
1789 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1790 cflag_check -march=native && proc=native
1792 if test "$proc" = "amdfam10"; then
1793 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1795 if test "$proc" = "k8"; then
1796 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1798 if test "$proc" = "athlon-xp"; then
1799 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1801 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1802 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1804 if test "$proc" = "k6" || test "$proc" = "c3"; then
1805 if ! cflag_check -march=$proc $cpuopt=$proc; then
1806 if cflag_check -march=i586 $cpuopt=i686; then
1807 proc=i586-i686
1808 else
1809 proc=i586
1813 if test "$proc" = "prescott" ; then
1814 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1816 if test "$proc" = "core2" ; then
1817 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1819 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
1820 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1822 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1823 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1825 if test "$proc" = "i586"; then
1826 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1828 if test "$proc" = "i486" ; then
1829 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1831 if test "$proc" = "i386" ; then
1832 cflag_check -march=$proc $cpuopt=$proc || proc=error
1834 if test "$proc" = "error" ; then
1835 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1836 _mcpu=""
1837 _march=""
1838 _optimizing=""
1839 elif test "$proc" = "i586-i686"; then
1840 _march="-march=i586"
1841 _mcpu="$cpuopt=i686"
1842 _optimizing="$proc"
1843 else
1844 _march="-march=$proc"
1845 _mcpu="$cpuopt=$proc"
1846 _optimizing="$proc"
1848 else # if test "$_runtime_cpudetection" = no
1849 _mcpu="$cpuopt=generic"
1850 # at least i486 required, for bswap instruction
1851 _march="-march=i486"
1852 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1853 cflag_check $_mcpu || _mcpu=""
1854 cflag_check $_march $_mcpu || _march=""
1857 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1858 ## autodetected mcpu/march parameters
1859 if test "$_target" ; then
1860 # TODO: it may be a good idea to check GCC and fall back in all cases
1861 if test "$host_arch" = "i586-i686"; then
1862 _march="-march=i586"
1863 _mcpu="$cpuopt=i686"
1864 else
1865 _march="-march=$host_arch"
1866 _mcpu="$cpuopt=$host_arch"
1869 proc="$host_arch"
1871 case "$proc" in
1872 i386) iproc=386 ;;
1873 i486) iproc=486 ;;
1874 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1875 i686|athlon*|pentium*) iproc=686 ;;
1876 *) iproc=586 ;;
1877 esac
1880 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1881 _fast_cmov="yes"
1882 else
1883 _fast_cmov="no"
1885 test $_fast_clz = "auto" && _fast_clz=yes
1887 echores "$proc"
1890 ia64)
1891 arch='ia64'
1892 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1893 iproc='ia64'
1896 x86_64|amd64)
1897 arch='x86'
1898 subarch='x86_64'
1899 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1900 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1901 iproc='x86_64'
1903 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1904 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1905 cpuopt=-mtune
1906 else
1907 cpuopt=-mcpu
1909 if test "$_runtime_cpudetection" = no ; then
1910 case "$pvendor" in
1911 AuthenticAMD)
1912 case "$pfamily" in
1913 15) proc=k8
1914 test $_fast_clz = "auto" && _fast_clz=no
1916 *) proc=amdfam10;;
1917 esac
1919 GenuineIntel)
1920 case "$pfamily" in
1921 6) proc=core2;;
1923 # 64-bit prescotts exist, but as far as GCC is concerned they
1924 # have the same capabilities as a nocona.
1925 proc=nocona
1926 test $_fast_cmov = "auto" && _fast_cmov=no
1927 test $_fast_clz = "auto" && _fast_clz=no
1929 esac
1932 proc=error;;
1933 esac
1934 fi # test "$_runtime_cpudetection" = no
1936 echocheck "GCC & CPU optimization abilities"
1937 # This is a stripped-down version of the i386 fallback.
1938 if test "$_runtime_cpudetection" = no ; then
1939 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1940 cflag_check -march=native && proc=native
1942 # --- AMD processors ---
1943 if test "$proc" = "amdfam10"; then
1944 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1946 if test "$proc" = "k8"; then
1947 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1949 # This will fail if gcc version < 3.3, which is ok because earlier
1950 # versions don't really support 64-bit on amd64.
1951 # Is this a valid assumption? -Corey
1952 if test "$proc" = "athlon-xp"; then
1953 cflag_check -march=$proc $cpuopt=$proc || proc=error
1955 # --- Intel processors ---
1956 if test "$proc" = "core2"; then
1957 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1959 if test "$proc" = "x86-64"; then
1960 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1962 if test "$proc" = "nocona"; then
1963 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1965 if test "$proc" = "pentium4"; then
1966 cflag_check -march=$proc $cpuopt=$proc || proc=error
1969 _march="-march=$proc"
1970 _mcpu="$cpuopt=$proc"
1971 if test "$proc" = "error" ; then
1972 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1973 _mcpu=""
1974 _march=""
1976 else # if test "$_runtime_cpudetection" = no
1977 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1978 _march="-march=x86-64"
1979 _mcpu="$cpuopt=generic"
1980 cflag_check $_mcpu || _mcpu="x86-64"
1981 cflag_check $_mcpu || _mcpu=""
1982 cflag_check $_march $_mcpu || _march=""
1985 _optimizing="$proc"
1986 test $_fast_cmov = "auto" && _fast_cmov=yes
1987 test $_fast_clz = "auto" && _fast_clz=yes
1989 echores "$proc"
1992 sparc|sparc64)
1993 arch='sparc'
1994 iproc='sparc'
1995 if test "$host_arch" = "sparc64" ; then
1996 _vis='yes'
1997 proc='ultrasparc'
1998 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1999 elif sunos ; then
2000 echocheck "CPU type"
2001 karch=$(uname -m)
2002 case "$(echo $karch)" in
2003 sun4) proc=v7 ;;
2004 sun4c) proc=v7 ;;
2005 sun4d) proc=v8 ;;
2006 sun4m) proc=v8 ;;
2007 sun4u) proc=ultrasparc _vis='yes' ;;
2008 sun4v) proc=v9 ;;
2009 *) proc=v8 ;;
2010 esac
2011 echores "$proc"
2012 else
2013 proc=v8
2015 _mcpu="-mcpu=$proc"
2016 _optimizing="$proc"
2019 arm*)
2020 arch='arm'
2021 iproc='arm'
2024 avr32)
2025 arch='avr32'
2026 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2027 iproc='avr32'
2028 test $_fast_clz = "auto" && _fast_clz=yes
2031 sh|sh4)
2032 arch='sh4'
2033 iproc='sh4'
2036 ppc|ppc64|powerpc|powerpc64)
2037 arch='ppc'
2038 def_dcbzl='#define HAVE_DCBZL 0'
2039 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2040 iproc='ppc'
2042 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2043 subarch='ppc64'
2044 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2046 echocheck "CPU type"
2047 case $system_name in
2048 Linux)
2049 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2050 if test -n "$($_cpuinfo | grep altivec)"; then
2051 test $_altivec = auto && _altivec=yes
2054 Darwin)
2055 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2056 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2057 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2058 test $_altivec = auto && _altivec=yes
2061 NetBSD)
2062 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2063 case $cc_version in
2064 2*|3.0*|3.1*|3.2*|3.3*)
2067 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2068 test $_altivec = auto && _altivec=yes
2071 esac
2073 AIX)
2074 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2076 esac
2077 if test "$_altivec" = yes; then
2078 echores "$proc altivec"
2079 else
2080 _altivec=no
2081 echores "$proc"
2084 echocheck "GCC & CPU optimization abilities"
2086 if test -n "$proc"; then
2087 case "$proc" in
2088 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2089 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2090 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2091 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2092 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2093 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2094 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2095 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2096 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2097 *) ;;
2098 esac
2099 # gcc 3.1(.1) and up supports 7400 and 7450
2100 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2101 case "$proc" in
2102 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2103 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2104 *) ;;
2105 esac
2107 # gcc 3.2 and up supports 970
2108 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2109 case "$proc" in
2110 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2111 def_dcbzl='#define HAVE_DCBZL 1' ;;
2112 *) ;;
2113 esac
2115 # gcc 3.3 and up supports POWER4
2116 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2117 case "$proc" in
2118 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2119 *) ;;
2120 esac
2122 # gcc 3.4 and up supports 440*
2123 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2124 case "$proc" in
2125 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2126 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2127 *) ;;
2128 esac
2130 # gcc 4.0 and up supports POWER5
2131 if test "$_cc_major" -ge "4"; then
2132 case "$proc" in
2133 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2134 *) ;;
2135 esac
2139 if test -n "$_mcpu"; then
2140 _optimizing=$(echo $_mcpu | cut -c 8-)
2141 echores "$_optimizing"
2142 else
2143 echores "none"
2146 test $_fast_clz = "auto" && _fast_clz=yes
2150 alpha*)
2151 arch='alpha'
2152 iproc='alpha'
2153 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2155 echocheck "CPU type"
2156 cat > $TMPC << EOF
2157 int main(void) {
2158 unsigned long ver, mask;
2159 __asm__ ("implver %0" : "=r" (ver));
2160 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2161 printf("%ld-%x\n", ver, ~mask);
2162 return 0;
2165 $_cc -o "$TMPEXE" "$TMPC"
2166 case $("$TMPEXE") in
2168 0-0) proc="ev4"; _mvi="0";;
2169 1-0) proc="ev5"; _mvi="0";;
2170 1-1) proc="ev56"; _mvi="0";;
2171 1-101) proc="pca56"; _mvi="1";;
2172 2-303) proc="ev6"; _mvi="1";;
2173 2-307) proc="ev67"; _mvi="1";;
2174 2-1307) proc="ev68"; _mvi="1";;
2175 esac
2176 echores "$proc"
2178 echocheck "GCC & CPU optimization abilities"
2179 if test "$proc" = "ev68" ; then
2180 cc_check -mcpu=$proc || proc=ev67
2182 if test "$proc" = "ev67" ; then
2183 cc_check -mcpu=$proc || proc=ev6
2185 _mcpu="-mcpu=$proc"
2186 echores "$proc"
2188 test $_fast_clz = "auto" && _fast_clz=yes
2190 _optimizing="$proc"
2193 mips*)
2194 arch='mips'
2195 iproc='mips'
2197 if irix ; then
2198 echocheck "CPU type"
2199 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2200 case "$(echo $proc)" in
2201 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2202 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2203 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2204 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2205 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2206 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2207 esac
2208 # gcc < 3.x does not support -mtune.
2209 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2210 _mcpu=''
2212 echores "$proc"
2215 test $_fast_clz = "auto" && _fast_clz=yes
2219 hppa)
2220 arch='pa_risc'
2221 iproc='PA-RISC'
2224 s390)
2225 arch='s390'
2226 iproc='390'
2229 s390x)
2230 arch='s390x'
2231 iproc='390x'
2234 vax)
2235 arch='vax'
2236 iproc='vax'
2239 xtensa)
2240 arch='xtensa'
2241 iproc='xtensa'
2244 generic)
2245 arch='generic'
2249 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2250 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2251 die "unsupported architecture $host_arch"
2253 esac # case "$host_arch" in
2255 if test "$_runtime_cpudetection" = yes ; then
2256 if x86 ; then
2257 test "$_cmov" != no && _cmov=yes
2258 x86_32 && _cmov=no
2259 test "$_mmx" != no && _mmx=yes
2260 test "$_3dnow" != no && _3dnow=yes
2261 test "$_3dnowext" != no && _3dnowext=yes
2262 test "$_mmxext" != no && _mmxext=yes
2263 test "$_sse" != no && _sse=yes
2264 test "$_sse2" != no && _sse2=yes
2265 test "$_ssse3" != no && _ssse3=yes
2266 test "$_mtrr" != no && _mtrr=yes
2268 if ppc; then
2269 _altivec=yes
2274 # endian testing
2275 echocheck "byte order"
2276 if test "$_big_endian" = auto ; then
2277 cat > $TMPC <<EOF
2278 short ascii_name[] = {
2279 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2280 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2281 int main(void) { return (long)ascii_name; }
2283 if cc_check ; then
2284 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2285 _big_endian=yes
2286 else
2287 _big_endian=no
2289 else
2290 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2293 if test "$_big_endian" = yes ; then
2294 _byte_order='big-endian'
2295 def_words_endian='#define WORDS_BIGENDIAN 1'
2296 def_bigendian='#define HAVE_BIGENDIAN 1'
2297 else
2298 _byte_order='little-endian'
2299 def_words_endian='#undef WORDS_BIGENDIAN'
2300 def_bigendian='#define HAVE_BIGENDIAN 0'
2302 echores "$_byte_order"
2305 echocheck "extern symbol prefix"
2306 cat > $TMPC << EOF
2307 int ff_extern;
2309 cc_check -c || die "Symbol mangling check failed."
2310 sym=$($_nm -P -g $TMPEXE)
2311 extern_prefix=${sym%%ff_extern*}
2312 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2313 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2314 echores $extern_prefix
2317 echocheck "assembler support of -pipe option"
2318 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2319 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2322 echocheck "compiler support of named assembler arguments"
2323 _named_asm_args=yes
2324 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2325 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2326 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2327 _named_asm_args=no
2328 def_named_asm_args="#undef NAMED_ASM_ARGS"
2330 echores $_named_asm_args
2333 if darwin && test "$cc_vendor" = "gnu" ; then
2334 echocheck "GCC support of -mstackrealign"
2335 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2336 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2337 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2338 # wrong code with this flag, but this can be worked around by adding
2339 # -fno-unit-at-a-time as described in the blog post at
2340 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2341 cat > $TMPC << EOF
2342 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2343 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2345 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2346 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2347 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2348 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2349 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2352 # Checking for CFLAGS
2353 _install_strip="-s"
2354 if test "$_profile" != "" || test "$_debug" != "" ; then
2355 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2356 WARNFLAGS="-W -Wall"
2357 _install_strip=
2358 elif test -z "$CFLAGS" ; then
2359 if test "$cc_vendor" = "intel" ; then
2360 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2361 WARNFLAGS="-wd167 -wd556 -wd144"
2362 elif test "$cc_vendor" = "sun" ; then
2363 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2364 elif test "$cc_vendor" = "clang"; then
2365 CFLAGS="-O2 $_march $_pipe"
2366 elif test "$cc_vendor" != "gnu" ; then
2367 CFLAGS="-O2 $_march $_mcpu $_pipe"
2368 else
2369 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2370 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2371 extra_ldflags="$extra_ldflags -ffast-math"
2373 else
2374 warn_cflags=yes
2377 if test "$cc_vendor" = "gnu" ; then
2378 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2379 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2380 # that's the only variable specific to C now, and this option is not valid
2381 # for C++.
2382 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2383 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2384 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2385 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2386 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2387 else
2388 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2391 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2392 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2395 if test -n "$LDFLAGS" ; then
2396 extra_ldflags="$extra_ldflags $LDFLAGS"
2397 warn_cflags=yes
2398 elif test "$cc_vendor" = "intel" ; then
2399 extra_ldflags="$extra_ldflags -i-static"
2401 if test -n "$CPPFLAGS" ; then
2402 extra_cflags="$extra_cflags $CPPFLAGS"
2403 warn_cflags=yes
2408 if x86_32 ; then
2409 # Checking assembler (_as) compatibility...
2410 # Added workaround for older as that reads from stdin by default - atmos
2411 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2412 echocheck "assembler ($_as $as_version)"
2414 _pref_as_version='2.9.1'
2415 echo 'nop' > $TMPS
2416 if test "$_mmx" = yes ; then
2417 echo 'emms' >> $TMPS
2419 if test "$_3dnow" = yes ; then
2420 _pref_as_version='2.10.1'
2421 echo 'femms' >> $TMPS
2423 if test "$_3dnowext" = yes ; then
2424 _pref_as_version='2.10.1'
2425 echo 'pswapd %mm0, %mm0' >> $TMPS
2427 if test "$_mmxext" = yes ; then
2428 _pref_as_version='2.10.1'
2429 echo 'movntq %mm0, (%eax)' >> $TMPS
2431 if test "$_sse" = yes ; then
2432 _pref_as_version='2.10.1'
2433 echo 'xorps %xmm0, %xmm0' >> $TMPS
2435 #if test "$_sse2" = yes ; then
2436 # _pref_as_version='2.11'
2437 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2439 if test "$_cmov" = yes ; then
2440 _pref_as_version='2.10.1'
2441 echo 'cmovb %eax, %ebx' >> $TMPS
2443 if test "$_ssse3" = yes ; then
2444 _pref_as_version='2.16.92'
2445 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2447 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2449 if test "$as_verc_fail" != yes ; then
2450 echores "ok"
2451 else
2452 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2453 echores "failed"
2454 die "obsolete binutils version"
2457 fi #if x86_32
2460 echocheck "PIC"
2461 pic=no
2462 cat > $TMPC << EOF
2463 int main(void) {
2464 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2465 #error PIC not enabled
2466 #endif
2467 return 0;
2470 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2471 echores $pic
2474 if x86 ; then
2476 echocheck ".align is a power of two"
2477 if test "$_asmalign_pot" = auto ; then
2478 _asmalign_pot=no
2479 inline_asm_check '".align 3"' && _asmalign_pot=yes
2481 if test "$_asmalign_pot" = "yes" ; then
2482 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2483 else
2484 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2486 echores $_asmalign_pot
2489 echocheck "10 assembler operands"
2490 ten_operands=no
2491 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2492 cat > $TMPC << EOF
2493 int main(void) {
2494 int x=0;
2495 __asm__ volatile(
2497 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2499 return 0;
2502 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2503 echores $ten_operands
2505 echocheck "ebx availability"
2506 ebx_available=no
2507 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2508 cat > $TMPC << EOF
2509 int main(void) {
2510 int x;
2511 __asm__ volatile(
2512 "xor %0, %0"
2513 :"=b"(x)
2514 // just adding ebx to clobber list seems unreliable with some
2515 // compilers, e.g. Haiku's gcc 2.95
2517 // and the above check does not work for OSX 64 bit...
2518 __asm__ volatile("":::"%ebx");
2519 return 0;
2522 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2523 echores $ebx_available
2526 echocheck "yasm"
2527 if test -z "$YASMFLAGS" ; then
2528 if darwin ; then
2529 x86_64 && objformat="macho64" || objformat="macho"
2530 elif win32 ; then
2531 objformat="win32"
2532 else
2533 objformat="elf"
2535 # currently tested for Linux x86, x86_64
2536 YASMFLAGS="-f $objformat"
2537 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2538 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2539 case "$objformat" in
2540 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2541 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2542 esac
2543 else
2544 warn_cflags=yes
2547 echo "pabsw xmm0, xmm0" > $TMPS
2548 yasm_check || _yasm=""
2549 if test $_yasm ; then
2550 def_yasm='#define HAVE_YASM 1'
2551 have_yasm="yes"
2552 echores "$_yasm"
2553 else
2554 def_yasm='#define HAVE_YASM 0'
2555 have_yasm="no"
2556 echores "no"
2559 echocheck "bswap"
2560 def_bswap='#define HAVE_BSWAP 0'
2561 echo 'bswap %eax' > $TMPS
2562 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2563 echores "$bswap"
2564 fi #if x86
2567 #FIXME: This should happen before the check for CFLAGS..
2568 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2569 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2571 # check if AltiVec is supported by the compiler, and how to enable it
2572 echocheck "GCC AltiVec flags"
2573 if $(cflag_check -maltivec -mabi=altivec) ; then
2574 _altivec_gcc_flags="-maltivec -mabi=altivec"
2575 # check if <altivec.h> should be included
2576 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2577 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2578 inc_altivec_h='#include <altivec.h>'
2579 else
2580 if $(cflag_check -faltivec) ; then
2581 _altivec_gcc_flags="-faltivec"
2582 else
2583 _altivec=no
2584 _altivec_gcc_flags="none, AltiVec disabled"
2588 echores "$_altivec_gcc_flags"
2590 # check if the compiler supports braces for vector declarations
2591 cat > $TMPC << EOF
2592 $inc_altivec_h
2593 int main(void) { (vector int) {1}; return 0; }
2595 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2597 # Disable runtime cpudetection if we cannot generate AltiVec code or
2598 # AltiVec is disabled by the user.
2599 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2600 && _runtime_cpudetection=no
2602 # Show that we are optimizing for AltiVec (if enabled and supported).
2603 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2604 && _optimizing="$_optimizing altivec"
2606 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2607 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2610 if ppc ; then
2611 def_xform_asm='#define HAVE_XFORM_ASM 0'
2612 xform_asm=no
2613 echocheck "XFORM ASM support"
2614 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2615 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2616 echores "$xform_asm"
2619 if arm ; then
2620 echocheck "ARM pld instruction"
2621 pld=no
2622 inline_asm_check '"pld [r0]"' && pld=yes
2623 echores "$pld"
2625 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2626 if test $_armv5te = "auto" ; then
2627 _armv5te=no
2628 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2630 echores "$_armv5te"
2632 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2634 echocheck "ARMv6 (SIMD instructions)"
2635 if test $_armv6 = "auto" ; then
2636 _armv6=no
2637 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2639 echores "$_armv6"
2641 echocheck "ARMv6t2 (SIMD instructions)"
2642 if test $_armv6t2 = "auto" ; then
2643 _armv6t2=no
2644 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2646 echores "$_armv6"
2648 echocheck "ARM VFP"
2649 if test $_armvfp = "auto" ; then
2650 _armvfp=no
2651 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2653 echores "$_armvfp"
2655 echocheck "ARM NEON"
2656 if test $neon = "auto" ; then
2657 neon=no
2658 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2660 echores "$neon"
2662 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2663 if test $_iwmmxt = "auto" ; then
2664 _iwmmxt=no
2665 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2667 echores "$_iwmmxt"
2670 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2671 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2672 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2673 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2674 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2675 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2676 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2677 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2678 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2679 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2680 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2681 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2682 test "$pld" = yes && cpuexts="PLD $cpuexts"
2683 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2684 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2685 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2686 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2687 test "$neon" = yes && cpuexts="NEON $cpuexts"
2688 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2689 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2690 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2692 # Checking kernel version...
2693 if x86_32 && linux ; then
2694 _k_verc_problem=no
2695 kernel_version=$(uname -r 2>&1)
2696 echocheck "$system_name kernel version"
2697 case "$kernel_version" in
2698 '') kernel_version="?.??"; _k_verc_fail=yes;;
2699 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2700 _k_verc_problem=yes;;
2701 esac
2702 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2703 _k_verc_fail=yes
2705 if test "$_k_verc_fail" ; then
2706 echores "$kernel_version, fail"
2707 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2708 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2709 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2710 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2711 echo "2.2.x you must upgrade it to get SSE support!"
2712 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2713 else
2714 echores "$kernel_version, ok"
2718 ######################
2719 # MAIN TESTS GO HERE #
2720 ######################
2723 echocheck "-lposix"
2724 if cflag_check -lposix ; then
2725 extra_ldflags="$extra_ldflags -lposix"
2726 echores "yes"
2727 else
2728 echores "no"
2731 echocheck "-lm"
2732 if cflag_check -lm ; then
2733 _ld_lm="-lm"
2734 echores "yes"
2735 else
2736 _ld_lm=""
2737 echores "no"
2741 echocheck "langinfo"
2742 if test "$_langinfo" = auto ; then
2743 _langinfo=no
2744 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2746 if test "$_langinfo" = yes ; then
2747 def_langinfo='#define HAVE_LANGINFO 1'
2748 else
2749 def_langinfo='#undef HAVE_LANGINFO'
2751 echores "$_langinfo"
2754 echocheck "translation support"
2755 if test "$_translation" = yes; then
2756 def_translation="#define CONFIG_TRANSLATION 1"
2757 else
2758 def_translation="#undef CONFIG_TRANSLATION"
2760 echores "$_translation"
2762 echocheck "language"
2763 # Set preferred languages, "all" uses English as main language.
2764 test -z "$language" && language=$LINGUAS
2765 test -z "$language_doc" && language_doc=$language
2766 test -z "$language_man" && language_man=$language
2767 test -z "$language_msg" && language_msg=$language
2768 test -z "$language_msg" && language_msg="all"
2769 language_doc=$(echo $language_doc | tr , " ")
2770 language_man=$(echo $language_man | tr , " ")
2771 language_msg=$(echo $language_msg | tr , " ")
2773 test "$language_doc" = "all" && language_doc=$doc_lang_all
2774 test "$language_man" = "all" && language_man=$man_lang_all
2775 test "$language_msg" = "all" && language_msg=$msg_lang_all
2777 if test "$_translation" != yes ; then
2778 language_msg=""
2781 # Prune non-existing translations from language lists.
2782 # Set message translation to the first available language.
2783 # Fall back on English.
2784 for lang in $language_doc ; do
2785 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2786 done
2787 language_doc=$tmp_language_doc
2788 test -z "$language_doc" && language_doc=en
2790 for lang in $language_man ; do
2791 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2792 done
2793 language_man=$tmp_language_man
2794 test -z "$language_man" && language_man=en
2796 for lang in $language_msg ; do
2797 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2798 done
2799 language_msg=$tmp_language_msg
2801 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2804 echocheck "enable sighandler"
2805 if test "$_sighandler" = yes ; then
2806 def_sighandler='#define CONFIG_SIGHANDLER 1'
2807 else
2808 def_sighandler='#undef CONFIG_SIGHANDLER'
2810 echores "$_sighandler"
2812 echocheck "runtime cpudetection"
2813 if test "$_runtime_cpudetection" = yes ; then
2814 _optimizing="Runtime CPU-Detection enabled"
2815 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2816 else
2817 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2819 echores "$_runtime_cpudetection"
2822 echocheck "restrict keyword"
2823 for restrict_keyword in restrict __restrict __restrict__ ; do
2824 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2825 if cc_check; then
2826 def_restrict_keyword=$restrict_keyword
2827 break;
2829 done
2830 if [ -n "$def_restrict_keyword" ]; then
2831 echores "$def_restrict_keyword"
2832 else
2833 echores "none"
2835 # Avoid infinite recursion loop ("#define restrict restrict")
2836 if [ "$def_restrict_keyword" != "restrict" ]; then
2837 def_restrict_keyword="#define restrict $def_restrict_keyword"
2838 else
2839 def_restrict_keyword=""
2843 echocheck "__builtin_expect"
2844 # GCC branch prediction hint
2845 cat > $TMPC << EOF
2846 static int foo(int a) {
2847 a = __builtin_expect(a, 10);
2848 return a == 10 ? 0 : 1;
2850 int main(void) { return foo(10) && foo(0); }
2852 _builtin_expect=no
2853 cc_check && _builtin_expect=yes
2854 if test "$_builtin_expect" = yes ; then
2855 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2856 else
2857 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2859 echores "$_builtin_expect"
2862 echocheck "kstat"
2863 _kstat=no
2864 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2865 if test "$_kstat" = yes ; then
2866 def_kstat="#define HAVE_LIBKSTAT 1"
2867 extra_ldflags="$extra_ldflags -lkstat"
2868 else
2869 def_kstat="#undef HAVE_LIBKSTAT"
2871 echores "$_kstat"
2874 echocheck "posix4"
2875 # required for nanosleep on some systems
2876 _posix4=no
2877 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2878 if test "$_posix4" = yes ; then
2879 extra_ldflags="$extra_ldflags -lposix4"
2881 echores "$_posix4"
2883 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2884 echocheck $func
2885 eval _$func=no
2886 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2887 if eval test "x\$_$func" = "xyes"; then
2888 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2889 echores yes
2890 else
2891 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2892 echores no
2894 done
2897 echocheck "mkstemp"
2898 _mkstemp=no
2899 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2900 if test "$_mkstemp" = yes ; then
2901 def_mkstemp='#define HAVE_MKSTEMP 1'
2902 else
2903 def_mkstemp='#define HAVE_MKSTEMP 0'
2905 echores "$_mkstemp"
2908 echocheck "nanosleep"
2909 _nanosleep=no
2910 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2911 if test "$_nanosleep" = yes ; then
2912 def_nanosleep='#define HAVE_NANOSLEEP 1'
2913 else
2914 def_nanosleep='#undef HAVE_NANOSLEEP'
2916 echores "$_nanosleep"
2919 echocheck "socklib"
2920 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2921 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2922 cat > $TMPC << EOF
2923 #include <netdb.h>
2924 #include <sys/socket.h>
2925 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2927 _socklib=no
2928 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2929 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2930 done
2931 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2932 if test $_winsock2_h = auto ; then
2933 _winsock2_h=no
2934 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2936 test "$_ld_sock" && res_comment="using $_ld_sock"
2937 echores "$_socklib"
2940 if test $_winsock2_h = yes ; then
2941 _ld_sock="-lws2_32"
2942 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2943 else
2944 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2948 echocheck "arpa/inet.h"
2949 arpa_inet_h=no
2950 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2951 header_check arpa/inet.h && arpa_inet_h=yes &&
2952 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2953 echores "$arpa_inet_h"
2956 echocheck "inet_pton()"
2957 def_inet_pton='#define HAVE_INET_PTON 0'
2958 inet_pton=no
2959 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2960 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2961 done
2962 if test $inet_pton = yes ; then
2963 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2964 def_inet_pton='#define HAVE_INET_PTON 1'
2966 echores "$inet_pton"
2969 echocheck "inet_aton()"
2970 def_inet_aton='#define HAVE_INET_ATON 0'
2971 inet_aton=no
2972 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2973 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2974 done
2975 if test $inet_aton = yes ; then
2976 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2977 def_inet_aton='#define HAVE_INET_ATON 1'
2979 echores "$inet_aton"
2982 echocheck "socklen_t"
2983 _socklen_t=no
2984 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2985 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2986 done
2987 if test "$_socklen_t" = yes ; then
2988 def_socklen_t='#define HAVE_SOCKLEN_T 1'
2989 else
2990 def_socklen_t='#define HAVE_SOCKLEN_T 0'
2992 echores "$_socklen_t"
2995 echocheck "closesocket()"
2996 _closesocket=no
2997 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
2998 if test "$_closesocket" = yes ; then
2999 def_closesocket='#define HAVE_CLOSESOCKET 1'
3000 else
3001 def_closesocket='#define HAVE_CLOSESOCKET 0'
3003 echores "$_closesocket"
3006 echocheck "networking"
3007 test $_winsock2_h = no && test $inet_pton = no &&
3008 test $inet_aton = no && networking=no
3009 if test "$networking" = yes ; then
3010 def_network='#define CONFIG_NETWORK 1'
3011 def_networking='#define CONFIG_NETWORKING 1'
3012 extra_ldflags="$extra_ldflags $_ld_sock"
3013 inputmodules="networking $inputmodules"
3014 else
3015 noinputmodules="networking $noinputmodules"
3016 def_network='#define CONFIG_NETWORK 0'
3017 def_networking='#undef CONFIG_NETWORKING'
3019 echores "$networking"
3022 echocheck "inet6"
3023 if test "$_inet6" = auto ; then
3024 cat > $TMPC << EOF
3025 #include <sys/types.h>
3026 #if !defined(_WIN32)
3027 #include <sys/socket.h>
3028 #include <netinet/in.h>
3029 #else
3030 #include <ws2tcpip.h>
3031 #endif
3032 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3034 _inet6=no
3035 if cc_check $_ld_sock ; then
3036 _inet6=yes
3039 if test "$_inet6" = yes ; then
3040 def_inet6='#define HAVE_AF_INET6 1'
3041 else
3042 def_inet6='#undef HAVE_AF_INET6'
3044 echores "$_inet6"
3047 echocheck "gethostbyname2"
3048 if test "$_gethostbyname2" = auto ; then
3049 cat > $TMPC << EOF
3050 #include <sys/types.h>
3051 #include <sys/socket.h>
3052 #include <netdb.h>
3053 int main(void) { gethostbyname2("", AF_INET); return 0; }
3055 _gethostbyname2=no
3056 if cc_check ; then
3057 _gethostbyname2=yes
3060 if test "$_gethostbyname2" = yes ; then
3061 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3062 else
3063 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3065 echores "$_gethostbyname2"
3068 echocheck "inttypes.h (required)"
3069 _inttypes=no
3070 header_check inttypes.h && _inttypes=yes
3071 echores "$_inttypes"
3073 if test "$_inttypes" = no ; then
3074 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3075 header_check sys/bitypes.h && _inttypes=yes
3076 if test "$_inttypes" = yes ; then
3077 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."
3078 else
3079 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3084 echocheck "malloc.h"
3085 _malloc=no
3086 header_check malloc.h && _malloc=yes
3087 if test "$_malloc" = yes ; then
3088 def_malloc_h='#define HAVE_MALLOC_H 1'
3089 else
3090 def_malloc_h='#define HAVE_MALLOC_H 0'
3092 echores "$_malloc"
3095 echocheck "memalign()"
3096 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3097 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3098 _memalign=no
3099 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3100 if test "$_memalign" = yes ; then
3101 def_memalign='#define HAVE_MEMALIGN 1'
3102 else
3103 def_memalign='#define HAVE_MEMALIGN 0'
3104 def_map_memalign='#define memalign(a, b) malloc(b)'
3105 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3107 echores "$_memalign"
3110 echocheck "posix_memalign()"
3111 posix_memalign=no
3112 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3113 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3114 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3115 echores "$posix_memalign"
3118 echocheck "alloca.h"
3119 _alloca=no
3120 statement_check alloca.h 'alloca(0)' && _alloca=yes
3121 if cc_check ; then
3122 def_alloca_h='#define HAVE_ALLOCA_H 1'
3123 else
3124 def_alloca_h='#undef HAVE_ALLOCA_H'
3126 echores "$_alloca"
3129 echocheck "fastmemcpy"
3130 if test "$_fastmemcpy" = yes ; then
3131 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3132 else
3133 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3135 echores "$_fastmemcpy"
3138 echocheck "mman.h"
3139 _mman=no
3140 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3141 if test "$_mman" = yes ; then
3142 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3143 else
3144 def_mman_h='#undef HAVE_SYS_MMAN_H'
3145 os2 && need_mmap=yes
3147 echores "$_mman"
3149 _mman_has_map_failed=no
3150 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3151 if test "$_mman_has_map_failed" = yes ; then
3152 def_mman_has_map_failed=''
3153 else
3154 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3157 echocheck "dynamic loader"
3158 _dl=no
3159 for _ld_tmp in "" "-ldl"; do
3160 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3161 done
3162 if test "$_dl" = yes ; then
3163 def_dl='#define HAVE_LIBDL 1'
3164 else
3165 def_dl='#undef HAVE_LIBDL'
3167 echores "$_dl"
3170 echocheck "dynamic a/v plugins support"
3171 if test "$_dl" = no ; then
3172 _dynamic_plugins=no
3174 if test "$_dynamic_plugins" = yes ; then
3175 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3176 else
3177 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3179 echores "$_dynamic_plugins"
3182 def_threads='#define HAVE_THREADS 0'
3184 echocheck "pthread"
3185 if linux ; then
3186 THREAD_CFLAGS=-D_REENTRANT
3187 elif freebsd || netbsd || openbsd || bsdos ; then
3188 THREAD_CFLAGS=-D_THREAD_SAFE
3190 if test "$_pthreads" = auto ; then
3191 cat > $TMPC << EOF
3192 #include <pthread.h>
3193 static void *func(void *arg) { return arg; }
3194 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3196 _pthreads=no
3197 if ! hpux ; then
3198 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3199 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3200 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3201 done
3204 if test "$_pthreads" = yes ; then
3205 test $_ld_pthread && res_comment="using $_ld_pthread"
3206 def_pthreads='#define HAVE_PTHREADS 1'
3207 def_threads='#define HAVE_THREADS 1'
3208 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3209 else
3210 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3211 def_pthreads='#undef HAVE_PTHREADS'
3212 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3213 mingw32 || _win32dll=no
3215 echores "$_pthreads"
3217 if cygwin ; then
3218 if test "$_pthreads" = yes ; then
3219 def_pthread_cache="#define PTHREAD_CACHE 1"
3220 else
3221 _stream_cache=no
3222 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3226 echocheck "w32threads"
3227 if test "$_pthreads" = yes ; then
3228 res_comment="using pthread instead"
3229 _w32threads=no
3231 if test "$_w32threads" = auto ; then
3232 _w32threads=no
3233 mingw32 && _w32threads=yes
3235 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3236 echores "$_w32threads"
3238 echocheck "rpath"
3239 if test "$_rpath" = yes ; then
3240 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3241 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3242 done
3243 extra_ldflags=$tmp
3245 echores "$_rpath"
3247 echocheck "iconv"
3248 if test "$_iconv" = auto ; then
3249 cat > $TMPC << EOF
3250 #include <stdio.h>
3251 #include <unistd.h>
3252 #include <iconv.h>
3253 #define INBUFSIZE 1024
3254 #define OUTBUFSIZE 4096
3256 char inbuffer[INBUFSIZE];
3257 char outbuffer[OUTBUFSIZE];
3259 int main(void) {
3260 size_t numread;
3261 iconv_t icdsc;
3262 char *tocode="UTF-8";
3263 char *fromcode="cp1250";
3264 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3265 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3266 char *iptr=inbuffer;
3267 char *optr=outbuffer;
3268 size_t inleft=numread;
3269 size_t outleft=OUTBUFSIZE;
3270 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3271 != (size_t)(-1)) {
3272 write(1, outbuffer, OUTBUFSIZE - outleft);
3275 if (iconv_close(icdsc) == -1)
3278 return 0;
3281 _iconv=no
3282 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3283 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3284 _iconv=yes && break
3285 done
3287 if test "$_iconv" = yes ; then
3288 def_iconv='#define CONFIG_ICONV 1'
3289 else
3290 def_iconv='#undef CONFIG_ICONV'
3292 echores "$_iconv"
3295 echocheck "soundcard.h"
3296 _soundcard_h=no
3297 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3298 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3299 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3300 header_check $_soundcard_header && _soundcard_h=yes &&
3301 res_comment="$_soundcard_header" && break
3302 done
3304 if test "$_soundcard_h" = yes ; then
3305 if test $_soundcard_header = "sys/soundcard.h"; then
3306 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3307 else
3308 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3311 echores "$_soundcard_h"
3314 echocheck "sys/dvdio.h"
3315 _dvdio=no
3316 # FreeBSD 8.1 has broken dvdio.h
3317 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3318 if test "$_dvdio" = yes ; then
3319 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3320 else
3321 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3323 echores "$_dvdio"
3326 echocheck "sys/cdio.h"
3327 _cdio=no
3328 # at least OpenSolaris has a broken cdio.h
3329 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3330 if test "$_cdio" = yes ; then
3331 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3332 else
3333 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3335 echores "$_cdio"
3338 echocheck "linux/cdrom.h"
3339 _cdrom=no
3340 header_check linux/cdrom.h && _cdrom=yes
3341 if test "$_cdrom" = yes ; then
3342 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3343 else
3344 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3346 echores "$_cdrom"
3349 echocheck "dvd.h"
3350 _dvd=no
3351 header_check dvd.h && _dvd=yes
3352 if test "$_dvd" = yes ; then
3353 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3354 else
3355 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3357 echores "$_dvd"
3360 if bsdos; then
3361 echocheck "BSDI dvd.h"
3362 _bsdi_dvd=no
3363 header_check dvd.h && _bsdi_dvd=yes
3364 if test "$_bsdi_dvd" = yes ; then
3365 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3366 else
3367 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3369 echores "$_bsdi_dvd"
3370 fi #if bsdos
3373 if hpux; then
3374 # also used by AIX, but AIX does not support VCD and/or libdvdread
3375 echocheck "HP-UX SCSI header"
3376 _hpux_scsi_h=no
3377 header_check sys/scsi.h && _hpux_scsi_h=yes
3378 if test "$_hpux_scsi_h" = yes ; then
3379 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3380 else
3381 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3383 echores "$_hpux_scsi_h"
3384 fi #if hpux
3387 if sunos; then
3388 echocheck "userspace SCSI headers (Solaris)"
3389 _sol_scsi_h=no
3390 header_check sys/scsi/scsi_types.h &&
3391 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3392 _sol_scsi_h=yes
3393 if test "$_sol_scsi_h" = yes ; then
3394 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3395 else
3396 def_sol_scsi_h='#undef SOLARIS_USCSI'
3398 echores "$_sol_scsi_h"
3399 fi #if sunos
3402 echocheck "termcap"
3403 if test "$_termcap" = auto ; then
3404 _termcap=no
3405 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3406 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3407 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3408 done
3410 if test "$_termcap" = yes ; then
3411 def_termcap='#define HAVE_TERMCAP 1'
3412 test $_ld_tmp && res_comment="using $_ld_tmp"
3413 else
3414 def_termcap='#undef HAVE_TERMCAP'
3416 echores "$_termcap"
3419 echocheck "termios"
3420 def_termios='#undef HAVE_TERMIOS'
3421 def_termios_h='#undef HAVE_TERMIOS_H'
3422 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3423 if test "$_termios" = auto ; then
3424 _termios=no
3425 for _termios_header in "termios.h" "sys/termios.h"; do
3426 header_check $_termios_header && _termios=yes &&
3427 res_comment="using $_termios_header" && break
3428 done
3431 if test "$_termios" = yes ; then
3432 def_termios='#define HAVE_TERMIOS 1'
3433 if test "$_termios_header" = "termios.h" ; then
3434 def_termios_h='#define HAVE_TERMIOS_H 1'
3435 else
3436 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3439 echores "$_termios"
3442 echocheck "shm"
3443 if test "$_shm" = auto ; then
3444 _shm=no
3445 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3447 if test "$_shm" = yes ; then
3448 def_shm='#define HAVE_SHM 1'
3449 else
3450 def_shm='#undef HAVE_SHM'
3452 echores "$_shm"
3455 echocheck "strsep()"
3456 _strsep=no
3457 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3458 if test "$_strsep" = yes ; then
3459 def_strsep='#define HAVE_STRSEP 1'
3460 need_strsep=no
3461 else
3462 def_strsep='#undef HAVE_STRSEP'
3463 need_strsep=yes
3465 echores "$_strsep"
3468 echocheck "vsscanf()"
3469 cat > $TMPC << EOF
3470 #define _ISOC99_SOURCE
3471 #include <stdarg.h>
3472 #include <stdio.h>
3473 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3475 _vsscanf=no
3476 cc_check && _vsscanf=yes
3477 if test "$_vsscanf" = yes ; then
3478 def_vsscanf='#define HAVE_VSSCANF 1'
3479 need_vsscanf=no
3480 else
3481 def_vsscanf='#undef HAVE_VSSCANF'
3482 need_vsscanf=yes
3484 echores "$_vsscanf"
3487 echocheck "swab()"
3488 _swab=no
3489 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3490 if test "$_swab" = yes ; then
3491 def_swab='#define HAVE_SWAB 1'
3492 need_swab=no
3493 else
3494 def_swab='#undef HAVE_SWAB'
3495 need_swab=yes
3497 echores "$_swab"
3499 echocheck "POSIX select()"
3500 cat > $TMPC << EOF
3501 #include <stdio.h>
3502 #include <stdlib.h>
3503 #include <sys/types.h>
3504 #include <string.h>
3505 #include <sys/time.h>
3506 #include <unistd.h>
3507 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3509 _posix_select=no
3510 def_posix_select='#undef HAVE_POSIX_SELECT'
3511 #select() of kLIBC (OS/2) supports socket only
3512 ! os2 && cc_check && _posix_select=yes &&
3513 def_posix_select='#define HAVE_POSIX_SELECT 1'
3514 echores "$_posix_select"
3517 echocheck "audio select()"
3518 if test "$_select" = no ; then
3519 def_select='#undef HAVE_AUDIO_SELECT'
3520 elif test "$_select" = yes ; then
3521 def_select='#define HAVE_AUDIO_SELECT 1'
3523 echores "$_select"
3526 echocheck "gettimeofday()"
3527 _gettimeofday=no
3528 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3529 if test "$_gettimeofday" = yes ; then
3530 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3531 need_gettimeofday=no
3532 else
3533 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3534 need_gettimeofday=yes
3536 echores "$_gettimeofday"
3539 echocheck "glob()"
3540 _glob=no
3541 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3542 if test "$_glob" = yes ; then
3543 def_glob='#define HAVE_GLOB 1'
3544 need_glob=no
3545 else
3546 def_glob='#undef HAVE_GLOB'
3547 need_glob=yes
3549 echores "$_glob"
3552 echocheck "setenv()"
3553 _setenv=no
3554 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3555 if test "$_setenv" = yes ; then
3556 def_setenv='#define HAVE_SETENV 1'
3557 need_setenv=no
3558 else
3559 def_setenv='#undef HAVE_SETENV'
3560 need_setenv=yes
3562 echores "$_setenv"
3565 echocheck "setmode()"
3566 _setmode=no
3567 def_setmode='#define HAVE_SETMODE 0'
3568 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3569 echores "$_setmode"
3572 if sunos; then
3573 echocheck "sysi86()"
3574 _sysi86=no
3575 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3576 if test "$_sysi86" = yes ; then
3577 def_sysi86='#define HAVE_SYSI86 1'
3578 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3579 else
3580 def_sysi86='#undef HAVE_SYSI86'
3582 echores "$_sysi86"
3583 fi #if sunos
3586 echocheck "sys/sysinfo.h"
3587 _sys_sysinfo=no
3588 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3589 if test "$_sys_sysinfo" = yes ; then
3590 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3591 else
3592 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3594 echores "$_sys_sysinfo"
3597 if darwin; then
3599 echocheck "Mac OS X Finder Support"
3600 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3601 if test "$_macosx_finder" = yes ; then
3602 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3603 extra_ldflags="$extra_ldflags -framework Carbon"
3605 echores "$_macosx_finder"
3607 echocheck "Mac OS X Bundle file locations"
3608 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3609 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3610 if test "$_macosx_bundle" = yes ; then
3611 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3612 extra_ldflags="$extra_ldflags -framework Carbon"
3614 echores "$_macosx_bundle"
3616 echocheck "Apple Remote"
3617 if test "$_apple_remote" = auto ; then
3618 _apple_remote=no
3619 cat > $TMPC <<EOF
3620 #include <stdio.h>
3621 #include <IOKit/IOCFPlugIn.h>
3622 int main(void) {
3623 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3624 CFMutableDictionaryRef hidMatchDictionary;
3625 IOReturn ioReturnValue;
3627 // Set up a matching dictionary to search the I/O Registry by class.
3628 // name for all HID class devices
3629 hidMatchDictionary = IOServiceMatching("AppleIRController");
3631 // Now search I/O Registry for matching devices.
3632 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3633 hidMatchDictionary, &hidObjectIterator);
3635 // If search is unsuccessful, return nonzero.
3636 if (ioReturnValue != kIOReturnSuccess ||
3637 !IOIteratorIsValid(hidObjectIterator)) {
3638 return 1;
3640 return 0;
3643 cc_check -framework IOKit && _apple_remote=yes
3645 if test "$_apple_remote" = yes ; then
3646 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3647 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3648 else
3649 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3651 echores "$_apple_remote"
3653 fi #if darwin
3655 if linux; then
3657 echocheck "Apple IR"
3658 if test "$_apple_ir" = auto ; then
3659 _apple_ir=no
3660 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3662 if test "$_apple_ir" = yes ; then
3663 def_apple_ir='#define CONFIG_APPLE_IR 1'
3664 else
3665 def_apple_ir='#undef CONFIG_APPLE_IR'
3667 echores "$_apple_ir"
3668 fi #if linux
3670 echocheck "pkg-config"
3671 _pkg_config=pkg-config
3672 if $($_pkg_config --version > /dev/null 2>&1); then
3673 if test "$_ld_static"; then
3674 _pkg_config="$_pkg_config --static"
3676 echores "yes"
3677 else
3678 _pkg_config=false
3679 echores "no"
3683 echocheck "Samba support (libsmbclient)"
3684 if test "$_smb" = yes; then
3685 extra_ldflags="$extra_ldflags -lsmbclient"
3687 if test "$_smb" = auto; then
3688 _smb=no
3689 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3690 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3691 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3692 done
3695 if test "$_smb" = yes; then
3696 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3697 inputmodules="smb $inputmodules"
3698 else
3699 def_smb="#undef CONFIG_LIBSMBCLIENT"
3700 noinputmodules="smb $noinputmodules"
3702 echores "$_smb"
3705 #########
3706 # VIDEO #
3707 #########
3710 echocheck "tdfxfb"
3711 if test "$_tdfxfb" = yes ; then
3712 def_tdfxfb='#define CONFIG_TDFXFB 1'
3713 vomodules="tdfxfb $vomodules"
3714 else
3715 def_tdfxfb='#undef CONFIG_TDFXFB'
3716 novomodules="tdfxfb $novomodules"
3718 echores "$_tdfxfb"
3720 echocheck "s3fb"
3721 if test "$_s3fb" = yes ; then
3722 def_s3fb='#define CONFIG_S3FB 1'
3723 vomodules="s3fb $vomodules"
3724 else
3725 def_s3fb='#undef CONFIG_S3FB'
3726 novomodules="s3fb $novomodules"
3728 echores "$_s3fb"
3730 echocheck "wii"
3731 if test "$_wii" = yes ; then
3732 def_wii='#define CONFIG_WII 1'
3733 vomodules="wii $vomodules"
3734 else
3735 def_wii='#undef CONFIG_WII'
3736 novomodules="wii $novomodules"
3738 echores "$_wii"
3740 echocheck "tdfxvid"
3741 if test "$_tdfxvid" = yes ; then
3742 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3743 vomodules="tdfx_vid $vomodules"
3744 else
3745 def_tdfxvid='#undef CONFIG_TDFX_VID'
3746 novomodules="tdfx_vid $novomodules"
3748 echores "$_tdfxvid"
3750 echocheck "xvr100"
3751 if test "$_xvr100" = auto ; then
3752 cat > $TMPC << EOF
3753 #include <unistd.h>
3754 #include <sys/fbio.h>
3755 #include <sys/visual_io.h>
3756 int main(void) {
3757 struct vis_identifier ident;
3758 struct fbgattr attr;
3759 ioctl(0, VIS_GETIDENTIFIER, &ident);
3760 ioctl(0, FBIOGATTR, &attr);
3761 return 0;
3764 _xvr100=no
3765 cc_check && _xvr100=yes
3767 if test "$_xvr100" = yes ; then
3768 def_xvr100='#define CONFIG_XVR100 1'
3769 vomodules="xvr100 $vomodules"
3770 else
3771 def_tdfxvid='#undef CONFIG_XVR100'
3772 novomodules="xvr100 $novomodules"
3774 echores "$_xvr100"
3776 echocheck "tga"
3777 if test "$_tga" = yes ; then
3778 def_tga='#define CONFIG_TGA 1'
3779 vomodules="tga $vomodules"
3780 else
3781 def_tga='#undef CONFIG_TGA'
3782 novomodules="tga $novomodules"
3784 echores "$_tga"
3787 echocheck "md5sum support"
3788 if test "$_md5sum" = yes; then
3789 def_md5sum="#define CONFIG_MD5SUM 1"
3790 vomodules="md5sum $vomodules"
3791 else
3792 def_md5sum="#undef CONFIG_MD5SUM"
3793 novomodules="md5sum $novomodules"
3795 echores "$_md5sum"
3798 echocheck "yuv4mpeg support"
3799 if test "$_yuv4mpeg" = yes; then
3800 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3801 vomodules="yuv4mpeg $vomodules"
3802 else
3803 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3804 novomodules="yuv4mpeg $novomodules"
3806 echores "$_yuv4mpeg"
3809 echocheck "bl"
3810 if test "$_bl" = yes ; then
3811 def_bl='#define CONFIG_BL 1'
3812 vomodules="bl $vomodules"
3813 else
3814 def_bl='#undef CONFIG_BL'
3815 novomodules="bl $novomodules"
3817 echores "$_bl"
3820 echocheck "DirectFB"
3821 if test "$_directfb" = auto ; then
3822 _directfb=no
3823 cat > $TMPC << EOF
3824 #include <directfb.h>
3825 #include <directfb_version.h>
3826 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3827 #error "DirectFB version too old."
3828 #endif
3829 int main(void) { DirectFBInit(0, 0); return 0; }
3831 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3832 cc_check $_inc_tmp -ldirectfb &&
3833 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3834 done
3836 if test "$_directfb" = yes ; then
3837 def_directfb='#define CONFIG_DIRECTFB 1'
3838 vomodules="directfb dfbmga $vomodules"
3839 libs_mplayer="$libs_mplayer -ldirectfb"
3840 else
3841 def_directfb='#undef CONFIG_DIRECTFB'
3842 novomodules="directfb dfbmga $novomodules"
3844 echores "$_directfb"
3847 echocheck "X11 headers presence"
3848 _x11_headers="no"
3849 res_comment="check if the dev(el) packages are installed"
3850 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3851 if test -f "$I/X11/Xlib.h" ; then
3852 _x11_headers="yes"
3853 res_comment=""
3854 break
3856 done
3857 if test $_cross_compile = no; then
3858 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3859 /usr/include/X11R6 /usr/openwin/include ; do
3860 if test -f "$I/X11/Xlib.h" ; then
3861 extra_cflags="$extra_cflags -I$I"
3862 _x11_headers="yes"
3863 res_comment="using $I"
3864 break
3866 done
3868 echores "$_x11_headers"
3871 echocheck "X11"
3872 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3873 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3874 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3875 -L/usr/lib ; do
3876 if netbsd; then
3877 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3878 else
3879 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3881 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3882 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3883 done
3885 if test "$_x11" = yes ; then
3886 def_x11='#define CONFIG_X11 1'
3887 vomodules="x11 xover $vomodules"
3888 else
3889 _x11=no
3890 def_x11='#undef CONFIG_X11'
3891 novomodules="x11 $novomodules"
3892 res_comment="check if the dev(el) packages are installed"
3893 # disable stuff that depends on X
3894 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3896 echores "$_x11"
3898 echocheck "Xss screensaver extensions"
3899 if test "$_xss" = auto ; then
3900 _xss=no
3901 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3903 if test "$_xss" = yes ; then
3904 def_xss='#define CONFIG_XSS 1'
3905 libs_mplayer="$libs_mplayer -lXss"
3906 else
3907 def_xss='#undef CONFIG_XSS'
3909 echores "$_xss"
3911 echocheck "DPMS"
3912 _xdpms3=no
3913 _xdpms4=no
3914 if test "$_x11" = yes ; then
3915 cat > $TMPC <<EOF
3916 #include <X11/Xmd.h>
3917 #include <X11/Xlib.h>
3918 #include <X11/Xutil.h>
3919 #include <X11/Xatom.h>
3920 #include <X11/extensions/dpms.h>
3921 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3923 cc_check -lXdpms && _xdpms3=yes
3924 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3926 if test "$_xdpms4" = yes ; then
3927 def_xdpms='#define CONFIG_XDPMS 1'
3928 res_comment="using Xdpms 4"
3929 echores "yes"
3930 elif test "$_xdpms3" = yes ; then
3931 def_xdpms='#define CONFIG_XDPMS 1'
3932 libs_mplayer="$libs_mplayer -lXdpms"
3933 res_comment="using Xdpms 3"
3934 echores "yes"
3935 else
3936 def_xdpms='#undef CONFIG_XDPMS'
3937 echores "no"
3941 echocheck "Xv"
3942 if test "$_xv" = auto ; then
3943 _xv=no
3944 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3947 if test "$_xv" = yes ; then
3948 def_xv='#define CONFIG_XV 1'
3949 libs_mplayer="$libs_mplayer -lXv"
3950 vomodules="xv $vomodules"
3951 else
3952 def_xv='#undef CONFIG_XV'
3953 novomodules="xv $novomodules"
3955 echores "$_xv"
3958 echocheck "XvMC"
3959 if test "$_xv" = yes && test "$_xvmc" != no ; then
3960 _xvmc=no
3961 cat > $TMPC <<EOF
3962 #include <X11/Xlib.h>
3963 #include <X11/extensions/Xvlib.h>
3964 #include <X11/extensions/XvMClib.h>
3965 int main(void) {
3966 XvMCQueryExtension(0, 0, 0);
3967 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
3968 return 0; }
3970 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
3971 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
3972 done
3974 if test "$_xvmc" = yes ; then
3975 def_xvmc='#define CONFIG_XVMC 1'
3976 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
3977 vomodules="xvmc $vomodules"
3978 res_comment="using $_xvmclib"
3979 else
3980 def_xvmc='#define CONFIG_XVMC 0'
3981 novomodules="xvmc $novomodules"
3983 echores "$_xvmc"
3986 echocheck "VDPAU"
3987 if test "$_vdpau" = auto ; then
3988 _vdpau=no
3989 if test "$_dl" = yes ; then
3990 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
3993 if test "$_vdpau" = yes ; then
3994 def_vdpau='#define CONFIG_VDPAU 1'
3995 libs_mplayer="$libs_mplayer -lvdpau"
3996 vomodules="vdpau $vomodules"
3997 else
3998 def_vdpau='#define CONFIG_VDPAU 0'
3999 novomodules="vdpau $novomodules"
4001 echores "$_vdpau"
4004 echocheck "Xinerama"
4005 if test "$_xinerama" = auto ; then
4006 _xinerama=no
4007 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
4010 if test "$_xinerama" = yes ; then
4011 def_xinerama='#define CONFIG_XINERAMA 1'
4012 libs_mplayer="$libs_mplayer -lXinerama"
4013 else
4014 def_xinerama='#undef CONFIG_XINERAMA'
4016 echores "$_xinerama"
4019 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4020 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4021 # named 'X extensions' or something similar.
4022 # This check may be useful for future mplayer versions (to change resolution)
4023 # If you run into problems, remove '-lXxf86vm'.
4024 echocheck "Xxf86vm"
4025 if test "$_vm" = auto ; then
4026 _vm=no
4027 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4029 if test "$_vm" = yes ; then
4030 def_vm='#define CONFIG_XF86VM 1'
4031 libs_mplayer="$libs_mplayer -lXxf86vm"
4032 else
4033 def_vm='#undef CONFIG_XF86VM'
4035 echores "$_vm"
4037 # Check for the presence of special keycodes, like audio control buttons
4038 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4039 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4040 # have these new keycodes.
4041 echocheck "XF86keysym"
4042 if test "$_xf86keysym" = auto; then
4043 _xf86keysym=no
4044 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4046 if test "$_xf86keysym" = yes ; then
4047 def_xf86keysym='#define CONFIG_XF86XK 1'
4048 else
4049 def_xf86keysym='#undef CONFIG_XF86XK'
4051 echores "$_xf86keysym"
4053 echocheck "DGA"
4054 if test "$_dga2" = auto && test "$_x11" = yes ; then
4055 _dga2=no
4056 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4058 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4059 _dga1=no
4060 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4063 _dga=no
4064 def_dga='#undef CONFIG_DGA'
4065 def_dga1='#undef CONFIG_DGA1'
4066 def_dga2='#undef CONFIG_DGA2'
4067 if test "$_dga1" = yes ; then
4068 _dga=yes
4069 def_dga1='#define CONFIG_DGA1 1'
4070 res_comment="using DGA 1.0"
4071 elif test "$_dga2" = yes ; then
4072 _dga=yes
4073 def_dga2='#define CONFIG_DGA2 1'
4074 res_comment="using DGA 2.0"
4076 if test "$_dga" = yes ; then
4077 def_dga='#define CONFIG_DGA 1'
4078 libs_mplayer="$libs_mplayer -lXxf86dga"
4079 vomodules="dga $vomodules"
4080 else
4081 novomodules="dga $novomodules"
4083 echores "$_dga"
4086 echocheck "3dfx"
4087 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4088 def_3dfx='#define CONFIG_3DFX 1'
4089 vomodules="3dfx $vomodules"
4090 else
4091 def_3dfx='#undef CONFIG_3DFX'
4092 novomodules="3dfx $novomodules"
4094 echores "$_3dfx"
4097 echocheck "GGI"
4098 if test "$_ggi" = auto ; then
4099 _ggi=no
4100 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4102 if test "$_ggi" = yes ; then
4103 def_ggi='#define CONFIG_GGI 1'
4104 libs_mplayer="$libs_mplayer -lggi"
4105 vomodules="ggi $vomodules"
4106 else
4107 def_ggi='#undef CONFIG_GGI'
4108 novomodules="ggi $novomodules"
4110 echores "$_ggi"
4112 echocheck "GGI extension: libggiwmh"
4113 if test "$_ggiwmh" = auto ; then
4114 _ggiwmh=no
4115 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4117 # needed to get right output on obscure combination
4118 # like --disable-ggi --enable-ggiwmh
4119 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4120 def_ggiwmh='#define CONFIG_GGIWMH 1'
4121 libs_mplayer="$libs_mplayer -lggiwmh"
4122 else
4123 _ggiwmh=no
4124 def_ggiwmh='#undef CONFIG_GGIWMH'
4126 echores "$_ggiwmh"
4129 echocheck "AA"
4130 if test "$_aa" = auto ; then
4131 cat > $TMPC << EOF
4132 #include <aalib.h>
4133 int main(void) {
4134 aa_context *c;
4135 aa_renderparams *p;
4136 aa_init(0, 0, 0);
4137 c = aa_autoinit(&aa_defparams);
4138 p = aa_getrenderparams();
4139 aa_autoinitkbd(c, 0);
4140 return 0; }
4142 _aa=no
4143 for _ld_tmp in "-laa" ; do
4144 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4145 done
4147 if test "$_aa" = yes ; then
4148 def_aa='#define CONFIG_AA 1'
4149 if cygwin ; then
4150 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4152 vomodules="aa $vomodules"
4153 else
4154 def_aa='#undef CONFIG_AA'
4155 novomodules="aa $novomodules"
4157 echores "$_aa"
4160 echocheck "CACA"
4161 if test "$_caca" = auto ; then
4162 _caca=no
4163 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4164 cat > $TMPC << EOF
4165 #include <caca.h>
4166 #ifdef CACA_API_VERSION_1
4167 #include <caca0.h>
4168 #endif
4169 int main(void) { caca_init(); return 0; }
4171 cc_check $(caca-config --libs) && _caca=yes
4174 if test "$_caca" = yes ; then
4175 def_caca='#define CONFIG_CACA 1'
4176 extra_cflags="$extra_cflags $(caca-config --cflags)"
4177 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4178 vomodules="caca $vomodules"
4179 else
4180 def_caca='#undef CONFIG_CACA'
4181 novomodules="caca $novomodules"
4183 echores "$_caca"
4186 echocheck "SVGAlib"
4187 if test "$_svga" = auto ; then
4188 _svga=no
4189 header_check vga.h -lvga $_ld_lm && _svga=yes
4191 if test "$_svga" = yes ; then
4192 def_svga='#define CONFIG_SVGALIB 1'
4193 libs_mplayer="$libs_mplayer -lvga"
4194 vomodules="svga $vomodules"
4195 else
4196 def_svga='#undef CONFIG_SVGALIB'
4197 novomodules="svga $novomodules"
4199 echores "$_svga"
4202 echocheck "FBDev"
4203 if test "$_fbdev" = auto ; then
4204 _fbdev=no
4205 linux && _fbdev=yes
4207 if test "$_fbdev" = yes ; then
4208 def_fbdev='#define CONFIG_FBDEV 1'
4209 vomodules="fbdev $vomodules"
4210 else
4211 def_fbdev='#undef CONFIG_FBDEV'
4212 novomodules="fbdev $novomodules"
4214 echores "$_fbdev"
4218 echocheck "DVB"
4219 if test "$_dvb" = auto ; then
4220 _dvb=no
4221 cat >$TMPC << EOF
4222 #include <poll.h>
4223 #include <sys/ioctl.h>
4224 #include <stdio.h>
4225 #include <time.h>
4226 #include <unistd.h>
4227 #include <linux/dvb/dmx.h>
4228 #include <linux/dvb/frontend.h>
4229 #include <linux/dvb/video.h>
4230 #include <linux/dvb/audio.h>
4231 int main(void) {return 0;}
4233 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4234 cc_check $_inc_tmp && _dvb=yes &&
4235 extra_cflags="$extra_cflags $_inc_tmp" && break
4236 done
4238 echores "$_dvb"
4239 if test "$_dvb" = yes ; then
4240 _dvbin=yes
4241 inputmodules="dvb $inputmodules"
4242 def_dvb='#define CONFIG_DVB 1'
4243 def_dvbin='#define CONFIG_DVBIN 1'
4244 aomodules="mpegpes(dvb) $aomodules"
4245 vomodules="mpegpes(dvb) $vomodules"
4246 else
4247 _dvbin=no
4248 noinputmodules="dvb $noinputmodules"
4249 def_dvb='#undef CONFIG_DVB'
4250 def_dvbin='#undef CONFIG_DVBIN '
4251 aomodules="mpegpes(file) $aomodules"
4252 vomodules="mpegpes(file) $vomodules"
4256 if darwin; then
4258 echocheck "QuickTime"
4259 if test "$quicktime" = auto ; then
4260 quicktime=no
4261 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4263 if test "$quicktime" = yes ; then
4264 extra_ldflags="$extra_ldflags -framework QuickTime"
4265 def_quicktime='#define CONFIG_QUICKTIME 1'
4266 else
4267 def_quicktime='#undef CONFIG_QUICKTIME'
4268 _quartz=no
4270 echores $quicktime
4272 echocheck "Quartz"
4273 if test "$_quartz" = auto ; then
4274 _quartz=no
4275 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4277 if test "$_quartz" = yes ; then
4278 libs_mplayer="$libs_mplayer -framework Carbon"
4279 def_quartz='#define CONFIG_QUARTZ 1'
4280 vomodules="quartz $vomodules"
4281 else
4282 def_quartz='#undef CONFIG_QUARTZ'
4283 novomodules="quartz $novomodules"
4285 echores $_quartz
4287 echocheck "CoreVideo"
4288 if test "$_corevideo" = auto ; then
4289 cat > $TMPC <<EOF
4290 #include <Carbon/Carbon.h>
4291 #include <CoreServices/CoreServices.h>
4292 #include <OpenGL/OpenGL.h>
4293 #include <QuartzCore/CoreVideo.h>
4294 int main(void) { return 0; }
4296 _corevideo=no
4297 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4299 if test "$_corevideo" = yes ; then
4300 vomodules="corevideo $vomodules"
4301 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4302 def_corevideo='#define CONFIG_COREVIDEO 1'
4303 else
4304 novomodules="corevideo $novomodules"
4305 def_corevideo='#undef CONFIG_COREVIDEO'
4307 echores "$_corevideo"
4309 fi #if darwin
4312 echocheck "PNG support"
4313 if test "$_png" = auto ; then
4314 _png=no
4315 if irix ; then
4316 # Don't check for -lpng on irix since it has its own libpng
4317 # incompatible with the GNU libpng
4318 res_comment="disabled on irix (not GNU libpng)"
4319 else
4320 cat > $TMPC << EOF
4321 #include <stdio.h>
4322 #include <string.h>
4323 #include <png.h>
4324 int main(void) {
4325 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4326 printf("libpng: %s\n", png_libpng_ver);
4327 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4330 cc_check -lpng -lz $_ld_lm && _png=yes
4333 echores "$_png"
4334 if test "$_png" = yes ; then
4335 def_png='#define CONFIG_PNG 1'
4336 extra_ldflags="$extra_ldflags -lpng -lz"
4337 else
4338 def_png='#undef CONFIG_PNG'
4341 echocheck "MNG support"
4342 if test "$_mng" = auto ; then
4343 _mng=no
4344 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4346 echores "$_mng"
4347 if test "$_mng" = yes ; then
4348 def_mng='#define CONFIG_MNG 1'
4349 extra_ldflags="$extra_ldflags -lmng -lz"
4350 else
4351 def_mng='#undef CONFIG_MNG'
4354 echocheck "JPEG support"
4355 if test "$_jpeg" = auto ; then
4356 _jpeg=no
4357 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4359 echores "$_jpeg"
4361 if test "$_jpeg" = yes ; then
4362 def_jpeg='#define CONFIG_JPEG 1'
4363 vomodules="jpeg $vomodules"
4364 extra_ldflags="$extra_ldflags -ljpeg"
4365 else
4366 def_jpeg='#undef CONFIG_JPEG'
4367 novomodules="jpeg $novomodules"
4372 echocheck "PNM support"
4373 if test "$_pnm" = yes; then
4374 def_pnm="#define CONFIG_PNM 1"
4375 vomodules="pnm $vomodules"
4376 else
4377 def_pnm="#undef CONFIG_PNM"
4378 novomodules="pnm $novomodules"
4380 echores "$_pnm"
4384 echocheck "GIF support"
4385 # This is to appease people who want to force gif support.
4386 # If it is forced to yes, then we still do checks to determine
4387 # which gif library to use.
4388 if test "$_gif" = yes ; then
4389 _force_gif=yes
4390 _gif=auto
4393 if test "$_gif" = auto ; then
4394 _gif=no
4395 for _ld_gif in "-lungif" "-lgif" ; do
4396 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4397 done
4400 # If no library was found, and the user wants support forced,
4401 # then we force it on with libgif, as this is the safest
4402 # assumption IMHO. (libungif & libregif both create symbolic
4403 # links to libgif. We also assume that no x11 support is needed,
4404 # because if you are forcing this, then you _should_ know what
4405 # you are doing. [ Besides, package maintainers should never
4406 # have compiled x11 deps into libungif in the first place. ] )
4407 # </rant>
4408 # --Joey
4409 if test "$_force_gif" = yes && test "$_gif" = no ; then
4410 _gif=yes
4411 _ld_gif="-lgif"
4414 if test "$_gif" = yes ; then
4415 def_gif='#define CONFIG_GIF 1'
4416 codecmodules="gif $codecmodules"
4417 vomodules="gif89a $vomodules"
4418 res_comment="old version, some encoding functions disabled"
4419 def_gif_4='#undef CONFIG_GIF_4'
4420 extra_ldflags="$extra_ldflags $_ld_gif"
4422 cat > $TMPC << EOF
4423 #include <signal.h>
4424 #include <stdio.h>
4425 #include <stdlib.h>
4426 #include <gif_lib.h>
4427 static void catch(int sig) { exit(1); }
4428 int main(void) {
4429 signal(SIGSEGV, catch); // catch segfault
4430 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4431 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4432 return 0;
4435 if cc_check "$_ld_gif" ; then
4436 def_gif_4='#define CONFIG_GIF_4 1'
4437 res_comment=""
4439 else
4440 def_gif='#undef CONFIG_GIF'
4441 def_gif_4='#undef CONFIG_GIF_4'
4442 novomodules="gif89a $novomodules"
4443 nocodecmodules="gif $nocodecmodules"
4445 echores "$_gif"
4448 case "$_gif" in yes*)
4449 echocheck "broken giflib workaround"
4450 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4452 cat > $TMPC << EOF
4453 #include <stdio.h>
4454 #include <gif_lib.h>
4455 int main(void) {
4456 GifFileType gif = {.UserData = NULL};
4457 printf("UserData is at address %p\n", gif.UserData);
4458 return 0;
4461 if cc_check "$_ld_gif" ; then
4462 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4463 echores "disabled"
4464 else
4465 echores "enabled"
4468 esac
4471 echocheck "VESA support"
4472 if test "$_vesa" = auto ; then
4473 _vesa=no
4474 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4476 if test "$_vesa" = yes ; then
4477 def_vesa='#define CONFIG_VESA 1'
4478 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4479 vomodules="vesa $vomodules"
4480 else
4481 def_vesa='#undef CONFIG_VESA'
4482 novomodules="vesa $novomodules"
4484 echores "$_vesa"
4486 #################
4487 # VIDEO + AUDIO #
4488 #################
4491 echocheck "SDL"
4492 _inc_tmp=""
4493 _ld_tmp=""
4494 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4495 if test -z "$_sdlconfig" ; then
4496 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4497 _sdlconfig="sdl-config"
4498 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4499 _sdlconfig="sdl11-config"
4500 else
4501 _sdlconfig=false
4504 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4505 cat > $TMPC << EOF
4506 #ifdef CONFIG_SDL_SDL_H
4507 #include <SDL/SDL.h>
4508 #else
4509 #include <SDL.h>
4510 #endif
4511 #ifndef __APPLE__
4512 // we allow SDL hacking our main() only on OSX
4513 #undef main
4514 #endif
4515 int main(int argc, char *argv[]) {
4516 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4517 return 0;
4520 _sdl=no
4521 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4522 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4523 _sdl=yes
4524 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4525 break
4527 done
4528 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4529 res_comment="using $_sdlconfig"
4530 if cygwin ; then
4531 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4532 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4533 elif mingw32 ; then
4534 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4535 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4536 else
4537 _inc_tmp="$($_sdlconfig --cflags)"
4538 _ld_tmp="$($_sdlconfig --libs)"
4540 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4541 _sdl=yes
4542 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4543 # HACK for BeOS/Haiku SDL
4544 _ld_tmp="$_ld_tmp -lstdc++"
4545 _sdl=yes
4549 if test "$_sdl" = yes ; then
4550 def_sdl='#define CONFIG_SDL 1'
4551 extra_cflags="$extra_cflags $_inc_tmp"
4552 libs_mplayer="$libs_mplayer $_ld_tmp"
4553 vomodules="sdl $vomodules"
4554 aomodules="sdl $aomodules"
4555 else
4556 def_sdl='#undef CONFIG_SDL'
4557 novomodules="sdl $novomodules"
4558 noaomodules="sdl $noaomodules"
4560 echores "$_sdl"
4563 # make sure this stays below CoreVideo to avoid issues due to namespace
4564 # conflicts between -lGL and -framework OpenGL
4565 echocheck "OpenGL"
4566 #Note: this test is run even with --enable-gl since we autodetect linker flags
4567 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4568 cat > $TMPC << EOF
4569 #ifdef GL_WIN32
4570 #include <windows.h>
4571 #include <GL/gl.h>
4572 #elif defined(GL_SDL)
4573 #include <GL/gl.h>
4574 #ifdef CONFIG_SDL_SDL_H
4575 #include <SDL/SDL.h>
4576 #else
4577 #include <SDL.h>
4578 #endif
4579 #ifndef __APPLE__
4580 // we allow SDL hacking our main() only on OSX
4581 #undef main
4582 #endif
4583 #else
4584 #include <GL/gl.h>
4585 #include <X11/Xlib.h>
4586 #include <GL/glx.h>
4587 #endif
4588 int main(int argc, char *argv[]) {
4589 #ifdef GL_WIN32
4590 HDC dc;
4591 wglCreateContext(dc);
4592 #elif defined(GL_SDL)
4593 SDL_GL_SwapBuffers();
4594 #else
4595 glXCreateContext(NULL, NULL, NULL, True);
4596 #endif
4597 glFinish();
4598 return 0;
4601 _gl=no
4602 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4603 if cc_check $_ld_tmp $_ld_lm ; then
4604 _gl=yes
4605 _gl_x11=yes
4606 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4607 break
4609 done
4610 if cc_check -DGL_WIN32 -lopengl32 ; then
4611 _gl=yes
4612 _gl_win32=yes
4613 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4615 # last so it can reuse any linker etc. flags detected before
4616 if test "$_sdl" = yes ; then
4617 if cc_check -DGL_SDL ||
4618 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4619 _gl=yes
4620 _gl_sdl=yes
4621 elif cc_check -DGL_SDL -lGL ||
4622 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4623 _gl=yes
4624 _gl_sdl=yes
4625 libs_mplayer="$libs_mplayer -lGL"
4628 else
4629 _gl=no
4631 if test "$_gl" = yes ; then
4632 def_gl='#define CONFIG_GL 1'
4633 res_comment="backends:"
4634 if test "$_gl_win32" = yes ; then
4635 def_gl_win32='#define CONFIG_GL_WIN32 1'
4636 res_comment="$res_comment win32"
4638 if test "$_gl_x11" = yes ; then
4639 def_gl_x11='#define CONFIG_GL_X11 1'
4640 res_comment="$res_comment x11"
4642 if test "$_gl_sdl" = yes ; then
4643 def_gl_sdl='#define CONFIG_GL_SDL 1'
4644 res_comment="$res_comment sdl"
4646 vomodules="opengl $vomodules"
4647 else
4648 def_gl='#undef CONFIG_GL'
4649 def_gl_win32='#undef CONFIG_GL_WIN32'
4650 def_gl_x11='#undef CONFIG_GL_X11'
4651 def_gl_sdl='#undef CONFIG_GL_SDL'
4652 novomodules="opengl $novomodules"
4654 echores "$_gl"
4657 echocheck "MatrixView"
4658 if test "$_gl" = no ; then
4659 matrixview=no
4661 if test "$matrixview" = yes ; then
4662 vomodules="matrixview $vomodules"
4663 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4664 else
4665 novomodules="matrixview $novomodules"
4666 def_matrixview='#undef CONFIG_MATRIXVIEW'
4668 echores "$matrixview"
4671 if os2 ; then
4672 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4673 if test "$_kva" = auto; then
4674 _kva=no;
4675 header_check_broken os2.h kva.h -lkva && _kva=yes
4677 if test "$_kva" = yes ; then
4678 def_kva='#define CONFIG_KVA 1'
4679 libs_mplayer="$libs_mplayer -lkva"
4680 vomodules="kva $vomodules"
4681 else
4682 def_kva='#undef CONFIG_KVA'
4683 novomodules="kva $novomodules"
4685 echores "$_kva"
4686 fi #if os2
4689 if win32; then
4691 echocheck "Windows waveout"
4692 if test "$_win32waveout" = auto ; then
4693 _win32waveout=no
4694 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4696 if test "$_win32waveout" = yes ; then
4697 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4698 libs_mplayer="$libs_mplayer -lwinmm"
4699 aomodules="win32 $aomodules"
4700 else
4701 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4702 noaomodules="win32 $noaomodules"
4704 echores "$_win32waveout"
4706 echocheck "Direct3D"
4707 if test "$_direct3d" = auto ; then
4708 _direct3d=no
4709 header_check d3d9.h && _direct3d=yes
4711 if test "$_direct3d" = yes ; then
4712 def_direct3d='#define CONFIG_DIRECT3D 1'
4713 vomodules="direct3d $vomodules"
4714 else
4715 def_direct3d='#undef CONFIG_DIRECT3D'
4716 novomodules="direct3d $novomodules"
4718 echores "$_direct3d"
4720 echocheck "Directx"
4721 if test "$_directx" = auto ; then
4722 cat > $TMPC << EOF
4723 #include <ddraw.h>
4724 #include <dsound.h>
4725 int main(void) { return 0; }
4727 _directx=no
4728 cc_check -lgdi32 && _directx=yes
4730 if test "$_directx" = yes ; then
4731 def_directx='#define CONFIG_DIRECTX 1'
4732 libs_mplayer="$libs_mplayer -lgdi32"
4733 vomodules="directx $vomodules"
4734 aomodules="dsound $aomodules"
4735 else
4736 def_directx='#undef CONFIG_DIRECTX'
4737 novomodules="directx $novomodules"
4738 noaomodules="dsound $noaomodules"
4740 echores "$_directx"
4742 fi #if win32; then
4745 echocheck "DXR3/H+"
4746 if test "$_dxr3" = auto ; then
4747 _dxr3=no
4748 header_check linux/em8300.h && _dxr3=yes
4750 if test "$_dxr3" = yes ; then
4751 def_dxr3='#define CONFIG_DXR3 1'
4752 vomodules="dxr3 $vomodules"
4753 else
4754 def_dxr3='#undef CONFIG_DXR3'
4755 novomodules="dxr3 $novomodules"
4757 echores "$_dxr3"
4760 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4761 if test "$_ivtv" = auto ; then
4762 cat > $TMPC << EOF
4763 #include <sys/time.h>
4764 #include <linux/videodev2.h>
4765 #include <linux/ivtv.h>
4766 #include <sys/ioctl.h>
4767 int main(void) {
4768 struct ivtv_cfg_stop_decode sd;
4769 struct ivtv_cfg_start_decode sd1;
4770 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4771 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4772 return 0; }
4774 _ivtv=no
4775 cc_check && _ivtv=yes
4777 if test "$_ivtv" = yes ; then
4778 def_ivtv='#define CONFIG_IVTV 1'
4779 vomodules="ivtv $vomodules"
4780 aomodules="ivtv $aomodules"
4781 else
4782 def_ivtv='#undef CONFIG_IVTV'
4783 novomodules="ivtv $novomodules"
4784 noaomodules="ivtv $noaomodules"
4786 echores "$_ivtv"
4789 echocheck "V4L2 MPEG Decoder"
4790 if test "$_v4l2" = auto ; then
4791 cat > $TMPC << EOF
4792 #include <sys/time.h>
4793 #include <linux/videodev2.h>
4794 #include <linux/version.h>
4795 int main(void) {
4796 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4797 #error kernel headers too old, need 2.6.22
4798 #endif
4799 struct v4l2_ext_controls ctrls;
4800 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4801 return 0;
4804 _v4l2=no
4805 cc_check && _v4l2=yes
4807 if test "$_v4l2" = yes ; then
4808 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4809 vomodules="v4l2 $vomodules"
4810 aomodules="v4l2 $aomodules"
4811 else
4812 def_v4l2='#undef CONFIG_V4L2_DECODER'
4813 novomodules="v4l2 $novomodules"
4814 noaomodules="v4l2 $noaomodules"
4816 echores "$_v4l2"
4820 #########
4821 # AUDIO #
4822 #########
4825 echocheck "OSS Audio"
4826 if test "$_ossaudio" = auto ; then
4827 _ossaudio=no
4828 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4830 if test "$_ossaudio" = yes ; then
4831 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4832 aomodules="oss $aomodules"
4833 cat > $TMPC << EOF
4834 #include <$_soundcard_header>
4835 #ifdef OPEN_SOUND_SYSTEM
4836 int main(void) { return 0; }
4837 #else
4838 #error Not the real thing
4839 #endif
4841 _real_ossaudio=no
4842 cc_check && _real_ossaudio=yes
4843 if test "$_real_ossaudio" = yes; then
4844 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4845 # Check for OSS4 headers (override default headers)
4846 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4847 if test -f /etc/oss.conf; then
4848 . /etc/oss.conf
4849 _ossinc="$OSSLIBDIR/include"
4850 if test -f "$_ossinc/sys/soundcard.h"; then
4851 extra_cflags="-I$_ossinc $extra_cflags"
4854 elif netbsd || openbsd ; then
4855 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4856 extra_ldflags="$extra_ldflags -lossaudio"
4857 else
4858 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4860 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4861 else
4862 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4863 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4864 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4865 noaomodules="oss $noaomodules"
4867 echores "$_ossaudio"
4870 echocheck "aRts"
4871 if test "$_arts" = auto ; then
4872 _arts=no
4873 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4874 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4875 _arts=yes
4879 if test "$_arts" = yes ; then
4880 def_arts='#define CONFIG_ARTS 1'
4881 aomodules="arts $aomodules"
4882 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4883 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4884 else
4885 noaomodules="arts $noaomodules"
4887 echores "$_arts"
4890 echocheck "EsounD"
4891 if test "$_esd" = auto ; then
4892 _esd=no
4893 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4894 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4897 echores "$_esd"
4899 if test "$_esd" = yes ; then
4900 def_esd='#define CONFIG_ESD 1'
4901 aomodules="esd $aomodules"
4902 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4903 extra_cflags="$extra_cflags $(esd-config --cflags)"
4905 echocheck "esd_get_latency()"
4906 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4907 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4908 echores "$_esd_latency"
4909 else
4910 def_esd='#undef CONFIG_ESD'
4911 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4912 noaomodules="esd $noaomodules"
4916 echocheck "NAS"
4917 if test "$_nas" = auto ; then
4918 _nas=no
4919 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4921 if test "$_nas" = yes ; then
4922 def_nas='#define CONFIG_NAS 1'
4923 libs_mplayer="$libs_mplayer -laudio -lXt"
4924 aomodules="nas $aomodules"
4925 else
4926 noaomodules="nas $noaomodules"
4927 def_nas='#undef CONFIG_NAS'
4929 echores "$_nas"
4932 echocheck "pulse"
4933 if test "$_pulse" = auto ; then
4934 _pulse=no
4935 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4936 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4937 _pulse=yes
4940 echores "$_pulse"
4942 if test "$_pulse" = yes ; then
4943 def_pulse='#define CONFIG_PULSE 1'
4944 aomodules="pulse $aomodules"
4945 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4946 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4947 else
4948 def_pulse='#undef CONFIG_PULSE'
4949 noaomodules="pulse $noaomodules"
4953 echocheck "JACK"
4954 if test "$_jack" = auto ; then
4955 _jack=yes
4956 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4957 libs_mplayer="$libs_mplayer -ljack"
4958 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4959 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4960 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4961 else
4962 _jack=no
4966 if test "$_jack" = yes ; then
4967 def_jack='#define CONFIG_JACK 1'
4968 aomodules="jack $aomodules"
4969 else
4970 noaomodules="jack $noaomodules"
4972 echores "$_jack"
4974 echocheck "OpenAL"
4975 if test "$_openal" = auto ; then
4976 _openal=no
4977 cat > $TMPC << EOF
4978 #ifdef OPENAL_AL_H
4979 #include <OpenAL/al.h>
4980 #else
4981 #include <AL/al.h>
4982 #endif
4983 int main(void) {
4984 alSourceQueueBuffers(0, 0, 0);
4985 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4986 return 0;
4989 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
4990 cc_check $I && _openal=yes && break
4991 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
4992 done
4993 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
4995 if test "$_openal" = yes ; then
4996 def_openal='#define CONFIG_OPENAL 1'
4997 aomodules="openal $aomodules"
4998 else
4999 noaomodules="openal $noaomodules"
5001 echores "$_openal"
5003 echocheck "ALSA audio"
5004 if test "$_alloca" != yes ; then
5005 _alsa=no
5006 res_comment="alloca missing"
5008 if test "$_alsa" != no ; then
5009 _alsa=no
5010 cat > $TMPC << EOF
5011 #include <sys/asoundlib.h>
5012 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5013 #error "alsa version != 0.5.x"
5014 #endif
5015 int main(void) { return 0; }
5017 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5019 cat > $TMPC << EOF
5020 #include <sys/asoundlib.h>
5021 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5022 #error "alsa version != 0.9.x"
5023 #endif
5024 int main(void) { return 0; }
5026 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5027 cat > $TMPC << EOF
5028 #include <alsa/asoundlib.h>
5029 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5030 #error "alsa version != 0.9.x"
5031 #endif
5032 int main(void) { return 0; }
5034 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5036 cat > $TMPC << EOF
5037 #include <sys/asoundlib.h>
5038 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5039 #error "alsa version != 1.0.x"
5040 #endif
5041 int main(void) { return 0; }
5043 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5044 cat > $TMPC << EOF
5045 #include <alsa/asoundlib.h>
5046 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5047 #error "alsa version != 1.0.x"
5048 #endif
5049 int main(void) { return 0; }
5051 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5053 def_alsa='#undef CONFIG_ALSA'
5054 def_alsa5='#undef CONFIG_ALSA5'
5055 def_alsa9='#undef CONFIG_ALSA9'
5056 def_alsa1x='#undef CONFIG_ALSA1X'
5057 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5058 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5059 if test "$_alsaver" ; then
5060 _alsa=yes
5061 if test "$_alsaver" = '0.5.x' ; then
5062 _alsa5=yes
5063 aomodules="alsa5 $aomodules"
5064 def_alsa5='#define CONFIG_ALSA5 1'
5065 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5066 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5067 elif test "$_alsaver" = '0.9.x-sys' ; then
5068 _alsa9=yes
5069 aomodules="alsa $aomodules"
5070 def_alsa='#define CONFIG_ALSA 1'
5071 def_alsa9='#define CONFIG_ALSA9 1'
5072 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5073 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5074 elif test "$_alsaver" = '0.9.x-alsa' ; then
5075 _alsa9=yes
5076 aomodules="alsa $aomodules"
5077 def_alsa='#define CONFIG_ALSA 1'
5078 def_alsa9='#define CONFIG_ALSA9 1'
5079 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5080 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5081 elif test "$_alsaver" = '1.0.x-sys' ; then
5082 _alsa1x=yes
5083 aomodules="alsa $aomodules"
5084 def_alsa='#define CONFIG_ALSA 1'
5085 def_alsa1x="#define CONFIG_ALSA1X 1"
5086 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5087 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5088 elif test "$_alsaver" = '1.0.x-alsa' ; then
5089 _alsa1x=yes
5090 aomodules="alsa $aomodules"
5091 def_alsa='#define CONFIG_ALSA 1'
5092 def_alsa1x="#define CONFIG_ALSA1X 1"
5093 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5094 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5095 else
5096 _alsa=no
5097 res_comment="unknown version"
5099 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5100 else
5101 noaomodules="alsa $noaomodules"
5103 echores "$_alsa"
5106 echocheck "Sun audio"
5107 if test "$_sunaudio" = auto ; then
5108 cat > $TMPC << EOF
5109 #include <sys/types.h>
5110 #include <sys/audioio.h>
5111 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5113 _sunaudio=no
5114 cc_check && _sunaudio=yes
5116 if test "$_sunaudio" = yes ; then
5117 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5118 aomodules="sun $aomodules"
5119 else
5120 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5121 noaomodules="sun $noaomodules"
5123 echores "$_sunaudio"
5126 if darwin; then
5127 echocheck "CoreAudio"
5128 if test "$_coreaudio" = auto ; then
5129 cat > $TMPC <<EOF
5130 #include <CoreAudio/CoreAudio.h>
5131 #include <AudioToolbox/AudioToolbox.h>
5132 #include <AudioUnit/AudioUnit.h>
5133 int main(void) { return 0; }
5135 _coreaudio=no
5136 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5138 if test "$_coreaudio" = yes ; then
5139 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5140 def_coreaudio='#define CONFIG_COREAUDIO 1'
5141 aomodules="coreaudio $aomodules"
5142 else
5143 def_coreaudio='#undef CONFIG_COREAUDIO'
5144 noaomodules="coreaudio $noaomodules"
5146 echores $_coreaudio
5147 fi #if darwin
5150 if irix; then
5151 echocheck "SGI audio"
5152 if test "$_sgiaudio" = auto ; then
5153 _sgiaudio=no
5154 header_check dmedia/audio.h && _sgiaudio=yes
5156 if test "$_sgiaudio" = "yes" ; then
5157 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5158 libs_mplayer="$libs_mplayer -laudio"
5159 aomodules="sgi $aomodules"
5160 else
5161 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5162 noaomodules="sgi $noaomodules"
5164 echores "$_sgiaudio"
5165 fi #if irix
5168 if os2 ; then
5169 echocheck "KAI (UNIAUD/DART)"
5170 if test "$_kai" = auto; then
5171 _kai=no;
5172 header_check_broken os2.h kai.h -lkai && _kai=yes
5174 if test "$_kai" = yes ; then
5175 def_kai='#define CONFIG_KAI 1'
5176 libs_mplayer="$libs_mplayer -lkai"
5177 aomodules="kai $aomodules"
5178 else
5179 def_kai='#undef CONFIG_KAI'
5180 noaomodules="kai $noaomodules"
5182 echores "$_kai"
5184 echocheck "DART"
5185 if test "$_dart" = auto; then
5186 _dart=no;
5187 header_check_broken os2.h dart.h -ldart && _dart=yes
5189 if test "$_dart" = yes ; then
5190 def_dart='#define CONFIG_DART 1'
5191 libs_mplayer="$libs_mplayer -ldart"
5192 aomodules="dart $aomodules"
5193 else
5194 def_dart='#undef CONFIG_DART'
5195 noaomodules="dart $noaomodules"
5197 echores "$_dart"
5198 fi #if os2
5201 # set default CD/DVD devices
5202 if win32 || os2 ; then
5203 default_cdrom_device="D:"
5204 elif darwin ; then
5205 default_cdrom_device="/dev/disk1"
5206 elif dragonfly ; then
5207 default_cdrom_device="/dev/cd0"
5208 elif freebsd ; then
5209 default_cdrom_device="/dev/acd0"
5210 elif openbsd ; then
5211 default_cdrom_device="/dev/rcd0c"
5212 elif sunos ; then
5213 default_cdrom_device="/vol/dev/aliases/cdrom0"
5214 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5215 # file system and the volfs service.
5216 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5217 elif amigaos ; then
5218 default_cdrom_device="a1ide.device:2"
5219 else
5220 default_cdrom_device="/dev/cdrom"
5223 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5224 default_dvd_device=$default_cdrom_device
5225 elif darwin ; then
5226 default_dvd_device="/dev/rdiskN"
5227 else
5228 default_dvd_device="/dev/dvd"
5232 echocheck "VCD support"
5233 if test "$_vcd" = auto; then
5234 _vcd=no
5235 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5236 _vcd=yes
5237 elif mingw32; then
5238 header_check ddk/ntddcdrm.h && _vcd=yes
5241 if test "$_vcd" = yes; then
5242 inputmodules="vcd $inputmodules"
5243 def_vcd='#define CONFIG_VCD 1'
5244 else
5245 def_vcd='#undef CONFIG_VCD'
5246 noinputmodules="vcd $noinputmodules"
5247 res_comment="not supported on this OS"
5249 echores "$_vcd"
5253 echocheck "Blu-ray support"
5254 if test "$_bluray" = auto ; then
5255 _bluray=no
5256 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5258 if test "$_bluray" = yes ; then
5259 def_bluray='#define CONFIG_LIBBLURAY 1'
5260 extra_ldflags="$extra_ldflags -lbluray"
5261 inputmodules="bluray $inputmodules"
5262 else
5263 def_bluray='#undef CONFIG_LIBBLURAY'
5264 noinputmodules="bluray $noinputmodules"
5266 echores "$_bluray"
5268 echocheck "dvdread"
5269 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5270 _dvdread_internal=no
5272 if test "$_dvdread_internal" = auto ; then
5273 _dvdread_internal=no
5274 _dvdread=no
5275 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5276 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5277 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5278 darwin || win32 || os2; then
5279 _dvdread_internal=yes
5280 _dvdread=yes
5281 extra_cflags="-Ilibdvdread4 $extra_cflags"
5283 elif test "$_dvdread" = auto ; then
5284 _dvdread=no
5285 if test "$_dl" = yes; then
5286 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5287 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5288 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5289 _dvdread=yes
5290 extra_cflags="$extra_cflags $_dvdreadcflags"
5291 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5292 res_comment="external"
5297 if test "$_dvdread_internal" = yes; then
5298 def_dvdread='#define CONFIG_DVDREAD 1'
5299 inputmodules="dvdread(internal) $inputmodules"
5300 _largefiles=yes
5301 res_comment="internal"
5302 elif test "$_dvdread" = yes; then
5303 def_dvdread='#define CONFIG_DVDREAD 1'
5304 _largefiles=yes
5305 extra_ldflags="$extra_ldflags -ldvdread"
5306 inputmodules="dvdread(external) $inputmodules"
5307 res_comment="external"
5308 else
5309 def_dvdread='#undef CONFIG_DVDREAD'
5310 noinputmodules="dvdread $noinputmodules"
5312 echores "$_dvdread"
5315 echocheck "internal libdvdcss"
5316 if test "$_libdvdcss_internal" = auto ; then
5317 _libdvdcss_internal=no
5318 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5319 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5321 if test "$_libdvdcss_internal" = yes ; then
5322 if linux || netbsd || openbsd || bsdos ; then
5323 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5324 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5325 elif freebsd || dragonfly ; then
5326 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5327 elif darwin ; then
5328 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5329 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5330 elif cygwin ; then
5331 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5332 elif beos ; then
5333 cflags_libdvdcss="-DSYS_BEOS"
5334 elif os2 ; then
5335 cflags_libdvdcss="-DSYS_OS2"
5337 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5338 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5339 inputmodules="libdvdcss(internal) $inputmodules"
5340 _largefiles=yes
5341 else
5342 noinputmodules="libdvdcss(internal) $noinputmodules"
5344 echores "$_libdvdcss_internal"
5347 echocheck "cdparanoia"
5348 if test "$_cdparanoia" = auto ; then
5349 cat > $TMPC <<EOF
5350 #include <cdda_interface.h>
5351 #include <cdda_paranoia.h>
5352 // This need a better test. How ?
5353 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5355 _cdparanoia=no
5356 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5357 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5358 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5359 done
5361 if test "$_cdparanoia" = yes ; then
5362 _cdda='yes'
5363 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5364 openbsd && extra_ldflags="$extra_ldflags -lutil"
5366 echores "$_cdparanoia"
5369 echocheck "libcdio"
5370 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5371 cat > $TMPC << EOF
5372 #include <stdio.h>
5373 #include <cdio/version.h>
5374 #include <cdio/cdda.h>
5375 #include <cdio/paranoia.h>
5376 int main(void) {
5377 void *test = cdda_verbose_set;
5378 printf("%s\n", CDIO_VERSION);
5379 return test == (void *)1;
5382 _libcdio=no
5383 for _ld_tmp in "" "-lwinmm" ; do
5384 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5385 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5386 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5387 done
5388 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5389 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5390 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5391 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5392 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5395 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5396 _cdda='yes'
5397 def_libcdio='#define CONFIG_LIBCDIO 1'
5398 def_havelibcdio='yes'
5399 else
5400 if test "$_cdparanoia" = yes ; then
5401 res_comment="using cdparanoia"
5403 def_libcdio='#undef CONFIG_LIBCDIO'
5404 def_havelibcdio='no'
5406 echores "$_libcdio"
5408 if test "$_cdda" = yes ; then
5409 test $_cddb = auto && test $networking = yes && _cddb=yes
5410 def_cdparanoia='#define CONFIG_CDDA 1'
5411 inputmodules="cdda $inputmodules"
5412 else
5413 def_cdparanoia='#undef CONFIG_CDDA'
5414 noinputmodules="cdda $noinputmodules"
5417 if test "$_cddb" = yes ; then
5418 def_cddb='#define CONFIG_CDDB 1'
5419 inputmodules="cddb $inputmodules"
5420 else
5421 _cddb=no
5422 def_cddb='#undef CONFIG_CDDB'
5423 noinputmodules="cddb $noinputmodules"
5426 echocheck "bitmap font support"
5427 if test "$_bitmap_font" = yes ; then
5428 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5429 else
5430 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5432 echores "$_bitmap_font"
5435 echocheck "freetype >= 2.0.9"
5437 # freetype depends on iconv
5438 if test "$_iconv" = no ; then
5439 _freetype=no
5440 res_comment="iconv support needed"
5443 if test "$_freetype" = auto ; then
5444 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5445 cat > $TMPC << EOF
5446 #include <stdio.h>
5447 #include <ft2build.h>
5448 #include FT_FREETYPE_H
5449 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5450 #error "Need FreeType 2.0.9 or newer"
5451 #endif
5452 int main(void) {
5453 FT_Library library;
5454 FT_Init_FreeType(&library);
5455 return 0;
5458 _freetype=no
5459 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5460 else
5461 _freetype=no
5464 if test "$_freetype" = yes ; then
5465 def_freetype='#define CONFIG_FREETYPE 1'
5466 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5467 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5468 else
5469 def_freetype='#undef CONFIG_FREETYPE'
5471 echores "$_freetype"
5473 if test "$_freetype" = no ; then
5474 _fontconfig=no
5475 res_comment="FreeType support needed"
5477 echocheck "fontconfig"
5478 if test "$_fontconfig" = auto ; then
5479 cat > $TMPC << EOF
5480 #include <stdio.h>
5481 #include <stdlib.h>
5482 #include <fontconfig/fontconfig.h>
5483 #if FC_VERSION < 20402
5484 #error At least version 2.4.2 of fontconfig required
5485 #endif
5486 int main(void) {
5487 int err = FcInit();
5488 if (err == FcFalse) {
5489 printf("Couldn't initialize fontconfig lib\n");
5490 exit(err);
5492 return 0;
5495 _fontconfig=no
5496 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5497 _ld_tmp="-lfontconfig $_ld_tmp"
5498 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5499 done
5500 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5501 _inc_tmp=$($_pkg_config --cflags fontconfig)
5502 _ld_tmp=$($_pkg_config --libs fontconfig)
5503 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5504 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5507 if test "$_fontconfig" = yes ; then
5508 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5509 else
5510 def_fontconfig='#undef CONFIG_FONTCONFIG'
5512 echores "$_fontconfig"
5515 echocheck "SSA/ASS support"
5516 if test "$_ass" = auto -o "$_ass" = yes ; then
5517 if $_pkg_config libass; then
5518 _ass=yes
5519 def_ass='#define CONFIG_ASS 1'
5520 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5521 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5522 else
5523 _ass=no
5524 def_ass='#undef CONFIG_ASS'
5526 else
5527 def_ass='#undef CONFIG_ASS'
5529 echores "$_ass"
5532 echocheck "fribidi with charsets"
5533 _inc_tmp=""
5534 _ld_tmp=""
5535 if test "$_fribidi" = auto ; then
5536 cat > $TMPC << EOF
5537 #include <stdlib.h>
5538 /* workaround for fribidi 0.10.4 and below */
5539 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5540 #include <fribidi/fribidi.h>
5541 int main(void) {
5542 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5543 exit(1);
5544 return 0;
5547 _fribidi=no
5548 _inc_tmp=""
5549 _ld_tmp="-lfribidi"
5550 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5551 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5552 test "$_fribidi" = no ; then
5553 _inc_tmp="$($_pkg_config --cflags)"
5554 _ld_tmp="$($_pkg_config --libs)"
5555 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5558 if test "$_fribidi" = yes ; then
5559 def_fribidi='#define CONFIG_FRIBIDI 1'
5560 extra_cflags="$extra_cflags $_inc_tmp"
5561 extra_ldflags="$extra_ldflags $_ld_tmp"
5562 else
5563 def_fribidi='#undef CONFIG_FRIBIDI'
5565 echores "$_fribidi"
5568 echocheck "ENCA"
5569 if test "$_enca" = auto ; then
5570 _enca=no
5571 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5573 if test "$_enca" = yes ; then
5574 def_enca='#define CONFIG_ENCA 1'
5575 extra_ldflags="$extra_ldflags -lenca"
5576 else
5577 def_enca='#undef CONFIG_ENCA'
5579 echores "$_enca"
5582 echocheck "zlib"
5583 _zlib=no
5584 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5585 if test "$_zlib" = yes ; then
5586 def_zlib='#define CONFIG_ZLIB 1'
5587 extra_ldflags="$extra_ldflags -lz"
5588 else
5589 def_zlib='#define CONFIG_ZLIB 0'
5591 echores "$_zlib"
5594 echocheck "RTC"
5595 if test "$_rtc" = auto ; then
5596 cat > $TMPC << EOF
5597 #include <sys/ioctl.h>
5598 #ifdef __linux__
5599 #include <linux/rtc.h>
5600 #else
5601 #include <rtc.h>
5602 #define RTC_PIE_ON RTCIO_PIE_ON
5603 #endif
5604 int main(void) { return RTC_PIE_ON; }
5606 _rtc=no
5607 cc_check && _rtc=yes
5608 ppc && _rtc=no
5610 if test "$_rtc" = yes ; then
5611 def_rtc='#define HAVE_RTC 1'
5612 else
5613 def_rtc='#undef HAVE_RTC'
5615 echores "$_rtc"
5618 echocheck "mad support"
5619 if test "$_mad" = auto ; then
5620 _mad=no
5621 header_check mad.h -lmad && _mad=yes
5623 if test "$_mad" = yes ; then
5624 def_mad='#define CONFIG_LIBMAD 1'
5625 extra_ldflags="$extra_ldflags -lmad"
5626 codecmodules="libmad $codecmodules"
5627 else
5628 def_mad='#undef CONFIG_LIBMAD'
5629 nocodecmodules="libmad $nocodecmodules"
5631 echores "$_mad"
5633 echocheck "OggVorbis support"
5634 if test "$_libvorbis" = auto; then
5635 _libvorbis=no
5636 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes && _tremor=no
5638 if test "$_tremor" = auto; then
5639 _tremor=no
5640 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes
5642 if test "$_tremor" = yes ; then
5643 _vorbis=yes
5644 def_vorbis='#define CONFIG_OGGVORBIS 1'
5645 def_tremor='#define CONFIG_TREMOR 1'
5646 codecmodules="tremor(external) $codecmodules"
5647 res_comment="external Tremor"
5648 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5649 elif test "$_libvorbis" = yes ; then
5650 _vorbis=yes
5651 def_vorbis='#define CONFIG_OGGVORBIS 1'
5652 codecmodules="libvorbis $codecmodules"
5653 res_comment="libvorbis"
5654 extra_ldflags="$extra_ldflags -lvorbis -logg"
5655 else
5656 _vorbis=no
5657 nocodecmodules="libvorbis $nocodecmodules"
5659 echores "$_vorbis"
5661 echocheck "libspeex (version >= 1.1 required)"
5662 if test "$_speex" = auto ; then
5663 _speex=no
5664 cat > $TMPC << EOF
5665 #include <stddef.h>
5666 #include <speex/speex.h>
5667 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5669 cc_check -lspeex $_ld_lm && _speex=yes
5671 if test "$_speex" = yes ; then
5672 def_speex='#define CONFIG_SPEEX 1'
5673 extra_ldflags="$extra_ldflags -lspeex"
5674 codecmodules="speex $codecmodules"
5675 else
5676 def_speex='#undef CONFIG_SPEEX'
5677 nocodecmodules="speex $nocodecmodules"
5679 echores "$_speex"
5681 echocheck "OggTheora support"
5682 if test "$_theora" = auto ; then
5683 _theora=no
5684 cat > $TMPC << EOF
5685 #include <theora/theora.h>
5686 #include <string.h>
5687 int main(void) {
5688 /* Theora is in flux, make sure that all interface routines and datatypes
5689 * exist and work the way we expect it, so we don't break MPlayer. */
5690 ogg_packet op;
5691 theora_comment tc;
5692 theora_info inf;
5693 theora_state st;
5694 yuv_buffer yuv;
5695 int r;
5696 double t;
5698 theora_info_init(&inf);
5699 theora_comment_init(&tc);
5701 return 0;
5703 /* we don't want to execute this kind of nonsense; just for making sure
5704 * that compilation works... */
5705 memset(&op, 0, sizeof(op));
5706 r = theora_decode_header(&inf, &tc, &op);
5707 r = theora_decode_init(&st, &inf);
5708 t = theora_granule_time(&st, op.granulepos);
5709 r = theora_decode_packetin(&st, &op);
5710 r = theora_decode_YUVout(&st, &yuv);
5711 theora_clear(&st);
5713 return 0;
5716 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5717 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5718 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5719 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5720 if test _theora = no; then
5721 _ld_theora="-ltheora -logg"
5722 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5725 if test "$_theora" = yes ; then
5726 def_theora='#define CONFIG_OGGTHEORA 1'
5727 codecmodules="libtheora $codecmodules"
5728 # when --enable-theora is forced, we'd better provide a probably sane
5729 # $_ld_theora than nothing
5730 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5731 else
5732 def_theora='#undef CONFIG_OGGTHEORA'
5733 nocodecmodules="libtheora $nocodecmodules"
5735 echores "$_theora"
5737 echocheck "mp3lib support"
5738 if test "$_mp3lib" = auto ; then
5739 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
5741 if test "$_mp3lib" = yes ; then
5742 def_mp3lib='#define CONFIG_MP3LIB 1'
5743 codecmodules="mp3lib(internal) $codecmodules"
5744 else
5745 def_mp3lib='#undef CONFIG_MP3LIB'
5746 nocodecmodules="mp3lib(internal) $nocodecmodules"
5748 echores "$_mp3lib"
5750 # Any version of libmpg123 shall be fine.
5751 echocheck "mpg123 support"
5752 def_mpg123='#undef CONFIG_MPG123'
5753 if test "$_mpg123" = auto; then
5754 _mpg123=no
5755 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5757 if test "$_mpg123" = yes ; then
5758 def_mpg123='#define CONFIG_MPG123 1'
5759 codecmodules="mpg123 $codecmodules"
5760 else
5761 nocodecmodules="mpg123 $nocodecmodules"
5763 echores "$_mpg123"
5765 echocheck "liba52 support"
5766 def_liba52='#undef CONFIG_LIBA52'
5767 if test "$_liba52" = auto ; then
5768 _liba52=no
5769 cat > $TMPC << EOF
5770 #include <inttypes.h>
5771 #include <a52dec/a52.h>
5772 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5774 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5776 if test "$_liba52" = yes ; then
5777 def_liba52='#define CONFIG_LIBA52 1'
5778 codecmodules="liba52 $codecmodules"
5779 else
5780 nocodecmodules="liba52 $nocodecmodules"
5782 echores "$_liba52"
5784 echocheck "libdca support"
5785 if test "$_libdca" = auto ; then
5786 _libdca=no
5787 for _ld_dca in -ldca -ldts ; do
5788 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5789 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5790 done
5792 if test "$_libdca" = yes ; then
5793 def_libdca='#define CONFIG_LIBDCA 1'
5794 codecmodules="libdca $codecmodules"
5795 else
5796 def_libdca='#undef CONFIG_LIBDCA'
5797 nocodecmodules="libdca $nocodecmodules"
5799 echores "$_libdca"
5801 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5802 if test "$_musepack" = auto ; then
5803 _musepack=no
5804 cat > $TMPC << EOF
5805 #include <stddef.h>
5806 #include <mpcdec/mpcdec.h>
5807 int main(void) {
5808 mpc_streaminfo info;
5809 mpc_decoder decoder;
5810 mpc_decoder_set_streaminfo(&decoder, &info);
5811 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5812 return 0;
5815 cc_check -lmpcdec $_ld_lm && _musepack=yes
5817 if test "$_musepack" = yes ; then
5818 def_musepack='#define CONFIG_MUSEPACK 1'
5819 extra_ldflags="$extra_ldflags -lmpcdec"
5820 codecmodules="musepack $codecmodules"
5821 else
5822 def_musepack='#undef CONFIG_MUSEPACK'
5823 nocodecmodules="musepack $nocodecmodules"
5825 echores "$_musepack"
5828 echocheck "FAAD2 support"
5829 if test "$_faad" = auto ; then
5830 _faad=no
5831 cat > $TMPC << EOF
5832 #include <faad.h>
5833 #ifndef FAAD_MIN_STREAMSIZE
5834 #error Too old version
5835 #endif
5836 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5837 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5839 cc_check -lfaad $_ld_lm && _faad=yes
5842 def_faad='#undef CONFIG_FAAD'
5843 if test "$_faad" = yes ; then
5844 def_faad='#define CONFIG_FAAD 1'
5845 extra_ldflags="$extra_ldflags -lfaad"
5846 codecmodules="faad2 $codecmodules"
5847 else
5848 nocodecmodules="faad2 $nocodecmodules"
5850 echores "$_faad"
5853 echocheck "LADSPA plugin support"
5854 if test "$_ladspa" = auto ; then
5855 _ladspa=no
5856 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5858 if test "$_ladspa" = yes; then
5859 def_ladspa="#define CONFIG_LADSPA 1"
5860 else
5861 def_ladspa="#undef CONFIG_LADSPA"
5863 echores "$_ladspa"
5866 echocheck "libbs2b audio filter support"
5867 if test "$_libbs2b" = auto ; then
5868 cat > $TMPC <<EOF
5869 #include <bs2b.h>
5870 #if BS2B_VERSION_MAJOR < 3
5871 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5872 #endif
5873 int main(void) {
5874 t_bs2bdp filter;
5875 filter=bs2b_open();
5876 bs2b_close(filter);
5877 return 0;
5880 _libbs2b=no
5881 if $_pkg_config --exists libbs2b ; then
5882 _inc_tmp=$($_pkg_config --cflags libbs2b)
5883 _ld_tmp=$($_pkg_config --libs libbs2b)
5884 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5885 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5886 else
5887 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5888 -I/usr/local/include/bs2b ; do
5889 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5890 extra_ldflags="$extra_ldflags -lbs2b"
5891 extra_cflags="$extra_cflags $_inc_tmp"
5892 _libbs2b=yes
5893 break
5895 done
5898 def_libbs2b="#undef CONFIG_LIBBS2B"
5899 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5900 echores "$_libbs2b"
5903 if test -z "$_codecsdir" ; then
5904 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5905 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5906 if test -d "$dir" ; then
5907 _codecsdir="$dir"
5908 break;
5910 done
5912 # Fall back on default directory.
5913 if test -z "$_codecsdir" ; then
5914 _codecsdir="$_libdir/codecs"
5915 mingw32 || os2 && _codecsdir="codecs"
5919 echocheck "Win32 codecs"
5920 if test "$_win32dll" = auto ; then
5921 _win32dll=no
5922 if x86_32 && ! qnx; then
5923 _win32dll=yes
5926 if test "$_win32dll" = yes ; then
5927 def_win32dll='#define CONFIG_WIN32DLL 1'
5928 if ! win32 ; then
5929 def_win32_loader='#define WIN32_LOADER 1'
5930 _win32_emulation=yes
5931 else
5932 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5933 res_comment="using native windows"
5935 codecmodules="win32 $codecmodules"
5936 else
5937 def_win32dll='#undef CONFIG_WIN32DLL'
5938 def_win32_loader='#undef WIN32_LOADER'
5939 nocodecmodules="win32 $nocodecmodules"
5941 echores "$_win32dll"
5944 echocheck "XAnim codecs"
5945 if test "$_xanim" = auto ; then
5946 _xanim=no
5947 res_comment="dynamic loader support needed"
5948 if test "$_dl" = yes ; then
5949 _xanim=yes
5952 if test "$_xanim" = yes ; then
5953 def_xanim='#define CONFIG_XANIM 1'
5954 codecmodules="xanim $codecmodules"
5955 else
5956 def_xanim='#undef CONFIG_XANIM'
5957 nocodecmodules="xanim $nocodecmodules"
5959 echores "$_xanim"
5962 echocheck "RealPlayer codecs"
5963 if test "$_real" = auto ; then
5964 _real=no
5965 res_comment="dynamic loader support needed"
5966 if test "$_dl" = yes || test "$_win32dll" = yes &&
5967 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
5968 _real=yes
5971 if test "$_real" = yes ; then
5972 def_real='#define CONFIG_REALCODECS 1'
5973 codecmodules="real $codecmodules"
5974 else
5975 def_real='#undef CONFIG_REALCODECS'
5976 nocodecmodules="real $nocodecmodules"
5978 echores "$_real"
5981 echocheck "QuickTime codecs"
5982 _qtx_emulation=no
5983 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
5984 if test "$_qtx" = auto ; then
5985 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
5987 if test "$_qtx" = yes ; then
5988 def_qtx='#define CONFIG_QTX_CODECS 1'
5989 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
5990 codecmodules="qtx $codecmodules"
5991 darwin || win32 || _qtx_emulation=yes
5992 else
5993 def_qtx='#undef CONFIG_QTX_CODECS'
5994 nocodecmodules="qtx $nocodecmodules"
5996 echores "$_qtx"
5998 echocheck "Nemesi Streaming Media libraries"
5999 if test "$_nemesi" = auto && test "$networking" = yes ; then
6000 _nemesi=no
6001 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6002 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6003 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6004 _nemesi=yes
6007 if test "$_nemesi" = yes; then
6008 _native_rtsp=no
6009 def_nemesi='#define CONFIG_LIBNEMESI 1'
6010 inputmodules="nemesi $inputmodules"
6011 else
6012 _native_rtsp="$networking"
6013 _nemesi=no
6014 def_nemesi='#undef CONFIG_LIBNEMESI'
6015 noinputmodules="nemesi $noinputmodules"
6017 echores "$_nemesi"
6019 echocheck "LIVE555 Streaming Media libraries"
6020 if test "$_live" = auto && test "$networking" = yes ; then
6021 cat > $TMPCPP << EOF
6022 #include <liveMedia.hh>
6023 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6024 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6025 #endif
6026 int main(void) { return 0; }
6029 _live=no
6030 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
6031 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
6032 _livelibdir=$(echo $I| sed s/-I//) &&
6033 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6034 $_livelibdir/groupsock/libgroupsock.a \
6035 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6036 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6037 $extra_ldflags -lstdc++" \
6038 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6039 -I$_livelibdir/UsageEnvironment/include \
6040 -I$_livelibdir/BasicUsageEnvironment/include \
6041 -I$_livelibdir/groupsock/include" &&
6042 _live=yes && break
6043 done
6044 if test "$_live" != yes ; then
6045 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6046 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6047 _live_dist=yes
6051 if test "$_live" = yes && test "$networking" = yes; then
6052 test $_livelibdir && res_comment="using $_livelibdir"
6053 def_live='#define CONFIG_LIVE555 1'
6054 inputmodules="live555 $inputmodules"
6055 elif test "$_live_dist" = yes && test "$networking" = yes; then
6056 res_comment="using distribution version"
6057 _live="yes"
6058 def_live='#define CONFIG_LIVE555 1'
6059 extra_ldflags="$extra_ldflags $ld_tmp"
6060 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6061 inputmodules="live555 $inputmodules"
6062 else
6063 _live=no
6064 def_live='#undef CONFIG_LIVE555'
6065 noinputmodules="live555 $noinputmodules"
6067 echores "$_live"
6071 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6072 echocheck "FFmpeg ($all_ffmpeg_libs)"
6073 if test "$ffmpeg" = auto ; then
6074 ffmpeg=no
6075 if $_pkg_config --exists $all_ffmpeg_libs ; then
6076 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6077 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6078 extra_ldflags="$extra_ldflags $_ld_tmp"
6079 extra_cflags="$extra_cflags $inc_ffmpeg"
6080 ffmpeg=yes
6081 elif header_check libavutil/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6082 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil"
6083 ffmpeg=yes
6084 else
6085 die "Unable to find development files for some of the FFmpeg libraries above. Aborting. If you really mean to compile without FFmpeg support use --disable-ffmpeg."
6089 ffmpeg_eval_api=no
6090 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6091 if test "$ffmpeg" = yes; then
6092 def_ffmpeg='#define CONFIG_FFMPEG 1'
6093 codecmodules="ffmpeg $codecmodules"
6094 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6095 ffmpeg_eval_api=yes
6096 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6098 else
6099 def_ffmpeg='#undef CONFIG_FFMPEG'
6100 nocodecmodules="ffmpeg $nocodecmodules"
6102 echores "$ffmpeg"
6104 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6105 if ! test -z "$_ffmpeg_source" ; then
6106 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6111 echocheck "libdv-0.9.5+"
6112 if test "$_libdv" = auto ; then
6113 _libdv=no
6114 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6116 if test "$_libdv" = yes ; then
6117 def_libdv='#define CONFIG_LIBDV095 1'
6118 extra_ldflags="$extra_ldflags -ldv"
6119 codecmodules="libdv $codecmodules"
6120 else
6121 def_libdv='#undef CONFIG_LIBDV095'
6122 nocodecmodules="libdv $nocodecmodules"
6124 echores "$_libdv"
6127 echocheck "Xvid"
6128 if test "$_xvid" = auto ; then
6129 _xvid=no
6130 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6131 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6132 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6133 done
6136 if test "$_xvid" = yes ; then
6137 def_xvid='#define CONFIG_XVID4 1'
6138 codecmodules="xvid $codecmodules"
6139 else
6140 def_xvid='#undef CONFIG_XVID4'
6141 nocodecmodules="xvid $nocodecmodules"
6143 echores "$_xvid"
6146 echocheck "libnut"
6147 if test "$_libnut" = auto ; then
6148 _libnut=no
6149 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6152 if test "$_libnut" = yes ; then
6153 def_libnut='#define CONFIG_LIBNUT 1'
6154 extra_ldflags="$extra_ldflags -lnut"
6155 else
6156 def_libnut='#undef CONFIG_LIBNUT'
6158 echores "$_libnut"
6160 # These VO checks must be done after the FFmpeg one
6161 echocheck "/dev/mga_vid"
6162 if test "$_mga" = auto ; then
6163 _mga=no
6164 test -c /dev/mga_vid && _mga=yes
6166 if test "$_mga" = yes ; then
6167 def_mga='#define CONFIG_MGA 1'
6168 vomodules="mga $vomodules"
6169 else
6170 def_mga='#undef CONFIG_MGA'
6171 novomodules="mga $novomodules"
6173 echores "$_mga"
6176 echocheck "xmga"
6177 if test "$_xmga" = auto ; then
6178 _xmga=no
6179 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6181 if test "$_xmga" = yes ; then
6182 def_xmga='#define CONFIG_XMGA 1'
6183 vomodules="xmga $vomodules"
6184 else
6185 def_xmga='#undef CONFIG_XMGA'
6186 novomodules="xmga $novomodules"
6188 echores "$_xmga"
6191 echocheck "UnRAR executable"
6192 if test "$_unrar_exec" = auto ; then
6193 _unrar_exec="yes"
6194 mingw32 && _unrar_exec="no"
6196 if test "$_unrar_exec" = yes ; then
6197 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6198 else
6199 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6201 echores "$_unrar_exec"
6203 echocheck "TV interface"
6204 if test "$_tv" = yes ; then
6205 def_tv='#define CONFIG_TV 1'
6206 inputmodules="tv $inputmodules"
6207 else
6208 noinputmodules="tv $noinputmodules"
6209 def_tv='#undef CONFIG_TV'
6211 echores "$_tv"
6214 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6215 echocheck "*BSD BT848 bt8xx header"
6216 _ioctl_bt848_h=no
6217 for file in "machine/ioctl_bt848.h" \
6218 "dev/bktr/ioctl_bt848.h" \
6219 "dev/video/bktr/ioctl_bt848.h" \
6220 "dev/ic/bt8xx.h" ; do
6221 cat > $TMPC <<EOF
6222 #include <sys/types.h>
6223 #include <sys/ioctl.h>
6224 #include <$file>
6225 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6227 if cc_check ; then
6228 _ioctl_bt848_h=yes
6229 _ioctl_bt848_h_name="$file"
6230 break;
6232 done
6233 if test "$_ioctl_bt848_h" = yes ; then
6234 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6235 res_comment="using $_ioctl_bt848_h_name"
6236 else
6237 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6239 echores "$_ioctl_bt848_h"
6241 echocheck "*BSD ioctl_meteor.h"
6242 _ioctl_meteor_h=no
6243 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6244 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6245 _ioctl_meteor_h=yes && break
6246 done
6247 if test "$_ioctl_meteor_h" = yes ; then
6248 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6249 res_comment="using $ioctl_meteor_h_path"
6250 else
6251 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6253 echores "$_ioctl_meteor_h"
6255 echocheck "*BSD BrookTree 848 TV interface"
6256 if test "$_tv_bsdbt848" = auto ; then
6257 _tv_bsdbt848=no
6258 if test "$_tv" = yes ; then
6259 cat > $TMPC <<EOF
6260 #include <sys/types.h>
6261 $def_ioctl_meteor_h_name
6262 $def_ioctl_bt848_h_name
6263 #ifdef IOCTL_METEOR_H_NAME
6264 #include IOCTL_METEOR_H_NAME
6265 #endif
6266 #ifdef IOCTL_BT848_H_NAME
6267 #include IOCTL_BT848_H_NAME
6268 #endif
6269 int main(void) {
6270 ioctl(0, METEORSINPUT, 0);
6271 ioctl(0, TVTUNER_GETFREQ, 0);
6272 return 0;
6275 cc_check && _tv_bsdbt848=yes
6278 if test "$_tv_bsdbt848" = yes ; then
6279 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6280 inputmodules="tv-bsdbt848 $inputmodules"
6281 else
6282 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6283 noinputmodules="tv-bsdbt848 $noinputmodules"
6285 echores "$_tv_bsdbt848"
6286 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6289 echocheck "DirectShow TV interface"
6290 if test "$_tv_dshow" = auto ; then
6291 _tv_dshow=no
6292 if test "$_tv" = yes && win32 ; then
6293 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6296 if test "$_tv_dshow" = yes ; then
6297 inputmodules="tv-dshow $inputmodules"
6298 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6299 extra_ldflags="$extra_ldflags -lole32 -luuid"
6300 else
6301 noinputmodules="tv-dshow $noinputmodules"
6302 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6304 echores "$_tv_dshow"
6307 echocheck "Video 4 Linux TV interface"
6308 if test "$_tv_v4l1" = auto ; then
6309 _tv_v4l1=no
6310 if test "$_tv" = yes && linux ; then
6311 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6314 if test "$_tv_v4l1" = yes ; then
6315 _audio_input=yes
6316 _tv_v4l=yes
6317 def_tv_v4l='#define CONFIG_TV_V4L 1'
6318 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6319 inputmodules="tv-v4l $inputmodules"
6320 else
6321 noinputmodules="tv-v4l1 $noinputmodules"
6322 def_tv_v4l='#undef CONFIG_TV_V4L'
6324 echores "$_tv_v4l1"
6327 echocheck "Video 4 Linux 2 TV interface"
6328 if test "$_tv_v4l2" = auto ; then
6329 _tv_v4l2=no
6330 if test "$_tv" = yes && linux ; then
6331 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6334 if test "$_tv_v4l2" = yes ; then
6335 _audio_input=yes
6336 _tv_v4l=yes
6337 def_tv_v4l='#define CONFIG_TV_V4L 1'
6338 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6339 inputmodules="tv-v4l2 $inputmodules"
6340 else
6341 noinputmodules="tv-v4l2 $noinputmodules"
6342 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6344 echores "$_tv_v4l2"
6347 echocheck "Radio interface"
6348 if test "$_radio" = yes ; then
6349 def_radio='#define CONFIG_RADIO 1'
6350 inputmodules="radio $inputmodules"
6351 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6352 _radio_capture=no
6354 if test "$_radio_capture" = yes ; then
6355 _audio_input=yes
6356 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6357 else
6358 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6360 else
6361 noinputmodules="radio $noinputmodules"
6362 def_radio='#undef CONFIG_RADIO'
6363 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6364 _radio_capture=no
6366 echores "$_radio"
6367 echocheck "Capture for Radio interface"
6368 echores "$_radio_capture"
6370 echocheck "Video 4 Linux 2 Radio interface"
6371 if test "$_radio_v4l2" = auto ; then
6372 _radio_v4l2=no
6373 if test "$_radio" = yes && linux ; then
6374 header_check linux/videodev2.h && _radio_v4l2=yes
6377 if test "$_radio_v4l2" = yes ; then
6378 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6379 else
6380 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6382 echores "$_radio_v4l2"
6384 echocheck "Video 4 Linux Radio interface"
6385 if test "$_radio_v4l" = auto ; then
6386 _radio_v4l=no
6387 if test "$_radio" = yes && linux ; then
6388 header_check linux/videodev.h && _radio_v4l=yes
6391 if test "$_radio_v4l" = yes ; then
6392 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6393 else
6394 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6396 echores "$_radio_v4l"
6398 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6399 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6400 echocheck "*BSD BrookTree 848 Radio interface"
6401 _radio_bsdbt848=no
6402 cat > $TMPC <<EOF
6403 #include <sys/types.h>
6404 $def_ioctl_bt848_h_name
6405 #ifdef IOCTL_BT848_H_NAME
6406 #include IOCTL_BT848_H_NAME
6407 #endif
6408 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6410 cc_check && _radio_bsdbt848=yes
6411 echores "$_radio_bsdbt848"
6412 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6414 if test "$_radio_bsdbt848" = yes ; then
6415 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6416 else
6417 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6420 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6421 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6422 die "Radio driver requires BSD BT848, V4L or V4L2!"
6425 echocheck "Video 4 Linux 2 MPEG PVR interface"
6426 if test "$_pvr" = auto ; then
6427 _pvr=no
6428 if test "$_tv_v4l2" = yes && linux ; then
6429 cat > $TMPC <<EOF
6430 #include <sys/time.h>
6431 #include <linux/videodev2.h>
6432 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6434 cc_check && _pvr=yes
6437 if test "$_pvr" = yes ; then
6438 def_pvr='#define CONFIG_PVR 1'
6439 inputmodules="pvr $inputmodules"
6440 else
6441 noinputmodules="pvr $noinputmodules"
6442 def_pvr='#undef CONFIG_PVR'
6444 echores "$_pvr"
6447 echocheck "ftp"
6448 if test "$_ftp" = "auto" ; then
6449 test "$networking" = "yes" && ! beos && _ftp=yes
6451 if test "$_ftp" = yes ; then
6452 def_ftp='#define CONFIG_FTP 1'
6453 inputmodules="ftp $inputmodules"
6454 else
6455 noinputmodules="ftp $noinputmodules"
6456 def_ftp='#undef CONFIG_FTP'
6458 echores "$_ftp"
6460 echocheck "vstream client"
6461 if test "$_vstream" = auto ; then
6462 _vstream=no
6463 cat > $TMPC <<EOF
6464 #include <vstream-client.h>
6465 void vstream_error(const char *format, ... ) {}
6466 int main(void) { vstream_start(); return 0; }
6468 cc_check -lvstream-client && _vstream=yes
6470 if test "$_vstream" = yes ; then
6471 def_vstream='#define CONFIG_VSTREAM 1'
6472 inputmodules="vstream $inputmodules"
6473 extra_ldflags="$extra_ldflags -lvstream-client"
6474 else
6475 noinputmodules="vstream $noinputmodules"
6476 def_vstream='#undef CONFIG_VSTREAM'
6478 echores "$_vstream"
6481 echocheck "OSD menu"
6482 if test "$_menu" = yes ; then
6483 def_menu='#define CONFIG_MENU 1'
6484 test $_dvbin = "yes" && _menu_dvbin=yes
6485 else
6486 def_menu='#undef CONFIG_MENU'
6487 _menu_dvbin=no
6489 echores "$_menu"
6492 echocheck "Subtitles sorting"
6493 if test "$_sortsub" = yes ; then
6494 def_sortsub='#define CONFIG_SORTSUB 1'
6495 else
6496 def_sortsub='#undef CONFIG_SORTSUB'
6498 echores "$_sortsub"
6501 echocheck "XMMS inputplugin support"
6502 if test "$_xmms" = yes ; then
6503 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6504 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6505 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6506 else
6507 _xmmsplugindir=/usr/lib/xmms/Input
6508 _xmmslibdir=/usr/lib
6511 def_xmms='#define CONFIG_XMMS 1'
6512 if darwin ; then
6513 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6514 else
6515 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6517 else
6518 def_xmms='#undef CONFIG_XMMS'
6520 echores "$_xmms"
6522 if test "$_charset" != "noconv" ; then
6523 def_charset="#define MSG_CHARSET \"$_charset\""
6524 else
6525 def_charset="#undef MSG_CHARSET"
6526 _charset="UTF-8"
6529 #############################################################################
6531 echocheck "automatic gdb attach"
6532 if test "$_crash_debug" = yes ; then
6533 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6534 else
6535 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6536 _crash_debug=no
6538 echores "$_crash_debug"
6540 echocheck "compiler support for noexecstack"
6541 if cflag_check -Wl,-z,noexecstack ; then
6542 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6543 echores "yes"
6544 else
6545 echores "no"
6548 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6549 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6550 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6551 echores "yes"
6552 else
6553 echores "no"
6557 # Dynamic linking flags
6558 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6559 _ld_dl_dynamic=''
6560 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6561 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6562 _ld_dl_dynamic='-rdynamic'
6565 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6566 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6567 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6569 def_debug='#undef MP_DEBUG'
6570 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6573 echocheck "joystick"
6574 def_joystick='#undef CONFIG_JOYSTICK'
6575 if test "$_joystick" = yes ; then
6576 if linux || freebsd ; then
6577 # TODO add some check
6578 def_joystick='#define CONFIG_JOYSTICK 1'
6579 else
6580 _joystick="no"
6581 res_comment="unsupported under $system_name"
6584 echores "$_joystick"
6586 echocheck "lirc"
6587 if test "$_lirc" = auto ; then
6588 _lirc=no
6589 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6591 if test "$_lirc" = yes ; then
6592 def_lirc='#define CONFIG_LIRC 1'
6593 libs_mplayer="$libs_mplayer -llirc_client"
6594 else
6595 def_lirc='#undef CONFIG_LIRC'
6597 echores "$_lirc"
6599 echocheck "lircc"
6600 if test "$_lircc" = auto ; then
6601 _lircc=no
6602 header_check lirc/lircc.h -llircc && _lircc=yes
6604 if test "$_lircc" = yes ; then
6605 def_lircc='#define CONFIG_LIRCC 1'
6606 libs_mplayer="$libs_mplayer -llircc"
6607 else
6608 def_lircc='#undef CONFIG_LIRCC'
6610 echores "$_lircc"
6612 if arm; then
6613 # Detect maemo development platform libraries availability (http://www.maemo.org),
6614 # they are used when run on Nokia 770|8x0
6615 echocheck "maemo (Nokia 770|8x0)"
6616 if test "$_maemo" = auto ; then
6617 _maemo=no
6618 statement_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
6620 if test "$_maemo" = yes ; then
6621 def_maemo='#define CONFIG_MAEMO 1'
6622 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
6623 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
6624 else
6625 def_maemo='#undef CONFIG_MAEMO'
6627 echores "$_maemo"
6630 #############################################################################
6632 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6633 # the OMF format needs to come after the 'extern symbol prefix' check, which
6634 # uses nm.
6635 if os2 ; then
6636 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6639 #############################################################################
6640 # 64 bit file offsets?
6641 if test "$_largefiles" = yes || freebsd ; then
6642 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
6643 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
6644 # dvdread support requires this (for off64_t)
6645 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
6649 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6651 # This must be the last test to be performed. Any other tests following it
6652 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6653 # against libdvdread (to permit MPlayer to use its own copy of the library).
6654 # So any compilation using the flags added here but not linking against
6655 # libdvdread can fail.
6656 echocheck "DVD support (libdvdnav)"
6657 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6658 _dvdnav=no
6660 dvdnav_internal=no
6661 if test "$_dvdnav" = auto ; then
6662 if test "$_dvdread_internal" = yes ; then
6663 _dvdnav=yes
6664 dvdnav_internal=yes
6665 res_comment="internal"
6666 else
6667 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6670 if test "$_dvdnav" = auto ; then
6671 _dvdnav=no
6672 _dvdnavdir=$($_dvdnavconfig --cflags)
6673 _dvdnavlibs=$($_dvdnavconfig --libs)
6674 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6676 if test "$_dvdnav" = yes ; then
6677 _largefiles=yes
6678 def_dvdnav='#define CONFIG_DVDNAV 1'
6679 if test "$dvdnav_internal" = yes ; then
6680 cflags_libdvdnav="-Ilibdvdnav"
6681 inputmodules="dvdnav(internal) $inputmodules"
6682 else
6683 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6684 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6685 inputmodules="dvdnav $inputmodules"
6687 else
6688 def_dvdnav='#undef CONFIG_DVDNAV'
6689 noinputmodules="dvdnav $noinputmodules"
6691 echores "$_dvdnav"
6693 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6694 # Read dvdnav comment above.
6696 mak_enable () {
6697 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6698 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6699 nprefix=$3;
6700 for part in $list; do
6701 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6702 echo "${nprefix}_$part = yes"
6704 done
6707 #############################################################################
6708 echo "Creating config.mak"
6709 cat > config.mak << EOF
6710 # -------- Generated by configure -----------
6712 # Ensure that locale settings do not interfere with shell commands.
6713 export LC_ALL = C
6715 CONFIGURATION = $configuration
6717 CHARSET = $_charset
6718 DOC_LANGS = $language_doc
6719 DOC_LANG_ALL = $doc_lang_all
6720 MAN_LANGS = $language_man
6721 MAN_LANG_ALL = $man_lang_all
6722 MSG_LANGS = $language_msg
6723 MSG_LANG_ALL = $msg_lang_all
6725 prefix = \$(DESTDIR)$_prefix
6726 BINDIR = \$(DESTDIR)$_bindir
6727 DATADIR = \$(DESTDIR)$_datadir
6728 LIBDIR = \$(DESTDIR)$_libdir
6729 MANDIR = \$(DESTDIR)$_mandir
6730 CONFDIR = \$(DESTDIR)$_confdir
6731 LOCALEDIR = \$(DESTDIR)$_localedir
6733 AR = $_ar
6734 AS = $_cc
6735 CC = $_cc
6736 CXX = $_cc
6737 HOST_CC = $_host_cc
6738 INSTALL = $_install
6739 INSTALLSTRIP = $_install_strip
6740 WINDRES = $_windres
6742 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6743 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6744 DEPFLAGS = $DEPFLAGS
6746 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6747 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6748 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6749 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6750 CFLAGS_STACKREALIGN = $cflags_stackrealign
6752 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6753 EXTRALIBS_MPLAYER = $libs_mplayer
6755 GETCH = $_getch
6756 TIMER = $_timer
6758 EXESUF = $_exesuf
6759 EXESUFS_ALL = .exe
6761 ARCH = $arch
6762 $(mak_enable "$arch_all" "$arch" ARCH)
6763 $(mak_enable "$subarch_all" "$subarch" ARCH)
6764 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6766 MPLAYER = $_mplayer
6768 NEED_GETTIMEOFDAY = $need_gettimeofday
6769 NEED_GLOB = $need_glob
6770 NEED_MMAP = $need_mmap
6771 NEED_SETENV = $need_setenv
6772 NEED_SHMEM = $need_shmem
6773 NEED_STRSEP = $need_strsep
6774 NEED_SWAB = $need_swab
6775 NEED_VSSCANF = $need_vsscanf
6777 # features
6778 3DFX = $_3dfx
6779 AA = $_aa
6780 ALSA1X = $_alsa1x
6781 ALSA9 = $_alsa9
6782 ALSA5 = $_alsa5
6783 APPLE_IR = $_apple_ir
6784 APPLE_REMOTE = $_apple_remote
6785 ARTS = $_arts
6786 AUDIO_INPUT = $_audio_input
6787 BITMAP_FONT = $_bitmap_font
6788 BL = $_bl
6789 CACA = $_caca
6790 CDDA = $_cdda
6791 CDDB = $_cddb
6792 COREAUDIO = $_coreaudio
6793 COREVIDEO = $_corevideo
6794 DART = $_dart
6795 DGA = $_dga
6796 DIRECT3D = $_direct3d
6797 DIRECTFB = $_directfb
6798 DIRECTX = $_directx
6799 DVBIN = $_dvbin
6800 DVDNAV = $_dvdnav
6801 DVDNAV_INTERNAL = $dvdnav_internal
6802 DVDREAD = $_dvdread
6803 DVDREAD_INTERNAL = $_dvdread_internal
6804 DXR3 = $_dxr3
6805 ESD = $_esd
6806 FAAD = $_faad
6807 FASTMEMCPY = $_fastmemcpy
6808 FBDEV = $_fbdev
6809 FREETYPE = $_freetype
6810 FTP = $_ftp
6811 GIF = $_gif
6812 GGI = $_ggi
6813 GL = $_gl
6814 GL_WIN32 = $_gl_win32
6815 GL_X11 = $_gl_x11
6816 GL_SDL = $_gl_sdl
6817 MATRIXVIEW = $matrixview
6818 HAVE_POSIX_SELECT = $_posix_select
6819 HAVE_SYS_MMAN_H = $_mman
6820 IVTV = $_ivtv
6821 JACK = $_jack
6822 JOYSTICK = $_joystick
6823 JPEG = $_jpeg
6824 KAI = $_kai
6825 KVA = $_kva
6826 LADSPA = $_ladspa
6827 LIBA52 = $_liba52
6828 LIBASS = $_ass
6829 LIBBLURAY = $_bluray
6830 LIBBS2B = $_libbs2b
6831 LIBDCA = $_libdca
6832 LIBDV = $_libdv
6833 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6834 LIBMAD = $_mad
6835 LIBMENU = $_menu
6836 LIBMENU_DVBIN = $_menu_dvbin
6837 LIBNEMESI = $_nemesi
6838 LIBNUT = $_libnut
6839 LIBSMBCLIENT = $_smb
6840 LIBTHEORA = $_theora
6841 LIRC = $_lirc
6842 LIVE555 = $_live
6843 MACOSX_FINDER = $_macosx_finder
6844 MD5SUM = $_md5sum
6845 MGA = $_mga
6846 MNG = $_mng
6847 MP3LIB = $_mp3lib
6848 MPG123 = $_mpg123
6849 MUSEPACK = $_musepack
6850 NAS = $_nas
6851 NATIVE_RTSP = $_native_rtsp
6852 NETWORKING = $networking
6853 OPENAL = $_openal
6854 OSS = $_ossaudio
6855 PE_EXECUTABLE = $_pe_executable
6856 PNG = $_png
6857 PNM = $_pnm
6858 PRIORITY = $_priority
6859 PULSE = $_pulse
6860 PVR = $_pvr
6861 QTX_CODECS = $_qtx
6862 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6863 QTX_EMULATION = $_qtx_emulation
6864 QUARTZ = $_quartz
6865 RADIO=$_radio
6866 RADIO_CAPTURE=$_radio_capture
6867 REAL_CODECS = $_real
6868 S3FB = $_s3fb
6869 SDL = $_sdl
6870 SPEEX = $_speex
6871 STREAM_CACHE = $_stream_cache
6872 SGIAUDIO = $_sgiaudio
6873 SUNAUDIO = $_sunaudio
6874 SVGA = $_svga
6875 TDFXFB = $_tdfxfb
6876 TDFXVID = $_tdfxvid
6877 TGA = $_tga
6878 TV = $_tv
6879 TV_BSDBT848 = $_tv_bsdbt848
6880 TV_DSHOW = $_tv_dshow
6881 TV_V4L = $_tv_v4l
6882 TV_V4L1 = $_tv_v4l1
6883 TV_V4L2 = $_tv_v4l2
6884 UNRAR_EXEC = $_unrar_exec
6885 V4L2 = $_v4l2
6886 VCD = $_vcd
6887 VDPAU = $_vdpau
6888 VESA = $_vesa
6889 VORBIS = $_vorbis
6890 VSTREAM = $_vstream
6891 WII = $_wii
6892 WIN32DLL = $_win32dll
6893 WIN32WAVEOUT = $_win32waveout
6894 WIN32_EMULATION = $_win32_emulation
6895 X11 = $_x11
6896 XANIM_CODECS = $_xanim
6897 XMGA = $_xmga
6898 XMMS_PLUGINS = $_xmms
6899 XV = $_xv
6900 XVID4 = $_xvid
6901 XVMC = $_xvmc
6902 XVR100 = $_xvr100
6903 YUV4MPEG = $_yuv4mpeg
6905 # FFmpeg
6906 FFMPEG = $ffmpeg
6907 FFMPEG_EVAL_API = $ffmpeg_eval_api
6908 FFMPEG_INTERNALS = $ffmpeg_internals
6909 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6911 RANLIB = $_ranlib
6912 YASM = $_yasm
6913 YASMFLAGS = $YASMFLAGS
6915 CONFIG_VDPAU = $_vdpau
6916 CONFIG_XVMC = $_xvmc
6917 CONFIG_ZLIB = $_zlib
6919 HAVE_PTHREADS = $_pthreads
6920 HAVE_SHM = $_shm
6921 HAVE_W32THREADS = $_w32threads
6922 HAVE_YASM = $have_yasm
6926 #############################################################################
6928 ff_config_enable () {
6929 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6930 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6931 _nprefix=$3;
6932 test -z "$_nprefix" && _nprefix='CONFIG'
6933 for part in $list; do
6934 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6935 echo "#define ${_nprefix}_$part 1"
6936 else
6937 echo "#define ${_nprefix}_$part 0"
6939 done
6942 echo "Creating config.h"
6943 cat > $TMPH << EOF
6944 /*----------------------------------------------------------------------------
6945 ** This file has been automatically generated by configure any changes in it
6946 ** will be lost when you run configure again.
6947 ** Instead of modifying definitions here, use the --enable/--disable options
6948 ** of the configure script! See ./configure --help for details.
6949 *---------------------------------------------------------------------------*/
6951 #ifndef MPLAYER_CONFIG_H
6952 #define MPLAYER_CONFIG_H
6954 /* Undefine this if you do not want to select mono audio (left or right)
6955 with a stereo MPEG layer 2/3 audio stream. The command line option
6956 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
6957 right-only), with 0 being the default.
6959 #define CONFIG_FAKE_MONO 1
6961 /* set up audio OUTBURST. Do not change this! */
6962 #define OUTBURST 512
6964 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
6965 #undef FAST_OSD
6966 #undef FAST_OSD_TABLE
6970 #define CONFIGURATION "$configuration"
6972 #define MPLAYER_DATADIR "$_datadir"
6973 #define MPLAYER_CONFDIR "$_confdir"
6974 #define MPLAYER_LIBDIR "$_libdir"
6975 #define MPLAYER_LOCALEDIR "$_localedir"
6977 $def_translation
6979 /* definitions needed by included libraries */
6980 #define HAVE_INTTYPES_H 1
6981 /* libdvdcss */
6982 #define HAVE_ERRNO_H 1
6983 /* libdvdcss + libdvdread */
6984 #define HAVE_LIMITS_H 1
6985 /* libdvdcss */
6986 #define HAVE_UNISTD_H 1
6987 /* libdvdread */
6988 #define STDC_HEADERS 1
6989 #define HAVE_MEMCPY 1
6990 /* libdvdnav */
6991 #define READ_CACHE_TRACE 0
6992 /* libdvdread */
6993 #define HAVE_DLFCN_H 1
6994 $def_dvdcss
6997 /* system headers */
6998 $def_alloca_h
6999 $def_alsa_asoundlib_h
7000 $def_altivec_h
7001 $def_malloc_h
7002 $def_mman_h
7003 $def_mman_has_map_failed
7004 $def_soundcard_h
7005 $def_sys_asoundlib_h
7006 $def_sys_soundcard_h
7007 $def_sys_sysinfo_h
7008 $def_termios_h
7009 $def_termios_sys_h
7010 $def_winsock2_h
7013 /* system functions */
7014 $def_gethostbyname2
7015 $def_gettimeofday
7016 $def_glob
7017 $def_langinfo
7018 $def_lrintf
7019 $def_map_memalign
7020 $def_memalign
7021 $def_nanosleep
7022 $def_posix_select
7023 $def_select
7024 $def_setenv
7025 $def_setmode
7026 $def_shm
7027 $def_strsep
7028 $def_swab
7029 $def_sysi86
7030 $def_sysi86_iv
7031 $def_termcap
7032 $def_termios
7033 $def_vsscanf
7036 /* system-specific features */
7037 $def_asmalign_pot
7038 $def_builtin_expect
7039 $def_dl
7040 $def_dos_paths
7041 $def_extern_asm
7042 $def_extern_prefix
7043 $def_iconv
7044 $def_kstat
7045 $def_macosx_bundle
7046 $def_macosx_finder
7047 $def_maemo
7048 $def_named_asm_args
7049 $def_priority
7050 $def_quicktime
7051 $def_restrict_keyword
7052 $def_rtc
7053 $def_unrar_exec
7056 /* configurable options */
7057 $def_charset
7058 $def_crash_debug
7059 $def_debug
7060 $def_dynamic_plugins
7061 $def_fastmemcpy
7062 $def_menu
7063 $def_runtime_cpudetection
7064 $def_sighandler
7065 $def_sortsub
7066 $def_stream_cache
7067 $def_pthread_cache
7070 /* CPU stuff */
7071 #define __CPU__ $iproc
7072 $def_ebx_available
7073 $def_words_endian
7074 $def_bigendian
7075 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7076 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7077 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7080 /* Blu-ray/DVD/VCD/CD */
7081 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7082 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7083 $def_bluray
7084 $def_bsdi_dvd
7085 $def_cddb
7086 $def_cdio
7087 $def_cdparanoia
7088 $def_cdrom
7089 $def_dvd
7090 $def_dvd_bsd
7091 $def_dvd_darwin
7092 $def_dvd_linux
7093 $def_dvd_openbsd
7094 $def_dvdio
7095 $def_dvdnav
7096 $def_dvdread
7097 $def_hpux_scsi_h
7098 $def_libcdio
7099 $def_sol_scsi_h
7100 $def_vcd
7103 /* codec libraries */
7104 $def_faad
7105 $def_liba52
7106 $def_libdca
7107 $def_libdv
7108 $def_mad
7109 $def_mp3lib
7110 $def_mpg123
7111 $def_musepack
7112 $def_speex
7113 $def_theora
7114 $def_tremor
7115 $def_vorbis
7116 $def_xvid
7117 $def_zlib
7119 $def_libnut
7122 /* binary codecs */
7123 $def_qtx
7124 $def_qtx_win32
7125 $def_real
7126 $def_win32_loader
7127 $def_win32dll
7128 $def_xanim
7129 $def_xmms
7130 #define BINARY_CODECS_PATH "$_codecsdir"
7131 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7134 /* Audio output drivers */
7135 $def_alsa
7136 $def_alsa1x
7137 $def_alsa5
7138 $def_alsa9
7139 $def_arts
7140 $def_coreaudio
7141 $def_dart
7142 $def_esd
7143 $def_esd_latency
7144 $def_jack
7145 $def_kai
7146 $def_nas
7147 $def_openal
7148 $def_openal_h
7149 $def_ossaudio
7150 $def_ossaudio_devdsp
7151 $def_ossaudio_devmixer
7152 $def_pulse
7153 $def_sgiaudio
7154 $def_sunaudio
7155 $def_win32waveout
7157 $def_ladspa
7158 $def_libbs2b
7161 /* input */
7162 $def_apple_ir
7163 $def_apple_remote
7164 $def_ioctl_bt848_h_name
7165 $def_ioctl_meteor_h_name
7166 $def_joystick
7167 $def_lirc
7168 $def_lircc
7169 $def_pvr
7170 $def_radio
7171 $def_radio_bsdbt848
7172 $def_radio_capture
7173 $def_radio_v4l
7174 $def_radio_v4l2
7175 $def_tv
7176 $def_tv_bsdbt848
7177 $def_tv_dshow
7178 $def_tv_v4l
7179 $def_tv_v4l1
7180 $def_tv_v4l2
7183 /* font stuff */
7184 $def_ass
7185 $def_bitmap_font
7186 $def_enca
7187 $def_fontconfig
7188 $def_freetype
7189 $def_fribidi
7192 /* networking */
7193 $def_closesocket
7194 $def_ftp
7195 $def_inet6
7196 $def_inet_aton
7197 $def_inet_pton
7198 $def_live
7199 $def_nemesi
7200 $def_networking
7201 $def_smb
7202 $def_socklen_t
7203 $def_vstream
7206 /* libvo options */
7207 $def_3dfx
7208 $def_aa
7209 $def_bl
7210 $def_caca
7211 $def_corevideo
7212 $def_dga
7213 $def_dga1
7214 $def_dga2
7215 $def_direct3d
7216 $def_directfb
7217 $def_directx
7218 $def_dvb
7219 $def_dvbin
7220 $def_dxr3
7221 $def_fbdev
7222 $def_ggi
7223 $def_ggiwmh
7224 $def_gif
7225 $def_gif_4
7226 $def_gif_tvt_hack
7227 $def_gl
7228 $def_gl_win32
7229 $def_gl_x11
7230 $def_gl_sdl
7231 $def_matrixview
7232 $def_ivtv
7233 $def_jpeg
7234 $def_kva
7235 $def_md5sum
7236 $def_mga
7237 $def_mng
7238 $def_png
7239 $def_pnm
7240 $def_quartz
7241 $def_s3fb
7242 $def_sdl
7243 $def_sdl_sdl_h
7244 $def_svga
7245 $def_tdfxfb
7246 $def_tdfxvid
7247 $def_tga
7248 $def_v4l2
7249 $def_vdpau
7250 $def_vesa
7251 $def_vm
7252 $def_wii
7253 $def_x11
7254 $def_xdpms
7255 $def_xf86keysym
7256 $def_xinerama
7257 $def_xmga
7258 $def_xss
7259 $def_xv
7260 $def_xvmc
7261 $def_xvr100
7262 $def_yuv4mpeg
7265 /* FFmpeg */
7266 $def_ffmpeg
7267 $def_ffmpeg_eval_api
7268 $def_ffmpeg_internals
7270 $def_arpa_inet_h
7271 $def_bswap
7272 $def_dcbzl
7273 $def_exp2
7274 $def_exp2f
7275 $def_fast_64bit
7276 $def_fast_unaligned
7277 $def_llrint
7278 $def_log2
7279 $def_log2f
7280 $def_lrint
7281 $def_memalign_hack
7282 $def_mkstemp
7283 $def_posix_memalign
7284 $def_pthreads
7285 $def_round
7286 $def_roundf
7287 $def_ten_operands
7288 $def_threads
7289 $def_truncf
7290 $def_xform_asm
7291 $def_yasm
7293 #define HAVE_INLINE_ASM 1
7295 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7296 #ifndef MP_DEBUG
7297 #define HAVE_EBP_AVAILABLE 1
7298 #else
7299 #define HAVE_EBP_AVAILABLE 0
7300 #endif
7302 #endif /* MPLAYER_CONFIG_H */
7305 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7306 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7308 #############################################################################
7310 ./version.sh `$_cc -dumpversion`
7312 cat << EOF
7314 Config files successfully generated by ./configure $configuration !
7316 Install prefix: $_prefix
7317 Data directory: $_datadir
7318 Config direct.: $_confdir
7320 Byte order: $_byte_order
7321 Optimizing for: $_optimizing
7323 Languages:
7324 Messages (in addition to English): $language_msg
7325 Manual pages: $language_man
7326 Documentation: $language_doc
7328 Enabled optional drivers:
7329 Input: $inputmodules
7330 Codecs: $codecmodules
7331 Audio output: $aomodules
7332 Video output: $vomodules
7334 Disabled optional drivers:
7335 Input: $noinputmodules
7336 Codecs: $nocodecmodules
7337 Audio output: $noaomodules
7338 Video output: $novomodules
7340 'config.h' and 'config.mak' contain your configuration options.
7341 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7342 compile *** DO NOT REPORT BUGS if you tweak these files ***
7344 'make' will now compile MPlayer and 'make install' will install it.
7345 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7350 if test "$_mtrr" = yes ; then
7351 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7352 echo
7355 if ! x86_32; then
7356 cat <<EOF
7357 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7358 operating system ($system_name). You may encounter a few files that cannot
7359 be played due to missing open source video/audio codec support.
7365 cat <<EOF
7366 Check $TMPLOG if you wonder why an autodetection failed (make sure
7367 development headers/packages are installed).
7369 NOTE: The --enable-* parameters unconditionally force options on, completely
7370 skipping autodetection. This behavior is unlike what you may be used to from
7371 autoconf-based configure scripts that can decide to override you. This greater
7372 level of control comes at a price. You may have to provide the correct compiler
7373 and linker flags yourself.
7374 If you used one of these options (except --enable-menu and similar ones that
7375 turn on internal features) and experience a compilation or linking failure,
7376 make sure you have passed the necessary compiler/linker flags to configure.
7378 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7382 if test "$warn_cflags" = yes; then
7383 cat <<EOF
7385 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7386 but:
7388 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7390 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7391 To do so, execute 'CFLAGS= ./configure <options>'
7396 # Last move:
7397 rm -rf "$mplayer_tmpdir"