libmpeg2: drop libmpeg2 support
[mplayer/greg.git] / configure
blobc51ed2fe3d98caee47cf03ca6a737f7229805e34
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 --enable-liblzo enable liblzo support [autodetect]
362 --disable-win32dll disable Win32 DLL support [autodetect]
363 --disable-qtx disable QuickTime codecs support [enabled]
364 --disable-xanim disable XAnim codecs support [enabled]
365 --disable-real disable RealPlayer codecs support [enabled]
366 --disable-xvid disable Xvid [autodetect]
367 --disable-libnut disable libnut [autodetect]
368 --disable-ffmpeg disable FFmpeg [autodetect]
369 --disable-tremor-internal disable internal Tremor [enabled]
370 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
371 --enable-tremor enable external Tremor [autodetect]
372 --disable-libvorbis disable libvorbis support [autodetect]
373 --disable-speex disable Speex support [autodetect]
374 --enable-theora enable OggTheora libraries [autodetect]
375 --enable-faad enable FAAD2 (AAC) [autodetect]
376 --disable-ladspa disable LADSPA plugin support [autodetect]
377 --disable-libbs2b disable libbs2b audio filter support [autodetect]
378 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
379 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
380 --disable-mad disable libmad (MPEG audio) support [autodetect]
381 --enable-xmms enable XMMS input plugin support [disabled]
382 --enable-libdca enable libdca support [autodetect]
383 --disable-mp3lib disable builtin mp3lib [autodetect]
384 --disable-liba52 disable liba52 [autodetect]
385 --disable-musepack disable musepack support [autodetect]
387 Video output:
388 --enable-gl enable OpenGL video output [autodetect]
389 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
390 --enable-dga2 enable DGA 2 support [autodetect]
391 --enable-dga1 enable DGA 1 support [autodetect]
392 --enable-vesa enable VESA video output [autodetect]
393 --enable-svga enable SVGAlib video output [autodetect]
394 --enable-sdl enable SDL video output [autodetect]
395 --enable-kva enable KVA video output [autodetect]
396 --enable-aa enable AAlib video output [autodetect]
397 --enable-caca enable CACA video output [autodetect]
398 --enable-ggi enable GGI video output [autodetect]
399 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
400 --enable-direct3d enable Direct3D video output [autodetect]
401 --enable-directx enable DirectX video output [autodetect]
402 --enable-dxr3 enable DXR3/H+ video output [autodetect]
403 --enable-ivtv enable IVTV TV-Out video output [autodetect]
404 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
405 --enable-dvb enable DVB video output [autodetect]
406 --enable-mga enable mga_vid video output [autodetect]
407 --enable-xmga enable mga_vid X11 video output [autodetect]
408 --enable-xv enable Xv video output [autodetect]
409 --enable-xvmc enable XvMC acceleration [disable]
410 --enable-vdpau enable VDPAU acceleration [autodetect]
411 --enable-vm enable XF86VidMode support [autodetect]
412 --enable-xinerama enable Xinerama support [autodetect]
413 --enable-x11 enable X11 video output [autodetect]
414 --enable-xshape enable XShape support [autodetect]
415 --disable-xss disable screensaver support via xss [autodetect]
416 --enable-fbdev enable FBDev video output [autodetect]
417 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
418 --enable-tdfxfb enable tdfxfb video output [disable]
419 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
420 --enable-wii enable Nintendo Wii/GameCube video output [disable]
421 --enable-directfb enable DirectFB video output [autodetect]
422 --enable-bl enable Blinkenlights video output [disable]
423 --enable-tdfxvid enable tdfx_vid video output [disable]
424 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
425 --disable-tga disable Targa video output [enable]
426 --disable-pnm disable PNM video output [enable]
427 --disable-md5sum disable md5sum video output [enable]
428 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
429 --disable-corevideo disable CoreVideo video output [autodetect]
430 --disable-quartz disable Quartz video output [autodetect]
432 Audio output:
433 --disable-alsa disable ALSA audio output [autodetect]
434 --disable-ossaudio disable OSS audio output [autodetect]
435 --disable-arts disable aRts audio output [autodetect]
436 --disable-esd disable esd audio output [autodetect]
437 --disable-pulse disable Pulseaudio audio output [autodetect]
438 --disable-jack disable JACK audio output [autodetect]
439 --enable-openal enable OpenAL audio output [disable]
440 --disable-nas disable NAS audio output [autodetect]
441 --disable-sgiaudio disable SGI audio output [autodetect]
442 --disable-sunaudio disable Sun audio output [autodetect]
443 --disable-kai disable KAI audio output [autodetect]
444 --disable-dart disable DART audio output [autodetect]
445 --disable-win32waveout disable Windows waveout audio output [autodetect]
446 --disable-coreaudio disable CoreAudio audio output [autodetect]
447 --disable-select disable using select() on the audio device [enable]
449 Language options:
450 --enable-translation enable support for translated output [disable]
451 --charset=charset convert the console messages to this character set
452 --language-doc=lang language to use for the documentation [en]
453 --language-man=lang language to use for the man pages [en]
454 --language-msg=lang extra languages for program messages [all]
455 --language=lang default language to use [en]
456 Specific options override --language. You can pass a list of languages separated
457 by whitespace or commas instead of a single language. Nonexisting translations
458 will be dropped from each list. All translations available in the list will be
459 installed. The value "all" will activate all translations. The LINGUAS
460 environment variable is honored. In all cases the fallback is English.
461 The program always supports English-language output; additional message
462 languages are only installed if --enable-translation is also specified.
463 Available values for --language-doc are: all $doc_lang_all
464 Available values for --language-man are: all $man_lang_all
465 Available values for --language-msg are: all $msg_lang_all
467 Miscellaneous options:
468 --enable-runtime-cpudetection enable runtime CPU detection [disable]
469 --enable-cross-compile enable cross-compilation [autodetect]
470 --cc=COMPILER C compiler to build MPlayer [gcc]
471 --host-cc=COMPILER C compiler for tools needed while building [gcc]
472 --as=ASSEMBLER assembler to build MPlayer [as]
473 --nm=NM nm tool to build MPlayer [nm]
474 --yasm=YASM Yasm assembler to build MPlayer [yasm]
475 --ar=AR librarian to build MPlayer [ar]
476 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
477 --windres=WINDRES windres to build MPlayer [windres]
478 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
479 --enable-static build a statically linked binary
480 --with-install=PATH path to a custom install program
482 Advanced options:
483 --enable-mmx enable MMX [autodetect]
484 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
485 --enable-3dnow enable 3DNow! [autodetect]
486 --enable-3dnowext enable extended 3DNow! [autodetect]
487 --enable-sse enable SSE [autodetect]
488 --enable-sse2 enable SSE2 [autodetect]
489 --enable-ssse3 enable SSSE3 [autodetect]
490 --enable-shm enable shm [autodetect]
491 --enable-altivec enable AltiVec (PowerPC) [autodetect]
492 --enable-armv5te enable DSP extensions (ARM) [autodetect]
493 --enable-armv6 enable ARMv6 (ARM) [autodetect]
494 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
495 --enable-armvfp enable ARM VFP (ARM) [autodetect]
496 --enable-neon enable NEON (ARM) [autodetect]
497 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
498 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
499 --enable-big-endian force byte order to big-endian [autodetect]
500 --enable-debug[=1-3] compile-in debugging information [disable]
501 --enable-profile compile-in profiling information [disable]
502 --disable-sighandler disable sighandler for crashes [enable]
503 --enable-crash-debug enable automatic gdb attach on crash [disable]
504 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
505 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
507 Use these options if autodetection fails:
508 --extra-cflags=FLAGS extra CFLAGS
509 --extra-ldflags=FLAGS extra LDFLAGS
510 --extra-libs=FLAGS extra linker flags
511 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
512 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
514 --with-freetype-config=PATH path to freetype-config
515 --with-glib-config=PATH path to glib*-config
516 --with-gtk-config=PATH path to gtk*-config
517 --with-sdl-config=PATH path to sdl*-config
518 --with-dvdnav-config=PATH path to dvdnav-config
519 --with-dvdread-config=PATH path to dvdread-config
521 This configure script is NOT autoconf-based, even though its output is similar.
522 It will try to autodetect all configuration options. If you --enable an option
523 it will be forcefully turned on, skipping autodetection. This can break
524 compilation, so you need to know what you are doing.
526 exit 0
527 } #show_help()
529 # GOTCHA: the variables below defines the default behavior for autodetection
530 # and have - unless stated otherwise - at least 2 states : yes no
531 # If autodetection is available then the third state is: auto
532 _mmx=auto
533 _3dnow=auto
534 _3dnowext=auto
535 _mmxext=auto
536 _sse=auto
537 _sse2=auto
538 _ssse3=auto
539 _cmov=auto
540 _fast_cmov=auto
541 _fast_clz=auto
542 _armv5te=auto
543 _armv6=auto
544 _armv6t2=auto
545 _armvfp=auto
546 neon=auto
547 _iwmmxt=auto
548 _mtrr=auto
549 _altivec=auto
550 _install=install
551 _ranlib=ranlib
552 _windres=windres
553 _cc=cc
554 _ar=ar
555 test "$CC" && _cc="$CC"
556 _as=auto
557 _nm=auto
558 _yasm=yasm
559 _runtime_cpudetection=no
560 _cross_compile=auto
561 _prefix="/usr/local"
562 ffmpeg=auto
563 ffmpeg_internals=no
564 _mplayer=yes
565 _x11=auto
566 _xshape=auto
567 _xss=auto
568 _dga1=auto
569 _dga2=auto
570 _xv=auto
571 _xvmc=no #auto when complete
572 _vdpau=auto
573 _sdl=auto
574 _kva=auto
575 _direct3d=auto
576 _directx=auto
577 _win32waveout=auto
578 _nas=auto
579 _png=auto
580 _mng=auto
581 _jpeg=auto
582 _pnm=yes
583 _md5sum=yes
584 _yuv4mpeg=yes
585 _gif=auto
586 _gl=auto
587 matrixview=yes
588 _ggi=auto
589 _ggiwmh=auto
590 _aa=auto
591 _caca=auto
592 _svga=auto
593 _vesa=auto
594 _fbdev=auto
595 _dvb=auto
596 _dxr3=auto
597 _ivtv=auto
598 _v4l2=auto
599 _iconv=auto
600 _langinfo=auto
601 _rtc=auto
602 _ossaudio=auto
603 _arts=auto
604 _esd=auto
605 _pulse=auto
606 _jack=auto
607 _kai=auto
608 _dart=auto
609 _openal=no
610 _libcdio=auto
611 _liblzo=auto
612 _mad=auto
613 _tremor=auto
614 _tremor_internal=yes
615 _tremor_low=no
616 _libvorbis=auto
617 _speex=auto
618 _theora=auto
619 _mpg123=auto
620 _mp3lib=auto
621 _liba52=auto
622 _libdca=auto
623 _faad=auto
624 _ladspa=auto
625 _libbs2b=auto
626 _xmms=no
627 _vcd=auto
628 _bluray=auto
629 _dvdnav=auto
630 _dvdnavconfig=dvdnav-config
631 _dvdreadconfig=dvdread-config
632 _dvdread=auto
633 _dvdread_internal=auto
634 _libdvdcss_internal=auto
635 _xanim=auto
636 _real=auto
637 _live=auto
638 _nemesi=auto
639 _native_rtsp=yes
640 _xinerama=auto
641 _mga=auto
642 _xmga=auto
643 _vm=auto
644 _xf86keysym=auto
645 _sgiaudio=auto
646 _sunaudio=auto
647 _alsa=auto
648 _fastmemcpy=yes
649 _unrar_exec=auto
650 _win32dll=auto
651 _select=yes
652 _radio=no
653 _radio_capture=no
654 _radio_v4l=auto
655 _radio_v4l2=auto
656 _radio_bsdbt848=auto
657 _tv=yes
658 _tv_v4l1=auto
659 _tv_v4l2=auto
660 _tv_bsdbt848=auto
661 _tv_dshow=auto
662 _pvr=auto
663 networking=yes
664 _winsock2_h=auto
665 _smb=auto
666 _joystick=no
667 _xvid=auto
668 _libnut=auto
669 _lirc=auto
670 _lircc=auto
671 _apple_remote=auto
672 _apple_ir=auto
673 _gui=no
674 _gtk1=no
675 _termcap=auto
676 _termios=auto
677 _3dfx=no
678 _s3fb=no
679 _wii=no
680 _tdfxfb=no
681 _tdfxvid=no
682 _xvr100=auto
683 _tga=yes
684 _directfb=auto
685 _bl=no
686 _largefiles=yes
687 #language=en
688 _shm=auto
689 _translation=no
690 _charset="UTF-8"
691 _dynamic_plugins=no
692 _crash_debug=no
693 _sighandler=yes
694 _libdv=auto
695 _cdparanoia=auto
696 _cddb=auto
697 _big_endian=auto
698 _bitmap_font=yes
699 _freetype=auto
700 _fontconfig=auto
701 _menu=no
702 _qtx=auto
703 _maemo=auto
704 _coreaudio=auto
705 _corevideo=auto
706 _quartz=auto
707 quicktime=auto
708 _macosx_finder=no
709 _macosx_bundle=auto
710 _sortsub=yes
711 _freetypeconfig='freetype-config'
712 _fribidi=auto
713 _enca=auto
714 _inet6=auto
715 _gethostbyname2=auto
716 _ftp=auto
717 _musepack=auto
718 _vstream=auto
719 _pthreads=auto
720 _w32threads=auto
721 _ass=auto
722 _rpath=no
723 _asmalign_pot=auto
724 _stream_cache=yes
725 _priority=no
726 def_dos_paths="#define HAVE_DOS_PATHS 0"
727 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
728 def_priority="#undef CONFIG_PRIORITY"
729 def_pthread_cache="#undef PTHREAD_CACHE"
730 need_shmem=yes
731 for ac_option do
732 case "$ac_option" in
733 --help|-help|-h)
734 show_help
736 --prefix=*)
737 _prefix=$(echo $ac_option | cut -d '=' -f 2)
739 --bindir=*)
740 _bindir=$(echo $ac_option | cut -d '=' -f 2)
742 --datadir=*)
743 _datadir=$(echo $ac_option | cut -d '=' -f 2)
745 --mandir=*)
746 _mandir=$(echo $ac_option | cut -d '=' -f 2)
748 --confdir=*)
749 _confdir=$(echo $ac_option | cut -d '=' -f 2)
751 --libdir=*)
752 _libdir=$(echo $ac_option | cut -d '=' -f 2)
754 --codecsdir=*)
755 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
757 --localedir=*)
758 _localedir=$(echo $ac_option | cut -d '=' -f 2)
761 --with-install=*)
762 _install=$(echo $ac_option | cut -d '=' -f 2 )
764 --with-xvmclib=*)
765 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
768 --with-sdl-config=*)
769 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
771 --with-freetype-config=*)
772 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
774 --with-gtk-config=*)
775 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
777 --with-glib-config=*)
778 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
780 --with-dvdnav-config=*)
781 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
783 --with-dvdread-config=*)
784 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
787 --extra-cflags=*)
788 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
790 --extra-ldflags=*)
791 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
793 --extra-libs=*)
794 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
796 --extra-libs-mplayer=*)
797 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
800 --target=*)
801 _target=$(echo $ac_option | cut -d '=' -f 2)
803 --cc=*)
804 _cc=$(echo $ac_option | cut -d '=' -f 2)
806 --host-cc=*)
807 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
809 --as=*)
810 _as=$(echo $ac_option | cut -d '=' -f 2)
812 --nm=*)
813 _nm=$(echo $ac_option | cut -d '=' -f 2)
815 --yasm=*)
816 _yasm=$(echo $ac_option | cut -d '=' -f 2)
818 --ar=*)
819 _ar=$(echo $ac_option | cut -d '=' -f 2)
821 --ranlib=*)
822 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
824 --windres=*)
825 _windres=$(echo $ac_option | cut -d '=' -f 2)
827 --charset=*)
828 _charset=$(echo $ac_option | cut -d '=' -f 2)
830 --language-doc=*)
831 language_doc=$(echo $ac_option | cut -d '=' -f 2)
833 --language-man=*)
834 language_man=$(echo $ac_option | cut -d '=' -f 2)
836 --language-msg=*)
837 language_msg=$(echo $ac_option | cut -d '=' -f 2)
839 --language=*)
840 language=$(echo $ac_option | cut -d '=' -f 2)
843 --enable-static)
844 _ld_static='-static'
846 --disable-static)
847 _ld_static=''
849 --enable-profile)
850 _profile='-p'
852 --disable-profile)
853 _profile=
855 --enable-debug)
856 _debug='-g'
858 --enable-debug=*)
859 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
861 --disable-debug)
862 _debug=
864 --enable-translation) _translation=yes ;;
865 --disable-translation) _translation=no ;;
866 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
867 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
868 --enable-cross-compile) _cross_compile=yes ;;
869 --disable-cross-compile) _cross_compile=no ;;
870 --enable-mplayer) _mplayer=yes ;;
871 --disable-mplayer) _mplayer=no ;;
872 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
873 --disable-dynamic-plugins) _dynamic_plugins=no ;;
874 --enable-x11) _x11=yes ;;
875 --disable-x11) _x11=no ;;
876 --enable-xshape) _xshape=yes ;;
877 --disable-xshape) _xshape=no ;;
878 --enable-xss) _xss=yes ;;
879 --disable-xss) _xss=no ;;
880 --enable-xv) _xv=yes ;;
881 --disable-xv) _xv=no ;;
882 --enable-xvmc) _xvmc=yes ;;
883 --disable-xvmc) _xvmc=no ;;
884 --enable-vdpau) _vdpau=yes ;;
885 --disable-vdpau) _vdpau=no ;;
886 --enable-sdl) _sdl=yes ;;
887 --disable-sdl) _sdl=no ;;
888 --enable-kva) _kva=yes ;;
889 --disable-kva) _kva=no ;;
890 --enable-direct3d) _direct3d=yes ;;
891 --disable-direct3d) _direct3d=no ;;
892 --enable-directx) _directx=yes ;;
893 --disable-directx) _directx=no ;;
894 --enable-win32waveout) _win32waveout=yes ;;
895 --disable-win32waveout) _win32waveout=no ;;
896 --enable-nas) _nas=yes ;;
897 --disable-nas) _nas=no ;;
898 --enable-png) _png=yes ;;
899 --disable-png) _png=no ;;
900 --enable-mng) _mng=yes ;;
901 --disable-mng) _mng=no ;;
902 --enable-jpeg) _jpeg=yes ;;
903 --disable-jpeg) _jpeg=no ;;
904 --enable-pnm) _pnm=yes ;;
905 --disable-pnm) _pnm=no ;;
906 --enable-md5sum) _md5sum=yes ;;
907 --disable-md5sum) _md5sum=no ;;
908 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
909 --disable-yuv4mpeg) _yuv4mpeg=no ;;
910 --enable-gif) _gif=yes ;;
911 --disable-gif) _gif=no ;;
912 --enable-gl) _gl=yes ;;
913 --disable-gl) _gl=no ;;
914 --enable-matrixview) matrixview=yes ;;
915 --disable-matrixview) matrixview=no ;;
916 --enable-ggi) _ggi=yes ;;
917 --disable-ggi) _ggi=no ;;
918 --enable-ggiwmh) _ggiwmh=yes ;;
919 --disable-ggiwmh) _ggiwmh=no ;;
920 --enable-aa) _aa=yes ;;
921 --disable-aa) _aa=no ;;
922 --enable-caca) _caca=yes ;;
923 --disable-caca) _caca=no ;;
924 --enable-svga) _svga=yes ;;
925 --disable-svga) _svga=no ;;
926 --enable-vesa) _vesa=yes ;;
927 --disable-vesa) _vesa=no ;;
928 --enable-fbdev) _fbdev=yes ;;
929 --disable-fbdev) _fbdev=no ;;
930 --enable-dvb) _dvb=yes ;;
931 --disable-dvb) _dvb=no ;;
932 --enable-dxr3) _dxr3=yes ;;
933 --disable-dxr3) _dxr3=no ;;
934 --enable-ivtv) _ivtv=yes ;;
935 --disable-ivtv) _ivtv=no ;;
936 --enable-v4l2) _v4l2=yes ;;
937 --disable-v4l2) _v4l2=no ;;
938 --enable-iconv) _iconv=yes ;;
939 --disable-iconv) _iconv=no ;;
940 --enable-langinfo) _langinfo=yes ;;
941 --disable-langinfo) _langinfo=no ;;
942 --enable-rtc) _rtc=yes ;;
943 --disable-rtc) _rtc=no ;;
944 --enable-libdv) _libdv=yes ;;
945 --disable-libdv) _libdv=no ;;
946 --enable-ossaudio) _ossaudio=yes ;;
947 --disable-ossaudio) _ossaudio=no ;;
948 --enable-arts) _arts=yes ;;
949 --disable-arts) _arts=no ;;
950 --enable-esd) _esd=yes ;;
951 --disable-esd) _esd=no ;;
952 --enable-pulse) _pulse=yes ;;
953 --disable-pulse) _pulse=no ;;
954 --enable-jack) _jack=yes ;;
955 --disable-jack) _jack=no ;;
956 --enable-openal) _openal=yes ;;
957 --disable-openal) _openal=no ;;
958 --enable-kai) _kai=yes ;;
959 --disable-kai) _kai=no ;;
960 --enable-dart) _dart=yes ;;
961 --disable-dart) _dart=no ;;
962 --enable-mad) _mad=yes ;;
963 --disable-mad) _mad=no ;;
964 --enable-libcdio) _libcdio=yes ;;
965 --disable-libcdio) _libcdio=no ;;
966 --enable-liblzo) _liblzo=yes ;;
967 --disable-liblzo) _liblzo=no ;;
968 --enable-libvorbis) _libvorbis=yes ;;
969 --disable-libvorbis) _libvorbis=no ;;
970 --enable-speex) _speex=yes ;;
971 --disable-speex) _speex=no ;;
972 --enable-tremor) _tremor=yes ;;
973 --disable-tremor) _tremor=no ;;
974 --enable-tremor-internal) _tremor_internal=yes ;;
975 --disable-tremor-internal) _tremor_internal=no ;;
976 --enable-tremor-low) _tremor_low=yes ;;
977 --disable-tremor-low) _tremor_low=no ;;
978 --enable-theora) _theora=yes ;;
979 --disable-theora) _theora=no ;;
980 --enable-mpg123) _mpg123=yes ;;
981 --disable-mpg123) _mpg123=no ;;
982 --enable-mp3lib) _mp3lib=yes ;;
983 --disable-mp3lib) _mp3lib=no ;;
984 --enable-liba52) _liba52=yes ;;
985 --disable-liba52) _liba52=no ;;
986 --enable-libdca) _libdca=yes ;;
987 --disable-libdca) _libdca=no ;;
988 --enable-musepack) _musepack=yes ;;
989 --disable-musepack) _musepack=no ;;
990 --enable-faad) _faad=yes ;;
991 --disable-faad) _faad=no ;;
992 --enable-ladspa) _ladspa=yes ;;
993 --disable-ladspa) _ladspa=no ;;
994 --enable-libbs2b) _libbs2b=yes ;;
995 --disable-libbs2b) _libbs2b=no ;;
996 --enable-xmms) _xmms=yes ;;
997 --disable-xmms) _xmms=no ;;
998 --enable-vcd) _vcd=yes ;;
999 --disable-vcd) _vcd=no ;;
1000 --enable-bluray) _bluray=yes ;;
1001 --disable-bluray) _bluray=no ;;
1002 --enable-dvdread) _dvdread=yes ;;
1003 --disable-dvdread) _dvdread=no ;;
1004 --enable-dvdread-internal) _dvdread_internal=yes ;;
1005 --disable-dvdread-internal) _dvdread_internal=no ;;
1006 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1007 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1008 --enable-dvdnav) _dvdnav=yes ;;
1009 --disable-dvdnav) _dvdnav=no ;;
1010 --enable-xanim) _xanim=yes ;;
1011 --disable-xanim) _xanim=no ;;
1012 --enable-real) _real=yes ;;
1013 --disable-real) _real=no ;;
1014 --enable-live) _live=yes ;;
1015 --disable-live) _live=no ;;
1016 --enable-nemesi) _nemesi=yes ;;
1017 --disable-nemesi) _nemesi=no ;;
1018 --enable-xinerama) _xinerama=yes ;;
1019 --disable-xinerama) _xinerama=no ;;
1020 --enable-mga) _mga=yes ;;
1021 --disable-mga) _mga=no ;;
1022 --enable-xmga) _xmga=yes ;;
1023 --disable-xmga) _xmga=no ;;
1024 --enable-vm) _vm=yes ;;
1025 --disable-vm) _vm=no ;;
1026 --enable-xf86keysym) _xf86keysym=yes ;;
1027 --disable-xf86keysym) _xf86keysym=no ;;
1028 --enable-sunaudio) _sunaudio=yes ;;
1029 --disable-sunaudio) _sunaudio=no ;;
1030 --enable-sgiaudio) _sgiaudio=yes ;;
1031 --disable-sgiaudio) _sgiaudio=no ;;
1032 --enable-alsa) _alsa=yes ;;
1033 --disable-alsa) _alsa=no ;;
1034 --enable-tv) _tv=yes ;;
1035 --disable-tv) _tv=no ;;
1036 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1037 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1038 --enable-tv-v4l1) _tv_v4l1=yes ;;
1039 --disable-tv-v4l1) _tv_v4l1=no ;;
1040 --enable-tv-v4l2) _tv_v4l2=yes ;;
1041 --disable-tv-v4l2) _tv_v4l2=no ;;
1042 --enable-tv-dshow) _tv_dshow=yes ;;
1043 --disable-tv-dshow) _tv_dshow=no ;;
1044 --enable-radio) _radio=yes ;;
1045 --enable-radio-capture) _radio_capture=yes ;;
1046 --disable-radio-capture) _radio_capture=no ;;
1047 --disable-radio) _radio=no ;;
1048 --enable-radio-v4l) _radio_v4l=yes ;;
1049 --disable-radio-v4l) _radio_v4l=no ;;
1050 --enable-radio-v4l2) _radio_v4l2=yes ;;
1051 --disable-radio-v4l2) _radio_v4l2=no ;;
1052 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1053 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1054 --enable-pvr) _pvr=yes ;;
1055 --disable-pvr) _pvr=no ;;
1056 --enable-fastmemcpy) _fastmemcpy=yes ;;
1057 --disable-fastmemcpy) _fastmemcpy=no ;;
1058 --enable-networking) networking=yes ;;
1059 --disable-networking) networking=no ;;
1060 --enable-winsock2_h) _winsock2_h=yes ;;
1061 --disable-winsock2_h) _winsock2_h=no ;;
1062 --enable-smb) _smb=yes ;;
1063 --disable-smb) _smb=no ;;
1064 --enable-joystick) _joystick=yes ;;
1065 --disable-joystick) _joystick=no ;;
1066 --enable-xvid) _xvid=yes ;;
1067 --disable-xvid) _xvid=no ;;
1068 --enable-libnut) _libnut=yes ;;
1069 --disable-libnut) _libnut=no ;;
1070 --enable-ffmpeg) ffmpeg=yes ;;
1071 --disable-ffmpeg) ffmpeg=no ;;
1072 --ffmpeg-source-dir=*)
1073 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1075 --enable-lirc) _lirc=yes ;;
1076 --disable-lirc) _lirc=no ;;
1077 --enable-lircc) _lircc=yes ;;
1078 --disable-lircc) _lircc=no ;;
1079 --enable-apple-remote) _apple_remote=yes ;;
1080 --disable-apple-remote) _apple_remote=no ;;
1081 --enable-apple-ir) _apple_ir=yes ;;
1082 --disable-apple-ir) _apple_ir=no ;;
1083 --enable-gui) _gui=yes ;;
1084 --disable-gui) _gui=no ;;
1085 --enable-gtk1) _gtk1=yes ;;
1086 --disable-gtk1) _gtk1=no ;;
1087 --enable-termcap) _termcap=yes ;;
1088 --disable-termcap) _termcap=no ;;
1089 --enable-termios) _termios=yes ;;
1090 --disable-termios) _termios=no ;;
1091 --enable-3dfx) _3dfx=yes ;;
1092 --disable-3dfx) _3dfx=no ;;
1093 --enable-s3fb) _s3fb=yes ;;
1094 --disable-s3fb) _s3fb=no ;;
1095 --enable-wii) _wii=yes ;;
1096 --disable-wii) _wii=no ;;
1097 --enable-tdfxfb) _tdfxfb=yes ;;
1098 --disable-tdfxfb) _tdfxfb=no ;;
1099 --disable-tdfxvid) _tdfxvid=no ;;
1100 --enable-tdfxvid) _tdfxvid=yes ;;
1101 --disable-xvr100) _xvr100=no ;;
1102 --enable-xvr100) _xvr100=yes ;;
1103 --disable-tga) _tga=no ;;
1104 --enable-tga) _tga=yes ;;
1105 --enable-directfb) _directfb=yes ;;
1106 --disable-directfb) _directfb=no ;;
1107 --enable-bl) _bl=yes ;;
1108 --disable-bl) _bl=no ;;
1109 --enable-mtrr) _mtrr=yes ;;
1110 --disable-mtrr) _mtrr=no ;;
1111 --enable-largefiles) _largefiles=yes ;;
1112 --disable-largefiles) _largefiles=no ;;
1113 --enable-shm) _shm=yes ;;
1114 --disable-shm) _shm=no ;;
1115 --enable-select) _select=yes ;;
1116 --disable-select) _select=no ;;
1117 --enable-cdparanoia) _cdparanoia=yes ;;
1118 --disable-cdparanoia) _cdparanoia=no ;;
1119 --enable-cddb) _cddb=yes ;;
1120 --disable-cddb) _cddb=no ;;
1121 --enable-big-endian) _big_endian=yes ;;
1122 --disable-big-endian) _big_endian=no ;;
1123 --enable-bitmap-font) _bitmap_font=yes ;;
1124 --disable-bitmap-font) _bitmap_font=no ;;
1125 --enable-freetype) _freetype=yes ;;
1126 --disable-freetype) _freetype=no ;;
1127 --enable-fontconfig) _fontconfig=yes ;;
1128 --disable-fontconfig) _fontconfig=no ;;
1129 --enable-unrarexec) _unrar_exec=yes ;;
1130 --disable-unrarexec) _unrar_exec=no ;;
1131 --enable-ftp) _ftp=yes ;;
1132 --disable-ftp) _ftp=no ;;
1133 --enable-vstream) _vstream=yes ;;
1134 --disable-vstream) _vstream=no ;;
1135 --enable-pthreads) _pthreads=yes ;;
1136 --disable-pthreads) _pthreads=no ;;
1137 --enable-w32threads) _w32threads=yes ;;
1138 --disable-w32threads) _w32threads=no ;;
1139 --enable-ass) _ass=yes ;;
1140 --disable-ass) _ass=no ;;
1141 --enable-rpath) _rpath=yes ;;
1142 --disable-rpath) _rpath=no ;;
1144 --enable-fribidi) _fribidi=yes ;;
1145 --disable-fribidi) _fribidi=no ;;
1147 --enable-enca) _enca=yes ;;
1148 --disable-enca) _enca=no ;;
1150 --enable-inet6) _inet6=yes ;;
1151 --disable-inet6) _inet6=no ;;
1153 --enable-gethostbyname2) _gethostbyname2=yes ;;
1154 --disable-gethostbyname2) _gethostbyname2=no ;;
1156 --enable-dga1) _dga1=yes ;;
1157 --disable-dga1) _dga1=no ;;
1158 --enable-dga2) _dga2=yes ;;
1159 --disable-dga2) _dga2=no ;;
1161 --enable-menu) _menu=yes ;;
1162 --disable-menu) _menu=no ;;
1164 --enable-qtx) _qtx=yes ;;
1165 --disable-qtx) _qtx=no ;;
1167 --enable-coreaudio) _coreaudio=yes ;;
1168 --disable-coreaudio) _coreaudio=no ;;
1169 --enable-corevideo) _corevideo=yes ;;
1170 --disable-corevideo) _corevideo=no ;;
1171 --enable-quartz) _quartz=yes ;;
1172 --disable-quartz) _quartz=no ;;
1173 --enable-macosx-finder) _macosx_finder=yes ;;
1174 --disable-macosx-finder) _macosx_finder=no ;;
1175 --enable-macosx-bundle) _macosx_bundle=yes ;;
1176 --disable-macosx-bundle) _macosx_bundle=no ;;
1178 --enable-maemo) _maemo=yes ;;
1179 --disable-maemo) _maemo=no ;;
1181 --enable-sortsub) _sortsub=yes ;;
1182 --disable-sortsub) _sortsub=no ;;
1184 --enable-crash-debug) _crash_debug=yes ;;
1185 --disable-crash-debug) _crash_debug=no ;;
1186 --enable-sighandler) _sighandler=yes ;;
1187 --disable-sighandler) _sighandler=no ;;
1188 --enable-win32dll) _win32dll=yes ;;
1189 --disable-win32dll) _win32dll=no ;;
1191 --enable-sse) _sse=yes ;;
1192 --disable-sse) _sse=no ;;
1193 --enable-sse2) _sse2=yes ;;
1194 --disable-sse2) _sse2=no ;;
1195 --enable-ssse3) _ssse3=yes ;;
1196 --disable-ssse3) _ssse3=no ;;
1197 --enable-mmxext) _mmxext=yes ;;
1198 --disable-mmxext) _mmxext=no ;;
1199 --enable-3dnow) _3dnow=yes ;;
1200 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1201 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1202 --disable-3dnowext) _3dnowext=no ;;
1203 --enable-cmov) _cmov=yes ;;
1204 --disable-cmov) _cmov=no ;;
1205 --enable-fast-cmov) _fast_cmov=yes ;;
1206 --disable-fast-cmov) _fast_cmov=no ;;
1207 --enable-fast-clz) _fast_clz=yes ;;
1208 --disable-fast-clz) _fast_clz=no ;;
1209 --enable-altivec) _altivec=yes ;;
1210 --disable-altivec) _altivec=no ;;
1211 --enable-armv5te) _armv5te=yes ;;
1212 --disable-armv5te) _armv5te=no ;;
1213 --enable-armv6) _armv6=yes ;;
1214 --disable-armv6) _armv6=no ;;
1215 --enable-armv6t2) _armv6t2=yes ;;
1216 --disable-armv6t2) _armv6t2=no ;;
1217 --enable-armvfp) _armvfp=yes ;;
1218 --disable-armvfp) _armvfp=no ;;
1219 --enable-neon) neon=yes ;;
1220 --disable-neon) neon=no ;;
1221 --enable-iwmmxt) _iwmmxt=yes ;;
1222 --disable-iwmmxt) _iwmmxt=no ;;
1223 --enable-mmx) _mmx=yes ;;
1224 --disable-mmx) # 3Dnow! and MMX2 require MMX
1225 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1228 echo "Unknown parameter: $ac_option"
1229 exit 1
1232 esac
1233 done
1235 if test "$_gui" = yes ; then
1236 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1237 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1240 # Atmos: moved this here, to be correct, if --prefix is specified
1241 test -z "$_bindir" && _bindir="$_prefix/bin"
1242 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1243 test -z "$_mandir" && _mandir="$_prefix/share/man"
1244 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1245 test -z "$_libdir" && _libdir="$_prefix/lib"
1246 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1248 # Determine our OS name and CPU architecture
1249 if test -z "$_target" ; then
1250 # OS name
1251 system_name=$(uname -s 2>&1)
1252 case "$system_name" in
1253 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1255 Haiku)
1256 system_name=BeOS
1258 IRIX*)
1259 system_name=IRIX
1261 GNU/kFreeBSD)
1262 system_name=FreeBSD
1264 HP-UX*)
1265 system_name=HP-UX
1267 [cC][yY][gG][wW][iI][nN]*)
1268 system_name=CYGWIN
1270 MINGW32*)
1271 system_name=MINGW32
1273 OS/2*)
1274 system_name=OS/2
1277 system_name="$system_name-UNKNOWN"
1279 esac
1282 # host's CPU/instruction set
1283 host_arch=$(uname -p 2>&1)
1284 case "$host_arch" in
1285 i386|sparc|ppc|alpha|arm|mips|vax)
1287 powerpc) # Darwin returns 'powerpc'
1288 host_arch=ppc
1290 *) # uname -p on Linux returns 'unknown' for the processor type,
1291 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1293 # Maybe uname -m (machine hardware name) returns something we
1294 # recognize.
1296 # x86/x86pc is used by QNX
1297 case "$(uname -m 2>&1)" in
1298 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 ;;
1299 ia64) host_arch=ia64 ;;
1300 macppc|ppc) host_arch=ppc ;;
1301 ppc64) host_arch=ppc64 ;;
1302 alpha) host_arch=alpha ;;
1303 sparc) host_arch=sparc ;;
1304 sparc64) host_arch=sparc64 ;;
1305 parisc*|hppa*|9000*) host_arch=hppa ;;
1306 arm*|zaurus|cats) host_arch=arm ;;
1307 sh3|sh4|sh4a) host_arch=sh ;;
1308 s390) host_arch=s390 ;;
1309 s390x) host_arch=s390x ;;
1310 *mips*) host_arch=mips ;;
1311 vax) host_arch=vax ;;
1312 xtensa*) host_arch=xtensa ;;
1313 *) host_arch=UNKNOWN ;;
1314 esac
1316 esac
1317 else # if test -z "$_target"
1318 system_name=$(echo $_target | cut -d '-' -f 2)
1319 case "$(echo $system_name | tr A-Z a-z)" in
1320 linux) system_name=Linux ;;
1321 freebsd) system_name=FreeBSD ;;
1322 gnu/kfreebsd) system_name=FreeBSD ;;
1323 netbsd) system_name=NetBSD ;;
1324 bsd/os) system_name=BSD/OS ;;
1325 openbsd) system_name=OpenBSD ;;
1326 dragonfly) system_name=DragonFly ;;
1327 sunos) system_name=SunOS ;;
1328 qnx) system_name=QNX ;;
1329 morphos) system_name=MorphOS ;;
1330 amigaos) system_name=AmigaOS ;;
1331 mingw32*) system_name=MINGW32 ;;
1332 esac
1333 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1334 host_arch=$(echo $_target | cut -d '-' -f 1)
1335 if test $(echo $host_arch) != "x86_64" ; then
1336 host_arch=$(echo $host_arch | tr '_' '-')
1340 extra_cflags="-I. $extra_cflags"
1341 _timer=timer-linux.c
1342 _getch=getch2.c
1343 if freebsd ; then
1344 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1345 extra_cflags="$extra_cflags -I/usr/local/include"
1348 if netbsd || dragonfly ; then
1349 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1350 extra_cflags="$extra_cflags -I/usr/pkg/include"
1353 if darwin; then
1354 extra_cflags="-mdynamic-no-pic $extra_cflags"
1355 if test "$(basename $_cc)" != "clang" ; then
1356 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1358 _timer=timer-darwin.c
1361 if aix ; then
1362 extra_ldflags="$extra_ldflags -lC"
1365 if irix ; then
1366 _ranlib='ar -r'
1367 elif linux ; then
1368 _ranlib='true'
1371 if win32 ; then
1372 _exesuf=".exe"
1373 extra_cflags="$extra_cflags -fno-common"
1374 # -lwinmm is always needed for osdep/timer-win2.c
1375 extra_ldflags="$extra_ldflags -lwinmm"
1376 _pe_executable=yes
1377 _timer=timer-win2.c
1378 _priority=yes
1379 def_dos_paths="#define HAVE_DOS_PATHS 1"
1380 def_priority="#define CONFIG_PRIORITY 1"
1383 if mingw32 ; then
1384 _getch=getch2-win.c
1385 need_shmem=no
1388 if amigaos ; then
1389 _select=no
1390 _sighandler=no
1391 _stream_cache=no
1392 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1393 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1396 if qnx ; then
1397 extra_ldflags="$extra_ldflags -lph"
1400 if os2 ; then
1401 _exesuf=".exe"
1402 _getch=getch2-os2.c
1403 need_shmem=no
1404 _priority=yes
1405 def_dos_paths="#define HAVE_DOS_PATHS 1"
1406 def_priority="#define CONFIG_PRIORITY 1"
1409 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1410 test "$tmpdir" && break
1411 done
1413 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1414 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1416 TMPLOG="config.log"
1417 TMPC="$mplayer_tmpdir/tmp.c"
1418 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1419 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1420 TMPH="$mplayer_tmpdir/tmp.h"
1421 TMPS="$mplayer_tmpdir/tmp.S"
1423 rm -f "$TMPLOG"
1424 echo configuration: $configuration > "$TMPLOG"
1425 echo >> "$TMPLOG"
1428 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1429 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1433 # Checking CC version...
1434 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1435 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1436 echocheck "$_cc version"
1437 cc_vendor=intel
1438 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1439 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1440 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1441 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1442 # TODO verify older icc/ecc compatibility
1443 case $cc_version in
1445 cc_version="v. ?.??, bad"
1446 cc_fail=yes
1448 10.1|11.0|11.1)
1449 cc_version="$cc_version, ok"
1452 cc_version="$cc_version, bad"
1453 cc_fail=yes
1455 esac
1456 echores "$cc_version"
1457 else
1458 for _cc in "$_cc" gcc cc ; do
1459 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1460 if test "$cc_name_tmp" = "gcc"; then
1461 cc_name=$cc_name_tmp
1462 echocheck "$_cc version"
1463 cc_vendor=gnu
1464 cc_version=$($_cc -dumpversion 2>&1)
1465 case $cc_version in
1466 2.96*)
1467 cc_fail=yes
1470 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1471 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1472 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1474 esac
1475 echores "$cc_version"
1476 break
1478 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1479 if test "$cc_name_tmp" = "clang"; then
1480 echocheck "$_cc version"
1481 cc_vendor=clang
1482 cc_version=$($_cc -dumpversion 2>&1)
1483 res_comment="experimental support only"
1484 echores "clang $cc_version"
1485 break
1487 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1488 if test "$cc_name_tmp" = "Sun C"; then
1489 echocheck "$_cc version"
1490 cc_vendor=sun
1491 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1492 res_comment="experimental support only"
1493 echores "Sun C $cc_version"
1494 break
1496 done
1497 fi # icc
1498 test "$cc_fail" = yes && die "unsupported compiler version"
1500 if test -z "$_target" && x86 ; then
1501 cat > $TMPC << EOF
1502 int main(void) {
1503 int test[(int)sizeof(char *)-7];
1504 return 0;
1507 cc_check && host_arch=x86_64 || host_arch=i386
1510 echo "Detected operating system: $system_name"
1511 echo "Detected host architecture: $host_arch"
1513 echocheck "host cc"
1514 test "$_host_cc" || _host_cc=$_cc
1515 echores $_host_cc
1517 echocheck "cross compilation"
1518 if test $_cross_compile = auto ; then
1519 _cross_compile=yes
1520 cflag_check "" && "$TMPEXE" && _cross_compile=no
1522 echores $_cross_compile
1524 if test $_cross_compile = yes; then
1525 tmp_run() {
1526 return 0
1530 # ---
1532 # now that we know what compiler should be used for compilation, try to find
1533 # out which assembler is used by the $_cc compiler
1534 if test "$_as" = auto ; then
1535 _as=$($_cc -print-prog-name=as)
1536 test -z "$_as" && _as=as
1539 if test "$_nm" = auto ; then
1540 _nm=$($_cc -print-prog-name=nm)
1541 test -z "$_nm" && _nm=nm
1544 # XXX: this should be ok..
1545 _cpuinfo="echo"
1547 if test "$_runtime_cpudetection" = no ; then
1549 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1550 # FIXME: Remove the cygwin check once AMD CPUs are supported
1551 if test -r /proc/cpuinfo && ! cygwin; then
1552 # Linux with /proc mounted, extract CPU information from it
1553 _cpuinfo="cat /proc/cpuinfo"
1554 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1555 # FreeBSD with Linux emulation /proc mounted,
1556 # extract CPU information from it
1557 # Don't use it on x86 though, it never reports 3Dnow
1558 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1559 elif darwin && ! x86 ; then
1560 # use hostinfo on Darwin
1561 _cpuinfo="hostinfo"
1562 elif aix; then
1563 # use 'lsattr' on AIX
1564 _cpuinfo="lsattr -E -l proc0 -a type"
1565 elif x86; then
1566 # all other OSes try to extract CPU information from a small helper
1567 # program cpuinfo instead
1568 $_cc -o cpuinfo$_exesuf cpuinfo.c
1569 _cpuinfo="./cpuinfo$_exesuf"
1572 if x86 ; then
1573 # gather more CPU information
1574 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1575 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1576 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1577 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1578 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1580 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1582 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1583 -e s/xmm/sse/ -e s/kni/sse/)
1585 for ext in $pparam ; do
1586 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1587 done
1589 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1590 test $_sse = kernel_check && _mmxext=kernel_check
1592 echocheck "CPU vendor"
1593 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1595 echocheck "CPU type"
1596 echores "$pname"
1599 fi # test "$_runtime_cpudetection" = no
1601 if x86 && test "$_runtime_cpudetection" = no ; then
1602 extcheck() {
1603 if test "$1" = kernel_check ; then
1604 echocheck "kernel support of $2"
1605 cat > $TMPC <<EOF
1606 #include <stdlib.h>
1607 #include <signal.h>
1608 static void catch(int sig) { exit(1); }
1609 int main(void) {
1610 signal(SIGILL, catch);
1611 __asm__ volatile ("$3":::"memory"); return 0;
1615 if cc_check && tmp_run ; then
1616 eval _$2=yes
1617 echores "yes"
1618 _optimizing="$_optimizing $2"
1619 return 0
1620 else
1621 eval _$2=no
1622 echores "failed"
1623 echo "It seems that your kernel does not correctly support $2."
1624 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1625 return 1
1628 return 0
1631 extcheck $_mmx "mmx" "emms"
1632 extcheck $_mmxext "mmxext" "sfence"
1633 extcheck $_3dnow "3dnow" "femms"
1634 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1635 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1636 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1637 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1638 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1640 echocheck "mtrr support"
1641 if test "$_mtrr" = kernel_check ; then
1642 _mtrr="yes"
1643 _optimizing="$_optimizing mtrr"
1645 echores "$_mtrr"
1647 if test "$_gcc3_ext" != ""; then
1648 # if we had to disable sse/sse2 because the active kernel does not
1649 # support this instruction set extension, we also have to tell
1650 # gcc3 to not generate sse/sse2 instructions for normal C code
1651 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1657 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1658 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1659 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1660 subarch_all='X86_32 X86_64 PPC64'
1661 case "$host_arch" in
1662 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1663 arch='x86'
1664 subarch='x86_32'
1665 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1666 iproc=486
1667 proc=i486
1670 if test "$_runtime_cpudetection" = no ; then
1671 case "$pvendor" in
1672 AuthenticAMD)
1673 case "$pfamily" in
1674 3) proc=i386 iproc=386 ;;
1675 4) proc=i486 iproc=486 ;;
1676 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1677 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1678 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1679 proc=k6-3
1680 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1681 proc=geode
1682 elif test "$pmodel" -ge 8; then
1683 proc=k6-2
1684 elif test "$pmodel" -ge 6; then
1685 proc=k6
1686 else
1687 proc=i586
1690 6) iproc=686
1691 # It's a bit difficult to determine the correct type of Family 6
1692 # AMD CPUs just from their signature. Instead, we check directly
1693 # whether it supports SSE.
1694 if test "$_sse" = yes; then
1695 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1696 proc=athlon-xp
1697 else
1698 # Again, gcc treats athlon and athlon-tbird similarly.
1699 proc=athlon
1702 15) iproc=686
1703 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1704 # caught and remedied in the optimization tests below.
1705 proc=k8
1708 *) proc=amdfam10 iproc=686
1709 test $_fast_clz = "auto" && _fast_clz=yes
1711 esac
1713 GenuineIntel)
1714 case "$pfamily" in
1715 3) proc=i386 iproc=386 ;;
1716 4) proc=i486 iproc=486 ;;
1717 5) iproc=586
1718 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1719 proc=pentium-mmx # 4 is desktop, 8 is mobile
1720 else
1721 proc=i586
1724 6) iproc=686
1725 if test "$pmodel" -ge 15; then
1726 proc=core2
1727 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1728 proc=pentium-m
1729 elif test "$pmodel" -ge 7; then
1730 proc=pentium3
1731 elif test "$pmodel" -ge 3; then
1732 proc=pentium2
1733 else
1734 proc=i686
1736 test $_fast_clz = "auto" && _fast_clz=yes
1738 15) iproc=686
1739 # A nocona in 32-bit mode has no more capabilities than a prescott.
1740 if test "$pmodel" -ge 3; then
1741 proc=prescott
1742 else
1743 proc=pentium4
1744 test $_fast_clz = "auto" && _fast_clz=yes
1746 test $_fast_cmov = "auto" && _fast_cmov=no
1748 *) proc=prescott iproc=686 ;;
1749 esac
1751 CentaurHauls)
1752 case "$pfamily" in
1753 5) iproc=586
1754 if test "$pmodel" -ge 8; then
1755 proc=winchip2
1756 elif test "$pmodel" -ge 4; then
1757 proc=winchip-c6
1758 else
1759 proc=i586
1762 6) iproc=686
1763 if test "$pmodel" -ge 9; then
1764 proc=c3-2
1765 else
1766 proc=c3
1767 iproc=586
1770 *) proc=i686 iproc=i686 ;;
1771 esac
1773 unknown)
1774 case "$pfamily" in
1775 3) proc=i386 iproc=386 ;;
1776 4) proc=i486 iproc=486 ;;
1777 *) proc=i586 iproc=586 ;;
1778 esac
1781 proc=i586 iproc=586 ;;
1782 esac
1783 test $_fast_clz = "auto" && _fast_clz=no
1784 fi # test "$_runtime_cpudetection" = no
1787 # check that gcc supports our CPU, if not, fall back to earlier ones
1788 # LGB: check -mcpu and -march swithing step by step with enabling
1789 # to fall back till 386.
1791 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1793 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1794 cpuopt=-mtune
1795 else
1796 cpuopt=-mcpu
1799 echocheck "GCC & CPU optimization abilities"
1800 if test "$_runtime_cpudetection" = no ; then
1801 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1802 cflag_check -march=native && proc=native
1804 if test "$proc" = "amdfam10"; then
1805 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1807 if test "$proc" = "k8"; then
1808 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1810 if test "$proc" = "athlon-xp"; then
1811 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1813 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1814 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1816 if test "$proc" = "k6" || test "$proc" = "c3"; then
1817 if ! cflag_check -march=$proc $cpuopt=$proc; then
1818 if cflag_check -march=i586 $cpuopt=i686; then
1819 proc=i586-i686
1820 else
1821 proc=i586
1825 if test "$proc" = "prescott" ; then
1826 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1828 if test "$proc" = "core2" ; then
1829 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1831 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
1832 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1834 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1835 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1837 if test "$proc" = "i586"; then
1838 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1840 if test "$proc" = "i486" ; then
1841 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1843 if test "$proc" = "i386" ; then
1844 cflag_check -march=$proc $cpuopt=$proc || proc=error
1846 if test "$proc" = "error" ; then
1847 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1848 _mcpu=""
1849 _march=""
1850 _optimizing=""
1851 elif test "$proc" = "i586-i686"; then
1852 _march="-march=i586"
1853 _mcpu="$cpuopt=i686"
1854 _optimizing="$proc"
1855 else
1856 _march="-march=$proc"
1857 _mcpu="$cpuopt=$proc"
1858 _optimizing="$proc"
1860 else # if test "$_runtime_cpudetection" = no
1861 _mcpu="$cpuopt=generic"
1862 # at least i486 required, for bswap instruction
1863 _march="-march=i486"
1864 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1865 cflag_check $_mcpu || _mcpu=""
1866 cflag_check $_march $_mcpu || _march=""
1869 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1870 ## autodetected mcpu/march parameters
1871 if test "$_target" ; then
1872 # TODO: it may be a good idea to check GCC and fall back in all cases
1873 if test "$host_arch" = "i586-i686"; then
1874 _march="-march=i586"
1875 _mcpu="$cpuopt=i686"
1876 else
1877 _march="-march=$host_arch"
1878 _mcpu="$cpuopt=$host_arch"
1881 proc="$host_arch"
1883 case "$proc" in
1884 i386) iproc=386 ;;
1885 i486) iproc=486 ;;
1886 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1887 i686|athlon*|pentium*) iproc=686 ;;
1888 *) iproc=586 ;;
1889 esac
1892 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1893 _fast_cmov="yes"
1894 else
1895 _fast_cmov="no"
1897 test $_fast_clz = "auto" && _fast_clz=yes
1899 echores "$proc"
1902 ia64)
1903 arch='ia64'
1904 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1905 iproc='ia64'
1908 x86_64|amd64)
1909 arch='x86'
1910 subarch='x86_64'
1911 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1912 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1913 iproc='x86_64'
1915 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1916 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1917 cpuopt=-mtune
1918 else
1919 cpuopt=-mcpu
1921 if test "$_runtime_cpudetection" = no ; then
1922 case "$pvendor" in
1923 AuthenticAMD)
1924 case "$pfamily" in
1925 15) proc=k8
1926 test $_fast_clz = "auto" && _fast_clz=no
1928 *) proc=amdfam10;;
1929 esac
1931 GenuineIntel)
1932 case "$pfamily" in
1933 6) proc=core2;;
1935 # 64-bit prescotts exist, but as far as GCC is concerned they
1936 # have the same capabilities as a nocona.
1937 proc=nocona
1938 test $_fast_cmov = "auto" && _fast_cmov=no
1939 test $_fast_clz = "auto" && _fast_clz=no
1941 esac
1944 proc=error;;
1945 esac
1946 fi # test "$_runtime_cpudetection" = no
1948 echocheck "GCC & CPU optimization abilities"
1949 # This is a stripped-down version of the i386 fallback.
1950 if test "$_runtime_cpudetection" = no ; then
1951 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1952 cflag_check -march=native && proc=native
1954 # --- AMD processors ---
1955 if test "$proc" = "amdfam10"; then
1956 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1958 if test "$proc" = "k8"; then
1959 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1961 # This will fail if gcc version < 3.3, which is ok because earlier
1962 # versions don't really support 64-bit on amd64.
1963 # Is this a valid assumption? -Corey
1964 if test "$proc" = "athlon-xp"; then
1965 cflag_check -march=$proc $cpuopt=$proc || proc=error
1967 # --- Intel processors ---
1968 if test "$proc" = "core2"; then
1969 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1971 if test "$proc" = "x86-64"; then
1972 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1974 if test "$proc" = "nocona"; then
1975 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1977 if test "$proc" = "pentium4"; then
1978 cflag_check -march=$proc $cpuopt=$proc || proc=error
1981 _march="-march=$proc"
1982 _mcpu="$cpuopt=$proc"
1983 if test "$proc" = "error" ; then
1984 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1985 _mcpu=""
1986 _march=""
1988 else # if test "$_runtime_cpudetection" = no
1989 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1990 _march="-march=x86-64"
1991 _mcpu="$cpuopt=generic"
1992 cflag_check $_mcpu || _mcpu="x86-64"
1993 cflag_check $_mcpu || _mcpu=""
1994 cflag_check $_march $_mcpu || _march=""
1997 _optimizing="$proc"
1998 test $_fast_cmov = "auto" && _fast_cmov=yes
1999 test $_fast_clz = "auto" && _fast_clz=yes
2001 echores "$proc"
2004 sparc|sparc64)
2005 arch='sparc'
2006 iproc='sparc'
2007 if test "$host_arch" = "sparc64" ; then
2008 _vis='yes'
2009 proc='ultrasparc'
2010 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2011 elif sunos ; then
2012 echocheck "CPU type"
2013 karch=$(uname -m)
2014 case "$(echo $karch)" in
2015 sun4) proc=v7 ;;
2016 sun4c) proc=v7 ;;
2017 sun4d) proc=v8 ;;
2018 sun4m) proc=v8 ;;
2019 sun4u) proc=ultrasparc _vis='yes' ;;
2020 sun4v) proc=v9 ;;
2021 *) proc=v8 ;;
2022 esac
2023 echores "$proc"
2024 else
2025 proc=v8
2027 _mcpu="-mcpu=$proc"
2028 _optimizing="$proc"
2031 arm*)
2032 arch='arm'
2033 iproc='arm'
2036 avr32)
2037 arch='avr32'
2038 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2039 iproc='avr32'
2040 test $_fast_clz = "auto" && _fast_clz=yes
2043 sh|sh4)
2044 arch='sh4'
2045 iproc='sh4'
2048 ppc|ppc64|powerpc|powerpc64)
2049 arch='ppc'
2050 def_dcbzl='#define HAVE_DCBZL 0'
2051 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2052 iproc='ppc'
2054 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2055 subarch='ppc64'
2056 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2058 echocheck "CPU type"
2059 case $system_name in
2060 Linux)
2061 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2062 if test -n "$($_cpuinfo | grep altivec)"; then
2063 test $_altivec = auto && _altivec=yes
2066 Darwin)
2067 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2068 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2069 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2070 test $_altivec = auto && _altivec=yes
2073 NetBSD)
2074 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2075 case $cc_version in
2076 2*|3.0*|3.1*|3.2*|3.3*)
2079 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2080 test $_altivec = auto && _altivec=yes
2083 esac
2085 AIX)
2086 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2088 esac
2089 if test "$_altivec" = yes; then
2090 echores "$proc altivec"
2091 else
2092 _altivec=no
2093 echores "$proc"
2096 echocheck "GCC & CPU optimization abilities"
2098 if test -n "$proc"; then
2099 case "$proc" in
2100 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2101 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2102 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2103 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2104 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2105 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2106 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2107 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2108 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2109 *) ;;
2110 esac
2111 # gcc 3.1(.1) and up supports 7400 and 7450
2112 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2113 case "$proc" in
2114 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2115 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2116 *) ;;
2117 esac
2119 # gcc 3.2 and up supports 970
2120 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2121 case "$proc" in
2122 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2123 def_dcbzl='#define HAVE_DCBZL 1' ;;
2124 *) ;;
2125 esac
2127 # gcc 3.3 and up supports POWER4
2128 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2129 case "$proc" in
2130 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2131 *) ;;
2132 esac
2134 # gcc 3.4 and up supports 440*
2135 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2136 case "$proc" in
2137 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2138 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2139 *) ;;
2140 esac
2142 # gcc 4.0 and up supports POWER5
2143 if test "$_cc_major" -ge "4"; then
2144 case "$proc" in
2145 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2146 *) ;;
2147 esac
2151 if test -n "$_mcpu"; then
2152 _optimizing=$(echo $_mcpu | cut -c 8-)
2153 echores "$_optimizing"
2154 else
2155 echores "none"
2158 test $_fast_clz = "auto" && _fast_clz=yes
2162 alpha*)
2163 arch='alpha'
2164 iproc='alpha'
2165 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2167 echocheck "CPU type"
2168 cat > $TMPC << EOF
2169 int main(void) {
2170 unsigned long ver, mask;
2171 __asm__ ("implver %0" : "=r" (ver));
2172 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2173 printf("%ld-%x\n", ver, ~mask);
2174 return 0;
2177 $_cc -o "$TMPEXE" "$TMPC"
2178 case $("$TMPEXE") in
2180 0-0) proc="ev4"; _mvi="0";;
2181 1-0) proc="ev5"; _mvi="0";;
2182 1-1) proc="ev56"; _mvi="0";;
2183 1-101) proc="pca56"; _mvi="1";;
2184 2-303) proc="ev6"; _mvi="1";;
2185 2-307) proc="ev67"; _mvi="1";;
2186 2-1307) proc="ev68"; _mvi="1";;
2187 esac
2188 echores "$proc"
2190 echocheck "GCC & CPU optimization abilities"
2191 if test "$proc" = "ev68" ; then
2192 cc_check -mcpu=$proc || proc=ev67
2194 if test "$proc" = "ev67" ; then
2195 cc_check -mcpu=$proc || proc=ev6
2197 _mcpu="-mcpu=$proc"
2198 echores "$proc"
2200 test $_fast_clz = "auto" && _fast_clz=yes
2202 _optimizing="$proc"
2205 mips*)
2206 arch='mips'
2207 iproc='mips'
2209 if irix ; then
2210 echocheck "CPU type"
2211 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2212 case "$(echo $proc)" in
2213 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2214 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2215 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2216 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2217 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2218 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2219 esac
2220 # gcc < 3.x does not support -mtune.
2221 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2222 _mcpu=''
2224 echores "$proc"
2227 test $_fast_clz = "auto" && _fast_clz=yes
2231 hppa)
2232 arch='pa_risc'
2233 iproc='PA-RISC'
2236 s390)
2237 arch='s390'
2238 iproc='390'
2241 s390x)
2242 arch='s390x'
2243 iproc='390x'
2246 vax)
2247 arch='vax'
2248 iproc='vax'
2251 xtensa)
2252 arch='xtensa'
2253 iproc='xtensa'
2256 generic)
2257 arch='generic'
2261 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2262 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2263 die "unsupported architecture $host_arch"
2265 esac # case "$host_arch" in
2267 if test "$_runtime_cpudetection" = yes ; then
2268 if x86 ; then
2269 test "$_cmov" != no && _cmov=yes
2270 x86_32 && _cmov=no
2271 test "$_mmx" != no && _mmx=yes
2272 test "$_3dnow" != no && _3dnow=yes
2273 test "$_3dnowext" != no && _3dnowext=yes
2274 test "$_mmxext" != no && _mmxext=yes
2275 test "$_sse" != no && _sse=yes
2276 test "$_sse2" != no && _sse2=yes
2277 test "$_ssse3" != no && _ssse3=yes
2278 test "$_mtrr" != no && _mtrr=yes
2280 if ppc; then
2281 _altivec=yes
2286 # endian testing
2287 echocheck "byte order"
2288 if test "$_big_endian" = auto ; then
2289 cat > $TMPC <<EOF
2290 short ascii_name[] = {
2291 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2292 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2293 int main(void) { return (long)ascii_name; }
2295 if cc_check ; then
2296 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2297 _big_endian=yes
2298 else
2299 _big_endian=no
2301 else
2302 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2305 if test "$_big_endian" = yes ; then
2306 _byte_order='big-endian'
2307 def_words_endian='#define WORDS_BIGENDIAN 1'
2308 def_bigendian='#define HAVE_BIGENDIAN 1'
2309 else
2310 _byte_order='little-endian'
2311 def_words_endian='#undef WORDS_BIGENDIAN'
2312 def_bigendian='#define HAVE_BIGENDIAN 0'
2314 echores "$_byte_order"
2317 echocheck "extern symbol prefix"
2318 cat > $TMPC << EOF
2319 int ff_extern;
2321 cc_check -c || die "Symbol mangling check failed."
2322 sym=$($_nm -P -g $TMPEXE)
2323 extern_prefix=${sym%%ff_extern*}
2324 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2325 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2326 echores $extern_prefix
2329 echocheck "assembler support of -pipe option"
2330 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2331 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2334 echocheck "compiler support of named assembler arguments"
2335 _named_asm_args=yes
2336 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2337 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2338 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2339 _named_asm_args=no
2340 def_named_asm_args="#undef NAMED_ASM_ARGS"
2342 echores $_named_asm_args
2345 if darwin && test "$cc_vendor" = "gnu" ; then
2346 echocheck "GCC support of -mstackrealign"
2347 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2348 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2349 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2350 # wrong code with this flag, but this can be worked around by adding
2351 # -fno-unit-at-a-time as described in the blog post at
2352 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2353 cat > $TMPC << EOF
2354 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2355 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2357 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2358 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2359 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2360 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2361 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2364 # Checking for CFLAGS
2365 _install_strip="-s"
2366 if test "$_profile" != "" || test "$_debug" != "" ; then
2367 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2368 WARNFLAGS="-W -Wall"
2369 _install_strip=
2370 elif test -z "$CFLAGS" ; then
2371 if test "$cc_vendor" = "intel" ; then
2372 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2373 WARNFLAGS="-wd167 -wd556 -wd144"
2374 elif test "$cc_vendor" = "sun" ; then
2375 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2376 elif test "$cc_vendor" = "clang"; then
2377 CFLAGS="-O2 $_march $_pipe"
2378 elif test "$cc_vendor" != "gnu" ; then
2379 CFLAGS="-O2 $_march $_mcpu $_pipe"
2380 else
2381 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2382 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2383 extra_ldflags="$extra_ldflags -ffast-math"
2385 else
2386 warn_cflags=yes
2389 if test "$cc_vendor" = "gnu" ; then
2390 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2391 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2392 # that's the only variable specific to C now, and this option is not valid
2393 # for C++.
2394 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2395 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2396 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2397 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2398 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2399 else
2400 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2403 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2404 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2407 if test -n "$LDFLAGS" ; then
2408 extra_ldflags="$extra_ldflags $LDFLAGS"
2409 warn_cflags=yes
2410 elif test "$cc_vendor" = "intel" ; then
2411 extra_ldflags="$extra_ldflags -i-static"
2413 if test -n "$CPPFLAGS" ; then
2414 extra_cflags="$extra_cflags $CPPFLAGS"
2415 warn_cflags=yes
2420 if x86_32 ; then
2421 # Checking assembler (_as) compatibility...
2422 # Added workaround for older as that reads from stdin by default - atmos
2423 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2424 echocheck "assembler ($_as $as_version)"
2426 _pref_as_version='2.9.1'
2427 echo 'nop' > $TMPS
2428 if test "$_mmx" = yes ; then
2429 echo 'emms' >> $TMPS
2431 if test "$_3dnow" = yes ; then
2432 _pref_as_version='2.10.1'
2433 echo 'femms' >> $TMPS
2435 if test "$_3dnowext" = yes ; then
2436 _pref_as_version='2.10.1'
2437 echo 'pswapd %mm0, %mm0' >> $TMPS
2439 if test "$_mmxext" = yes ; then
2440 _pref_as_version='2.10.1'
2441 echo 'movntq %mm0, (%eax)' >> $TMPS
2443 if test "$_sse" = yes ; then
2444 _pref_as_version='2.10.1'
2445 echo 'xorps %xmm0, %xmm0' >> $TMPS
2447 #if test "$_sse2" = yes ; then
2448 # _pref_as_version='2.11'
2449 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2451 if test "$_cmov" = yes ; then
2452 _pref_as_version='2.10.1'
2453 echo 'cmovb %eax, %ebx' >> $TMPS
2455 if test "$_ssse3" = yes ; then
2456 _pref_as_version='2.16.92'
2457 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2459 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2461 if test "$as_verc_fail" != yes ; then
2462 echores "ok"
2463 else
2464 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2465 echores "failed"
2466 die "obsolete binutils version"
2469 fi #if x86_32
2472 echocheck "PIC"
2473 pic=no
2474 cat > $TMPC << EOF
2475 int main(void) {
2476 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2477 #error PIC not enabled
2478 #endif
2479 return 0;
2482 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2483 echores $pic
2486 if x86 ; then
2488 echocheck ".align is a power of two"
2489 if test "$_asmalign_pot" = auto ; then
2490 _asmalign_pot=no
2491 inline_asm_check '".align 3"' && _asmalign_pot=yes
2493 if test "$_asmalign_pot" = "yes" ; then
2494 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2495 else
2496 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2498 echores $_asmalign_pot
2501 echocheck "10 assembler operands"
2502 ten_operands=no
2503 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2504 cat > $TMPC << EOF
2505 int main(void) {
2506 int x=0;
2507 __asm__ volatile(
2509 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2511 return 0;
2514 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2515 echores $ten_operands
2517 echocheck "ebx availability"
2518 ebx_available=no
2519 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2520 cat > $TMPC << EOF
2521 int main(void) {
2522 int x;
2523 __asm__ volatile(
2524 "xor %0, %0"
2525 :"=b"(x)
2526 // just adding ebx to clobber list seems unreliable with some
2527 // compilers, e.g. Haiku's gcc 2.95
2529 // and the above check does not work for OSX 64 bit...
2530 __asm__ volatile("":::"%ebx");
2531 return 0;
2534 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2535 echores $ebx_available
2538 echocheck "yasm"
2539 if test -z "$YASMFLAGS" ; then
2540 if darwin ; then
2541 x86_64 && objformat="macho64" || objformat="macho"
2542 elif win32 ; then
2543 objformat="win32"
2544 else
2545 objformat="elf"
2547 # currently tested for Linux x86, x86_64
2548 YASMFLAGS="-f $objformat"
2549 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2550 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2551 case "$objformat" in
2552 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2553 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2554 esac
2555 else
2556 warn_cflags=yes
2559 echo "pabsw xmm0, xmm0" > $TMPS
2560 yasm_check || _yasm=""
2561 if test $_yasm ; then
2562 def_yasm='#define HAVE_YASM 1'
2563 have_yasm="yes"
2564 echores "$_yasm"
2565 else
2566 def_yasm='#define HAVE_YASM 0'
2567 have_yasm="no"
2568 echores "no"
2571 echocheck "bswap"
2572 def_bswap='#define HAVE_BSWAP 0'
2573 echo 'bswap %eax' > $TMPS
2574 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2575 echores "$bswap"
2576 fi #if x86
2579 #FIXME: This should happen before the check for CFLAGS..
2580 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2581 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2583 # check if AltiVec is supported by the compiler, and how to enable it
2584 echocheck "GCC AltiVec flags"
2585 if $(cflag_check -maltivec -mabi=altivec) ; then
2586 _altivec_gcc_flags="-maltivec -mabi=altivec"
2587 # check if <altivec.h> should be included
2588 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2589 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2590 inc_altivec_h='#include <altivec.h>'
2591 else
2592 if $(cflag_check -faltivec) ; then
2593 _altivec_gcc_flags="-faltivec"
2594 else
2595 _altivec=no
2596 _altivec_gcc_flags="none, AltiVec disabled"
2600 echores "$_altivec_gcc_flags"
2602 # check if the compiler supports braces for vector declarations
2603 cat > $TMPC << EOF
2604 $inc_altivec_h
2605 int main(void) { (vector int) {1}; return 0; }
2607 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2609 # Disable runtime cpudetection if we cannot generate AltiVec code or
2610 # AltiVec is disabled by the user.
2611 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2612 && _runtime_cpudetection=no
2614 # Show that we are optimizing for AltiVec (if enabled and supported).
2615 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2616 && _optimizing="$_optimizing altivec"
2618 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2619 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2622 if ppc ; then
2623 def_xform_asm='#define HAVE_XFORM_ASM 0'
2624 xform_asm=no
2625 echocheck "XFORM ASM support"
2626 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2627 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2628 echores "$xform_asm"
2631 if arm ; then
2632 echocheck "ARM pld instruction"
2633 pld=no
2634 inline_asm_check '"pld [r0]"' && pld=yes
2635 echores "$pld"
2637 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2638 if test $_armv5te = "auto" ; then
2639 _armv5te=no
2640 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2642 echores "$_armv5te"
2644 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2646 echocheck "ARMv6 (SIMD instructions)"
2647 if test $_armv6 = "auto" ; then
2648 _armv6=no
2649 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2651 echores "$_armv6"
2653 echocheck "ARMv6t2 (SIMD instructions)"
2654 if test $_armv6t2 = "auto" ; then
2655 _armv6t2=no
2656 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2658 echores "$_armv6"
2660 echocheck "ARM VFP"
2661 if test $_armvfp = "auto" ; then
2662 _armvfp=no
2663 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2665 echores "$_armvfp"
2667 echocheck "ARM NEON"
2668 if test $neon = "auto" ; then
2669 neon=no
2670 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2672 echores "$neon"
2674 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2675 if test $_iwmmxt = "auto" ; then
2676 _iwmmxt=no
2677 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2679 echores "$_iwmmxt"
2682 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'
2683 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2684 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2685 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2686 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2687 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2688 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2689 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2690 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2691 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2692 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2693 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2694 test "$pld" = yes && cpuexts="PLD $cpuexts"
2695 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2696 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2697 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2698 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2699 test "$neon" = yes && cpuexts="NEON $cpuexts"
2700 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2701 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2702 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2704 # Checking kernel version...
2705 if x86_32 && linux ; then
2706 _k_verc_problem=no
2707 kernel_version=$(uname -r 2>&1)
2708 echocheck "$system_name kernel version"
2709 case "$kernel_version" in
2710 '') kernel_version="?.??"; _k_verc_fail=yes;;
2711 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2712 _k_verc_problem=yes;;
2713 esac
2714 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2715 _k_verc_fail=yes
2717 if test "$_k_verc_fail" ; then
2718 echores "$kernel_version, fail"
2719 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2720 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2721 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2722 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2723 echo "2.2.x you must upgrade it to get SSE support!"
2724 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2725 else
2726 echores "$kernel_version, ok"
2730 ######################
2731 # MAIN TESTS GO HERE #
2732 ######################
2735 echocheck "-lposix"
2736 if cflag_check -lposix ; then
2737 extra_ldflags="$extra_ldflags -lposix"
2738 echores "yes"
2739 else
2740 echores "no"
2743 echocheck "-lm"
2744 if cflag_check -lm ; then
2745 _ld_lm="-lm"
2746 echores "yes"
2747 else
2748 _ld_lm=""
2749 echores "no"
2753 echocheck "langinfo"
2754 if test "$_langinfo" = auto ; then
2755 _langinfo=no
2756 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2758 if test "$_langinfo" = yes ; then
2759 def_langinfo='#define HAVE_LANGINFO 1'
2760 else
2761 def_langinfo='#undef HAVE_LANGINFO'
2763 echores "$_langinfo"
2766 echocheck "translation support"
2767 if test "$_translation" = yes; then
2768 def_translation="#define CONFIG_TRANSLATION 1"
2769 else
2770 def_translation="#undef CONFIG_TRANSLATION"
2772 echores "$_translation"
2774 echocheck "language"
2775 # Set preferred languages, "all" uses English as main language.
2776 test -z "$language" && language=$LINGUAS
2777 test -z "$language_doc" && language_doc=$language
2778 test -z "$language_man" && language_man=$language
2779 test -z "$language_msg" && language_msg="all"
2780 language_doc=$(echo $language_doc | tr , " ")
2781 language_man=$(echo $language_man | tr , " ")
2782 language_msg=$(echo $language_msg | tr , " ")
2784 test "$language_doc" = "all" && language_doc=$doc_lang_all
2785 test "$language_man" = "all" && language_man=$man_lang_all
2786 test "$language_msg" = "all" && language_msg=$msg_lang_all
2788 if test "$_translation" != yes ; then
2789 language_msg=""
2792 # Prune non-existing translations from language lists.
2793 # Set message translation to the first available language.
2794 # Fall back on English.
2795 for lang in $language_doc ; do
2796 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2797 done
2798 language_doc=$tmp_language_doc
2799 test -z "$language_doc" && language_doc=en
2801 for lang in $language_man ; do
2802 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2803 done
2804 language_man=$tmp_language_man
2805 test -z "$language_man" && language_man=en
2807 for lang in $language_msg ; do
2808 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2809 done
2810 language_msg=$tmp_language_msg
2812 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2815 echocheck "enable sighandler"
2816 if test "$_sighandler" = yes ; then
2817 def_sighandler='#define CONFIG_SIGHANDLER 1'
2818 else
2819 def_sighandler='#undef CONFIG_SIGHANDLER'
2821 echores "$_sighandler"
2823 echocheck "runtime cpudetection"
2824 if test "$_runtime_cpudetection" = yes ; then
2825 _optimizing="Runtime CPU-Detection enabled"
2826 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2827 else
2828 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2830 echores "$_runtime_cpudetection"
2833 echocheck "restrict keyword"
2834 for restrict_keyword in restrict __restrict __restrict__ ; do
2835 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2836 if cc_check; then
2837 def_restrict_keyword=$restrict_keyword
2838 break;
2840 done
2841 if [ -n "$def_restrict_keyword" ]; then
2842 echores "$def_restrict_keyword"
2843 else
2844 echores "none"
2846 # Avoid infinite recursion loop ("#define restrict restrict")
2847 if [ "$def_restrict_keyword" != "restrict" ]; then
2848 def_restrict_keyword="#define restrict $def_restrict_keyword"
2849 else
2850 def_restrict_keyword=""
2854 echocheck "__builtin_expect"
2855 # GCC branch prediction hint
2856 cat > $TMPC << EOF
2857 static int foo(int a) {
2858 a = __builtin_expect(a, 10);
2859 return a == 10 ? 0 : 1;
2861 int main(void) { return foo(10) && foo(0); }
2863 _builtin_expect=no
2864 cc_check && _builtin_expect=yes
2865 if test "$_builtin_expect" = yes ; then
2866 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2867 else
2868 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2870 echores "$_builtin_expect"
2873 echocheck "kstat"
2874 _kstat=no
2875 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2876 if test "$_kstat" = yes ; then
2877 def_kstat="#define HAVE_LIBKSTAT 1"
2878 extra_ldflags="$extra_ldflags -lkstat"
2879 else
2880 def_kstat="#undef HAVE_LIBKSTAT"
2882 echores "$_kstat"
2885 echocheck "posix4"
2886 # required for nanosleep on some systems
2887 _posix4=no
2888 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2889 if test "$_posix4" = yes ; then
2890 extra_ldflags="$extra_ldflags -lposix4"
2892 echores "$_posix4"
2894 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2895 echocheck $func
2896 eval _$func=no
2897 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2898 if eval test "x\$_$func" = "xyes"; then
2899 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2900 echores yes
2901 else
2902 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2903 echores no
2905 done
2908 echocheck "mkstemp"
2909 _mkstemp=no
2910 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2911 if test "$_mkstemp" = yes ; then
2912 def_mkstemp='#define HAVE_MKSTEMP 1'
2913 else
2914 def_mkstemp='#define HAVE_MKSTEMP 0'
2916 echores "$_mkstemp"
2919 echocheck "nanosleep"
2920 _nanosleep=no
2921 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2922 if test "$_nanosleep" = yes ; then
2923 def_nanosleep='#define HAVE_NANOSLEEP 1'
2924 else
2925 def_nanosleep='#undef HAVE_NANOSLEEP'
2927 echores "$_nanosleep"
2930 echocheck "socklib"
2931 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2932 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2933 cat > $TMPC << EOF
2934 #include <netdb.h>
2935 #include <sys/socket.h>
2936 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2938 _socklib=no
2939 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2940 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2941 done
2942 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2943 if test $_winsock2_h = auto ; then
2944 _winsock2_h=no
2945 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2947 test "$_ld_sock" && res_comment="using $_ld_sock"
2948 echores "$_socklib"
2951 if test $_winsock2_h = yes ; then
2952 _ld_sock="-lws2_32"
2953 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2954 else
2955 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2959 echocheck "arpa/inet.h"
2960 arpa_inet_h=no
2961 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2962 header_check arpa/inet.h && arpa_inet_h=yes &&
2963 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2964 echores "$arpa_inet_h"
2967 echocheck "inet_pton()"
2968 def_inet_pton='#define HAVE_INET_PTON 0'
2969 inet_pton=no
2970 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2971 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2972 done
2973 if test $inet_pton = yes ; then
2974 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2975 def_inet_pton='#define HAVE_INET_PTON 1'
2977 echores "$inet_pton"
2980 echocheck "inet_aton()"
2981 def_inet_aton='#define HAVE_INET_ATON 0'
2982 inet_aton=no
2983 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2984 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2985 done
2986 if test $inet_aton = yes ; then
2987 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2988 def_inet_aton='#define HAVE_INET_ATON 1'
2990 echores "$inet_aton"
2993 echocheck "socklen_t"
2994 _socklen_t=no
2995 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
2996 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
2997 done
2998 if test "$_socklen_t" = yes ; then
2999 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3000 else
3001 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3003 echores "$_socklen_t"
3006 echocheck "closesocket()"
3007 _closesocket=no
3008 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
3009 if test "$_closesocket" = yes ; then
3010 def_closesocket='#define HAVE_CLOSESOCKET 1'
3011 else
3012 def_closesocket='#define HAVE_CLOSESOCKET 0'
3014 echores "$_closesocket"
3017 echocheck "networking"
3018 test $_winsock2_h = no && test $inet_pton = no &&
3019 test $inet_aton = no && networking=no
3020 if test "$networking" = yes ; then
3021 def_network='#define CONFIG_NETWORK 1'
3022 def_networking='#define CONFIG_NETWORKING 1'
3023 extra_ldflags="$extra_ldflags $_ld_sock"
3024 inputmodules="networking $inputmodules"
3025 else
3026 noinputmodules="networking $noinputmodules"
3027 def_network='#define CONFIG_NETWORK 0'
3028 def_networking='#undef CONFIG_NETWORKING'
3030 echores "$networking"
3033 echocheck "inet6"
3034 if test "$_inet6" = auto ; then
3035 cat > $TMPC << EOF
3036 #include <sys/types.h>
3037 #if !defined(_WIN32)
3038 #include <sys/socket.h>
3039 #include <netinet/in.h>
3040 #else
3041 #include <ws2tcpip.h>
3042 #endif
3043 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3045 _inet6=no
3046 if cc_check $_ld_sock ; then
3047 _inet6=yes
3050 if test "$_inet6" = yes ; then
3051 def_inet6='#define HAVE_AF_INET6 1'
3052 else
3053 def_inet6='#undef HAVE_AF_INET6'
3055 echores "$_inet6"
3058 echocheck "gethostbyname2"
3059 if test "$_gethostbyname2" = auto ; then
3060 cat > $TMPC << EOF
3061 #include <sys/types.h>
3062 #include <sys/socket.h>
3063 #include <netdb.h>
3064 int main(void) { gethostbyname2("", AF_INET); return 0; }
3066 _gethostbyname2=no
3067 if cc_check ; then
3068 _gethostbyname2=yes
3071 if test "$_gethostbyname2" = yes ; then
3072 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3073 else
3074 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3076 echores "$_gethostbyname2"
3079 echocheck "inttypes.h (required)"
3080 _inttypes=no
3081 header_check inttypes.h && _inttypes=yes
3082 echores "$_inttypes"
3084 if test "$_inttypes" = no ; then
3085 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3086 header_check sys/bitypes.h && _inttypes=yes
3087 if test "$_inttypes" = yes ; then
3088 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."
3089 else
3090 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3095 echocheck "malloc.h"
3096 _malloc=no
3097 header_check malloc.h && _malloc=yes
3098 if test "$_malloc" = yes ; then
3099 def_malloc_h='#define HAVE_MALLOC_H 1'
3100 else
3101 def_malloc_h='#define HAVE_MALLOC_H 0'
3103 echores "$_malloc"
3106 echocheck "memalign()"
3107 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3108 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3109 _memalign=no
3110 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3111 if test "$_memalign" = yes ; then
3112 def_memalign='#define HAVE_MEMALIGN 1'
3113 else
3114 def_memalign='#define HAVE_MEMALIGN 0'
3115 def_map_memalign='#define memalign(a, b) malloc(b)'
3116 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3118 echores "$_memalign"
3121 echocheck "posix_memalign()"
3122 posix_memalign=no
3123 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3124 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3125 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3126 echores "$posix_memalign"
3129 echocheck "alloca.h"
3130 _alloca=no
3131 statement_check alloca.h 'alloca(0)' && _alloca=yes
3132 if cc_check ; then
3133 def_alloca_h='#define HAVE_ALLOCA_H 1'
3134 else
3135 def_alloca_h='#undef HAVE_ALLOCA_H'
3137 echores "$_alloca"
3140 echocheck "fastmemcpy"
3141 if test "$_fastmemcpy" = yes ; then
3142 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3143 else
3144 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3146 echores "$_fastmemcpy"
3149 echocheck "mman.h"
3150 _mman=no
3151 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3152 if test "$_mman" = yes ; then
3153 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3154 else
3155 def_mman_h='#undef HAVE_SYS_MMAN_H'
3156 os2 && need_mmap=yes
3158 echores "$_mman"
3160 _mman_has_map_failed=no
3161 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3162 if test "$_mman_has_map_failed" = yes ; then
3163 def_mman_has_map_failed=''
3164 else
3165 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3168 echocheck "dynamic loader"
3169 _dl=no
3170 for _ld_tmp in "" "-ldl"; do
3171 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3172 done
3173 if test "$_dl" = yes ; then
3174 def_dl='#define HAVE_LIBDL 1'
3175 else
3176 def_dl='#undef HAVE_LIBDL'
3178 echores "$_dl"
3181 echocheck "dynamic a/v plugins support"
3182 if test "$_dl" = no ; then
3183 _dynamic_plugins=no
3185 if test "$_dynamic_plugins" = yes ; then
3186 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3187 else
3188 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3190 echores "$_dynamic_plugins"
3193 def_threads='#define HAVE_THREADS 0'
3195 echocheck "pthread"
3196 if linux ; then
3197 THREAD_CFLAGS=-D_REENTRANT
3198 elif freebsd || netbsd || openbsd || bsdos ; then
3199 THREAD_CFLAGS=-D_THREAD_SAFE
3201 if test "$_pthreads" = auto ; then
3202 cat > $TMPC << EOF
3203 #include <pthread.h>
3204 static void *func(void *arg) { return arg; }
3205 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3207 _pthreads=no
3208 if ! hpux ; then
3209 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3210 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3211 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3212 done
3215 if test "$_pthreads" = yes ; then
3216 test $_ld_pthread && res_comment="using $_ld_pthread"
3217 def_pthreads='#define HAVE_PTHREADS 1'
3218 def_threads='#define HAVE_THREADS 1'
3219 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3220 else
3221 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3222 def_pthreads='#undef HAVE_PTHREADS'
3223 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3224 mingw32 || _win32dll=no
3226 echores "$_pthreads"
3228 if cygwin ; then
3229 if test "$_pthreads" = yes ; then
3230 def_pthread_cache="#define PTHREAD_CACHE 1"
3231 else
3232 _stream_cache=no
3233 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3237 echocheck "w32threads"
3238 if test "$_pthreads" = yes ; then
3239 res_comment="using pthread instead"
3240 _w32threads=no
3242 if test "$_w32threads" = auto ; then
3243 _w32threads=no
3244 mingw32 && _w32threads=yes
3246 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3247 echores "$_w32threads"
3249 echocheck "rpath"
3250 if test "$_rpath" = yes ; then
3251 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3252 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3253 done
3254 extra_ldflags=$tmp
3256 echores "$_rpath"
3258 echocheck "iconv"
3259 if test "$_iconv" = auto ; then
3260 cat > $TMPC << EOF
3261 #include <stdio.h>
3262 #include <unistd.h>
3263 #include <iconv.h>
3264 #define INBUFSIZE 1024
3265 #define OUTBUFSIZE 4096
3267 char inbuffer[INBUFSIZE];
3268 char outbuffer[OUTBUFSIZE];
3270 int main(void) {
3271 size_t numread;
3272 iconv_t icdsc;
3273 char *tocode="UTF-8";
3274 char *fromcode="cp1250";
3275 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3276 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3277 char *iptr=inbuffer;
3278 char *optr=outbuffer;
3279 size_t inleft=numread;
3280 size_t outleft=OUTBUFSIZE;
3281 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3282 != (size_t)(-1)) {
3283 write(1, outbuffer, OUTBUFSIZE - outleft);
3286 if (iconv_close(icdsc) == -1)
3289 return 0;
3292 _iconv=no
3293 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3294 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3295 _iconv=yes && break
3296 done
3298 if test "$_iconv" = yes ; then
3299 def_iconv='#define CONFIG_ICONV 1'
3300 else
3301 def_iconv='#undef CONFIG_ICONV'
3303 echores "$_iconv"
3306 echocheck "soundcard.h"
3307 _soundcard_h=no
3308 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3309 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3310 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3311 header_check $_soundcard_header && _soundcard_h=yes &&
3312 res_comment="$_soundcard_header" && break
3313 done
3315 if test "$_soundcard_h" = yes ; then
3316 if test $_soundcard_header = "sys/soundcard.h"; then
3317 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3318 else
3319 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3322 echores "$_soundcard_h"
3325 echocheck "sys/dvdio.h"
3326 _dvdio=no
3327 # FreeBSD 8.1 has broken dvdio.h
3328 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3329 if test "$_dvdio" = yes ; then
3330 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3331 else
3332 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3334 echores "$_dvdio"
3337 echocheck "sys/cdio.h"
3338 _cdio=no
3339 # at least OpenSolaris has a broken cdio.h
3340 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3341 if test "$_cdio" = yes ; then
3342 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3343 else
3344 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3346 echores "$_cdio"
3349 echocheck "linux/cdrom.h"
3350 _cdrom=no
3351 header_check linux/cdrom.h && _cdrom=yes
3352 if test "$_cdrom" = yes ; then
3353 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3354 else
3355 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3357 echores "$_cdrom"
3360 echocheck "dvd.h"
3361 _dvd=no
3362 header_check dvd.h && _dvd=yes
3363 if test "$_dvd" = yes ; then
3364 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3365 else
3366 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3368 echores "$_dvd"
3371 if bsdos; then
3372 echocheck "BSDI dvd.h"
3373 _bsdi_dvd=no
3374 header_check dvd.h && _bsdi_dvd=yes
3375 if test "$_bsdi_dvd" = yes ; then
3376 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3377 else
3378 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3380 echores "$_bsdi_dvd"
3381 fi #if bsdos
3384 if hpux; then
3385 # also used by AIX, but AIX does not support VCD and/or libdvdread
3386 echocheck "HP-UX SCSI header"
3387 _hpux_scsi_h=no
3388 header_check sys/scsi.h && _hpux_scsi_h=yes
3389 if test "$_hpux_scsi_h" = yes ; then
3390 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3391 else
3392 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3394 echores "$_hpux_scsi_h"
3395 fi #if hpux
3398 if sunos; then
3399 echocheck "userspace SCSI headers (Solaris)"
3400 _sol_scsi_h=no
3401 header_check sys/scsi/scsi_types.h &&
3402 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3403 _sol_scsi_h=yes
3404 if test "$_sol_scsi_h" = yes ; then
3405 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3406 else
3407 def_sol_scsi_h='#undef SOLARIS_USCSI'
3409 echores "$_sol_scsi_h"
3410 fi #if sunos
3413 echocheck "termcap"
3414 if test "$_termcap" = auto ; then
3415 _termcap=no
3416 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3417 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3418 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3419 done
3421 if test "$_termcap" = yes ; then
3422 def_termcap='#define HAVE_TERMCAP 1'
3423 test $_ld_tmp && res_comment="using $_ld_tmp"
3424 else
3425 def_termcap='#undef HAVE_TERMCAP'
3427 echores "$_termcap"
3430 echocheck "termios"
3431 def_termios='#undef HAVE_TERMIOS'
3432 def_termios_h='#undef HAVE_TERMIOS_H'
3433 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3434 if test "$_termios" = auto ; then
3435 _termios=no
3436 for _termios_header in "termios.h" "sys/termios.h"; do
3437 header_check $_termios_header && _termios=yes &&
3438 res_comment="using $_termios_header" && break
3439 done
3442 if test "$_termios" = yes ; then
3443 def_termios='#define HAVE_TERMIOS 1'
3444 if test "$_termios_header" = "termios.h" ; then
3445 def_termios_h='#define HAVE_TERMIOS_H 1'
3446 else
3447 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3450 echores "$_termios"
3453 echocheck "shm"
3454 if test "$_shm" = auto ; then
3455 _shm=no
3456 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3458 if test "$_shm" = yes ; then
3459 def_shm='#define HAVE_SHM 1'
3460 else
3461 def_shm='#undef HAVE_SHM'
3463 echores "$_shm"
3466 echocheck "strsep()"
3467 _strsep=no
3468 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3469 if test "$_strsep" = yes ; then
3470 def_strsep='#define HAVE_STRSEP 1'
3471 need_strsep=no
3472 else
3473 def_strsep='#undef HAVE_STRSEP'
3474 need_strsep=yes
3476 echores "$_strsep"
3479 echocheck "vsscanf()"
3480 cat > $TMPC << EOF
3481 #define _ISOC99_SOURCE
3482 #include <stdarg.h>
3483 #include <stdio.h>
3484 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3486 _vsscanf=no
3487 cc_check && _vsscanf=yes
3488 if test "$_vsscanf" = yes ; then
3489 def_vsscanf='#define HAVE_VSSCANF 1'
3490 need_vsscanf=no
3491 else
3492 def_vsscanf='#undef HAVE_VSSCANF'
3493 need_vsscanf=yes
3495 echores "$_vsscanf"
3498 echocheck "swab()"
3499 _swab=no
3500 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3501 if test "$_swab" = yes ; then
3502 def_swab='#define HAVE_SWAB 1'
3503 need_swab=no
3504 else
3505 def_swab='#undef HAVE_SWAB'
3506 need_swab=yes
3508 echores "$_swab"
3510 echocheck "POSIX select()"
3511 cat > $TMPC << EOF
3512 #include <stdio.h>
3513 #include <stdlib.h>
3514 #include <sys/types.h>
3515 #include <string.h>
3516 #include <sys/time.h>
3517 #include <unistd.h>
3518 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3520 _posix_select=no
3521 def_posix_select='#undef HAVE_POSIX_SELECT'
3522 #select() of kLIBC (OS/2) supports socket only
3523 ! os2 && cc_check && _posix_select=yes &&
3524 def_posix_select='#define HAVE_POSIX_SELECT 1'
3525 echores "$_posix_select"
3528 echocheck "audio select()"
3529 if test "$_select" = no ; then
3530 def_select='#undef HAVE_AUDIO_SELECT'
3531 elif test "$_select" = yes ; then
3532 def_select='#define HAVE_AUDIO_SELECT 1'
3534 echores "$_select"
3537 echocheck "gettimeofday()"
3538 _gettimeofday=no
3539 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3540 if test "$_gettimeofday" = yes ; then
3541 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3542 need_gettimeofday=no
3543 else
3544 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3545 need_gettimeofday=yes
3547 echores "$_gettimeofday"
3550 echocheck "glob()"
3551 _glob=no
3552 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3553 if test "$_glob" = yes ; then
3554 def_glob='#define HAVE_GLOB 1'
3555 need_glob=no
3556 else
3557 def_glob='#undef HAVE_GLOB'
3558 need_glob=yes
3560 echores "$_glob"
3563 echocheck "setenv()"
3564 _setenv=no
3565 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3566 if test "$_setenv" = yes ; then
3567 def_setenv='#define HAVE_SETENV 1'
3568 need_setenv=no
3569 else
3570 def_setenv='#undef HAVE_SETENV'
3571 need_setenv=yes
3573 echores "$_setenv"
3576 echocheck "setmode()"
3577 _setmode=no
3578 def_setmode='#define HAVE_SETMODE 0'
3579 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3580 echores "$_setmode"
3583 if sunos; then
3584 echocheck "sysi86()"
3585 _sysi86=no
3586 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3587 if test "$_sysi86" = yes ; then
3588 def_sysi86='#define HAVE_SYSI86 1'
3589 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3590 else
3591 def_sysi86='#undef HAVE_SYSI86'
3593 echores "$_sysi86"
3594 fi #if sunos
3597 echocheck "sys/sysinfo.h"
3598 _sys_sysinfo=no
3599 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3600 if test "$_sys_sysinfo" = yes ; then
3601 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3602 else
3603 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3605 echores "$_sys_sysinfo"
3608 if darwin; then
3610 echocheck "Mac OS X Finder Support"
3611 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3612 if test "$_macosx_finder" = yes ; then
3613 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3614 extra_ldflags="$extra_ldflags -framework Carbon"
3616 echores "$_macosx_finder"
3618 echocheck "Mac OS X Bundle file locations"
3619 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3620 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3621 if test "$_macosx_bundle" = yes ; then
3622 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3623 extra_ldflags="$extra_ldflags -framework Carbon"
3625 echores "$_macosx_bundle"
3627 echocheck "Apple Remote"
3628 if test "$_apple_remote" = auto ; then
3629 _apple_remote=no
3630 cat > $TMPC <<EOF
3631 #include <stdio.h>
3632 #include <IOKit/IOCFPlugIn.h>
3633 int main(void) {
3634 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3635 CFMutableDictionaryRef hidMatchDictionary;
3636 IOReturn ioReturnValue;
3638 // Set up a matching dictionary to search the I/O Registry by class.
3639 // name for all HID class devices
3640 hidMatchDictionary = IOServiceMatching("AppleIRController");
3642 // Now search I/O Registry for matching devices.
3643 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3644 hidMatchDictionary, &hidObjectIterator);
3646 // If search is unsuccessful, return nonzero.
3647 if (ioReturnValue != kIOReturnSuccess ||
3648 !IOIteratorIsValid(hidObjectIterator)) {
3649 return 1;
3651 return 0;
3654 cc_check -framework IOKit && _apple_remote=yes
3656 if test "$_apple_remote" = yes ; then
3657 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3658 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3659 else
3660 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3662 echores "$_apple_remote"
3664 fi #if darwin
3666 if linux; then
3668 echocheck "Apple IR"
3669 if test "$_apple_ir" = auto ; then
3670 _apple_ir=no
3671 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3673 if test "$_apple_ir" = yes ; then
3674 def_apple_ir='#define CONFIG_APPLE_IR 1'
3675 else
3676 def_apple_ir='#undef CONFIG_APPLE_IR'
3678 echores "$_apple_ir"
3679 fi #if linux
3681 echocheck "pkg-config"
3682 _pkg_config=pkg-config
3683 if $($_pkg_config --version > /dev/null 2>&1); then
3684 if test "$_ld_static"; then
3685 _pkg_config="$_pkg_config --static"
3687 echores "yes"
3688 else
3689 _pkg_config=false
3690 echores "no"
3694 echocheck "Samba support (libsmbclient)"
3695 if test "$_smb" = yes; then
3696 extra_ldflags="$extra_ldflags -lsmbclient"
3698 if test "$_smb" = auto; then
3699 _smb=no
3700 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3701 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3702 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3703 done
3706 if test "$_smb" = yes; then
3707 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3708 inputmodules="smb $inputmodules"
3709 else
3710 def_smb="#undef CONFIG_LIBSMBCLIENT"
3711 noinputmodules="smb $noinputmodules"
3713 echores "$_smb"
3716 #########
3717 # VIDEO #
3718 #########
3721 echocheck "tdfxfb"
3722 if test "$_tdfxfb" = yes ; then
3723 def_tdfxfb='#define CONFIG_TDFXFB 1'
3724 vomodules="tdfxfb $vomodules"
3725 else
3726 def_tdfxfb='#undef CONFIG_TDFXFB'
3727 novomodules="tdfxfb $novomodules"
3729 echores "$_tdfxfb"
3731 echocheck "s3fb"
3732 if test "$_s3fb" = yes ; then
3733 def_s3fb='#define CONFIG_S3FB 1'
3734 vomodules="s3fb $vomodules"
3735 else
3736 def_s3fb='#undef CONFIG_S3FB'
3737 novomodules="s3fb $novomodules"
3739 echores "$_s3fb"
3741 echocheck "wii"
3742 if test "$_wii" = yes ; then
3743 def_wii='#define CONFIG_WII 1'
3744 vomodules="wii $vomodules"
3745 else
3746 def_wii='#undef CONFIG_WII'
3747 novomodules="wii $novomodules"
3749 echores "$_wii"
3751 echocheck "tdfxvid"
3752 if test "$_tdfxvid" = yes ; then
3753 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3754 vomodules="tdfx_vid $vomodules"
3755 else
3756 def_tdfxvid='#undef CONFIG_TDFX_VID'
3757 novomodules="tdfx_vid $novomodules"
3759 echores "$_tdfxvid"
3761 echocheck "xvr100"
3762 if test "$_xvr100" = auto ; then
3763 cat > $TMPC << EOF
3764 #include <unistd.h>
3765 #include <sys/fbio.h>
3766 #include <sys/visual_io.h>
3767 int main(void) {
3768 struct vis_identifier ident;
3769 struct fbgattr attr;
3770 ioctl(0, VIS_GETIDENTIFIER, &ident);
3771 ioctl(0, FBIOGATTR, &attr);
3772 return 0;
3775 _xvr100=no
3776 cc_check && _xvr100=yes
3778 if test "$_xvr100" = yes ; then
3779 def_xvr100='#define CONFIG_XVR100 1'
3780 vomodules="xvr100 $vomodules"
3781 else
3782 def_tdfxvid='#undef CONFIG_XVR100'
3783 novomodules="xvr100 $novomodules"
3785 echores "$_xvr100"
3787 echocheck "tga"
3788 if test "$_tga" = yes ; then
3789 def_tga='#define CONFIG_TGA 1'
3790 vomodules="tga $vomodules"
3791 else
3792 def_tga='#undef CONFIG_TGA'
3793 novomodules="tga $novomodules"
3795 echores "$_tga"
3798 echocheck "md5sum support"
3799 if test "$_md5sum" = yes; then
3800 def_md5sum="#define CONFIG_MD5SUM 1"
3801 vomodules="md5sum $vomodules"
3802 else
3803 def_md5sum="#undef CONFIG_MD5SUM"
3804 novomodules="md5sum $novomodules"
3806 echores "$_md5sum"
3809 echocheck "yuv4mpeg support"
3810 if test "$_yuv4mpeg" = yes; then
3811 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3812 vomodules="yuv4mpeg $vomodules"
3813 else
3814 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3815 novomodules="yuv4mpeg $novomodules"
3817 echores "$_yuv4mpeg"
3820 echocheck "bl"
3821 if test "$_bl" = yes ; then
3822 def_bl='#define CONFIG_BL 1'
3823 vomodules="bl $vomodules"
3824 else
3825 def_bl='#undef CONFIG_BL'
3826 novomodules="bl $novomodules"
3828 echores "$_bl"
3831 echocheck "DirectFB"
3832 if test "$_directfb" = auto ; then
3833 _directfb=no
3834 cat > $TMPC << EOF
3835 #include <directfb.h>
3836 #include <directfb_version.h>
3837 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3838 #error "DirectFB version too old."
3839 #endif
3840 int main(void) { DirectFBInit(0, 0); return 0; }
3842 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3843 cc_check $_inc_tmp -ldirectfb &&
3844 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3845 done
3847 if test "$_directfb" = yes ; then
3848 def_directfb='#define CONFIG_DIRECTFB 1'
3849 vomodules="directfb dfbmga $vomodules"
3850 libs_mplayer="$libs_mplayer -ldirectfb"
3851 else
3852 def_directfb='#undef CONFIG_DIRECTFB'
3853 novomodules="directfb dfbmga $novomodules"
3855 echores "$_directfb"
3858 echocheck "X11 headers presence"
3859 _x11_headers="no"
3860 res_comment="check if the dev(el) packages are installed"
3861 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3862 if test -f "$I/X11/Xlib.h" ; then
3863 _x11_headers="yes"
3864 res_comment=""
3865 break
3867 done
3868 if test $_cross_compile = no; then
3869 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3870 /usr/include/X11R6 /usr/openwin/include ; do
3871 if test -f "$I/X11/Xlib.h" ; then
3872 extra_cflags="$extra_cflags -I$I"
3873 _x11_headers="yes"
3874 res_comment="using $I"
3875 break
3877 done
3879 echores "$_x11_headers"
3882 echocheck "X11"
3883 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3884 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3885 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3886 -L/usr/lib ; do
3887 if netbsd; then
3888 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3889 else
3890 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3892 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3893 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3894 done
3896 if test "$_x11" = yes ; then
3897 def_x11='#define CONFIG_X11 1'
3898 vomodules="x11 xover $vomodules"
3899 else
3900 _x11=no
3901 def_x11='#undef CONFIG_X11'
3902 novomodules="x11 $novomodules"
3903 res_comment="check if the dev(el) packages are installed"
3904 # disable stuff that depends on X
3905 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3907 echores "$_x11"
3909 echocheck "Xss screensaver extensions"
3910 if test "$_xss" = auto ; then
3911 _xss=no
3912 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3914 if test "$_xss" = yes ; then
3915 def_xss='#define CONFIG_XSS 1'
3916 libs_mplayer="$libs_mplayer -lXss"
3917 else
3918 def_xss='#undef CONFIG_XSS'
3920 echores "$_xss"
3922 echocheck "DPMS"
3923 _xdpms3=no
3924 _xdpms4=no
3925 if test "$_x11" = yes ; then
3926 cat > $TMPC <<EOF
3927 #include <X11/Xmd.h>
3928 #include <X11/Xlib.h>
3929 #include <X11/Xutil.h>
3930 #include <X11/Xatom.h>
3931 #include <X11/extensions/dpms.h>
3932 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3934 cc_check -lXdpms && _xdpms3=yes
3935 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3937 if test "$_xdpms4" = yes ; then
3938 def_xdpms='#define CONFIG_XDPMS 1'
3939 res_comment="using Xdpms 4"
3940 echores "yes"
3941 elif test "$_xdpms3" = yes ; then
3942 def_xdpms='#define CONFIG_XDPMS 1'
3943 libs_mplayer="$libs_mplayer -lXdpms"
3944 res_comment="using Xdpms 3"
3945 echores "yes"
3946 else
3947 def_xdpms='#undef CONFIG_XDPMS'
3948 echores "no"
3952 echocheck "Xv"
3953 if test "$_xv" = auto ; then
3954 _xv=no
3955 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3958 if test "$_xv" = yes ; then
3959 def_xv='#define CONFIG_XV 1'
3960 libs_mplayer="$libs_mplayer -lXv"
3961 vomodules="xv $vomodules"
3962 else
3963 def_xv='#undef CONFIG_XV'
3964 novomodules="xv $novomodules"
3966 echores "$_xv"
3969 echocheck "XvMC"
3970 if test "$_xv" = yes && test "$_xvmc" != no ; then
3971 _xvmc=no
3972 cat > $TMPC <<EOF
3973 #include <X11/Xlib.h>
3974 #include <X11/extensions/Xvlib.h>
3975 #include <X11/extensions/XvMClib.h>
3976 int main(void) {
3977 XvMCQueryExtension(0, 0, 0);
3978 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
3979 return 0; }
3981 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
3982 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
3983 done
3985 if test "$_xvmc" = yes ; then
3986 def_xvmc='#define CONFIG_XVMC 1'
3987 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
3988 vomodules="xvmc $vomodules"
3989 res_comment="using $_xvmclib"
3990 else
3991 def_xvmc='#define CONFIG_XVMC 0'
3992 novomodules="xvmc $novomodules"
3994 echores "$_xvmc"
3997 echocheck "VDPAU"
3998 if test "$_vdpau" = auto ; then
3999 _vdpau=no
4000 if test "$_dl" = yes ; then
4001 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
4004 if test "$_vdpau" = yes ; then
4005 def_vdpau='#define CONFIG_VDPAU 1'
4006 libs_mplayer="$libs_mplayer -lvdpau"
4007 vomodules="vdpau $vomodules"
4008 else
4009 def_vdpau='#define CONFIG_VDPAU 0'
4010 novomodules="vdpau $novomodules"
4012 echores "$_vdpau"
4015 echocheck "Xinerama"
4016 if test "$_xinerama" = auto ; then
4017 _xinerama=no
4018 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
4021 if test "$_xinerama" = yes ; then
4022 def_xinerama='#define CONFIG_XINERAMA 1'
4023 libs_mplayer="$libs_mplayer -lXinerama"
4024 else
4025 def_xinerama='#undef CONFIG_XINERAMA'
4027 echores "$_xinerama"
4030 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4031 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4032 # named 'X extensions' or something similar.
4033 # This check may be useful for future mplayer versions (to change resolution)
4034 # If you run into problems, remove '-lXxf86vm'.
4035 echocheck "Xxf86vm"
4036 if test "$_vm" = auto ; then
4037 _vm=no
4038 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4040 if test "$_vm" = yes ; then
4041 def_vm='#define CONFIG_XF86VM 1'
4042 libs_mplayer="$libs_mplayer -lXxf86vm"
4043 else
4044 def_vm='#undef CONFIG_XF86VM'
4046 echores "$_vm"
4048 # Check for the presence of special keycodes, like audio control buttons
4049 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4050 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4051 # have these new keycodes.
4052 echocheck "XF86keysym"
4053 if test "$_xf86keysym" = auto; then
4054 _xf86keysym=no
4055 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4057 if test "$_xf86keysym" = yes ; then
4058 def_xf86keysym='#define CONFIG_XF86XK 1'
4059 else
4060 def_xf86keysym='#undef CONFIG_XF86XK'
4062 echores "$_xf86keysym"
4064 echocheck "DGA"
4065 if test "$_dga2" = auto && test "$_x11" = yes ; then
4066 _dga2=no
4067 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4069 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4070 _dga1=no
4071 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4074 _dga=no
4075 def_dga='#undef CONFIG_DGA'
4076 def_dga1='#undef CONFIG_DGA1'
4077 def_dga2='#undef CONFIG_DGA2'
4078 if test "$_dga1" = yes ; then
4079 _dga=yes
4080 def_dga1='#define CONFIG_DGA1 1'
4081 res_comment="using DGA 1.0"
4082 elif test "$_dga2" = yes ; then
4083 _dga=yes
4084 def_dga2='#define CONFIG_DGA2 1'
4085 res_comment="using DGA 2.0"
4087 if test "$_dga" = yes ; then
4088 def_dga='#define CONFIG_DGA 1'
4089 libs_mplayer="$libs_mplayer -lXxf86dga"
4090 vomodules="dga $vomodules"
4091 else
4092 novomodules="dga $novomodules"
4094 echores "$_dga"
4097 echocheck "3dfx"
4098 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4099 def_3dfx='#define CONFIG_3DFX 1'
4100 vomodules="3dfx $vomodules"
4101 else
4102 def_3dfx='#undef CONFIG_3DFX'
4103 novomodules="3dfx $novomodules"
4105 echores "$_3dfx"
4108 echocheck "GGI"
4109 if test "$_ggi" = auto ; then
4110 _ggi=no
4111 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4113 if test "$_ggi" = yes ; then
4114 def_ggi='#define CONFIG_GGI 1'
4115 libs_mplayer="$libs_mplayer -lggi"
4116 vomodules="ggi $vomodules"
4117 else
4118 def_ggi='#undef CONFIG_GGI'
4119 novomodules="ggi $novomodules"
4121 echores "$_ggi"
4123 echocheck "GGI extension: libggiwmh"
4124 if test "$_ggiwmh" = auto ; then
4125 _ggiwmh=no
4126 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4128 # needed to get right output on obscure combination
4129 # like --disable-ggi --enable-ggiwmh
4130 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4131 def_ggiwmh='#define CONFIG_GGIWMH 1'
4132 libs_mplayer="$libs_mplayer -lggiwmh"
4133 else
4134 _ggiwmh=no
4135 def_ggiwmh='#undef CONFIG_GGIWMH'
4137 echores "$_ggiwmh"
4140 echocheck "AA"
4141 if test "$_aa" = auto ; then
4142 cat > $TMPC << EOF
4143 #include <aalib.h>
4144 int main(void) {
4145 aa_context *c;
4146 aa_renderparams *p;
4147 aa_init(0, 0, 0);
4148 c = aa_autoinit(&aa_defparams);
4149 p = aa_getrenderparams();
4150 aa_autoinitkbd(c, 0);
4151 return 0; }
4153 _aa=no
4154 for _ld_tmp in "-laa" ; do
4155 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4156 done
4158 if test "$_aa" = yes ; then
4159 def_aa='#define CONFIG_AA 1'
4160 if cygwin ; then
4161 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4163 vomodules="aa $vomodules"
4164 else
4165 def_aa='#undef CONFIG_AA'
4166 novomodules="aa $novomodules"
4168 echores "$_aa"
4171 echocheck "CACA"
4172 if test "$_caca" = auto ; then
4173 _caca=no
4174 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4175 cat > $TMPC << EOF
4176 #include <caca.h>
4177 #ifdef CACA_API_VERSION_1
4178 #include <caca0.h>
4179 #endif
4180 int main(void) { caca_init(); return 0; }
4182 cc_check $(caca-config --libs) && _caca=yes
4185 if test "$_caca" = yes ; then
4186 def_caca='#define CONFIG_CACA 1'
4187 extra_cflags="$extra_cflags $(caca-config --cflags)"
4188 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4189 vomodules="caca $vomodules"
4190 else
4191 def_caca='#undef CONFIG_CACA'
4192 novomodules="caca $novomodules"
4194 echores "$_caca"
4197 echocheck "SVGAlib"
4198 if test "$_svga" = auto ; then
4199 _svga=no
4200 header_check vga.h -lvga $_ld_lm && _svga=yes
4202 if test "$_svga" = yes ; then
4203 def_svga='#define CONFIG_SVGALIB 1'
4204 libs_mplayer="$libs_mplayer -lvga"
4205 vomodules="svga $vomodules"
4206 else
4207 def_svga='#undef CONFIG_SVGALIB'
4208 novomodules="svga $novomodules"
4210 echores "$_svga"
4213 echocheck "FBDev"
4214 if test "$_fbdev" = auto ; then
4215 _fbdev=no
4216 linux && _fbdev=yes
4218 if test "$_fbdev" = yes ; then
4219 def_fbdev='#define CONFIG_FBDEV 1'
4220 vomodules="fbdev $vomodules"
4221 else
4222 def_fbdev='#undef CONFIG_FBDEV'
4223 novomodules="fbdev $novomodules"
4225 echores "$_fbdev"
4229 echocheck "DVB"
4230 if test "$_dvb" = auto ; then
4231 _dvb=no
4232 cat >$TMPC << EOF
4233 #include <poll.h>
4234 #include <sys/ioctl.h>
4235 #include <stdio.h>
4236 #include <time.h>
4237 #include <unistd.h>
4238 #include <linux/dvb/dmx.h>
4239 #include <linux/dvb/frontend.h>
4240 #include <linux/dvb/video.h>
4241 #include <linux/dvb/audio.h>
4242 int main(void) {return 0;}
4244 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4245 cc_check $_inc_tmp && _dvb=yes &&
4246 extra_cflags="$extra_cflags $_inc_tmp" && break
4247 done
4249 echores "$_dvb"
4250 if test "$_dvb" = yes ; then
4251 _dvbin=yes
4252 inputmodules="dvb $inputmodules"
4253 def_dvb='#define CONFIG_DVB 1'
4254 def_dvbin='#define CONFIG_DVBIN 1'
4255 aomodules="mpegpes(dvb) $aomodules"
4256 vomodules="mpegpes(dvb) $vomodules"
4257 else
4258 _dvbin=no
4259 noinputmodules="dvb $noinputmodules"
4260 def_dvb='#undef CONFIG_DVB'
4261 def_dvbin='#undef CONFIG_DVBIN '
4262 aomodules="mpegpes(file) $aomodules"
4263 vomodules="mpegpes(file) $vomodules"
4267 if darwin; then
4269 echocheck "QuickTime"
4270 if test "$quicktime" = auto ; then
4271 quicktime=no
4272 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4274 if test "$quicktime" = yes ; then
4275 extra_ldflags="$extra_ldflags -framework QuickTime"
4276 def_quicktime='#define CONFIG_QUICKTIME 1'
4277 else
4278 def_quicktime='#undef CONFIG_QUICKTIME'
4279 _quartz=no
4281 echores $quicktime
4283 echocheck "Quartz"
4284 if test "$_quartz" = auto ; then
4285 _quartz=no
4286 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4288 if test "$_quartz" = yes ; then
4289 libs_mplayer="$libs_mplayer -framework Carbon"
4290 def_quartz='#define CONFIG_QUARTZ 1'
4291 vomodules="quartz $vomodules"
4292 else
4293 def_quartz='#undef CONFIG_QUARTZ'
4294 novomodules="quartz $novomodules"
4296 echores $_quartz
4298 echocheck "CoreVideo"
4299 if test "$_corevideo" = auto ; then
4300 cat > $TMPC <<EOF
4301 #include <Carbon/Carbon.h>
4302 #include <CoreServices/CoreServices.h>
4303 #include <OpenGL/OpenGL.h>
4304 #include <QuartzCore/CoreVideo.h>
4305 int main(void) { return 0; }
4307 _corevideo=no
4308 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4310 if test "$_corevideo" = yes ; then
4311 vomodules="corevideo $vomodules"
4312 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4313 def_corevideo='#define CONFIG_COREVIDEO 1'
4314 else
4315 novomodules="corevideo $novomodules"
4316 def_corevideo='#undef CONFIG_COREVIDEO'
4318 echores "$_corevideo"
4320 fi #if darwin
4323 echocheck "PNG support"
4324 if test "$_png" = auto ; then
4325 _png=no
4326 if irix ; then
4327 # Don't check for -lpng on irix since it has its own libpng
4328 # incompatible with the GNU libpng
4329 res_comment="disabled on irix (not GNU libpng)"
4330 else
4331 cat > $TMPC << EOF
4332 #include <stdio.h>
4333 #include <string.h>
4334 #include <png.h>
4335 int main(void) {
4336 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4337 printf("libpng: %s\n", png_libpng_ver);
4338 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4341 cc_check -lpng -lz $_ld_lm && _png=yes
4344 echores "$_png"
4345 if test "$_png" = yes ; then
4346 def_png='#define CONFIG_PNG 1'
4347 extra_ldflags="$extra_ldflags -lpng -lz"
4348 else
4349 def_png='#undef CONFIG_PNG'
4352 echocheck "MNG support"
4353 if test "$_mng" = auto ; then
4354 _mng=no
4355 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4357 echores "$_mng"
4358 if test "$_mng" = yes ; then
4359 def_mng='#define CONFIG_MNG 1'
4360 extra_ldflags="$extra_ldflags -lmng -lz"
4361 else
4362 def_mng='#undef CONFIG_MNG'
4365 echocheck "JPEG support"
4366 if test "$_jpeg" = auto ; then
4367 _jpeg=no
4368 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4370 echores "$_jpeg"
4372 if test "$_jpeg" = yes ; then
4373 def_jpeg='#define CONFIG_JPEG 1'
4374 vomodules="jpeg $vomodules"
4375 extra_ldflags="$extra_ldflags -ljpeg"
4376 else
4377 def_jpeg='#undef CONFIG_JPEG'
4378 novomodules="jpeg $novomodules"
4383 echocheck "PNM support"
4384 if test "$_pnm" = yes; then
4385 def_pnm="#define CONFIG_PNM 1"
4386 vomodules="pnm $vomodules"
4387 else
4388 def_pnm="#undef CONFIG_PNM"
4389 novomodules="pnm $novomodules"
4391 echores "$_pnm"
4395 echocheck "GIF support"
4396 # This is to appease people who want to force gif support.
4397 # If it is forced to yes, then we still do checks to determine
4398 # which gif library to use.
4399 if test "$_gif" = yes ; then
4400 _force_gif=yes
4401 _gif=auto
4404 if test "$_gif" = auto ; then
4405 _gif=no
4406 for _ld_gif in "-lungif" "-lgif" ; do
4407 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4408 done
4411 # If no library was found, and the user wants support forced,
4412 # then we force it on with libgif, as this is the safest
4413 # assumption IMHO. (libungif & libregif both create symbolic
4414 # links to libgif. We also assume that no x11 support is needed,
4415 # because if you are forcing this, then you _should_ know what
4416 # you are doing. [ Besides, package maintainers should never
4417 # have compiled x11 deps into libungif in the first place. ] )
4418 # </rant>
4419 # --Joey
4420 if test "$_force_gif" = yes && test "$_gif" = no ; then
4421 _gif=yes
4422 _ld_gif="-lgif"
4425 if test "$_gif" = yes ; then
4426 def_gif='#define CONFIG_GIF 1'
4427 codecmodules="gif $codecmodules"
4428 vomodules="gif89a $vomodules"
4429 res_comment="old version, some encoding functions disabled"
4430 def_gif_4='#undef CONFIG_GIF_4'
4431 extra_ldflags="$extra_ldflags $_ld_gif"
4433 cat > $TMPC << EOF
4434 #include <signal.h>
4435 #include <stdio.h>
4436 #include <stdlib.h>
4437 #include <gif_lib.h>
4438 static void catch(int sig) { exit(1); }
4439 int main(void) {
4440 signal(SIGSEGV, catch); // catch segfault
4441 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4442 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4443 return 0;
4446 if cc_check "$_ld_gif" ; then
4447 def_gif_4='#define CONFIG_GIF_4 1'
4448 res_comment=""
4450 else
4451 def_gif='#undef CONFIG_GIF'
4452 def_gif_4='#undef CONFIG_GIF_4'
4453 novomodules="gif89a $novomodules"
4454 nocodecmodules="gif $nocodecmodules"
4456 echores "$_gif"
4459 case "$_gif" in yes*)
4460 echocheck "broken giflib workaround"
4461 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4463 cat > $TMPC << EOF
4464 #include <stdio.h>
4465 #include <gif_lib.h>
4466 int main(void) {
4467 GifFileType gif = {.UserData = NULL};
4468 printf("UserData is at address %p\n", gif.UserData);
4469 return 0;
4472 if cc_check "$_ld_gif" ; then
4473 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4474 echores "disabled"
4475 else
4476 echores "enabled"
4479 esac
4482 echocheck "VESA support"
4483 if test "$_vesa" = auto ; then
4484 _vesa=no
4485 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4487 if test "$_vesa" = yes ; then
4488 def_vesa='#define CONFIG_VESA 1'
4489 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4490 vomodules="vesa $vomodules"
4491 else
4492 def_vesa='#undef CONFIG_VESA'
4493 novomodules="vesa $novomodules"
4495 echores "$_vesa"
4497 #################
4498 # VIDEO + AUDIO #
4499 #################
4502 echocheck "SDL"
4503 _inc_tmp=""
4504 _ld_tmp=""
4505 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4506 if test -z "$_sdlconfig" ; then
4507 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4508 _sdlconfig="sdl-config"
4509 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4510 _sdlconfig="sdl11-config"
4511 else
4512 _sdlconfig=false
4515 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4516 cat > $TMPC << EOF
4517 #ifdef CONFIG_SDL_SDL_H
4518 #include <SDL/SDL.h>
4519 #else
4520 #include <SDL.h>
4521 #endif
4522 #ifndef __APPLE__
4523 // we allow SDL hacking our main() only on OSX
4524 #undef main
4525 #endif
4526 int main(int argc, char *argv[]) {
4527 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4528 return 0;
4531 _sdl=no
4532 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4533 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4534 _sdl=yes
4535 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4536 break
4538 done
4539 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4540 res_comment="using $_sdlconfig"
4541 if cygwin ; then
4542 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4543 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4544 elif mingw32 ; then
4545 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4546 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4547 else
4548 _inc_tmp="$($_sdlconfig --cflags)"
4549 _ld_tmp="$($_sdlconfig --libs)"
4551 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4552 _sdl=yes
4553 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4554 # HACK for BeOS/Haiku SDL
4555 _ld_tmp="$_ld_tmp -lstdc++"
4556 _sdl=yes
4560 if test "$_sdl" = yes ; then
4561 def_sdl='#define CONFIG_SDL 1'
4562 extra_cflags="$extra_cflags $_inc_tmp"
4563 libs_mplayer="$libs_mplayer $_ld_tmp"
4564 vomodules="sdl $vomodules"
4565 aomodules="sdl $aomodules"
4566 else
4567 def_sdl='#undef CONFIG_SDL'
4568 novomodules="sdl $novomodules"
4569 noaomodules="sdl $noaomodules"
4571 echores "$_sdl"
4574 # make sure this stays below CoreVideo to avoid issues due to namespace
4575 # conflicts between -lGL and -framework OpenGL
4576 echocheck "OpenGL"
4577 #Note: this test is run even with --enable-gl since we autodetect linker flags
4578 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4579 cat > $TMPC << EOF
4580 #ifdef GL_WIN32
4581 #include <windows.h>
4582 #include <GL/gl.h>
4583 #elif defined(GL_SDL)
4584 #include <GL/gl.h>
4585 #ifdef CONFIG_SDL_SDL_H
4586 #include <SDL/SDL.h>
4587 #else
4588 #include <SDL.h>
4589 #endif
4590 #ifndef __APPLE__
4591 // we allow SDL hacking our main() only on OSX
4592 #undef main
4593 #endif
4594 #else
4595 #include <GL/gl.h>
4596 #include <X11/Xlib.h>
4597 #include <GL/glx.h>
4598 #endif
4599 int main(int argc, char *argv[]) {
4600 #ifdef GL_WIN32
4601 HDC dc;
4602 wglCreateContext(dc);
4603 #elif defined(GL_SDL)
4604 SDL_GL_SwapBuffers();
4605 #else
4606 glXCreateContext(NULL, NULL, NULL, True);
4607 #endif
4608 glFinish();
4609 return 0;
4612 _gl=no
4613 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4614 if cc_check $_ld_tmp $_ld_lm ; then
4615 _gl=yes
4616 _gl_x11=yes
4617 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4618 break
4620 done
4621 if cc_check -DGL_WIN32 -lopengl32 ; then
4622 _gl=yes
4623 _gl_win32=yes
4624 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4626 # last so it can reuse any linker etc. flags detected before
4627 if test "$_sdl" = yes ; then
4628 if cc_check -DGL_SDL ||
4629 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4630 _gl=yes
4631 _gl_sdl=yes
4632 elif cc_check -DGL_SDL -lGL ||
4633 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4634 _gl=yes
4635 _gl_sdl=yes
4636 libs_mplayer="$libs_mplayer -lGL"
4639 else
4640 _gl=no
4642 if test "$_gl" = yes ; then
4643 def_gl='#define CONFIG_GL 1'
4644 res_comment="backends:"
4645 if test "$_gl_win32" = yes ; then
4646 def_gl_win32='#define CONFIG_GL_WIN32 1'
4647 res_comment="$res_comment win32"
4649 if test "$_gl_x11" = yes ; then
4650 def_gl_x11='#define CONFIG_GL_X11 1'
4651 res_comment="$res_comment x11"
4653 if test "$_gl_sdl" = yes ; then
4654 def_gl_sdl='#define CONFIG_GL_SDL 1'
4655 res_comment="$res_comment sdl"
4657 vomodules="opengl $vomodules"
4658 else
4659 def_gl='#undef CONFIG_GL'
4660 def_gl_win32='#undef CONFIG_GL_WIN32'
4661 def_gl_x11='#undef CONFIG_GL_X11'
4662 def_gl_sdl='#undef CONFIG_GL_SDL'
4663 novomodules="opengl $novomodules"
4665 echores "$_gl"
4668 echocheck "MatrixView"
4669 if test "$_gl" = no ; then
4670 matrixview=no
4672 if test "$matrixview" = yes ; then
4673 vomodules="matrixview $vomodules"
4674 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4675 else
4676 novomodules="matrixview $novomodules"
4677 def_matrixview='#undef CONFIG_MATRIXVIEW'
4679 echores "$matrixview"
4682 if os2 ; then
4683 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4684 if test "$_kva" = auto; then
4685 _kva=no;
4686 header_check_broken os2.h kva.h -lkva && _kva=yes
4688 if test "$_kva" = yes ; then
4689 def_kva='#define CONFIG_KVA 1'
4690 libs_mplayer="$libs_mplayer -lkva"
4691 vomodules="kva $vomodules"
4692 else
4693 def_kva='#undef CONFIG_KVA'
4694 novomodules="kva $novomodules"
4696 echores "$_kva"
4697 fi #if os2
4700 if win32; then
4702 echocheck "Windows waveout"
4703 if test "$_win32waveout" = auto ; then
4704 _win32waveout=no
4705 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4707 if test "$_win32waveout" = yes ; then
4708 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4709 libs_mplayer="$libs_mplayer -lwinmm"
4710 aomodules="win32 $aomodules"
4711 else
4712 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4713 noaomodules="win32 $noaomodules"
4715 echores "$_win32waveout"
4717 echocheck "Direct3D"
4718 if test "$_direct3d" = auto ; then
4719 _direct3d=no
4720 header_check d3d9.h && _direct3d=yes
4722 if test "$_direct3d" = yes ; then
4723 def_direct3d='#define CONFIG_DIRECT3D 1'
4724 vomodules="direct3d $vomodules"
4725 else
4726 def_direct3d='#undef CONFIG_DIRECT3D'
4727 novomodules="direct3d $novomodules"
4729 echores "$_direct3d"
4731 echocheck "Directx"
4732 if test "$_directx" = auto ; then
4733 cat > $TMPC << EOF
4734 #include <ddraw.h>
4735 #include <dsound.h>
4736 int main(void) { return 0; }
4738 _directx=no
4739 cc_check -lgdi32 && _directx=yes
4741 if test "$_directx" = yes ; then
4742 def_directx='#define CONFIG_DIRECTX 1'
4743 libs_mplayer="$libs_mplayer -lgdi32"
4744 vomodules="directx $vomodules"
4745 aomodules="dsound $aomodules"
4746 else
4747 def_directx='#undef CONFIG_DIRECTX'
4748 novomodules="directx $novomodules"
4749 noaomodules="dsound $noaomodules"
4751 echores "$_directx"
4753 fi #if win32; then
4756 echocheck "DXR3/H+"
4757 if test "$_dxr3" = auto ; then
4758 _dxr3=no
4759 header_check linux/em8300.h && _dxr3=yes
4761 if test "$_dxr3" = yes ; then
4762 def_dxr3='#define CONFIG_DXR3 1'
4763 vomodules="dxr3 $vomodules"
4764 else
4765 def_dxr3='#undef CONFIG_DXR3'
4766 novomodules="dxr3 $novomodules"
4768 echores "$_dxr3"
4771 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4772 if test "$_ivtv" = auto ; then
4773 cat > $TMPC << EOF
4774 #include <sys/time.h>
4775 #include <linux/videodev2.h>
4776 #include <linux/ivtv.h>
4777 #include <sys/ioctl.h>
4778 int main(void) {
4779 struct ivtv_cfg_stop_decode sd;
4780 struct ivtv_cfg_start_decode sd1;
4781 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4782 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4783 return 0; }
4785 _ivtv=no
4786 cc_check && _ivtv=yes
4788 if test "$_ivtv" = yes ; then
4789 def_ivtv='#define CONFIG_IVTV 1'
4790 vomodules="ivtv $vomodules"
4791 aomodules="ivtv $aomodules"
4792 else
4793 def_ivtv='#undef CONFIG_IVTV'
4794 novomodules="ivtv $novomodules"
4795 noaomodules="ivtv $noaomodules"
4797 echores "$_ivtv"
4800 echocheck "V4L2 MPEG Decoder"
4801 if test "$_v4l2" = auto ; then
4802 cat > $TMPC << EOF
4803 #include <sys/time.h>
4804 #include <linux/videodev2.h>
4805 #include <linux/version.h>
4806 int main(void) {
4807 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4808 #error kernel headers too old, need 2.6.22
4809 #endif
4810 struct v4l2_ext_controls ctrls;
4811 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4812 return 0;
4815 _v4l2=no
4816 cc_check && _v4l2=yes
4818 if test "$_v4l2" = yes ; then
4819 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4820 vomodules="v4l2 $vomodules"
4821 aomodules="v4l2 $aomodules"
4822 else
4823 def_v4l2='#undef CONFIG_V4L2_DECODER'
4824 novomodules="v4l2 $novomodules"
4825 noaomodules="v4l2 $noaomodules"
4827 echores "$_v4l2"
4831 #########
4832 # AUDIO #
4833 #########
4836 echocheck "OSS Audio"
4837 if test "$_ossaudio" = auto ; then
4838 _ossaudio=no
4839 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4841 if test "$_ossaudio" = yes ; then
4842 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4843 aomodules="oss $aomodules"
4844 cat > $TMPC << EOF
4845 #include <$_soundcard_header>
4846 #ifdef OPEN_SOUND_SYSTEM
4847 int main(void) { return 0; }
4848 #else
4849 #error Not the real thing
4850 #endif
4852 _real_ossaudio=no
4853 cc_check && _real_ossaudio=yes
4854 if test "$_real_ossaudio" = yes; then
4855 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4856 # Check for OSS4 headers (override default headers)
4857 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4858 if test -f /etc/oss.conf; then
4859 . /etc/oss.conf
4860 _ossinc="$OSSLIBDIR/include"
4861 if test -f "$_ossinc/sys/soundcard.h"; then
4862 extra_cflags="-I$_ossinc $extra_cflags"
4865 elif netbsd || openbsd ; then
4866 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4867 extra_ldflags="$extra_ldflags -lossaudio"
4868 else
4869 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4871 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4872 else
4873 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4874 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4875 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4876 noaomodules="oss $noaomodules"
4878 echores "$_ossaudio"
4881 echocheck "aRts"
4882 if test "$_arts" = auto ; then
4883 _arts=no
4884 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4885 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4886 _arts=yes
4890 if test "$_arts" = yes ; then
4891 def_arts='#define CONFIG_ARTS 1'
4892 aomodules="arts $aomodules"
4893 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4894 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4895 else
4896 noaomodules="arts $noaomodules"
4898 echores "$_arts"
4901 echocheck "EsounD"
4902 if test "$_esd" = auto ; then
4903 _esd=no
4904 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4905 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4908 echores "$_esd"
4910 if test "$_esd" = yes ; then
4911 def_esd='#define CONFIG_ESD 1'
4912 aomodules="esd $aomodules"
4913 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4914 extra_cflags="$extra_cflags $(esd-config --cflags)"
4916 echocheck "esd_get_latency()"
4917 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4918 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4919 echores "$_esd_latency"
4920 else
4921 def_esd='#undef CONFIG_ESD'
4922 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4923 noaomodules="esd $noaomodules"
4927 echocheck "NAS"
4928 if test "$_nas" = auto ; then
4929 _nas=no
4930 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4932 if test "$_nas" = yes ; then
4933 def_nas='#define CONFIG_NAS 1'
4934 libs_mplayer="$libs_mplayer -laudio -lXt"
4935 aomodules="nas $aomodules"
4936 else
4937 noaomodules="nas $noaomodules"
4938 def_nas='#undef CONFIG_NAS'
4940 echores "$_nas"
4943 echocheck "pulse"
4944 if test "$_pulse" = auto ; then
4945 _pulse=no
4946 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4947 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4948 _pulse=yes
4951 echores "$_pulse"
4953 if test "$_pulse" = yes ; then
4954 def_pulse='#define CONFIG_PULSE 1'
4955 aomodules="pulse $aomodules"
4956 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4957 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4958 else
4959 def_pulse='#undef CONFIG_PULSE'
4960 noaomodules="pulse $noaomodules"
4964 echocheck "JACK"
4965 if test "$_jack" = auto ; then
4966 _jack=yes
4967 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4968 libs_mplayer="$libs_mplayer -ljack"
4969 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4970 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4971 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4972 else
4973 _jack=no
4977 if test "$_jack" = yes ; then
4978 def_jack='#define CONFIG_JACK 1'
4979 aomodules="jack $aomodules"
4980 else
4981 noaomodules="jack $noaomodules"
4983 echores "$_jack"
4985 echocheck "OpenAL"
4986 if test "$_openal" = auto ; then
4987 _openal=no
4988 cat > $TMPC << EOF
4989 #ifdef OPENAL_AL_H
4990 #include <OpenAL/al.h>
4991 #else
4992 #include <AL/al.h>
4993 #endif
4994 int main(void) {
4995 alSourceQueueBuffers(0, 0, 0);
4996 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
4997 return 0;
5000 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5001 cc_check $I && _openal=yes && break
5002 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5003 done
5004 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5006 if test "$_openal" = yes ; then
5007 def_openal='#define CONFIG_OPENAL 1'
5008 aomodules="openal $aomodules"
5009 else
5010 noaomodules="openal $noaomodules"
5012 echores "$_openal"
5014 echocheck "ALSA audio"
5015 if test "$_alloca" != yes ; then
5016 _alsa=no
5017 res_comment="alloca missing"
5019 if test "$_alsa" != no ; then
5020 _alsa=no
5021 cat > $TMPC << EOF
5022 #include <sys/asoundlib.h>
5023 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5024 #error "alsa version != 0.5.x"
5025 #endif
5026 int main(void) { return 0; }
5028 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5030 cat > $TMPC << EOF
5031 #include <sys/asoundlib.h>
5032 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5033 #error "alsa version != 0.9.x"
5034 #endif
5035 int main(void) { return 0; }
5037 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5038 cat > $TMPC << EOF
5039 #include <alsa/asoundlib.h>
5040 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5041 #error "alsa version != 0.9.x"
5042 #endif
5043 int main(void) { return 0; }
5045 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5047 cat > $TMPC << EOF
5048 #include <sys/asoundlib.h>
5049 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5050 #error "alsa version != 1.0.x"
5051 #endif
5052 int main(void) { return 0; }
5054 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5055 cat > $TMPC << EOF
5056 #include <alsa/asoundlib.h>
5057 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5058 #error "alsa version != 1.0.x"
5059 #endif
5060 int main(void) { return 0; }
5062 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5064 def_alsa='#undef CONFIG_ALSA'
5065 def_alsa5='#undef CONFIG_ALSA5'
5066 def_alsa9='#undef CONFIG_ALSA9'
5067 def_alsa1x='#undef CONFIG_ALSA1X'
5068 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5069 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5070 if test "$_alsaver" ; then
5071 _alsa=yes
5072 if test "$_alsaver" = '0.5.x' ; then
5073 _alsa5=yes
5074 aomodules="alsa5 $aomodules"
5075 def_alsa5='#define CONFIG_ALSA5 1'
5076 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5077 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5078 elif test "$_alsaver" = '0.9.x-sys' ; then
5079 _alsa9=yes
5080 aomodules="alsa $aomodules"
5081 def_alsa='#define CONFIG_ALSA 1'
5082 def_alsa9='#define CONFIG_ALSA9 1'
5083 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5084 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5085 elif test "$_alsaver" = '0.9.x-alsa' ; then
5086 _alsa9=yes
5087 aomodules="alsa $aomodules"
5088 def_alsa='#define CONFIG_ALSA 1'
5089 def_alsa9='#define CONFIG_ALSA9 1'
5090 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5091 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5092 elif test "$_alsaver" = '1.0.x-sys' ; then
5093 _alsa1x=yes
5094 aomodules="alsa $aomodules"
5095 def_alsa='#define CONFIG_ALSA 1'
5096 def_alsa1x="#define CONFIG_ALSA1X 1"
5097 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5098 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5099 elif test "$_alsaver" = '1.0.x-alsa' ; then
5100 _alsa1x=yes
5101 aomodules="alsa $aomodules"
5102 def_alsa='#define CONFIG_ALSA 1'
5103 def_alsa1x="#define CONFIG_ALSA1X 1"
5104 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5105 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5106 else
5107 _alsa=no
5108 res_comment="unknown version"
5110 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5111 else
5112 noaomodules="alsa $noaomodules"
5114 echores "$_alsa"
5117 echocheck "Sun audio"
5118 if test "$_sunaudio" = auto ; then
5119 cat > $TMPC << EOF
5120 #include <sys/types.h>
5121 #include <sys/audioio.h>
5122 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5124 _sunaudio=no
5125 cc_check && _sunaudio=yes
5127 if test "$_sunaudio" = yes ; then
5128 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5129 aomodules="sun $aomodules"
5130 else
5131 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5132 noaomodules="sun $noaomodules"
5134 echores "$_sunaudio"
5137 if darwin; then
5138 echocheck "CoreAudio"
5139 if test "$_coreaudio" = auto ; then
5140 cat > $TMPC <<EOF
5141 #include <CoreAudio/CoreAudio.h>
5142 #include <AudioToolbox/AudioToolbox.h>
5143 #include <AudioUnit/AudioUnit.h>
5144 int main(void) { return 0; }
5146 _coreaudio=no
5147 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5149 if test "$_coreaudio" = yes ; then
5150 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5151 def_coreaudio='#define CONFIG_COREAUDIO 1'
5152 aomodules="coreaudio $aomodules"
5153 else
5154 def_coreaudio='#undef CONFIG_COREAUDIO'
5155 noaomodules="coreaudio $noaomodules"
5157 echores $_coreaudio
5158 fi #if darwin
5161 if irix; then
5162 echocheck "SGI audio"
5163 if test "$_sgiaudio" = auto ; then
5164 _sgiaudio=no
5165 header_check dmedia/audio.h && _sgiaudio=yes
5167 if test "$_sgiaudio" = "yes" ; then
5168 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5169 libs_mplayer="$libs_mplayer -laudio"
5170 aomodules="sgi $aomodules"
5171 else
5172 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5173 noaomodules="sgi $noaomodules"
5175 echores "$_sgiaudio"
5176 fi #if irix
5179 if os2 ; then
5180 echocheck "KAI (UNIAUD/DART)"
5181 if test "$_kai" = auto; then
5182 _kai=no;
5183 header_check_broken os2.h kai.h -lkai && _kai=yes
5185 if test "$_kai" = yes ; then
5186 def_kai='#define CONFIG_KAI 1'
5187 libs_mplayer="$libs_mplayer -lkai"
5188 aomodules="kai $aomodules"
5189 else
5190 def_kai='#undef CONFIG_KAI'
5191 noaomodules="kai $noaomodules"
5193 echores "$_kai"
5195 echocheck "DART"
5196 if test "$_dart" = auto; then
5197 _dart=no;
5198 header_check_broken os2.h dart.h -ldart && _dart=yes
5200 if test "$_dart" = yes ; then
5201 def_dart='#define CONFIG_DART 1'
5202 libs_mplayer="$libs_mplayer -ldart"
5203 aomodules="dart $aomodules"
5204 else
5205 def_dart='#undef CONFIG_DART'
5206 noaomodules="dart $noaomodules"
5208 echores "$_dart"
5209 fi #if os2
5212 # set default CD/DVD devices
5213 if win32 || os2 ; then
5214 default_cdrom_device="D:"
5215 elif darwin ; then
5216 default_cdrom_device="/dev/disk1"
5217 elif dragonfly ; then
5218 default_cdrom_device="/dev/cd0"
5219 elif freebsd ; then
5220 default_cdrom_device="/dev/acd0"
5221 elif openbsd ; then
5222 default_cdrom_device="/dev/rcd0c"
5223 elif sunos ; then
5224 default_cdrom_device="/vol/dev/aliases/cdrom0"
5225 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5226 # file system and the volfs service.
5227 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5228 elif amigaos ; then
5229 default_cdrom_device="a1ide.device:2"
5230 else
5231 default_cdrom_device="/dev/cdrom"
5234 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5235 default_dvd_device=$default_cdrom_device
5236 elif darwin ; then
5237 default_dvd_device="/dev/rdiskN"
5238 else
5239 default_dvd_device="/dev/dvd"
5243 echocheck "VCD support"
5244 if test "$_vcd" = auto; then
5245 _vcd=no
5246 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5247 _vcd=yes
5248 elif mingw32; then
5249 header_check ddk/ntddcdrm.h && _vcd=yes
5252 if test "$_vcd" = yes; then
5253 inputmodules="vcd $inputmodules"
5254 def_vcd='#define CONFIG_VCD 1'
5255 else
5256 def_vcd='#undef CONFIG_VCD'
5257 noinputmodules="vcd $noinputmodules"
5258 res_comment="not supported on this OS"
5260 echores "$_vcd"
5264 echocheck "Blu-ray support"
5265 if test "$_bluray" = auto ; then
5266 _bluray=no
5267 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5269 if test "$_bluray" = yes ; then
5270 def_bluray='#define CONFIG_LIBBLURAY 1'
5271 extra_ldflags="$extra_ldflags -lbluray"
5272 inputmodules="bluray $inputmodules"
5273 else
5274 def_bluray='#undef CONFIG_LIBBLURAY'
5275 noinputmodules="bluray $noinputmodules"
5277 echores "$_bluray"
5279 echocheck "dvdread"
5280 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5281 _dvdread_internal=no
5283 if test "$_dvdread_internal" = auto ; then
5284 _dvdread_internal=no
5285 _dvdread=no
5286 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5287 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5288 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5289 darwin || win32 || os2; then
5290 _dvdread_internal=yes
5291 _dvdread=yes
5292 extra_cflags="-Ilibdvdread4 $extra_cflags"
5294 elif test "$_dvdread" = auto ; then
5295 _dvdread=no
5296 if test "$_dl" = yes; then
5297 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5298 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5299 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5300 _dvdread=yes
5301 extra_cflags="$extra_cflags $_dvdreadcflags"
5302 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5303 res_comment="external"
5308 if test "$_dvdread_internal" = yes; then
5309 def_dvdread='#define CONFIG_DVDREAD 1'
5310 inputmodules="dvdread(internal) $inputmodules"
5311 _largefiles=yes
5312 res_comment="internal"
5313 elif test "$_dvdread" = yes; then
5314 def_dvdread='#define CONFIG_DVDREAD 1'
5315 _largefiles=yes
5316 extra_ldflags="$extra_ldflags -ldvdread"
5317 inputmodules="dvdread(external) $inputmodules"
5318 res_comment="external"
5319 else
5320 def_dvdread='#undef CONFIG_DVDREAD'
5321 noinputmodules="dvdread $noinputmodules"
5323 echores "$_dvdread"
5326 echocheck "internal libdvdcss"
5327 if test "$_libdvdcss_internal" = auto ; then
5328 _libdvdcss_internal=no
5329 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5330 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5332 if test "$_libdvdcss_internal" = yes ; then
5333 if linux || netbsd || openbsd || bsdos ; then
5334 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5335 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5336 elif freebsd || dragonfly ; then
5337 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5338 elif darwin ; then
5339 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5340 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5341 elif cygwin ; then
5342 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5343 elif beos ; then
5344 cflags_libdvdcss="-DSYS_BEOS"
5345 elif os2 ; then
5346 cflags_libdvdcss="-DSYS_OS2"
5348 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5349 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5350 inputmodules="libdvdcss(internal) $inputmodules"
5351 _largefiles=yes
5352 else
5353 noinputmodules="libdvdcss(internal) $noinputmodules"
5355 echores "$_libdvdcss_internal"
5358 echocheck "cdparanoia"
5359 if test "$_cdparanoia" = auto ; then
5360 cat > $TMPC <<EOF
5361 #include <cdda_interface.h>
5362 #include <cdda_paranoia.h>
5363 // This need a better test. How ?
5364 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5366 _cdparanoia=no
5367 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5368 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5369 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5370 done
5372 if test "$_cdparanoia" = yes ; then
5373 _cdda='yes'
5374 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5375 openbsd && extra_ldflags="$extra_ldflags -lutil"
5377 echores "$_cdparanoia"
5380 echocheck "libcdio"
5381 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5382 cat > $TMPC << EOF
5383 #include <stdio.h>
5384 #include <cdio/version.h>
5385 #include <cdio/cdda.h>
5386 #include <cdio/paranoia.h>
5387 int main(void) {
5388 void *test = cdda_verbose_set;
5389 printf("%s\n", CDIO_VERSION);
5390 return test == (void *)1;
5393 _libcdio=no
5394 for _ld_tmp in "" "-lwinmm" ; do
5395 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5396 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5397 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5398 done
5399 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5400 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5401 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5402 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5403 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5406 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5407 _cdda='yes'
5408 def_libcdio='#define CONFIG_LIBCDIO 1'
5409 def_havelibcdio='yes'
5410 else
5411 if test "$_cdparanoia" = yes ; then
5412 res_comment="using cdparanoia"
5414 def_libcdio='#undef CONFIG_LIBCDIO'
5415 def_havelibcdio='no'
5417 echores "$_libcdio"
5419 if test "$_cdda" = yes ; then
5420 test $_cddb = auto && test $networking = yes && _cddb=yes
5421 def_cdparanoia='#define CONFIG_CDDA 1'
5422 inputmodules="cdda $inputmodules"
5423 else
5424 def_cdparanoia='#undef CONFIG_CDDA'
5425 noinputmodules="cdda $noinputmodules"
5428 if test "$_cddb" = yes ; then
5429 def_cddb='#define CONFIG_CDDB 1'
5430 inputmodules="cddb $inputmodules"
5431 else
5432 _cddb=no
5433 def_cddb='#undef CONFIG_CDDB'
5434 noinputmodules="cddb $noinputmodules"
5437 echocheck "bitmap font support"
5438 if test "$_bitmap_font" = yes ; then
5439 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5440 else
5441 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5443 echores "$_bitmap_font"
5446 echocheck "freetype >= 2.0.9"
5448 # freetype depends on iconv
5449 if test "$_iconv" = no ; then
5450 _freetype=no
5451 res_comment="iconv support needed"
5454 if test "$_freetype" = auto ; then
5455 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5456 cat > $TMPC << EOF
5457 #include <stdio.h>
5458 #include <ft2build.h>
5459 #include FT_FREETYPE_H
5460 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5461 #error "Need FreeType 2.0.9 or newer"
5462 #endif
5463 int main(void) {
5464 FT_Library library;
5465 FT_Init_FreeType(&library);
5466 return 0;
5469 _freetype=no
5470 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5471 else
5472 _freetype=no
5475 if test "$_freetype" = yes ; then
5476 def_freetype='#define CONFIG_FREETYPE 1'
5477 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5478 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5479 else
5480 def_freetype='#undef CONFIG_FREETYPE'
5482 echores "$_freetype"
5484 if test "$_freetype" = no ; then
5485 _fontconfig=no
5486 res_comment="FreeType support needed"
5488 echocheck "fontconfig"
5489 if test "$_fontconfig" = auto ; then
5490 cat > $TMPC << EOF
5491 #include <stdio.h>
5492 #include <stdlib.h>
5493 #include <fontconfig/fontconfig.h>
5494 #if FC_VERSION < 20402
5495 #error At least version 2.4.2 of fontconfig required
5496 #endif
5497 int main(void) {
5498 int err = FcInit();
5499 if (err == FcFalse) {
5500 printf("Couldn't initialize fontconfig lib\n");
5501 exit(err);
5503 return 0;
5506 _fontconfig=no
5507 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5508 _ld_tmp="-lfontconfig $_ld_tmp"
5509 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5510 done
5511 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5512 _inc_tmp=$($_pkg_config --cflags fontconfig)
5513 _ld_tmp=$($_pkg_config --libs fontconfig)
5514 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5515 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5518 if test "$_fontconfig" = yes ; then
5519 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5520 else
5521 def_fontconfig='#undef CONFIG_FONTCONFIG'
5523 echores "$_fontconfig"
5526 echocheck "SSA/ASS support"
5527 if test "$_ass" = auto -o "$_ass" = yes ; then
5528 if $_pkg_config libass; then
5529 _ass=yes
5530 def_ass='#define CONFIG_ASS 1'
5531 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5532 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5533 else
5534 _ass=no
5535 def_ass='#undef CONFIG_ASS'
5537 else
5538 def_ass='#undef CONFIG_ASS'
5540 echores "$_ass"
5543 echocheck "fribidi with charsets"
5544 _inc_tmp=""
5545 _ld_tmp=""
5546 if test "$_fribidi" = auto ; then
5547 cat > $TMPC << EOF
5548 #include <stdlib.h>
5549 /* workaround for fribidi 0.10.4 and below */
5550 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5551 #include <fribidi/fribidi.h>
5552 int main(void) {
5553 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5554 exit(1);
5555 return 0;
5558 _fribidi=no
5559 _inc_tmp=""
5560 _ld_tmp="-lfribidi"
5561 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5562 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5563 test "$_fribidi" = no ; then
5564 _inc_tmp="$($_pkg_config --cflags)"
5565 _ld_tmp="$($_pkg_config --libs)"
5566 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5569 if test "$_fribidi" = yes ; then
5570 def_fribidi='#define CONFIG_FRIBIDI 1'
5571 extra_cflags="$extra_cflags $_inc_tmp"
5572 extra_ldflags="$extra_ldflags $_ld_tmp"
5573 else
5574 def_fribidi='#undef CONFIG_FRIBIDI'
5576 echores "$_fribidi"
5579 echocheck "ENCA"
5580 if test "$_enca" = auto ; then
5581 _enca=no
5582 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5584 if test "$_enca" = yes ; then
5585 def_enca='#define CONFIG_ENCA 1'
5586 extra_ldflags="$extra_ldflags -lenca"
5587 else
5588 def_enca='#undef CONFIG_ENCA'
5590 echores "$_enca"
5593 echocheck "zlib"
5594 _zlib=no
5595 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5596 if test "$_zlib" = yes ; then
5597 def_zlib='#define CONFIG_ZLIB 1'
5598 extra_ldflags="$extra_ldflags -lz"
5599 else
5600 def_zlib='#define CONFIG_ZLIB 0'
5602 echores "$_zlib"
5605 echocheck "bzlib"
5606 bzlib=no
5607 def_bzlib='#define CONFIG_BZLIB 0'
5608 statement_check bzlib.h 'BZ2_bzlibVersion()' -lbz2 && bzlib=yes
5609 if test "$bzlib" = yes ; then
5610 def_bzlib='#define CONFIG_BZLIB 1'
5611 extra_ldflags="$extra_ldflags -lbz2"
5613 echores "$bzlib"
5616 echocheck "RTC"
5617 if test "$_rtc" = auto ; then
5618 cat > $TMPC << EOF
5619 #include <sys/ioctl.h>
5620 #ifdef __linux__
5621 #include <linux/rtc.h>
5622 #else
5623 #include <rtc.h>
5624 #define RTC_PIE_ON RTCIO_PIE_ON
5625 #endif
5626 int main(void) { return RTC_PIE_ON; }
5628 _rtc=no
5629 cc_check && _rtc=yes
5630 ppc && _rtc=no
5632 if test "$_rtc" = yes ; then
5633 def_rtc='#define HAVE_RTC 1'
5634 else
5635 def_rtc='#undef HAVE_RTC'
5637 echores "$_rtc"
5640 echocheck "liblzo2 support"
5641 if test "$_liblzo" = auto ; then
5642 _liblzo=no
5643 statement_check lzo/lzo1x.h 'lzo_init()' -llzo2 && _liblzo=yes
5645 if test "$_liblzo" = yes ; then
5646 def_liblzo='#define CONFIG_LIBLZO 1'
5647 extra_ldflags="$extra_ldflags -llzo2"
5648 codecmodules="liblzo $codecmodules"
5649 else
5650 def_liblzo='#undef CONFIG_LIBLZO'
5651 nocodecmodules="liblzo $nocodecmodules"
5653 echores "$_liblzo"
5656 echocheck "mad support"
5657 if test "$_mad" = auto ; then
5658 _mad=no
5659 header_check mad.h -lmad && _mad=yes
5661 if test "$_mad" = yes ; then
5662 def_mad='#define CONFIG_LIBMAD 1'
5663 extra_ldflags="$extra_ldflags -lmad"
5664 codecmodules="libmad $codecmodules"
5665 else
5666 def_mad='#undef CONFIG_LIBMAD'
5667 nocodecmodules="libmad $nocodecmodules"
5669 echores "$_mad"
5671 echocheck "OggVorbis support"
5672 if test "$_tremor_internal" = yes; then
5673 _libvorbis=no
5674 elif test "$_tremor" = auto; then
5675 _tremor=no
5676 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
5678 if test "$_libvorbis" = auto; then
5679 _libvorbis=no
5680 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes
5682 if test "$_tremor_internal" = yes ; then
5683 _vorbis=yes
5684 def_vorbis='#define CONFIG_OGGVORBIS 1'
5685 def_tremor='#define CONFIG_TREMOR 1'
5686 codecmodules="tremor(internal) $codecmodules"
5687 res_comment="internal Tremor"
5688 if test "$_tremor_low" = yes ; then
5689 cflags_tremor_low="-D_LOW_ACCURACY_"
5690 res_comment="internal low accuracy Tremor"
5692 elif test "$_tremor" = yes ; then
5693 _vorbis=yes
5694 def_vorbis='#define CONFIG_OGGVORBIS 1'
5695 def_tremor='#define CONFIG_TREMOR 1'
5696 codecmodules="tremor(external) $codecmodules"
5697 res_comment="external Tremor"
5698 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5699 elif test "$_libvorbis" = yes ; then
5700 _vorbis=yes
5701 def_vorbis='#define CONFIG_OGGVORBIS 1'
5702 codecmodules="libvorbis $codecmodules"
5703 res_comment="libvorbis"
5704 extra_ldflags="$extra_ldflags -lvorbis -logg"
5705 else
5706 _vorbis=no
5707 nocodecmodules="libvorbis $nocodecmodules"
5709 echores "$_vorbis"
5711 echocheck "libspeex (version >= 1.1 required)"
5712 if test "$_speex" = auto ; then
5713 _speex=no
5714 cat > $TMPC << EOF
5715 #include <stddef.h>
5716 #include <speex/speex.h>
5717 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5719 cc_check -lspeex $_ld_lm && _speex=yes
5721 if test "$_speex" = yes ; then
5722 def_speex='#define CONFIG_SPEEX 1'
5723 extra_ldflags="$extra_ldflags -lspeex"
5724 codecmodules="speex $codecmodules"
5725 else
5726 def_speex='#undef CONFIG_SPEEX'
5727 nocodecmodules="speex $nocodecmodules"
5729 echores "$_speex"
5731 echocheck "OggTheora support"
5732 if test "$_theora" = auto ; then
5733 _theora=no
5734 cat > $TMPC << EOF
5735 #include <theora/theora.h>
5736 #include <string.h>
5737 int main(void) {
5738 /* Theora is in flux, make sure that all interface routines and datatypes
5739 * exist and work the way we expect it, so we don't break MPlayer. */
5740 ogg_packet op;
5741 theora_comment tc;
5742 theora_info inf;
5743 theora_state st;
5744 yuv_buffer yuv;
5745 int r;
5746 double t;
5748 theora_info_init(&inf);
5749 theora_comment_init(&tc);
5751 return 0;
5753 /* we don't want to execute this kind of nonsense; just for making sure
5754 * that compilation works... */
5755 memset(&op, 0, sizeof(op));
5756 r = theora_decode_header(&inf, &tc, &op);
5757 r = theora_decode_init(&st, &inf);
5758 t = theora_granule_time(&st, op.granulepos);
5759 r = theora_decode_packetin(&st, &op);
5760 r = theora_decode_YUVout(&st, &yuv);
5761 theora_clear(&st);
5763 return 0;
5766 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5767 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5768 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5769 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5770 if test _theora = no; then
5771 _ld_theora="-ltheora -logg"
5772 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5774 if test "$_theora" = no && test "$_tremor_internal" = yes; then
5775 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5776 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5777 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
5778 extra_ldflags="$extra_ldflags $_ld_theora" &&
5779 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5780 if test _theora = no; then
5781 _ld_theora="-ltheora -logg"
5782 cc_check tremor/bitwise.c $_ld_theora &&
5783 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5787 if test "$_theora" = yes ; then
5788 def_theora='#define CONFIG_OGGTHEORA 1'
5789 codecmodules="libtheora $codecmodules"
5790 # when --enable-theora is forced, we'd better provide a probably sane
5791 # $_ld_theora than nothing
5792 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5793 else
5794 def_theora='#undef CONFIG_OGGTHEORA'
5795 nocodecmodules="libtheora $nocodecmodules"
5797 echores "$_theora"
5799 echocheck "mp3lib support"
5800 if test "$_mp3lib" = auto ; then
5801 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
5803 if test "$_mp3lib" = yes ; then
5804 def_mp3lib='#define CONFIG_MP3LIB 1'
5805 codecmodules="mp3lib(internal) $codecmodules"
5806 else
5807 def_mp3lib='#undef CONFIG_MP3LIB'
5808 nocodecmodules="mp3lib(internal) $nocodecmodules"
5810 echores "$_mp3lib"
5812 # Any version of libmpg123 shall be fine.
5813 echocheck "mpg123 support"
5814 def_mpg123='#undef CONFIG_MPG123'
5815 if test "$_mpg123" = auto; then
5816 _mpg123=no
5817 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5819 if test "$_mpg123" = yes ; then
5820 def_mpg123='#define CONFIG_MPG123 1'
5821 codecmodules="mpg123 $codecmodules"
5822 else
5823 nocodecmodules="mpg123 $nocodecmodules"
5825 echores "$_mpg123"
5827 echocheck "liba52 support"
5828 def_liba52='#undef CONFIG_LIBA52'
5829 if test "$_liba52" = auto ; then
5830 _liba52=no
5831 cat > $TMPC << EOF
5832 #include <inttypes.h>
5833 #include <a52dec/a52.h>
5834 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5836 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5838 if test "$_liba52" = yes ; then
5839 def_liba52='#define CONFIG_LIBA52 1'
5840 codecmodules="liba52 $codecmodules"
5841 else
5842 nocodecmodules="liba52 $nocodecmodules"
5844 echores "$_liba52"
5846 echocheck "libdca support"
5847 if test "$_libdca" = auto ; then
5848 _libdca=no
5849 for _ld_dca in -ldca -ldts ; do
5850 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5851 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5852 done
5854 if test "$_libdca" = yes ; then
5855 def_libdca='#define CONFIG_LIBDCA 1'
5856 codecmodules="libdca $codecmodules"
5857 else
5858 def_libdca='#undef CONFIG_LIBDCA'
5859 nocodecmodules="libdca $nocodecmodules"
5861 echores "$_libdca"
5863 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5864 if test "$_musepack" = auto ; then
5865 _musepack=no
5866 cat > $TMPC << EOF
5867 #include <stddef.h>
5868 #include <mpcdec/mpcdec.h>
5869 int main(void) {
5870 mpc_streaminfo info;
5871 mpc_decoder decoder;
5872 mpc_decoder_set_streaminfo(&decoder, &info);
5873 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5874 return 0;
5877 cc_check -lmpcdec $_ld_lm && _musepack=yes
5879 if test "$_musepack" = yes ; then
5880 def_musepack='#define CONFIG_MUSEPACK 1'
5881 extra_ldflags="$extra_ldflags -lmpcdec"
5882 codecmodules="musepack $codecmodules"
5883 else
5884 def_musepack='#undef CONFIG_MUSEPACK'
5885 nocodecmodules="musepack $nocodecmodules"
5887 echores "$_musepack"
5890 echocheck "FAAD2 support"
5891 if test "$_faad" = auto ; then
5892 _faad=no
5893 cat > $TMPC << EOF
5894 #include <faad.h>
5895 #ifndef FAAD_MIN_STREAMSIZE
5896 #error Too old version
5897 #endif
5898 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5899 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5901 cc_check -lfaad $_ld_lm && _faad=yes
5904 def_faad='#undef CONFIG_FAAD'
5905 if test "$_faad" = yes ; then
5906 def_faad='#define CONFIG_FAAD 1'
5907 extra_ldflags="$extra_ldflags -lfaad"
5908 codecmodules="faad2 $codecmodules"
5909 else
5910 nocodecmodules="faad2 $nocodecmodules"
5912 echores "$_faad"
5915 echocheck "LADSPA plugin support"
5916 if test "$_ladspa" = auto ; then
5917 _ladspa=no
5918 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5920 if test "$_ladspa" = yes; then
5921 def_ladspa="#define CONFIG_LADSPA 1"
5922 else
5923 def_ladspa="#undef CONFIG_LADSPA"
5925 echores "$_ladspa"
5928 echocheck "libbs2b audio filter support"
5929 if test "$_libbs2b" = auto ; then
5930 cat > $TMPC <<EOF
5931 #include <bs2b.h>
5932 #if BS2B_VERSION_MAJOR < 3
5933 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5934 #endif
5935 int main(void) {
5936 t_bs2bdp filter;
5937 filter=bs2b_open();
5938 bs2b_close(filter);
5939 return 0;
5942 _libbs2b=no
5943 if $_pkg_config --exists libbs2b ; then
5944 _inc_tmp=$($_pkg_config --cflags libbs2b)
5945 _ld_tmp=$($_pkg_config --libs libbs2b)
5946 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5947 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5948 else
5949 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5950 -I/usr/local/include/bs2b ; do
5951 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5952 extra_ldflags="$extra_ldflags -lbs2b"
5953 extra_cflags="$extra_cflags $_inc_tmp"
5954 _libbs2b=yes
5955 break
5957 done
5960 def_libbs2b="#undef CONFIG_LIBBS2B"
5961 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
5962 echores "$_libbs2b"
5965 if test -z "$_codecsdir" ; then
5966 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
5967 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
5968 if test -d "$dir" ; then
5969 _codecsdir="$dir"
5970 break;
5972 done
5974 # Fall back on default directory.
5975 if test -z "$_codecsdir" ; then
5976 _codecsdir="$_libdir/codecs"
5977 mingw32 || os2 && _codecsdir="codecs"
5981 echocheck "Win32 codecs"
5982 if test "$_win32dll" = auto ; then
5983 _win32dll=no
5984 if x86_32 && ! qnx; then
5985 _win32dll=yes
5988 if test "$_win32dll" = yes ; then
5989 def_win32dll='#define CONFIG_WIN32DLL 1'
5990 if ! win32 ; then
5991 def_win32_loader='#define WIN32_LOADER 1'
5992 _win32_emulation=yes
5993 else
5994 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
5995 res_comment="using native windows"
5997 codecmodules="win32 $codecmodules"
5998 else
5999 def_win32dll='#undef CONFIG_WIN32DLL'
6000 def_win32_loader='#undef WIN32_LOADER'
6001 nocodecmodules="win32 $nocodecmodules"
6003 echores "$_win32dll"
6006 echocheck "XAnim codecs"
6007 if test "$_xanim" = auto ; then
6008 _xanim=no
6009 res_comment="dynamic loader support needed"
6010 if test "$_dl" = yes ; then
6011 _xanim=yes
6014 if test "$_xanim" = yes ; then
6015 def_xanim='#define CONFIG_XANIM 1'
6016 codecmodules="xanim $codecmodules"
6017 else
6018 def_xanim='#undef CONFIG_XANIM'
6019 nocodecmodules="xanim $nocodecmodules"
6021 echores "$_xanim"
6024 echocheck "RealPlayer codecs"
6025 if test "$_real" = auto ; then
6026 _real=no
6027 res_comment="dynamic loader support needed"
6028 if test "$_dl" = yes || test "$_win32dll" = yes &&
6029 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6030 _real=yes
6033 if test "$_real" = yes ; then
6034 def_real='#define CONFIG_REALCODECS 1'
6035 codecmodules="real $codecmodules"
6036 else
6037 def_real='#undef CONFIG_REALCODECS'
6038 nocodecmodules="real $nocodecmodules"
6040 echores "$_real"
6043 echocheck "QuickTime codecs"
6044 _qtx_emulation=no
6045 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6046 if test "$_qtx" = auto ; then
6047 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6049 if test "$_qtx" = yes ; then
6050 def_qtx='#define CONFIG_QTX_CODECS 1'
6051 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6052 codecmodules="qtx $codecmodules"
6053 darwin || win32 || _qtx_emulation=yes
6054 else
6055 def_qtx='#undef CONFIG_QTX_CODECS'
6056 nocodecmodules="qtx $nocodecmodules"
6058 echores "$_qtx"
6060 echocheck "Nemesi Streaming Media libraries"
6061 if test "$_nemesi" = auto && test "$networking" = yes ; then
6062 _nemesi=no
6063 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6064 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6065 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6066 _nemesi=yes
6069 if test "$_nemesi" = yes; then
6070 _native_rtsp=no
6071 def_nemesi='#define CONFIG_LIBNEMESI 1'
6072 inputmodules="nemesi $inputmodules"
6073 else
6074 _native_rtsp="$networking"
6075 _nemesi=no
6076 def_nemesi='#undef CONFIG_LIBNEMESI'
6077 noinputmodules="nemesi $noinputmodules"
6079 echores "$_nemesi"
6081 echocheck "LIVE555 Streaming Media libraries"
6082 if test "$_live" = auto && test "$networking" = yes ; then
6083 cat > $TMPCPP << EOF
6084 #include <liveMedia.hh>
6085 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6086 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6087 #endif
6088 int main(void) { return 0; }
6091 _live=no
6092 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
6093 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
6094 _livelibdir=$(echo $I| sed s/-I//) &&
6095 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6096 $_livelibdir/groupsock/libgroupsock.a \
6097 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6098 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6099 $extra_ldflags -lstdc++" \
6100 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6101 -I$_livelibdir/UsageEnvironment/include \
6102 -I$_livelibdir/BasicUsageEnvironment/include \
6103 -I$_livelibdir/groupsock/include" &&
6104 _live=yes && break
6105 done
6106 if test "$_live" != yes ; then
6107 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6108 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6109 _live_dist=yes
6113 if test "$_live" = yes && test "$networking" = yes; then
6114 test $_livelibdir && res_comment="using $_livelibdir"
6115 def_live='#define CONFIG_LIVE555 1'
6116 inputmodules="live555 $inputmodules"
6117 elif test "$_live_dist" = yes && test "$networking" = yes; then
6118 res_comment="using distribution version"
6119 _live="yes"
6120 def_live='#define CONFIG_LIVE555 1'
6121 extra_ldflags="$extra_ldflags $ld_tmp"
6122 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6123 inputmodules="live555 $inputmodules"
6124 else
6125 _live=no
6126 def_live='#undef CONFIG_LIVE555'
6127 noinputmodules="live555 $noinputmodules"
6129 echores "$_live"
6133 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6134 echocheck "FFmpeg ($all_ffmpeg_libs)"
6135 if test "$ffmpeg" = auto ; then
6136 ffmpeg=no
6137 if $_pkg_config --exists $all_ffmpeg_libs ; then
6138 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6139 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6140 extra_ldflags="$extra_ldflags $_ld_tmp"
6141 extra_cflags="$extra_cflags $inc_ffmpeg"
6142 ffmpeg=yes
6143 elif header_check libavcore/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6144 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6145 ffmpeg=yes
6149 ffmpeg_eval_api=no
6150 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6151 if test "$ffmpeg" = yes; then
6152 def_ffmpeg='#define CONFIG_FFMPEG 1'
6153 codecmodules="ffmpeg $codecmodules"
6154 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6155 ffmpeg_eval_api=yes
6156 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6158 else
6159 def_ffmpeg='#undef CONFIG_FFMPEG'
6160 nocodecmodules="ffmpeg $nocodecmodules"
6162 echores "$ffmpeg"
6164 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6165 if ! test -z "$_ffmpeg_source" ; then
6166 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6171 echocheck "libdv-0.9.5+"
6172 if test "$_libdv" = auto ; then
6173 _libdv=no
6174 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6176 if test "$_libdv" = yes ; then
6177 def_libdv='#define CONFIG_LIBDV095 1'
6178 extra_ldflags="$extra_ldflags -ldv"
6179 codecmodules="libdv $codecmodules"
6180 else
6181 def_libdv='#undef CONFIG_LIBDV095'
6182 nocodecmodules="libdv $nocodecmodules"
6184 echores "$_libdv"
6187 echocheck "Xvid"
6188 if test "$_xvid" = auto ; then
6189 _xvid=no
6190 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6191 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6192 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6193 done
6196 if test "$_xvid" = yes ; then
6197 def_xvid='#define CONFIG_XVID4 1'
6198 codecmodules="xvid $codecmodules"
6199 else
6200 def_xvid='#undef CONFIG_XVID4'
6201 nocodecmodules="xvid $nocodecmodules"
6203 echores "$_xvid"
6206 echocheck "libnut"
6207 if test "$_libnut" = auto ; then
6208 _libnut=no
6209 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6212 if test "$_libnut" = yes ; then
6213 def_libnut='#define CONFIG_LIBNUT 1'
6214 extra_ldflags="$extra_ldflags -lnut"
6215 else
6216 def_libnut='#undef CONFIG_LIBNUT'
6218 echores "$_libnut"
6220 # These VO checks must be done after the FFmpeg one
6221 echocheck "/dev/mga_vid"
6222 if test "$_mga" = auto ; then
6223 _mga=no
6224 test -c /dev/mga_vid && _mga=yes
6226 if test "$_mga" = yes ; then
6227 def_mga='#define CONFIG_MGA 1'
6228 vomodules="mga $vomodules"
6229 else
6230 def_mga='#undef CONFIG_MGA'
6231 novomodules="mga $novomodules"
6233 echores "$_mga"
6236 echocheck "xmga"
6237 if test "$_xmga" = auto ; then
6238 _xmga=no
6239 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6241 if test "$_xmga" = yes ; then
6242 def_xmga='#define CONFIG_XMGA 1'
6243 vomodules="xmga $vomodules"
6244 else
6245 def_xmga='#undef CONFIG_XMGA'
6246 novomodules="xmga $novomodules"
6248 echores "$_xmga"
6251 echocheck "UnRAR executable"
6252 if test "$_unrar_exec" = auto ; then
6253 _unrar_exec="yes"
6254 mingw32 && _unrar_exec="no"
6256 if test "$_unrar_exec" = yes ; then
6257 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6258 else
6259 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6261 echores "$_unrar_exec"
6263 echocheck "TV interface"
6264 if test "$_tv" = yes ; then
6265 def_tv='#define CONFIG_TV 1'
6266 inputmodules="tv $inputmodules"
6267 else
6268 noinputmodules="tv $noinputmodules"
6269 def_tv='#undef CONFIG_TV'
6271 echores "$_tv"
6274 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6275 echocheck "*BSD BT848 bt8xx header"
6276 _ioctl_bt848_h=no
6277 for file in "machine/ioctl_bt848.h" \
6278 "dev/bktr/ioctl_bt848.h" \
6279 "dev/video/bktr/ioctl_bt848.h" \
6280 "dev/ic/bt8xx.h" ; do
6281 cat > $TMPC <<EOF
6282 #include <sys/types.h>
6283 #include <sys/ioctl.h>
6284 #include <$file>
6285 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6287 if cc_check ; then
6288 _ioctl_bt848_h=yes
6289 _ioctl_bt848_h_name="$file"
6290 break;
6292 done
6293 if test "$_ioctl_bt848_h" = yes ; then
6294 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6295 res_comment="using $_ioctl_bt848_h_name"
6296 else
6297 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6299 echores "$_ioctl_bt848_h"
6301 echocheck "*BSD ioctl_meteor.h"
6302 _ioctl_meteor_h=no
6303 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6304 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6305 _ioctl_meteor_h=yes && break
6306 done
6307 if test "$_ioctl_meteor_h" = yes ; then
6308 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6309 res_comment="using $ioctl_meteor_h_path"
6310 else
6311 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6313 echores "$_ioctl_meteor_h"
6315 echocheck "*BSD BrookTree 848 TV interface"
6316 if test "$_tv_bsdbt848" = auto ; then
6317 _tv_bsdbt848=no
6318 if test "$_tv" = yes ; then
6319 cat > $TMPC <<EOF
6320 #include <sys/types.h>
6321 $def_ioctl_meteor_h_name
6322 $def_ioctl_bt848_h_name
6323 #ifdef IOCTL_METEOR_H_NAME
6324 #include IOCTL_METEOR_H_NAME
6325 #endif
6326 #ifdef IOCTL_BT848_H_NAME
6327 #include IOCTL_BT848_H_NAME
6328 #endif
6329 int main(void) {
6330 ioctl(0, METEORSINPUT, 0);
6331 ioctl(0, TVTUNER_GETFREQ, 0);
6332 return 0;
6335 cc_check && _tv_bsdbt848=yes
6338 if test "$_tv_bsdbt848" = yes ; then
6339 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6340 inputmodules="tv-bsdbt848 $inputmodules"
6341 else
6342 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6343 noinputmodules="tv-bsdbt848 $noinputmodules"
6345 echores "$_tv_bsdbt848"
6346 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6349 echocheck "DirectShow TV interface"
6350 if test "$_tv_dshow" = auto ; then
6351 _tv_dshow=no
6352 if test "$_tv" = yes && win32 ; then
6353 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6356 if test "$_tv_dshow" = yes ; then
6357 inputmodules="tv-dshow $inputmodules"
6358 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6359 extra_ldflags="$extra_ldflags -lole32 -luuid"
6360 else
6361 noinputmodules="tv-dshow $noinputmodules"
6362 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6364 echores "$_tv_dshow"
6367 echocheck "Video 4 Linux TV interface"
6368 if test "$_tv_v4l1" = auto ; then
6369 _tv_v4l1=no
6370 if test "$_tv" = yes && linux ; then
6371 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6374 if test "$_tv_v4l1" = yes ; then
6375 _audio_input=yes
6376 _tv_v4l=yes
6377 def_tv_v4l='#define CONFIG_TV_V4L 1'
6378 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6379 inputmodules="tv-v4l $inputmodules"
6380 else
6381 noinputmodules="tv-v4l1 $noinputmodules"
6382 def_tv_v4l='#undef CONFIG_TV_V4L'
6384 echores "$_tv_v4l1"
6387 echocheck "Video 4 Linux 2 TV interface"
6388 if test "$_tv_v4l2" = auto ; then
6389 _tv_v4l2=no
6390 if test "$_tv" = yes && linux ; then
6391 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6394 if test "$_tv_v4l2" = yes ; then
6395 _audio_input=yes
6396 _tv_v4l=yes
6397 def_tv_v4l='#define CONFIG_TV_V4L 1'
6398 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6399 inputmodules="tv-v4l2 $inputmodules"
6400 else
6401 noinputmodules="tv-v4l2 $noinputmodules"
6402 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6404 echores "$_tv_v4l2"
6407 echocheck "Radio interface"
6408 if test "$_radio" = yes ; then
6409 def_radio='#define CONFIG_RADIO 1'
6410 inputmodules="radio $inputmodules"
6411 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6412 _radio_capture=no
6414 if test "$_radio_capture" = yes ; then
6415 _audio_input=yes
6416 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6417 else
6418 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6420 else
6421 noinputmodules="radio $noinputmodules"
6422 def_radio='#undef CONFIG_RADIO'
6423 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6424 _radio_capture=no
6426 echores "$_radio"
6427 echocheck "Capture for Radio interface"
6428 echores "$_radio_capture"
6430 echocheck "Video 4 Linux 2 Radio interface"
6431 if test "$_radio_v4l2" = auto ; then
6432 _radio_v4l2=no
6433 if test "$_radio" = yes && linux ; then
6434 header_check linux/videodev2.h && _radio_v4l2=yes
6437 if test "$_radio_v4l2" = yes ; then
6438 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6439 else
6440 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6442 echores "$_radio_v4l2"
6444 echocheck "Video 4 Linux Radio interface"
6445 if test "$_radio_v4l" = auto ; then
6446 _radio_v4l=no
6447 if test "$_radio" = yes && linux ; then
6448 header_check linux/videodev.h && _radio_v4l=yes
6451 if test "$_radio_v4l" = yes ; then
6452 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6453 else
6454 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6456 echores "$_radio_v4l"
6458 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6459 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6460 echocheck "*BSD BrookTree 848 Radio interface"
6461 _radio_bsdbt848=no
6462 cat > $TMPC <<EOF
6463 #include <sys/types.h>
6464 $def_ioctl_bt848_h_name
6465 #ifdef IOCTL_BT848_H_NAME
6466 #include IOCTL_BT848_H_NAME
6467 #endif
6468 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6470 cc_check && _radio_bsdbt848=yes
6471 echores "$_radio_bsdbt848"
6472 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6474 if test "$_radio_bsdbt848" = yes ; then
6475 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6476 else
6477 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6480 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6481 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6482 die "Radio driver requires BSD BT848, V4L or V4L2!"
6485 echocheck "Video 4 Linux 2 MPEG PVR interface"
6486 if test "$_pvr" = auto ; then
6487 _pvr=no
6488 if test "$_tv_v4l2" = yes && linux ; then
6489 cat > $TMPC <<EOF
6490 #include <sys/time.h>
6491 #include <linux/videodev2.h>
6492 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6494 cc_check && _pvr=yes
6497 if test "$_pvr" = yes ; then
6498 def_pvr='#define CONFIG_PVR 1'
6499 inputmodules="pvr $inputmodules"
6500 else
6501 noinputmodules="pvr $noinputmodules"
6502 def_pvr='#undef CONFIG_PVR'
6504 echores "$_pvr"
6507 echocheck "ftp"
6508 if test "$_ftp" = "auto" ; then
6509 test "$networking" = "yes" && ! beos && _ftp=yes
6511 if test "$_ftp" = yes ; then
6512 def_ftp='#define CONFIG_FTP 1'
6513 inputmodules="ftp $inputmodules"
6514 else
6515 noinputmodules="ftp $noinputmodules"
6516 def_ftp='#undef CONFIG_FTP'
6518 echores "$_ftp"
6520 echocheck "vstream client"
6521 if test "$_vstream" = auto ; then
6522 _vstream=no
6523 cat > $TMPC <<EOF
6524 #include <vstream-client.h>
6525 void vstream_error(const char *format, ... ) {}
6526 int main(void) { vstream_start(); return 0; }
6528 cc_check -lvstream-client && _vstream=yes
6530 if test "$_vstream" = yes ; then
6531 def_vstream='#define CONFIG_VSTREAM 1'
6532 inputmodules="vstream $inputmodules"
6533 extra_ldflags="$extra_ldflags -lvstream-client"
6534 else
6535 noinputmodules="vstream $noinputmodules"
6536 def_vstream='#undef CONFIG_VSTREAM'
6538 echores "$_vstream"
6541 echocheck "OSD menu"
6542 if test "$_menu" = yes ; then
6543 def_menu='#define CONFIG_MENU 1'
6544 test $_dvbin = "yes" && _menu_dvbin=yes
6545 else
6546 def_menu='#undef CONFIG_MENU'
6547 _menu_dvbin=no
6549 echores "$_menu"
6552 echocheck "Subtitles sorting"
6553 if test "$_sortsub" = yes ; then
6554 def_sortsub='#define CONFIG_SORTSUB 1'
6555 else
6556 def_sortsub='#undef CONFIG_SORTSUB'
6558 echores "$_sortsub"
6561 echocheck "XMMS inputplugin support"
6562 if test "$_xmms" = yes ; then
6563 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6564 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6565 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6566 else
6567 _xmmsplugindir=/usr/lib/xmms/Input
6568 _xmmslibdir=/usr/lib
6571 def_xmms='#define CONFIG_XMMS 1'
6572 if darwin ; then
6573 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6574 else
6575 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6577 else
6578 def_xmms='#undef CONFIG_XMMS'
6580 echores "$_xmms"
6582 if test "$_charset" != "noconv" ; then
6583 def_charset="#define MSG_CHARSET \"$_charset\""
6584 else
6585 def_charset="#undef MSG_CHARSET"
6586 _charset="UTF-8"
6589 #############################################################################
6591 echocheck "automatic gdb attach"
6592 if test "$_crash_debug" = yes ; then
6593 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6594 else
6595 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6596 _crash_debug=no
6598 echores "$_crash_debug"
6600 echocheck "compiler support for noexecstack"
6601 if cflag_check -Wl,-z,noexecstack ; then
6602 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6603 echores "yes"
6604 else
6605 echores "no"
6608 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6609 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6610 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6611 echores "yes"
6612 else
6613 echores "no"
6617 # Dynamic linking flags
6618 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6619 _ld_dl_dynamic=''
6620 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6621 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6622 _ld_dl_dynamic='-rdynamic'
6625 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6626 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6627 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6629 def_debug='#undef MP_DEBUG'
6630 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6633 echocheck "joystick"
6634 def_joystick='#undef CONFIG_JOYSTICK'
6635 if test "$_joystick" = yes ; then
6636 if linux || freebsd ; then
6637 # TODO add some check
6638 def_joystick='#define CONFIG_JOYSTICK 1'
6639 else
6640 _joystick="no"
6641 res_comment="unsupported under $system_name"
6644 echores "$_joystick"
6646 echocheck "lirc"
6647 if test "$_lirc" = auto ; then
6648 _lirc=no
6649 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6651 if test "$_lirc" = yes ; then
6652 def_lirc='#define CONFIG_LIRC 1'
6653 libs_mplayer="$libs_mplayer -llirc_client"
6654 else
6655 def_lirc='#undef CONFIG_LIRC'
6657 echores "$_lirc"
6659 echocheck "lircc"
6660 if test "$_lircc" = auto ; then
6661 _lircc=no
6662 header_check lirc/lircc.h -llircc && _lircc=yes
6664 if test "$_lircc" = yes ; then
6665 def_lircc='#define CONFIG_LIRCC 1'
6666 libs_mplayer="$libs_mplayer -llircc"
6667 else
6668 def_lircc='#undef CONFIG_LIRCC'
6670 echores "$_lircc"
6672 if arm; then
6673 # Detect maemo development platform libraries availability (http://www.maemo.org),
6674 # they are used when run on Nokia 770|8x0
6675 echocheck "maemo (Nokia 770|8x0)"
6676 if test "$_maemo" = auto ; then
6677 _maemo=no
6678 statement_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
6680 if test "$_maemo" = yes ; then
6681 def_maemo='#define CONFIG_MAEMO 1'
6682 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
6683 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
6684 else
6685 def_maemo='#undef CONFIG_MAEMO'
6687 echores "$_maemo"
6690 #############################################################################
6692 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6693 # the OMF format needs to come after the 'extern symbol prefix' check, which
6694 # uses nm.
6695 if os2 ; then
6696 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6699 #############################################################################
6700 # 64 bit file offsets?
6701 if test "$_largefiles" = yes || freebsd ; then
6702 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
6703 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
6704 # dvdread support requires this (for off64_t)
6705 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
6709 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6711 # This must be the last test to be performed. Any other tests following it
6712 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6713 # against libdvdread (to permit MPlayer to use its own copy of the library).
6714 # So any compilation using the flags added here but not linking against
6715 # libdvdread can fail.
6716 echocheck "DVD support (libdvdnav)"
6717 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6718 _dvdnav=no
6720 dvdnav_internal=no
6721 if test "$_dvdnav" = auto ; then
6722 if test "$_dvdread_internal" = yes ; then
6723 _dvdnav=yes
6724 dvdnav_internal=yes
6725 res_comment="internal"
6726 else
6727 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6730 if test "$_dvdnav" = auto ; then
6731 _dvdnav=no
6732 _dvdnavdir=$($_dvdnavconfig --cflags)
6733 _dvdnavlibs=$($_dvdnavconfig --libs)
6734 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6736 if test "$_dvdnav" = yes ; then
6737 _largefiles=yes
6738 def_dvdnav='#define CONFIG_DVDNAV 1'
6739 if test "$dvdnav_internal" = yes ; then
6740 cflags_libdvdnav="-Ilibdvdnav"
6741 inputmodules="dvdnav(internal) $inputmodules"
6742 else
6743 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6744 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6745 inputmodules="dvdnav $inputmodules"
6747 else
6748 def_dvdnav='#undef CONFIG_DVDNAV'
6749 noinputmodules="dvdnav $noinputmodules"
6751 echores "$_dvdnav"
6753 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6754 # Read dvdnav comment above.
6756 mak_enable () {
6757 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6758 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6759 nprefix=$3;
6760 for part in $list; do
6761 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6762 echo "${nprefix}_$part = yes"
6764 done
6767 #############################################################################
6768 echo "Creating config.mak"
6769 cat > config.mak << EOF
6770 # -------- Generated by configure -----------
6772 # Ensure that locale settings do not interfere with shell commands.
6773 export LC_ALL = C
6775 CONFIGURATION = $configuration
6777 CHARSET = $_charset
6778 DOC_LANGS = $language_doc
6779 DOC_LANG_ALL = $doc_lang_all
6780 MAN_LANGS = $language_man
6781 MAN_LANG_ALL = $man_lang_all
6782 MSG_LANGS = $language_msg
6783 MSG_LANG_ALL = $msg_lang_all
6785 prefix = \$(DESTDIR)$_prefix
6786 BINDIR = \$(DESTDIR)$_bindir
6787 DATADIR = \$(DESTDIR)$_datadir
6788 LIBDIR = \$(DESTDIR)$_libdir
6789 MANDIR = \$(DESTDIR)$_mandir
6790 CONFDIR = \$(DESTDIR)$_confdir
6791 LOCALEDIR = \$(DESTDIR)$_localedir
6793 AR = $_ar
6794 AS = $_cc
6795 CC = $_cc
6796 CXX = $_cc
6797 HOST_CC = $_host_cc
6798 INSTALL = $_install
6799 INSTALLSTRIP = $_install_strip
6800 WINDRES = $_windres
6802 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6803 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6804 DEPFLAGS = $DEPFLAGS
6806 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6807 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6808 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6809 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6810 CFLAGS_STACKREALIGN = $cflags_stackrealign
6811 CFLAGS_TREMOR_LOW = $cflags_tremor_low
6813 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6814 EXTRALIBS_MPLAYER = $libs_mplayer
6816 GETCH = $_getch
6817 TIMER = $_timer
6819 EXESUF = $_exesuf
6820 EXESUFS_ALL = .exe
6822 ARCH = $arch
6823 $(mak_enable "$arch_all" "$arch" ARCH)
6824 $(mak_enable "$subarch_all" "$subarch" ARCH)
6825 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6827 MPLAYER = $_mplayer
6829 NEED_GETTIMEOFDAY = $need_gettimeofday
6830 NEED_GLOB = $need_glob
6831 NEED_MMAP = $need_mmap
6832 NEED_SETENV = $need_setenv
6833 NEED_SHMEM = $need_shmem
6834 NEED_STRSEP = $need_strsep
6835 NEED_SWAB = $need_swab
6836 NEED_VSSCANF = $need_vsscanf
6838 # features
6839 3DFX = $_3dfx
6840 AA = $_aa
6841 ALSA1X = $_alsa1x
6842 ALSA9 = $_alsa9
6843 ALSA5 = $_alsa5
6844 APPLE_IR = $_apple_ir
6845 APPLE_REMOTE = $_apple_remote
6846 ARTS = $_arts
6847 AUDIO_INPUT = $_audio_input
6848 BITMAP_FONT = $_bitmap_font
6849 BL = $_bl
6850 CACA = $_caca
6851 CDDA = $_cdda
6852 CDDB = $_cddb
6853 COREAUDIO = $_coreaudio
6854 COREVIDEO = $_corevideo
6855 DART = $_dart
6856 DGA = $_dga
6857 DIRECT3D = $_direct3d
6858 DIRECTFB = $_directfb
6859 DIRECTX = $_directx
6860 DVBIN = $_dvbin
6861 DVDNAV = $_dvdnav
6862 DVDNAV_INTERNAL = $dvdnav_internal
6863 DVDREAD = $_dvdread
6864 DVDREAD_INTERNAL = $_dvdread_internal
6865 DXR3 = $_dxr3
6866 ESD = $_esd
6867 FAAD = $_faad
6868 FASTMEMCPY = $_fastmemcpy
6869 FBDEV = $_fbdev
6870 FREETYPE = $_freetype
6871 FTP = $_ftp
6872 GIF = $_gif
6873 GGI = $_ggi
6874 GL = $_gl
6875 GL_WIN32 = $_gl_win32
6876 GL_X11 = $_gl_x11
6877 GL_SDL = $_gl_sdl
6878 MATRIXVIEW = $matrixview
6879 HAVE_POSIX_SELECT = $_posix_select
6880 HAVE_SYS_MMAN_H = $_mman
6881 IVTV = $_ivtv
6882 JACK = $_jack
6883 JOYSTICK = $_joystick
6884 JPEG = $_jpeg
6885 KAI = $_kai
6886 KVA = $_kva
6887 LADSPA = $_ladspa
6888 LIBA52 = $_liba52
6889 LIBASS = $_ass
6890 LIBBLURAY = $_bluray
6891 LIBBS2B = $_libbs2b
6892 LIBDCA = $_libdca
6893 LIBDV = $_libdv
6894 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6895 LIBLZO = $_liblzo
6896 LIBMAD = $_mad
6897 LIBMENU = $_menu
6898 LIBMENU_DVBIN = $_menu_dvbin
6899 LIBNEMESI = $_nemesi
6900 LIBNUT = $_libnut
6901 LIBSMBCLIENT = $_smb
6902 LIBTHEORA = $_theora
6903 LIRC = $_lirc
6904 LIVE555 = $_live
6905 MACOSX_FINDER = $_macosx_finder
6906 MD5SUM = $_md5sum
6907 MGA = $_mga
6908 MNG = $_mng
6909 MP3LIB = $_mp3lib
6910 MPG123 = $_mpg123
6911 MUSEPACK = $_musepack
6912 NAS = $_nas
6913 NATIVE_RTSP = $_native_rtsp
6914 NETWORKING = $networking
6915 OPENAL = $_openal
6916 OSS = $_ossaudio
6917 PE_EXECUTABLE = $_pe_executable
6918 PNG = $_png
6919 PNM = $_pnm
6920 PRIORITY = $_priority
6921 PULSE = $_pulse
6922 PVR = $_pvr
6923 QTX_CODECS = $_qtx
6924 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6925 QTX_EMULATION = $_qtx_emulation
6926 QUARTZ = $_quartz
6927 RADIO=$_radio
6928 RADIO_CAPTURE=$_radio_capture
6929 REAL_CODECS = $_real
6930 S3FB = $_s3fb
6931 SDL = $_sdl
6932 SPEEX = $_speex
6933 STREAM_CACHE = $_stream_cache
6934 SGIAUDIO = $_sgiaudio
6935 SUNAUDIO = $_sunaudio
6936 SVGA = $_svga
6937 TDFXFB = $_tdfxfb
6938 TDFXVID = $_tdfxvid
6939 TGA = $_tga
6940 TREMOR_INTERNAL = $_tremor_internal
6941 TV = $_tv
6942 TV_BSDBT848 = $_tv_bsdbt848
6943 TV_DSHOW = $_tv_dshow
6944 TV_V4L = $_tv_v4l
6945 TV_V4L1 = $_tv_v4l1
6946 TV_V4L2 = $_tv_v4l2
6947 UNRAR_EXEC = $_unrar_exec
6948 V4L2 = $_v4l2
6949 VCD = $_vcd
6950 VDPAU = $_vdpau
6951 VESA = $_vesa
6952 VORBIS = $_vorbis
6953 VSTREAM = $_vstream
6954 WII = $_wii
6955 WIN32DLL = $_win32dll
6956 WIN32WAVEOUT = $_win32waveout
6957 WIN32_EMULATION = $_win32_emulation
6958 X11 = $_x11
6959 XANIM_CODECS = $_xanim
6960 XMGA = $_xmga
6961 XMMS_PLUGINS = $_xmms
6962 XV = $_xv
6963 XVID4 = $_xvid
6964 XVMC = $_xvmc
6965 XVR100 = $_xvr100
6966 YUV4MPEG = $_yuv4mpeg
6968 # FFmpeg
6969 FFMPEG = $ffmpeg
6970 FFMPEG_EVAL_API = $ffmpeg_eval_api
6971 FFMPEG_INTERNALS = $ffmpeg_internals
6972 FFMPEG_SOURCE_PATH = $_ffmpeg_source
6974 RANLIB = $_ranlib
6975 YASM = $_yasm
6976 YASMFLAGS = $YASMFLAGS
6978 CONFIG_BZLIB = $bzlib
6979 CONFIG_VDPAU = $_vdpau
6980 CONFIG_XVMC = $_xvmc
6981 CONFIG_ZLIB = $_zlib
6983 HAVE_PTHREADS = $_pthreads
6984 HAVE_SHM = $_shm
6985 HAVE_W32THREADS = $_w32threads
6986 HAVE_YASM = $have_yasm
6990 #############################################################################
6992 ff_config_enable () {
6993 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6994 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6995 _nprefix=$3;
6996 test -z "$_nprefix" && _nprefix='CONFIG'
6997 for part in $list; do
6998 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6999 echo "#define ${_nprefix}_$part 1"
7000 else
7001 echo "#define ${_nprefix}_$part 0"
7003 done
7006 echo "Creating config.h"
7007 cat > $TMPH << EOF
7008 /*----------------------------------------------------------------------------
7009 ** This file has been automatically generated by configure any changes in it
7010 ** will be lost when you run configure again.
7011 ** Instead of modifying definitions here, use the --enable/--disable options
7012 ** of the configure script! See ./configure --help for details.
7013 *---------------------------------------------------------------------------*/
7015 #ifndef MPLAYER_CONFIG_H
7016 #define MPLAYER_CONFIG_H
7018 /* Undefine this if you do not want to select mono audio (left or right)
7019 with a stereo MPEG layer 2/3 audio stream. The command line option
7020 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7021 right-only), with 0 being the default.
7023 #define CONFIG_FAKE_MONO 1
7025 /* set up audio OUTBURST. Do not change this! */
7026 #define OUTBURST 512
7028 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
7029 #undef FAST_OSD
7030 #undef FAST_OSD_TABLE
7034 #define CONFIGURATION "$configuration"
7036 #define MPLAYER_DATADIR "$_datadir"
7037 #define MPLAYER_CONFDIR "$_confdir"
7038 #define MPLAYER_LIBDIR "$_libdir"
7039 #define MPLAYER_LOCALEDIR "$_localedir"
7041 $def_translation
7043 /* definitions needed by included libraries */
7044 #define HAVE_INTTYPES_H 1
7045 /* libdvdcss */
7046 #define HAVE_ERRNO_H 1
7047 /* libdvdcss + libdvdread */
7048 #define HAVE_LIMITS_H 1
7049 /* libdvdcss */
7050 #define HAVE_UNISTD_H 1
7051 /* libdvdread */
7052 #define STDC_HEADERS 1
7053 #define HAVE_MEMCPY 1
7054 /* libdvdnav */
7055 #define READ_CACHE_TRACE 0
7056 /* libdvdread */
7057 #define HAVE_DLFCN_H 1
7058 $def_dvdcss
7061 /* system headers */
7062 $def_alloca_h
7063 $def_alsa_asoundlib_h
7064 $def_altivec_h
7065 $def_malloc_h
7066 $def_mman_h
7067 $def_mman_has_map_failed
7068 $def_soundcard_h
7069 $def_sys_asoundlib_h
7070 $def_sys_soundcard_h
7071 $def_sys_sysinfo_h
7072 $def_termios_h
7073 $def_termios_sys_h
7074 $def_winsock2_h
7077 /* system functions */
7078 $def_gethostbyname2
7079 $def_gettimeofday
7080 $def_glob
7081 $def_langinfo
7082 $def_lrintf
7083 $def_map_memalign
7084 $def_memalign
7085 $def_nanosleep
7086 $def_posix_select
7087 $def_select
7088 $def_setenv
7089 $def_setmode
7090 $def_shm
7091 $def_strsep
7092 $def_swab
7093 $def_sysi86
7094 $def_sysi86_iv
7095 $def_termcap
7096 $def_termios
7097 $def_vsscanf
7100 /* system-specific features */
7101 $def_asmalign_pot
7102 $def_builtin_expect
7103 $def_dl
7104 $def_dos_paths
7105 $def_extern_asm
7106 $def_extern_prefix
7107 $def_iconv
7108 $def_kstat
7109 $def_macosx_bundle
7110 $def_macosx_finder
7111 $def_maemo
7112 $def_named_asm_args
7113 $def_priority
7114 $def_quicktime
7115 $def_restrict_keyword
7116 $def_rtc
7117 $def_unrar_exec
7120 /* configurable options */
7121 $def_charset
7122 $def_crash_debug
7123 $def_debug
7124 $def_dynamic_plugins
7125 $def_fastmemcpy
7126 $def_menu
7127 $def_runtime_cpudetection
7128 $def_sighandler
7129 $def_sortsub
7130 $def_stream_cache
7131 $def_pthread_cache
7134 /* CPU stuff */
7135 #define __CPU__ $iproc
7136 $def_ebx_available
7137 $def_words_endian
7138 $def_bigendian
7139 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7140 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7141 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7144 /* Blu-ray/DVD/VCD/CD */
7145 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7146 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7147 $def_bluray
7148 $def_bsdi_dvd
7149 $def_cddb
7150 $def_cdio
7151 $def_cdparanoia
7152 $def_cdrom
7153 $def_dvd
7154 $def_dvd_bsd
7155 $def_dvd_darwin
7156 $def_dvd_linux
7157 $def_dvd_openbsd
7158 $def_dvdio
7159 $def_dvdnav
7160 $def_dvdread
7161 $def_hpux_scsi_h
7162 $def_libcdio
7163 $def_sol_scsi_h
7164 $def_vcd
7167 /* codec libraries */
7168 $def_faad
7169 $def_liba52
7170 $def_libdca
7171 $def_libdv
7172 $def_liblzo
7173 $def_mad
7174 $def_mp3lib
7175 $def_mpg123
7176 $def_musepack
7177 $def_speex
7178 $def_theora
7179 $def_tremor
7180 $def_vorbis
7181 $def_xvid
7182 $def_zlib
7184 $def_libnut
7187 /* binary codecs */
7188 $def_qtx
7189 $def_qtx_win32
7190 $def_real
7191 $def_win32_loader
7192 $def_win32dll
7193 $def_xanim
7194 $def_xmms
7195 #define BINARY_CODECS_PATH "$_codecsdir"
7196 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7199 /* Audio output drivers */
7200 $def_alsa
7201 $def_alsa1x
7202 $def_alsa5
7203 $def_alsa9
7204 $def_arts
7205 $def_coreaudio
7206 $def_dart
7207 $def_esd
7208 $def_esd_latency
7209 $def_jack
7210 $def_kai
7211 $def_nas
7212 $def_openal
7213 $def_openal_h
7214 $def_ossaudio
7215 $def_ossaudio_devdsp
7216 $def_ossaudio_devmixer
7217 $def_pulse
7218 $def_sgiaudio
7219 $def_sunaudio
7220 $def_win32waveout
7222 $def_ladspa
7223 $def_libbs2b
7226 /* input */
7227 $def_apple_ir
7228 $def_apple_remote
7229 $def_ioctl_bt848_h_name
7230 $def_ioctl_meteor_h_name
7231 $def_joystick
7232 $def_lirc
7233 $def_lircc
7234 $def_pvr
7235 $def_radio
7236 $def_radio_bsdbt848
7237 $def_radio_capture
7238 $def_radio_v4l
7239 $def_radio_v4l2
7240 $def_tv
7241 $def_tv_bsdbt848
7242 $def_tv_dshow
7243 $def_tv_v4l
7244 $def_tv_v4l1
7245 $def_tv_v4l2
7248 /* font stuff */
7249 $def_ass
7250 $def_bitmap_font
7251 $def_enca
7252 $def_fontconfig
7253 $def_freetype
7254 $def_fribidi
7257 /* networking */
7258 $def_closesocket
7259 $def_ftp
7260 $def_inet6
7261 $def_inet_aton
7262 $def_inet_pton
7263 $def_live
7264 $def_nemesi
7265 $def_networking
7266 $def_smb
7267 $def_socklen_t
7268 $def_vstream
7271 /* libvo options */
7272 $def_3dfx
7273 $def_aa
7274 $def_bl
7275 $def_caca
7276 $def_corevideo
7277 $def_dga
7278 $def_dga1
7279 $def_dga2
7280 $def_direct3d
7281 $def_directfb
7282 $def_directx
7283 $def_dvb
7284 $def_dvbin
7285 $def_dxr3
7286 $def_fbdev
7287 $def_ggi
7288 $def_ggiwmh
7289 $def_gif
7290 $def_gif_4
7291 $def_gif_tvt_hack
7292 $def_gl
7293 $def_gl_win32
7294 $def_gl_x11
7295 $def_gl_sdl
7296 $def_matrixview
7297 $def_ivtv
7298 $def_jpeg
7299 $def_kva
7300 $def_md5sum
7301 $def_mga
7302 $def_mng
7303 $def_png
7304 $def_pnm
7305 $def_quartz
7306 $def_s3fb
7307 $def_sdl
7308 $def_sdl_sdl_h
7309 $def_svga
7310 $def_tdfxfb
7311 $def_tdfxvid
7312 $def_tga
7313 $def_v4l2
7314 $def_vdpau
7315 $def_vesa
7316 $def_vm
7317 $def_wii
7318 $def_x11
7319 $def_xdpms
7320 $def_xf86keysym
7321 $def_xinerama
7322 $def_xmga
7323 $def_xss
7324 $def_xv
7325 $def_xvmc
7326 $def_xvr100
7327 $def_yuv4mpeg
7330 /* FFmpeg */
7331 $def_ffmpeg
7332 $def_ffmpeg_eval_api
7333 $def_ffmpeg_internals
7335 $def_arpa_inet_h
7336 $def_bswap
7337 $def_bzlib
7338 $def_dcbzl
7339 $def_exp2
7340 $def_exp2f
7341 $def_fast_64bit
7342 $def_fast_unaligned
7343 $def_llrint
7344 $def_log2
7345 $def_log2f
7346 $def_lrint
7347 $def_memalign_hack
7348 $def_mkstemp
7349 $def_posix_memalign
7350 $def_pthreads
7351 $def_round
7352 $def_roundf
7353 $def_ten_operands
7354 $def_threads
7355 $def_truncf
7356 $def_xform_asm
7357 $def_yasm
7359 #define HAVE_INLINE_ASM 1
7361 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7362 #ifndef MP_DEBUG
7363 #define HAVE_EBP_AVAILABLE 1
7364 #else
7365 #define HAVE_EBP_AVAILABLE 0
7366 #endif
7368 #endif /* MPLAYER_CONFIG_H */
7371 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7372 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7374 #############################################################################
7376 ./version.sh `$_cc -dumpversion`
7378 cat << EOF
7380 Config files successfully generated by ./configure $configuration !
7382 Install prefix: $_prefix
7383 Data directory: $_datadir
7384 Config direct.: $_confdir
7386 Byte order: $_byte_order
7387 Optimizing for: $_optimizing
7389 Languages:
7390 Messages (in addition to English): $language_msg
7391 Manual pages: $language_man
7392 Documentation: $language_doc
7394 Enabled optional drivers:
7395 Input: $inputmodules
7396 Codecs: $codecmodules
7397 Audio output: $aomodules
7398 Video output: $vomodules
7400 Disabled optional drivers:
7401 Input: $noinputmodules
7402 Codecs: $nocodecmodules
7403 Audio output: $noaomodules
7404 Video output: $novomodules
7406 'config.h' and 'config.mak' contain your configuration options.
7407 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7408 compile *** DO NOT REPORT BUGS if you tweak these files ***
7410 'make' will now compile MPlayer and 'make install' will install it.
7411 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7416 if test "$_mtrr" = yes ; then
7417 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7418 echo
7421 if ! x86_32; then
7422 cat <<EOF
7423 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7424 operating system ($system_name). You may encounter a few files that cannot
7425 be played due to missing open source video/audio codec support.
7431 cat <<EOF
7432 Check $TMPLOG if you wonder why an autodetection failed (make sure
7433 development headers/packages are installed).
7435 NOTE: The --enable-* parameters unconditionally force options on, completely
7436 skipping autodetection. This behavior is unlike what you may be used to from
7437 autoconf-based configure scripts that can decide to override you. This greater
7438 level of control comes at a price. You may have to provide the correct compiler
7439 and linker flags yourself.
7440 If you used one of these options (except --enable-menu and similar ones that
7441 turn on internal features) and experience a compilation or linking failure,
7442 make sure you have passed the necessary compiler/linker flags to configure.
7444 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7448 if test "$warn_cflags" = yes; then
7449 cat <<EOF
7451 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7452 but:
7454 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7456 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7457 To do so, execute 'CFLAGS= ./configure <options>'
7462 # Last move:
7463 rm -rf "$mplayer_tmpdir"