cleanup: malloc+memset->calloc, sizeof(TYPE)->sizeof(*ptr)
[mplayer.git] / configure
blob176c4d3fc9029d1580a1a52f9bd78da766577f92
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-mencoder disable MEncoder (A/V encoder) compilation [enable]
268 --disable-mplayer disable MPlayer compilation [enable]
269 --disable-largefiles disable support for files > 2GB [enable]
270 --enable-termcap use termcap database for key codes [autodetect]
271 --enable-termios use termios database for key codes [autodetect]
272 --disable-iconv disable iconv for encoding conversion [autodetect]
273 --disable-langinfo do not use langinfo [autodetect]
274 --enable-lirc enable LIRC (remote control) support [autodetect]
275 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
276 --enable-joystick enable joystick support [disable]
277 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
278 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
279 --disable-vm disable X video mode extensions [autodetect]
280 --disable-xf86keysym disable support for multimedia keys [autodetect]
281 --enable-radio enable radio interface [disable]
282 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
283 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
284 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
285 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
286 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
287 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
288 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
289 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
290 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
291 --disable-networking disable networking [enable]
292 --enable-winsock2_h enable winsock2_h [autodetect]
293 --enable-smb enable Samba (SMB) input [autodetect]
294 --enable-live enable LIVE555 Streaming Media [autodetect]
295 --enable-nemesi enable Nemesi Streaming Media [autodetect]
296 --disable-vcd disable VCD support [autodetect]
297 --disable-bluray disable Blu-ray support [autodetect]
298 --disable-dvdnav disable libdvdnav [autodetect]
299 --disable-dvdread disable libdvdread [autodetect]
300 --disable-dvdread-internal disable internal libdvdread [autodetect]
301 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
302 --disable-cdparanoia disable cdparanoia [autodetect]
303 --disable-cddb disable cddb [autodetect]
304 --disable-bitmap-font disable bitmap font support [enable]
305 --disable-freetype disable FreeType 2 font rendering [autodetect]
306 --disable-fontconfig disable fontconfig font lookup [autodetect]
307 --disable-unrarexec disable using of UnRAR executable [enabled]
308 --enable-menu enable OSD menu (not DVD menu) [disabled]
309 --disable-sortsub disable subtitle sorting [enabled]
310 --enable-fribidi enable the FriBiDi libs [autodetect]
311 --disable-enca disable ENCA charset oracle library [autodetect]
312 --disable-maemo disable maemo specific features [autodetect]
313 --enable-macosx-finder enable Mac OS X Finder invocation parameter
314 parsing [disabled]
315 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
316 --disable-inet6 disable IPv6 support [autodetect]
317 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
318 --disable-ftp disable FTP support [enabled]
319 --disable-vstream disable TiVo vstream client support [autodetect]
320 --disable-pthreads disable Posix threads support [autodetect]
321 --disable-w32threads disable Win32 threads support [autodetect]
322 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
323 --enable-rpath enable runtime linker path for extra libs [disabled]
325 Codecs:
326 --enable-gif enable GIF support [autodetect]
327 --enable-png enable PNG input/output support [autodetect]
328 --enable-mng enable MNG input support [autodetect]
329 --enable-jpeg enable JPEG input/output support [autodetect]
330 --enable-libcdio enable libcdio support [autodetect]
331 --enable-liblzo enable liblzo support [autodetect]
332 --disable-win32dll disable Win32 DLL support [autodetect]
333 --disable-qtx disable QuickTime codecs support [enabled]
334 --disable-xanim disable XAnim codecs support [enabled]
335 --disable-real disable RealPlayer codecs support [enabled]
336 --disable-xvid disable Xvid [autodetect]
337 --disable-x264 disable x264 [autodetect]
338 --disable-libnut disable libnut [autodetect]
339 --disable-libavutil disable libavutil [autodetect]
340 --disable-libavcodec disable libavcodec [autodetect]
341 --disable-libavformat disable libavformat [autodetect]
342 --disable-libpostproc disable libpostproc [autodetect]
343 --disable-libswscale disable libswscale [autodetect]
344 --disable-tremor-internal disable internal Tremor [enabled]
345 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
346 --enable-tremor enable external Tremor [autodetect]
347 --disable-libvorbis disable libvorbis support [autodetect]
348 --disable-speex disable Speex support [autodetect]
349 --enable-theora enable OggTheora libraries [autodetect]
350 --enable-faad enable external FAAD2 (AAC) [autodetect]
351 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
352 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
353 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
354 --disable-ladspa disable LADSPA plugin support [autodetect]
355 --disable-libbs2b disable libbs2b audio filter support [autodetect]
356 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
357 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
358 --disable-mad disable libmad (MPEG audio) support [autodetect]
359 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
360 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
361 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
362 --enable-xmms enable XMMS input plugin support [disabled]
363 --enable-libdca enable libdca support [autodetect]
364 --disable-mp3lib disable builtin mp3lib [autodetect]
365 --disable-liba52 disable liba52 [autodetect]
366 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
367 --disable-musepack disable musepack support [autodetect]
369 Video output:
370 --disable-vidix disable VIDIX [for x86 *nix]
371 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
372 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
373 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
374 --disable-vidix-pcidb disable VIDIX PCI device name database
375 --enable-dhahelper enable VIDIX dhahelper support
376 --enable-svgalib_helper enable VIDIX svgalib_helper support
377 --enable-gl enable OpenGL video output [autodetect]
378 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
379 --enable-dga2 enable DGA 2 support [autodetect]
380 --enable-dga1 enable DGA 1 support [autodetect]
381 --enable-vesa enable VESA video output [autodetect]
382 --enable-svga enable SVGAlib video output [autodetect]
383 --enable-sdl enable SDL video output [autodetect]
384 --enable-kva enable KVA video output [autodetect]
385 --enable-aa enable AAlib video output [autodetect]
386 --enable-caca enable CACA video output [autodetect]
387 --enable-ggi enable GGI video output [autodetect]
388 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
389 --enable-direct3d enable Direct3D video output [autodetect]
390 --enable-directx enable DirectX video output [autodetect]
391 --enable-dxr2 enable DXR2 video output [autodetect]
392 --enable-dxr3 enable DXR3/H+ video output [autodetect]
393 --enable-ivtv enable IVTV TV-Out video output [autodetect]
394 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
395 --enable-dvb enable DVB video output [autodetect]
396 --enable-mga enable mga_vid video output [autodetect]
397 --enable-xmga enable mga_vid X11 video output [autodetect]
398 --enable-xv enable Xv video output [autodetect]
399 --enable-xvmc enable XvMC acceleration [disable]
400 --enable-vdpau enable VDPAU acceleration [autodetect]
401 --enable-vm enable XF86VidMode support [autodetect]
402 --enable-xinerama enable Xinerama support [autodetect]
403 --enable-x11 enable X11 video output [autodetect]
404 --enable-xshape enable XShape support [autodetect]
405 --disable-xss disable screensaver support via xss [autodetect]
406 --enable-fbdev enable FBDev video output [autodetect]
407 --enable-mlib enable mediaLib video output (Solaris) [disable]
408 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
409 --enable-tdfxfb enable tdfxfb video output [disable]
410 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
411 --enable-wii enable Nintendo Wii/GameCube video output [disable]
412 --enable-directfb enable DirectFB video output [autodetect]
413 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
414 --enable-bl enable Blinkenlights video output [disable]
415 --enable-tdfxvid enable tdfx_vid video output [disable]
416 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
417 --disable-tga disable Targa video output [enable]
418 --disable-pnm disable PNM video output [enable]
419 --disable-md5sum disable md5sum video output [enable]
420 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
421 --disable-corevideo disable CoreVideo video output [autodetect]
422 --disable-quartz disable Quartz video output [autodetect]
424 Audio output:
425 --disable-alsa disable ALSA audio output [autodetect]
426 --disable-ossaudio disable OSS audio output [autodetect]
427 --disable-arts disable aRts audio output [autodetect]
428 --disable-esd disable esd audio output [autodetect]
429 --disable-pulse disable Pulseaudio audio output [autodetect]
430 --disable-jack disable JACK audio output [autodetect]
431 --enable-openal enable OpenAL audio output [disable]
432 --disable-nas disable NAS audio output [autodetect]
433 --disable-sgiaudio disable SGI audio output [autodetect]
434 --disable-sunaudio disable Sun audio output [autodetect]
435 --disable-kai disable KAI audio output [autodetect]
436 --disable-dart disable DART audio output [autodetect]
437 --disable-win32waveout disable Windows waveout audio output [autodetect]
438 --disable-coreaudio disable CoreAudio audio output [autodetect]
439 --disable-select disable using select() on the audio device [enable]
441 Language options:
442 --enable-translation enable support for translated output [disable]
443 --charset=charset convert the console messages to this character set
444 --language-doc=lang language to use for the documentation [en]
445 --language-man=lang language to use for the man pages [en]
446 --language-msg=lang extra languages for program messages [all]
447 --language=lang default language to use [en]
448 Specific options override --language. You can pass a list of languages separated
449 by whitespace or commas instead of a single language. Nonexisting translations
450 will be dropped from each list. All translations available in the list will be
451 installed. The value "all" will activate all translations. The LINGUAS
452 environment variable is honored. In all cases the fallback is English.
453 The program always supports English-language output; additional message
454 languages are only installed if --enable-translation is also specified.
455 Available values for --language-doc are: all $doc_lang_all
456 Available values for --language-man are: all $man_lang_all
457 Available values for --language-msg are: all $msg_lang_all
459 Miscellaneous options:
460 --enable-runtime-cpudetection enable runtime CPU detection [disable]
461 --enable-cross-compile enable cross-compilation [autodetect]
462 --cc=COMPILER C compiler to build MPlayer [gcc]
463 --host-cc=COMPILER C compiler for tools needed while building [gcc]
464 --as=ASSEMBLER assembler to build MPlayer [as]
465 --nm=NM nm tool to build MPlayer [nm]
466 --yasm=YASM Yasm assembler to build MPlayer [yasm]
467 --ar=AR librarian to build MPlayer [ar]
468 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
469 --windres=WINDRES windres to build MPlayer [windres]
470 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
471 --enable-static build a statically linked binary
472 --with-install=PATH path to a custom install program
474 Advanced options:
475 --enable-mmx enable MMX [autodetect]
476 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
477 --enable-3dnow enable 3DNow! [autodetect]
478 --enable-3dnowext enable extended 3DNow! [autodetect]
479 --enable-sse enable SSE [autodetect]
480 --enable-sse2 enable SSE2 [autodetect]
481 --enable-ssse3 enable SSSE3 [autodetect]
482 --enable-shm enable shm [autodetect]
483 --enable-altivec enable AltiVec (PowerPC) [autodetect]
484 --enable-armv5te enable DSP extensions (ARM) [autodetect]
485 --enable-armv6 enable ARMv6 (ARM) [autodetect]
486 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
487 --enable-armvfp enable ARM VFP (ARM) [autodetect]
488 --enable-neon enable NEON (ARM) [autodetect]
489 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
490 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
491 --enable-big-endian force byte order to big-endian [autodetect]
492 --enable-debug[=1-3] compile-in debugging information [disable]
493 --enable-profile compile-in profiling information [disable]
494 --disable-sighandler disable sighandler for crashes [enable]
495 --enable-crash-debug enable automatic gdb attach on crash [disable]
496 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
497 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
499 Use these options if autodetection fails:
500 --extra-cflags=FLAGS extra CFLAGS
501 --extra-ldflags=FLAGS extra LDFLAGS
502 --extra-libs=FLAGS extra linker flags
503 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
504 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
505 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
507 --with-freetype-config=PATH path to freetype-config
508 --with-glib-config=PATH path to glib*-config
509 --with-gtk-config=PATH path to gtk*-config
510 --with-sdl-config=PATH path to sdl*-config
511 --with-dvdnav-config=PATH path to dvdnav-config
512 --with-dvdread-config=PATH path to dvdread-config
514 This configure script is NOT autoconf-based, even though its output is similar.
515 It will try to autodetect all configuration options. If you --enable an option
516 it will be forcefully turned on, skipping autodetection. This can break
517 compilation, so you need to know what you are doing.
519 exit 0
520 } #show_help()
522 # GOTCHA: the variables below defines the default behavior for autodetection
523 # and have - unless stated otherwise - at least 2 states : yes no
524 # If autodetection is available then the third state is: auto
525 _mmx=auto
526 _3dnow=auto
527 _3dnowext=auto
528 _mmxext=auto
529 _sse=auto
530 _sse2=auto
531 _ssse3=auto
532 _cmov=auto
533 _fast_cmov=auto
534 _fast_clz=auto
535 _armv5te=auto
536 _armv6=auto
537 _armv6t2=auto
538 _armvfp=auto
539 neon=auto
540 _iwmmxt=auto
541 _mtrr=auto
542 _altivec=auto
543 _install=install
544 _ranlib=ranlib
545 _windres=windres
546 _cc=cc
547 _ar=ar
548 test "$CC" && _cc="$CC"
549 _as=auto
550 _nm=auto
551 _yasm=yasm
552 _runtime_cpudetection=no
553 _cross_compile=auto
554 _prefix="/usr/local"
555 _libavutil=auto
556 _libavcodec=auto
557 _libavformat=auto
558 _libpostproc=auto
559 _libswscale=auto
560 _libavcodec_internals=no
561 _libswscale_internals=no
562 _mencoder=yes
563 _mplayer=yes
564 _x11=auto
565 _xshape=auto
566 _xss=auto
567 _dga1=auto
568 _dga2=auto
569 _xv=auto
570 _xvmc=no #auto when complete
571 _vdpau=auto
572 _sdl=auto
573 _kva=auto
574 _direct3d=auto
575 _directx=auto
576 _win32waveout=auto
577 _nas=auto
578 _png=auto
579 _mng=auto
580 _jpeg=auto
581 _pnm=yes
582 _md5sum=yes
583 _yuv4mpeg=yes
584 _gif=auto
585 _gl=auto
586 matrixview=yes
587 _ggi=auto
588 _ggiwmh=auto
589 _aa=auto
590 _caca=auto
591 _svga=auto
592 _vesa=auto
593 _fbdev=auto
594 _dvb=auto
595 _dxr2=auto
596 _dxr3=auto
597 _ivtv=auto
598 _v4l2=auto
599 _iconv=auto
600 _langinfo=auto
601 _rtc=auto
602 _ossaudio=auto
603 _arts=auto
604 _esd=auto
605 _pulse=auto
606 _jack=auto
607 _kai=auto
608 _dart=auto
609 _openal=no
610 _libcdio=auto
611 _liblzo=auto
612 _mad=auto
613 _mp3lame=auto
614 _toolame=auto
615 _twolame=auto
616 _tremor=auto
617 _tremor_internal=yes
618 _tremor_low=no
619 _libvorbis=auto
620 _speex=auto
621 _theora=auto
622 _mpg123=auto
623 _mp3lib=auto
624 _liba52=auto
625 _libdca=auto
626 _libmpeg2=auto
627 _faad=auto
628 _faad_internal=auto
629 _faad_fixed=no
630 _faac=auto
631 _ladspa=auto
632 _libbs2b=auto
633 _xmms=no
634 _vcd=auto
635 _bluray=auto
636 _dvdnav=auto
637 _dvdnavconfig=dvdnav-config
638 _dvdreadconfig=dvdread-config
639 _dvdread=auto
640 _dvdread_internal=auto
641 _libdvdcss_internal=auto
642 _xanim=auto
643 _real=auto
644 _live=auto
645 _nemesi=auto
646 _native_rtsp=yes
647 _xinerama=auto
648 _mga=auto
649 _xmga=auto
650 _vm=auto
651 _xf86keysym=auto
652 _mlib=no #broken, thus disabled
653 _sgiaudio=auto
654 _sunaudio=auto
655 _alsa=auto
656 _fastmemcpy=yes
657 _unrar_exec=auto
658 _win32dll=auto
659 _select=yes
660 _radio=no
661 _radio_capture=no
662 _radio_v4l=auto
663 _radio_v4l2=auto
664 _radio_bsdbt848=auto
665 _tv=yes
666 _tv_v4l1=auto
667 _tv_v4l2=auto
668 _tv_bsdbt848=auto
669 _tv_dshow=auto
670 _pvr=auto
671 networking=yes
672 _winsock2_h=auto
673 _smb=auto
674 _vidix=auto
675 _vidix_pcidb=yes
676 _dhahelper=no
677 _svgalib_helper=no
678 _joystick=no
679 _xvid=auto
680 _x264=auto
681 _libnut=auto
682 _lirc=auto
683 _lircc=auto
684 _apple_remote=auto
685 _apple_ir=auto
686 _gui=no
687 _gtk1=no
688 _termcap=auto
689 _termios=auto
690 _3dfx=no
691 _s3fb=no
692 _wii=no
693 _tdfxfb=no
694 _tdfxvid=no
695 _xvr100=auto
696 _tga=yes
697 _directfb=auto
698 _zr=auto
699 _bl=no
700 _largefiles=yes
701 #language=en
702 _shm=auto
703 _translation=no
704 _charset="UTF-8"
705 _dynamic_plugins=no
706 _crash_debug=no
707 _sighandler=yes
708 _libdv=auto
709 _cdparanoia=auto
710 _cddb=auto
711 _big_endian=auto
712 _bitmap_font=yes
713 _freetype=auto
714 _fontconfig=auto
715 _menu=no
716 _qtx=auto
717 _maemo=auto
718 _coreaudio=auto
719 _corevideo=auto
720 _quartz=auto
721 quicktime=auto
722 _macosx_finder=no
723 _macosx_bundle=auto
724 _sortsub=yes
725 _freetypeconfig='freetype-config'
726 _fribidi=auto
727 _enca=auto
728 _inet6=auto
729 _gethostbyname2=auto
730 _ftp=yes
731 _musepack=auto
732 _vstream=auto
733 _pthreads=auto
734 _w32threads=auto
735 _ass=auto
736 _rpath=no
737 _asmalign_pot=auto
738 _stream_cache=yes
739 _priority=no
740 def_dos_paths="#define HAVE_DOS_PATHS 0"
741 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
742 def_priority="#undef CONFIG_PRIORITY"
743 def_pthread_cache="#undef PTHREAD_CACHE"
744 _need_shmem=yes
745 for ac_option do
746 case "$ac_option" in
747 --help|-help|-h)
748 show_help
750 --prefix=*)
751 _prefix=$(echo $ac_option | cut -d '=' -f 2)
753 --bindir=*)
754 _bindir=$(echo $ac_option | cut -d '=' -f 2)
756 --datadir=*)
757 _datadir=$(echo $ac_option | cut -d '=' -f 2)
759 --mandir=*)
760 _mandir=$(echo $ac_option | cut -d '=' -f 2)
762 --confdir=*)
763 _confdir=$(echo $ac_option | cut -d '=' -f 2)
765 --libdir=*)
766 _libdir=$(echo $ac_option | cut -d '=' -f 2)
768 --codecsdir=*)
769 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
771 --localedir=*)
772 _localedir=$(echo $ac_option | cut -d '=' -f 2)
775 --with-install=*)
776 _install=$(echo $ac_option | cut -d '=' -f 2 )
778 --with-xvmclib=*)
779 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
782 --with-sdl-config=*)
783 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
785 --with-freetype-config=*)
786 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
788 --with-gtk-config=*)
789 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
791 --with-glib-config=*)
792 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
794 --with-dvdnav-config=*)
795 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
797 --with-dvdread-config=*)
798 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
801 --extra-cflags=*)
802 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
804 --extra-ldflags=*)
805 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
807 --extra-libs=*)
808 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
810 --extra-libs-mplayer=*)
811 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
813 --extra-libs-mencoder=*)
814 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
817 --target=*)
818 _target=$(echo $ac_option | cut -d '=' -f 2)
820 --cc=*)
821 _cc=$(echo $ac_option | cut -d '=' -f 2)
823 --host-cc=*)
824 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
826 --as=*)
827 _as=$(echo $ac_option | cut -d '=' -f 2)
829 --nm=*)
830 _nm=$(echo $ac_option | cut -d '=' -f 2)
832 --yasm=*)
833 _yasm=$(echo $ac_option | cut -d '=' -f 2)
835 --ar=*)
836 _ar=$(echo $ac_option | cut -d '=' -f 2)
838 --ranlib=*)
839 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
841 --windres=*)
842 _windres=$(echo $ac_option | cut -d '=' -f 2)
844 --charset=*)
845 _charset=$(echo $ac_option | cut -d '=' -f 2)
847 --language-doc=*)
848 language_doc=$(echo $ac_option | cut -d '=' -f 2)
850 --language-man=*)
851 language_man=$(echo $ac_option | cut -d '=' -f 2)
853 --language-msg=*)
854 language_msg=$(echo $ac_option | cut -d '=' -f 2)
856 --language=*)
857 language=$(echo $ac_option | cut -d '=' -f 2)
860 --enable-static)
861 _ld_static='-static'
863 --disable-static)
864 _ld_static=''
866 --enable-profile)
867 _profile='-p'
869 --disable-profile)
870 _profile=
872 --enable-debug)
873 _debug='-g'
875 --enable-debug=*)
876 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
878 --disable-debug)
879 _debug=
881 --enable-translation) _translation=yes ;;
882 --disable-translation) _translation=no ;;
883 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
884 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
885 --enable-cross-compile) _cross_compile=yes ;;
886 --disable-cross-compile) _cross_compile=no ;;
887 --enable-mencoder) _mencoder=yes ;;
888 --disable-mencoder) _mencoder=no ;;
889 --enable-mplayer) _mplayer=yes ;;
890 --disable-mplayer) _mplayer=no ;;
891 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
892 --disable-dynamic-plugins) _dynamic_plugins=no ;;
893 --enable-x11) _x11=yes ;;
894 --disable-x11) _x11=no ;;
895 --enable-xshape) _xshape=yes ;;
896 --disable-xshape) _xshape=no ;;
897 --enable-xss) _xss=yes ;;
898 --disable-xss) _xss=no ;;
899 --enable-xv) _xv=yes ;;
900 --disable-xv) _xv=no ;;
901 --enable-xvmc) _xvmc=yes ;;
902 --disable-xvmc) _xvmc=no ;;
903 --enable-vdpau) _vdpau=yes ;;
904 --disable-vdpau) _vdpau=no ;;
905 --enable-sdl) _sdl=yes ;;
906 --disable-sdl) _sdl=no ;;
907 --enable-kva) _kva=yes ;;
908 --disable-kva) _kva=no ;;
909 --enable-direct3d) _direct3d=yes ;;
910 --disable-direct3d) _direct3d=no ;;
911 --enable-directx) _directx=yes ;;
912 --disable-directx) _directx=no ;;
913 --enable-win32waveout) _win32waveout=yes ;;
914 --disable-win32waveout) _win32waveout=no ;;
915 --enable-nas) _nas=yes ;;
916 --disable-nas) _nas=no ;;
917 --enable-png) _png=yes ;;
918 --disable-png) _png=no ;;
919 --enable-mng) _mng=yes ;;
920 --disable-mng) _mng=no ;;
921 --enable-jpeg) _jpeg=yes ;;
922 --disable-jpeg) _jpeg=no ;;
923 --enable-pnm) _pnm=yes ;;
924 --disable-pnm) _pnm=no ;;
925 --enable-md5sum) _md5sum=yes ;;
926 --disable-md5sum) _md5sum=no ;;
927 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
928 --disable-yuv4mpeg) _yuv4mpeg=no ;;
929 --enable-gif) _gif=yes ;;
930 --disable-gif) _gif=no ;;
931 --enable-gl) _gl=yes ;;
932 --disable-gl) _gl=no ;;
933 --enable-matrixview) matrixview=yes ;;
934 --disable-matrixview) matrixview=no ;;
935 --enable-ggi) _ggi=yes ;;
936 --disable-ggi) _ggi=no ;;
937 --enable-ggiwmh) _ggiwmh=yes ;;
938 --disable-ggiwmh) _ggiwmh=no ;;
939 --enable-aa) _aa=yes ;;
940 --disable-aa) _aa=no ;;
941 --enable-caca) _caca=yes ;;
942 --disable-caca) _caca=no ;;
943 --enable-svga) _svga=yes ;;
944 --disable-svga) _svga=no ;;
945 --enable-vesa) _vesa=yes ;;
946 --disable-vesa) _vesa=no ;;
947 --enable-fbdev) _fbdev=yes ;;
948 --disable-fbdev) _fbdev=no ;;
949 --enable-dvb) _dvb=yes ;;
950 --disable-dvb) _dvb=no ;;
951 --enable-dxr2) _dxr2=yes ;;
952 --disable-dxr2) _dxr2=no ;;
953 --enable-dxr3) _dxr3=yes ;;
954 --disable-dxr3) _dxr3=no ;;
955 --enable-ivtv) _ivtv=yes ;;
956 --disable-ivtv) _ivtv=no ;;
957 --enable-v4l2) _v4l2=yes ;;
958 --disable-v4l2) _v4l2=no ;;
959 --enable-iconv) _iconv=yes ;;
960 --disable-iconv) _iconv=no ;;
961 --enable-langinfo) _langinfo=yes ;;
962 --disable-langinfo) _langinfo=no ;;
963 --enable-rtc) _rtc=yes ;;
964 --disable-rtc) _rtc=no ;;
965 --enable-libdv) _libdv=yes ;;
966 --disable-libdv) _libdv=no ;;
967 --enable-ossaudio) _ossaudio=yes ;;
968 --disable-ossaudio) _ossaudio=no ;;
969 --enable-arts) _arts=yes ;;
970 --disable-arts) _arts=no ;;
971 --enable-esd) _esd=yes ;;
972 --disable-esd) _esd=no ;;
973 --enable-pulse) _pulse=yes ;;
974 --disable-pulse) _pulse=no ;;
975 --enable-jack) _jack=yes ;;
976 --disable-jack) _jack=no ;;
977 --enable-openal) _openal=yes ;;
978 --disable-openal) _openal=no ;;
979 --enable-kai) _kai=yes ;;
980 --disable-kai) _kai=no ;;
981 --enable-dart) _dart=yes ;;
982 --disable-dart) _dart=no ;;
983 --enable-mad) _mad=yes ;;
984 --disable-mad) _mad=no ;;
985 --enable-mp3lame) _mp3lame=yes ;;
986 --disable-mp3lame) _mp3lame=no ;;
987 --enable-toolame) _toolame=yes ;;
988 --disable-toolame) _toolame=no ;;
989 --enable-twolame) _twolame=yes ;;
990 --disable-twolame) _twolame=no ;;
991 --enable-libcdio) _libcdio=yes ;;
992 --disable-libcdio) _libcdio=no ;;
993 --enable-liblzo) _liblzo=yes ;;
994 --disable-liblzo) _liblzo=no ;;
995 --enable-libvorbis) _libvorbis=yes ;;
996 --disable-libvorbis) _libvorbis=no ;;
997 --enable-speex) _speex=yes ;;
998 --disable-speex) _speex=no ;;
999 --enable-tremor) _tremor=yes ;;
1000 --disable-tremor) _tremor=no ;;
1001 --enable-tremor-internal) _tremor_internal=yes ;;
1002 --disable-tremor-internal) _tremor_internal=no ;;
1003 --enable-tremor-low) _tremor_low=yes ;;
1004 --disable-tremor-low) _tremor_low=no ;;
1005 --enable-theora) _theora=yes ;;
1006 --disable-theora) _theora=no ;;
1007 --enable-mpg123) _mpg123=yes ;;
1008 --disable-mpg123) _mpg123=no ;;
1009 --enable-mp3lib) _mp3lib=yes ;;
1010 --disable-mp3lib) _mp3lib=no ;;
1011 --enable-liba52) _liba52=yes ;;
1012 --disable-liba52) _liba52=no ;;
1013 --enable-libdca) _libdca=yes ;;
1014 --disable-libdca) _libdca=no ;;
1015 --enable-libmpeg2) _libmpeg2=yes ;;
1016 --disable-libmpeg2) _libmpeg2=no ;;
1017 --enable-musepack) _musepack=yes ;;
1018 --disable-musepack) _musepack=no ;;
1019 --enable-faad) _faad=yes ;;
1020 --disable-faad) _faad=no ;;
1021 --enable-faad-internal) _faad_internal=yes ;;
1022 --disable-faad-internal) _faad_internal=no ;;
1023 --enable-faad-fixed) _faad_fixed=yes ;;
1024 --disable-faad-fixed) _faad_fixed=no ;;
1025 --enable-faac) _faac=yes ;;
1026 --disable-faac) _faac=no ;;
1027 --enable-ladspa) _ladspa=yes ;;
1028 --disable-ladspa) _ladspa=no ;;
1029 --enable-libbs2b) _libbs2b=yes ;;
1030 --disable-libbs2b) _libbs2b=no ;;
1031 --enable-xmms) _xmms=yes ;;
1032 --disable-xmms) _xmms=no ;;
1033 --enable-vcd) _vcd=yes ;;
1034 --disable-vcd) _vcd=no ;;
1035 --enable-bluray) _bluray=yes ;;
1036 --disable-bluray) _bluray=no ;;
1037 --enable-dvdread) _dvdread=yes ;;
1038 --disable-dvdread) _dvdread=no ;;
1039 --enable-dvdread-internal) _dvdread_internal=yes ;;
1040 --disable-dvdread-internal) _dvdread_internal=no ;;
1041 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1042 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1043 --enable-dvdnav) _dvdnav=yes ;;
1044 --disable-dvdnav) _dvdnav=no ;;
1045 --enable-xanim) _xanim=yes ;;
1046 --disable-xanim) _xanim=no ;;
1047 --enable-real) _real=yes ;;
1048 --disable-real) _real=no ;;
1049 --enable-live) _live=yes ;;
1050 --disable-live) _live=no ;;
1051 --enable-nemesi) _nemesi=yes ;;
1052 --disable-nemesi) _nemesi=no ;;
1053 --enable-xinerama) _xinerama=yes ;;
1054 --disable-xinerama) _xinerama=no ;;
1055 --enable-mga) _mga=yes ;;
1056 --disable-mga) _mga=no ;;
1057 --enable-xmga) _xmga=yes ;;
1058 --disable-xmga) _xmga=no ;;
1059 --enable-vm) _vm=yes ;;
1060 --disable-vm) _vm=no ;;
1061 --enable-xf86keysym) _xf86keysym=yes ;;
1062 --disable-xf86keysym) _xf86keysym=no ;;
1063 --enable-mlib) _mlib=yes ;;
1064 --disable-mlib) _mlib=no ;;
1065 --enable-sunaudio) _sunaudio=yes ;;
1066 --disable-sunaudio) _sunaudio=no ;;
1067 --enable-sgiaudio) _sgiaudio=yes ;;
1068 --disable-sgiaudio) _sgiaudio=no ;;
1069 --enable-alsa) _alsa=yes ;;
1070 --disable-alsa) _alsa=no ;;
1071 --enable-tv) _tv=yes ;;
1072 --disable-tv) _tv=no ;;
1073 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1074 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1075 --enable-tv-v4l1) _tv_v4l1=yes ;;
1076 --disable-tv-v4l1) _tv_v4l1=no ;;
1077 --enable-tv-v4l2) _tv_v4l2=yes ;;
1078 --disable-tv-v4l2) _tv_v4l2=no ;;
1079 --enable-tv-dshow) _tv_dshow=yes ;;
1080 --disable-tv-dshow) _tv_dshow=no ;;
1081 --enable-radio) _radio=yes ;;
1082 --enable-radio-capture) _radio_capture=yes ;;
1083 --disable-radio-capture) _radio_capture=no ;;
1084 --disable-radio) _radio=no ;;
1085 --enable-radio-v4l) _radio_v4l=yes ;;
1086 --disable-radio-v4l) _radio_v4l=no ;;
1087 --enable-radio-v4l2) _radio_v4l2=yes ;;
1088 --disable-radio-v4l2) _radio_v4l2=no ;;
1089 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1090 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1091 --enable-pvr) _pvr=yes ;;
1092 --disable-pvr) _pvr=no ;;
1093 --enable-fastmemcpy) _fastmemcpy=yes ;;
1094 --disable-fastmemcpy) _fastmemcpy=no ;;
1095 --enable-networking) networking=yes ;;
1096 --disable-networking) networking=no ;;
1097 --enable-winsock2_h) _winsock2_h=yes ;;
1098 --disable-winsock2_h) _winsock2_h=no ;;
1099 --enable-smb) _smb=yes ;;
1100 --disable-smb) _smb=no ;;
1101 --enable-vidix) _vidix=yes ;;
1102 --disable-vidix) _vidix=no ;;
1103 --with-vidix-drivers=*)
1104 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1106 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1107 --enable-dhahelper) _dhahelper=yes ;;
1108 --disable-dhahelper) _dhahelper=no ;;
1109 --enable-svgalib_helper) _svgalib_helper=yes ;;
1110 --disable-svgalib_helper) _svgalib_helper=no ;;
1111 --enable-joystick) _joystick=yes ;;
1112 --disable-joystick) _joystick=no ;;
1113 --enable-xvid) _xvid=yes ;;
1114 --disable-xvid) _xvid=no ;;
1115 --enable-x264) _x264=yes ;;
1116 --disable-x264) _x264=no ;;
1117 --enable-libnut) _libnut=yes ;;
1118 --disable-libnut) _libnut=no ;;
1119 --enable-libavutil) _libavutil=yes ;;
1120 --disable-libavutil) _libavutil=no ;;
1121 --enable-libavcodec) _libavcodec=yes ;;
1122 --disable-libavcodec) _libavcodec=no ;;
1123 --enable-libavformat) _libavformat=yes ;;
1124 --disable-libavformat) _libavformat=no ;;
1125 --enable-libpostproc) _libpostproc=yes ;;
1126 --disable-libpostproc) _libpostproc=no ;;
1127 --enable-libswscale) _libswscale=yes ;;
1128 --disable-libswscale) _libswscale=no ;;
1129 --ffmpeg-source-dir=*)
1130 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1132 --enable-lirc) _lirc=yes ;;
1133 --disable-lirc) _lirc=no ;;
1134 --enable-lircc) _lircc=yes ;;
1135 --disable-lircc) _lircc=no ;;
1136 --enable-apple-remote) _apple_remote=yes ;;
1137 --disable-apple-remote) _apple_remote=no ;;
1138 --enable-apple-ir) _apple_ir=yes ;;
1139 --disable-apple-ir) _apple_ir=no ;;
1140 --enable-gui) _gui=yes ;;
1141 --disable-gui) _gui=no ;;
1142 --enable-gtk1) _gtk1=yes ;;
1143 --disable-gtk1) _gtk1=no ;;
1144 --enable-termcap) _termcap=yes ;;
1145 --disable-termcap) _termcap=no ;;
1146 --enable-termios) _termios=yes ;;
1147 --disable-termios) _termios=no ;;
1148 --enable-3dfx) _3dfx=yes ;;
1149 --disable-3dfx) _3dfx=no ;;
1150 --enable-s3fb) _s3fb=yes ;;
1151 --disable-s3fb) _s3fb=no ;;
1152 --enable-wii) _wii=yes ;;
1153 --disable-wii) _wii=no ;;
1154 --enable-tdfxfb) _tdfxfb=yes ;;
1155 --disable-tdfxfb) _tdfxfb=no ;;
1156 --disable-tdfxvid) _tdfxvid=no ;;
1157 --enable-tdfxvid) _tdfxvid=yes ;;
1158 --disable-xvr100) _xvr100=no ;;
1159 --enable-xvr100) _xvr100=yes ;;
1160 --disable-tga) _tga=no ;;
1161 --enable-tga) _tga=yes ;;
1162 --enable-directfb) _directfb=yes ;;
1163 --disable-directfb) _directfb=no ;;
1164 --enable-zr) _zr=yes ;;
1165 --disable-zr) _zr=no ;;
1166 --enable-bl) _bl=yes ;;
1167 --disable-bl) _bl=no ;;
1168 --enable-mtrr) _mtrr=yes ;;
1169 --disable-mtrr) _mtrr=no ;;
1170 --enable-largefiles) _largefiles=yes ;;
1171 --disable-largefiles) _largefiles=no ;;
1172 --enable-shm) _shm=yes ;;
1173 --disable-shm) _shm=no ;;
1174 --enable-select) _select=yes ;;
1175 --disable-select) _select=no ;;
1176 --enable-cdparanoia) _cdparanoia=yes ;;
1177 --disable-cdparanoia) _cdparanoia=no ;;
1178 --enable-cddb) _cddb=yes ;;
1179 --disable-cddb) _cddb=no ;;
1180 --enable-big-endian) _big_endian=yes ;;
1181 --disable-big-endian) _big_endian=no ;;
1182 --enable-bitmap-font) _bitmap_font=yes ;;
1183 --disable-bitmap-font) _bitmap_font=no ;;
1184 --enable-freetype) _freetype=yes ;;
1185 --disable-freetype) _freetype=no ;;
1186 --enable-fontconfig) _fontconfig=yes ;;
1187 --disable-fontconfig) _fontconfig=no ;;
1188 --enable-unrarexec) _unrar_exec=yes ;;
1189 --disable-unrarexec) _unrar_exec=no ;;
1190 --enable-ftp) _ftp=yes ;;
1191 --disable-ftp) _ftp=no ;;
1192 --enable-vstream) _vstream=yes ;;
1193 --disable-vstream) _vstream=no ;;
1194 --enable-pthreads) _pthreads=yes ;;
1195 --disable-pthreads) _pthreads=no ;;
1196 --enable-w32threads) _w32threads=yes ;;
1197 --disable-w32threads) _w32threads=no ;;
1198 --enable-ass) _ass=yes ;;
1199 --disable-ass) _ass=no ;;
1200 --enable-rpath) _rpath=yes ;;
1201 --disable-rpath) _rpath=no ;;
1203 --enable-fribidi) _fribidi=yes ;;
1204 --disable-fribidi) _fribidi=no ;;
1206 --enable-enca) _enca=yes ;;
1207 --disable-enca) _enca=no ;;
1209 --enable-inet6) _inet6=yes ;;
1210 --disable-inet6) _inet6=no ;;
1212 --enable-gethostbyname2) _gethostbyname2=yes ;;
1213 --disable-gethostbyname2) _gethostbyname2=no ;;
1215 --enable-dga1) _dga1=yes ;;
1216 --disable-dga1) _dga1=no ;;
1217 --enable-dga2) _dga2=yes ;;
1218 --disable-dga2) _dga2=no ;;
1220 --enable-menu) _menu=yes ;;
1221 --disable-menu) _menu=no ;;
1223 --enable-qtx) _qtx=yes ;;
1224 --disable-qtx) _qtx=no ;;
1226 --enable-coreaudio) _coreaudio=yes ;;
1227 --disable-coreaudio) _coreaudio=no ;;
1228 --enable-corevideo) _corevideo=yes ;;
1229 --disable-corevideo) _corevideo=no ;;
1230 --enable-quartz) _quartz=yes ;;
1231 --disable-quartz) _quartz=no ;;
1232 --enable-macosx-finder) _macosx_finder=yes ;;
1233 --disable-macosx-finder) _macosx_finder=no ;;
1234 --enable-macosx-bundle) _macosx_bundle=yes ;;
1235 --disable-macosx-bundle) _macosx_bundle=no ;;
1237 --enable-maemo) _maemo=yes ;;
1238 --disable-maemo) _maemo=no ;;
1240 --enable-sortsub) _sortsub=yes ;;
1241 --disable-sortsub) _sortsub=no ;;
1243 --enable-crash-debug) _crash_debug=yes ;;
1244 --disable-crash-debug) _crash_debug=no ;;
1245 --enable-sighandler) _sighandler=yes ;;
1246 --disable-sighandler) _sighandler=no ;;
1247 --enable-win32dll) _win32dll=yes ;;
1248 --disable-win32dll) _win32dll=no ;;
1250 --enable-sse) _sse=yes ;;
1251 --disable-sse) _sse=no ;;
1252 --enable-sse2) _sse2=yes ;;
1253 --disable-sse2) _sse2=no ;;
1254 --enable-ssse3) _ssse3=yes ;;
1255 --disable-ssse3) _ssse3=no ;;
1256 --enable-mmxext) _mmxext=yes ;;
1257 --disable-mmxext) _mmxext=no ;;
1258 --enable-3dnow) _3dnow=yes ;;
1259 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1260 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1261 --disable-3dnowext) _3dnowext=no ;;
1262 --enable-cmov) _cmov=yes ;;
1263 --disable-cmov) _cmov=no ;;
1264 --enable-fast-cmov) _fast_cmov=yes ;;
1265 --disable-fast-cmov) _fast_cmov=no ;;
1266 --enable-fast-clz) _fast_clz=yes ;;
1267 --disable-fast-clz) _fast_clz=no ;;
1268 --enable-altivec) _altivec=yes ;;
1269 --disable-altivec) _altivec=no ;;
1270 --enable-armv5te) _armv5te=yes ;;
1271 --disable-armv5te) _armv5te=no ;;
1272 --enable-armv6) _armv6=yes ;;
1273 --disable-armv6) _armv6=no ;;
1274 --enable-armv6t2) _armv6t2=yes ;;
1275 --disable-armv6t2) _armv6t2=no ;;
1276 --enable-armvfp) _armvfp=yes ;;
1277 --disable-armvfp) _armvfp=no ;;
1278 --enable-neon) neon=yes ;;
1279 --disable-neon) neon=no ;;
1280 --enable-iwmmxt) _iwmmxt=yes ;;
1281 --disable-iwmmxt) _iwmmxt=no ;;
1282 --enable-mmx) _mmx=yes ;;
1283 --disable-mmx) # 3Dnow! and MMX2 require MMX
1284 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1287 echo "Unknown parameter: $ac_option"
1288 exit 1
1291 esac
1292 done
1294 if test "$_gui" = yes ; then
1295 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1296 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1299 # Atmos: moved this here, to be correct, if --prefix is specified
1300 test -z "$_bindir" && _bindir="$_prefix/bin"
1301 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1302 test -z "$_mandir" && _mandir="$_prefix/share/man"
1303 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1304 test -z "$_libdir" && _libdir="$_prefix/lib"
1305 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1307 # Determine our OS name and CPU architecture
1308 if test -z "$_target" ; then
1309 # OS name
1310 system_name=$(uname -s 2>&1)
1311 case "$system_name" in
1312 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1314 Haiku)
1315 system_name=BeOS
1317 IRIX*)
1318 system_name=IRIX
1320 GNU/kFreeBSD)
1321 system_name=FreeBSD
1323 HP-UX*)
1324 system_name=HP-UX
1326 [cC][yY][gG][wW][iI][nN]*)
1327 system_name=CYGWIN
1329 MINGW32*)
1330 system_name=MINGW32
1332 OS/2*)
1333 system_name=OS/2
1336 system_name="$system_name-UNKNOWN"
1338 esac
1341 # host's CPU/instruction set
1342 host_arch=$(uname -p 2>&1)
1343 case "$host_arch" in
1344 i386|sparc|ppc|alpha|arm|mips|vax)
1346 powerpc) # Darwin returns 'powerpc'
1347 host_arch=ppc
1349 *) # uname -p on Linux returns 'unknown' for the processor type,
1350 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1352 # Maybe uname -m (machine hardware name) returns something we
1353 # recognize.
1355 # x86/x86pc is used by QNX
1356 case "$(uname -m 2>&1)" in
1357 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 ;;
1358 ia64) host_arch=ia64 ;;
1359 macppc|ppc) host_arch=ppc ;;
1360 ppc64) host_arch=ppc64 ;;
1361 alpha) host_arch=alpha ;;
1362 sparc) host_arch=sparc ;;
1363 sparc64) host_arch=sparc64 ;;
1364 parisc*|hppa*|9000*) host_arch=hppa ;;
1365 arm*|zaurus|cats) host_arch=arm ;;
1366 sh3|sh4|sh4a) host_arch=sh ;;
1367 s390) host_arch=s390 ;;
1368 s390x) host_arch=s390x ;;
1369 *mips*) host_arch=mips ;;
1370 vax) host_arch=vax ;;
1371 xtensa*) host_arch=xtensa ;;
1372 *) host_arch=UNKNOWN ;;
1373 esac
1375 esac
1376 else # if test -z "$_target"
1377 system_name=$(echo $_target | cut -d '-' -f 2)
1378 case "$(echo $system_name | tr A-Z a-z)" in
1379 linux) system_name=Linux ;;
1380 freebsd) system_name=FreeBSD ;;
1381 gnu/kfreebsd) system_name=FreeBSD ;;
1382 netbsd) system_name=NetBSD ;;
1383 bsd/os) system_name=BSD/OS ;;
1384 openbsd) system_name=OpenBSD ;;
1385 dragonfly) system_name=DragonFly ;;
1386 sunos) system_name=SunOS ;;
1387 qnx) system_name=QNX ;;
1388 morphos) system_name=MorphOS ;;
1389 amigaos) system_name=AmigaOS ;;
1390 mingw32*) system_name=MINGW32 ;;
1391 esac
1392 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1393 host_arch=$(echo $_target | cut -d '-' -f 1)
1394 if test $(echo $host_arch) != "x86_64" ; then
1395 host_arch=$(echo $host_arch | tr '_' '-')
1399 extra_cflags="-I. $extra_cflags"
1400 _timer=timer-linux.c
1401 _getch=getch2.c
1402 if freebsd ; then
1403 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1404 extra_cflags="$extra_cflags -I/usr/local/include"
1407 if netbsd || dragonfly ; then
1408 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1409 extra_cflags="$extra_cflags -I/usr/pkg/include"
1412 if darwin; then
1413 extra_cflags="-mdynamic-no-pic $extra_cflags"
1414 if test "$(basename $_cc)" != "clang" ; then
1415 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1417 _timer=timer-darwin.c
1420 if aix ; then
1421 extra_ldflags="$extra_ldflags -lC"
1424 if irix ; then
1425 _ranlib='ar -r'
1426 elif linux ; then
1427 _ranlib='true'
1430 if win32 ; then
1431 _exesuf=".exe"
1432 extra_cflags="$extra_cflags -fno-common"
1433 # -lwinmm is always needed for osdep/timer-win2.c
1434 extra_ldflags="$extra_ldflags -lwinmm"
1435 _pe_executable=yes
1436 _timer=timer-win2.c
1437 _priority=yes
1438 def_dos_paths="#define HAVE_DOS_PATHS 1"
1439 def_priority="#define CONFIG_PRIORITY 1"
1442 if mingw32 ; then
1443 _getch=getch2-win.c
1444 _need_shmem=no
1447 if amigaos ; then
1448 _select=no
1449 _sighandler=no
1450 _stream_cache=no
1451 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1452 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1455 if qnx ; then
1456 extra_ldflags="$extra_ldflags -lph"
1459 if os2 ; then
1460 _exesuf=".exe"
1461 _getch=getch2-os2.c
1462 _need_shmem=no
1463 _priority=yes
1464 def_dos_paths="#define HAVE_DOS_PATHS 1"
1465 def_priority="#define CONFIG_PRIORITY 1"
1468 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1469 test "$tmpdir" && break
1470 done
1472 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1473 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1475 TMPLOG="config.log"
1476 TMPC="$mplayer_tmpdir/tmp.c"
1477 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1478 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1479 TMPH="$mplayer_tmpdir/tmp.h"
1480 TMPS="$mplayer_tmpdir/tmp.S"
1482 rm -f "$TMPLOG"
1483 echo configuration: $configuration > "$TMPLOG"
1484 echo >> "$TMPLOG"
1487 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1488 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1492 # Checking CC version...
1493 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1494 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1495 echocheck "$_cc version"
1496 cc_vendor=intel
1497 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1498 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1499 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1500 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1501 # TODO verify older icc/ecc compatibility
1502 case $cc_version in
1504 cc_version="v. ?.??, bad"
1505 cc_fail=yes
1507 10.1|11.0|11.1)
1508 cc_version="$cc_version, ok"
1511 cc_version="$cc_version, bad"
1512 cc_fail=yes
1514 esac
1515 echores "$cc_version"
1516 else
1517 for _cc in "$_cc" gcc cc ; do
1518 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1519 if test "$cc_name_tmp" = "gcc"; then
1520 cc_name=$cc_name_tmp
1521 echocheck "$_cc version"
1522 cc_vendor=gnu
1523 cc_version=$($_cc -dumpversion 2>&1)
1524 case $cc_version in
1525 2.96*)
1526 cc_fail=yes
1529 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1530 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1531 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1533 esac
1534 echores "$cc_version"
1535 break
1537 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1538 if test "$cc_name_tmp" = "clang"; then
1539 echocheck "$_cc version"
1540 cc_vendor=clang
1541 cc_version=$($_cc -dumpversion 2>&1)
1542 res_comment="experimental support only"
1543 echores "clang $cc_version"
1544 break
1546 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1547 if test "$cc_name_tmp" = "Sun C"; then
1548 echocheck "$_cc version"
1549 cc_vendor=sun
1550 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1551 res_comment="experimental support only"
1552 echores "Sun C $cc_version"
1553 break
1555 done
1556 fi # icc
1557 test "$cc_fail" = yes && die "unsupported compiler version"
1559 if test -z "$_target" && x86 ; then
1560 cat > $TMPC << EOF
1561 int main(void) {
1562 int test[(int)sizeof(char *)-7];
1563 return 0;
1566 cc_check && host_arch=x86_64 || host_arch=i386
1569 echo "Detected operating system: $system_name"
1570 echo "Detected host architecture: $host_arch"
1572 echocheck "host cc"
1573 test "$_host_cc" || _host_cc=$_cc
1574 echores $_host_cc
1576 echocheck "cross compilation"
1577 if test $_cross_compile = auto ; then
1578 _cross_compile=yes
1579 cflag_check "" && "$TMPEXE" && _cross_compile=no
1581 echores $_cross_compile
1583 if test $_cross_compile = yes; then
1584 tmp_run() {
1585 return 0
1589 # ---
1591 # now that we know what compiler should be used for compilation, try to find
1592 # out which assembler is used by the $_cc compiler
1593 if test "$_as" = auto ; then
1594 _as=$($_cc -print-prog-name=as)
1595 test -z "$_as" && _as=as
1598 if test "$_nm" = auto ; then
1599 _nm=$($_cc -print-prog-name=nm)
1600 test -z "$_nm" && _nm=nm
1603 # XXX: this should be ok..
1604 _cpuinfo="echo"
1606 if test "$_runtime_cpudetection" = no ; then
1608 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1609 # FIXME: Remove the cygwin check once AMD CPUs are supported
1610 if test -r /proc/cpuinfo && ! cygwin; then
1611 # Linux with /proc mounted, extract CPU information from it
1612 _cpuinfo="cat /proc/cpuinfo"
1613 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1614 # FreeBSD with Linux emulation /proc mounted,
1615 # extract CPU information from it
1616 # Don't use it on x86 though, it never reports 3Dnow
1617 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1618 elif darwin && ! x86 ; then
1619 # use hostinfo on Darwin
1620 _cpuinfo="hostinfo"
1621 elif aix; then
1622 # use 'lsattr' on AIX
1623 _cpuinfo="lsattr -E -l proc0 -a type"
1624 elif x86; then
1625 # all other OSes try to extract CPU information from a small helper
1626 # program cpuinfo instead
1627 $_cc -o cpuinfo$_exesuf cpuinfo.c
1628 _cpuinfo="./cpuinfo$_exesuf"
1631 if x86 ; then
1632 # gather more CPU information
1633 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1634 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1635 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1636 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1637 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1639 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1641 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1642 -e s/xmm/sse/ -e s/kni/sse/)
1644 for ext in $pparam ; do
1645 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1646 done
1648 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1649 test $_sse = kernel_check && _mmxext=kernel_check
1651 echocheck "CPU vendor"
1652 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1654 echocheck "CPU type"
1655 echores "$pname"
1658 fi # test "$_runtime_cpudetection" = no
1660 if x86 && test "$_runtime_cpudetection" = no ; then
1661 extcheck() {
1662 if test "$1" = kernel_check ; then
1663 echocheck "kernel support of $2"
1664 cat > $TMPC <<EOF
1665 #include <stdlib.h>
1666 #include <signal.h>
1667 void catch(int sig) { exit(1); }
1668 int main(void) {
1669 signal(SIGILL, catch);
1670 __asm__ volatile ("$3":::"memory"); return 0;
1674 if cc_check && tmp_run ; then
1675 eval _$2=yes
1676 echores "yes"
1677 _optimizing="$_optimizing $2"
1678 return 0
1679 else
1680 eval _$2=no
1681 echores "failed"
1682 echo "It seems that your kernel does not correctly support $2."
1683 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1684 return 1
1687 return 0
1690 extcheck $_mmx "mmx" "emms"
1691 extcheck $_mmxext "mmxext" "sfence"
1692 extcheck $_3dnow "3dnow" "femms"
1693 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1694 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1695 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1696 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1697 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1699 echocheck "mtrr support"
1700 if test "$_mtrr" = kernel_check ; then
1701 _mtrr="yes"
1702 _optimizing="$_optimizing mtrr"
1704 echores "$_mtrr"
1706 if test "$_gcc3_ext" != ""; then
1707 # if we had to disable sse/sse2 because the active kernel does not
1708 # support this instruction set extension, we also have to tell
1709 # gcc3 to not generate sse/sse2 instructions for normal C code
1710 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1716 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1717 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1718 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1719 subarch_all='X86_32 X86_64 PPC64'
1720 case "$host_arch" in
1721 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1722 arch='x86'
1723 subarch='x86_32'
1724 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1725 iproc=486
1726 proc=i486
1729 if test "$_runtime_cpudetection" = no ; then
1730 case "$pvendor" in
1731 AuthenticAMD)
1732 case "$pfamily" in
1733 3) proc=i386 iproc=386 ;;
1734 4) proc=i486 iproc=486 ;;
1735 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1736 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1737 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1738 proc=k6-3
1739 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1740 proc=geode
1741 elif test "$pmodel" -ge 8; then
1742 proc=k6-2
1743 elif test "$pmodel" -ge 6; then
1744 proc=k6
1745 else
1746 proc=i586
1749 6) iproc=686
1750 # It's a bit difficult to determine the correct type of Family 6
1751 # AMD CPUs just from their signature. Instead, we check directly
1752 # whether it supports SSE.
1753 if test "$_sse" = yes; then
1754 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1755 proc=athlon-xp
1756 else
1757 # Again, gcc treats athlon and athlon-tbird similarly.
1758 proc=athlon
1761 15) iproc=686
1762 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1763 # caught and remedied in the optimization tests below.
1764 proc=k8
1767 *) proc=amdfam10 iproc=686
1768 test $_fast_clz = "auto" && _fast_clz=yes
1770 esac
1772 GenuineIntel)
1773 case "$pfamily" in
1774 3) proc=i386 iproc=386 ;;
1775 4) proc=i486 iproc=486 ;;
1776 5) iproc=586
1777 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1778 proc=pentium-mmx # 4 is desktop, 8 is mobile
1779 else
1780 proc=i586
1783 6) iproc=686
1784 if test "$pmodel" -ge 15; then
1785 proc=core2
1786 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1787 proc=pentium-m
1788 elif test "$pmodel" -ge 7; then
1789 proc=pentium3
1790 elif test "$pmodel" -ge 3; then
1791 proc=pentium2
1792 else
1793 proc=i686
1795 test $_fast_clz = "auto" && _fast_clz=yes
1797 15) iproc=686
1798 # A nocona in 32-bit mode has no more capabilities than a prescott.
1799 if test "$pmodel" -ge 3; then
1800 proc=prescott
1801 else
1802 proc=pentium4
1803 test $_fast_clz = "auto" && _fast_clz=yes
1805 test $_fast_cmov = "auto" && _fast_cmov=no
1807 *) proc=prescott iproc=686 ;;
1808 esac
1810 CentaurHauls)
1811 case "$pfamily" in
1812 5) iproc=586
1813 if test "$pmodel" -ge 8; then
1814 proc=winchip2
1815 elif test "$pmodel" -ge 4; then
1816 proc=winchip-c6
1817 else
1818 proc=i586
1821 6) iproc=686
1822 if test "$pmodel" -ge 9; then
1823 proc=c3-2
1824 else
1825 proc=c3
1826 iproc=586
1829 *) proc=i686 iproc=i686 ;;
1830 esac
1832 unknown)
1833 case "$pfamily" in
1834 3) proc=i386 iproc=386 ;;
1835 4) proc=i486 iproc=486 ;;
1836 *) proc=i586 iproc=586 ;;
1837 esac
1840 proc=i586 iproc=586 ;;
1841 esac
1842 test $_fast_clz = "auto" && _fast_clz=no
1843 fi # test "$_runtime_cpudetection" = no
1846 # check that gcc supports our CPU, if not, fall back to earlier ones
1847 # LGB: check -mcpu and -march swithing step by step with enabling
1848 # to fall back till 386.
1850 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1852 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1853 cpuopt=-mtune
1854 else
1855 cpuopt=-mcpu
1858 echocheck "GCC & CPU optimization abilities"
1859 if test "$_runtime_cpudetection" = no ; then
1860 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1861 cflag_check -march=native && proc=native
1863 if test "$proc" = "amdfam10"; then
1864 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1866 if test "$proc" = "k8"; then
1867 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1869 if test "$proc" = "athlon-xp"; then
1870 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1872 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1873 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1875 if test "$proc" = "k6" || test "$proc" = "c3"; then
1876 if ! cflag_check -march=$proc $cpuopt=$proc; then
1877 if cflag_check -march=i586 $cpuopt=i686; then
1878 proc=i586-i686
1879 else
1880 proc=i586
1884 if test "$proc" = "prescott" ; then
1885 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1887 if test "$proc" = "core2" ; then
1888 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1890 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
1891 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1893 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1894 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1896 if test "$proc" = "i586"; then
1897 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1899 if test "$proc" = "i486" ; then
1900 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1902 if test "$proc" = "i386" ; then
1903 cflag_check -march=$proc $cpuopt=$proc || proc=error
1905 if test "$proc" = "error" ; then
1906 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1907 _mcpu=""
1908 _march=""
1909 _optimizing=""
1910 elif test "$proc" = "i586-i686"; then
1911 _march="-march=i586"
1912 _mcpu="$cpuopt=i686"
1913 _optimizing="$proc"
1914 else
1915 _march="-march=$proc"
1916 _mcpu="$cpuopt=$proc"
1917 _optimizing="$proc"
1919 else # if test "$_runtime_cpudetection" = no
1920 _mcpu="$cpuopt=generic"
1921 # at least i486 required, for bswap instruction
1922 _march="-march=i486"
1923 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1924 cflag_check $_mcpu || _mcpu=""
1925 cflag_check $_march $_mcpu || _march=""
1928 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1929 ## autodetected mcpu/march parameters
1930 if test "$_target" ; then
1931 # TODO: it may be a good idea to check GCC and fall back in all cases
1932 if test "$host_arch" = "i586-i686"; then
1933 _march="-march=i586"
1934 _mcpu="$cpuopt=i686"
1935 else
1936 _march="-march=$host_arch"
1937 _mcpu="$cpuopt=$host_arch"
1940 proc="$host_arch"
1942 case "$proc" in
1943 i386) iproc=386 ;;
1944 i486) iproc=486 ;;
1945 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1946 i686|athlon*|pentium*) iproc=686 ;;
1947 *) iproc=586 ;;
1948 esac
1951 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1952 _fast_cmov="yes"
1953 else
1954 _fast_cmov="no"
1956 test $_fast_clz = "auto" && _fast_clz=yes
1958 echores "$proc"
1961 ia64)
1962 arch='ia64'
1963 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1964 iproc='ia64'
1967 x86_64|amd64)
1968 arch='x86'
1969 subarch='x86_64'
1970 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1971 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1972 iproc='x86_64'
1974 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1975 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1976 cpuopt=-mtune
1977 else
1978 cpuopt=-mcpu
1980 if test "$_runtime_cpudetection" = no ; then
1981 case "$pvendor" in
1982 AuthenticAMD)
1983 case "$pfamily" in
1984 15) proc=k8
1985 test $_fast_clz = "auto" && _fast_clz=no
1987 *) proc=amdfam10;;
1988 esac
1990 GenuineIntel)
1991 case "$pfamily" in
1992 6) proc=core2;;
1994 # 64-bit prescotts exist, but as far as GCC is concerned they
1995 # have the same capabilities as a nocona.
1996 proc=nocona
1997 test $_fast_cmov = "auto" && _fast_cmov=no
1998 test $_fast_clz = "auto" && _fast_clz=no
2000 esac
2003 proc=error;;
2004 esac
2005 fi # test "$_runtime_cpudetection" = no
2007 echocheck "GCC & CPU optimization abilities"
2008 # This is a stripped-down version of the i386 fallback.
2009 if test "$_runtime_cpudetection" = no ; then
2010 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2011 cflag_check -march=native && proc=native
2013 # --- AMD processors ---
2014 if test "$proc" = "amdfam10"; then
2015 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2017 if test "$proc" = "k8"; then
2018 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2020 # This will fail if gcc version < 3.3, which is ok because earlier
2021 # versions don't really support 64-bit on amd64.
2022 # Is this a valid assumption? -Corey
2023 if test "$proc" = "athlon-xp"; then
2024 cflag_check -march=$proc $cpuopt=$proc || proc=error
2026 # --- Intel processors ---
2027 if test "$proc" = "core2"; then
2028 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2030 if test "$proc" = "x86-64"; then
2031 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2033 if test "$proc" = "nocona"; then
2034 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2036 if test "$proc" = "pentium4"; then
2037 cflag_check -march=$proc $cpuopt=$proc || proc=error
2040 _march="-march=$proc"
2041 _mcpu="$cpuopt=$proc"
2042 if test "$proc" = "error" ; then
2043 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2044 _mcpu=""
2045 _march=""
2047 else # if test "$_runtime_cpudetection" = no
2048 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2049 _march="-march=x86-64"
2050 _mcpu="$cpuopt=generic"
2051 cflag_check $_mcpu || _mcpu="x86-64"
2052 cflag_check $_mcpu || _mcpu=""
2053 cflag_check $_march $_mcpu || _march=""
2056 _optimizing="$proc"
2057 test $_fast_cmov = "auto" && _fast_cmov=yes
2058 test $_fast_clz = "auto" && _fast_clz=yes
2060 echores "$proc"
2063 sparc|sparc64)
2064 arch='sparc'
2065 iproc='sparc'
2066 if test "$host_arch" = "sparc64" ; then
2067 _vis='yes'
2068 proc='ultrasparc'
2069 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2070 elif sunos ; then
2071 echocheck "CPU type"
2072 karch=$(uname -m)
2073 case "$(echo $karch)" in
2074 sun4) proc=v7 ;;
2075 sun4c) proc=v7 ;;
2076 sun4d) proc=v8 ;;
2077 sun4m) proc=v8 ;;
2078 sun4u) proc=ultrasparc _vis='yes' ;;
2079 sun4v) proc=v9 ;;
2080 *) proc=v8 ;;
2081 esac
2082 echores "$proc"
2083 else
2084 proc=v8
2086 _mcpu="-mcpu=$proc"
2087 _optimizing="$proc"
2090 arm*)
2091 arch='arm'
2092 iproc='arm'
2095 avr32)
2096 arch='avr32'
2097 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2098 iproc='avr32'
2099 test $_fast_clz = "auto" && _fast_clz=yes
2102 sh|sh4)
2103 arch='sh4'
2104 iproc='sh4'
2107 ppc|ppc64|powerpc|powerpc64)
2108 arch='ppc'
2109 def_dcbzl='#define HAVE_DCBZL 0'
2110 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2111 iproc='ppc'
2113 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2114 subarch='ppc64'
2115 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2117 echocheck "CPU type"
2118 case $system_name in
2119 Linux)
2120 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2121 if test -n "$($_cpuinfo | grep altivec)"; then
2122 test $_altivec = auto && _altivec=yes
2125 Darwin)
2126 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2127 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2128 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2129 test $_altivec = auto && _altivec=yes
2132 NetBSD)
2133 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2134 case $cc_version in
2135 2*|3.0*|3.1*|3.2*|3.3*)
2138 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2139 test $_altivec = auto && _altivec=yes
2142 esac
2144 AIX)
2145 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2147 esac
2148 if test "$_altivec" = yes; then
2149 echores "$proc altivec"
2150 else
2151 _altivec=no
2152 echores "$proc"
2155 echocheck "GCC & CPU optimization abilities"
2157 if test -n "$proc"; then
2158 case "$proc" in
2159 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2160 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2161 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2162 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2163 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2164 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2165 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2166 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2167 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2168 *) ;;
2169 esac
2170 # gcc 3.1(.1) and up supports 7400 and 7450
2171 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2172 case "$proc" in
2173 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2174 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2175 *) ;;
2176 esac
2178 # gcc 3.2 and up supports 970
2179 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2180 case "$proc" in
2181 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2182 def_dcbzl='#define HAVE_DCBZL 1' ;;
2183 *) ;;
2184 esac
2186 # gcc 3.3 and up supports POWER4
2187 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2188 case "$proc" in
2189 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2190 *) ;;
2191 esac
2193 # gcc 3.4 and up supports 440*
2194 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2195 case "$proc" in
2196 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2197 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2198 *) ;;
2199 esac
2201 # gcc 4.0 and up supports POWER5
2202 if test "$_cc_major" -ge "4"; then
2203 case "$proc" in
2204 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2205 *) ;;
2206 esac
2210 if test -n "$_mcpu"; then
2211 _optimizing=$(echo $_mcpu | cut -c 8-)
2212 echores "$_optimizing"
2213 else
2214 echores "none"
2217 test $_fast_clz = "auto" && _fast_clz=yes
2221 alpha*)
2222 arch='alpha'
2223 iproc='alpha'
2224 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2226 echocheck "CPU type"
2227 cat > $TMPC << EOF
2228 int main(void) {
2229 unsigned long ver, mask;
2230 __asm__ ("implver %0" : "=r" (ver));
2231 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2232 printf("%ld-%x\n", ver, ~mask);
2233 return 0;
2236 $_cc -o "$TMPEXE" "$TMPC"
2237 case $("$TMPEXE") in
2239 0-0) proc="ev4"; _mvi="0";;
2240 1-0) proc="ev5"; _mvi="0";;
2241 1-1) proc="ev56"; _mvi="0";;
2242 1-101) proc="pca56"; _mvi="1";;
2243 2-303) proc="ev6"; _mvi="1";;
2244 2-307) proc="ev67"; _mvi="1";;
2245 2-1307) proc="ev68"; _mvi="1";;
2246 esac
2247 echores "$proc"
2249 echocheck "GCC & CPU optimization abilities"
2250 if test "$proc" = "ev68" ; then
2251 cc_check -mcpu=$proc || proc=ev67
2253 if test "$proc" = "ev67" ; then
2254 cc_check -mcpu=$proc || proc=ev6
2256 _mcpu="-mcpu=$proc"
2257 echores "$proc"
2259 test $_fast_clz = "auto" && _fast_clz=yes
2261 _optimizing="$proc"
2264 mips)
2265 arch='mips'
2266 iproc='mips'
2268 if irix ; then
2269 echocheck "CPU type"
2270 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2271 case "$(echo $proc)" in
2272 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2273 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2274 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2275 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2276 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2277 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2278 esac
2279 # gcc < 3.x does not support -mtune.
2280 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2281 _mcpu=''
2283 echores "$proc"
2286 test $_fast_clz = "auto" && _fast_clz=yes
2290 hppa)
2291 arch='pa_risc'
2292 iproc='PA-RISC'
2295 s390)
2296 arch='s390'
2297 iproc='390'
2300 s390x)
2301 arch='s390x'
2302 iproc='390x'
2305 vax)
2306 arch='vax'
2307 iproc='vax'
2310 xtensa)
2311 arch='xtensa'
2312 iproc='xtensa'
2315 generic)
2316 arch='generic'
2320 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2321 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2322 die "unsupported architecture $host_arch"
2324 esac # case "$host_arch" in
2326 if test "$_runtime_cpudetection" = yes ; then
2327 if x86 ; then
2328 test "$_cmov" != no && _cmov=yes
2329 x86_32 && _cmov=no
2330 test "$_mmx" != no && _mmx=yes
2331 test "$_3dnow" != no && _3dnow=yes
2332 test "$_3dnowext" != no && _3dnowext=yes
2333 test "$_mmxext" != no && _mmxext=yes
2334 test "$_sse" != no && _sse=yes
2335 test "$_sse2" != no && _sse2=yes
2336 test "$_ssse3" != no && _ssse3=yes
2337 test "$_mtrr" != no && _mtrr=yes
2339 if ppc; then
2340 _altivec=yes
2345 # endian testing
2346 echocheck "byte order"
2347 if test "$_big_endian" = auto ; then
2348 cat > $TMPC <<EOF
2349 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2350 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2351 int main(void) { return (int)ascii_name; }
2353 if cc_check ; then
2354 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2355 _big_endian=yes
2356 else
2357 _big_endian=no
2359 else
2360 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2363 if test "$_big_endian" = yes ; then
2364 _byte_order='big-endian'
2365 def_words_endian='#define WORDS_BIGENDIAN 1'
2366 def_bigendian='#define HAVE_BIGENDIAN 1'
2367 else
2368 _byte_order='little-endian'
2369 def_words_endian='#undef WORDS_BIGENDIAN'
2370 def_bigendian='#define HAVE_BIGENDIAN 0'
2372 echores "$_byte_order"
2375 echocheck "extern symbol prefix"
2376 cat > $TMPC << EOF
2377 int ff_extern;
2379 cc_check -c || die "Symbol mangling check failed."
2380 sym=$($_nm -P -g $TMPEXE)
2381 extern_prefix=${sym%%ff_extern*}
2382 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2383 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2384 echores $extern_prefix
2387 echocheck "assembler support of -pipe option"
2388 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2389 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2392 echocheck "compiler support of named assembler arguments"
2393 _named_asm_args=yes
2394 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2395 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2396 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2397 _named_asm_args=no
2398 def_named_asm_args="#undef NAMED_ASM_ARGS"
2400 echores $_named_asm_args
2403 if darwin && test "$cc_vendor" = "gnu" ; then
2404 echocheck "GCC support of -mstackrealign"
2405 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2406 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2407 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2408 # wrong code with this flag, but this can be worked around by adding
2409 # -fno-unit-at-a-time as described in the blog post at
2410 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2411 cat > $TMPC << EOF
2412 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2413 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2415 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2416 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2417 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2418 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2419 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2422 # Checking for CFLAGS
2423 _install_strip="-s"
2424 if test "$_profile" != "" || test "$_debug" != "" ; then
2425 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2426 WARNFLAGS="-W -Wall"
2427 _install_strip=
2428 elif test -z "$CFLAGS" ; then
2429 if test "$cc_vendor" = "intel" ; then
2430 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2431 WARNFLAGS="-wd167 -wd556 -wd144"
2432 elif test "$cc_vendor" = "sun" ; then
2433 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2434 elif test "$cc_vendor" = "clang"; then
2435 CFLAGS="-O2 $_march $_pipe"
2436 elif test "$cc_vendor" != "gnu" ; then
2437 CFLAGS="-O2 $_march $_mcpu $_pipe"
2438 else
2439 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2440 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2441 extra_ldflags="$extra_ldflags -ffast-math"
2443 else
2444 warn_cflags=yes
2447 if test "$cc_vendor" = "gnu" ; then
2448 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2449 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2450 # that's the only variable specific to C now, and this option is not valid
2451 # for C++.
2452 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2453 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2454 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2455 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2456 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2457 else
2458 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2461 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2462 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2465 if test -n "$LDFLAGS" ; then
2466 extra_ldflags="$extra_ldflags $LDFLAGS"
2467 warn_cflags=yes
2468 elif test "$cc_vendor" = "intel" ; then
2469 extra_ldflags="$extra_ldflags -i-static"
2471 if test -n "$CPPFLAGS" ; then
2472 extra_cflags="$extra_cflags $CPPFLAGS"
2473 warn_cflags=yes
2478 if x86_32 ; then
2479 # Checking assembler (_as) compatibility...
2480 # Added workaround for older as that reads from stdin by default - atmos
2481 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2482 echocheck "assembler ($_as $as_version)"
2484 _pref_as_version='2.9.1'
2485 echo 'nop' > $TMPS
2486 if test "$_mmx" = yes ; then
2487 echo 'emms' >> $TMPS
2489 if test "$_3dnow" = yes ; then
2490 _pref_as_version='2.10.1'
2491 echo 'femms' >> $TMPS
2493 if test "$_3dnowext" = yes ; then
2494 _pref_as_version='2.10.1'
2495 echo 'pswapd %mm0, %mm0' >> $TMPS
2497 if test "$_mmxext" = yes ; then
2498 _pref_as_version='2.10.1'
2499 echo 'movntq %mm0, (%eax)' >> $TMPS
2501 if test "$_sse" = yes ; then
2502 _pref_as_version='2.10.1'
2503 echo 'xorps %xmm0, %xmm0' >> $TMPS
2505 #if test "$_sse2" = yes ; then
2506 # _pref_as_version='2.11'
2507 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2509 if test "$_cmov" = yes ; then
2510 _pref_as_version='2.10.1'
2511 echo 'cmovb %eax, %ebx' >> $TMPS
2513 if test "$_ssse3" = yes ; then
2514 _pref_as_version='2.16.92'
2515 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2517 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2519 if test "$as_verc_fail" != yes ; then
2520 echores "ok"
2521 else
2522 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2523 echores "failed"
2524 die "obsolete binutils version"
2527 fi #if x86_32
2529 echocheck ".align is a power of two"
2530 if test "$_asmalign_pot" = auto ; then
2531 _asmalign_pot=no
2532 cat > $TMPC << EOF
2533 int main(void) { __asm__ (".align 3"); return 0; }
2535 cc_check && _asmalign_pot=yes
2537 if test "$_asmalign_pot" = "yes" ; then
2538 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2539 else
2540 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2542 echores $_asmalign_pot
2545 echocheck "PIC"
2546 pic=no
2547 cat > $TMPC << EOF
2548 int main(void) {
2549 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2550 #error PIC not enabled
2551 #endif
2552 return 0;
2555 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2556 echores $pic
2559 if x86 ; then
2560 echocheck "10 assembler operands"
2561 ten_operands=no
2562 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2563 cat > $TMPC << EOF
2564 int main(void) {
2565 int x=0;
2566 __asm__ volatile(
2568 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2570 return 0;
2573 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2574 echores $ten_operands
2576 echocheck "ebx availability"
2577 ebx_available=no
2578 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2579 cat > $TMPC << EOF
2580 int main(void) {
2581 int x;
2582 __asm__ volatile(
2583 "xor %0, %0"
2584 :"=b"(x)
2585 // just adding ebx to clobber list seems unreliable with some
2586 // compilers, e.g. Haiku's gcc 2.95
2588 // and the above check does not work for OSX 64 bit...
2589 __asm__ volatile("":::"%ebx");
2590 return 0;
2593 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2594 echores $ebx_available
2597 echocheck "yasm"
2598 if test -z "$YASMFLAGS" ; then
2599 if darwin ; then
2600 x86_64 && objformat="macho64" || objformat="macho"
2601 elif win32 ; then
2602 objformat="win32"
2603 else
2604 objformat="elf"
2606 # currently tested for Linux x86, x86_64
2607 YASMFLAGS="-f $objformat"
2608 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2609 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2610 case "$objformat" in
2611 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2612 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2613 esac
2614 else
2615 warn_cflags=yes
2618 echo "pabsw xmm0, xmm0" > $TMPS
2619 yasm_check || _yasm=""
2620 if test $_yasm ; then
2621 def_yasm='#define HAVE_YASM 1'
2622 have_yasm="yes"
2623 echores "$_yasm"
2624 else
2625 def_yasm='#define HAVE_YASM 0'
2626 have_yasm="no"
2627 echores "no"
2630 echocheck "bswap"
2631 def_bswap='#define HAVE_BSWAP 0'
2632 echo 'bswap %eax' > $TMPS
2633 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2634 echores "$bswap"
2635 fi #if x86
2638 #FIXME: This should happen before the check for CFLAGS..
2639 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2640 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2642 # check if AltiVec is supported by the compiler, and how to enable it
2643 echocheck "GCC AltiVec flags"
2644 if $(cflag_check -maltivec -mabi=altivec) ; then
2645 _altivec_gcc_flags="-maltivec -mabi=altivec"
2646 # check if <altivec.h> should be included
2647 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2648 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2649 inc_altivec_h='#include <altivec.h>'
2650 else
2651 if $(cflag_check -faltivec) ; then
2652 _altivec_gcc_flags="-faltivec"
2653 else
2654 _altivec=no
2655 _altivec_gcc_flags="none, AltiVec disabled"
2659 echores "$_altivec_gcc_flags"
2661 # check if the compiler supports braces for vector declarations
2662 cat > $TMPC << EOF
2663 $inc_altivec_h
2664 int main(void) { (vector int) {1}; return 0; }
2666 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2668 # Disable runtime cpudetection if we cannot generate AltiVec code or
2669 # AltiVec is disabled by the user.
2670 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2671 && _runtime_cpudetection=no
2673 # Show that we are optimizing for AltiVec (if enabled and supported).
2674 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2675 && _optimizing="$_optimizing altivec"
2677 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2678 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2681 if ppc ; then
2682 def_xform_asm='#define HAVE_XFORM_ASM 0'
2683 xform_asm=no
2684 echocheck "XFORM ASM support"
2685 cat > $TMPC << EOF
2686 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2688 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2689 echores "$xform_asm"
2692 if arm ; then
2693 echocheck "ARM pld instruction"
2694 cat > $TMPC << EOF
2695 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2697 pld=no
2698 cc_check && pld=yes
2699 echores "$pld"
2701 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2702 if test $_armv5te = "auto" ; then
2703 cat > $TMPC << EOF
2704 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2706 _armv5te=no
2707 cc_check && _armv5te=yes
2709 echores "$_armv5te"
2711 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2713 echocheck "ARMv6 (SIMD instructions)"
2714 if test $_armv6 = "auto" ; then
2715 cat > $TMPC << EOF
2716 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2718 _armv6=no
2719 cc_check && _armv6=yes
2721 echores "$_armv6"
2723 echocheck "ARMv6t2 (SIMD instructions)"
2724 if test $_armv6t2 = "auto" ; then
2725 cat > $TMPC << EOF
2726 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2728 _armv6t2=no
2729 cc_check && _armv6t2=yes
2731 echores "$_armv6"
2733 echocheck "ARM VFP"
2734 if test $_armvfp = "auto" ; then
2735 cat > $TMPC << EOF
2736 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2738 _armvfp=no
2739 cc_check && _armvfp=yes
2741 echores "$_armvfp"
2743 echocheck "ARM NEON"
2744 if test $neon = "auto" ; then
2745 cat > $TMPC << EOF
2746 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2748 neon=no
2749 cc_check && neon=yes
2751 echores "$neon"
2753 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2754 if test $_iwmmxt = "auto" ; then
2755 cat > $TMPC << EOF
2756 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2758 _iwmmxt=no
2759 cc_check && _iwmmxt=yes
2761 echores "$_iwmmxt"
2764 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'
2765 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2766 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2767 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2768 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2769 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2770 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2771 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2772 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2773 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2774 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2775 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2776 test "$pld" = yes && cpuexts="PLD $cpuexts"
2777 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2778 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2779 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2780 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2781 test "$neon" = yes && cpuexts="NEON $cpuexts"
2782 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2783 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2784 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2786 # Checking kernel version...
2787 if x86_32 && linux ; then
2788 _k_verc_problem=no
2789 kernel_version=$(uname -r 2>&1)
2790 echocheck "$system_name kernel version"
2791 case "$kernel_version" in
2792 '') kernel_version="?.??"; _k_verc_fail=yes;;
2793 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2794 _k_verc_problem=yes;;
2795 esac
2796 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2797 _k_verc_fail=yes
2799 if test "$_k_verc_fail" ; then
2800 echores "$kernel_version, fail"
2801 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2802 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2803 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2804 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2805 echo "2.2.x you must upgrade it to get SSE support!"
2806 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2807 else
2808 echores "$kernel_version, ok"
2812 ######################
2813 # MAIN TESTS GO HERE #
2814 ######################
2817 echocheck "-lposix"
2818 if cflag_check -lposix ; then
2819 extra_ldflags="$extra_ldflags -lposix"
2820 echores "yes"
2821 else
2822 echores "no"
2825 echocheck "-lm"
2826 if cflag_check -lm ; then
2827 _ld_lm="-lm"
2828 echores "yes"
2829 else
2830 _ld_lm=""
2831 echores "no"
2835 echocheck "langinfo"
2836 if test "$_langinfo" = auto ; then
2837 cat > $TMPC <<EOF
2838 #include <langinfo.h>
2839 int main(void) { nl_langinfo(CODESET); return 0; }
2841 _langinfo=no
2842 cc_check && _langinfo=yes
2844 if test "$_langinfo" = yes ; then
2845 def_langinfo='#define HAVE_LANGINFO 1'
2846 else
2847 def_langinfo='#undef HAVE_LANGINFO'
2849 echores "$_langinfo"
2852 echocheck "translation support"
2853 if test "$_translation" = yes; then
2854 def_translation="#define CONFIG_TRANSLATION 1"
2855 else
2856 def_translation="#undef CONFIG_TRANSLATION"
2858 echores "$_translation"
2860 echocheck "language"
2861 # Set preferred languages, "all" uses English as main language.
2862 test -z "$language" && language=$LINGUAS
2863 test -z "$language_doc" && language_doc=$language
2864 test -z "$language_man" && language_man=$language
2865 test -z "$language_msg" && language_msg="all"
2866 language_doc=$(echo $language_doc | tr , " ")
2867 language_man=$(echo $language_man | tr , " ")
2868 language_msg=$(echo $language_msg | tr , " ")
2870 test "$language_doc" = "all" && language_doc=$doc_lang_all
2871 test "$language_man" = "all" && language_man=$man_lang_all
2872 test "$language_msg" = "all" && language_msg=$msg_lang_all
2874 if test "$_translation" != yes ; then
2875 language_msg=""
2878 # Prune non-existing translations from language lists.
2879 # Set message translation to the first available language.
2880 # Fall back on English.
2881 for lang in $language_doc ; do
2882 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2883 done
2884 language_doc=$tmp_language_doc
2885 test -z "$language_doc" && language_doc=en
2887 for lang in $language_man ; do
2888 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2889 done
2890 language_man=$tmp_language_man
2891 test -z "$language_man" && language_man=en
2893 for lang in $language_msg ; do
2894 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2895 done
2896 language_msg=$tmp_language_msg
2898 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2901 echocheck "enable sighandler"
2902 if test "$_sighandler" = yes ; then
2903 def_sighandler='#define CONFIG_SIGHANDLER 1'
2904 else
2905 def_sighandler='#undef CONFIG_SIGHANDLER'
2907 echores "$_sighandler"
2909 echocheck "runtime cpudetection"
2910 if test "$_runtime_cpudetection" = yes ; then
2911 _optimizing="Runtime CPU-Detection enabled"
2912 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2913 else
2914 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2916 echores "$_runtime_cpudetection"
2919 echocheck "restrict keyword"
2920 for restrict_keyword in restrict __restrict __restrict__ ; do
2921 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2922 if cc_check; then
2923 def_restrict_keyword=$restrict_keyword
2924 break;
2926 done
2927 if [ -n "$def_restrict_keyword" ]; then
2928 echores "$def_restrict_keyword"
2929 else
2930 echores "none"
2932 # Avoid infinite recursion loop ("#define restrict restrict")
2933 if [ "$def_restrict_keyword" != "restrict" ]; then
2934 def_restrict_keyword="#define restrict $def_restrict_keyword"
2935 else
2936 def_restrict_keyword=""
2940 echocheck "__builtin_expect"
2941 # GCC branch prediction hint
2942 cat > $TMPC << EOF
2943 int foo(int a) {
2944 a = __builtin_expect(a, 10);
2945 return a == 10 ? 0 : 1;
2947 int main(void) { return foo(10) && foo(0); }
2949 _builtin_expect=no
2950 cc_check && _builtin_expect=yes
2951 if test "$_builtin_expect" = yes ; then
2952 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2953 else
2954 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2956 echores "$_builtin_expect"
2959 echocheck "kstat"
2960 cat > $TMPC << EOF
2961 #include <kstat.h>
2962 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2964 _kstat=no
2965 cc_check -lkstat && _kstat=yes
2966 if test "$_kstat" = yes ; then
2967 def_kstat="#define HAVE_LIBKSTAT 1"
2968 extra_ldflags="$extra_ldflags -lkstat"
2969 else
2970 def_kstat="#undef HAVE_LIBKSTAT"
2972 echores "$_kstat"
2975 echocheck "posix4"
2976 # required for nanosleep on some systems
2977 cat > $TMPC << EOF
2978 #include <time.h>
2979 int main(void) { (void) nanosleep(0, 0); return 0; }
2981 _posix4=no
2982 cc_check -lposix4 && _posix4=yes
2983 if test "$_posix4" = yes ; then
2984 extra_ldflags="$extra_ldflags -lposix4"
2986 echores "$_posix4"
2988 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2989 echocheck $func
2990 cat > $TMPC << EOF
2991 #include <math.h>
2992 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2994 eval _$func=no
2995 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2996 if eval test "x\$_$func" = "xyes"; then
2997 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2998 echores yes
2999 else
3000 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3001 echores no
3003 done
3006 echocheck "mkstemp"
3007 cat > $TMPC << EOF
3008 #include <stdlib.h>
3009 int main(void) { char a; mkstemp(&a); return 0; }
3011 _mkstemp=no
3012 cc_check && _mkstemp=yes
3013 if test "$_mkstemp" = yes ; then
3014 def_mkstemp='#define HAVE_MKSTEMP 1'
3015 else
3016 def_mkstemp='#undef HAVE_MKSTEMP'
3018 echores "$_mkstemp"
3021 echocheck "nanosleep"
3022 # also check for nanosleep
3023 cat > $TMPC << EOF
3024 #include <time.h>
3025 int main(void) { (void) nanosleep(0, 0); return 0; }
3027 _nanosleep=no
3028 cc_check && _nanosleep=yes
3029 if test "$_nanosleep" = yes ; then
3030 def_nanosleep='#define HAVE_NANOSLEEP 1'
3031 else
3032 def_nanosleep='#undef HAVE_NANOSLEEP'
3034 echores "$_nanosleep"
3037 echocheck "socklib"
3038 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3039 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3040 cat > $TMPC << EOF
3041 #include <netdb.h>
3042 #include <sys/socket.h>
3043 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3045 _socklib=no
3046 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3047 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3048 done
3049 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3050 if test $_winsock2_h = auto ; then
3051 _winsock2_h=no
3052 cat > $TMPC << EOF
3053 #include <winsock2.h>
3054 int main(void) { (void) gethostbyname(0); return 0; }
3056 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3058 test "$_ld_sock" && res_comment="using $_ld_sock"
3059 echores "$_socklib"
3062 if test $_winsock2_h = yes ; then
3063 _ld_sock="-lws2_32"
3064 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3065 else
3066 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3070 echocheck "arpa/inet.h"
3071 arpa_inet_h=no
3072 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3073 header_check arpa/inet.h && arpa_inet_h=yes &&
3074 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3075 echores "$arpa_inet_h"
3078 echocheck "inet_pton()"
3079 def_inet_pton='#define HAVE_INET_PTON 0'
3080 inet_pton=no
3081 cat > $TMPC << EOF
3082 #include <sys/types.h>
3083 #include <sys/socket.h>
3084 #include <arpa/inet.h>
3085 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3087 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3088 cc_check $_ld_tmp && inet_pton=yes && break
3089 done
3090 if test $inet_pton = yes ; then
3091 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3092 def_inet_pton='#define HAVE_INET_PTON 1'
3094 echores "$inet_pton"
3097 echocheck "inet_aton()"
3098 def_inet_aton='#define HAVE_INET_ATON 0'
3099 inet_aton=no
3100 cat > $TMPC << EOF
3101 #include <sys/types.h>
3102 #include <sys/socket.h>
3103 #include <arpa/inet.h>
3104 int main(void) { (void) inet_aton(0, 0); return 0; }
3106 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3107 cc_check $_ld_tmp && inet_aton=yes && break
3108 done
3109 if test $inet_aton = yes ; then
3110 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3111 def_inet_aton='#define HAVE_INET_ATON 1'
3113 echores "$inet_aton"
3116 echocheck "socklen_t"
3117 _socklen_t=no
3118 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3119 cat > $TMPC << EOF
3120 #include <$header>
3121 int main(void) { socklen_t v = 0; return v; }
3123 cc_check && _socklen_t=yes && break
3124 done
3125 if test "$_socklen_t" = yes ; then
3126 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3127 else
3128 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3130 echores "$_socklen_t"
3133 echocheck "closesocket()"
3134 _closesocket=no
3135 cat > $TMPC << EOF
3136 #include <winsock2.h>
3137 int main(void) { closesocket(~0); return 0; }
3139 cc_check $_ld_sock && _closesocket=yes
3140 if test "$_closesocket" = yes ; then
3141 def_closesocket='#define HAVE_CLOSESOCKET 1'
3142 else
3143 def_closesocket='#define HAVE_CLOSESOCKET 0'
3145 echores "$_closesocket"
3148 echocheck "networking"
3149 test $_winsock2_h = no && test $inet_pton = no &&
3150 test $inet_aton = no && networking=no
3151 if test "$networking" = yes ; then
3152 def_network='#define CONFIG_NETWORK 1'
3153 def_networking='#define CONFIG_NETWORKING 1'
3154 extra_ldflags="$extra_ldflags $_ld_sock"
3155 inputmodules="networking $inputmodules"
3156 else
3157 noinputmodules="networking $noinputmodules"
3158 def_network='#undef CONFIG_NETWORK'
3159 def_networking='#undef CONFIG_NETWORKING'
3160 _ftp=no
3162 echores "$networking"
3165 echocheck "inet6"
3166 if test "$_inet6" = auto ; then
3167 cat > $TMPC << EOF
3168 #include <sys/types.h>
3169 #if !defined(_WIN32) || defined(__CYGWIN__)
3170 #include <sys/socket.h>
3171 #include <netinet/in.h>
3172 #else
3173 #include <ws2tcpip.h>
3174 #endif
3175 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3177 _inet6=no
3178 if cc_check $_ld_sock ; then
3179 _inet6=yes
3182 if test "$_inet6" = yes ; then
3183 def_inet6='#define HAVE_AF_INET6 1'
3184 else
3185 def_inet6='#undef HAVE_AF_INET6'
3187 echores "$_inet6"
3190 echocheck "gethostbyname2"
3191 if test "$_gethostbyname2" = auto ; then
3192 cat > $TMPC << EOF
3193 #include <sys/types.h>
3194 #include <sys/socket.h>
3195 #include <netdb.h>
3196 int main(void) { gethostbyname2("", AF_INET); return 0; }
3198 _gethostbyname2=no
3199 if cc_check ; then
3200 _gethostbyname2=yes
3203 if test "$_gethostbyname2" = yes ; then
3204 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3205 else
3206 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3208 echores "$_gethostbyname2"
3211 echocheck "inttypes.h (required)"
3212 _inttypes=no
3213 header_check inttypes.h && _inttypes=yes
3214 echores "$_inttypes"
3216 if test "$_inttypes" = no ; then
3217 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3218 header_check sys/bitypes.h && _inttypes=yes
3219 if test "$_inttypes" = yes ; then
3220 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."
3221 else
3222 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3227 echocheck "int_fastXY_t in inttypes.h"
3228 cat > $TMPC << EOF
3229 #include <inttypes.h>
3230 int main(void) {
3231 volatile int_fast16_t v= 0;
3232 return v; }
3234 _fast_inttypes=no
3235 cc_check && _fast_inttypes=yes
3236 if test "$_fast_inttypes" = no ; then
3237 def_fast_inttypes='
3238 typedef signed char int_fast8_t;
3239 typedef signed int int_fast16_t;
3240 typedef signed int int_fast32_t;
3241 typedef signed long long int_fast64_t;
3242 typedef unsigned char uint_fast8_t;
3243 typedef unsigned int uint_fast16_t;
3244 typedef unsigned int uint_fast32_t;
3245 typedef unsigned long long uint_fast64_t;'
3247 echores "$_fast_inttypes"
3250 echocheck "malloc.h"
3251 _malloc=no
3252 header_check malloc.h && _malloc=yes
3253 if test "$_malloc" = yes ; then
3254 def_malloc_h='#define HAVE_MALLOC_H 1'
3255 else
3256 def_malloc_h='#define HAVE_MALLOC_H 0'
3258 echores "$_malloc"
3261 echocheck "memalign()"
3262 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3263 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3264 cat > $TMPC << EOF
3265 #include <malloc.h>
3266 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3268 _memalign=no
3269 cc_check && _memalign=yes
3270 if test "$_memalign" = yes ; then
3271 def_memalign='#define HAVE_MEMALIGN 1'
3272 else
3273 def_memalign='#define HAVE_MEMALIGN 0'
3274 def_map_memalign='#define memalign(a,b) malloc(b)'
3275 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3277 echores "$_memalign"
3280 echocheck "posix_memalign()"
3281 posix_memalign=no
3282 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3283 cat > $TMPC << EOF
3284 #define _XOPEN_SOURCE 600
3285 #include <stdlib.h>
3286 int main(void) { posix_memalign(NULL, 0, 0); }
3288 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3289 echores "$posix_memalign"
3292 echocheck "alloca.h"
3293 cat > $TMPC << EOF
3294 #include <alloca.h>
3295 int main(void) { (void) alloca(0); return 0; }
3297 _alloca=no
3298 cc_check && _alloca=yes
3299 if cc_check ; then
3300 def_alloca_h='#define HAVE_ALLOCA_H 1'
3301 else
3302 def_alloca_h='#undef HAVE_ALLOCA_H'
3304 echores "$_alloca"
3307 echocheck "fastmemcpy"
3308 if test "$_fastmemcpy" = yes ; then
3309 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3310 else
3311 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3313 echores "$_fastmemcpy"
3316 echocheck "mman.h"
3317 cat > $TMPC << EOF
3318 #include <sys/types.h>
3319 #include <sys/mman.h>
3320 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3322 _mman=no
3323 cc_check && _mman=yes
3324 if test "$_mman" = yes ; then
3325 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3326 else
3327 def_mman_h='#undef HAVE_SYS_MMAN_H'
3328 os2 && _need_mmap=yes
3330 echores "$_mman"
3332 cat > $TMPC << EOF
3333 #include <sys/types.h>
3334 #include <sys/mman.h>
3335 int main(void) { void *p = MAP_FAILED; return 0; }
3337 _mman_has_map_failed=no
3338 cc_check && _mman_has_map_failed=yes
3339 if test "$_mman_has_map_failed" = yes ; then
3340 def_mman_has_map_failed=''
3341 else
3342 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3345 echocheck "dynamic loader"
3346 cat > $TMPC << EOF
3347 #include <stddef.h>
3348 #include <dlfcn.h>
3349 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3351 _dl=no
3352 for _ld_tmp in "" "-ldl" ; do
3353 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3354 done
3355 if test "$_dl" = yes ; then
3356 def_dl='#define HAVE_LIBDL 1'
3357 else
3358 def_dl='#undef HAVE_LIBDL'
3360 echores "$_dl"
3363 echocheck "dynamic a/v plugins support"
3364 if test "$_dl" = no ; then
3365 _dynamic_plugins=no
3367 if test "$_dynamic_plugins" = yes ; then
3368 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3369 else
3370 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3372 echores "$_dynamic_plugins"
3375 def_threads='#define HAVE_THREADS 0'
3377 echocheck "pthread"
3378 if linux ; then
3379 THREAD_CFLAGS=-D_REENTRANT
3380 elif freebsd || netbsd || openbsd || bsdos ; then
3381 THREAD_CFLAGS=-D_THREAD_SAFE
3383 if test "$_pthreads" = auto ; then
3384 cat > $TMPC << EOF
3385 #include <pthread.h>
3386 void* func(void *arg) { return arg; }
3387 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3389 _pthreads=no
3390 if ! hpux ; then
3391 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3392 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3393 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3394 done
3397 if test "$_pthreads" = yes ; then
3398 test $_ld_pthread && res_comment="using $_ld_pthread"
3399 def_pthreads='#define HAVE_PTHREADS 1'
3400 def_threads='#define HAVE_THREADS 1'
3401 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3402 else
3403 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3404 def_pthreads='#undef HAVE_PTHREADS'
3405 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3406 mingw32 || _win32dll=no
3408 echores "$_pthreads"
3410 if cygwin ; then
3411 if test "$_pthreads" = yes ; then
3412 def_pthread_cache="#define PTHREAD_CACHE 1"
3413 else
3414 _stream_cache=no
3415 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3419 echocheck "w32threads"
3420 if test "$_pthreads" = yes ; then
3421 res_comment="using pthread instead"
3422 _w32threads=no
3424 if test "$_w32threads" = auto ; then
3425 _w32threads=no
3426 mingw32 && _w32threads=yes
3428 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3429 echores "$_w32threads"
3431 echocheck "rpath"
3432 netbsd &&_rpath=yes
3433 if test "$_rpath" = yes ; then
3434 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3435 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3436 done
3437 extra_ldflags=$tmp
3439 echores "$_rpath"
3441 echocheck "iconv"
3442 if test "$_iconv" = auto ; then
3443 cat > $TMPC << EOF
3444 #include <stdio.h>
3445 #include <unistd.h>
3446 #include <iconv.h>
3447 #define INBUFSIZE 1024
3448 #define OUTBUFSIZE 4096
3450 char inbuffer[INBUFSIZE];
3451 char outbuffer[OUTBUFSIZE];
3453 int main(void) {
3454 size_t numread;
3455 iconv_t icdsc;
3456 char *tocode="UTF-8";
3457 char *fromcode="cp1250";
3458 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3459 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3460 char *iptr=inbuffer;
3461 char *optr=outbuffer;
3462 size_t inleft=numread;
3463 size_t outleft=OUTBUFSIZE;
3464 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3465 != (size_t)(-1)) {
3466 write(1, outbuffer, OUTBUFSIZE - outleft);
3469 if (iconv_close(icdsc) == -1)
3472 return 0;
3475 _iconv=no
3476 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3477 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3478 _iconv=yes && break
3479 done
3481 if test "$_iconv" = yes ; then
3482 def_iconv='#define CONFIG_ICONV 1'
3483 else
3484 def_iconv='#undef CONFIG_ICONV'
3486 echores "$_iconv"
3489 echocheck "soundcard.h"
3490 _soundcard_h=no
3491 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3492 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3493 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3494 header_check $_soundcard_header && _soundcard_h=yes &&
3495 res_comment="$_soundcard_header" && break
3496 done
3498 if test "$_soundcard_h" = yes ; then
3499 if test $_soundcard_header = "sys/soundcard.h"; then
3500 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3501 else
3502 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3505 echores "$_soundcard_h"
3508 echocheck "sys/dvdio.h"
3509 _dvdio=no
3510 # FreeBSD 8.1 has broken dvdio.h
3511 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3512 if test "$_dvdio" = yes ; then
3513 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3514 else
3515 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3517 echores "$_dvdio"
3520 echocheck "sys/cdio.h"
3521 _cdio=no
3522 # at least OpenSolaris has a broken cdio.h
3523 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3524 if test "$_cdio" = yes ; then
3525 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3526 else
3527 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3529 echores "$_cdio"
3532 echocheck "linux/cdrom.h"
3533 _cdrom=no
3534 header_check linux/cdrom.h && _cdrom=yes
3535 if test "$_cdrom" = yes ; then
3536 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3537 else
3538 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3540 echores "$_cdrom"
3543 echocheck "dvd.h"
3544 _dvd=no
3545 header_check dvd.h && _dvd=yes
3546 if test "$_dvd" = yes ; then
3547 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3548 else
3549 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3551 echores "$_dvd"
3554 if bsdos; then
3555 echocheck "BSDI dvd.h"
3556 _bsdi_dvd=no
3557 header_check dvd.h && _bsdi_dvd=yes
3558 if test "$_bsdi_dvd" = yes ; then
3559 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3560 else
3561 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3563 echores "$_bsdi_dvd"
3564 fi #if bsdos
3567 if hpux; then
3568 # also used by AIX, but AIX does not support VCD and/or libdvdread
3569 echocheck "HP-UX SCSI header"
3570 _hpux_scsi_h=no
3571 header_check sys/scsi.h && _hpux_scsi_h=yes
3572 if test "$_hpux_scsi_h" = yes ; then
3573 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3574 else
3575 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3577 echores "$_hpux_scsi_h"
3578 fi #if hpux
3581 if sunos; then
3582 echocheck "userspace SCSI headers (Solaris)"
3583 _sol_scsi_h=no
3584 header_check sys/scsi/scsi_types.h &&
3585 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3586 _sol_scsi_h=yes
3587 if test "$_sol_scsi_h" = yes ; then
3588 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3589 else
3590 def_sol_scsi_h='#undef SOLARIS_USCSI'
3592 echores "$_sol_scsi_h"
3593 fi #if sunos
3596 echocheck "termcap"
3597 if test "$_termcap" = auto ; then
3598 cat > $TMPC <<EOF
3599 #include <stddef.h>
3600 #include <term.h>
3601 int main(void) { tgetent(NULL, NULL); return 0; }
3603 _termcap=no
3604 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3605 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3606 && _termcap=yes && break
3607 done
3609 if test "$_termcap" = yes ; then
3610 def_termcap='#define HAVE_TERMCAP 1'
3611 test $_ld_tmp && res_comment="using $_ld_tmp"
3612 else
3613 def_termcap='#undef HAVE_TERMCAP'
3615 echores "$_termcap"
3618 echocheck "termios"
3619 def_termios='#undef HAVE_TERMIOS'
3620 def_termios_h='#undef HAVE_TERMIOS_H'
3621 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3622 if test "$_termios" = auto ; then
3623 _termios=no
3624 for _termios_header in "termios.h" "sys/termios.h"; do
3625 header_check $_termios_header && _termios=yes &&
3626 res_comment="using $_termios_header" && break
3627 done
3630 if test "$_termios" = yes ; then
3631 def_termios='#define HAVE_TERMIOS 1'
3632 if test "$_termios_header" = "termios.h" ; then
3633 def_termios_h='#define HAVE_TERMIOS_H 1'
3634 else
3635 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3638 echores "$_termios"
3641 echocheck "shm"
3642 if test "$_shm" = auto ; then
3643 cat > $TMPC << EOF
3644 #include <sys/types.h>
3645 #include <sys/shm.h>
3646 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3648 _shm=no
3649 cc_check && _shm=yes
3651 if test "$_shm" = yes ; then
3652 def_shm='#define HAVE_SHM 1'
3653 else
3654 def_shm='#undef HAVE_SHM'
3656 echores "$_shm"
3659 echocheck "strsep()"
3660 cat > $TMPC << EOF
3661 #include <string.h>
3662 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3664 _strsep=no
3665 cc_check && _strsep=yes
3666 if test "$_strsep" = yes ; then
3667 def_strsep='#define HAVE_STRSEP 1'
3668 _need_strsep=no
3669 else
3670 def_strsep='#undef HAVE_STRSEP'
3671 _need_strsep=yes
3673 echores "$_strsep"
3676 echocheck "vsscanf()"
3677 cat > $TMPC << EOF
3678 #define _ISOC99_SOURCE
3679 #include <stdarg.h>
3680 #include <stdio.h>
3681 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3683 _vsscanf=no
3684 cc_check && _vsscanf=yes
3685 if test "$_vsscanf" = yes ; then
3686 def_vsscanf='#define HAVE_VSSCANF 1'
3687 _need_vsscanf=no
3688 else
3689 def_vsscanf='#undef HAVE_VSSCANF'
3690 _need_vsscanf=yes
3692 echores "$_vsscanf"
3695 echocheck "swab()"
3696 cat > $TMPC << EOF
3697 #define _XOPEN_SOURCE 600
3698 #include <unistd.h>
3699 int main(void) { swab(0, 0, 0); return 0; }
3701 _swab=no
3702 cc_check && _swab=yes
3703 if test "$_swab" = yes ; then
3704 def_swab='#define HAVE_SWAB 1'
3705 _need_swab=no
3706 else
3707 def_swab='#undef HAVE_SWAB'
3708 _need_swab=yes
3710 echores "$_swab"
3712 echocheck "POSIX select()"
3713 cat > $TMPC << EOF
3714 #include <stdio.h>
3715 #include <stdlib.h>
3716 #include <sys/types.h>
3717 #include <string.h>
3718 #include <sys/time.h>
3719 #include <unistd.h>
3720 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3722 _posix_select=no
3723 def_posix_select='#undef HAVE_POSIX_SELECT'
3724 #select() of kLIBC (OS/2) supports socket only
3725 ! os2 && cc_check && _posix_select=yes \
3726 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3727 echores "$_posix_select"
3730 echocheck "audio select()"
3731 if test "$_select" = no ; then
3732 def_select='#undef HAVE_AUDIO_SELECT'
3733 elif test "$_select" = yes ; then
3734 def_select='#define HAVE_AUDIO_SELECT 1'
3736 echores "$_select"
3739 echocheck "gettimeofday()"
3740 cat > $TMPC << EOF
3741 #include <sys/time.h>
3742 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3744 _gettimeofday=no
3745 cc_check && _gettimeofday=yes
3746 if test "$_gettimeofday" = yes ; then
3747 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3748 _need_gettimeofday=no
3749 else
3750 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3751 _need_gettimeofday=yes
3753 echores "$_gettimeofday"
3756 echocheck "glob()"
3757 cat > $TMPC << EOF
3758 #include <stdio.h>
3759 #include <glob.h>
3760 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3762 _glob=no
3763 cc_check && _glob=yes
3764 if test "$_glob" = yes ; then
3765 def_glob='#define HAVE_GLOB 1'
3766 _need_glob=no
3767 else
3768 def_glob='#undef HAVE_GLOB'
3769 _need_glob=yes
3771 echores "$_glob"
3774 echocheck "setenv()"
3775 cat > $TMPC << EOF
3776 #include <stdlib.h>
3777 int main(void) { setenv("","",0); return 0; }
3779 _setenv=no
3780 cc_check && _setenv=yes
3781 if test "$_setenv" = yes ; then
3782 def_setenv='#define HAVE_SETENV 1'
3783 _need_setenv=no
3784 else
3785 def_setenv='#undef HAVE_SETENV'
3786 _need_setenv=yes
3788 echores "$_setenv"
3791 echocheck "setmode()"
3792 _setmode=no
3793 def_setmode='#define HAVE_SETMODE 0'
3794 cat > $TMPC << EOF
3795 #include <io.h>
3796 int main(void) { setmode(0, 0); return 0; }
3798 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3799 echores "$_setmode"
3802 if sunos; then
3803 echocheck "sysi86()"
3804 cat > $TMPC << EOF
3805 #include <sys/sysi86.h>
3806 int main(void) { sysi86(0); return 0; }
3808 _sysi86=no
3809 cc_check && _sysi86=yes
3810 if test "$_sysi86" = yes ; then
3811 def_sysi86='#define HAVE_SYSI86 1'
3812 cat > $TMPC << EOF
3813 #include <sys/sysi86.h>
3814 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3816 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3817 else
3818 def_sysi86='#undef HAVE_SYSI86'
3820 echores "$_sysi86"
3821 fi #if sunos
3824 echocheck "sys/sysinfo.h"
3825 cat > $TMPC << EOF
3826 #include <sys/sysinfo.h>
3827 int main(void) {
3828 struct sysinfo s_info;
3829 sysinfo(&s_info);
3830 return 0;
3833 _sys_sysinfo=no
3834 cc_check && _sys_sysinfo=yes
3835 if test "$_sys_sysinfo" = yes ; then
3836 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3837 else
3838 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3840 echores "$_sys_sysinfo"
3843 if darwin; then
3845 echocheck "Mac OS X Finder Support"
3846 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3847 if test "$_macosx_finder" = yes ; then
3848 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3849 extra_ldflags="$extra_ldflags -framework Carbon"
3851 echores "$_macosx_finder"
3853 echocheck "Mac OS X Bundle file locations"
3854 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3855 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3856 if test "$_macosx_bundle" = yes ; then
3857 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3858 extra_ldflags="$extra_ldflags -framework Carbon"
3860 echores "$_macosx_bundle"
3862 echocheck "Apple Remote"
3863 if test "$_apple_remote" = auto ; then
3864 _apple_remote=no
3865 cat > $TMPC <<EOF
3866 #include <stdio.h>
3867 #include <IOKit/IOCFPlugIn.h>
3868 int main(void) {
3869 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3870 CFMutableDictionaryRef hidMatchDictionary;
3871 IOReturn ioReturnValue;
3873 // Set up a matching dictionary to search the I/O Registry by class.
3874 // name for all HID class devices
3875 hidMatchDictionary = IOServiceMatching("AppleIRController");
3877 // Now search I/O Registry for matching devices.
3878 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3879 hidMatchDictionary, &hidObjectIterator);
3881 // If search is unsuccessful, return nonzero.
3882 if (ioReturnValue != kIOReturnSuccess ||
3883 !IOIteratorIsValid(hidObjectIterator)) {
3884 return 1;
3886 return 0;
3889 cc_check -framework IOKit && _apple_remote=yes
3891 if test "$_apple_remote" = yes ; then
3892 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3893 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3894 else
3895 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3897 echores "$_apple_remote"
3899 fi #if darwin
3901 if linux; then
3903 echocheck "Apple IR"
3904 if test "$_apple_ir" = auto ; then
3905 _apple_ir=no
3906 cat > $TMPC <<EOF
3907 #include <linux/types.h>
3908 #include <linux/input.h>
3909 int main(void) {
3910 struct input_event ev;
3911 struct input_id id;
3912 return 0;
3915 cc_check && _apple_ir=yes
3917 if test "$_apple_ir" = yes ; then
3918 def_apple_ir='#define CONFIG_APPLE_IR 1'
3919 else
3920 def_apple_ir='#undef CONFIG_APPLE_IR'
3922 echores "$_apple_ir"
3923 fi #if linux
3925 echocheck "pkg-config"
3926 _pkg_config=pkg-config
3927 if $($_pkg_config --version > /dev/null 2>&1); then
3928 if test "$_ld_static"; then
3929 _pkg_config="$_pkg_config --static"
3931 echores "yes"
3932 else
3933 _pkg_config=false
3934 echores "no"
3938 echocheck "Samba support (libsmbclient)"
3939 if test "$_smb" = yes; then
3940 extra_ldflags="$extra_ldflags -lsmbclient"
3942 if test "$_smb" = auto; then
3943 _smb=no
3944 cat > $TMPC << EOF
3945 #include <libsmbclient.h>
3946 int main(void) { smbc_opendir("smb://"); return 0; }
3948 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3949 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3950 _smb=yes && break
3951 done
3954 if test "$_smb" = yes; then
3955 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3956 inputmodules="smb $inputmodules"
3957 else
3958 def_smb="#undef CONFIG_LIBSMBCLIENT"
3959 noinputmodules="smb $noinputmodules"
3961 echores "$_smb"
3964 #########
3965 # VIDEO #
3966 #########
3969 echocheck "tdfxfb"
3970 if test "$_tdfxfb" = yes ; then
3971 def_tdfxfb='#define CONFIG_TDFXFB 1'
3972 vomodules="tdfxfb $vomodules"
3973 else
3974 def_tdfxfb='#undef CONFIG_TDFXFB'
3975 novomodules="tdfxfb $novomodules"
3977 echores "$_tdfxfb"
3979 echocheck "s3fb"
3980 if test "$_s3fb" = yes ; then
3981 def_s3fb='#define CONFIG_S3FB 1'
3982 vomodules="s3fb $vomodules"
3983 else
3984 def_s3fb='#undef CONFIG_S3FB'
3985 novomodules="s3fb $novomodules"
3987 echores "$_s3fb"
3989 echocheck "wii"
3990 if test "$_wii" = yes ; then
3991 def_wii='#define CONFIG_WII 1'
3992 vomodules="wii $vomodules"
3993 else
3994 def_wii='#undef CONFIG_WII'
3995 novomodules="wii $novomodules"
3997 echores "$_wii"
3999 echocheck "tdfxvid"
4000 if test "$_tdfxvid" = yes ; then
4001 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4002 vomodules="tdfx_vid $vomodules"
4003 else
4004 def_tdfxvid='#undef CONFIG_TDFX_VID'
4005 novomodules="tdfx_vid $novomodules"
4007 echores "$_tdfxvid"
4009 echocheck "xvr100"
4010 if test "$_xvr100" = auto ; then
4011 cat > $TMPC << EOF
4012 #include <unistd.h>
4013 #include <sys/fbio.h>
4014 #include <sys/visual_io.h>
4015 int main(void) {
4016 struct vis_identifier ident;
4017 struct fbgattr attr;
4018 ioctl(0, VIS_GETIDENTIFIER, &ident);
4019 ioctl(0, FBIOGATTR, &attr);
4020 return 0;
4023 _xvr100=no
4024 cc_check && _xvr100=yes
4026 if test "$_xvr100" = yes ; then
4027 def_xvr100='#define CONFIG_XVR100 1'
4028 vomodules="xvr100 $vomodules"
4029 else
4030 def_tdfxvid='#undef CONFIG_XVR100'
4031 novomodules="xvr100 $novomodules"
4033 echores "$_xvr100"
4035 echocheck "tga"
4036 if test "$_tga" = yes ; then
4037 def_tga='#define CONFIG_TGA 1'
4038 vomodules="tga $vomodules"
4039 else
4040 def_tga='#undef CONFIG_TGA'
4041 novomodules="tga $novomodules"
4043 echores "$_tga"
4046 echocheck "md5sum support"
4047 if test "$_md5sum" = yes; then
4048 def_md5sum="#define CONFIG_MD5SUM 1"
4049 vomodules="md5sum $vomodules"
4050 else
4051 def_md5sum="#undef CONFIG_MD5SUM"
4052 novomodules="md5sum $novomodules"
4054 echores "$_md5sum"
4057 echocheck "yuv4mpeg support"
4058 if test "$_yuv4mpeg" = yes; then
4059 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4060 vomodules="yuv4mpeg $vomodules"
4061 else
4062 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4063 novomodules="yuv4mpeg $novomodules"
4065 echores "$_yuv4mpeg"
4068 echocheck "bl"
4069 if test "$_bl" = yes ; then
4070 def_bl='#define CONFIG_BL 1'
4071 vomodules="bl $vomodules"
4072 else
4073 def_bl='#undef CONFIG_BL'
4074 novomodules="bl $novomodules"
4076 echores "$_bl"
4079 echocheck "DirectFB"
4080 if test "$_directfb" = auto ; then
4081 _directfb=no
4082 cat > $TMPC <<EOF
4083 #include <directfb.h>
4084 int main(void) { DirectFBInit(0, 0); return 0; }
4086 for _inc_tmp in "" -I/usr/local/include/directfb \
4087 -I/usr/include/directfb -I/usr/local/include; do
4088 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4089 extra_cflags="$extra_cflags $_inc_tmp" && break
4090 done
4093 dfb_version() {
4094 expr $1 \* 65536 + $2 \* 256 + $3
4097 if test "$_directfb" = yes; then
4098 cat > $TMPC << EOF
4099 #include <directfb_version.h>
4101 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4104 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4105 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4106 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4107 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4108 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4109 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4110 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4111 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4112 res_comment="$_directfb_version"
4113 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4114 else
4115 def_directfb_version='#undef DIRECTFBVERSION'
4116 _directfb=no
4117 res_comment="version >=0.9.13 required"
4119 else
4120 _directfb=no
4121 res_comment="failed to get version"
4124 echores "$_directfb"
4126 if test "$_directfb" = yes ; then
4127 def_directfb='#define CONFIG_DIRECTFB 1'
4128 vomodules="directfb $vomodules"
4129 libs_mplayer="$libs_mplayer -ldirectfb"
4130 else
4131 def_directfb='#undef CONFIG_DIRECTFB'
4132 novomodules="directfb $novomodules"
4134 if test "$_dfbmga" = yes; then
4135 vomodules="dfbmga $vomodules"
4136 def_dfbmga='#define CONFIG_DFBMGA 1'
4137 else
4138 novomodules="dfbmga $novomodules"
4139 def_dfbmga='#undef CONFIG_DFBMGA'
4143 echocheck "X11 headers presence"
4144 _x11_headers="no"
4145 res_comment="check if the dev(el) packages are installed"
4146 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4147 if test -f "$I/X11/Xlib.h" ; then
4148 _x11_headers="yes"
4149 res_comment=""
4150 break
4152 done
4153 if test $_cross_compile = no; then
4154 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4155 /usr/include/X11R6 /usr/openwin/include ; do
4156 if test -f "$I/X11/Xlib.h" ; then
4157 extra_cflags="$extra_cflags -I$I"
4158 _x11_headers="yes"
4159 res_comment="using $I"
4160 break
4162 done
4164 echores "$_x11_headers"
4167 echocheck "X11"
4168 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4169 cat > $TMPC <<EOF
4170 #include <X11/Xlib.h>
4171 #include <X11/Xutil.h>
4172 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4174 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4175 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4176 -L/usr/lib ; do
4177 if netbsd; then
4178 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4179 else
4180 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4182 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4183 && _x11=yes && break
4184 done
4186 if test "$_x11" = yes ; then
4187 def_x11='#define CONFIG_X11 1'
4188 vomodules="x11 xover $vomodules"
4189 else
4190 _x11=no
4191 def_x11='#undef CONFIG_X11'
4192 novomodules="x11 $novomodules"
4193 res_comment="check if the dev(el) packages are installed"
4194 # disable stuff that depends on X
4195 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4197 echores "$_x11"
4199 echocheck "Xss screensaver extensions"
4200 if test "$_xss" = auto ; then
4201 cat > $TMPC << EOF
4202 #include <X11/Xlib.h>
4203 #include <X11/extensions/scrnsaver.h>
4204 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4206 _xss=no
4207 cc_check -lXss && _xss=yes
4209 if test "$_xss" = yes ; then
4210 def_xss='#define CONFIG_XSS 1'
4211 libs_mplayer="$libs_mplayer -lXss"
4212 else
4213 def_xss='#undef CONFIG_XSS'
4215 echores "$_xss"
4217 echocheck "DPMS"
4218 _xdpms3=no
4219 _xdpms4=no
4220 if test "$_x11" = yes ; then
4221 cat > $TMPC <<EOF
4222 #include <X11/Xmd.h>
4223 #include <X11/Xlib.h>
4224 #include <X11/Xutil.h>
4225 #include <X11/Xatom.h>
4226 #include <X11/extensions/dpms.h>
4227 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4229 cc_check -lXdpms && _xdpms3=yes
4230 cat > $TMPC <<EOF
4231 #include <X11/Xlib.h>
4232 #include <X11/extensions/dpms.h>
4233 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4235 cc_check -lXext && _xdpms4=yes
4237 if test "$_xdpms4" = yes ; then
4238 def_xdpms='#define CONFIG_XDPMS 1'
4239 res_comment="using Xdpms 4"
4240 echores "yes"
4241 elif test "$_xdpms3" = yes ; then
4242 def_xdpms='#define CONFIG_XDPMS 1'
4243 libs_mplayer="$libs_mplayer -lXdpms"
4244 res_comment="using Xdpms 3"
4245 echores "yes"
4246 else
4247 def_xdpms='#undef CONFIG_XDPMS'
4248 echores "no"
4252 echocheck "Xv"
4253 if test "$_xv" = auto ; then
4254 cat > $TMPC <<EOF
4255 #include <X11/Xlib.h>
4256 #include <X11/extensions/Xvlib.h>
4257 int main(void) {
4258 (void) XvGetPortAttribute(0, 0, 0, 0);
4259 (void) XvQueryPortAttributes(0, 0, 0);
4260 return 0; }
4262 _xv=no
4263 cc_check -lXv && _xv=yes
4266 if test "$_xv" = yes ; then
4267 def_xv='#define CONFIG_XV 1'
4268 libs_mplayer="$libs_mplayer -lXv"
4269 vomodules="xv $vomodules"
4270 else
4271 def_xv='#undef CONFIG_XV'
4272 novomodules="xv $novomodules"
4274 echores "$_xv"
4277 echocheck "XvMC"
4278 if test "$_xv" = yes && test "$_xvmc" != no ; then
4279 _xvmc=no
4280 cat > $TMPC <<EOF
4281 #include <X11/Xlib.h>
4282 #include <X11/extensions/Xvlib.h>
4283 #include <X11/extensions/XvMClib.h>
4284 int main(void) {
4285 (void) XvMCQueryExtension(0,0,0);
4286 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4287 return 0; }
4289 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4290 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4291 done
4293 if test "$_xvmc" = yes ; then
4294 def_xvmc='#define CONFIG_XVMC 1'
4295 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4296 vomodules="xvmc $vomodules"
4297 res_comment="using $_xvmclib"
4298 else
4299 def_xvmc='#define CONFIG_XVMC 0'
4300 novomodules="xvmc $novomodules"
4302 echores "$_xvmc"
4305 echocheck "VDPAU"
4306 if test "$_vdpau" = auto ; then
4307 _vdpau=no
4308 if test "$_dl" = yes ; then
4309 cat > $TMPC <<EOF
4310 #include <vdpau/vdpau_x11.h>
4311 int main(void) {
4312 (void) vdp_device_create_x11(0, 0, 0, 0);
4313 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4315 cc_check -lvdpau && _vdpau=yes
4318 if test "$_vdpau" = yes ; then
4319 def_vdpau='#define CONFIG_VDPAU 1'
4320 libs_mplayer="$libs_mplayer -lvdpau"
4321 vomodules="vdpau $vomodules"
4322 else
4323 def_vdpau='#define CONFIG_VDPAU 0'
4324 novomodules="vdpau $novomodules"
4326 echores "$_vdpau"
4329 echocheck "Xinerama"
4330 if test "$_xinerama" = auto ; then
4331 cat > $TMPC <<EOF
4332 #include <X11/Xlib.h>
4333 #include <X11/extensions/Xinerama.h>
4334 int main(void) { (void) XineramaIsActive(0); return 0; }
4336 _xinerama=no
4337 cc_check -lXinerama && _xinerama=yes
4340 if test "$_xinerama" = yes ; then
4341 def_xinerama='#define CONFIG_XINERAMA 1'
4342 libs_mplayer="$libs_mplayer -lXinerama"
4343 else
4344 def_xinerama='#undef CONFIG_XINERAMA'
4346 echores "$_xinerama"
4349 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4350 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4351 # named 'X extensions' or something similar.
4352 # This check may be useful for future mplayer versions (to change resolution)
4353 # If you run into problems, remove '-lXxf86vm'.
4354 echocheck "Xxf86vm"
4355 if test "$_vm" = auto ; then
4356 cat > $TMPC <<EOF
4357 #include <X11/Xlib.h>
4358 #include <X11/extensions/xf86vmode.h>
4359 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4361 _vm=no
4362 cc_check -lXxf86vm && _vm=yes
4364 if test "$_vm" = yes ; then
4365 def_vm='#define CONFIG_XF86VM 1'
4366 libs_mplayer="$libs_mplayer -lXxf86vm"
4367 else
4368 def_vm='#undef CONFIG_XF86VM'
4370 echores "$_vm"
4372 # Check for the presence of special keycodes, like audio control buttons
4373 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4374 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4375 # have these new keycodes.
4376 echocheck "XF86keysym"
4377 if test "$_xf86keysym" = auto; then
4378 _xf86keysym=no
4379 cat > $TMPC <<EOF
4380 #include <X11/Xlib.h>
4381 #include <X11/XF86keysym.h>
4382 int main(void) { return XF86XK_AudioPause; }
4384 cc_check && _xf86keysym=yes
4386 if test "$_xf86keysym" = yes ; then
4387 def_xf86keysym='#define CONFIG_XF86XK 1'
4388 else
4389 def_xf86keysym='#undef CONFIG_XF86XK'
4391 echores "$_xf86keysym"
4393 echocheck "DGA"
4394 if test "$_dga2" = auto && test "$_x11" = yes ; then
4395 cat > $TMPC << EOF
4396 #include <X11/Xlib.h>
4397 #include <X11/extensions/xf86dga.h>
4398 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4400 _dga2=no
4401 cc_check -lXxf86dga && _dga2=yes
4403 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4404 cat > $TMPC << EOF
4405 #include <X11/Xlib.h>
4406 #include <X11/extensions/xf86dga.h>
4407 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4409 _dga1=no
4410 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4413 _dga=no
4414 def_dga='#undef CONFIG_DGA'
4415 def_dga1='#undef CONFIG_DGA1'
4416 def_dga2='#undef CONFIG_DGA2'
4417 if test "$_dga1" = yes ; then
4418 _dga=yes
4419 def_dga1='#define CONFIG_DGA1 1'
4420 res_comment="using DGA 1.0"
4421 elif test "$_dga2" = yes ; then
4422 _dga=yes
4423 def_dga2='#define CONFIG_DGA2 1'
4424 res_comment="using DGA 2.0"
4426 if test "$_dga" = yes ; then
4427 def_dga='#define CONFIG_DGA 1'
4428 libs_mplayer="$libs_mplayer -lXxf86dga"
4429 vomodules="dga $vomodules"
4430 else
4431 novomodules="dga $novomodules"
4433 echores "$_dga"
4436 echocheck "3dfx"
4437 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4438 def_3dfx='#define CONFIG_3DFX 1'
4439 vomodules="3dfx $vomodules"
4440 else
4441 def_3dfx='#undef CONFIG_3DFX'
4442 novomodules="3dfx $novomodules"
4444 echores "$_3dfx"
4447 echocheck "VIDIX"
4448 def_vidix='#undef CONFIG_VIDIX'
4449 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4450 _vidix_drv_cyberblade=no
4451 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4452 _vidix_drv_ivtv=no
4453 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4454 _vidix_drv_mach64=no
4455 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4456 _vidix_drv_mga=no
4457 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4458 _vidix_drv_mga_crtc2=no
4459 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4460 _vidix_drv_nvidia=no
4461 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4462 _vidix_drv_pm2=no
4463 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4464 _vidix_drv_pm3=no
4465 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4466 _vidix_drv_radeon=no
4467 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4468 _vidix_drv_rage128=no
4469 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4470 _vidix_drv_s3=no
4471 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4472 _vidix_drv_sh_veu=no
4473 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4474 _vidix_drv_sis=no
4475 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4476 _vidix_drv_unichrome=no
4477 if test "$_vidix" = auto ; then
4478 _vidix=no
4479 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4480 && _vidix=yes
4481 x86_64 && ! linux && _vidix=no
4482 (ppc || alpha) && linux && _vidix=yes
4484 echores "$_vidix"
4486 if test "$_vidix" = yes ; then
4487 def_vidix='#define CONFIG_VIDIX 1'
4488 vomodules="cvidix $vomodules"
4489 # FIXME: ivtv driver temporarily disabled until we have a proper test
4490 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4491 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4493 # some vidix drivers are architecture and os specific, discard them elsewhere
4494 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4495 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4497 for driver in $_vidix_drivers ; do
4498 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4499 eval _vidix_drv_${driver}=yes
4500 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4501 done
4503 echocheck "VIDIX PCI device name database"
4504 echores "$_vidix_pcidb"
4505 if test "$_vidix_pcidb" = yes ; then
4506 _vidix_pcidb_val=1
4507 else
4508 _vidix_pcidb_val=0
4511 echocheck "VIDIX dhahelper support"
4512 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4513 echores "$_dhahelper"
4515 echocheck "VIDIX svgalib_helper support"
4516 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4517 echores "$_svgalib_helper"
4519 else
4520 novomodules="cvidix $novomodules"
4523 if test "$_vidix" = yes && win32; then
4524 winvidix=yes
4525 vomodules="winvidix $vomodules"
4526 libs_mplayer="$libs_mplayer -lgdi32"
4527 else
4528 novomodules="winvidix $novomodules"
4530 if test "$_vidix" = yes && test "$_x11" = yes; then
4531 xvidix=yes
4532 vomodules="xvidix $vomodules"
4533 else
4534 novomodules="xvidix $novomodules"
4537 echocheck "GGI"
4538 if test "$_ggi" = auto ; then
4539 cat > $TMPC << EOF
4540 #include <ggi/ggi.h>
4541 int main(void) { ggiInit(); return 0; }
4543 _ggi=no
4544 cc_check -lggi && _ggi=yes
4546 if test "$_ggi" = yes ; then
4547 def_ggi='#define CONFIG_GGI 1'
4548 libs_mplayer="$libs_mplayer -lggi"
4549 vomodules="ggi $vomodules"
4550 else
4551 def_ggi='#undef CONFIG_GGI'
4552 novomodules="ggi $novomodules"
4554 echores "$_ggi"
4556 echocheck "GGI extension: libggiwmh"
4557 if test "$_ggiwmh" = auto ; then
4558 _ggiwmh=no
4559 cat > $TMPC << EOF
4560 #include <ggi/ggi.h>
4561 #include <ggi/wmh.h>
4562 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4564 cc_check -lggi -lggiwmh && _ggiwmh=yes
4566 # needed to get right output on obscure combination
4567 # like --disable-ggi --enable-ggiwmh
4568 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4569 def_ggiwmh='#define CONFIG_GGIWMH 1'
4570 libs_mplayer="$libs_mplayer -lggiwmh"
4571 else
4572 _ggiwmh=no
4573 def_ggiwmh='#undef CONFIG_GGIWMH'
4575 echores "$_ggiwmh"
4578 echocheck "AA"
4579 if test "$_aa" = auto ; then
4580 cat > $TMPC << EOF
4581 #include <aalib.h>
4582 extern struct aa_hardware_params aa_defparams;
4583 extern struct aa_renderparams aa_defrenderparams;
4584 int main(void) {
4585 aa_context *c;
4586 aa_renderparams *p;
4587 (void) aa_init(0, 0, 0);
4588 c = aa_autoinit(&aa_defparams);
4589 p = aa_getrenderparams();
4590 aa_autoinitkbd(c,0);
4591 return 0; }
4593 _aa=no
4594 for _ld_tmp in "-laa" ; do
4595 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4596 done
4598 if test "$_aa" = yes ; then
4599 def_aa='#define CONFIG_AA 1'
4600 if cygwin ; then
4601 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4603 vomodules="aa $vomodules"
4604 else
4605 def_aa='#undef CONFIG_AA'
4606 novomodules="aa $novomodules"
4608 echores "$_aa"
4611 echocheck "CACA"
4612 if test "$_caca" = auto ; then
4613 _caca=no
4614 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4615 cat > $TMPC << EOF
4616 #include <caca.h>
4617 #ifdef CACA_API_VERSION_1
4618 #include <caca0.h>
4619 #endif
4620 int main(void) { (void) caca_init(); return 0; }
4622 cc_check $(caca-config --libs) && _caca=yes
4625 if test "$_caca" = yes ; then
4626 def_caca='#define CONFIG_CACA 1'
4627 extra_cflags="$extra_cflags $(caca-config --cflags)"
4628 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4629 vomodules="caca $vomodules"
4630 else
4631 def_caca='#undef CONFIG_CACA'
4632 novomodules="caca $novomodules"
4634 echores "$_caca"
4637 echocheck "SVGAlib"
4638 if test "$_svga" = auto ; then
4639 _svga=no
4640 header_check vga.h -lvga $_ld_lm && _svga=yes
4642 if test "$_svga" = yes ; then
4643 def_svga='#define CONFIG_SVGALIB 1'
4644 libs_mplayer="$libs_mplayer -lvga"
4645 vomodules="svga $vomodules"
4646 else
4647 def_svga='#undef CONFIG_SVGALIB'
4648 novomodules="svga $novomodules"
4650 echores "$_svga"
4653 echocheck "FBDev"
4654 if test "$_fbdev" = auto ; then
4655 _fbdev=no
4656 linux && _fbdev=yes
4658 if test "$_fbdev" = yes ; then
4659 def_fbdev='#define CONFIG_FBDEV 1'
4660 vomodules="fbdev $vomodules"
4661 else
4662 def_fbdev='#undef CONFIG_FBDEV'
4663 novomodules="fbdev $novomodules"
4665 echores "$_fbdev"
4669 echocheck "DVB"
4670 if test "$_dvb" = auto ; then
4671 _dvb=no
4672 cat >$TMPC << EOF
4673 #include <poll.h>
4674 #include <sys/ioctl.h>
4675 #include <stdio.h>
4676 #include <time.h>
4677 #include <unistd.h>
4678 #include <linux/dvb/dmx.h>
4679 #include <linux/dvb/frontend.h>
4680 #include <linux/dvb/video.h>
4681 #include <linux/dvb/audio.h>
4682 int main(void) {return 0;}
4684 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4685 cc_check $_inc_tmp && _dvb=yes && \
4686 extra_cflags="$extra_cflags $_inc_tmp" && break
4687 done
4689 echores "$_dvb"
4690 if test "$_dvb" = yes ; then
4691 _dvbin=yes
4692 inputmodules="dvb $inputmodules"
4693 def_dvb='#define CONFIG_DVB 1'
4694 def_dvbin='#define CONFIG_DVBIN 1'
4695 aomodules="mpegpes(dvb) $aomodules"
4696 vomodules="mpegpes(dvb) $vomodules"
4697 else
4698 _dvbin=no
4699 noinputmodules="dvb $noinputmodules"
4700 def_dvb='#undef CONFIG_DVB'
4701 def_dvbin='#undef CONFIG_DVBIN '
4702 aomodules="mpegpes(file) $aomodules"
4703 vomodules="mpegpes(file) $vomodules"
4707 if darwin; then
4709 echocheck "QuickTime"
4710 if test "$quicktime" = auto ; then
4711 cat > $TMPC <<EOF
4712 #include <QuickTime/QuickTime.h>
4713 int main(void) {
4714 ImageDescription *desc;
4715 EnterMovies();
4716 ExitMovies();
4717 return 0;
4720 quicktime=no
4721 cc_check -framework QuickTime && quicktime=yes
4723 if test "$quicktime" = yes ; then
4724 extra_ldflags="$extra_ldflags -framework QuickTime"
4725 def_quicktime='#define CONFIG_QUICKTIME 1'
4726 else
4727 def_quicktime='#undef CONFIG_QUICKTIME'
4728 _quartz=no
4730 echores $quicktime
4732 echocheck "Quartz"
4733 if test "$_quartz" = auto ; then
4734 cat > $TMPC <<EOF
4735 #include <Carbon/Carbon.h>
4736 int main(void) {
4737 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4738 return 0;
4741 _quartz=no
4742 cc_check -framework Carbon && _quartz=yes
4744 if test "$_quartz" = yes ; then
4745 libs_mplayer="$libs_mplayer -framework Carbon"
4746 def_quartz='#define CONFIG_QUARTZ 1'
4747 vomodules="quartz $vomodules"
4748 else
4749 def_quartz='#undef CONFIG_QUARTZ'
4750 novomodules="quartz $novomodules"
4752 echores $_quartz
4754 echocheck "CoreVideo"
4755 if test "$_corevideo" = auto ; then
4756 cat > $TMPC <<EOF
4757 #include <Carbon/Carbon.h>
4758 #include <CoreServices/CoreServices.h>
4759 #include <OpenGL/OpenGL.h>
4760 #include <QuartzCore/CoreVideo.h>
4761 int main(void) { return 0; }
4763 _corevideo=no
4764 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4766 if test "$_corevideo" = yes ; then
4767 vomodules="corevideo $vomodules"
4768 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4769 def_corevideo='#define CONFIG_COREVIDEO 1'
4770 else
4771 novomodules="corevideo $novomodules"
4772 def_corevideo='#undef CONFIG_COREVIDEO'
4774 echores "$_corevideo"
4776 fi #if darwin
4779 echocheck "PNG support"
4780 if test "$_png" = auto ; then
4781 _png=no
4782 if irix ; then
4783 # Don't check for -lpng on irix since it has its own libpng
4784 # incompatible with the GNU libpng
4785 res_comment="disabled on irix (not GNU libpng)"
4786 else
4787 cat > $TMPC << EOF
4788 #include <png.h>
4789 #include <string.h>
4790 int main(void) {
4791 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4792 printf("libpng: %s\n", png_libpng_ver);
4793 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4796 cc_check -lpng -lz $_ld_lm && _png=yes
4799 echores "$_png"
4800 if test "$_png" = yes ; then
4801 def_png='#define CONFIG_PNG 1'
4802 extra_ldflags="$extra_ldflags -lpng -lz"
4803 else
4804 def_png='#undef CONFIG_PNG'
4807 echocheck "MNG support"
4808 if test "$_mng" = auto ; then
4809 _mng=no
4810 cat > $TMPC << EOF
4811 #include <libmng.h>
4812 int main(void) {
4813 const char * p_ver = mng_version_text();
4814 return !p_ver || p_ver[0] == 0;
4817 if cc_check -lmng -lz $_ld_lm ; then
4818 _mng=yes
4821 echores "$_mng"
4822 if test "$_mng" = yes ; then
4823 def_mng='#define CONFIG_MNG 1'
4824 extra_ldflags="$extra_ldflags -lmng -lz"
4825 else
4826 def_mng='#undef CONFIG_MNG'
4829 echocheck "JPEG support"
4830 if test "$_jpeg" = auto ; then
4831 _jpeg=no
4832 cat > $TMPC << EOF
4833 #include <stdio.h>
4834 #include <stdlib.h>
4835 #include <setjmp.h>
4836 #include <string.h>
4837 #include <jpeglib.h>
4838 int main(void) { return 0; }
4840 cc_check -ljpeg $_ld_lm && _jpeg=yes
4842 echores "$_jpeg"
4844 if test "$_jpeg" = yes ; then
4845 def_jpeg='#define CONFIG_JPEG 1'
4846 vomodules="jpeg $vomodules"
4847 extra_ldflags="$extra_ldflags -ljpeg"
4848 else
4849 def_jpeg='#undef CONFIG_JPEG'
4850 novomodules="jpeg $novomodules"
4855 echocheck "PNM support"
4856 if test "$_pnm" = yes; then
4857 def_pnm="#define CONFIG_PNM 1"
4858 vomodules="pnm $vomodules"
4859 else
4860 def_pnm="#undef CONFIG_PNM"
4861 novomodules="pnm $novomodules"
4863 echores "$_pnm"
4867 echocheck "GIF support"
4868 # This is to appease people who want to force gif support.
4869 # If it is forced to yes, then we still do checks to determine
4870 # which gif library to use.
4871 if test "$_gif" = yes ; then
4872 _force_gif=yes
4873 _gif=auto
4876 if test "$_gif" = auto ; then
4877 _gif=no
4878 cat > $TMPC << EOF
4879 #include <gif_lib.h>
4880 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4882 for _ld_gif in "-lungif" "-lgif" ; do
4883 cc_check $_ld_gif && _gif=yes && break
4884 done
4887 # If no library was found, and the user wants support forced,
4888 # then we force it on with libgif, as this is the safest
4889 # assumption IMHO. (libungif & libregif both create symbolic
4890 # links to libgif. We also assume that no x11 support is needed,
4891 # because if you are forcing this, then you _should_ know what
4892 # you are doing. [ Besides, package maintainers should never
4893 # have compiled x11 deps into libungif in the first place. ] )
4894 # </rant>
4895 # --Joey
4896 if test "$_force_gif" = yes && test "$_gif" = no ; then
4897 _gif=yes
4898 _ld_gif="-lgif"
4901 if test "$_gif" = yes ; then
4902 def_gif='#define CONFIG_GIF 1'
4903 codecmodules="gif $codecmodules"
4904 vomodules="gif89a $vomodules"
4905 res_comment="old version, some encoding functions disabled"
4906 def_gif_4='#undef CONFIG_GIF_4'
4907 extra_ldflags="$extra_ldflags $_ld_gif"
4909 cat > $TMPC << EOF
4910 #include <signal.h>
4911 #include <gif_lib.h>
4912 void catch(int sig) { exit(1); }
4913 int main(void) {
4914 signal(SIGSEGV, catch); // catch segfault
4915 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4916 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4917 return 0;
4920 if cc_check "$_ld_gif" ; then
4921 def_gif_4='#define CONFIG_GIF_4 1'
4922 res_comment=""
4924 else
4925 def_gif='#undef CONFIG_GIF'
4926 def_gif_4='#undef CONFIG_GIF_4'
4927 novomodules="gif89a $novomodules"
4928 nocodecmodules="gif $nocodecmodules"
4930 echores "$_gif"
4933 case "$_gif" in yes*)
4934 echocheck "broken giflib workaround"
4935 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4937 cat > $TMPC << EOF
4938 #include <gif_lib.h>
4939 int main(void) {
4940 GifFileType gif;
4941 printf("UserData is at address %p\n", gif.UserData);
4942 return 0;
4945 if cc_check "$_ld_gif" ; then
4946 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4947 echores "disabled"
4948 else
4949 echores "enabled"
4952 esac
4955 echocheck "VESA support"
4956 if test "$_vesa" = auto ; then
4957 cat > $TMPC << EOF
4958 #include <vbe.h>
4959 int main(void) { vbeVersion(); return 0; }
4961 _vesa=no
4962 cc_check -lvbe -llrmi && _vesa=yes
4964 if test "$_vesa" = yes ; then
4965 def_vesa='#define CONFIG_VESA 1'
4966 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4967 vomodules="vesa $vomodules"
4968 else
4969 def_vesa='#undef CONFIG_VESA'
4970 novomodules="vesa $novomodules"
4972 echores "$_vesa"
4974 #################
4975 # VIDEO + AUDIO #
4976 #################
4979 echocheck "SDL"
4980 _inc_tmp=""
4981 _ld_tmp=""
4982 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4983 if test -z "$_sdlconfig" ; then
4984 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4985 _sdlconfig="sdl-config"
4986 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4987 _sdlconfig="sdl11-config"
4988 else
4989 _sdlconfig=false
4992 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4993 cat > $TMPC << EOF
4994 #ifdef CONFIG_SDL_SDL_H
4995 #include <SDL/SDL.h>
4996 #else
4997 #include <SDL.h>
4998 #endif
4999 #ifndef __APPLE__
5000 // we allow SDL hacking our main() only on OSX
5001 #undef main
5002 #endif
5003 int main(int argc, char *argv[]) {
5004 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5005 return 0;
5008 _sdl=no
5009 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5010 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5011 _sdl=yes
5012 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5013 break
5015 done
5016 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5017 res_comment="using $_sdlconfig"
5018 if cygwin ; then
5019 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5020 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5021 elif mingw32 ; then
5022 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5023 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5024 else
5025 _inc_tmp="$($_sdlconfig --cflags)"
5026 _ld_tmp="$($_sdlconfig --libs)"
5028 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5029 _sdl=yes
5030 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
5031 # HACK for BeOS/Haiku SDL
5032 _ld_tmp="$_ld_tmp -lstdc++"
5033 _sdl=yes
5037 if test "$_sdl" = yes ; then
5038 def_sdl='#define CONFIG_SDL 1'
5039 extra_cflags="$extra_cflags $_inc_tmp"
5040 libs_mplayer="$libs_mplayer $_ld_tmp"
5041 vomodules="sdl $vomodules"
5042 aomodules="sdl $aomodules"
5043 else
5044 def_sdl='#undef CONFIG_SDL'
5045 novomodules="sdl $novomodules"
5046 noaomodules="sdl $noaomodules"
5048 echores "$_sdl"
5051 # make sure this stays below CoreVideo to avoid issues due to namespace
5052 # conflicts between -lGL and -framework OpenGL
5053 echocheck "OpenGL"
5054 #Note: this test is run even with --enable-gl since we autodetect linker flags
5055 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5056 cat > $TMPC << EOF
5057 #ifdef GL_WIN32
5058 #include <windows.h>
5059 #include <GL/gl.h>
5060 #elif defined(GL_SDL)
5061 #include <GL/gl.h>
5062 #ifdef CONFIG_SDL_SDL_H
5063 #include <SDL/SDL.h>
5064 #else
5065 #include <SDL.h>
5066 #endif
5067 #ifndef __APPLE__
5068 // we allow SDL hacking our main() only on OSX
5069 #undef main
5070 #endif
5071 #else
5072 #include <GL/gl.h>
5073 #include <X11/Xlib.h>
5074 #include <GL/glx.h>
5075 #endif
5076 int main(int argc, char *argv[]) {
5077 #ifdef GL_WIN32
5078 HDC dc;
5079 wglCreateContext(dc);
5080 #elif defined(GL_SDL)
5081 SDL_GL_SwapBuffers();
5082 #else
5083 glXCreateContext(NULL, NULL, NULL, True);
5084 #endif
5085 glFinish();
5086 return 0;
5089 _gl=no
5090 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5091 if cc_check $_ld_tmp $_ld_lm ; then
5092 _gl=yes
5093 _gl_x11=yes
5094 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5095 break
5097 done
5098 if cc_check -DGL_WIN32 -lopengl32 ; then
5099 _gl=yes
5100 _gl_win32=yes
5101 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5103 # last so it can reuse any linker etc. flags detected before
5104 if test "$_sdl" = yes ; then
5105 if cc_check -DGL_SDL ||
5106 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5107 _gl=yes
5108 _gl_sdl=yes
5109 elif cc_check -DGL_SDL -lGL ||
5110 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5111 _gl=yes
5112 _gl_sdl=yes
5113 libs_mplayer="$libs_mplayer -lGL"
5116 else
5117 _gl=no
5119 if test "$_gl" = yes ; then
5120 def_gl='#define CONFIG_GL 1'
5121 res_comment="backends:"
5122 if test "$_gl_win32" = yes ; then
5123 def_gl_win32='#define CONFIG_GL_WIN32 1'
5124 res_comment="$res_comment win32"
5126 if test "$_gl_x11" = yes ; then
5127 def_gl_x11='#define CONFIG_GL_X11 1'
5128 res_comment="$res_comment x11"
5130 if test "$_gl_sdl" = yes ; then
5131 def_gl_sdl='#define CONFIG_GL_SDL 1'
5132 res_comment="$res_comment sdl"
5134 vomodules="opengl $vomodules"
5135 else
5136 def_gl='#undef CONFIG_GL'
5137 def_gl_win32='#undef CONFIG_GL_WIN32'
5138 def_gl_x11='#undef CONFIG_GL_X11'
5139 def_gl_sdl='#undef CONFIG_GL_SDL'
5140 novomodules="opengl $novomodules"
5142 echores "$_gl"
5145 echocheck "MatrixView"
5146 if test "$_gl" = no ; then
5147 matrixview=no
5149 if test "$matrixview" = yes ; then
5150 vomodules="matrixview $vomodules"
5151 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5152 else
5153 novomodules="matrixview $novomodules"
5154 def_matrixview='#undef CONFIG_MATRIXVIEW'
5156 echores "$matrixview"
5159 if os2 ; then
5160 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5161 if test "$_kva" = auto; then
5162 cat > $TMPC << EOF
5163 #include <os2.h>
5164 #include <kva.h>
5165 int main(void) { return 0; }
5167 _kva=no;
5168 cc_check -lkva && _kva=yes
5170 if test "$_kva" = yes ; then
5171 def_kva='#define CONFIG_KVA 1'
5172 libs_mplayer="$libs_mplayer -lkva"
5173 vomodules="kva $vomodules"
5174 else
5175 def_kva='#undef CONFIG_KVA'
5176 novomodules="kva $novomodules"
5178 echores "$_kva"
5179 fi #if os2
5182 if win32; then
5184 echocheck "Windows waveout"
5185 if test "$_win32waveout" = auto ; then
5186 cat > $TMPC << EOF
5187 #include <windows.h>
5188 #include <mmsystem.h>
5189 int main(void) { return 0; }
5191 _win32waveout=no
5192 cc_check -lwinmm && _win32waveout=yes
5194 if test "$_win32waveout" = yes ; then
5195 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5196 libs_mplayer="$libs_mplayer -lwinmm"
5197 aomodules="win32 $aomodules"
5198 else
5199 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5200 noaomodules="win32 $noaomodules"
5202 echores "$_win32waveout"
5204 echocheck "Direct3D"
5205 if test "$_direct3d" = auto ; then
5206 cat > $TMPC << EOF
5207 #include <windows.h>
5208 #include <d3d9.h>
5209 int main(void) { return 0; }
5211 _direct3d=no
5212 cc_check && _direct3d=yes
5214 if test "$_direct3d" = yes ; then
5215 def_direct3d='#define CONFIG_DIRECT3D 1'
5216 vomodules="direct3d $vomodules"
5217 else
5218 def_direct3d='#undef CONFIG_DIRECT3D'
5219 novomodules="direct3d $novomodules"
5221 echores "$_direct3d"
5223 echocheck "Directx"
5224 if test "$_directx" = auto ; then
5225 cat > $TMPC << EOF
5226 #include <windows.h>
5227 #include <ddraw.h>
5228 #include <dsound.h>
5229 int main(void) { return 0; }
5231 _directx=no
5232 cc_check -lgdi32 && _directx=yes
5234 if test "$_directx" = yes ; then
5235 def_directx='#define CONFIG_DIRECTX 1'
5236 libs_mplayer="$libs_mplayer -lgdi32"
5237 vomodules="directx $vomodules"
5238 aomodules="dsound $aomodules"
5239 else
5240 def_directx='#undef CONFIG_DIRECTX'
5241 novomodules="directx $novomodules"
5242 noaomodules="dsound $noaomodules"
5244 echores "$_directx"
5246 fi #if win32; then
5249 echocheck "DXR2"
5250 if test "$_dxr2" = auto; then
5251 _dxr2=no
5252 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5253 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5254 extra_cflags="$extra_cflags $_inc_tmp" && break
5255 done
5257 if test "$_dxr2" = yes; then
5258 def_dxr2='#define CONFIG_DXR2 1'
5259 aomodules="dxr2 $aomodules"
5260 vomodules="dxr2 $vomodules"
5261 else
5262 def_dxr2='#undef CONFIG_DXR2'
5263 noaomodules="dxr2 $noaomodules"
5264 novomodules="dxr2 $novomodules"
5266 echores "$_dxr2"
5268 echocheck "DXR3/H+"
5269 if test "$_dxr3" = auto ; then
5270 _dxr3=no
5271 header_check linux/em8300.h && _dxr3=yes
5273 if test "$_dxr3" = yes ; then
5274 def_dxr3='#define CONFIG_DXR3 1'
5275 vomodules="dxr3 $vomodules"
5276 else
5277 def_dxr3='#undef CONFIG_DXR3'
5278 novomodules="dxr3 $novomodules"
5280 echores "$_dxr3"
5283 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5284 if test "$_ivtv" = auto ; then
5285 cat > $TMPC << EOF
5286 #include <stdlib.h>
5287 #include <inttypes.h>
5288 #include <linux/types.h>
5289 #include <linux/videodev2.h>
5290 #include <linux/ivtv.h>
5291 #include <sys/ioctl.h>
5292 int main(void) {
5293 struct ivtv_cfg_stop_decode sd;
5294 struct ivtv_cfg_start_decode sd1;
5295 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5296 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5297 return 0; }
5299 _ivtv=no
5300 cc_check && _ivtv=yes
5302 if test "$_ivtv" = yes ; then
5303 def_ivtv='#define CONFIG_IVTV 1'
5304 vomodules="ivtv $vomodules"
5305 aomodules="ivtv $aomodules"
5306 else
5307 def_ivtv='#undef CONFIG_IVTV'
5308 novomodules="ivtv $novomodules"
5309 noaomodules="ivtv $noaomodules"
5311 echores "$_ivtv"
5314 echocheck "V4L2 MPEG Decoder"
5315 if test "$_v4l2" = auto ; then
5316 cat > $TMPC << EOF
5317 #include <stdlib.h>
5318 #include <inttypes.h>
5319 #include <linux/types.h>
5320 #include <linux/videodev2.h>
5321 #include <linux/version.h>
5322 int main(void) {
5323 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5324 #error kernel headers too old, need 2.6.22
5325 #endif
5326 struct v4l2_ext_controls ctrls;
5327 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5328 return 0;
5331 _v4l2=no
5332 cc_check && _v4l2=yes
5334 if test "$_v4l2" = yes ; then
5335 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5336 vomodules="v4l2 $vomodules"
5337 aomodules="v4l2 $aomodules"
5338 else
5339 def_v4l2='#undef CONFIG_V4L2_DECODER'
5340 novomodules="v4l2 $novomodules"
5341 noaomodules="v4l2 $noaomodules"
5343 echores "$_v4l2"
5347 #########
5348 # AUDIO #
5349 #########
5352 echocheck "OSS Audio"
5353 if test "$_ossaudio" = auto ; then
5354 cat > $TMPC << EOF
5355 #include <sys/ioctl.h>
5356 #include <$_soundcard_header>
5357 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5359 _ossaudio=no
5360 cc_check && _ossaudio=yes
5362 if test "$_ossaudio" = yes ; then
5363 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5364 aomodules="oss $aomodules"
5365 cat > $TMPC << EOF
5366 #include <sys/ioctl.h>
5367 #include <$_soundcard_header>
5368 #ifdef OPEN_SOUND_SYSTEM
5369 int main(void) { return 0; }
5370 #else
5371 #error Not the real thing
5372 #endif
5374 _real_ossaudio=no
5375 cc_check && _real_ossaudio=yes
5376 if test "$_real_ossaudio" = yes; then
5377 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5378 # Check for OSS4 headers (override default headers)
5379 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5380 if test -f /etc/oss.conf; then
5381 . /etc/oss.conf
5382 _ossinc="$OSSLIBDIR/include"
5383 if test -f "$_ossinc/sys/soundcard.h"; then
5384 extra_cflags="-I$_ossinc $extra_cflags"
5387 elif netbsd || openbsd ; then
5388 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5389 extra_ldflags="$extra_ldflags -lossaudio"
5390 else
5391 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5393 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5394 else
5395 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5396 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5397 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5398 noaomodules="oss $noaomodules"
5400 echores "$_ossaudio"
5403 echocheck "aRts"
5404 if test "$_arts" = auto ; then
5405 _arts=no
5406 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5407 function_check artsc.h "arts_init()" $(artsc-config --libs) $(artsc-config --cflags) &&
5408 _arts=yes
5412 if test "$_arts" = yes ; then
5413 def_arts='#define CONFIG_ARTS 1'
5414 aomodules="arts $aomodules"
5415 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5416 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5417 else
5418 noaomodules="arts $noaomodules"
5420 echores "$_arts"
5423 echocheck "EsounD"
5424 if test "$_esd" = auto ; then
5425 _esd=no
5426 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5428 cat > $TMPC << EOF
5429 #include <esd.h>
5430 int main(void) { int fd = esd_open_sound("test"); return fd; }
5432 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5436 echores "$_esd"
5438 if test "$_esd" = yes ; then
5439 def_esd='#define CONFIG_ESD 1'
5440 aomodules="esd $aomodules"
5441 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5442 extra_cflags="$extra_cflags $(esd-config --cflags)"
5444 echocheck "esd_get_latency()"
5445 cat > $TMPC << EOF
5446 #include <esd.h>
5447 int main(void) { return esd_get_latency(0); }
5449 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5450 echores "$_esd_latency"
5451 else
5452 def_esd='#undef CONFIG_ESD'
5453 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5454 noaomodules="esd $noaomodules"
5458 echocheck "NAS"
5459 if test "$_nas" = auto ; then
5460 _nas=no
5461 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5463 if test "$_nas" = yes ; then
5464 def_nas='#define CONFIG_NAS 1'
5465 libs_mplayer="$libs_mplayer -laudio -lXt"
5466 aomodules="nas $aomodules"
5467 else
5468 noaomodules="nas $noaomodules"
5469 def_nas='#undef CONFIG_NAS'
5471 echores "$_nas"
5474 echocheck "pulse"
5475 if test "$_pulse" = auto ; then
5476 _pulse=no
5477 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5478 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5479 _pulse=yes
5482 echores "$_pulse"
5484 if test "$_pulse" = yes ; then
5485 def_pulse='#define CONFIG_PULSE 1'
5486 aomodules="pulse $aomodules"
5487 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5488 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5489 else
5490 def_pulse='#undef CONFIG_PULSE'
5491 noaomodules="pulse $noaomodules"
5495 echocheck "JACK"
5496 if test "$_jack" = auto ; then
5497 _jack=yes
5499 cat > $TMPC << EOF
5500 #include <jack/jack.h>
5501 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5503 if cc_check -ljack ; then
5504 libs_mplayer="$libs_mplayer -ljack"
5505 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5506 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5507 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5508 else
5509 _jack=no
5513 if test "$_jack" = yes ; then
5514 def_jack='#define CONFIG_JACK 1'
5515 aomodules="jack $aomodules"
5516 else
5517 noaomodules="jack $noaomodules"
5519 echores "$_jack"
5521 echocheck "OpenAL"
5522 if test "$_openal" = auto ; then
5523 _openal=no
5524 cat > $TMPC << EOF
5525 #ifdef OPENAL_AL_H
5526 #include <OpenAL/al.h>
5527 #else
5528 #include <AL/al.h>
5529 #endif
5530 int main(void) {
5531 alSourceQueueBuffers(0, 0, 0);
5532 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5533 return 0;
5536 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5537 cc_check $I && _openal=yes && break
5538 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5539 done
5540 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5542 if test "$_openal" = yes ; then
5543 def_openal='#define CONFIG_OPENAL 1'
5544 aomodules="openal $aomodules"
5545 else
5546 noaomodules="openal $noaomodules"
5548 echores "$_openal"
5550 echocheck "ALSA audio"
5551 if test "$_alloca" != yes ; then
5552 _alsa=no
5553 res_comment="alloca missing"
5555 if test "$_alsa" != no ; then
5556 _alsa=no
5557 cat > $TMPC << EOF
5558 #include <sys/asoundlib.h>
5559 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5560 #error "alsa version != 0.5.x"
5561 #endif
5562 int main(void) { return 0; }
5564 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5566 cat > $TMPC << EOF
5567 #include <sys/asoundlib.h>
5568 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5569 #error "alsa version != 0.9.x"
5570 #endif
5571 int main(void) { return 0; }
5573 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5574 cat > $TMPC << EOF
5575 #include <alsa/asoundlib.h>
5576 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5577 #error "alsa version != 0.9.x"
5578 #endif
5579 int main(void) { return 0; }
5581 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5583 cat > $TMPC << EOF
5584 #include <sys/asoundlib.h>
5585 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5586 #error "alsa version != 1.0.x"
5587 #endif
5588 int main(void) { return 0; }
5590 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5591 cat > $TMPC << EOF
5592 #include <alsa/asoundlib.h>
5593 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5594 #error "alsa version != 1.0.x"
5595 #endif
5596 int main(void) { return 0; }
5598 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5600 def_alsa='#undef CONFIG_ALSA'
5601 def_alsa5='#undef CONFIG_ALSA5'
5602 def_alsa9='#undef CONFIG_ALSA9'
5603 def_alsa1x='#undef CONFIG_ALSA1X'
5604 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5605 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5606 if test "$_alsaver" ; then
5607 _alsa=yes
5608 if test "$_alsaver" = '0.5.x' ; then
5609 _alsa5=yes
5610 aomodules="alsa5 $aomodules"
5611 def_alsa5='#define CONFIG_ALSA5 1'
5612 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5613 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5614 elif test "$_alsaver" = '0.9.x-sys' ; then
5615 _alsa9=yes
5616 aomodules="alsa $aomodules"
5617 def_alsa='#define CONFIG_ALSA 1'
5618 def_alsa9='#define CONFIG_ALSA9 1'
5619 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5620 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5621 elif test "$_alsaver" = '0.9.x-alsa' ; then
5622 _alsa9=yes
5623 aomodules="alsa $aomodules"
5624 def_alsa='#define CONFIG_ALSA 1'
5625 def_alsa9='#define CONFIG_ALSA9 1'
5626 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5627 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5628 elif test "$_alsaver" = '1.0.x-sys' ; 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_SYS_ASOUNDLIB_H 1'
5634 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5635 elif test "$_alsaver" = '1.0.x-alsa' ; then
5636 _alsa1x=yes
5637 aomodules="alsa $aomodules"
5638 def_alsa='#define CONFIG_ALSA 1'
5639 def_alsa1x="#define CONFIG_ALSA1X 1"
5640 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5641 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5642 else
5643 _alsa=no
5644 res_comment="unknown version"
5646 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5647 else
5648 noaomodules="alsa $noaomodules"
5650 echores "$_alsa"
5653 echocheck "Sun audio"
5654 if test "$_sunaudio" = auto ; then
5655 cat > $TMPC << EOF
5656 #include <sys/types.h>
5657 #include <sys/audioio.h>
5658 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5660 _sunaudio=no
5661 cc_check && _sunaudio=yes
5663 if test "$_sunaudio" = yes ; then
5664 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5665 aomodules="sun $aomodules"
5666 else
5667 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5668 noaomodules="sun $noaomodules"
5670 echores "$_sunaudio"
5673 def_mlib='#define CONFIG_MLIB 0'
5674 if sunos; then
5675 echocheck "Sun mediaLib"
5676 if test "$_mlib" = auto ; then
5677 _mlib=no
5678 cat > $TMPC << EOF
5679 #include <mlib.h>
5680 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5682 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5684 echores "$_mlib"
5685 fi #if sunos
5688 if darwin; then
5689 echocheck "CoreAudio"
5690 if test "$_coreaudio" = auto ; then
5691 cat > $TMPC <<EOF
5692 #include <CoreAudio/CoreAudio.h>
5693 #include <AudioToolbox/AudioToolbox.h>
5694 #include <AudioUnit/AudioUnit.h>
5695 int main(void) { return 0; }
5697 _coreaudio=no
5698 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5700 if test "$_coreaudio" = yes ; then
5701 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5702 def_coreaudio='#define CONFIG_COREAUDIO 1'
5703 aomodules="coreaudio $aomodules"
5704 else
5705 def_coreaudio='#undef CONFIG_COREAUDIO'
5706 noaomodules="coreaudio $noaomodules"
5708 echores $_coreaudio
5709 fi #if darwin
5712 if irix; then
5713 echocheck "SGI audio"
5714 if test "$_sgiaudio" = auto ; then
5715 _sgiaudio=no
5716 header_check dmedia/audio.h && _sgiaudio=yes
5718 if test "$_sgiaudio" = "yes" ; then
5719 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5720 libs_mplayer="$libs_mplayer -laudio"
5721 aomodules="sgi $aomodules"
5722 else
5723 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5724 noaomodules="sgi $noaomodules"
5726 echores "$_sgiaudio"
5727 fi #if irix
5730 if os2 ; then
5731 echocheck "KAI (UNIAUD/DART)"
5732 if test "$_kai" = auto; then
5733 cat > $TMPC << EOF
5734 #include <os2.h>
5735 #include <kai.h>
5736 int main(void) { return 0; }
5738 _kai=no;
5739 cc_check -lkai && _kai=yes
5741 if test "$_kai" = yes ; then
5742 def_kai='#define CONFIG_KAI 1'
5743 libs_mplayer="$libs_mplayer -lkai"
5744 aomodules="kai $aomodules"
5745 else
5746 def_kai='#undef CONFIG_KAI'
5747 noaomodules="kai $noaomodules"
5749 echores "$_kai"
5751 echocheck "DART"
5752 if test "$_dart" = auto; then
5753 cat > $TMPC << EOF
5754 #include <os2.h>
5755 #include <dart.h>
5756 int main(void) { return 0; }
5758 _dart=no;
5759 cc_check -ldart && _dart=yes
5761 if test "$_dart" = yes ; then
5762 def_dart='#define CONFIG_DART 1'
5763 libs_mplayer="$libs_mplayer -ldart"
5764 aomodules="dart $aomodules"
5765 else
5766 def_dart='#undef CONFIG_DART'
5767 noaomodules="dart $noaomodules"
5769 echores "$_dart"
5770 fi #if os2
5773 # set default CD/DVD devices
5774 if win32 || os2 ; then
5775 default_cdrom_device="D:"
5776 elif darwin ; then
5777 default_cdrom_device="/dev/disk1"
5778 elif dragonfly ; then
5779 default_cdrom_device="/dev/cd0"
5780 elif freebsd ; then
5781 default_cdrom_device="/dev/acd0"
5782 elif openbsd ; then
5783 default_cdrom_device="/dev/rcd0c"
5784 elif sunos ; then
5785 default_cdrom_device="/vol/dev/aliases/cdrom0"
5786 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5787 # file system and the volfs service.
5788 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5789 elif amigaos ; then
5790 default_cdrom_device="a1ide.device:2"
5791 else
5792 default_cdrom_device="/dev/cdrom"
5795 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5796 default_dvd_device=$default_cdrom_device
5797 elif darwin ; then
5798 default_dvd_device="/dev/rdiskN"
5799 else
5800 default_dvd_device="/dev/dvd"
5804 echocheck "VCD support"
5805 if test "$_vcd" = auto; then
5806 _vcd=no
5807 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5808 _vcd=yes
5809 elif mingw32; then
5810 header_check ddk/ntddcdrm.h && _vcd=yes
5813 if test "$_vcd" = yes; then
5814 inputmodules="vcd $inputmodules"
5815 def_vcd='#define CONFIG_VCD 1'
5816 else
5817 def_vcd='#undef CONFIG_VCD'
5818 noinputmodules="vcd $noinputmodules"
5819 res_comment="not supported on this OS"
5821 echores "$_vcd"
5825 echocheck "Blu-ray support"
5826 if test "$_bluray" = auto ; then
5827 _bluray=no
5829 cat > $TMPC << EOF
5830 #include <stdlib.h>
5831 #include <libbluray/bluray.h>
5832 int main(void) {
5833 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5834 return 0;
5837 compile_check $TMPC -lbluray && _bluray=yes
5839 if test "$_bluray" = yes ; then
5840 def_bluray='#define CONFIG_LIBBLURAY 1'
5841 extra_ldflags="$extra_ldflags -lbluray"
5842 inputmodules="bluray $inputmodules"
5843 else
5844 def_bluray='#undef CONFIG_LIBBLURAY'
5845 noinputmodules="bluray $noinputmodules"
5847 echores "$_bluray"
5849 echocheck "dvdread"
5850 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5851 _dvdread_internal=no
5853 if test "$_dvdread_internal" = auto ; then
5854 _dvdread_internal=no
5855 _dvdread=no
5856 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5857 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5858 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5859 || darwin || win32 || os2; then
5860 _dvdread_internal=yes
5861 _dvdread=yes
5862 extra_cflags="-Ilibdvdread4 $extra_cflags"
5864 elif test "$_dvdread" = auto ; then
5865 _dvdread=no
5866 if test "$_dl" = yes; then
5867 cat > $TMPC << EOF
5868 #include <inttypes.h>
5869 #include <dvdread/dvd_reader.h>
5870 #include <dvdread/ifo_types.h>
5871 #include <dvdread/ifo_read.h>
5872 #include <dvdread/nav_read.h>
5873 int main(void) { return 0; }
5875 _dvdreadcflags=$($_dvdreadconfig --cflags)
5876 _dvdreadlibs=$($_dvdreadconfig --libs)
5877 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5878 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5879 _dvdread=yes
5880 extra_cflags="$extra_cflags $_dvdreadcflags"
5881 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5882 res_comment="external"
5887 if test "$_dvdread_internal" = yes; then
5888 def_dvdread='#define CONFIG_DVDREAD 1'
5889 inputmodules="dvdread(internal) $inputmodules"
5890 _largefiles=yes
5891 res_comment="internal"
5892 elif test "$_dvdread" = yes; then
5893 def_dvdread='#define CONFIG_DVDREAD 1'
5894 _largefiles=yes
5895 extra_ldflags="$extra_ldflags -ldvdread"
5896 inputmodules="dvdread(external) $inputmodules"
5897 res_comment="external"
5898 else
5899 def_dvdread='#undef CONFIG_DVDREAD'
5900 noinputmodules="dvdread $noinputmodules"
5902 echores "$_dvdread"
5905 echocheck "internal libdvdcss"
5906 if test "$_libdvdcss_internal" = auto ; then
5907 _libdvdcss_internal=no
5908 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5909 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5911 if test "$_libdvdcss_internal" = yes ; then
5912 if linux || netbsd || openbsd || bsdos ; then
5913 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5914 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5915 elif freebsd || dragonfly ; then
5916 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5917 elif darwin ; then
5918 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5919 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5920 elif cygwin ; then
5921 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5922 elif beos ; then
5923 cflags_libdvdcss="-DSYS_BEOS"
5924 elif os2 ; then
5925 cflags_libdvdcss="-DSYS_OS2"
5927 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5928 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5929 inputmodules="libdvdcss(internal) $inputmodules"
5930 _largefiles=yes
5931 else
5932 noinputmodules="libdvdcss(internal) $noinputmodules"
5934 echores "$_libdvdcss_internal"
5937 echocheck "cdparanoia"
5938 if test "$_cdparanoia" = auto ; then
5939 cat > $TMPC <<EOF
5940 #include <cdda_interface.h>
5941 #include <cdda_paranoia.h>
5942 // This need a better test. How ?
5943 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5945 _cdparanoia=no
5946 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5947 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5948 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5949 done
5951 if test "$_cdparanoia" = yes ; then
5952 _cdda='yes'
5953 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5954 openbsd && extra_ldflags="$extra_ldflags -lutil"
5956 echores "$_cdparanoia"
5959 echocheck "libcdio"
5960 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5961 cat > $TMPC << EOF
5962 #include <stdio.h>
5963 #include <cdio/version.h>
5964 #include <cdio/cdda.h>
5965 #include <cdio/paranoia.h>
5966 int main(void) {
5967 void *test = cdda_verbose_set;
5968 printf("%s\n", CDIO_VERSION);
5969 return test == (void *)1;
5972 _libcdio=no
5973 for _ld_tmp in "" "-lwinmm" ; do
5974 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5975 cc_check $_ld_tmp $_ld_lm \
5976 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5977 done
5978 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5979 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5980 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5981 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5982 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5985 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5986 _cdda='yes'
5987 def_libcdio='#define CONFIG_LIBCDIO 1'
5988 def_havelibcdio='yes'
5989 else
5990 if test "$_cdparanoia" = yes ; then
5991 res_comment="using cdparanoia"
5993 def_libcdio='#undef CONFIG_LIBCDIO'
5994 def_havelibcdio='no'
5996 echores "$_libcdio"
5998 if test "$_cdda" = yes ; then
5999 test $_cddb = auto && test $networking = yes && _cddb=yes
6000 def_cdparanoia='#define CONFIG_CDDA 1'
6001 inputmodules="cdda $inputmodules"
6002 else
6003 def_cdparanoia='#undef CONFIG_CDDA'
6004 noinputmodules="cdda $noinputmodules"
6007 if test "$_cddb" = yes ; then
6008 def_cddb='#define CONFIG_CDDB 1'
6009 inputmodules="cddb $inputmodules"
6010 else
6011 _cddb=no
6012 def_cddb='#undef CONFIG_CDDB'
6013 noinputmodules="cddb $noinputmodules"
6016 echocheck "bitmap font support"
6017 if test "$_bitmap_font" = yes ; then
6018 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6019 else
6020 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6022 echores "$_bitmap_font"
6025 echocheck "freetype >= 2.0.9"
6027 # freetype depends on iconv
6028 if test "$_iconv" = no ; then
6029 _freetype=no
6030 res_comment="iconv support needed"
6033 if test "$_freetype" = auto ; then
6034 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6035 cat > $TMPC << EOF
6036 #include <stdio.h>
6037 #include <ft2build.h>
6038 #include FT_FREETYPE_H
6039 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6040 #error "Need FreeType 2.0.9 or newer"
6041 #endif
6042 int main(void) {
6043 FT_Library library;
6044 FT_Int major=-1,minor=-1,patch=-1;
6045 int err=FT_Init_FreeType(&library);
6046 return 0;
6049 _freetype=no
6050 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6051 else
6052 _freetype=no
6055 if test "$_freetype" = yes ; then
6056 def_freetype='#define CONFIG_FREETYPE 1'
6057 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6058 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6059 else
6060 def_freetype='#undef CONFIG_FREETYPE'
6062 echores "$_freetype"
6064 if test "$_freetype" = no ; then
6065 _fontconfig=no
6066 res_comment="FreeType support needed"
6068 echocheck "fontconfig"
6069 if test "$_fontconfig" = auto ; then
6070 cat > $TMPC << EOF
6071 #include <stdio.h>
6072 #include <stdlib.h>
6073 #include <fontconfig/fontconfig.h>
6074 #if FC_VERSION < 20402
6075 #error At least version 2.4.2 of fontconfig required
6076 #endif
6077 int main(void) {
6078 int err = FcInit();
6079 if (err == FcFalse) {
6080 printf("Couldn't initialize fontconfig lib\n");
6081 exit(err);
6083 return 0;
6086 _fontconfig=no
6087 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6088 _ld_tmp="-lfontconfig $_ld_tmp"
6089 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6090 done
6091 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6092 _inc_tmp=$($_pkg_config --cflags fontconfig)
6093 _ld_tmp=$($_pkg_config --libs fontconfig)
6094 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6095 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6098 if test "$_fontconfig" = yes ; then
6099 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6100 else
6101 def_fontconfig='#undef CONFIG_FONTCONFIG'
6103 echores "$_fontconfig"
6106 echocheck "SSA/ASS support"
6107 if test "$_ass" = auto -o "$_ass" = yes ; then
6108 if $_pkg_config libass; then
6109 _ass=yes
6110 def_ass='#define CONFIG_ASS 1'
6111 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6112 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6113 else
6114 _ass=no
6115 def_ass='#undef CONFIG_ASS'
6117 else
6118 def_ass='#undef CONFIG_ASS'
6120 echores "$_ass"
6123 echocheck "fribidi with charsets"
6124 _inc_tmp=""
6125 _ld_tmp=""
6126 if test "$_fribidi" = auto ; then
6127 cat > $TMPC << EOF
6128 #include <stdlib.h>
6129 /* workaround for fribidi 0.10.4 and below */
6130 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6131 #include <fribidi/fribidi.h>
6132 int main(void) {
6133 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6134 exit(1);
6135 return 0;
6138 _fribidi=no
6139 _inc_tmp=""
6140 _ld_tmp="-lfribidi"
6141 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6142 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6143 test "$_fribidi" = no ; then
6144 _inc_tmp="$($_pkg_config --cflags)"
6145 _ld_tmp="$($_pkg_config --libs)"
6146 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6149 if test "$_fribidi" = yes ; then
6150 def_fribidi='#define CONFIG_FRIBIDI 1'
6151 extra_cflags="$extra_cflags $_inc_tmp"
6152 extra_ldflags="$extra_ldflags $_ld_tmp"
6153 else
6154 def_fribidi='#undef CONFIG_FRIBIDI'
6156 echores "$_fribidi"
6159 echocheck "ENCA"
6160 if test "$_enca" = auto ; then
6161 cat > $TMPC << EOF
6162 #include <sys/types.h>
6163 #include <enca.h>
6164 int main(void) {
6165 const char **langs;
6166 size_t langcnt;
6167 langs = enca_get_languages(&langcnt);
6168 return 0;
6171 _enca=no
6172 cc_check -lenca $_ld_lm && _enca=yes
6174 if test "$_enca" = yes ; then
6175 def_enca='#define CONFIG_ENCA 1'
6176 extra_ldflags="$extra_ldflags -lenca"
6177 else
6178 def_enca='#undef CONFIG_ENCA'
6180 echores "$_enca"
6183 echocheck "zlib"
6184 cat > $TMPC << EOF
6185 #include <zlib.h>
6186 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6188 _zlib=no
6189 cc_check -lz && _zlib=yes
6190 if test "$_zlib" = yes ; then
6191 def_zlib='#define CONFIG_ZLIB 1'
6192 extra_ldflags="$extra_ldflags -lz"
6193 else
6194 def_zlib='#define CONFIG_ZLIB 0'
6196 echores "$_zlib"
6199 echocheck "bzlib"
6200 bzlib=no
6201 def_bzlib='#define CONFIG_BZLIB 0'
6202 cat > $TMPC << EOF
6203 #include <bzlib.h>
6204 int main(void) { BZ2_bzlibVersion(); return 0; }
6206 cc_check -lbz2 && bzlib=yes
6207 if test "$bzlib" = yes ; then
6208 def_bzlib='#define CONFIG_BZLIB 1'
6209 extra_ldflags="$extra_ldflags -lbz2"
6211 echores "$bzlib"
6214 echocheck "RTC"
6215 if test "$_rtc" = auto ; then
6216 cat > $TMPC << EOF
6217 #include <sys/ioctl.h>
6218 #ifdef __linux__
6219 #include <linux/rtc.h>
6220 #else
6221 #include <rtc.h>
6222 #define RTC_PIE_ON RTCIO_PIE_ON
6223 #endif
6224 int main(void) { return RTC_PIE_ON; }
6226 _rtc=no
6227 cc_check && _rtc=yes
6228 ppc && _rtc=no
6230 if test "$_rtc" = yes ; then
6231 def_rtc='#define HAVE_RTC 1'
6232 else
6233 def_rtc='#undef HAVE_RTC'
6235 echores "$_rtc"
6238 echocheck "liblzo2 support"
6239 if test "$_liblzo" = auto ; then
6240 _liblzo=no
6241 cat > $TMPC << EOF
6242 #include <lzo/lzo1x.h>
6243 int main(void) { lzo_init(); return 0; }
6245 cc_check -llzo2 && _liblzo=yes
6247 if test "$_liblzo" = yes ; then
6248 def_liblzo='#define CONFIG_LIBLZO 1'
6249 extra_ldflags="$extra_ldflags -llzo2"
6250 codecmodules="liblzo $codecmodules"
6251 else
6252 def_liblzo='#undef CONFIG_LIBLZO'
6253 nocodecmodules="liblzo $nocodecmodules"
6255 echores "$_liblzo"
6258 echocheck "mad support"
6259 if test "$_mad" = auto ; then
6260 _mad=no
6261 header_check mad.h -lmad && _mad=yes
6263 if test "$_mad" = yes ; then
6264 def_mad='#define CONFIG_LIBMAD 1'
6265 extra_ldflags="$extra_ldflags -lmad"
6266 codecmodules="libmad $codecmodules"
6267 else
6268 def_mad='#undef CONFIG_LIBMAD'
6269 nocodecmodules="libmad $nocodecmodules"
6271 echores "$_mad"
6273 echocheck "Twolame"
6274 if test "$_twolame" = auto ; then
6275 cat > $TMPC <<EOF
6276 #include <twolame.h>
6277 int main(void) { twolame_init(); return 0; }
6279 _twolame=no
6280 cc_check -ltwolame $_ld_lm && _twolame=yes
6282 if test "$_twolame" = yes ; then
6283 def_twolame='#define CONFIG_TWOLAME 1'
6284 libs_mencoder="$libs_mencoder -ltwolame"
6285 codecmodules="twolame $codecmodules"
6286 else
6287 def_twolame='#undef CONFIG_TWOLAME'
6288 nocodecmodules="twolame $nocodecmodules"
6290 echores "$_twolame"
6292 echocheck "Toolame"
6293 if test "$_toolame" = auto ; then
6294 _toolame=no
6295 if test "$_twolame" = yes ; then
6296 res_comment="disabled by twolame"
6297 else
6298 cat > $TMPC <<EOF
6299 #include <toolame.h>
6300 int main(void) { toolame_init(); return 0; }
6302 cc_check -ltoolame $_ld_lm && _toolame=yes
6305 if test "$_toolame" = yes ; then
6306 def_toolame='#define CONFIG_TOOLAME 1'
6307 libs_mencoder="$libs_mencoder -ltoolame"
6308 codecmodules="toolame $codecmodules"
6309 else
6310 def_toolame='#undef CONFIG_TOOLAME'
6311 nocodecmodules="toolame $nocodecmodules"
6313 if test "$_toolamedir" ; then
6314 res_comment="using $_toolamedir"
6316 echores "$_toolame"
6318 echocheck "OggVorbis support"
6319 if test "$_tremor_internal" = yes; then
6320 _libvorbis=no
6321 elif test "$_tremor" = auto; then
6322 _tremor=no
6323 cat > $TMPC << EOF
6324 #include <tremor/ivorbiscodec.h>
6325 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6327 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6329 if test "$_libvorbis" = auto; then
6330 _libvorbis=no
6331 cat > $TMPC << EOF
6332 #include <vorbis/codec.h>
6333 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6335 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6337 if test "$_tremor_internal" = yes ; then
6338 _vorbis=yes
6339 def_vorbis='#define CONFIG_OGGVORBIS 1'
6340 def_tremor='#define CONFIG_TREMOR 1'
6341 codecmodules="tremor(internal) $codecmodules"
6342 res_comment="internal Tremor"
6343 if test "$_tremor_low" = yes ; then
6344 cflags_tremor_low="-D_LOW_ACCURACY_"
6345 res_comment="internal low accuracy Tremor"
6347 elif test "$_tremor" = yes ; then
6348 _vorbis=yes
6349 def_vorbis='#define CONFIG_OGGVORBIS 1'
6350 def_tremor='#define CONFIG_TREMOR 1'
6351 codecmodules="tremor(external) $codecmodules"
6352 res_comment="external Tremor"
6353 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6354 elif test "$_libvorbis" = yes ; then
6355 _vorbis=yes
6356 def_vorbis='#define CONFIG_OGGVORBIS 1'
6357 codecmodules="libvorbis $codecmodules"
6358 res_comment="libvorbis"
6359 extra_ldflags="$extra_ldflags -lvorbis -logg"
6360 else
6361 _vorbis=no
6362 nocodecmodules="libvorbis $nocodecmodules"
6364 echores "$_vorbis"
6366 echocheck "libspeex (version >= 1.1 required)"
6367 if test "$_speex" = auto ; then
6368 _speex=no
6369 cat > $TMPC << EOF
6370 #include <speex/speex.h>
6371 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6373 cc_check -lspeex $_ld_lm && _speex=yes
6375 if test "$_speex" = yes ; then
6376 def_speex='#define CONFIG_SPEEX 1'
6377 extra_ldflags="$extra_ldflags -lspeex"
6378 codecmodules="speex $codecmodules"
6379 else
6380 def_speex='#undef CONFIG_SPEEX'
6381 nocodecmodules="speex $nocodecmodules"
6383 echores "$_speex"
6385 echocheck "OggTheora support"
6386 if test "$_theora" = auto ; then
6387 _theora=no
6388 cat > $TMPC << EOF
6389 #include <theora/theora.h>
6390 #include <string.h>
6391 int main(void) {
6392 /* Theora is in flux, make sure that all interface routines and datatypes
6393 * exist and work the way we expect it, so we don't break MPlayer. */
6394 ogg_packet op;
6395 theora_comment tc;
6396 theora_info inf;
6397 theora_state st;
6398 yuv_buffer yuv;
6399 int r;
6400 double t;
6402 theora_info_init(&inf);
6403 theora_comment_init(&tc);
6405 return 0;
6407 /* we don't want to execute this kind of nonsense; just for making sure
6408 * that compilation works... */
6409 memset(&op, 0, sizeof(op));
6410 r = theora_decode_header(&inf, &tc, &op);
6411 r = theora_decode_init(&st, &inf);
6412 t = theora_granule_time(&st, op.granulepos);
6413 r = theora_decode_packetin(&st, &op);
6414 r = theora_decode_YUVout(&st, &yuv);
6415 theora_clear(&st);
6417 return 0;
6420 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6421 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6422 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6423 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6424 if test _theora = no; then
6425 _ld_theora="-ltheora -logg"
6426 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6428 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6429 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6430 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6431 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6432 extra_ldflags="$extra_ldflags $_ld_theora" &&
6433 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6434 if test _theora = no; then
6435 _ld_theora="-ltheora -logg"
6436 cc_check tremor/bitwise.c $_ld_theora &&
6437 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6441 if test "$_theora" = yes ; then
6442 def_theora='#define CONFIG_OGGTHEORA 1'
6443 codecmodules="libtheora $codecmodules"
6444 # when --enable-theora is forced, we'd better provide a probably sane
6445 # $_ld_theora than nothing
6446 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6447 else
6448 def_theora='#undef CONFIG_OGGTHEORA'
6449 nocodecmodules="libtheora $nocodecmodules"
6451 echores "$_theora"
6453 echocheck "mp3lib support"
6454 if test "$_mp3lib" = auto ; then
6455 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6457 if test "$_mp3lib" = yes ; then
6458 def_mp3lib='#define CONFIG_MP3LIB 1'
6459 codecmodules="mp3lib(internal) $codecmodules"
6460 else
6461 def_mp3lib='#undef CONFIG_MP3LIB'
6462 nocodecmodules="mp3lib(internal) $nocodecmodules"
6464 echores "$_mp3lib"
6466 # Any version of libmpg123 shall be fine.
6467 echocheck "mpg123 support"
6468 def_mpg123='#undef CONFIG_MPG123'
6469 if test "$_mpg123" = auto; then
6470 _mpg123=no
6471 cat > $TMPC <<EOF
6472 #include <mpg123.h>
6473 int main(void){ mpg123_init(); return 0; }
6475 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6477 if test "$_mpg123" = yes ; then
6478 def_mpg123='#define CONFIG_MPG123 1'
6479 codecmodules="mpg123 $codecmodules"
6480 else
6481 nocodecmodules="mpg123 $nocodecmodules"
6483 echores "$_mpg123"
6485 echocheck "liba52 support"
6486 def_liba52='#undef CONFIG_LIBA52'
6487 if test "$_liba52" = auto ; then
6488 _liba52=no
6489 cat > $TMPC << EOF
6490 #include <inttypes.h>
6491 #include <a52dec/a52.h>
6492 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6494 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6496 if test "$_liba52" = yes ; then
6497 def_liba52='#define CONFIG_LIBA52 1'
6498 codecmodules="liba52 $codecmodules"
6499 else
6500 nocodecmodules="liba52 $nocodecmodules"
6502 echores "$_liba52"
6504 echocheck "internal libmpeg2 support"
6505 if test "$_libmpeg2" = auto ; then
6506 _libmpeg2=yes
6507 if alpha && test cc_vendor=gnu; then
6508 case $cc_version in
6509 2*|3.0*|3.1*) # cannot compile MVI instructions
6510 _libmpeg2=no
6511 res_comment="broken gcc"
6513 esac
6516 if test "$_libmpeg2" = yes ; then
6517 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6518 codecmodules="libmpeg2(internal) $codecmodules"
6519 else
6520 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6521 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6523 echores "$_libmpeg2"
6525 echocheck "libdca support"
6526 if test "$_libdca" = auto ; then
6527 _libdca=no
6528 cat > $TMPC << EOF
6529 #include <inttypes.h>
6530 #include <dts.h>
6531 int main(void) { dts_init(0); return 0; }
6533 for _ld_dca in -ldca -ldts ; do
6534 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6535 && _libdca=yes && break
6536 done
6538 if test "$_libdca" = yes ; then
6539 def_libdca='#define CONFIG_LIBDCA 1'
6540 codecmodules="libdca $codecmodules"
6541 else
6542 def_libdca='#undef CONFIG_LIBDCA'
6543 nocodecmodules="libdca $nocodecmodules"
6545 echores "$_libdca"
6547 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6548 if test "$_musepack" = auto ; then
6549 _musepack=no
6550 cat > $TMPC << EOF
6551 #include <stddef.h>
6552 #include <mpcdec/mpcdec.h>
6553 int main(void) {
6554 mpc_streaminfo info;
6555 mpc_decoder decoder;
6556 mpc_decoder_set_streaminfo(&decoder, &info);
6557 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6558 return 0;
6561 cc_check -lmpcdec $_ld_lm && _musepack=yes
6563 if test "$_musepack" = yes ; then
6564 def_musepack='#define CONFIG_MUSEPACK 1'
6565 extra_ldflags="$extra_ldflags -lmpcdec"
6566 codecmodules="musepack $codecmodules"
6567 else
6568 def_musepack='#undef CONFIG_MUSEPACK'
6569 nocodecmodules="musepack $nocodecmodules"
6571 echores "$_musepack"
6574 echocheck "FAAC support"
6575 if test "$_faac" = auto ; then
6576 cat > $TMPC <<EOF
6577 #include <inttypes.h>
6578 #include <faac.h>
6579 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6581 _faac=no
6582 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6583 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6584 done
6586 if test "$_faac" = yes ; then
6587 def_faac="#define CONFIG_FAAC 1"
6588 codecmodules="faac $codecmodules"
6589 else
6590 def_faac="#undef CONFIG_FAAC"
6591 nocodecmodules="faac $nocodecmodules"
6593 echores "$_faac"
6596 echocheck "FAAD2 support"
6597 if test "$_faad_internal" = auto ; then
6598 if x86_32 && test cc_vendor=gnu; then
6599 case $cc_version in
6600 3.1*|3.2) # ICE/insn with these versions
6601 _faad_internal=no
6602 res_comment="broken gcc"
6605 _faad=yes
6606 _faad_internal=yes
6608 esac
6609 else
6610 _faad=yes
6611 _faad_internal=yes
6614 if test "$_faad" = auto ; then
6615 cat > $TMPC << EOF
6616 #include <faad.h>
6617 #ifndef FAAD_MIN_STREAMSIZE
6618 #error Too old version
6619 #endif
6620 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6621 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6623 cc_check -lfaad $_ld_lm && _faad=yes
6626 def_faad='#undef CONFIG_FAAD'
6627 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6628 if test "$_faad_internal" = yes ; then
6629 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6630 res_comment="internal floating-point"
6631 if test "$_faad_fixed" = yes ; then
6632 # The FIXED_POINT implementation of FAAD2 improves performance
6633 # on some platforms, especially for SBR files.
6634 cflags_faad_fixed="-DFIXED_POINT"
6635 res_comment="internal fixed-point"
6637 elif test "$_faad" = yes ; then
6638 extra_ldflags="$extra_ldflags -lfaad"
6641 if test "$_faad" = yes ; then
6642 def_faad='#define CONFIG_FAAD 1'
6643 if test "$_faad_internal" = yes ; then
6644 codecmodules="faad2(internal) $codecmodules"
6645 else
6646 codecmodules="faad2 $codecmodules"
6648 else
6649 _faad=no
6650 nocodecmodules="faad2 $nocodecmodules"
6652 echores "$_faad"
6655 echocheck "LADSPA plugin support"
6656 if test "$_ladspa" = auto ; then
6657 cat > $TMPC <<EOF
6658 #include <ladspa.h>
6659 int main(void) {
6660 LADSPA_Descriptor ld = {0};
6661 return 0;
6664 _ladspa=no
6665 cc_check && _ladspa=yes
6667 if test "$_ladspa" = yes; then
6668 def_ladspa="#define CONFIG_LADSPA 1"
6669 else
6670 def_ladspa="#undef CONFIG_LADSPA"
6672 echores "$_ladspa"
6675 echocheck "libbs2b audio filter support"
6676 if test "$_libbs2b" = auto ; then
6677 cat > $TMPC <<EOF
6678 #include <bs2b.h>
6679 #if BS2B_VERSION_MAJOR < 3
6680 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6681 #endif
6682 int main(void) {
6683 t_bs2bdp filter;
6684 filter=bs2b_open();
6685 bs2b_close(filter);
6686 return 0;
6689 _libbs2b=no
6690 if $_pkg_config --exists libbs2b ; then
6691 _inc_tmp=$($_pkg_config --cflags libbs2b)
6692 _ld_tmp=$($_pkg_config --libs libbs2b)
6693 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6694 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6695 else
6696 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6697 -I/usr/local/include/bs2b ; do
6698 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6699 extra_ldflags="$extra_ldflags -lbs2b"
6700 extra_cflags="$extra_cflags $_inc_tmp"
6701 _libbs2b=yes
6702 break
6704 done
6707 def_libbs2b="#undef CONFIG_LIBBS2B"
6708 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6709 echores "$_libbs2b"
6712 if test -z "$_codecsdir" ; then
6713 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6714 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6715 if test -d "$dir" ; then
6716 _codecsdir="$dir"
6717 break;
6719 done
6721 # Fall back on default directory.
6722 if test -z "$_codecsdir" ; then
6723 _codecsdir="$_libdir/codecs"
6724 mingw32 || os2 && _codecsdir="codecs"
6728 echocheck "Win32 codecs"
6729 if test "$_win32dll" = auto ; then
6730 _win32dll=no
6731 if x86_32 && ! qnx; then
6732 _win32dll=yes
6735 if test "$_win32dll" = yes ; then
6736 def_win32dll='#define CONFIG_WIN32DLL 1'
6737 if ! win32 ; then
6738 def_win32_loader='#define WIN32_LOADER 1'
6739 _win32_emulation=yes
6740 else
6741 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6742 res_comment="using native windows"
6744 codecmodules="win32 $codecmodules"
6745 else
6746 def_win32dll='#undef CONFIG_WIN32DLL'
6747 def_win32_loader='#undef WIN32_LOADER'
6748 nocodecmodules="win32 $nocodecmodules"
6750 echores "$_win32dll"
6753 echocheck "XAnim codecs"
6754 if test "$_xanim" = auto ; then
6755 _xanim=no
6756 res_comment="dynamic loader support needed"
6757 if test "$_dl" = yes ; then
6758 _xanim=yes
6761 if test "$_xanim" = yes ; then
6762 def_xanim='#define CONFIG_XANIM 1'
6763 codecmodules="xanim $codecmodules"
6764 else
6765 def_xanim='#undef CONFIG_XANIM'
6766 nocodecmodules="xanim $nocodecmodules"
6768 echores "$_xanim"
6771 echocheck "RealPlayer codecs"
6772 if test "$_real" = auto ; then
6773 _real=no
6774 res_comment="dynamic loader support needed"
6775 if test "$_dl" = yes || test "$_win32dll" = yes &&
6776 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6777 _real=yes
6780 if test "$_real" = yes ; then
6781 def_real='#define CONFIG_REALCODECS 1'
6782 codecmodules="real $codecmodules"
6783 else
6784 def_real='#undef CONFIG_REALCODECS'
6785 nocodecmodules="real $nocodecmodules"
6787 echores "$_real"
6790 echocheck "QuickTime codecs"
6791 _qtx_emulation=no
6792 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6793 if test "$_qtx" = auto ; then
6794 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6796 if test "$_qtx" = yes ; then
6797 def_qtx='#define CONFIG_QTX_CODECS 1'
6798 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6799 codecmodules="qtx $codecmodules"
6800 darwin || win32 || _qtx_emulation=yes
6801 else
6802 def_qtx='#undef CONFIG_QTX_CODECS'
6803 nocodecmodules="qtx $nocodecmodules"
6805 echores "$_qtx"
6807 echocheck "Nemesi Streaming Media libraries"
6808 if test "$_nemesi" = auto && test "$networking" = yes ; then
6809 _nemesi=no
6810 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6811 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6812 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6813 _nemesi=yes
6816 if test "$_nemesi" = yes; then
6817 _native_rtsp=no
6818 def_nemesi='#define CONFIG_LIBNEMESI 1'
6819 inputmodules="nemesi $inputmodules"
6820 else
6821 _native_rtsp="$networking"
6822 _nemesi=no
6823 def_nemesi='#undef CONFIG_LIBNEMESI'
6824 noinputmodules="nemesi $noinputmodules"
6826 echores "$_nemesi"
6828 echocheck "LIVE555 Streaming Media libraries"
6829 if test "$_live" = auto && test "$networking" = yes ; then
6830 cat > $TMPCPP << EOF
6831 #include <liveMedia.hh>
6832 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6833 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6834 #endif
6835 int main(void) { return 0; }
6838 _live=no
6839 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
6840 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6841 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6842 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6843 $_livelibdir/groupsock/libgroupsock.a \
6844 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6845 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6846 $extra_ldflags -lstdc++" \
6847 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6848 -I$_livelibdir/UsageEnvironment/include \
6849 -I$_livelibdir/BasicUsageEnvironment/include \
6850 -I$_livelibdir/groupsock/include" && \
6851 _live=yes && break
6852 done
6853 if test "$_live" != yes ; then
6854 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6855 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6856 _live_dist=yes
6860 if test "$_live" = yes && test "$networking" = yes; then
6861 test $_livelibdir && res_comment="using $_livelibdir"
6862 def_live='#define CONFIG_LIVE555 1'
6863 inputmodules="live555 $inputmodules"
6864 elif test "$_live_dist" = yes && test "$networking" = yes; then
6865 res_comment="using distribution version"
6866 _live="yes"
6867 def_live='#define CONFIG_LIVE555 1'
6868 extra_ldflags="$extra_ldflags $ld_tmp"
6869 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6870 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6871 inputmodules="live555 $inputmodules"
6872 else
6873 _live=no
6874 def_live='#undef CONFIG_LIVE555'
6875 noinputmodules="live555 $noinputmodules"
6877 echores "$_live"
6880 echocheck "FFmpeg libavutil"
6881 if test "$_libavutil" = auto ; then
6882 _libavutil=no
6883 cat > $TMPC << EOF
6884 #include <libavutil/common.h>
6885 int main(void) { av_clip(1, 1, 1); return 0; }
6887 if $_pkg_config --exists libavutil ; then
6888 _inc_libavutil=$($_pkg_config --cflags libavutil)
6889 _ld_tmp=$($_pkg_config --libs libavutil)
6890 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6891 && _libavutil=yes
6892 elif cc_check -lavutil $_ld_lm ; then
6893 extra_ldflags="$extra_ldflags -lavutil"
6894 _libavutil=yes
6897 def_libavutil='#undef CONFIG_LIBAVUTIL'
6898 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6899 # libavutil is not available, but it is mandatory ...
6900 if test "$_libavutil" = no ; then
6901 die "You need libavutil, MPlayer will not compile without!"
6903 echores "$_libavutil"
6905 echocheck "FFmpeg libavcodec"
6906 if test "$_libavcodec" = auto ; then
6907 _libavcodec=no
6908 cat > $TMPC << EOF
6909 #include <libavcodec/avcodec.h>
6910 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6912 if $_pkg_config --exists libavcodec ; then
6913 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6914 _ld_tmp=$($_pkg_config --libs libavcodec)
6915 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6916 && _libavcodec=yes
6917 elif cc_check -lavcodec $_ld_lm ; then
6918 extra_ldflags="$extra_ldflags -lavcodec"
6919 _libavcodec=yes
6922 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6923 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6924 if test "$_libavcodec" = yes ; then
6925 codecmodules="libavcodec $codecmodules"
6926 else
6927 nocodecmodules="libavcodec $nocodecmodules"
6929 echores "$_libavcodec"
6931 echocheck "FFmpeg libavformat"
6932 if test "$_libavformat" = auto ; then
6933 _libavformat=no
6934 cat > $TMPC <<EOF
6935 #include <libavformat/avformat.h>
6936 int main(void) { av_alloc_format_context(); return 0; }
6938 if $_pkg_config --exists libavformat ; then
6939 _inc_libavformat=$($_pkg_config --cflags libavformat)
6940 _ld_tmp=$($_pkg_config --libs libavformat)
6941 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6942 && _libavformat=yes
6943 elif cc_check $_ld_lm -lavformat ; then
6944 extra_ldflags="$extra_ldflags -lavformat"
6945 _libavformat=yes
6948 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6949 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6950 echores "$_libavformat"
6952 echocheck "FFmpeg libpostproc"
6953 if test "$_libpostproc" = auto ; then
6954 _libpostproc=no
6955 cat > $TMPC << EOF
6956 #include <libpostproc/postprocess.h>
6957 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6959 if $_pkg_config --exists libpostproc ; then
6960 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6961 _ld_tmp=$($_pkg_config --libs libpostproc)
6962 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6963 && _libpostproc=yes
6964 elif cc_check -lpostproc $_ld_lm ; then
6965 extra_ldflags="$extra_ldflags -lpostproc"
6966 _libpostproc=yes
6969 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6970 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6971 echores "$_libpostproc"
6973 echocheck "FFmpeg libswscale"
6974 if test "$_libswscale" = auto ; then
6975 _libswscale=no
6976 cat > $TMPC << EOF
6977 #include <libswscale/swscale.h>
6978 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6980 if $_pkg_config --exists libswscale ; then
6981 _inc_libswscale=$($_pkg_config --cflags libswscale)
6982 _ld_tmp=$($_pkg_config --libs libswscale)
6983 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6984 && _libswscale=yes
6985 elif cc_check -lswscale ; then
6986 extra_ldflags="$extra_ldflags -lswscale"
6987 _libswscale=yes
6990 def_libswscale='#undef CONFIG_LIBSWSCALE'
6991 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6992 echores "$_libswscale"
6994 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6995 if ! test -z "$_ffmpeg_source" ; then
6996 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6999 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7000 if ! test -z "$_ffmpeg_source" ; then
7001 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7004 echocheck "libdv-0.9.5+"
7005 if test "$_libdv" = auto ; then
7006 _libdv=no
7007 cat > $TMPC <<EOF
7008 #include <libdv/dv.h>
7009 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7011 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7013 if test "$_libdv" = yes ; then
7014 def_libdv='#define CONFIG_LIBDV095 1'
7015 extra_ldflags="$extra_ldflags -ldv"
7016 codecmodules="libdv $codecmodules"
7017 else
7018 def_libdv='#undef CONFIG_LIBDV095'
7019 nocodecmodules="libdv $nocodecmodules"
7021 echores "$_libdv"
7024 echocheck "Xvid"
7025 if test "$_xvid" = auto ; then
7026 _xvid=no
7027 cat > $TMPC << EOF
7028 #include <xvid.h>
7029 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7031 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7032 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7033 done
7036 if test "$_xvid" = yes ; then
7037 def_xvid='#define CONFIG_XVID4 1'
7038 codecmodules="xvid $codecmodules"
7039 else
7040 def_xvid='#undef CONFIG_XVID4'
7041 nocodecmodules="xvid $nocodecmodules"
7043 echores "$_xvid"
7045 echocheck "x264"
7046 if test "$_x264" = auto ; then
7047 cat > $TMPC << EOF
7048 #include <inttypes.h>
7049 #include <x264.h>
7050 #if X264_BUILD < 98
7051 #error We do not support old versions of x264. Get the latest from git.
7052 #endif
7053 int main(void) { x264_encoder_open((void*)0); return 0; }
7055 _x264=no
7056 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7057 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7058 done
7061 if test "$_x264" = yes ; then
7062 def_x264='#define CONFIG_X264 1'
7063 codecmodules="x264 $codecmodules"
7064 else
7065 def_x264='#undef CONFIG_X264'
7066 nocodecmodules="x264 $nocodecmodules"
7068 echores "$_x264"
7070 echocheck "libnut"
7071 if test "$_libnut" = auto ; then
7072 cat > $TMPC << EOF
7073 #include <libnut.h>
7074 nut_context_tt * nut;
7075 int main(void) { (void)nut_error(0); return 0; }
7077 _libnut=no
7078 cc_check -lnut && _libnut=yes
7081 if test "$_libnut" = yes ; then
7082 def_libnut='#define CONFIG_LIBNUT 1'
7083 extra_ldflags="$extra_ldflags -lnut"
7084 else
7085 def_libnut='#undef CONFIG_LIBNUT'
7087 echores "$_libnut"
7089 # These VO checks must be done after libavcodec/libswscale one
7090 echocheck "/dev/mga_vid"
7091 if test "$_mga" = auto ; then
7092 _mga=no
7093 test -c /dev/mga_vid && _mga=yes
7095 if test "$_mga" = yes ; then
7096 def_mga='#define CONFIG_MGA 1'
7097 vomodules="mga $vomodules"
7098 else
7099 def_mga='#undef CONFIG_MGA'
7100 novomodules="mga $novomodules"
7102 echores "$_mga"
7105 echocheck "xmga"
7106 if test "$_xmga" = auto ; then
7107 _xmga=no
7108 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7110 if test "$_xmga" = yes ; then
7111 def_xmga='#define CONFIG_XMGA 1'
7112 vomodules="xmga $vomodules"
7113 else
7114 def_xmga='#undef CONFIG_XMGA'
7115 novomodules="xmga $novomodules"
7117 echores "$_xmga"
7119 echocheck "zr"
7120 if test "$_zr" = auto ; then
7121 #36067's seem to identify themselves as 36057PQC's, so the line
7122 #below should work for 36067's and 36057's.
7123 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7124 _zr=yes
7125 else
7126 _zr=no
7129 if test "$_zr" = yes ; then
7130 if test "$_libavcodec_internals" = yes ; then
7131 def_zr='#define CONFIG_ZR 1'
7132 vomodules="zr zr2 $vomodules"
7133 else
7134 res_comment="libavcodec internal headers are required by zr, sorry"
7135 novomodules="zr $novomodules"
7136 def_zr='#undef CONFIG_ZR'
7138 else
7139 def_zr='#undef CONFIG_ZR'
7140 novomodules="zr zr2 $novomodules"
7142 echores "$_zr"
7144 # mencoder requires (optional) those libs: libmp3lame
7145 if test "$_mencoder" != no ; then
7147 echocheck "libmp3lame"
7148 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7149 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7150 if test "$_mp3lame" = auto ; then
7151 _mp3lame=no
7152 cat > $TMPC <<EOF
7153 #include <lame/lame.h>
7154 int main(void) { lame_version_t lv; (void) lame_init();
7155 get_lame_version_numerical(&lv);
7156 return 0; }
7158 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7160 if test "$_mp3lame" = yes ; then
7161 def_mp3lame="#define CONFIG_MP3LAME 1"
7162 _ld_mp3lame=-lmp3lame
7163 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7164 cat > $TMPC << EOF
7165 #include <lame/lame.h>
7166 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7168 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7169 cat > $TMPC << EOF
7170 #include <lame/lame.h>
7171 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7173 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7174 else
7175 def_mp3lame='#undef CONFIG_MP3LAME'
7177 echores "$_mp3lame"
7179 fi # test "$_mencoder" != no
7181 echocheck "mencoder"
7182 if test "$_mencoder" = yes ; then
7183 def_muxers='#define CONFIG_MUXERS 1'
7184 else
7185 def_muxers='#define CONFIG_MUXERS 0'
7187 echores "$_mencoder"
7190 echocheck "UnRAR executable"
7191 if test "$_unrar_exec" = auto ; then
7192 _unrar_exec="yes"
7193 mingw32 && _unrar_exec="no"
7195 if test "$_unrar_exec" = yes ; then
7196 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7197 else
7198 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7200 echores "$_unrar_exec"
7202 echocheck "TV interface"
7203 if test "$_tv" = yes ; then
7204 def_tv='#define CONFIG_TV 1'
7205 inputmodules="tv $inputmodules"
7206 else
7207 noinputmodules="tv $noinputmodules"
7208 def_tv='#undef CONFIG_TV'
7210 echores "$_tv"
7213 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7214 echocheck "*BSD BT848 bt8xx header"
7215 _ioctl_bt848_h=no
7216 for file in "machine/ioctl_bt848.h" \
7217 "dev/bktr/ioctl_bt848.h" \
7218 "dev/video/bktr/ioctl_bt848.h" \
7219 "dev/ic/bt8xx.h" ; do
7220 cat > $TMPC <<EOF
7221 #include <sys/types.h>
7222 #include <sys/ioctl.h>
7223 #include <$file>
7224 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7226 if cc_check ; then
7227 _ioctl_bt848_h=yes
7228 _ioctl_bt848_h_name="$file"
7229 break;
7231 done
7232 if test "$_ioctl_bt848_h" = yes ; then
7233 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7234 res_comment="using $_ioctl_bt848_h_name"
7235 else
7236 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7238 echores "$_ioctl_bt848_h"
7240 echocheck "*BSD ioctl_meteor.h"
7241 _ioctl_meteor_h=no
7242 for file in "machine/ioctl_meteor.h" \
7243 "dev/bktr/ioctl_meteor.h" \
7244 "dev/video/bktr/ioctl_meteor.h" ; do
7245 cat > $TMPC <<EOF
7246 #include <sys/types.h>
7247 #include <$file>
7248 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7250 if cc_check ; then
7251 _ioctl_meteor_h=yes
7252 _ioctl_meteor_h_name="$file"
7253 break;
7255 done
7256 if test "$_ioctl_meteor_h" = yes ; then
7257 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7258 res_comment="using $_ioctl_meteor_h_name"
7259 else
7260 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7262 echores "$_ioctl_meteor_h"
7264 echocheck "*BSD BrookTree 848 TV interface"
7265 if test "$_tv_bsdbt848" = auto ; then
7266 _tv_bsdbt848=no
7267 if test "$_tv" = yes ; then
7268 cat > $TMPC <<EOF
7269 #include <sys/types.h>
7270 $def_ioctl_meteor_h_name
7271 $def_ioctl_bt848_h_name
7272 #ifdef IOCTL_METEOR_H_NAME
7273 #include IOCTL_METEOR_H_NAME
7274 #endif
7275 #ifdef IOCTL_BT848_H_NAME
7276 #include IOCTL_BT848_H_NAME
7277 #endif
7278 int main(void) {
7279 ioctl(0, METEORSINPUT, 0);
7280 ioctl(0, TVTUNER_GETFREQ, 0);
7281 return 0;
7284 cc_check && _tv_bsdbt848=yes
7287 if test "$_tv_bsdbt848" = yes ; then
7288 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7289 inputmodules="tv-bsdbt848 $inputmodules"
7290 else
7291 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7292 noinputmodules="tv-bsdbt848 $noinputmodules"
7294 echores "$_tv_bsdbt848"
7295 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7298 echocheck "DirectShow TV interface"
7299 if test "$_tv_dshow" = auto ; then
7300 _tv_dshow=no
7301 if test "$_tv" = yes && win32 ; then
7302 cat > $TMPC <<EOF
7303 #include <ole2.h>
7304 int main(void) {
7305 void* p;
7306 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7307 return 0;
7310 cc_check -lole32 -luuid && _tv_dshow=yes
7313 if test "$_tv_dshow" = yes ; then
7314 inputmodules="tv-dshow $inputmodules"
7315 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7316 extra_ldflags="$extra_ldflags -lole32 -luuid"
7317 else
7318 noinputmodules="tv-dshow $noinputmodules"
7319 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7321 echores "$_tv_dshow"
7324 echocheck "Video 4 Linux TV interface"
7325 if test "$_tv_v4l1" = auto ; then
7326 _tv_v4l1=no
7327 if test "$_tv" = yes && linux ; then
7328 header_check linux/videodev.h && _tv_v4l1=yes
7331 if test "$_tv_v4l1" = yes ; then
7332 _audio_input=yes
7333 _tv_v4l=yes
7334 def_tv_v4l='#define CONFIG_TV_V4L 1'
7335 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7336 inputmodules="tv-v4l $inputmodules"
7337 else
7338 noinputmodules="tv-v4l1 $noinputmodules"
7339 def_tv_v4l='#undef CONFIG_TV_V4L'
7341 echores "$_tv_v4l1"
7344 echocheck "Video 4 Linux 2 TV interface"
7345 if test "$_tv_v4l2" = auto ; then
7346 _tv_v4l2=no
7347 if test "$_tv" = yes && linux ; then
7348 header_check linux/videodev2.h && _tv_v4l2=yes
7351 if test "$_tv_v4l2" = yes ; then
7352 _audio_input=yes
7353 _tv_v4l=yes
7354 def_tv_v4l='#define CONFIG_TV_V4L 1'
7355 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7356 inputmodules="tv-v4l2 $inputmodules"
7357 else
7358 noinputmodules="tv-v4l2 $noinputmodules"
7359 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7361 echores "$_tv_v4l2"
7364 echocheck "Radio interface"
7365 if test "$_radio" = yes ; then
7366 def_radio='#define CONFIG_RADIO 1'
7367 inputmodules="radio $inputmodules"
7368 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7369 _radio_capture=no
7371 if test "$_radio_capture" = yes ; then
7372 _audio_input=yes
7373 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7374 else
7375 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7377 else
7378 noinputmodules="radio $noinputmodules"
7379 def_radio='#undef CONFIG_RADIO'
7380 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7381 _radio_capture=no
7383 echores "$_radio"
7384 echocheck "Capture for Radio interface"
7385 echores "$_radio_capture"
7387 echocheck "Video 4 Linux 2 Radio interface"
7388 if test "$_radio_v4l2" = auto ; then
7389 _radio_v4l2=no
7390 if test "$_radio" = yes && linux ; then
7391 header_check linux/videodev2.h && _radio_v4l2=yes
7394 if test "$_radio_v4l2" = yes ; then
7395 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7396 else
7397 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7399 echores "$_radio_v4l2"
7401 echocheck "Video 4 Linux Radio interface"
7402 if test "$_radio_v4l" = auto ; then
7403 _radio_v4l=no
7404 if test "$_radio" = yes && linux ; then
7405 header_check linux/videodev.h && _radio_v4l=yes
7408 if test "$_radio_v4l" = yes ; then
7409 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7410 else
7411 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7413 echores "$_radio_v4l"
7415 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7416 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7417 echocheck "*BSD BrookTree 848 Radio interface"
7418 _radio_bsdbt848=no
7419 cat > $TMPC <<EOF
7420 #include <sys/types.h>
7421 $def_ioctl_bt848_h_name
7422 #ifdef IOCTL_BT848_H_NAME
7423 #include IOCTL_BT848_H_NAME
7424 #endif
7425 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7427 cc_check && _radio_bsdbt848=yes
7428 echores "$_radio_bsdbt848"
7429 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7431 if test "$_radio_bsdbt848" = yes ; then
7432 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7433 else
7434 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7437 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7438 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7439 die "Radio driver requires BSD BT848, V4L or V4L2!"
7442 echocheck "Video 4 Linux 2 MPEG PVR interface"
7443 if test "$_pvr" = auto ; then
7444 _pvr=no
7445 if test "$_tv_v4l2" = yes && linux ; then
7446 cat > $TMPC <<EOF
7447 #include <linux/videodev2.h>
7448 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7450 cc_check && _pvr=yes
7453 if test "$_pvr" = yes ; then
7454 def_pvr='#define CONFIG_PVR 1'
7455 inputmodules="pvr $inputmodules"
7456 else
7457 noinputmodules="pvr $noinputmodules"
7458 def_pvr='#undef CONFIG_PVR'
7460 echores "$_pvr"
7463 echocheck "ftp"
7464 if ! beos && test "$_ftp" = yes ; then
7465 def_ftp='#define CONFIG_FTP 1'
7466 inputmodules="ftp $inputmodules"
7467 else
7468 noinputmodules="ftp $noinputmodules"
7469 def_ftp='#undef CONFIG_FTP'
7471 echores "$_ftp"
7473 echocheck "vstream client"
7474 if test "$_vstream" = auto ; then
7475 _vstream=no
7476 cat > $TMPC <<EOF
7477 #include <vstream-client.h>
7478 void vstream_error(const char *format, ... ) {}
7479 int main(void) { vstream_start(); return 0; }
7481 cc_check -lvstream-client && _vstream=yes
7483 if test "$_vstream" = yes ; then
7484 def_vstream='#define CONFIG_VSTREAM 1'
7485 inputmodules="vstream $inputmodules"
7486 extra_ldflags="$extra_ldflags -lvstream-client"
7487 else
7488 noinputmodules="vstream $noinputmodules"
7489 def_vstream='#undef CONFIG_VSTREAM'
7491 echores "$_vstream"
7494 echocheck "OSD menu"
7495 if test "$_menu" = yes ; then
7496 def_menu='#define CONFIG_MENU 1'
7497 test $_dvbin = "yes" && _menu_dvbin=yes
7498 else
7499 def_menu='#undef CONFIG_MENU'
7500 _menu_dvbin=no
7502 echores "$_menu"
7505 echocheck "Subtitles sorting"
7506 if test "$_sortsub" = yes ; then
7507 def_sortsub='#define CONFIG_SORTSUB 1'
7508 else
7509 def_sortsub='#undef CONFIG_SORTSUB'
7511 echores "$_sortsub"
7514 echocheck "XMMS inputplugin support"
7515 if test "$_xmms" = yes ; then
7516 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7517 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7518 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7519 else
7520 _xmmsplugindir=/usr/lib/xmms/Input
7521 _xmmslibdir=/usr/lib
7524 def_xmms='#define CONFIG_XMMS 1'
7525 if darwin ; then
7526 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7527 else
7528 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7530 else
7531 def_xmms='#undef CONFIG_XMMS'
7533 echores "$_xmms"
7535 if test "$_charset" != "noconv" ; then
7536 def_charset="#define MSG_CHARSET \"$_charset\""
7537 else
7538 def_charset="#undef MSG_CHARSET"
7539 _charset="UTF-8"
7542 #############################################################################
7544 echocheck "automatic gdb attach"
7545 if test "$_crash_debug" = yes ; then
7546 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7547 else
7548 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7549 _crash_debug=no
7551 echores "$_crash_debug"
7553 echocheck "compiler support for noexecstack"
7554 if cflag_check -Wl,-z,noexecstack ; then
7555 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7556 echores "yes"
7557 else
7558 echores "no"
7561 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7562 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7563 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7564 echores "yes"
7565 else
7566 echores "no"
7570 # Dynamic linking flags
7571 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7572 _ld_dl_dynamic=''
7573 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7574 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7575 _ld_dl_dynamic='-rdynamic'
7578 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7579 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7580 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7582 def_debug='#undef MP_DEBUG'
7583 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7586 echocheck "joystick"
7587 def_joystick='#undef CONFIG_JOYSTICK'
7588 if test "$_joystick" = yes ; then
7589 if linux ; then
7590 # TODO add some check
7591 def_joystick='#define CONFIG_JOYSTICK 1'
7592 else
7593 _joystick="no"
7594 res_comment="unsupported under $system_name"
7597 echores "$_joystick"
7599 echocheck "lirc"
7600 if test "$_lirc" = auto ; then
7601 _lirc=no
7602 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7604 if test "$_lirc" = yes ; then
7605 def_lirc='#define CONFIG_LIRC 1'
7606 libs_mplayer="$libs_mplayer -llirc_client"
7607 else
7608 def_lirc='#undef CONFIG_LIRC'
7610 echores "$_lirc"
7612 echocheck "lircc"
7613 if test "$_lircc" = auto ; then
7614 _lircc=no
7615 header_check lirc/lircc.h -llircc && _lircc=yes
7617 if test "$_lircc" = yes ; then
7618 def_lircc='#define CONFIG_LIRCC 1'
7619 libs_mplayer="$libs_mplayer -llircc"
7620 else
7621 def_lircc='#undef CONFIG_LIRCC'
7623 echores "$_lircc"
7625 if arm; then
7626 # Detect maemo development platform libraries availability (http://www.maemo.org),
7627 # they are used when run on Nokia 770|8x0
7628 echocheck "maemo (Nokia 770|8x0)"
7629 if test "$_maemo" = auto ; then
7630 _maemo=no
7631 cat > $TMPC << EOF
7632 #include <libosso.h>
7633 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7635 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7637 if test "$_maemo" = yes ; then
7638 def_maemo='#define CONFIG_MAEMO 1'
7639 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7640 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7641 else
7642 def_maemo='#undef CONFIG_MAEMO'
7644 echores "$_maemo"
7647 #############################################################################
7649 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7650 # the OMF format needs to come after the 'extern symbol prefix' check, which
7651 # uses nm.
7652 if os2 ; then
7653 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7656 # linker paths should be the same for mencoder and mplayer
7657 _ld_tmp=""
7658 for I in $libs_mplayer ; do
7659 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7660 if test -z "$_tmp" ; then
7661 extra_ldflags="$extra_ldflags $I"
7662 else
7663 _ld_tmp="$_ld_tmp $I"
7665 done
7666 libs_mplayer=$_ld_tmp
7669 #############################################################################
7670 # 64 bit file offsets?
7671 if test "$_largefiles" = yes || freebsd ; then
7672 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7673 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7674 # dvdread support requires this (for off64_t)
7675 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7679 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7681 # This must be the last test to be performed. Any other tests following it
7682 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7683 # against libdvdread (to permit MPlayer to use its own copy of the library).
7684 # So any compilation using the flags added here but not linking against
7685 # libdvdread can fail.
7686 echocheck "DVD support (libdvdnav)"
7687 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7688 _dvdnav=no
7690 dvdnav_internal=no
7691 if test "$_dvdnav" = auto ; then
7692 if test "$_dvdread_internal" = yes ; then
7693 _dvdnav=yes
7694 dvdnav_internal=yes
7695 res_comment="internal"
7696 else
7697 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7700 if test "$_dvdnav" = auto ; then
7701 cat > $TMPC <<EOF
7702 #include <inttypes.h>
7703 #include <dvdnav/dvdnav.h>
7704 int main(void) { dvdnav_t *dvd=0; return 0; }
7706 _dvdnav=no
7707 _dvdnavdir=$($_dvdnavconfig --cflags)
7708 _dvdnavlibs=$($_dvdnavconfig --libs)
7709 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7711 if test "$_dvdnav" = yes ; then
7712 _largefiles=yes
7713 def_dvdnav='#define CONFIG_DVDNAV 1'
7714 if test "$dvdnav_internal" = yes ; then
7715 cflags_libdvdnav="-Ilibdvdnav"
7716 inputmodules="dvdnav(internal) $inputmodules"
7717 else
7718 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7719 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7720 inputmodules="dvdnav $inputmodules"
7722 else
7723 def_dvdnav='#undef CONFIG_DVDNAV'
7724 noinputmodules="dvdnav $noinputmodules"
7726 echores "$_dvdnav"
7728 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7729 # Read dvdnav comment above.
7731 mak_enable () {
7732 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7733 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7734 nprefix=$3;
7735 for part in $list; do
7736 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7737 echo "${nprefix}_$part = yes"
7739 done
7742 #############################################################################
7743 echo "Creating config.mak"
7744 cat > config.mak << EOF
7745 # -------- Generated by configure -----------
7747 # Ensure that locale settings do not interfere with shell commands.
7748 export LC_ALL = C
7750 CONFIGURATION = $configuration
7752 CHARSET = $_charset
7753 DOC_LANGS = $language_doc
7754 DOC_LANG_ALL = $doc_lang_all
7755 MAN_LANGS = $language_man
7756 MAN_LANG_ALL = $man_lang_all
7757 MSG_LANGS = $language_msg
7758 MSG_LANG_ALL = $msg_lang_all
7760 prefix = \$(DESTDIR)$_prefix
7761 BINDIR = \$(DESTDIR)$_bindir
7762 DATADIR = \$(DESTDIR)$_datadir
7763 LIBDIR = \$(DESTDIR)$_libdir
7764 MANDIR = \$(DESTDIR)$_mandir
7765 CONFDIR = \$(DESTDIR)$_confdir
7766 LOCALEDIR = \$(DESTDIR)$_localedir
7768 AR = $_ar
7769 AS = $_cc
7770 CC = $_cc
7771 CXX = $_cc
7772 HOST_CC = $_host_cc
7773 INSTALL = $_install
7774 INSTALLSTRIP = $_install_strip
7775 WINDRES = $_windres
7777 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7778 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7779 DEPFLAGS = $DEPFLAGS
7781 CFLAGS_DHAHELPER = $cflags_dhahelper
7782 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7783 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7784 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7785 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7786 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7787 CFLAGS_STACKREALIGN = $cflags_stackrealign
7788 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7789 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7791 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7792 EXTRALIBS_MPLAYER = $libs_mplayer
7793 EXTRALIBS_MENCODER = $libs_mencoder
7795 GETCH = $_getch
7796 TIMER = $_timer
7798 EXESUF = $_exesuf
7799 EXESUFS_ALL = .exe
7801 ARCH = $arch
7802 $(mak_enable "$arch_all" "$arch" ARCH)
7803 $(mak_enable "$subarch_all" "$subarch" ARCH)
7804 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7806 MENCODER = $_mencoder
7807 MPLAYER = $_mplayer
7809 NEED_GETTIMEOFDAY = $_need_gettimeofday
7810 NEED_GLOB = $_need_glob
7811 NEED_MMAP = $_need_mmap
7812 NEED_SETENV = $_need_setenv
7813 NEED_SHMEM = $_need_shmem
7814 NEED_STRSEP = $_need_strsep
7815 NEED_SWAB = $_need_swab
7816 NEED_VSSCANF = $_need_vsscanf
7818 # features
7819 3DFX = $_3dfx
7820 AA = $_aa
7821 ALSA1X = $_alsa1x
7822 ALSA9 = $_alsa9
7823 ALSA5 = $_alsa5
7824 APPLE_IR = $_apple_ir
7825 APPLE_REMOTE = $_apple_remote
7826 ARTS = $_arts
7827 AUDIO_INPUT = $_audio_input
7828 BITMAP_FONT = $_bitmap_font
7829 BL = $_bl
7830 CACA = $_caca
7831 CDDA = $_cdda
7832 CDDB = $_cddb
7833 COREAUDIO = $_coreaudio
7834 COREVIDEO = $_corevideo
7835 DART = $_dart
7836 DFBMGA = $_dfbmga
7837 DGA = $_dga
7838 DIRECT3D = $_direct3d
7839 DIRECTFB = $_directfb
7840 DIRECTX = $_directx
7841 DVBIN = $_dvbin
7842 DVDNAV = $_dvdnav
7843 DVDNAV_INTERNAL = $dvdnav_internal
7844 DVDREAD = $_dvdread
7845 DVDREAD_INTERNAL = $_dvdread_internal
7846 DXR2 = $_dxr2
7847 DXR3 = $_dxr3
7848 ESD = $_esd
7849 FAAC=$_faac
7850 FAAD = $_faad
7851 FAAD_INTERNAL = $_faad_internal
7852 FASTMEMCPY = $_fastmemcpy
7853 FBDEV = $_fbdev
7854 FREETYPE = $_freetype
7855 FTP = $_ftp
7856 GIF = $_gif
7857 GGI = $_ggi
7858 GL = $_gl
7859 GL_WIN32 = $_gl_win32
7860 GL_X11 = $_gl_x11
7861 GL_SDL = $_gl_sdl
7862 MATRIXVIEW = $matrixview
7863 HAVE_POSIX_SELECT = $_posix_select
7864 HAVE_SYS_MMAN_H = $_mman
7865 IVTV = $_ivtv
7866 JACK = $_jack
7867 JOYSTICK = $_joystick
7868 JPEG = $_jpeg
7869 KAI = $_kai
7870 KVA = $_kva
7871 LADSPA = $_ladspa
7872 LIBA52 = $_liba52
7873 LIBASS = $_ass
7874 LIBBLURAY = $_bluray
7875 LIBBS2B = $_libbs2b
7876 LIBDCA = $_libdca
7877 LIBDV = $_libdv
7878 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7879 LIBLZO = $_liblzo
7880 LIBMAD = $_mad
7881 LIBMENU = $_menu
7882 LIBMENU_DVBIN = $_menu_dvbin
7883 LIBMPEG2 = $_libmpeg2
7884 LIBNEMESI = $_nemesi
7885 LIBNUT = $_libnut
7886 LIBSMBCLIENT = $_smb
7887 LIBTHEORA = $_theora
7888 LIRC = $_lirc
7889 LIVE555 = $_live
7890 MACOSX_FINDER = $_macosx_finder
7891 MD5SUM = $_md5sum
7892 MGA = $_mga
7893 MNG = $_mng
7894 MP3LAME = $_mp3lame
7895 MP3LIB = $_mp3lib
7896 MPG123 = $_mpg123
7897 MUSEPACK = $_musepack
7898 NAS = $_nas
7899 NATIVE_RTSP = $_native_rtsp
7900 NETWORKING = $networking
7901 OPENAL = $_openal
7902 OSS = $_ossaudio
7903 PE_EXECUTABLE = $_pe_executable
7904 PNG = $_png
7905 PNM = $_pnm
7906 PRIORITY = $_priority
7907 PULSE = $_pulse
7908 PVR = $_pvr
7909 QTX_CODECS = $_qtx
7910 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7911 QTX_EMULATION = $_qtx_emulation
7912 QUARTZ = $_quartz
7913 RADIO=$_radio
7914 RADIO_CAPTURE=$_radio_capture
7915 REAL_CODECS = $_real
7916 S3FB = $_s3fb
7917 SDL = $_sdl
7918 SPEEX = $_speex
7919 STREAM_CACHE = $_stream_cache
7920 SGIAUDIO = $_sgiaudio
7921 SUNAUDIO = $_sunaudio
7922 SVGA = $_svga
7923 TDFXFB = $_tdfxfb
7924 TDFXVID = $_tdfxvid
7925 TGA = $_tga
7926 TOOLAME=$_toolame
7927 TREMOR_INTERNAL = $_tremor_internal
7928 TV = $_tv
7929 TV_BSDBT848 = $_tv_bsdbt848
7930 TV_DSHOW = $_tv_dshow
7931 TV_V4L = $_tv_v4l
7932 TV_V4L1 = $_tv_v4l1
7933 TV_V4L2 = $_tv_v4l2
7934 TWOLAME=$_twolame
7935 UNRAR_EXEC = $_unrar_exec
7936 V4L2 = $_v4l2
7937 VCD = $_vcd
7938 VDPAU = $_vdpau
7939 VESA = $_vesa
7940 VIDIX = $_vidix
7941 VIDIX_PCIDB = $_vidix_pcidb_val
7942 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7943 VIDIX_IVTV=$_vidix_drv_ivtv
7944 VIDIX_MACH64=$_vidix_drv_mach64
7945 VIDIX_MGA=$_vidix_drv_mga
7946 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7947 VIDIX_NVIDIA=$_vidix_drv_nvidia
7948 VIDIX_PM2=$_vidix_drv_pm2
7949 VIDIX_PM3=$_vidix_drv_pm3
7950 VIDIX_RADEON=$_vidix_drv_radeon
7951 VIDIX_RAGE128=$_vidix_drv_rage128
7952 VIDIX_S3=$_vidix_drv_s3
7953 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7954 VIDIX_SIS=$_vidix_drv_sis
7955 VIDIX_UNICHROME=$_vidix_drv_unichrome
7956 VORBIS = $_vorbis
7957 VSTREAM = $_vstream
7958 WII = $_wii
7959 WIN32DLL = $_win32dll
7960 WIN32WAVEOUT = $_win32waveout
7961 WIN32_EMULATION = $_win32_emulation
7962 WINVIDIX = $winvidix
7963 X11 = $_x11
7964 X264 = $_x264
7965 XANIM_CODECS = $_xanim
7966 XMGA = $_xmga
7967 XMMS_PLUGINS = $_xmms
7968 XV = $_xv
7969 XVID4 = $_xvid
7970 XVIDIX = $xvidix
7971 XVMC = $_xvmc
7972 XVR100 = $_xvr100
7973 YUV4MPEG = $_yuv4mpeg
7974 ZR = $_zr
7976 # FFmpeg
7977 LIBAVUTIL = $_libavutil
7978 LIBAVCODEC = $_libavcodec
7979 LIBAVFORMAT = $_libavformat
7980 LIBPOSTPROC = $_libpostproc
7981 LIBSWSCALE = $_libswscale
7982 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7983 LIBSWSCALE_INTERNALS = $_libswscale_internals
7984 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7986 RANLIB = $_ranlib
7987 YASM = $_yasm
7988 YASMFLAGS = $YASMFLAGS
7990 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7991 CONFIG_AANDCT = yes
7992 CONFIG_FFT = yes
7993 CONFIG_GOLOMB = yes
7994 CONFIG_H264DSP = yes
7995 CONFIG_LPC = yes
7996 CONFIG_MDCT = yes
7997 CONFIG_RDFT = yes
7999 CONFIG_BZLIB = $bzlib
8000 CONFIG_ENCODERS = yes
8001 CONFIG_GPL = yes
8002 CONFIG_MLIB = $_mlib
8003 CONFIG_MUXERS = $_mencoder
8004 CONFIG_VDPAU = $_vdpau
8005 CONFIG_XVMC = $_xvmc
8006 CONFIG_ZLIB = $_zlib
8008 HAVE_PTHREADS = $_pthreads
8009 HAVE_SHM = $_shm
8010 HAVE_W32THREADS = $_w32threads
8011 HAVE_YASM = $have_yasm
8015 #############################################################################
8017 ff_config_enable () {
8018 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8019 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8020 _nprefix=$3;
8021 test -z "$_nprefix" && _nprefix='CONFIG'
8022 for part in $list; do
8023 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8024 echo "#define ${_nprefix}_$part 1"
8025 else
8026 echo "#define ${_nprefix}_$part 0"
8028 done
8031 echo "Creating config.h"
8032 cat > $TMPH << EOF
8033 /*----------------------------------------------------------------------------
8034 ** This file has been automatically generated by configure any changes in it
8035 ** will be lost when you run configure again.
8036 ** Instead of modifying definitions here, use the --enable/--disable options
8037 ** of the configure script! See ./configure --help for details.
8038 *---------------------------------------------------------------------------*/
8040 #ifndef MPLAYER_CONFIG_H
8041 #define MPLAYER_CONFIG_H
8043 /* Undefine this if you do not want to select mono audio (left or right)
8044 with a stereo MPEG layer 2/3 audio stream. The command line option
8045 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8046 right-only), with 0 being the default.
8048 #define CONFIG_FAKE_MONO 1
8050 /* set up audio OUTBURST. Do not change this! */
8051 #define OUTBURST 512
8053 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8054 #undef FAST_OSD
8055 #undef FAST_OSD_TABLE
8057 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8058 #define MPEG12_POSTPROC 1
8059 #define ATTRIBUTE_ALIGNED_MAX 16
8063 #define CONFIGURATION "$configuration"
8065 #define MPLAYER_DATADIR "$_datadir"
8066 #define MPLAYER_CONFDIR "$_confdir"
8067 #define MPLAYER_LIBDIR "$_libdir"
8068 #define MPLAYER_LOCALEDIR "$_localedir"
8070 $def_translation
8072 /* definitions needed by included libraries */
8073 #define HAVE_INTTYPES_H 1
8074 /* libmpeg2 + FFmpeg */
8075 $def_fast_inttypes
8076 /* libdvdcss */
8077 #define HAVE_ERRNO_H 1
8078 /* libdvdcss + libdvdread */
8079 #define HAVE_LIMITS_H 1
8080 /* libdvdcss + libfaad2 */
8081 #define HAVE_UNISTD_H 1
8082 /* libfaad2 + libdvdread */
8083 #define STDC_HEADERS 1
8084 #define HAVE_MEMCPY 1
8085 /* libfaad2 */
8086 #define HAVE_STRING_H 1
8087 #define HAVE_STRINGS_H 1
8088 #define HAVE_SYS_STAT_H 1
8089 #define HAVE_SYS_TYPES_H 1
8090 /* libdvdnav */
8091 #define READ_CACHE_TRACE 0
8092 /* libdvdread */
8093 #define HAVE_DLFCN_H 1
8094 $def_dvdcss
8097 /* system headers */
8098 $def_alloca_h
8099 $def_alsa_asoundlib_h
8100 $def_altivec_h
8101 $def_malloc_h
8102 $def_mman_h
8103 $def_mman_has_map_failed
8104 $def_soundcard_h
8105 $def_sys_asoundlib_h
8106 $def_sys_soundcard_h
8107 $def_sys_sysinfo_h
8108 $def_termios_h
8109 $def_termios_sys_h
8110 $def_winsock2_h
8113 /* system functions */
8114 $def_gethostbyname2
8115 $def_gettimeofday
8116 $def_glob
8117 $def_langinfo
8118 $def_lrintf
8119 $def_map_memalign
8120 $def_memalign
8121 $def_nanosleep
8122 $def_posix_select
8123 $def_select
8124 $def_setenv
8125 $def_setmode
8126 $def_shm
8127 $def_strsep
8128 $def_swab
8129 $def_sysi86
8130 $def_sysi86_iv
8131 $def_termcap
8132 $def_termios
8133 $def_vsscanf
8136 /* system-specific features */
8137 $def_asmalign_pot
8138 $def_builtin_expect
8139 $def_dl
8140 $def_dos_paths
8141 $def_extern_asm
8142 $def_extern_prefix
8143 $def_iconv
8144 $def_kstat
8145 $def_macosx_bundle
8146 $def_macosx_finder
8147 $def_maemo
8148 $def_named_asm_args
8149 $def_priority
8150 $def_quicktime
8151 $def_restrict_keyword
8152 $def_rtc
8153 $def_unrar_exec
8156 /* configurable options */
8157 $def_charset
8158 $def_crash_debug
8159 $def_debug
8160 $def_dynamic_plugins
8161 $def_fastmemcpy
8162 $def_menu
8163 $def_runtime_cpudetection
8164 $def_sighandler
8165 $def_sortsub
8166 $def_stream_cache
8167 $def_pthread_cache
8170 /* CPU stuff */
8171 #define __CPU__ $iproc
8172 $def_ebx_available
8173 $def_words_endian
8174 $def_bigendian
8175 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8176 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8177 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8180 /* Blu-ray/DVD/VCD/CD */
8181 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8182 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8183 $def_bluray
8184 $def_bsdi_dvd
8185 $def_cddb
8186 $def_cdio
8187 $def_cdparanoia
8188 $def_cdrom
8189 $def_dvd
8190 $def_dvd_bsd
8191 $def_dvd_darwin
8192 $def_dvd_linux
8193 $def_dvd_openbsd
8194 $def_dvdio
8195 $def_dvdnav
8196 $def_dvdread
8197 $def_hpux_scsi_h
8198 $def_libcdio
8199 $def_sol_scsi_h
8200 $def_vcd
8203 /* codec libraries */
8204 $def_faac
8205 $def_faad
8206 $def_faad_internal
8207 $def_liba52
8208 $def_libdca
8209 $def_libdv
8210 $def_liblzo
8211 $def_libmpeg2
8212 $def_mad
8213 $def_mp3lame
8214 $def_mp3lame_preset
8215 $def_mp3lame_preset_medium
8216 $def_mp3lib
8217 $def_mpg123
8218 $def_musepack
8219 $def_speex
8220 $def_theora
8221 $def_toolame
8222 $def_tremor
8223 $def_twolame
8224 $def_vorbis
8225 $def_x264
8226 $def_xvid
8227 $def_zlib
8229 $def_libnut
8232 /* binary codecs */
8233 $def_qtx
8234 $def_qtx_win32
8235 $def_real
8236 $def_win32_loader
8237 $def_win32dll
8238 $def_xanim
8239 $def_xmms
8240 #define BINARY_CODECS_PATH "$_codecsdir"
8241 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8244 /* Audio output drivers */
8245 $def_alsa
8246 $def_alsa1x
8247 $def_alsa5
8248 $def_alsa9
8249 $def_arts
8250 $def_coreaudio
8251 $def_dart
8252 $def_esd
8253 $def_esd_latency
8254 $def_jack
8255 $def_kai
8256 $def_nas
8257 $def_openal
8258 $def_openal_h
8259 $def_ossaudio
8260 $def_ossaudio_devdsp
8261 $def_ossaudio_devmixer
8262 $def_pulse
8263 $def_sgiaudio
8264 $def_sunaudio
8265 $def_win32waveout
8267 $def_ladspa
8268 $def_libbs2b
8271 /* input */
8272 $def_apple_ir
8273 $def_apple_remote
8274 $def_ioctl_bt848_h_name
8275 $def_ioctl_meteor_h_name
8276 $def_joystick
8277 $def_lirc
8278 $def_lircc
8279 $def_pvr
8280 $def_radio
8281 $def_radio_bsdbt848
8282 $def_radio_capture
8283 $def_radio_v4l
8284 $def_radio_v4l2
8285 $def_tv
8286 $def_tv_bsdbt848
8287 $def_tv_dshow
8288 $def_tv_v4l
8289 $def_tv_v4l1
8290 $def_tv_v4l2
8293 /* font stuff */
8294 $def_ass
8295 $def_bitmap_font
8296 $def_enca
8297 $def_fontconfig
8298 $def_freetype
8299 $def_fribidi
8302 /* networking */
8303 $def_closesocket
8304 $def_ftp
8305 $def_inet6
8306 $def_inet_aton
8307 $def_inet_pton
8308 $def_live
8309 $def_nemesi
8310 $def_networking
8311 $def_smb
8312 $def_socklen_t
8313 $def_vstream
8316 /* libvo options */
8317 $def_3dfx
8318 $def_aa
8319 $def_bl
8320 $def_caca
8321 $def_corevideo
8322 $def_dfbmga
8323 $def_dga
8324 $def_dga1
8325 $def_dga2
8326 $def_direct3d
8327 $def_directfb
8328 $def_directfb_version
8329 $def_directx
8330 $def_dvb
8331 $def_dvbin
8332 $def_dxr2
8333 $def_dxr3
8334 $def_fbdev
8335 $def_ggi
8336 $def_ggiwmh
8337 $def_gif
8338 $def_gif_4
8339 $def_gif_tvt_hack
8340 $def_gl
8341 $def_gl_win32
8342 $def_gl_x11
8343 $def_gl_sdl
8344 $def_matrixview
8345 $def_ivtv
8346 $def_jpeg
8347 $def_kva
8348 $def_md5sum
8349 $def_mga
8350 $def_mng
8351 $def_png
8352 $def_pnm
8353 $def_quartz
8354 $def_s3fb
8355 $def_sdl
8356 $def_sdl_sdl_h
8357 $def_svga
8358 $def_tdfxfb
8359 $def_tdfxvid
8360 $def_tga
8361 $def_v4l2
8362 $def_vdpau
8363 $def_vesa
8364 $def_vidix
8365 $def_vidix_drv_cyberblade
8366 $def_vidix_drv_ivtv
8367 $def_vidix_drv_mach64
8368 $def_vidix_drv_mga
8369 $def_vidix_drv_mga_crtc2
8370 $def_vidix_drv_nvidia
8371 $def_vidix_drv_pm3
8372 $def_vidix_drv_radeon
8373 $def_vidix_drv_rage128
8374 $def_vidix_drv_s3
8375 $def_vidix_drv_sh_veu
8376 $def_vidix_drv_sis
8377 $def_vidix_drv_unichrome
8378 $def_vidix_pfx
8379 $def_vm
8380 $def_wii
8381 $def_x11
8382 $def_xdpms
8383 $def_xf86keysym
8384 $def_xinerama
8385 $def_xmga
8386 $def_xss
8387 $def_xv
8388 $def_xvmc
8389 $def_xvr100
8390 $def_yuv4mpeg
8391 $def_zr
8394 /* FFmpeg */
8395 $def_libavcodec
8396 $def_libavformat
8397 $def_libavutil
8398 $def_libpostproc
8399 $def_libswscale
8400 $def_libavcodec_internals
8401 $def_libswscale_internals
8403 #define CONFIG_DECODERS 1
8404 #define CONFIG_ENCODERS 1
8405 #define CONFIG_DEMUXERS 1
8406 $def_muxers
8408 $def_arpa_inet_h
8409 $def_bswap
8410 $def_bzlib
8411 $def_dcbzl
8412 $def_exp2
8413 $def_exp2f
8414 $def_fast_64bit
8415 $def_fast_unaligned
8416 $def_llrint
8417 $def_log2
8418 $def_log2f
8419 $def_lrint
8420 $def_memalign_hack
8421 $def_mlib
8422 $def_mkstemp
8423 $def_posix_memalign
8424 $def_pthreads
8425 $def_round
8426 $def_roundf
8427 $def_ten_operands
8428 $def_threads
8429 $def_truncf
8430 $def_xform_asm
8431 $def_yasm
8433 #define CONFIG_FASTDIV 0
8434 #define CONFIG_FFSERVER 0
8435 #define CONFIG_GPL 1
8436 #define CONFIG_GRAY 0
8437 #define CONFIG_HARDCODED_TABLES 0
8438 #define CONFIG_LIBVORBIS 0
8439 #define CONFIG_POWERPC_PERF 0
8440 #define CONFIG_SMALL 0
8441 #define CONFIG_SWSCALE_ALPHA 1
8443 #define HAVE_ATTRIBUTE_PACKED 1
8444 #define HAVE_GETHRTIME 0
8445 #define HAVE_INLINE_ASM 1
8446 #define HAVE_LDBRX 0
8447 #define HAVE_POLL_H 1
8448 #define HAVE_PPC4XX 0
8449 #define HAVE_VFP_ARGS 1
8450 #define HAVE_VIRTUALALLOC 0
8452 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8453 #define CONFIG_AANDCT 1
8454 #define CONFIG_DCT 1
8455 #define CONFIG_DWT 1
8456 #define CONFIG_FFT 1
8457 #define CONFIG_GOLOMB 1
8458 #define CONFIG_H264DSP 1
8459 #define CONFIG_LPC 1
8460 #define CONFIG_MDCT 1
8461 #define CONFIG_RDFT 1
8463 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8464 #ifndef MP_DEBUG
8465 #define HAVE_EBP_AVAILABLE 1
8466 #else
8467 #define HAVE_EBP_AVAILABLE 0
8468 #endif
8470 #define CONFIG_H263_VAAPI_HWACCEL 0
8471 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8472 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8473 #define CONFIG_H264_VAAPI_HWACCEL 0
8474 #define CONFIG_VC1_VAAPI_HWACCEL 0
8475 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8477 #endif /* MPLAYER_CONFIG_H */
8480 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8481 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8483 #############################################################################
8485 ./version.sh `$_cc -dumpversion`
8487 cat << EOF
8489 Config files successfully generated by ./configure $configuration !
8491 Install prefix: $_prefix
8492 Data directory: $_datadir
8493 Config direct.: $_confdir
8495 Byte order: $_byte_order
8496 Optimizing for: $_optimizing
8498 Languages:
8499 Messages (in addition to English): $language_msg
8500 Manual pages: $language_man
8501 Documentation: $language_doc
8503 Enabled optional drivers:
8504 Input: $inputmodules
8505 Codecs: $codecmodules
8506 Audio output: $aomodules
8507 Video output: $vomodules
8509 Disabled optional drivers:
8510 Input: $noinputmodules
8511 Codecs: $nocodecmodules
8512 Audio output: $noaomodules
8513 Video output: $novomodules
8515 'config.h' and 'config.mak' contain your configuration options.
8516 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8517 compile *** DO NOT REPORT BUGS if you tweak these files ***
8519 'make' will now compile MPlayer and 'make install' will install it.
8520 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8525 if test "$_mtrr" = yes ; then
8526 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8527 echo
8530 if ! x86_32; then
8531 cat <<EOF
8532 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8533 operating system ($system_name). You may encounter a few files that cannot
8534 be played due to missing open source video/audio codec support.
8540 cat <<EOF
8541 Check $TMPLOG if you wonder why an autodetection failed (make sure
8542 development headers/packages are installed).
8544 NOTE: The --enable-* parameters unconditionally force options on, completely
8545 skipping autodetection. This behavior is unlike what you may be used to from
8546 autoconf-based configure scripts that can decide to override you. This greater
8547 level of control comes at a price. You may have to provide the correct compiler
8548 and linker flags yourself.
8549 If you used one of these options (except --enable-menu and similar ones that
8550 turn on internal features) and experience a compilation or linking failure,
8551 make sure you have passed the necessary compiler/linker flags to configure.
8553 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8557 if test "$warn_cflags" = yes; then
8558 cat <<EOF
8560 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8561 but:
8563 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8565 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8566 To do so, execute 'CFLAGS= ./configure <options>'
8571 # Last move:
8572 rm -rf "$mplayer_tmpdir"