options: remove CONF_OLD option flag
[mplayer/greg.git] / configure
blobf5ca0ee846e9326842c320d37274b0be4d88d644
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-libmpeg2 disable builtin libmpeg2 [autodetect]
386 --disable-musepack disable musepack support [autodetect]
388 Video output:
389 --enable-gl enable OpenGL video output [autodetect]
390 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
391 --enable-dga2 enable DGA 2 support [autodetect]
392 --enable-dga1 enable DGA 1 support [autodetect]
393 --enable-vesa enable VESA video output [autodetect]
394 --enable-svga enable SVGAlib video output [autodetect]
395 --enable-sdl enable SDL video output [autodetect]
396 --enable-kva enable KVA video output [autodetect]
397 --enable-aa enable AAlib video output [autodetect]
398 --enable-caca enable CACA video output [autodetect]
399 --enable-ggi enable GGI video output [autodetect]
400 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
401 --enable-direct3d enable Direct3D video output [autodetect]
402 --enable-directx enable DirectX video output [autodetect]
403 --enable-dxr3 enable DXR3/H+ video output [autodetect]
404 --enable-ivtv enable IVTV TV-Out video output [autodetect]
405 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
406 --enable-dvb enable DVB video output [autodetect]
407 --enable-mga enable mga_vid video output [autodetect]
408 --enable-xmga enable mga_vid X11 video output [autodetect]
409 --enable-xv enable Xv video output [autodetect]
410 --enable-xvmc enable XvMC acceleration [disable]
411 --enable-vdpau enable VDPAU acceleration [autodetect]
412 --enable-vm enable XF86VidMode support [autodetect]
413 --enable-xinerama enable Xinerama support [autodetect]
414 --enable-x11 enable X11 video output [autodetect]
415 --enable-xshape enable XShape support [autodetect]
416 --disable-xss disable screensaver support via xss [autodetect]
417 --enable-fbdev enable FBDev video output [autodetect]
418 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
419 --enable-tdfxfb enable tdfxfb video output [disable]
420 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
421 --enable-wii enable Nintendo Wii/GameCube video output [disable]
422 --enable-directfb enable DirectFB video output [autodetect]
423 --enable-bl enable Blinkenlights video output [disable]
424 --enable-tdfxvid enable tdfx_vid video output [disable]
425 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
426 --disable-tga disable Targa video output [enable]
427 --disable-pnm disable PNM video output [enable]
428 --disable-md5sum disable md5sum video output [enable]
429 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
430 --disable-corevideo disable CoreVideo video output [autodetect]
431 --disable-quartz disable Quartz video output [autodetect]
433 Audio output:
434 --disable-alsa disable ALSA audio output [autodetect]
435 --disable-ossaudio disable OSS audio output [autodetect]
436 --disable-arts disable aRts audio output [autodetect]
437 --disable-esd disable esd audio output [autodetect]
438 --disable-pulse disable Pulseaudio audio output [autodetect]
439 --disable-jack disable JACK audio output [autodetect]
440 --enable-openal enable OpenAL audio output [disable]
441 --disable-nas disable NAS audio output [autodetect]
442 --disable-sgiaudio disable SGI audio output [autodetect]
443 --disable-sunaudio disable Sun audio output [autodetect]
444 --disable-kai disable KAI audio output [autodetect]
445 --disable-dart disable DART audio output [autodetect]
446 --disable-win32waveout disable Windows waveout audio output [autodetect]
447 --disable-coreaudio disable CoreAudio audio output [autodetect]
448 --disable-select disable using select() on the audio device [enable]
450 Language options:
451 --enable-translation enable support for translated output [disable]
452 --charset=charset convert the console messages to this character set
453 --language-doc=lang language to use for the documentation [en]
454 --language-man=lang language to use for the man pages [en]
455 --language-msg=lang extra languages for program messages [all]
456 --language=lang default language to use [en]
457 Specific options override --language. You can pass a list of languages separated
458 by whitespace or commas instead of a single language. Nonexisting translations
459 will be dropped from each list. All translations available in the list will be
460 installed. The value "all" will activate all translations. The LINGUAS
461 environment variable is honored. In all cases the fallback is English.
462 The program always supports English-language output; additional message
463 languages are only installed if --enable-translation is also specified.
464 Available values for --language-doc are: all $doc_lang_all
465 Available values for --language-man are: all $man_lang_all
466 Available values for --language-msg are: all $msg_lang_all
468 Miscellaneous options:
469 --enable-runtime-cpudetection enable runtime CPU detection [disable]
470 --enable-cross-compile enable cross-compilation [autodetect]
471 --cc=COMPILER C compiler to build MPlayer [gcc]
472 --host-cc=COMPILER C compiler for tools needed while building [gcc]
473 --as=ASSEMBLER assembler to build MPlayer [as]
474 --nm=NM nm tool to build MPlayer [nm]
475 --yasm=YASM Yasm assembler to build MPlayer [yasm]
476 --ar=AR librarian to build MPlayer [ar]
477 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
478 --windres=WINDRES windres to build MPlayer [windres]
479 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
480 --enable-static build a statically linked binary
481 --with-install=PATH path to a custom install program
483 Advanced options:
484 --enable-mmx enable MMX [autodetect]
485 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
486 --enable-3dnow enable 3DNow! [autodetect]
487 --enable-3dnowext enable extended 3DNow! [autodetect]
488 --enable-sse enable SSE [autodetect]
489 --enable-sse2 enable SSE2 [autodetect]
490 --enable-ssse3 enable SSSE3 [autodetect]
491 --enable-shm enable shm [autodetect]
492 --enable-altivec enable AltiVec (PowerPC) [autodetect]
493 --enable-armv5te enable DSP extensions (ARM) [autodetect]
494 --enable-armv6 enable ARMv6 (ARM) [autodetect]
495 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
496 --enable-armvfp enable ARM VFP (ARM) [autodetect]
497 --enable-neon enable NEON (ARM) [autodetect]
498 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
499 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
500 --enable-big-endian force byte order to big-endian [autodetect]
501 --enable-debug[=1-3] compile-in debugging information [disable]
502 --enable-profile compile-in profiling information [disable]
503 --disable-sighandler disable sighandler for crashes [enable]
504 --enable-crash-debug enable automatic gdb attach on crash [disable]
505 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
506 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
508 Use these options if autodetection fails:
509 --extra-cflags=FLAGS extra CFLAGS
510 --extra-ldflags=FLAGS extra LDFLAGS
511 --extra-libs=FLAGS extra linker flags
512 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
513 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
515 --with-freetype-config=PATH path to freetype-config
516 --with-glib-config=PATH path to glib*-config
517 --with-gtk-config=PATH path to gtk*-config
518 --with-sdl-config=PATH path to sdl*-config
519 --with-dvdnav-config=PATH path to dvdnav-config
520 --with-dvdread-config=PATH path to dvdread-config
522 This configure script is NOT autoconf-based, even though its output is similar.
523 It will try to autodetect all configuration options. If you --enable an option
524 it will be forcefully turned on, skipping autodetection. This can break
525 compilation, so you need to know what you are doing.
527 exit 0
528 } #show_help()
530 # GOTCHA: the variables below defines the default behavior for autodetection
531 # and have - unless stated otherwise - at least 2 states : yes no
532 # If autodetection is available then the third state is: auto
533 _mmx=auto
534 _3dnow=auto
535 _3dnowext=auto
536 _mmxext=auto
537 _sse=auto
538 _sse2=auto
539 _ssse3=auto
540 _cmov=auto
541 _fast_cmov=auto
542 _fast_clz=auto
543 _armv5te=auto
544 _armv6=auto
545 _armv6t2=auto
546 _armvfp=auto
547 neon=auto
548 _iwmmxt=auto
549 _mtrr=auto
550 _altivec=auto
551 _install=install
552 _ranlib=ranlib
553 _windres=windres
554 _cc=cc
555 _ar=ar
556 test "$CC" && _cc="$CC"
557 _as=auto
558 _nm=auto
559 _yasm=yasm
560 _runtime_cpudetection=no
561 _cross_compile=auto
562 _prefix="/usr/local"
563 ffmpeg=auto
564 ffmpeg_internals=no
565 _mplayer=yes
566 _x11=auto
567 _xshape=auto
568 _xss=auto
569 _dga1=auto
570 _dga2=auto
571 _xv=auto
572 _xvmc=no #auto when complete
573 _vdpau=auto
574 _sdl=auto
575 _kva=auto
576 _direct3d=auto
577 _directx=auto
578 _win32waveout=auto
579 _nas=auto
580 _png=auto
581 _mng=auto
582 _jpeg=auto
583 _pnm=yes
584 _md5sum=yes
585 _yuv4mpeg=yes
586 _gif=auto
587 _gl=auto
588 matrixview=yes
589 _ggi=auto
590 _ggiwmh=auto
591 _aa=auto
592 _caca=auto
593 _svga=auto
594 _vesa=auto
595 _fbdev=auto
596 _dvb=auto
597 _dxr3=auto
598 _ivtv=auto
599 _v4l2=auto
600 _iconv=auto
601 _langinfo=auto
602 _rtc=auto
603 _ossaudio=auto
604 _arts=auto
605 _esd=auto
606 _pulse=auto
607 _jack=auto
608 _kai=auto
609 _dart=auto
610 _openal=no
611 _libcdio=auto
612 _liblzo=auto
613 _mad=auto
614 _tremor=auto
615 _tremor_internal=yes
616 _tremor_low=no
617 _libvorbis=auto
618 _speex=auto
619 _theora=auto
620 _mpg123=auto
621 _mp3lib=auto
622 _liba52=auto
623 _libdca=auto
624 _libmpeg2=auto
625 _faad=auto
626 _ladspa=auto
627 _libbs2b=auto
628 _xmms=no
629 _vcd=auto
630 _bluray=auto
631 _dvdnav=auto
632 _dvdnavconfig=dvdnav-config
633 _dvdreadconfig=dvdread-config
634 _dvdread=auto
635 _dvdread_internal=auto
636 _libdvdcss_internal=auto
637 _xanim=auto
638 _real=auto
639 _live=auto
640 _nemesi=auto
641 _native_rtsp=yes
642 _xinerama=auto
643 _mga=auto
644 _xmga=auto
645 _vm=auto
646 _xf86keysym=auto
647 _sgiaudio=auto
648 _sunaudio=auto
649 _alsa=auto
650 _fastmemcpy=yes
651 _unrar_exec=auto
652 _win32dll=auto
653 _select=yes
654 _radio=no
655 _radio_capture=no
656 _radio_v4l=auto
657 _radio_v4l2=auto
658 _radio_bsdbt848=auto
659 _tv=yes
660 _tv_v4l1=auto
661 _tv_v4l2=auto
662 _tv_bsdbt848=auto
663 _tv_dshow=auto
664 _pvr=auto
665 networking=yes
666 _winsock2_h=auto
667 _smb=auto
668 _joystick=no
669 _xvid=auto
670 _libnut=auto
671 _lirc=auto
672 _lircc=auto
673 _apple_remote=auto
674 _apple_ir=auto
675 _gui=no
676 _gtk1=no
677 _termcap=auto
678 _termios=auto
679 _3dfx=no
680 _s3fb=no
681 _wii=no
682 _tdfxfb=no
683 _tdfxvid=no
684 _xvr100=auto
685 _tga=yes
686 _directfb=auto
687 _bl=no
688 _largefiles=yes
689 #language=en
690 _shm=auto
691 _translation=no
692 _charset="UTF-8"
693 _dynamic_plugins=no
694 _crash_debug=no
695 _sighandler=yes
696 _libdv=auto
697 _cdparanoia=auto
698 _cddb=auto
699 _big_endian=auto
700 _bitmap_font=yes
701 _freetype=auto
702 _fontconfig=auto
703 _menu=no
704 _qtx=auto
705 _maemo=auto
706 _coreaudio=auto
707 _corevideo=auto
708 _quartz=auto
709 quicktime=auto
710 _macosx_finder=no
711 _macosx_bundle=auto
712 _sortsub=yes
713 _freetypeconfig='freetype-config'
714 _fribidi=auto
715 _enca=auto
716 _inet6=auto
717 _gethostbyname2=auto
718 _ftp=auto
719 _musepack=auto
720 _vstream=auto
721 _pthreads=auto
722 _w32threads=auto
723 _ass=auto
724 _rpath=no
725 _asmalign_pot=auto
726 _stream_cache=yes
727 _priority=no
728 def_dos_paths="#define HAVE_DOS_PATHS 0"
729 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
730 def_priority="#undef CONFIG_PRIORITY"
731 def_pthread_cache="#undef PTHREAD_CACHE"
732 need_shmem=yes
733 for ac_option do
734 case "$ac_option" in
735 --help|-help|-h)
736 show_help
738 --prefix=*)
739 _prefix=$(echo $ac_option | cut -d '=' -f 2)
741 --bindir=*)
742 _bindir=$(echo $ac_option | cut -d '=' -f 2)
744 --datadir=*)
745 _datadir=$(echo $ac_option | cut -d '=' -f 2)
747 --mandir=*)
748 _mandir=$(echo $ac_option | cut -d '=' -f 2)
750 --confdir=*)
751 _confdir=$(echo $ac_option | cut -d '=' -f 2)
753 --libdir=*)
754 _libdir=$(echo $ac_option | cut -d '=' -f 2)
756 --codecsdir=*)
757 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
759 --localedir=*)
760 _localedir=$(echo $ac_option | cut -d '=' -f 2)
763 --with-install=*)
764 _install=$(echo $ac_option | cut -d '=' -f 2 )
766 --with-xvmclib=*)
767 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
770 --with-sdl-config=*)
771 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
773 --with-freetype-config=*)
774 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
776 --with-gtk-config=*)
777 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
779 --with-glib-config=*)
780 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
782 --with-dvdnav-config=*)
783 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
785 --with-dvdread-config=*)
786 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
789 --extra-cflags=*)
790 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
792 --extra-ldflags=*)
793 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
795 --extra-libs=*)
796 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
798 --extra-libs-mplayer=*)
799 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
802 --target=*)
803 _target=$(echo $ac_option | cut -d '=' -f 2)
805 --cc=*)
806 _cc=$(echo $ac_option | cut -d '=' -f 2)
808 --host-cc=*)
809 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
811 --as=*)
812 _as=$(echo $ac_option | cut -d '=' -f 2)
814 --nm=*)
815 _nm=$(echo $ac_option | cut -d '=' -f 2)
817 --yasm=*)
818 _yasm=$(echo $ac_option | cut -d '=' -f 2)
820 --ar=*)
821 _ar=$(echo $ac_option | cut -d '=' -f 2)
823 --ranlib=*)
824 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
826 --windres=*)
827 _windres=$(echo $ac_option | cut -d '=' -f 2)
829 --charset=*)
830 _charset=$(echo $ac_option | cut -d '=' -f 2)
832 --language-doc=*)
833 language_doc=$(echo $ac_option | cut -d '=' -f 2)
835 --language-man=*)
836 language_man=$(echo $ac_option | cut -d '=' -f 2)
838 --language-msg=*)
839 language_msg=$(echo $ac_option | cut -d '=' -f 2)
841 --language=*)
842 language=$(echo $ac_option | cut -d '=' -f 2)
845 --enable-static)
846 _ld_static='-static'
848 --disable-static)
849 _ld_static=''
851 --enable-profile)
852 _profile='-p'
854 --disable-profile)
855 _profile=
857 --enable-debug)
858 _debug='-g'
860 --enable-debug=*)
861 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
863 --disable-debug)
864 _debug=
866 --enable-translation) _translation=yes ;;
867 --disable-translation) _translation=no ;;
868 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
869 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
870 --enable-cross-compile) _cross_compile=yes ;;
871 --disable-cross-compile) _cross_compile=no ;;
872 --enable-mplayer) _mplayer=yes ;;
873 --disable-mplayer) _mplayer=no ;;
874 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
875 --disable-dynamic-plugins) _dynamic_plugins=no ;;
876 --enable-x11) _x11=yes ;;
877 --disable-x11) _x11=no ;;
878 --enable-xshape) _xshape=yes ;;
879 --disable-xshape) _xshape=no ;;
880 --enable-xss) _xss=yes ;;
881 --disable-xss) _xss=no ;;
882 --enable-xv) _xv=yes ;;
883 --disable-xv) _xv=no ;;
884 --enable-xvmc) _xvmc=yes ;;
885 --disable-xvmc) _xvmc=no ;;
886 --enable-vdpau) _vdpau=yes ;;
887 --disable-vdpau) _vdpau=no ;;
888 --enable-sdl) _sdl=yes ;;
889 --disable-sdl) _sdl=no ;;
890 --enable-kva) _kva=yes ;;
891 --disable-kva) _kva=no ;;
892 --enable-direct3d) _direct3d=yes ;;
893 --disable-direct3d) _direct3d=no ;;
894 --enable-directx) _directx=yes ;;
895 --disable-directx) _directx=no ;;
896 --enable-win32waveout) _win32waveout=yes ;;
897 --disable-win32waveout) _win32waveout=no ;;
898 --enable-nas) _nas=yes ;;
899 --disable-nas) _nas=no ;;
900 --enable-png) _png=yes ;;
901 --disable-png) _png=no ;;
902 --enable-mng) _mng=yes ;;
903 --disable-mng) _mng=no ;;
904 --enable-jpeg) _jpeg=yes ;;
905 --disable-jpeg) _jpeg=no ;;
906 --enable-pnm) _pnm=yes ;;
907 --disable-pnm) _pnm=no ;;
908 --enable-md5sum) _md5sum=yes ;;
909 --disable-md5sum) _md5sum=no ;;
910 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
911 --disable-yuv4mpeg) _yuv4mpeg=no ;;
912 --enable-gif) _gif=yes ;;
913 --disable-gif) _gif=no ;;
914 --enable-gl) _gl=yes ;;
915 --disable-gl) _gl=no ;;
916 --enable-matrixview) matrixview=yes ;;
917 --disable-matrixview) matrixview=no ;;
918 --enable-ggi) _ggi=yes ;;
919 --disable-ggi) _ggi=no ;;
920 --enable-ggiwmh) _ggiwmh=yes ;;
921 --disable-ggiwmh) _ggiwmh=no ;;
922 --enable-aa) _aa=yes ;;
923 --disable-aa) _aa=no ;;
924 --enable-caca) _caca=yes ;;
925 --disable-caca) _caca=no ;;
926 --enable-svga) _svga=yes ;;
927 --disable-svga) _svga=no ;;
928 --enable-vesa) _vesa=yes ;;
929 --disable-vesa) _vesa=no ;;
930 --enable-fbdev) _fbdev=yes ;;
931 --disable-fbdev) _fbdev=no ;;
932 --enable-dvb) _dvb=yes ;;
933 --disable-dvb) _dvb=no ;;
934 --enable-dxr3) _dxr3=yes ;;
935 --disable-dxr3) _dxr3=no ;;
936 --enable-ivtv) _ivtv=yes ;;
937 --disable-ivtv) _ivtv=no ;;
938 --enable-v4l2) _v4l2=yes ;;
939 --disable-v4l2) _v4l2=no ;;
940 --enable-iconv) _iconv=yes ;;
941 --disable-iconv) _iconv=no ;;
942 --enable-langinfo) _langinfo=yes ;;
943 --disable-langinfo) _langinfo=no ;;
944 --enable-rtc) _rtc=yes ;;
945 --disable-rtc) _rtc=no ;;
946 --enable-libdv) _libdv=yes ;;
947 --disable-libdv) _libdv=no ;;
948 --enable-ossaudio) _ossaudio=yes ;;
949 --disable-ossaudio) _ossaudio=no ;;
950 --enable-arts) _arts=yes ;;
951 --disable-arts) _arts=no ;;
952 --enable-esd) _esd=yes ;;
953 --disable-esd) _esd=no ;;
954 --enable-pulse) _pulse=yes ;;
955 --disable-pulse) _pulse=no ;;
956 --enable-jack) _jack=yes ;;
957 --disable-jack) _jack=no ;;
958 --enable-openal) _openal=yes ;;
959 --disable-openal) _openal=no ;;
960 --enable-kai) _kai=yes ;;
961 --disable-kai) _kai=no ;;
962 --enable-dart) _dart=yes ;;
963 --disable-dart) _dart=no ;;
964 --enable-mad) _mad=yes ;;
965 --disable-mad) _mad=no ;;
966 --enable-libcdio) _libcdio=yes ;;
967 --disable-libcdio) _libcdio=no ;;
968 --enable-liblzo) _liblzo=yes ;;
969 --disable-liblzo) _liblzo=no ;;
970 --enable-libvorbis) _libvorbis=yes ;;
971 --disable-libvorbis) _libvorbis=no ;;
972 --enable-speex) _speex=yes ;;
973 --disable-speex) _speex=no ;;
974 --enable-tremor) _tremor=yes ;;
975 --disable-tremor) _tremor=no ;;
976 --enable-tremor-internal) _tremor_internal=yes ;;
977 --disable-tremor-internal) _tremor_internal=no ;;
978 --enable-tremor-low) _tremor_low=yes ;;
979 --disable-tremor-low) _tremor_low=no ;;
980 --enable-theora) _theora=yes ;;
981 --disable-theora) _theora=no ;;
982 --enable-mpg123) _mpg123=yes ;;
983 --disable-mpg123) _mpg123=no ;;
984 --enable-mp3lib) _mp3lib=yes ;;
985 --disable-mp3lib) _mp3lib=no ;;
986 --enable-liba52) _liba52=yes ;;
987 --disable-liba52) _liba52=no ;;
988 --enable-libdca) _libdca=yes ;;
989 --disable-libdca) _libdca=no ;;
990 --enable-libmpeg2) _libmpeg2=yes ;;
991 --disable-libmpeg2) _libmpeg2=no ;;
992 --enable-musepack) _musepack=yes ;;
993 --disable-musepack) _musepack=no ;;
994 --enable-faad) _faad=yes ;;
995 --disable-faad) _faad=no ;;
996 --enable-ladspa) _ladspa=yes ;;
997 --disable-ladspa) _ladspa=no ;;
998 --enable-libbs2b) _libbs2b=yes ;;
999 --disable-libbs2b) _libbs2b=no ;;
1000 --enable-xmms) _xmms=yes ;;
1001 --disable-xmms) _xmms=no ;;
1002 --enable-vcd) _vcd=yes ;;
1003 --disable-vcd) _vcd=no ;;
1004 --enable-bluray) _bluray=yes ;;
1005 --disable-bluray) _bluray=no ;;
1006 --enable-dvdread) _dvdread=yes ;;
1007 --disable-dvdread) _dvdread=no ;;
1008 --enable-dvdread-internal) _dvdread_internal=yes ;;
1009 --disable-dvdread-internal) _dvdread_internal=no ;;
1010 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1011 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1012 --enable-dvdnav) _dvdnav=yes ;;
1013 --disable-dvdnav) _dvdnav=no ;;
1014 --enable-xanim) _xanim=yes ;;
1015 --disable-xanim) _xanim=no ;;
1016 --enable-real) _real=yes ;;
1017 --disable-real) _real=no ;;
1018 --enable-live) _live=yes ;;
1019 --disable-live) _live=no ;;
1020 --enable-nemesi) _nemesi=yes ;;
1021 --disable-nemesi) _nemesi=no ;;
1022 --enable-xinerama) _xinerama=yes ;;
1023 --disable-xinerama) _xinerama=no ;;
1024 --enable-mga) _mga=yes ;;
1025 --disable-mga) _mga=no ;;
1026 --enable-xmga) _xmga=yes ;;
1027 --disable-xmga) _xmga=no ;;
1028 --enable-vm) _vm=yes ;;
1029 --disable-vm) _vm=no ;;
1030 --enable-xf86keysym) _xf86keysym=yes ;;
1031 --disable-xf86keysym) _xf86keysym=no ;;
1032 --enable-sunaudio) _sunaudio=yes ;;
1033 --disable-sunaudio) _sunaudio=no ;;
1034 --enable-sgiaudio) _sgiaudio=yes ;;
1035 --disable-sgiaudio) _sgiaudio=no ;;
1036 --enable-alsa) _alsa=yes ;;
1037 --disable-alsa) _alsa=no ;;
1038 --enable-tv) _tv=yes ;;
1039 --disable-tv) _tv=no ;;
1040 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1041 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1042 --enable-tv-v4l1) _tv_v4l1=yes ;;
1043 --disable-tv-v4l1) _tv_v4l1=no ;;
1044 --enable-tv-v4l2) _tv_v4l2=yes ;;
1045 --disable-tv-v4l2) _tv_v4l2=no ;;
1046 --enable-tv-dshow) _tv_dshow=yes ;;
1047 --disable-tv-dshow) _tv_dshow=no ;;
1048 --enable-radio) _radio=yes ;;
1049 --enable-radio-capture) _radio_capture=yes ;;
1050 --disable-radio-capture) _radio_capture=no ;;
1051 --disable-radio) _radio=no ;;
1052 --enable-radio-v4l) _radio_v4l=yes ;;
1053 --disable-radio-v4l) _radio_v4l=no ;;
1054 --enable-radio-v4l2) _radio_v4l2=yes ;;
1055 --disable-radio-v4l2) _radio_v4l2=no ;;
1056 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1057 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1058 --enable-pvr) _pvr=yes ;;
1059 --disable-pvr) _pvr=no ;;
1060 --enable-fastmemcpy) _fastmemcpy=yes ;;
1061 --disable-fastmemcpy) _fastmemcpy=no ;;
1062 --enable-networking) networking=yes ;;
1063 --disable-networking) networking=no ;;
1064 --enable-winsock2_h) _winsock2_h=yes ;;
1065 --disable-winsock2_h) _winsock2_h=no ;;
1066 --enable-smb) _smb=yes ;;
1067 --disable-smb) _smb=no ;;
1068 --enable-joystick) _joystick=yes ;;
1069 --disable-joystick) _joystick=no ;;
1070 --enable-xvid) _xvid=yes ;;
1071 --disable-xvid) _xvid=no ;;
1072 --enable-libnut) _libnut=yes ;;
1073 --disable-libnut) _libnut=no ;;
1074 --enable-ffmpeg) ffmpeg=yes ;;
1075 --disable-ffmpeg) ffmpeg=no ;;
1076 --ffmpeg-source-dir=*)
1077 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1079 --enable-lirc) _lirc=yes ;;
1080 --disable-lirc) _lirc=no ;;
1081 --enable-lircc) _lircc=yes ;;
1082 --disable-lircc) _lircc=no ;;
1083 --enable-apple-remote) _apple_remote=yes ;;
1084 --disable-apple-remote) _apple_remote=no ;;
1085 --enable-apple-ir) _apple_ir=yes ;;
1086 --disable-apple-ir) _apple_ir=no ;;
1087 --enable-gui) _gui=yes ;;
1088 --disable-gui) _gui=no ;;
1089 --enable-gtk1) _gtk1=yes ;;
1090 --disable-gtk1) _gtk1=no ;;
1091 --enable-termcap) _termcap=yes ;;
1092 --disable-termcap) _termcap=no ;;
1093 --enable-termios) _termios=yes ;;
1094 --disable-termios) _termios=no ;;
1095 --enable-3dfx) _3dfx=yes ;;
1096 --disable-3dfx) _3dfx=no ;;
1097 --enable-s3fb) _s3fb=yes ;;
1098 --disable-s3fb) _s3fb=no ;;
1099 --enable-wii) _wii=yes ;;
1100 --disable-wii) _wii=no ;;
1101 --enable-tdfxfb) _tdfxfb=yes ;;
1102 --disable-tdfxfb) _tdfxfb=no ;;
1103 --disable-tdfxvid) _tdfxvid=no ;;
1104 --enable-tdfxvid) _tdfxvid=yes ;;
1105 --disable-xvr100) _xvr100=no ;;
1106 --enable-xvr100) _xvr100=yes ;;
1107 --disable-tga) _tga=no ;;
1108 --enable-tga) _tga=yes ;;
1109 --enable-directfb) _directfb=yes ;;
1110 --disable-directfb) _directfb=no ;;
1111 --enable-bl) _bl=yes ;;
1112 --disable-bl) _bl=no ;;
1113 --enable-mtrr) _mtrr=yes ;;
1114 --disable-mtrr) _mtrr=no ;;
1115 --enable-largefiles) _largefiles=yes ;;
1116 --disable-largefiles) _largefiles=no ;;
1117 --enable-shm) _shm=yes ;;
1118 --disable-shm) _shm=no ;;
1119 --enable-select) _select=yes ;;
1120 --disable-select) _select=no ;;
1121 --enable-cdparanoia) _cdparanoia=yes ;;
1122 --disable-cdparanoia) _cdparanoia=no ;;
1123 --enable-cddb) _cddb=yes ;;
1124 --disable-cddb) _cddb=no ;;
1125 --enable-big-endian) _big_endian=yes ;;
1126 --disable-big-endian) _big_endian=no ;;
1127 --enable-bitmap-font) _bitmap_font=yes ;;
1128 --disable-bitmap-font) _bitmap_font=no ;;
1129 --enable-freetype) _freetype=yes ;;
1130 --disable-freetype) _freetype=no ;;
1131 --enable-fontconfig) _fontconfig=yes ;;
1132 --disable-fontconfig) _fontconfig=no ;;
1133 --enable-unrarexec) _unrar_exec=yes ;;
1134 --disable-unrarexec) _unrar_exec=no ;;
1135 --enable-ftp) _ftp=yes ;;
1136 --disable-ftp) _ftp=no ;;
1137 --enable-vstream) _vstream=yes ;;
1138 --disable-vstream) _vstream=no ;;
1139 --enable-pthreads) _pthreads=yes ;;
1140 --disable-pthreads) _pthreads=no ;;
1141 --enable-w32threads) _w32threads=yes ;;
1142 --disable-w32threads) _w32threads=no ;;
1143 --enable-ass) _ass=yes ;;
1144 --disable-ass) _ass=no ;;
1145 --enable-rpath) _rpath=yes ;;
1146 --disable-rpath) _rpath=no ;;
1148 --enable-fribidi) _fribidi=yes ;;
1149 --disable-fribidi) _fribidi=no ;;
1151 --enable-enca) _enca=yes ;;
1152 --disable-enca) _enca=no ;;
1154 --enable-inet6) _inet6=yes ;;
1155 --disable-inet6) _inet6=no ;;
1157 --enable-gethostbyname2) _gethostbyname2=yes ;;
1158 --disable-gethostbyname2) _gethostbyname2=no ;;
1160 --enable-dga1) _dga1=yes ;;
1161 --disable-dga1) _dga1=no ;;
1162 --enable-dga2) _dga2=yes ;;
1163 --disable-dga2) _dga2=no ;;
1165 --enable-menu) _menu=yes ;;
1166 --disable-menu) _menu=no ;;
1168 --enable-qtx) _qtx=yes ;;
1169 --disable-qtx) _qtx=no ;;
1171 --enable-coreaudio) _coreaudio=yes ;;
1172 --disable-coreaudio) _coreaudio=no ;;
1173 --enable-corevideo) _corevideo=yes ;;
1174 --disable-corevideo) _corevideo=no ;;
1175 --enable-quartz) _quartz=yes ;;
1176 --disable-quartz) _quartz=no ;;
1177 --enable-macosx-finder) _macosx_finder=yes ;;
1178 --disable-macosx-finder) _macosx_finder=no ;;
1179 --enable-macosx-bundle) _macosx_bundle=yes ;;
1180 --disable-macosx-bundle) _macosx_bundle=no ;;
1182 --enable-maemo) _maemo=yes ;;
1183 --disable-maemo) _maemo=no ;;
1185 --enable-sortsub) _sortsub=yes ;;
1186 --disable-sortsub) _sortsub=no ;;
1188 --enable-crash-debug) _crash_debug=yes ;;
1189 --disable-crash-debug) _crash_debug=no ;;
1190 --enable-sighandler) _sighandler=yes ;;
1191 --disable-sighandler) _sighandler=no ;;
1192 --enable-win32dll) _win32dll=yes ;;
1193 --disable-win32dll) _win32dll=no ;;
1195 --enable-sse) _sse=yes ;;
1196 --disable-sse) _sse=no ;;
1197 --enable-sse2) _sse2=yes ;;
1198 --disable-sse2) _sse2=no ;;
1199 --enable-ssse3) _ssse3=yes ;;
1200 --disable-ssse3) _ssse3=no ;;
1201 --enable-mmxext) _mmxext=yes ;;
1202 --disable-mmxext) _mmxext=no ;;
1203 --enable-3dnow) _3dnow=yes ;;
1204 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1205 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1206 --disable-3dnowext) _3dnowext=no ;;
1207 --enable-cmov) _cmov=yes ;;
1208 --disable-cmov) _cmov=no ;;
1209 --enable-fast-cmov) _fast_cmov=yes ;;
1210 --disable-fast-cmov) _fast_cmov=no ;;
1211 --enable-fast-clz) _fast_clz=yes ;;
1212 --disable-fast-clz) _fast_clz=no ;;
1213 --enable-altivec) _altivec=yes ;;
1214 --disable-altivec) _altivec=no ;;
1215 --enable-armv5te) _armv5te=yes ;;
1216 --disable-armv5te) _armv5te=no ;;
1217 --enable-armv6) _armv6=yes ;;
1218 --disable-armv6) _armv6=no ;;
1219 --enable-armv6t2) _armv6t2=yes ;;
1220 --disable-armv6t2) _armv6t2=no ;;
1221 --enable-armvfp) _armvfp=yes ;;
1222 --disable-armvfp) _armvfp=no ;;
1223 --enable-neon) neon=yes ;;
1224 --disable-neon) neon=no ;;
1225 --enable-iwmmxt) _iwmmxt=yes ;;
1226 --disable-iwmmxt) _iwmmxt=no ;;
1227 --enable-mmx) _mmx=yes ;;
1228 --disable-mmx) # 3Dnow! and MMX2 require MMX
1229 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1232 echo "Unknown parameter: $ac_option"
1233 exit 1
1236 esac
1237 done
1239 if test "$_gui" = yes ; then
1240 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1241 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1244 # Atmos: moved this here, to be correct, if --prefix is specified
1245 test -z "$_bindir" && _bindir="$_prefix/bin"
1246 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1247 test -z "$_mandir" && _mandir="$_prefix/share/man"
1248 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1249 test -z "$_libdir" && _libdir="$_prefix/lib"
1250 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1252 # Determine our OS name and CPU architecture
1253 if test -z "$_target" ; then
1254 # OS name
1255 system_name=$(uname -s 2>&1)
1256 case "$system_name" in
1257 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1259 Haiku)
1260 system_name=BeOS
1262 IRIX*)
1263 system_name=IRIX
1265 GNU/kFreeBSD)
1266 system_name=FreeBSD
1268 HP-UX*)
1269 system_name=HP-UX
1271 [cC][yY][gG][wW][iI][nN]*)
1272 system_name=CYGWIN
1274 MINGW32*)
1275 system_name=MINGW32
1277 OS/2*)
1278 system_name=OS/2
1281 system_name="$system_name-UNKNOWN"
1283 esac
1286 # host's CPU/instruction set
1287 host_arch=$(uname -p 2>&1)
1288 case "$host_arch" in
1289 i386|sparc|ppc|alpha|arm|mips|vax)
1291 powerpc) # Darwin returns 'powerpc'
1292 host_arch=ppc
1294 *) # uname -p on Linux returns 'unknown' for the processor type,
1295 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1297 # Maybe uname -m (machine hardware name) returns something we
1298 # recognize.
1300 # x86/x86pc is used by QNX
1301 case "$(uname -m 2>&1)" in
1302 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 ;;
1303 ia64) host_arch=ia64 ;;
1304 macppc|ppc) host_arch=ppc ;;
1305 ppc64) host_arch=ppc64 ;;
1306 alpha) host_arch=alpha ;;
1307 sparc) host_arch=sparc ;;
1308 sparc64) host_arch=sparc64 ;;
1309 parisc*|hppa*|9000*) host_arch=hppa ;;
1310 arm*|zaurus|cats) host_arch=arm ;;
1311 sh3|sh4|sh4a) host_arch=sh ;;
1312 s390) host_arch=s390 ;;
1313 s390x) host_arch=s390x ;;
1314 *mips*) host_arch=mips ;;
1315 vax) host_arch=vax ;;
1316 xtensa*) host_arch=xtensa ;;
1317 *) host_arch=UNKNOWN ;;
1318 esac
1320 esac
1321 else # if test -z "$_target"
1322 system_name=$(echo $_target | cut -d '-' -f 2)
1323 case "$(echo $system_name | tr A-Z a-z)" in
1324 linux) system_name=Linux ;;
1325 freebsd) system_name=FreeBSD ;;
1326 gnu/kfreebsd) system_name=FreeBSD ;;
1327 netbsd) system_name=NetBSD ;;
1328 bsd/os) system_name=BSD/OS ;;
1329 openbsd) system_name=OpenBSD ;;
1330 dragonfly) system_name=DragonFly ;;
1331 sunos) system_name=SunOS ;;
1332 qnx) system_name=QNX ;;
1333 morphos) system_name=MorphOS ;;
1334 amigaos) system_name=AmigaOS ;;
1335 mingw32*) system_name=MINGW32 ;;
1336 esac
1337 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1338 host_arch=$(echo $_target | cut -d '-' -f 1)
1339 if test $(echo $host_arch) != "x86_64" ; then
1340 host_arch=$(echo $host_arch | tr '_' '-')
1344 extra_cflags="-I. $extra_cflags"
1345 _timer=timer-linux.c
1346 _getch=getch2.c
1347 if freebsd ; then
1348 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1349 extra_cflags="$extra_cflags -I/usr/local/include"
1352 if netbsd || dragonfly ; then
1353 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1354 extra_cflags="$extra_cflags -I/usr/pkg/include"
1357 if darwin; then
1358 extra_cflags="-mdynamic-no-pic $extra_cflags"
1359 if test "$(basename $_cc)" != "clang" ; then
1360 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1362 _timer=timer-darwin.c
1365 if aix ; then
1366 extra_ldflags="$extra_ldflags -lC"
1369 if irix ; then
1370 _ranlib='ar -r'
1371 elif linux ; then
1372 _ranlib='true'
1375 if win32 ; then
1376 _exesuf=".exe"
1377 extra_cflags="$extra_cflags -fno-common"
1378 # -lwinmm is always needed for osdep/timer-win2.c
1379 extra_ldflags="$extra_ldflags -lwinmm"
1380 _pe_executable=yes
1381 _timer=timer-win2.c
1382 _priority=yes
1383 def_dos_paths="#define HAVE_DOS_PATHS 1"
1384 def_priority="#define CONFIG_PRIORITY 1"
1387 if mingw32 ; then
1388 _getch=getch2-win.c
1389 need_shmem=no
1392 if amigaos ; then
1393 _select=no
1394 _sighandler=no
1395 _stream_cache=no
1396 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1397 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1400 if qnx ; then
1401 extra_ldflags="$extra_ldflags -lph"
1404 if os2 ; then
1405 _exesuf=".exe"
1406 _getch=getch2-os2.c
1407 need_shmem=no
1408 _priority=yes
1409 def_dos_paths="#define HAVE_DOS_PATHS 1"
1410 def_priority="#define CONFIG_PRIORITY 1"
1413 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1414 test "$tmpdir" && break
1415 done
1417 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1418 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1420 TMPLOG="config.log"
1421 TMPC="$mplayer_tmpdir/tmp.c"
1422 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1423 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1424 TMPH="$mplayer_tmpdir/tmp.h"
1425 TMPS="$mplayer_tmpdir/tmp.S"
1427 rm -f "$TMPLOG"
1428 echo configuration: $configuration > "$TMPLOG"
1429 echo >> "$TMPLOG"
1432 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1433 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1437 # Checking CC version...
1438 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1439 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1440 echocheck "$_cc version"
1441 cc_vendor=intel
1442 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1443 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1444 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1445 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1446 # TODO verify older icc/ecc compatibility
1447 case $cc_version in
1449 cc_version="v. ?.??, bad"
1450 cc_fail=yes
1452 10.1|11.0|11.1)
1453 cc_version="$cc_version, ok"
1456 cc_version="$cc_version, bad"
1457 cc_fail=yes
1459 esac
1460 echores "$cc_version"
1461 else
1462 for _cc in "$_cc" gcc cc ; do
1463 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1464 if test "$cc_name_tmp" = "gcc"; then
1465 cc_name=$cc_name_tmp
1466 echocheck "$_cc version"
1467 cc_vendor=gnu
1468 cc_version=$($_cc -dumpversion 2>&1)
1469 case $cc_version in
1470 2.96*)
1471 cc_fail=yes
1474 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1475 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1476 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1478 esac
1479 echores "$cc_version"
1480 break
1482 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1483 if test "$cc_name_tmp" = "clang"; then
1484 echocheck "$_cc version"
1485 cc_vendor=clang
1486 cc_version=$($_cc -dumpversion 2>&1)
1487 res_comment="experimental support only"
1488 echores "clang $cc_version"
1489 break
1491 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1492 if test "$cc_name_tmp" = "Sun C"; then
1493 echocheck "$_cc version"
1494 cc_vendor=sun
1495 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1496 res_comment="experimental support only"
1497 echores "Sun C $cc_version"
1498 break
1500 done
1501 fi # icc
1502 test "$cc_fail" = yes && die "unsupported compiler version"
1504 if test -z "$_target" && x86 ; then
1505 cat > $TMPC << EOF
1506 int main(void) {
1507 int test[(int)sizeof(char *)-7];
1508 return 0;
1511 cc_check && host_arch=x86_64 || host_arch=i386
1514 echo "Detected operating system: $system_name"
1515 echo "Detected host architecture: $host_arch"
1517 echocheck "host cc"
1518 test "$_host_cc" || _host_cc=$_cc
1519 echores $_host_cc
1521 echocheck "cross compilation"
1522 if test $_cross_compile = auto ; then
1523 _cross_compile=yes
1524 cflag_check "" && "$TMPEXE" && _cross_compile=no
1526 echores $_cross_compile
1528 if test $_cross_compile = yes; then
1529 tmp_run() {
1530 return 0
1534 # ---
1536 # now that we know what compiler should be used for compilation, try to find
1537 # out which assembler is used by the $_cc compiler
1538 if test "$_as" = auto ; then
1539 _as=$($_cc -print-prog-name=as)
1540 test -z "$_as" && _as=as
1543 if test "$_nm" = auto ; then
1544 _nm=$($_cc -print-prog-name=nm)
1545 test -z "$_nm" && _nm=nm
1548 # XXX: this should be ok..
1549 _cpuinfo="echo"
1551 if test "$_runtime_cpudetection" = no ; then
1553 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1554 # FIXME: Remove the cygwin check once AMD CPUs are supported
1555 if test -r /proc/cpuinfo && ! cygwin; then
1556 # Linux with /proc mounted, extract CPU information from it
1557 _cpuinfo="cat /proc/cpuinfo"
1558 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1559 # FreeBSD with Linux emulation /proc mounted,
1560 # extract CPU information from it
1561 # Don't use it on x86 though, it never reports 3Dnow
1562 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1563 elif darwin && ! x86 ; then
1564 # use hostinfo on Darwin
1565 _cpuinfo="hostinfo"
1566 elif aix; then
1567 # use 'lsattr' on AIX
1568 _cpuinfo="lsattr -E -l proc0 -a type"
1569 elif x86; then
1570 # all other OSes try to extract CPU information from a small helper
1571 # program cpuinfo instead
1572 $_cc -o cpuinfo$_exesuf cpuinfo.c
1573 _cpuinfo="./cpuinfo$_exesuf"
1576 if x86 ; then
1577 # gather more CPU information
1578 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1579 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1580 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1581 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1582 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1584 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1586 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1587 -e s/xmm/sse/ -e s/kni/sse/)
1589 for ext in $pparam ; do
1590 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1591 done
1593 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1594 test $_sse = kernel_check && _mmxext=kernel_check
1596 echocheck "CPU vendor"
1597 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1599 echocheck "CPU type"
1600 echores "$pname"
1603 fi # test "$_runtime_cpudetection" = no
1605 if x86 && test "$_runtime_cpudetection" = no ; then
1606 extcheck() {
1607 if test "$1" = kernel_check ; then
1608 echocheck "kernel support of $2"
1609 cat > $TMPC <<EOF
1610 #include <stdlib.h>
1611 #include <signal.h>
1612 static void catch(int sig) { exit(1); }
1613 int main(void) {
1614 signal(SIGILL, catch);
1615 __asm__ volatile ("$3":::"memory"); return 0;
1619 if cc_check && tmp_run ; then
1620 eval _$2=yes
1621 echores "yes"
1622 _optimizing="$_optimizing $2"
1623 return 0
1624 else
1625 eval _$2=no
1626 echores "failed"
1627 echo "It seems that your kernel does not correctly support $2."
1628 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1629 return 1
1632 return 0
1635 extcheck $_mmx "mmx" "emms"
1636 extcheck $_mmxext "mmxext" "sfence"
1637 extcheck $_3dnow "3dnow" "femms"
1638 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1639 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1640 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1641 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1642 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1644 echocheck "mtrr support"
1645 if test "$_mtrr" = kernel_check ; then
1646 _mtrr="yes"
1647 _optimizing="$_optimizing mtrr"
1649 echores "$_mtrr"
1651 if test "$_gcc3_ext" != ""; then
1652 # if we had to disable sse/sse2 because the active kernel does not
1653 # support this instruction set extension, we also have to tell
1654 # gcc3 to not generate sse/sse2 instructions for normal C code
1655 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1661 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1662 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1663 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1664 subarch_all='X86_32 X86_64 PPC64'
1665 case "$host_arch" in
1666 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1667 arch='x86'
1668 subarch='x86_32'
1669 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1670 iproc=486
1671 proc=i486
1674 if test "$_runtime_cpudetection" = no ; then
1675 case "$pvendor" in
1676 AuthenticAMD)
1677 case "$pfamily" in
1678 3) proc=i386 iproc=386 ;;
1679 4) proc=i486 iproc=486 ;;
1680 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1681 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1682 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1683 proc=k6-3
1684 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1685 proc=geode
1686 elif test "$pmodel" -ge 8; then
1687 proc=k6-2
1688 elif test "$pmodel" -ge 6; then
1689 proc=k6
1690 else
1691 proc=i586
1694 6) iproc=686
1695 # It's a bit difficult to determine the correct type of Family 6
1696 # AMD CPUs just from their signature. Instead, we check directly
1697 # whether it supports SSE.
1698 if test "$_sse" = yes; then
1699 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1700 proc=athlon-xp
1701 else
1702 # Again, gcc treats athlon and athlon-tbird similarly.
1703 proc=athlon
1706 15) iproc=686
1707 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1708 # caught and remedied in the optimization tests below.
1709 proc=k8
1712 *) proc=amdfam10 iproc=686
1713 test $_fast_clz = "auto" && _fast_clz=yes
1715 esac
1717 GenuineIntel)
1718 case "$pfamily" in
1719 3) proc=i386 iproc=386 ;;
1720 4) proc=i486 iproc=486 ;;
1721 5) iproc=586
1722 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1723 proc=pentium-mmx # 4 is desktop, 8 is mobile
1724 else
1725 proc=i586
1728 6) iproc=686
1729 if test "$pmodel" -ge 15; then
1730 proc=core2
1731 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1732 proc=pentium-m
1733 elif test "$pmodel" -ge 7; then
1734 proc=pentium3
1735 elif test "$pmodel" -ge 3; then
1736 proc=pentium2
1737 else
1738 proc=i686
1740 test $_fast_clz = "auto" && _fast_clz=yes
1742 15) iproc=686
1743 # A nocona in 32-bit mode has no more capabilities than a prescott.
1744 if test "$pmodel" -ge 3; then
1745 proc=prescott
1746 else
1747 proc=pentium4
1748 test $_fast_clz = "auto" && _fast_clz=yes
1750 test $_fast_cmov = "auto" && _fast_cmov=no
1752 *) proc=prescott iproc=686 ;;
1753 esac
1755 CentaurHauls)
1756 case "$pfamily" in
1757 5) iproc=586
1758 if test "$pmodel" -ge 8; then
1759 proc=winchip2
1760 elif test "$pmodel" -ge 4; then
1761 proc=winchip-c6
1762 else
1763 proc=i586
1766 6) iproc=686
1767 if test "$pmodel" -ge 9; then
1768 proc=c3-2
1769 else
1770 proc=c3
1771 iproc=586
1774 *) proc=i686 iproc=i686 ;;
1775 esac
1777 unknown)
1778 case "$pfamily" in
1779 3) proc=i386 iproc=386 ;;
1780 4) proc=i486 iproc=486 ;;
1781 *) proc=i586 iproc=586 ;;
1782 esac
1785 proc=i586 iproc=586 ;;
1786 esac
1787 test $_fast_clz = "auto" && _fast_clz=no
1788 fi # test "$_runtime_cpudetection" = no
1791 # check that gcc supports our CPU, if not, fall back to earlier ones
1792 # LGB: check -mcpu and -march swithing step by step with enabling
1793 # to fall back till 386.
1795 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1797 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1798 cpuopt=-mtune
1799 else
1800 cpuopt=-mcpu
1803 echocheck "GCC & CPU optimization abilities"
1804 if test "$_runtime_cpudetection" = no ; then
1805 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1806 cflag_check -march=native && proc=native
1808 if test "$proc" = "amdfam10"; then
1809 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1811 if test "$proc" = "k8"; then
1812 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1814 if test "$proc" = "athlon-xp"; then
1815 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1817 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1818 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1820 if test "$proc" = "k6" || test "$proc" = "c3"; then
1821 if ! cflag_check -march=$proc $cpuopt=$proc; then
1822 if cflag_check -march=i586 $cpuopt=i686; then
1823 proc=i586-i686
1824 else
1825 proc=i586
1829 if test "$proc" = "prescott" ; then
1830 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1832 if test "$proc" = "core2" ; then
1833 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1835 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
1836 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1838 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1839 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1841 if test "$proc" = "i586"; then
1842 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1844 if test "$proc" = "i486" ; then
1845 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1847 if test "$proc" = "i386" ; then
1848 cflag_check -march=$proc $cpuopt=$proc || proc=error
1850 if test "$proc" = "error" ; then
1851 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1852 _mcpu=""
1853 _march=""
1854 _optimizing=""
1855 elif test "$proc" = "i586-i686"; then
1856 _march="-march=i586"
1857 _mcpu="$cpuopt=i686"
1858 _optimizing="$proc"
1859 else
1860 _march="-march=$proc"
1861 _mcpu="$cpuopt=$proc"
1862 _optimizing="$proc"
1864 else # if test "$_runtime_cpudetection" = no
1865 _mcpu="$cpuopt=generic"
1866 # at least i486 required, for bswap instruction
1867 _march="-march=i486"
1868 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1869 cflag_check $_mcpu || _mcpu=""
1870 cflag_check $_march $_mcpu || _march=""
1873 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1874 ## autodetected mcpu/march parameters
1875 if test "$_target" ; then
1876 # TODO: it may be a good idea to check GCC and fall back in all cases
1877 if test "$host_arch" = "i586-i686"; then
1878 _march="-march=i586"
1879 _mcpu="$cpuopt=i686"
1880 else
1881 _march="-march=$host_arch"
1882 _mcpu="$cpuopt=$host_arch"
1885 proc="$host_arch"
1887 case "$proc" in
1888 i386) iproc=386 ;;
1889 i486) iproc=486 ;;
1890 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1891 i686|athlon*|pentium*) iproc=686 ;;
1892 *) iproc=586 ;;
1893 esac
1896 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1897 _fast_cmov="yes"
1898 else
1899 _fast_cmov="no"
1901 test $_fast_clz = "auto" && _fast_clz=yes
1903 echores "$proc"
1906 ia64)
1907 arch='ia64'
1908 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1909 iproc='ia64'
1912 x86_64|amd64)
1913 arch='x86'
1914 subarch='x86_64'
1915 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1916 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1917 iproc='x86_64'
1919 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1920 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1921 cpuopt=-mtune
1922 else
1923 cpuopt=-mcpu
1925 if test "$_runtime_cpudetection" = no ; then
1926 case "$pvendor" in
1927 AuthenticAMD)
1928 case "$pfamily" in
1929 15) proc=k8
1930 test $_fast_clz = "auto" && _fast_clz=no
1932 *) proc=amdfam10;;
1933 esac
1935 GenuineIntel)
1936 case "$pfamily" in
1937 6) proc=core2;;
1939 # 64-bit prescotts exist, but as far as GCC is concerned they
1940 # have the same capabilities as a nocona.
1941 proc=nocona
1942 test $_fast_cmov = "auto" && _fast_cmov=no
1943 test $_fast_clz = "auto" && _fast_clz=no
1945 esac
1948 proc=error;;
1949 esac
1950 fi # test "$_runtime_cpudetection" = no
1952 echocheck "GCC & CPU optimization abilities"
1953 # This is a stripped-down version of the i386 fallback.
1954 if test "$_runtime_cpudetection" = no ; then
1955 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1956 cflag_check -march=native && proc=native
1958 # --- AMD processors ---
1959 if test "$proc" = "amdfam10"; then
1960 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1962 if test "$proc" = "k8"; then
1963 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1965 # This will fail if gcc version < 3.3, which is ok because earlier
1966 # versions don't really support 64-bit on amd64.
1967 # Is this a valid assumption? -Corey
1968 if test "$proc" = "athlon-xp"; then
1969 cflag_check -march=$proc $cpuopt=$proc || proc=error
1971 # --- Intel processors ---
1972 if test "$proc" = "core2"; then
1973 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
1975 if test "$proc" = "x86-64"; then
1976 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
1978 if test "$proc" = "nocona"; then
1979 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1981 if test "$proc" = "pentium4"; then
1982 cflag_check -march=$proc $cpuopt=$proc || proc=error
1985 _march="-march=$proc"
1986 _mcpu="$cpuopt=$proc"
1987 if test "$proc" = "error" ; then
1988 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1989 _mcpu=""
1990 _march=""
1992 else # if test "$_runtime_cpudetection" = no
1993 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1994 _march="-march=x86-64"
1995 _mcpu="$cpuopt=generic"
1996 cflag_check $_mcpu || _mcpu="x86-64"
1997 cflag_check $_mcpu || _mcpu=""
1998 cflag_check $_march $_mcpu || _march=""
2001 _optimizing="$proc"
2002 test $_fast_cmov = "auto" && _fast_cmov=yes
2003 test $_fast_clz = "auto" && _fast_clz=yes
2005 echores "$proc"
2008 sparc|sparc64)
2009 arch='sparc'
2010 iproc='sparc'
2011 if test "$host_arch" = "sparc64" ; then
2012 _vis='yes'
2013 proc='ultrasparc'
2014 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2015 elif sunos ; then
2016 echocheck "CPU type"
2017 karch=$(uname -m)
2018 case "$(echo $karch)" in
2019 sun4) proc=v7 ;;
2020 sun4c) proc=v7 ;;
2021 sun4d) proc=v8 ;;
2022 sun4m) proc=v8 ;;
2023 sun4u) proc=ultrasparc _vis='yes' ;;
2024 sun4v) proc=v9 ;;
2025 *) proc=v8 ;;
2026 esac
2027 echores "$proc"
2028 else
2029 proc=v8
2031 _mcpu="-mcpu=$proc"
2032 _optimizing="$proc"
2035 arm*)
2036 arch='arm'
2037 iproc='arm'
2040 avr32)
2041 arch='avr32'
2042 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2043 iproc='avr32'
2044 test $_fast_clz = "auto" && _fast_clz=yes
2047 sh|sh4)
2048 arch='sh4'
2049 iproc='sh4'
2052 ppc|ppc64|powerpc|powerpc64)
2053 arch='ppc'
2054 def_dcbzl='#define HAVE_DCBZL 0'
2055 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2056 iproc='ppc'
2058 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2059 subarch='ppc64'
2060 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2062 echocheck "CPU type"
2063 case $system_name in
2064 Linux)
2065 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2066 if test -n "$($_cpuinfo | grep altivec)"; then
2067 test $_altivec = auto && _altivec=yes
2070 Darwin)
2071 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2072 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2073 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2074 test $_altivec = auto && _altivec=yes
2077 NetBSD)
2078 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2079 case $cc_version in
2080 2*|3.0*|3.1*|3.2*|3.3*)
2083 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2084 test $_altivec = auto && _altivec=yes
2087 esac
2089 AIX)
2090 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2092 esac
2093 if test "$_altivec" = yes; then
2094 echores "$proc altivec"
2095 else
2096 _altivec=no
2097 echores "$proc"
2100 echocheck "GCC & CPU optimization abilities"
2102 if test -n "$proc"; then
2103 case "$proc" in
2104 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2105 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2106 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2107 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2108 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2109 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2110 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2111 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2112 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2113 *) ;;
2114 esac
2115 # gcc 3.1(.1) and up supports 7400 and 7450
2116 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2117 case "$proc" in
2118 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2119 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2120 *) ;;
2121 esac
2123 # gcc 3.2 and up supports 970
2124 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2125 case "$proc" in
2126 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2127 def_dcbzl='#define HAVE_DCBZL 1' ;;
2128 *) ;;
2129 esac
2131 # gcc 3.3 and up supports POWER4
2132 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2133 case "$proc" in
2134 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2135 *) ;;
2136 esac
2138 # gcc 3.4 and up supports 440*
2139 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2140 case "$proc" in
2141 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2142 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2143 *) ;;
2144 esac
2146 # gcc 4.0 and up supports POWER5
2147 if test "$_cc_major" -ge "4"; then
2148 case "$proc" in
2149 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2150 *) ;;
2151 esac
2155 if test -n "$_mcpu"; then
2156 _optimizing=$(echo $_mcpu | cut -c 8-)
2157 echores "$_optimizing"
2158 else
2159 echores "none"
2162 test $_fast_clz = "auto" && _fast_clz=yes
2166 alpha*)
2167 arch='alpha'
2168 iproc='alpha'
2169 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2171 echocheck "CPU type"
2172 cat > $TMPC << EOF
2173 int main(void) {
2174 unsigned long ver, mask;
2175 __asm__ ("implver %0" : "=r" (ver));
2176 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2177 printf("%ld-%x\n", ver, ~mask);
2178 return 0;
2181 $_cc -o "$TMPEXE" "$TMPC"
2182 case $("$TMPEXE") in
2184 0-0) proc="ev4"; _mvi="0";;
2185 1-0) proc="ev5"; _mvi="0";;
2186 1-1) proc="ev56"; _mvi="0";;
2187 1-101) proc="pca56"; _mvi="1";;
2188 2-303) proc="ev6"; _mvi="1";;
2189 2-307) proc="ev67"; _mvi="1";;
2190 2-1307) proc="ev68"; _mvi="1";;
2191 esac
2192 echores "$proc"
2194 echocheck "GCC & CPU optimization abilities"
2195 if test "$proc" = "ev68" ; then
2196 cc_check -mcpu=$proc || proc=ev67
2198 if test "$proc" = "ev67" ; then
2199 cc_check -mcpu=$proc || proc=ev6
2201 _mcpu="-mcpu=$proc"
2202 echores "$proc"
2204 test $_fast_clz = "auto" && _fast_clz=yes
2206 _optimizing="$proc"
2209 mips*)
2210 arch='mips'
2211 iproc='mips'
2213 if irix ; then
2214 echocheck "CPU type"
2215 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2216 case "$(echo $proc)" in
2217 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2218 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2219 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2220 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2221 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2222 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2223 esac
2224 # gcc < 3.x does not support -mtune.
2225 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2226 _mcpu=''
2228 echores "$proc"
2231 test $_fast_clz = "auto" && _fast_clz=yes
2235 hppa)
2236 arch='pa_risc'
2237 iproc='PA-RISC'
2240 s390)
2241 arch='s390'
2242 iproc='390'
2245 s390x)
2246 arch='s390x'
2247 iproc='390x'
2250 vax)
2251 arch='vax'
2252 iproc='vax'
2255 xtensa)
2256 arch='xtensa'
2257 iproc='xtensa'
2260 generic)
2261 arch='generic'
2265 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2266 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2267 die "unsupported architecture $host_arch"
2269 esac # case "$host_arch" in
2271 if test "$_runtime_cpudetection" = yes ; then
2272 if x86 ; then
2273 test "$_cmov" != no && _cmov=yes
2274 x86_32 && _cmov=no
2275 test "$_mmx" != no && _mmx=yes
2276 test "$_3dnow" != no && _3dnow=yes
2277 test "$_3dnowext" != no && _3dnowext=yes
2278 test "$_mmxext" != no && _mmxext=yes
2279 test "$_sse" != no && _sse=yes
2280 test "$_sse2" != no && _sse2=yes
2281 test "$_ssse3" != no && _ssse3=yes
2282 test "$_mtrr" != no && _mtrr=yes
2284 if ppc; then
2285 _altivec=yes
2290 # endian testing
2291 echocheck "byte order"
2292 if test "$_big_endian" = auto ; then
2293 cat > $TMPC <<EOF
2294 short ascii_name[] = {
2295 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2296 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2297 int main(void) { return (long)ascii_name; }
2299 if cc_check ; then
2300 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2301 _big_endian=yes
2302 else
2303 _big_endian=no
2305 else
2306 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2309 if test "$_big_endian" = yes ; then
2310 _byte_order='big-endian'
2311 def_words_endian='#define WORDS_BIGENDIAN 1'
2312 def_bigendian='#define HAVE_BIGENDIAN 1'
2313 else
2314 _byte_order='little-endian'
2315 def_words_endian='#undef WORDS_BIGENDIAN'
2316 def_bigendian='#define HAVE_BIGENDIAN 0'
2318 echores "$_byte_order"
2321 echocheck "extern symbol prefix"
2322 cat > $TMPC << EOF
2323 int ff_extern;
2325 cc_check -c || die "Symbol mangling check failed."
2326 sym=$($_nm -P -g $TMPEXE)
2327 extern_prefix=${sym%%ff_extern*}
2328 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2329 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2330 echores $extern_prefix
2333 echocheck "assembler support of -pipe option"
2334 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2335 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2338 echocheck "compiler support of named assembler arguments"
2339 _named_asm_args=yes
2340 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2341 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2342 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2343 _named_asm_args=no
2344 def_named_asm_args="#undef NAMED_ASM_ARGS"
2346 echores $_named_asm_args
2349 if darwin && test "$cc_vendor" = "gnu" ; then
2350 echocheck "GCC support of -mstackrealign"
2351 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2352 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2353 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2354 # wrong code with this flag, but this can be worked around by adding
2355 # -fno-unit-at-a-time as described in the blog post at
2356 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2357 cat > $TMPC << EOF
2358 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2359 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2361 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2362 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time &&
2363 tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2364 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2365 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2368 # Checking for CFLAGS
2369 _install_strip="-s"
2370 if test "$_profile" != "" || test "$_debug" != "" ; then
2371 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2372 WARNFLAGS="-W -Wall"
2373 _install_strip=
2374 elif test -z "$CFLAGS" ; then
2375 if test "$cc_vendor" = "intel" ; then
2376 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2377 WARNFLAGS="-wd167 -wd556 -wd144"
2378 elif test "$cc_vendor" = "sun" ; then
2379 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2380 elif test "$cc_vendor" = "clang"; then
2381 CFLAGS="-O2 $_march $_pipe"
2382 elif test "$cc_vendor" != "gnu" ; then
2383 CFLAGS="-O2 $_march $_mcpu $_pipe"
2384 else
2385 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2386 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2387 extra_ldflags="$extra_ldflags -ffast-math"
2389 else
2390 warn_cflags=yes
2393 if test "$cc_vendor" = "gnu" ; then
2394 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2395 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2396 # that's the only variable specific to C now, and this option is not valid
2397 # for C++.
2398 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2399 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2400 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2401 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2402 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2403 else
2404 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2407 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2408 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2411 if test -n "$LDFLAGS" ; then
2412 extra_ldflags="$extra_ldflags $LDFLAGS"
2413 warn_cflags=yes
2414 elif test "$cc_vendor" = "intel" ; then
2415 extra_ldflags="$extra_ldflags -i-static"
2417 if test -n "$CPPFLAGS" ; then
2418 extra_cflags="$extra_cflags $CPPFLAGS"
2419 warn_cflags=yes
2424 if x86_32 ; then
2425 # Checking assembler (_as) compatibility...
2426 # Added workaround for older as that reads from stdin by default - atmos
2427 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2428 echocheck "assembler ($_as $as_version)"
2430 _pref_as_version='2.9.1'
2431 echo 'nop' > $TMPS
2432 if test "$_mmx" = yes ; then
2433 echo 'emms' >> $TMPS
2435 if test "$_3dnow" = yes ; then
2436 _pref_as_version='2.10.1'
2437 echo 'femms' >> $TMPS
2439 if test "$_3dnowext" = yes ; then
2440 _pref_as_version='2.10.1'
2441 echo 'pswapd %mm0, %mm0' >> $TMPS
2443 if test "$_mmxext" = yes ; then
2444 _pref_as_version='2.10.1'
2445 echo 'movntq %mm0, (%eax)' >> $TMPS
2447 if test "$_sse" = yes ; then
2448 _pref_as_version='2.10.1'
2449 echo 'xorps %xmm0, %xmm0' >> $TMPS
2451 #if test "$_sse2" = yes ; then
2452 # _pref_as_version='2.11'
2453 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2455 if test "$_cmov" = yes ; then
2456 _pref_as_version='2.10.1'
2457 echo 'cmovb %eax, %ebx' >> $TMPS
2459 if test "$_ssse3" = yes ; then
2460 _pref_as_version='2.16.92'
2461 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2463 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2465 if test "$as_verc_fail" != yes ; then
2466 echores "ok"
2467 else
2468 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2469 echores "failed"
2470 die "obsolete binutils version"
2473 fi #if x86_32
2476 echocheck "PIC"
2477 pic=no
2478 cat > $TMPC << EOF
2479 int main(void) {
2480 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2481 #error PIC not enabled
2482 #endif
2483 return 0;
2486 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2487 echores $pic
2490 if x86 ; then
2492 echocheck ".align is a power of two"
2493 if test "$_asmalign_pot" = auto ; then
2494 _asmalign_pot=no
2495 inline_asm_check '".align 3"' && _asmalign_pot=yes
2497 if test "$_asmalign_pot" = "yes" ; then
2498 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2499 else
2500 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2502 echores $_asmalign_pot
2505 echocheck "10 assembler operands"
2506 ten_operands=no
2507 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2508 cat > $TMPC << EOF
2509 int main(void) {
2510 int x=0;
2511 __asm__ volatile(
2513 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2515 return 0;
2518 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2519 echores $ten_operands
2521 echocheck "ebx availability"
2522 ebx_available=no
2523 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2524 cat > $TMPC << EOF
2525 int main(void) {
2526 int x;
2527 __asm__ volatile(
2528 "xor %0, %0"
2529 :"=b"(x)
2530 // just adding ebx to clobber list seems unreliable with some
2531 // compilers, e.g. Haiku's gcc 2.95
2533 // and the above check does not work for OSX 64 bit...
2534 __asm__ volatile("":::"%ebx");
2535 return 0;
2538 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2539 echores $ebx_available
2542 echocheck "yasm"
2543 if test -z "$YASMFLAGS" ; then
2544 if darwin ; then
2545 x86_64 && objformat="macho64" || objformat="macho"
2546 elif win32 ; then
2547 objformat="win32"
2548 else
2549 objformat="elf"
2551 # currently tested for Linux x86, x86_64
2552 YASMFLAGS="-f $objformat"
2553 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2554 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2555 case "$objformat" in
2556 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2557 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2558 esac
2559 else
2560 warn_cflags=yes
2563 echo "pabsw xmm0, xmm0" > $TMPS
2564 yasm_check || _yasm=""
2565 if test $_yasm ; then
2566 def_yasm='#define HAVE_YASM 1'
2567 have_yasm="yes"
2568 echores "$_yasm"
2569 else
2570 def_yasm='#define HAVE_YASM 0'
2571 have_yasm="no"
2572 echores "no"
2575 echocheck "bswap"
2576 def_bswap='#define HAVE_BSWAP 0'
2577 echo 'bswap %eax' > $TMPS
2578 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2579 echores "$bswap"
2580 fi #if x86
2583 #FIXME: This should happen before the check for CFLAGS..
2584 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2585 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2587 # check if AltiVec is supported by the compiler, and how to enable it
2588 echocheck "GCC AltiVec flags"
2589 if $(cflag_check -maltivec -mabi=altivec) ; then
2590 _altivec_gcc_flags="-maltivec -mabi=altivec"
2591 # check if <altivec.h> should be included
2592 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2593 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2594 inc_altivec_h='#include <altivec.h>'
2595 else
2596 if $(cflag_check -faltivec) ; then
2597 _altivec_gcc_flags="-faltivec"
2598 else
2599 _altivec=no
2600 _altivec_gcc_flags="none, AltiVec disabled"
2604 echores "$_altivec_gcc_flags"
2606 # check if the compiler supports braces for vector declarations
2607 cat > $TMPC << EOF
2608 $inc_altivec_h
2609 int main(void) { (vector int) {1}; return 0; }
2611 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2613 # Disable runtime cpudetection if we cannot generate AltiVec code or
2614 # AltiVec is disabled by the user.
2615 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2616 && _runtime_cpudetection=no
2618 # Show that we are optimizing for AltiVec (if enabled and supported).
2619 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2620 && _optimizing="$_optimizing altivec"
2622 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2623 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2626 if ppc ; then
2627 def_xform_asm='#define HAVE_XFORM_ASM 0'
2628 xform_asm=no
2629 echocheck "XFORM ASM support"
2630 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2631 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2632 echores "$xform_asm"
2635 if arm ; then
2636 echocheck "ARM pld instruction"
2637 pld=no
2638 inline_asm_check '"pld [r0]"' && pld=yes
2639 echores "$pld"
2641 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2642 if test $_armv5te = "auto" ; then
2643 _armv5te=no
2644 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2646 echores "$_armv5te"
2648 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2650 echocheck "ARMv6 (SIMD instructions)"
2651 if test $_armv6 = "auto" ; then
2652 _armv6=no
2653 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2655 echores "$_armv6"
2657 echocheck "ARMv6t2 (SIMD instructions)"
2658 if test $_armv6t2 = "auto" ; then
2659 _armv6t2=no
2660 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2662 echores "$_armv6"
2664 echocheck "ARM VFP"
2665 if test $_armvfp = "auto" ; then
2666 _armvfp=no
2667 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2669 echores "$_armvfp"
2671 echocheck "ARM NEON"
2672 if test $neon = "auto" ; then
2673 neon=no
2674 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2676 echores "$neon"
2678 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2679 if test $_iwmmxt = "auto" ; then
2680 _iwmmxt=no
2681 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2683 echores "$_iwmmxt"
2686 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'
2687 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2688 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2689 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2690 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2691 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2692 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2693 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2694 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2695 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2696 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2697 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2698 test "$pld" = yes && cpuexts="PLD $cpuexts"
2699 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2700 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2701 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2702 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2703 test "$neon" = yes && cpuexts="NEON $cpuexts"
2704 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2705 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2706 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2708 # Checking kernel version...
2709 if x86_32 && linux ; then
2710 _k_verc_problem=no
2711 kernel_version=$(uname -r 2>&1)
2712 echocheck "$system_name kernel version"
2713 case "$kernel_version" in
2714 '') kernel_version="?.??"; _k_verc_fail=yes;;
2715 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2716 _k_verc_problem=yes;;
2717 esac
2718 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2719 _k_verc_fail=yes
2721 if test "$_k_verc_fail" ; then
2722 echores "$kernel_version, fail"
2723 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2724 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2725 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2726 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2727 echo "2.2.x you must upgrade it to get SSE support!"
2728 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2729 else
2730 echores "$kernel_version, ok"
2734 ######################
2735 # MAIN TESTS GO HERE #
2736 ######################
2739 echocheck "-lposix"
2740 if cflag_check -lposix ; then
2741 extra_ldflags="$extra_ldflags -lposix"
2742 echores "yes"
2743 else
2744 echores "no"
2747 echocheck "-lm"
2748 if cflag_check -lm ; then
2749 _ld_lm="-lm"
2750 echores "yes"
2751 else
2752 _ld_lm=""
2753 echores "no"
2757 echocheck "langinfo"
2758 if test "$_langinfo" = auto ; then
2759 _langinfo=no
2760 statement_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2762 if test "$_langinfo" = yes ; then
2763 def_langinfo='#define HAVE_LANGINFO 1'
2764 else
2765 def_langinfo='#undef HAVE_LANGINFO'
2767 echores "$_langinfo"
2770 echocheck "translation support"
2771 if test "$_translation" = yes; then
2772 def_translation="#define CONFIG_TRANSLATION 1"
2773 else
2774 def_translation="#undef CONFIG_TRANSLATION"
2776 echores "$_translation"
2778 echocheck "language"
2779 # Set preferred languages, "all" uses English as main language.
2780 test -z "$language" && language=$LINGUAS
2781 test -z "$language_doc" && language_doc=$language
2782 test -z "$language_man" && language_man=$language
2783 test -z "$language_msg" && language_msg="all"
2784 language_doc=$(echo $language_doc | tr , " ")
2785 language_man=$(echo $language_man | tr , " ")
2786 language_msg=$(echo $language_msg | tr , " ")
2788 test "$language_doc" = "all" && language_doc=$doc_lang_all
2789 test "$language_man" = "all" && language_man=$man_lang_all
2790 test "$language_msg" = "all" && language_msg=$msg_lang_all
2792 if test "$_translation" != yes ; then
2793 language_msg=""
2796 # Prune non-existing translations from language lists.
2797 # Set message translation to the first available language.
2798 # Fall back on English.
2799 for lang in $language_doc ; do
2800 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2801 done
2802 language_doc=$tmp_language_doc
2803 test -z "$language_doc" && language_doc=en
2805 for lang in $language_man ; do
2806 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2807 done
2808 language_man=$tmp_language_man
2809 test -z "$language_man" && language_man=en
2811 for lang in $language_msg ; do
2812 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2813 done
2814 language_msg=$tmp_language_msg
2816 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2819 echocheck "enable sighandler"
2820 if test "$_sighandler" = yes ; then
2821 def_sighandler='#define CONFIG_SIGHANDLER 1'
2822 else
2823 def_sighandler='#undef CONFIG_SIGHANDLER'
2825 echores "$_sighandler"
2827 echocheck "runtime cpudetection"
2828 if test "$_runtime_cpudetection" = yes ; then
2829 _optimizing="Runtime CPU-Detection enabled"
2830 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2831 else
2832 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2834 echores "$_runtime_cpudetection"
2837 echocheck "restrict keyword"
2838 for restrict_keyword in restrict __restrict __restrict__ ; do
2839 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2840 if cc_check; then
2841 def_restrict_keyword=$restrict_keyword
2842 break;
2844 done
2845 if [ -n "$def_restrict_keyword" ]; then
2846 echores "$def_restrict_keyword"
2847 else
2848 echores "none"
2850 # Avoid infinite recursion loop ("#define restrict restrict")
2851 if [ "$def_restrict_keyword" != "restrict" ]; then
2852 def_restrict_keyword="#define restrict $def_restrict_keyword"
2853 else
2854 def_restrict_keyword=""
2858 echocheck "__builtin_expect"
2859 # GCC branch prediction hint
2860 cat > $TMPC << EOF
2861 static int foo(int a) {
2862 a = __builtin_expect(a, 10);
2863 return a == 10 ? 0 : 1;
2865 int main(void) { return foo(10) && foo(0); }
2867 _builtin_expect=no
2868 cc_check && _builtin_expect=yes
2869 if test "$_builtin_expect" = yes ; then
2870 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2871 else
2872 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2874 echores "$_builtin_expect"
2877 echocheck "kstat"
2878 _kstat=no
2879 statement_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2880 if test "$_kstat" = yes ; then
2881 def_kstat="#define HAVE_LIBKSTAT 1"
2882 extra_ldflags="$extra_ldflags -lkstat"
2883 else
2884 def_kstat="#undef HAVE_LIBKSTAT"
2886 echores "$_kstat"
2889 echocheck "posix4"
2890 # required for nanosleep on some systems
2891 _posix4=no
2892 statement_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2893 if test "$_posix4" = yes ; then
2894 extra_ldflags="$extra_ldflags -lposix4"
2896 echores "$_posix4"
2898 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2899 echocheck $func
2900 eval _$func=no
2901 statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2902 if eval test "x\$_$func" = "xyes"; then
2903 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2904 echores yes
2905 else
2906 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2907 echores no
2909 done
2912 echocheck "mkstemp"
2913 _mkstemp=no
2914 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'mkstemp("")' && _mkstemp=yes
2915 if test "$_mkstemp" = yes ; then
2916 def_mkstemp='#define HAVE_MKSTEMP 1'
2917 else
2918 def_mkstemp='#define HAVE_MKSTEMP 0'
2920 echores "$_mkstemp"
2923 echocheck "nanosleep"
2924 _nanosleep=no
2925 statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2926 if test "$_nanosleep" = yes ; then
2927 def_nanosleep='#define HAVE_NANOSLEEP 1'
2928 else
2929 def_nanosleep='#undef HAVE_NANOSLEEP'
2931 echores "$_nanosleep"
2934 echocheck "socklib"
2935 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2936 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2937 cat > $TMPC << EOF
2938 #include <netdb.h>
2939 #include <sys/socket.h>
2940 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2942 _socklib=no
2943 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2944 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2945 done
2946 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2947 if test $_winsock2_h = auto ; then
2948 _winsock2_h=no
2949 statement_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2951 test "$_ld_sock" && res_comment="using $_ld_sock"
2952 echores "$_socklib"
2955 if test $_winsock2_h = yes ; then
2956 _ld_sock="-lws2_32"
2957 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2958 else
2959 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2963 echocheck "arpa/inet.h"
2964 arpa_inet_h=no
2965 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2966 header_check arpa/inet.h && arpa_inet_h=yes &&
2967 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2968 echores "$arpa_inet_h"
2971 echocheck "inet_pton()"
2972 def_inet_pton='#define HAVE_INET_PTON 0'
2973 inet_pton=no
2974 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2975 statement_check arpa/inet.h 'inet_pton(0, 0, 0)' $_ld_tmp && inet_pton=yes && break
2976 done
2977 if test $inet_pton = yes ; then
2978 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2979 def_inet_pton='#define HAVE_INET_PTON 1'
2981 echores "$inet_pton"
2984 echocheck "inet_aton()"
2985 def_inet_aton='#define HAVE_INET_ATON 0'
2986 inet_aton=no
2987 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2988 statement_check arpa/inet.h 'inet_aton(0, 0)' $_ld_tmp && inet_aton=yes && break
2989 done
2990 if test $inet_aton = yes ; then
2991 test "$_ld_tmp" && res_comment="using $_ld_tmp"
2992 def_inet_aton='#define HAVE_INET_ATON 1'
2994 echores "$inet_aton"
2997 echocheck "socklen_t"
2998 _socklen_t=no
2999 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3000 statement_check $header 'socklen_t v = 0' && _socklen_t=yes && break
3001 done
3002 if test "$_socklen_t" = yes ; then
3003 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3004 else
3005 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3007 echores "$_socklen_t"
3010 echocheck "closesocket()"
3011 _closesocket=no
3012 statement_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
3013 if test "$_closesocket" = yes ; then
3014 def_closesocket='#define HAVE_CLOSESOCKET 1'
3015 else
3016 def_closesocket='#define HAVE_CLOSESOCKET 0'
3018 echores "$_closesocket"
3021 echocheck "networking"
3022 test $_winsock2_h = no && test $inet_pton = no &&
3023 test $inet_aton = no && networking=no
3024 if test "$networking" = yes ; then
3025 def_network='#define CONFIG_NETWORK 1'
3026 def_networking='#define CONFIG_NETWORKING 1'
3027 extra_ldflags="$extra_ldflags $_ld_sock"
3028 inputmodules="networking $inputmodules"
3029 else
3030 noinputmodules="networking $noinputmodules"
3031 def_network='#define CONFIG_NETWORK 0'
3032 def_networking='#undef CONFIG_NETWORKING'
3034 echores "$networking"
3037 echocheck "inet6"
3038 if test "$_inet6" = auto ; then
3039 cat > $TMPC << EOF
3040 #include <sys/types.h>
3041 #if !defined(_WIN32)
3042 #include <sys/socket.h>
3043 #include <netinet/in.h>
3044 #else
3045 #include <ws2tcpip.h>
3046 #endif
3047 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3049 _inet6=no
3050 if cc_check $_ld_sock ; then
3051 _inet6=yes
3054 if test "$_inet6" = yes ; then
3055 def_inet6='#define HAVE_AF_INET6 1'
3056 else
3057 def_inet6='#undef HAVE_AF_INET6'
3059 echores "$_inet6"
3062 echocheck "gethostbyname2"
3063 if test "$_gethostbyname2" = auto ; then
3064 cat > $TMPC << EOF
3065 #include <sys/types.h>
3066 #include <sys/socket.h>
3067 #include <netdb.h>
3068 int main(void) { gethostbyname2("", AF_INET); return 0; }
3070 _gethostbyname2=no
3071 if cc_check ; then
3072 _gethostbyname2=yes
3075 if test "$_gethostbyname2" = yes ; then
3076 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3077 else
3078 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3080 echores "$_gethostbyname2"
3083 echocheck "inttypes.h (required)"
3084 _inttypes=no
3085 header_check inttypes.h && _inttypes=yes
3086 echores "$_inttypes"
3088 if test "$_inttypes" = no ; then
3089 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3090 header_check sys/bitypes.h && _inttypes=yes
3091 if test "$_inttypes" = yes ; then
3092 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."
3093 else
3094 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3099 echocheck "int_fastXY_t in inttypes.h"
3100 _fast_inttypes=no
3101 statement_check "inttypes.h" 'volatile int_fast16_t v = 0' && _fast_inttypes=yes
3102 if test "$_fast_inttypes" = no ; then
3103 def_fast_inttypes='
3104 typedef signed char int_fast8_t;
3105 typedef signed int int_fast16_t;
3106 typedef signed int int_fast32_t;
3107 typedef signed long long int_fast64_t;
3108 typedef unsigned char uint_fast8_t;
3109 typedef unsigned int uint_fast16_t;
3110 typedef unsigned int uint_fast32_t;
3111 typedef unsigned long long uint_fast64_t;'
3113 echores "$_fast_inttypes"
3116 echocheck "malloc.h"
3117 _malloc=no
3118 header_check malloc.h && _malloc=yes
3119 if test "$_malloc" = yes ; then
3120 def_malloc_h='#define HAVE_MALLOC_H 1'
3121 else
3122 def_malloc_h='#define HAVE_MALLOC_H 0'
3124 echores "$_malloc"
3127 echocheck "memalign()"
3128 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3129 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3130 _memalign=no
3131 statement_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3132 if test "$_memalign" = yes ; then
3133 def_memalign='#define HAVE_MEMALIGN 1'
3134 else
3135 def_memalign='#define HAVE_MEMALIGN 0'
3136 def_map_memalign='#define memalign(a, b) malloc(b)'
3137 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3139 echores "$_memalign"
3142 echocheck "posix_memalign()"
3143 posix_memalign=no
3144 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3145 define_statement_check "_XOPEN_SOURCE 600" "stdlib.h" 'posix_memalign(NULL, 0, 0)' &&
3146 posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3147 echores "$posix_memalign"
3150 echocheck "alloca.h"
3151 _alloca=no
3152 statement_check alloca.h 'alloca(0)' && _alloca=yes
3153 if cc_check ; then
3154 def_alloca_h='#define HAVE_ALLOCA_H 1'
3155 else
3156 def_alloca_h='#undef HAVE_ALLOCA_H'
3158 echores "$_alloca"
3161 echocheck "fastmemcpy"
3162 if test "$_fastmemcpy" = yes ; then
3163 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3164 else
3165 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3167 echores "$_fastmemcpy"
3170 echocheck "mman.h"
3171 _mman=no
3172 statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3173 if test "$_mman" = yes ; then
3174 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3175 else
3176 def_mman_h='#undef HAVE_SYS_MMAN_H'
3177 os2 && need_mmap=yes
3179 echores "$_mman"
3181 _mman_has_map_failed=no
3182 statement_check sys/mman.h 'void *p = MAP_FAILED' && _mman_has_map_failed=yes
3183 if test "$_mman_has_map_failed" = yes ; then
3184 def_mman_has_map_failed=''
3185 else
3186 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3189 echocheck "dynamic loader"
3190 _dl=no
3191 for _ld_tmp in "" "-ldl"; do
3192 statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3193 done
3194 if test "$_dl" = yes ; then
3195 def_dl='#define HAVE_LIBDL 1'
3196 else
3197 def_dl='#undef HAVE_LIBDL'
3199 echores "$_dl"
3202 echocheck "dynamic a/v plugins support"
3203 if test "$_dl" = no ; then
3204 _dynamic_plugins=no
3206 if test "$_dynamic_plugins" = yes ; then
3207 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3208 else
3209 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3211 echores "$_dynamic_plugins"
3214 def_threads='#define HAVE_THREADS 0'
3216 echocheck "pthread"
3217 if linux ; then
3218 THREAD_CFLAGS=-D_REENTRANT
3219 elif freebsd || netbsd || openbsd || bsdos ; then
3220 THREAD_CFLAGS=-D_THREAD_SAFE
3222 if test "$_pthreads" = auto ; then
3223 cat > $TMPC << EOF
3224 #include <pthread.h>
3225 static void *func(void *arg) { return arg; }
3226 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3228 _pthreads=no
3229 if ! hpux ; then
3230 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3231 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3232 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3233 done
3236 if test "$_pthreads" = yes ; then
3237 test $_ld_pthread && res_comment="using $_ld_pthread"
3238 def_pthreads='#define HAVE_PTHREADS 1'
3239 def_threads='#define HAVE_THREADS 1'
3240 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3241 else
3242 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3243 def_pthreads='#undef HAVE_PTHREADS'
3244 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3245 mingw32 || _win32dll=no
3247 echores "$_pthreads"
3249 if cygwin ; then
3250 if test "$_pthreads" = yes ; then
3251 def_pthread_cache="#define PTHREAD_CACHE 1"
3252 else
3253 _stream_cache=no
3254 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3258 echocheck "w32threads"
3259 if test "$_pthreads" = yes ; then
3260 res_comment="using pthread instead"
3261 _w32threads=no
3263 if test "$_w32threads" = auto ; then
3264 _w32threads=no
3265 mingw32 && _w32threads=yes
3267 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3268 echores "$_w32threads"
3270 echocheck "rpath"
3271 if test "$_rpath" = yes ; then
3272 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3273 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3274 done
3275 extra_ldflags=$tmp
3277 echores "$_rpath"
3279 echocheck "iconv"
3280 if test "$_iconv" = auto ; then
3281 cat > $TMPC << EOF
3282 #include <stdio.h>
3283 #include <unistd.h>
3284 #include <iconv.h>
3285 #define INBUFSIZE 1024
3286 #define OUTBUFSIZE 4096
3288 char inbuffer[INBUFSIZE];
3289 char outbuffer[OUTBUFSIZE];
3291 int main(void) {
3292 size_t numread;
3293 iconv_t icdsc;
3294 char *tocode="UTF-8";
3295 char *fromcode="cp1250";
3296 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3297 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3298 char *iptr=inbuffer;
3299 char *optr=outbuffer;
3300 size_t inleft=numread;
3301 size_t outleft=OUTBUFSIZE;
3302 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3303 != (size_t)(-1)) {
3304 write(1, outbuffer, OUTBUFSIZE - outleft);
3307 if (iconv_close(icdsc) == -1)
3310 return 0;
3313 _iconv=no
3314 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3315 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
3316 _iconv=yes && break
3317 done
3319 if test "$_iconv" = yes ; then
3320 def_iconv='#define CONFIG_ICONV 1'
3321 else
3322 def_iconv='#undef CONFIG_ICONV'
3324 echores "$_iconv"
3327 echocheck "soundcard.h"
3328 _soundcard_h=no
3329 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3330 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3331 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3332 header_check $_soundcard_header && _soundcard_h=yes &&
3333 res_comment="$_soundcard_header" && break
3334 done
3336 if test "$_soundcard_h" = yes ; then
3337 if test $_soundcard_header = "sys/soundcard.h"; then
3338 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3339 else
3340 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3343 echores "$_soundcard_h"
3346 echocheck "sys/dvdio.h"
3347 _dvdio=no
3348 # FreeBSD 8.1 has broken dvdio.h
3349 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3350 if test "$_dvdio" = yes ; then
3351 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3352 else
3353 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3355 echores "$_dvdio"
3358 echocheck "sys/cdio.h"
3359 _cdio=no
3360 # at least OpenSolaris has a broken cdio.h
3361 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3362 if test "$_cdio" = yes ; then
3363 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3364 else
3365 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3367 echores "$_cdio"
3370 echocheck "linux/cdrom.h"
3371 _cdrom=no
3372 header_check linux/cdrom.h && _cdrom=yes
3373 if test "$_cdrom" = yes ; then
3374 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3375 else
3376 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3378 echores "$_cdrom"
3381 echocheck "dvd.h"
3382 _dvd=no
3383 header_check dvd.h && _dvd=yes
3384 if test "$_dvd" = yes ; then
3385 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3386 else
3387 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3389 echores "$_dvd"
3392 if bsdos; then
3393 echocheck "BSDI dvd.h"
3394 _bsdi_dvd=no
3395 header_check dvd.h && _bsdi_dvd=yes
3396 if test "$_bsdi_dvd" = yes ; then
3397 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3398 else
3399 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3401 echores "$_bsdi_dvd"
3402 fi #if bsdos
3405 if hpux; then
3406 # also used by AIX, but AIX does not support VCD and/or libdvdread
3407 echocheck "HP-UX SCSI header"
3408 _hpux_scsi_h=no
3409 header_check sys/scsi.h && _hpux_scsi_h=yes
3410 if test "$_hpux_scsi_h" = yes ; then
3411 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3412 else
3413 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3415 echores "$_hpux_scsi_h"
3416 fi #if hpux
3419 if sunos; then
3420 echocheck "userspace SCSI headers (Solaris)"
3421 _sol_scsi_h=no
3422 header_check sys/scsi/scsi_types.h &&
3423 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3424 _sol_scsi_h=yes
3425 if test "$_sol_scsi_h" = yes ; then
3426 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3427 else
3428 def_sol_scsi_h='#undef SOLARIS_USCSI'
3430 echores "$_sol_scsi_h"
3431 fi #if sunos
3434 echocheck "termcap"
3435 if test "$_termcap" = auto ; then
3436 _termcap=no
3437 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3438 statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3439 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3440 done
3442 if test "$_termcap" = yes ; then
3443 def_termcap='#define HAVE_TERMCAP 1'
3444 test $_ld_tmp && res_comment="using $_ld_tmp"
3445 else
3446 def_termcap='#undef HAVE_TERMCAP'
3448 echores "$_termcap"
3451 echocheck "termios"
3452 def_termios='#undef HAVE_TERMIOS'
3453 def_termios_h='#undef HAVE_TERMIOS_H'
3454 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3455 if test "$_termios" = auto ; then
3456 _termios=no
3457 for _termios_header in "termios.h" "sys/termios.h"; do
3458 header_check $_termios_header && _termios=yes &&
3459 res_comment="using $_termios_header" && break
3460 done
3463 if test "$_termios" = yes ; then
3464 def_termios='#define HAVE_TERMIOS 1'
3465 if test "$_termios_header" = "termios.h" ; then
3466 def_termios_h='#define HAVE_TERMIOS_H 1'
3467 else
3468 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3471 echores "$_termios"
3474 echocheck "shm"
3475 if test "$_shm" = auto ; then
3476 _shm=no
3477 statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
3479 if test "$_shm" = yes ; then
3480 def_shm='#define HAVE_SHM 1'
3481 else
3482 def_shm='#undef HAVE_SHM'
3484 echores "$_shm"
3487 echocheck "strsep()"
3488 _strsep=no
3489 statement_check string.h 'char *s = "Hello, world!"; strsep(&s, ",")' && _strsep=yes
3490 if test "$_strsep" = yes ; then
3491 def_strsep='#define HAVE_STRSEP 1'
3492 need_strsep=no
3493 else
3494 def_strsep='#undef HAVE_STRSEP'
3495 need_strsep=yes
3497 echores "$_strsep"
3500 echocheck "vsscanf()"
3501 cat > $TMPC << EOF
3502 #define _ISOC99_SOURCE
3503 #include <stdarg.h>
3504 #include <stdio.h>
3505 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3507 _vsscanf=no
3508 cc_check && _vsscanf=yes
3509 if test "$_vsscanf" = yes ; then
3510 def_vsscanf='#define HAVE_VSSCANF 1'
3511 need_vsscanf=no
3512 else
3513 def_vsscanf='#undef HAVE_VSSCANF'
3514 need_vsscanf=yes
3516 echores "$_vsscanf"
3519 echocheck "swab()"
3520 _swab=no
3521 define_statement_check "_XOPEN_SOURCE 600" "unistd.h" 'int a, b; swab(&a, &b, 0)' && _swab=yes
3522 if test "$_swab" = yes ; then
3523 def_swab='#define HAVE_SWAB 1'
3524 need_swab=no
3525 else
3526 def_swab='#undef HAVE_SWAB'
3527 need_swab=yes
3529 echores "$_swab"
3531 echocheck "POSIX select()"
3532 cat > $TMPC << EOF
3533 #include <stdio.h>
3534 #include <stdlib.h>
3535 #include <sys/types.h>
3536 #include <string.h>
3537 #include <sys/time.h>
3538 #include <unistd.h>
3539 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3541 _posix_select=no
3542 def_posix_select='#undef HAVE_POSIX_SELECT'
3543 #select() of kLIBC (OS/2) supports socket only
3544 ! os2 && cc_check && _posix_select=yes &&
3545 def_posix_select='#define HAVE_POSIX_SELECT 1'
3546 echores "$_posix_select"
3549 echocheck "audio select()"
3550 if test "$_select" = no ; then
3551 def_select='#undef HAVE_AUDIO_SELECT'
3552 elif test "$_select" = yes ; then
3553 def_select='#define HAVE_AUDIO_SELECT 1'
3555 echores "$_select"
3558 echocheck "gettimeofday()"
3559 _gettimeofday=no
3560 statement_check sys/time.h 'struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)' && _gettimeofday=yes
3561 if test "$_gettimeofday" = yes ; then
3562 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3563 need_gettimeofday=no
3564 else
3565 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3566 need_gettimeofday=yes
3568 echores "$_gettimeofday"
3571 echocheck "glob()"
3572 _glob=no
3573 statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3574 if test "$_glob" = yes ; then
3575 def_glob='#define HAVE_GLOB 1'
3576 need_glob=no
3577 else
3578 def_glob='#undef HAVE_GLOB'
3579 need_glob=yes
3581 echores "$_glob"
3584 echocheck "setenv()"
3585 _setenv=no
3586 statement_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3587 if test "$_setenv" = yes ; then
3588 def_setenv='#define HAVE_SETENV 1'
3589 need_setenv=no
3590 else
3591 def_setenv='#undef HAVE_SETENV'
3592 need_setenv=yes
3594 echores "$_setenv"
3597 echocheck "setmode()"
3598 _setmode=no
3599 def_setmode='#define HAVE_SETMODE 0'
3600 statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3601 echores "$_setmode"
3604 if sunos; then
3605 echocheck "sysi86()"
3606 _sysi86=no
3607 statement_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3608 if test "$_sysi86" = yes ; then
3609 def_sysi86='#define HAVE_SYSI86 1'
3610 statement_check sys/sysi86.h 'int sysi86(int, void*); sysi86(0)' && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3611 else
3612 def_sysi86='#undef HAVE_SYSI86'
3614 echores "$_sysi86"
3615 fi #if sunos
3618 echocheck "sys/sysinfo.h"
3619 _sys_sysinfo=no
3620 statement_check sys/sysinfo.h 'struct sysinfo s_info; sysinfo(&s_info)' && _sys_sysinfo=yes
3621 if test "$_sys_sysinfo" = yes ; then
3622 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3623 else
3624 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3626 echores "$_sys_sysinfo"
3629 if darwin; then
3631 echocheck "Mac OS X Finder Support"
3632 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3633 if test "$_macosx_finder" = yes ; then
3634 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3635 extra_ldflags="$extra_ldflags -framework Carbon"
3637 echores "$_macosx_finder"
3639 echocheck "Mac OS X Bundle file locations"
3640 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3641 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3642 if test "$_macosx_bundle" = yes ; then
3643 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3644 extra_ldflags="$extra_ldflags -framework Carbon"
3646 echores "$_macosx_bundle"
3648 echocheck "Apple Remote"
3649 if test "$_apple_remote" = auto ; then
3650 _apple_remote=no
3651 cat > $TMPC <<EOF
3652 #include <stdio.h>
3653 #include <IOKit/IOCFPlugIn.h>
3654 int main(void) {
3655 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3656 CFMutableDictionaryRef hidMatchDictionary;
3657 IOReturn ioReturnValue;
3659 // Set up a matching dictionary to search the I/O Registry by class.
3660 // name for all HID class devices
3661 hidMatchDictionary = IOServiceMatching("AppleIRController");
3663 // Now search I/O Registry for matching devices.
3664 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3665 hidMatchDictionary, &hidObjectIterator);
3667 // If search is unsuccessful, return nonzero.
3668 if (ioReturnValue != kIOReturnSuccess ||
3669 !IOIteratorIsValid(hidObjectIterator)) {
3670 return 1;
3672 return 0;
3675 cc_check -framework IOKit && _apple_remote=yes
3677 if test "$_apple_remote" = yes ; then
3678 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3679 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3680 else
3681 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3683 echores "$_apple_remote"
3685 fi #if darwin
3687 if linux; then
3689 echocheck "Apple IR"
3690 if test "$_apple_ir" = auto ; then
3691 _apple_ir=no
3692 statement_check linux/input.h 'struct input_event ev; struct input_id id' && _apple_ir=yes
3694 if test "$_apple_ir" = yes ; then
3695 def_apple_ir='#define CONFIG_APPLE_IR 1'
3696 else
3697 def_apple_ir='#undef CONFIG_APPLE_IR'
3699 echores "$_apple_ir"
3700 fi #if linux
3702 echocheck "pkg-config"
3703 _pkg_config=pkg-config
3704 if $($_pkg_config --version > /dev/null 2>&1); then
3705 if test "$_ld_static"; then
3706 _pkg_config="$_pkg_config --static"
3708 echores "yes"
3709 else
3710 _pkg_config=false
3711 echores "no"
3715 echocheck "Samba support (libsmbclient)"
3716 if test "$_smb" = yes; then
3717 extra_ldflags="$extra_ldflags -lsmbclient"
3719 if test "$_smb" = auto; then
3720 _smb=no
3721 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3722 statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3723 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3724 done
3727 if test "$_smb" = yes; then
3728 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3729 inputmodules="smb $inputmodules"
3730 else
3731 def_smb="#undef CONFIG_LIBSMBCLIENT"
3732 noinputmodules="smb $noinputmodules"
3734 echores "$_smb"
3737 #########
3738 # VIDEO #
3739 #########
3742 echocheck "tdfxfb"
3743 if test "$_tdfxfb" = yes ; then
3744 def_tdfxfb='#define CONFIG_TDFXFB 1'
3745 vomodules="tdfxfb $vomodules"
3746 else
3747 def_tdfxfb='#undef CONFIG_TDFXFB'
3748 novomodules="tdfxfb $novomodules"
3750 echores "$_tdfxfb"
3752 echocheck "s3fb"
3753 if test "$_s3fb" = yes ; then
3754 def_s3fb='#define CONFIG_S3FB 1'
3755 vomodules="s3fb $vomodules"
3756 else
3757 def_s3fb='#undef CONFIG_S3FB'
3758 novomodules="s3fb $novomodules"
3760 echores "$_s3fb"
3762 echocheck "wii"
3763 if test "$_wii" = yes ; then
3764 def_wii='#define CONFIG_WII 1'
3765 vomodules="wii $vomodules"
3766 else
3767 def_wii='#undef CONFIG_WII'
3768 novomodules="wii $novomodules"
3770 echores "$_wii"
3772 echocheck "tdfxvid"
3773 if test "$_tdfxvid" = yes ; then
3774 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3775 vomodules="tdfx_vid $vomodules"
3776 else
3777 def_tdfxvid='#undef CONFIG_TDFX_VID'
3778 novomodules="tdfx_vid $novomodules"
3780 echores "$_tdfxvid"
3782 echocheck "xvr100"
3783 if test "$_xvr100" = auto ; then
3784 cat > $TMPC << EOF
3785 #include <unistd.h>
3786 #include <sys/fbio.h>
3787 #include <sys/visual_io.h>
3788 int main(void) {
3789 struct vis_identifier ident;
3790 struct fbgattr attr;
3791 ioctl(0, VIS_GETIDENTIFIER, &ident);
3792 ioctl(0, FBIOGATTR, &attr);
3793 return 0;
3796 _xvr100=no
3797 cc_check && _xvr100=yes
3799 if test "$_xvr100" = yes ; then
3800 def_xvr100='#define CONFIG_XVR100 1'
3801 vomodules="xvr100 $vomodules"
3802 else
3803 def_tdfxvid='#undef CONFIG_XVR100'
3804 novomodules="xvr100 $novomodules"
3806 echores "$_xvr100"
3808 echocheck "tga"
3809 if test "$_tga" = yes ; then
3810 def_tga='#define CONFIG_TGA 1'
3811 vomodules="tga $vomodules"
3812 else
3813 def_tga='#undef CONFIG_TGA'
3814 novomodules="tga $novomodules"
3816 echores "$_tga"
3819 echocheck "md5sum support"
3820 if test "$_md5sum" = yes; then
3821 def_md5sum="#define CONFIG_MD5SUM 1"
3822 vomodules="md5sum $vomodules"
3823 else
3824 def_md5sum="#undef CONFIG_MD5SUM"
3825 novomodules="md5sum $novomodules"
3827 echores "$_md5sum"
3830 echocheck "yuv4mpeg support"
3831 if test "$_yuv4mpeg" = yes; then
3832 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3833 vomodules="yuv4mpeg $vomodules"
3834 else
3835 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3836 novomodules="yuv4mpeg $novomodules"
3838 echores "$_yuv4mpeg"
3841 echocheck "bl"
3842 if test "$_bl" = yes ; then
3843 def_bl='#define CONFIG_BL 1'
3844 vomodules="bl $vomodules"
3845 else
3846 def_bl='#undef CONFIG_BL'
3847 novomodules="bl $novomodules"
3849 echores "$_bl"
3852 echocheck "DirectFB"
3853 if test "$_directfb" = auto ; then
3854 _directfb=no
3855 cat > $TMPC << EOF
3856 #include <directfb.h>
3857 #include <directfb_version.h>
3858 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3859 #error "DirectFB version too old."
3860 #endif
3861 int main(void) { DirectFBInit(0, 0); return 0; }
3863 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3864 cc_check $_inc_tmp -ldirectfb &&
3865 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3866 done
3868 if test "$_directfb" = yes ; then
3869 def_directfb='#define CONFIG_DIRECTFB 1'
3870 vomodules="directfb dfbmga $vomodules"
3871 libs_mplayer="$libs_mplayer -ldirectfb"
3872 else
3873 def_directfb='#undef CONFIG_DIRECTFB'
3874 novomodules="directfb dfbmga $novomodules"
3876 echores "$_directfb"
3879 echocheck "X11 headers presence"
3880 _x11_headers="no"
3881 res_comment="check if the dev(el) packages are installed"
3882 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3883 if test -f "$I/X11/Xlib.h" ; then
3884 _x11_headers="yes"
3885 res_comment=""
3886 break
3888 done
3889 if test $_cross_compile = no; then
3890 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
3891 /usr/include/X11R6 /usr/openwin/include ; do
3892 if test -f "$I/X11/Xlib.h" ; then
3893 extra_cflags="$extra_cflags -I$I"
3894 _x11_headers="yes"
3895 res_comment="using $I"
3896 break
3898 done
3900 echores "$_x11_headers"
3903 echocheck "X11"
3904 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3905 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
3906 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
3907 -L/usr/lib ; do
3908 if netbsd; then
3909 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
3910 else
3911 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3913 statement_check X11/Xutil.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
3914 libs_mplayer="$libs_mplayer $_ld_tmp" && _x11=yes && break
3915 done
3917 if test "$_x11" = yes ; then
3918 def_x11='#define CONFIG_X11 1'
3919 vomodules="x11 xover $vomodules"
3920 else
3921 _x11=no
3922 def_x11='#undef CONFIG_X11'
3923 novomodules="x11 $novomodules"
3924 res_comment="check if the dev(el) packages are installed"
3925 # disable stuff that depends on X
3926 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
3928 echores "$_x11"
3930 echocheck "Xss screensaver extensions"
3931 if test "$_xss" = auto ; then
3932 _xss=no
3933 statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
3935 if test "$_xss" = yes ; then
3936 def_xss='#define CONFIG_XSS 1'
3937 libs_mplayer="$libs_mplayer -lXss"
3938 else
3939 def_xss='#undef CONFIG_XSS'
3941 echores "$_xss"
3943 echocheck "DPMS"
3944 _xdpms3=no
3945 _xdpms4=no
3946 if test "$_x11" = yes ; then
3947 cat > $TMPC <<EOF
3948 #include <X11/Xmd.h>
3949 #include <X11/Xlib.h>
3950 #include <X11/Xutil.h>
3951 #include <X11/Xatom.h>
3952 #include <X11/extensions/dpms.h>
3953 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
3955 cc_check -lXdpms && _xdpms3=yes
3956 statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
3958 if test "$_xdpms4" = yes ; then
3959 def_xdpms='#define CONFIG_XDPMS 1'
3960 res_comment="using Xdpms 4"
3961 echores "yes"
3962 elif test "$_xdpms3" = yes ; then
3963 def_xdpms='#define CONFIG_XDPMS 1'
3964 libs_mplayer="$libs_mplayer -lXdpms"
3965 res_comment="using Xdpms 3"
3966 echores "yes"
3967 else
3968 def_xdpms='#undef CONFIG_XDPMS'
3969 echores "no"
3973 echocheck "Xv"
3974 if test "$_xv" = auto ; then
3975 _xv=no
3976 statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
3979 if test "$_xv" = yes ; then
3980 def_xv='#define CONFIG_XV 1'
3981 libs_mplayer="$libs_mplayer -lXv"
3982 vomodules="xv $vomodules"
3983 else
3984 def_xv='#undef CONFIG_XV'
3985 novomodules="xv $novomodules"
3987 echores "$_xv"
3990 echocheck "XvMC"
3991 if test "$_xv" = yes && test "$_xvmc" != no ; then
3992 _xvmc=no
3993 cat > $TMPC <<EOF
3994 #include <X11/Xlib.h>
3995 #include <X11/extensions/Xvlib.h>
3996 #include <X11/extensions/XvMClib.h>
3997 int main(void) {
3998 XvMCQueryExtension(0, 0, 0);
3999 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
4000 return 0; }
4002 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4003 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4004 done
4006 if test "$_xvmc" = yes ; then
4007 def_xvmc='#define CONFIG_XVMC 1'
4008 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4009 vomodules="xvmc $vomodules"
4010 res_comment="using $_xvmclib"
4011 else
4012 def_xvmc='#define CONFIG_XVMC 0'
4013 novomodules="xvmc $novomodules"
4015 echores "$_xvmc"
4018 echocheck "VDPAU"
4019 if test "$_vdpau" = auto ; then
4020 _vdpau=no
4021 if test "$_dl" = yes ; then
4022 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
4025 if test "$_vdpau" = yes ; then
4026 def_vdpau='#define CONFIG_VDPAU 1'
4027 libs_mplayer="$libs_mplayer -lvdpau"
4028 vomodules="vdpau $vomodules"
4029 else
4030 def_vdpau='#define CONFIG_VDPAU 0'
4031 novomodules="vdpau $novomodules"
4033 echores "$_vdpau"
4036 echocheck "Xinerama"
4037 if test "$_xinerama" = auto ; then
4038 _xinerama=no
4039 statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
4042 if test "$_xinerama" = yes ; then
4043 def_xinerama='#define CONFIG_XINERAMA 1'
4044 libs_mplayer="$libs_mplayer -lXinerama"
4045 else
4046 def_xinerama='#undef CONFIG_XINERAMA'
4048 echores "$_xinerama"
4051 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4052 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4053 # named 'X extensions' or something similar.
4054 # This check may be useful for future mplayer versions (to change resolution)
4055 # If you run into problems, remove '-lXxf86vm'.
4056 echocheck "Xxf86vm"
4057 if test "$_vm" = auto ; then
4058 _vm=no
4059 statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
4061 if test "$_vm" = yes ; then
4062 def_vm='#define CONFIG_XF86VM 1'
4063 libs_mplayer="$libs_mplayer -lXxf86vm"
4064 else
4065 def_vm='#undef CONFIG_XF86VM'
4067 echores "$_vm"
4069 # Check for the presence of special keycodes, like audio control buttons
4070 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4071 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4072 # have these new keycodes.
4073 echocheck "XF86keysym"
4074 if test "$_xf86keysym" = auto; then
4075 _xf86keysym=no
4076 return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
4078 if test "$_xf86keysym" = yes ; then
4079 def_xf86keysym='#define CONFIG_XF86XK 1'
4080 else
4081 def_xf86keysym='#undef CONFIG_XF86XK'
4083 echores "$_xf86keysym"
4085 echocheck "DGA"
4086 if test "$_dga2" = auto && test "$_x11" = yes ; then
4087 _dga2=no
4088 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XDGASetViewport(0, 0, 0, 0, 0)' -lXxf86dga && _dga2=yes
4090 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4091 _dga1=no
4092 statement_check_broken X11/Xlib.h X11/extensions/xf86dga.h 'XF86DGASetViewPort(0, 0, 0, 0)' -lXxf86dga -lXxf86vm && _dga1=yes
4095 _dga=no
4096 def_dga='#undef CONFIG_DGA'
4097 def_dga1='#undef CONFIG_DGA1'
4098 def_dga2='#undef CONFIG_DGA2'
4099 if test "$_dga1" = yes ; then
4100 _dga=yes
4101 def_dga1='#define CONFIG_DGA1 1'
4102 res_comment="using DGA 1.0"
4103 elif test "$_dga2" = yes ; then
4104 _dga=yes
4105 def_dga2='#define CONFIG_DGA2 1'
4106 res_comment="using DGA 2.0"
4108 if test "$_dga" = yes ; then
4109 def_dga='#define CONFIG_DGA 1'
4110 libs_mplayer="$libs_mplayer -lXxf86dga"
4111 vomodules="dga $vomodules"
4112 else
4113 novomodules="dga $novomodules"
4115 echores "$_dga"
4118 echocheck "3dfx"
4119 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4120 def_3dfx='#define CONFIG_3DFX 1'
4121 vomodules="3dfx $vomodules"
4122 else
4123 def_3dfx='#undef CONFIG_3DFX'
4124 novomodules="3dfx $novomodules"
4126 echores "$_3dfx"
4129 echocheck "GGI"
4130 if test "$_ggi" = auto ; then
4131 _ggi=no
4132 statement_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4134 if test "$_ggi" = yes ; then
4135 def_ggi='#define CONFIG_GGI 1'
4136 libs_mplayer="$libs_mplayer -lggi"
4137 vomodules="ggi $vomodules"
4138 else
4139 def_ggi='#undef CONFIG_GGI'
4140 novomodules="ggi $novomodules"
4142 echores "$_ggi"
4144 echocheck "GGI extension: libggiwmh"
4145 if test "$_ggiwmh" = auto ; then
4146 _ggiwmh=no
4147 statement_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4149 # needed to get right output on obscure combination
4150 # like --disable-ggi --enable-ggiwmh
4151 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4152 def_ggiwmh='#define CONFIG_GGIWMH 1'
4153 libs_mplayer="$libs_mplayer -lggiwmh"
4154 else
4155 _ggiwmh=no
4156 def_ggiwmh='#undef CONFIG_GGIWMH'
4158 echores "$_ggiwmh"
4161 echocheck "AA"
4162 if test "$_aa" = auto ; then
4163 cat > $TMPC << EOF
4164 #include <aalib.h>
4165 int main(void) {
4166 aa_context *c;
4167 aa_renderparams *p;
4168 aa_init(0, 0, 0);
4169 c = aa_autoinit(&aa_defparams);
4170 p = aa_getrenderparams();
4171 aa_autoinitkbd(c, 0);
4172 return 0; }
4174 _aa=no
4175 for _ld_tmp in "-laa" ; do
4176 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4177 done
4179 if test "$_aa" = yes ; then
4180 def_aa='#define CONFIG_AA 1'
4181 if cygwin ; then
4182 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4184 vomodules="aa $vomodules"
4185 else
4186 def_aa='#undef CONFIG_AA'
4187 novomodules="aa $novomodules"
4189 echores "$_aa"
4192 echocheck "CACA"
4193 if test "$_caca" = auto ; then
4194 _caca=no
4195 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4196 cat > $TMPC << EOF
4197 #include <caca.h>
4198 #ifdef CACA_API_VERSION_1
4199 #include <caca0.h>
4200 #endif
4201 int main(void) { caca_init(); return 0; }
4203 cc_check $(caca-config --libs) && _caca=yes
4206 if test "$_caca" = yes ; then
4207 def_caca='#define CONFIG_CACA 1'
4208 extra_cflags="$extra_cflags $(caca-config --cflags)"
4209 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4210 vomodules="caca $vomodules"
4211 else
4212 def_caca='#undef CONFIG_CACA'
4213 novomodules="caca $novomodules"
4215 echores "$_caca"
4218 echocheck "SVGAlib"
4219 if test "$_svga" = auto ; then
4220 _svga=no
4221 header_check vga.h -lvga $_ld_lm && _svga=yes
4223 if test "$_svga" = yes ; then
4224 def_svga='#define CONFIG_SVGALIB 1'
4225 libs_mplayer="$libs_mplayer -lvga"
4226 vomodules="svga $vomodules"
4227 else
4228 def_svga='#undef CONFIG_SVGALIB'
4229 novomodules="svga $novomodules"
4231 echores "$_svga"
4234 echocheck "FBDev"
4235 if test "$_fbdev" = auto ; then
4236 _fbdev=no
4237 linux && _fbdev=yes
4239 if test "$_fbdev" = yes ; then
4240 def_fbdev='#define CONFIG_FBDEV 1'
4241 vomodules="fbdev $vomodules"
4242 else
4243 def_fbdev='#undef CONFIG_FBDEV'
4244 novomodules="fbdev $novomodules"
4246 echores "$_fbdev"
4250 echocheck "DVB"
4251 if test "$_dvb" = auto ; then
4252 _dvb=no
4253 cat >$TMPC << EOF
4254 #include <poll.h>
4255 #include <sys/ioctl.h>
4256 #include <stdio.h>
4257 #include <time.h>
4258 #include <unistd.h>
4259 #include <linux/dvb/dmx.h>
4260 #include <linux/dvb/frontend.h>
4261 #include <linux/dvb/video.h>
4262 #include <linux/dvb/audio.h>
4263 int main(void) {return 0;}
4265 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4266 cc_check $_inc_tmp && _dvb=yes &&
4267 extra_cflags="$extra_cflags $_inc_tmp" && break
4268 done
4270 echores "$_dvb"
4271 if test "$_dvb" = yes ; then
4272 _dvbin=yes
4273 inputmodules="dvb $inputmodules"
4274 def_dvb='#define CONFIG_DVB 1'
4275 def_dvbin='#define CONFIG_DVBIN 1'
4276 aomodules="mpegpes(dvb) $aomodules"
4277 vomodules="mpegpes(dvb) $vomodules"
4278 else
4279 _dvbin=no
4280 noinputmodules="dvb $noinputmodules"
4281 def_dvb='#undef CONFIG_DVB'
4282 def_dvbin='#undef CONFIG_DVBIN '
4283 aomodules="mpegpes(file) $aomodules"
4284 vomodules="mpegpes(file) $vomodules"
4288 if darwin; then
4290 echocheck "QuickTime"
4291 if test "$quicktime" = auto ; then
4292 quicktime=no
4293 statement_check QuickTime/QuickTime.h 'ImageDescription *desc; EnterMovies(); ExitMovies()' -framework QuickTime && quicktime=yes
4295 if test "$quicktime" = yes ; then
4296 extra_ldflags="$extra_ldflags -framework QuickTime"
4297 def_quicktime='#define CONFIG_QUICKTIME 1'
4298 else
4299 def_quicktime='#undef CONFIG_QUICKTIME'
4300 _quartz=no
4302 echores $quicktime
4304 echocheck "Quartz"
4305 if test "$_quartz" = auto ; then
4306 _quartz=no
4307 statement_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4309 if test "$_quartz" = yes ; then
4310 libs_mplayer="$libs_mplayer -framework Carbon"
4311 def_quartz='#define CONFIG_QUARTZ 1'
4312 vomodules="quartz $vomodules"
4313 else
4314 def_quartz='#undef CONFIG_QUARTZ'
4315 novomodules="quartz $novomodules"
4317 echores $_quartz
4319 echocheck "CoreVideo"
4320 if test "$_corevideo" = auto ; then
4321 cat > $TMPC <<EOF
4322 #include <Carbon/Carbon.h>
4323 #include <CoreServices/CoreServices.h>
4324 #include <OpenGL/OpenGL.h>
4325 #include <QuartzCore/CoreVideo.h>
4326 int main(void) { return 0; }
4328 _corevideo=no
4329 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4331 if test "$_corevideo" = yes ; then
4332 vomodules="corevideo $vomodules"
4333 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4334 def_corevideo='#define CONFIG_COREVIDEO 1'
4335 else
4336 novomodules="corevideo $novomodules"
4337 def_corevideo='#undef CONFIG_COREVIDEO'
4339 echores "$_corevideo"
4341 fi #if darwin
4344 echocheck "PNG support"
4345 if test "$_png" = auto ; then
4346 _png=no
4347 if irix ; then
4348 # Don't check for -lpng on irix since it has its own libpng
4349 # incompatible with the GNU libpng
4350 res_comment="disabled on irix (not GNU libpng)"
4351 else
4352 cat > $TMPC << EOF
4353 #include <stdio.h>
4354 #include <string.h>
4355 #include <png.h>
4356 int main(void) {
4357 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4358 printf("libpng: %s\n", png_libpng_ver);
4359 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4362 cc_check -lpng -lz $_ld_lm && _png=yes
4365 echores "$_png"
4366 if test "$_png" = yes ; then
4367 def_png='#define CONFIG_PNG 1'
4368 extra_ldflags="$extra_ldflags -lpng -lz"
4369 else
4370 def_png='#undef CONFIG_PNG'
4373 echocheck "MNG support"
4374 if test "$_mng" = auto ; then
4375 _mng=no
4376 return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
4378 echores "$_mng"
4379 if test "$_mng" = yes ; then
4380 def_mng='#define CONFIG_MNG 1'
4381 extra_ldflags="$extra_ldflags -lmng -lz"
4382 else
4383 def_mng='#undef CONFIG_MNG'
4386 echocheck "JPEG support"
4387 if test "$_jpeg" = auto ; then
4388 _jpeg=no
4389 header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
4391 echores "$_jpeg"
4393 if test "$_jpeg" = yes ; then
4394 def_jpeg='#define CONFIG_JPEG 1'
4395 vomodules="jpeg $vomodules"
4396 extra_ldflags="$extra_ldflags -ljpeg"
4397 else
4398 def_jpeg='#undef CONFIG_JPEG'
4399 novomodules="jpeg $novomodules"
4404 echocheck "PNM support"
4405 if test "$_pnm" = yes; then
4406 def_pnm="#define CONFIG_PNM 1"
4407 vomodules="pnm $vomodules"
4408 else
4409 def_pnm="#undef CONFIG_PNM"
4410 novomodules="pnm $novomodules"
4412 echores "$_pnm"
4416 echocheck "GIF support"
4417 # This is to appease people who want to force gif support.
4418 # If it is forced to yes, then we still do checks to determine
4419 # which gif library to use.
4420 if test "$_gif" = yes ; then
4421 _force_gif=yes
4422 _gif=auto
4425 if test "$_gif" = auto ; then
4426 _gif=no
4427 for _ld_gif in "-lungif" "-lgif" ; do
4428 statement_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4429 done
4432 # If no library was found, and the user wants support forced,
4433 # then we force it on with libgif, as this is the safest
4434 # assumption IMHO. (libungif & libregif both create symbolic
4435 # links to libgif. We also assume that no x11 support is needed,
4436 # because if you are forcing this, then you _should_ know what
4437 # you are doing. [ Besides, package maintainers should never
4438 # have compiled x11 deps into libungif in the first place. ] )
4439 # </rant>
4440 # --Joey
4441 if test "$_force_gif" = yes && test "$_gif" = no ; then
4442 _gif=yes
4443 _ld_gif="-lgif"
4446 if test "$_gif" = yes ; then
4447 def_gif='#define CONFIG_GIF 1'
4448 codecmodules="gif $codecmodules"
4449 vomodules="gif89a $vomodules"
4450 res_comment="old version, some encoding functions disabled"
4451 def_gif_4='#undef CONFIG_GIF_4'
4452 extra_ldflags="$extra_ldflags $_ld_gif"
4454 cat > $TMPC << EOF
4455 #include <signal.h>
4456 #include <stdio.h>
4457 #include <stdlib.h>
4458 #include <gif_lib.h>
4459 static void catch(int sig) { exit(1); }
4460 int main(void) {
4461 signal(SIGSEGV, catch); // catch segfault
4462 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4463 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4464 return 0;
4467 if cc_check "$_ld_gif" ; then
4468 def_gif_4='#define CONFIG_GIF_4 1'
4469 res_comment=""
4471 else
4472 def_gif='#undef CONFIG_GIF'
4473 def_gif_4='#undef CONFIG_GIF_4'
4474 novomodules="gif89a $novomodules"
4475 nocodecmodules="gif $nocodecmodules"
4477 echores "$_gif"
4480 case "$_gif" in yes*)
4481 echocheck "broken giflib workaround"
4482 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4484 cat > $TMPC << EOF
4485 #include <stdio.h>
4486 #include <gif_lib.h>
4487 int main(void) {
4488 GifFileType gif = {.UserData = NULL};
4489 printf("UserData is at address %p\n", gif.UserData);
4490 return 0;
4493 if cc_check "$_ld_gif" ; then
4494 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4495 echores "disabled"
4496 else
4497 echores "enabled"
4500 esac
4503 echocheck "VESA support"
4504 if test "$_vesa" = auto ; then
4505 _vesa=no
4506 statement_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4508 if test "$_vesa" = yes ; then
4509 def_vesa='#define CONFIG_VESA 1'
4510 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4511 vomodules="vesa $vomodules"
4512 else
4513 def_vesa='#undef CONFIG_VESA'
4514 novomodules="vesa $novomodules"
4516 echores "$_vesa"
4518 #################
4519 # VIDEO + AUDIO #
4520 #################
4523 echocheck "SDL"
4524 _inc_tmp=""
4525 _ld_tmp=""
4526 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4527 if test -z "$_sdlconfig" ; then
4528 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4529 _sdlconfig="sdl-config"
4530 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4531 _sdlconfig="sdl11-config"
4532 else
4533 _sdlconfig=false
4536 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4537 cat > $TMPC << EOF
4538 #ifdef CONFIG_SDL_SDL_H
4539 #include <SDL/SDL.h>
4540 #else
4541 #include <SDL.h>
4542 #endif
4543 #ifndef __APPLE__
4544 // we allow SDL hacking our main() only on OSX
4545 #undef main
4546 #endif
4547 int main(int argc, char *argv[]) {
4548 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4549 return 0;
4552 _sdl=no
4553 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4554 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4555 _sdl=yes
4556 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4557 break
4559 done
4560 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4561 res_comment="using $_sdlconfig"
4562 if cygwin ; then
4563 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4564 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4565 elif mingw32 ; then
4566 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4567 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4568 else
4569 _inc_tmp="$($_sdlconfig --cflags)"
4570 _ld_tmp="$($_sdlconfig --libs)"
4572 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4573 _sdl=yes
4574 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4575 # HACK for BeOS/Haiku SDL
4576 _ld_tmp="$_ld_tmp -lstdc++"
4577 _sdl=yes
4581 if test "$_sdl" = yes ; then
4582 def_sdl='#define CONFIG_SDL 1'
4583 extra_cflags="$extra_cflags $_inc_tmp"
4584 libs_mplayer="$libs_mplayer $_ld_tmp"
4585 vomodules="sdl $vomodules"
4586 aomodules="sdl $aomodules"
4587 else
4588 def_sdl='#undef CONFIG_SDL'
4589 novomodules="sdl $novomodules"
4590 noaomodules="sdl $noaomodules"
4592 echores "$_sdl"
4595 # make sure this stays below CoreVideo to avoid issues due to namespace
4596 # conflicts between -lGL and -framework OpenGL
4597 echocheck "OpenGL"
4598 #Note: this test is run even with --enable-gl since we autodetect linker flags
4599 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4600 cat > $TMPC << EOF
4601 #ifdef GL_WIN32
4602 #include <windows.h>
4603 #include <GL/gl.h>
4604 #elif defined(GL_SDL)
4605 #include <GL/gl.h>
4606 #ifdef CONFIG_SDL_SDL_H
4607 #include <SDL/SDL.h>
4608 #else
4609 #include <SDL.h>
4610 #endif
4611 #ifndef __APPLE__
4612 // we allow SDL hacking our main() only on OSX
4613 #undef main
4614 #endif
4615 #else
4616 #include <GL/gl.h>
4617 #include <X11/Xlib.h>
4618 #include <GL/glx.h>
4619 #endif
4620 int main(int argc, char *argv[]) {
4621 #ifdef GL_WIN32
4622 HDC dc;
4623 wglCreateContext(dc);
4624 #elif defined(GL_SDL)
4625 SDL_GL_SwapBuffers();
4626 #else
4627 glXCreateContext(NULL, NULL, NULL, True);
4628 #endif
4629 glFinish();
4630 return 0;
4633 _gl=no
4634 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4635 if cc_check $_ld_tmp $_ld_lm ; then
4636 _gl=yes
4637 _gl_x11=yes
4638 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4639 break
4641 done
4642 if cc_check -DGL_WIN32 -lopengl32 ; then
4643 _gl=yes
4644 _gl_win32=yes
4645 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4647 # last so it can reuse any linker etc. flags detected before
4648 if test "$_sdl" = yes ; then
4649 if cc_check -DGL_SDL ||
4650 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4651 _gl=yes
4652 _gl_sdl=yes
4653 elif cc_check -DGL_SDL -lGL ||
4654 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4655 _gl=yes
4656 _gl_sdl=yes
4657 libs_mplayer="$libs_mplayer -lGL"
4660 else
4661 _gl=no
4663 if test "$_gl" = yes ; then
4664 def_gl='#define CONFIG_GL 1'
4665 res_comment="backends:"
4666 if test "$_gl_win32" = yes ; then
4667 def_gl_win32='#define CONFIG_GL_WIN32 1'
4668 res_comment="$res_comment win32"
4670 if test "$_gl_x11" = yes ; then
4671 def_gl_x11='#define CONFIG_GL_X11 1'
4672 res_comment="$res_comment x11"
4674 if test "$_gl_sdl" = yes ; then
4675 def_gl_sdl='#define CONFIG_GL_SDL 1'
4676 res_comment="$res_comment sdl"
4678 vomodules="opengl $vomodules"
4679 else
4680 def_gl='#undef CONFIG_GL'
4681 def_gl_win32='#undef CONFIG_GL_WIN32'
4682 def_gl_x11='#undef CONFIG_GL_X11'
4683 def_gl_sdl='#undef CONFIG_GL_SDL'
4684 novomodules="opengl $novomodules"
4686 echores "$_gl"
4689 echocheck "MatrixView"
4690 if test "$_gl" = no ; then
4691 matrixview=no
4693 if test "$matrixview" = yes ; then
4694 vomodules="matrixview $vomodules"
4695 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4696 else
4697 novomodules="matrixview $novomodules"
4698 def_matrixview='#undef CONFIG_MATRIXVIEW'
4700 echores "$matrixview"
4703 if os2 ; then
4704 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4705 if test "$_kva" = auto; then
4706 _kva=no;
4707 header_check_broken os2.h kva.h -lkva && _kva=yes
4709 if test "$_kva" = yes ; then
4710 def_kva='#define CONFIG_KVA 1'
4711 libs_mplayer="$libs_mplayer -lkva"
4712 vomodules="kva $vomodules"
4713 else
4714 def_kva='#undef CONFIG_KVA'
4715 novomodules="kva $novomodules"
4717 echores "$_kva"
4718 fi #if os2
4721 if win32; then
4723 echocheck "Windows waveout"
4724 if test "$_win32waveout" = auto ; then
4725 _win32waveout=no
4726 header_check_broken windows.h mmsystem.h -lwinmm && _win32waveout=yes
4728 if test "$_win32waveout" = yes ; then
4729 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4730 libs_mplayer="$libs_mplayer -lwinmm"
4731 aomodules="win32 $aomodules"
4732 else
4733 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4734 noaomodules="win32 $noaomodules"
4736 echores "$_win32waveout"
4738 echocheck "Direct3D"
4739 if test "$_direct3d" = auto ; then
4740 _direct3d=no
4741 header_check d3d9.h && _direct3d=yes
4743 if test "$_direct3d" = yes ; then
4744 def_direct3d='#define CONFIG_DIRECT3D 1'
4745 vomodules="direct3d $vomodules"
4746 else
4747 def_direct3d='#undef CONFIG_DIRECT3D'
4748 novomodules="direct3d $novomodules"
4750 echores "$_direct3d"
4752 echocheck "Directx"
4753 if test "$_directx" = auto ; then
4754 cat > $TMPC << EOF
4755 #include <ddraw.h>
4756 #include <dsound.h>
4757 int main(void) { return 0; }
4759 _directx=no
4760 cc_check -lgdi32 && _directx=yes
4762 if test "$_directx" = yes ; then
4763 def_directx='#define CONFIG_DIRECTX 1'
4764 libs_mplayer="$libs_mplayer -lgdi32"
4765 vomodules="directx $vomodules"
4766 aomodules="dsound $aomodules"
4767 else
4768 def_directx='#undef CONFIG_DIRECTX'
4769 novomodules="directx $novomodules"
4770 noaomodules="dsound $noaomodules"
4772 echores "$_directx"
4774 fi #if win32; then
4777 echocheck "DXR3/H+"
4778 if test "$_dxr3" = auto ; then
4779 _dxr3=no
4780 header_check linux/em8300.h && _dxr3=yes
4782 if test "$_dxr3" = yes ; then
4783 def_dxr3='#define CONFIG_DXR3 1'
4784 vomodules="dxr3 $vomodules"
4785 else
4786 def_dxr3='#undef CONFIG_DXR3'
4787 novomodules="dxr3 $novomodules"
4789 echores "$_dxr3"
4792 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4793 if test "$_ivtv" = auto ; then
4794 cat > $TMPC << EOF
4795 #include <sys/time.h>
4796 #include <linux/videodev2.h>
4797 #include <linux/ivtv.h>
4798 #include <sys/ioctl.h>
4799 int main(void) {
4800 struct ivtv_cfg_stop_decode sd;
4801 struct ivtv_cfg_start_decode sd1;
4802 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
4803 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
4804 return 0; }
4806 _ivtv=no
4807 cc_check && _ivtv=yes
4809 if test "$_ivtv" = yes ; then
4810 def_ivtv='#define CONFIG_IVTV 1'
4811 vomodules="ivtv $vomodules"
4812 aomodules="ivtv $aomodules"
4813 else
4814 def_ivtv='#undef CONFIG_IVTV'
4815 novomodules="ivtv $novomodules"
4816 noaomodules="ivtv $noaomodules"
4818 echores "$_ivtv"
4821 echocheck "V4L2 MPEG Decoder"
4822 if test "$_v4l2" = auto ; then
4823 cat > $TMPC << EOF
4824 #include <sys/time.h>
4825 #include <linux/videodev2.h>
4826 #include <linux/version.h>
4827 int main(void) {
4828 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4829 #error kernel headers too old, need 2.6.22
4830 #endif
4831 struct v4l2_ext_controls ctrls;
4832 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4833 return 0;
4836 _v4l2=no
4837 cc_check && _v4l2=yes
4839 if test "$_v4l2" = yes ; then
4840 def_v4l2='#define CONFIG_V4L2_DECODER 1'
4841 vomodules="v4l2 $vomodules"
4842 aomodules="v4l2 $aomodules"
4843 else
4844 def_v4l2='#undef CONFIG_V4L2_DECODER'
4845 novomodules="v4l2 $novomodules"
4846 noaomodules="v4l2 $noaomodules"
4848 echores "$_v4l2"
4852 #########
4853 # AUDIO #
4854 #########
4857 echocheck "OSS Audio"
4858 if test "$_ossaudio" = auto ; then
4859 _ossaudio=no
4860 return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
4862 if test "$_ossaudio" = yes ; then
4863 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
4864 aomodules="oss $aomodules"
4865 cat > $TMPC << EOF
4866 #include <$_soundcard_header>
4867 #ifdef OPEN_SOUND_SYSTEM
4868 int main(void) { return 0; }
4869 #else
4870 #error Not the real thing
4871 #endif
4873 _real_ossaudio=no
4874 cc_check && _real_ossaudio=yes
4875 if test "$_real_ossaudio" = yes; then
4876 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4877 # Check for OSS4 headers (override default headers)
4878 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
4879 if test -f /etc/oss.conf; then
4880 . /etc/oss.conf
4881 _ossinc="$OSSLIBDIR/include"
4882 if test -f "$_ossinc/sys/soundcard.h"; then
4883 extra_cflags="-I$_ossinc $extra_cflags"
4886 elif netbsd || openbsd ; then
4887 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
4888 extra_ldflags="$extra_ldflags -lossaudio"
4889 else
4890 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
4892 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
4893 else
4894 def_ossaudio='#undef CONFIG_OSS_AUDIO'
4895 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
4896 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
4897 noaomodules="oss $noaomodules"
4899 echores "$_ossaudio"
4902 echocheck "aRts"
4903 if test "$_arts" = auto ; then
4904 _arts=no
4905 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
4906 statement_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
4907 _arts=yes
4911 if test "$_arts" = yes ; then
4912 def_arts='#define CONFIG_ARTS 1'
4913 aomodules="arts $aomodules"
4914 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
4915 extra_cflags="$extra_cflags $(artsc-config --cflags)"
4916 else
4917 noaomodules="arts $noaomodules"
4919 echores "$_arts"
4922 echocheck "EsounD"
4923 if test "$_esd" = auto ; then
4924 _esd=no
4925 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
4926 statement_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
4929 echores "$_esd"
4931 if test "$_esd" = yes ; then
4932 def_esd='#define CONFIG_ESD 1'
4933 aomodules="esd $aomodules"
4934 libs_mplayer="$libs_mplayer $(esd-config --libs)"
4935 extra_cflags="$extra_cflags $(esd-config --cflags)"
4937 echocheck "esd_get_latency()"
4938 statement_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
4939 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
4940 echores "$_esd_latency"
4941 else
4942 def_esd='#undef CONFIG_ESD'
4943 def_esd_latency='#undef CONFIG_ESD_LATENCY'
4944 noaomodules="esd $noaomodules"
4948 echocheck "NAS"
4949 if test "$_nas" = auto ; then
4950 _nas=no
4951 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
4953 if test "$_nas" = yes ; then
4954 def_nas='#define CONFIG_NAS 1'
4955 libs_mplayer="$libs_mplayer -laudio -lXt"
4956 aomodules="nas $aomodules"
4957 else
4958 noaomodules="nas $noaomodules"
4959 def_nas='#undef CONFIG_NAS'
4961 echores "$_nas"
4964 echocheck "pulse"
4965 if test "$_pulse" = auto ; then
4966 _pulse=no
4967 if $_pkg_config --exists 'libpulse >= 0.9' ; then
4968 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
4969 _pulse=yes
4972 echores "$_pulse"
4974 if test "$_pulse" = yes ; then
4975 def_pulse='#define CONFIG_PULSE 1'
4976 aomodules="pulse $aomodules"
4977 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
4978 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
4979 else
4980 def_pulse='#undef CONFIG_PULSE'
4981 noaomodules="pulse $noaomodules"
4985 echocheck "JACK"
4986 if test "$_jack" = auto ; then
4987 _jack=yes
4988 if statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
4989 libs_mplayer="$libs_mplayer -ljack"
4990 elif statement_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
4991 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
4992 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
4993 else
4994 _jack=no
4998 if test "$_jack" = yes ; then
4999 def_jack='#define CONFIG_JACK 1'
5000 aomodules="jack $aomodules"
5001 else
5002 noaomodules="jack $noaomodules"
5004 echores "$_jack"
5006 echocheck "OpenAL"
5007 if test "$_openal" = auto ; then
5008 _openal=no
5009 cat > $TMPC << EOF
5010 #ifdef OPENAL_AL_H
5011 #include <OpenAL/al.h>
5012 #else
5013 #include <AL/al.h>
5014 #endif
5015 int main(void) {
5016 alSourceQueueBuffers(0, 0, 0);
5017 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5018 return 0;
5021 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5022 cc_check $I && _openal=yes && break
5023 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5024 done
5025 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5027 if test "$_openal" = yes ; then
5028 def_openal='#define CONFIG_OPENAL 1'
5029 aomodules="openal $aomodules"
5030 else
5031 noaomodules="openal $noaomodules"
5033 echores "$_openal"
5035 echocheck "ALSA audio"
5036 if test "$_alloca" != yes ; then
5037 _alsa=no
5038 res_comment="alloca missing"
5040 if test "$_alsa" != no ; then
5041 _alsa=no
5042 cat > $TMPC << EOF
5043 #include <sys/asoundlib.h>
5044 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5045 #error "alsa version != 0.5.x"
5046 #endif
5047 int main(void) { return 0; }
5049 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5051 cat > $TMPC << EOF
5052 #include <sys/asoundlib.h>
5053 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5054 #error "alsa version != 0.9.x"
5055 #endif
5056 int main(void) { return 0; }
5058 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5059 cat > $TMPC << EOF
5060 #include <alsa/asoundlib.h>
5061 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5062 #error "alsa version != 0.9.x"
5063 #endif
5064 int main(void) { return 0; }
5066 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5068 cat > $TMPC << EOF
5069 #include <sys/asoundlib.h>
5070 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5071 #error "alsa version != 1.0.x"
5072 #endif
5073 int main(void) { return 0; }
5075 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5076 cat > $TMPC << EOF
5077 #include <alsa/asoundlib.h>
5078 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5079 #error "alsa version != 1.0.x"
5080 #endif
5081 int main(void) { return 0; }
5083 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5085 def_alsa='#undef CONFIG_ALSA'
5086 def_alsa5='#undef CONFIG_ALSA5'
5087 def_alsa9='#undef CONFIG_ALSA9'
5088 def_alsa1x='#undef CONFIG_ALSA1X'
5089 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5090 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5091 if test "$_alsaver" ; then
5092 _alsa=yes
5093 if test "$_alsaver" = '0.5.x' ; then
5094 _alsa5=yes
5095 aomodules="alsa5 $aomodules"
5096 def_alsa5='#define CONFIG_ALSA5 1'
5097 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5098 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5099 elif test "$_alsaver" = '0.9.x-sys' ; then
5100 _alsa9=yes
5101 aomodules="alsa $aomodules"
5102 def_alsa='#define CONFIG_ALSA 1'
5103 def_alsa9='#define CONFIG_ALSA9 1'
5104 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5105 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5106 elif test "$_alsaver" = '0.9.x-alsa' ; then
5107 _alsa9=yes
5108 aomodules="alsa $aomodules"
5109 def_alsa='#define CONFIG_ALSA 1'
5110 def_alsa9='#define CONFIG_ALSA9 1'
5111 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5112 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5113 elif test "$_alsaver" = '1.0.x-sys' ; then
5114 _alsa1x=yes
5115 aomodules="alsa $aomodules"
5116 def_alsa='#define CONFIG_ALSA 1'
5117 def_alsa1x="#define CONFIG_ALSA1X 1"
5118 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5119 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5120 elif test "$_alsaver" = '1.0.x-alsa' ; then
5121 _alsa1x=yes
5122 aomodules="alsa $aomodules"
5123 def_alsa='#define CONFIG_ALSA 1'
5124 def_alsa1x="#define CONFIG_ALSA1X 1"
5125 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5126 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5127 else
5128 _alsa=no
5129 res_comment="unknown version"
5131 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5132 else
5133 noaomodules="alsa $noaomodules"
5135 echores "$_alsa"
5138 echocheck "Sun audio"
5139 if test "$_sunaudio" = auto ; then
5140 cat > $TMPC << EOF
5141 #include <sys/types.h>
5142 #include <sys/audioio.h>
5143 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5145 _sunaudio=no
5146 cc_check && _sunaudio=yes
5148 if test "$_sunaudio" = yes ; then
5149 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5150 aomodules="sun $aomodules"
5151 else
5152 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5153 noaomodules="sun $noaomodules"
5155 echores "$_sunaudio"
5158 if darwin; then
5159 echocheck "CoreAudio"
5160 if test "$_coreaudio" = auto ; then
5161 cat > $TMPC <<EOF
5162 #include <CoreAudio/CoreAudio.h>
5163 #include <AudioToolbox/AudioToolbox.h>
5164 #include <AudioUnit/AudioUnit.h>
5165 int main(void) { return 0; }
5167 _coreaudio=no
5168 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5170 if test "$_coreaudio" = yes ; then
5171 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5172 def_coreaudio='#define CONFIG_COREAUDIO 1'
5173 aomodules="coreaudio $aomodules"
5174 else
5175 def_coreaudio='#undef CONFIG_COREAUDIO'
5176 noaomodules="coreaudio $noaomodules"
5178 echores $_coreaudio
5179 fi #if darwin
5182 if irix; then
5183 echocheck "SGI audio"
5184 if test "$_sgiaudio" = auto ; then
5185 _sgiaudio=no
5186 header_check dmedia/audio.h && _sgiaudio=yes
5188 if test "$_sgiaudio" = "yes" ; then
5189 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5190 libs_mplayer="$libs_mplayer -laudio"
5191 aomodules="sgi $aomodules"
5192 else
5193 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5194 noaomodules="sgi $noaomodules"
5196 echores "$_sgiaudio"
5197 fi #if irix
5200 if os2 ; then
5201 echocheck "KAI (UNIAUD/DART)"
5202 if test "$_kai" = auto; then
5203 _kai=no;
5204 header_check_broken os2.h kai.h -lkai && _kai=yes
5206 if test "$_kai" = yes ; then
5207 def_kai='#define CONFIG_KAI 1'
5208 libs_mplayer="$libs_mplayer -lkai"
5209 aomodules="kai $aomodules"
5210 else
5211 def_kai='#undef CONFIG_KAI'
5212 noaomodules="kai $noaomodules"
5214 echores "$_kai"
5216 echocheck "DART"
5217 if test "$_dart" = auto; then
5218 _dart=no;
5219 header_check_broken os2.h dart.h -ldart && _dart=yes
5221 if test "$_dart" = yes ; then
5222 def_dart='#define CONFIG_DART 1'
5223 libs_mplayer="$libs_mplayer -ldart"
5224 aomodules="dart $aomodules"
5225 else
5226 def_dart='#undef CONFIG_DART'
5227 noaomodules="dart $noaomodules"
5229 echores "$_dart"
5230 fi #if os2
5233 # set default CD/DVD devices
5234 if win32 || os2 ; then
5235 default_cdrom_device="D:"
5236 elif darwin ; then
5237 default_cdrom_device="/dev/disk1"
5238 elif dragonfly ; then
5239 default_cdrom_device="/dev/cd0"
5240 elif freebsd ; then
5241 default_cdrom_device="/dev/acd0"
5242 elif openbsd ; then
5243 default_cdrom_device="/dev/rcd0c"
5244 elif sunos ; then
5245 default_cdrom_device="/vol/dev/aliases/cdrom0"
5246 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5247 # file system and the volfs service.
5248 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5249 elif amigaos ; then
5250 default_cdrom_device="a1ide.device:2"
5251 else
5252 default_cdrom_device="/dev/cdrom"
5255 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5256 default_dvd_device=$default_cdrom_device
5257 elif darwin ; then
5258 default_dvd_device="/dev/rdiskN"
5259 else
5260 default_dvd_device="/dev/dvd"
5264 echocheck "VCD support"
5265 if test "$_vcd" = auto; then
5266 _vcd=no
5267 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5268 _vcd=yes
5269 elif mingw32; then
5270 header_check ddk/ntddcdrm.h && _vcd=yes
5273 if test "$_vcd" = yes; then
5274 inputmodules="vcd $inputmodules"
5275 def_vcd='#define CONFIG_VCD 1'
5276 else
5277 def_vcd='#undef CONFIG_VCD'
5278 noinputmodules="vcd $noinputmodules"
5279 res_comment="not supported on this OS"
5281 echores "$_vcd"
5285 echocheck "Blu-ray support"
5286 if test "$_bluray" = auto ; then
5287 _bluray=no
5288 statement_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5290 if test "$_bluray" = yes ; then
5291 def_bluray='#define CONFIG_LIBBLURAY 1'
5292 extra_ldflags="$extra_ldflags -lbluray"
5293 inputmodules="bluray $inputmodules"
5294 else
5295 def_bluray='#undef CONFIG_LIBBLURAY'
5296 noinputmodules="bluray $noinputmodules"
5298 echores "$_bluray"
5300 echocheck "dvdread"
5301 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5302 _dvdread_internal=no
5304 if test "$_dvdread_internal" = auto ; then
5305 _dvdread_internal=no
5306 _dvdread=no
5307 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) &&
5308 (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes ||
5309 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) ||
5310 darwin || win32 || os2; then
5311 _dvdread_internal=yes
5312 _dvdread=yes
5313 extra_cflags="-Ilibdvdread4 $extra_cflags"
5315 elif test "$_dvdread" = auto ; then
5316 _dvdread=no
5317 if test "$_dl" = yes; then
5318 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5319 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5320 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5321 _dvdread=yes
5322 extra_cflags="$extra_cflags $_dvdreadcflags"
5323 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5324 res_comment="external"
5329 if test "$_dvdread_internal" = yes; then
5330 def_dvdread='#define CONFIG_DVDREAD 1'
5331 inputmodules="dvdread(internal) $inputmodules"
5332 _largefiles=yes
5333 res_comment="internal"
5334 elif test "$_dvdread" = yes; then
5335 def_dvdread='#define CONFIG_DVDREAD 1'
5336 _largefiles=yes
5337 extra_ldflags="$extra_ldflags -ldvdread"
5338 inputmodules="dvdread(external) $inputmodules"
5339 res_comment="external"
5340 else
5341 def_dvdread='#undef CONFIG_DVDREAD'
5342 noinputmodules="dvdread $noinputmodules"
5344 echores "$_dvdread"
5347 echocheck "internal libdvdcss"
5348 if test "$_libdvdcss_internal" = auto ; then
5349 _libdvdcss_internal=no
5350 test "$_dvdread_internal" = yes && test -d libdvdcss && _libdvdcss_internal=yes
5351 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5353 if test "$_libdvdcss_internal" = yes ; then
5354 if linux || netbsd || openbsd || bsdos ; then
5355 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5356 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5357 elif freebsd || dragonfly ; then
5358 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5359 elif darwin ; then
5360 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5361 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5362 elif cygwin ; then
5363 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5364 elif beos ; then
5365 cflags_libdvdcss="-DSYS_BEOS"
5366 elif os2 ; then
5367 cflags_libdvdcss="-DSYS_OS2"
5369 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5370 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5371 inputmodules="libdvdcss(internal) $inputmodules"
5372 _largefiles=yes
5373 else
5374 noinputmodules="libdvdcss(internal) $noinputmodules"
5376 echores "$_libdvdcss_internal"
5379 echocheck "cdparanoia"
5380 if test "$_cdparanoia" = auto ; then
5381 cat > $TMPC <<EOF
5382 #include <cdda_interface.h>
5383 #include <cdda_paranoia.h>
5384 // This need a better test. How ?
5385 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5387 _cdparanoia=no
5388 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5389 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm &&
5390 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5391 done
5393 if test "$_cdparanoia" = yes ; then
5394 _cdda='yes'
5395 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5396 openbsd && extra_ldflags="$extra_ldflags -lutil"
5398 echores "$_cdparanoia"
5401 echocheck "libcdio"
5402 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5403 cat > $TMPC << EOF
5404 #include <stdio.h>
5405 #include <cdio/version.h>
5406 #include <cdio/cdda.h>
5407 #include <cdio/paranoia.h>
5408 int main(void) {
5409 void *test = cdda_verbose_set;
5410 printf("%s\n", CDIO_VERSION);
5411 return test == (void *)1;
5414 _libcdio=no
5415 for _ld_tmp in "" "-lwinmm" ; do
5416 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5417 cc_check $_ld_tmp $_ld_lm && _libcdio=yes &&
5418 extra_ldflags="$extra_ldflags $_ld_tmp" && break
5419 done
5420 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5421 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5422 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5423 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes &&
5424 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5427 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5428 _cdda='yes'
5429 def_libcdio='#define CONFIG_LIBCDIO 1'
5430 def_havelibcdio='yes'
5431 else
5432 if test "$_cdparanoia" = yes ; then
5433 res_comment="using cdparanoia"
5435 def_libcdio='#undef CONFIG_LIBCDIO'
5436 def_havelibcdio='no'
5438 echores "$_libcdio"
5440 if test "$_cdda" = yes ; then
5441 test $_cddb = auto && test $networking = yes && _cddb=yes
5442 def_cdparanoia='#define CONFIG_CDDA 1'
5443 inputmodules="cdda $inputmodules"
5444 else
5445 def_cdparanoia='#undef CONFIG_CDDA'
5446 noinputmodules="cdda $noinputmodules"
5449 if test "$_cddb" = yes ; then
5450 def_cddb='#define CONFIG_CDDB 1'
5451 inputmodules="cddb $inputmodules"
5452 else
5453 _cddb=no
5454 def_cddb='#undef CONFIG_CDDB'
5455 noinputmodules="cddb $noinputmodules"
5458 echocheck "bitmap font support"
5459 if test "$_bitmap_font" = yes ; then
5460 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5461 else
5462 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5464 echores "$_bitmap_font"
5467 echocheck "freetype >= 2.0.9"
5469 # freetype depends on iconv
5470 if test "$_iconv" = no ; then
5471 _freetype=no
5472 res_comment="iconv support needed"
5475 if test "$_freetype" = auto ; then
5476 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5477 cat > $TMPC << EOF
5478 #include <stdio.h>
5479 #include <ft2build.h>
5480 #include FT_FREETYPE_H
5481 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5482 #error "Need FreeType 2.0.9 or newer"
5483 #endif
5484 int main(void) {
5485 FT_Library library;
5486 FT_Init_FreeType(&library);
5487 return 0;
5490 _freetype=no
5491 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5492 else
5493 _freetype=no
5496 if test "$_freetype" = yes ; then
5497 def_freetype='#define CONFIG_FREETYPE 1'
5498 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5499 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5500 else
5501 def_freetype='#undef CONFIG_FREETYPE'
5503 echores "$_freetype"
5505 if test "$_freetype" = no ; then
5506 _fontconfig=no
5507 res_comment="FreeType support needed"
5509 echocheck "fontconfig"
5510 if test "$_fontconfig" = auto ; then
5511 cat > $TMPC << EOF
5512 #include <stdio.h>
5513 #include <stdlib.h>
5514 #include <fontconfig/fontconfig.h>
5515 #if FC_VERSION < 20402
5516 #error At least version 2.4.2 of fontconfig required
5517 #endif
5518 int main(void) {
5519 int err = FcInit();
5520 if (err == FcFalse) {
5521 printf("Couldn't initialize fontconfig lib\n");
5522 exit(err);
5524 return 0;
5527 _fontconfig=no
5528 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5529 _ld_tmp="-lfontconfig $_ld_tmp"
5530 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5531 done
5532 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5533 _inc_tmp=$($_pkg_config --cflags fontconfig)
5534 _ld_tmp=$($_pkg_config --libs fontconfig)
5535 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes &&
5536 extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5539 if test "$_fontconfig" = yes ; then
5540 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5541 else
5542 def_fontconfig='#undef CONFIG_FONTCONFIG'
5544 echores "$_fontconfig"
5547 echocheck "SSA/ASS support"
5548 if test "$_ass" = auto -o "$_ass" = yes ; then
5549 if $_pkg_config libass; then
5550 _ass=yes
5551 def_ass='#define CONFIG_ASS 1'
5552 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5553 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5554 else
5555 _ass=no
5556 def_ass='#undef CONFIG_ASS'
5558 else
5559 def_ass='#undef CONFIG_ASS'
5561 echores "$_ass"
5564 echocheck "fribidi with charsets"
5565 _inc_tmp=""
5566 _ld_tmp=""
5567 if test "$_fribidi" = auto ; then
5568 cat > $TMPC << EOF
5569 #include <stdlib.h>
5570 /* workaround for fribidi 0.10.4 and below */
5571 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5572 #include <fribidi/fribidi.h>
5573 int main(void) {
5574 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5575 exit(1);
5576 return 0;
5579 _fribidi=no
5580 _inc_tmp=""
5581 _ld_tmp="-lfribidi"
5582 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5583 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5584 test "$_fribidi" = no ; then
5585 _inc_tmp="$($_pkg_config --cflags)"
5586 _ld_tmp="$($_pkg_config --libs)"
5587 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5590 if test "$_fribidi" = yes ; then
5591 def_fribidi='#define CONFIG_FRIBIDI 1'
5592 extra_cflags="$extra_cflags $_inc_tmp"
5593 extra_ldflags="$extra_ldflags $_ld_tmp"
5594 else
5595 def_fribidi='#undef CONFIG_FRIBIDI'
5597 echores "$_fribidi"
5600 echocheck "ENCA"
5601 if test "$_enca" = auto ; then
5602 _enca=no
5603 statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
5605 if test "$_enca" = yes ; then
5606 def_enca='#define CONFIG_ENCA 1'
5607 extra_ldflags="$extra_ldflags -lenca"
5608 else
5609 def_enca='#undef CONFIG_ENCA'
5611 echores "$_enca"
5614 echocheck "zlib"
5615 _zlib=no
5616 statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5617 if test "$_zlib" = yes ; then
5618 def_zlib='#define CONFIG_ZLIB 1'
5619 extra_ldflags="$extra_ldflags -lz"
5620 else
5621 def_zlib='#define CONFIG_ZLIB 0'
5623 echores "$_zlib"
5626 echocheck "bzlib"
5627 bzlib=no
5628 def_bzlib='#define CONFIG_BZLIB 0'
5629 statement_check bzlib.h 'BZ2_bzlibVersion()' -lbz2 && bzlib=yes
5630 if test "$bzlib" = yes ; then
5631 def_bzlib='#define CONFIG_BZLIB 1'
5632 extra_ldflags="$extra_ldflags -lbz2"
5634 echores "$bzlib"
5637 echocheck "RTC"
5638 if test "$_rtc" = auto ; then
5639 cat > $TMPC << EOF
5640 #include <sys/ioctl.h>
5641 #ifdef __linux__
5642 #include <linux/rtc.h>
5643 #else
5644 #include <rtc.h>
5645 #define RTC_PIE_ON RTCIO_PIE_ON
5646 #endif
5647 int main(void) { return RTC_PIE_ON; }
5649 _rtc=no
5650 cc_check && _rtc=yes
5651 ppc && _rtc=no
5653 if test "$_rtc" = yes ; then
5654 def_rtc='#define HAVE_RTC 1'
5655 else
5656 def_rtc='#undef HAVE_RTC'
5658 echores "$_rtc"
5661 echocheck "liblzo2 support"
5662 if test "$_liblzo" = auto ; then
5663 _liblzo=no
5664 statement_check lzo/lzo1x.h 'lzo_init()' -llzo2 && _liblzo=yes
5666 if test "$_liblzo" = yes ; then
5667 def_liblzo='#define CONFIG_LIBLZO 1'
5668 extra_ldflags="$extra_ldflags -llzo2"
5669 codecmodules="liblzo $codecmodules"
5670 else
5671 def_liblzo='#undef CONFIG_LIBLZO'
5672 nocodecmodules="liblzo $nocodecmodules"
5674 echores "$_liblzo"
5677 echocheck "mad support"
5678 if test "$_mad" = auto ; then
5679 _mad=no
5680 header_check mad.h -lmad && _mad=yes
5682 if test "$_mad" = yes ; then
5683 def_mad='#define CONFIG_LIBMAD 1'
5684 extra_ldflags="$extra_ldflags -lmad"
5685 codecmodules="libmad $codecmodules"
5686 else
5687 def_mad='#undef CONFIG_LIBMAD'
5688 nocodecmodules="libmad $nocodecmodules"
5690 echores "$_mad"
5692 echocheck "OggVorbis support"
5693 if test "$_tremor_internal" = yes; then
5694 _libvorbis=no
5695 elif test "$_tremor" = auto; then
5696 _tremor=no
5697 statement_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
5699 if test "$_libvorbis" = auto; then
5700 _libvorbis=no
5701 statement_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes
5703 if test "$_tremor_internal" = yes ; then
5704 _vorbis=yes
5705 def_vorbis='#define CONFIG_OGGVORBIS 1'
5706 def_tremor='#define CONFIG_TREMOR 1'
5707 codecmodules="tremor(internal) $codecmodules"
5708 res_comment="internal Tremor"
5709 if test "$_tremor_low" = yes ; then
5710 cflags_tremor_low="-D_LOW_ACCURACY_"
5711 res_comment="internal low accuracy Tremor"
5713 elif test "$_tremor" = yes ; then
5714 _vorbis=yes
5715 def_vorbis='#define CONFIG_OGGVORBIS 1'
5716 def_tremor='#define CONFIG_TREMOR 1'
5717 codecmodules="tremor(external) $codecmodules"
5718 res_comment="external Tremor"
5719 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
5720 elif test "$_libvorbis" = yes ; then
5721 _vorbis=yes
5722 def_vorbis='#define CONFIG_OGGVORBIS 1'
5723 codecmodules="libvorbis $codecmodules"
5724 res_comment="libvorbis"
5725 extra_ldflags="$extra_ldflags -lvorbis -logg"
5726 else
5727 _vorbis=no
5728 nocodecmodules="libvorbis $nocodecmodules"
5730 echores "$_vorbis"
5732 echocheck "libspeex (version >= 1.1 required)"
5733 if test "$_speex" = auto ; then
5734 _speex=no
5735 cat > $TMPC << EOF
5736 #include <stddef.h>
5737 #include <speex/speex.h>
5738 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
5740 cc_check -lspeex $_ld_lm && _speex=yes
5742 if test "$_speex" = yes ; then
5743 def_speex='#define CONFIG_SPEEX 1'
5744 extra_ldflags="$extra_ldflags -lspeex"
5745 codecmodules="speex $codecmodules"
5746 else
5747 def_speex='#undef CONFIG_SPEEX'
5748 nocodecmodules="speex $nocodecmodules"
5750 echores "$_speex"
5752 echocheck "OggTheora support"
5753 if test "$_theora" = auto ; then
5754 _theora=no
5755 cat > $TMPC << EOF
5756 #include <theora/theora.h>
5757 #include <string.h>
5758 int main(void) {
5759 /* Theora is in flux, make sure that all interface routines and datatypes
5760 * exist and work the way we expect it, so we don't break MPlayer. */
5761 ogg_packet op;
5762 theora_comment tc;
5763 theora_info inf;
5764 theora_state st;
5765 yuv_buffer yuv;
5766 int r;
5767 double t;
5769 theora_info_init(&inf);
5770 theora_comment_init(&tc);
5772 return 0;
5774 /* we don't want to execute this kind of nonsense; just for making sure
5775 * that compilation works... */
5776 memset(&op, 0, sizeof(op));
5777 r = theora_decode_header(&inf, &tc, &op);
5778 r = theora_decode_init(&st, &inf);
5779 t = theora_granule_time(&st, op.granulepos);
5780 r = theora_decode_packetin(&st, &op);
5781 r = theora_decode_YUVout(&st, &yuv);
5782 theora_clear(&st);
5784 return 0;
5787 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5788 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5789 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
5790 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5791 if test _theora = no; then
5792 _ld_theora="-ltheora -logg"
5793 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5795 if test "$_theora" = no && test "$_tremor_internal" = yes; then
5796 _ld_theora=$($_pkg_config --silence-errors --libs theora)
5797 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
5798 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
5799 extra_ldflags="$extra_ldflags $_ld_theora" &&
5800 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
5801 if test _theora = no; then
5802 _ld_theora="-ltheora -logg"
5803 cc_check tremor/bitwise.c $_ld_theora &&
5804 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
5808 if test "$_theora" = yes ; then
5809 def_theora='#define CONFIG_OGGTHEORA 1'
5810 codecmodules="libtheora $codecmodules"
5811 # when --enable-theora is forced, we'd better provide a probably sane
5812 # $_ld_theora than nothing
5813 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
5814 else
5815 def_theora='#undef CONFIG_OGGTHEORA'
5816 nocodecmodules="libtheora $nocodecmodules"
5818 echores "$_theora"
5820 echocheck "mp3lib support"
5821 if test "$_mp3lib" = auto ; then
5822 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
5824 if test "$_mp3lib" = yes ; then
5825 def_mp3lib='#define CONFIG_MP3LIB 1'
5826 codecmodules="mp3lib(internal) $codecmodules"
5827 else
5828 def_mp3lib='#undef CONFIG_MP3LIB'
5829 nocodecmodules="mp3lib(internal) $nocodecmodules"
5831 echores "$_mp3lib"
5833 # Any version of libmpg123 shall be fine.
5834 echocheck "mpg123 support"
5835 def_mpg123='#undef CONFIG_MPG123'
5836 if test "$_mpg123" = auto; then
5837 _mpg123=no
5838 statement_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
5840 if test "$_mpg123" = yes ; then
5841 def_mpg123='#define CONFIG_MPG123 1'
5842 codecmodules="mpg123 $codecmodules"
5843 else
5844 nocodecmodules="mpg123 $nocodecmodules"
5846 echores "$_mpg123"
5848 echocheck "liba52 support"
5849 def_liba52='#undef CONFIG_LIBA52'
5850 if test "$_liba52" = auto ; then
5851 _liba52=no
5852 cat > $TMPC << EOF
5853 #include <inttypes.h>
5854 #include <a52dec/a52.h>
5855 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
5857 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
5859 if test "$_liba52" = yes ; then
5860 def_liba52='#define CONFIG_LIBA52 1'
5861 codecmodules="liba52 $codecmodules"
5862 else
5863 nocodecmodules="liba52 $nocodecmodules"
5865 echores "$_liba52"
5867 echocheck "internal libmpeg2 support"
5868 if test "$_libmpeg2" = auto ; then
5869 _libmpeg2=yes
5870 if alpha && test cc_vendor=gnu; then
5871 case $cc_version in
5872 2*|3.0*|3.1*) # cannot compile MVI instructions
5873 _libmpeg2=no
5874 res_comment="broken gcc"
5876 esac
5879 if test "$_libmpeg2" = yes ; then
5880 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
5881 codecmodules="libmpeg2(internal) $codecmodules"
5882 else
5883 def_libmpeg2='#undef CONFIG_LIBMPEG2'
5884 nocodecmodules="libmpeg2(internal) $nocodecmodules"
5886 echores "$_libmpeg2"
5888 echocheck "libdca support"
5889 if test "$_libdca" = auto ; then
5890 _libdca=no
5891 for _ld_dca in -ldca -ldts ; do
5892 statement_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
5893 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
5894 done
5896 if test "$_libdca" = yes ; then
5897 def_libdca='#define CONFIG_LIBDCA 1'
5898 codecmodules="libdca $codecmodules"
5899 else
5900 def_libdca='#undef CONFIG_LIBDCA'
5901 nocodecmodules="libdca $nocodecmodules"
5903 echores "$_libdca"
5905 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
5906 if test "$_musepack" = auto ; then
5907 _musepack=no
5908 cat > $TMPC << EOF
5909 #include <stddef.h>
5910 #include <mpcdec/mpcdec.h>
5911 int main(void) {
5912 mpc_streaminfo info;
5913 mpc_decoder decoder;
5914 mpc_decoder_set_streaminfo(&decoder, &info);
5915 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
5916 return 0;
5919 cc_check -lmpcdec $_ld_lm && _musepack=yes
5921 if test "$_musepack" = yes ; then
5922 def_musepack='#define CONFIG_MUSEPACK 1'
5923 extra_ldflags="$extra_ldflags -lmpcdec"
5924 codecmodules="musepack $codecmodules"
5925 else
5926 def_musepack='#undef CONFIG_MUSEPACK'
5927 nocodecmodules="musepack $nocodecmodules"
5929 echores "$_musepack"
5932 echocheck "FAAD2 support"
5933 if test "$_faad" = auto ; then
5934 _faad=no
5935 cat > $TMPC << EOF
5936 #include <faad.h>
5937 #ifndef FAAD_MIN_STREAMSIZE
5938 #error Too old version
5939 #endif
5940 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
5941 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
5943 cc_check -lfaad $_ld_lm && _faad=yes
5946 def_faad='#undef CONFIG_FAAD'
5947 if test "$_faad" = yes ; then
5948 def_faad='#define CONFIG_FAAD 1'
5949 extra_ldflags="$extra_ldflags -lfaad"
5950 codecmodules="faad2 $codecmodules"
5951 else
5952 nocodecmodules="faad2 $nocodecmodules"
5954 echores "$_faad"
5957 echocheck "LADSPA plugin support"
5958 if test "$_ladspa" = auto ; then
5959 _ladspa=no
5960 statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
5962 if test "$_ladspa" = yes; then
5963 def_ladspa="#define CONFIG_LADSPA 1"
5964 else
5965 def_ladspa="#undef CONFIG_LADSPA"
5967 echores "$_ladspa"
5970 echocheck "libbs2b audio filter support"
5971 if test "$_libbs2b" = auto ; then
5972 cat > $TMPC <<EOF
5973 #include <bs2b.h>
5974 #if BS2B_VERSION_MAJOR < 3
5975 #error Please use libbs2b >= 3.0.0, older versions are not supported.
5976 #endif
5977 int main(void) {
5978 t_bs2bdp filter;
5979 filter=bs2b_open();
5980 bs2b_close(filter);
5981 return 0;
5984 _libbs2b=no
5985 if $_pkg_config --exists libbs2b ; then
5986 _inc_tmp=$($_pkg_config --cflags libbs2b)
5987 _ld_tmp=$($_pkg_config --libs libbs2b)
5988 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
5989 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
5990 else
5991 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
5992 -I/usr/local/include/bs2b ; do
5993 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
5994 extra_ldflags="$extra_ldflags -lbs2b"
5995 extra_cflags="$extra_cflags $_inc_tmp"
5996 _libbs2b=yes
5997 break
5999 done
6002 def_libbs2b="#undef CONFIG_LIBBS2B"
6003 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6004 echores "$_libbs2b"
6007 if test -z "$_codecsdir" ; then
6008 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6009 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6010 if test -d "$dir" ; then
6011 _codecsdir="$dir"
6012 break;
6014 done
6016 # Fall back on default directory.
6017 if test -z "$_codecsdir" ; then
6018 _codecsdir="$_libdir/codecs"
6019 mingw32 || os2 && _codecsdir="codecs"
6023 echocheck "Win32 codecs"
6024 if test "$_win32dll" = auto ; then
6025 _win32dll=no
6026 if x86_32 && ! qnx; then
6027 _win32dll=yes
6030 if test "$_win32dll" = yes ; then
6031 def_win32dll='#define CONFIG_WIN32DLL 1'
6032 if ! win32 ; then
6033 def_win32_loader='#define WIN32_LOADER 1'
6034 _win32_emulation=yes
6035 else
6036 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6037 res_comment="using native windows"
6039 codecmodules="win32 $codecmodules"
6040 else
6041 def_win32dll='#undef CONFIG_WIN32DLL'
6042 def_win32_loader='#undef WIN32_LOADER'
6043 nocodecmodules="win32 $nocodecmodules"
6045 echores "$_win32dll"
6048 echocheck "XAnim codecs"
6049 if test "$_xanim" = auto ; then
6050 _xanim=no
6051 res_comment="dynamic loader support needed"
6052 if test "$_dl" = yes ; then
6053 _xanim=yes
6056 if test "$_xanim" = yes ; then
6057 def_xanim='#define CONFIG_XANIM 1'
6058 codecmodules="xanim $codecmodules"
6059 else
6060 def_xanim='#undef CONFIG_XANIM'
6061 nocodecmodules="xanim $nocodecmodules"
6063 echores "$_xanim"
6066 echocheck "RealPlayer codecs"
6067 if test "$_real" = auto ; then
6068 _real=no
6069 res_comment="dynamic loader support needed"
6070 if test "$_dl" = yes || test "$_win32dll" = yes &&
6071 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6072 _real=yes
6075 if test "$_real" = yes ; then
6076 def_real='#define CONFIG_REALCODECS 1'
6077 codecmodules="real $codecmodules"
6078 else
6079 def_real='#undef CONFIG_REALCODECS'
6080 nocodecmodules="real $nocodecmodules"
6082 echores "$_real"
6085 echocheck "QuickTime codecs"
6086 _qtx_emulation=no
6087 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6088 if test "$_qtx" = auto ; then
6089 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6091 if test "$_qtx" = yes ; then
6092 def_qtx='#define CONFIG_QTX_CODECS 1'
6093 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6094 codecmodules="qtx $codecmodules"
6095 darwin || win32 || _qtx_emulation=yes
6096 else
6097 def_qtx='#undef CONFIG_QTX_CODECS'
6098 nocodecmodules="qtx $nocodecmodules"
6100 echores "$_qtx"
6102 echocheck "Nemesi Streaming Media libraries"
6103 if test "$_nemesi" = auto && test "$networking" = yes ; then
6104 _nemesi=no
6105 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6106 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6107 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6108 _nemesi=yes
6111 if test "$_nemesi" = yes; then
6112 _native_rtsp=no
6113 def_nemesi='#define CONFIG_LIBNEMESI 1'
6114 inputmodules="nemesi $inputmodules"
6115 else
6116 _native_rtsp="$networking"
6117 _nemesi=no
6118 def_nemesi='#undef CONFIG_LIBNEMESI'
6119 noinputmodules="nemesi $noinputmodules"
6121 echores "$_nemesi"
6123 echocheck "LIVE555 Streaming Media libraries"
6124 if test "$_live" = auto && test "$networking" = yes ; then
6125 cat > $TMPCPP << EOF
6126 #include <liveMedia.hh>
6127 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6128 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6129 #endif
6130 int main(void) { return 0; }
6133 _live=no
6134 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
6135 cxx_check $I/liveMedia/include $I/UsageEnvironment/include $I/groupsock/include &&
6136 _livelibdir=$(echo $I| sed s/-I//) &&
6137 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6138 $_livelibdir/groupsock/libgroupsock.a \
6139 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6140 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6141 $extra_ldflags -lstdc++" \
6142 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6143 -I$_livelibdir/UsageEnvironment/include \
6144 -I$_livelibdir/BasicUsageEnvironment/include \
6145 -I$_livelibdir/groupsock/include" &&
6146 _live=yes && break
6147 done
6148 if test "$_live" != yes ; then
6149 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6150 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6151 _live_dist=yes
6155 if test "$_live" = yes && test "$networking" = yes; then
6156 test $_livelibdir && res_comment="using $_livelibdir"
6157 def_live='#define CONFIG_LIVE555 1'
6158 inputmodules="live555 $inputmodules"
6159 elif test "$_live_dist" = yes && test "$networking" = yes; then
6160 res_comment="using distribution version"
6161 _live="yes"
6162 def_live='#define CONFIG_LIVE555 1'
6163 extra_ldflags="$extra_ldflags $ld_tmp"
6164 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6165 inputmodules="live555 $inputmodules"
6166 else
6167 _live=no
6168 def_live='#undef CONFIG_LIVE555'
6169 noinputmodules="live555 $noinputmodules"
6171 echores "$_live"
6175 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6176 echocheck "FFmpeg ($all_ffmpeg_libs)"
6177 if test "$ffmpeg" = auto ; then
6178 ffmpeg=no
6179 if $_pkg_config --exists $all_ffmpeg_libs ; then
6180 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6181 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6182 extra_ldflags="$extra_ldflags $_ld_tmp"
6183 extra_cflags="$extra_cflags $inc_ffmpeg"
6184 ffmpeg=yes
6185 elif header_check libavcore/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6186 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6187 ffmpeg=yes
6191 ffmpeg_eval_api=no
6192 def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
6193 if test "$ffmpeg" = yes; then
6194 def_ffmpeg='#define CONFIG_FFMPEG 1'
6195 codecmodules="ffmpeg $codecmodules"
6196 if $_pkg_config --atleast-version=50.18.0 libavutil ; then
6197 ffmpeg_eval_api=yes
6198 def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
6200 else
6201 def_ffmpeg='#undef CONFIG_FFMPEG'
6202 nocodecmodules="ffmpeg $nocodecmodules"
6204 echores "$ffmpeg"
6206 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6207 if ! test -z "$_ffmpeg_source" ; then
6208 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6213 echocheck "libdv-0.9.5+"
6214 if test "$_libdv" = auto ; then
6215 _libdv=no
6216 statement_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6218 if test "$_libdv" = yes ; then
6219 def_libdv='#define CONFIG_LIBDV095 1'
6220 extra_ldflags="$extra_ldflags -ldv"
6221 codecmodules="libdv $codecmodules"
6222 else
6223 def_libdv='#undef CONFIG_LIBDV095'
6224 nocodecmodules="libdv $nocodecmodules"
6226 echores "$_libdv"
6229 echocheck "Xvid"
6230 if test "$_xvid" = auto ; then
6231 _xvid=no
6232 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6233 statement_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6234 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6235 done
6238 if test "$_xvid" = yes ; then
6239 def_xvid='#define CONFIG_XVID4 1'
6240 codecmodules="xvid $codecmodules"
6241 else
6242 def_xvid='#undef CONFIG_XVID4'
6243 nocodecmodules="xvid $nocodecmodules"
6245 echores "$_xvid"
6248 echocheck "libnut"
6249 if test "$_libnut" = auto ; then
6250 _libnut=no
6251 statement_check libnut.h 'nut_context_tt * nut; nut_error(0)' -lnut && _libnut=yes
6254 if test "$_libnut" = yes ; then
6255 def_libnut='#define CONFIG_LIBNUT 1'
6256 extra_ldflags="$extra_ldflags -lnut"
6257 else
6258 def_libnut='#undef CONFIG_LIBNUT'
6260 echores "$_libnut"
6262 # These VO checks must be done after the FFmpeg one
6263 echocheck "/dev/mga_vid"
6264 if test "$_mga" = auto ; then
6265 _mga=no
6266 test -c /dev/mga_vid && _mga=yes
6268 if test "$_mga" = yes ; then
6269 def_mga='#define CONFIG_MGA 1'
6270 vomodules="mga $vomodules"
6271 else
6272 def_mga='#undef CONFIG_MGA'
6273 novomodules="mga $novomodules"
6275 echores "$_mga"
6278 echocheck "xmga"
6279 if test "$_xmga" = auto ; then
6280 _xmga=no
6281 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6283 if test "$_xmga" = yes ; then
6284 def_xmga='#define CONFIG_XMGA 1'
6285 vomodules="xmga $vomodules"
6286 else
6287 def_xmga='#undef CONFIG_XMGA'
6288 novomodules="xmga $novomodules"
6290 echores "$_xmga"
6293 echocheck "UnRAR executable"
6294 if test "$_unrar_exec" = auto ; then
6295 _unrar_exec="yes"
6296 mingw32 && _unrar_exec="no"
6298 if test "$_unrar_exec" = yes ; then
6299 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6300 else
6301 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6303 echores "$_unrar_exec"
6305 echocheck "TV interface"
6306 if test "$_tv" = yes ; then
6307 def_tv='#define CONFIG_TV 1'
6308 inputmodules="tv $inputmodules"
6309 else
6310 noinputmodules="tv $noinputmodules"
6311 def_tv='#undef CONFIG_TV'
6313 echores "$_tv"
6316 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6317 echocheck "*BSD BT848 bt8xx header"
6318 _ioctl_bt848_h=no
6319 for file in "machine/ioctl_bt848.h" \
6320 "dev/bktr/ioctl_bt848.h" \
6321 "dev/video/bktr/ioctl_bt848.h" \
6322 "dev/ic/bt8xx.h" ; do
6323 cat > $TMPC <<EOF
6324 #include <sys/types.h>
6325 #include <sys/ioctl.h>
6326 #include <$file>
6327 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6329 if cc_check ; then
6330 _ioctl_bt848_h=yes
6331 _ioctl_bt848_h_name="$file"
6332 break;
6334 done
6335 if test "$_ioctl_bt848_h" = yes ; then
6336 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6337 res_comment="using $_ioctl_bt848_h_name"
6338 else
6339 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6341 echores "$_ioctl_bt848_h"
6343 echocheck "*BSD ioctl_meteor.h"
6344 _ioctl_meteor_h=no
6345 for ioctl_meteor_h_path in "machine/ioctl_meteor.h" "dev/bktr/ioctl_meteor.h" "dev/video/bktr/ioctl_meteor.h" ; do
6346 statement_check_broken "sys/types.h" "$ioctl_meteor_h_path" 'ioctl(0, METEORSINPUT, 0)' &&
6347 _ioctl_meteor_h=yes && break
6348 done
6349 if test "$_ioctl_meteor_h" = yes ; then
6350 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$ioctl_meteor_h_path>"
6351 res_comment="using $ioctl_meteor_h_path"
6352 else
6353 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6355 echores "$_ioctl_meteor_h"
6357 echocheck "*BSD BrookTree 848 TV interface"
6358 if test "$_tv_bsdbt848" = auto ; then
6359 _tv_bsdbt848=no
6360 if test "$_tv" = yes ; then
6361 cat > $TMPC <<EOF
6362 #include <sys/types.h>
6363 $def_ioctl_meteor_h_name
6364 $def_ioctl_bt848_h_name
6365 #ifdef IOCTL_METEOR_H_NAME
6366 #include IOCTL_METEOR_H_NAME
6367 #endif
6368 #ifdef IOCTL_BT848_H_NAME
6369 #include IOCTL_BT848_H_NAME
6370 #endif
6371 int main(void) {
6372 ioctl(0, METEORSINPUT, 0);
6373 ioctl(0, TVTUNER_GETFREQ, 0);
6374 return 0;
6377 cc_check && _tv_bsdbt848=yes
6380 if test "$_tv_bsdbt848" = yes ; then
6381 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6382 inputmodules="tv-bsdbt848 $inputmodules"
6383 else
6384 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6385 noinputmodules="tv-bsdbt848 $noinputmodules"
6387 echores "$_tv_bsdbt848"
6388 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6391 echocheck "DirectShow TV interface"
6392 if test "$_tv_dshow" = auto ; then
6393 _tv_dshow=no
6394 if test "$_tv" = yes && win32 ; then
6395 statement_check ole2.h 'void* p; CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p)' -lole32 -luuid && _tv_dshow=yes
6398 if test "$_tv_dshow" = yes ; then
6399 inputmodules="tv-dshow $inputmodules"
6400 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6401 extra_ldflags="$extra_ldflags -lole32 -luuid"
6402 else
6403 noinputmodules="tv-dshow $noinputmodules"
6404 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6406 echores "$_tv_dshow"
6409 echocheck "Video 4 Linux TV interface"
6410 if test "$_tv_v4l1" = auto ; then
6411 _tv_v4l1=no
6412 if test "$_tv" = yes && linux ; then
6413 header_check_broken sys/time.h linux/videodev.h && _tv_v4l1=yes
6416 if test "$_tv_v4l1" = yes ; then
6417 _audio_input=yes
6418 _tv_v4l=yes
6419 def_tv_v4l='#define CONFIG_TV_V4L 1'
6420 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6421 inputmodules="tv-v4l $inputmodules"
6422 else
6423 noinputmodules="tv-v4l1 $noinputmodules"
6424 def_tv_v4l='#undef CONFIG_TV_V4L'
6426 echores "$_tv_v4l1"
6429 echocheck "Video 4 Linux 2 TV interface"
6430 if test "$_tv_v4l2" = auto ; then
6431 _tv_v4l2=no
6432 if test "$_tv" = yes && linux ; then
6433 header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
6436 if test "$_tv_v4l2" = yes ; then
6437 _audio_input=yes
6438 _tv_v4l=yes
6439 def_tv_v4l='#define CONFIG_TV_V4L 1'
6440 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6441 inputmodules="tv-v4l2 $inputmodules"
6442 else
6443 noinputmodules="tv-v4l2 $noinputmodules"
6444 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6446 echores "$_tv_v4l2"
6449 echocheck "Radio interface"
6450 if test "$_radio" = yes ; then
6451 def_radio='#define CONFIG_RADIO 1'
6452 inputmodules="radio $inputmodules"
6453 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6454 _radio_capture=no
6456 if test "$_radio_capture" = yes ; then
6457 _audio_input=yes
6458 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
6459 else
6460 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6462 else
6463 noinputmodules="radio $noinputmodules"
6464 def_radio='#undef CONFIG_RADIO'
6465 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
6466 _radio_capture=no
6468 echores "$_radio"
6469 echocheck "Capture for Radio interface"
6470 echores "$_radio_capture"
6472 echocheck "Video 4 Linux 2 Radio interface"
6473 if test "$_radio_v4l2" = auto ; then
6474 _radio_v4l2=no
6475 if test "$_radio" = yes && linux ; then
6476 header_check linux/videodev2.h && _radio_v4l2=yes
6479 if test "$_radio_v4l2" = yes ; then
6480 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
6481 else
6482 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
6484 echores "$_radio_v4l2"
6486 echocheck "Video 4 Linux Radio interface"
6487 if test "$_radio_v4l" = auto ; then
6488 _radio_v4l=no
6489 if test "$_radio" = yes && linux ; then
6490 header_check linux/videodev.h && _radio_v4l=yes
6493 if test "$_radio_v4l" = yes ; then
6494 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
6495 else
6496 def_radio_v4l='#undef CONFIG_RADIO_V4L'
6498 echores "$_radio_v4l"
6500 if freebsd || netbsd || openbsd || dragonfly || bsdos &&
6501 test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
6502 echocheck "*BSD BrookTree 848 Radio interface"
6503 _radio_bsdbt848=no
6504 cat > $TMPC <<EOF
6505 #include <sys/types.h>
6506 $def_ioctl_bt848_h_name
6507 #ifdef IOCTL_BT848_H_NAME
6508 #include IOCTL_BT848_H_NAME
6509 #endif
6510 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
6512 cc_check && _radio_bsdbt848=yes
6513 echores "$_radio_bsdbt848"
6514 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
6516 if test "$_radio_bsdbt848" = yes ; then
6517 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
6518 else
6519 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
6522 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no &&
6523 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
6524 die "Radio driver requires BSD BT848, V4L or V4L2!"
6527 echocheck "Video 4 Linux 2 MPEG PVR interface"
6528 if test "$_pvr" = auto ; then
6529 _pvr=no
6530 if test "$_tv_v4l2" = yes && linux ; then
6531 cat > $TMPC <<EOF
6532 #include <sys/time.h>
6533 #include <linux/videodev2.h>
6534 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
6536 cc_check && _pvr=yes
6539 if test "$_pvr" = yes ; then
6540 def_pvr='#define CONFIG_PVR 1'
6541 inputmodules="pvr $inputmodules"
6542 else
6543 noinputmodules="pvr $noinputmodules"
6544 def_pvr='#undef CONFIG_PVR'
6546 echores "$_pvr"
6549 echocheck "ftp"
6550 if test "$_ftp" = "auto" ; then
6551 test "$networking" = "yes" && ! beos && _ftp=yes
6553 if test "$_ftp" = yes ; then
6554 def_ftp='#define CONFIG_FTP 1'
6555 inputmodules="ftp $inputmodules"
6556 else
6557 noinputmodules="ftp $noinputmodules"
6558 def_ftp='#undef CONFIG_FTP'
6560 echores "$_ftp"
6562 echocheck "vstream client"
6563 if test "$_vstream" = auto ; then
6564 _vstream=no
6565 cat > $TMPC <<EOF
6566 #include <vstream-client.h>
6567 void vstream_error(const char *format, ... ) {}
6568 int main(void) { vstream_start(); return 0; }
6570 cc_check -lvstream-client && _vstream=yes
6572 if test "$_vstream" = yes ; then
6573 def_vstream='#define CONFIG_VSTREAM 1'
6574 inputmodules="vstream $inputmodules"
6575 extra_ldflags="$extra_ldflags -lvstream-client"
6576 else
6577 noinputmodules="vstream $noinputmodules"
6578 def_vstream='#undef CONFIG_VSTREAM'
6580 echores "$_vstream"
6583 echocheck "OSD menu"
6584 if test "$_menu" = yes ; then
6585 def_menu='#define CONFIG_MENU 1'
6586 test $_dvbin = "yes" && _menu_dvbin=yes
6587 else
6588 def_menu='#undef CONFIG_MENU'
6589 _menu_dvbin=no
6591 echores "$_menu"
6594 echocheck "Subtitles sorting"
6595 if test "$_sortsub" = yes ; then
6596 def_sortsub='#define CONFIG_SORTSUB 1'
6597 else
6598 def_sortsub='#undef CONFIG_SORTSUB'
6600 echores "$_sortsub"
6603 echocheck "XMMS inputplugin support"
6604 if test "$_xmms" = yes ; then
6605 if ( xmms-config --version ) >/dev/null 2>&1 ; then
6606 _xmmsplugindir=$(xmms-config --input-plugin-dir)
6607 _xmmslibdir=$(xmms-config --exec-prefix)/lib
6608 else
6609 _xmmsplugindir=/usr/lib/xmms/Input
6610 _xmmslibdir=/usr/lib
6613 def_xmms='#define CONFIG_XMMS 1'
6614 if darwin ; then
6615 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
6616 else
6617 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
6619 else
6620 def_xmms='#undef CONFIG_XMMS'
6622 echores "$_xmms"
6624 if test "$_charset" != "noconv" ; then
6625 def_charset="#define MSG_CHARSET \"$_charset\""
6626 else
6627 def_charset="#undef MSG_CHARSET"
6628 _charset="UTF-8"
6631 #############################################################################
6633 echocheck "automatic gdb attach"
6634 if test "$_crash_debug" = yes ; then
6635 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
6636 else
6637 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
6638 _crash_debug=no
6640 echores "$_crash_debug"
6642 echocheck "compiler support for noexecstack"
6643 if cflag_check -Wl,-z,noexecstack ; then
6644 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
6645 echores "yes"
6646 else
6647 echores "no"
6650 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
6651 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
6652 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
6653 echores "yes"
6654 else
6655 echores "no"
6659 # Dynamic linking flags
6660 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
6661 _ld_dl_dynamic=''
6662 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
6663 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
6664 _ld_dl_dynamic='-rdynamic'
6667 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
6668 bsdos && extra_ldflags="$extra_ldflags -ldvd"
6669 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
6671 def_debug='#undef MP_DEBUG'
6672 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
6675 echocheck "joystick"
6676 def_joystick='#undef CONFIG_JOYSTICK'
6677 if test "$_joystick" = yes ; then
6678 if linux || freebsd ; then
6679 # TODO add some check
6680 def_joystick='#define CONFIG_JOYSTICK 1'
6681 else
6682 _joystick="no"
6683 res_comment="unsupported under $system_name"
6686 echores "$_joystick"
6688 echocheck "lirc"
6689 if test "$_lirc" = auto ; then
6690 _lirc=no
6691 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
6693 if test "$_lirc" = yes ; then
6694 def_lirc='#define CONFIG_LIRC 1'
6695 libs_mplayer="$libs_mplayer -llirc_client"
6696 else
6697 def_lirc='#undef CONFIG_LIRC'
6699 echores "$_lirc"
6701 echocheck "lircc"
6702 if test "$_lircc" = auto ; then
6703 _lircc=no
6704 header_check lirc/lircc.h -llircc && _lircc=yes
6706 if test "$_lircc" = yes ; then
6707 def_lircc='#define CONFIG_LIRCC 1'
6708 libs_mplayer="$libs_mplayer -llircc"
6709 else
6710 def_lircc='#undef CONFIG_LIRCC'
6712 echores "$_lircc"
6714 if arm; then
6715 # Detect maemo development platform libraries availability (http://www.maemo.org),
6716 # they are used when run on Nokia 770|8x0
6717 echocheck "maemo (Nokia 770|8x0)"
6718 if test "$_maemo" = auto ; then
6719 _maemo=no
6720 statement_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
6722 if test "$_maemo" = yes ; then
6723 def_maemo='#define CONFIG_MAEMO 1'
6724 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
6725 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
6726 else
6727 def_maemo='#undef CONFIG_MAEMO'
6729 echores "$_maemo"
6732 #############################################################################
6734 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
6735 # the OMF format needs to come after the 'extern symbol prefix' check, which
6736 # uses nm.
6737 if os2 ; then
6738 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
6741 #############################################################################
6742 # 64 bit file offsets?
6743 if test "$_largefiles" = yes || freebsd ; then
6744 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
6745 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
6746 # dvdread support requires this (for off64_t)
6747 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
6751 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
6753 # This must be the last test to be performed. Any other tests following it
6754 # could fail due to linker errors. libdvdnavmini is intentionally not linked
6755 # against libdvdread (to permit MPlayer to use its own copy of the library).
6756 # So any compilation using the flags added here but not linking against
6757 # libdvdread can fail.
6758 echocheck "DVD support (libdvdnav)"
6759 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
6760 _dvdnav=no
6762 dvdnav_internal=no
6763 if test "$_dvdnav" = auto ; then
6764 if test "$_dvdread_internal" = yes ; then
6765 _dvdnav=yes
6766 dvdnav_internal=yes
6767 res_comment="internal"
6768 else
6769 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
6772 if test "$_dvdnav" = auto ; then
6773 _dvdnav=no
6774 _dvdnavdir=$($_dvdnavconfig --cflags)
6775 _dvdnavlibs=$($_dvdnavconfig --libs)
6776 statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
6778 if test "$_dvdnav" = yes ; then
6779 _largefiles=yes
6780 def_dvdnav='#define CONFIG_DVDNAV 1'
6781 if test "$dvdnav_internal" = yes ; then
6782 cflags_libdvdnav="-Ilibdvdnav"
6783 inputmodules="dvdnav(internal) $inputmodules"
6784 else
6785 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
6786 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
6787 inputmodules="dvdnav $inputmodules"
6789 else
6790 def_dvdnav='#undef CONFIG_DVDNAV'
6791 noinputmodules="dvdnav $noinputmodules"
6793 echores "$_dvdnav"
6795 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
6796 # Read dvdnav comment above.
6798 mak_enable () {
6799 list=$(echo $1 | tr '[a-z]' '[A-Z]')
6800 item=$(echo $2 | tr '[a-z]' '[A-Z]')
6801 nprefix=$3;
6802 for part in $list; do
6803 if $(echo $item | grep -q -E "(^| )$part($| )"); then
6804 echo "${nprefix}_$part = yes"
6806 done
6809 #############################################################################
6810 echo "Creating config.mak"
6811 cat > config.mak << EOF
6812 # -------- Generated by configure -----------
6814 # Ensure that locale settings do not interfere with shell commands.
6815 export LC_ALL = C
6817 CONFIGURATION = $configuration
6819 CHARSET = $_charset
6820 DOC_LANGS = $language_doc
6821 DOC_LANG_ALL = $doc_lang_all
6822 MAN_LANGS = $language_man
6823 MAN_LANG_ALL = $man_lang_all
6824 MSG_LANGS = $language_msg
6825 MSG_LANG_ALL = $msg_lang_all
6827 prefix = \$(DESTDIR)$_prefix
6828 BINDIR = \$(DESTDIR)$_bindir
6829 DATADIR = \$(DESTDIR)$_datadir
6830 LIBDIR = \$(DESTDIR)$_libdir
6831 MANDIR = \$(DESTDIR)$_mandir
6832 CONFDIR = \$(DESTDIR)$_confdir
6833 LOCALEDIR = \$(DESTDIR)$_localedir
6835 AR = $_ar
6836 AS = $_cc
6837 CC = $_cc
6838 CXX = $_cc
6839 HOST_CC = $_host_cc
6840 INSTALL = $_install
6841 INSTALLSTRIP = $_install_strip
6842 WINDRES = $_windres
6844 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
6845 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
6846 DEPFLAGS = $DEPFLAGS
6848 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
6849 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
6850 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
6851 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
6852 CFLAGS_STACKREALIGN = $cflags_stackrealign
6853 CFLAGS_TREMOR_LOW = $cflags_tremor_low
6855 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
6856 EXTRALIBS_MPLAYER = $libs_mplayer
6858 GETCH = $_getch
6859 TIMER = $_timer
6861 EXESUF = $_exesuf
6862 EXESUFS_ALL = .exe
6864 ARCH = $arch
6865 $(mak_enable "$arch_all" "$arch" ARCH)
6866 $(mak_enable "$subarch_all" "$subarch" ARCH)
6867 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
6869 MPLAYER = $_mplayer
6871 NEED_GETTIMEOFDAY = $need_gettimeofday
6872 NEED_GLOB = $need_glob
6873 NEED_MMAP = $need_mmap
6874 NEED_SETENV = $need_setenv
6875 NEED_SHMEM = $need_shmem
6876 NEED_STRSEP = $need_strsep
6877 NEED_SWAB = $need_swab
6878 NEED_VSSCANF = $need_vsscanf
6880 # features
6881 3DFX = $_3dfx
6882 AA = $_aa
6883 ALSA1X = $_alsa1x
6884 ALSA9 = $_alsa9
6885 ALSA5 = $_alsa5
6886 APPLE_IR = $_apple_ir
6887 APPLE_REMOTE = $_apple_remote
6888 ARTS = $_arts
6889 AUDIO_INPUT = $_audio_input
6890 BITMAP_FONT = $_bitmap_font
6891 BL = $_bl
6892 CACA = $_caca
6893 CDDA = $_cdda
6894 CDDB = $_cddb
6895 COREAUDIO = $_coreaudio
6896 COREVIDEO = $_corevideo
6897 DART = $_dart
6898 DGA = $_dga
6899 DIRECT3D = $_direct3d
6900 DIRECTFB = $_directfb
6901 DIRECTX = $_directx
6902 DVBIN = $_dvbin
6903 DVDNAV = $_dvdnav
6904 DVDNAV_INTERNAL = $dvdnav_internal
6905 DVDREAD = $_dvdread
6906 DVDREAD_INTERNAL = $_dvdread_internal
6907 DXR3 = $_dxr3
6908 ESD = $_esd
6909 FAAD = $_faad
6910 FASTMEMCPY = $_fastmemcpy
6911 FBDEV = $_fbdev
6912 FREETYPE = $_freetype
6913 FTP = $_ftp
6914 GIF = $_gif
6915 GGI = $_ggi
6916 GL = $_gl
6917 GL_WIN32 = $_gl_win32
6918 GL_X11 = $_gl_x11
6919 GL_SDL = $_gl_sdl
6920 MATRIXVIEW = $matrixview
6921 HAVE_POSIX_SELECT = $_posix_select
6922 HAVE_SYS_MMAN_H = $_mman
6923 IVTV = $_ivtv
6924 JACK = $_jack
6925 JOYSTICK = $_joystick
6926 JPEG = $_jpeg
6927 KAI = $_kai
6928 KVA = $_kva
6929 LADSPA = $_ladspa
6930 LIBA52 = $_liba52
6931 LIBASS = $_ass
6932 LIBBLURAY = $_bluray
6933 LIBBS2B = $_libbs2b
6934 LIBDCA = $_libdca
6935 LIBDV = $_libdv
6936 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
6937 LIBLZO = $_liblzo
6938 LIBMAD = $_mad
6939 LIBMENU = $_menu
6940 LIBMENU_DVBIN = $_menu_dvbin
6941 LIBMPEG2 = $_libmpeg2
6942 LIBNEMESI = $_nemesi
6943 LIBNUT = $_libnut
6944 LIBSMBCLIENT = $_smb
6945 LIBTHEORA = $_theora
6946 LIRC = $_lirc
6947 LIVE555 = $_live
6948 MACOSX_FINDER = $_macosx_finder
6949 MD5SUM = $_md5sum
6950 MGA = $_mga
6951 MNG = $_mng
6952 MP3LIB = $_mp3lib
6953 MPG123 = $_mpg123
6954 MUSEPACK = $_musepack
6955 NAS = $_nas
6956 NATIVE_RTSP = $_native_rtsp
6957 NETWORKING = $networking
6958 OPENAL = $_openal
6959 OSS = $_ossaudio
6960 PE_EXECUTABLE = $_pe_executable
6961 PNG = $_png
6962 PNM = $_pnm
6963 PRIORITY = $_priority
6964 PULSE = $_pulse
6965 PVR = $_pvr
6966 QTX_CODECS = $_qtx
6967 QTX_CODECS_WIN32 = $_qtx_codecs_win32
6968 QTX_EMULATION = $_qtx_emulation
6969 QUARTZ = $_quartz
6970 RADIO=$_radio
6971 RADIO_CAPTURE=$_radio_capture
6972 REAL_CODECS = $_real
6973 S3FB = $_s3fb
6974 SDL = $_sdl
6975 SPEEX = $_speex
6976 STREAM_CACHE = $_stream_cache
6977 SGIAUDIO = $_sgiaudio
6978 SUNAUDIO = $_sunaudio
6979 SVGA = $_svga
6980 TDFXFB = $_tdfxfb
6981 TDFXVID = $_tdfxvid
6982 TGA = $_tga
6983 TREMOR_INTERNAL = $_tremor_internal
6984 TV = $_tv
6985 TV_BSDBT848 = $_tv_bsdbt848
6986 TV_DSHOW = $_tv_dshow
6987 TV_V4L = $_tv_v4l
6988 TV_V4L1 = $_tv_v4l1
6989 TV_V4L2 = $_tv_v4l2
6990 UNRAR_EXEC = $_unrar_exec
6991 V4L2 = $_v4l2
6992 VCD = $_vcd
6993 VDPAU = $_vdpau
6994 VESA = $_vesa
6995 VORBIS = $_vorbis
6996 VSTREAM = $_vstream
6997 WII = $_wii
6998 WIN32DLL = $_win32dll
6999 WIN32WAVEOUT = $_win32waveout
7000 WIN32_EMULATION = $_win32_emulation
7001 X11 = $_x11
7002 XANIM_CODECS = $_xanim
7003 XMGA = $_xmga
7004 XMMS_PLUGINS = $_xmms
7005 XV = $_xv
7006 XVID4 = $_xvid
7007 XVMC = $_xvmc
7008 XVR100 = $_xvr100
7009 YUV4MPEG = $_yuv4mpeg
7011 # FFmpeg
7012 FFMPEG = $ffmpeg
7013 FFMPEG_EVAL_API = $ffmpeg_eval_api
7014 FFMPEG_INTERNALS = $ffmpeg_internals
7015 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7017 RANLIB = $_ranlib
7018 YASM = $_yasm
7019 YASMFLAGS = $YASMFLAGS
7021 CONFIG_BZLIB = $bzlib
7022 CONFIG_VDPAU = $_vdpau
7023 CONFIG_XVMC = $_xvmc
7024 CONFIG_ZLIB = $_zlib
7026 HAVE_PTHREADS = $_pthreads
7027 HAVE_SHM = $_shm
7028 HAVE_W32THREADS = $_w32threads
7029 HAVE_YASM = $have_yasm
7033 #############################################################################
7035 ff_config_enable () {
7036 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7037 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7038 _nprefix=$3;
7039 test -z "$_nprefix" && _nprefix='CONFIG'
7040 for part in $list; do
7041 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7042 echo "#define ${_nprefix}_$part 1"
7043 else
7044 echo "#define ${_nprefix}_$part 0"
7046 done
7049 echo "Creating config.h"
7050 cat > $TMPH << EOF
7051 /*----------------------------------------------------------------------------
7052 ** This file has been automatically generated by configure any changes in it
7053 ** will be lost when you run configure again.
7054 ** Instead of modifying definitions here, use the --enable/--disable options
7055 ** of the configure script! See ./configure --help for details.
7056 *---------------------------------------------------------------------------*/
7058 #ifndef MPLAYER_CONFIG_H
7059 #define MPLAYER_CONFIG_H
7061 /* Undefine this if you do not want to select mono audio (left or right)
7062 with a stereo MPEG layer 2/3 audio stream. The command line option
7063 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7064 right-only), with 0 being the default.
7066 #define CONFIG_FAKE_MONO 1
7068 /* set up audio OUTBURST. Do not change this! */
7069 #define OUTBURST 512
7071 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
7072 #undef FAST_OSD
7073 #undef FAST_OSD_TABLE
7075 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
7076 #define MPEG12_POSTPROC 1
7077 #define ATTRIBUTE_ALIGNED_MAX 16
7081 #define CONFIGURATION "$configuration"
7083 #define MPLAYER_DATADIR "$_datadir"
7084 #define MPLAYER_CONFDIR "$_confdir"
7085 #define MPLAYER_LIBDIR "$_libdir"
7086 #define MPLAYER_LOCALEDIR "$_localedir"
7088 $def_translation
7090 /* definitions needed by included libraries */
7091 #define HAVE_INTTYPES_H 1
7092 /* libmpeg2 + FFmpeg */
7093 $def_fast_inttypes
7094 /* libdvdcss */
7095 #define HAVE_ERRNO_H 1
7096 /* libdvdcss + libdvdread */
7097 #define HAVE_LIMITS_H 1
7098 /* libdvdcss */
7099 #define HAVE_UNISTD_H 1
7100 /* libdvdread */
7101 #define STDC_HEADERS 1
7102 #define HAVE_MEMCPY 1
7103 /* libdvdnav */
7104 #define READ_CACHE_TRACE 0
7105 /* libdvdread */
7106 #define HAVE_DLFCN_H 1
7107 $def_dvdcss
7110 /* system headers */
7111 $def_alloca_h
7112 $def_alsa_asoundlib_h
7113 $def_altivec_h
7114 $def_malloc_h
7115 $def_mman_h
7116 $def_mman_has_map_failed
7117 $def_soundcard_h
7118 $def_sys_asoundlib_h
7119 $def_sys_soundcard_h
7120 $def_sys_sysinfo_h
7121 $def_termios_h
7122 $def_termios_sys_h
7123 $def_winsock2_h
7126 /* system functions */
7127 $def_gethostbyname2
7128 $def_gettimeofday
7129 $def_glob
7130 $def_langinfo
7131 $def_lrintf
7132 $def_map_memalign
7133 $def_memalign
7134 $def_nanosleep
7135 $def_posix_select
7136 $def_select
7137 $def_setenv
7138 $def_setmode
7139 $def_shm
7140 $def_strsep
7141 $def_swab
7142 $def_sysi86
7143 $def_sysi86_iv
7144 $def_termcap
7145 $def_termios
7146 $def_vsscanf
7149 /* system-specific features */
7150 $def_asmalign_pot
7151 $def_builtin_expect
7152 $def_dl
7153 $def_dos_paths
7154 $def_extern_asm
7155 $def_extern_prefix
7156 $def_iconv
7157 $def_kstat
7158 $def_macosx_bundle
7159 $def_macosx_finder
7160 $def_maemo
7161 $def_named_asm_args
7162 $def_priority
7163 $def_quicktime
7164 $def_restrict_keyword
7165 $def_rtc
7166 $def_unrar_exec
7169 /* configurable options */
7170 $def_charset
7171 $def_crash_debug
7172 $def_debug
7173 $def_dynamic_plugins
7174 $def_fastmemcpy
7175 $def_menu
7176 $def_runtime_cpudetection
7177 $def_sighandler
7178 $def_sortsub
7179 $def_stream_cache
7180 $def_pthread_cache
7183 /* CPU stuff */
7184 #define __CPU__ $iproc
7185 $def_ebx_available
7186 $def_words_endian
7187 $def_bigendian
7188 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7189 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7190 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7193 /* Blu-ray/DVD/VCD/CD */
7194 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7195 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7196 $def_bluray
7197 $def_bsdi_dvd
7198 $def_cddb
7199 $def_cdio
7200 $def_cdparanoia
7201 $def_cdrom
7202 $def_dvd
7203 $def_dvd_bsd
7204 $def_dvd_darwin
7205 $def_dvd_linux
7206 $def_dvd_openbsd
7207 $def_dvdio
7208 $def_dvdnav
7209 $def_dvdread
7210 $def_hpux_scsi_h
7211 $def_libcdio
7212 $def_sol_scsi_h
7213 $def_vcd
7216 /* codec libraries */
7217 $def_faad
7218 $def_liba52
7219 $def_libdca
7220 $def_libdv
7221 $def_liblzo
7222 $def_libmpeg2
7223 $def_mad
7224 $def_mp3lib
7225 $def_mpg123
7226 $def_musepack
7227 $def_speex
7228 $def_theora
7229 $def_tremor
7230 $def_vorbis
7231 $def_xvid
7232 $def_zlib
7234 $def_libnut
7237 /* binary codecs */
7238 $def_qtx
7239 $def_qtx_win32
7240 $def_real
7241 $def_win32_loader
7242 $def_win32dll
7243 $def_xanim
7244 $def_xmms
7245 #define BINARY_CODECS_PATH "$_codecsdir"
7246 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7249 /* Audio output drivers */
7250 $def_alsa
7251 $def_alsa1x
7252 $def_alsa5
7253 $def_alsa9
7254 $def_arts
7255 $def_coreaudio
7256 $def_dart
7257 $def_esd
7258 $def_esd_latency
7259 $def_jack
7260 $def_kai
7261 $def_nas
7262 $def_openal
7263 $def_openal_h
7264 $def_ossaudio
7265 $def_ossaudio_devdsp
7266 $def_ossaudio_devmixer
7267 $def_pulse
7268 $def_sgiaudio
7269 $def_sunaudio
7270 $def_win32waveout
7272 $def_ladspa
7273 $def_libbs2b
7276 /* input */
7277 $def_apple_ir
7278 $def_apple_remote
7279 $def_ioctl_bt848_h_name
7280 $def_ioctl_meteor_h_name
7281 $def_joystick
7282 $def_lirc
7283 $def_lircc
7284 $def_pvr
7285 $def_radio
7286 $def_radio_bsdbt848
7287 $def_radio_capture
7288 $def_radio_v4l
7289 $def_radio_v4l2
7290 $def_tv
7291 $def_tv_bsdbt848
7292 $def_tv_dshow
7293 $def_tv_v4l
7294 $def_tv_v4l1
7295 $def_tv_v4l2
7298 /* font stuff */
7299 $def_ass
7300 $def_bitmap_font
7301 $def_enca
7302 $def_fontconfig
7303 $def_freetype
7304 $def_fribidi
7307 /* networking */
7308 $def_closesocket
7309 $def_ftp
7310 $def_inet6
7311 $def_inet_aton
7312 $def_inet_pton
7313 $def_live
7314 $def_nemesi
7315 $def_networking
7316 $def_smb
7317 $def_socklen_t
7318 $def_vstream
7321 /* libvo options */
7322 $def_3dfx
7323 $def_aa
7324 $def_bl
7325 $def_caca
7326 $def_corevideo
7327 $def_dga
7328 $def_dga1
7329 $def_dga2
7330 $def_direct3d
7331 $def_directfb
7332 $def_directx
7333 $def_dvb
7334 $def_dvbin
7335 $def_dxr3
7336 $def_fbdev
7337 $def_ggi
7338 $def_ggiwmh
7339 $def_gif
7340 $def_gif_4
7341 $def_gif_tvt_hack
7342 $def_gl
7343 $def_gl_win32
7344 $def_gl_x11
7345 $def_gl_sdl
7346 $def_matrixview
7347 $def_ivtv
7348 $def_jpeg
7349 $def_kva
7350 $def_md5sum
7351 $def_mga
7352 $def_mng
7353 $def_png
7354 $def_pnm
7355 $def_quartz
7356 $def_s3fb
7357 $def_sdl
7358 $def_sdl_sdl_h
7359 $def_svga
7360 $def_tdfxfb
7361 $def_tdfxvid
7362 $def_tga
7363 $def_v4l2
7364 $def_vdpau
7365 $def_vesa
7366 $def_vm
7367 $def_wii
7368 $def_x11
7369 $def_xdpms
7370 $def_xf86keysym
7371 $def_xinerama
7372 $def_xmga
7373 $def_xss
7374 $def_xv
7375 $def_xvmc
7376 $def_xvr100
7377 $def_yuv4mpeg
7380 /* FFmpeg */
7381 $def_ffmpeg
7382 $def_ffmpeg_eval_api
7383 $def_ffmpeg_internals
7385 $def_arpa_inet_h
7386 $def_bswap
7387 $def_bzlib
7388 $def_dcbzl
7389 $def_exp2
7390 $def_exp2f
7391 $def_fast_64bit
7392 $def_fast_unaligned
7393 $def_llrint
7394 $def_log2
7395 $def_log2f
7396 $def_lrint
7397 $def_memalign_hack
7398 $def_mkstemp
7399 $def_posix_memalign
7400 $def_pthreads
7401 $def_round
7402 $def_roundf
7403 $def_ten_operands
7404 $def_threads
7405 $def_truncf
7406 $def_xform_asm
7407 $def_yasm
7409 #define HAVE_INLINE_ASM 1
7411 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
7412 #ifndef MP_DEBUG
7413 #define HAVE_EBP_AVAILABLE 1
7414 #else
7415 #define HAVE_EBP_AVAILABLE 0
7416 #endif
7418 #endif /* MPLAYER_CONFIG_H */
7421 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
7422 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
7424 #############################################################################
7426 ./version.sh `$_cc -dumpversion`
7428 cat << EOF
7430 Config files successfully generated by ./configure $configuration !
7432 Install prefix: $_prefix
7433 Data directory: $_datadir
7434 Config direct.: $_confdir
7436 Byte order: $_byte_order
7437 Optimizing for: $_optimizing
7439 Languages:
7440 Messages (in addition to English): $language_msg
7441 Manual pages: $language_man
7442 Documentation: $language_doc
7444 Enabled optional drivers:
7445 Input: $inputmodules
7446 Codecs: $codecmodules
7447 Audio output: $aomodules
7448 Video output: $vomodules
7450 Disabled optional drivers:
7451 Input: $noinputmodules
7452 Codecs: $nocodecmodules
7453 Audio output: $noaomodules
7454 Video output: $novomodules
7456 'config.h' and 'config.mak' contain your configuration options.
7457 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
7458 compile *** DO NOT REPORT BUGS if you tweak these files ***
7460 'make' will now compile MPlayer and 'make install' will install it.
7461 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
7466 if test "$_mtrr" = yes ; then
7467 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
7468 echo
7471 if ! x86_32; then
7472 cat <<EOF
7473 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
7474 operating system ($system_name). You may encounter a few files that cannot
7475 be played due to missing open source video/audio codec support.
7481 cat <<EOF
7482 Check $TMPLOG if you wonder why an autodetection failed (make sure
7483 development headers/packages are installed).
7485 NOTE: The --enable-* parameters unconditionally force options on, completely
7486 skipping autodetection. This behavior is unlike what you may be used to from
7487 autoconf-based configure scripts that can decide to override you. This greater
7488 level of control comes at a price. You may have to provide the correct compiler
7489 and linker flags yourself.
7490 If you used one of these options (except --enable-menu and similar ones that
7491 turn on internal features) and experience a compilation or linking failure,
7492 make sure you have passed the necessary compiler/linker flags to configure.
7494 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
7498 if test "$warn_cflags" = yes; then
7499 cat <<EOF
7501 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
7502 but:
7504 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
7506 It is strongly recommended to let MPlayer choose the correct CFLAGS!
7507 To do so, execute 'CFLAGS= ./configure <options>'
7512 # Last move:
7513 rm -rf "$mplayer_tmpdir"