libaf: add opts pointer to struct af_stream
[mplayer/glamo.git] / configure
blob5faab192443a950bb9f7fb144edb0bdf740d5683
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, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 source="$1"
63 shift
64 echo >> "$TMPLOG"
65 cat "$source" >> "$TMPLOG"
66 echo >> "$TMPLOG"
67 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
70 TMPRES="$?"
71 echo >> "$TMPLOG"
72 echo >> "$TMPLOG"
73 return "$TMPRES"
76 cc_check() {
77 compile_check $TMPC $@
80 cxx_check() {
81 compile_check $TMPCPP $@ -lstdc++
84 cflag_check() {
85 cat > $TMPC << EOF
86 int main(void) { return 0; }
87 EOF
88 compile_check $TMPC $@
91 function_check() {
92 cat > $TMPC << EOF
93 #include <$1>
94 int main(void) { $2; return 0; }
95 EOF
96 shift
97 shift
98 compile_check $TMPC $@
101 header_check() {
102 cat > $TMPC << EOF
103 #include <$1>
104 int main(void) { return 0; }
106 shift
107 compile_check $TMPC $@
110 inline_asm_check() {
111 cat > $TMPC << EOF
112 int main(void) { __asm__ volatile ($1); return 0; }
114 shift
115 compile_check $TMPC $@
118 # The following checks are special and should only be used with broken and
119 # non-selfsufficient headers that do not include all of their dependencies.
121 header_check_broken() {
122 cat > $TMPC << EOF
123 #include <$1>
124 #include <$2>
125 int main(void) { return 0; }
127 shift
128 shift
129 compile_check $TMPC $@
132 function_check_broken() {
133 cat > $TMPC << EOF
134 #include <$1>
135 #include <$2>
136 int main(void) { $3; return 0; }
138 shift 3
139 compile_check $TMPC $@
142 yasm_check() {
143 echo >> "$TMPLOG"
144 cat "$TMPS" >> "$TMPLOG"
145 echo >> "$TMPLOG"
146 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
147 rm -f "$TMPEXE"
148 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
149 TMPRES="$?"
150 echo >> "$TMPLOG"
151 echo >> "$TMPLOG"
152 return "$TMPRES"
155 tmp_run() {
156 "$TMPEXE" >> "$TMPLOG" 2>&1
159 # Display error message, flushes tempfile, exit
160 die () {
161 echo
162 echo "Error: $@" >&2
163 echo >&2
164 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
165 echo "Check \"$TMPLOG\" if you do not understand why it failed."
166 exit 1
169 # OS test booleans functions
170 issystem() {
171 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
173 aix() { issystem "AIX"; }
174 amigaos() { issystem "AmigaOS"; }
175 beos() { issystem "BEOS"; }
176 bsdos() { issystem "BSD/OS"; }
177 cygwin() { issystem "CYGWIN"; }
178 darwin() { issystem "Darwin"; }
179 dragonfly() { issystem "DragonFly"; }
180 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
181 gnu() { issystem "GNU"; }
182 hpux() { issystem "HP-UX"; }
183 irix() { issystem "IRIX"; }
184 linux() { issystem "Linux"; }
185 mingw32() { issystem "MINGW32"; }
186 morphos() { issystem "MorphOS"; }
187 netbsd() { issystem "NetBSD"; }
188 openbsd() { issystem "OpenBSD"; }
189 os2() { issystem "OS/2"; }
190 qnx() { issystem "QNX"; }
191 sunos() { issystem "SunOS"; }
192 win32() { cygwin || mingw32; }
194 # arch test boolean functions
195 # x86/x86pc is used by QNX
196 x86_32() {
197 case "$host_arch" in
198 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
199 *) return 1 ;;
200 esac
203 x86_64() {
204 case "$host_arch" in
205 x86_64|amd64) return 0 ;;
206 *) return 1 ;;
207 esac
210 x86() {
211 x86_32 || x86_64
214 ppc() {
215 case "$host_arch" in
216 ppc|ppc64|powerpc|powerpc64) return 0;;
217 *) return 1;;
218 esac
221 alpha() {
222 case "$host_arch" in
223 alpha*) return 0;;
224 *) return 1;;
225 esac
228 arm() {
229 case "$host_arch" in
230 arm*) return 0;;
231 *) return 1;;
232 esac
235 # Use this before starting a check
236 echocheck() {
237 echo "============ Checking for $@ ============" >> "$TMPLOG"
238 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
241 # Use this to echo the results of a check
242 echores() {
243 if test "$res_comment" ; then
244 res_comment="($res_comment)"
246 echo "Result is: $@ $res_comment" >> "$TMPLOG"
247 echo "##########################################" >> "$TMPLOG"
248 echo "" >> "$TMPLOG"
249 echo "$@ $res_comment"
250 res_comment=""
252 #############################################################################
254 # Check how echo works in this /bin/sh
255 case $(echo -n) in
256 -n) _echo_n= _echo_c='\c' ;; # SysV echo
257 *) _echo_n='-n ' _echo_c= ;; # BSD echo
258 esac
260 msg_lang_all=''
261 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
262 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")
263 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
265 show_help(){
266 cat << EOF
267 Usage: $0 [OPTIONS]...
269 Configuration:
270 -h, --help display this help and exit
272 Installation directories:
273 --prefix=DIR prefix directory for installation [/usr/local]
274 --bindir=DIR directory for installing binaries [PREFIX/bin]
275 --datadir=DIR directory for installing machine independent
276 data files (skins, etc) [PREFIX/share/mplayer]
277 --mandir=DIR directory for installing man pages [PREFIX/share/man]
278 --confdir=DIR directory for installing configuration files
279 [PREFIX/etc/mplayer]
280 --localedir=DIR directory for locale tree [PREFIX/share/locale]
281 --libdir=DIR directory for object code libraries [PREFIX/lib]
282 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
284 Optional features:
285 --disable-mplayer disable MPlayer compilation [enable]
286 --disable-largefiles disable support for files > 2GB [enable]
287 --enable-termcap use termcap database for key codes [autodetect]
288 --enable-termios use termios database for key codes [autodetect]
289 --disable-iconv disable iconv for encoding conversion [autodetect]
290 --disable-langinfo do not use langinfo [autodetect]
291 --enable-lirc enable LIRC (remote control) support [autodetect]
292 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
293 --enable-joystick enable joystick support [disable]
294 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
295 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
296 --disable-vm disable X video mode extensions [autodetect]
297 --disable-xf86keysym disable support for multimedia keys [autodetect]
298 --enable-radio enable radio interface [disable]
299 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
300 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
301 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
302 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
303 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
304 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
305 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
306 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
307 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
308 --disable-networking disable networking [enable]
309 --enable-winsock2_h enable winsock2_h [autodetect]
310 --enable-smb enable Samba (SMB) input [autodetect]
311 --enable-live enable LIVE555 Streaming Media [autodetect]
312 --enable-nemesi enable Nemesi Streaming Media [autodetect]
313 --disable-vcd disable VCD support [autodetect]
314 --disable-bluray disable Blu-ray support [autodetect]
315 --disable-dvdnav disable libdvdnav [autodetect]
316 --disable-dvdread disable libdvdread [autodetect]
317 --disable-dvdread-internal disable internal libdvdread [autodetect]
318 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
319 --disable-cdparanoia disable cdparanoia [autodetect]
320 --disable-cddb disable cddb [autodetect]
321 --disable-bitmap-font disable bitmap font support [enable]
322 --disable-freetype disable FreeType 2 font rendering [autodetect]
323 --disable-fontconfig disable fontconfig font lookup [autodetect]
324 --disable-unrarexec disable using of UnRAR executable [enabled]
325 --enable-menu enable OSD menu (not DVD menu) [disabled]
326 --disable-sortsub disable subtitle sorting [enabled]
327 --enable-fribidi enable the FriBiDi libs [autodetect]
328 --disable-enca disable ENCA charset oracle library [autodetect]
329 --disable-maemo disable maemo specific features [autodetect]
330 --enable-macosx-finder enable Mac OS X Finder invocation parameter
331 parsing [disabled]
332 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
333 --disable-inet6 disable IPv6 support [autodetect]
334 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
335 --disable-ftp disable FTP support [enabled]
336 --disable-vstream disable TiVo vstream client support [autodetect]
337 --disable-pthreads disable Posix threads support [autodetect]
338 --disable-w32threads disable Win32 threads support [autodetect]
339 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
340 --enable-rpath enable runtime linker path for extra libs [disabled]
342 Codecs:
343 --enable-gif enable GIF support [autodetect]
344 --enable-png enable PNG input/output support [autodetect]
345 --enable-mng enable MNG input support [autodetect]
346 --enable-jpeg enable JPEG input/output support [autodetect]
347 --enable-libcdio enable libcdio support [autodetect]
348 --enable-liblzo enable liblzo support [autodetect]
349 --disable-win32dll disable Win32 DLL support [autodetect]
350 --disable-qtx disable QuickTime codecs support [enabled]
351 --disable-xanim disable XAnim codecs support [enabled]
352 --disable-real disable RealPlayer codecs support [enabled]
353 --disable-xvid disable Xvid [autodetect]
354 --disable-x264 disable x264 [autodetect]
355 --disable-libnut disable libnut [autodetect]
356 --disable-ffmpeg_a disable static FFmpeg [autodetect]
357 --disable-ffmpeg_so disable shared FFmpeg [autodetect]
358 --disable-tremor-internal disable internal Tremor [enabled]
359 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
360 --enable-tremor enable external Tremor [autodetect]
361 --disable-libvorbis disable libvorbis support [autodetect]
362 --disable-speex disable Speex support [autodetect]
363 --enable-theora enable OggTheora libraries [autodetect]
364 --enable-faad enable external FAAD2 (AAC) [autodetect]
365 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
366 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
367 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
368 --disable-ladspa disable LADSPA plugin support [autodetect]
369 --disable-libbs2b disable libbs2b audio filter support [autodetect]
370 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
371 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
372 --disable-mad disable libmad (MPEG audio) support [autodetect]
373 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
374 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
375 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
376 --enable-xmms enable XMMS input plugin support [disabled]
377 --enable-libdca enable libdca support [autodetect]
378 --disable-mp3lib disable builtin mp3lib [autodetect]
379 --disable-liba52 disable liba52 [autodetect]
380 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
381 --disable-musepack disable musepack support [autodetect]
383 Video output:
384 --disable-vidix disable VIDIX [for x86 *nix]
385 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
386 Available: cyberblade, ivtv, mach64, mga, mga_crtc2,
387 nvidia, pm2, pm3, radeon, rage128, s3, sis, unichrome
388 --disable-vidix-pcidb disable VIDIX PCI device name database
389 --enable-dhahelper enable VIDIX dhahelper support
390 --enable-svgalib_helper enable VIDIX svgalib_helper support
391 --enable-gl enable OpenGL video output [autodetect]
392 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
393 --enable-dga2 enable DGA 2 support [autodetect]
394 --enable-dga1 enable DGA 1 support [autodetect]
395 --enable-vesa enable VESA video output [autodetect]
396 --enable-svga enable SVGAlib video output [autodetect]
397 --enable-sdl enable SDL video output [autodetect]
398 --enable-kva enable KVA video output [autodetect]
399 --enable-aa enable AAlib video output [autodetect]
400 --enable-caca enable CACA video output [autodetect]
401 --enable-ggi enable GGI video output [autodetect]
402 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
403 --enable-direct3d enable Direct3D video output [autodetect]
404 --enable-directx enable DirectX video output [autodetect]
405 --enable-dxr2 enable DXR2 video output [autodetect]
406 --enable-dxr3 enable DXR3/H+ video output [autodetect]
407 --enable-ivtv enable IVTV TV-Out video output [autodetect]
408 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
409 --enable-dvb enable DVB video output [autodetect]
410 --enable-mga enable mga_vid video output [autodetect]
411 --enable-xmga enable mga_vid X11 video output [autodetect]
412 --enable-xv enable Xv video output [autodetect]
413 --enable-xvmc enable XvMC acceleration [disable]
414 --enable-vdpau enable VDPAU acceleration [autodetect]
415 --enable-vm enable XF86VidMode support [autodetect]
416 --enable-xinerama enable Xinerama support [autodetect]
417 --enable-x11 enable X11 video output [autodetect]
418 --enable-xshape enable XShape support [autodetect]
419 --disable-xss disable screensaver support via xss [autodetect]
420 --enable-fbdev enable FBDev video output [autodetect]
421 --enable-mlib enable mediaLib video output (Solaris) [disable]
422 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
423 --enable-tdfxfb enable tdfxfb video output [disable]
424 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
425 --enable-wii enable Nintendo Wii/GameCube video output [disable]
426 --enable-directfb enable DirectFB video output [autodetect]
427 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
428 --enable-bl enable Blinkenlights video output [disable]
429 --enable-tdfxvid enable tdfx_vid video output [disable]
430 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
431 --disable-tga disable Targa video output [enable]
432 --disable-pnm disable PNM video output [enable]
433 --disable-md5sum disable md5sum video output [enable]
434 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
435 --disable-corevideo disable CoreVideo video output [autodetect]
436 --disable-quartz disable Quartz video output [autodetect]
438 Audio output:
439 --disable-alsa disable ALSA audio output [autodetect]
440 --disable-ossaudio disable OSS audio output [autodetect]
441 --disable-arts disable aRts audio output [autodetect]
442 --disable-esd disable esd audio output [autodetect]
443 --disable-pulse disable Pulseaudio audio output [autodetect]
444 --disable-jack disable JACK audio output [autodetect]
445 --enable-openal enable OpenAL audio output [disable]
446 --disable-nas disable NAS audio output [autodetect]
447 --disable-sgiaudio disable SGI audio output [autodetect]
448 --disable-sunaudio disable Sun audio output [autodetect]
449 --disable-kai disable KAI audio output [autodetect]
450 --disable-dart disable DART audio output [autodetect]
451 --disable-win32waveout disable Windows waveout audio output [autodetect]
452 --disable-coreaudio disable CoreAudio audio output [autodetect]
453 --disable-select disable using select() on the audio device [enable]
455 Language options:
456 --enable-translation enable support for translated output [disable]
457 --charset=charset convert the console messages to this character set
458 --language-doc=lang language to use for the documentation [en]
459 --language-man=lang language to use for the man pages [en]
460 --language-msg=lang extra languages for program messages [all]
461 --language=lang default language to use [en]
462 Specific options override --language. You can pass a list of languages separated
463 by whitespace or commas instead of a single language. Nonexisting translations
464 will be dropped from each list. All translations available in the list will be
465 installed. The value "all" will activate all translations. The LINGUAS
466 environment variable is honored. In all cases the fallback is English.
467 The program always supports English-language output; additional message
468 languages are only installed if --enable-translation is also specified.
469 Available values for --language-doc are: all $doc_lang_all
470 Available values for --language-man are: all $man_lang_all
471 Available values for --language-msg are: all $msg_lang_all
473 Miscellaneous options:
474 --enable-runtime-cpudetection enable runtime CPU detection [disable]
475 --enable-cross-compile enable cross-compilation [autodetect]
476 --cc=COMPILER C compiler to build MPlayer [gcc]
477 --host-cc=COMPILER C compiler for tools needed while building [gcc]
478 --as=ASSEMBLER assembler to build MPlayer [as]
479 --nm=NM nm tool to build MPlayer [nm]
480 --yasm=YASM Yasm assembler to build MPlayer [yasm]
481 --ar=AR librarian to build MPlayer [ar]
482 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
483 --windres=WINDRES windres to build MPlayer [windres]
484 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
485 --enable-static build a statically linked binary
486 --with-install=PATH path to a custom install program
488 Advanced options:
489 --enable-mmx enable MMX [autodetect]
490 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
491 --enable-3dnow enable 3DNow! [autodetect]
492 --enable-3dnowext enable extended 3DNow! [autodetect]
493 --enable-sse enable SSE [autodetect]
494 --enable-sse2 enable SSE2 [autodetect]
495 --enable-ssse3 enable SSSE3 [autodetect]
496 --enable-shm enable shm [autodetect]
497 --enable-altivec enable AltiVec (PowerPC) [autodetect]
498 --enable-armv5te enable DSP extensions (ARM) [autodetect]
499 --enable-armv6 enable ARMv6 (ARM) [autodetect]
500 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
501 --enable-armvfp enable ARM VFP (ARM) [autodetect]
502 --enable-neon enable NEON (ARM) [autodetect]
503 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
504 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
505 --enable-big-endian force byte order to big-endian [autodetect]
506 --enable-debug[=1-3] compile-in debugging information [disable]
507 --enable-profile compile-in profiling information [disable]
508 --disable-sighandler disable sighandler for crashes [enable]
509 --enable-crash-debug enable automatic gdb attach on crash [disable]
510 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
511 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
513 Use these options if autodetection fails:
514 --extra-cflags=FLAGS extra CFLAGS
515 --extra-ldflags=FLAGS extra LDFLAGS
516 --extra-libs=FLAGS extra linker flags
517 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
518 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
520 --with-freetype-config=PATH path to freetype-config
521 --with-glib-config=PATH path to glib*-config
522 --with-gtk-config=PATH path to gtk*-config
523 --with-sdl-config=PATH path to sdl*-config
524 --with-dvdnav-config=PATH path to dvdnav-config
525 --with-dvdread-config=PATH path to dvdread-config
527 This configure script is NOT autoconf-based, even though its output is similar.
528 It will try to autodetect all configuration options. If you --enable an option
529 it will be forcefully turned on, skipping autodetection. This can break
530 compilation, so you need to know what you are doing.
532 exit 0
533 } #show_help()
535 # GOTCHA: the variables below defines the default behavior for autodetection
536 # and have - unless stated otherwise - at least 2 states : yes no
537 # If autodetection is available then the third state is: auto
538 _mmx=auto
539 _3dnow=auto
540 _3dnowext=auto
541 _mmxext=auto
542 _sse=auto
543 _sse2=auto
544 _ssse3=auto
545 _cmov=auto
546 _fast_cmov=auto
547 _fast_clz=auto
548 _armv5te=auto
549 _armv6=auto
550 _armv6t2=auto
551 _armvfp=auto
552 neon=auto
553 _iwmmxt=auto
554 _mtrr=auto
555 _altivec=auto
556 _install=install
557 _ranlib=ranlib
558 _windres=windres
559 _cc=cc
560 _ar=ar
561 test "$CC" && _cc="$CC"
562 _as=auto
563 _nm=auto
564 _yasm=yasm
565 _runtime_cpudetection=no
566 _cross_compile=auto
567 _prefix="/usr/local"
568 ffmpeg=auto
569 ffmpeg_internals=no
570 _mencoder=no
571 _mplayer=yes
572 _x11=auto
573 _xshape=auto
574 _xss=auto
575 _dga1=auto
576 _dga2=auto
577 _xv=auto
578 _xvmc=no #auto when complete
579 _vdpau=auto
580 _sdl=auto
581 _kva=auto
582 _direct3d=auto
583 _directx=auto
584 _win32waveout=auto
585 _nas=auto
586 _png=auto
587 _mng=auto
588 _jpeg=auto
589 _pnm=yes
590 _md5sum=yes
591 _yuv4mpeg=yes
592 _gif=auto
593 _gl=auto
594 matrixview=yes
595 _ggi=auto
596 _ggiwmh=auto
597 _aa=auto
598 _caca=auto
599 _svga=auto
600 _vesa=auto
601 _fbdev=auto
602 _dvb=auto
603 _dxr2=auto
604 _dxr3=auto
605 _ivtv=auto
606 _v4l2=auto
607 _iconv=auto
608 _langinfo=auto
609 _rtc=auto
610 _ossaudio=auto
611 _arts=auto
612 _esd=auto
613 _pulse=auto
614 _jack=auto
615 _kai=auto
616 _dart=auto
617 _openal=no
618 _libcdio=auto
619 _liblzo=auto
620 _mad=auto
621 _mp3lame=auto
622 _toolame=auto
623 _twolame=auto
624 _tremor=auto
625 _tremor_internal=yes
626 _tremor_low=no
627 _libvorbis=auto
628 _speex=auto
629 _theora=auto
630 _mpg123=auto
631 _mp3lib=auto
632 _liba52=auto
633 _libdca=auto
634 _libmpeg2=auto
635 _faad=auto
636 _faad_internal=auto
637 _faad_fixed=no
638 _faac=auto
639 _ladspa=auto
640 _libbs2b=auto
641 _xmms=no
642 _vcd=auto
643 _bluray=auto
644 _dvdnav=auto
645 _dvdnavconfig=dvdnav-config
646 _dvdreadconfig=dvdread-config
647 _dvdread=auto
648 _dvdread_internal=auto
649 _libdvdcss_internal=auto
650 _xanim=auto
651 _real=auto
652 _live=auto
653 _nemesi=auto
654 _native_rtsp=yes
655 _xinerama=auto
656 _mga=auto
657 _xmga=auto
658 _vm=auto
659 _xf86keysym=auto
660 _mlib=no #broken, thus disabled
661 _sgiaudio=auto
662 _sunaudio=auto
663 _alsa=auto
664 _fastmemcpy=yes
665 _unrar_exec=auto
666 _win32dll=auto
667 _select=yes
668 _radio=no
669 _radio_capture=no
670 _radio_v4l=auto
671 _radio_v4l2=auto
672 _radio_bsdbt848=auto
673 _tv=yes
674 _tv_v4l1=auto
675 _tv_v4l2=auto
676 _tv_bsdbt848=auto
677 _tv_dshow=auto
678 _pvr=auto
679 networking=yes
680 _winsock2_h=auto
681 _smb=auto
682 _vidix=auto
683 _vidix_pcidb=yes
684 _dhahelper=no
685 _svgalib_helper=no
686 _joystick=no
687 _xvid=auto
688 _x264=auto
689 _libnut=auto
690 _lirc=auto
691 _lircc=auto
692 _apple_remote=auto
693 _apple_ir=auto
694 _gui=no
695 _gtk1=no
696 _termcap=auto
697 _termios=auto
698 _3dfx=no
699 _s3fb=no
700 _wii=no
701 _tdfxfb=no
702 _tdfxvid=no
703 _xvr100=auto
704 _tga=yes
705 _directfb=auto
706 _zr=auto
707 _bl=no
708 _largefiles=yes
709 #language=en
710 _shm=auto
711 _translation=no
712 _charset="UTF-8"
713 _dynamic_plugins=no
714 _crash_debug=no
715 _sighandler=yes
716 _libdv=auto
717 _cdparanoia=auto
718 _cddb=auto
719 _big_endian=auto
720 _bitmap_font=yes
721 _freetype=auto
722 _fontconfig=auto
723 _menu=no
724 _qtx=auto
725 _maemo=auto
726 _coreaudio=auto
727 _corevideo=auto
728 _quartz=auto
729 quicktime=auto
730 _macosx_finder=no
731 _macosx_bundle=auto
732 _sortsub=yes
733 _freetypeconfig='freetype-config'
734 _fribidi=auto
735 _enca=auto
736 _inet6=auto
737 _gethostbyname2=auto
738 _ftp=auto
739 _musepack=auto
740 _vstream=auto
741 _pthreads=auto
742 _w32threads=auto
743 _ass=auto
744 _rpath=no
745 _asmalign_pot=auto
746 _stream_cache=yes
747 _priority=no
748 def_dos_paths="#define HAVE_DOS_PATHS 0"
749 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
750 def_priority="#undef CONFIG_PRIORITY"
751 def_pthread_cache="#undef PTHREAD_CACHE"
752 _need_shmem=yes
753 for ac_option do
754 case "$ac_option" in
755 --help|-help|-h)
756 show_help
758 --prefix=*)
759 _prefix=$(echo $ac_option | cut -d '=' -f 2)
761 --bindir=*)
762 _bindir=$(echo $ac_option | cut -d '=' -f 2)
764 --datadir=*)
765 _datadir=$(echo $ac_option | cut -d '=' -f 2)
767 --mandir=*)
768 _mandir=$(echo $ac_option | cut -d '=' -f 2)
770 --confdir=*)
771 _confdir=$(echo $ac_option | cut -d '=' -f 2)
773 --libdir=*)
774 _libdir=$(echo $ac_option | cut -d '=' -f 2)
776 --codecsdir=*)
777 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
779 --localedir=*)
780 _localedir=$(echo $ac_option | cut -d '=' -f 2)
783 --with-install=*)
784 _install=$(echo $ac_option | cut -d '=' -f 2 )
786 --with-xvmclib=*)
787 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
790 --with-sdl-config=*)
791 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
793 --with-freetype-config=*)
794 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
796 --with-gtk-config=*)
797 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
799 --with-glib-config=*)
800 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
802 --with-dvdnav-config=*)
803 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
805 --with-dvdread-config=*)
806 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
809 --extra-cflags=*)
810 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
812 --extra-ldflags=*)
813 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
815 --extra-libs=*)
816 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
818 --extra-libs-mplayer=*)
819 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
822 --target=*)
823 _target=$(echo $ac_option | cut -d '=' -f 2)
825 --cc=*)
826 _cc=$(echo $ac_option | cut -d '=' -f 2)
828 --host-cc=*)
829 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
831 --as=*)
832 _as=$(echo $ac_option | cut -d '=' -f 2)
834 --nm=*)
835 _nm=$(echo $ac_option | cut -d '=' -f 2)
837 --yasm=*)
838 _yasm=$(echo $ac_option | cut -d '=' -f 2)
840 --ar=*)
841 _ar=$(echo $ac_option | cut -d '=' -f 2)
843 --ranlib=*)
844 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
846 --windres=*)
847 _windres=$(echo $ac_option | cut -d '=' -f 2)
849 --charset=*)
850 _charset=$(echo $ac_option | cut -d '=' -f 2)
852 --language-doc=*)
853 language_doc=$(echo $ac_option | cut -d '=' -f 2)
855 --language-man=*)
856 language_man=$(echo $ac_option | cut -d '=' -f 2)
858 --language-msg=*)
859 language_msg=$(echo $ac_option | cut -d '=' -f 2)
861 --language=*)
862 language=$(echo $ac_option | cut -d '=' -f 2)
865 --enable-static)
866 _ld_static='-static'
868 --disable-static)
869 _ld_static=''
871 --enable-profile)
872 _profile='-p'
874 --disable-profile)
875 _profile=
877 --enable-debug)
878 _debug='-g'
880 --enable-debug=*)
881 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
883 --disable-debug)
884 _debug=
886 --enable-translation) _translation=yes ;;
887 --disable-translation) _translation=no ;;
888 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
889 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
890 --enable-cross-compile) _cross_compile=yes ;;
891 --disable-cross-compile) _cross_compile=no ;;
892 --enable-mplayer) _mplayer=yes ;;
893 --disable-mplayer) _mplayer=no ;;
894 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
895 --disable-dynamic-plugins) _dynamic_plugins=no ;;
896 --enable-x11) _x11=yes ;;
897 --disable-x11) _x11=no ;;
898 --enable-xshape) _xshape=yes ;;
899 --disable-xshape) _xshape=no ;;
900 --enable-xss) _xss=yes ;;
901 --disable-xss) _xss=no ;;
902 --enable-xv) _xv=yes ;;
903 --disable-xv) _xv=no ;;
904 --enable-xvmc) _xvmc=yes ;;
905 --disable-xvmc) _xvmc=no ;;
906 --enable-vdpau) _vdpau=yes ;;
907 --disable-vdpau) _vdpau=no ;;
908 --enable-sdl) _sdl=yes ;;
909 --disable-sdl) _sdl=no ;;
910 --enable-kva) _kva=yes ;;
911 --disable-kva) _kva=no ;;
912 --enable-direct3d) _direct3d=yes ;;
913 --disable-direct3d) _direct3d=no ;;
914 --enable-directx) _directx=yes ;;
915 --disable-directx) _directx=no ;;
916 --enable-win32waveout) _win32waveout=yes ;;
917 --disable-win32waveout) _win32waveout=no ;;
918 --enable-nas) _nas=yes ;;
919 --disable-nas) _nas=no ;;
920 --enable-png) _png=yes ;;
921 --disable-png) _png=no ;;
922 --enable-mng) _mng=yes ;;
923 --disable-mng) _mng=no ;;
924 --enable-jpeg) _jpeg=yes ;;
925 --disable-jpeg) _jpeg=no ;;
926 --enable-pnm) _pnm=yes ;;
927 --disable-pnm) _pnm=no ;;
928 --enable-md5sum) _md5sum=yes ;;
929 --disable-md5sum) _md5sum=no ;;
930 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
931 --disable-yuv4mpeg) _yuv4mpeg=no ;;
932 --enable-gif) _gif=yes ;;
933 --disable-gif) _gif=no ;;
934 --enable-gl) _gl=yes ;;
935 --disable-gl) _gl=no ;;
936 --enable-matrixview) matrixview=yes ;;
937 --disable-matrixview) matrixview=no ;;
938 --enable-ggi) _ggi=yes ;;
939 --disable-ggi) _ggi=no ;;
940 --enable-ggiwmh) _ggiwmh=yes ;;
941 --disable-ggiwmh) _ggiwmh=no ;;
942 --enable-aa) _aa=yes ;;
943 --disable-aa) _aa=no ;;
944 --enable-caca) _caca=yes ;;
945 --disable-caca) _caca=no ;;
946 --enable-svga) _svga=yes ;;
947 --disable-svga) _svga=no ;;
948 --enable-vesa) _vesa=yes ;;
949 --disable-vesa) _vesa=no ;;
950 --enable-fbdev) _fbdev=yes ;;
951 --disable-fbdev) _fbdev=no ;;
952 --enable-dvb) _dvb=yes ;;
953 --disable-dvb) _dvb=no ;;
954 --enable-dxr2) _dxr2=yes ;;
955 --disable-dxr2) _dxr2=no ;;
956 --enable-dxr3) _dxr3=yes ;;
957 --disable-dxr3) _dxr3=no ;;
958 --enable-ivtv) _ivtv=yes ;;
959 --disable-ivtv) _ivtv=no ;;
960 --enable-v4l2) _v4l2=yes ;;
961 --disable-v4l2) _v4l2=no ;;
962 --enable-iconv) _iconv=yes ;;
963 --disable-iconv) _iconv=no ;;
964 --enable-langinfo) _langinfo=yes ;;
965 --disable-langinfo) _langinfo=no ;;
966 --enable-rtc) _rtc=yes ;;
967 --disable-rtc) _rtc=no ;;
968 --enable-libdv) _libdv=yes ;;
969 --disable-libdv) _libdv=no ;;
970 --enable-ossaudio) _ossaudio=yes ;;
971 --disable-ossaudio) _ossaudio=no ;;
972 --enable-arts) _arts=yes ;;
973 --disable-arts) _arts=no ;;
974 --enable-esd) _esd=yes ;;
975 --disable-esd) _esd=no ;;
976 --enable-pulse) _pulse=yes ;;
977 --disable-pulse) _pulse=no ;;
978 --enable-jack) _jack=yes ;;
979 --disable-jack) _jack=no ;;
980 --enable-openal) _openal=yes ;;
981 --disable-openal) _openal=no ;;
982 --enable-kai) _kai=yes ;;
983 --disable-kai) _kai=no ;;
984 --enable-dart) _dart=yes ;;
985 --disable-dart) _dart=no ;;
986 --enable-mad) _mad=yes ;;
987 --disable-mad) _mad=no ;;
988 --enable-mp3lame) _mp3lame=yes ;;
989 --disable-mp3lame) _mp3lame=no ;;
990 --enable-toolame) _toolame=yes ;;
991 --disable-toolame) _toolame=no ;;
992 --enable-twolame) _twolame=yes ;;
993 --disable-twolame) _twolame=no ;;
994 --enable-libcdio) _libcdio=yes ;;
995 --disable-libcdio) _libcdio=no ;;
996 --enable-liblzo) _liblzo=yes ;;
997 --disable-liblzo) _liblzo=no ;;
998 --enable-libvorbis) _libvorbis=yes ;;
999 --disable-libvorbis) _libvorbis=no ;;
1000 --enable-speex) _speex=yes ;;
1001 --disable-speex) _speex=no ;;
1002 --enable-tremor) _tremor=yes ;;
1003 --disable-tremor) _tremor=no ;;
1004 --enable-tremor-internal) _tremor_internal=yes ;;
1005 --disable-tremor-internal) _tremor_internal=no ;;
1006 --enable-tremor-low) _tremor_low=yes ;;
1007 --disable-tremor-low) _tremor_low=no ;;
1008 --enable-theora) _theora=yes ;;
1009 --disable-theora) _theora=no ;;
1010 --enable-mpg123) _mpg123=yes ;;
1011 --disable-mpg123) _mpg123=no ;;
1012 --enable-mp3lib) _mp3lib=yes ;;
1013 --disable-mp3lib) _mp3lib=no ;;
1014 --enable-liba52) _liba52=yes ;;
1015 --disable-liba52) _liba52=no ;;
1016 --enable-libdca) _libdca=yes ;;
1017 --disable-libdca) _libdca=no ;;
1018 --enable-libmpeg2) _libmpeg2=yes ;;
1019 --disable-libmpeg2) _libmpeg2=no ;;
1020 --enable-musepack) _musepack=yes ;;
1021 --disable-musepack) _musepack=no ;;
1022 --enable-faad) _faad=yes ;;
1023 --disable-faad) _faad=no ;;
1024 --enable-faad-internal) _faad_internal=yes ;;
1025 --disable-faad-internal) _faad_internal=no ;;
1026 --enable-faad-fixed) _faad_fixed=yes ;;
1027 --disable-faad-fixed) _faad_fixed=no ;;
1028 --enable-faac) _faac=yes ;;
1029 --disable-faac) _faac=no ;;
1030 --enable-ladspa) _ladspa=yes ;;
1031 --disable-ladspa) _ladspa=no ;;
1032 --enable-libbs2b) _libbs2b=yes ;;
1033 --disable-libbs2b) _libbs2b=no ;;
1034 --enable-xmms) _xmms=yes ;;
1035 --disable-xmms) _xmms=no ;;
1036 --enable-vcd) _vcd=yes ;;
1037 --disable-vcd) _vcd=no ;;
1038 --enable-bluray) _bluray=yes ;;
1039 --disable-bluray) _bluray=no ;;
1040 --enable-dvdread) _dvdread=yes ;;
1041 --disable-dvdread) _dvdread=no ;;
1042 --enable-dvdread-internal) _dvdread_internal=yes ;;
1043 --disable-dvdread-internal) _dvdread_internal=no ;;
1044 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1045 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1046 --enable-dvdnav) _dvdnav=yes ;;
1047 --disable-dvdnav) _dvdnav=no ;;
1048 --enable-xanim) _xanim=yes ;;
1049 --disable-xanim) _xanim=no ;;
1050 --enable-real) _real=yes ;;
1051 --disable-real) _real=no ;;
1052 --enable-live) _live=yes ;;
1053 --disable-live) _live=no ;;
1054 --enable-nemesi) _nemesi=yes ;;
1055 --disable-nemesi) _nemesi=no ;;
1056 --enable-xinerama) _xinerama=yes ;;
1057 --disable-xinerama) _xinerama=no ;;
1058 --enable-mga) _mga=yes ;;
1059 --disable-mga) _mga=no ;;
1060 --enable-xmga) _xmga=yes ;;
1061 --disable-xmga) _xmga=no ;;
1062 --enable-vm) _vm=yes ;;
1063 --disable-vm) _vm=no ;;
1064 --enable-xf86keysym) _xf86keysym=yes ;;
1065 --disable-xf86keysym) _xf86keysym=no ;;
1066 --enable-mlib) _mlib=yes ;;
1067 --disable-mlib) _mlib=no ;;
1068 --enable-sunaudio) _sunaudio=yes ;;
1069 --disable-sunaudio) _sunaudio=no ;;
1070 --enable-sgiaudio) _sgiaudio=yes ;;
1071 --disable-sgiaudio) _sgiaudio=no ;;
1072 --enable-alsa) _alsa=yes ;;
1073 --disable-alsa) _alsa=no ;;
1074 --enable-tv) _tv=yes ;;
1075 --disable-tv) _tv=no ;;
1076 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1077 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1078 --enable-tv-v4l1) _tv_v4l1=yes ;;
1079 --disable-tv-v4l1) _tv_v4l1=no ;;
1080 --enable-tv-v4l2) _tv_v4l2=yes ;;
1081 --disable-tv-v4l2) _tv_v4l2=no ;;
1082 --enable-tv-dshow) _tv_dshow=yes ;;
1083 --disable-tv-dshow) _tv_dshow=no ;;
1084 --enable-radio) _radio=yes ;;
1085 --enable-radio-capture) _radio_capture=yes ;;
1086 --disable-radio-capture) _radio_capture=no ;;
1087 --disable-radio) _radio=no ;;
1088 --enable-radio-v4l) _radio_v4l=yes ;;
1089 --disable-radio-v4l) _radio_v4l=no ;;
1090 --enable-radio-v4l2) _radio_v4l2=yes ;;
1091 --disable-radio-v4l2) _radio_v4l2=no ;;
1092 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1093 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1094 --enable-pvr) _pvr=yes ;;
1095 --disable-pvr) _pvr=no ;;
1096 --enable-fastmemcpy) _fastmemcpy=yes ;;
1097 --disable-fastmemcpy) _fastmemcpy=no ;;
1098 --enable-networking) networking=yes ;;
1099 --disable-networking) networking=no ;;
1100 --enable-winsock2_h) _winsock2_h=yes ;;
1101 --disable-winsock2_h) _winsock2_h=no ;;
1102 --enable-smb) _smb=yes ;;
1103 --disable-smb) _smb=no ;;
1104 --enable-vidix) _vidix=yes ;;
1105 --disable-vidix) _vidix=no ;;
1106 --with-vidix-drivers=*)
1107 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1109 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1110 --enable-dhahelper) _dhahelper=yes ;;
1111 --disable-dhahelper) _dhahelper=no ;;
1112 --enable-svgalib_helper) _svgalib_helper=yes ;;
1113 --disable-svgalib_helper) _svgalib_helper=no ;;
1114 --enable-joystick) _joystick=yes ;;
1115 --disable-joystick) _joystick=no ;;
1116 --enable-xvid) _xvid=yes ;;
1117 --disable-xvid) _xvid=no ;;
1118 --enable-x264) _x264=yes ;;
1119 --disable-x264) _x264=no ;;
1120 --enable-libnut) _libnut=yes ;;
1121 --disable-libnut) _libnut=no ;;
1122 --enable-ffmpeg) ffmpeg=yes ;;
1123 --disable-ffmpeg) ffmpeg=no ;;
1124 --ffmpeg-source-dir=*)
1125 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1127 --enable-lirc) _lirc=yes ;;
1128 --disable-lirc) _lirc=no ;;
1129 --enable-lircc) _lircc=yes ;;
1130 --disable-lircc) _lircc=no ;;
1131 --enable-apple-remote) _apple_remote=yes ;;
1132 --disable-apple-remote) _apple_remote=no ;;
1133 --enable-apple-ir) _apple_ir=yes ;;
1134 --disable-apple-ir) _apple_ir=no ;;
1135 --enable-gui) _gui=yes ;;
1136 --disable-gui) _gui=no ;;
1137 --enable-gtk1) _gtk1=yes ;;
1138 --disable-gtk1) _gtk1=no ;;
1139 --enable-termcap) _termcap=yes ;;
1140 --disable-termcap) _termcap=no ;;
1141 --enable-termios) _termios=yes ;;
1142 --disable-termios) _termios=no ;;
1143 --enable-3dfx) _3dfx=yes ;;
1144 --disable-3dfx) _3dfx=no ;;
1145 --enable-s3fb) _s3fb=yes ;;
1146 --disable-s3fb) _s3fb=no ;;
1147 --enable-wii) _wii=yes ;;
1148 --disable-wii) _wii=no ;;
1149 --enable-tdfxfb) _tdfxfb=yes ;;
1150 --disable-tdfxfb) _tdfxfb=no ;;
1151 --disable-tdfxvid) _tdfxvid=no ;;
1152 --enable-tdfxvid) _tdfxvid=yes ;;
1153 --disable-xvr100) _xvr100=no ;;
1154 --enable-xvr100) _xvr100=yes ;;
1155 --disable-tga) _tga=no ;;
1156 --enable-tga) _tga=yes ;;
1157 --enable-directfb) _directfb=yes ;;
1158 --disable-directfb) _directfb=no ;;
1159 --enable-zr) _zr=yes ;;
1160 --disable-zr) _zr=no ;;
1161 --enable-bl) _bl=yes ;;
1162 --disable-bl) _bl=no ;;
1163 --enable-mtrr) _mtrr=yes ;;
1164 --disable-mtrr) _mtrr=no ;;
1165 --enable-largefiles) _largefiles=yes ;;
1166 --disable-largefiles) _largefiles=no ;;
1167 --enable-shm) _shm=yes ;;
1168 --disable-shm) _shm=no ;;
1169 --enable-select) _select=yes ;;
1170 --disable-select) _select=no ;;
1171 --enable-cdparanoia) _cdparanoia=yes ;;
1172 --disable-cdparanoia) _cdparanoia=no ;;
1173 --enable-cddb) _cddb=yes ;;
1174 --disable-cddb) _cddb=no ;;
1175 --enable-big-endian) _big_endian=yes ;;
1176 --disable-big-endian) _big_endian=no ;;
1177 --enable-bitmap-font) _bitmap_font=yes ;;
1178 --disable-bitmap-font) _bitmap_font=no ;;
1179 --enable-freetype) _freetype=yes ;;
1180 --disable-freetype) _freetype=no ;;
1181 --enable-fontconfig) _fontconfig=yes ;;
1182 --disable-fontconfig) _fontconfig=no ;;
1183 --enable-unrarexec) _unrar_exec=yes ;;
1184 --disable-unrarexec) _unrar_exec=no ;;
1185 --enable-ftp) _ftp=yes ;;
1186 --disable-ftp) _ftp=no ;;
1187 --enable-vstream) _vstream=yes ;;
1188 --disable-vstream) _vstream=no ;;
1189 --enable-pthreads) _pthreads=yes ;;
1190 --disable-pthreads) _pthreads=no ;;
1191 --enable-w32threads) _w32threads=yes ;;
1192 --disable-w32threads) _w32threads=no ;;
1193 --enable-ass) _ass=yes ;;
1194 --disable-ass) _ass=no ;;
1195 --enable-rpath) _rpath=yes ;;
1196 --disable-rpath) _rpath=no ;;
1198 --enable-fribidi) _fribidi=yes ;;
1199 --disable-fribidi) _fribidi=no ;;
1201 --enable-enca) _enca=yes ;;
1202 --disable-enca) _enca=no ;;
1204 --enable-inet6) _inet6=yes ;;
1205 --disable-inet6) _inet6=no ;;
1207 --enable-gethostbyname2) _gethostbyname2=yes ;;
1208 --disable-gethostbyname2) _gethostbyname2=no ;;
1210 --enable-dga1) _dga1=yes ;;
1211 --disable-dga1) _dga1=no ;;
1212 --enable-dga2) _dga2=yes ;;
1213 --disable-dga2) _dga2=no ;;
1215 --enable-menu) _menu=yes ;;
1216 --disable-menu) _menu=no ;;
1218 --enable-qtx) _qtx=yes ;;
1219 --disable-qtx) _qtx=no ;;
1221 --enable-coreaudio) _coreaudio=yes ;;
1222 --disable-coreaudio) _coreaudio=no ;;
1223 --enable-corevideo) _corevideo=yes ;;
1224 --disable-corevideo) _corevideo=no ;;
1225 --enable-quartz) _quartz=yes ;;
1226 --disable-quartz) _quartz=no ;;
1227 --enable-macosx-finder) _macosx_finder=yes ;;
1228 --disable-macosx-finder) _macosx_finder=no ;;
1229 --enable-macosx-bundle) _macosx_bundle=yes ;;
1230 --disable-macosx-bundle) _macosx_bundle=no ;;
1232 --enable-maemo) _maemo=yes ;;
1233 --disable-maemo) _maemo=no ;;
1235 --enable-sortsub) _sortsub=yes ;;
1236 --disable-sortsub) _sortsub=no ;;
1238 --enable-crash-debug) _crash_debug=yes ;;
1239 --disable-crash-debug) _crash_debug=no ;;
1240 --enable-sighandler) _sighandler=yes ;;
1241 --disable-sighandler) _sighandler=no ;;
1242 --enable-win32dll) _win32dll=yes ;;
1243 --disable-win32dll) _win32dll=no ;;
1245 --enable-sse) _sse=yes ;;
1246 --disable-sse) _sse=no ;;
1247 --enable-sse2) _sse2=yes ;;
1248 --disable-sse2) _sse2=no ;;
1249 --enable-ssse3) _ssse3=yes ;;
1250 --disable-ssse3) _ssse3=no ;;
1251 --enable-mmxext) _mmxext=yes ;;
1252 --disable-mmxext) _mmxext=no ;;
1253 --enable-3dnow) _3dnow=yes ;;
1254 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1255 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1256 --disable-3dnowext) _3dnowext=no ;;
1257 --enable-cmov) _cmov=yes ;;
1258 --disable-cmov) _cmov=no ;;
1259 --enable-fast-cmov) _fast_cmov=yes ;;
1260 --disable-fast-cmov) _fast_cmov=no ;;
1261 --enable-fast-clz) _fast_clz=yes ;;
1262 --disable-fast-clz) _fast_clz=no ;;
1263 --enable-altivec) _altivec=yes ;;
1264 --disable-altivec) _altivec=no ;;
1265 --enable-armv5te) _armv5te=yes ;;
1266 --disable-armv5te) _armv5te=no ;;
1267 --enable-armv6) _armv6=yes ;;
1268 --disable-armv6) _armv6=no ;;
1269 --enable-armv6t2) _armv6t2=yes ;;
1270 --disable-armv6t2) _armv6t2=no ;;
1271 --enable-armvfp) _armvfp=yes ;;
1272 --disable-armvfp) _armvfp=no ;;
1273 --enable-neon) neon=yes ;;
1274 --disable-neon) neon=no ;;
1275 --enable-iwmmxt) _iwmmxt=yes ;;
1276 --disable-iwmmxt) _iwmmxt=no ;;
1277 --enable-mmx) _mmx=yes ;;
1278 --disable-mmx) # 3Dnow! and MMX2 require MMX
1279 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1282 echo "Unknown parameter: $ac_option"
1283 exit 1
1286 esac
1287 done
1289 if test "$_gui" = yes ; then
1290 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1291 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1294 # Atmos: moved this here, to be correct, if --prefix is specified
1295 test -z "$_bindir" && _bindir="$_prefix/bin"
1296 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1297 test -z "$_mandir" && _mandir="$_prefix/share/man"
1298 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1299 test -z "$_libdir" && _libdir="$_prefix/lib"
1300 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1302 # Determine our OS name and CPU architecture
1303 if test -z "$_target" ; then
1304 # OS name
1305 system_name=$(uname -s 2>&1)
1306 case "$system_name" in
1307 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1309 Haiku)
1310 system_name=BeOS
1312 IRIX*)
1313 system_name=IRIX
1315 GNU/kFreeBSD)
1316 system_name=FreeBSD
1318 HP-UX*)
1319 system_name=HP-UX
1321 [cC][yY][gG][wW][iI][nN]*)
1322 system_name=CYGWIN
1324 MINGW32*)
1325 system_name=MINGW32
1327 OS/2*)
1328 system_name=OS/2
1331 system_name="$system_name-UNKNOWN"
1333 esac
1336 # host's CPU/instruction set
1337 host_arch=$(uname -p 2>&1)
1338 case "$host_arch" in
1339 i386|sparc|ppc|alpha|arm|mips|vax)
1341 powerpc) # Darwin returns 'powerpc'
1342 host_arch=ppc
1344 *) # uname -p on Linux returns 'unknown' for the processor type,
1345 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1347 # Maybe uname -m (machine hardware name) returns something we
1348 # recognize.
1350 # x86/x86pc is used by QNX
1351 case "$(uname -m 2>&1)" in
1352 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 ;;
1353 ia64) host_arch=ia64 ;;
1354 macppc|ppc) host_arch=ppc ;;
1355 ppc64) host_arch=ppc64 ;;
1356 alpha) host_arch=alpha ;;
1357 sparc) host_arch=sparc ;;
1358 sparc64) host_arch=sparc64 ;;
1359 parisc*|hppa*|9000*) host_arch=hppa ;;
1360 arm*|zaurus|cats) host_arch=arm ;;
1361 sh3|sh4|sh4a) host_arch=sh ;;
1362 s390) host_arch=s390 ;;
1363 s390x) host_arch=s390x ;;
1364 *mips*) host_arch=mips ;;
1365 vax) host_arch=vax ;;
1366 xtensa*) host_arch=xtensa ;;
1367 *) host_arch=UNKNOWN ;;
1368 esac
1370 esac
1371 else # if test -z "$_target"
1372 system_name=$(echo $_target | cut -d '-' -f 2)
1373 case "$(echo $system_name | tr A-Z a-z)" in
1374 linux) system_name=Linux ;;
1375 freebsd) system_name=FreeBSD ;;
1376 gnu/kfreebsd) system_name=FreeBSD ;;
1377 netbsd) system_name=NetBSD ;;
1378 bsd/os) system_name=BSD/OS ;;
1379 openbsd) system_name=OpenBSD ;;
1380 dragonfly) system_name=DragonFly ;;
1381 sunos) system_name=SunOS ;;
1382 qnx) system_name=QNX ;;
1383 morphos) system_name=MorphOS ;;
1384 amigaos) system_name=AmigaOS ;;
1385 mingw32*) system_name=MINGW32 ;;
1386 esac
1387 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1388 host_arch=$(echo $_target | cut -d '-' -f 1)
1389 if test $(echo $host_arch) != "x86_64" ; then
1390 host_arch=$(echo $host_arch | tr '_' '-')
1394 extra_cflags="-I. $extra_cflags"
1395 _timer=timer-linux.c
1396 _getch=getch2.c
1397 if freebsd ; then
1398 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1399 extra_cflags="$extra_cflags -I/usr/local/include"
1402 if netbsd || dragonfly ; then
1403 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1404 extra_cflags="$extra_cflags -I/usr/pkg/include"
1407 if darwin; then
1408 extra_cflags="-mdynamic-no-pic $extra_cflags"
1409 if test "$(basename $_cc)" != "clang" ; then
1410 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1412 _timer=timer-darwin.c
1415 if aix ; then
1416 extra_ldflags="$extra_ldflags -lC"
1419 if irix ; then
1420 _ranlib='ar -r'
1421 elif linux ; then
1422 _ranlib='true'
1425 if win32 ; then
1426 _exesuf=".exe"
1427 extra_cflags="$extra_cflags -fno-common"
1428 # -lwinmm is always needed for osdep/timer-win2.c
1429 extra_ldflags="$extra_ldflags -lwinmm"
1430 _pe_executable=yes
1431 _timer=timer-win2.c
1432 _priority=yes
1433 def_dos_paths="#define HAVE_DOS_PATHS 1"
1434 def_priority="#define CONFIG_PRIORITY 1"
1437 if mingw32 ; then
1438 _getch=getch2-win.c
1439 _need_shmem=no
1442 if amigaos ; then
1443 _select=no
1444 _sighandler=no
1445 _stream_cache=no
1446 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1447 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1450 if qnx ; then
1451 extra_ldflags="$extra_ldflags -lph"
1454 if os2 ; then
1455 _exesuf=".exe"
1456 _getch=getch2-os2.c
1457 _need_shmem=no
1458 _priority=yes
1459 def_dos_paths="#define HAVE_DOS_PATHS 1"
1460 def_priority="#define CONFIG_PRIORITY 1"
1463 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1464 test "$tmpdir" && break
1465 done
1467 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1468 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1470 TMPLOG="config.log"
1471 TMPC="$mplayer_tmpdir/tmp.c"
1472 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1473 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1474 TMPH="$mplayer_tmpdir/tmp.h"
1475 TMPS="$mplayer_tmpdir/tmp.S"
1477 rm -f "$TMPLOG"
1478 echo configuration: $configuration > "$TMPLOG"
1479 echo >> "$TMPLOG"
1482 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1483 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1487 # Checking CC version...
1488 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1489 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1490 echocheck "$_cc version"
1491 cc_vendor=intel
1492 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1493 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1494 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1495 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1496 # TODO verify older icc/ecc compatibility
1497 case $cc_version in
1499 cc_version="v. ?.??, bad"
1500 cc_fail=yes
1502 10.1|11.0|11.1)
1503 cc_version="$cc_version, ok"
1506 cc_version="$cc_version, bad"
1507 cc_fail=yes
1509 esac
1510 echores "$cc_version"
1511 else
1512 for _cc in "$_cc" gcc cc ; do
1513 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1514 if test "$cc_name_tmp" = "gcc"; then
1515 cc_name=$cc_name_tmp
1516 echocheck "$_cc version"
1517 cc_vendor=gnu
1518 cc_version=$($_cc -dumpversion 2>&1)
1519 case $cc_version in
1520 2.96*)
1521 cc_fail=yes
1524 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1525 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1526 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1528 esac
1529 echores "$cc_version"
1530 break
1532 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1533 if test "$cc_name_tmp" = "clang"; then
1534 echocheck "$_cc version"
1535 cc_vendor=clang
1536 cc_version=$($_cc -dumpversion 2>&1)
1537 res_comment="experimental support only"
1538 echores "clang $cc_version"
1539 break
1541 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1542 if test "$cc_name_tmp" = "Sun C"; then
1543 echocheck "$_cc version"
1544 cc_vendor=sun
1545 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1546 res_comment="experimental support only"
1547 echores "Sun C $cc_version"
1548 break
1550 done
1551 fi # icc
1552 test "$cc_fail" = yes && die "unsupported compiler version"
1554 if test -z "$_target" && x86 ; then
1555 cat > $TMPC << EOF
1556 int main(void) {
1557 int test[(int)sizeof(char *)-7];
1558 return 0;
1561 cc_check && host_arch=x86_64 || host_arch=i386
1564 echo "Detected operating system: $system_name"
1565 echo "Detected host architecture: $host_arch"
1567 echocheck "host cc"
1568 test "$_host_cc" || _host_cc=$_cc
1569 echores $_host_cc
1571 echocheck "cross compilation"
1572 if test $_cross_compile = auto ; then
1573 _cross_compile=yes
1574 cflag_check "" && "$TMPEXE" && _cross_compile=no
1576 echores $_cross_compile
1578 if test $_cross_compile = yes; then
1579 tmp_run() {
1580 return 0
1584 # ---
1586 # now that we know what compiler should be used for compilation, try to find
1587 # out which assembler is used by the $_cc compiler
1588 if test "$_as" = auto ; then
1589 _as=$($_cc -print-prog-name=as)
1590 test -z "$_as" && _as=as
1593 if test "$_nm" = auto ; then
1594 _nm=$($_cc -print-prog-name=nm)
1595 test -z "$_nm" && _nm=nm
1598 # XXX: this should be ok..
1599 _cpuinfo="echo"
1601 if test "$_runtime_cpudetection" = no ; then
1603 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1604 # FIXME: Remove the cygwin check once AMD CPUs are supported
1605 if test -r /proc/cpuinfo && ! cygwin; then
1606 # Linux with /proc mounted, extract CPU information from it
1607 _cpuinfo="cat /proc/cpuinfo"
1608 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1609 # FreeBSD with Linux emulation /proc mounted,
1610 # extract CPU information from it
1611 # Don't use it on x86 though, it never reports 3Dnow
1612 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1613 elif darwin && ! x86 ; then
1614 # use hostinfo on Darwin
1615 _cpuinfo="hostinfo"
1616 elif aix; then
1617 # use 'lsattr' on AIX
1618 _cpuinfo="lsattr -E -l proc0 -a type"
1619 elif x86; then
1620 # all other OSes try to extract CPU information from a small helper
1621 # program cpuinfo instead
1622 $_cc -o cpuinfo$_exesuf cpuinfo.c
1623 _cpuinfo="./cpuinfo$_exesuf"
1626 if x86 ; then
1627 # gather more CPU information
1628 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1629 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1630 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1631 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1632 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1634 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1636 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1637 -e s/xmm/sse/ -e s/kni/sse/)
1639 for ext in $pparam ; do
1640 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1641 done
1643 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1644 test $_sse = kernel_check && _mmxext=kernel_check
1646 echocheck "CPU vendor"
1647 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1649 echocheck "CPU type"
1650 echores "$pname"
1653 fi # test "$_runtime_cpudetection" = no
1655 if x86 && test "$_runtime_cpudetection" = no ; then
1656 extcheck() {
1657 if test "$1" = kernel_check ; then
1658 echocheck "kernel support of $2"
1659 cat > $TMPC <<EOF
1660 #include <stdlib.h>
1661 #include <signal.h>
1662 static void catch(int sig) { exit(1); }
1663 int main(void) {
1664 signal(SIGILL, catch);
1665 __asm__ volatile ("$3":::"memory"); return 0;
1669 if cc_check && tmp_run ; then
1670 eval _$2=yes
1671 echores "yes"
1672 _optimizing="$_optimizing $2"
1673 return 0
1674 else
1675 eval _$2=no
1676 echores "failed"
1677 echo "It seems that your kernel does not correctly support $2."
1678 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1679 return 1
1682 return 0
1685 extcheck $_mmx "mmx" "emms"
1686 extcheck $_mmxext "mmxext" "sfence"
1687 extcheck $_3dnow "3dnow" "femms"
1688 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1689 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1690 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1691 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1692 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1694 echocheck "mtrr support"
1695 if test "$_mtrr" = kernel_check ; then
1696 _mtrr="yes"
1697 _optimizing="$_optimizing mtrr"
1699 echores "$_mtrr"
1701 if test "$_gcc3_ext" != ""; then
1702 # if we had to disable sse/sse2 because the active kernel does not
1703 # support this instruction set extension, we also have to tell
1704 # gcc3 to not generate sse/sse2 instructions for normal C code
1705 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1711 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1712 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1713 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1714 subarch_all='X86_32 X86_64 PPC64'
1715 case "$host_arch" in
1716 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1717 arch='x86'
1718 subarch='x86_32'
1719 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1720 iproc=486
1721 proc=i486
1724 if test "$_runtime_cpudetection" = no ; then
1725 case "$pvendor" in
1726 AuthenticAMD)
1727 case "$pfamily" in
1728 3) proc=i386 iproc=386 ;;
1729 4) proc=i486 iproc=486 ;;
1730 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1731 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1732 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1733 proc=k6-3
1734 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1735 proc=geode
1736 elif test "$pmodel" -ge 8; then
1737 proc=k6-2
1738 elif test "$pmodel" -ge 6; then
1739 proc=k6
1740 else
1741 proc=i586
1744 6) iproc=686
1745 # It's a bit difficult to determine the correct type of Family 6
1746 # AMD CPUs just from their signature. Instead, we check directly
1747 # whether it supports SSE.
1748 if test "$_sse" = yes; then
1749 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1750 proc=athlon-xp
1751 else
1752 # Again, gcc treats athlon and athlon-tbird similarly.
1753 proc=athlon
1756 15) iproc=686
1757 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1758 # caught and remedied in the optimization tests below.
1759 proc=k8
1762 *) proc=amdfam10 iproc=686
1763 test $_fast_clz = "auto" && _fast_clz=yes
1765 esac
1767 GenuineIntel)
1768 case "$pfamily" in
1769 3) proc=i386 iproc=386 ;;
1770 4) proc=i486 iproc=486 ;;
1771 5) iproc=586
1772 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1773 proc=pentium-mmx # 4 is desktop, 8 is mobile
1774 else
1775 proc=i586
1778 6) iproc=686
1779 if test "$pmodel" -ge 15; then
1780 proc=core2
1781 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1782 proc=pentium-m
1783 elif test "$pmodel" -ge 7; then
1784 proc=pentium3
1785 elif test "$pmodel" -ge 3; then
1786 proc=pentium2
1787 else
1788 proc=i686
1790 test $_fast_clz = "auto" && _fast_clz=yes
1792 15) iproc=686
1793 # A nocona in 32-bit mode has no more capabilities than a prescott.
1794 if test "$pmodel" -ge 3; then
1795 proc=prescott
1796 else
1797 proc=pentium4
1798 test $_fast_clz = "auto" && _fast_clz=yes
1800 test $_fast_cmov = "auto" && _fast_cmov=no
1802 *) proc=prescott iproc=686 ;;
1803 esac
1805 CentaurHauls)
1806 case "$pfamily" in
1807 5) iproc=586
1808 if test "$pmodel" -ge 8; then
1809 proc=winchip2
1810 elif test "$pmodel" -ge 4; then
1811 proc=winchip-c6
1812 else
1813 proc=i586
1816 6) iproc=686
1817 if test "$pmodel" -ge 9; then
1818 proc=c3-2
1819 else
1820 proc=c3
1821 iproc=586
1824 *) proc=i686 iproc=i686 ;;
1825 esac
1827 unknown)
1828 case "$pfamily" in
1829 3) proc=i386 iproc=386 ;;
1830 4) proc=i486 iproc=486 ;;
1831 *) proc=i586 iproc=586 ;;
1832 esac
1835 proc=i586 iproc=586 ;;
1836 esac
1837 test $_fast_clz = "auto" && _fast_clz=no
1838 fi # test "$_runtime_cpudetection" = no
1841 # check that gcc supports our CPU, if not, fall back to earlier ones
1842 # LGB: check -mcpu and -march swithing step by step with enabling
1843 # to fall back till 386.
1845 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1847 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1848 cpuopt=-mtune
1849 else
1850 cpuopt=-mcpu
1853 echocheck "GCC & CPU optimization abilities"
1854 if test "$_runtime_cpudetection" = no ; then
1855 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1856 cflag_check -march=native && proc=native
1858 if test "$proc" = "amdfam10"; then
1859 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1861 if test "$proc" = "k8"; then
1862 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1864 if test "$proc" = "athlon-xp"; then
1865 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1867 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1868 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1870 if test "$proc" = "k6" || test "$proc" = "c3"; then
1871 if ! cflag_check -march=$proc $cpuopt=$proc; then
1872 if cflag_check -march=i586 $cpuopt=i686; then
1873 proc=i586-i686
1874 else
1875 proc=i586
1879 if test "$proc" = "prescott" ; then
1880 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1882 if test "$proc" = "core2" ; then
1883 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1885 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
1886 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1888 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1889 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1891 if test "$proc" = "i586"; then
1892 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1894 if test "$proc" = "i486" ; then
1895 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1897 if test "$proc" = "i386" ; then
1898 cflag_check -march=$proc $cpuopt=$proc || proc=error
1900 if test "$proc" = "error" ; then
1901 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1902 _mcpu=""
1903 _march=""
1904 _optimizing=""
1905 elif test "$proc" = "i586-i686"; then
1906 _march="-march=i586"
1907 _mcpu="$cpuopt=i686"
1908 _optimizing="$proc"
1909 else
1910 _march="-march=$proc"
1911 _mcpu="$cpuopt=$proc"
1912 _optimizing="$proc"
1914 else # if test "$_runtime_cpudetection" = no
1915 _mcpu="$cpuopt=generic"
1916 # at least i486 required, for bswap instruction
1917 _march="-march=i486"
1918 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1919 cflag_check $_mcpu || _mcpu=""
1920 cflag_check $_march $_mcpu || _march=""
1923 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1924 ## autodetected mcpu/march parameters
1925 if test "$_target" ; then
1926 # TODO: it may be a good idea to check GCC and fall back in all cases
1927 if test "$host_arch" = "i586-i686"; then
1928 _march="-march=i586"
1929 _mcpu="$cpuopt=i686"
1930 else
1931 _march="-march=$host_arch"
1932 _mcpu="$cpuopt=$host_arch"
1935 proc="$host_arch"
1937 case "$proc" in
1938 i386) iproc=386 ;;
1939 i486) iproc=486 ;;
1940 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1941 i686|athlon*|pentium*) iproc=686 ;;
1942 *) iproc=586 ;;
1943 esac
1946 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1947 _fast_cmov="yes"
1948 else
1949 _fast_cmov="no"
1951 test $_fast_clz = "auto" && _fast_clz=yes
1953 echores "$proc"
1956 ia64)
1957 arch='ia64'
1958 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1959 iproc='ia64'
1962 x86_64|amd64)
1963 arch='x86'
1964 subarch='x86_64'
1965 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1966 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1967 iproc='x86_64'
1969 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1970 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1971 cpuopt=-mtune
1972 else
1973 cpuopt=-mcpu
1975 if test "$_runtime_cpudetection" = no ; then
1976 case "$pvendor" in
1977 AuthenticAMD)
1978 case "$pfamily" in
1979 15) proc=k8
1980 test $_fast_clz = "auto" && _fast_clz=no
1982 *) proc=amdfam10;;
1983 esac
1985 GenuineIntel)
1986 case "$pfamily" in
1987 6) proc=core2;;
1989 # 64-bit prescotts exist, but as far as GCC is concerned they
1990 # have the same capabilities as a nocona.
1991 proc=nocona
1992 test $_fast_cmov = "auto" && _fast_cmov=no
1993 test $_fast_clz = "auto" && _fast_clz=no
1995 esac
1998 proc=error;;
1999 esac
2000 fi # test "$_runtime_cpudetection" = no
2002 echocheck "GCC & CPU optimization abilities"
2003 # This is a stripped-down version of the i386 fallback.
2004 if test "$_runtime_cpudetection" = no ; then
2005 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2006 cflag_check -march=native && proc=native
2008 # --- AMD processors ---
2009 if test "$proc" = "amdfam10"; then
2010 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2012 if test "$proc" = "k8"; then
2013 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2015 # This will fail if gcc version < 3.3, which is ok because earlier
2016 # versions don't really support 64-bit on amd64.
2017 # Is this a valid assumption? -Corey
2018 if test "$proc" = "athlon-xp"; then
2019 cflag_check -march=$proc $cpuopt=$proc || proc=error
2021 # --- Intel processors ---
2022 if test "$proc" = "core2"; then
2023 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2025 if test "$proc" = "x86-64"; then
2026 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2028 if test "$proc" = "nocona"; then
2029 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2031 if test "$proc" = "pentium4"; then
2032 cflag_check -march=$proc $cpuopt=$proc || proc=error
2035 _march="-march=$proc"
2036 _mcpu="$cpuopt=$proc"
2037 if test "$proc" = "error" ; then
2038 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2039 _mcpu=""
2040 _march=""
2042 else # if test "$_runtime_cpudetection" = no
2043 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2044 _march="-march=x86-64"
2045 _mcpu="$cpuopt=generic"
2046 cflag_check $_mcpu || _mcpu="x86-64"
2047 cflag_check $_mcpu || _mcpu=""
2048 cflag_check $_march $_mcpu || _march=""
2051 _optimizing="$proc"
2052 test $_fast_cmov = "auto" && _fast_cmov=yes
2053 test $_fast_clz = "auto" && _fast_clz=yes
2055 echores "$proc"
2058 sparc|sparc64)
2059 arch='sparc'
2060 iproc='sparc'
2061 if test "$host_arch" = "sparc64" ; then
2062 _vis='yes'
2063 proc='ultrasparc'
2064 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2065 elif sunos ; then
2066 echocheck "CPU type"
2067 karch=$(uname -m)
2068 case "$(echo $karch)" in
2069 sun4) proc=v7 ;;
2070 sun4c) proc=v7 ;;
2071 sun4d) proc=v8 ;;
2072 sun4m) proc=v8 ;;
2073 sun4u) proc=ultrasparc _vis='yes' ;;
2074 sun4v) proc=v9 ;;
2075 *) proc=v8 ;;
2076 esac
2077 echores "$proc"
2078 else
2079 proc=v8
2081 _mcpu="-mcpu=$proc"
2082 _optimizing="$proc"
2085 arm*)
2086 arch='arm'
2087 iproc='arm'
2090 avr32)
2091 arch='avr32'
2092 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2093 iproc='avr32'
2094 test $_fast_clz = "auto" && _fast_clz=yes
2097 sh|sh4)
2098 arch='sh4'
2099 iproc='sh4'
2102 ppc|ppc64|powerpc|powerpc64)
2103 arch='ppc'
2104 def_dcbzl='#define HAVE_DCBZL 0'
2105 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2106 iproc='ppc'
2108 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2109 subarch='ppc64'
2110 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2112 echocheck "CPU type"
2113 case $system_name in
2114 Linux)
2115 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2116 if test -n "$($_cpuinfo | grep altivec)"; then
2117 test $_altivec = auto && _altivec=yes
2120 Darwin)
2121 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2122 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2123 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2124 test $_altivec = auto && _altivec=yes
2127 NetBSD)
2128 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2129 case $cc_version in
2130 2*|3.0*|3.1*|3.2*|3.3*)
2133 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2134 test $_altivec = auto && _altivec=yes
2137 esac
2139 AIX)
2140 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2142 esac
2143 if test "$_altivec" = yes; then
2144 echores "$proc altivec"
2145 else
2146 _altivec=no
2147 echores "$proc"
2150 echocheck "GCC & CPU optimization abilities"
2152 if test -n "$proc"; then
2153 case "$proc" in
2154 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2155 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2156 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2157 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2158 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2159 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2160 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2161 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2162 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2163 *) ;;
2164 esac
2165 # gcc 3.1(.1) and up supports 7400 and 7450
2166 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2167 case "$proc" in
2168 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2169 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2170 *) ;;
2171 esac
2173 # gcc 3.2 and up supports 970
2174 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2175 case "$proc" in
2176 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2177 def_dcbzl='#define HAVE_DCBZL 1' ;;
2178 *) ;;
2179 esac
2181 # gcc 3.3 and up supports POWER4
2182 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2183 case "$proc" in
2184 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2185 *) ;;
2186 esac
2188 # gcc 3.4 and up supports 440*
2189 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2190 case "$proc" in
2191 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2192 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2193 *) ;;
2194 esac
2196 # gcc 4.0 and up supports POWER5
2197 if test "$_cc_major" -ge "4"; then
2198 case "$proc" in
2199 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2200 *) ;;
2201 esac
2205 if test -n "$_mcpu"; then
2206 _optimizing=$(echo $_mcpu | cut -c 8-)
2207 echores "$_optimizing"
2208 else
2209 echores "none"
2212 test $_fast_clz = "auto" && _fast_clz=yes
2216 alpha*)
2217 arch='alpha'
2218 iproc='alpha'
2219 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2221 echocheck "CPU type"
2222 cat > $TMPC << EOF
2223 int main(void) {
2224 unsigned long ver, mask;
2225 __asm__ ("implver %0" : "=r" (ver));
2226 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2227 printf("%ld-%x\n", ver, ~mask);
2228 return 0;
2231 $_cc -o "$TMPEXE" "$TMPC"
2232 case $("$TMPEXE") in
2234 0-0) proc="ev4"; _mvi="0";;
2235 1-0) proc="ev5"; _mvi="0";;
2236 1-1) proc="ev56"; _mvi="0";;
2237 1-101) proc="pca56"; _mvi="1";;
2238 2-303) proc="ev6"; _mvi="1";;
2239 2-307) proc="ev67"; _mvi="1";;
2240 2-1307) proc="ev68"; _mvi="1";;
2241 esac
2242 echores "$proc"
2244 echocheck "GCC & CPU optimization abilities"
2245 if test "$proc" = "ev68" ; then
2246 cc_check -mcpu=$proc || proc=ev67
2248 if test "$proc" = "ev67" ; then
2249 cc_check -mcpu=$proc || proc=ev6
2251 _mcpu="-mcpu=$proc"
2252 echores "$proc"
2254 test $_fast_clz = "auto" && _fast_clz=yes
2256 _optimizing="$proc"
2259 mips)
2260 arch='mips'
2261 iproc='mips'
2263 if irix ; then
2264 echocheck "CPU type"
2265 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2266 case "$(echo $proc)" in
2267 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2268 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2269 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2270 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2271 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2272 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2273 esac
2274 # gcc < 3.x does not support -mtune.
2275 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2276 _mcpu=''
2278 echores "$proc"
2281 test $_fast_clz = "auto" && _fast_clz=yes
2285 hppa)
2286 arch='pa_risc'
2287 iproc='PA-RISC'
2290 s390)
2291 arch='s390'
2292 iproc='390'
2295 s390x)
2296 arch='s390x'
2297 iproc='390x'
2300 vax)
2301 arch='vax'
2302 iproc='vax'
2305 xtensa)
2306 arch='xtensa'
2307 iproc='xtensa'
2310 generic)
2311 arch='generic'
2315 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2316 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2317 die "unsupported architecture $host_arch"
2319 esac # case "$host_arch" in
2321 if test "$_runtime_cpudetection" = yes ; then
2322 if x86 ; then
2323 test "$_cmov" != no && _cmov=yes
2324 x86_32 && _cmov=no
2325 test "$_mmx" != no && _mmx=yes
2326 test "$_3dnow" != no && _3dnow=yes
2327 test "$_3dnowext" != no && _3dnowext=yes
2328 test "$_mmxext" != no && _mmxext=yes
2329 test "$_sse" != no && _sse=yes
2330 test "$_sse2" != no && _sse2=yes
2331 test "$_ssse3" != no && _ssse3=yes
2332 test "$_mtrr" != no && _mtrr=yes
2334 if ppc; then
2335 _altivec=yes
2340 # endian testing
2341 echocheck "byte order"
2342 if test "$_big_endian" = auto ; then
2343 cat > $TMPC <<EOF
2344 short ascii_name[] = {
2345 'M' << 8 | 'P', 'l' << 8 | 'a', 'y' << 8 | 'e', 'r' << 8 | 'B',
2346 'i' << 8 | 'g', 'E' << 8 | 'n', 'd' << 8 | 'i', 'a' << 8 | 'n', 0 };
2347 int main(void) { return (long)ascii_name; }
2349 if cc_check ; then
2350 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2351 _big_endian=yes
2352 else
2353 _big_endian=no
2355 else
2356 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2359 if test "$_big_endian" = yes ; then
2360 _byte_order='big-endian'
2361 def_words_endian='#define WORDS_BIGENDIAN 1'
2362 def_bigendian='#define HAVE_BIGENDIAN 1'
2363 else
2364 _byte_order='little-endian'
2365 def_words_endian='#undef WORDS_BIGENDIAN'
2366 def_bigendian='#define HAVE_BIGENDIAN 0'
2368 echores "$_byte_order"
2371 echocheck "extern symbol prefix"
2372 cat > $TMPC << EOF
2373 int ff_extern;
2375 cc_check -c || die "Symbol mangling check failed."
2376 sym=$($_nm -P -g $TMPEXE)
2377 extern_prefix=${sym%%ff_extern*}
2378 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2379 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2380 echores $extern_prefix
2383 echocheck "assembler support of -pipe option"
2384 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2385 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2388 echocheck "compiler support of named assembler arguments"
2389 _named_asm_args=yes
2390 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2391 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2392 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2393 _named_asm_args=no
2394 def_named_asm_args="#undef NAMED_ASM_ARGS"
2396 echores $_named_asm_args
2399 if darwin && test "$cc_vendor" = "gnu" ; then
2400 echocheck "GCC support of -mstackrealign"
2401 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2402 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2403 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2404 # wrong code with this flag, but this can be worked around by adding
2405 # -fno-unit-at-a-time as described in the blog post at
2406 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2407 cat > $TMPC << EOF
2408 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2409 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2411 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2412 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2413 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2414 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2415 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2418 # Checking for CFLAGS
2419 _install_strip="-s"
2420 if test "$_profile" != "" || test "$_debug" != "" ; then
2421 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2422 WARNFLAGS="-W -Wall"
2423 _install_strip=
2424 elif test -z "$CFLAGS" ; then
2425 if test "$cc_vendor" = "intel" ; then
2426 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2427 WARNFLAGS="-wd167 -wd556 -wd144"
2428 elif test "$cc_vendor" = "sun" ; then
2429 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2430 elif test "$cc_vendor" = "clang"; then
2431 CFLAGS="-O2 $_march $_pipe"
2432 elif test "$cc_vendor" != "gnu" ; then
2433 CFLAGS="-O2 $_march $_mcpu $_pipe"
2434 else
2435 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2436 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2437 extra_ldflags="$extra_ldflags -ffast-math"
2439 else
2440 warn_cflags=yes
2443 if test "$cc_vendor" = "gnu" ; then
2444 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2445 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2446 # that's the only variable specific to C now, and this option is not valid
2447 # for C++.
2448 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2449 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2450 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2451 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2452 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2453 else
2454 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2457 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2458 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2461 if test -n "$LDFLAGS" ; then
2462 extra_ldflags="$extra_ldflags $LDFLAGS"
2463 warn_cflags=yes
2464 elif test "$cc_vendor" = "intel" ; then
2465 extra_ldflags="$extra_ldflags -i-static"
2467 if test -n "$CPPFLAGS" ; then
2468 extra_cflags="$extra_cflags $CPPFLAGS"
2469 warn_cflags=yes
2474 if x86_32 ; then
2475 # Checking assembler (_as) compatibility...
2476 # Added workaround for older as that reads from stdin by default - atmos
2477 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2478 echocheck "assembler ($_as $as_version)"
2480 _pref_as_version='2.9.1'
2481 echo 'nop' > $TMPS
2482 if test "$_mmx" = yes ; then
2483 echo 'emms' >> $TMPS
2485 if test "$_3dnow" = yes ; then
2486 _pref_as_version='2.10.1'
2487 echo 'femms' >> $TMPS
2489 if test "$_3dnowext" = yes ; then
2490 _pref_as_version='2.10.1'
2491 echo 'pswapd %mm0, %mm0' >> $TMPS
2493 if test "$_mmxext" = yes ; then
2494 _pref_as_version='2.10.1'
2495 echo 'movntq %mm0, (%eax)' >> $TMPS
2497 if test "$_sse" = yes ; then
2498 _pref_as_version='2.10.1'
2499 echo 'xorps %xmm0, %xmm0' >> $TMPS
2501 #if test "$_sse2" = yes ; then
2502 # _pref_as_version='2.11'
2503 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2505 if test "$_cmov" = yes ; then
2506 _pref_as_version='2.10.1'
2507 echo 'cmovb %eax, %ebx' >> $TMPS
2509 if test "$_ssse3" = yes ; then
2510 _pref_as_version='2.16.92'
2511 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2513 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2515 if test "$as_verc_fail" != yes ; then
2516 echores "ok"
2517 else
2518 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2519 echores "failed"
2520 die "obsolete binutils version"
2523 fi #if x86_32
2526 echocheck "PIC"
2527 pic=no
2528 cat > $TMPC << EOF
2529 int main(void) {
2530 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2531 #error PIC not enabled
2532 #endif
2533 return 0;
2536 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2537 echores $pic
2540 if x86 ; then
2542 echocheck ".align is a power of two"
2543 if test "$_asmalign_pot" = auto ; then
2544 _asmalign_pot=no
2545 inline_asm_check '".align 3"' && _asmalign_pot=yes
2547 if test "$_asmalign_pot" = "yes" ; then
2548 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2549 else
2550 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2552 echores $_asmalign_pot
2555 echocheck "10 assembler operands"
2556 ten_operands=no
2557 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2558 cat > $TMPC << EOF
2559 int main(void) {
2560 int x=0;
2561 __asm__ volatile(
2563 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2565 return 0;
2568 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2569 echores $ten_operands
2571 echocheck "ebx availability"
2572 ebx_available=no
2573 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2574 cat > $TMPC << EOF
2575 int main(void) {
2576 int x;
2577 __asm__ volatile(
2578 "xor %0, %0"
2579 :"=b"(x)
2580 // just adding ebx to clobber list seems unreliable with some
2581 // compilers, e.g. Haiku's gcc 2.95
2583 // and the above check does not work for OSX 64 bit...
2584 __asm__ volatile("":::"%ebx");
2585 return 0;
2588 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2589 echores $ebx_available
2592 echocheck "yasm"
2593 if test -z "$YASMFLAGS" ; then
2594 if darwin ; then
2595 x86_64 && objformat="macho64" || objformat="macho"
2596 elif win32 ; then
2597 objformat="win32"
2598 else
2599 objformat="elf"
2601 # currently tested for Linux x86, x86_64
2602 YASMFLAGS="-f $objformat"
2603 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2604 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2605 case "$objformat" in
2606 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2607 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2608 esac
2609 else
2610 warn_cflags=yes
2613 echo "pabsw xmm0, xmm0" > $TMPS
2614 yasm_check || _yasm=""
2615 if test $_yasm ; then
2616 def_yasm='#define HAVE_YASM 1'
2617 have_yasm="yes"
2618 echores "$_yasm"
2619 else
2620 def_yasm='#define HAVE_YASM 0'
2621 have_yasm="no"
2622 echores "no"
2625 echocheck "bswap"
2626 def_bswap='#define HAVE_BSWAP 0'
2627 echo 'bswap %eax' > $TMPS
2628 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2629 echores "$bswap"
2630 fi #if x86
2633 #FIXME: This should happen before the check for CFLAGS..
2634 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2635 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2637 # check if AltiVec is supported by the compiler, and how to enable it
2638 echocheck "GCC AltiVec flags"
2639 if $(cflag_check -maltivec -mabi=altivec) ; then
2640 _altivec_gcc_flags="-maltivec -mabi=altivec"
2641 # check if <altivec.h> should be included
2642 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2643 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2644 inc_altivec_h='#include <altivec.h>'
2645 else
2646 if $(cflag_check -faltivec) ; then
2647 _altivec_gcc_flags="-faltivec"
2648 else
2649 _altivec=no
2650 _altivec_gcc_flags="none, AltiVec disabled"
2654 echores "$_altivec_gcc_flags"
2656 # check if the compiler supports braces for vector declarations
2657 cat > $TMPC << EOF
2658 $inc_altivec_h
2659 int main(void) { (vector int) {1}; return 0; }
2661 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2663 # Disable runtime cpudetection if we cannot generate AltiVec code or
2664 # AltiVec is disabled by the user.
2665 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2666 && _runtime_cpudetection=no
2668 # Show that we are optimizing for AltiVec (if enabled and supported).
2669 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2670 && _optimizing="$_optimizing altivec"
2672 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2673 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2676 if ppc ; then
2677 def_xform_asm='#define HAVE_XFORM_ASM 0'
2678 xform_asm=no
2679 echocheck "XFORM ASM support"
2680 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2681 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2682 echores "$xform_asm"
2685 if arm ; then
2686 echocheck "ARM pld instruction"
2687 pld=no
2688 inline_asm_check '"pld [r0]"' && pld=yes
2689 echores "$pld"
2691 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2692 if test $_armv5te = "auto" ; then
2693 _armv5te=no
2694 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2696 echores "$_armv5te"
2698 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2700 echocheck "ARMv6 (SIMD instructions)"
2701 if test $_armv6 = "auto" ; then
2702 _armv6=no
2703 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2705 echores "$_armv6"
2707 echocheck "ARMv6t2 (SIMD instructions)"
2708 if test $_armv6t2 = "auto" ; then
2709 _armv6t2=no
2710 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2712 echores "$_armv6"
2714 echocheck "ARM VFP"
2715 if test $_armvfp = "auto" ; then
2716 _armvfp=no
2717 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2719 echores "$_armvfp"
2721 echocheck "ARM NEON"
2722 if test $neon = "auto" ; then
2723 neon=no
2724 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2726 echores "$neon"
2728 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2729 if test $_iwmmxt = "auto" ; then
2730 _iwmmxt=no
2731 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2733 echores "$_iwmmxt"
2736 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'
2737 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2738 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2739 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2740 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2741 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2742 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2743 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2744 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2745 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2746 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2747 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2748 test "$pld" = yes && cpuexts="PLD $cpuexts"
2749 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2750 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2751 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2752 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2753 test "$neon" = yes && cpuexts="NEON $cpuexts"
2754 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2755 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2756 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2758 # Checking kernel version...
2759 if x86_32 && linux ; then
2760 _k_verc_problem=no
2761 kernel_version=$(uname -r 2>&1)
2762 echocheck "$system_name kernel version"
2763 case "$kernel_version" in
2764 '') kernel_version="?.??"; _k_verc_fail=yes;;
2765 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2766 _k_verc_problem=yes;;
2767 esac
2768 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2769 _k_verc_fail=yes
2771 if test "$_k_verc_fail" ; then
2772 echores "$kernel_version, fail"
2773 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2774 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2775 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2776 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2777 echo "2.2.x you must upgrade it to get SSE support!"
2778 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2779 else
2780 echores "$kernel_version, ok"
2784 ######################
2785 # MAIN TESTS GO HERE #
2786 ######################
2789 echocheck "-lposix"
2790 if cflag_check -lposix ; then
2791 extra_ldflags="$extra_ldflags -lposix"
2792 echores "yes"
2793 else
2794 echores "no"
2797 echocheck "-lm"
2798 if cflag_check -lm ; then
2799 _ld_lm="-lm"
2800 echores "yes"
2801 else
2802 _ld_lm=""
2803 echores "no"
2807 echocheck "langinfo"
2808 if test "$_langinfo" = auto ; then
2809 _langinfo=no
2810 function_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2812 if test "$_langinfo" = yes ; then
2813 def_langinfo='#define HAVE_LANGINFO 1'
2814 else
2815 def_langinfo='#undef HAVE_LANGINFO'
2817 echores "$_langinfo"
2820 echocheck "translation support"
2821 if test "$_translation" = yes; then
2822 def_translation="#define CONFIG_TRANSLATION 1"
2823 else
2824 def_translation="#undef CONFIG_TRANSLATION"
2826 echores "$_translation"
2828 echocheck "language"
2829 # Set preferred languages, "all" uses English as main language.
2830 test -z "$language" && language=$LINGUAS
2831 test -z "$language_doc" && language_doc=$language
2832 test -z "$language_man" && language_man=$language
2833 test -z "$language_msg" && language_msg="all"
2834 language_doc=$(echo $language_doc | tr , " ")
2835 language_man=$(echo $language_man | tr , " ")
2836 language_msg=$(echo $language_msg | tr , " ")
2838 test "$language_doc" = "all" && language_doc=$doc_lang_all
2839 test "$language_man" = "all" && language_man=$man_lang_all
2840 test "$language_msg" = "all" && language_msg=$msg_lang_all
2842 if test "$_translation" != yes ; then
2843 language_msg=""
2846 # Prune non-existing translations from language lists.
2847 # Set message translation to the first available language.
2848 # Fall back on English.
2849 for lang in $language_doc ; do
2850 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2851 done
2852 language_doc=$tmp_language_doc
2853 test -z "$language_doc" && language_doc=en
2855 for lang in $language_man ; do
2856 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2857 done
2858 language_man=$tmp_language_man
2859 test -z "$language_man" && language_man=en
2861 for lang in $language_msg ; do
2862 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2863 done
2864 language_msg=$tmp_language_msg
2866 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2869 echocheck "enable sighandler"
2870 if test "$_sighandler" = yes ; then
2871 def_sighandler='#define CONFIG_SIGHANDLER 1'
2872 else
2873 def_sighandler='#undef CONFIG_SIGHANDLER'
2875 echores "$_sighandler"
2877 echocheck "runtime cpudetection"
2878 if test "$_runtime_cpudetection" = yes ; then
2879 _optimizing="Runtime CPU-Detection enabled"
2880 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2881 else
2882 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2884 echores "$_runtime_cpudetection"
2887 echocheck "restrict keyword"
2888 for restrict_keyword in restrict __restrict __restrict__ ; do
2889 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2890 if cc_check; then
2891 def_restrict_keyword=$restrict_keyword
2892 break;
2894 done
2895 if [ -n "$def_restrict_keyword" ]; then
2896 echores "$def_restrict_keyword"
2897 else
2898 echores "none"
2900 # Avoid infinite recursion loop ("#define restrict restrict")
2901 if [ "$def_restrict_keyword" != "restrict" ]; then
2902 def_restrict_keyword="#define restrict $def_restrict_keyword"
2903 else
2904 def_restrict_keyword=""
2908 echocheck "__builtin_expect"
2909 # GCC branch prediction hint
2910 cat > $TMPC << EOF
2911 static int foo(int a) {
2912 a = __builtin_expect(a, 10);
2913 return a == 10 ? 0 : 1;
2915 int main(void) { return foo(10) && foo(0); }
2917 _builtin_expect=no
2918 cc_check && _builtin_expect=yes
2919 if test "$_builtin_expect" = yes ; then
2920 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2921 else
2922 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2924 echores "$_builtin_expect"
2927 echocheck "kstat"
2928 _kstat=no
2929 function_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2930 if test "$_kstat" = yes ; then
2931 def_kstat="#define HAVE_LIBKSTAT 1"
2932 extra_ldflags="$extra_ldflags -lkstat"
2933 else
2934 def_kstat="#undef HAVE_LIBKSTAT"
2936 echores "$_kstat"
2939 echocheck "posix4"
2940 # required for nanosleep on some systems
2941 _posix4=no
2942 function_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2943 if test "$_posix4" = yes ; then
2944 extra_ldflags="$extra_ldflags -lposix4"
2946 echores "$_posix4"
2948 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2949 echocheck $func
2950 eval _$func=no
2951 function_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2952 if eval test "x\$_$func" = "xyes"; then
2953 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2954 echores yes
2955 else
2956 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2957 echores no
2959 done
2962 echocheck "mkstemp"
2963 cat > $TMPC << EOF
2964 #define _XOPEN_SOURCE 500
2965 #include <stdlib.h>
2966 int main(void) { mkstemp(""); return 0; }
2968 _mkstemp=no
2969 cc_check && _mkstemp=yes
2970 if test "$_mkstemp" = yes ; then
2971 def_mkstemp='#define HAVE_MKSTEMP 1'
2972 else
2973 def_mkstemp='#define HAVE_MKSTEMP 0'
2975 echores "$_mkstemp"
2978 echocheck "nanosleep"
2979 _nanosleep=no
2980 function_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2981 if test "$_nanosleep" = yes ; then
2982 def_nanosleep='#define HAVE_NANOSLEEP 1'
2983 else
2984 def_nanosleep='#undef HAVE_NANOSLEEP'
2986 echores "$_nanosleep"
2989 echocheck "socklib"
2990 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2991 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2992 cat > $TMPC << EOF
2993 #include <netdb.h>
2994 #include <sys/socket.h>
2995 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2997 _socklib=no
2998 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2999 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3000 done
3001 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3002 if test $_winsock2_h = auto ; then
3003 _winsock2_h=no
3004 function_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3006 test "$_ld_sock" && res_comment="using $_ld_sock"
3007 echores "$_socklib"
3010 if test $_winsock2_h = yes ; then
3011 _ld_sock="-lws2_32"
3012 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3013 else
3014 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3018 echocheck "arpa/inet.h"
3019 arpa_inet_h=no
3020 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3021 header_check arpa/inet.h && arpa_inet_h=yes &&
3022 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3023 echores "$arpa_inet_h"
3026 echocheck "inet_pton()"
3027 def_inet_pton='#define HAVE_INET_PTON 0'
3028 inet_pton=no
3029 cat > $TMPC << EOF
3030 #include <sys/types.h>
3031 #include <sys/socket.h>
3032 #include <arpa/inet.h>
3033 int main(void) { inet_pton(0, 0, 0); return 0; }
3035 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3036 cc_check $_ld_tmp && inet_pton=yes && break
3037 done
3038 if test $inet_pton = yes ; then
3039 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3040 def_inet_pton='#define HAVE_INET_PTON 1'
3042 echores "$inet_pton"
3045 echocheck "inet_aton()"
3046 def_inet_aton='#define HAVE_INET_ATON 0'
3047 inet_aton=no
3048 cat > $TMPC << EOF
3049 #include <sys/types.h>
3050 #include <sys/socket.h>
3051 #include <arpa/inet.h>
3052 int main(void) { inet_aton(0, 0); return 0; }
3054 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3055 cc_check $_ld_tmp && inet_aton=yes && break
3056 done
3057 if test $inet_aton = yes ; then
3058 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3059 def_inet_aton='#define HAVE_INET_ATON 1'
3061 echores "$inet_aton"
3064 echocheck "socklen_t"
3065 _socklen_t=no
3066 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3067 cat > $TMPC << EOF
3068 #include <$header>
3069 int main(void) { socklen_t v = 0; return v; }
3071 cc_check && _socklen_t=yes && break
3072 done
3073 if test "$_socklen_t" = yes ; then
3074 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3075 else
3076 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3078 echores "$_socklen_t"
3081 echocheck "closesocket()"
3082 _closesocket=no
3083 function_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
3084 if test "$_closesocket" = yes ; then
3085 def_closesocket='#define HAVE_CLOSESOCKET 1'
3086 else
3087 def_closesocket='#define HAVE_CLOSESOCKET 0'
3089 echores "$_closesocket"
3092 echocheck "networking"
3093 test $_winsock2_h = no && test $inet_pton = no &&
3094 test $inet_aton = no && networking=no
3095 if test "$networking" = yes ; then
3096 def_network='#define CONFIG_NETWORK 1'
3097 def_networking='#define CONFIG_NETWORKING 1'
3098 extra_ldflags="$extra_ldflags $_ld_sock"
3099 inputmodules="networking $inputmodules"
3100 else
3101 noinputmodules="networking $noinputmodules"
3102 def_network='#undef CONFIG_NETWORK'
3103 def_networking='#undef CONFIG_NETWORKING'
3105 echores "$networking"
3108 echocheck "inet6"
3109 if test "$_inet6" = auto ; then
3110 cat > $TMPC << EOF
3111 #include <sys/types.h>
3112 #if !defined(_WIN32) || defined(__CYGWIN__)
3113 #include <sys/socket.h>
3114 #include <netinet/in.h>
3115 #else
3116 #include <ws2tcpip.h>
3117 #endif
3118 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3120 _inet6=no
3121 if cc_check $_ld_sock ; then
3122 _inet6=yes
3125 if test "$_inet6" = yes ; then
3126 def_inet6='#define HAVE_AF_INET6 1'
3127 else
3128 def_inet6='#undef HAVE_AF_INET6'
3130 echores "$_inet6"
3133 echocheck "gethostbyname2"
3134 if test "$_gethostbyname2" = auto ; then
3135 cat > $TMPC << EOF
3136 #include <sys/types.h>
3137 #include <sys/socket.h>
3138 #include <netdb.h>
3139 int main(void) { gethostbyname2("", AF_INET); return 0; }
3141 _gethostbyname2=no
3142 if cc_check ; then
3143 _gethostbyname2=yes
3146 if test "$_gethostbyname2" = yes ; then
3147 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3148 else
3149 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3151 echores "$_gethostbyname2"
3154 echocheck "inttypes.h (required)"
3155 _inttypes=no
3156 header_check inttypes.h && _inttypes=yes
3157 echores "$_inttypes"
3159 if test "$_inttypes" = no ; then
3160 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3161 header_check sys/bitypes.h && _inttypes=yes
3162 if test "$_inttypes" = yes ; then
3163 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."
3164 else
3165 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3170 echocheck "int_fastXY_t in inttypes.h"
3171 cat > $TMPC << EOF
3172 #include <inttypes.h>
3173 int main(void) { volatile int_fast16_t v = 0; return v; }
3175 _fast_inttypes=no
3176 cc_check && _fast_inttypes=yes
3177 if test "$_fast_inttypes" = no ; then
3178 def_fast_inttypes='
3179 typedef signed char int_fast8_t;
3180 typedef signed int int_fast16_t;
3181 typedef signed int int_fast32_t;
3182 typedef signed long long int_fast64_t;
3183 typedef unsigned char uint_fast8_t;
3184 typedef unsigned int uint_fast16_t;
3185 typedef unsigned int uint_fast32_t;
3186 typedef unsigned long long uint_fast64_t;'
3188 echores "$_fast_inttypes"
3191 echocheck "malloc.h"
3192 _malloc=no
3193 header_check malloc.h && _malloc=yes
3194 if test "$_malloc" = yes ; then
3195 def_malloc_h='#define HAVE_MALLOC_H 1'
3196 else
3197 def_malloc_h='#define HAVE_MALLOC_H 0'
3199 echores "$_malloc"
3202 echocheck "memalign()"
3203 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3204 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3205 _memalign=no
3206 function_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3207 if test "$_memalign" = yes ; then
3208 def_memalign='#define HAVE_MEMALIGN 1'
3209 else
3210 def_memalign='#define HAVE_MEMALIGN 0'
3211 def_map_memalign='#define memalign(a, b) malloc(b)'
3212 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3214 echores "$_memalign"
3217 echocheck "posix_memalign()"
3218 posix_memalign=no
3219 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3220 cat > $TMPC << EOF
3221 #define _XOPEN_SOURCE 600
3222 #include <stdlib.h>
3223 int main(void) { posix_memalign(NULL, 0, 0); }
3225 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3226 echores "$posix_memalign"
3229 echocheck "alloca.h"
3230 _alloca=no
3231 function_check alloca.h 'alloca(0)' && _alloca=yes
3232 if cc_check ; then
3233 def_alloca_h='#define HAVE_ALLOCA_H 1'
3234 else
3235 def_alloca_h='#undef HAVE_ALLOCA_H'
3237 echores "$_alloca"
3240 echocheck "fastmemcpy"
3241 if test "$_fastmemcpy" = yes ; then
3242 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3243 else
3244 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3246 echores "$_fastmemcpy"
3249 echocheck "mman.h"
3250 _mman=no
3251 function_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3252 if test "$_mman" = yes ; then
3253 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3254 else
3255 def_mman_h='#undef HAVE_SYS_MMAN_H'
3256 os2 && _need_mmap=yes
3258 echores "$_mman"
3260 cat > $TMPC << EOF
3261 #include <sys/mman.h>
3262 int main(void) { void *p = MAP_FAILED; return 0; }
3264 _mman_has_map_failed=no
3265 cc_check && _mman_has_map_failed=yes
3266 if test "$_mman_has_map_failed" = yes ; then
3267 def_mman_has_map_failed=''
3268 else
3269 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3272 echocheck "dynamic loader"
3273 _dl=no
3274 for _ld_tmp in "" "-ldl"; do
3275 function_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3276 done
3277 if test "$_dl" = yes ; then
3278 def_dl='#define HAVE_LIBDL 1'
3279 else
3280 def_dl='#undef HAVE_LIBDL'
3282 echores "$_dl"
3285 echocheck "dynamic a/v plugins support"
3286 if test "$_dl" = no ; then
3287 _dynamic_plugins=no
3289 if test "$_dynamic_plugins" = yes ; then
3290 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3291 else
3292 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3294 echores "$_dynamic_plugins"
3297 def_threads='#define HAVE_THREADS 0'
3299 echocheck "pthread"
3300 if linux ; then
3301 THREAD_CFLAGS=-D_REENTRANT
3302 elif freebsd || netbsd || openbsd || bsdos ; then
3303 THREAD_CFLAGS=-D_THREAD_SAFE
3305 if test "$_pthreads" = auto ; then
3306 cat > $TMPC << EOF
3307 #include <pthread.h>
3308 static void *func(void *arg) { return arg; }
3309 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3311 _pthreads=no
3312 if ! hpux ; then
3313 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3314 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3315 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3316 done
3319 if test "$_pthreads" = yes ; then
3320 test $_ld_pthread && res_comment="using $_ld_pthread"
3321 def_pthreads='#define HAVE_PTHREADS 1'
3322 def_threads='#define HAVE_THREADS 1'
3323 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3324 else
3325 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3326 def_pthreads='#undef HAVE_PTHREADS'
3327 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3328 mingw32 || _win32dll=no
3330 echores "$_pthreads"
3332 if cygwin ; then
3333 if test "$_pthreads" = yes ; then
3334 def_pthread_cache="#define PTHREAD_CACHE 1"
3335 else
3336 _stream_cache=no
3337 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3341 echocheck "w32threads"
3342 if test "$_pthreads" = yes ; then
3343 res_comment="using pthread instead"
3344 _w32threads=no
3346 if test "$_w32threads" = auto ; then
3347 _w32threads=no
3348 mingw32 && _w32threads=yes
3350 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3351 echores "$_w32threads"
3353 echocheck "rpath"
3354 netbsd &&_rpath=yes
3355 if test "$_rpath" = yes ; then
3356 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3357 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3358 done
3359 extra_ldflags=$tmp
3361 echores "$_rpath"
3363 echocheck "iconv"
3364 if test "$_iconv" = auto ; then
3365 cat > $TMPC << EOF
3366 #include <stdio.h>
3367 #include <unistd.h>
3368 #include <iconv.h>
3369 #define INBUFSIZE 1024
3370 #define OUTBUFSIZE 4096
3372 char inbuffer[INBUFSIZE];
3373 char outbuffer[OUTBUFSIZE];
3375 int main(void) {
3376 size_t numread;
3377 iconv_t icdsc;
3378 char *tocode="UTF-8";
3379 char *fromcode="cp1250";
3380 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3381 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3382 char *iptr=inbuffer;
3383 char *optr=outbuffer;
3384 size_t inleft=numread;
3385 size_t outleft=OUTBUFSIZE;
3386 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3387 != (size_t)(-1)) {
3388 write(1, outbuffer, OUTBUFSIZE - outleft);
3391 if (iconv_close(icdsc) == -1)
3394 return 0;
3397 _iconv=no
3398 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3399 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3400 _iconv=yes && break
3401 done
3403 if test "$_iconv" = yes ; then
3404 def_iconv='#define CONFIG_ICONV 1'
3405 else
3406 def_iconv='#undef CONFIG_ICONV'
3408 echores "$_iconv"
3411 echocheck "soundcard.h"
3412 _soundcard_h=no
3413 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3414 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3415 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3416 header_check $_soundcard_header && _soundcard_h=yes &&
3417 res_comment="$_soundcard_header" && break
3418 done
3420 if test "$_soundcard_h" = yes ; then
3421 if test $_soundcard_header = "sys/soundcard.h"; then
3422 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3423 else
3424 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3427 echores "$_soundcard_h"
3430 echocheck "sys/dvdio.h"
3431 _dvdio=no
3432 # FreeBSD 8.1 has broken dvdio.h
3433 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3434 if test "$_dvdio" = yes ; then
3435 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3436 else
3437 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3439 echores "$_dvdio"
3442 echocheck "sys/cdio.h"
3443 _cdio=no
3444 # at least OpenSolaris has a broken cdio.h
3445 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3446 if test "$_cdio" = yes ; then
3447 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3448 else
3449 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3451 echores "$_cdio"
3454 echocheck "linux/cdrom.h"
3455 _cdrom=no
3456 header_check linux/cdrom.h && _cdrom=yes
3457 if test "$_cdrom" = yes ; then
3458 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3459 else
3460 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3462 echores "$_cdrom"
3465 echocheck "dvd.h"
3466 _dvd=no
3467 header_check dvd.h && _dvd=yes
3468 if test "$_dvd" = yes ; then
3469 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3470 else
3471 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3473 echores "$_dvd"
3476 if bsdos; then
3477 echocheck "BSDI dvd.h"
3478 _bsdi_dvd=no
3479 header_check dvd.h && _bsdi_dvd=yes
3480 if test "$_bsdi_dvd" = yes ; then
3481 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3482 else
3483 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3485 echores "$_bsdi_dvd"
3486 fi #if bsdos
3489 if hpux; then
3490 # also used by AIX, but AIX does not support VCD and/or libdvdread
3491 echocheck "HP-UX SCSI header"
3492 _hpux_scsi_h=no
3493 header_check sys/scsi.h && _hpux_scsi_h=yes
3494 if test "$_hpux_scsi_h" = yes ; then
3495 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3496 else
3497 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3499 echores "$_hpux_scsi_h"
3500 fi #if hpux
3503 if sunos; then
3504 echocheck "userspace SCSI headers (Solaris)"
3505 _sol_scsi_h=no
3506 header_check sys/scsi/scsi_types.h &&
3507 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3508 _sol_scsi_h=yes
3509 if test "$_sol_scsi_h" = yes ; then
3510 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3511 else
3512 def_sol_scsi_h='#undef SOLARIS_USCSI'
3514 echores "$_sol_scsi_h"
3515 fi #if sunos
3518 echocheck "termcap"
3519 if test "$_termcap" = auto ; then
3520 _termcap=no
3521 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3522 function_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3523 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3524 done
3526 if test "$_termcap" = yes ; then
3527 def_termcap='#define HAVE_TERMCAP 1'
3528 test $_ld_tmp && res_comment="using $_ld_tmp"
3529 else
3530 def_termcap='#undef HAVE_TERMCAP'
3532 echores "$_termcap"
3535 echocheck "termios"
3536 def_termios='#undef HAVE_TERMIOS'
3537 def_termios_h='#undef HAVE_TERMIOS_H'
3538 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3539 if test "$_termios" = auto ; then
3540 _termios=no
3541 for _termios_header in "termios.h" "sys/termios.h"; do
3542 header_check $_termios_header && _termios=yes &&
3543 res_comment="using $_termios_header" && break
3544 done
3547 if test "$_termios" = yes ; then
3548 def_termios='#define HAVE_TERMIOS 1'
3549 if test "$_termios_header" = "termios.h" ; then
3550 def_termios_h='#define HAVE_TERMIOS_H 1'
3551 else
3552 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3555 echores "$_termios"
3558 echocheck "shm"
3559 if test "$_shm" = auto ; then
3560 cat > $TMPC << EOF
3561 #include <sys/types.h>
3562 #include <sys/shm.h>
3563 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3565 _shm=no
3566 cc_check && _shm=yes
3568 if test "$_shm" = yes ; then
3569 def_shm='#define HAVE_SHM 1'
3570 else
3571 def_shm='#undef HAVE_SHM'
3573 echores "$_shm"
3576 echocheck "strsep()"
3577 cat > $TMPC << EOF
3578 #include <string.h>
3579 int main(void) { char *s = "Hello, world!"; strsep(&s, ","); return 0; }
3581 _strsep=no
3582 cc_check && _strsep=yes
3583 if test "$_strsep" = yes ; then
3584 def_strsep='#define HAVE_STRSEP 1'
3585 _need_strsep=no
3586 else
3587 def_strsep='#undef HAVE_STRSEP'
3588 _need_strsep=yes
3590 echores "$_strsep"
3593 echocheck "vsscanf()"
3594 cat > $TMPC << EOF
3595 #define _ISOC99_SOURCE
3596 #include <stdarg.h>
3597 #include <stdio.h>
3598 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3600 _vsscanf=no
3601 cc_check && _vsscanf=yes
3602 if test "$_vsscanf" = yes ; then
3603 def_vsscanf='#define HAVE_VSSCANF 1'
3604 _need_vsscanf=no
3605 else
3606 def_vsscanf='#undef HAVE_VSSCANF'
3607 _need_vsscanf=yes
3609 echores "$_vsscanf"
3612 echocheck "swab()"
3613 cat > $TMPC << EOF
3614 #define _XOPEN_SOURCE 600
3615 #include <unistd.h>
3616 int main(void) { int a, b; swab(&a, &b, 0); return 0; }
3618 _swab=no
3619 cc_check && _swab=yes
3620 if test "$_swab" = yes ; then
3621 def_swab='#define HAVE_SWAB 1'
3622 _need_swab=no
3623 else
3624 def_swab='#undef HAVE_SWAB'
3625 _need_swab=yes
3627 echores "$_swab"
3629 echocheck "POSIX select()"
3630 cat > $TMPC << EOF
3631 #include <stdio.h>
3632 #include <stdlib.h>
3633 #include <sys/types.h>
3634 #include <string.h>
3635 #include <sys/time.h>
3636 #include <unistd.h>
3637 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3639 _posix_select=no
3640 def_posix_select='#undef HAVE_POSIX_SELECT'
3641 #select() of kLIBC (OS/2) supports socket only
3642 ! os2 && cc_check && _posix_select=yes \
3643 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3644 echores "$_posix_select"
3647 echocheck "audio select()"
3648 if test "$_select" = no ; then
3649 def_select='#undef HAVE_AUDIO_SELECT'
3650 elif test "$_select" = yes ; then
3651 def_select='#define HAVE_AUDIO_SELECT 1'
3653 echores "$_select"
3656 echocheck "gettimeofday()"
3657 cat > $TMPC << EOF
3658 #include <sys/time.h>
3659 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3661 _gettimeofday=no
3662 cc_check && _gettimeofday=yes
3663 if test "$_gettimeofday" = yes ; then
3664 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3665 _need_gettimeofday=no
3666 else
3667 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3668 _need_gettimeofday=yes
3670 echores "$_gettimeofday"
3673 echocheck "glob()"
3674 _glob=no
3675 function_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3676 if test "$_glob" = yes ; then
3677 def_glob='#define HAVE_GLOB 1'
3678 _need_glob=no
3679 else
3680 def_glob='#undef HAVE_GLOB'
3681 _need_glob=yes
3683 echores "$_glob"
3686 echocheck "setenv()"
3687 _setenv=no
3688 function_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3689 if test "$_setenv" = yes ; then
3690 def_setenv='#define HAVE_SETENV 1'
3691 _need_setenv=no
3692 else
3693 def_setenv='#undef HAVE_SETENV'
3694 _need_setenv=yes
3696 echores "$_setenv"
3699 echocheck "setmode()"
3700 _setmode=no
3701 def_setmode='#define HAVE_SETMODE 0'
3702 function_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3703 echores "$_setmode"
3706 if sunos; then
3707 echocheck "sysi86()"
3708 _sysi86=no
3709 function_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3710 if test "$_sysi86" = yes ; then
3711 def_sysi86='#define HAVE_SYSI86 1'
3712 cat > $TMPC << EOF
3713 #include <sys/sysi86.h>
3714 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3716 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3717 else
3718 def_sysi86='#undef HAVE_SYSI86'
3720 echores "$_sysi86"
3721 fi #if sunos
3724 echocheck "sys/sysinfo.h"
3725 cat > $TMPC << EOF
3726 #include <sys/sysinfo.h>
3727 int main(void) { struct sysinfo s_info; sysinfo(&s_info); return 0; }
3729 _sys_sysinfo=no
3730 cc_check && _sys_sysinfo=yes
3731 if test "$_sys_sysinfo" = yes ; then
3732 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3733 else
3734 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3736 echores "$_sys_sysinfo"
3739 if darwin; then
3741 echocheck "Mac OS X Finder Support"
3742 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3743 if test "$_macosx_finder" = yes ; then
3744 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3745 extra_ldflags="$extra_ldflags -framework Carbon"
3747 echores "$_macosx_finder"
3749 echocheck "Mac OS X Bundle file locations"
3750 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3751 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3752 if test "$_macosx_bundle" = yes ; then
3753 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3754 extra_ldflags="$extra_ldflags -framework Carbon"
3756 echores "$_macosx_bundle"
3758 echocheck "Apple Remote"
3759 if test "$_apple_remote" = auto ; then
3760 _apple_remote=no
3761 cat > $TMPC <<EOF
3762 #include <stdio.h>
3763 #include <IOKit/IOCFPlugIn.h>
3764 int main(void) {
3765 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3766 CFMutableDictionaryRef hidMatchDictionary;
3767 IOReturn ioReturnValue;
3769 // Set up a matching dictionary to search the I/O Registry by class.
3770 // name for all HID class devices
3771 hidMatchDictionary = IOServiceMatching("AppleIRController");
3773 // Now search I/O Registry for matching devices.
3774 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3775 hidMatchDictionary, &hidObjectIterator);
3777 // If search is unsuccessful, return nonzero.
3778 if (ioReturnValue != kIOReturnSuccess ||
3779 !IOIteratorIsValid(hidObjectIterator)) {
3780 return 1;
3782 return 0;
3785 cc_check -framework IOKit && _apple_remote=yes
3787 if test "$_apple_remote" = yes ; then
3788 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3789 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3790 else
3791 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3793 echores "$_apple_remote"
3795 fi #if darwin
3797 if linux; then
3799 echocheck "Apple IR"
3800 if test "$_apple_ir" = auto ; then
3801 _apple_ir=no
3802 cat > $TMPC <<EOF
3803 #include <linux/types.h>
3804 #include <linux/input.h>
3805 int main(void) { struct input_event ev; struct input_id id; return 0; }
3807 cc_check && _apple_ir=yes
3809 if test "$_apple_ir" = yes ; then
3810 def_apple_ir='#define CONFIG_APPLE_IR 1'
3811 else
3812 def_apple_ir='#undef CONFIG_APPLE_IR'
3814 echores "$_apple_ir"
3815 fi #if linux
3817 echocheck "pkg-config"
3818 _pkg_config=pkg-config
3819 if $($_pkg_config --version > /dev/null 2>&1); then
3820 if test "$_ld_static"; then
3821 _pkg_config="$_pkg_config --static"
3823 echores "yes"
3824 else
3825 _pkg_config=false
3826 echores "no"
3830 echocheck "Samba support (libsmbclient)"
3831 if test "$_smb" = yes; then
3832 extra_ldflags="$extra_ldflags -lsmbclient"
3834 if test "$_smb" = auto; then
3835 _smb=no
3836 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3837 function_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3838 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3839 done
3842 if test "$_smb" = yes; then
3843 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3844 inputmodules="smb $inputmodules"
3845 else
3846 def_smb="#undef CONFIG_LIBSMBCLIENT"
3847 noinputmodules="smb $noinputmodules"
3849 echores "$_smb"
3852 #########
3853 # VIDEO #
3854 #########
3857 echocheck "tdfxfb"
3858 if test "$_tdfxfb" = yes ; then
3859 def_tdfxfb='#define CONFIG_TDFXFB 1'
3860 vomodules="tdfxfb $vomodules"
3861 else
3862 def_tdfxfb='#undef CONFIG_TDFXFB'
3863 novomodules="tdfxfb $novomodules"
3865 echores "$_tdfxfb"
3867 echocheck "s3fb"
3868 if test "$_s3fb" = yes ; then
3869 def_s3fb='#define CONFIG_S3FB 1'
3870 vomodules="s3fb $vomodules"
3871 else
3872 def_s3fb='#undef CONFIG_S3FB'
3873 novomodules="s3fb $novomodules"
3875 echores "$_s3fb"
3877 echocheck "wii"
3878 if test "$_wii" = yes ; then
3879 def_wii='#define CONFIG_WII 1'
3880 vomodules="wii $vomodules"
3881 else
3882 def_wii='#undef CONFIG_WII'
3883 novomodules="wii $novomodules"
3885 echores "$_wii"
3887 echocheck "tdfxvid"
3888 if test "$_tdfxvid" = yes ; then
3889 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3890 vomodules="tdfx_vid $vomodules"
3891 else
3892 def_tdfxvid='#undef CONFIG_TDFX_VID'
3893 novomodules="tdfx_vid $novomodules"
3895 echores "$_tdfxvid"
3897 echocheck "xvr100"
3898 if test "$_xvr100" = auto ; then
3899 cat > $TMPC << EOF
3900 #include <unistd.h>
3901 #include <sys/fbio.h>
3902 #include <sys/visual_io.h>
3903 int main(void) {
3904 struct vis_identifier ident;
3905 struct fbgattr attr;
3906 ioctl(0, VIS_GETIDENTIFIER, &ident);
3907 ioctl(0, FBIOGATTR, &attr);
3908 return 0;
3911 _xvr100=no
3912 cc_check && _xvr100=yes
3914 if test "$_xvr100" = yes ; then
3915 def_xvr100='#define CONFIG_XVR100 1'
3916 vomodules="xvr100 $vomodules"
3917 else
3918 def_tdfxvid='#undef CONFIG_XVR100'
3919 novomodules="xvr100 $novomodules"
3921 echores "$_xvr100"
3923 echocheck "tga"
3924 if test "$_tga" = yes ; then
3925 def_tga='#define CONFIG_TGA 1'
3926 vomodules="tga $vomodules"
3927 else
3928 def_tga='#undef CONFIG_TGA'
3929 novomodules="tga $novomodules"
3931 echores "$_tga"
3934 echocheck "md5sum support"
3935 if test "$_md5sum" = yes; then
3936 def_md5sum="#define CONFIG_MD5SUM 1"
3937 vomodules="md5sum $vomodules"
3938 else
3939 def_md5sum="#undef CONFIG_MD5SUM"
3940 novomodules="md5sum $novomodules"
3942 echores "$_md5sum"
3945 echocheck "yuv4mpeg support"
3946 if test "$_yuv4mpeg" = yes; then
3947 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3948 vomodules="yuv4mpeg $vomodules"
3949 else
3950 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3951 novomodules="yuv4mpeg $novomodules"
3953 echores "$_yuv4mpeg"
3956 echocheck "bl"
3957 if test "$_bl" = yes ; then
3958 def_bl='#define CONFIG_BL 1'
3959 vomodules="bl $vomodules"
3960 else
3961 def_bl='#undef CONFIG_BL'
3962 novomodules="bl $novomodules"
3964 echores "$_bl"
3967 echocheck "DirectFB"
3968 if test "$_directfb" = auto ; then
3969 _directfb=no
3970 cat > $TMPC << EOF
3971 #include <directfb.h>
3972 #include <directfb_version.h>
3973 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3974 #error "DirectFB version too old."
3975 #endif
3976 int main(void) { DirectFBInit(0, 0); return 0; }
3978 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3979 cc_check $_inc_tmp -ldirectfb &&
3980 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3981 done
3983 if test "$_directfb" = yes ; then
3984 def_directfb='#define CONFIG_DIRECTFB 1'
3985 vomodules="directfb dfbmga $vomodules"
3986 libs_mplayer="$libs_mplayer -ldirectfb"
3987 else
3988 def_directfb='#undef CONFIG_DIRECTFB'
3989 novomodules="directfb dfbmga $novomodules"
3991 echores "$_directfb"
3994 echocheck "X11 headers presence"
3995 _x11_headers="no"
3996 res_comment="check if the dev(el) packages are installed"
3997 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3998 if test -f "$I/X11/Xlib.h" ; then
3999 _x11_headers="yes"
4000 res_comment=""
4001 break
4003 done
4004 if test $_cross_compile = no; then
4005 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4006 /usr/include/X11R6 /usr/openwin/include ; do
4007 if test -f "$I/X11/Xlib.h" ; then
4008 extra_cflags="$extra_cflags -I$I"
4009 _x11_headers="yes"
4010 res_comment="using $I"
4011 break
4013 done
4015 echores "$_x11_headers"
4018 echocheck "X11"
4019 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4020 cat > $TMPC <<EOF
4021 #include <X11/Xlib.h>
4022 #include <X11/Xutil.h>
4023 int main(void) { XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4025 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4026 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4027 -L/usr/lib ; do
4028 if netbsd; then
4029 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4030 else
4031 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4033 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4034 && _x11=yes && break
4035 done
4037 if test "$_x11" = yes ; then
4038 def_x11='#define CONFIG_X11 1'
4039 vomodules="x11 xover $vomodules"
4040 else
4041 _x11=no
4042 def_x11='#undef CONFIG_X11'
4043 novomodules="x11 $novomodules"
4044 res_comment="check if the dev(el) packages are installed"
4045 # disable stuff that depends on X
4046 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4048 echores "$_x11"
4050 echocheck "Xss screensaver extensions"
4051 if test "$_xss" = auto ; then
4052 cat > $TMPC << EOF
4053 #include <X11/Xlib.h>
4054 #include <X11/extensions/scrnsaver.h>
4055 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4057 _xss=no
4058 cc_check -lXss && _xss=yes
4060 if test "$_xss" = yes ; then
4061 def_xss='#define CONFIG_XSS 1'
4062 libs_mplayer="$libs_mplayer -lXss"
4063 else
4064 def_xss='#undef CONFIG_XSS'
4066 echores "$_xss"
4068 echocheck "DPMS"
4069 _xdpms3=no
4070 _xdpms4=no
4071 if test "$_x11" = yes ; then
4072 cat > $TMPC <<EOF
4073 #include <X11/Xmd.h>
4074 #include <X11/Xlib.h>
4075 #include <X11/Xutil.h>
4076 #include <X11/Xatom.h>
4077 #include <X11/extensions/dpms.h>
4078 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4080 cc_check -lXdpms && _xdpms3=yes
4081 cat > $TMPC <<EOF
4082 #include <X11/Xlib.h>
4083 #include <X11/extensions/dpms.h>
4084 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4086 cc_check -lXext && _xdpms4=yes
4088 if test "$_xdpms4" = yes ; then
4089 def_xdpms='#define CONFIG_XDPMS 1'
4090 res_comment="using Xdpms 4"
4091 echores "yes"
4092 elif test "$_xdpms3" = yes ; then
4093 def_xdpms='#define CONFIG_XDPMS 1'
4094 libs_mplayer="$libs_mplayer -lXdpms"
4095 res_comment="using Xdpms 3"
4096 echores "yes"
4097 else
4098 def_xdpms='#undef CONFIG_XDPMS'
4099 echores "no"
4103 echocheck "Xv"
4104 if test "$_xv" = auto ; then
4105 cat > $TMPC <<EOF
4106 #include <X11/Xlib.h>
4107 #include <X11/extensions/Xvlib.h>
4108 int main(void) {
4109 XvGetPortAttribute(0, 0, 0, 0);
4110 XvQueryPortAttributes(0, 0, 0);
4111 return 0; }
4113 _xv=no
4114 cc_check -lXv && _xv=yes
4117 if test "$_xv" = yes ; then
4118 def_xv='#define CONFIG_XV 1'
4119 libs_mplayer="$libs_mplayer -lXv"
4120 vomodules="xv $vomodules"
4121 else
4122 def_xv='#undef CONFIG_XV'
4123 novomodules="xv $novomodules"
4125 echores "$_xv"
4128 echocheck "XvMC"
4129 if test "$_xv" = yes && test "$_xvmc" != no ; then
4130 _xvmc=no
4131 cat > $TMPC <<EOF
4132 #include <X11/Xlib.h>
4133 #include <X11/extensions/Xvlib.h>
4134 #include <X11/extensions/XvMClib.h>
4135 int main(void) {
4136 XvMCQueryExtension(0, 0, 0);
4137 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
4138 return 0; }
4140 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4141 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4142 done
4144 if test "$_xvmc" = yes ; then
4145 def_xvmc='#define CONFIG_XVMC 1'
4146 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4147 vomodules="xvmc $vomodules"
4148 res_comment="using $_xvmclib"
4149 else
4150 def_xvmc='#define CONFIG_XVMC 0'
4151 novomodules="xvmc $novomodules"
4153 echores "$_xvmc"
4156 echocheck "VDPAU"
4157 if test "$_vdpau" = auto ; then
4158 _vdpau=no
4159 if test "$_dl" = yes ; then
4160 cat > $TMPC <<EOF
4161 #include <vdpau/vdpau_x11.h>
4162 int main(void) {
4163 vdp_device_create_x11(0, 0, 0, 0);
4164 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4166 cc_check -lvdpau && _vdpau=yes
4169 if test "$_vdpau" = yes ; then
4170 def_vdpau='#define CONFIG_VDPAU 1'
4171 libs_mplayer="$libs_mplayer -lvdpau"
4172 vomodules="vdpau $vomodules"
4173 else
4174 def_vdpau='#define CONFIG_VDPAU 0'
4175 novomodules="vdpau $novomodules"
4177 echores "$_vdpau"
4180 echocheck "Xinerama"
4181 if test "$_xinerama" = auto ; then
4182 cat > $TMPC <<EOF
4183 #include <X11/Xlib.h>
4184 #include <X11/extensions/Xinerama.h>
4185 int main(void) { XineramaIsActive(0); return 0; }
4187 _xinerama=no
4188 cc_check -lXinerama && _xinerama=yes
4191 if test "$_xinerama" = yes ; then
4192 def_xinerama='#define CONFIG_XINERAMA 1'
4193 libs_mplayer="$libs_mplayer -lXinerama"
4194 else
4195 def_xinerama='#undef CONFIG_XINERAMA'
4197 echores "$_xinerama"
4200 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4201 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4202 # named 'X extensions' or something similar.
4203 # This check may be useful for future mplayer versions (to change resolution)
4204 # If you run into problems, remove '-lXxf86vm'.
4205 echocheck "Xxf86vm"
4206 if test "$_vm" = auto ; then
4207 cat > $TMPC <<EOF
4208 #include <X11/Xlib.h>
4209 #include <X11/extensions/xf86vmode.h>
4210 int main(void) { XF86VidModeQueryExtension(0, 0, 0); return 0; }
4212 _vm=no
4213 cc_check -lXxf86vm && _vm=yes
4215 if test "$_vm" = yes ; then
4216 def_vm='#define CONFIG_XF86VM 1'
4217 libs_mplayer="$libs_mplayer -lXxf86vm"
4218 else
4219 def_vm='#undef CONFIG_XF86VM'
4221 echores "$_vm"
4223 # Check for the presence of special keycodes, like audio control buttons
4224 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4225 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4226 # have these new keycodes.
4227 echocheck "XF86keysym"
4228 if test "$_xf86keysym" = auto; then
4229 _xf86keysym=no
4230 cat > $TMPC <<EOF
4231 #include <X11/Xlib.h>
4232 #include <X11/XF86keysym.h>
4233 int main(void) { return XF86XK_AudioPause; }
4235 cc_check && _xf86keysym=yes
4237 if test "$_xf86keysym" = yes ; then
4238 def_xf86keysym='#define CONFIG_XF86XK 1'
4239 else
4240 def_xf86keysym='#undef CONFIG_XF86XK'
4242 echores "$_xf86keysym"
4244 echocheck "DGA"
4245 if test "$_dga2" = auto && test "$_x11" = yes ; then
4246 cat > $TMPC << EOF
4247 #include <X11/Xlib.h>
4248 #include <X11/extensions/xf86dga.h>
4249 int main(void) { XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4251 _dga2=no
4252 cc_check -lXxf86dga && _dga2=yes
4254 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4255 cat > $TMPC << EOF
4256 #include <X11/Xlib.h>
4257 #include <X11/extensions/xf86dga.h>
4258 int main(void) { XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4260 _dga1=no
4261 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4264 _dga=no
4265 def_dga='#undef CONFIG_DGA'
4266 def_dga1='#undef CONFIG_DGA1'
4267 def_dga2='#undef CONFIG_DGA2'
4268 if test "$_dga1" = yes ; then
4269 _dga=yes
4270 def_dga1='#define CONFIG_DGA1 1'
4271 res_comment="using DGA 1.0"
4272 elif test "$_dga2" = yes ; then
4273 _dga=yes
4274 def_dga2='#define CONFIG_DGA2 1'
4275 res_comment="using DGA 2.0"
4277 if test "$_dga" = yes ; then
4278 def_dga='#define CONFIG_DGA 1'
4279 libs_mplayer="$libs_mplayer -lXxf86dga"
4280 vomodules="dga $vomodules"
4281 else
4282 novomodules="dga $novomodules"
4284 echores "$_dga"
4287 echocheck "3dfx"
4288 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4289 def_3dfx='#define CONFIG_3DFX 1'
4290 vomodules="3dfx $vomodules"
4291 else
4292 def_3dfx='#undef CONFIG_3DFX'
4293 novomodules="3dfx $novomodules"
4295 echores "$_3dfx"
4298 echocheck "VIDIX"
4299 def_vidix='#undef CONFIG_VIDIX'
4300 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4301 _vidix_drv_cyberblade=no
4302 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4303 _vidix_drv_ivtv=no
4304 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4305 _vidix_drv_mach64=no
4306 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4307 _vidix_drv_mga=no
4308 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4309 _vidix_drv_mga_crtc2=no
4310 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4311 _vidix_drv_nvidia=no
4312 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4313 _vidix_drv_pm2=no
4314 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4315 _vidix_drv_pm3=no
4316 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4317 _vidix_drv_radeon=no
4318 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4319 _vidix_drv_rage128=no
4320 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4321 _vidix_drv_s3=no
4322 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4323 _vidix_drv_sh_veu=no
4324 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4325 _vidix_drv_sis=no
4326 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4327 _vidix_drv_unichrome=no
4328 if test "$_vidix" = auto ; then
4329 _vidix=no
4330 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4331 && _vidix=yes
4332 x86_64 && ! linux && _vidix=no
4333 (ppc || alpha) && linux && _vidix=yes
4335 echores "$_vidix"
4337 if test "$_vidix" = yes ; then
4338 def_vidix='#define CONFIG_VIDIX 1'
4339 vomodules="cvidix $vomodules"
4340 # FIXME: ivtv driver temporarily disabled until we have a proper test
4341 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4342 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4344 # some vidix drivers are architecture and os specific, discard them elsewhere
4345 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4346 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4348 for driver in $_vidix_drivers ; do
4349 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4350 eval _vidix_drv_${driver}=yes
4351 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4352 done
4354 echocheck "VIDIX PCI device name database"
4355 echores "$_vidix_pcidb"
4356 if test "$_vidix_pcidb" = yes ; then
4357 _vidix_pcidb_val=1
4358 else
4359 _vidix_pcidb_val=0
4362 echocheck "VIDIX dhahelper support"
4363 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4364 echores "$_dhahelper"
4366 echocheck "VIDIX svgalib_helper support"
4367 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4368 echores "$_svgalib_helper"
4370 else
4371 novomodules="cvidix $novomodules"
4374 if test "$_vidix" = yes && win32; then
4375 winvidix=yes
4376 vomodules="winvidix $vomodules"
4377 libs_mplayer="$libs_mplayer -lgdi32"
4378 else
4379 novomodules="winvidix $novomodules"
4381 if test "$_vidix" = yes && test "$_x11" = yes; then
4382 xvidix=yes
4383 vomodules="xvidix $vomodules"
4384 else
4385 novomodules="xvidix $novomodules"
4388 echocheck "GGI"
4389 if test "$_ggi" = auto ; then
4390 _ggi=no
4391 function_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4393 if test "$_ggi" = yes ; then
4394 def_ggi='#define CONFIG_GGI 1'
4395 libs_mplayer="$libs_mplayer -lggi"
4396 vomodules="ggi $vomodules"
4397 else
4398 def_ggi='#undef CONFIG_GGI'
4399 novomodules="ggi $novomodules"
4401 echores "$_ggi"
4403 echocheck "GGI extension: libggiwmh"
4404 if test "$_ggiwmh" = auto ; then
4405 _ggiwmh=no
4406 function_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4408 # needed to get right output on obscure combination
4409 # like --disable-ggi --enable-ggiwmh
4410 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4411 def_ggiwmh='#define CONFIG_GGIWMH 1'
4412 libs_mplayer="$libs_mplayer -lggiwmh"
4413 else
4414 _ggiwmh=no
4415 def_ggiwmh='#undef CONFIG_GGIWMH'
4417 echores "$_ggiwmh"
4420 echocheck "AA"
4421 if test "$_aa" = auto ; then
4422 cat > $TMPC << EOF
4423 #include <aalib.h>
4424 int main(void) {
4425 aa_context *c;
4426 aa_renderparams *p;
4427 aa_init(0, 0, 0);
4428 c = aa_autoinit(&aa_defparams);
4429 p = aa_getrenderparams();
4430 aa_autoinitkbd(c, 0);
4431 return 0; }
4433 _aa=no
4434 for _ld_tmp in "-laa" ; do
4435 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4436 done
4438 if test "$_aa" = yes ; then
4439 def_aa='#define CONFIG_AA 1'
4440 if cygwin ; then
4441 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4443 vomodules="aa $vomodules"
4444 else
4445 def_aa='#undef CONFIG_AA'
4446 novomodules="aa $novomodules"
4448 echores "$_aa"
4451 echocheck "CACA"
4452 if test "$_caca" = auto ; then
4453 _caca=no
4454 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4455 cat > $TMPC << EOF
4456 #include <caca.h>
4457 #ifdef CACA_API_VERSION_1
4458 #include <caca0.h>
4459 #endif
4460 int main(void) { caca_init(); return 0; }
4462 cc_check $(caca-config --libs) && _caca=yes
4465 if test "$_caca" = yes ; then
4466 def_caca='#define CONFIG_CACA 1'
4467 extra_cflags="$extra_cflags $(caca-config --cflags)"
4468 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4469 vomodules="caca $vomodules"
4470 else
4471 def_caca='#undef CONFIG_CACA'
4472 novomodules="caca $novomodules"
4474 echores "$_caca"
4477 echocheck "SVGAlib"
4478 if test "$_svga" = auto ; then
4479 _svga=no
4480 header_check vga.h -lvga $_ld_lm && _svga=yes
4482 if test "$_svga" = yes ; then
4483 def_svga='#define CONFIG_SVGALIB 1'
4484 libs_mplayer="$libs_mplayer -lvga"
4485 vomodules="svga $vomodules"
4486 else
4487 def_svga='#undef CONFIG_SVGALIB'
4488 novomodules="svga $novomodules"
4490 echores "$_svga"
4493 echocheck "FBDev"
4494 if test "$_fbdev" = auto ; then
4495 _fbdev=no
4496 linux && _fbdev=yes
4498 if test "$_fbdev" = yes ; then
4499 def_fbdev='#define CONFIG_FBDEV 1'
4500 vomodules="fbdev $vomodules"
4501 else
4502 def_fbdev='#undef CONFIG_FBDEV'
4503 novomodules="fbdev $novomodules"
4505 echores "$_fbdev"
4509 echocheck "DVB"
4510 if test "$_dvb" = auto ; then
4511 _dvb=no
4512 cat >$TMPC << EOF
4513 #include <poll.h>
4514 #include <sys/ioctl.h>
4515 #include <stdio.h>
4516 #include <time.h>
4517 #include <unistd.h>
4518 #include <linux/dvb/dmx.h>
4519 #include <linux/dvb/frontend.h>
4520 #include <linux/dvb/video.h>
4521 #include <linux/dvb/audio.h>
4522 int main(void) {return 0;}
4524 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4525 cc_check $_inc_tmp && _dvb=yes && \
4526 extra_cflags="$extra_cflags $_inc_tmp" && break
4527 done
4529 echores "$_dvb"
4530 if test "$_dvb" = yes ; then
4531 _dvbin=yes
4532 inputmodules="dvb $inputmodules"
4533 def_dvb='#define CONFIG_DVB 1'
4534 def_dvbin='#define CONFIG_DVBIN 1'
4535 aomodules="mpegpes(dvb) $aomodules"
4536 vomodules="mpegpes(dvb) $vomodules"
4537 else
4538 _dvbin=no
4539 noinputmodules="dvb $noinputmodules"
4540 def_dvb='#undef CONFIG_DVB'
4541 def_dvbin='#undef CONFIG_DVBIN '
4542 aomodules="mpegpes(file) $aomodules"
4543 vomodules="mpegpes(file) $vomodules"
4547 if darwin; then
4549 echocheck "QuickTime"
4550 if test "$quicktime" = auto ; then
4551 cat > $TMPC <<EOF
4552 #include <QuickTime/QuickTime.h>
4553 int main(void) {
4554 ImageDescription *desc;
4555 EnterMovies();
4556 ExitMovies();
4557 return 0;
4560 quicktime=no
4561 cc_check -framework QuickTime && quicktime=yes
4563 if test "$quicktime" = yes ; then
4564 extra_ldflags="$extra_ldflags -framework QuickTime"
4565 def_quicktime='#define CONFIG_QUICKTIME 1'
4566 else
4567 def_quicktime='#undef CONFIG_QUICKTIME'
4568 _quartz=no
4570 echores $quicktime
4572 echocheck "Quartz"
4573 if test "$_quartz" = auto ; then
4574 _quartz=no
4575 function_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4577 if test "$_quartz" = yes ; then
4578 libs_mplayer="$libs_mplayer -framework Carbon"
4579 def_quartz='#define CONFIG_QUARTZ 1'
4580 vomodules="quartz $vomodules"
4581 else
4582 def_quartz='#undef CONFIG_QUARTZ'
4583 novomodules="quartz $novomodules"
4585 echores $_quartz
4587 echocheck "CoreVideo"
4588 if test "$_corevideo" = auto ; then
4589 cat > $TMPC <<EOF
4590 #include <Carbon/Carbon.h>
4591 #include <CoreServices/CoreServices.h>
4592 #include <OpenGL/OpenGL.h>
4593 #include <QuartzCore/CoreVideo.h>
4594 int main(void) { return 0; }
4596 _corevideo=no
4597 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4599 if test "$_corevideo" = yes ; then
4600 vomodules="corevideo $vomodules"
4601 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4602 def_corevideo='#define CONFIG_COREVIDEO 1'
4603 else
4604 novomodules="corevideo $novomodules"
4605 def_corevideo='#undef CONFIG_COREVIDEO'
4607 echores "$_corevideo"
4609 fi #if darwin
4612 echocheck "PNG support"
4613 if test "$_png" = auto ; then
4614 _png=no
4615 if irix ; then
4616 # Don't check for -lpng on irix since it has its own libpng
4617 # incompatible with the GNU libpng
4618 res_comment="disabled on irix (not GNU libpng)"
4619 else
4620 cat > $TMPC << EOF
4621 #include <stdio.h>
4622 #include <string.h>
4623 #include <png.h>
4624 int main(void) {
4625 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4626 printf("libpng: %s\n", png_libpng_ver);
4627 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4630 cc_check -lpng -lz $_ld_lm && _png=yes
4633 echores "$_png"
4634 if test "$_png" = yes ; then
4635 def_png='#define CONFIG_PNG 1'
4636 extra_ldflags="$extra_ldflags -lpng -lz"
4637 else
4638 def_png='#undef CONFIG_PNG'
4641 echocheck "MNG support"
4642 if test "$_mng" = auto ; then
4643 _mng=no
4644 cat > $TMPC << EOF
4645 #include <libmng.h>
4646 int main(void) {
4647 const char * p_ver = mng_version_text();
4648 return !p_ver || p_ver[0] == 0;
4651 if cc_check -lmng -lz $_ld_lm ; then
4652 _mng=yes
4655 echores "$_mng"
4656 if test "$_mng" = yes ; then
4657 def_mng='#define CONFIG_MNG 1'
4658 extra_ldflags="$extra_ldflags -lmng -lz"
4659 else
4660 def_mng='#undef CONFIG_MNG'
4663 echocheck "JPEG support"
4664 if test "$_jpeg" = auto ; then
4665 _jpeg=no
4666 cat > $TMPC << EOF
4667 #include <stdio.h>
4668 #include <stdlib.h>
4669 #include <setjmp.h>
4670 #include <string.h>
4671 #include <jpeglib.h>
4672 int main(void) { return 0; }
4674 cc_check -ljpeg $_ld_lm && _jpeg=yes
4676 echores "$_jpeg"
4678 if test "$_jpeg" = yes ; then
4679 def_jpeg='#define CONFIG_JPEG 1'
4680 vomodules="jpeg $vomodules"
4681 extra_ldflags="$extra_ldflags -ljpeg"
4682 else
4683 def_jpeg='#undef CONFIG_JPEG'
4684 novomodules="jpeg $novomodules"
4689 echocheck "PNM support"
4690 if test "$_pnm" = yes; then
4691 def_pnm="#define CONFIG_PNM 1"
4692 vomodules="pnm $vomodules"
4693 else
4694 def_pnm="#undef CONFIG_PNM"
4695 novomodules="pnm $novomodules"
4697 echores "$_pnm"
4701 echocheck "GIF support"
4702 # This is to appease people who want to force gif support.
4703 # If it is forced to yes, then we still do checks to determine
4704 # which gif library to use.
4705 if test "$_gif" = yes ; then
4706 _force_gif=yes
4707 _gif=auto
4710 if test "$_gif" = auto ; then
4711 _gif=no
4712 for _ld_gif in "-lungif" "-lgif" ; do
4713 function_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4714 done
4717 # If no library was found, and the user wants support forced,
4718 # then we force it on with libgif, as this is the safest
4719 # assumption IMHO. (libungif & libregif both create symbolic
4720 # links to libgif. We also assume that no x11 support is needed,
4721 # because if you are forcing this, then you _should_ know what
4722 # you are doing. [ Besides, package maintainers should never
4723 # have compiled x11 deps into libungif in the first place. ] )
4724 # </rant>
4725 # --Joey
4726 if test "$_force_gif" = yes && test "$_gif" = no ; then
4727 _gif=yes
4728 _ld_gif="-lgif"
4731 if test "$_gif" = yes ; then
4732 def_gif='#define CONFIG_GIF 1'
4733 codecmodules="gif $codecmodules"
4734 vomodules="gif89a $vomodules"
4735 res_comment="old version, some encoding functions disabled"
4736 def_gif_4='#undef CONFIG_GIF_4'
4737 extra_ldflags="$extra_ldflags $_ld_gif"
4739 cat > $TMPC << EOF
4740 #include <signal.h>
4741 #include <stdio.h>
4742 #include <stdlib.h>
4743 #include <gif_lib.h>
4744 static void catch(int sig) { exit(1); }
4745 int main(void) {
4746 signal(SIGSEGV, catch); // catch segfault
4747 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4748 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4749 return 0;
4752 if cc_check "$_ld_gif" ; then
4753 def_gif_4='#define CONFIG_GIF_4 1'
4754 res_comment=""
4756 else
4757 def_gif='#undef CONFIG_GIF'
4758 def_gif_4='#undef CONFIG_GIF_4'
4759 novomodules="gif89a $novomodules"
4760 nocodecmodules="gif $nocodecmodules"
4762 echores "$_gif"
4765 case "$_gif" in yes*)
4766 echocheck "broken giflib workaround"
4767 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4769 cat > $TMPC << EOF
4770 #include <stdio.h>
4771 #include <gif_lib.h>
4772 int main(void) {
4773 GifFileType gif = {.UserData = NULL};
4774 printf("UserData is at address %p\n", gif.UserData);
4775 return 0;
4778 if cc_check "$_ld_gif" ; then
4779 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4780 echores "disabled"
4781 else
4782 echores "enabled"
4785 esac
4788 echocheck "VESA support"
4789 if test "$_vesa" = auto ; then
4790 _vesa=no
4791 function_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4793 if test "$_vesa" = yes ; then
4794 def_vesa='#define CONFIG_VESA 1'
4795 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4796 vomodules="vesa $vomodules"
4797 else
4798 def_vesa='#undef CONFIG_VESA'
4799 novomodules="vesa $novomodules"
4801 echores "$_vesa"
4803 #################
4804 # VIDEO + AUDIO #
4805 #################
4808 echocheck "SDL"
4809 _inc_tmp=""
4810 _ld_tmp=""
4811 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4812 if test -z "$_sdlconfig" ; then
4813 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4814 _sdlconfig="sdl-config"
4815 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4816 _sdlconfig="sdl11-config"
4817 else
4818 _sdlconfig=false
4821 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4822 cat > $TMPC << EOF
4823 #ifdef CONFIG_SDL_SDL_H
4824 #include <SDL/SDL.h>
4825 #else
4826 #include <SDL.h>
4827 #endif
4828 #ifndef __APPLE__
4829 // we allow SDL hacking our main() only on OSX
4830 #undef main
4831 #endif
4832 int main(int argc, char *argv[]) {
4833 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4834 return 0;
4837 _sdl=no
4838 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4839 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4840 _sdl=yes
4841 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4842 break
4844 done
4845 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4846 res_comment="using $_sdlconfig"
4847 if cygwin ; then
4848 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4849 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4850 elif mingw32 ; then
4851 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4852 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4853 else
4854 _inc_tmp="$($_sdlconfig --cflags)"
4855 _ld_tmp="$($_sdlconfig --libs)"
4857 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4858 _sdl=yes
4859 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4860 # HACK for BeOS/Haiku SDL
4861 _ld_tmp="$_ld_tmp -lstdc++"
4862 _sdl=yes
4866 if test "$_sdl" = yes ; then
4867 def_sdl='#define CONFIG_SDL 1'
4868 extra_cflags="$extra_cflags $_inc_tmp"
4869 libs_mplayer="$libs_mplayer $_ld_tmp"
4870 vomodules="sdl $vomodules"
4871 aomodules="sdl $aomodules"
4872 else
4873 def_sdl='#undef CONFIG_SDL'
4874 novomodules="sdl $novomodules"
4875 noaomodules="sdl $noaomodules"
4877 echores "$_sdl"
4880 # make sure this stays below CoreVideo to avoid issues due to namespace
4881 # conflicts between -lGL and -framework OpenGL
4882 echocheck "OpenGL"
4883 #Note: this test is run even with --enable-gl since we autodetect linker flags
4884 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4885 cat > $TMPC << EOF
4886 #ifdef GL_WIN32
4887 #include <windows.h>
4888 #include <GL/gl.h>
4889 #elif defined(GL_SDL)
4890 #include <GL/gl.h>
4891 #ifdef CONFIG_SDL_SDL_H
4892 #include <SDL/SDL.h>
4893 #else
4894 #include <SDL.h>
4895 #endif
4896 #ifndef __APPLE__
4897 // we allow SDL hacking our main() only on OSX
4898 #undef main
4899 #endif
4900 #else
4901 #include <GL/gl.h>
4902 #include <X11/Xlib.h>
4903 #include <GL/glx.h>
4904 #endif
4905 int main(int argc, char *argv[]) {
4906 #ifdef GL_WIN32
4907 HDC dc;
4908 wglCreateContext(dc);
4909 #elif defined(GL_SDL)
4910 SDL_GL_SwapBuffers();
4911 #else
4912 glXCreateContext(NULL, NULL, NULL, True);
4913 #endif
4914 glFinish();
4915 return 0;
4918 _gl=no
4919 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4920 if cc_check $_ld_tmp $_ld_lm ; then
4921 _gl=yes
4922 _gl_x11=yes
4923 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4924 break
4926 done
4927 if cc_check -DGL_WIN32 -lopengl32 ; then
4928 _gl=yes
4929 _gl_win32=yes
4930 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4932 # last so it can reuse any linker etc. flags detected before
4933 if test "$_sdl" = yes ; then
4934 if cc_check -DGL_SDL ||
4935 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4936 _gl=yes
4937 _gl_sdl=yes
4938 elif cc_check -DGL_SDL -lGL ||
4939 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4940 _gl=yes
4941 _gl_sdl=yes
4942 libs_mplayer="$libs_mplayer -lGL"
4945 else
4946 _gl=no
4948 if test "$_gl" = yes ; then
4949 def_gl='#define CONFIG_GL 1'
4950 res_comment="backends:"
4951 if test "$_gl_win32" = yes ; then
4952 def_gl_win32='#define CONFIG_GL_WIN32 1'
4953 res_comment="$res_comment win32"
4955 if test "$_gl_x11" = yes ; then
4956 def_gl_x11='#define CONFIG_GL_X11 1'
4957 res_comment="$res_comment x11"
4959 if test "$_gl_sdl" = yes ; then
4960 def_gl_sdl='#define CONFIG_GL_SDL 1'
4961 res_comment="$res_comment sdl"
4963 vomodules="opengl $vomodules"
4964 else
4965 def_gl='#undef CONFIG_GL'
4966 def_gl_win32='#undef CONFIG_GL_WIN32'
4967 def_gl_x11='#undef CONFIG_GL_X11'
4968 def_gl_sdl='#undef CONFIG_GL_SDL'
4969 novomodules="opengl $novomodules"
4971 echores "$_gl"
4974 echocheck "MatrixView"
4975 if test "$_gl" = no ; then
4976 matrixview=no
4978 if test "$matrixview" = yes ; then
4979 vomodules="matrixview $vomodules"
4980 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4981 else
4982 novomodules="matrixview $novomodules"
4983 def_matrixview='#undef CONFIG_MATRIXVIEW'
4985 echores "$matrixview"
4988 if os2 ; then
4989 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4990 if test "$_kva" = auto; then
4991 _kva=no;
4992 header_check_broken os2.h kva.h -lkva && _kva=yes
4994 if test "$_kva" = yes ; then
4995 def_kva='#define CONFIG_KVA 1'
4996 libs_mplayer="$libs_mplayer -lkva"
4997 vomodules="kva $vomodules"
4998 else
4999 def_kva='#undef CONFIG_KVA'
5000 novomodules="kva $novomodules"
5002 echores "$_kva"
5003 fi #if os2
5006 if win32; then
5008 echocheck "Windows waveout"
5009 if test "$_win32waveout" = auto ; then
5010 cat > $TMPC << EOF
5011 #include <windows.h>
5012 #include <mmsystem.h>
5013 int main(void) { return 0; }
5015 _win32waveout=no
5016 cc_check -lwinmm && _win32waveout=yes
5018 if test "$_win32waveout" = yes ; then
5019 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5020 libs_mplayer="$libs_mplayer -lwinmm"
5021 aomodules="win32 $aomodules"
5022 else
5023 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5024 noaomodules="win32 $noaomodules"
5026 echores "$_win32waveout"
5028 echocheck "Direct3D"
5029 if test "$_direct3d" = auto ; then
5030 cat > $TMPC << EOF
5031 #include <windows.h>
5032 #include <d3d9.h>
5033 int main(void) { return 0; }
5035 _direct3d=no
5036 cc_check && _direct3d=yes
5038 if test "$_direct3d" = yes ; then
5039 def_direct3d='#define CONFIG_DIRECT3D 1'
5040 vomodules="direct3d $vomodules"
5041 else
5042 def_direct3d='#undef CONFIG_DIRECT3D'
5043 novomodules="direct3d $novomodules"
5045 echores "$_direct3d"
5047 echocheck "Directx"
5048 if test "$_directx" = auto ; then
5049 cat > $TMPC << EOF
5050 #include <windows.h>
5051 #include <ddraw.h>
5052 #include <dsound.h>
5053 int main(void) { return 0; }
5055 _directx=no
5056 cc_check -lgdi32 && _directx=yes
5058 if test "$_directx" = yes ; then
5059 def_directx='#define CONFIG_DIRECTX 1'
5060 libs_mplayer="$libs_mplayer -lgdi32"
5061 vomodules="directx $vomodules"
5062 aomodules="dsound $aomodules"
5063 else
5064 def_directx='#undef CONFIG_DIRECTX'
5065 novomodules="directx $novomodules"
5066 noaomodules="dsound $noaomodules"
5068 echores "$_directx"
5070 fi #if win32; then
5073 echocheck "DXR2"
5074 if test "$_dxr2" = auto; then
5075 _dxr2=no
5076 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5077 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5078 extra_cflags="$extra_cflags $_inc_tmp" && break
5079 done
5081 if test "$_dxr2" = yes; then
5082 def_dxr2='#define CONFIG_DXR2 1'
5083 aomodules="dxr2 $aomodules"
5084 vomodules="dxr2 $vomodules"
5085 else
5086 def_dxr2='#undef CONFIG_DXR2'
5087 noaomodules="dxr2 $noaomodules"
5088 novomodules="dxr2 $novomodules"
5090 echores "$_dxr2"
5092 echocheck "DXR3/H+"
5093 if test "$_dxr3" = auto ; then
5094 _dxr3=no
5095 header_check linux/em8300.h && _dxr3=yes
5097 if test "$_dxr3" = yes ; then
5098 def_dxr3='#define CONFIG_DXR3 1'
5099 vomodules="dxr3 $vomodules"
5100 else
5101 def_dxr3='#undef CONFIG_DXR3'
5102 novomodules="dxr3 $novomodules"
5104 echores "$_dxr3"
5107 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5108 if test "$_ivtv" = auto ; then
5109 cat > $TMPC << EOF
5110 #include <stdlib.h>
5111 #include <inttypes.h>
5112 #include <linux/types.h>
5113 #include <linux/videodev2.h>
5114 #include <linux/ivtv.h>
5115 #include <sys/ioctl.h>
5116 int main(void) {
5117 struct ivtv_cfg_stop_decode sd;
5118 struct ivtv_cfg_start_decode sd1;
5119 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5120 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5121 return 0; }
5123 _ivtv=no
5124 cc_check && _ivtv=yes
5126 if test "$_ivtv" = yes ; then
5127 def_ivtv='#define CONFIG_IVTV 1'
5128 vomodules="ivtv $vomodules"
5129 aomodules="ivtv $aomodules"
5130 else
5131 def_ivtv='#undef CONFIG_IVTV'
5132 novomodules="ivtv $novomodules"
5133 noaomodules="ivtv $noaomodules"
5135 echores "$_ivtv"
5138 echocheck "V4L2 MPEG Decoder"
5139 if test "$_v4l2" = auto ; then
5140 cat > $TMPC << EOF
5141 #include <stdlib.h>
5142 #include <inttypes.h>
5143 #include <linux/types.h>
5144 #include <linux/videodev2.h>
5145 #include <linux/version.h>
5146 int main(void) {
5147 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5148 #error kernel headers too old, need 2.6.22
5149 #endif
5150 struct v4l2_ext_controls ctrls;
5151 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5152 return 0;
5155 _v4l2=no
5156 cc_check && _v4l2=yes
5158 if test "$_v4l2" = yes ; then
5159 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5160 vomodules="v4l2 $vomodules"
5161 aomodules="v4l2 $aomodules"
5162 else
5163 def_v4l2='#undef CONFIG_V4L2_DECODER'
5164 novomodules="v4l2 $novomodules"
5165 noaomodules="v4l2 $noaomodules"
5167 echores "$_v4l2"
5171 #########
5172 # AUDIO #
5173 #########
5176 echocheck "OSS Audio"
5177 if test "$_ossaudio" = auto ; then
5178 cat > $TMPC << EOF
5179 #include <$_soundcard_header>
5180 int main(void) { return SNDCTL_DSP_SETFRAGMENT; }
5182 _ossaudio=no
5183 cc_check && _ossaudio=yes
5185 if test "$_ossaudio" = yes ; then
5186 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5187 aomodules="oss $aomodules"
5188 cat > $TMPC << EOF
5189 #include <$_soundcard_header>
5190 #ifdef OPEN_SOUND_SYSTEM
5191 int main(void) { return 0; }
5192 #else
5193 #error Not the real thing
5194 #endif
5196 _real_ossaudio=no
5197 cc_check && _real_ossaudio=yes
5198 if test "$_real_ossaudio" = yes; then
5199 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5200 # Check for OSS4 headers (override default headers)
5201 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5202 if test -f /etc/oss.conf; then
5203 . /etc/oss.conf
5204 _ossinc="$OSSLIBDIR/include"
5205 if test -f "$_ossinc/sys/soundcard.h"; then
5206 extra_cflags="-I$_ossinc $extra_cflags"
5209 elif netbsd || openbsd ; then
5210 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5211 extra_ldflags="$extra_ldflags -lossaudio"
5212 else
5213 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5215 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5216 else
5217 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5218 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5219 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5220 noaomodules="oss $noaomodules"
5222 echores "$_ossaudio"
5225 echocheck "aRts"
5226 if test "$_arts" = auto ; then
5227 _arts=no
5228 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5229 function_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
5230 _arts=yes
5234 if test "$_arts" = yes ; then
5235 def_arts='#define CONFIG_ARTS 1'
5236 aomodules="arts $aomodules"
5237 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5238 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5239 else
5240 noaomodules="arts $noaomodules"
5242 echores "$_arts"
5245 echocheck "EsounD"
5246 if test "$_esd" = auto ; then
5247 _esd=no
5248 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5249 function_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5252 echores "$_esd"
5254 if test "$_esd" = yes ; then
5255 def_esd='#define CONFIG_ESD 1'
5256 aomodules="esd $aomodules"
5257 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5258 extra_cflags="$extra_cflags $(esd-config --cflags)"
5260 echocheck "esd_get_latency()"
5261 function_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
5262 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5263 echores "$_esd_latency"
5264 else
5265 def_esd='#undef CONFIG_ESD'
5266 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5267 noaomodules="esd $noaomodules"
5271 echocheck "NAS"
5272 if test "$_nas" = auto ; then
5273 _nas=no
5274 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5276 if test "$_nas" = yes ; then
5277 def_nas='#define CONFIG_NAS 1'
5278 libs_mplayer="$libs_mplayer -laudio -lXt"
5279 aomodules="nas $aomodules"
5280 else
5281 noaomodules="nas $noaomodules"
5282 def_nas='#undef CONFIG_NAS'
5284 echores "$_nas"
5287 echocheck "pulse"
5288 if test "$_pulse" = auto ; then
5289 _pulse=no
5290 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5291 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5292 _pulse=yes
5295 echores "$_pulse"
5297 if test "$_pulse" = yes ; then
5298 def_pulse='#define CONFIG_PULSE 1'
5299 aomodules="pulse $aomodules"
5300 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5301 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5302 else
5303 def_pulse='#undef CONFIG_PULSE'
5304 noaomodules="pulse $noaomodules"
5308 echocheck "JACK"
5309 if test "$_jack" = auto ; then
5310 _jack=yes
5311 if function_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
5312 libs_mplayer="$libs_mplayer -ljack"
5313 elif function_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
5314 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5315 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5316 else
5317 _jack=no
5321 if test "$_jack" = yes ; then
5322 def_jack='#define CONFIG_JACK 1'
5323 aomodules="jack $aomodules"
5324 else
5325 noaomodules="jack $noaomodules"
5327 echores "$_jack"
5329 echocheck "OpenAL"
5330 if test "$_openal" = auto ; then
5331 _openal=no
5332 cat > $TMPC << EOF
5333 #ifdef OPENAL_AL_H
5334 #include <OpenAL/al.h>
5335 #else
5336 #include <AL/al.h>
5337 #endif
5338 int main(void) {
5339 alSourceQueueBuffers(0, 0, 0);
5340 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5341 return 0;
5344 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5345 cc_check $I && _openal=yes && break
5346 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5347 done
5348 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5350 if test "$_openal" = yes ; then
5351 def_openal='#define CONFIG_OPENAL 1'
5352 aomodules="openal $aomodules"
5353 else
5354 noaomodules="openal $noaomodules"
5356 echores "$_openal"
5358 echocheck "ALSA audio"
5359 if test "$_alloca" != yes ; then
5360 _alsa=no
5361 res_comment="alloca missing"
5363 if test "$_alsa" != no ; then
5364 _alsa=no
5365 cat > $TMPC << EOF
5366 #include <sys/asoundlib.h>
5367 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5368 #error "alsa version != 0.5.x"
5369 #endif
5370 int main(void) { return 0; }
5372 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5374 cat > $TMPC << EOF
5375 #include <sys/asoundlib.h>
5376 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5377 #error "alsa version != 0.9.x"
5378 #endif
5379 int main(void) { return 0; }
5381 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5382 cat > $TMPC << EOF
5383 #include <alsa/asoundlib.h>
5384 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5385 #error "alsa version != 0.9.x"
5386 #endif
5387 int main(void) { return 0; }
5389 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5391 cat > $TMPC << EOF
5392 #include <sys/asoundlib.h>
5393 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5394 #error "alsa version != 1.0.x"
5395 #endif
5396 int main(void) { return 0; }
5398 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5399 cat > $TMPC << EOF
5400 #include <alsa/asoundlib.h>
5401 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5402 #error "alsa version != 1.0.x"
5403 #endif
5404 int main(void) { return 0; }
5406 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5408 def_alsa='#undef CONFIG_ALSA'
5409 def_alsa5='#undef CONFIG_ALSA5'
5410 def_alsa9='#undef CONFIG_ALSA9'
5411 def_alsa1x='#undef CONFIG_ALSA1X'
5412 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5413 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5414 if test "$_alsaver" ; then
5415 _alsa=yes
5416 if test "$_alsaver" = '0.5.x' ; then
5417 _alsa5=yes
5418 aomodules="alsa5 $aomodules"
5419 def_alsa5='#define CONFIG_ALSA5 1'
5420 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5421 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5422 elif test "$_alsaver" = '0.9.x-sys' ; then
5423 _alsa9=yes
5424 aomodules="alsa $aomodules"
5425 def_alsa='#define CONFIG_ALSA 1'
5426 def_alsa9='#define CONFIG_ALSA9 1'
5427 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5428 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5429 elif test "$_alsaver" = '0.9.x-alsa' ; then
5430 _alsa9=yes
5431 aomodules="alsa $aomodules"
5432 def_alsa='#define CONFIG_ALSA 1'
5433 def_alsa9='#define CONFIG_ALSA9 1'
5434 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5435 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5436 elif test "$_alsaver" = '1.0.x-sys' ; then
5437 _alsa1x=yes
5438 aomodules="alsa $aomodules"
5439 def_alsa='#define CONFIG_ALSA 1'
5440 def_alsa1x="#define CONFIG_ALSA1X 1"
5441 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5442 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5443 elif test "$_alsaver" = '1.0.x-alsa' ; then
5444 _alsa1x=yes
5445 aomodules="alsa $aomodules"
5446 def_alsa='#define CONFIG_ALSA 1'
5447 def_alsa1x="#define CONFIG_ALSA1X 1"
5448 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5449 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5450 else
5451 _alsa=no
5452 res_comment="unknown version"
5454 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5455 else
5456 noaomodules="alsa $noaomodules"
5458 echores "$_alsa"
5461 echocheck "Sun audio"
5462 if test "$_sunaudio" = auto ; then
5463 cat > $TMPC << EOF
5464 #include <sys/types.h>
5465 #include <sys/audioio.h>
5466 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5468 _sunaudio=no
5469 cc_check && _sunaudio=yes
5471 if test "$_sunaudio" = yes ; then
5472 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5473 aomodules="sun $aomodules"
5474 else
5475 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5476 noaomodules="sun $noaomodules"
5478 echores "$_sunaudio"
5481 def_mlib='#define CONFIG_MLIB 0'
5482 if sunos; then
5483 echocheck "Sun mediaLib"
5484 if test "$_mlib" = auto ; then
5485 _mlib=no
5486 cc_check mlib.h "mlib_VideoColorYUV2ABGR420(0, 0, 0, 0, 0, 0, 0, 0, 0)" -lmlib &&
5487 _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5489 echores "$_mlib"
5490 fi #if sunos
5493 if darwin; then
5494 echocheck "CoreAudio"
5495 if test "$_coreaudio" = auto ; then
5496 cat > $TMPC <<EOF
5497 #include <CoreAudio/CoreAudio.h>
5498 #include <AudioToolbox/AudioToolbox.h>
5499 #include <AudioUnit/AudioUnit.h>
5500 int main(void) { return 0; }
5502 _coreaudio=no
5503 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5505 if test "$_coreaudio" = yes ; then
5506 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5507 def_coreaudio='#define CONFIG_COREAUDIO 1'
5508 aomodules="coreaudio $aomodules"
5509 else
5510 def_coreaudio='#undef CONFIG_COREAUDIO'
5511 noaomodules="coreaudio $noaomodules"
5513 echores $_coreaudio
5514 fi #if darwin
5517 if irix; then
5518 echocheck "SGI audio"
5519 if test "$_sgiaudio" = auto ; then
5520 _sgiaudio=no
5521 header_check dmedia/audio.h && _sgiaudio=yes
5523 if test "$_sgiaudio" = "yes" ; then
5524 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5525 libs_mplayer="$libs_mplayer -laudio"
5526 aomodules="sgi $aomodules"
5527 else
5528 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5529 noaomodules="sgi $noaomodules"
5531 echores "$_sgiaudio"
5532 fi #if irix
5535 if os2 ; then
5536 echocheck "KAI (UNIAUD/DART)"
5537 if test "$_kai" = auto; then
5538 _kai=no;
5539 header_check_broken os2.h kai.h -lkai && _kai=yes
5541 if test "$_kai" = yes ; then
5542 def_kai='#define CONFIG_KAI 1'
5543 libs_mplayer="$libs_mplayer -lkai"
5544 aomodules="kai $aomodules"
5545 else
5546 def_kai='#undef CONFIG_KAI'
5547 noaomodules="kai $noaomodules"
5549 echores "$_kai"
5551 echocheck "DART"
5552 if test "$_dart" = auto; then
5553 _dart=no;
5554 header_check_broken os2.h dart.h -ldart && _dart=yes
5556 if test "$_dart" = yes ; then
5557 def_dart='#define CONFIG_DART 1'
5558 libs_mplayer="$libs_mplayer -ldart"
5559 aomodules="dart $aomodules"
5560 else
5561 def_dart='#undef CONFIG_DART'
5562 noaomodules="dart $noaomodules"
5564 echores "$_dart"
5565 fi #if os2
5568 # set default CD/DVD devices
5569 if win32 || os2 ; then
5570 default_cdrom_device="D:"
5571 elif darwin ; then
5572 default_cdrom_device="/dev/disk1"
5573 elif dragonfly ; then
5574 default_cdrom_device="/dev/cd0"
5575 elif freebsd ; then
5576 default_cdrom_device="/dev/acd0"
5577 elif openbsd ; then
5578 default_cdrom_device="/dev/rcd0c"
5579 elif sunos ; then
5580 default_cdrom_device="/vol/dev/aliases/cdrom0"
5581 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5582 # file system and the volfs service.
5583 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5584 elif amigaos ; then
5585 default_cdrom_device="a1ide.device:2"
5586 else
5587 default_cdrom_device="/dev/cdrom"
5590 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5591 default_dvd_device=$default_cdrom_device
5592 elif darwin ; then
5593 default_dvd_device="/dev/rdiskN"
5594 else
5595 default_dvd_device="/dev/dvd"
5599 echocheck "VCD support"
5600 if test "$_vcd" = auto; then
5601 _vcd=no
5602 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5603 _vcd=yes
5604 elif mingw32; then
5605 header_check ddk/ntddcdrm.h && _vcd=yes
5608 if test "$_vcd" = yes; then
5609 inputmodules="vcd $inputmodules"
5610 def_vcd='#define CONFIG_VCD 1'
5611 else
5612 def_vcd='#undef CONFIG_VCD'
5613 noinputmodules="vcd $noinputmodules"
5614 res_comment="not supported on this OS"
5616 echores "$_vcd"
5620 echocheck "Blu-ray support"
5621 if test "$_bluray" = auto ; then
5622 _bluray=no
5623 function_check libbluray/bluray.h 'bd_get_title_info(0, 0)' -lbluray && _bluray=yes
5625 if test "$_bluray" = yes ; then
5626 def_bluray='#define CONFIG_LIBBLURAY 1'
5627 extra_ldflags="$extra_ldflags -lbluray"
5628 inputmodules="bluray $inputmodules"
5629 else
5630 def_bluray='#undef CONFIG_LIBBLURAY'
5631 noinputmodules="bluray $noinputmodules"
5633 echores "$_bluray"
5635 echocheck "dvdread"
5636 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5637 _dvdread_internal=no
5639 if test "$_dvdread_internal" = auto ; then
5640 _dvdread_internal=no
5641 _dvdread=no
5642 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5643 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5644 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5645 || darwin || win32 || os2; then
5646 _dvdread_internal=yes
5647 _dvdread=yes
5648 extra_cflags="-Ilibdvdread4 $extra_cflags"
5650 elif test "$_dvdread" = auto ; then
5651 _dvdread=no
5652 if test "$_dl" = yes; then
5653 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5654 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5655 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5656 _dvdread=yes
5657 extra_cflags="$extra_cflags $_dvdreadcflags"
5658 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5659 res_comment="external"
5664 if test "$_dvdread_internal" = yes; then
5665 def_dvdread='#define CONFIG_DVDREAD 1'
5666 inputmodules="dvdread(internal) $inputmodules"
5667 _largefiles=yes
5668 res_comment="internal"
5669 elif test "$_dvdread" = yes; then
5670 def_dvdread='#define CONFIG_DVDREAD 1'
5671 _largefiles=yes
5672 extra_ldflags="$extra_ldflags -ldvdread"
5673 inputmodules="dvdread(external) $inputmodules"
5674 res_comment="external"
5675 else
5676 def_dvdread='#undef CONFIG_DVDREAD'
5677 noinputmodules="dvdread $noinputmodules"
5679 echores "$_dvdread"
5682 echocheck "internal libdvdcss"
5683 if test "$_libdvdcss_internal" = auto ; then
5684 _libdvdcss_internal=no
5685 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5686 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5688 if test "$_libdvdcss_internal" = yes ; then
5689 if linux || netbsd || openbsd || bsdos ; then
5690 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5691 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5692 elif freebsd || dragonfly ; then
5693 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5694 elif darwin ; then
5695 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5696 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5697 elif cygwin ; then
5698 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5699 elif beos ; then
5700 cflags_libdvdcss="-DSYS_BEOS"
5701 elif os2 ; then
5702 cflags_libdvdcss="-DSYS_OS2"
5704 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5705 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5706 inputmodules="libdvdcss(internal) $inputmodules"
5707 _largefiles=yes
5708 else
5709 noinputmodules="libdvdcss(internal) $noinputmodules"
5711 echores "$_libdvdcss_internal"
5714 echocheck "cdparanoia"
5715 if test "$_cdparanoia" = auto ; then
5716 cat > $TMPC <<EOF
5717 #include <cdda_interface.h>
5718 #include <cdda_paranoia.h>
5719 // This need a better test. How ?
5720 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5722 _cdparanoia=no
5723 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5724 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5725 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5726 done
5728 if test "$_cdparanoia" = yes ; then
5729 _cdda='yes'
5730 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5731 openbsd && extra_ldflags="$extra_ldflags -lutil"
5733 echores "$_cdparanoia"
5736 echocheck "libcdio"
5737 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5738 cat > $TMPC << EOF
5739 #include <stdio.h>
5740 #include <cdio/version.h>
5741 #include <cdio/cdda.h>
5742 #include <cdio/paranoia.h>
5743 int main(void) {
5744 void *test = cdda_verbose_set;
5745 printf("%s\n", CDIO_VERSION);
5746 return test == (void *)1;
5749 _libcdio=no
5750 for _ld_tmp in "" "-lwinmm" ; do
5751 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5752 cc_check $_ld_tmp $_ld_lm \
5753 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5754 done
5755 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5756 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5757 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5758 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5759 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5762 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5763 _cdda='yes'
5764 def_libcdio='#define CONFIG_LIBCDIO 1'
5765 def_havelibcdio='yes'
5766 else
5767 if test "$_cdparanoia" = yes ; then
5768 res_comment="using cdparanoia"
5770 def_libcdio='#undef CONFIG_LIBCDIO'
5771 def_havelibcdio='no'
5773 echores "$_libcdio"
5775 if test "$_cdda" = yes ; then
5776 test $_cddb = auto && test $networking = yes && _cddb=yes
5777 def_cdparanoia='#define CONFIG_CDDA 1'
5778 inputmodules="cdda $inputmodules"
5779 else
5780 def_cdparanoia='#undef CONFIG_CDDA'
5781 noinputmodules="cdda $noinputmodules"
5784 if test "$_cddb" = yes ; then
5785 def_cddb='#define CONFIG_CDDB 1'
5786 inputmodules="cddb $inputmodules"
5787 else
5788 _cddb=no
5789 def_cddb='#undef CONFIG_CDDB'
5790 noinputmodules="cddb $noinputmodules"
5793 echocheck "bitmap font support"
5794 if test "$_bitmap_font" = yes ; then
5795 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5796 else
5797 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5799 echores "$_bitmap_font"
5802 echocheck "freetype >= 2.0.9"
5804 # freetype depends on iconv
5805 if test "$_iconv" = no ; then
5806 _freetype=no
5807 res_comment="iconv support needed"
5810 if test "$_freetype" = auto ; then
5811 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5812 cat > $TMPC << EOF
5813 #include <stdio.h>
5814 #include <ft2build.h>
5815 #include FT_FREETYPE_H
5816 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5817 #error "Need FreeType 2.0.9 or newer"
5818 #endif
5819 int main(void) {
5820 FT_Library library;
5821 FT_Init_FreeType(&library);
5822 return 0;
5825 _freetype=no
5826 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5827 else
5828 _freetype=no
5831 if test "$_freetype" = yes ; then
5832 def_freetype='#define CONFIG_FREETYPE 1'
5833 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5834 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5835 else
5836 def_freetype='#undef CONFIG_FREETYPE'
5838 echores "$_freetype"
5840 if test "$_freetype" = no ; then
5841 _fontconfig=no
5842 res_comment="FreeType support needed"
5844 echocheck "fontconfig"
5845 if test "$_fontconfig" = auto ; then
5846 cat > $TMPC << EOF
5847 #include <stdio.h>
5848 #include <stdlib.h>
5849 #include <fontconfig/fontconfig.h>
5850 #if FC_VERSION < 20402
5851 #error At least version 2.4.2 of fontconfig required
5852 #endif
5853 int main(void) {
5854 int err = FcInit();
5855 if (err == FcFalse) {
5856 printf("Couldn't initialize fontconfig lib\n");
5857 exit(err);
5859 return 0;
5862 _fontconfig=no
5863 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5864 _ld_tmp="-lfontconfig $_ld_tmp"
5865 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5866 done
5867 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5868 _inc_tmp=$($_pkg_config --cflags fontconfig)
5869 _ld_tmp=$($_pkg_config --libs fontconfig)
5870 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5871 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5874 if test "$_fontconfig" = yes ; then
5875 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5876 else
5877 def_fontconfig='#undef CONFIG_FONTCONFIG'
5879 echores "$_fontconfig"
5882 echocheck "SSA/ASS support"
5883 if test "$_ass" = auto -o "$_ass" = yes ; then
5884 if $_pkg_config libass; then
5885 _ass=yes
5886 def_ass='#define CONFIG_ASS 1'
5887 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5888 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5889 else
5890 _ass=no
5891 def_ass='#undef CONFIG_ASS'
5893 else
5894 def_ass='#undef CONFIG_ASS'
5896 echores "$_ass"
5899 echocheck "fribidi with charsets"
5900 _inc_tmp=""
5901 _ld_tmp=""
5902 if test "$_fribidi" = auto ; then
5903 cat > $TMPC << EOF
5904 #include <stdlib.h>
5905 /* workaround for fribidi 0.10.4 and below */
5906 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5907 #include <fribidi/fribidi.h>
5908 int main(void) {
5909 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5910 exit(1);
5911 return 0;
5914 _fribidi=no
5915 _inc_tmp=""
5916 _ld_tmp="-lfribidi"
5917 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5918 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5919 test "$_fribidi" = no ; then
5920 _inc_tmp="$($_pkg_config --cflags)"
5921 _ld_tmp="$($_pkg_config --libs)"
5922 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5925 if test "$_fribidi" = yes ; then
5926 def_fribidi='#define CONFIG_FRIBIDI 1'
5927 extra_cflags="$extra_cflags $_inc_tmp"
5928 extra_ldflags="$extra_ldflags $_ld_tmp"
5929 else
5930 def_fribidi='#undef CONFIG_FRIBIDI'
5932 echores "$_fribidi"
5935 echocheck "ENCA"
5936 if test "$_enca" = auto ; then
5937 cat > $TMPC << EOF
5938 #include <sys/types.h>
5939 #include <enca.h>
5940 int main(void) {
5941 const char **langs;
5942 size_t langcnt;
5943 langs = enca_get_languages(&langcnt);
5944 return 0;
5947 _enca=no
5948 cc_check -lenca $_ld_lm && _enca=yes
5950 if test "$_enca" = yes ; then
5951 def_enca='#define CONFIG_ENCA 1'
5952 extra_ldflags="$extra_ldflags -lenca"
5953 else
5954 def_enca='#undef CONFIG_ENCA'
5956 echores "$_enca"
5959 echocheck "zlib"
5960 _zlib=no
5961 function_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5962 if test "$_zlib" = yes ; then
5963 def_zlib='#define CONFIG_ZLIB 1'
5964 extra_ldflags="$extra_ldflags -lz"
5965 else
5966 def_zlib='#define CONFIG_ZLIB 0'
5968 echores "$_zlib"
5971 echocheck "bzlib"
5972 bzlib=no
5973 def_bzlib='#define CONFIG_BZLIB 0'
5974 function_check bzlib.h 'BZ2_bzlibVersion()' -lbz2 && bzlib=yes
5975 if test "$bzlib" = yes ; then
5976 def_bzlib='#define CONFIG_BZLIB 1'
5977 extra_ldflags="$extra_ldflags -lbz2"
5979 echores "$bzlib"
5982 echocheck "RTC"
5983 if test "$_rtc" = auto ; then
5984 cat > $TMPC << EOF
5985 #include <sys/ioctl.h>
5986 #ifdef __linux__
5987 #include <linux/rtc.h>
5988 #else
5989 #include <rtc.h>
5990 #define RTC_PIE_ON RTCIO_PIE_ON
5991 #endif
5992 int main(void) { return RTC_PIE_ON; }
5994 _rtc=no
5995 cc_check && _rtc=yes
5996 ppc && _rtc=no
5998 if test "$_rtc" = yes ; then
5999 def_rtc='#define HAVE_RTC 1'
6000 else
6001 def_rtc='#undef HAVE_RTC'
6003 echores "$_rtc"
6006 echocheck "liblzo2 support"
6007 if test "$_liblzo" = auto ; then
6008 _liblzo=no
6009 function_check lzo/lzo1x.h 'lzo_init()' -llzo2 && _liblzo=yes
6011 if test "$_liblzo" = yes ; then
6012 def_liblzo='#define CONFIG_LIBLZO 1'
6013 extra_ldflags="$extra_ldflags -llzo2"
6014 codecmodules="liblzo $codecmodules"
6015 else
6016 def_liblzo='#undef CONFIG_LIBLZO'
6017 nocodecmodules="liblzo $nocodecmodules"
6019 echores "$_liblzo"
6022 echocheck "mad support"
6023 if test "$_mad" = auto ; then
6024 _mad=no
6025 header_check mad.h -lmad && _mad=yes
6027 if test "$_mad" = yes ; then
6028 def_mad='#define CONFIG_LIBMAD 1'
6029 extra_ldflags="$extra_ldflags -lmad"
6030 codecmodules="libmad $codecmodules"
6031 else
6032 def_mad='#undef CONFIG_LIBMAD'
6033 nocodecmodules="libmad $nocodecmodules"
6035 echores "$_mad"
6037 echocheck "Twolame"
6038 if test "$_twolame" = auto ; then
6039 _twolame=no
6040 function_check twolame.h 'twolame_init()' -ltwolame $_ld_lm && _twolame=yes
6042 if test "$_twolame" = yes ; then
6043 def_twolame='#define CONFIG_TWOLAME 1'
6044 libs_mencoder="$libs_mencoder -ltwolame"
6045 codecmodules="twolame $codecmodules"
6046 else
6047 def_twolame='#undef CONFIG_TWOLAME'
6048 nocodecmodules="twolame $nocodecmodules"
6050 echores "$_twolame"
6052 echocheck "Toolame"
6053 if test "$_toolame" = auto ; then
6054 _toolame=no
6055 if test "$_twolame" = yes ; then
6056 res_comment="disabled by twolame"
6057 else
6058 function_check toolame.h 'toolame_init()' -ltoolame $_ld_lm && _toolame=yes
6061 if test "$_toolame" = yes ; then
6062 def_toolame='#define CONFIG_TOOLAME 1'
6063 libs_mencoder="$libs_mencoder -ltoolame"
6064 codecmodules="toolame $codecmodules"
6065 else
6066 def_toolame='#undef CONFIG_TOOLAME'
6067 nocodecmodules="toolame $nocodecmodules"
6069 if test "$_toolamedir" ; then
6070 res_comment="using $_toolamedir"
6072 echores "$_toolame"
6074 echocheck "OggVorbis support"
6075 if test "$_tremor_internal" = yes; then
6076 _libvorbis=no
6077 elif test "$_tremor" = auto; then
6078 _tremor=no
6079 function_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6081 if test "$_libvorbis" = auto; then
6082 _libvorbis=no
6083 function_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes
6085 if test "$_tremor_internal" = yes ; then
6086 _vorbis=yes
6087 def_vorbis='#define CONFIG_OGGVORBIS 1'
6088 def_tremor='#define CONFIG_TREMOR 1'
6089 codecmodules="tremor(internal) $codecmodules"
6090 res_comment="internal Tremor"
6091 if test "$_tremor_low" = yes ; then
6092 cflags_tremor_low="-D_LOW_ACCURACY_"
6093 res_comment="internal low accuracy Tremor"
6095 elif test "$_tremor" = yes ; then
6096 _vorbis=yes
6097 def_vorbis='#define CONFIG_OGGVORBIS 1'
6098 def_tremor='#define CONFIG_TREMOR 1'
6099 codecmodules="tremor(external) $codecmodules"
6100 res_comment="external Tremor"
6101 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6102 elif test "$_libvorbis" = yes ; then
6103 _vorbis=yes
6104 def_vorbis='#define CONFIG_OGGVORBIS 1'
6105 codecmodules="libvorbis $codecmodules"
6106 res_comment="libvorbis"
6107 extra_ldflags="$extra_ldflags -lvorbis -logg"
6108 else
6109 _vorbis=no
6110 nocodecmodules="libvorbis $nocodecmodules"
6112 echores "$_vorbis"
6114 echocheck "libspeex (version >= 1.1 required)"
6115 if test "$_speex" = auto ; then
6116 _speex=no
6117 cat > $TMPC << EOF
6118 #include <stddef.h>
6119 #include <speex/speex.h>
6120 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
6122 cc_check -lspeex $_ld_lm && _speex=yes
6124 if test "$_speex" = yes ; then
6125 def_speex='#define CONFIG_SPEEX 1'
6126 extra_ldflags="$extra_ldflags -lspeex"
6127 codecmodules="speex $codecmodules"
6128 else
6129 def_speex='#undef CONFIG_SPEEX'
6130 nocodecmodules="speex $nocodecmodules"
6132 echores "$_speex"
6134 echocheck "OggTheora support"
6135 if test "$_theora" = auto ; then
6136 _theora=no
6137 cat > $TMPC << EOF
6138 #include <theora/theora.h>
6139 #include <string.h>
6140 int main(void) {
6141 /* Theora is in flux, make sure that all interface routines and datatypes
6142 * exist and work the way we expect it, so we don't break MPlayer. */
6143 ogg_packet op;
6144 theora_comment tc;
6145 theora_info inf;
6146 theora_state st;
6147 yuv_buffer yuv;
6148 int r;
6149 double t;
6151 theora_info_init(&inf);
6152 theora_comment_init(&tc);
6154 return 0;
6156 /* we don't want to execute this kind of nonsense; just for making sure
6157 * that compilation works... */
6158 memset(&op, 0, sizeof(op));
6159 r = theora_decode_header(&inf, &tc, &op);
6160 r = theora_decode_init(&st, &inf);
6161 t = theora_granule_time(&st, op.granulepos);
6162 r = theora_decode_packetin(&st, &op);
6163 r = theora_decode_YUVout(&st, &yuv);
6164 theora_clear(&st);
6166 return 0;
6169 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6170 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6171 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6172 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6173 if test _theora = no; then
6174 _ld_theora="-ltheora -logg"
6175 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6177 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6178 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6179 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6180 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6181 extra_ldflags="$extra_ldflags $_ld_theora" &&
6182 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6183 if test _theora = no; then
6184 _ld_theora="-ltheora -logg"
6185 cc_check tremor/bitwise.c $_ld_theora &&
6186 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6190 if test "$_theora" = yes ; then
6191 def_theora='#define CONFIG_OGGTHEORA 1'
6192 codecmodules="libtheora $codecmodules"
6193 # when --enable-theora is forced, we'd better provide a probably sane
6194 # $_ld_theora than nothing
6195 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6196 else
6197 def_theora='#undef CONFIG_OGGTHEORA'
6198 nocodecmodules="libtheora $nocodecmodules"
6200 echores "$_theora"
6202 echocheck "mp3lib support"
6203 if test "$_mp3lib" = auto ; then
6204 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6206 if test "$_mp3lib" = yes ; then
6207 def_mp3lib='#define CONFIG_MP3LIB 1'
6208 codecmodules="mp3lib(internal) $codecmodules"
6209 else
6210 def_mp3lib='#undef CONFIG_MP3LIB'
6211 nocodecmodules="mp3lib(internal) $nocodecmodules"
6213 echores "$_mp3lib"
6215 # Any version of libmpg123 shall be fine.
6216 echocheck "mpg123 support"
6217 def_mpg123='#undef CONFIG_MPG123'
6218 if test "$_mpg123" = auto; then
6219 _mpg123=no
6220 function_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6222 if test "$_mpg123" = yes ; then
6223 def_mpg123='#define CONFIG_MPG123 1'
6224 codecmodules="mpg123 $codecmodules"
6225 else
6226 nocodecmodules="mpg123 $nocodecmodules"
6228 echores "$_mpg123"
6230 echocheck "liba52 support"
6231 def_liba52='#undef CONFIG_LIBA52'
6232 if test "$_liba52" = auto ; then
6233 _liba52=no
6234 cat > $TMPC << EOF
6235 #include <inttypes.h>
6236 #include <a52dec/a52.h>
6237 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6239 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6241 if test "$_liba52" = yes ; then
6242 def_liba52='#define CONFIG_LIBA52 1'
6243 codecmodules="liba52 $codecmodules"
6244 else
6245 nocodecmodules="liba52 $nocodecmodules"
6247 echores "$_liba52"
6249 echocheck "internal libmpeg2 support"
6250 if test "$_libmpeg2" = auto ; then
6251 _libmpeg2=yes
6252 if alpha && test cc_vendor=gnu; then
6253 case $cc_version in
6254 2*|3.0*|3.1*) # cannot compile MVI instructions
6255 _libmpeg2=no
6256 res_comment="broken gcc"
6258 esac
6261 if test "$_libmpeg2" = yes ; then
6262 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6263 codecmodules="libmpeg2(internal) $codecmodules"
6264 else
6265 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6266 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6268 echores "$_libmpeg2"
6270 echocheck "libdca support"
6271 if test "$_libdca" = auto ; then
6272 _libdca=no
6273 for _ld_dca in -ldca -ldts ; do
6274 function_check_broken stdint.h dts.h 'dts_init(0)' $_ld_dca $_ld_lm &&
6275 extra_ldflags="$extra_ldflags $_ld_dca" && _libdca=yes && break
6276 done
6278 if test "$_libdca" = yes ; then
6279 def_libdca='#define CONFIG_LIBDCA 1'
6280 codecmodules="libdca $codecmodules"
6281 else
6282 def_libdca='#undef CONFIG_LIBDCA'
6283 nocodecmodules="libdca $nocodecmodules"
6285 echores "$_libdca"
6287 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6288 if test "$_musepack" = auto ; then
6289 _musepack=no
6290 cat > $TMPC << EOF
6291 #include <stddef.h>
6292 #include <mpcdec/mpcdec.h>
6293 int main(void) {
6294 mpc_streaminfo info;
6295 mpc_decoder decoder;
6296 mpc_decoder_set_streaminfo(&decoder, &info);
6297 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6298 return 0;
6301 cc_check -lmpcdec $_ld_lm && _musepack=yes
6303 if test "$_musepack" = yes ; then
6304 def_musepack='#define CONFIG_MUSEPACK 1'
6305 extra_ldflags="$extra_ldflags -lmpcdec"
6306 codecmodules="musepack $codecmodules"
6307 else
6308 def_musepack='#undef CONFIG_MUSEPACK'
6309 nocodecmodules="musepack $nocodecmodules"
6311 echores "$_musepack"
6314 echocheck "FAAC support"
6315 if test "$_faac" = auto ; then
6316 cat > $TMPC <<EOF
6317 #include <inttypes.h>
6318 #include <faac.h>
6319 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6321 _faac=no
6322 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6323 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6324 done
6326 if test "$_faac" = yes ; then
6327 def_faac="#define CONFIG_FAAC 1"
6328 codecmodules="faac $codecmodules"
6329 else
6330 def_faac="#undef CONFIG_FAAC"
6331 nocodecmodules="faac $nocodecmodules"
6333 echores "$_faac"
6336 echocheck "FAAD2 support"
6337 if test "$_faad_internal" = auto ; then
6338 if x86_32 && test cc_vendor=gnu; then
6339 case $cc_version in
6340 3.1*|3.2) # ICE/insn with these versions
6341 _faad_internal=no
6342 res_comment="broken gcc"
6345 _faad=yes
6346 _faad_internal=yes
6348 esac
6349 else
6350 _faad=yes
6351 _faad_internal=yes
6354 if test "$_faad" = auto ; then
6355 cat > $TMPC << EOF
6356 #include <faad.h>
6357 #ifndef FAAD_MIN_STREAMSIZE
6358 #error Too old version
6359 #endif
6360 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6361 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6363 cc_check -lfaad $_ld_lm && _faad=yes
6366 def_faad='#undef CONFIG_FAAD'
6367 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6368 if test "$_faad_internal" = yes ; then
6369 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6370 res_comment="internal floating-point"
6371 if test "$_faad_fixed" = yes ; then
6372 # The FIXED_POINT implementation of FAAD2 improves performance
6373 # on some platforms, especially for SBR files.
6374 cflags_faad_fixed="-DFIXED_POINT"
6375 res_comment="internal fixed-point"
6377 elif test "$_faad" = yes ; then
6378 extra_ldflags="$extra_ldflags -lfaad"
6381 if test "$_faad" = yes ; then
6382 def_faad='#define CONFIG_FAAD 1'
6383 if test "$_faad_internal" = yes ; then
6384 codecmodules="faad2(internal) $codecmodules"
6385 else
6386 codecmodules="faad2 $codecmodules"
6388 else
6389 _faad=no
6390 nocodecmodules="faad2 $nocodecmodules"
6392 echores "$_faad"
6395 echocheck "LADSPA plugin support"
6396 if test "$_ladspa" = auto ; then
6397 cat > $TMPC <<EOF
6398 #include <ladspa.h>
6399 int main(void) { LADSPA_Descriptor ld = {0}; return 0; }
6401 _ladspa=no
6402 cc_check && _ladspa=yes
6404 if test "$_ladspa" = yes; then
6405 def_ladspa="#define CONFIG_LADSPA 1"
6406 else
6407 def_ladspa="#undef CONFIG_LADSPA"
6409 echores "$_ladspa"
6412 echocheck "libbs2b audio filter support"
6413 if test "$_libbs2b" = auto ; then
6414 cat > $TMPC <<EOF
6415 #include <bs2b.h>
6416 #if BS2B_VERSION_MAJOR < 3
6417 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6418 #endif
6419 int main(void) {
6420 t_bs2bdp filter;
6421 filter=bs2b_open();
6422 bs2b_close(filter);
6423 return 0;
6426 _libbs2b=no
6427 if $_pkg_config --exists libbs2b ; then
6428 _inc_tmp=$($_pkg_config --cflags libbs2b)
6429 _ld_tmp=$($_pkg_config --libs libbs2b)
6430 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6431 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6432 else
6433 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6434 -I/usr/local/include/bs2b ; do
6435 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6436 extra_ldflags="$extra_ldflags -lbs2b"
6437 extra_cflags="$extra_cflags $_inc_tmp"
6438 _libbs2b=yes
6439 break
6441 done
6444 def_libbs2b="#undef CONFIG_LIBBS2B"
6445 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6446 echores "$_libbs2b"
6449 if test -z "$_codecsdir" ; then
6450 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6451 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6452 if test -d "$dir" ; then
6453 _codecsdir="$dir"
6454 break;
6456 done
6458 # Fall back on default directory.
6459 if test -z "$_codecsdir" ; then
6460 _codecsdir="$_libdir/codecs"
6461 mingw32 || os2 && _codecsdir="codecs"
6465 echocheck "Win32 codecs"
6466 if test "$_win32dll" = auto ; then
6467 _win32dll=no
6468 if x86_32 && ! qnx; then
6469 _win32dll=yes
6472 if test "$_win32dll" = yes ; then
6473 def_win32dll='#define CONFIG_WIN32DLL 1'
6474 if ! win32 ; then
6475 def_win32_loader='#define WIN32_LOADER 1'
6476 _win32_emulation=yes
6477 else
6478 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6479 res_comment="using native windows"
6481 codecmodules="win32 $codecmodules"
6482 else
6483 def_win32dll='#undef CONFIG_WIN32DLL'
6484 def_win32_loader='#undef WIN32_LOADER'
6485 nocodecmodules="win32 $nocodecmodules"
6487 echores "$_win32dll"
6490 echocheck "XAnim codecs"
6491 if test "$_xanim" = auto ; then
6492 _xanim=no
6493 res_comment="dynamic loader support needed"
6494 if test "$_dl" = yes ; then
6495 _xanim=yes
6498 if test "$_xanim" = yes ; then
6499 def_xanim='#define CONFIG_XANIM 1'
6500 codecmodules="xanim $codecmodules"
6501 else
6502 def_xanim='#undef CONFIG_XANIM'
6503 nocodecmodules="xanim $nocodecmodules"
6505 echores "$_xanim"
6508 echocheck "RealPlayer codecs"
6509 if test "$_real" = auto ; then
6510 _real=no
6511 res_comment="dynamic loader support needed"
6512 if test "$_dl" = yes || test "$_win32dll" = yes &&
6513 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6514 _real=yes
6517 if test "$_real" = yes ; then
6518 def_real='#define CONFIG_REALCODECS 1'
6519 codecmodules="real $codecmodules"
6520 else
6521 def_real='#undef CONFIG_REALCODECS'
6522 nocodecmodules="real $nocodecmodules"
6524 echores "$_real"
6527 echocheck "QuickTime codecs"
6528 _qtx_emulation=no
6529 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6530 if test "$_qtx" = auto ; then
6531 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6533 if test "$_qtx" = yes ; then
6534 def_qtx='#define CONFIG_QTX_CODECS 1'
6535 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6536 codecmodules="qtx $codecmodules"
6537 darwin || win32 || _qtx_emulation=yes
6538 else
6539 def_qtx='#undef CONFIG_QTX_CODECS'
6540 nocodecmodules="qtx $nocodecmodules"
6542 echores "$_qtx"
6544 echocheck "Nemesi Streaming Media libraries"
6545 if test "$_nemesi" = auto && test "$networking" = yes ; then
6546 _nemesi=no
6547 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6548 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6549 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6550 _nemesi=yes
6553 if test "$_nemesi" = yes; then
6554 _native_rtsp=no
6555 def_nemesi='#define CONFIG_LIBNEMESI 1'
6556 inputmodules="nemesi $inputmodules"
6557 else
6558 _native_rtsp="$networking"
6559 _nemesi=no
6560 def_nemesi='#undef CONFIG_LIBNEMESI'
6561 noinputmodules="nemesi $noinputmodules"
6563 echores "$_nemesi"
6565 echocheck "LIVE555 Streaming Media libraries"
6566 if test "$_live" = auto && test "$networking" = yes ; then
6567 cat > $TMPCPP << EOF
6568 #include <liveMedia.hh>
6569 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6570 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6571 #endif
6572 int main(void) { return 0; }
6575 _live=no
6576 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
6577 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6578 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6579 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6580 $_livelibdir/groupsock/libgroupsock.a \
6581 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6582 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6583 $extra_ldflags -lstdc++" \
6584 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6585 -I$_livelibdir/UsageEnvironment/include \
6586 -I$_livelibdir/BasicUsageEnvironment/include \
6587 -I$_livelibdir/groupsock/include" && \
6588 _live=yes && break
6589 done
6590 if test "$_live" != yes ; then
6591 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6592 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6593 _live_dist=yes
6597 if test "$_live" = yes && test "$networking" = yes; then
6598 test $_livelibdir && res_comment="using $_livelibdir"
6599 def_live='#define CONFIG_LIVE555 1'
6600 inputmodules="live555 $inputmodules"
6601 elif test "$_live_dist" = yes && test "$networking" = yes; then
6602 res_comment="using distribution version"
6603 _live="yes"
6604 def_live='#define CONFIG_LIVE555 1'
6605 extra_ldflags="$extra_ldflags $ld_tmp"
6606 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6607 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6608 inputmodules="live555 $inputmodules"
6609 else
6610 _live=no
6611 def_live='#undef CONFIG_LIVE555'
6612 noinputmodules="live555 $noinputmodules"
6614 echores "$_live"
6618 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6619 echocheck "FFmpeg ($all_ffmpeg_libs)"
6620 if test "$ffmpeg" = auto ; then
6621 ffmpeg=no
6622 if $_pkg_config --exists $all_ffmpeg_libs ; then
6623 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6624 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6625 extra_ldflags="$extra_ldflags $_ld_tmp"
6626 extra_cflags="$extra_cflags $inc_ffmpeg"
6627 ffmpeg=yes
6628 elif header_check libavcore/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6629 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6630 ffmpeg=yes
6634 if test "$ffmpeg" = yes; then
6635 def_ffmpeg='#define CONFIG_FFMPEG 1'
6636 codecmodules="ffmpeg $codecmodules"
6637 else
6638 def_ffmpeg='#undef CONFIG_FFMPEG'
6639 nocodecmodules="ffmpeg $nocodecmodules"
6641 echores "$ffmpeg"
6643 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6644 if ! test -z "$_ffmpeg_source" ; then
6645 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6650 echocheck "libdv-0.9.5+"
6651 if test "$_libdv" = auto ; then
6652 _libdv=no
6653 function_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6655 if test "$_libdv" = yes ; then
6656 def_libdv='#define CONFIG_LIBDV095 1'
6657 extra_ldflags="$extra_ldflags -ldv"
6658 codecmodules="libdv $codecmodules"
6659 else
6660 def_libdv='#undef CONFIG_LIBDV095'
6661 nocodecmodules="libdv $nocodecmodules"
6663 echores "$_libdv"
6666 echocheck "Xvid"
6667 if test "$_xvid" = auto ; then
6668 _xvid=no
6669 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6670 function_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6671 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6672 done
6675 if test "$_xvid" = yes ; then
6676 def_xvid='#define CONFIG_XVID4 1'
6677 codecmodules="xvid $codecmodules"
6678 else
6679 def_xvid='#undef CONFIG_XVID4'
6680 nocodecmodules="xvid $nocodecmodules"
6682 echores "$_xvid"
6684 echocheck "x264"
6685 if test "$_x264" = auto ; then
6686 cat > $TMPC << EOF
6687 #include <inttypes.h>
6688 #include <x264.h>
6689 #if X264_BUILD < 98
6690 #error We do not support old versions of x264. Get the latest from git.
6691 #endif
6692 int main(void) { x264_encoder_open((void*)0); return 0; }
6694 _x264=no
6695 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6696 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
6697 done
6700 if test "$_x264" = yes ; then
6701 def_x264='#define CONFIG_X264 1'
6702 codecmodules="x264 $codecmodules"
6703 else
6704 def_x264='#undef CONFIG_X264'
6705 nocodecmodules="x264 $nocodecmodules"
6707 echores "$_x264"
6709 echocheck "libnut"
6710 if test "$_libnut" = auto ; then
6711 cat > $TMPC << EOF
6712 #include <libnut.h>
6713 nut_context_tt * nut;
6714 int main(void) { nut_error(0); return 0; }
6716 _libnut=no
6717 cc_check -lnut && _libnut=yes
6720 if test "$_libnut" = yes ; then
6721 def_libnut='#define CONFIG_LIBNUT 1'
6722 extra_ldflags="$extra_ldflags -lnut"
6723 else
6724 def_libnut='#undef CONFIG_LIBNUT'
6726 echores "$_libnut"
6728 # These VO checks must be done after the FFmpeg one
6729 echocheck "/dev/mga_vid"
6730 if test "$_mga" = auto ; then
6731 _mga=no
6732 test -c /dev/mga_vid && _mga=yes
6734 if test "$_mga" = yes ; then
6735 def_mga='#define CONFIG_MGA 1'
6736 vomodules="mga $vomodules"
6737 else
6738 def_mga='#undef CONFIG_MGA'
6739 novomodules="mga $novomodules"
6741 echores "$_mga"
6744 echocheck "xmga"
6745 if test "$_xmga" = auto ; then
6746 _xmga=no
6747 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6749 if test "$_xmga" = yes ; then
6750 def_xmga='#define CONFIG_XMGA 1'
6751 vomodules="xmga $vomodules"
6752 else
6753 def_xmga='#undef CONFIG_XMGA'
6754 novomodules="xmga $novomodules"
6756 echores "$_xmga"
6758 echocheck "zr"
6759 if test "$_zr" = auto ; then
6760 #36067's seem to identify themselves as 36057PQC's, so the line
6761 #below should work for 36067's and 36057's.
6762 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6763 _zr=yes
6764 else
6765 _zr=no
6768 if test "$_zr" = yes ; then
6769 if test "$ffmpeg_internals" = yes ; then
6770 def_zr='#define CONFIG_ZR 1'
6771 vomodules="zr zr2 $vomodules"
6772 else
6773 res_comment="FFmpeg internal headers are required by zr, sorry"
6774 novomodules="zr $novomodules"
6775 def_zr='#undef CONFIG_ZR'
6777 else
6778 def_zr='#undef CONFIG_ZR'
6779 novomodules="zr zr2 $novomodules"
6781 echores "$_zr"
6783 # mencoder requires (optional) those libs: libmp3lame
6784 if test "$_mencoder" != no ; then
6786 echocheck "libmp3lame"
6787 def_mp3lame='#undef CONFIG_MP3LAME'
6788 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6789 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6790 if test "$_mp3lame" = auto ; then
6791 _mp3lame=no
6792 cat > $TMPC <<EOF
6793 #include <lame/lame.h>
6794 int main(void) { lame_version_t lv; lame_init();
6795 get_lame_version_numerical(&lv);
6796 return 0; }
6798 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
6800 if test "$_mp3lame" = yes ; then
6801 def_mp3lame="#define CONFIG_MP3LAME 1"
6802 _ld_mp3lame=-lmp3lame
6803 libs_mencoder="$libs_mencoder $_ld_mp3lame"
6804 function_check lame/lame.h 'lame_set_preset(NULL, STANDARD_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
6805 function_check lame/lame.h 'lame_set_preset(NULL, MEDIUM_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
6807 echores "$_mp3lame"
6809 fi # test "$_mencoder" != no
6811 echocheck "mencoder"
6812 if test "$_mencoder" = yes ; then
6813 def_muxers='#define CONFIG_MUXERS 1'
6814 else
6815 def_muxers='#define CONFIG_MUXERS 0'
6817 echores "$_mencoder"
6820 echocheck "UnRAR executable"
6821 if test "$_unrar_exec" = auto ; then
6822 _unrar_exec="yes"
6823 mingw32 && _unrar_exec="no"
6825 if test "$_unrar_exec" = yes ; then
6826 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6827 else
6828 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6830 echores "$_unrar_exec"
6832 echocheck "TV interface"
6833 if test "$_tv" = yes ; then
6834 def_tv='#define CONFIG_TV 1'
6835 inputmodules="tv $inputmodules"
6836 else
6837 noinputmodules="tv $noinputmodules"
6838 def_tv='#undef CONFIG_TV'
6840 echores "$_tv"
6843 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6844 echocheck "*BSD BT848 bt8xx header"
6845 _ioctl_bt848_h=no
6846 for file in "machine/ioctl_bt848.h" \
6847 "dev/bktr/ioctl_bt848.h" \
6848 "dev/video/bktr/ioctl_bt848.h" \
6849 "dev/ic/bt8xx.h" ; do
6850 cat > $TMPC <<EOF
6851 #include <sys/types.h>
6852 #include <sys/ioctl.h>
6853 #include <$file>
6854 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6856 if cc_check ; then
6857 _ioctl_bt848_h=yes
6858 _ioctl_bt848_h_name="$file"
6859 break;
6861 done
6862 if test "$_ioctl_bt848_h" = yes ; then
6863 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6864 res_comment="using $_ioctl_bt848_h_name"
6865 else
6866 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6868 echores "$_ioctl_bt848_h"
6870 echocheck "*BSD ioctl_meteor.h"
6871 _ioctl_meteor_h=no
6872 for file in "machine/ioctl_meteor.h" \
6873 "dev/bktr/ioctl_meteor.h" \
6874 "dev/video/bktr/ioctl_meteor.h" ; do
6875 cat > $TMPC <<EOF
6876 #include <sys/types.h>
6877 #include <$file>
6878 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
6880 if cc_check ; then
6881 _ioctl_meteor_h=yes
6882 _ioctl_meteor_h_name="$file"
6883 break;
6885 done
6886 if test "$_ioctl_meteor_h" = yes ; then
6887 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
6888 res_comment="using $_ioctl_meteor_h_name"
6889 else
6890 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6892 echores "$_ioctl_meteor_h"
6894 echocheck "*BSD BrookTree 848 TV interface"
6895 if test "$_tv_bsdbt848" = auto ; then
6896 _tv_bsdbt848=no
6897 if test "$_tv" = yes ; then
6898 cat > $TMPC <<EOF
6899 #include <sys/types.h>
6900 $def_ioctl_meteor_h_name
6901 $def_ioctl_bt848_h_name
6902 #ifdef IOCTL_METEOR_H_NAME
6903 #include IOCTL_METEOR_H_NAME
6904 #endif
6905 #ifdef IOCTL_BT848_H_NAME
6906 #include IOCTL_BT848_H_NAME
6907 #endif
6908 int main(void) {
6909 ioctl(0, METEORSINPUT, 0);
6910 ioctl(0, TVTUNER_GETFREQ, 0);
6911 return 0;
6914 cc_check && _tv_bsdbt848=yes
6917 if test "$_tv_bsdbt848" = yes ; then
6918 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6919 inputmodules="tv-bsdbt848 $inputmodules"
6920 else
6921 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6922 noinputmodules="tv-bsdbt848 $noinputmodules"
6924 echores "$_tv_bsdbt848"
6925 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6928 echocheck "DirectShow TV interface"
6929 if test "$_tv_dshow" = auto ; then
6930 _tv_dshow=no
6931 if test "$_tv" = yes && win32 ; then
6932 cat > $TMPC <<EOF
6933 #include <ole2.h>
6934 int main(void) {
6935 void* p;
6936 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
6937 return 0;
6940 cc_check -lole32 -luuid && _tv_dshow=yes
6943 if test "$_tv_dshow" = yes ; then
6944 inputmodules="tv-dshow $inputmodules"
6945 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6946 extra_ldflags="$extra_ldflags -lole32 -luuid"
6947 else
6948 noinputmodules="tv-dshow $noinputmodules"
6949 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6951 echores "$_tv_dshow"
6954 echocheck "Video 4 Linux TV interface"
6955 if test "$_tv_v4l1" = auto ; then
6956 _tv_v4l1=no
6957 if test "$_tv" = yes && linux ; then
6958 header_check linux/videodev.h && _tv_v4l1=yes
6961 if test "$_tv_v4l1" = yes ; then
6962 _audio_input=yes
6963 _tv_v4l=yes
6964 def_tv_v4l='#define CONFIG_TV_V4L 1'
6965 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6966 inputmodules="tv-v4l $inputmodules"
6967 else
6968 noinputmodules="tv-v4l1 $noinputmodules"
6969 def_tv_v4l='#undef CONFIG_TV_V4L'
6971 echores "$_tv_v4l1"
6974 echocheck "Video 4 Linux 2 TV interface"
6975 if test "$_tv_v4l2" = auto ; then
6976 _tv_v4l2=no
6977 if test "$_tv" = yes && linux ; then
6978 header_check linux/videodev2.h && _tv_v4l2=yes
6981 if test "$_tv_v4l2" = yes ; then
6982 _audio_input=yes
6983 _tv_v4l=yes
6984 def_tv_v4l='#define CONFIG_TV_V4L 1'
6985 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6986 inputmodules="tv-v4l2 $inputmodules"
6987 else
6988 noinputmodules="tv-v4l2 $noinputmodules"
6989 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6991 echores "$_tv_v4l2"
6994 echocheck "Radio interface"
6995 if test "$_radio" = yes ; then
6996 def_radio='#define CONFIG_RADIO 1'
6997 inputmodules="radio $inputmodules"
6998 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
6999 _radio_capture=no
7001 if test "$_radio_capture" = yes ; then
7002 _audio_input=yes
7003 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7004 else
7005 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7007 else
7008 noinputmodules="radio $noinputmodules"
7009 def_radio='#undef CONFIG_RADIO'
7010 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7011 _radio_capture=no
7013 echores "$_radio"
7014 echocheck "Capture for Radio interface"
7015 echores "$_radio_capture"
7017 echocheck "Video 4 Linux 2 Radio interface"
7018 if test "$_radio_v4l2" = auto ; then
7019 _radio_v4l2=no
7020 if test "$_radio" = yes && linux ; then
7021 header_check linux/videodev2.h && _radio_v4l2=yes
7024 if test "$_radio_v4l2" = yes ; then
7025 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7026 else
7027 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7029 echores "$_radio_v4l2"
7031 echocheck "Video 4 Linux Radio interface"
7032 if test "$_radio_v4l" = auto ; then
7033 _radio_v4l=no
7034 if test "$_radio" = yes && linux ; then
7035 header_check linux/videodev.h && _radio_v4l=yes
7038 if test "$_radio_v4l" = yes ; then
7039 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7040 else
7041 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7043 echores "$_radio_v4l"
7045 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7046 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7047 echocheck "*BSD BrookTree 848 Radio interface"
7048 _radio_bsdbt848=no
7049 cat > $TMPC <<EOF
7050 #include <sys/types.h>
7051 $def_ioctl_bt848_h_name
7052 #ifdef IOCTL_BT848_H_NAME
7053 #include IOCTL_BT848_H_NAME
7054 #endif
7055 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7057 cc_check && _radio_bsdbt848=yes
7058 echores "$_radio_bsdbt848"
7059 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7061 if test "$_radio_bsdbt848" = yes ; then
7062 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7063 else
7064 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7067 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7068 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7069 die "Radio driver requires BSD BT848, V4L or V4L2!"
7072 echocheck "Video 4 Linux 2 MPEG PVR interface"
7073 if test "$_pvr" = auto ; then
7074 _pvr=no
7075 if test "$_tv_v4l2" = yes && linux ; then
7076 cat > $TMPC <<EOF
7077 #include <linux/videodev2.h>
7078 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7080 cc_check && _pvr=yes
7083 if test "$_pvr" = yes ; then
7084 def_pvr='#define CONFIG_PVR 1'
7085 inputmodules="pvr $inputmodules"
7086 else
7087 noinputmodules="pvr $noinputmodules"
7088 def_pvr='#undef CONFIG_PVR'
7090 echores "$_pvr"
7093 echocheck "ftp"
7094 if test "$_ftp" = "auto" ; then
7095 test "$networking" = "yes" && ! beos && _ftp=yes
7097 if test "$_ftp" = yes ; then
7098 def_ftp='#define CONFIG_FTP 1'
7099 inputmodules="ftp $inputmodules"
7100 else
7101 noinputmodules="ftp $noinputmodules"
7102 def_ftp='#undef CONFIG_FTP'
7104 echores "$_ftp"
7106 echocheck "vstream client"
7107 if test "$_vstream" = auto ; then
7108 _vstream=no
7109 cat > $TMPC <<EOF
7110 #include <vstream-client.h>
7111 void vstream_error(const char *format, ... ) {}
7112 int main(void) { vstream_start(); return 0; }
7114 cc_check -lvstream-client && _vstream=yes
7116 if test "$_vstream" = yes ; then
7117 def_vstream='#define CONFIG_VSTREAM 1'
7118 inputmodules="vstream $inputmodules"
7119 extra_ldflags="$extra_ldflags -lvstream-client"
7120 else
7121 noinputmodules="vstream $noinputmodules"
7122 def_vstream='#undef CONFIG_VSTREAM'
7124 echores "$_vstream"
7127 echocheck "OSD menu"
7128 if test "$_menu" = yes ; then
7129 def_menu='#define CONFIG_MENU 1'
7130 test $_dvbin = "yes" && _menu_dvbin=yes
7131 else
7132 def_menu='#undef CONFIG_MENU'
7133 _menu_dvbin=no
7135 echores "$_menu"
7138 echocheck "Subtitles sorting"
7139 if test "$_sortsub" = yes ; then
7140 def_sortsub='#define CONFIG_SORTSUB 1'
7141 else
7142 def_sortsub='#undef CONFIG_SORTSUB'
7144 echores "$_sortsub"
7147 echocheck "XMMS inputplugin support"
7148 if test "$_xmms" = yes ; then
7149 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7150 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7151 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7152 else
7153 _xmmsplugindir=/usr/lib/xmms/Input
7154 _xmmslibdir=/usr/lib
7157 def_xmms='#define CONFIG_XMMS 1'
7158 if darwin ; then
7159 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7160 else
7161 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7163 else
7164 def_xmms='#undef CONFIG_XMMS'
7166 echores "$_xmms"
7168 if test "$_charset" != "noconv" ; then
7169 def_charset="#define MSG_CHARSET \"$_charset\""
7170 else
7171 def_charset="#undef MSG_CHARSET"
7172 _charset="UTF-8"
7175 #############################################################################
7177 echocheck "automatic gdb attach"
7178 if test "$_crash_debug" = yes ; then
7179 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7180 else
7181 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7182 _crash_debug=no
7184 echores "$_crash_debug"
7186 echocheck "compiler support for noexecstack"
7187 if cflag_check -Wl,-z,noexecstack ; then
7188 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7189 echores "yes"
7190 else
7191 echores "no"
7194 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7195 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7196 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7197 echores "yes"
7198 else
7199 echores "no"
7203 # Dynamic linking flags
7204 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7205 _ld_dl_dynamic=''
7206 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7207 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7208 _ld_dl_dynamic='-rdynamic'
7211 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7212 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7213 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7215 def_debug='#undef MP_DEBUG'
7216 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7219 echocheck "joystick"
7220 def_joystick='#undef CONFIG_JOYSTICK'
7221 if test "$_joystick" = yes ; then
7222 if linux ; then
7223 # TODO add some check
7224 def_joystick='#define CONFIG_JOYSTICK 1'
7225 else
7226 _joystick="no"
7227 res_comment="unsupported under $system_name"
7230 echores "$_joystick"
7232 echocheck "lirc"
7233 if test "$_lirc" = auto ; then
7234 _lirc=no
7235 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7237 if test "$_lirc" = yes ; then
7238 def_lirc='#define CONFIG_LIRC 1'
7239 libs_mplayer="$libs_mplayer -llirc_client"
7240 else
7241 def_lirc='#undef CONFIG_LIRC'
7243 echores "$_lirc"
7245 echocheck "lircc"
7246 if test "$_lircc" = auto ; then
7247 _lircc=no
7248 header_check lirc/lircc.h -llircc && _lircc=yes
7250 if test "$_lircc" = yes ; then
7251 def_lircc='#define CONFIG_LIRCC 1'
7252 libs_mplayer="$libs_mplayer -llircc"
7253 else
7254 def_lircc='#undef CONFIG_LIRCC'
7256 echores "$_lircc"
7258 if arm; then
7259 # Detect maemo development platform libraries availability (http://www.maemo.org),
7260 # they are used when run on Nokia 770|8x0
7261 echocheck "maemo (Nokia 770|8x0)"
7262 if test "$_maemo" = auto ; then
7263 _maemo=no
7264 function_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7266 if test "$_maemo" = yes ; then
7267 def_maemo='#define CONFIG_MAEMO 1'
7268 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7269 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7270 else
7271 def_maemo='#undef CONFIG_MAEMO'
7273 echores "$_maemo"
7276 #############################################################################
7278 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7279 # the OMF format needs to come after the 'extern symbol prefix' check, which
7280 # uses nm.
7281 if os2 ; then
7282 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7285 # linker paths should be the same for mencoder and mplayer
7286 _ld_tmp=""
7287 for I in $libs_mplayer ; do
7288 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7289 if test -z "$_tmp" ; then
7290 extra_ldflags="$extra_ldflags $I"
7291 else
7292 _ld_tmp="$_ld_tmp $I"
7294 done
7295 libs_mplayer=$_ld_tmp
7298 #############################################################################
7299 # 64 bit file offsets?
7300 if test "$_largefiles" = yes || freebsd ; then
7301 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7302 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7303 # dvdread support requires this (for off64_t)
7304 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7308 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7310 # This must be the last test to be performed. Any other tests following it
7311 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7312 # against libdvdread (to permit MPlayer to use its own copy of the library).
7313 # So any compilation using the flags added here but not linking against
7314 # libdvdread can fail.
7315 echocheck "DVD support (libdvdnav)"
7316 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7317 _dvdnav=no
7319 dvdnav_internal=no
7320 if test "$_dvdnav" = auto ; then
7321 if test "$_dvdread_internal" = yes ; then
7322 _dvdnav=yes
7323 dvdnav_internal=yes
7324 res_comment="internal"
7325 else
7326 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7329 if test "$_dvdnav" = auto ; then
7330 cat > $TMPC <<EOF
7331 #include <inttypes.h>
7332 #include <dvdnav/dvdnav.h>
7333 int main(void) { dvdnav_t *dvd=0; return 0; }
7335 _dvdnav=no
7336 _dvdnavdir=$($_dvdnavconfig --cflags)
7337 _dvdnavlibs=$($_dvdnavconfig --libs)
7338 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7340 if test "$_dvdnav" = yes ; then
7341 _largefiles=yes
7342 def_dvdnav='#define CONFIG_DVDNAV 1'
7343 if test "$dvdnav_internal" = yes ; then
7344 cflags_libdvdnav="-Ilibdvdnav"
7345 inputmodules="dvdnav(internal) $inputmodules"
7346 else
7347 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7348 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7349 inputmodules="dvdnav $inputmodules"
7351 else
7352 def_dvdnav='#undef CONFIG_DVDNAV'
7353 noinputmodules="dvdnav $noinputmodules"
7355 echores "$_dvdnav"
7357 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7358 # Read dvdnav comment above.
7360 mak_enable () {
7361 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7362 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7363 nprefix=$3;
7364 for part in $list; do
7365 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7366 echo "${nprefix}_$part = yes"
7368 done
7371 #############################################################################
7372 echo "Creating config.mak"
7373 cat > config.mak << EOF
7374 # -------- Generated by configure -----------
7376 # Ensure that locale settings do not interfere with shell commands.
7377 export LC_ALL = C
7379 CONFIGURATION = $configuration
7381 CHARSET = $_charset
7382 DOC_LANGS = $language_doc
7383 DOC_LANG_ALL = $doc_lang_all
7384 MAN_LANGS = $language_man
7385 MAN_LANG_ALL = $man_lang_all
7386 MSG_LANGS = $language_msg
7387 MSG_LANG_ALL = $msg_lang_all
7389 prefix = \$(DESTDIR)$_prefix
7390 BINDIR = \$(DESTDIR)$_bindir
7391 DATADIR = \$(DESTDIR)$_datadir
7392 LIBDIR = \$(DESTDIR)$_libdir
7393 MANDIR = \$(DESTDIR)$_mandir
7394 CONFDIR = \$(DESTDIR)$_confdir
7395 LOCALEDIR = \$(DESTDIR)$_localedir
7397 AR = $_ar
7398 AS = $_cc
7399 CC = $_cc
7400 CXX = $_cc
7401 HOST_CC = $_host_cc
7402 INSTALL = $_install
7403 INSTALLSTRIP = $_install_strip
7404 WINDRES = $_windres
7406 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7407 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7408 DEPFLAGS = $DEPFLAGS
7410 CFLAGS_DHAHELPER = $cflags_dhahelper
7411 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7412 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7413 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7414 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7415 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7416 CFLAGS_STACKREALIGN = $cflags_stackrealign
7417 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7418 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7420 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7421 EXTRALIBS_MPLAYER = $libs_mplayer
7422 EXTRALIBS_MENCODER = $libs_mencoder
7424 GETCH = $_getch
7425 TIMER = $_timer
7427 EXESUF = $_exesuf
7428 EXESUFS_ALL = .exe
7430 ARCH = $arch
7431 $(mak_enable "$arch_all" "$arch" ARCH)
7432 $(mak_enable "$subarch_all" "$subarch" ARCH)
7433 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7435 MENCODER = $_mencoder
7436 MPLAYER = $_mplayer
7438 NEED_GETTIMEOFDAY = $_need_gettimeofday
7439 NEED_GLOB = $_need_glob
7440 NEED_MMAP = $_need_mmap
7441 NEED_SETENV = $_need_setenv
7442 NEED_SHMEM = $_need_shmem
7443 NEED_STRSEP = $_need_strsep
7444 NEED_SWAB = $_need_swab
7445 NEED_VSSCANF = $_need_vsscanf
7447 # features
7448 3DFX = $_3dfx
7449 AA = $_aa
7450 ALSA1X = $_alsa1x
7451 ALSA9 = $_alsa9
7452 ALSA5 = $_alsa5
7453 APPLE_IR = $_apple_ir
7454 APPLE_REMOTE = $_apple_remote
7455 ARTS = $_arts
7456 AUDIO_INPUT = $_audio_input
7457 BITMAP_FONT = $_bitmap_font
7458 BL = $_bl
7459 CACA = $_caca
7460 CDDA = $_cdda
7461 CDDB = $_cddb
7462 COREAUDIO = $_coreaudio
7463 COREVIDEO = $_corevideo
7464 DART = $_dart
7465 DGA = $_dga
7466 DIRECT3D = $_direct3d
7467 DIRECTFB = $_directfb
7468 DIRECTX = $_directx
7469 DVBIN = $_dvbin
7470 DVDNAV = $_dvdnav
7471 DVDNAV_INTERNAL = $dvdnav_internal
7472 DVDREAD = $_dvdread
7473 DVDREAD_INTERNAL = $_dvdread_internal
7474 DXR2 = $_dxr2
7475 DXR3 = $_dxr3
7476 ESD = $_esd
7477 FAAC=$_faac
7478 FAAD = $_faad
7479 FAAD_INTERNAL = $_faad_internal
7480 FASTMEMCPY = $_fastmemcpy
7481 FBDEV = $_fbdev
7482 FREETYPE = $_freetype
7483 FTP = $_ftp
7484 GIF = $_gif
7485 GGI = $_ggi
7486 GL = $_gl
7487 GL_WIN32 = $_gl_win32
7488 GL_X11 = $_gl_x11
7489 GL_SDL = $_gl_sdl
7490 MATRIXVIEW = $matrixview
7491 HAVE_POSIX_SELECT = $_posix_select
7492 HAVE_SYS_MMAN_H = $_mman
7493 IVTV = $_ivtv
7494 JACK = $_jack
7495 JOYSTICK = $_joystick
7496 JPEG = $_jpeg
7497 KAI = $_kai
7498 KVA = $_kva
7499 LADSPA = $_ladspa
7500 LIBA52 = $_liba52
7501 LIBASS = $_ass
7502 LIBBLURAY = $_bluray
7503 LIBBS2B = $_libbs2b
7504 LIBDCA = $_libdca
7505 LIBDV = $_libdv
7506 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7507 LIBLZO = $_liblzo
7508 LIBMAD = $_mad
7509 LIBMENU = $_menu
7510 LIBMENU_DVBIN = $_menu_dvbin
7511 LIBMPEG2 = $_libmpeg2
7512 LIBNEMESI = $_nemesi
7513 LIBNUT = $_libnut
7514 LIBSMBCLIENT = $_smb
7515 LIBTHEORA = $_theora
7516 LIRC = $_lirc
7517 LIVE555 = $_live
7518 MACOSX_FINDER = $_macosx_finder
7519 MD5SUM = $_md5sum
7520 MGA = $_mga
7521 MNG = $_mng
7522 MP3LAME = $_mp3lame
7523 MP3LIB = $_mp3lib
7524 MPG123 = $_mpg123
7525 MUSEPACK = $_musepack
7526 NAS = $_nas
7527 NATIVE_RTSP = $_native_rtsp
7528 NETWORKING = $networking
7529 OPENAL = $_openal
7530 OSS = $_ossaudio
7531 PE_EXECUTABLE = $_pe_executable
7532 PNG = $_png
7533 PNM = $_pnm
7534 PRIORITY = $_priority
7535 PULSE = $_pulse
7536 PVR = $_pvr
7537 QTX_CODECS = $_qtx
7538 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7539 QTX_EMULATION = $_qtx_emulation
7540 QUARTZ = $_quartz
7541 RADIO=$_radio
7542 RADIO_CAPTURE=$_radio_capture
7543 REAL_CODECS = $_real
7544 S3FB = $_s3fb
7545 SDL = $_sdl
7546 SPEEX = $_speex
7547 STREAM_CACHE = $_stream_cache
7548 SGIAUDIO = $_sgiaudio
7549 SUNAUDIO = $_sunaudio
7550 SVGA = $_svga
7551 TDFXFB = $_tdfxfb
7552 TDFXVID = $_tdfxvid
7553 TGA = $_tga
7554 TOOLAME=$_toolame
7555 TREMOR_INTERNAL = $_tremor_internal
7556 TV = $_tv
7557 TV_BSDBT848 = $_tv_bsdbt848
7558 TV_DSHOW = $_tv_dshow
7559 TV_V4L = $_tv_v4l
7560 TV_V4L1 = $_tv_v4l1
7561 TV_V4L2 = $_tv_v4l2
7562 TWOLAME=$_twolame
7563 UNRAR_EXEC = $_unrar_exec
7564 V4L2 = $_v4l2
7565 VCD = $_vcd
7566 VDPAU = $_vdpau
7567 VESA = $_vesa
7568 VIDIX = $_vidix
7569 VIDIX_PCIDB = $_vidix_pcidb_val
7570 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7571 VIDIX_IVTV=$_vidix_drv_ivtv
7572 VIDIX_MACH64=$_vidix_drv_mach64
7573 VIDIX_MGA=$_vidix_drv_mga
7574 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7575 VIDIX_NVIDIA=$_vidix_drv_nvidia
7576 VIDIX_PM2=$_vidix_drv_pm2
7577 VIDIX_PM3=$_vidix_drv_pm3
7578 VIDIX_RADEON=$_vidix_drv_radeon
7579 VIDIX_RAGE128=$_vidix_drv_rage128
7580 VIDIX_S3=$_vidix_drv_s3
7581 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7582 VIDIX_SIS=$_vidix_drv_sis
7583 VIDIX_UNICHROME=$_vidix_drv_unichrome
7584 VORBIS = $_vorbis
7585 VSTREAM = $_vstream
7586 WII = $_wii
7587 WIN32DLL = $_win32dll
7588 WIN32WAVEOUT = $_win32waveout
7589 WIN32_EMULATION = $_win32_emulation
7590 WINVIDIX = $winvidix
7591 X11 = $_x11
7592 X264 = $_x264
7593 XANIM_CODECS = $_xanim
7594 XMGA = $_xmga
7595 XMMS_PLUGINS = $_xmms
7596 XV = $_xv
7597 XVID4 = $_xvid
7598 XVIDIX = $xvidix
7599 XVMC = $_xvmc
7600 XVR100 = $_xvr100
7601 YUV4MPEG = $_yuv4mpeg
7602 ZR = $_zr
7604 # FFmpeg
7605 FFMPEG = $ffmpeg
7606 FFMPEG_INTERNALS = $ffmpeg_internals
7607 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7609 RANLIB = $_ranlib
7610 YASM = $_yasm
7611 YASMFLAGS = $YASMFLAGS
7613 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7614 CONFIG_AANDCT = yes
7615 CONFIG_FFT = yes
7616 CONFIG_GOLOMB = yes
7617 CONFIG_H264DSP = yes
7618 CONFIG_LPC = yes
7619 CONFIG_MDCT = yes
7620 CONFIG_RDFT = yes
7622 CONFIG_BZLIB = $bzlib
7623 CONFIG_ENCODERS = yes
7624 CONFIG_GPL = yes
7625 CONFIG_MLIB = $_mlib
7626 CONFIG_MUXERS = $_mencoder
7627 CONFIG_VDPAU = $_vdpau
7628 CONFIG_XVMC = $_xvmc
7629 CONFIG_ZLIB = $_zlib
7631 HAVE_PTHREADS = $_pthreads
7632 HAVE_SHM = $_shm
7633 HAVE_W32THREADS = $_w32threads
7634 HAVE_YASM = $have_yasm
7638 #############################################################################
7640 ff_config_enable () {
7641 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7642 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7643 _nprefix=$3;
7644 test -z "$_nprefix" && _nprefix='CONFIG'
7645 for part in $list; do
7646 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7647 echo "#define ${_nprefix}_$part 1"
7648 else
7649 echo "#define ${_nprefix}_$part 0"
7651 done
7654 echo "Creating config.h"
7655 cat > $TMPH << EOF
7656 /*----------------------------------------------------------------------------
7657 ** This file has been automatically generated by configure any changes in it
7658 ** will be lost when you run configure again.
7659 ** Instead of modifying definitions here, use the --enable/--disable options
7660 ** of the configure script! See ./configure --help for details.
7661 *---------------------------------------------------------------------------*/
7663 #ifndef MPLAYER_CONFIG_H
7664 #define MPLAYER_CONFIG_H
7666 /* Undefine this if you do not want to select mono audio (left or right)
7667 with a stereo MPEG layer 2/3 audio stream. The command line option
7668 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7669 right-only), with 0 being the default.
7671 #define CONFIG_FAKE_MONO 1
7673 /* set up audio OUTBURST. Do not change this! */
7674 #define OUTBURST 512
7676 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
7677 #undef FAST_OSD
7678 #undef FAST_OSD_TABLE
7680 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
7681 #define MPEG12_POSTPROC 1
7682 #define ATTRIBUTE_ALIGNED_MAX 16
7686 #define CONFIGURATION "$configuration"
7688 #define MPLAYER_DATADIR "$_datadir"
7689 #define MPLAYER_CONFDIR "$_confdir"
7690 #define MPLAYER_LIBDIR "$_libdir"
7691 #define MPLAYER_LOCALEDIR "$_localedir"
7693 $def_translation
7695 /* definitions needed by included libraries */
7696 #define HAVE_INTTYPES_H 1
7697 /* libmpeg2 + FFmpeg */
7698 $def_fast_inttypes
7699 /* libdvdcss */
7700 #define HAVE_ERRNO_H 1
7701 /* libdvdcss + libdvdread */
7702 #define HAVE_LIMITS_H 1
7703 /* libdvdcss + libfaad2 */
7704 #define HAVE_UNISTD_H 1
7705 /* libfaad2 + libdvdread */
7706 #define STDC_HEADERS 1
7707 #define HAVE_MEMCPY 1
7708 /* libfaad2 */
7709 #define HAVE_STDLIB_H 1
7710 #define HAVE_STRING_H 1
7711 #define HAVE_STRINGS_H 1
7712 #define HAVE_SYS_STAT_H 1
7713 #define HAVE_SYS_TYPES_H 1
7714 /* libdvdnav */
7715 #define READ_CACHE_TRACE 0
7716 /* libdvdread */
7717 #define HAVE_DLFCN_H 1
7718 $def_dvdcss
7721 /* system headers */
7722 $def_alloca_h
7723 $def_alsa_asoundlib_h
7724 $def_altivec_h
7725 $def_malloc_h
7726 $def_mman_h
7727 $def_mman_has_map_failed
7728 $def_soundcard_h
7729 $def_sys_asoundlib_h
7730 $def_sys_soundcard_h
7731 $def_sys_sysinfo_h
7732 $def_termios_h
7733 $def_termios_sys_h
7734 $def_winsock2_h
7737 /* system functions */
7738 $def_gethostbyname2
7739 $def_gettimeofday
7740 $def_glob
7741 $def_langinfo
7742 $def_lrintf
7743 $def_map_memalign
7744 $def_memalign
7745 $def_nanosleep
7746 $def_posix_select
7747 $def_select
7748 $def_setenv
7749 $def_setmode
7750 $def_shm
7751 $def_strsep
7752 $def_swab
7753 $def_sysi86
7754 $def_sysi86_iv
7755 $def_termcap
7756 $def_termios
7757 $def_vsscanf
7760 /* system-specific features */
7761 $def_asmalign_pot
7762 $def_builtin_expect
7763 $def_dl
7764 $def_dos_paths
7765 $def_extern_asm
7766 $def_extern_prefix
7767 $def_iconv
7768 $def_kstat
7769 $def_macosx_bundle
7770 $def_macosx_finder
7771 $def_maemo
7772 $def_named_asm_args
7773 $def_priority
7774 $def_quicktime
7775 $def_restrict_keyword
7776 $def_rtc
7777 $def_unrar_exec
7780 /* configurable options */
7781 $def_charset
7782 $def_crash_debug
7783 $def_debug
7784 $def_dynamic_plugins
7785 $def_fastmemcpy
7786 $def_menu
7787 $def_runtime_cpudetection
7788 $def_sighandler
7789 $def_sortsub
7790 $def_stream_cache
7791 $def_pthread_cache
7794 /* CPU stuff */
7795 #define __CPU__ $iproc
7796 $def_ebx_available
7797 $def_words_endian
7798 $def_bigendian
7799 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7800 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7801 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7804 /* Blu-ray/DVD/VCD/CD */
7805 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7806 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7807 $def_bluray
7808 $def_bsdi_dvd
7809 $def_cddb
7810 $def_cdio
7811 $def_cdparanoia
7812 $def_cdrom
7813 $def_dvd
7814 $def_dvd_bsd
7815 $def_dvd_darwin
7816 $def_dvd_linux
7817 $def_dvd_openbsd
7818 $def_dvdio
7819 $def_dvdnav
7820 $def_dvdread
7821 $def_hpux_scsi_h
7822 $def_libcdio
7823 $def_sol_scsi_h
7824 $def_vcd
7827 /* codec libraries */
7828 $def_faac
7829 $def_faad
7830 $def_faad_internal
7831 $def_liba52
7832 $def_libdca
7833 $def_libdv
7834 $def_liblzo
7835 $def_libmpeg2
7836 $def_mad
7837 $def_mp3lame
7838 $def_mp3lame_preset
7839 $def_mp3lame_preset_medium
7840 $def_mp3lib
7841 $def_mpg123
7842 $def_musepack
7843 $def_speex
7844 $def_theora
7845 $def_toolame
7846 $def_tremor
7847 $def_twolame
7848 $def_vorbis
7849 $def_x264
7850 $def_xvid
7851 $def_zlib
7853 $def_libnut
7856 /* binary codecs */
7857 $def_qtx
7858 $def_qtx_win32
7859 $def_real
7860 $def_win32_loader
7861 $def_win32dll
7862 $def_xanim
7863 $def_xmms
7864 #define BINARY_CODECS_PATH "$_codecsdir"
7865 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7868 /* Audio output drivers */
7869 $def_alsa
7870 $def_alsa1x
7871 $def_alsa5
7872 $def_alsa9
7873 $def_arts
7874 $def_coreaudio
7875 $def_dart
7876 $def_esd
7877 $def_esd_latency
7878 $def_jack
7879 $def_kai
7880 $def_nas
7881 $def_openal
7882 $def_openal_h
7883 $def_ossaudio
7884 $def_ossaudio_devdsp
7885 $def_ossaudio_devmixer
7886 $def_pulse
7887 $def_sgiaudio
7888 $def_sunaudio
7889 $def_win32waveout
7891 $def_ladspa
7892 $def_libbs2b
7895 /* input */
7896 $def_apple_ir
7897 $def_apple_remote
7898 $def_ioctl_bt848_h_name
7899 $def_ioctl_meteor_h_name
7900 $def_joystick
7901 $def_lirc
7902 $def_lircc
7903 $def_pvr
7904 $def_radio
7905 $def_radio_bsdbt848
7906 $def_radio_capture
7907 $def_radio_v4l
7908 $def_radio_v4l2
7909 $def_tv
7910 $def_tv_bsdbt848
7911 $def_tv_dshow
7912 $def_tv_v4l
7913 $def_tv_v4l1
7914 $def_tv_v4l2
7917 /* font stuff */
7918 $def_ass
7919 $def_bitmap_font
7920 $def_enca
7921 $def_fontconfig
7922 $def_freetype
7923 $def_fribidi
7926 /* networking */
7927 $def_closesocket
7928 $def_ftp
7929 $def_inet6
7930 $def_inet_aton
7931 $def_inet_pton
7932 $def_live
7933 $def_nemesi
7934 $def_networking
7935 $def_smb
7936 $def_socklen_t
7937 $def_vstream
7940 /* libvo options */
7941 $def_3dfx
7942 $def_aa
7943 $def_bl
7944 $def_caca
7945 $def_corevideo
7946 $def_dga
7947 $def_dga1
7948 $def_dga2
7949 $def_direct3d
7950 $def_directfb
7951 $def_directx
7952 $def_dvb
7953 $def_dvbin
7954 $def_dxr2
7955 $def_dxr3
7956 $def_fbdev
7957 $def_ggi
7958 $def_ggiwmh
7959 $def_gif
7960 $def_gif_4
7961 $def_gif_tvt_hack
7962 $def_gl
7963 $def_gl_win32
7964 $def_gl_x11
7965 $def_gl_sdl
7966 $def_matrixview
7967 $def_ivtv
7968 $def_jpeg
7969 $def_kva
7970 $def_md5sum
7971 $def_mga
7972 $def_mng
7973 $def_png
7974 $def_pnm
7975 $def_quartz
7976 $def_s3fb
7977 $def_sdl
7978 $def_sdl_sdl_h
7979 $def_svga
7980 $def_tdfxfb
7981 $def_tdfxvid
7982 $def_tga
7983 $def_v4l2
7984 $def_vdpau
7985 $def_vesa
7986 $def_vidix
7987 $def_vidix_drv_cyberblade
7988 $def_vidix_drv_ivtv
7989 $def_vidix_drv_mach64
7990 $def_vidix_drv_mga
7991 $def_vidix_drv_mga_crtc2
7992 $def_vidix_drv_nvidia
7993 $def_vidix_drv_pm3
7994 $def_vidix_drv_radeon
7995 $def_vidix_drv_rage128
7996 $def_vidix_drv_s3
7997 $def_vidix_drv_sh_veu
7998 $def_vidix_drv_sis
7999 $def_vidix_drv_unichrome
8000 $def_vidix_pfx
8001 $def_vm
8002 $def_wii
8003 $def_x11
8004 $def_xdpms
8005 $def_xf86keysym
8006 $def_xinerama
8007 $def_xmga
8008 $def_xss
8009 $def_xv
8010 $def_xvmc
8011 $def_xvr100
8012 $def_yuv4mpeg
8013 $def_zr
8016 /* FFmpeg */
8017 $def_ffmpeg
8018 $def_ffmpeg_internals
8020 #define CONFIG_DECODERS 1
8021 #define CONFIG_ENCODERS 1
8022 #define CONFIG_DEMUXERS 1
8023 $def_muxers
8025 $def_arpa_inet_h
8026 $def_bswap
8027 $def_bzlib
8028 $def_dcbzl
8029 $def_exp2
8030 $def_exp2f
8031 $def_fast_64bit
8032 $def_fast_unaligned
8033 $def_llrint
8034 $def_log2
8035 $def_log2f
8036 $def_lrint
8037 $def_memalign_hack
8038 $def_mlib
8039 $def_mkstemp
8040 $def_posix_memalign
8041 $def_pthreads
8042 $def_round
8043 $def_roundf
8044 $def_ten_operands
8045 $def_threads
8046 $def_truncf
8047 $def_xform_asm
8048 $def_yasm
8050 #define CONFIG_FASTDIV 0
8051 #define CONFIG_FFSERVER 0
8052 #define CONFIG_GPL 1
8053 #define CONFIG_GRAY 0
8054 #define CONFIG_HARDCODED_TABLES 0
8055 #define CONFIG_LIBVORBIS 0
8056 #define CONFIG_POWERPC_PERF 0
8057 #define CONFIG_SMALL 0
8058 #define CONFIG_SWSCALE_ALPHA 1
8060 #define HAVE_ATTRIBUTE_PACKED 1
8061 #define HAVE_GETHRTIME 0
8062 #define HAVE_INLINE_ASM 1
8063 #define HAVE_LDBRX 0
8064 #define HAVE_POLL_H 1
8065 #define HAVE_PPC4XX 0
8066 #define HAVE_VFP_ARGS 1
8067 #define HAVE_VIRTUALALLOC 0
8069 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8070 #define CONFIG_AANDCT 1
8071 #define CONFIG_DCT 1
8072 #define CONFIG_DWT 1
8073 #define CONFIG_FFT 1
8074 #define CONFIG_GOLOMB 1
8075 #define CONFIG_H264DSP 1
8076 #define CONFIG_LPC 1
8077 #define CONFIG_MDCT 1
8078 #define CONFIG_RDFT 1
8080 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8081 #ifndef MP_DEBUG
8082 #define HAVE_EBP_AVAILABLE 1
8083 #else
8084 #define HAVE_EBP_AVAILABLE 0
8085 #endif
8087 #endif /* MPLAYER_CONFIG_H */
8090 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8091 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8093 #############################################################################
8095 ./version.sh `$_cc -dumpversion`
8097 cat << EOF
8099 Config files successfully generated by ./configure $configuration !
8101 Install prefix: $_prefix
8102 Data directory: $_datadir
8103 Config direct.: $_confdir
8105 Byte order: $_byte_order
8106 Optimizing for: $_optimizing
8108 Languages:
8109 Messages (in addition to English): $language_msg
8110 Manual pages: $language_man
8111 Documentation: $language_doc
8113 Enabled optional drivers:
8114 Input: $inputmodules
8115 Codecs: $codecmodules
8116 Audio output: $aomodules
8117 Video output: $vomodules
8119 Disabled optional drivers:
8120 Input: $noinputmodules
8121 Codecs: $nocodecmodules
8122 Audio output: $noaomodules
8123 Video output: $novomodules
8125 'config.h' and 'config.mak' contain your configuration options.
8126 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8127 compile *** DO NOT REPORT BUGS if you tweak these files ***
8129 'make' will now compile MPlayer and 'make install' will install it.
8130 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8135 if test "$_mtrr" = yes ; then
8136 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8137 echo
8140 if ! x86_32; then
8141 cat <<EOF
8142 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8143 operating system ($system_name). You may encounter a few files that cannot
8144 be played due to missing open source video/audio codec support.
8150 cat <<EOF
8151 Check $TMPLOG if you wonder why an autodetection failed (make sure
8152 development headers/packages are installed).
8154 NOTE: The --enable-* parameters unconditionally force options on, completely
8155 skipping autodetection. This behavior is unlike what you may be used to from
8156 autoconf-based configure scripts that can decide to override you. This greater
8157 level of control comes at a price. You may have to provide the correct compiler
8158 and linker flags yourself.
8159 If you used one of these options (except --enable-menu and similar ones that
8160 turn on internal features) and experience a compilation or linking failure,
8161 make sure you have passed the necessary compiler/linker flags to configure.
8163 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8167 if test "$warn_cflags" = yes; then
8168 cat <<EOF
8170 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8171 but:
8173 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8175 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8176 To do so, execute 'CFLAGS= ./configure <options>'
8181 # Last move:
8182 rm -rf "$mplayer_tmpdir"