Remove MEncoder
[mplayer.git] / configure
blob0210fa642c77b93c9141daa7156f1779b68d64f2
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 # this is a special check only to be
111 # used for broken headers that do not
112 # include all dependencies
113 header_check_broken() {
114 cat > $TMPC << EOF
115 #include <$1>
116 #include <$2>
117 int main(void) { return 0; }
119 shift
120 shift
121 compile_check $TMPC $@
124 yasm_check() {
125 echo >> "$TMPLOG"
126 cat "$TMPS" >> "$TMPLOG"
127 echo >> "$TMPLOG"
128 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
129 rm -f "$TMPEXE"
130 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
131 TMPRES="$?"
132 echo >> "$TMPLOG"
133 echo >> "$TMPLOG"
134 return "$TMPRES"
137 tmp_run() {
138 "$TMPEXE" >> "$TMPLOG" 2>&1
141 # Display error message, flushes tempfile, exit
142 die () {
143 echo
144 echo "Error: $@" >&2
145 echo >&2
146 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
147 echo "Check \"$TMPLOG\" if you do not understand why it failed."
148 exit 1
151 # OS test booleans functions
152 issystem() {
153 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
155 aix() { issystem "AIX"; }
156 amigaos() { issystem "AmigaOS"; }
157 beos() { issystem "BEOS"; }
158 bsdos() { issystem "BSD/OS"; }
159 cygwin() { issystem "CYGWIN"; }
160 darwin() { issystem "Darwin"; }
161 dragonfly() { issystem "DragonFly"; }
162 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
163 gnu() { issystem "GNU"; }
164 hpux() { issystem "HP-UX"; }
165 irix() { issystem "IRIX"; }
166 linux() { issystem "Linux"; }
167 mingw32() { issystem "MINGW32"; }
168 morphos() { issystem "MorphOS"; }
169 netbsd() { issystem "NetBSD"; }
170 openbsd() { issystem "OpenBSD"; }
171 os2() { issystem "OS/2"; }
172 qnx() { issystem "QNX"; }
173 sunos() { issystem "SunOS"; }
174 win32() { cygwin || mingw32; }
176 # arch test boolean functions
177 # x86/x86pc is used by QNX
178 x86_32() {
179 case "$host_arch" in
180 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
181 *) return 1 ;;
182 esac
185 x86_64() {
186 case "$host_arch" in
187 x86_64|amd64) return 0 ;;
188 *) return 1 ;;
189 esac
192 x86() {
193 x86_32 || x86_64
196 ppc() {
197 case "$host_arch" in
198 ppc|ppc64|powerpc|powerpc64) return 0;;
199 *) return 1;;
200 esac
203 alpha() {
204 case "$host_arch" in
205 alpha*) return 0;;
206 *) return 1;;
207 esac
210 arm() {
211 case "$host_arch" in
212 arm*) return 0;;
213 *) return 1;;
214 esac
217 # Use this before starting a check
218 echocheck() {
219 echo "============ Checking for $@ ============" >> "$TMPLOG"
220 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
223 # Use this to echo the results of a check
224 echores() {
225 if test "$res_comment" ; then
226 res_comment="($res_comment)"
228 echo "Result is: $@ $res_comment" >> "$TMPLOG"
229 echo "##########################################" >> "$TMPLOG"
230 echo "" >> "$TMPLOG"
231 echo "$@ $res_comment"
232 res_comment=""
234 #############################################################################
236 # Check how echo works in this /bin/sh
237 case $(echo -n) in
238 -n) _echo_n= _echo_c='\c' ;; # SysV echo
239 *) _echo_n='-n ' _echo_c= ;; # BSD echo
240 esac
242 msg_lang_all=''
243 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
244 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")
245 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
247 show_help(){
248 cat << EOF
249 Usage: $0 [OPTIONS]...
251 Configuration:
252 -h, --help display this help and exit
254 Installation directories:
255 --prefix=DIR prefix directory for installation [/usr/local]
256 --bindir=DIR directory for installing binaries [PREFIX/bin]
257 --datadir=DIR directory for installing machine independent
258 data files (skins, etc) [PREFIX/share/mplayer]
259 --mandir=DIR directory for installing man pages [PREFIX/share/man]
260 --confdir=DIR directory for installing configuration files
261 [PREFIX/etc/mplayer]
262 --localedir=DIR directory for locale tree [PREFIX/share/locale]
263 --libdir=DIR directory for object code libraries [PREFIX/lib]
264 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
266 Optional features:
267 --disable-mplayer disable MPlayer compilation [enable]
268 --disable-largefiles disable support for files > 2GB [enable]
269 --enable-termcap use termcap database for key codes [autodetect]
270 --enable-termios use termios database for key codes [autodetect]
271 --disable-iconv disable iconv for encoding conversion [autodetect]
272 --disable-langinfo do not use langinfo [autodetect]
273 --enable-lirc enable LIRC (remote control) support [autodetect]
274 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
275 --enable-joystick enable joystick support [disable]
276 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
277 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
278 --disable-vm disable X video mode extensions [autodetect]
279 --disable-xf86keysym disable support for multimedia keys [autodetect]
280 --enable-radio enable radio interface [disable]
281 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
282 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
283 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
284 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
285 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
286 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
287 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
288 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
289 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
290 --disable-networking disable networking [enable]
291 --enable-winsock2_h enable winsock2_h [autodetect]
292 --enable-smb enable Samba (SMB) input [autodetect]
293 --enable-live enable LIVE555 Streaming Media [autodetect]
294 --enable-nemesi enable Nemesi Streaming Media [autodetect]
295 --disable-vcd disable VCD support [autodetect]
296 --disable-bluray disable Blu-ray support [autodetect]
297 --disable-dvdnav disable libdvdnav [autodetect]
298 --disable-dvdread disable libdvdread [autodetect]
299 --disable-dvdread-internal disable internal libdvdread [autodetect]
300 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
301 --disable-cdparanoia disable cdparanoia [autodetect]
302 --disable-cddb disable cddb [autodetect]
303 --disable-bitmap-font disable bitmap font support [enable]
304 --disable-freetype disable FreeType 2 font rendering [autodetect]
305 --disable-fontconfig disable fontconfig font lookup [autodetect]
306 --disable-unrarexec disable using of UnRAR executable [enabled]
307 --enable-menu enable OSD menu (not DVD menu) [disabled]
308 --disable-sortsub disable subtitle sorting [enabled]
309 --enable-fribidi enable the FriBiDi libs [autodetect]
310 --disable-enca disable ENCA charset oracle library [autodetect]
311 --disable-maemo disable maemo specific features [autodetect]
312 --enable-macosx-finder enable Mac OS X Finder invocation parameter
313 parsing [disabled]
314 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
315 --disable-inet6 disable IPv6 support [autodetect]
316 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
317 --disable-ftp disable FTP support [enabled]
318 --disable-vstream disable TiVo vstream client support [autodetect]
319 --disable-pthreads disable Posix threads support [autodetect]
320 --disable-w32threads disable Win32 threads support [autodetect]
321 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
322 --enable-rpath enable runtime linker path for extra libs [disabled]
324 Codecs:
325 --enable-gif enable GIF support [autodetect]
326 --enable-png enable PNG input/output support [autodetect]
327 --enable-mng enable MNG input support [autodetect]
328 --enable-jpeg enable JPEG input/output support [autodetect]
329 --enable-libcdio enable libcdio support [autodetect]
330 --enable-liblzo enable liblzo support [autodetect]
331 --disable-win32dll disable Win32 DLL support [autodetect]
332 --disable-qtx disable QuickTime codecs support [enabled]
333 --disable-xanim disable XAnim codecs support [enabled]
334 --disable-real disable RealPlayer codecs support [enabled]
335 --disable-xvid disable Xvid [autodetect]
336 --disable-x264 disable x264 [autodetect]
337 --disable-libnut disable libnut [autodetect]
338 --disable-libavutil disable libavutil [autodetect]
339 --disable-libavcodec disable libavcodec [autodetect]
340 --disable-libavformat disable libavformat [autodetect]
341 --disable-libpostproc disable libpostproc [autodetect]
342 --disable-libswscale disable libswscale [autodetect]
343 --disable-tremor-internal disable internal Tremor [enabled]
344 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
345 --enable-tremor enable external Tremor [autodetect]
346 --disable-libvorbis disable libvorbis support [autodetect]
347 --disable-speex disable Speex support [autodetect]
348 --enable-theora enable OggTheora libraries [autodetect]
349 --enable-faad enable external FAAD2 (AAC) [autodetect]
350 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
351 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
352 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
353 --disable-ladspa disable LADSPA plugin support [autodetect]
354 --disable-libbs2b disable libbs2b audio filter support [autodetect]
355 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
356 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
357 --disable-mad disable libmad (MPEG audio) support [autodetect]
358 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
359 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
360 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
361 --enable-xmms enable XMMS input plugin support [disabled]
362 --enable-libdca enable libdca support [autodetect]
363 --disable-mp3lib disable builtin mp3lib [autodetect]
364 --disable-liba52 disable liba52 [autodetect]
365 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
366 --disable-musepack disable musepack support [autodetect]
368 Video output:
369 --disable-vidix disable VIDIX [for x86 *nix]
370 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
371 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
372 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
373 --disable-vidix-pcidb disable VIDIX PCI device name database
374 --enable-dhahelper enable VIDIX dhahelper support
375 --enable-svgalib_helper enable VIDIX svgalib_helper support
376 --enable-gl enable OpenGL video output [autodetect]
377 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
378 --enable-dga2 enable DGA 2 support [autodetect]
379 --enable-dga1 enable DGA 1 support [autodetect]
380 --enable-vesa enable VESA video output [autodetect]
381 --enable-svga enable SVGAlib video output [autodetect]
382 --enable-sdl enable SDL video output [autodetect]
383 --enable-kva enable KVA video output [autodetect]
384 --enable-aa enable AAlib video output [autodetect]
385 --enable-caca enable CACA video output [autodetect]
386 --enable-ggi enable GGI video output [autodetect]
387 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
388 --enable-direct3d enable Direct3D video output [autodetect]
389 --enable-directx enable DirectX video output [autodetect]
390 --enable-dxr2 enable DXR2 video output [autodetect]
391 --enable-dxr3 enable DXR3/H+ video output [autodetect]
392 --enable-ivtv enable IVTV TV-Out video output [autodetect]
393 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
394 --enable-dvb enable DVB video output [autodetect]
395 --enable-mga enable mga_vid video output [autodetect]
396 --enable-xmga enable mga_vid X11 video output [autodetect]
397 --enable-xv enable Xv video output [autodetect]
398 --enable-xvmc enable XvMC acceleration [disable]
399 --enable-vdpau enable VDPAU acceleration [autodetect]
400 --enable-vm enable XF86VidMode support [autodetect]
401 --enable-xinerama enable Xinerama support [autodetect]
402 --enable-x11 enable X11 video output [autodetect]
403 --enable-xshape enable XShape support [autodetect]
404 --disable-xss disable screensaver support via xss [autodetect]
405 --enable-fbdev enable FBDev video output [autodetect]
406 --enable-mlib enable mediaLib video output (Solaris) [disable]
407 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
408 --enable-tdfxfb enable tdfxfb video output [disable]
409 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
410 --enable-wii enable Nintendo Wii/GameCube video output [disable]
411 --enable-directfb enable DirectFB video output [autodetect]
412 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
413 --enable-bl enable Blinkenlights video output [disable]
414 --enable-tdfxvid enable tdfx_vid video output [disable]
415 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
416 --disable-tga disable Targa video output [enable]
417 --disable-pnm disable PNM video output [enable]
418 --disable-md5sum disable md5sum video output [enable]
419 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
420 --disable-corevideo disable CoreVideo video output [autodetect]
421 --disable-quartz disable Quartz video output [autodetect]
423 Audio output:
424 --disable-alsa disable ALSA audio output [autodetect]
425 --disable-ossaudio disable OSS audio output [autodetect]
426 --disable-arts disable aRts audio output [autodetect]
427 --disable-esd disable esd audio output [autodetect]
428 --disable-pulse disable Pulseaudio audio output [autodetect]
429 --disable-jack disable JACK audio output [autodetect]
430 --enable-openal enable OpenAL audio output [disable]
431 --disable-nas disable NAS audio output [autodetect]
432 --disable-sgiaudio disable SGI audio output [autodetect]
433 --disable-sunaudio disable Sun audio output [autodetect]
434 --disable-kai disable KAI audio output [autodetect]
435 --disable-dart disable DART audio output [autodetect]
436 --disable-win32waveout disable Windows waveout audio output [autodetect]
437 --disable-coreaudio disable CoreAudio audio output [autodetect]
438 --disable-select disable using select() on the audio device [enable]
440 Language options:
441 --enable-translation enable support for translated output [disable]
442 --charset=charset convert the console messages to this character set
443 --language-doc=lang language to use for the documentation [en]
444 --language-man=lang language to use for the man pages [en]
445 --language-msg=lang extra languages for program messages [all]
446 --language=lang default language to use [en]
447 Specific options override --language. You can pass a list of languages separated
448 by whitespace or commas instead of a single language. Nonexisting translations
449 will be dropped from each list. All translations available in the list will be
450 installed. The value "all" will activate all translations. The LINGUAS
451 environment variable is honored. In all cases the fallback is English.
452 The program always supports English-language output; additional message
453 languages are only installed if --enable-translation is also specified.
454 Available values for --language-doc are: all $doc_lang_all
455 Available values for --language-man are: all $man_lang_all
456 Available values for --language-msg are: all $msg_lang_all
458 Miscellaneous options:
459 --enable-runtime-cpudetection enable runtime CPU detection [disable]
460 --enable-cross-compile enable cross-compilation [autodetect]
461 --cc=COMPILER C compiler to build MPlayer [gcc]
462 --host-cc=COMPILER C compiler for tools needed while building [gcc]
463 --as=ASSEMBLER assembler to build MPlayer [as]
464 --nm=NM nm tool to build MPlayer [nm]
465 --yasm=YASM Yasm assembler to build MPlayer [yasm]
466 --ar=AR librarian to build MPlayer [ar]
467 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
468 --windres=WINDRES windres to build MPlayer [windres]
469 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
470 --enable-static build a statically linked binary
471 --with-install=PATH path to a custom install program
473 Advanced options:
474 --enable-mmx enable MMX [autodetect]
475 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
476 --enable-3dnow enable 3DNow! [autodetect]
477 --enable-3dnowext enable extended 3DNow! [autodetect]
478 --enable-sse enable SSE [autodetect]
479 --enable-sse2 enable SSE2 [autodetect]
480 --enable-ssse3 enable SSSE3 [autodetect]
481 --enable-shm enable shm [autodetect]
482 --enable-altivec enable AltiVec (PowerPC) [autodetect]
483 --enable-armv5te enable DSP extensions (ARM) [autodetect]
484 --enable-armv6 enable ARMv6 (ARM) [autodetect]
485 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
486 --enable-armvfp enable ARM VFP (ARM) [autodetect]
487 --enable-neon enable NEON (ARM) [autodetect]
488 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
489 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
490 --enable-big-endian force byte order to big-endian [autodetect]
491 --enable-debug[=1-3] compile-in debugging information [disable]
492 --enable-profile compile-in profiling information [disable]
493 --disable-sighandler disable sighandler for crashes [enable]
494 --enable-crash-debug enable automatic gdb attach on crash [disable]
495 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
496 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
498 Use these options if autodetection fails:
499 --extra-cflags=FLAGS extra CFLAGS
500 --extra-ldflags=FLAGS extra LDFLAGS
501 --extra-libs=FLAGS extra linker flags
502 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
503 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
505 --with-freetype-config=PATH path to freetype-config
506 --with-glib-config=PATH path to glib*-config
507 --with-gtk-config=PATH path to gtk*-config
508 --with-sdl-config=PATH path to sdl*-config
509 --with-dvdnav-config=PATH path to dvdnav-config
510 --with-dvdread-config=PATH path to dvdread-config
512 This configure script is NOT autoconf-based, even though its output is similar.
513 It will try to autodetect all configuration options. If you --enable an option
514 it will be forcefully turned on, skipping autodetection. This can break
515 compilation, so you need to know what you are doing.
517 exit 0
518 } #show_help()
520 # GOTCHA: the variables below defines the default behavior for autodetection
521 # and have - unless stated otherwise - at least 2 states : yes no
522 # If autodetection is available then the third state is: auto
523 _mmx=auto
524 _3dnow=auto
525 _3dnowext=auto
526 _mmxext=auto
527 _sse=auto
528 _sse2=auto
529 _ssse3=auto
530 _cmov=auto
531 _fast_cmov=auto
532 _fast_clz=auto
533 _armv5te=auto
534 _armv6=auto
535 _armv6t2=auto
536 _armvfp=auto
537 neon=auto
538 _iwmmxt=auto
539 _mtrr=auto
540 _altivec=auto
541 _install=install
542 _ranlib=ranlib
543 _windres=windres
544 _cc=cc
545 _ar=ar
546 test "$CC" && _cc="$CC"
547 _as=auto
548 _nm=auto
549 _yasm=yasm
550 _runtime_cpudetection=no
551 _cross_compile=auto
552 _prefix="/usr/local"
553 _libavutil=auto
554 _libavcodec=auto
555 _libavformat=auto
556 _libpostproc=auto
557 _libswscale=auto
558 _libavcodec_internals=no
559 _libswscale_internals=no
560 _mencoder=no
561 _mplayer=yes
562 _x11=auto
563 _xshape=auto
564 _xss=auto
565 _dga1=auto
566 _dga2=auto
567 _xv=auto
568 _xvmc=no #auto when complete
569 _vdpau=auto
570 _sdl=auto
571 _kva=auto
572 _direct3d=auto
573 _directx=auto
574 _win32waveout=auto
575 _nas=auto
576 _png=auto
577 _mng=auto
578 _jpeg=auto
579 _pnm=yes
580 _md5sum=yes
581 _yuv4mpeg=yes
582 _gif=auto
583 _gl=auto
584 matrixview=yes
585 _ggi=auto
586 _ggiwmh=auto
587 _aa=auto
588 _caca=auto
589 _svga=auto
590 _vesa=auto
591 _fbdev=auto
592 _dvb=auto
593 _dxr2=auto
594 _dxr3=auto
595 _ivtv=auto
596 _v4l2=auto
597 _iconv=auto
598 _langinfo=auto
599 _rtc=auto
600 _ossaudio=auto
601 _arts=auto
602 _esd=auto
603 _pulse=auto
604 _jack=auto
605 _kai=auto
606 _dart=auto
607 _openal=no
608 _libcdio=auto
609 _liblzo=auto
610 _mad=auto
611 _mp3lame=auto
612 _toolame=auto
613 _twolame=auto
614 _tremor=auto
615 _tremor_internal=yes
616 _tremor_low=no
617 _libvorbis=auto
618 _speex=auto
619 _theora=auto
620 _mpg123=auto
621 _mp3lib=auto
622 _liba52=auto
623 _libdca=auto
624 _libmpeg2=auto
625 _faad=auto
626 _faad_internal=auto
627 _faad_fixed=no
628 _faac=auto
629 _ladspa=auto
630 _libbs2b=auto
631 _xmms=no
632 _vcd=auto
633 _bluray=auto
634 _dvdnav=auto
635 _dvdnavconfig=dvdnav-config
636 _dvdreadconfig=dvdread-config
637 _dvdread=auto
638 _dvdread_internal=auto
639 _libdvdcss_internal=auto
640 _xanim=auto
641 _real=auto
642 _live=auto
643 _nemesi=auto
644 _native_rtsp=yes
645 _xinerama=auto
646 _mga=auto
647 _xmga=auto
648 _vm=auto
649 _xf86keysym=auto
650 _mlib=no #broken, thus disabled
651 _sgiaudio=auto
652 _sunaudio=auto
653 _alsa=auto
654 _fastmemcpy=yes
655 _unrar_exec=auto
656 _win32dll=auto
657 _select=yes
658 _radio=no
659 _radio_capture=no
660 _radio_v4l=auto
661 _radio_v4l2=auto
662 _radio_bsdbt848=auto
663 _tv=yes
664 _tv_v4l1=auto
665 _tv_v4l2=auto
666 _tv_bsdbt848=auto
667 _tv_dshow=auto
668 _pvr=auto
669 networking=yes
670 _winsock2_h=auto
671 _smb=auto
672 _vidix=auto
673 _vidix_pcidb=yes
674 _dhahelper=no
675 _svgalib_helper=no
676 _joystick=no
677 _xvid=auto
678 _x264=auto
679 _libnut=auto
680 _lirc=auto
681 _lircc=auto
682 _apple_remote=auto
683 _apple_ir=auto
684 _gui=no
685 _gtk1=no
686 _termcap=auto
687 _termios=auto
688 _3dfx=no
689 _s3fb=no
690 _wii=no
691 _tdfxfb=no
692 _tdfxvid=no
693 _xvr100=auto
694 _tga=yes
695 _directfb=auto
696 _zr=auto
697 _bl=no
698 _largefiles=yes
699 #language=en
700 _shm=auto
701 _translation=no
702 _charset="UTF-8"
703 _dynamic_plugins=no
704 _crash_debug=no
705 _sighandler=yes
706 _libdv=auto
707 _cdparanoia=auto
708 _cddb=auto
709 _big_endian=auto
710 _bitmap_font=yes
711 _freetype=auto
712 _fontconfig=auto
713 _menu=no
714 _qtx=auto
715 _maemo=auto
716 _coreaudio=auto
717 _corevideo=auto
718 _quartz=auto
719 quicktime=auto
720 _macosx_finder=no
721 _macosx_bundle=auto
722 _sortsub=yes
723 _freetypeconfig='freetype-config'
724 _fribidi=auto
725 _enca=auto
726 _inet6=auto
727 _gethostbyname2=auto
728 _ftp=yes
729 _musepack=auto
730 _vstream=auto
731 _pthreads=auto
732 _w32threads=auto
733 _ass=auto
734 _rpath=no
735 _asmalign_pot=auto
736 _stream_cache=yes
737 _priority=no
738 def_dos_paths="#define HAVE_DOS_PATHS 0"
739 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
740 def_priority="#undef CONFIG_PRIORITY"
741 def_pthread_cache="#undef PTHREAD_CACHE"
742 _need_shmem=yes
743 for ac_option do
744 case "$ac_option" in
745 --help|-help|-h)
746 show_help
748 --prefix=*)
749 _prefix=$(echo $ac_option | cut -d '=' -f 2)
751 --bindir=*)
752 _bindir=$(echo $ac_option | cut -d '=' -f 2)
754 --datadir=*)
755 _datadir=$(echo $ac_option | cut -d '=' -f 2)
757 --mandir=*)
758 _mandir=$(echo $ac_option | cut -d '=' -f 2)
760 --confdir=*)
761 _confdir=$(echo $ac_option | cut -d '=' -f 2)
763 --libdir=*)
764 _libdir=$(echo $ac_option | cut -d '=' -f 2)
766 --codecsdir=*)
767 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
769 --localedir=*)
770 _localedir=$(echo $ac_option | cut -d '=' -f 2)
773 --with-install=*)
774 _install=$(echo $ac_option | cut -d '=' -f 2 )
776 --with-xvmclib=*)
777 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
780 --with-sdl-config=*)
781 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
783 --with-freetype-config=*)
784 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
786 --with-gtk-config=*)
787 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
789 --with-glib-config=*)
790 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
792 --with-dvdnav-config=*)
793 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
795 --with-dvdread-config=*)
796 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
799 --extra-cflags=*)
800 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
802 --extra-ldflags=*)
803 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
805 --extra-libs=*)
806 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
808 --extra-libs-mplayer=*)
809 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
812 --target=*)
813 _target=$(echo $ac_option | cut -d '=' -f 2)
815 --cc=*)
816 _cc=$(echo $ac_option | cut -d '=' -f 2)
818 --host-cc=*)
819 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
821 --as=*)
822 _as=$(echo $ac_option | cut -d '=' -f 2)
824 --nm=*)
825 _nm=$(echo $ac_option | cut -d '=' -f 2)
827 --yasm=*)
828 _yasm=$(echo $ac_option | cut -d '=' -f 2)
830 --ar=*)
831 _ar=$(echo $ac_option | cut -d '=' -f 2)
833 --ranlib=*)
834 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
836 --windres=*)
837 _windres=$(echo $ac_option | cut -d '=' -f 2)
839 --charset=*)
840 _charset=$(echo $ac_option | cut -d '=' -f 2)
842 --language-doc=*)
843 language_doc=$(echo $ac_option | cut -d '=' -f 2)
845 --language-man=*)
846 language_man=$(echo $ac_option | cut -d '=' -f 2)
848 --language-msg=*)
849 language_msg=$(echo $ac_option | cut -d '=' -f 2)
851 --language=*)
852 language=$(echo $ac_option | cut -d '=' -f 2)
855 --enable-static)
856 _ld_static='-static'
858 --disable-static)
859 _ld_static=''
861 --enable-profile)
862 _profile='-p'
864 --disable-profile)
865 _profile=
867 --enable-debug)
868 _debug='-g'
870 --enable-debug=*)
871 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
873 --disable-debug)
874 _debug=
876 --enable-translation) _translation=yes ;;
877 --disable-translation) _translation=no ;;
878 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
879 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
880 --enable-cross-compile) _cross_compile=yes ;;
881 --disable-cross-compile) _cross_compile=no ;;
882 --enable-mplayer) _mplayer=yes ;;
883 --disable-mplayer) _mplayer=no ;;
884 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
885 --disable-dynamic-plugins) _dynamic_plugins=no ;;
886 --enable-x11) _x11=yes ;;
887 --disable-x11) _x11=no ;;
888 --enable-xshape) _xshape=yes ;;
889 --disable-xshape) _xshape=no ;;
890 --enable-xss) _xss=yes ;;
891 --disable-xss) _xss=no ;;
892 --enable-xv) _xv=yes ;;
893 --disable-xv) _xv=no ;;
894 --enable-xvmc) _xvmc=yes ;;
895 --disable-xvmc) _xvmc=no ;;
896 --enable-vdpau) _vdpau=yes ;;
897 --disable-vdpau) _vdpau=no ;;
898 --enable-sdl) _sdl=yes ;;
899 --disable-sdl) _sdl=no ;;
900 --enable-kva) _kva=yes ;;
901 --disable-kva) _kva=no ;;
902 --enable-direct3d) _direct3d=yes ;;
903 --disable-direct3d) _direct3d=no ;;
904 --enable-directx) _directx=yes ;;
905 --disable-directx) _directx=no ;;
906 --enable-win32waveout) _win32waveout=yes ;;
907 --disable-win32waveout) _win32waveout=no ;;
908 --enable-nas) _nas=yes ;;
909 --disable-nas) _nas=no ;;
910 --enable-png) _png=yes ;;
911 --disable-png) _png=no ;;
912 --enable-mng) _mng=yes ;;
913 --disable-mng) _mng=no ;;
914 --enable-jpeg) _jpeg=yes ;;
915 --disable-jpeg) _jpeg=no ;;
916 --enable-pnm) _pnm=yes ;;
917 --disable-pnm) _pnm=no ;;
918 --enable-md5sum) _md5sum=yes ;;
919 --disable-md5sum) _md5sum=no ;;
920 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
921 --disable-yuv4mpeg) _yuv4mpeg=no ;;
922 --enable-gif) _gif=yes ;;
923 --disable-gif) _gif=no ;;
924 --enable-gl) _gl=yes ;;
925 --disable-gl) _gl=no ;;
926 --enable-matrixview) matrixview=yes ;;
927 --disable-matrixview) matrixview=no ;;
928 --enable-ggi) _ggi=yes ;;
929 --disable-ggi) _ggi=no ;;
930 --enable-ggiwmh) _ggiwmh=yes ;;
931 --disable-ggiwmh) _ggiwmh=no ;;
932 --enable-aa) _aa=yes ;;
933 --disable-aa) _aa=no ;;
934 --enable-caca) _caca=yes ;;
935 --disable-caca) _caca=no ;;
936 --enable-svga) _svga=yes ;;
937 --disable-svga) _svga=no ;;
938 --enable-vesa) _vesa=yes ;;
939 --disable-vesa) _vesa=no ;;
940 --enable-fbdev) _fbdev=yes ;;
941 --disable-fbdev) _fbdev=no ;;
942 --enable-dvb) _dvb=yes ;;
943 --disable-dvb) _dvb=no ;;
944 --enable-dxr2) _dxr2=yes ;;
945 --disable-dxr2) _dxr2=no ;;
946 --enable-dxr3) _dxr3=yes ;;
947 --disable-dxr3) _dxr3=no ;;
948 --enable-ivtv) _ivtv=yes ;;
949 --disable-ivtv) _ivtv=no ;;
950 --enable-v4l2) _v4l2=yes ;;
951 --disable-v4l2) _v4l2=no ;;
952 --enable-iconv) _iconv=yes ;;
953 --disable-iconv) _iconv=no ;;
954 --enable-langinfo) _langinfo=yes ;;
955 --disable-langinfo) _langinfo=no ;;
956 --enable-rtc) _rtc=yes ;;
957 --disable-rtc) _rtc=no ;;
958 --enable-libdv) _libdv=yes ;;
959 --disable-libdv) _libdv=no ;;
960 --enable-ossaudio) _ossaudio=yes ;;
961 --disable-ossaudio) _ossaudio=no ;;
962 --enable-arts) _arts=yes ;;
963 --disable-arts) _arts=no ;;
964 --enable-esd) _esd=yes ;;
965 --disable-esd) _esd=no ;;
966 --enable-pulse) _pulse=yes ;;
967 --disable-pulse) _pulse=no ;;
968 --enable-jack) _jack=yes ;;
969 --disable-jack) _jack=no ;;
970 --enable-openal) _openal=yes ;;
971 --disable-openal) _openal=no ;;
972 --enable-kai) _kai=yes ;;
973 --disable-kai) _kai=no ;;
974 --enable-dart) _dart=yes ;;
975 --disable-dart) _dart=no ;;
976 --enable-mad) _mad=yes ;;
977 --disable-mad) _mad=no ;;
978 --enable-mp3lame) _mp3lame=yes ;;
979 --disable-mp3lame) _mp3lame=no ;;
980 --enable-toolame) _toolame=yes ;;
981 --disable-toolame) _toolame=no ;;
982 --enable-twolame) _twolame=yes ;;
983 --disable-twolame) _twolame=no ;;
984 --enable-libcdio) _libcdio=yes ;;
985 --disable-libcdio) _libcdio=no ;;
986 --enable-liblzo) _liblzo=yes ;;
987 --disable-liblzo) _liblzo=no ;;
988 --enable-libvorbis) _libvorbis=yes ;;
989 --disable-libvorbis) _libvorbis=no ;;
990 --enable-speex) _speex=yes ;;
991 --disable-speex) _speex=no ;;
992 --enable-tremor) _tremor=yes ;;
993 --disable-tremor) _tremor=no ;;
994 --enable-tremor-internal) _tremor_internal=yes ;;
995 --disable-tremor-internal) _tremor_internal=no ;;
996 --enable-tremor-low) _tremor_low=yes ;;
997 --disable-tremor-low) _tremor_low=no ;;
998 --enable-theora) _theora=yes ;;
999 --disable-theora) _theora=no ;;
1000 --enable-mpg123) _mpg123=yes ;;
1001 --disable-mpg123) _mpg123=no ;;
1002 --enable-mp3lib) _mp3lib=yes ;;
1003 --disable-mp3lib) _mp3lib=no ;;
1004 --enable-liba52) _liba52=yes ;;
1005 --disable-liba52) _liba52=no ;;
1006 --enable-libdca) _libdca=yes ;;
1007 --disable-libdca) _libdca=no ;;
1008 --enable-libmpeg2) _libmpeg2=yes ;;
1009 --disable-libmpeg2) _libmpeg2=no ;;
1010 --enable-musepack) _musepack=yes ;;
1011 --disable-musepack) _musepack=no ;;
1012 --enable-faad) _faad=yes ;;
1013 --disable-faad) _faad=no ;;
1014 --enable-faad-internal) _faad_internal=yes ;;
1015 --disable-faad-internal) _faad_internal=no ;;
1016 --enable-faad-fixed) _faad_fixed=yes ;;
1017 --disable-faad-fixed) _faad_fixed=no ;;
1018 --enable-faac) _faac=yes ;;
1019 --disable-faac) _faac=no ;;
1020 --enable-ladspa) _ladspa=yes ;;
1021 --disable-ladspa) _ladspa=no ;;
1022 --enable-libbs2b) _libbs2b=yes ;;
1023 --disable-libbs2b) _libbs2b=no ;;
1024 --enable-xmms) _xmms=yes ;;
1025 --disable-xmms) _xmms=no ;;
1026 --enable-vcd) _vcd=yes ;;
1027 --disable-vcd) _vcd=no ;;
1028 --enable-bluray) _bluray=yes ;;
1029 --disable-bluray) _bluray=no ;;
1030 --enable-dvdread) _dvdread=yes ;;
1031 --disable-dvdread) _dvdread=no ;;
1032 --enable-dvdread-internal) _dvdread_internal=yes ;;
1033 --disable-dvdread-internal) _dvdread_internal=no ;;
1034 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1035 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1036 --enable-dvdnav) _dvdnav=yes ;;
1037 --disable-dvdnav) _dvdnav=no ;;
1038 --enable-xanim) _xanim=yes ;;
1039 --disable-xanim) _xanim=no ;;
1040 --enable-real) _real=yes ;;
1041 --disable-real) _real=no ;;
1042 --enable-live) _live=yes ;;
1043 --disable-live) _live=no ;;
1044 --enable-nemesi) _nemesi=yes ;;
1045 --disable-nemesi) _nemesi=no ;;
1046 --enable-xinerama) _xinerama=yes ;;
1047 --disable-xinerama) _xinerama=no ;;
1048 --enable-mga) _mga=yes ;;
1049 --disable-mga) _mga=no ;;
1050 --enable-xmga) _xmga=yes ;;
1051 --disable-xmga) _xmga=no ;;
1052 --enable-vm) _vm=yes ;;
1053 --disable-vm) _vm=no ;;
1054 --enable-xf86keysym) _xf86keysym=yes ;;
1055 --disable-xf86keysym) _xf86keysym=no ;;
1056 --enable-mlib) _mlib=yes ;;
1057 --disable-mlib) _mlib=no ;;
1058 --enable-sunaudio) _sunaudio=yes ;;
1059 --disable-sunaudio) _sunaudio=no ;;
1060 --enable-sgiaudio) _sgiaudio=yes ;;
1061 --disable-sgiaudio) _sgiaudio=no ;;
1062 --enable-alsa) _alsa=yes ;;
1063 --disable-alsa) _alsa=no ;;
1064 --enable-tv) _tv=yes ;;
1065 --disable-tv) _tv=no ;;
1066 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1067 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1068 --enable-tv-v4l1) _tv_v4l1=yes ;;
1069 --disable-tv-v4l1) _tv_v4l1=no ;;
1070 --enable-tv-v4l2) _tv_v4l2=yes ;;
1071 --disable-tv-v4l2) _tv_v4l2=no ;;
1072 --enable-tv-dshow) _tv_dshow=yes ;;
1073 --disable-tv-dshow) _tv_dshow=no ;;
1074 --enable-radio) _radio=yes ;;
1075 --enable-radio-capture) _radio_capture=yes ;;
1076 --disable-radio-capture) _radio_capture=no ;;
1077 --disable-radio) _radio=no ;;
1078 --enable-radio-v4l) _radio_v4l=yes ;;
1079 --disable-radio-v4l) _radio_v4l=no ;;
1080 --enable-radio-v4l2) _radio_v4l2=yes ;;
1081 --disable-radio-v4l2) _radio_v4l2=no ;;
1082 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1083 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1084 --enable-pvr) _pvr=yes ;;
1085 --disable-pvr) _pvr=no ;;
1086 --enable-fastmemcpy) _fastmemcpy=yes ;;
1087 --disable-fastmemcpy) _fastmemcpy=no ;;
1088 --enable-networking) networking=yes ;;
1089 --disable-networking) networking=no ;;
1090 --enable-winsock2_h) _winsock2_h=yes ;;
1091 --disable-winsock2_h) _winsock2_h=no ;;
1092 --enable-smb) _smb=yes ;;
1093 --disable-smb) _smb=no ;;
1094 --enable-vidix) _vidix=yes ;;
1095 --disable-vidix) _vidix=no ;;
1096 --with-vidix-drivers=*)
1097 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1099 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1100 --enable-dhahelper) _dhahelper=yes ;;
1101 --disable-dhahelper) _dhahelper=no ;;
1102 --enable-svgalib_helper) _svgalib_helper=yes ;;
1103 --disable-svgalib_helper) _svgalib_helper=no ;;
1104 --enable-joystick) _joystick=yes ;;
1105 --disable-joystick) _joystick=no ;;
1106 --enable-xvid) _xvid=yes ;;
1107 --disable-xvid) _xvid=no ;;
1108 --enable-x264) _x264=yes ;;
1109 --disable-x264) _x264=no ;;
1110 --enable-libnut) _libnut=yes ;;
1111 --disable-libnut) _libnut=no ;;
1112 --enable-libavutil) _libavutil=yes ;;
1113 --disable-libavutil) _libavutil=no ;;
1114 --enable-libavcodec) _libavcodec=yes ;;
1115 --disable-libavcodec) _libavcodec=no ;;
1116 --enable-libavformat) _libavformat=yes ;;
1117 --disable-libavformat) _libavformat=no ;;
1118 --enable-libpostproc) _libpostproc=yes ;;
1119 --disable-libpostproc) _libpostproc=no ;;
1120 --enable-libswscale) _libswscale=yes ;;
1121 --disable-libswscale) _libswscale=no ;;
1122 --ffmpeg-source-dir=*)
1123 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1125 --enable-lirc) _lirc=yes ;;
1126 --disable-lirc) _lirc=no ;;
1127 --enable-lircc) _lircc=yes ;;
1128 --disable-lircc) _lircc=no ;;
1129 --enable-apple-remote) _apple_remote=yes ;;
1130 --disable-apple-remote) _apple_remote=no ;;
1131 --enable-apple-ir) _apple_ir=yes ;;
1132 --disable-apple-ir) _apple_ir=no ;;
1133 --enable-gui) _gui=yes ;;
1134 --disable-gui) _gui=no ;;
1135 --enable-gtk1) _gtk1=yes ;;
1136 --disable-gtk1) _gtk1=no ;;
1137 --enable-termcap) _termcap=yes ;;
1138 --disable-termcap) _termcap=no ;;
1139 --enable-termios) _termios=yes ;;
1140 --disable-termios) _termios=no ;;
1141 --enable-3dfx) _3dfx=yes ;;
1142 --disable-3dfx) _3dfx=no ;;
1143 --enable-s3fb) _s3fb=yes ;;
1144 --disable-s3fb) _s3fb=no ;;
1145 --enable-wii) _wii=yes ;;
1146 --disable-wii) _wii=no ;;
1147 --enable-tdfxfb) _tdfxfb=yes ;;
1148 --disable-tdfxfb) _tdfxfb=no ;;
1149 --disable-tdfxvid) _tdfxvid=no ;;
1150 --enable-tdfxvid) _tdfxvid=yes ;;
1151 --disable-xvr100) _xvr100=no ;;
1152 --enable-xvr100) _xvr100=yes ;;
1153 --disable-tga) _tga=no ;;
1154 --enable-tga) _tga=yes ;;
1155 --enable-directfb) _directfb=yes ;;
1156 --disable-directfb) _directfb=no ;;
1157 --enable-zr) _zr=yes ;;
1158 --disable-zr) _zr=no ;;
1159 --enable-bl) _bl=yes ;;
1160 --disable-bl) _bl=no ;;
1161 --enable-mtrr) _mtrr=yes ;;
1162 --disable-mtrr) _mtrr=no ;;
1163 --enable-largefiles) _largefiles=yes ;;
1164 --disable-largefiles) _largefiles=no ;;
1165 --enable-shm) _shm=yes ;;
1166 --disable-shm) _shm=no ;;
1167 --enable-select) _select=yes ;;
1168 --disable-select) _select=no ;;
1169 --enable-cdparanoia) _cdparanoia=yes ;;
1170 --disable-cdparanoia) _cdparanoia=no ;;
1171 --enable-cddb) _cddb=yes ;;
1172 --disable-cddb) _cddb=no ;;
1173 --enable-big-endian) _big_endian=yes ;;
1174 --disable-big-endian) _big_endian=no ;;
1175 --enable-bitmap-font) _bitmap_font=yes ;;
1176 --disable-bitmap-font) _bitmap_font=no ;;
1177 --enable-freetype) _freetype=yes ;;
1178 --disable-freetype) _freetype=no ;;
1179 --enable-fontconfig) _fontconfig=yes ;;
1180 --disable-fontconfig) _fontconfig=no ;;
1181 --enable-unrarexec) _unrar_exec=yes ;;
1182 --disable-unrarexec) _unrar_exec=no ;;
1183 --enable-ftp) _ftp=yes ;;
1184 --disable-ftp) _ftp=no ;;
1185 --enable-vstream) _vstream=yes ;;
1186 --disable-vstream) _vstream=no ;;
1187 --enable-pthreads) _pthreads=yes ;;
1188 --disable-pthreads) _pthreads=no ;;
1189 --enable-w32threads) _w32threads=yes ;;
1190 --disable-w32threads) _w32threads=no ;;
1191 --enable-ass) _ass=yes ;;
1192 --disable-ass) _ass=no ;;
1193 --enable-rpath) _rpath=yes ;;
1194 --disable-rpath) _rpath=no ;;
1196 --enable-fribidi) _fribidi=yes ;;
1197 --disable-fribidi) _fribidi=no ;;
1199 --enable-enca) _enca=yes ;;
1200 --disable-enca) _enca=no ;;
1202 --enable-inet6) _inet6=yes ;;
1203 --disable-inet6) _inet6=no ;;
1205 --enable-gethostbyname2) _gethostbyname2=yes ;;
1206 --disable-gethostbyname2) _gethostbyname2=no ;;
1208 --enable-dga1) _dga1=yes ;;
1209 --disable-dga1) _dga1=no ;;
1210 --enable-dga2) _dga2=yes ;;
1211 --disable-dga2) _dga2=no ;;
1213 --enable-menu) _menu=yes ;;
1214 --disable-menu) _menu=no ;;
1216 --enable-qtx) _qtx=yes ;;
1217 --disable-qtx) _qtx=no ;;
1219 --enable-coreaudio) _coreaudio=yes ;;
1220 --disable-coreaudio) _coreaudio=no ;;
1221 --enable-corevideo) _corevideo=yes ;;
1222 --disable-corevideo) _corevideo=no ;;
1223 --enable-quartz) _quartz=yes ;;
1224 --disable-quartz) _quartz=no ;;
1225 --enable-macosx-finder) _macosx_finder=yes ;;
1226 --disable-macosx-finder) _macosx_finder=no ;;
1227 --enable-macosx-bundle) _macosx_bundle=yes ;;
1228 --disable-macosx-bundle) _macosx_bundle=no ;;
1230 --enable-maemo) _maemo=yes ;;
1231 --disable-maemo) _maemo=no ;;
1233 --enable-sortsub) _sortsub=yes ;;
1234 --disable-sortsub) _sortsub=no ;;
1236 --enable-crash-debug) _crash_debug=yes ;;
1237 --disable-crash-debug) _crash_debug=no ;;
1238 --enable-sighandler) _sighandler=yes ;;
1239 --disable-sighandler) _sighandler=no ;;
1240 --enable-win32dll) _win32dll=yes ;;
1241 --disable-win32dll) _win32dll=no ;;
1243 --enable-sse) _sse=yes ;;
1244 --disable-sse) _sse=no ;;
1245 --enable-sse2) _sse2=yes ;;
1246 --disable-sse2) _sse2=no ;;
1247 --enable-ssse3) _ssse3=yes ;;
1248 --disable-ssse3) _ssse3=no ;;
1249 --enable-mmxext) _mmxext=yes ;;
1250 --disable-mmxext) _mmxext=no ;;
1251 --enable-3dnow) _3dnow=yes ;;
1252 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1253 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1254 --disable-3dnowext) _3dnowext=no ;;
1255 --enable-cmov) _cmov=yes ;;
1256 --disable-cmov) _cmov=no ;;
1257 --enable-fast-cmov) _fast_cmov=yes ;;
1258 --disable-fast-cmov) _fast_cmov=no ;;
1259 --enable-fast-clz) _fast_clz=yes ;;
1260 --disable-fast-clz) _fast_clz=no ;;
1261 --enable-altivec) _altivec=yes ;;
1262 --disable-altivec) _altivec=no ;;
1263 --enable-armv5te) _armv5te=yes ;;
1264 --disable-armv5te) _armv5te=no ;;
1265 --enable-armv6) _armv6=yes ;;
1266 --disable-armv6) _armv6=no ;;
1267 --enable-armv6t2) _armv6t2=yes ;;
1268 --disable-armv6t2) _armv6t2=no ;;
1269 --enable-armvfp) _armvfp=yes ;;
1270 --disable-armvfp) _armvfp=no ;;
1271 --enable-neon) neon=yes ;;
1272 --disable-neon) neon=no ;;
1273 --enable-iwmmxt) _iwmmxt=yes ;;
1274 --disable-iwmmxt) _iwmmxt=no ;;
1275 --enable-mmx) _mmx=yes ;;
1276 --disable-mmx) # 3Dnow! and MMX2 require MMX
1277 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1280 echo "Unknown parameter: $ac_option"
1281 exit 1
1284 esac
1285 done
1287 if test "$_gui" = yes ; then
1288 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1289 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1292 # Atmos: moved this here, to be correct, if --prefix is specified
1293 test -z "$_bindir" && _bindir="$_prefix/bin"
1294 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1295 test -z "$_mandir" && _mandir="$_prefix/share/man"
1296 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1297 test -z "$_libdir" && _libdir="$_prefix/lib"
1298 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1300 # Determine our OS name and CPU architecture
1301 if test -z "$_target" ; then
1302 # OS name
1303 system_name=$(uname -s 2>&1)
1304 case "$system_name" in
1305 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1307 Haiku)
1308 system_name=BeOS
1310 IRIX*)
1311 system_name=IRIX
1313 GNU/kFreeBSD)
1314 system_name=FreeBSD
1316 HP-UX*)
1317 system_name=HP-UX
1319 [cC][yY][gG][wW][iI][nN]*)
1320 system_name=CYGWIN
1322 MINGW32*)
1323 system_name=MINGW32
1325 OS/2*)
1326 system_name=OS/2
1329 system_name="$system_name-UNKNOWN"
1331 esac
1334 # host's CPU/instruction set
1335 host_arch=$(uname -p 2>&1)
1336 case "$host_arch" in
1337 i386|sparc|ppc|alpha|arm|mips|vax)
1339 powerpc) # Darwin returns 'powerpc'
1340 host_arch=ppc
1342 *) # uname -p on Linux returns 'unknown' for the processor type,
1343 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1345 # Maybe uname -m (machine hardware name) returns something we
1346 # recognize.
1348 # x86/x86pc is used by QNX
1349 case "$(uname -m 2>&1)" in
1350 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 ;;
1351 ia64) host_arch=ia64 ;;
1352 macppc|ppc) host_arch=ppc ;;
1353 ppc64) host_arch=ppc64 ;;
1354 alpha) host_arch=alpha ;;
1355 sparc) host_arch=sparc ;;
1356 sparc64) host_arch=sparc64 ;;
1357 parisc*|hppa*|9000*) host_arch=hppa ;;
1358 arm*|zaurus|cats) host_arch=arm ;;
1359 sh3|sh4|sh4a) host_arch=sh ;;
1360 s390) host_arch=s390 ;;
1361 s390x) host_arch=s390x ;;
1362 *mips*) host_arch=mips ;;
1363 vax) host_arch=vax ;;
1364 xtensa*) host_arch=xtensa ;;
1365 *) host_arch=UNKNOWN ;;
1366 esac
1368 esac
1369 else # if test -z "$_target"
1370 system_name=$(echo $_target | cut -d '-' -f 2)
1371 case "$(echo $system_name | tr A-Z a-z)" in
1372 linux) system_name=Linux ;;
1373 freebsd) system_name=FreeBSD ;;
1374 gnu/kfreebsd) system_name=FreeBSD ;;
1375 netbsd) system_name=NetBSD ;;
1376 bsd/os) system_name=BSD/OS ;;
1377 openbsd) system_name=OpenBSD ;;
1378 dragonfly) system_name=DragonFly ;;
1379 sunos) system_name=SunOS ;;
1380 qnx) system_name=QNX ;;
1381 morphos) system_name=MorphOS ;;
1382 amigaos) system_name=AmigaOS ;;
1383 mingw32*) system_name=MINGW32 ;;
1384 esac
1385 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1386 host_arch=$(echo $_target | cut -d '-' -f 1)
1387 if test $(echo $host_arch) != "x86_64" ; then
1388 host_arch=$(echo $host_arch | tr '_' '-')
1392 extra_cflags="-I. $extra_cflags"
1393 _timer=timer-linux.c
1394 _getch=getch2.c
1395 if freebsd ; then
1396 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1397 extra_cflags="$extra_cflags -I/usr/local/include"
1400 if netbsd || dragonfly ; then
1401 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1402 extra_cflags="$extra_cflags -I/usr/pkg/include"
1405 if darwin; then
1406 extra_cflags="-mdynamic-no-pic $extra_cflags"
1407 if test "$(basename $_cc)" != "clang" ; then
1408 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1410 _timer=timer-darwin.c
1413 if aix ; then
1414 extra_ldflags="$extra_ldflags -lC"
1417 if irix ; then
1418 _ranlib='ar -r'
1419 elif linux ; then
1420 _ranlib='true'
1423 if win32 ; then
1424 _exesuf=".exe"
1425 extra_cflags="$extra_cflags -fno-common"
1426 # -lwinmm is always needed for osdep/timer-win2.c
1427 extra_ldflags="$extra_ldflags -lwinmm"
1428 _pe_executable=yes
1429 _timer=timer-win2.c
1430 _priority=yes
1431 def_dos_paths="#define HAVE_DOS_PATHS 1"
1432 def_priority="#define CONFIG_PRIORITY 1"
1435 if mingw32 ; then
1436 _getch=getch2-win.c
1437 _need_shmem=no
1440 if amigaos ; then
1441 _select=no
1442 _sighandler=no
1443 _stream_cache=no
1444 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1445 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1448 if qnx ; then
1449 extra_ldflags="$extra_ldflags -lph"
1452 if os2 ; then
1453 _exesuf=".exe"
1454 _getch=getch2-os2.c
1455 _need_shmem=no
1456 _priority=yes
1457 def_dos_paths="#define HAVE_DOS_PATHS 1"
1458 def_priority="#define CONFIG_PRIORITY 1"
1461 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1462 test "$tmpdir" && break
1463 done
1465 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1466 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1468 TMPLOG="config.log"
1469 TMPC="$mplayer_tmpdir/tmp.c"
1470 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1471 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1472 TMPH="$mplayer_tmpdir/tmp.h"
1473 TMPS="$mplayer_tmpdir/tmp.S"
1475 rm -f "$TMPLOG"
1476 echo configuration: $configuration > "$TMPLOG"
1477 echo >> "$TMPLOG"
1480 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1481 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1485 # Checking CC version...
1486 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1487 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1488 echocheck "$_cc version"
1489 cc_vendor=intel
1490 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1491 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1492 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1493 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1494 # TODO verify older icc/ecc compatibility
1495 case $cc_version in
1497 cc_version="v. ?.??, bad"
1498 cc_fail=yes
1500 10.1|11.0|11.1)
1501 cc_version="$cc_version, ok"
1504 cc_version="$cc_version, bad"
1505 cc_fail=yes
1507 esac
1508 echores "$cc_version"
1509 else
1510 for _cc in "$_cc" gcc cc ; do
1511 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1512 if test "$cc_name_tmp" = "gcc"; then
1513 cc_name=$cc_name_tmp
1514 echocheck "$_cc version"
1515 cc_vendor=gnu
1516 cc_version=$($_cc -dumpversion 2>&1)
1517 case $cc_version in
1518 2.96*)
1519 cc_fail=yes
1522 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1523 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1524 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1526 esac
1527 echores "$cc_version"
1528 break
1530 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1531 if test "$cc_name_tmp" = "clang"; then
1532 echocheck "$_cc version"
1533 cc_vendor=clang
1534 cc_version=$($_cc -dumpversion 2>&1)
1535 res_comment="experimental support only"
1536 echores "clang $cc_version"
1537 break
1539 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1540 if test "$cc_name_tmp" = "Sun C"; then
1541 echocheck "$_cc version"
1542 cc_vendor=sun
1543 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1544 res_comment="experimental support only"
1545 echores "Sun C $cc_version"
1546 break
1548 done
1549 fi # icc
1550 test "$cc_fail" = yes && die "unsupported compiler version"
1552 if test -z "$_target" && x86 ; then
1553 cat > $TMPC << EOF
1554 int main(void) {
1555 int test[(int)sizeof(char *)-7];
1556 return 0;
1559 cc_check && host_arch=x86_64 || host_arch=i386
1562 echo "Detected operating system: $system_name"
1563 echo "Detected host architecture: $host_arch"
1565 echocheck "host cc"
1566 test "$_host_cc" || _host_cc=$_cc
1567 echores $_host_cc
1569 echocheck "cross compilation"
1570 if test $_cross_compile = auto ; then
1571 _cross_compile=yes
1572 cflag_check "" && "$TMPEXE" && _cross_compile=no
1574 echores $_cross_compile
1576 if test $_cross_compile = yes; then
1577 tmp_run() {
1578 return 0
1582 # ---
1584 # now that we know what compiler should be used for compilation, try to find
1585 # out which assembler is used by the $_cc compiler
1586 if test "$_as" = auto ; then
1587 _as=$($_cc -print-prog-name=as)
1588 test -z "$_as" && _as=as
1591 if test "$_nm" = auto ; then
1592 _nm=$($_cc -print-prog-name=nm)
1593 test -z "$_nm" && _nm=nm
1596 # XXX: this should be ok..
1597 _cpuinfo="echo"
1599 if test "$_runtime_cpudetection" = no ; then
1601 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1602 # FIXME: Remove the cygwin check once AMD CPUs are supported
1603 if test -r /proc/cpuinfo && ! cygwin; then
1604 # Linux with /proc mounted, extract CPU information from it
1605 _cpuinfo="cat /proc/cpuinfo"
1606 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1607 # FreeBSD with Linux emulation /proc mounted,
1608 # extract CPU information from it
1609 # Don't use it on x86 though, it never reports 3Dnow
1610 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1611 elif darwin && ! x86 ; then
1612 # use hostinfo on Darwin
1613 _cpuinfo="hostinfo"
1614 elif aix; then
1615 # use 'lsattr' on AIX
1616 _cpuinfo="lsattr -E -l proc0 -a type"
1617 elif x86; then
1618 # all other OSes try to extract CPU information from a small helper
1619 # program cpuinfo instead
1620 $_cc -o cpuinfo$_exesuf cpuinfo.c
1621 _cpuinfo="./cpuinfo$_exesuf"
1624 if x86 ; then
1625 # gather more CPU information
1626 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1627 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1628 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1629 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1630 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1632 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1634 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1635 -e s/xmm/sse/ -e s/kni/sse/)
1637 for ext in $pparam ; do
1638 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1639 done
1641 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1642 test $_sse = kernel_check && _mmxext=kernel_check
1644 echocheck "CPU vendor"
1645 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1647 echocheck "CPU type"
1648 echores "$pname"
1651 fi # test "$_runtime_cpudetection" = no
1653 if x86 && test "$_runtime_cpudetection" = no ; then
1654 extcheck() {
1655 if test "$1" = kernel_check ; then
1656 echocheck "kernel support of $2"
1657 cat > $TMPC <<EOF
1658 #include <stdlib.h>
1659 #include <signal.h>
1660 void catch(int sig) { exit(1); }
1661 int main(void) {
1662 signal(SIGILL, catch);
1663 __asm__ volatile ("$3":::"memory"); return 0;
1667 if cc_check && tmp_run ; then
1668 eval _$2=yes
1669 echores "yes"
1670 _optimizing="$_optimizing $2"
1671 return 0
1672 else
1673 eval _$2=no
1674 echores "failed"
1675 echo "It seems that your kernel does not correctly support $2."
1676 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1677 return 1
1680 return 0
1683 extcheck $_mmx "mmx" "emms"
1684 extcheck $_mmxext "mmxext" "sfence"
1685 extcheck $_3dnow "3dnow" "femms"
1686 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1687 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1688 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1689 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1690 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1692 echocheck "mtrr support"
1693 if test "$_mtrr" = kernel_check ; then
1694 _mtrr="yes"
1695 _optimizing="$_optimizing mtrr"
1697 echores "$_mtrr"
1699 if test "$_gcc3_ext" != ""; then
1700 # if we had to disable sse/sse2 because the active kernel does not
1701 # support this instruction set extension, we also have to tell
1702 # gcc3 to not generate sse/sse2 instructions for normal C code
1703 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1709 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1710 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1711 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1712 subarch_all='X86_32 X86_64 PPC64'
1713 case "$host_arch" in
1714 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1715 arch='x86'
1716 subarch='x86_32'
1717 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1718 iproc=486
1719 proc=i486
1722 if test "$_runtime_cpudetection" = no ; then
1723 case "$pvendor" in
1724 AuthenticAMD)
1725 case "$pfamily" in
1726 3) proc=i386 iproc=386 ;;
1727 4) proc=i486 iproc=486 ;;
1728 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1729 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1730 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1731 proc=k6-3
1732 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1733 proc=geode
1734 elif test "$pmodel" -ge 8; then
1735 proc=k6-2
1736 elif test "$pmodel" -ge 6; then
1737 proc=k6
1738 else
1739 proc=i586
1742 6) iproc=686
1743 # It's a bit difficult to determine the correct type of Family 6
1744 # AMD CPUs just from their signature. Instead, we check directly
1745 # whether it supports SSE.
1746 if test "$_sse" = yes; then
1747 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1748 proc=athlon-xp
1749 else
1750 # Again, gcc treats athlon and athlon-tbird similarly.
1751 proc=athlon
1754 15) iproc=686
1755 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1756 # caught and remedied in the optimization tests below.
1757 proc=k8
1760 *) proc=amdfam10 iproc=686
1761 test $_fast_clz = "auto" && _fast_clz=yes
1763 esac
1765 GenuineIntel)
1766 case "$pfamily" in
1767 3) proc=i386 iproc=386 ;;
1768 4) proc=i486 iproc=486 ;;
1769 5) iproc=586
1770 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1771 proc=pentium-mmx # 4 is desktop, 8 is mobile
1772 else
1773 proc=i586
1776 6) iproc=686
1777 if test "$pmodel" -ge 15; then
1778 proc=core2
1779 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1780 proc=pentium-m
1781 elif test "$pmodel" -ge 7; then
1782 proc=pentium3
1783 elif test "$pmodel" -ge 3; then
1784 proc=pentium2
1785 else
1786 proc=i686
1788 test $_fast_clz = "auto" && _fast_clz=yes
1790 15) iproc=686
1791 # A nocona in 32-bit mode has no more capabilities than a prescott.
1792 if test "$pmodel" -ge 3; then
1793 proc=prescott
1794 else
1795 proc=pentium4
1796 test $_fast_clz = "auto" && _fast_clz=yes
1798 test $_fast_cmov = "auto" && _fast_cmov=no
1800 *) proc=prescott iproc=686 ;;
1801 esac
1803 CentaurHauls)
1804 case "$pfamily" in
1805 5) iproc=586
1806 if test "$pmodel" -ge 8; then
1807 proc=winchip2
1808 elif test "$pmodel" -ge 4; then
1809 proc=winchip-c6
1810 else
1811 proc=i586
1814 6) iproc=686
1815 if test "$pmodel" -ge 9; then
1816 proc=c3-2
1817 else
1818 proc=c3
1819 iproc=586
1822 *) proc=i686 iproc=i686 ;;
1823 esac
1825 unknown)
1826 case "$pfamily" in
1827 3) proc=i386 iproc=386 ;;
1828 4) proc=i486 iproc=486 ;;
1829 *) proc=i586 iproc=586 ;;
1830 esac
1833 proc=i586 iproc=586 ;;
1834 esac
1835 test $_fast_clz = "auto" && _fast_clz=no
1836 fi # test "$_runtime_cpudetection" = no
1839 # check that gcc supports our CPU, if not, fall back to earlier ones
1840 # LGB: check -mcpu and -march swithing step by step with enabling
1841 # to fall back till 386.
1843 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1845 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1846 cpuopt=-mtune
1847 else
1848 cpuopt=-mcpu
1851 echocheck "GCC & CPU optimization abilities"
1852 if test "$_runtime_cpudetection" = no ; then
1853 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1854 cflag_check -march=native && proc=native
1856 if test "$proc" = "amdfam10"; then
1857 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1859 if test "$proc" = "k8"; then
1860 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1862 if test "$proc" = "athlon-xp"; then
1863 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1865 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1866 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1868 if test "$proc" = "k6" || test "$proc" = "c3"; then
1869 if ! cflag_check -march=$proc $cpuopt=$proc; then
1870 if cflag_check -march=i586 $cpuopt=i686; then
1871 proc=i586-i686
1872 else
1873 proc=i586
1877 if test "$proc" = "prescott" ; then
1878 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1880 if test "$proc" = "core2" ; then
1881 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1883 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
1884 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1886 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1887 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1889 if test "$proc" = "i586"; then
1890 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1892 if test "$proc" = "i486" ; then
1893 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1895 if test "$proc" = "i386" ; then
1896 cflag_check -march=$proc $cpuopt=$proc || proc=error
1898 if test "$proc" = "error" ; then
1899 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1900 _mcpu=""
1901 _march=""
1902 _optimizing=""
1903 elif test "$proc" = "i586-i686"; then
1904 _march="-march=i586"
1905 _mcpu="$cpuopt=i686"
1906 _optimizing="$proc"
1907 else
1908 _march="-march=$proc"
1909 _mcpu="$cpuopt=$proc"
1910 _optimizing="$proc"
1912 else # if test "$_runtime_cpudetection" = no
1913 _mcpu="$cpuopt=generic"
1914 # at least i486 required, for bswap instruction
1915 _march="-march=i486"
1916 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1917 cflag_check $_mcpu || _mcpu=""
1918 cflag_check $_march $_mcpu || _march=""
1921 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1922 ## autodetected mcpu/march parameters
1923 if test "$_target" ; then
1924 # TODO: it may be a good idea to check GCC and fall back in all cases
1925 if test "$host_arch" = "i586-i686"; then
1926 _march="-march=i586"
1927 _mcpu="$cpuopt=i686"
1928 else
1929 _march="-march=$host_arch"
1930 _mcpu="$cpuopt=$host_arch"
1933 proc="$host_arch"
1935 case "$proc" in
1936 i386) iproc=386 ;;
1937 i486) iproc=486 ;;
1938 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1939 i686|athlon*|pentium*) iproc=686 ;;
1940 *) iproc=586 ;;
1941 esac
1944 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1945 _fast_cmov="yes"
1946 else
1947 _fast_cmov="no"
1949 test $_fast_clz = "auto" && _fast_clz=yes
1951 echores "$proc"
1954 ia64)
1955 arch='ia64'
1956 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1957 iproc='ia64'
1960 x86_64|amd64)
1961 arch='x86'
1962 subarch='x86_64'
1963 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1964 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1965 iproc='x86_64'
1967 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1968 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1969 cpuopt=-mtune
1970 else
1971 cpuopt=-mcpu
1973 if test "$_runtime_cpudetection" = no ; then
1974 case "$pvendor" in
1975 AuthenticAMD)
1976 case "$pfamily" in
1977 15) proc=k8
1978 test $_fast_clz = "auto" && _fast_clz=no
1980 *) proc=amdfam10;;
1981 esac
1983 GenuineIntel)
1984 case "$pfamily" in
1985 6) proc=core2;;
1987 # 64-bit prescotts exist, but as far as GCC is concerned they
1988 # have the same capabilities as a nocona.
1989 proc=nocona
1990 test $_fast_cmov = "auto" && _fast_cmov=no
1991 test $_fast_clz = "auto" && _fast_clz=no
1993 esac
1996 proc=error;;
1997 esac
1998 fi # test "$_runtime_cpudetection" = no
2000 echocheck "GCC & CPU optimization abilities"
2001 # This is a stripped-down version of the i386 fallback.
2002 if test "$_runtime_cpudetection" = no ; then
2003 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2004 cflag_check -march=native && proc=native
2006 # --- AMD processors ---
2007 if test "$proc" = "amdfam10"; then
2008 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2010 if test "$proc" = "k8"; then
2011 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2013 # This will fail if gcc version < 3.3, which is ok because earlier
2014 # versions don't really support 64-bit on amd64.
2015 # Is this a valid assumption? -Corey
2016 if test "$proc" = "athlon-xp"; then
2017 cflag_check -march=$proc $cpuopt=$proc || proc=error
2019 # --- Intel processors ---
2020 if test "$proc" = "core2"; then
2021 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2023 if test "$proc" = "x86-64"; then
2024 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2026 if test "$proc" = "nocona"; then
2027 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2029 if test "$proc" = "pentium4"; then
2030 cflag_check -march=$proc $cpuopt=$proc || proc=error
2033 _march="-march=$proc"
2034 _mcpu="$cpuopt=$proc"
2035 if test "$proc" = "error" ; then
2036 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2037 _mcpu=""
2038 _march=""
2040 else # if test "$_runtime_cpudetection" = no
2041 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2042 _march="-march=x86-64"
2043 _mcpu="$cpuopt=generic"
2044 cflag_check $_mcpu || _mcpu="x86-64"
2045 cflag_check $_mcpu || _mcpu=""
2046 cflag_check $_march $_mcpu || _march=""
2049 _optimizing="$proc"
2050 test $_fast_cmov = "auto" && _fast_cmov=yes
2051 test $_fast_clz = "auto" && _fast_clz=yes
2053 echores "$proc"
2056 sparc|sparc64)
2057 arch='sparc'
2058 iproc='sparc'
2059 if test "$host_arch" = "sparc64" ; then
2060 _vis='yes'
2061 proc='ultrasparc'
2062 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2063 elif sunos ; then
2064 echocheck "CPU type"
2065 karch=$(uname -m)
2066 case "$(echo $karch)" in
2067 sun4) proc=v7 ;;
2068 sun4c) proc=v7 ;;
2069 sun4d) proc=v8 ;;
2070 sun4m) proc=v8 ;;
2071 sun4u) proc=ultrasparc _vis='yes' ;;
2072 sun4v) proc=v9 ;;
2073 *) proc=v8 ;;
2074 esac
2075 echores "$proc"
2076 else
2077 proc=v8
2079 _mcpu="-mcpu=$proc"
2080 _optimizing="$proc"
2083 arm*)
2084 arch='arm'
2085 iproc='arm'
2088 avr32)
2089 arch='avr32'
2090 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2091 iproc='avr32'
2092 test $_fast_clz = "auto" && _fast_clz=yes
2095 sh|sh4)
2096 arch='sh4'
2097 iproc='sh4'
2100 ppc|ppc64|powerpc|powerpc64)
2101 arch='ppc'
2102 def_dcbzl='#define HAVE_DCBZL 0'
2103 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2104 iproc='ppc'
2106 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2107 subarch='ppc64'
2108 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2110 echocheck "CPU type"
2111 case $system_name in
2112 Linux)
2113 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2114 if test -n "$($_cpuinfo | grep altivec)"; then
2115 test $_altivec = auto && _altivec=yes
2118 Darwin)
2119 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2120 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2121 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2122 test $_altivec = auto && _altivec=yes
2125 NetBSD)
2126 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2127 case $cc_version in
2128 2*|3.0*|3.1*|3.2*|3.3*)
2131 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2132 test $_altivec = auto && _altivec=yes
2135 esac
2137 AIX)
2138 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2140 esac
2141 if test "$_altivec" = yes; then
2142 echores "$proc altivec"
2143 else
2144 _altivec=no
2145 echores "$proc"
2148 echocheck "GCC & CPU optimization abilities"
2150 if test -n "$proc"; then
2151 case "$proc" in
2152 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2153 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2154 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2155 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2156 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2157 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2158 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2159 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2160 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2161 *) ;;
2162 esac
2163 # gcc 3.1(.1) and up supports 7400 and 7450
2164 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2165 case "$proc" in
2166 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2167 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2168 *) ;;
2169 esac
2171 # gcc 3.2 and up supports 970
2172 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2173 case "$proc" in
2174 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2175 def_dcbzl='#define HAVE_DCBZL 1' ;;
2176 *) ;;
2177 esac
2179 # gcc 3.3 and up supports POWER4
2180 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2181 case "$proc" in
2182 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2183 *) ;;
2184 esac
2186 # gcc 3.4 and up supports 440*
2187 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2188 case "$proc" in
2189 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2190 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2191 *) ;;
2192 esac
2194 # gcc 4.0 and up supports POWER5
2195 if test "$_cc_major" -ge "4"; then
2196 case "$proc" in
2197 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2198 *) ;;
2199 esac
2203 if test -n "$_mcpu"; then
2204 _optimizing=$(echo $_mcpu | cut -c 8-)
2205 echores "$_optimizing"
2206 else
2207 echores "none"
2210 test $_fast_clz = "auto" && _fast_clz=yes
2214 alpha*)
2215 arch='alpha'
2216 iproc='alpha'
2217 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2219 echocheck "CPU type"
2220 cat > $TMPC << EOF
2221 int main(void) {
2222 unsigned long ver, mask;
2223 __asm__ ("implver %0" : "=r" (ver));
2224 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2225 printf("%ld-%x\n", ver, ~mask);
2226 return 0;
2229 $_cc -o "$TMPEXE" "$TMPC"
2230 case $("$TMPEXE") in
2232 0-0) proc="ev4"; _mvi="0";;
2233 1-0) proc="ev5"; _mvi="0";;
2234 1-1) proc="ev56"; _mvi="0";;
2235 1-101) proc="pca56"; _mvi="1";;
2236 2-303) proc="ev6"; _mvi="1";;
2237 2-307) proc="ev67"; _mvi="1";;
2238 2-1307) proc="ev68"; _mvi="1";;
2239 esac
2240 echores "$proc"
2242 echocheck "GCC & CPU optimization abilities"
2243 if test "$proc" = "ev68" ; then
2244 cc_check -mcpu=$proc || proc=ev67
2246 if test "$proc" = "ev67" ; then
2247 cc_check -mcpu=$proc || proc=ev6
2249 _mcpu="-mcpu=$proc"
2250 echores "$proc"
2252 test $_fast_clz = "auto" && _fast_clz=yes
2254 _optimizing="$proc"
2257 mips)
2258 arch='mips'
2259 iproc='mips'
2261 if irix ; then
2262 echocheck "CPU type"
2263 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2264 case "$(echo $proc)" in
2265 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2266 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2267 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2268 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2269 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2270 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2271 esac
2272 # gcc < 3.x does not support -mtune.
2273 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2274 _mcpu=''
2276 echores "$proc"
2279 test $_fast_clz = "auto" && _fast_clz=yes
2283 hppa)
2284 arch='pa_risc'
2285 iproc='PA-RISC'
2288 s390)
2289 arch='s390'
2290 iproc='390'
2293 s390x)
2294 arch='s390x'
2295 iproc='390x'
2298 vax)
2299 arch='vax'
2300 iproc='vax'
2303 xtensa)
2304 arch='xtensa'
2305 iproc='xtensa'
2308 generic)
2309 arch='generic'
2313 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2314 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2315 die "unsupported architecture $host_arch"
2317 esac # case "$host_arch" in
2319 if test "$_runtime_cpudetection" = yes ; then
2320 if x86 ; then
2321 test "$_cmov" != no && _cmov=yes
2322 x86_32 && _cmov=no
2323 test "$_mmx" != no && _mmx=yes
2324 test "$_3dnow" != no && _3dnow=yes
2325 test "$_3dnowext" != no && _3dnowext=yes
2326 test "$_mmxext" != no && _mmxext=yes
2327 test "$_sse" != no && _sse=yes
2328 test "$_sse2" != no && _sse2=yes
2329 test "$_ssse3" != no && _ssse3=yes
2330 test "$_mtrr" != no && _mtrr=yes
2332 if ppc; then
2333 _altivec=yes
2338 # endian testing
2339 echocheck "byte order"
2340 if test "$_big_endian" = auto ; then
2341 cat > $TMPC <<EOF
2342 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2343 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2344 int main(void) { return (int)ascii_name; }
2346 if cc_check ; then
2347 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2348 _big_endian=yes
2349 else
2350 _big_endian=no
2352 else
2353 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2356 if test "$_big_endian" = yes ; then
2357 _byte_order='big-endian'
2358 def_words_endian='#define WORDS_BIGENDIAN 1'
2359 def_bigendian='#define HAVE_BIGENDIAN 1'
2360 else
2361 _byte_order='little-endian'
2362 def_words_endian='#undef WORDS_BIGENDIAN'
2363 def_bigendian='#define HAVE_BIGENDIAN 0'
2365 echores "$_byte_order"
2368 echocheck "extern symbol prefix"
2369 cat > $TMPC << EOF
2370 int ff_extern;
2372 cc_check -c || die "Symbol mangling check failed."
2373 sym=$($_nm -P -g $TMPEXE)
2374 extern_prefix=${sym%%ff_extern*}
2375 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2376 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2377 echores $extern_prefix
2380 echocheck "assembler support of -pipe option"
2381 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2382 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2385 echocheck "compiler support of named assembler arguments"
2386 _named_asm_args=yes
2387 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2388 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2389 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2390 _named_asm_args=no
2391 def_named_asm_args="#undef NAMED_ASM_ARGS"
2393 echores $_named_asm_args
2396 if darwin && test "$cc_vendor" = "gnu" ; then
2397 echocheck "GCC support of -mstackrealign"
2398 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2399 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2400 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2401 # wrong code with this flag, but this can be worked around by adding
2402 # -fno-unit-at-a-time as described in the blog post at
2403 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2404 cat > $TMPC << EOF
2405 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2406 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2408 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2409 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2410 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2411 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2412 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2415 # Checking for CFLAGS
2416 _install_strip="-s"
2417 if test "$_profile" != "" || test "$_debug" != "" ; then
2418 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2419 WARNFLAGS="-W -Wall"
2420 _install_strip=
2421 elif test -z "$CFLAGS" ; then
2422 if test "$cc_vendor" = "intel" ; then
2423 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2424 WARNFLAGS="-wd167 -wd556 -wd144"
2425 elif test "$cc_vendor" = "sun" ; then
2426 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2427 elif test "$cc_vendor" = "clang"; then
2428 CFLAGS="-O2 $_march $_pipe"
2429 elif test "$cc_vendor" != "gnu" ; then
2430 CFLAGS="-O2 $_march $_mcpu $_pipe"
2431 else
2432 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2433 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2434 extra_ldflags="$extra_ldflags -ffast-math"
2436 else
2437 warn_cflags=yes
2440 if test "$cc_vendor" = "gnu" ; then
2441 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2442 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2443 # that's the only variable specific to C now, and this option is not valid
2444 # for C++.
2445 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2446 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2447 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2448 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2449 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2450 else
2451 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2454 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2455 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2458 if test -n "$LDFLAGS" ; then
2459 extra_ldflags="$extra_ldflags $LDFLAGS"
2460 warn_cflags=yes
2461 elif test "$cc_vendor" = "intel" ; then
2462 extra_ldflags="$extra_ldflags -i-static"
2464 if test -n "$CPPFLAGS" ; then
2465 extra_cflags="$extra_cflags $CPPFLAGS"
2466 warn_cflags=yes
2471 if x86_32 ; then
2472 # Checking assembler (_as) compatibility...
2473 # Added workaround for older as that reads from stdin by default - atmos
2474 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2475 echocheck "assembler ($_as $as_version)"
2477 _pref_as_version='2.9.1'
2478 echo 'nop' > $TMPS
2479 if test "$_mmx" = yes ; then
2480 echo 'emms' >> $TMPS
2482 if test "$_3dnow" = yes ; then
2483 _pref_as_version='2.10.1'
2484 echo 'femms' >> $TMPS
2486 if test "$_3dnowext" = yes ; then
2487 _pref_as_version='2.10.1'
2488 echo 'pswapd %mm0, %mm0' >> $TMPS
2490 if test "$_mmxext" = yes ; then
2491 _pref_as_version='2.10.1'
2492 echo 'movntq %mm0, (%eax)' >> $TMPS
2494 if test "$_sse" = yes ; then
2495 _pref_as_version='2.10.1'
2496 echo 'xorps %xmm0, %xmm0' >> $TMPS
2498 #if test "$_sse2" = yes ; then
2499 # _pref_as_version='2.11'
2500 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2502 if test "$_cmov" = yes ; then
2503 _pref_as_version='2.10.1'
2504 echo 'cmovb %eax, %ebx' >> $TMPS
2506 if test "$_ssse3" = yes ; then
2507 _pref_as_version='2.16.92'
2508 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2510 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2512 if test "$as_verc_fail" != yes ; then
2513 echores "ok"
2514 else
2515 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2516 echores "failed"
2517 die "obsolete binutils version"
2520 fi #if x86_32
2522 echocheck ".align is a power of two"
2523 if test "$_asmalign_pot" = auto ; then
2524 _asmalign_pot=no
2525 cat > $TMPC << EOF
2526 int main(void) { __asm__ (".align 3"); return 0; }
2528 cc_check && _asmalign_pot=yes
2530 if test "$_asmalign_pot" = "yes" ; then
2531 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2532 else
2533 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2535 echores $_asmalign_pot
2538 echocheck "PIC"
2539 pic=no
2540 cat > $TMPC << EOF
2541 int main(void) {
2542 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2543 #error PIC not enabled
2544 #endif
2545 return 0;
2548 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2549 echores $pic
2552 if x86 ; then
2553 echocheck "10 assembler operands"
2554 ten_operands=no
2555 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2556 cat > $TMPC << EOF
2557 int main(void) {
2558 int x=0;
2559 __asm__ volatile(
2561 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2563 return 0;
2566 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2567 echores $ten_operands
2569 echocheck "ebx availability"
2570 ebx_available=no
2571 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2572 cat > $TMPC << EOF
2573 int main(void) {
2574 int x;
2575 __asm__ volatile(
2576 "xor %0, %0"
2577 :"=b"(x)
2578 // just adding ebx to clobber list seems unreliable with some
2579 // compilers, e.g. Haiku's gcc 2.95
2581 // and the above check does not work for OSX 64 bit...
2582 __asm__ volatile("":::"%ebx");
2583 return 0;
2586 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2587 echores $ebx_available
2590 echocheck "yasm"
2591 if test -z "$YASMFLAGS" ; then
2592 if darwin ; then
2593 x86_64 && objformat="macho64" || objformat="macho"
2594 elif win32 ; then
2595 objformat="win32"
2596 else
2597 objformat="elf"
2599 # currently tested for Linux x86, x86_64
2600 YASMFLAGS="-f $objformat"
2601 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2602 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2603 case "$objformat" in
2604 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2605 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2606 esac
2607 else
2608 warn_cflags=yes
2611 echo "pabsw xmm0, xmm0" > $TMPS
2612 yasm_check || _yasm=""
2613 if test $_yasm ; then
2614 def_yasm='#define HAVE_YASM 1'
2615 have_yasm="yes"
2616 echores "$_yasm"
2617 else
2618 def_yasm='#define HAVE_YASM 0'
2619 have_yasm="no"
2620 echores "no"
2623 echocheck "bswap"
2624 def_bswap='#define HAVE_BSWAP 0'
2625 echo 'bswap %eax' > $TMPS
2626 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2627 echores "$bswap"
2628 fi #if x86
2631 #FIXME: This should happen before the check for CFLAGS..
2632 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2633 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2635 # check if AltiVec is supported by the compiler, and how to enable it
2636 echocheck "GCC AltiVec flags"
2637 if $(cflag_check -maltivec -mabi=altivec) ; then
2638 _altivec_gcc_flags="-maltivec -mabi=altivec"
2639 # check if <altivec.h> should be included
2640 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2641 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2642 inc_altivec_h='#include <altivec.h>'
2643 else
2644 if $(cflag_check -faltivec) ; then
2645 _altivec_gcc_flags="-faltivec"
2646 else
2647 _altivec=no
2648 _altivec_gcc_flags="none, AltiVec disabled"
2652 echores "$_altivec_gcc_flags"
2654 # check if the compiler supports braces for vector declarations
2655 cat > $TMPC << EOF
2656 $inc_altivec_h
2657 int main(void) { (vector int) {1}; return 0; }
2659 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2661 # Disable runtime cpudetection if we cannot generate AltiVec code or
2662 # AltiVec is disabled by the user.
2663 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2664 && _runtime_cpudetection=no
2666 # Show that we are optimizing for AltiVec (if enabled and supported).
2667 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2668 && _optimizing="$_optimizing altivec"
2670 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2671 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2674 if ppc ; then
2675 def_xform_asm='#define HAVE_XFORM_ASM 0'
2676 xform_asm=no
2677 echocheck "XFORM ASM support"
2678 cat > $TMPC << EOF
2679 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2681 cc_check && 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 cat > $TMPC << EOF
2688 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2690 pld=no
2691 cc_check && pld=yes
2692 echores "$pld"
2694 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2695 if test $_armv5te = "auto" ; then
2696 cat > $TMPC << EOF
2697 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2699 _armv5te=no
2700 cc_check && _armv5te=yes
2702 echores "$_armv5te"
2704 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2706 echocheck "ARMv6 (SIMD instructions)"
2707 if test $_armv6 = "auto" ; then
2708 cat > $TMPC << EOF
2709 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2711 _armv6=no
2712 cc_check && _armv6=yes
2714 echores "$_armv6"
2716 echocheck "ARMv6t2 (SIMD instructions)"
2717 if test $_armv6t2 = "auto" ; then
2718 cat > $TMPC << EOF
2719 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2721 _armv6t2=no
2722 cc_check && _armv6t2=yes
2724 echores "$_armv6"
2726 echocheck "ARM VFP"
2727 if test $_armvfp = "auto" ; then
2728 cat > $TMPC << EOF
2729 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2731 _armvfp=no
2732 cc_check && _armvfp=yes
2734 echores "$_armvfp"
2736 echocheck "ARM NEON"
2737 if test $neon = "auto" ; then
2738 cat > $TMPC << EOF
2739 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2741 neon=no
2742 cc_check && neon=yes
2744 echores "$neon"
2746 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2747 if test $_iwmmxt = "auto" ; then
2748 cat > $TMPC << EOF
2749 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2751 _iwmmxt=no
2752 cc_check && _iwmmxt=yes
2754 echores "$_iwmmxt"
2757 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'
2758 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2759 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2760 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2761 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2762 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2763 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2764 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2765 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2766 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2767 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2768 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2769 test "$pld" = yes && cpuexts="PLD $cpuexts"
2770 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2771 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2772 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2773 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2774 test "$neon" = yes && cpuexts="NEON $cpuexts"
2775 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2776 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2777 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2779 # Checking kernel version...
2780 if x86_32 && linux ; then
2781 _k_verc_problem=no
2782 kernel_version=$(uname -r 2>&1)
2783 echocheck "$system_name kernel version"
2784 case "$kernel_version" in
2785 '') kernel_version="?.??"; _k_verc_fail=yes;;
2786 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2787 _k_verc_problem=yes;;
2788 esac
2789 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2790 _k_verc_fail=yes
2792 if test "$_k_verc_fail" ; then
2793 echores "$kernel_version, fail"
2794 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2795 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2796 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2797 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2798 echo "2.2.x you must upgrade it to get SSE support!"
2799 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2800 else
2801 echores "$kernel_version, ok"
2805 ######################
2806 # MAIN TESTS GO HERE #
2807 ######################
2810 echocheck "-lposix"
2811 if cflag_check -lposix ; then
2812 extra_ldflags="$extra_ldflags -lposix"
2813 echores "yes"
2814 else
2815 echores "no"
2818 echocheck "-lm"
2819 if cflag_check -lm ; then
2820 _ld_lm="-lm"
2821 echores "yes"
2822 else
2823 _ld_lm=""
2824 echores "no"
2828 echocheck "langinfo"
2829 if test "$_langinfo" = auto ; then
2830 cat > $TMPC <<EOF
2831 #include <langinfo.h>
2832 int main(void) { nl_langinfo(CODESET); return 0; }
2834 _langinfo=no
2835 cc_check && _langinfo=yes
2837 if test "$_langinfo" = yes ; then
2838 def_langinfo='#define HAVE_LANGINFO 1'
2839 else
2840 def_langinfo='#undef HAVE_LANGINFO'
2842 echores "$_langinfo"
2845 echocheck "translation support"
2846 if test "$_translation" = yes; then
2847 def_translation="#define CONFIG_TRANSLATION 1"
2848 else
2849 def_translation="#undef CONFIG_TRANSLATION"
2851 echores "$_translation"
2853 echocheck "language"
2854 # Set preferred languages, "all" uses English as main language.
2855 test -z "$language" && language=$LINGUAS
2856 test -z "$language_doc" && language_doc=$language
2857 test -z "$language_man" && language_man=$language
2858 test -z "$language_msg" && language_msg="all"
2859 language_doc=$(echo $language_doc | tr , " ")
2860 language_man=$(echo $language_man | tr , " ")
2861 language_msg=$(echo $language_msg | tr , " ")
2863 test "$language_doc" = "all" && language_doc=$doc_lang_all
2864 test "$language_man" = "all" && language_man=$man_lang_all
2865 test "$language_msg" = "all" && language_msg=$msg_lang_all
2867 if test "$_translation" != yes ; then
2868 language_msg=""
2871 # Prune non-existing translations from language lists.
2872 # Set message translation to the first available language.
2873 # Fall back on English.
2874 for lang in $language_doc ; do
2875 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2876 done
2877 language_doc=$tmp_language_doc
2878 test -z "$language_doc" && language_doc=en
2880 for lang in $language_man ; do
2881 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2882 done
2883 language_man=$tmp_language_man
2884 test -z "$language_man" && language_man=en
2886 for lang in $language_msg ; do
2887 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2888 done
2889 language_msg=$tmp_language_msg
2891 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2894 echocheck "enable sighandler"
2895 if test "$_sighandler" = yes ; then
2896 def_sighandler='#define CONFIG_SIGHANDLER 1'
2897 else
2898 def_sighandler='#undef CONFIG_SIGHANDLER'
2900 echores "$_sighandler"
2902 echocheck "runtime cpudetection"
2903 if test "$_runtime_cpudetection" = yes ; then
2904 _optimizing="Runtime CPU-Detection enabled"
2905 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2906 else
2907 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2909 echores "$_runtime_cpudetection"
2912 echocheck "restrict keyword"
2913 for restrict_keyword in restrict __restrict __restrict__ ; do
2914 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2915 if cc_check; then
2916 def_restrict_keyword=$restrict_keyword
2917 break;
2919 done
2920 if [ -n "$def_restrict_keyword" ]; then
2921 echores "$def_restrict_keyword"
2922 else
2923 echores "none"
2925 # Avoid infinite recursion loop ("#define restrict restrict")
2926 if [ "$def_restrict_keyword" != "restrict" ]; then
2927 def_restrict_keyword="#define restrict $def_restrict_keyword"
2928 else
2929 def_restrict_keyword=""
2933 echocheck "__builtin_expect"
2934 # GCC branch prediction hint
2935 cat > $TMPC << EOF
2936 int foo(int a) {
2937 a = __builtin_expect(a, 10);
2938 return a == 10 ? 0 : 1;
2940 int main(void) { return foo(10) && foo(0); }
2942 _builtin_expect=no
2943 cc_check && _builtin_expect=yes
2944 if test "$_builtin_expect" = yes ; then
2945 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2946 else
2947 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2949 echores "$_builtin_expect"
2952 echocheck "kstat"
2953 cat > $TMPC << EOF
2954 #include <kstat.h>
2955 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2957 _kstat=no
2958 cc_check -lkstat && _kstat=yes
2959 if test "$_kstat" = yes ; then
2960 def_kstat="#define HAVE_LIBKSTAT 1"
2961 extra_ldflags="$extra_ldflags -lkstat"
2962 else
2963 def_kstat="#undef HAVE_LIBKSTAT"
2965 echores "$_kstat"
2968 echocheck "posix4"
2969 # required for nanosleep on some systems
2970 cat > $TMPC << EOF
2971 #include <time.h>
2972 int main(void) { (void) nanosleep(0, 0); return 0; }
2974 _posix4=no
2975 cc_check -lposix4 && _posix4=yes
2976 if test "$_posix4" = yes ; then
2977 extra_ldflags="$extra_ldflags -lposix4"
2979 echores "$_posix4"
2981 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2982 echocheck $func
2983 cat > $TMPC << EOF
2984 #include <math.h>
2985 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2987 eval _$func=no
2988 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2989 if eval test "x\$_$func" = "xyes"; then
2990 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2991 echores yes
2992 else
2993 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2994 echores no
2996 done
2999 echocheck "mkstemp"
3000 cat > $TMPC << EOF
3001 #include <stdlib.h>
3002 int main(void) { char a; mkstemp(&a); return 0; }
3004 _mkstemp=no
3005 cc_check && _mkstemp=yes
3006 if test "$_mkstemp" = yes ; then
3007 def_mkstemp='#define HAVE_MKSTEMP 1'
3008 else
3009 def_mkstemp='#undef HAVE_MKSTEMP'
3011 echores "$_mkstemp"
3014 echocheck "nanosleep"
3015 # also check for nanosleep
3016 cat > $TMPC << EOF
3017 #include <time.h>
3018 int main(void) { (void) nanosleep(0, 0); return 0; }
3020 _nanosleep=no
3021 cc_check && _nanosleep=yes
3022 if test "$_nanosleep" = yes ; then
3023 def_nanosleep='#define HAVE_NANOSLEEP 1'
3024 else
3025 def_nanosleep='#undef HAVE_NANOSLEEP'
3027 echores "$_nanosleep"
3030 echocheck "socklib"
3031 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3032 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3033 cat > $TMPC << EOF
3034 #include <netdb.h>
3035 #include <sys/socket.h>
3036 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3038 _socklib=no
3039 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3040 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3041 done
3042 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3043 if test $_winsock2_h = auto ; then
3044 _winsock2_h=no
3045 cat > $TMPC << EOF
3046 #include <winsock2.h>
3047 int main(void) { (void) gethostbyname(0); return 0; }
3049 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3051 test "$_ld_sock" && res_comment="using $_ld_sock"
3052 echores "$_socklib"
3055 if test $_winsock2_h = yes ; then
3056 _ld_sock="-lws2_32"
3057 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3058 else
3059 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3063 echocheck "arpa/inet.h"
3064 arpa_inet_h=no
3065 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3066 header_check arpa/inet.h && arpa_inet_h=yes &&
3067 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3068 echores "$arpa_inet_h"
3071 echocheck "inet_pton()"
3072 def_inet_pton='#define HAVE_INET_PTON 0'
3073 inet_pton=no
3074 cat > $TMPC << EOF
3075 #include <sys/types.h>
3076 #include <sys/socket.h>
3077 #include <arpa/inet.h>
3078 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3080 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3081 cc_check $_ld_tmp && inet_pton=yes && break
3082 done
3083 if test $inet_pton = yes ; then
3084 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3085 def_inet_pton='#define HAVE_INET_PTON 1'
3087 echores "$inet_pton"
3090 echocheck "inet_aton()"
3091 def_inet_aton='#define HAVE_INET_ATON 0'
3092 inet_aton=no
3093 cat > $TMPC << EOF
3094 #include <sys/types.h>
3095 #include <sys/socket.h>
3096 #include <arpa/inet.h>
3097 int main(void) { (void) inet_aton(0, 0); return 0; }
3099 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3100 cc_check $_ld_tmp && inet_aton=yes && break
3101 done
3102 if test $inet_aton = yes ; then
3103 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3104 def_inet_aton='#define HAVE_INET_ATON 1'
3106 echores "$inet_aton"
3109 echocheck "socklen_t"
3110 _socklen_t=no
3111 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3112 cat > $TMPC << EOF
3113 #include <$header>
3114 int main(void) { socklen_t v = 0; return v; }
3116 cc_check && _socklen_t=yes && break
3117 done
3118 if test "$_socklen_t" = yes ; then
3119 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3120 else
3121 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3123 echores "$_socklen_t"
3126 echocheck "closesocket()"
3127 _closesocket=no
3128 cat > $TMPC << EOF
3129 #include <winsock2.h>
3130 int main(void) { closesocket(~0); return 0; }
3132 cc_check $_ld_sock && _closesocket=yes
3133 if test "$_closesocket" = yes ; then
3134 def_closesocket='#define HAVE_CLOSESOCKET 1'
3135 else
3136 def_closesocket='#define HAVE_CLOSESOCKET 0'
3138 echores "$_closesocket"
3141 echocheck "networking"
3142 test $_winsock2_h = no && test $inet_pton = no &&
3143 test $inet_aton = no && networking=no
3144 if test "$networking" = yes ; then
3145 def_network='#define CONFIG_NETWORK 1'
3146 def_networking='#define CONFIG_NETWORKING 1'
3147 extra_ldflags="$extra_ldflags $_ld_sock"
3148 inputmodules="networking $inputmodules"
3149 else
3150 noinputmodules="networking $noinputmodules"
3151 def_network='#undef CONFIG_NETWORK'
3152 def_networking='#undef CONFIG_NETWORKING'
3153 _ftp=no
3155 echores "$networking"
3158 echocheck "inet6"
3159 if test "$_inet6" = auto ; then
3160 cat > $TMPC << EOF
3161 #include <sys/types.h>
3162 #if !defined(_WIN32) || defined(__CYGWIN__)
3163 #include <sys/socket.h>
3164 #include <netinet/in.h>
3165 #else
3166 #include <ws2tcpip.h>
3167 #endif
3168 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3170 _inet6=no
3171 if cc_check $_ld_sock ; then
3172 _inet6=yes
3175 if test "$_inet6" = yes ; then
3176 def_inet6='#define HAVE_AF_INET6 1'
3177 else
3178 def_inet6='#undef HAVE_AF_INET6'
3180 echores "$_inet6"
3183 echocheck "gethostbyname2"
3184 if test "$_gethostbyname2" = auto ; then
3185 cat > $TMPC << EOF
3186 #include <sys/types.h>
3187 #include <sys/socket.h>
3188 #include <netdb.h>
3189 int main(void) { gethostbyname2("", AF_INET); return 0; }
3191 _gethostbyname2=no
3192 if cc_check ; then
3193 _gethostbyname2=yes
3196 if test "$_gethostbyname2" = yes ; then
3197 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3198 else
3199 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3201 echores "$_gethostbyname2"
3204 echocheck "inttypes.h (required)"
3205 _inttypes=no
3206 header_check inttypes.h && _inttypes=yes
3207 echores "$_inttypes"
3209 if test "$_inttypes" = no ; then
3210 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3211 header_check sys/bitypes.h && _inttypes=yes
3212 if test "$_inttypes" = yes ; then
3213 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."
3214 else
3215 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3220 echocheck "int_fastXY_t in inttypes.h"
3221 cat > $TMPC << EOF
3222 #include <inttypes.h>
3223 int main(void) {
3224 volatile int_fast16_t v= 0;
3225 return v; }
3227 _fast_inttypes=no
3228 cc_check && _fast_inttypes=yes
3229 if test "$_fast_inttypes" = no ; then
3230 def_fast_inttypes='
3231 typedef signed char int_fast8_t;
3232 typedef signed int int_fast16_t;
3233 typedef signed int int_fast32_t;
3234 typedef signed long long int_fast64_t;
3235 typedef unsigned char uint_fast8_t;
3236 typedef unsigned int uint_fast16_t;
3237 typedef unsigned int uint_fast32_t;
3238 typedef unsigned long long uint_fast64_t;'
3240 echores "$_fast_inttypes"
3243 echocheck "malloc.h"
3244 _malloc=no
3245 header_check malloc.h && _malloc=yes
3246 if test "$_malloc" = yes ; then
3247 def_malloc_h='#define HAVE_MALLOC_H 1'
3248 else
3249 def_malloc_h='#define HAVE_MALLOC_H 0'
3251 echores "$_malloc"
3254 echocheck "memalign()"
3255 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3256 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3257 cat > $TMPC << EOF
3258 #include <malloc.h>
3259 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3261 _memalign=no
3262 cc_check && _memalign=yes
3263 if test "$_memalign" = yes ; then
3264 def_memalign='#define HAVE_MEMALIGN 1'
3265 else
3266 def_memalign='#define HAVE_MEMALIGN 0'
3267 def_map_memalign='#define memalign(a,b) malloc(b)'
3268 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3270 echores "$_memalign"
3273 echocheck "posix_memalign()"
3274 posix_memalign=no
3275 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3276 cat > $TMPC << EOF
3277 #define _XOPEN_SOURCE 600
3278 #include <stdlib.h>
3279 int main(void) { posix_memalign(NULL, 0, 0); }
3281 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3282 echores "$posix_memalign"
3285 echocheck "alloca.h"
3286 cat > $TMPC << EOF
3287 #include <alloca.h>
3288 int main(void) { (void) alloca(0); return 0; }
3290 _alloca=no
3291 cc_check && _alloca=yes
3292 if cc_check ; then
3293 def_alloca_h='#define HAVE_ALLOCA_H 1'
3294 else
3295 def_alloca_h='#undef HAVE_ALLOCA_H'
3297 echores "$_alloca"
3300 echocheck "fastmemcpy"
3301 if test "$_fastmemcpy" = yes ; then
3302 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3303 else
3304 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3306 echores "$_fastmemcpy"
3309 echocheck "mman.h"
3310 cat > $TMPC << EOF
3311 #include <sys/types.h>
3312 #include <sys/mman.h>
3313 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3315 _mman=no
3316 cc_check && _mman=yes
3317 if test "$_mman" = yes ; then
3318 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3319 else
3320 def_mman_h='#undef HAVE_SYS_MMAN_H'
3321 os2 && _need_mmap=yes
3323 echores "$_mman"
3325 cat > $TMPC << EOF
3326 #include <sys/types.h>
3327 #include <sys/mman.h>
3328 int main(void) { void *p = MAP_FAILED; return 0; }
3330 _mman_has_map_failed=no
3331 cc_check && _mman_has_map_failed=yes
3332 if test "$_mman_has_map_failed" = yes ; then
3333 def_mman_has_map_failed=''
3334 else
3335 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3338 echocheck "dynamic loader"
3339 cat > $TMPC << EOF
3340 #include <stddef.h>
3341 #include <dlfcn.h>
3342 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3344 _dl=no
3345 for _ld_tmp in "" "-ldl" ; do
3346 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3347 done
3348 if test "$_dl" = yes ; then
3349 def_dl='#define HAVE_LIBDL 1'
3350 else
3351 def_dl='#undef HAVE_LIBDL'
3353 echores "$_dl"
3356 echocheck "dynamic a/v plugins support"
3357 if test "$_dl" = no ; then
3358 _dynamic_plugins=no
3360 if test "$_dynamic_plugins" = yes ; then
3361 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3362 else
3363 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3365 echores "$_dynamic_plugins"
3368 def_threads='#define HAVE_THREADS 0'
3370 echocheck "pthread"
3371 if linux ; then
3372 THREAD_CFLAGS=-D_REENTRANT
3373 elif freebsd || netbsd || openbsd || bsdos ; then
3374 THREAD_CFLAGS=-D_THREAD_SAFE
3376 if test "$_pthreads" = auto ; then
3377 cat > $TMPC << EOF
3378 #include <pthread.h>
3379 void* func(void *arg) { return arg; }
3380 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3382 _pthreads=no
3383 if ! hpux ; then
3384 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3385 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3386 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3387 done
3390 if test "$_pthreads" = yes ; then
3391 test $_ld_pthread && res_comment="using $_ld_pthread"
3392 def_pthreads='#define HAVE_PTHREADS 1'
3393 def_threads='#define HAVE_THREADS 1'
3394 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3395 else
3396 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3397 def_pthreads='#undef HAVE_PTHREADS'
3398 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3399 mingw32 || _win32dll=no
3401 echores "$_pthreads"
3403 if cygwin ; then
3404 if test "$_pthreads" = yes ; then
3405 def_pthread_cache="#define PTHREAD_CACHE 1"
3406 else
3407 _stream_cache=no
3408 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3412 echocheck "w32threads"
3413 if test "$_pthreads" = yes ; then
3414 res_comment="using pthread instead"
3415 _w32threads=no
3417 if test "$_w32threads" = auto ; then
3418 _w32threads=no
3419 mingw32 && _w32threads=yes
3421 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3422 echores "$_w32threads"
3424 echocheck "rpath"
3425 netbsd &&_rpath=yes
3426 if test "$_rpath" = yes ; then
3427 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3428 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3429 done
3430 extra_ldflags=$tmp
3432 echores "$_rpath"
3434 echocheck "iconv"
3435 if test "$_iconv" = auto ; then
3436 cat > $TMPC << EOF
3437 #include <stdio.h>
3438 #include <unistd.h>
3439 #include <iconv.h>
3440 #define INBUFSIZE 1024
3441 #define OUTBUFSIZE 4096
3443 char inbuffer[INBUFSIZE];
3444 char outbuffer[OUTBUFSIZE];
3446 int main(void) {
3447 size_t numread;
3448 iconv_t icdsc;
3449 char *tocode="UTF-8";
3450 char *fromcode="cp1250";
3451 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3452 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3453 char *iptr=inbuffer;
3454 char *optr=outbuffer;
3455 size_t inleft=numread;
3456 size_t outleft=OUTBUFSIZE;
3457 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3458 != (size_t)(-1)) {
3459 write(1, outbuffer, OUTBUFSIZE - outleft);
3462 if (iconv_close(icdsc) == -1)
3465 return 0;
3468 _iconv=no
3469 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3470 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3471 _iconv=yes && break
3472 done
3474 if test "$_iconv" = yes ; then
3475 def_iconv='#define CONFIG_ICONV 1'
3476 else
3477 def_iconv='#undef CONFIG_ICONV'
3479 echores "$_iconv"
3482 echocheck "soundcard.h"
3483 _soundcard_h=no
3484 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3485 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3486 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3487 header_check $_soundcard_header && _soundcard_h=yes &&
3488 res_comment="$_soundcard_header" && break
3489 done
3491 if test "$_soundcard_h" = yes ; then
3492 if test $_soundcard_header = "sys/soundcard.h"; then
3493 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3494 else
3495 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3498 echores "$_soundcard_h"
3501 echocheck "sys/dvdio.h"
3502 _dvdio=no
3503 # FreeBSD 8.1 has broken dvdio.h
3504 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3505 if test "$_dvdio" = yes ; then
3506 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3507 else
3508 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3510 echores "$_dvdio"
3513 echocheck "sys/cdio.h"
3514 _cdio=no
3515 # at least OpenSolaris has a broken cdio.h
3516 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3517 if test "$_cdio" = yes ; then
3518 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3519 else
3520 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3522 echores "$_cdio"
3525 echocheck "linux/cdrom.h"
3526 _cdrom=no
3527 header_check linux/cdrom.h && _cdrom=yes
3528 if test "$_cdrom" = yes ; then
3529 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3530 else
3531 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3533 echores "$_cdrom"
3536 echocheck "dvd.h"
3537 _dvd=no
3538 header_check dvd.h && _dvd=yes
3539 if test "$_dvd" = yes ; then
3540 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3541 else
3542 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3544 echores "$_dvd"
3547 if bsdos; then
3548 echocheck "BSDI dvd.h"
3549 _bsdi_dvd=no
3550 header_check dvd.h && _bsdi_dvd=yes
3551 if test "$_bsdi_dvd" = yes ; then
3552 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3553 else
3554 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3556 echores "$_bsdi_dvd"
3557 fi #if bsdos
3560 if hpux; then
3561 # also used by AIX, but AIX does not support VCD and/or libdvdread
3562 echocheck "HP-UX SCSI header"
3563 _hpux_scsi_h=no
3564 header_check sys/scsi.h && _hpux_scsi_h=yes
3565 if test "$_hpux_scsi_h" = yes ; then
3566 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3567 else
3568 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3570 echores "$_hpux_scsi_h"
3571 fi #if hpux
3574 if sunos; then
3575 echocheck "userspace SCSI headers (Solaris)"
3576 _sol_scsi_h=no
3577 header_check sys/scsi/scsi_types.h &&
3578 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3579 _sol_scsi_h=yes
3580 if test "$_sol_scsi_h" = yes ; then
3581 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3582 else
3583 def_sol_scsi_h='#undef SOLARIS_USCSI'
3585 echores "$_sol_scsi_h"
3586 fi #if sunos
3589 echocheck "termcap"
3590 if test "$_termcap" = auto ; then
3591 cat > $TMPC <<EOF
3592 #include <stddef.h>
3593 #include <term.h>
3594 int main(void) { tgetent(NULL, NULL); return 0; }
3596 _termcap=no
3597 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3598 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3599 && _termcap=yes && break
3600 done
3602 if test "$_termcap" = yes ; then
3603 def_termcap='#define HAVE_TERMCAP 1'
3604 test $_ld_tmp && res_comment="using $_ld_tmp"
3605 else
3606 def_termcap='#undef HAVE_TERMCAP'
3608 echores "$_termcap"
3611 echocheck "termios"
3612 def_termios='#undef HAVE_TERMIOS'
3613 def_termios_h='#undef HAVE_TERMIOS_H'
3614 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3615 if test "$_termios" = auto ; then
3616 _termios=no
3617 for _termios_header in "termios.h" "sys/termios.h"; do
3618 header_check $_termios_header && _termios=yes &&
3619 res_comment="using $_termios_header" && break
3620 done
3623 if test "$_termios" = yes ; then
3624 def_termios='#define HAVE_TERMIOS 1'
3625 if test "$_termios_header" = "termios.h" ; then
3626 def_termios_h='#define HAVE_TERMIOS_H 1'
3627 else
3628 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3631 echores "$_termios"
3634 echocheck "shm"
3635 if test "$_shm" = auto ; then
3636 cat > $TMPC << EOF
3637 #include <sys/types.h>
3638 #include <sys/shm.h>
3639 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3641 _shm=no
3642 cc_check && _shm=yes
3644 if test "$_shm" = yes ; then
3645 def_shm='#define HAVE_SHM 1'
3646 else
3647 def_shm='#undef HAVE_SHM'
3649 echores "$_shm"
3652 echocheck "strsep()"
3653 cat > $TMPC << EOF
3654 #include <string.h>
3655 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3657 _strsep=no
3658 cc_check && _strsep=yes
3659 if test "$_strsep" = yes ; then
3660 def_strsep='#define HAVE_STRSEP 1'
3661 _need_strsep=no
3662 else
3663 def_strsep='#undef HAVE_STRSEP'
3664 _need_strsep=yes
3666 echores "$_strsep"
3669 echocheck "vsscanf()"
3670 cat > $TMPC << EOF
3671 #define _ISOC99_SOURCE
3672 #include <stdarg.h>
3673 #include <stdio.h>
3674 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3676 _vsscanf=no
3677 cc_check && _vsscanf=yes
3678 if test "$_vsscanf" = yes ; then
3679 def_vsscanf='#define HAVE_VSSCANF 1'
3680 _need_vsscanf=no
3681 else
3682 def_vsscanf='#undef HAVE_VSSCANF'
3683 _need_vsscanf=yes
3685 echores "$_vsscanf"
3688 echocheck "swab()"
3689 cat > $TMPC << EOF
3690 #define _XOPEN_SOURCE 600
3691 #include <unistd.h>
3692 int main(void) { swab(0, 0, 0); return 0; }
3694 _swab=no
3695 cc_check && _swab=yes
3696 if test "$_swab" = yes ; then
3697 def_swab='#define HAVE_SWAB 1'
3698 _need_swab=no
3699 else
3700 def_swab='#undef HAVE_SWAB'
3701 _need_swab=yes
3703 echores "$_swab"
3705 echocheck "POSIX select()"
3706 cat > $TMPC << EOF
3707 #include <stdio.h>
3708 #include <stdlib.h>
3709 #include <sys/types.h>
3710 #include <string.h>
3711 #include <sys/time.h>
3712 #include <unistd.h>
3713 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3715 _posix_select=no
3716 def_posix_select='#undef HAVE_POSIX_SELECT'
3717 #select() of kLIBC (OS/2) supports socket only
3718 ! os2 && cc_check && _posix_select=yes \
3719 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3720 echores "$_posix_select"
3723 echocheck "audio select()"
3724 if test "$_select" = no ; then
3725 def_select='#undef HAVE_AUDIO_SELECT'
3726 elif test "$_select" = yes ; then
3727 def_select='#define HAVE_AUDIO_SELECT 1'
3729 echores "$_select"
3732 echocheck "gettimeofday()"
3733 cat > $TMPC << EOF
3734 #include <sys/time.h>
3735 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3737 _gettimeofday=no
3738 cc_check && _gettimeofday=yes
3739 if test "$_gettimeofday" = yes ; then
3740 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3741 _need_gettimeofday=no
3742 else
3743 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3744 _need_gettimeofday=yes
3746 echores "$_gettimeofday"
3749 echocheck "glob()"
3750 cat > $TMPC << EOF
3751 #include <stdio.h>
3752 #include <glob.h>
3753 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3755 _glob=no
3756 cc_check && _glob=yes
3757 if test "$_glob" = yes ; then
3758 def_glob='#define HAVE_GLOB 1'
3759 _need_glob=no
3760 else
3761 def_glob='#undef HAVE_GLOB'
3762 _need_glob=yes
3764 echores "$_glob"
3767 echocheck "setenv()"
3768 cat > $TMPC << EOF
3769 #include <stdlib.h>
3770 int main(void) { setenv("","",0); return 0; }
3772 _setenv=no
3773 cc_check && _setenv=yes
3774 if test "$_setenv" = yes ; then
3775 def_setenv='#define HAVE_SETENV 1'
3776 _need_setenv=no
3777 else
3778 def_setenv='#undef HAVE_SETENV'
3779 _need_setenv=yes
3781 echores "$_setenv"
3784 echocheck "setmode()"
3785 _setmode=no
3786 def_setmode='#define HAVE_SETMODE 0'
3787 cat > $TMPC << EOF
3788 #include <io.h>
3789 int main(void) { setmode(0, 0); return 0; }
3791 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3792 echores "$_setmode"
3795 if sunos; then
3796 echocheck "sysi86()"
3797 cat > $TMPC << EOF
3798 #include <sys/sysi86.h>
3799 int main(void) { sysi86(0); return 0; }
3801 _sysi86=no
3802 cc_check && _sysi86=yes
3803 if test "$_sysi86" = yes ; then
3804 def_sysi86='#define HAVE_SYSI86 1'
3805 cat > $TMPC << EOF
3806 #include <sys/sysi86.h>
3807 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3809 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3810 else
3811 def_sysi86='#undef HAVE_SYSI86'
3813 echores "$_sysi86"
3814 fi #if sunos
3817 echocheck "sys/sysinfo.h"
3818 cat > $TMPC << EOF
3819 #include <sys/sysinfo.h>
3820 int main(void) {
3821 struct sysinfo s_info;
3822 sysinfo(&s_info);
3823 return 0;
3826 _sys_sysinfo=no
3827 cc_check && _sys_sysinfo=yes
3828 if test "$_sys_sysinfo" = yes ; then
3829 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3830 else
3831 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3833 echores "$_sys_sysinfo"
3836 if darwin; then
3838 echocheck "Mac OS X Finder Support"
3839 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3840 if test "$_macosx_finder" = yes ; then
3841 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3842 extra_ldflags="$extra_ldflags -framework Carbon"
3844 echores "$_macosx_finder"
3846 echocheck "Mac OS X Bundle file locations"
3847 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3848 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3849 if test "$_macosx_bundle" = yes ; then
3850 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3851 extra_ldflags="$extra_ldflags -framework Carbon"
3853 echores "$_macosx_bundle"
3855 echocheck "Apple Remote"
3856 if test "$_apple_remote" = auto ; then
3857 _apple_remote=no
3858 cat > $TMPC <<EOF
3859 #include <stdio.h>
3860 #include <IOKit/IOCFPlugIn.h>
3861 int main(void) {
3862 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3863 CFMutableDictionaryRef hidMatchDictionary;
3864 IOReturn ioReturnValue;
3866 // Set up a matching dictionary to search the I/O Registry by class.
3867 // name for all HID class devices
3868 hidMatchDictionary = IOServiceMatching("AppleIRController");
3870 // Now search I/O Registry for matching devices.
3871 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3872 hidMatchDictionary, &hidObjectIterator);
3874 // If search is unsuccessful, return nonzero.
3875 if (ioReturnValue != kIOReturnSuccess ||
3876 !IOIteratorIsValid(hidObjectIterator)) {
3877 return 1;
3879 return 0;
3882 cc_check -framework IOKit && _apple_remote=yes
3884 if test "$_apple_remote" = yes ; then
3885 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3886 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3887 else
3888 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3890 echores "$_apple_remote"
3892 fi #if darwin
3894 if linux; then
3896 echocheck "Apple IR"
3897 if test "$_apple_ir" = auto ; then
3898 _apple_ir=no
3899 cat > $TMPC <<EOF
3900 #include <linux/types.h>
3901 #include <linux/input.h>
3902 int main(void) {
3903 struct input_event ev;
3904 struct input_id id;
3905 return 0;
3908 cc_check && _apple_ir=yes
3910 if test "$_apple_ir" = yes ; then
3911 def_apple_ir='#define CONFIG_APPLE_IR 1'
3912 else
3913 def_apple_ir='#undef CONFIG_APPLE_IR'
3915 echores "$_apple_ir"
3916 fi #if linux
3918 echocheck "pkg-config"
3919 _pkg_config=pkg-config
3920 if $($_pkg_config --version > /dev/null 2>&1); then
3921 if test "$_ld_static"; then
3922 _pkg_config="$_pkg_config --static"
3924 echores "yes"
3925 else
3926 _pkg_config=false
3927 echores "no"
3931 echocheck "Samba support (libsmbclient)"
3932 if test "$_smb" = yes; then
3933 extra_ldflags="$extra_ldflags -lsmbclient"
3935 if test "$_smb" = auto; then
3936 _smb=no
3937 cat > $TMPC << EOF
3938 #include <libsmbclient.h>
3939 int main(void) { smbc_opendir("smb://"); return 0; }
3941 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3942 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3943 _smb=yes && break
3944 done
3947 if test "$_smb" = yes; then
3948 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3949 inputmodules="smb $inputmodules"
3950 else
3951 def_smb="#undef CONFIG_LIBSMBCLIENT"
3952 noinputmodules="smb $noinputmodules"
3954 echores "$_smb"
3957 #########
3958 # VIDEO #
3959 #########
3962 echocheck "tdfxfb"
3963 if test "$_tdfxfb" = yes ; then
3964 def_tdfxfb='#define CONFIG_TDFXFB 1'
3965 vomodules="tdfxfb $vomodules"
3966 else
3967 def_tdfxfb='#undef CONFIG_TDFXFB'
3968 novomodules="tdfxfb $novomodules"
3970 echores "$_tdfxfb"
3972 echocheck "s3fb"
3973 if test "$_s3fb" = yes ; then
3974 def_s3fb='#define CONFIG_S3FB 1'
3975 vomodules="s3fb $vomodules"
3976 else
3977 def_s3fb='#undef CONFIG_S3FB'
3978 novomodules="s3fb $novomodules"
3980 echores "$_s3fb"
3982 echocheck "wii"
3983 if test "$_wii" = yes ; then
3984 def_wii='#define CONFIG_WII 1'
3985 vomodules="wii $vomodules"
3986 else
3987 def_wii='#undef CONFIG_WII'
3988 novomodules="wii $novomodules"
3990 echores "$_wii"
3992 echocheck "tdfxvid"
3993 if test "$_tdfxvid" = yes ; then
3994 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3995 vomodules="tdfx_vid $vomodules"
3996 else
3997 def_tdfxvid='#undef CONFIG_TDFX_VID'
3998 novomodules="tdfx_vid $novomodules"
4000 echores "$_tdfxvid"
4002 echocheck "xvr100"
4003 if test "$_xvr100" = auto ; then
4004 cat > $TMPC << EOF
4005 #include <unistd.h>
4006 #include <sys/fbio.h>
4007 #include <sys/visual_io.h>
4008 int main(void) {
4009 struct vis_identifier ident;
4010 struct fbgattr attr;
4011 ioctl(0, VIS_GETIDENTIFIER, &ident);
4012 ioctl(0, FBIOGATTR, &attr);
4013 return 0;
4016 _xvr100=no
4017 cc_check && _xvr100=yes
4019 if test "$_xvr100" = yes ; then
4020 def_xvr100='#define CONFIG_XVR100 1'
4021 vomodules="xvr100 $vomodules"
4022 else
4023 def_tdfxvid='#undef CONFIG_XVR100'
4024 novomodules="xvr100 $novomodules"
4026 echores "$_xvr100"
4028 echocheck "tga"
4029 if test "$_tga" = yes ; then
4030 def_tga='#define CONFIG_TGA 1'
4031 vomodules="tga $vomodules"
4032 else
4033 def_tga='#undef CONFIG_TGA'
4034 novomodules="tga $novomodules"
4036 echores "$_tga"
4039 echocheck "md5sum support"
4040 if test "$_md5sum" = yes; then
4041 def_md5sum="#define CONFIG_MD5SUM 1"
4042 vomodules="md5sum $vomodules"
4043 else
4044 def_md5sum="#undef CONFIG_MD5SUM"
4045 novomodules="md5sum $novomodules"
4047 echores "$_md5sum"
4050 echocheck "yuv4mpeg support"
4051 if test "$_yuv4mpeg" = yes; then
4052 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4053 vomodules="yuv4mpeg $vomodules"
4054 else
4055 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4056 novomodules="yuv4mpeg $novomodules"
4058 echores "$_yuv4mpeg"
4061 echocheck "bl"
4062 if test "$_bl" = yes ; then
4063 def_bl='#define CONFIG_BL 1'
4064 vomodules="bl $vomodules"
4065 else
4066 def_bl='#undef CONFIG_BL'
4067 novomodules="bl $novomodules"
4069 echores "$_bl"
4072 echocheck "DirectFB"
4073 if test "$_directfb" = auto ; then
4074 _directfb=no
4075 cat > $TMPC <<EOF
4076 #include <directfb.h>
4077 int main(void) { DirectFBInit(0, 0); return 0; }
4079 for _inc_tmp in "" -I/usr/local/include/directfb \
4080 -I/usr/include/directfb -I/usr/local/include; do
4081 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4082 extra_cflags="$extra_cflags $_inc_tmp" && break
4083 done
4086 dfb_version() {
4087 expr $1 \* 65536 + $2 \* 256 + $3
4090 if test "$_directfb" = yes; then
4091 cat > $TMPC << EOF
4092 #include <directfb_version.h>
4094 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4097 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4098 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4099 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4100 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4101 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4102 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4103 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4104 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4105 res_comment="$_directfb_version"
4106 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4107 else
4108 def_directfb_version='#undef DIRECTFBVERSION'
4109 _directfb=no
4110 res_comment="version >=0.9.13 required"
4112 else
4113 _directfb=no
4114 res_comment="failed to get version"
4117 echores "$_directfb"
4119 if test "$_directfb" = yes ; then
4120 def_directfb='#define CONFIG_DIRECTFB 1'
4121 vomodules="directfb $vomodules"
4122 libs_mplayer="$libs_mplayer -ldirectfb"
4123 else
4124 def_directfb='#undef CONFIG_DIRECTFB'
4125 novomodules="directfb $novomodules"
4127 if test "$_dfbmga" = yes; then
4128 vomodules="dfbmga $vomodules"
4129 def_dfbmga='#define CONFIG_DFBMGA 1'
4130 else
4131 novomodules="dfbmga $novomodules"
4132 def_dfbmga='#undef CONFIG_DFBMGA'
4136 echocheck "X11 headers presence"
4137 _x11_headers="no"
4138 res_comment="check if the dev(el) packages are installed"
4139 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4140 if test -f "$I/X11/Xlib.h" ; then
4141 _x11_headers="yes"
4142 res_comment=""
4143 break
4145 done
4146 if test $_cross_compile = no; then
4147 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4148 /usr/include/X11R6 /usr/openwin/include ; do
4149 if test -f "$I/X11/Xlib.h" ; then
4150 extra_cflags="$extra_cflags -I$I"
4151 _x11_headers="yes"
4152 res_comment="using $I"
4153 break
4155 done
4157 echores "$_x11_headers"
4160 echocheck "X11"
4161 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4162 cat > $TMPC <<EOF
4163 #include <X11/Xlib.h>
4164 #include <X11/Xutil.h>
4165 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4167 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4168 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4169 -L/usr/lib ; do
4170 if netbsd; then
4171 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4172 else
4173 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4175 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4176 && _x11=yes && break
4177 done
4179 if test "$_x11" = yes ; then
4180 def_x11='#define CONFIG_X11 1'
4181 vomodules="x11 xover $vomodules"
4182 else
4183 _x11=no
4184 def_x11='#undef CONFIG_X11'
4185 novomodules="x11 $novomodules"
4186 res_comment="check if the dev(el) packages are installed"
4187 # disable stuff that depends on X
4188 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4190 echores "$_x11"
4192 echocheck "Xss screensaver extensions"
4193 if test "$_xss" = auto ; then
4194 cat > $TMPC << EOF
4195 #include <X11/Xlib.h>
4196 #include <X11/extensions/scrnsaver.h>
4197 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4199 _xss=no
4200 cc_check -lXss && _xss=yes
4202 if test "$_xss" = yes ; then
4203 def_xss='#define CONFIG_XSS 1'
4204 libs_mplayer="$libs_mplayer -lXss"
4205 else
4206 def_xss='#undef CONFIG_XSS'
4208 echores "$_xss"
4210 echocheck "DPMS"
4211 _xdpms3=no
4212 _xdpms4=no
4213 if test "$_x11" = yes ; then
4214 cat > $TMPC <<EOF
4215 #include <X11/Xmd.h>
4216 #include <X11/Xlib.h>
4217 #include <X11/Xutil.h>
4218 #include <X11/Xatom.h>
4219 #include <X11/extensions/dpms.h>
4220 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4222 cc_check -lXdpms && _xdpms3=yes
4223 cat > $TMPC <<EOF
4224 #include <X11/Xlib.h>
4225 #include <X11/extensions/dpms.h>
4226 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4228 cc_check -lXext && _xdpms4=yes
4230 if test "$_xdpms4" = yes ; then
4231 def_xdpms='#define CONFIG_XDPMS 1'
4232 res_comment="using Xdpms 4"
4233 echores "yes"
4234 elif test "$_xdpms3" = yes ; then
4235 def_xdpms='#define CONFIG_XDPMS 1'
4236 libs_mplayer="$libs_mplayer -lXdpms"
4237 res_comment="using Xdpms 3"
4238 echores "yes"
4239 else
4240 def_xdpms='#undef CONFIG_XDPMS'
4241 echores "no"
4245 echocheck "Xv"
4246 if test "$_xv" = auto ; then
4247 cat > $TMPC <<EOF
4248 #include <X11/Xlib.h>
4249 #include <X11/extensions/Xvlib.h>
4250 int main(void) {
4251 (void) XvGetPortAttribute(0, 0, 0, 0);
4252 (void) XvQueryPortAttributes(0, 0, 0);
4253 return 0; }
4255 _xv=no
4256 cc_check -lXv && _xv=yes
4259 if test "$_xv" = yes ; then
4260 def_xv='#define CONFIG_XV 1'
4261 libs_mplayer="$libs_mplayer -lXv"
4262 vomodules="xv $vomodules"
4263 else
4264 def_xv='#undef CONFIG_XV'
4265 novomodules="xv $novomodules"
4267 echores "$_xv"
4270 echocheck "XvMC"
4271 if test "$_xv" = yes && test "$_xvmc" != no ; then
4272 _xvmc=no
4273 cat > $TMPC <<EOF
4274 #include <X11/Xlib.h>
4275 #include <X11/extensions/Xvlib.h>
4276 #include <X11/extensions/XvMClib.h>
4277 int main(void) {
4278 (void) XvMCQueryExtension(0,0,0);
4279 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4280 return 0; }
4282 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4283 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4284 done
4286 if test "$_xvmc" = yes ; then
4287 def_xvmc='#define CONFIG_XVMC 1'
4288 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4289 vomodules="xvmc $vomodules"
4290 res_comment="using $_xvmclib"
4291 else
4292 def_xvmc='#define CONFIG_XVMC 0'
4293 novomodules="xvmc $novomodules"
4295 echores "$_xvmc"
4298 echocheck "VDPAU"
4299 if test "$_vdpau" = auto ; then
4300 _vdpau=no
4301 if test "$_dl" = yes ; then
4302 cat > $TMPC <<EOF
4303 #include <vdpau/vdpau_x11.h>
4304 int main(void) {
4305 (void) vdp_device_create_x11(0, 0, 0, 0);
4306 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4308 cc_check -lvdpau && _vdpau=yes
4311 if test "$_vdpau" = yes ; then
4312 def_vdpau='#define CONFIG_VDPAU 1'
4313 libs_mplayer="$libs_mplayer -lvdpau"
4314 vomodules="vdpau $vomodules"
4315 else
4316 def_vdpau='#define CONFIG_VDPAU 0'
4317 novomodules="vdpau $novomodules"
4319 echores "$_vdpau"
4322 echocheck "Xinerama"
4323 if test "$_xinerama" = auto ; then
4324 cat > $TMPC <<EOF
4325 #include <X11/Xlib.h>
4326 #include <X11/extensions/Xinerama.h>
4327 int main(void) { (void) XineramaIsActive(0); return 0; }
4329 _xinerama=no
4330 cc_check -lXinerama && _xinerama=yes
4333 if test "$_xinerama" = yes ; then
4334 def_xinerama='#define CONFIG_XINERAMA 1'
4335 libs_mplayer="$libs_mplayer -lXinerama"
4336 else
4337 def_xinerama='#undef CONFIG_XINERAMA'
4339 echores "$_xinerama"
4342 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4343 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4344 # named 'X extensions' or something similar.
4345 # This check may be useful for future mplayer versions (to change resolution)
4346 # If you run into problems, remove '-lXxf86vm'.
4347 echocheck "Xxf86vm"
4348 if test "$_vm" = auto ; then
4349 cat > $TMPC <<EOF
4350 #include <X11/Xlib.h>
4351 #include <X11/extensions/xf86vmode.h>
4352 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4354 _vm=no
4355 cc_check -lXxf86vm && _vm=yes
4357 if test "$_vm" = yes ; then
4358 def_vm='#define CONFIG_XF86VM 1'
4359 libs_mplayer="$libs_mplayer -lXxf86vm"
4360 else
4361 def_vm='#undef CONFIG_XF86VM'
4363 echores "$_vm"
4365 # Check for the presence of special keycodes, like audio control buttons
4366 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4367 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4368 # have these new keycodes.
4369 echocheck "XF86keysym"
4370 if test "$_xf86keysym" = auto; then
4371 _xf86keysym=no
4372 cat > $TMPC <<EOF
4373 #include <X11/Xlib.h>
4374 #include <X11/XF86keysym.h>
4375 int main(void) { return XF86XK_AudioPause; }
4377 cc_check && _xf86keysym=yes
4379 if test "$_xf86keysym" = yes ; then
4380 def_xf86keysym='#define CONFIG_XF86XK 1'
4381 else
4382 def_xf86keysym='#undef CONFIG_XF86XK'
4384 echores "$_xf86keysym"
4386 echocheck "DGA"
4387 if test "$_dga2" = auto && test "$_x11" = yes ; then
4388 cat > $TMPC << EOF
4389 #include <X11/Xlib.h>
4390 #include <X11/extensions/xf86dga.h>
4391 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4393 _dga2=no
4394 cc_check -lXxf86dga && _dga2=yes
4396 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4397 cat > $TMPC << EOF
4398 #include <X11/Xlib.h>
4399 #include <X11/extensions/xf86dga.h>
4400 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4402 _dga1=no
4403 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4406 _dga=no
4407 def_dga='#undef CONFIG_DGA'
4408 def_dga1='#undef CONFIG_DGA1'
4409 def_dga2='#undef CONFIG_DGA2'
4410 if test "$_dga1" = yes ; then
4411 _dga=yes
4412 def_dga1='#define CONFIG_DGA1 1'
4413 res_comment="using DGA 1.0"
4414 elif test "$_dga2" = yes ; then
4415 _dga=yes
4416 def_dga2='#define CONFIG_DGA2 1'
4417 res_comment="using DGA 2.0"
4419 if test "$_dga" = yes ; then
4420 def_dga='#define CONFIG_DGA 1'
4421 libs_mplayer="$libs_mplayer -lXxf86dga"
4422 vomodules="dga $vomodules"
4423 else
4424 novomodules="dga $novomodules"
4426 echores "$_dga"
4429 echocheck "3dfx"
4430 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4431 def_3dfx='#define CONFIG_3DFX 1'
4432 vomodules="3dfx $vomodules"
4433 else
4434 def_3dfx='#undef CONFIG_3DFX'
4435 novomodules="3dfx $novomodules"
4437 echores "$_3dfx"
4440 echocheck "VIDIX"
4441 def_vidix='#undef CONFIG_VIDIX'
4442 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4443 _vidix_drv_cyberblade=no
4444 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4445 _vidix_drv_ivtv=no
4446 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4447 _vidix_drv_mach64=no
4448 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4449 _vidix_drv_mga=no
4450 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4451 _vidix_drv_mga_crtc2=no
4452 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4453 _vidix_drv_nvidia=no
4454 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4455 _vidix_drv_pm2=no
4456 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4457 _vidix_drv_pm3=no
4458 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4459 _vidix_drv_radeon=no
4460 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4461 _vidix_drv_rage128=no
4462 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4463 _vidix_drv_s3=no
4464 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4465 _vidix_drv_sh_veu=no
4466 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4467 _vidix_drv_sis=no
4468 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4469 _vidix_drv_unichrome=no
4470 if test "$_vidix" = auto ; then
4471 _vidix=no
4472 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4473 && _vidix=yes
4474 x86_64 && ! linux && _vidix=no
4475 (ppc || alpha) && linux && _vidix=yes
4477 echores "$_vidix"
4479 if test "$_vidix" = yes ; then
4480 def_vidix='#define CONFIG_VIDIX 1'
4481 vomodules="cvidix $vomodules"
4482 # FIXME: ivtv driver temporarily disabled until we have a proper test
4483 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4484 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4486 # some vidix drivers are architecture and os specific, discard them elsewhere
4487 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4488 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4490 for driver in $_vidix_drivers ; do
4491 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4492 eval _vidix_drv_${driver}=yes
4493 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4494 done
4496 echocheck "VIDIX PCI device name database"
4497 echores "$_vidix_pcidb"
4498 if test "$_vidix_pcidb" = yes ; then
4499 _vidix_pcidb_val=1
4500 else
4501 _vidix_pcidb_val=0
4504 echocheck "VIDIX dhahelper support"
4505 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4506 echores "$_dhahelper"
4508 echocheck "VIDIX svgalib_helper support"
4509 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4510 echores "$_svgalib_helper"
4512 else
4513 novomodules="cvidix $novomodules"
4516 if test "$_vidix" = yes && win32; then
4517 winvidix=yes
4518 vomodules="winvidix $vomodules"
4519 libs_mplayer="$libs_mplayer -lgdi32"
4520 else
4521 novomodules="winvidix $novomodules"
4523 if test "$_vidix" = yes && test "$_x11" = yes; then
4524 xvidix=yes
4525 vomodules="xvidix $vomodules"
4526 else
4527 novomodules="xvidix $novomodules"
4530 echocheck "GGI"
4531 if test "$_ggi" = auto ; then
4532 cat > $TMPC << EOF
4533 #include <ggi/ggi.h>
4534 int main(void) { ggiInit(); return 0; }
4536 _ggi=no
4537 cc_check -lggi && _ggi=yes
4539 if test "$_ggi" = yes ; then
4540 def_ggi='#define CONFIG_GGI 1'
4541 libs_mplayer="$libs_mplayer -lggi"
4542 vomodules="ggi $vomodules"
4543 else
4544 def_ggi='#undef CONFIG_GGI'
4545 novomodules="ggi $novomodules"
4547 echores "$_ggi"
4549 echocheck "GGI extension: libggiwmh"
4550 if test "$_ggiwmh" = auto ; then
4551 _ggiwmh=no
4552 cat > $TMPC << EOF
4553 #include <ggi/ggi.h>
4554 #include <ggi/wmh.h>
4555 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4557 cc_check -lggi -lggiwmh && _ggiwmh=yes
4559 # needed to get right output on obscure combination
4560 # like --disable-ggi --enable-ggiwmh
4561 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4562 def_ggiwmh='#define CONFIG_GGIWMH 1'
4563 libs_mplayer="$libs_mplayer -lggiwmh"
4564 else
4565 _ggiwmh=no
4566 def_ggiwmh='#undef CONFIG_GGIWMH'
4568 echores "$_ggiwmh"
4571 echocheck "AA"
4572 if test "$_aa" = auto ; then
4573 cat > $TMPC << EOF
4574 #include <aalib.h>
4575 extern struct aa_hardware_params aa_defparams;
4576 extern struct aa_renderparams aa_defrenderparams;
4577 int main(void) {
4578 aa_context *c;
4579 aa_renderparams *p;
4580 (void) aa_init(0, 0, 0);
4581 c = aa_autoinit(&aa_defparams);
4582 p = aa_getrenderparams();
4583 aa_autoinitkbd(c,0);
4584 return 0; }
4586 _aa=no
4587 for _ld_tmp in "-laa" ; do
4588 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4589 done
4591 if test "$_aa" = yes ; then
4592 def_aa='#define CONFIG_AA 1'
4593 if cygwin ; then
4594 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4596 vomodules="aa $vomodules"
4597 else
4598 def_aa='#undef CONFIG_AA'
4599 novomodules="aa $novomodules"
4601 echores "$_aa"
4604 echocheck "CACA"
4605 if test "$_caca" = auto ; then
4606 _caca=no
4607 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4608 cat > $TMPC << EOF
4609 #include <caca.h>
4610 #ifdef CACA_API_VERSION_1
4611 #include <caca0.h>
4612 #endif
4613 int main(void) { (void) caca_init(); return 0; }
4615 cc_check $(caca-config --libs) && _caca=yes
4618 if test "$_caca" = yes ; then
4619 def_caca='#define CONFIG_CACA 1'
4620 extra_cflags="$extra_cflags $(caca-config --cflags)"
4621 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4622 vomodules="caca $vomodules"
4623 else
4624 def_caca='#undef CONFIG_CACA'
4625 novomodules="caca $novomodules"
4627 echores "$_caca"
4630 echocheck "SVGAlib"
4631 if test "$_svga" = auto ; then
4632 _svga=no
4633 header_check vga.h -lvga $_ld_lm && _svga=yes
4635 if test "$_svga" = yes ; then
4636 def_svga='#define CONFIG_SVGALIB 1'
4637 libs_mplayer="$libs_mplayer -lvga"
4638 vomodules="svga $vomodules"
4639 else
4640 def_svga='#undef CONFIG_SVGALIB'
4641 novomodules="svga $novomodules"
4643 echores "$_svga"
4646 echocheck "FBDev"
4647 if test "$_fbdev" = auto ; then
4648 _fbdev=no
4649 linux && _fbdev=yes
4651 if test "$_fbdev" = yes ; then
4652 def_fbdev='#define CONFIG_FBDEV 1'
4653 vomodules="fbdev $vomodules"
4654 else
4655 def_fbdev='#undef CONFIG_FBDEV'
4656 novomodules="fbdev $novomodules"
4658 echores "$_fbdev"
4662 echocheck "DVB"
4663 if test "$_dvb" = auto ; then
4664 _dvb=no
4665 cat >$TMPC << EOF
4666 #include <poll.h>
4667 #include <sys/ioctl.h>
4668 #include <stdio.h>
4669 #include <time.h>
4670 #include <unistd.h>
4671 #include <linux/dvb/dmx.h>
4672 #include <linux/dvb/frontend.h>
4673 #include <linux/dvb/video.h>
4674 #include <linux/dvb/audio.h>
4675 int main(void) {return 0;}
4677 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4678 cc_check $_inc_tmp && _dvb=yes && \
4679 extra_cflags="$extra_cflags $_inc_tmp" && break
4680 done
4682 echores "$_dvb"
4683 if test "$_dvb" = yes ; then
4684 _dvbin=yes
4685 inputmodules="dvb $inputmodules"
4686 def_dvb='#define CONFIG_DVB 1'
4687 def_dvbin='#define CONFIG_DVBIN 1'
4688 aomodules="mpegpes(dvb) $aomodules"
4689 vomodules="mpegpes(dvb) $vomodules"
4690 else
4691 _dvbin=no
4692 noinputmodules="dvb $noinputmodules"
4693 def_dvb='#undef CONFIG_DVB'
4694 def_dvbin='#undef CONFIG_DVBIN '
4695 aomodules="mpegpes(file) $aomodules"
4696 vomodules="mpegpes(file) $vomodules"
4700 if darwin; then
4702 echocheck "QuickTime"
4703 if test "$quicktime" = auto ; then
4704 cat > $TMPC <<EOF
4705 #include <QuickTime/QuickTime.h>
4706 int main(void) {
4707 ImageDescription *desc;
4708 EnterMovies();
4709 ExitMovies();
4710 return 0;
4713 quicktime=no
4714 cc_check -framework QuickTime && quicktime=yes
4716 if test "$quicktime" = yes ; then
4717 extra_ldflags="$extra_ldflags -framework QuickTime"
4718 def_quicktime='#define CONFIG_QUICKTIME 1'
4719 else
4720 def_quicktime='#undef CONFIG_QUICKTIME'
4721 _quartz=no
4723 echores $quicktime
4725 echocheck "Quartz"
4726 if test "$_quartz" = auto ; then
4727 cat > $TMPC <<EOF
4728 #include <Carbon/Carbon.h>
4729 int main(void) {
4730 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4731 return 0;
4734 _quartz=no
4735 cc_check -framework Carbon && _quartz=yes
4737 if test "$_quartz" = yes ; then
4738 libs_mplayer="$libs_mplayer -framework Carbon"
4739 def_quartz='#define CONFIG_QUARTZ 1'
4740 vomodules="quartz $vomodules"
4741 else
4742 def_quartz='#undef CONFIG_QUARTZ'
4743 novomodules="quartz $novomodules"
4745 echores $_quartz
4747 echocheck "CoreVideo"
4748 if test "$_corevideo" = auto ; then
4749 cat > $TMPC <<EOF
4750 #include <Carbon/Carbon.h>
4751 #include <CoreServices/CoreServices.h>
4752 #include <OpenGL/OpenGL.h>
4753 #include <QuartzCore/CoreVideo.h>
4754 int main(void) { return 0; }
4756 _corevideo=no
4757 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4759 if test "$_corevideo" = yes ; then
4760 vomodules="corevideo $vomodules"
4761 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4762 def_corevideo='#define CONFIG_COREVIDEO 1'
4763 else
4764 novomodules="corevideo $novomodules"
4765 def_corevideo='#undef CONFIG_COREVIDEO'
4767 echores "$_corevideo"
4769 fi #if darwin
4772 echocheck "PNG support"
4773 if test "$_png" = auto ; then
4774 _png=no
4775 if irix ; then
4776 # Don't check for -lpng on irix since it has its own libpng
4777 # incompatible with the GNU libpng
4778 res_comment="disabled on irix (not GNU libpng)"
4779 else
4780 cat > $TMPC << EOF
4781 #include <png.h>
4782 #include <string.h>
4783 int main(void) {
4784 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4785 printf("libpng: %s\n", png_libpng_ver);
4786 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4789 cc_check -lpng -lz $_ld_lm && _png=yes
4792 echores "$_png"
4793 if test "$_png" = yes ; then
4794 def_png='#define CONFIG_PNG 1'
4795 extra_ldflags="$extra_ldflags -lpng -lz"
4796 else
4797 def_png='#undef CONFIG_PNG'
4800 echocheck "MNG support"
4801 if test "$_mng" = auto ; then
4802 _mng=no
4803 cat > $TMPC << EOF
4804 #include <libmng.h>
4805 int main(void) {
4806 const char * p_ver = mng_version_text();
4807 return !p_ver || p_ver[0] == 0;
4810 if cc_check -lmng -lz $_ld_lm ; then
4811 _mng=yes
4814 echores "$_mng"
4815 if test "$_mng" = yes ; then
4816 def_mng='#define CONFIG_MNG 1'
4817 extra_ldflags="$extra_ldflags -lmng -lz"
4818 else
4819 def_mng='#undef CONFIG_MNG'
4822 echocheck "JPEG support"
4823 if test "$_jpeg" = auto ; then
4824 _jpeg=no
4825 cat > $TMPC << EOF
4826 #include <stdio.h>
4827 #include <stdlib.h>
4828 #include <setjmp.h>
4829 #include <string.h>
4830 #include <jpeglib.h>
4831 int main(void) { return 0; }
4833 cc_check -ljpeg $_ld_lm && _jpeg=yes
4835 echores "$_jpeg"
4837 if test "$_jpeg" = yes ; then
4838 def_jpeg='#define CONFIG_JPEG 1'
4839 vomodules="jpeg $vomodules"
4840 extra_ldflags="$extra_ldflags -ljpeg"
4841 else
4842 def_jpeg='#undef CONFIG_JPEG'
4843 novomodules="jpeg $novomodules"
4848 echocheck "PNM support"
4849 if test "$_pnm" = yes; then
4850 def_pnm="#define CONFIG_PNM 1"
4851 vomodules="pnm $vomodules"
4852 else
4853 def_pnm="#undef CONFIG_PNM"
4854 novomodules="pnm $novomodules"
4856 echores "$_pnm"
4860 echocheck "GIF support"
4861 # This is to appease people who want to force gif support.
4862 # If it is forced to yes, then we still do checks to determine
4863 # which gif library to use.
4864 if test "$_gif" = yes ; then
4865 _force_gif=yes
4866 _gif=auto
4869 if test "$_gif" = auto ; then
4870 _gif=no
4871 cat > $TMPC << EOF
4872 #include <gif_lib.h>
4873 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4875 for _ld_gif in "-lungif" "-lgif" ; do
4876 cc_check $_ld_gif && _gif=yes && break
4877 done
4880 # If no library was found, and the user wants support forced,
4881 # then we force it on with libgif, as this is the safest
4882 # assumption IMHO. (libungif & libregif both create symbolic
4883 # links to libgif. We also assume that no x11 support is needed,
4884 # because if you are forcing this, then you _should_ know what
4885 # you are doing. [ Besides, package maintainers should never
4886 # have compiled x11 deps into libungif in the first place. ] )
4887 # </rant>
4888 # --Joey
4889 if test "$_force_gif" = yes && test "$_gif" = no ; then
4890 _gif=yes
4891 _ld_gif="-lgif"
4894 if test "$_gif" = yes ; then
4895 def_gif='#define CONFIG_GIF 1'
4896 codecmodules="gif $codecmodules"
4897 vomodules="gif89a $vomodules"
4898 res_comment="old version, some encoding functions disabled"
4899 def_gif_4='#undef CONFIG_GIF_4'
4900 extra_ldflags="$extra_ldflags $_ld_gif"
4902 cat > $TMPC << EOF
4903 #include <signal.h>
4904 #include <gif_lib.h>
4905 void catch(int sig) { exit(1); }
4906 int main(void) {
4907 signal(SIGSEGV, catch); // catch segfault
4908 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4909 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4910 return 0;
4913 if cc_check "$_ld_gif" ; then
4914 def_gif_4='#define CONFIG_GIF_4 1'
4915 res_comment=""
4917 else
4918 def_gif='#undef CONFIG_GIF'
4919 def_gif_4='#undef CONFIG_GIF_4'
4920 novomodules="gif89a $novomodules"
4921 nocodecmodules="gif $nocodecmodules"
4923 echores "$_gif"
4926 case "$_gif" in yes*)
4927 echocheck "broken giflib workaround"
4928 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4930 cat > $TMPC << EOF
4931 #include <gif_lib.h>
4932 int main(void) {
4933 GifFileType gif;
4934 printf("UserData is at address %p\n", gif.UserData);
4935 return 0;
4938 if cc_check "$_ld_gif" ; then
4939 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4940 echores "disabled"
4941 else
4942 echores "enabled"
4945 esac
4948 echocheck "VESA support"
4949 if test "$_vesa" = auto ; then
4950 cat > $TMPC << EOF
4951 #include <vbe.h>
4952 int main(void) { vbeVersion(); return 0; }
4954 _vesa=no
4955 cc_check -lvbe -llrmi && _vesa=yes
4957 if test "$_vesa" = yes ; then
4958 def_vesa='#define CONFIG_VESA 1'
4959 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4960 vomodules="vesa $vomodules"
4961 else
4962 def_vesa='#undef CONFIG_VESA'
4963 novomodules="vesa $novomodules"
4965 echores "$_vesa"
4967 #################
4968 # VIDEO + AUDIO #
4969 #################
4972 echocheck "SDL"
4973 _inc_tmp=""
4974 _ld_tmp=""
4975 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4976 if test -z "$_sdlconfig" ; then
4977 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4978 _sdlconfig="sdl-config"
4979 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4980 _sdlconfig="sdl11-config"
4981 else
4982 _sdlconfig=false
4985 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4986 cat > $TMPC << EOF
4987 #ifdef CONFIG_SDL_SDL_H
4988 #include <SDL/SDL.h>
4989 #else
4990 #include <SDL.h>
4991 #endif
4992 #ifndef __APPLE__
4993 // we allow SDL hacking our main() only on OSX
4994 #undef main
4995 #endif
4996 int main(int argc, char *argv[]) {
4997 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4998 return 0;
5001 _sdl=no
5002 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5003 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5004 _sdl=yes
5005 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5006 break
5008 done
5009 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5010 res_comment="using $_sdlconfig"
5011 if cygwin ; then
5012 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5013 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5014 elif mingw32 ; then
5015 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5016 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5017 else
5018 _inc_tmp="$($_sdlconfig --cflags)"
5019 _ld_tmp="$($_sdlconfig --libs)"
5021 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5022 _sdl=yes
5023 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
5024 # HACK for BeOS/Haiku SDL
5025 _ld_tmp="$_ld_tmp -lstdc++"
5026 _sdl=yes
5030 if test "$_sdl" = yes ; then
5031 def_sdl='#define CONFIG_SDL 1'
5032 extra_cflags="$extra_cflags $_inc_tmp"
5033 libs_mplayer="$libs_mplayer $_ld_tmp"
5034 vomodules="sdl $vomodules"
5035 aomodules="sdl $aomodules"
5036 else
5037 def_sdl='#undef CONFIG_SDL'
5038 novomodules="sdl $novomodules"
5039 noaomodules="sdl $noaomodules"
5041 echores "$_sdl"
5044 # make sure this stays below CoreVideo to avoid issues due to namespace
5045 # conflicts between -lGL and -framework OpenGL
5046 echocheck "OpenGL"
5047 #Note: this test is run even with --enable-gl since we autodetect linker flags
5048 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5049 cat > $TMPC << EOF
5050 #ifdef GL_WIN32
5051 #include <windows.h>
5052 #include <GL/gl.h>
5053 #elif defined(GL_SDL)
5054 #include <GL/gl.h>
5055 #ifdef CONFIG_SDL_SDL_H
5056 #include <SDL/SDL.h>
5057 #else
5058 #include <SDL.h>
5059 #endif
5060 #ifndef __APPLE__
5061 // we allow SDL hacking our main() only on OSX
5062 #undef main
5063 #endif
5064 #else
5065 #include <GL/gl.h>
5066 #include <X11/Xlib.h>
5067 #include <GL/glx.h>
5068 #endif
5069 int main(int argc, char *argv[]) {
5070 #ifdef GL_WIN32
5071 HDC dc;
5072 wglCreateContext(dc);
5073 #elif defined(GL_SDL)
5074 SDL_GL_SwapBuffers();
5075 #else
5076 glXCreateContext(NULL, NULL, NULL, True);
5077 #endif
5078 glFinish();
5079 return 0;
5082 _gl=no
5083 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5084 if cc_check $_ld_tmp $_ld_lm ; then
5085 _gl=yes
5086 _gl_x11=yes
5087 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5088 break
5090 done
5091 if cc_check -DGL_WIN32 -lopengl32 ; then
5092 _gl=yes
5093 _gl_win32=yes
5094 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5096 # last so it can reuse any linker etc. flags detected before
5097 if test "$_sdl" = yes ; then
5098 if cc_check -DGL_SDL ||
5099 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5100 _gl=yes
5101 _gl_sdl=yes
5102 elif cc_check -DGL_SDL -lGL ||
5103 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5104 _gl=yes
5105 _gl_sdl=yes
5106 libs_mplayer="$libs_mplayer -lGL"
5109 else
5110 _gl=no
5112 if test "$_gl" = yes ; then
5113 def_gl='#define CONFIG_GL 1'
5114 res_comment="backends:"
5115 if test "$_gl_win32" = yes ; then
5116 def_gl_win32='#define CONFIG_GL_WIN32 1'
5117 res_comment="$res_comment win32"
5119 if test "$_gl_x11" = yes ; then
5120 def_gl_x11='#define CONFIG_GL_X11 1'
5121 res_comment="$res_comment x11"
5123 if test "$_gl_sdl" = yes ; then
5124 def_gl_sdl='#define CONFIG_GL_SDL 1'
5125 res_comment="$res_comment sdl"
5127 vomodules="opengl $vomodules"
5128 else
5129 def_gl='#undef CONFIG_GL'
5130 def_gl_win32='#undef CONFIG_GL_WIN32'
5131 def_gl_x11='#undef CONFIG_GL_X11'
5132 def_gl_sdl='#undef CONFIG_GL_SDL'
5133 novomodules="opengl $novomodules"
5135 echores "$_gl"
5138 echocheck "MatrixView"
5139 if test "$_gl" = no ; then
5140 matrixview=no
5142 if test "$matrixview" = yes ; then
5143 vomodules="matrixview $vomodules"
5144 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5145 else
5146 novomodules="matrixview $novomodules"
5147 def_matrixview='#undef CONFIG_MATRIXVIEW'
5149 echores "$matrixview"
5152 if os2 ; then
5153 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5154 if test "$_kva" = auto; then
5155 cat > $TMPC << EOF
5156 #include <os2.h>
5157 #include <kva.h>
5158 int main(void) { return 0; }
5160 _kva=no;
5161 cc_check -lkva && _kva=yes
5163 if test "$_kva" = yes ; then
5164 def_kva='#define CONFIG_KVA 1'
5165 libs_mplayer="$libs_mplayer -lkva"
5166 vomodules="kva $vomodules"
5167 else
5168 def_kva='#undef CONFIG_KVA'
5169 novomodules="kva $novomodules"
5171 echores "$_kva"
5172 fi #if os2
5175 if win32; then
5177 echocheck "Windows waveout"
5178 if test "$_win32waveout" = auto ; then
5179 cat > $TMPC << EOF
5180 #include <windows.h>
5181 #include <mmsystem.h>
5182 int main(void) { return 0; }
5184 _win32waveout=no
5185 cc_check -lwinmm && _win32waveout=yes
5187 if test "$_win32waveout" = yes ; then
5188 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5189 libs_mplayer="$libs_mplayer -lwinmm"
5190 aomodules="win32 $aomodules"
5191 else
5192 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5193 noaomodules="win32 $noaomodules"
5195 echores "$_win32waveout"
5197 echocheck "Direct3D"
5198 if test "$_direct3d" = auto ; then
5199 cat > $TMPC << EOF
5200 #include <windows.h>
5201 #include <d3d9.h>
5202 int main(void) { return 0; }
5204 _direct3d=no
5205 cc_check && _direct3d=yes
5207 if test "$_direct3d" = yes ; then
5208 def_direct3d='#define CONFIG_DIRECT3D 1'
5209 vomodules="direct3d $vomodules"
5210 else
5211 def_direct3d='#undef CONFIG_DIRECT3D'
5212 novomodules="direct3d $novomodules"
5214 echores "$_direct3d"
5216 echocheck "Directx"
5217 if test "$_directx" = auto ; then
5218 cat > $TMPC << EOF
5219 #include <windows.h>
5220 #include <ddraw.h>
5221 #include <dsound.h>
5222 int main(void) { return 0; }
5224 _directx=no
5225 cc_check -lgdi32 && _directx=yes
5227 if test "$_directx" = yes ; then
5228 def_directx='#define CONFIG_DIRECTX 1'
5229 libs_mplayer="$libs_mplayer -lgdi32"
5230 vomodules="directx $vomodules"
5231 aomodules="dsound $aomodules"
5232 else
5233 def_directx='#undef CONFIG_DIRECTX'
5234 novomodules="directx $novomodules"
5235 noaomodules="dsound $noaomodules"
5237 echores "$_directx"
5239 fi #if win32; then
5242 echocheck "DXR2"
5243 if test "$_dxr2" = auto; then
5244 _dxr2=no
5245 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5246 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5247 extra_cflags="$extra_cflags $_inc_tmp" && break
5248 done
5250 if test "$_dxr2" = yes; then
5251 def_dxr2='#define CONFIG_DXR2 1'
5252 aomodules="dxr2 $aomodules"
5253 vomodules="dxr2 $vomodules"
5254 else
5255 def_dxr2='#undef CONFIG_DXR2'
5256 noaomodules="dxr2 $noaomodules"
5257 novomodules="dxr2 $novomodules"
5259 echores "$_dxr2"
5261 echocheck "DXR3/H+"
5262 if test "$_dxr3" = auto ; then
5263 _dxr3=no
5264 header_check linux/em8300.h && _dxr3=yes
5266 if test "$_dxr3" = yes ; then
5267 def_dxr3='#define CONFIG_DXR3 1'
5268 vomodules="dxr3 $vomodules"
5269 else
5270 def_dxr3='#undef CONFIG_DXR3'
5271 novomodules="dxr3 $novomodules"
5273 echores "$_dxr3"
5276 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5277 if test "$_ivtv" = auto ; then
5278 cat > $TMPC << EOF
5279 #include <stdlib.h>
5280 #include <inttypes.h>
5281 #include <linux/types.h>
5282 #include <linux/videodev2.h>
5283 #include <linux/ivtv.h>
5284 #include <sys/ioctl.h>
5285 int main(void) {
5286 struct ivtv_cfg_stop_decode sd;
5287 struct ivtv_cfg_start_decode sd1;
5288 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5289 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5290 return 0; }
5292 _ivtv=no
5293 cc_check && _ivtv=yes
5295 if test "$_ivtv" = yes ; then
5296 def_ivtv='#define CONFIG_IVTV 1'
5297 vomodules="ivtv $vomodules"
5298 aomodules="ivtv $aomodules"
5299 else
5300 def_ivtv='#undef CONFIG_IVTV'
5301 novomodules="ivtv $novomodules"
5302 noaomodules="ivtv $noaomodules"
5304 echores "$_ivtv"
5307 echocheck "V4L2 MPEG Decoder"
5308 if test "$_v4l2" = auto ; then
5309 cat > $TMPC << EOF
5310 #include <stdlib.h>
5311 #include <inttypes.h>
5312 #include <linux/types.h>
5313 #include <linux/videodev2.h>
5314 #include <linux/version.h>
5315 int main(void) {
5316 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5317 #error kernel headers too old, need 2.6.22
5318 #endif
5319 struct v4l2_ext_controls ctrls;
5320 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5321 return 0;
5324 _v4l2=no
5325 cc_check && _v4l2=yes
5327 if test "$_v4l2" = yes ; then
5328 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5329 vomodules="v4l2 $vomodules"
5330 aomodules="v4l2 $aomodules"
5331 else
5332 def_v4l2='#undef CONFIG_V4L2_DECODER'
5333 novomodules="v4l2 $novomodules"
5334 noaomodules="v4l2 $noaomodules"
5336 echores "$_v4l2"
5340 #########
5341 # AUDIO #
5342 #########
5345 echocheck "OSS Audio"
5346 if test "$_ossaudio" = auto ; then
5347 cat > $TMPC << EOF
5348 #include <sys/ioctl.h>
5349 #include <$_soundcard_header>
5350 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5352 _ossaudio=no
5353 cc_check && _ossaudio=yes
5355 if test "$_ossaudio" = yes ; then
5356 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5357 aomodules="oss $aomodules"
5358 cat > $TMPC << EOF
5359 #include <sys/ioctl.h>
5360 #include <$_soundcard_header>
5361 #ifdef OPEN_SOUND_SYSTEM
5362 int main(void) { return 0; }
5363 #else
5364 #error Not the real thing
5365 #endif
5367 _real_ossaudio=no
5368 cc_check && _real_ossaudio=yes
5369 if test "$_real_ossaudio" = yes; then
5370 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5371 # Check for OSS4 headers (override default headers)
5372 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5373 if test -f /etc/oss.conf; then
5374 . /etc/oss.conf
5375 _ossinc="$OSSLIBDIR/include"
5376 if test -f "$_ossinc/sys/soundcard.h"; then
5377 extra_cflags="-I$_ossinc $extra_cflags"
5380 elif netbsd || openbsd ; then
5381 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5382 extra_ldflags="$extra_ldflags -lossaudio"
5383 else
5384 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5386 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5387 else
5388 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5389 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5390 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5391 noaomodules="oss $noaomodules"
5393 echores "$_ossaudio"
5396 echocheck "aRts"
5397 if test "$_arts" = auto ; then
5398 _arts=no
5399 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5400 function_check artsc.h "arts_init()" $(artsc-config --libs) $(artsc-config --cflags) &&
5401 _arts=yes
5405 if test "$_arts" = yes ; then
5406 def_arts='#define CONFIG_ARTS 1'
5407 aomodules="arts $aomodules"
5408 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5409 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5410 else
5411 noaomodules="arts $noaomodules"
5413 echores "$_arts"
5416 echocheck "EsounD"
5417 if test "$_esd" = auto ; then
5418 _esd=no
5419 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5421 cat > $TMPC << EOF
5422 #include <esd.h>
5423 int main(void) { int fd = esd_open_sound("test"); return fd; }
5425 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5429 echores "$_esd"
5431 if test "$_esd" = yes ; then
5432 def_esd='#define CONFIG_ESD 1'
5433 aomodules="esd $aomodules"
5434 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5435 extra_cflags="$extra_cflags $(esd-config --cflags)"
5437 echocheck "esd_get_latency()"
5438 cat > $TMPC << EOF
5439 #include <esd.h>
5440 int main(void) { return esd_get_latency(0); }
5442 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5443 echores "$_esd_latency"
5444 else
5445 def_esd='#undef CONFIG_ESD'
5446 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5447 noaomodules="esd $noaomodules"
5451 echocheck "NAS"
5452 if test "$_nas" = auto ; then
5453 _nas=no
5454 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5456 if test "$_nas" = yes ; then
5457 def_nas='#define CONFIG_NAS 1'
5458 libs_mplayer="$libs_mplayer -laudio -lXt"
5459 aomodules="nas $aomodules"
5460 else
5461 noaomodules="nas $noaomodules"
5462 def_nas='#undef CONFIG_NAS'
5464 echores "$_nas"
5467 echocheck "pulse"
5468 if test "$_pulse" = auto ; then
5469 _pulse=no
5470 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5471 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5472 _pulse=yes
5475 echores "$_pulse"
5477 if test "$_pulse" = yes ; then
5478 def_pulse='#define CONFIG_PULSE 1'
5479 aomodules="pulse $aomodules"
5480 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5481 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5482 else
5483 def_pulse='#undef CONFIG_PULSE'
5484 noaomodules="pulse $noaomodules"
5488 echocheck "JACK"
5489 if test "$_jack" = auto ; then
5490 _jack=yes
5492 cat > $TMPC << EOF
5493 #include <jack/jack.h>
5494 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5496 if cc_check -ljack ; then
5497 libs_mplayer="$libs_mplayer -ljack"
5498 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5499 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5500 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5501 else
5502 _jack=no
5506 if test "$_jack" = yes ; then
5507 def_jack='#define CONFIG_JACK 1'
5508 aomodules="jack $aomodules"
5509 else
5510 noaomodules="jack $noaomodules"
5512 echores "$_jack"
5514 echocheck "OpenAL"
5515 if test "$_openal" = auto ; then
5516 _openal=no
5517 cat > $TMPC << EOF
5518 #ifdef OPENAL_AL_H
5519 #include <OpenAL/al.h>
5520 #else
5521 #include <AL/al.h>
5522 #endif
5523 int main(void) {
5524 alSourceQueueBuffers(0, 0, 0);
5525 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5526 return 0;
5529 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5530 cc_check $I && _openal=yes && break
5531 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5532 done
5533 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5535 if test "$_openal" = yes ; then
5536 def_openal='#define CONFIG_OPENAL 1'
5537 aomodules="openal $aomodules"
5538 else
5539 noaomodules="openal $noaomodules"
5541 echores "$_openal"
5543 echocheck "ALSA audio"
5544 if test "$_alloca" != yes ; then
5545 _alsa=no
5546 res_comment="alloca missing"
5548 if test "$_alsa" != no ; then
5549 _alsa=no
5550 cat > $TMPC << EOF
5551 #include <sys/asoundlib.h>
5552 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5553 #error "alsa version != 0.5.x"
5554 #endif
5555 int main(void) { return 0; }
5557 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5559 cat > $TMPC << EOF
5560 #include <sys/asoundlib.h>
5561 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5562 #error "alsa version != 0.9.x"
5563 #endif
5564 int main(void) { return 0; }
5566 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5567 cat > $TMPC << EOF
5568 #include <alsa/asoundlib.h>
5569 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5570 #error "alsa version != 0.9.x"
5571 #endif
5572 int main(void) { return 0; }
5574 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5576 cat > $TMPC << EOF
5577 #include <sys/asoundlib.h>
5578 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5579 #error "alsa version != 1.0.x"
5580 #endif
5581 int main(void) { return 0; }
5583 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5584 cat > $TMPC << EOF
5585 #include <alsa/asoundlib.h>
5586 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5587 #error "alsa version != 1.0.x"
5588 #endif
5589 int main(void) { return 0; }
5591 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5593 def_alsa='#undef CONFIG_ALSA'
5594 def_alsa5='#undef CONFIG_ALSA5'
5595 def_alsa9='#undef CONFIG_ALSA9'
5596 def_alsa1x='#undef CONFIG_ALSA1X'
5597 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5598 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5599 if test "$_alsaver" ; then
5600 _alsa=yes
5601 if test "$_alsaver" = '0.5.x' ; then
5602 _alsa5=yes
5603 aomodules="alsa5 $aomodules"
5604 def_alsa5='#define CONFIG_ALSA5 1'
5605 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5606 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5607 elif test "$_alsaver" = '0.9.x-sys' ; then
5608 _alsa9=yes
5609 aomodules="alsa $aomodules"
5610 def_alsa='#define CONFIG_ALSA 1'
5611 def_alsa9='#define CONFIG_ALSA9 1'
5612 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5613 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5614 elif test "$_alsaver" = '0.9.x-alsa' ; then
5615 _alsa9=yes
5616 aomodules="alsa $aomodules"
5617 def_alsa='#define CONFIG_ALSA 1'
5618 def_alsa9='#define CONFIG_ALSA9 1'
5619 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5620 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5621 elif test "$_alsaver" = '1.0.x-sys' ; then
5622 _alsa1x=yes
5623 aomodules="alsa $aomodules"
5624 def_alsa='#define CONFIG_ALSA 1'
5625 def_alsa1x="#define CONFIG_ALSA1X 1"
5626 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5627 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5628 elif test "$_alsaver" = '1.0.x-alsa' ; then
5629 _alsa1x=yes
5630 aomodules="alsa $aomodules"
5631 def_alsa='#define CONFIG_ALSA 1'
5632 def_alsa1x="#define CONFIG_ALSA1X 1"
5633 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5634 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5635 else
5636 _alsa=no
5637 res_comment="unknown version"
5639 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5640 else
5641 noaomodules="alsa $noaomodules"
5643 echores "$_alsa"
5646 echocheck "Sun audio"
5647 if test "$_sunaudio" = auto ; then
5648 cat > $TMPC << EOF
5649 #include <sys/types.h>
5650 #include <sys/audioio.h>
5651 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5653 _sunaudio=no
5654 cc_check && _sunaudio=yes
5656 if test "$_sunaudio" = yes ; then
5657 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5658 aomodules="sun $aomodules"
5659 else
5660 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5661 noaomodules="sun $noaomodules"
5663 echores "$_sunaudio"
5666 def_mlib='#define CONFIG_MLIB 0'
5667 if sunos; then
5668 echocheck "Sun mediaLib"
5669 if test "$_mlib" = auto ; then
5670 _mlib=no
5671 cat > $TMPC << EOF
5672 #include <mlib.h>
5673 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5675 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5677 echores "$_mlib"
5678 fi #if sunos
5681 if darwin; then
5682 echocheck "CoreAudio"
5683 if test "$_coreaudio" = auto ; then
5684 cat > $TMPC <<EOF
5685 #include <CoreAudio/CoreAudio.h>
5686 #include <AudioToolbox/AudioToolbox.h>
5687 #include <AudioUnit/AudioUnit.h>
5688 int main(void) { return 0; }
5690 _coreaudio=no
5691 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5693 if test "$_coreaudio" = yes ; then
5694 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5695 def_coreaudio='#define CONFIG_COREAUDIO 1'
5696 aomodules="coreaudio $aomodules"
5697 else
5698 def_coreaudio='#undef CONFIG_COREAUDIO'
5699 noaomodules="coreaudio $noaomodules"
5701 echores $_coreaudio
5702 fi #if darwin
5705 if irix; then
5706 echocheck "SGI audio"
5707 if test "$_sgiaudio" = auto ; then
5708 _sgiaudio=no
5709 header_check dmedia/audio.h && _sgiaudio=yes
5711 if test "$_sgiaudio" = "yes" ; then
5712 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5713 libs_mplayer="$libs_mplayer -laudio"
5714 aomodules="sgi $aomodules"
5715 else
5716 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5717 noaomodules="sgi $noaomodules"
5719 echores "$_sgiaudio"
5720 fi #if irix
5723 if os2 ; then
5724 echocheck "KAI (UNIAUD/DART)"
5725 if test "$_kai" = auto; then
5726 cat > $TMPC << EOF
5727 #include <os2.h>
5728 #include <kai.h>
5729 int main(void) { return 0; }
5731 _kai=no;
5732 cc_check -lkai && _kai=yes
5734 if test "$_kai" = yes ; then
5735 def_kai='#define CONFIG_KAI 1'
5736 libs_mplayer="$libs_mplayer -lkai"
5737 aomodules="kai $aomodules"
5738 else
5739 def_kai='#undef CONFIG_KAI'
5740 noaomodules="kai $noaomodules"
5742 echores "$_kai"
5744 echocheck "DART"
5745 if test "$_dart" = auto; then
5746 cat > $TMPC << EOF
5747 #include <os2.h>
5748 #include <dart.h>
5749 int main(void) { return 0; }
5751 _dart=no;
5752 cc_check -ldart && _dart=yes
5754 if test "$_dart" = yes ; then
5755 def_dart='#define CONFIG_DART 1'
5756 libs_mplayer="$libs_mplayer -ldart"
5757 aomodules="dart $aomodules"
5758 else
5759 def_dart='#undef CONFIG_DART'
5760 noaomodules="dart $noaomodules"
5762 echores "$_dart"
5763 fi #if os2
5766 # set default CD/DVD devices
5767 if win32 || os2 ; then
5768 default_cdrom_device="D:"
5769 elif darwin ; then
5770 default_cdrom_device="/dev/disk1"
5771 elif dragonfly ; then
5772 default_cdrom_device="/dev/cd0"
5773 elif freebsd ; then
5774 default_cdrom_device="/dev/acd0"
5775 elif openbsd ; then
5776 default_cdrom_device="/dev/rcd0c"
5777 elif sunos ; then
5778 default_cdrom_device="/vol/dev/aliases/cdrom0"
5779 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5780 # file system and the volfs service.
5781 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5782 elif amigaos ; then
5783 default_cdrom_device="a1ide.device:2"
5784 else
5785 default_cdrom_device="/dev/cdrom"
5788 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5789 default_dvd_device=$default_cdrom_device
5790 elif darwin ; then
5791 default_dvd_device="/dev/rdiskN"
5792 else
5793 default_dvd_device="/dev/dvd"
5797 echocheck "VCD support"
5798 if test "$_vcd" = auto; then
5799 _vcd=no
5800 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5801 _vcd=yes
5802 elif mingw32; then
5803 header_check ddk/ntddcdrm.h && _vcd=yes
5806 if test "$_vcd" = yes; then
5807 inputmodules="vcd $inputmodules"
5808 def_vcd='#define CONFIG_VCD 1'
5809 else
5810 def_vcd='#undef CONFIG_VCD'
5811 noinputmodules="vcd $noinputmodules"
5812 res_comment="not supported on this OS"
5814 echores "$_vcd"
5818 echocheck "Blu-ray support"
5819 if test "$_bluray" = auto ; then
5820 _bluray=no
5822 cat > $TMPC << EOF
5823 #include <stdlib.h>
5824 #include <libbluray/bluray.h>
5825 int main(void) {
5826 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5827 return 0;
5830 compile_check $TMPC -lbluray && _bluray=yes
5832 if test "$_bluray" = yes ; then
5833 def_bluray='#define CONFIG_LIBBLURAY 1'
5834 extra_ldflags="$extra_ldflags -lbluray"
5835 inputmodules="bluray $inputmodules"
5836 else
5837 def_bluray='#undef CONFIG_LIBBLURAY'
5838 noinputmodules="bluray $noinputmodules"
5840 echores "$_bluray"
5842 echocheck "dvdread"
5843 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5844 _dvdread_internal=no
5846 if test "$_dvdread_internal" = auto ; then
5847 _dvdread_internal=no
5848 _dvdread=no
5849 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5850 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5851 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5852 || darwin || win32 || os2; then
5853 _dvdread_internal=yes
5854 _dvdread=yes
5855 extra_cflags="-Ilibdvdread4 $extra_cflags"
5857 elif test "$_dvdread" = auto ; then
5858 _dvdread=no
5859 if test "$_dl" = yes; then
5860 cat > $TMPC << EOF
5861 #include <inttypes.h>
5862 #include <dvdread/dvd_reader.h>
5863 #include <dvdread/ifo_types.h>
5864 #include <dvdread/ifo_read.h>
5865 #include <dvdread/nav_read.h>
5866 int main(void) { return 0; }
5868 _dvdreadcflags=$($_dvdreadconfig --cflags)
5869 _dvdreadlibs=$($_dvdreadconfig --libs)
5870 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5871 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5872 _dvdread=yes
5873 extra_cflags="$extra_cflags $_dvdreadcflags"
5874 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5875 res_comment="external"
5880 if test "$_dvdread_internal" = yes; then
5881 def_dvdread='#define CONFIG_DVDREAD 1'
5882 inputmodules="dvdread(internal) $inputmodules"
5883 _largefiles=yes
5884 res_comment="internal"
5885 elif test "$_dvdread" = yes; then
5886 def_dvdread='#define CONFIG_DVDREAD 1'
5887 _largefiles=yes
5888 extra_ldflags="$extra_ldflags -ldvdread"
5889 inputmodules="dvdread(external) $inputmodules"
5890 res_comment="external"
5891 else
5892 def_dvdread='#undef CONFIG_DVDREAD'
5893 noinputmodules="dvdread $noinputmodules"
5895 echores "$_dvdread"
5898 echocheck "internal libdvdcss"
5899 if test "$_libdvdcss_internal" = auto ; then
5900 _libdvdcss_internal=no
5901 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5902 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5904 if test "$_libdvdcss_internal" = yes ; then
5905 if linux || netbsd || openbsd || bsdos ; then
5906 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5907 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5908 elif freebsd || dragonfly ; then
5909 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5910 elif darwin ; then
5911 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5912 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5913 elif cygwin ; then
5914 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5915 elif beos ; then
5916 cflags_libdvdcss="-DSYS_BEOS"
5917 elif os2 ; then
5918 cflags_libdvdcss="-DSYS_OS2"
5920 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5921 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5922 inputmodules="libdvdcss(internal) $inputmodules"
5923 _largefiles=yes
5924 else
5925 noinputmodules="libdvdcss(internal) $noinputmodules"
5927 echores "$_libdvdcss_internal"
5930 echocheck "cdparanoia"
5931 if test "$_cdparanoia" = auto ; then
5932 cat > $TMPC <<EOF
5933 #include <cdda_interface.h>
5934 #include <cdda_paranoia.h>
5935 // This need a better test. How ?
5936 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5938 _cdparanoia=no
5939 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5940 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5941 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5942 done
5944 if test "$_cdparanoia" = yes ; then
5945 _cdda='yes'
5946 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5947 openbsd && extra_ldflags="$extra_ldflags -lutil"
5949 echores "$_cdparanoia"
5952 echocheck "libcdio"
5953 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5954 cat > $TMPC << EOF
5955 #include <stdio.h>
5956 #include <cdio/version.h>
5957 #include <cdio/cdda.h>
5958 #include <cdio/paranoia.h>
5959 int main(void) {
5960 void *test = cdda_verbose_set;
5961 printf("%s\n", CDIO_VERSION);
5962 return test == (void *)1;
5965 _libcdio=no
5966 for _ld_tmp in "" "-lwinmm" ; do
5967 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5968 cc_check $_ld_tmp $_ld_lm \
5969 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5970 done
5971 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5972 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5973 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5974 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5975 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5978 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5979 _cdda='yes'
5980 def_libcdio='#define CONFIG_LIBCDIO 1'
5981 def_havelibcdio='yes'
5982 else
5983 if test "$_cdparanoia" = yes ; then
5984 res_comment="using cdparanoia"
5986 def_libcdio='#undef CONFIG_LIBCDIO'
5987 def_havelibcdio='no'
5989 echores "$_libcdio"
5991 if test "$_cdda" = yes ; then
5992 test $_cddb = auto && test $networking = yes && _cddb=yes
5993 def_cdparanoia='#define CONFIG_CDDA 1'
5994 inputmodules="cdda $inputmodules"
5995 else
5996 def_cdparanoia='#undef CONFIG_CDDA'
5997 noinputmodules="cdda $noinputmodules"
6000 if test "$_cddb" = yes ; then
6001 def_cddb='#define CONFIG_CDDB 1'
6002 inputmodules="cddb $inputmodules"
6003 else
6004 _cddb=no
6005 def_cddb='#undef CONFIG_CDDB'
6006 noinputmodules="cddb $noinputmodules"
6009 echocheck "bitmap font support"
6010 if test "$_bitmap_font" = yes ; then
6011 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6012 else
6013 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6015 echores "$_bitmap_font"
6018 echocheck "freetype >= 2.0.9"
6020 # freetype depends on iconv
6021 if test "$_iconv" = no ; then
6022 _freetype=no
6023 res_comment="iconv support needed"
6026 if test "$_freetype" = auto ; then
6027 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6028 cat > $TMPC << EOF
6029 #include <stdio.h>
6030 #include <ft2build.h>
6031 #include FT_FREETYPE_H
6032 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6033 #error "Need FreeType 2.0.9 or newer"
6034 #endif
6035 int main(void) {
6036 FT_Library library;
6037 FT_Int major=-1,minor=-1,patch=-1;
6038 int err=FT_Init_FreeType(&library);
6039 return 0;
6042 _freetype=no
6043 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6044 else
6045 _freetype=no
6048 if test "$_freetype" = yes ; then
6049 def_freetype='#define CONFIG_FREETYPE 1'
6050 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6051 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6052 else
6053 def_freetype='#undef CONFIG_FREETYPE'
6055 echores "$_freetype"
6057 if test "$_freetype" = no ; then
6058 _fontconfig=no
6059 res_comment="FreeType support needed"
6061 echocheck "fontconfig"
6062 if test "$_fontconfig" = auto ; then
6063 cat > $TMPC << EOF
6064 #include <stdio.h>
6065 #include <stdlib.h>
6066 #include <fontconfig/fontconfig.h>
6067 #if FC_VERSION < 20402
6068 #error At least version 2.4.2 of fontconfig required
6069 #endif
6070 int main(void) {
6071 int err = FcInit();
6072 if (err == FcFalse) {
6073 printf("Couldn't initialize fontconfig lib\n");
6074 exit(err);
6076 return 0;
6079 _fontconfig=no
6080 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6081 _ld_tmp="-lfontconfig $_ld_tmp"
6082 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6083 done
6084 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6085 _inc_tmp=$($_pkg_config --cflags fontconfig)
6086 _ld_tmp=$($_pkg_config --libs fontconfig)
6087 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6088 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6091 if test "$_fontconfig" = yes ; then
6092 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6093 else
6094 def_fontconfig='#undef CONFIG_FONTCONFIG'
6096 echores "$_fontconfig"
6099 echocheck "SSA/ASS support"
6100 if test "$_ass" = auto -o "$_ass" = yes ; then
6101 if $_pkg_config libass; then
6102 _ass=yes
6103 def_ass='#define CONFIG_ASS 1'
6104 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6105 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6106 else
6107 _ass=no
6108 def_ass='#undef CONFIG_ASS'
6110 else
6111 def_ass='#undef CONFIG_ASS'
6113 echores "$_ass"
6116 echocheck "fribidi with charsets"
6117 _inc_tmp=""
6118 _ld_tmp=""
6119 if test "$_fribidi" = auto ; then
6120 cat > $TMPC << EOF
6121 #include <stdlib.h>
6122 /* workaround for fribidi 0.10.4 and below */
6123 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6124 #include <fribidi/fribidi.h>
6125 int main(void) {
6126 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6127 exit(1);
6128 return 0;
6131 _fribidi=no
6132 _inc_tmp=""
6133 _ld_tmp="-lfribidi"
6134 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6135 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6136 test "$_fribidi" = no ; then
6137 _inc_tmp="$($_pkg_config --cflags)"
6138 _ld_tmp="$($_pkg_config --libs)"
6139 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6142 if test "$_fribidi" = yes ; then
6143 def_fribidi='#define CONFIG_FRIBIDI 1'
6144 extra_cflags="$extra_cflags $_inc_tmp"
6145 extra_ldflags="$extra_ldflags $_ld_tmp"
6146 else
6147 def_fribidi='#undef CONFIG_FRIBIDI'
6149 echores "$_fribidi"
6152 echocheck "ENCA"
6153 if test "$_enca" = auto ; then
6154 cat > $TMPC << EOF
6155 #include <sys/types.h>
6156 #include <enca.h>
6157 int main(void) {
6158 const char **langs;
6159 size_t langcnt;
6160 langs = enca_get_languages(&langcnt);
6161 return 0;
6164 _enca=no
6165 cc_check -lenca $_ld_lm && _enca=yes
6167 if test "$_enca" = yes ; then
6168 def_enca='#define CONFIG_ENCA 1'
6169 extra_ldflags="$extra_ldflags -lenca"
6170 else
6171 def_enca='#undef CONFIG_ENCA'
6173 echores "$_enca"
6176 echocheck "zlib"
6177 cat > $TMPC << EOF
6178 #include <zlib.h>
6179 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6181 _zlib=no
6182 cc_check -lz && _zlib=yes
6183 if test "$_zlib" = yes ; then
6184 def_zlib='#define CONFIG_ZLIB 1'
6185 extra_ldflags="$extra_ldflags -lz"
6186 else
6187 def_zlib='#define CONFIG_ZLIB 0'
6189 echores "$_zlib"
6192 echocheck "bzlib"
6193 bzlib=no
6194 def_bzlib='#define CONFIG_BZLIB 0'
6195 cat > $TMPC << EOF
6196 #include <bzlib.h>
6197 int main(void) { BZ2_bzlibVersion(); return 0; }
6199 cc_check -lbz2 && bzlib=yes
6200 if test "$bzlib" = yes ; then
6201 def_bzlib='#define CONFIG_BZLIB 1'
6202 extra_ldflags="$extra_ldflags -lbz2"
6204 echores "$bzlib"
6207 echocheck "RTC"
6208 if test "$_rtc" = auto ; then
6209 cat > $TMPC << EOF
6210 #include <sys/ioctl.h>
6211 #ifdef __linux__
6212 #include <linux/rtc.h>
6213 #else
6214 #include <rtc.h>
6215 #define RTC_PIE_ON RTCIO_PIE_ON
6216 #endif
6217 int main(void) { return RTC_PIE_ON; }
6219 _rtc=no
6220 cc_check && _rtc=yes
6221 ppc && _rtc=no
6223 if test "$_rtc" = yes ; then
6224 def_rtc='#define HAVE_RTC 1'
6225 else
6226 def_rtc='#undef HAVE_RTC'
6228 echores "$_rtc"
6231 echocheck "liblzo2 support"
6232 if test "$_liblzo" = auto ; then
6233 _liblzo=no
6234 cat > $TMPC << EOF
6235 #include <lzo/lzo1x.h>
6236 int main(void) { lzo_init(); return 0; }
6238 cc_check -llzo2 && _liblzo=yes
6240 if test "$_liblzo" = yes ; then
6241 def_liblzo='#define CONFIG_LIBLZO 1'
6242 extra_ldflags="$extra_ldflags -llzo2"
6243 codecmodules="liblzo $codecmodules"
6244 else
6245 def_liblzo='#undef CONFIG_LIBLZO'
6246 nocodecmodules="liblzo $nocodecmodules"
6248 echores "$_liblzo"
6251 echocheck "mad support"
6252 if test "$_mad" = auto ; then
6253 _mad=no
6254 header_check mad.h -lmad && _mad=yes
6256 if test "$_mad" = yes ; then
6257 def_mad='#define CONFIG_LIBMAD 1'
6258 extra_ldflags="$extra_ldflags -lmad"
6259 codecmodules="libmad $codecmodules"
6260 else
6261 def_mad='#undef CONFIG_LIBMAD'
6262 nocodecmodules="libmad $nocodecmodules"
6264 echores "$_mad"
6266 echocheck "Twolame"
6267 if test "$_twolame" = auto ; then
6268 cat > $TMPC <<EOF
6269 #include <twolame.h>
6270 int main(void) { twolame_init(); return 0; }
6272 _twolame=no
6273 cc_check -ltwolame $_ld_lm && _twolame=yes
6275 if test "$_twolame" = yes ; then
6276 def_twolame='#define CONFIG_TWOLAME 1'
6277 libs_mencoder="$libs_mencoder -ltwolame"
6278 codecmodules="twolame $codecmodules"
6279 else
6280 def_twolame='#undef CONFIG_TWOLAME'
6281 nocodecmodules="twolame $nocodecmodules"
6283 echores "$_twolame"
6285 echocheck "Toolame"
6286 if test "$_toolame" = auto ; then
6287 _toolame=no
6288 if test "$_twolame" = yes ; then
6289 res_comment="disabled by twolame"
6290 else
6291 cat > $TMPC <<EOF
6292 #include <toolame.h>
6293 int main(void) { toolame_init(); return 0; }
6295 cc_check -ltoolame $_ld_lm && _toolame=yes
6298 if test "$_toolame" = yes ; then
6299 def_toolame='#define CONFIG_TOOLAME 1'
6300 libs_mencoder="$libs_mencoder -ltoolame"
6301 codecmodules="toolame $codecmodules"
6302 else
6303 def_toolame='#undef CONFIG_TOOLAME'
6304 nocodecmodules="toolame $nocodecmodules"
6306 if test "$_toolamedir" ; then
6307 res_comment="using $_toolamedir"
6309 echores "$_toolame"
6311 echocheck "OggVorbis support"
6312 if test "$_tremor_internal" = yes; then
6313 _libvorbis=no
6314 elif test "$_tremor" = auto; then
6315 _tremor=no
6316 cat > $TMPC << EOF
6317 #include <tremor/ivorbiscodec.h>
6318 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6320 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6322 if test "$_libvorbis" = auto; then
6323 _libvorbis=no
6324 cat > $TMPC << EOF
6325 #include <vorbis/codec.h>
6326 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6328 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6330 if test "$_tremor_internal" = yes ; then
6331 _vorbis=yes
6332 def_vorbis='#define CONFIG_OGGVORBIS 1'
6333 def_tremor='#define CONFIG_TREMOR 1'
6334 codecmodules="tremor(internal) $codecmodules"
6335 res_comment="internal Tremor"
6336 if test "$_tremor_low" = yes ; then
6337 cflags_tremor_low="-D_LOW_ACCURACY_"
6338 res_comment="internal low accuracy Tremor"
6340 elif test "$_tremor" = yes ; then
6341 _vorbis=yes
6342 def_vorbis='#define CONFIG_OGGVORBIS 1'
6343 def_tremor='#define CONFIG_TREMOR 1'
6344 codecmodules="tremor(external) $codecmodules"
6345 res_comment="external Tremor"
6346 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6347 elif test "$_libvorbis" = yes ; then
6348 _vorbis=yes
6349 def_vorbis='#define CONFIG_OGGVORBIS 1'
6350 codecmodules="libvorbis $codecmodules"
6351 res_comment="libvorbis"
6352 extra_ldflags="$extra_ldflags -lvorbis -logg"
6353 else
6354 _vorbis=no
6355 nocodecmodules="libvorbis $nocodecmodules"
6357 echores "$_vorbis"
6359 echocheck "libspeex (version >= 1.1 required)"
6360 if test "$_speex" = auto ; then
6361 _speex=no
6362 cat > $TMPC << EOF
6363 #include <speex/speex.h>
6364 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6366 cc_check -lspeex $_ld_lm && _speex=yes
6368 if test "$_speex" = yes ; then
6369 def_speex='#define CONFIG_SPEEX 1'
6370 extra_ldflags="$extra_ldflags -lspeex"
6371 codecmodules="speex $codecmodules"
6372 else
6373 def_speex='#undef CONFIG_SPEEX'
6374 nocodecmodules="speex $nocodecmodules"
6376 echores "$_speex"
6378 echocheck "OggTheora support"
6379 if test "$_theora" = auto ; then
6380 _theora=no
6381 cat > $TMPC << EOF
6382 #include <theora/theora.h>
6383 #include <string.h>
6384 int main(void) {
6385 /* Theora is in flux, make sure that all interface routines and datatypes
6386 * exist and work the way we expect it, so we don't break MPlayer. */
6387 ogg_packet op;
6388 theora_comment tc;
6389 theora_info inf;
6390 theora_state st;
6391 yuv_buffer yuv;
6392 int r;
6393 double t;
6395 theora_info_init(&inf);
6396 theora_comment_init(&tc);
6398 return 0;
6400 /* we don't want to execute this kind of nonsense; just for making sure
6401 * that compilation works... */
6402 memset(&op, 0, sizeof(op));
6403 r = theora_decode_header(&inf, &tc, &op);
6404 r = theora_decode_init(&st, &inf);
6405 t = theora_granule_time(&st, op.granulepos);
6406 r = theora_decode_packetin(&st, &op);
6407 r = theora_decode_YUVout(&st, &yuv);
6408 theora_clear(&st);
6410 return 0;
6413 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6414 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6415 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6416 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6417 if test _theora = no; then
6418 _ld_theora="-ltheora -logg"
6419 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6421 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6422 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6423 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6424 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6425 extra_ldflags="$extra_ldflags $_ld_theora" &&
6426 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6427 if test _theora = no; then
6428 _ld_theora="-ltheora -logg"
6429 cc_check tremor/bitwise.c $_ld_theora &&
6430 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6434 if test "$_theora" = yes ; then
6435 def_theora='#define CONFIG_OGGTHEORA 1'
6436 codecmodules="libtheora $codecmodules"
6437 # when --enable-theora is forced, we'd better provide a probably sane
6438 # $_ld_theora than nothing
6439 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6440 else
6441 def_theora='#undef CONFIG_OGGTHEORA'
6442 nocodecmodules="libtheora $nocodecmodules"
6444 echores "$_theora"
6446 echocheck "mp3lib support"
6447 if test "$_mp3lib" = auto ; then
6448 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6450 if test "$_mp3lib" = yes ; then
6451 def_mp3lib='#define CONFIG_MP3LIB 1'
6452 codecmodules="mp3lib(internal) $codecmodules"
6453 else
6454 def_mp3lib='#undef CONFIG_MP3LIB'
6455 nocodecmodules="mp3lib(internal) $nocodecmodules"
6457 echores "$_mp3lib"
6459 # Any version of libmpg123 shall be fine.
6460 echocheck "mpg123 support"
6461 def_mpg123='#undef CONFIG_MPG123'
6462 if test "$_mpg123" = auto; then
6463 _mpg123=no
6464 cat > $TMPC <<EOF
6465 #include <mpg123.h>
6466 int main(void){ mpg123_init(); return 0; }
6468 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6470 if test "$_mpg123" = yes ; then
6471 def_mpg123='#define CONFIG_MPG123 1'
6472 codecmodules="mpg123 $codecmodules"
6473 else
6474 nocodecmodules="mpg123 $nocodecmodules"
6476 echores "$_mpg123"
6478 echocheck "liba52 support"
6479 def_liba52='#undef CONFIG_LIBA52'
6480 if test "$_liba52" = auto ; then
6481 _liba52=no
6482 cat > $TMPC << EOF
6483 #include <inttypes.h>
6484 #include <a52dec/a52.h>
6485 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6487 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6489 if test "$_liba52" = yes ; then
6490 def_liba52='#define CONFIG_LIBA52 1'
6491 codecmodules="liba52 $codecmodules"
6492 else
6493 nocodecmodules="liba52 $nocodecmodules"
6495 echores "$_liba52"
6497 echocheck "internal libmpeg2 support"
6498 if test "$_libmpeg2" = auto ; then
6499 _libmpeg2=yes
6500 if alpha && test cc_vendor=gnu; then
6501 case $cc_version in
6502 2*|3.0*|3.1*) # cannot compile MVI instructions
6503 _libmpeg2=no
6504 res_comment="broken gcc"
6506 esac
6509 if test "$_libmpeg2" = yes ; then
6510 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6511 codecmodules="libmpeg2(internal) $codecmodules"
6512 else
6513 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6514 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6516 echores "$_libmpeg2"
6518 echocheck "libdca support"
6519 if test "$_libdca" = auto ; then
6520 _libdca=no
6521 cat > $TMPC << EOF
6522 #include <inttypes.h>
6523 #include <dts.h>
6524 int main(void) { dts_init(0); return 0; }
6526 for _ld_dca in -ldca -ldts ; do
6527 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6528 && _libdca=yes && break
6529 done
6531 if test "$_libdca" = yes ; then
6532 def_libdca='#define CONFIG_LIBDCA 1'
6533 codecmodules="libdca $codecmodules"
6534 else
6535 def_libdca='#undef CONFIG_LIBDCA'
6536 nocodecmodules="libdca $nocodecmodules"
6538 echores "$_libdca"
6540 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6541 if test "$_musepack" = auto ; then
6542 _musepack=no
6543 cat > $TMPC << EOF
6544 #include <stddef.h>
6545 #include <mpcdec/mpcdec.h>
6546 int main(void) {
6547 mpc_streaminfo info;
6548 mpc_decoder decoder;
6549 mpc_decoder_set_streaminfo(&decoder, &info);
6550 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6551 return 0;
6554 cc_check -lmpcdec $_ld_lm && _musepack=yes
6556 if test "$_musepack" = yes ; then
6557 def_musepack='#define CONFIG_MUSEPACK 1'
6558 extra_ldflags="$extra_ldflags -lmpcdec"
6559 codecmodules="musepack $codecmodules"
6560 else
6561 def_musepack='#undef CONFIG_MUSEPACK'
6562 nocodecmodules="musepack $nocodecmodules"
6564 echores "$_musepack"
6567 echocheck "FAAC support"
6568 if test "$_faac" = auto ; then
6569 cat > $TMPC <<EOF
6570 #include <inttypes.h>
6571 #include <faac.h>
6572 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6574 _faac=no
6575 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6576 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6577 done
6579 if test "$_faac" = yes ; then
6580 def_faac="#define CONFIG_FAAC 1"
6581 codecmodules="faac $codecmodules"
6582 else
6583 def_faac="#undef CONFIG_FAAC"
6584 nocodecmodules="faac $nocodecmodules"
6586 echores "$_faac"
6589 echocheck "FAAD2 support"
6590 if test "$_faad_internal" = auto ; then
6591 if x86_32 && test cc_vendor=gnu; then
6592 case $cc_version in
6593 3.1*|3.2) # ICE/insn with these versions
6594 _faad_internal=no
6595 res_comment="broken gcc"
6598 _faad=yes
6599 _faad_internal=yes
6601 esac
6602 else
6603 _faad=yes
6604 _faad_internal=yes
6607 if test "$_faad" = auto ; then
6608 cat > $TMPC << EOF
6609 #include <faad.h>
6610 #ifndef FAAD_MIN_STREAMSIZE
6611 #error Too old version
6612 #endif
6613 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6614 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6616 cc_check -lfaad $_ld_lm && _faad=yes
6619 def_faad='#undef CONFIG_FAAD'
6620 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6621 if test "$_faad_internal" = yes ; then
6622 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6623 res_comment="internal floating-point"
6624 if test "$_faad_fixed" = yes ; then
6625 # The FIXED_POINT implementation of FAAD2 improves performance
6626 # on some platforms, especially for SBR files.
6627 cflags_faad_fixed="-DFIXED_POINT"
6628 res_comment="internal fixed-point"
6630 elif test "$_faad" = yes ; then
6631 extra_ldflags="$extra_ldflags -lfaad"
6634 if test "$_faad" = yes ; then
6635 def_faad='#define CONFIG_FAAD 1'
6636 if test "$_faad_internal" = yes ; then
6637 codecmodules="faad2(internal) $codecmodules"
6638 else
6639 codecmodules="faad2 $codecmodules"
6641 else
6642 _faad=no
6643 nocodecmodules="faad2 $nocodecmodules"
6645 echores "$_faad"
6648 echocheck "LADSPA plugin support"
6649 if test "$_ladspa" = auto ; then
6650 cat > $TMPC <<EOF
6651 #include <ladspa.h>
6652 int main(void) {
6653 LADSPA_Descriptor ld = {0};
6654 return 0;
6657 _ladspa=no
6658 cc_check && _ladspa=yes
6660 if test "$_ladspa" = yes; then
6661 def_ladspa="#define CONFIG_LADSPA 1"
6662 else
6663 def_ladspa="#undef CONFIG_LADSPA"
6665 echores "$_ladspa"
6668 echocheck "libbs2b audio filter support"
6669 if test "$_libbs2b" = auto ; then
6670 cat > $TMPC <<EOF
6671 #include <bs2b.h>
6672 #if BS2B_VERSION_MAJOR < 3
6673 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6674 #endif
6675 int main(void) {
6676 t_bs2bdp filter;
6677 filter=bs2b_open();
6678 bs2b_close(filter);
6679 return 0;
6682 _libbs2b=no
6683 if $_pkg_config --exists libbs2b ; then
6684 _inc_tmp=$($_pkg_config --cflags libbs2b)
6685 _ld_tmp=$($_pkg_config --libs libbs2b)
6686 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6687 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6688 else
6689 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6690 -I/usr/local/include/bs2b ; do
6691 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6692 extra_ldflags="$extra_ldflags -lbs2b"
6693 extra_cflags="$extra_cflags $_inc_tmp"
6694 _libbs2b=yes
6695 break
6697 done
6700 def_libbs2b="#undef CONFIG_LIBBS2B"
6701 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6702 echores "$_libbs2b"
6705 if test -z "$_codecsdir" ; then
6706 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6707 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6708 if test -d "$dir" ; then
6709 _codecsdir="$dir"
6710 break;
6712 done
6714 # Fall back on default directory.
6715 if test -z "$_codecsdir" ; then
6716 _codecsdir="$_libdir/codecs"
6717 mingw32 || os2 && _codecsdir="codecs"
6721 echocheck "Win32 codecs"
6722 if test "$_win32dll" = auto ; then
6723 _win32dll=no
6724 if x86_32 && ! qnx; then
6725 _win32dll=yes
6728 if test "$_win32dll" = yes ; then
6729 def_win32dll='#define CONFIG_WIN32DLL 1'
6730 if ! win32 ; then
6731 def_win32_loader='#define WIN32_LOADER 1'
6732 _win32_emulation=yes
6733 else
6734 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6735 res_comment="using native windows"
6737 codecmodules="win32 $codecmodules"
6738 else
6739 def_win32dll='#undef CONFIG_WIN32DLL'
6740 def_win32_loader='#undef WIN32_LOADER'
6741 nocodecmodules="win32 $nocodecmodules"
6743 echores "$_win32dll"
6746 echocheck "XAnim codecs"
6747 if test "$_xanim" = auto ; then
6748 _xanim=no
6749 res_comment="dynamic loader support needed"
6750 if test "$_dl" = yes ; then
6751 _xanim=yes
6754 if test "$_xanim" = yes ; then
6755 def_xanim='#define CONFIG_XANIM 1'
6756 codecmodules="xanim $codecmodules"
6757 else
6758 def_xanim='#undef CONFIG_XANIM'
6759 nocodecmodules="xanim $nocodecmodules"
6761 echores "$_xanim"
6764 echocheck "RealPlayer codecs"
6765 if test "$_real" = auto ; then
6766 _real=no
6767 res_comment="dynamic loader support needed"
6768 if test "$_dl" = yes || test "$_win32dll" = yes &&
6769 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6770 _real=yes
6773 if test "$_real" = yes ; then
6774 def_real='#define CONFIG_REALCODECS 1'
6775 codecmodules="real $codecmodules"
6776 else
6777 def_real='#undef CONFIG_REALCODECS'
6778 nocodecmodules="real $nocodecmodules"
6780 echores "$_real"
6783 echocheck "QuickTime codecs"
6784 _qtx_emulation=no
6785 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6786 if test "$_qtx" = auto ; then
6787 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6789 if test "$_qtx" = yes ; then
6790 def_qtx='#define CONFIG_QTX_CODECS 1'
6791 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6792 codecmodules="qtx $codecmodules"
6793 darwin || win32 || _qtx_emulation=yes
6794 else
6795 def_qtx='#undef CONFIG_QTX_CODECS'
6796 nocodecmodules="qtx $nocodecmodules"
6798 echores "$_qtx"
6800 echocheck "Nemesi Streaming Media libraries"
6801 if test "$_nemesi" = auto && test "$networking" = yes ; then
6802 _nemesi=no
6803 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6804 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6805 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6806 _nemesi=yes
6809 if test "$_nemesi" = yes; then
6810 _native_rtsp=no
6811 def_nemesi='#define CONFIG_LIBNEMESI 1'
6812 inputmodules="nemesi $inputmodules"
6813 else
6814 _native_rtsp="$networking"
6815 _nemesi=no
6816 def_nemesi='#undef CONFIG_LIBNEMESI'
6817 noinputmodules="nemesi $noinputmodules"
6819 echores "$_nemesi"
6821 echocheck "LIVE555 Streaming Media libraries"
6822 if test "$_live" = auto && test "$networking" = yes ; then
6823 cat > $TMPCPP << EOF
6824 #include <liveMedia.hh>
6825 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6826 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6827 #endif
6828 int main(void) { return 0; }
6831 _live=no
6832 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
6833 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6834 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6835 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6836 $_livelibdir/groupsock/libgroupsock.a \
6837 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6838 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6839 $extra_ldflags -lstdc++" \
6840 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6841 -I$_livelibdir/UsageEnvironment/include \
6842 -I$_livelibdir/BasicUsageEnvironment/include \
6843 -I$_livelibdir/groupsock/include" && \
6844 _live=yes && break
6845 done
6846 if test "$_live" != yes ; then
6847 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6848 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6849 _live_dist=yes
6853 if test "$_live" = yes && test "$networking" = yes; then
6854 test $_livelibdir && res_comment="using $_livelibdir"
6855 def_live='#define CONFIG_LIVE555 1'
6856 inputmodules="live555 $inputmodules"
6857 elif test "$_live_dist" = yes && test "$networking" = yes; then
6858 res_comment="using distribution version"
6859 _live="yes"
6860 def_live='#define CONFIG_LIVE555 1'
6861 extra_ldflags="$extra_ldflags $ld_tmp"
6862 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6863 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6864 inputmodules="live555 $inputmodules"
6865 else
6866 _live=no
6867 def_live='#undef CONFIG_LIVE555'
6868 noinputmodules="live555 $noinputmodules"
6870 echores "$_live"
6873 echocheck "FFmpeg libavutil"
6874 if test "$_libavutil" = auto ; then
6875 _libavutil=no
6876 cat > $TMPC << EOF
6877 #include <libavutil/common.h>
6878 int main(void) { av_clip(1, 1, 1); return 0; }
6880 if $_pkg_config --exists libavutil ; then
6881 _inc_libavutil=$($_pkg_config --cflags libavutil)
6882 _ld_tmp=$($_pkg_config --libs libavutil)
6883 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6884 && _libavutil=yes
6885 elif cc_check -lavutil $_ld_lm ; then
6886 extra_ldflags="$extra_ldflags -lavutil"
6887 _libavutil=yes
6890 def_libavutil='#undef CONFIG_LIBAVUTIL'
6891 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6892 # libavutil is not available, but it is mandatory ...
6893 if test "$_libavutil" = no ; then
6894 die "You need libavutil, MPlayer will not compile without!"
6896 echores "$_libavutil"
6898 echocheck "FFmpeg libavcodec"
6899 if test "$_libavcodec" = auto ; then
6900 _libavcodec=no
6901 cat > $TMPC << EOF
6902 #include <libavcodec/avcodec.h>
6903 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6905 if $_pkg_config --exists libavcodec ; then
6906 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6907 _ld_tmp=$($_pkg_config --libs libavcodec)
6908 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6909 && _libavcodec=yes
6910 elif cc_check -lavcodec $_ld_lm ; then
6911 extra_ldflags="$extra_ldflags -lavcodec"
6912 _libavcodec=yes
6915 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6916 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6917 if test "$_libavcodec" = yes ; then
6918 codecmodules="libavcodec $codecmodules"
6919 else
6920 nocodecmodules="libavcodec $nocodecmodules"
6922 echores "$_libavcodec"
6924 echocheck "FFmpeg libavformat"
6925 if test "$_libavformat" = auto ; then
6926 _libavformat=no
6927 cat > $TMPC <<EOF
6928 #include <libavformat/avformat.h>
6929 int main(void) { av_alloc_format_context(); return 0; }
6931 if $_pkg_config --exists libavformat ; then
6932 _inc_libavformat=$($_pkg_config --cflags libavformat)
6933 _ld_tmp=$($_pkg_config --libs libavformat)
6934 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6935 && _libavformat=yes
6936 elif cc_check $_ld_lm -lavformat ; then
6937 extra_ldflags="$extra_ldflags -lavformat"
6938 _libavformat=yes
6941 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6942 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6943 echores "$_libavformat"
6945 echocheck "FFmpeg libpostproc"
6946 if test "$_libpostproc" = auto ; then
6947 _libpostproc=no
6948 cat > $TMPC << EOF
6949 #include <libpostproc/postprocess.h>
6950 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6952 if $_pkg_config --exists libpostproc ; then
6953 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6954 _ld_tmp=$($_pkg_config --libs libpostproc)
6955 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6956 && _libpostproc=yes
6957 elif cc_check -lpostproc $_ld_lm ; then
6958 extra_ldflags="$extra_ldflags -lpostproc"
6959 _libpostproc=yes
6962 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6963 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6964 echores "$_libpostproc"
6966 echocheck "FFmpeg libswscale"
6967 if test "$_libswscale" = auto ; then
6968 _libswscale=no
6969 cat > $TMPC << EOF
6970 #include <libswscale/swscale.h>
6971 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6973 if $_pkg_config --exists libswscale ; then
6974 _inc_libswscale=$($_pkg_config --cflags libswscale)
6975 _ld_tmp=$($_pkg_config --libs libswscale)
6976 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6977 && _libswscale=yes
6978 elif cc_check -lswscale ; then
6979 extra_ldflags="$extra_ldflags -lswscale"
6980 _libswscale=yes
6983 def_libswscale='#undef CONFIG_LIBSWSCALE'
6984 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6985 echores "$_libswscale"
6987 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6988 if ! test -z "$_ffmpeg_source" ; then
6989 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6992 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6993 if ! test -z "$_ffmpeg_source" ; then
6994 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6997 echocheck "libdv-0.9.5+"
6998 if test "$_libdv" = auto ; then
6999 _libdv=no
7000 cat > $TMPC <<EOF
7001 #include <libdv/dv.h>
7002 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7004 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7006 if test "$_libdv" = yes ; then
7007 def_libdv='#define CONFIG_LIBDV095 1'
7008 extra_ldflags="$extra_ldflags -ldv"
7009 codecmodules="libdv $codecmodules"
7010 else
7011 def_libdv='#undef CONFIG_LIBDV095'
7012 nocodecmodules="libdv $nocodecmodules"
7014 echores "$_libdv"
7017 echocheck "Xvid"
7018 if test "$_xvid" = auto ; then
7019 _xvid=no
7020 cat > $TMPC << EOF
7021 #include <xvid.h>
7022 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7024 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7025 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7026 done
7029 if test "$_xvid" = yes ; then
7030 def_xvid='#define CONFIG_XVID4 1'
7031 codecmodules="xvid $codecmodules"
7032 else
7033 def_xvid='#undef CONFIG_XVID4'
7034 nocodecmodules="xvid $nocodecmodules"
7036 echores "$_xvid"
7038 echocheck "x264"
7039 if test "$_x264" = auto ; then
7040 cat > $TMPC << EOF
7041 #include <inttypes.h>
7042 #include <x264.h>
7043 #if X264_BUILD < 98
7044 #error We do not support old versions of x264. Get the latest from git.
7045 #endif
7046 int main(void) { x264_encoder_open((void*)0); return 0; }
7048 _x264=no
7049 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7050 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7051 done
7054 if test "$_x264" = yes ; then
7055 def_x264='#define CONFIG_X264 1'
7056 codecmodules="x264 $codecmodules"
7057 else
7058 def_x264='#undef CONFIG_X264'
7059 nocodecmodules="x264 $nocodecmodules"
7061 echores "$_x264"
7063 echocheck "libnut"
7064 if test "$_libnut" = auto ; then
7065 cat > $TMPC << EOF
7066 #include <libnut.h>
7067 nut_context_tt * nut;
7068 int main(void) { (void)nut_error(0); return 0; }
7070 _libnut=no
7071 cc_check -lnut && _libnut=yes
7074 if test "$_libnut" = yes ; then
7075 def_libnut='#define CONFIG_LIBNUT 1'
7076 extra_ldflags="$extra_ldflags -lnut"
7077 else
7078 def_libnut='#undef CONFIG_LIBNUT'
7080 echores "$_libnut"
7082 # These VO checks must be done after libavcodec/libswscale one
7083 echocheck "/dev/mga_vid"
7084 if test "$_mga" = auto ; then
7085 _mga=no
7086 test -c /dev/mga_vid && _mga=yes
7088 if test "$_mga" = yes ; then
7089 def_mga='#define CONFIG_MGA 1'
7090 vomodules="mga $vomodules"
7091 else
7092 def_mga='#undef CONFIG_MGA'
7093 novomodules="mga $novomodules"
7095 echores "$_mga"
7098 echocheck "xmga"
7099 if test "$_xmga" = auto ; then
7100 _xmga=no
7101 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7103 if test "$_xmga" = yes ; then
7104 def_xmga='#define CONFIG_XMGA 1'
7105 vomodules="xmga $vomodules"
7106 else
7107 def_xmga='#undef CONFIG_XMGA'
7108 novomodules="xmga $novomodules"
7110 echores "$_xmga"
7112 echocheck "zr"
7113 if test "$_zr" = auto ; then
7114 #36067's seem to identify themselves as 36057PQC's, so the line
7115 #below should work for 36067's and 36057's.
7116 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7117 _zr=yes
7118 else
7119 _zr=no
7122 if test "$_zr" = yes ; then
7123 if test "$_libavcodec_internals" = yes ; then
7124 def_zr='#define CONFIG_ZR 1'
7125 vomodules="zr zr2 $vomodules"
7126 else
7127 res_comment="libavcodec internal headers are required by zr, sorry"
7128 novomodules="zr $novomodules"
7129 def_zr='#undef CONFIG_ZR'
7131 else
7132 def_zr='#undef CONFIG_ZR'
7133 novomodules="zr zr2 $novomodules"
7135 echores "$_zr"
7137 # mencoder requires (optional) those libs: libmp3lame
7138 if test "$_mencoder" != no ; then
7140 echocheck "libmp3lame"
7141 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7142 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7143 if test "$_mp3lame" = auto ; then
7144 _mp3lame=no
7145 cat > $TMPC <<EOF
7146 #include <lame/lame.h>
7147 int main(void) { lame_version_t lv; (void) lame_init();
7148 get_lame_version_numerical(&lv);
7149 return 0; }
7151 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7153 if test "$_mp3lame" = yes ; then
7154 def_mp3lame="#define CONFIG_MP3LAME 1"
7155 _ld_mp3lame=-lmp3lame
7156 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7157 cat > $TMPC << EOF
7158 #include <lame/lame.h>
7159 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7161 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7162 cat > $TMPC << EOF
7163 #include <lame/lame.h>
7164 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7166 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7167 else
7168 def_mp3lame='#undef CONFIG_MP3LAME'
7170 echores "$_mp3lame"
7172 fi # test "$_mencoder" != no
7174 echocheck "mencoder"
7175 if test "$_mencoder" = yes ; then
7176 def_muxers='#define CONFIG_MUXERS 1'
7177 else
7178 def_muxers='#define CONFIG_MUXERS 0'
7180 echores "$_mencoder"
7183 echocheck "UnRAR executable"
7184 if test "$_unrar_exec" = auto ; then
7185 _unrar_exec="yes"
7186 mingw32 && _unrar_exec="no"
7188 if test "$_unrar_exec" = yes ; then
7189 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7190 else
7191 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7193 echores "$_unrar_exec"
7195 echocheck "TV interface"
7196 if test "$_tv" = yes ; then
7197 def_tv='#define CONFIG_TV 1'
7198 inputmodules="tv $inputmodules"
7199 else
7200 noinputmodules="tv $noinputmodules"
7201 def_tv='#undef CONFIG_TV'
7203 echores "$_tv"
7206 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7207 echocheck "*BSD BT848 bt8xx header"
7208 _ioctl_bt848_h=no
7209 for file in "machine/ioctl_bt848.h" \
7210 "dev/bktr/ioctl_bt848.h" \
7211 "dev/video/bktr/ioctl_bt848.h" \
7212 "dev/ic/bt8xx.h" ; do
7213 cat > $TMPC <<EOF
7214 #include <sys/types.h>
7215 #include <sys/ioctl.h>
7216 #include <$file>
7217 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7219 if cc_check ; then
7220 _ioctl_bt848_h=yes
7221 _ioctl_bt848_h_name="$file"
7222 break;
7224 done
7225 if test "$_ioctl_bt848_h" = yes ; then
7226 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7227 res_comment="using $_ioctl_bt848_h_name"
7228 else
7229 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7231 echores "$_ioctl_bt848_h"
7233 echocheck "*BSD ioctl_meteor.h"
7234 _ioctl_meteor_h=no
7235 for file in "machine/ioctl_meteor.h" \
7236 "dev/bktr/ioctl_meteor.h" \
7237 "dev/video/bktr/ioctl_meteor.h" ; do
7238 cat > $TMPC <<EOF
7239 #include <sys/types.h>
7240 #include <$file>
7241 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7243 if cc_check ; then
7244 _ioctl_meteor_h=yes
7245 _ioctl_meteor_h_name="$file"
7246 break;
7248 done
7249 if test "$_ioctl_meteor_h" = yes ; then
7250 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7251 res_comment="using $_ioctl_meteor_h_name"
7252 else
7253 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7255 echores "$_ioctl_meteor_h"
7257 echocheck "*BSD BrookTree 848 TV interface"
7258 if test "$_tv_bsdbt848" = auto ; then
7259 _tv_bsdbt848=no
7260 if test "$_tv" = yes ; then
7261 cat > $TMPC <<EOF
7262 #include <sys/types.h>
7263 $def_ioctl_meteor_h_name
7264 $def_ioctl_bt848_h_name
7265 #ifdef IOCTL_METEOR_H_NAME
7266 #include IOCTL_METEOR_H_NAME
7267 #endif
7268 #ifdef IOCTL_BT848_H_NAME
7269 #include IOCTL_BT848_H_NAME
7270 #endif
7271 int main(void) {
7272 ioctl(0, METEORSINPUT, 0);
7273 ioctl(0, TVTUNER_GETFREQ, 0);
7274 return 0;
7277 cc_check && _tv_bsdbt848=yes
7280 if test "$_tv_bsdbt848" = yes ; then
7281 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7282 inputmodules="tv-bsdbt848 $inputmodules"
7283 else
7284 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7285 noinputmodules="tv-bsdbt848 $noinputmodules"
7287 echores "$_tv_bsdbt848"
7288 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7291 echocheck "DirectShow TV interface"
7292 if test "$_tv_dshow" = auto ; then
7293 _tv_dshow=no
7294 if test "$_tv" = yes && win32 ; then
7295 cat > $TMPC <<EOF
7296 #include <ole2.h>
7297 int main(void) {
7298 void* p;
7299 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7300 return 0;
7303 cc_check -lole32 -luuid && _tv_dshow=yes
7306 if test "$_tv_dshow" = yes ; then
7307 inputmodules="tv-dshow $inputmodules"
7308 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7309 extra_ldflags="$extra_ldflags -lole32 -luuid"
7310 else
7311 noinputmodules="tv-dshow $noinputmodules"
7312 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7314 echores "$_tv_dshow"
7317 echocheck "Video 4 Linux TV interface"
7318 if test "$_tv_v4l1" = auto ; then
7319 _tv_v4l1=no
7320 if test "$_tv" = yes && linux ; then
7321 header_check linux/videodev.h && _tv_v4l1=yes
7324 if test "$_tv_v4l1" = yes ; then
7325 _audio_input=yes
7326 _tv_v4l=yes
7327 def_tv_v4l='#define CONFIG_TV_V4L 1'
7328 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7329 inputmodules="tv-v4l $inputmodules"
7330 else
7331 noinputmodules="tv-v4l1 $noinputmodules"
7332 def_tv_v4l='#undef CONFIG_TV_V4L'
7334 echores "$_tv_v4l1"
7337 echocheck "Video 4 Linux 2 TV interface"
7338 if test "$_tv_v4l2" = auto ; then
7339 _tv_v4l2=no
7340 if test "$_tv" = yes && linux ; then
7341 header_check linux/videodev2.h && _tv_v4l2=yes
7344 if test "$_tv_v4l2" = yes ; then
7345 _audio_input=yes
7346 _tv_v4l=yes
7347 def_tv_v4l='#define CONFIG_TV_V4L 1'
7348 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7349 inputmodules="tv-v4l2 $inputmodules"
7350 else
7351 noinputmodules="tv-v4l2 $noinputmodules"
7352 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7354 echores "$_tv_v4l2"
7357 echocheck "Radio interface"
7358 if test "$_radio" = yes ; then
7359 def_radio='#define CONFIG_RADIO 1'
7360 inputmodules="radio $inputmodules"
7361 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7362 _radio_capture=no
7364 if test "$_radio_capture" = yes ; then
7365 _audio_input=yes
7366 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7367 else
7368 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7370 else
7371 noinputmodules="radio $noinputmodules"
7372 def_radio='#undef CONFIG_RADIO'
7373 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7374 _radio_capture=no
7376 echores "$_radio"
7377 echocheck "Capture for Radio interface"
7378 echores "$_radio_capture"
7380 echocheck "Video 4 Linux 2 Radio interface"
7381 if test "$_radio_v4l2" = auto ; then
7382 _radio_v4l2=no
7383 if test "$_radio" = yes && linux ; then
7384 header_check linux/videodev2.h && _radio_v4l2=yes
7387 if test "$_radio_v4l2" = yes ; then
7388 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7389 else
7390 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7392 echores "$_radio_v4l2"
7394 echocheck "Video 4 Linux Radio interface"
7395 if test "$_radio_v4l" = auto ; then
7396 _radio_v4l=no
7397 if test "$_radio" = yes && linux ; then
7398 header_check linux/videodev.h && _radio_v4l=yes
7401 if test "$_radio_v4l" = yes ; then
7402 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7403 else
7404 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7406 echores "$_radio_v4l"
7408 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7409 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7410 echocheck "*BSD BrookTree 848 Radio interface"
7411 _radio_bsdbt848=no
7412 cat > $TMPC <<EOF
7413 #include <sys/types.h>
7414 $def_ioctl_bt848_h_name
7415 #ifdef IOCTL_BT848_H_NAME
7416 #include IOCTL_BT848_H_NAME
7417 #endif
7418 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7420 cc_check && _radio_bsdbt848=yes
7421 echores "$_radio_bsdbt848"
7422 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7424 if test "$_radio_bsdbt848" = yes ; then
7425 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7426 else
7427 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7430 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7431 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7432 die "Radio driver requires BSD BT848, V4L or V4L2!"
7435 echocheck "Video 4 Linux 2 MPEG PVR interface"
7436 if test "$_pvr" = auto ; then
7437 _pvr=no
7438 if test "$_tv_v4l2" = yes && linux ; then
7439 cat > $TMPC <<EOF
7440 #include <linux/videodev2.h>
7441 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7443 cc_check && _pvr=yes
7446 if test "$_pvr" = yes ; then
7447 def_pvr='#define CONFIG_PVR 1'
7448 inputmodules="pvr $inputmodules"
7449 else
7450 noinputmodules="pvr $noinputmodules"
7451 def_pvr='#undef CONFIG_PVR'
7453 echores "$_pvr"
7456 echocheck "ftp"
7457 if ! beos && test "$_ftp" = yes ; then
7458 def_ftp='#define CONFIG_FTP 1'
7459 inputmodules="ftp $inputmodules"
7460 else
7461 noinputmodules="ftp $noinputmodules"
7462 def_ftp='#undef CONFIG_FTP'
7464 echores "$_ftp"
7466 echocheck "vstream client"
7467 if test "$_vstream" = auto ; then
7468 _vstream=no
7469 cat > $TMPC <<EOF
7470 #include <vstream-client.h>
7471 void vstream_error(const char *format, ... ) {}
7472 int main(void) { vstream_start(); return 0; }
7474 cc_check -lvstream-client && _vstream=yes
7476 if test "$_vstream" = yes ; then
7477 def_vstream='#define CONFIG_VSTREAM 1'
7478 inputmodules="vstream $inputmodules"
7479 extra_ldflags="$extra_ldflags -lvstream-client"
7480 else
7481 noinputmodules="vstream $noinputmodules"
7482 def_vstream='#undef CONFIG_VSTREAM'
7484 echores "$_vstream"
7487 echocheck "OSD menu"
7488 if test "$_menu" = yes ; then
7489 def_menu='#define CONFIG_MENU 1'
7490 test $_dvbin = "yes" && _menu_dvbin=yes
7491 else
7492 def_menu='#undef CONFIG_MENU'
7493 _menu_dvbin=no
7495 echores "$_menu"
7498 echocheck "Subtitles sorting"
7499 if test "$_sortsub" = yes ; then
7500 def_sortsub='#define CONFIG_SORTSUB 1'
7501 else
7502 def_sortsub='#undef CONFIG_SORTSUB'
7504 echores "$_sortsub"
7507 echocheck "XMMS inputplugin support"
7508 if test "$_xmms" = yes ; then
7509 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7510 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7511 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7512 else
7513 _xmmsplugindir=/usr/lib/xmms/Input
7514 _xmmslibdir=/usr/lib
7517 def_xmms='#define CONFIG_XMMS 1'
7518 if darwin ; then
7519 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7520 else
7521 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7523 else
7524 def_xmms='#undef CONFIG_XMMS'
7526 echores "$_xmms"
7528 if test "$_charset" != "noconv" ; then
7529 def_charset="#define MSG_CHARSET \"$_charset\""
7530 else
7531 def_charset="#undef MSG_CHARSET"
7532 _charset="UTF-8"
7535 #############################################################################
7537 echocheck "automatic gdb attach"
7538 if test "$_crash_debug" = yes ; then
7539 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7540 else
7541 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7542 _crash_debug=no
7544 echores "$_crash_debug"
7546 echocheck "compiler support for noexecstack"
7547 if cflag_check -Wl,-z,noexecstack ; then
7548 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7549 echores "yes"
7550 else
7551 echores "no"
7554 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7555 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7556 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7557 echores "yes"
7558 else
7559 echores "no"
7563 # Dynamic linking flags
7564 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7565 _ld_dl_dynamic=''
7566 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7567 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7568 _ld_dl_dynamic='-rdynamic'
7571 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7572 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7573 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7575 def_debug='#undef MP_DEBUG'
7576 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7579 echocheck "joystick"
7580 def_joystick='#undef CONFIG_JOYSTICK'
7581 if test "$_joystick" = yes ; then
7582 if linux ; then
7583 # TODO add some check
7584 def_joystick='#define CONFIG_JOYSTICK 1'
7585 else
7586 _joystick="no"
7587 res_comment="unsupported under $system_name"
7590 echores "$_joystick"
7592 echocheck "lirc"
7593 if test "$_lirc" = auto ; then
7594 _lirc=no
7595 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7597 if test "$_lirc" = yes ; then
7598 def_lirc='#define CONFIG_LIRC 1'
7599 libs_mplayer="$libs_mplayer -llirc_client"
7600 else
7601 def_lirc='#undef CONFIG_LIRC'
7603 echores "$_lirc"
7605 echocheck "lircc"
7606 if test "$_lircc" = auto ; then
7607 _lircc=no
7608 header_check lirc/lircc.h -llircc && _lircc=yes
7610 if test "$_lircc" = yes ; then
7611 def_lircc='#define CONFIG_LIRCC 1'
7612 libs_mplayer="$libs_mplayer -llircc"
7613 else
7614 def_lircc='#undef CONFIG_LIRCC'
7616 echores "$_lircc"
7618 if arm; then
7619 # Detect maemo development platform libraries availability (http://www.maemo.org),
7620 # they are used when run on Nokia 770|8x0
7621 echocheck "maemo (Nokia 770|8x0)"
7622 if test "$_maemo" = auto ; then
7623 _maemo=no
7624 cat > $TMPC << EOF
7625 #include <libosso.h>
7626 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7628 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7630 if test "$_maemo" = yes ; then
7631 def_maemo='#define CONFIG_MAEMO 1'
7632 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7633 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7634 else
7635 def_maemo='#undef CONFIG_MAEMO'
7637 echores "$_maemo"
7640 #############################################################################
7642 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7643 # the OMF format needs to come after the 'extern symbol prefix' check, which
7644 # uses nm.
7645 if os2 ; then
7646 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7649 # linker paths should be the same for mencoder and mplayer
7650 _ld_tmp=""
7651 for I in $libs_mplayer ; do
7652 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7653 if test -z "$_tmp" ; then
7654 extra_ldflags="$extra_ldflags $I"
7655 else
7656 _ld_tmp="$_ld_tmp $I"
7658 done
7659 libs_mplayer=$_ld_tmp
7662 #############################################################################
7663 # 64 bit file offsets?
7664 if test "$_largefiles" = yes || freebsd ; then
7665 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7666 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7667 # dvdread support requires this (for off64_t)
7668 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7672 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7674 # This must be the last test to be performed. Any other tests following it
7675 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7676 # against libdvdread (to permit MPlayer to use its own copy of the library).
7677 # So any compilation using the flags added here but not linking against
7678 # libdvdread can fail.
7679 echocheck "DVD support (libdvdnav)"
7680 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7681 _dvdnav=no
7683 dvdnav_internal=no
7684 if test "$_dvdnav" = auto ; then
7685 if test "$_dvdread_internal" = yes ; then
7686 _dvdnav=yes
7687 dvdnav_internal=yes
7688 res_comment="internal"
7689 else
7690 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7693 if test "$_dvdnav" = auto ; then
7694 cat > $TMPC <<EOF
7695 #include <inttypes.h>
7696 #include <dvdnav/dvdnav.h>
7697 int main(void) { dvdnav_t *dvd=0; return 0; }
7699 _dvdnav=no
7700 _dvdnavdir=$($_dvdnavconfig --cflags)
7701 _dvdnavlibs=$($_dvdnavconfig --libs)
7702 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7704 if test "$_dvdnav" = yes ; then
7705 _largefiles=yes
7706 def_dvdnav='#define CONFIG_DVDNAV 1'
7707 if test "$dvdnav_internal" = yes ; then
7708 cflags_libdvdnav="-Ilibdvdnav"
7709 inputmodules="dvdnav(internal) $inputmodules"
7710 else
7711 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7712 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7713 inputmodules="dvdnav $inputmodules"
7715 else
7716 def_dvdnav='#undef CONFIG_DVDNAV'
7717 noinputmodules="dvdnav $noinputmodules"
7719 echores "$_dvdnav"
7721 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7722 # Read dvdnav comment above.
7724 mak_enable () {
7725 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7726 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7727 nprefix=$3;
7728 for part in $list; do
7729 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7730 echo "${nprefix}_$part = yes"
7732 done
7735 #############################################################################
7736 echo "Creating config.mak"
7737 cat > config.mak << EOF
7738 # -------- Generated by configure -----------
7740 # Ensure that locale settings do not interfere with shell commands.
7741 export LC_ALL = C
7743 CONFIGURATION = $configuration
7745 CHARSET = $_charset
7746 DOC_LANGS = $language_doc
7747 DOC_LANG_ALL = $doc_lang_all
7748 MAN_LANGS = $language_man
7749 MAN_LANG_ALL = $man_lang_all
7750 MSG_LANGS = $language_msg
7751 MSG_LANG_ALL = $msg_lang_all
7753 prefix = \$(DESTDIR)$_prefix
7754 BINDIR = \$(DESTDIR)$_bindir
7755 DATADIR = \$(DESTDIR)$_datadir
7756 LIBDIR = \$(DESTDIR)$_libdir
7757 MANDIR = \$(DESTDIR)$_mandir
7758 CONFDIR = \$(DESTDIR)$_confdir
7759 LOCALEDIR = \$(DESTDIR)$_localedir
7761 AR = $_ar
7762 AS = $_cc
7763 CC = $_cc
7764 CXX = $_cc
7765 HOST_CC = $_host_cc
7766 INSTALL = $_install
7767 INSTALLSTRIP = $_install_strip
7768 WINDRES = $_windres
7770 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7771 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7772 DEPFLAGS = $DEPFLAGS
7774 CFLAGS_DHAHELPER = $cflags_dhahelper
7775 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7776 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7777 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7778 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7779 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7780 CFLAGS_STACKREALIGN = $cflags_stackrealign
7781 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7782 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7784 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7785 EXTRALIBS_MPLAYER = $libs_mplayer
7786 EXTRALIBS_MENCODER = $libs_mencoder
7788 GETCH = $_getch
7789 TIMER = $_timer
7791 EXESUF = $_exesuf
7792 EXESUFS_ALL = .exe
7794 ARCH = $arch
7795 $(mak_enable "$arch_all" "$arch" ARCH)
7796 $(mak_enable "$subarch_all" "$subarch" ARCH)
7797 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7799 MENCODER = $_mencoder
7800 MPLAYER = $_mplayer
7802 NEED_GETTIMEOFDAY = $_need_gettimeofday
7803 NEED_GLOB = $_need_glob
7804 NEED_MMAP = $_need_mmap
7805 NEED_SETENV = $_need_setenv
7806 NEED_SHMEM = $_need_shmem
7807 NEED_STRSEP = $_need_strsep
7808 NEED_SWAB = $_need_swab
7809 NEED_VSSCANF = $_need_vsscanf
7811 # features
7812 3DFX = $_3dfx
7813 AA = $_aa
7814 ALSA1X = $_alsa1x
7815 ALSA9 = $_alsa9
7816 ALSA5 = $_alsa5
7817 APPLE_IR = $_apple_ir
7818 APPLE_REMOTE = $_apple_remote
7819 ARTS = $_arts
7820 AUDIO_INPUT = $_audio_input
7821 BITMAP_FONT = $_bitmap_font
7822 BL = $_bl
7823 CACA = $_caca
7824 CDDA = $_cdda
7825 CDDB = $_cddb
7826 COREAUDIO = $_coreaudio
7827 COREVIDEO = $_corevideo
7828 DART = $_dart
7829 DFBMGA = $_dfbmga
7830 DGA = $_dga
7831 DIRECT3D = $_direct3d
7832 DIRECTFB = $_directfb
7833 DIRECTX = $_directx
7834 DVBIN = $_dvbin
7835 DVDNAV = $_dvdnav
7836 DVDNAV_INTERNAL = $dvdnav_internal
7837 DVDREAD = $_dvdread
7838 DVDREAD_INTERNAL = $_dvdread_internal
7839 DXR2 = $_dxr2
7840 DXR3 = $_dxr3
7841 ESD = $_esd
7842 FAAC=$_faac
7843 FAAD = $_faad
7844 FAAD_INTERNAL = $_faad_internal
7845 FASTMEMCPY = $_fastmemcpy
7846 FBDEV = $_fbdev
7847 FREETYPE = $_freetype
7848 FTP = $_ftp
7849 GIF = $_gif
7850 GGI = $_ggi
7851 GL = $_gl
7852 GL_WIN32 = $_gl_win32
7853 GL_X11 = $_gl_x11
7854 GL_SDL = $_gl_sdl
7855 MATRIXVIEW = $matrixview
7856 HAVE_POSIX_SELECT = $_posix_select
7857 HAVE_SYS_MMAN_H = $_mman
7858 IVTV = $_ivtv
7859 JACK = $_jack
7860 JOYSTICK = $_joystick
7861 JPEG = $_jpeg
7862 KAI = $_kai
7863 KVA = $_kva
7864 LADSPA = $_ladspa
7865 LIBA52 = $_liba52
7866 LIBASS = $_ass
7867 LIBBLURAY = $_bluray
7868 LIBBS2B = $_libbs2b
7869 LIBDCA = $_libdca
7870 LIBDV = $_libdv
7871 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7872 LIBLZO = $_liblzo
7873 LIBMAD = $_mad
7874 LIBMENU = $_menu
7875 LIBMENU_DVBIN = $_menu_dvbin
7876 LIBMPEG2 = $_libmpeg2
7877 LIBNEMESI = $_nemesi
7878 LIBNUT = $_libnut
7879 LIBSMBCLIENT = $_smb
7880 LIBTHEORA = $_theora
7881 LIRC = $_lirc
7882 LIVE555 = $_live
7883 MACOSX_FINDER = $_macosx_finder
7884 MD5SUM = $_md5sum
7885 MGA = $_mga
7886 MNG = $_mng
7887 MP3LAME = $_mp3lame
7888 MP3LIB = $_mp3lib
7889 MPG123 = $_mpg123
7890 MUSEPACK = $_musepack
7891 NAS = $_nas
7892 NATIVE_RTSP = $_native_rtsp
7893 NETWORKING = $networking
7894 OPENAL = $_openal
7895 OSS = $_ossaudio
7896 PE_EXECUTABLE = $_pe_executable
7897 PNG = $_png
7898 PNM = $_pnm
7899 PRIORITY = $_priority
7900 PULSE = $_pulse
7901 PVR = $_pvr
7902 QTX_CODECS = $_qtx
7903 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7904 QTX_EMULATION = $_qtx_emulation
7905 QUARTZ = $_quartz
7906 RADIO=$_radio
7907 RADIO_CAPTURE=$_radio_capture
7908 REAL_CODECS = $_real
7909 S3FB = $_s3fb
7910 SDL = $_sdl
7911 SPEEX = $_speex
7912 STREAM_CACHE = $_stream_cache
7913 SGIAUDIO = $_sgiaudio
7914 SUNAUDIO = $_sunaudio
7915 SVGA = $_svga
7916 TDFXFB = $_tdfxfb
7917 TDFXVID = $_tdfxvid
7918 TGA = $_tga
7919 TOOLAME=$_toolame
7920 TREMOR_INTERNAL = $_tremor_internal
7921 TV = $_tv
7922 TV_BSDBT848 = $_tv_bsdbt848
7923 TV_DSHOW = $_tv_dshow
7924 TV_V4L = $_tv_v4l
7925 TV_V4L1 = $_tv_v4l1
7926 TV_V4L2 = $_tv_v4l2
7927 TWOLAME=$_twolame
7928 UNRAR_EXEC = $_unrar_exec
7929 V4L2 = $_v4l2
7930 VCD = $_vcd
7931 VDPAU = $_vdpau
7932 VESA = $_vesa
7933 VIDIX = $_vidix
7934 VIDIX_PCIDB = $_vidix_pcidb_val
7935 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7936 VIDIX_IVTV=$_vidix_drv_ivtv
7937 VIDIX_MACH64=$_vidix_drv_mach64
7938 VIDIX_MGA=$_vidix_drv_mga
7939 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7940 VIDIX_NVIDIA=$_vidix_drv_nvidia
7941 VIDIX_PM2=$_vidix_drv_pm2
7942 VIDIX_PM3=$_vidix_drv_pm3
7943 VIDIX_RADEON=$_vidix_drv_radeon
7944 VIDIX_RAGE128=$_vidix_drv_rage128
7945 VIDIX_S3=$_vidix_drv_s3
7946 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7947 VIDIX_SIS=$_vidix_drv_sis
7948 VIDIX_UNICHROME=$_vidix_drv_unichrome
7949 VORBIS = $_vorbis
7950 VSTREAM = $_vstream
7951 WII = $_wii
7952 WIN32DLL = $_win32dll
7953 WIN32WAVEOUT = $_win32waveout
7954 WIN32_EMULATION = $_win32_emulation
7955 WINVIDIX = $winvidix
7956 X11 = $_x11
7957 X264 = $_x264
7958 XANIM_CODECS = $_xanim
7959 XMGA = $_xmga
7960 XMMS_PLUGINS = $_xmms
7961 XV = $_xv
7962 XVID4 = $_xvid
7963 XVIDIX = $xvidix
7964 XVMC = $_xvmc
7965 XVR100 = $_xvr100
7966 YUV4MPEG = $_yuv4mpeg
7967 ZR = $_zr
7969 # FFmpeg
7970 LIBAVUTIL = $_libavutil
7971 LIBAVCODEC = $_libavcodec
7972 LIBAVFORMAT = $_libavformat
7973 LIBPOSTPROC = $_libpostproc
7974 LIBSWSCALE = $_libswscale
7975 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7976 LIBSWSCALE_INTERNALS = $_libswscale_internals
7977 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7979 RANLIB = $_ranlib
7980 YASM = $_yasm
7981 YASMFLAGS = $YASMFLAGS
7983 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7984 CONFIG_AANDCT = yes
7985 CONFIG_FFT = yes
7986 CONFIG_GOLOMB = yes
7987 CONFIG_H264DSP = yes
7988 CONFIG_LPC = yes
7989 CONFIG_MDCT = yes
7990 CONFIG_RDFT = yes
7992 CONFIG_BZLIB = $bzlib
7993 CONFIG_ENCODERS = yes
7994 CONFIG_GPL = yes
7995 CONFIG_MLIB = $_mlib
7996 CONFIG_MUXERS = $_mencoder
7997 CONFIG_VDPAU = $_vdpau
7998 CONFIG_XVMC = $_xvmc
7999 CONFIG_ZLIB = $_zlib
8001 HAVE_PTHREADS = $_pthreads
8002 HAVE_SHM = $_shm
8003 HAVE_W32THREADS = $_w32threads
8004 HAVE_YASM = $have_yasm
8008 #############################################################################
8010 ff_config_enable () {
8011 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8012 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8013 _nprefix=$3;
8014 test -z "$_nprefix" && _nprefix='CONFIG'
8015 for part in $list; do
8016 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8017 echo "#define ${_nprefix}_$part 1"
8018 else
8019 echo "#define ${_nprefix}_$part 0"
8021 done
8024 echo "Creating config.h"
8025 cat > $TMPH << EOF
8026 /*----------------------------------------------------------------------------
8027 ** This file has been automatically generated by configure any changes in it
8028 ** will be lost when you run configure again.
8029 ** Instead of modifying definitions here, use the --enable/--disable options
8030 ** of the configure script! See ./configure --help for details.
8031 *---------------------------------------------------------------------------*/
8033 #ifndef MPLAYER_CONFIG_H
8034 #define MPLAYER_CONFIG_H
8036 /* Undefine this if you do not want to select mono audio (left or right)
8037 with a stereo MPEG layer 2/3 audio stream. The command line option
8038 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8039 right-only), with 0 being the default.
8041 #define CONFIG_FAKE_MONO 1
8043 /* set up audio OUTBURST. Do not change this! */
8044 #define OUTBURST 512
8046 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8047 #undef FAST_OSD
8048 #undef FAST_OSD_TABLE
8050 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8051 #define MPEG12_POSTPROC 1
8052 #define ATTRIBUTE_ALIGNED_MAX 16
8056 #define CONFIGURATION "$configuration"
8058 #define MPLAYER_DATADIR "$_datadir"
8059 #define MPLAYER_CONFDIR "$_confdir"
8060 #define MPLAYER_LIBDIR "$_libdir"
8061 #define MPLAYER_LOCALEDIR "$_localedir"
8063 $def_translation
8065 /* definitions needed by included libraries */
8066 #define HAVE_INTTYPES_H 1
8067 /* libmpeg2 + FFmpeg */
8068 $def_fast_inttypes
8069 /* libdvdcss */
8070 #define HAVE_ERRNO_H 1
8071 /* libdvdcss + libdvdread */
8072 #define HAVE_LIMITS_H 1
8073 /* libdvdcss + libfaad2 */
8074 #define HAVE_UNISTD_H 1
8075 /* libfaad2 + libdvdread */
8076 #define STDC_HEADERS 1
8077 #define HAVE_MEMCPY 1
8078 /* libfaad2 */
8079 #define HAVE_STRING_H 1
8080 #define HAVE_STRINGS_H 1
8081 #define HAVE_SYS_STAT_H 1
8082 #define HAVE_SYS_TYPES_H 1
8083 /* libdvdnav */
8084 #define READ_CACHE_TRACE 0
8085 /* libdvdread */
8086 #define HAVE_DLFCN_H 1
8087 $def_dvdcss
8090 /* system headers */
8091 $def_alloca_h
8092 $def_alsa_asoundlib_h
8093 $def_altivec_h
8094 $def_malloc_h
8095 $def_mman_h
8096 $def_mman_has_map_failed
8097 $def_soundcard_h
8098 $def_sys_asoundlib_h
8099 $def_sys_soundcard_h
8100 $def_sys_sysinfo_h
8101 $def_termios_h
8102 $def_termios_sys_h
8103 $def_winsock2_h
8106 /* system functions */
8107 $def_gethostbyname2
8108 $def_gettimeofday
8109 $def_glob
8110 $def_langinfo
8111 $def_lrintf
8112 $def_map_memalign
8113 $def_memalign
8114 $def_nanosleep
8115 $def_posix_select
8116 $def_select
8117 $def_setenv
8118 $def_setmode
8119 $def_shm
8120 $def_strsep
8121 $def_swab
8122 $def_sysi86
8123 $def_sysi86_iv
8124 $def_termcap
8125 $def_termios
8126 $def_vsscanf
8129 /* system-specific features */
8130 $def_asmalign_pot
8131 $def_builtin_expect
8132 $def_dl
8133 $def_dos_paths
8134 $def_extern_asm
8135 $def_extern_prefix
8136 $def_iconv
8137 $def_kstat
8138 $def_macosx_bundle
8139 $def_macosx_finder
8140 $def_maemo
8141 $def_named_asm_args
8142 $def_priority
8143 $def_quicktime
8144 $def_restrict_keyword
8145 $def_rtc
8146 $def_unrar_exec
8149 /* configurable options */
8150 $def_charset
8151 $def_crash_debug
8152 $def_debug
8153 $def_dynamic_plugins
8154 $def_fastmemcpy
8155 $def_menu
8156 $def_runtime_cpudetection
8157 $def_sighandler
8158 $def_sortsub
8159 $def_stream_cache
8160 $def_pthread_cache
8163 /* CPU stuff */
8164 #define __CPU__ $iproc
8165 $def_ebx_available
8166 $def_words_endian
8167 $def_bigendian
8168 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8169 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8170 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8173 /* Blu-ray/DVD/VCD/CD */
8174 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8175 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8176 $def_bluray
8177 $def_bsdi_dvd
8178 $def_cddb
8179 $def_cdio
8180 $def_cdparanoia
8181 $def_cdrom
8182 $def_dvd
8183 $def_dvd_bsd
8184 $def_dvd_darwin
8185 $def_dvd_linux
8186 $def_dvd_openbsd
8187 $def_dvdio
8188 $def_dvdnav
8189 $def_dvdread
8190 $def_hpux_scsi_h
8191 $def_libcdio
8192 $def_sol_scsi_h
8193 $def_vcd
8196 /* codec libraries */
8197 $def_faac
8198 $def_faad
8199 $def_faad_internal
8200 $def_liba52
8201 $def_libdca
8202 $def_libdv
8203 $def_liblzo
8204 $def_libmpeg2
8205 $def_mad
8206 $def_mp3lame
8207 $def_mp3lame_preset
8208 $def_mp3lame_preset_medium
8209 $def_mp3lib
8210 $def_mpg123
8211 $def_musepack
8212 $def_speex
8213 $def_theora
8214 $def_toolame
8215 $def_tremor
8216 $def_twolame
8217 $def_vorbis
8218 $def_x264
8219 $def_xvid
8220 $def_zlib
8222 $def_libnut
8225 /* binary codecs */
8226 $def_qtx
8227 $def_qtx_win32
8228 $def_real
8229 $def_win32_loader
8230 $def_win32dll
8231 $def_xanim
8232 $def_xmms
8233 #define BINARY_CODECS_PATH "$_codecsdir"
8234 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8237 /* Audio output drivers */
8238 $def_alsa
8239 $def_alsa1x
8240 $def_alsa5
8241 $def_alsa9
8242 $def_arts
8243 $def_coreaudio
8244 $def_dart
8245 $def_esd
8246 $def_esd_latency
8247 $def_jack
8248 $def_kai
8249 $def_nas
8250 $def_openal
8251 $def_openal_h
8252 $def_ossaudio
8253 $def_ossaudio_devdsp
8254 $def_ossaudio_devmixer
8255 $def_pulse
8256 $def_sgiaudio
8257 $def_sunaudio
8258 $def_win32waveout
8260 $def_ladspa
8261 $def_libbs2b
8264 /* input */
8265 $def_apple_ir
8266 $def_apple_remote
8267 $def_ioctl_bt848_h_name
8268 $def_ioctl_meteor_h_name
8269 $def_joystick
8270 $def_lirc
8271 $def_lircc
8272 $def_pvr
8273 $def_radio
8274 $def_radio_bsdbt848
8275 $def_radio_capture
8276 $def_radio_v4l
8277 $def_radio_v4l2
8278 $def_tv
8279 $def_tv_bsdbt848
8280 $def_tv_dshow
8281 $def_tv_v4l
8282 $def_tv_v4l1
8283 $def_tv_v4l2
8286 /* font stuff */
8287 $def_ass
8288 $def_bitmap_font
8289 $def_enca
8290 $def_fontconfig
8291 $def_freetype
8292 $def_fribidi
8295 /* networking */
8296 $def_closesocket
8297 $def_ftp
8298 $def_inet6
8299 $def_inet_aton
8300 $def_inet_pton
8301 $def_live
8302 $def_nemesi
8303 $def_networking
8304 $def_smb
8305 $def_socklen_t
8306 $def_vstream
8309 /* libvo options */
8310 $def_3dfx
8311 $def_aa
8312 $def_bl
8313 $def_caca
8314 $def_corevideo
8315 $def_dfbmga
8316 $def_dga
8317 $def_dga1
8318 $def_dga2
8319 $def_direct3d
8320 $def_directfb
8321 $def_directfb_version
8322 $def_directx
8323 $def_dvb
8324 $def_dvbin
8325 $def_dxr2
8326 $def_dxr3
8327 $def_fbdev
8328 $def_ggi
8329 $def_ggiwmh
8330 $def_gif
8331 $def_gif_4
8332 $def_gif_tvt_hack
8333 $def_gl
8334 $def_gl_win32
8335 $def_gl_x11
8336 $def_gl_sdl
8337 $def_matrixview
8338 $def_ivtv
8339 $def_jpeg
8340 $def_kva
8341 $def_md5sum
8342 $def_mga
8343 $def_mng
8344 $def_png
8345 $def_pnm
8346 $def_quartz
8347 $def_s3fb
8348 $def_sdl
8349 $def_sdl_sdl_h
8350 $def_svga
8351 $def_tdfxfb
8352 $def_tdfxvid
8353 $def_tga
8354 $def_v4l2
8355 $def_vdpau
8356 $def_vesa
8357 $def_vidix
8358 $def_vidix_drv_cyberblade
8359 $def_vidix_drv_ivtv
8360 $def_vidix_drv_mach64
8361 $def_vidix_drv_mga
8362 $def_vidix_drv_mga_crtc2
8363 $def_vidix_drv_nvidia
8364 $def_vidix_drv_pm3
8365 $def_vidix_drv_radeon
8366 $def_vidix_drv_rage128
8367 $def_vidix_drv_s3
8368 $def_vidix_drv_sh_veu
8369 $def_vidix_drv_sis
8370 $def_vidix_drv_unichrome
8371 $def_vidix_pfx
8372 $def_vm
8373 $def_wii
8374 $def_x11
8375 $def_xdpms
8376 $def_xf86keysym
8377 $def_xinerama
8378 $def_xmga
8379 $def_xss
8380 $def_xv
8381 $def_xvmc
8382 $def_xvr100
8383 $def_yuv4mpeg
8384 $def_zr
8387 /* FFmpeg */
8388 $def_libavcodec
8389 $def_libavformat
8390 $def_libavutil
8391 $def_libpostproc
8392 $def_libswscale
8393 $def_libavcodec_internals
8394 $def_libswscale_internals
8396 #define CONFIG_DECODERS 1
8397 #define CONFIG_ENCODERS 1
8398 #define CONFIG_DEMUXERS 1
8399 $def_muxers
8401 $def_arpa_inet_h
8402 $def_bswap
8403 $def_bzlib
8404 $def_dcbzl
8405 $def_exp2
8406 $def_exp2f
8407 $def_fast_64bit
8408 $def_fast_unaligned
8409 $def_llrint
8410 $def_log2
8411 $def_log2f
8412 $def_lrint
8413 $def_memalign_hack
8414 $def_mlib
8415 $def_mkstemp
8416 $def_posix_memalign
8417 $def_pthreads
8418 $def_round
8419 $def_roundf
8420 $def_ten_operands
8421 $def_threads
8422 $def_truncf
8423 $def_xform_asm
8424 $def_yasm
8426 #define CONFIG_FASTDIV 0
8427 #define CONFIG_FFSERVER 0
8428 #define CONFIG_GPL 1
8429 #define CONFIG_GRAY 0
8430 #define CONFIG_HARDCODED_TABLES 0
8431 #define CONFIG_LIBVORBIS 0
8432 #define CONFIG_POWERPC_PERF 0
8433 #define CONFIG_SMALL 0
8434 #define CONFIG_SWSCALE_ALPHA 1
8436 #define HAVE_ATTRIBUTE_PACKED 1
8437 #define HAVE_GETHRTIME 0
8438 #define HAVE_INLINE_ASM 1
8439 #define HAVE_LDBRX 0
8440 #define HAVE_POLL_H 1
8441 #define HAVE_PPC4XX 0
8442 #define HAVE_VFP_ARGS 1
8443 #define HAVE_VIRTUALALLOC 0
8445 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8446 #define CONFIG_AANDCT 1
8447 #define CONFIG_DCT 1
8448 #define CONFIG_DWT 1
8449 #define CONFIG_FFT 1
8450 #define CONFIG_GOLOMB 1
8451 #define CONFIG_H264DSP 1
8452 #define CONFIG_LPC 1
8453 #define CONFIG_MDCT 1
8454 #define CONFIG_RDFT 1
8456 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8457 #ifndef MP_DEBUG
8458 #define HAVE_EBP_AVAILABLE 1
8459 #else
8460 #define HAVE_EBP_AVAILABLE 0
8461 #endif
8463 #define CONFIG_H263_VAAPI_HWACCEL 0
8464 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8465 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8466 #define CONFIG_H264_VAAPI_HWACCEL 0
8467 #define CONFIG_VC1_VAAPI_HWACCEL 0
8468 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8470 #endif /* MPLAYER_CONFIG_H */
8473 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8474 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8476 #############################################################################
8478 ./version.sh `$_cc -dumpversion`
8480 cat << EOF
8482 Config files successfully generated by ./configure $configuration !
8484 Install prefix: $_prefix
8485 Data directory: $_datadir
8486 Config direct.: $_confdir
8488 Byte order: $_byte_order
8489 Optimizing for: $_optimizing
8491 Languages:
8492 Messages (in addition to English): $language_msg
8493 Manual pages: $language_man
8494 Documentation: $language_doc
8496 Enabled optional drivers:
8497 Input: $inputmodules
8498 Codecs: $codecmodules
8499 Audio output: $aomodules
8500 Video output: $vomodules
8502 Disabled optional drivers:
8503 Input: $noinputmodules
8504 Codecs: $nocodecmodules
8505 Audio output: $noaomodules
8506 Video output: $novomodules
8508 'config.h' and 'config.mak' contain your configuration options.
8509 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8510 compile *** DO NOT REPORT BUGS if you tweak these files ***
8512 'make' will now compile MPlayer and 'make install' will install it.
8513 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8518 if test "$_mtrr" = yes ; then
8519 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8520 echo
8523 if ! x86_32; then
8524 cat <<EOF
8525 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8526 operating system ($system_name). You may encounter a few files that cannot
8527 be played due to missing open source video/audio codec support.
8533 cat <<EOF
8534 Check $TMPLOG if you wonder why an autodetection failed (make sure
8535 development headers/packages are installed).
8537 NOTE: The --enable-* parameters unconditionally force options on, completely
8538 skipping autodetection. This behavior is unlike what you may be used to from
8539 autoconf-based configure scripts that can decide to override you. This greater
8540 level of control comes at a price. You may have to provide the correct compiler
8541 and linker flags yourself.
8542 If you used one of these options (except --enable-menu and similar ones that
8543 turn on internal features) and experience a compilation or linking failure,
8544 make sure you have passed the necessary compiler/linker flags to configure.
8546 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8550 if test "$warn_cflags" = yes; then
8551 cat <<EOF
8553 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8554 but:
8556 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8558 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8559 To do so, execute 'CFLAGS= ./configure <options>'
8564 # Last move:
8565 rm -rf "$mplayer_tmpdir"