ao_mpegpes: Properly close file on error or uninit
[mplayer/glamo.git] / configure
blob5f9135fff163607dbc61b4905ead9da8d4a6dd05
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 $source $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $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 compile_check $TMPC $@
100 header_check() {
101 cat > $TMPC << EOF
102 #include <$1>
103 int main(void) { return 0; }
105 shift
106 compile_check $TMPC $@
109 # this is a special check only to be
110 # used for broken headers that do not
111 # include all dependencies
112 header_check_broken() {
113 cat > $TMPC << EOF
114 #include <$1>
115 #include <$2>
116 int main(void) { return 0; }
118 shift
119 shift
120 compile_check $TMPC $@
123 yasm_check() {
124 echo >> "$TMPLOG"
125 cat "$TMPS" >> "$TMPLOG"
126 echo >> "$TMPLOG"
127 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
128 rm -f "$TMPEXE"
129 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
130 TMPRES="$?"
131 echo >> "$TMPLOG"
132 echo >> "$TMPLOG"
133 return "$TMPRES"
136 tmp_run() {
137 "$TMPEXE" >> "$TMPLOG" 2>&1
140 # Display error message, flushes tempfile, exit
141 die () {
142 echo
143 echo "Error: $@" >&2
144 echo >&2
145 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
146 echo "Check \"$TMPLOG\" if you do not understand why it failed."
147 exit 1
150 # OS test booleans functions
151 issystem() {
152 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
154 aix() { issystem "AIX"; }
155 amigaos() { issystem "AmigaOS"; }
156 beos() { issystem "BEOS"; }
157 bsdos() { issystem "BSD/OS"; }
158 cygwin() { issystem "CYGWIN"; }
159 darwin() { issystem "Darwin"; }
160 dragonfly() { issystem "DragonFly"; }
161 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
162 gnu() { issystem "GNU"; }
163 hpux() { issystem "HP-UX"; }
164 irix() { issystem "IRIX"; }
165 linux() { issystem "Linux"; }
166 mingw32() { issystem "MINGW32"; }
167 morphos() { issystem "MorphOS"; }
168 netbsd() { issystem "NetBSD"; }
169 openbsd() { issystem "OpenBSD"; }
170 os2() { issystem "OS/2"; }
171 qnx() { issystem "QNX"; }
172 sunos() { issystem "SunOS"; }
173 win32() { cygwin || mingw32; }
175 # arch test boolean functions
176 # x86/x86pc is used by QNX
177 x86_32() {
178 case "$host_arch" in
179 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
180 *) return 1 ;;
181 esac
184 x86_64() {
185 case "$host_arch" in
186 x86_64|amd64) return 0 ;;
187 *) return 1 ;;
188 esac
191 x86() {
192 x86_32 || x86_64
195 ppc() {
196 case "$host_arch" in
197 ppc|ppc64|powerpc|powerpc64) return 0;;
198 *) return 1;;
199 esac
202 alpha() {
203 case "$host_arch" in
204 alpha*) return 0;;
205 *) return 1;;
206 esac
209 arm() {
210 case "$host_arch" in
211 arm*) return 0;;
212 *) return 1;;
213 esac
216 # Use this before starting a check
217 echocheck() {
218 echo "============ Checking for $@ ============" >> "$TMPLOG"
219 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
222 # Use this to echo the results of a check
223 echores() {
224 if test "$res_comment" ; then
225 res_comment="($res_comment)"
227 echo "Result is: $@ $res_comment" >> "$TMPLOG"
228 echo "##########################################" >> "$TMPLOG"
229 echo "" >> "$TMPLOG"
230 echo "$@ $res_comment"
231 res_comment=""
233 #############################################################################
235 # Check how echo works in this /bin/sh
236 case $(echo -n) in
237 -n) _echo_n= _echo_c='\c' ;; # SysV echo
238 *) _echo_n='-n ' _echo_c= ;; # BSD echo
239 esac
241 msg_lang_all=''
242 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
243 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")
244 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
246 show_help(){
247 cat << EOF
248 Usage: $0 [OPTIONS]...
250 Configuration:
251 -h, --help display this help and exit
253 Installation directories:
254 --prefix=DIR prefix directory for installation [/usr/local]
255 --bindir=DIR directory for installing binaries [PREFIX/bin]
256 --datadir=DIR directory for installing machine independent
257 data files (skins, etc) [PREFIX/share/mplayer]
258 --mandir=DIR directory for installing man pages [PREFIX/share/man]
259 --confdir=DIR directory for installing configuration files
260 [PREFIX/etc/mplayer]
261 --localedir=DIR directory for locale tree [PREFIX/share/locale]
262 --libdir=DIR directory for object code libraries [PREFIX/lib]
263 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
265 Optional features:
266 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
267 --disable-mplayer disable MPlayer compilation [enable]
268 --disable-largefiles disable support for files > 2GB [enable]
269 --enable-termcap use termcap database for key codes [autodetect]
270 --enable-termios use termios database for key codes [autodetect]
271 --disable-iconv disable iconv for encoding conversion [autodetect]
272 --disable-langinfo do not use langinfo [autodetect]
273 --enable-lirc enable LIRC (remote control) support [autodetect]
274 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
275 --enable-joystick enable joystick support [disable]
276 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
277 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
278 --disable-vm disable X video mode extensions [autodetect]
279 --disable-xf86keysym disable support for multimedia keys [autodetect]
280 --enable-radio enable radio interface [disable]
281 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
282 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
283 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
284 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
285 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
286 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
287 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
288 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
289 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
290 --disable-networking disable networking [enable]
291 --enable-winsock2_h enable winsock2_h [autodetect]
292 --enable-smb enable Samba (SMB) input [autodetect]
293 --enable-live enable LIVE555 Streaming Media [autodetect]
294 --enable-nemesi enable Nemesi Streaming Media [autodetect]
295 --disable-vcd disable VCD support [autodetect]
296 --disable-bluray disable Blu-ray support [autodetect]
297 --disable-dvdnav disable libdvdnav [autodetect]
298 --disable-dvdread disable libdvdread [autodetect]
299 --disable-dvdread-internal disable internal libdvdread [autodetect]
300 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
301 --disable-cdparanoia disable cdparanoia [autodetect]
302 --disable-cddb disable cddb [autodetect]
303 --disable-bitmap-font disable bitmap font support [enable]
304 --disable-freetype disable FreeType 2 font rendering [autodetect]
305 --disable-fontconfig disable fontconfig font lookup [autodetect]
306 --disable-unrarexec disable using of UnRAR executable [enabled]
307 --enable-menu enable OSD menu (not DVD menu) [disabled]
308 --disable-sortsub disable subtitle sorting [enabled]
309 --enable-fribidi enable the FriBiDi libs [autodetect]
310 --disable-enca disable ENCA charset oracle library [autodetect]
311 --disable-maemo disable maemo specific features [autodetect]
312 --enable-macosx-finder enable Mac OS X Finder invocation parameter
313 parsing [disabled]
314 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
315 --disable-inet6 disable IPv6 support [autodetect]
316 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
317 --disable-ftp disable FTP support [enabled]
318 --disable-vstream disable TiVo vstream client support [autodetect]
319 --disable-pthreads disable Posix threads support [autodetect]
320 --disable-w32threads disable Win32 threads support [autodetect]
321 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
322 --enable-rpath enable runtime linker path for extra libs [disabled]
324 Codecs:
325 --enable-gif enable GIF support [autodetect]
326 --enable-png enable PNG input/output support [autodetect]
327 --enable-mng enable MNG input support [autodetect]
328 --enable-jpeg enable JPEG input/output support [autodetect]
329 --enable-libcdio enable libcdio support [autodetect]
330 --enable-liblzo enable liblzo support [autodetect]
331 --disable-win32dll disable Win32 DLL support [autodetect]
332 --disable-qtx disable QuickTime codecs support [enabled]
333 --disable-xanim disable XAnim codecs support [enabled]
334 --disable-real disable RealPlayer codecs support [enabled]
335 --disable-xvid disable Xvid [autodetect]
336 --disable-x264 disable x264 [autodetect]
337 --disable-libnut disable libnut [autodetect]
338 --disable-libavutil disable libavutil [autodetect]
339 --disable-libavcodec disable libavcodec [autodetect]
340 --disable-libavformat disable libavformat [autodetect]
341 --disable-libpostproc disable libpostproc [autodetect]
342 --disable-libswscale disable libswscale [autodetect]
343 --disable-tremor-internal disable internal Tremor [enabled]
344 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
345 --enable-tremor enable external Tremor [autodetect]
346 --disable-libvorbis disable libvorbis support [autodetect]
347 --disable-speex disable Speex support [autodetect]
348 --enable-theora enable OggTheora libraries [autodetect]
349 --enable-faad enable external FAAD2 (AAC) [autodetect]
350 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
351 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
352 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
353 --disable-ladspa disable LADSPA plugin support [autodetect]
354 --disable-libbs2b disable libbs2b audio filter support [autodetect]
355 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
356 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
357 --disable-mad disable libmad (MPEG audio) support [autodetect]
358 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
359 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
360 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
361 --enable-xmms enable XMMS input plugin support [disabled]
362 --enable-libdca enable libdca support [autodetect]
363 --disable-mp3lib disable builtin mp3lib [autodetect]
364 --disable-liba52 disable liba52 [autodetect]
365 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
366 --disable-musepack disable musepack support [autodetect]
368 Video output:
369 --disable-vidix disable VIDIX [for x86 *nix]
370 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
371 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
372 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
373 --disable-vidix-pcidb disable VIDIX PCI device name database
374 --enable-dhahelper enable VIDIX dhahelper support
375 --enable-svgalib_helper enable VIDIX svgalib_helper support
376 --enable-gl enable OpenGL video output [autodetect]
377 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
378 --enable-dga2 enable DGA 2 support [autodetect]
379 --enable-dga1 enable DGA 1 support [autodetect]
380 --enable-vesa enable VESA video output [autodetect]
381 --enable-svga enable SVGAlib video output [autodetect]
382 --enable-sdl enable SDL video output [autodetect]
383 --enable-kva enable KVA video output [autodetect]
384 --enable-aa enable AAlib video output [autodetect]
385 --enable-caca enable CACA video output [autodetect]
386 --enable-ggi enable GGI video output [autodetect]
387 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
388 --enable-direct3d enable Direct3D video output [autodetect]
389 --enable-directx enable DirectX video output [autodetect]
390 --enable-dxr2 enable DXR2 video output [autodetect]
391 --enable-dxr3 enable DXR3/H+ video output [autodetect]
392 --enable-ivtv enable IVTV TV-Out video output [autodetect]
393 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
394 --enable-dvb enable DVB video output [autodetect]
395 --enable-mga enable mga_vid video output [autodetect]
396 --enable-xmga enable mga_vid X11 video output [autodetect]
397 --enable-xv enable Xv video output [autodetect]
398 --enable-xvmc enable XvMC acceleration [disable]
399 --enable-vdpau enable VDPAU acceleration [autodetect]
400 --enable-vm enable XF86VidMode support [autodetect]
401 --enable-xinerama enable Xinerama support [autodetect]
402 --enable-x11 enable X11 video output [autodetect]
403 --enable-xshape enable XShape support [autodetect]
404 --disable-xss disable screensaver support via xss [autodetect]
405 --enable-fbdev enable FBDev video output [autodetect]
406 --enable-mlib enable mediaLib video output (Solaris) [disable]
407 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
408 --enable-tdfxfb enable tdfxfb video output [disable]
409 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
410 --enable-wii enable Nintendo Wii/GameCube video output [disable]
411 --enable-directfb enable DirectFB video output [autodetect]
412 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
413 --enable-bl enable Blinkenlights video output [disable]
414 --enable-tdfxvid enable tdfx_vid video output [disable]
415 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
416 --disable-tga disable Targa video output [enable]
417 --disable-pnm disable PNM video output [enable]
418 --disable-md5sum disable md5sum video output [enable]
419 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
420 --disable-corevideo disable CoreVideo video output [autodetect]
421 --disable-quartz disable Quartz video output [autodetect]
423 Audio output:
424 --disable-alsa disable ALSA audio output [autodetect]
425 --disable-ossaudio disable OSS audio output [autodetect]
426 --disable-arts disable aRts audio output [autodetect]
427 --disable-esd disable esd audio output [autodetect]
428 --disable-pulse disable Pulseaudio audio output [autodetect]
429 --disable-jack disable JACK audio output [autodetect]
430 --enable-openal enable OpenAL audio output [disable]
431 --disable-nas disable NAS audio output [autodetect]
432 --disable-sgiaudio disable SGI audio output [autodetect]
433 --disable-sunaudio disable Sun audio output [autodetect]
434 --disable-kai disable KAI audio output [autodetect]
435 --disable-dart disable DART audio output [autodetect]
436 --disable-win32waveout disable Windows waveout audio output [autodetect]
437 --disable-coreaudio disable CoreAudio audio output [autodetect]
438 --disable-select disable using select() on the audio device [enable]
440 Language options:
441 --enable-translation enable support for translated output [disable]
442 --charset=charset convert the console messages to this character set
443 --language-doc=lang language to use for the documentation [en]
444 --language-man=lang language to use for the man pages [en]
445 --language-msg=lang extra languages for program messages [all]
446 --language=lang default language to use [en]
447 Specific options override --language. You can pass a list of languages separated
448 by whitespace or commas instead of a single language. Nonexisting translations
449 will be dropped from each list. All translations available in the list will be
450 installed. The value "all" will activate all translations. The LINGUAS
451 environment variable is honored. In all cases the fallback is English.
452 The program always supports English-language output; additional message
453 languages are only installed if --enable-translation is also specified.
454 Available values for --language-doc are: all $doc_lang_all
455 Available values for --language-man are: all $man_lang_all
456 Available values for --language-msg are: all $msg_lang_all
458 Miscellaneous options:
459 --enable-runtime-cpudetection enable runtime CPU detection [disable]
460 --enable-cross-compile enable cross-compilation [autodetect]
461 --cc=COMPILER C compiler to build MPlayer [gcc]
462 --host-cc=COMPILER C compiler for tools needed while building [gcc]
463 --as=ASSEMBLER assembler to build MPlayer [as]
464 --nm=NM nm tool to build MPlayer [nm]
465 --yasm=YASM Yasm assembler to build MPlayer [yasm]
466 --ar=AR librarian to build MPlayer [ar]
467 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
468 --windres=WINDRES windres to build MPlayer [windres]
469 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
470 --enable-static build a statically linked binary
471 --with-install=PATH path to a custom install program
473 Advanced options:
474 --enable-mmx enable MMX [autodetect]
475 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
476 --enable-3dnow enable 3DNow! [autodetect]
477 --enable-3dnowext enable extended 3DNow! [autodetect]
478 --enable-sse enable SSE [autodetect]
479 --enable-sse2 enable SSE2 [autodetect]
480 --enable-ssse3 enable SSSE3 [autodetect]
481 --enable-shm enable shm [autodetect]
482 --enable-altivec enable AltiVec (PowerPC) [autodetect]
483 --enable-armv5te enable DSP extensions (ARM) [autodetect]
484 --enable-armv6 enable ARMv6 (ARM) [autodetect]
485 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
486 --enable-armvfp enable ARM VFP (ARM) [autodetect]
487 --enable-neon enable NEON (ARM) [autodetect]
488 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
489 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
490 --enable-big-endian force byte order to big-endian [autodetect]
491 --enable-debug[=1-3] compile-in debugging information [disable]
492 --enable-profile compile-in profiling information [disable]
493 --disable-sighandler disable sighandler for crashes [enable]
494 --enable-crash-debug enable automatic gdb attach on crash [disable]
495 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
496 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
498 Use these options if autodetection fails:
499 --extra-cflags=FLAGS extra CFLAGS
500 --extra-ldflags=FLAGS extra LDFLAGS
501 --extra-libs=FLAGS extra linker flags
502 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
503 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
504 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
506 --with-freetype-config=PATH path to freetype-config
507 --with-glib-config=PATH path to glib*-config
508 --with-gtk-config=PATH path to gtk*-config
509 --with-sdl-config=PATH path to sdl*-config
510 --with-dvdnav-config=PATH path to dvdnav-config
511 --with-dvdread-config=PATH path to dvdread-config
513 This configure script is NOT autoconf-based, even though its output is similar.
514 It will try to autodetect all configuration options. If you --enable an option
515 it will be forcefully turned on, skipping autodetection. This can break
516 compilation, so you need to know what you are doing.
518 exit 0
519 } #show_help()
521 # GOTCHA: the variables below defines the default behavior for autodetection
522 # and have - unless stated otherwise - at least 2 states : yes no
523 # If autodetection is available then the third state is: auto
524 _mmx=auto
525 _3dnow=auto
526 _3dnowext=auto
527 _mmxext=auto
528 _sse=auto
529 _sse2=auto
530 _ssse3=auto
531 _cmov=auto
532 _fast_cmov=auto
533 _fast_clz=auto
534 _armv5te=auto
535 _armv6=auto
536 _armv6t2=auto
537 _armvfp=auto
538 neon=auto
539 _iwmmxt=auto
540 _mtrr=auto
541 _altivec=auto
542 _install=install
543 _ranlib=ranlib
544 _windres=windres
545 _cc=cc
546 _ar=ar
547 test "$CC" && _cc="$CC"
548 _as=auto
549 _nm=auto
550 _yasm=yasm
551 _runtime_cpudetection=no
552 _cross_compile=auto
553 _prefix="/usr/local"
554 _libavutil=auto
555 _libavcodec=auto
556 _libavformat=auto
557 _libpostproc=auto
558 _libswscale=auto
559 _libavcodec_internals=no
560 _libswscale_internals=no
561 _mencoder=yes
562 _mplayer=yes
563 _x11=auto
564 _xshape=auto
565 _xss=auto
566 _dga1=auto
567 _dga2=auto
568 _xv=auto
569 _xvmc=no #auto when complete
570 _vdpau=auto
571 _sdl=auto
572 _kva=auto
573 _direct3d=auto
574 _directx=auto
575 _win32waveout=auto
576 _nas=auto
577 _png=auto
578 _mng=auto
579 _jpeg=auto
580 _pnm=yes
581 _md5sum=yes
582 _yuv4mpeg=yes
583 _gif=auto
584 _gl=auto
585 matrixview=yes
586 _ggi=auto
587 _ggiwmh=auto
588 _aa=auto
589 _caca=auto
590 _svga=auto
591 _vesa=auto
592 _fbdev=auto
593 _dvb=auto
594 _dxr2=auto
595 _dxr3=auto
596 _ivtv=auto
597 _v4l2=auto
598 _iconv=auto
599 _langinfo=auto
600 _rtc=auto
601 _ossaudio=auto
602 _arts=auto
603 _esd=auto
604 _pulse=auto
605 _jack=auto
606 _kai=auto
607 _dart=auto
608 _openal=no
609 _libcdio=auto
610 _liblzo=auto
611 _mad=auto
612 _mp3lame=auto
613 _toolame=auto
614 _twolame=auto
615 _tremor=auto
616 _tremor_internal=yes
617 _tremor_low=no
618 _libvorbis=auto
619 _speex=auto
620 _theora=auto
621 _mpg123=auto
622 _mp3lib=auto
623 _liba52=auto
624 _libdca=auto
625 _libmpeg2=auto
626 _faad=auto
627 _faad_internal=auto
628 _faad_fixed=no
629 _faac=auto
630 _ladspa=auto
631 _libbs2b=auto
632 _xmms=no
633 _vcd=auto
634 _bluray=auto
635 _dvdnav=auto
636 _dvdnavconfig=dvdnav-config
637 _dvdreadconfig=dvdread-config
638 _dvdread=auto
639 _dvdread_internal=auto
640 _libdvdcss_internal=auto
641 _xanim=auto
642 _real=auto
643 _live=auto
644 _nemesi=auto
645 _native_rtsp=yes
646 _xinerama=auto
647 _mga=auto
648 _xmga=auto
649 _vm=auto
650 _xf86keysym=auto
651 _mlib=no #broken, thus disabled
652 _sgiaudio=auto
653 _sunaudio=auto
654 _alsa=auto
655 _fastmemcpy=yes
656 _unrar_exec=auto
657 _win32dll=auto
658 _select=yes
659 _radio=no
660 _radio_capture=no
661 _radio_v4l=auto
662 _radio_v4l2=auto
663 _radio_bsdbt848=auto
664 _tv=yes
665 _tv_v4l1=auto
666 _tv_v4l2=auto
667 _tv_bsdbt848=auto
668 _tv_dshow=auto
669 _pvr=auto
670 networking=yes
671 _winsock2_h=auto
672 _smb=auto
673 _vidix=auto
674 _vidix_pcidb=yes
675 _dhahelper=no
676 _svgalib_helper=no
677 _joystick=no
678 _xvid=auto
679 _x264=auto
680 _libnut=auto
681 _lirc=auto
682 _lircc=auto
683 _apple_remote=auto
684 _apple_ir=auto
685 _gui=no
686 _gtk1=no
687 _termcap=auto
688 _termios=auto
689 _3dfx=no
690 _s3fb=no
691 _wii=no
692 _tdfxfb=no
693 _tdfxvid=no
694 _xvr100=auto
695 _tga=yes
696 _directfb=auto
697 _zr=auto
698 _bl=no
699 _largefiles=yes
700 #language=en
701 _shm=auto
702 _translation=no
703 _charset="UTF-8"
704 _dynamic_plugins=no
705 _crash_debug=no
706 _sighandler=yes
707 _libdv=auto
708 _cdparanoia=auto
709 _cddb=auto
710 _big_endian=auto
711 _bitmap_font=yes
712 _freetype=auto
713 _fontconfig=auto
714 _menu=no
715 _qtx=auto
716 _maemo=auto
717 _coreaudio=auto
718 _corevideo=auto
719 _quartz=auto
720 quicktime=auto
721 _macosx_finder=no
722 _macosx_bundle=auto
723 _sortsub=yes
724 _freetypeconfig='freetype-config'
725 _fribidi=auto
726 _enca=auto
727 _inet6=auto
728 _gethostbyname2=auto
729 _ftp=yes
730 _musepack=auto
731 _vstream=auto
732 _pthreads=auto
733 _w32threads=auto
734 _ass=auto
735 _rpath=no
736 _asmalign_pot=auto
737 _stream_cache=yes
738 _priority=no
739 def_dos_paths="#define HAVE_DOS_PATHS 0"
740 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
741 def_priority="#undef CONFIG_PRIORITY"
742 def_pthread_cache="#undef PTHREAD_CACHE"
743 _need_shmem=yes
744 for ac_option do
745 case "$ac_option" in
746 --help|-help|-h)
747 show_help
749 --prefix=*)
750 _prefix=$(echo $ac_option | cut -d '=' -f 2)
752 --bindir=*)
753 _bindir=$(echo $ac_option | cut -d '=' -f 2)
755 --datadir=*)
756 _datadir=$(echo $ac_option | cut -d '=' -f 2)
758 --mandir=*)
759 _mandir=$(echo $ac_option | cut -d '=' -f 2)
761 --confdir=*)
762 _confdir=$(echo $ac_option | cut -d '=' -f 2)
764 --libdir=*)
765 _libdir=$(echo $ac_option | cut -d '=' -f 2)
767 --codecsdir=*)
768 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
770 --localedir=*)
771 _localedir=$(echo $ac_option | cut -d '=' -f 2)
774 --with-install=*)
775 _install=$(echo $ac_option | cut -d '=' -f 2 )
777 --with-xvmclib=*)
778 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
781 --with-sdl-config=*)
782 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
784 --with-freetype-config=*)
785 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
787 --with-gtk-config=*)
788 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
790 --with-glib-config=*)
791 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
793 --with-dvdnav-config=*)
794 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
796 --with-dvdread-config=*)
797 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
800 --extra-cflags=*)
801 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
803 --extra-ldflags=*)
804 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
806 --extra-libs=*)
807 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
809 --extra-libs-mplayer=*)
810 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
812 --extra-libs-mencoder=*)
813 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
816 --target=*)
817 _target=$(echo $ac_option | cut -d '=' -f 2)
819 --cc=*)
820 _cc=$(echo $ac_option | cut -d '=' -f 2)
822 --host-cc=*)
823 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
825 --as=*)
826 _as=$(echo $ac_option | cut -d '=' -f 2)
828 --nm=*)
829 _nm=$(echo $ac_option | cut -d '=' -f 2)
831 --yasm=*)
832 _yasm=$(echo $ac_option | cut -d '=' -f 2)
834 --ar=*)
835 _ar=$(echo $ac_option | cut -d '=' -f 2)
837 --ranlib=*)
838 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
840 --windres=*)
841 _windres=$(echo $ac_option | cut -d '=' -f 2)
843 --charset=*)
844 _charset=$(echo $ac_option | cut -d '=' -f 2)
846 --language-doc=*)
847 language_doc=$(echo $ac_option | cut -d '=' -f 2)
849 --language-man=*)
850 language_man=$(echo $ac_option | cut -d '=' -f 2)
852 --language-msg=*)
853 language_msg=$(echo $ac_option | cut -d '=' -f 2)
855 --language=*)
856 language=$(echo $ac_option | cut -d '=' -f 2)
859 --enable-static)
860 _ld_static='-static'
862 --disable-static)
863 _ld_static=''
865 --enable-profile)
866 _profile='-p'
868 --disable-profile)
869 _profile=
871 --enable-debug)
872 _debug='-g'
874 --enable-debug=*)
875 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
877 --disable-debug)
878 _debug=
880 --enable-translation) _translation=yes ;;
881 --disable-translation) _translation=no ;;
882 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
883 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
884 --enable-cross-compile) _cross_compile=yes ;;
885 --disable-cross-compile) _cross_compile=no ;;
886 --enable-mencoder) _mencoder=yes ;;
887 --disable-mencoder) _mencoder=no ;;
888 --enable-mplayer) _mplayer=yes ;;
889 --disable-mplayer) _mplayer=no ;;
890 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
891 --disable-dynamic-plugins) _dynamic_plugins=no ;;
892 --enable-x11) _x11=yes ;;
893 --disable-x11) _x11=no ;;
894 --enable-xshape) _xshape=yes ;;
895 --disable-xshape) _xshape=no ;;
896 --enable-xss) _xss=yes ;;
897 --disable-xss) _xss=no ;;
898 --enable-xv) _xv=yes ;;
899 --disable-xv) _xv=no ;;
900 --enable-xvmc) _xvmc=yes ;;
901 --disable-xvmc) _xvmc=no ;;
902 --enable-vdpau) _vdpau=yes ;;
903 --disable-vdpau) _vdpau=no ;;
904 --enable-sdl) _sdl=yes ;;
905 --disable-sdl) _sdl=no ;;
906 --enable-kva) _kva=yes ;;
907 --disable-kva) _kva=no ;;
908 --enable-direct3d) _direct3d=yes ;;
909 --disable-direct3d) _direct3d=no ;;
910 --enable-directx) _directx=yes ;;
911 --disable-directx) _directx=no ;;
912 --enable-win32waveout) _win32waveout=yes ;;
913 --disable-win32waveout) _win32waveout=no ;;
914 --enable-nas) _nas=yes ;;
915 --disable-nas) _nas=no ;;
916 --enable-png) _png=yes ;;
917 --disable-png) _png=no ;;
918 --enable-mng) _mng=yes ;;
919 --disable-mng) _mng=no ;;
920 --enable-jpeg) _jpeg=yes ;;
921 --disable-jpeg) _jpeg=no ;;
922 --enable-pnm) _pnm=yes ;;
923 --disable-pnm) _pnm=no ;;
924 --enable-md5sum) _md5sum=yes ;;
925 --disable-md5sum) _md5sum=no ;;
926 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
927 --disable-yuv4mpeg) _yuv4mpeg=no ;;
928 --enable-gif) _gif=yes ;;
929 --disable-gif) _gif=no ;;
930 --enable-gl) _gl=yes ;;
931 --disable-gl) _gl=no ;;
932 --enable-matrixview) matrixview=yes ;;
933 --disable-matrixview) matrixview=no ;;
934 --enable-ggi) _ggi=yes ;;
935 --disable-ggi) _ggi=no ;;
936 --enable-ggiwmh) _ggiwmh=yes ;;
937 --disable-ggiwmh) _ggiwmh=no ;;
938 --enable-aa) _aa=yes ;;
939 --disable-aa) _aa=no ;;
940 --enable-caca) _caca=yes ;;
941 --disable-caca) _caca=no ;;
942 --enable-svga) _svga=yes ;;
943 --disable-svga) _svga=no ;;
944 --enable-vesa) _vesa=yes ;;
945 --disable-vesa) _vesa=no ;;
946 --enable-fbdev) _fbdev=yes ;;
947 --disable-fbdev) _fbdev=no ;;
948 --enable-dvb) _dvb=yes ;;
949 --disable-dvb) _dvb=no ;;
950 --enable-dxr2) _dxr2=yes ;;
951 --disable-dxr2) _dxr2=no ;;
952 --enable-dxr3) _dxr3=yes ;;
953 --disable-dxr3) _dxr3=no ;;
954 --enable-ivtv) _ivtv=yes ;;
955 --disable-ivtv) _ivtv=no ;;
956 --enable-v4l2) _v4l2=yes ;;
957 --disable-v4l2) _v4l2=no ;;
958 --enable-iconv) _iconv=yes ;;
959 --disable-iconv) _iconv=no ;;
960 --enable-langinfo) _langinfo=yes ;;
961 --disable-langinfo) _langinfo=no ;;
962 --enable-rtc) _rtc=yes ;;
963 --disable-rtc) _rtc=no ;;
964 --enable-libdv) _libdv=yes ;;
965 --disable-libdv) _libdv=no ;;
966 --enable-ossaudio) _ossaudio=yes ;;
967 --disable-ossaudio) _ossaudio=no ;;
968 --enable-arts) _arts=yes ;;
969 --disable-arts) _arts=no ;;
970 --enable-esd) _esd=yes ;;
971 --disable-esd) _esd=no ;;
972 --enable-pulse) _pulse=yes ;;
973 --disable-pulse) _pulse=no ;;
974 --enable-jack) _jack=yes ;;
975 --disable-jack) _jack=no ;;
976 --enable-openal) _openal=yes ;;
977 --disable-openal) _openal=no ;;
978 --enable-kai) _kai=yes ;;
979 --disable-kai) _kai=no ;;
980 --enable-dart) _dart=yes ;;
981 --disable-dart) _dart=no ;;
982 --enable-mad) _mad=yes ;;
983 --disable-mad) _mad=no ;;
984 --enable-mp3lame) _mp3lame=yes ;;
985 --disable-mp3lame) _mp3lame=no ;;
986 --enable-toolame) _toolame=yes ;;
987 --disable-toolame) _toolame=no ;;
988 --enable-twolame) _twolame=yes ;;
989 --disable-twolame) _twolame=no ;;
990 --enable-libcdio) _libcdio=yes ;;
991 --disable-libcdio) _libcdio=no ;;
992 --enable-liblzo) _liblzo=yes ;;
993 --disable-liblzo) _liblzo=no ;;
994 --enable-libvorbis) _libvorbis=yes ;;
995 --disable-libvorbis) _libvorbis=no ;;
996 --enable-speex) _speex=yes ;;
997 --disable-speex) _speex=no ;;
998 --enable-tremor) _tremor=yes ;;
999 --disable-tremor) _tremor=no ;;
1000 --enable-tremor-internal) _tremor_internal=yes ;;
1001 --disable-tremor-internal) _tremor_internal=no ;;
1002 --enable-tremor-low) _tremor_low=yes ;;
1003 --disable-tremor-low) _tremor_low=no ;;
1004 --enable-theora) _theora=yes ;;
1005 --disable-theora) _theora=no ;;
1006 --enable-mpg123) _mpg123=yes ;;
1007 --disable-mpg123) _mpg123=no ;;
1008 --enable-mp3lib) _mp3lib=yes ;;
1009 --disable-mp3lib) _mp3lib=no ;;
1010 --enable-liba52) _liba52=yes ;;
1011 --disable-liba52) _liba52=no ;;
1012 --enable-libdca) _libdca=yes ;;
1013 --disable-libdca) _libdca=no ;;
1014 --enable-libmpeg2) _libmpeg2=yes ;;
1015 --disable-libmpeg2) _libmpeg2=no ;;
1016 --enable-musepack) _musepack=yes ;;
1017 --disable-musepack) _musepack=no ;;
1018 --enable-faad) _faad=yes ;;
1019 --disable-faad) _faad=no ;;
1020 --enable-faad-internal) _faad_internal=yes ;;
1021 --disable-faad-internal) _faad_internal=no ;;
1022 --enable-faad-fixed) _faad_fixed=yes ;;
1023 --disable-faad-fixed) _faad_fixed=no ;;
1024 --enable-faac) _faac=yes ;;
1025 --disable-faac) _faac=no ;;
1026 --enable-ladspa) _ladspa=yes ;;
1027 --disable-ladspa) _ladspa=no ;;
1028 --enable-libbs2b) _libbs2b=yes ;;
1029 --disable-libbs2b) _libbs2b=no ;;
1030 --enable-xmms) _xmms=yes ;;
1031 --disable-xmms) _xmms=no ;;
1032 --enable-vcd) _vcd=yes ;;
1033 --disable-vcd) _vcd=no ;;
1034 --enable-bluray) _bluray=yes ;;
1035 --disable-bluray) _bluray=no ;;
1036 --enable-dvdread) _dvdread=yes ;;
1037 --disable-dvdread) _dvdread=no ;;
1038 --enable-dvdread-internal) _dvdread_internal=yes ;;
1039 --disable-dvdread-internal) _dvdread_internal=no ;;
1040 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1041 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1042 --enable-dvdnav) _dvdnav=yes ;;
1043 --disable-dvdnav) _dvdnav=no ;;
1044 --enable-xanim) _xanim=yes ;;
1045 --disable-xanim) _xanim=no ;;
1046 --enable-real) _real=yes ;;
1047 --disable-real) _real=no ;;
1048 --enable-live) _live=yes ;;
1049 --disable-live) _live=no ;;
1050 --enable-nemesi) _nemesi=yes ;;
1051 --disable-nemesi) _nemesi=no ;;
1052 --enable-xinerama) _xinerama=yes ;;
1053 --disable-xinerama) _xinerama=no ;;
1054 --enable-mga) _mga=yes ;;
1055 --disable-mga) _mga=no ;;
1056 --enable-xmga) _xmga=yes ;;
1057 --disable-xmga) _xmga=no ;;
1058 --enable-vm) _vm=yes ;;
1059 --disable-vm) _vm=no ;;
1060 --enable-xf86keysym) _xf86keysym=yes ;;
1061 --disable-xf86keysym) _xf86keysym=no ;;
1062 --enable-mlib) _mlib=yes ;;
1063 --disable-mlib) _mlib=no ;;
1064 --enable-sunaudio) _sunaudio=yes ;;
1065 --disable-sunaudio) _sunaudio=no ;;
1066 --enable-sgiaudio) _sgiaudio=yes ;;
1067 --disable-sgiaudio) _sgiaudio=no ;;
1068 --enable-alsa) _alsa=yes ;;
1069 --disable-alsa) _alsa=no ;;
1070 --enable-tv) _tv=yes ;;
1071 --disable-tv) _tv=no ;;
1072 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1073 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1074 --enable-tv-v4l1) _tv_v4l1=yes ;;
1075 --disable-tv-v4l1) _tv_v4l1=no ;;
1076 --enable-tv-v4l2) _tv_v4l2=yes ;;
1077 --disable-tv-v4l2) _tv_v4l2=no ;;
1078 --enable-tv-dshow) _tv_dshow=yes ;;
1079 --disable-tv-dshow) _tv_dshow=no ;;
1080 --enable-radio) _radio=yes ;;
1081 --enable-radio-capture) _radio_capture=yes ;;
1082 --disable-radio-capture) _radio_capture=no ;;
1083 --disable-radio) _radio=no ;;
1084 --enable-radio-v4l) _radio_v4l=yes ;;
1085 --disable-radio-v4l) _radio_v4l=no ;;
1086 --enable-radio-v4l2) _radio_v4l2=yes ;;
1087 --disable-radio-v4l2) _radio_v4l2=no ;;
1088 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1089 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1090 --enable-pvr) _pvr=yes ;;
1091 --disable-pvr) _pvr=no ;;
1092 --enable-fastmemcpy) _fastmemcpy=yes ;;
1093 --disable-fastmemcpy) _fastmemcpy=no ;;
1094 --enable-networking) networking=yes ;;
1095 --disable-networking) networking=no ;;
1096 --enable-winsock2_h) _winsock2_h=yes ;;
1097 --disable-winsock2_h) _winsock2_h=no ;;
1098 --enable-smb) _smb=yes ;;
1099 --disable-smb) _smb=no ;;
1100 --enable-vidix) _vidix=yes ;;
1101 --disable-vidix) _vidix=no ;;
1102 --with-vidix-drivers=*)
1103 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1105 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1106 --enable-dhahelper) _dhahelper=yes ;;
1107 --disable-dhahelper) _dhahelper=no ;;
1108 --enable-svgalib_helper) _svgalib_helper=yes ;;
1109 --disable-svgalib_helper) _svgalib_helper=no ;;
1110 --enable-joystick) _joystick=yes ;;
1111 --disable-joystick) _joystick=no ;;
1112 --enable-xvid) _xvid=yes ;;
1113 --disable-xvid) _xvid=no ;;
1114 --enable-x264) _x264=yes ;;
1115 --disable-x264) _x264=no ;;
1116 --enable-libnut) _libnut=yes ;;
1117 --disable-libnut) _libnut=no ;;
1118 --enable-libavutil) _libavutil=yes ;;
1119 --disable-libavutil) _libavutil=no ;;
1120 --enable-libavcodec) _libavcodec=yes ;;
1121 --disable-libavcodec) _libavcodec=no ;;
1122 --enable-libavformat) _libavformat=yes ;;
1123 --disable-libavformat) _libavformat=no ;;
1124 --enable-libpostproc) _libpostproc=yes ;;
1125 --disable-libpostproc) _libpostproc=no ;;
1126 --enable-libswscale) _libswscale=yes ;;
1127 --disable-libswscale) _libswscale=no ;;
1128 --ffmpeg-source-dir=*)
1129 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1131 --enable-lirc) _lirc=yes ;;
1132 --disable-lirc) _lirc=no ;;
1133 --enable-lircc) _lircc=yes ;;
1134 --disable-lircc) _lircc=no ;;
1135 --enable-apple-remote) _apple_remote=yes ;;
1136 --disable-apple-remote) _apple_remote=no ;;
1137 --enable-apple-ir) _apple_ir=yes ;;
1138 --disable-apple-ir) _apple_ir=no ;;
1139 --enable-gui) _gui=yes ;;
1140 --disable-gui) _gui=no ;;
1141 --enable-gtk1) _gtk1=yes ;;
1142 --disable-gtk1) _gtk1=no ;;
1143 --enable-termcap) _termcap=yes ;;
1144 --disable-termcap) _termcap=no ;;
1145 --enable-termios) _termios=yes ;;
1146 --disable-termios) _termios=no ;;
1147 --enable-3dfx) _3dfx=yes ;;
1148 --disable-3dfx) _3dfx=no ;;
1149 --enable-s3fb) _s3fb=yes ;;
1150 --disable-s3fb) _s3fb=no ;;
1151 --enable-wii) _wii=yes ;;
1152 --disable-wii) _wii=no ;;
1153 --enable-tdfxfb) _tdfxfb=yes ;;
1154 --disable-tdfxfb) _tdfxfb=no ;;
1155 --disable-tdfxvid) _tdfxvid=no ;;
1156 --enable-tdfxvid) _tdfxvid=yes ;;
1157 --disable-xvr100) _xvr100=no ;;
1158 --enable-xvr100) _xvr100=yes ;;
1159 --disable-tga) _tga=no ;;
1160 --enable-tga) _tga=yes ;;
1161 --enable-directfb) _directfb=yes ;;
1162 --disable-directfb) _directfb=no ;;
1163 --enable-zr) _zr=yes ;;
1164 --disable-zr) _zr=no ;;
1165 --enable-bl) _bl=yes ;;
1166 --disable-bl) _bl=no ;;
1167 --enable-mtrr) _mtrr=yes ;;
1168 --disable-mtrr) _mtrr=no ;;
1169 --enable-largefiles) _largefiles=yes ;;
1170 --disable-largefiles) _largefiles=no ;;
1171 --enable-shm) _shm=yes ;;
1172 --disable-shm) _shm=no ;;
1173 --enable-select) _select=yes ;;
1174 --disable-select) _select=no ;;
1175 --enable-cdparanoia) _cdparanoia=yes ;;
1176 --disable-cdparanoia) _cdparanoia=no ;;
1177 --enable-cddb) _cddb=yes ;;
1178 --disable-cddb) _cddb=no ;;
1179 --enable-big-endian) _big_endian=yes ;;
1180 --disable-big-endian) _big_endian=no ;;
1181 --enable-bitmap-font) _bitmap_font=yes ;;
1182 --disable-bitmap-font) _bitmap_font=no ;;
1183 --enable-freetype) _freetype=yes ;;
1184 --disable-freetype) _freetype=no ;;
1185 --enable-fontconfig) _fontconfig=yes ;;
1186 --disable-fontconfig) _fontconfig=no ;;
1187 --enable-unrarexec) _unrar_exec=yes ;;
1188 --disable-unrarexec) _unrar_exec=no ;;
1189 --enable-ftp) _ftp=yes ;;
1190 --disable-ftp) _ftp=no ;;
1191 --enable-vstream) _vstream=yes ;;
1192 --disable-vstream) _vstream=no ;;
1193 --enable-pthreads) _pthreads=yes ;;
1194 --disable-pthreads) _pthreads=no ;;
1195 --enable-w32threads) _w32threads=yes ;;
1196 --disable-w32threads) _w32threads=no ;;
1197 --enable-ass) _ass=yes ;;
1198 --disable-ass) _ass=no ;;
1199 --enable-rpath) _rpath=yes ;;
1200 --disable-rpath) _rpath=no ;;
1202 --enable-fribidi) _fribidi=yes ;;
1203 --disable-fribidi) _fribidi=no ;;
1205 --enable-enca) _enca=yes ;;
1206 --disable-enca) _enca=no ;;
1208 --enable-inet6) _inet6=yes ;;
1209 --disable-inet6) _inet6=no ;;
1211 --enable-gethostbyname2) _gethostbyname2=yes ;;
1212 --disable-gethostbyname2) _gethostbyname2=no ;;
1214 --enable-dga1) _dga1=yes ;;
1215 --disable-dga1) _dga1=no ;;
1216 --enable-dga2) _dga2=yes ;;
1217 --disable-dga2) _dga2=no ;;
1219 --enable-menu) _menu=yes ;;
1220 --disable-menu) _menu=no ;;
1222 --enable-qtx) _qtx=yes ;;
1223 --disable-qtx) _qtx=no ;;
1225 --enable-coreaudio) _coreaudio=yes ;;
1226 --disable-coreaudio) _coreaudio=no ;;
1227 --enable-corevideo) _corevideo=yes ;;
1228 --disable-corevideo) _corevideo=no ;;
1229 --enable-quartz) _quartz=yes ;;
1230 --disable-quartz) _quartz=no ;;
1231 --enable-macosx-finder) _macosx_finder=yes ;;
1232 --disable-macosx-finder) _macosx_finder=no ;;
1233 --enable-macosx-bundle) _macosx_bundle=yes ;;
1234 --disable-macosx-bundle) _macosx_bundle=no ;;
1236 --enable-maemo) _maemo=yes ;;
1237 --disable-maemo) _maemo=no ;;
1239 --enable-sortsub) _sortsub=yes ;;
1240 --disable-sortsub) _sortsub=no ;;
1242 --enable-crash-debug) _crash_debug=yes ;;
1243 --disable-crash-debug) _crash_debug=no ;;
1244 --enable-sighandler) _sighandler=yes ;;
1245 --disable-sighandler) _sighandler=no ;;
1246 --enable-win32dll) _win32dll=yes ;;
1247 --disable-win32dll) _win32dll=no ;;
1249 --enable-sse) _sse=yes ;;
1250 --disable-sse) _sse=no ;;
1251 --enable-sse2) _sse2=yes ;;
1252 --disable-sse2) _sse2=no ;;
1253 --enable-ssse3) _ssse3=yes ;;
1254 --disable-ssse3) _ssse3=no ;;
1255 --enable-mmxext) _mmxext=yes ;;
1256 --disable-mmxext) _mmxext=no ;;
1257 --enable-3dnow) _3dnow=yes ;;
1258 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1259 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1260 --disable-3dnowext) _3dnowext=no ;;
1261 --enable-cmov) _cmov=yes ;;
1262 --disable-cmov) _cmov=no ;;
1263 --enable-fast-cmov) _fast_cmov=yes ;;
1264 --disable-fast-cmov) _fast_cmov=no ;;
1265 --enable-fast-clz) _fast_clz=yes ;;
1266 --disable-fast-clz) _fast_clz=no ;;
1267 --enable-altivec) _altivec=yes ;;
1268 --disable-altivec) _altivec=no ;;
1269 --enable-armv5te) _armv5te=yes ;;
1270 --disable-armv5te) _armv5te=no ;;
1271 --enable-armv6) _armv6=yes ;;
1272 --disable-armv6) _armv6=no ;;
1273 --enable-armv6t2) _armv6t2=yes ;;
1274 --disable-armv6t2) _armv6t2=no ;;
1275 --enable-armvfp) _armvfp=yes ;;
1276 --disable-armvfp) _armvfp=no ;;
1277 --enable-neon) neon=yes ;;
1278 --disable-neon) neon=no ;;
1279 --enable-iwmmxt) _iwmmxt=yes ;;
1280 --disable-iwmmxt) _iwmmxt=no ;;
1281 --enable-mmx) _mmx=yes ;;
1282 --disable-mmx) # 3Dnow! and MMX2 require MMX
1283 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1286 echo "Unknown parameter: $ac_option"
1287 exit 1
1290 esac
1291 done
1293 if test "$_gui" = yes ; then
1294 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1295 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1298 # Atmos: moved this here, to be correct, if --prefix is specified
1299 test -z "$_bindir" && _bindir="$_prefix/bin"
1300 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1301 test -z "$_mandir" && _mandir="$_prefix/share/man"
1302 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1303 test -z "$_libdir" && _libdir="$_prefix/lib"
1304 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1306 # Determine our OS name and CPU architecture
1307 if test -z "$_target" ; then
1308 # OS name
1309 system_name=$(uname -s 2>&1)
1310 case "$system_name" in
1311 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1313 Haiku)
1314 system_name=BeOS
1316 IRIX*)
1317 system_name=IRIX
1319 GNU/kFreeBSD)
1320 system_name=FreeBSD
1322 HP-UX*)
1323 system_name=HP-UX
1325 [cC][yY][gG][wW][iI][nN]*)
1326 system_name=CYGWIN
1328 MINGW32*)
1329 system_name=MINGW32
1331 OS/2*)
1332 system_name=OS/2
1335 system_name="$system_name-UNKNOWN"
1337 esac
1340 # host's CPU/instruction set
1341 host_arch=$(uname -p 2>&1)
1342 case "$host_arch" in
1343 i386|sparc|ppc|alpha|arm|mips|vax)
1345 powerpc) # Darwin returns 'powerpc'
1346 host_arch=ppc
1348 *) # uname -p on Linux returns 'unknown' for the processor type,
1349 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1351 # Maybe uname -m (machine hardware name) returns something we
1352 # recognize.
1354 # x86/x86pc is used by QNX
1355 case "$(uname -m 2>&1)" in
1356 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 ;;
1357 ia64) host_arch=ia64 ;;
1358 macppc|ppc) host_arch=ppc ;;
1359 ppc64) host_arch=ppc64 ;;
1360 alpha) host_arch=alpha ;;
1361 sparc) host_arch=sparc ;;
1362 sparc64) host_arch=sparc64 ;;
1363 parisc*|hppa*|9000*) host_arch=hppa ;;
1364 arm*|zaurus|cats) host_arch=arm ;;
1365 sh3|sh4|sh4a) host_arch=sh ;;
1366 s390) host_arch=s390 ;;
1367 s390x) host_arch=s390x ;;
1368 *mips*) host_arch=mips ;;
1369 vax) host_arch=vax ;;
1370 xtensa*) host_arch=xtensa ;;
1371 *) host_arch=UNKNOWN ;;
1372 esac
1374 esac
1375 else # if test -z "$_target"
1376 system_name=$(echo $_target | cut -d '-' -f 2)
1377 case "$(echo $system_name | tr A-Z a-z)" in
1378 linux) system_name=Linux ;;
1379 freebsd) system_name=FreeBSD ;;
1380 gnu/kfreebsd) system_name=FreeBSD ;;
1381 netbsd) system_name=NetBSD ;;
1382 bsd/os) system_name=BSD/OS ;;
1383 openbsd) system_name=OpenBSD ;;
1384 dragonfly) system_name=DragonFly ;;
1385 sunos) system_name=SunOS ;;
1386 qnx) system_name=QNX ;;
1387 morphos) system_name=MorphOS ;;
1388 amigaos) system_name=AmigaOS ;;
1389 mingw32*) system_name=MINGW32 ;;
1390 esac
1391 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1392 host_arch=$(echo $_target | cut -d '-' -f 1)
1393 if test $(echo $host_arch) != "x86_64" ; then
1394 host_arch=$(echo $host_arch | tr '_' '-')
1398 extra_cflags="-I. $extra_cflags"
1399 _timer=timer-linux.c
1400 _getch=getch2.c
1401 if freebsd ; then
1402 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1403 extra_cflags="$extra_cflags -I/usr/local/include"
1406 if netbsd || dragonfly ; then
1407 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1408 extra_cflags="$extra_cflags -I/usr/pkg/include"
1411 if darwin; then
1412 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1413 _timer=timer-darwin.c
1416 if aix ; then
1417 extra_ldflags="$extra_ldflags -lC"
1420 if irix ; then
1421 _ranlib='ar -r'
1422 elif linux ; then
1423 _ranlib='true'
1426 if win32 ; then
1427 _exesuf=".exe"
1428 extra_cflags="$extra_cflags -fno-common"
1429 # -lwinmm is always needed for osdep/timer-win2.c
1430 extra_ldflags="$extra_ldflags -lwinmm"
1431 _pe_executable=yes
1432 _timer=timer-win2.c
1433 _priority=yes
1434 def_dos_paths="#define HAVE_DOS_PATHS 1"
1435 def_priority="#define CONFIG_PRIORITY 1"
1438 if mingw32 ; then
1439 _getch=getch2-win.c
1440 _need_shmem=no
1443 if amigaos ; then
1444 _select=no
1445 _sighandler=no
1446 _stream_cache=no
1447 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1448 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1451 if qnx ; then
1452 extra_ldflags="$extra_ldflags -lph"
1455 if os2 ; then
1456 _exesuf=".exe"
1457 _getch=getch2-os2.c
1458 _need_shmem=no
1459 _priority=yes
1460 def_dos_paths="#define HAVE_DOS_PATHS 1"
1461 def_priority="#define CONFIG_PRIORITY 1"
1464 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1465 test "$tmpdir" && break
1466 done
1468 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1469 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1471 TMPLOG="config.log"
1472 TMPC="$mplayer_tmpdir/tmp.c"
1473 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1474 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1475 TMPH="$mplayer_tmpdir/tmp.h"
1476 TMPS="$mplayer_tmpdir/tmp.S"
1478 rm -f "$TMPLOG"
1479 echo configuration: $configuration > "$TMPLOG"
1480 echo >> "$TMPLOG"
1483 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1484 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1488 # Checking CC version...
1489 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1490 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1491 echocheck "$_cc version"
1492 cc_vendor=intel
1493 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1494 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1495 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1496 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1497 # TODO verify older icc/ecc compatibility
1498 case $cc_version in
1500 cc_version="v. ?.??, bad"
1501 cc_fail=yes
1503 10.1|11.0|11.1)
1504 cc_version="$cc_version, ok"
1507 cc_version="$cc_version, bad"
1508 cc_fail=yes
1510 esac
1511 echores "$cc_version"
1512 else
1513 for _cc in "$_cc" gcc cc ; do
1514 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1515 if test "$cc_name_tmp" = "gcc"; then
1516 cc_name=$cc_name_tmp
1517 echocheck "$_cc version"
1518 cc_vendor=gnu
1519 cc_version=$($_cc -dumpversion 2>&1)
1520 case $cc_version in
1521 2.96*)
1522 cc_fail=yes
1525 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1526 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1527 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1529 esac
1530 echores "$cc_version"
1531 break
1533 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1534 if test "$cc_name_tmp" = "clang"; then
1535 echocheck "$_cc version"
1536 cc_vendor=clang
1537 cc_version=$($_cc -dumpversion 2>&1)
1538 res_comment="experimental support only"
1539 echores "clang $cc_version"
1540 break
1542 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1543 if test "$cc_name_tmp" = "Sun C"; then
1544 echocheck "$_cc version"
1545 cc_vendor=sun
1546 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1547 res_comment="experimental support only"
1548 echores "Sun C $cc_version"
1549 break
1551 done
1552 fi # icc
1553 test "$cc_fail" = yes && die "unsupported compiler version"
1555 if test -z "$_target" && x86 ; then
1556 cat > $TMPC << EOF
1557 int main(void) {
1558 int test[(int)sizeof(char *)-7];
1559 return 0;
1562 cc_check && host_arch=x86_64 || host_arch=i386
1565 echo "Detected operating system: $system_name"
1566 echo "Detected host architecture: $host_arch"
1568 echocheck "host cc"
1569 test "$_host_cc" || _host_cc=$_cc
1570 echores $_host_cc
1572 echocheck "cross compilation"
1573 if test $_cross_compile = auto ; then
1574 _cross_compile=yes
1575 cflag_check "" && "$TMPEXE" && _cross_compile=no
1577 echores $_cross_compile
1579 if test $_cross_compile = yes; then
1580 tmp_run() {
1581 return 0
1585 # ---
1587 # now that we know what compiler should be used for compilation, try to find
1588 # out which assembler is used by the $_cc compiler
1589 if test "$_as" = auto ; then
1590 _as=$($_cc -print-prog-name=as)
1591 test -z "$_as" && _as=as
1594 if test "$_nm" = auto ; then
1595 _nm=$($_cc -print-prog-name=nm)
1596 test -z "$_nm" && _nm=nm
1599 # XXX: this should be ok..
1600 _cpuinfo="echo"
1602 if test "$_runtime_cpudetection" = no ; then
1604 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1605 # FIXME: Remove the cygwin check once AMD CPUs are supported
1606 if test -r /proc/cpuinfo && ! cygwin; then
1607 # Linux with /proc mounted, extract CPU information from it
1608 _cpuinfo="cat /proc/cpuinfo"
1609 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1610 # FreeBSD with Linux emulation /proc mounted,
1611 # extract CPU information from it
1612 # Don't use it on x86 though, it never reports 3Dnow
1613 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1614 elif darwin && ! x86 ; then
1615 # use hostinfo on Darwin
1616 _cpuinfo="hostinfo"
1617 elif aix; then
1618 # use 'lsattr' on AIX
1619 _cpuinfo="lsattr -E -l proc0 -a type"
1620 elif x86; then
1621 # all other OSes try to extract CPU information from a small helper
1622 # program cpuinfo instead
1623 $_cc -o cpuinfo$_exesuf cpuinfo.c
1624 _cpuinfo="./cpuinfo$_exesuf"
1627 if x86 ; then
1628 # gather more CPU information
1629 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1630 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1631 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1632 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1633 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1635 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1637 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1638 -e s/xmm/sse/ -e s/kni/sse/)
1640 for ext in $pparam ; do
1641 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1642 done
1644 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1645 test $_sse = kernel_check && _mmxext=kernel_check
1647 echocheck "CPU vendor"
1648 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1650 echocheck "CPU type"
1651 echores "$pname"
1654 fi # test "$_runtime_cpudetection" = no
1656 if x86 && test "$_runtime_cpudetection" = no ; then
1657 extcheck() {
1658 if test "$1" = kernel_check ; then
1659 echocheck "kernel support of $2"
1660 cat > $TMPC <<EOF
1661 #include <stdlib.h>
1662 #include <signal.h>
1663 void catch(int sig) { exit(1); }
1664 int main(void) {
1665 signal(SIGILL, catch);
1666 __asm__ volatile ("$3":::"memory"); return 0;
1670 if cc_check && tmp_run ; then
1671 eval _$2=yes
1672 echores "yes"
1673 _optimizing="$_optimizing $2"
1674 return 0
1675 else
1676 eval _$2=no
1677 echores "failed"
1678 echo "It seems that your kernel does not correctly support $2."
1679 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1680 return 1
1683 return 0
1686 extcheck $_mmx "mmx" "emms"
1687 extcheck $_mmxext "mmxext" "sfence"
1688 extcheck $_3dnow "3dnow" "femms"
1689 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1690 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1691 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1692 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1693 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1695 echocheck "mtrr support"
1696 if test "$_mtrr" = kernel_check ; then
1697 _mtrr="yes"
1698 _optimizing="$_optimizing mtrr"
1700 echores "$_mtrr"
1702 if test "$_gcc3_ext" != ""; then
1703 # if we had to disable sse/sse2 because the active kernel does not
1704 # support this instruction set extension, we also have to tell
1705 # gcc3 to not generate sse/sse2 instructions for normal C code
1706 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1712 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1713 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1714 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1715 subarch_all='X86_32 X86_64 PPC64'
1716 case "$host_arch" in
1717 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1718 arch='x86'
1719 subarch='x86_32'
1720 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1721 iproc=486
1722 proc=i486
1725 if test "$_runtime_cpudetection" = no ; then
1726 case "$pvendor" in
1727 AuthenticAMD)
1728 case "$pfamily" in
1729 3) proc=i386 iproc=386 ;;
1730 4) proc=i486 iproc=486 ;;
1731 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1732 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1733 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1734 proc=k6-3
1735 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1736 proc=geode
1737 elif test "$pmodel" -ge 8; then
1738 proc=k6-2
1739 elif test "$pmodel" -ge 6; then
1740 proc=k6
1741 else
1742 proc=i586
1745 6) iproc=686
1746 # It's a bit difficult to determine the correct type of Family 6
1747 # AMD CPUs just from their signature. Instead, we check directly
1748 # whether it supports SSE.
1749 if test "$_sse" = yes; then
1750 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1751 proc=athlon-xp
1752 else
1753 # Again, gcc treats athlon and athlon-tbird similarly.
1754 proc=athlon
1757 15) iproc=686
1758 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1759 # caught and remedied in the optimization tests below.
1760 proc=k8
1763 *) proc=amdfam10 iproc=686
1764 test $_fast_clz = "auto" && _fast_clz=yes
1766 esac
1768 GenuineIntel)
1769 case "$pfamily" in
1770 3) proc=i386 iproc=386 ;;
1771 4) proc=i486 iproc=486 ;;
1772 5) iproc=586
1773 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1774 proc=pentium-mmx # 4 is desktop, 8 is mobile
1775 else
1776 proc=i586
1779 6) iproc=686
1780 if test "$pmodel" -ge 15; then
1781 proc=core2
1782 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1783 proc=pentium-m
1784 elif test "$pmodel" -ge 7; then
1785 proc=pentium3
1786 elif test "$pmodel" -ge 3; then
1787 proc=pentium2
1788 else
1789 proc=i686
1791 test $_fast_clz = "auto" && _fast_clz=yes
1793 15) iproc=686
1794 # A nocona in 32-bit mode has no more capabilities than a prescott.
1795 if test "$pmodel" -ge 3; then
1796 proc=prescott
1797 else
1798 proc=pentium4
1799 test $_fast_clz = "auto" && _fast_clz=yes
1801 test $_fast_cmov = "auto" && _fast_cmov=no
1803 *) proc=prescott iproc=686 ;;
1804 esac
1806 CentaurHauls)
1807 case "$pfamily" in
1808 5) iproc=586
1809 if test "$pmodel" -ge 8; then
1810 proc=winchip2
1811 elif test "$pmodel" -ge 4; then
1812 proc=winchip-c6
1813 else
1814 proc=i586
1817 6) iproc=686
1818 if test "$pmodel" -ge 9; then
1819 proc=c3-2
1820 else
1821 proc=c3
1822 iproc=586
1825 *) proc=i686 iproc=i686 ;;
1826 esac
1828 unknown)
1829 case "$pfamily" in
1830 3) proc=i386 iproc=386 ;;
1831 4) proc=i486 iproc=486 ;;
1832 *) proc=i586 iproc=586 ;;
1833 esac
1836 proc=i586 iproc=586 ;;
1837 esac
1838 test $_fast_clz = "auto" && _fast_clz=no
1839 fi # test "$_runtime_cpudetection" = no
1842 # check that gcc supports our CPU, if not, fall back to earlier ones
1843 # LGB: check -mcpu and -march swithing step by step with enabling
1844 # to fall back till 386.
1846 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1848 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1849 cpuopt=-mtune
1850 else
1851 cpuopt=-mcpu
1854 echocheck "GCC & CPU optimization abilities"
1855 if test "$_runtime_cpudetection" = no ; then
1856 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1857 cflag_check -march=native && proc=native
1859 if test "$proc" = "amdfam10"; then
1860 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1862 if test "$proc" = "k8"; then
1863 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1865 if test "$proc" = "athlon-xp"; then
1866 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1868 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1869 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1871 if test "$proc" = "k6" || test "$proc" = "c3"; then
1872 if ! cflag_check -march=$proc $cpuopt=$proc; then
1873 if cflag_check -march=i586 $cpuopt=i686; then
1874 proc=i586-i686
1875 else
1876 proc=i586
1880 if test "$proc" = "prescott" ; then
1881 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1883 if test "$proc" = "core2" ; then
1884 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1886 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
1887 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1889 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1890 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1892 if test "$proc" = "i586"; then
1893 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1895 if test "$proc" = "i486" ; then
1896 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1898 if test "$proc" = "i386" ; then
1899 cflag_check -march=$proc $cpuopt=$proc || proc=error
1901 if test "$proc" = "error" ; then
1902 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1903 _mcpu=""
1904 _march=""
1905 _optimizing=""
1906 elif test "$proc" = "i586-i686"; then
1907 _march="-march=i586"
1908 _mcpu="$cpuopt=i686"
1909 _optimizing="$proc"
1910 else
1911 _march="-march=$proc"
1912 _mcpu="$cpuopt=$proc"
1913 _optimizing="$proc"
1915 else # if test "$_runtime_cpudetection" = no
1916 _mcpu="$cpuopt=generic"
1917 # at least i486 required, for bswap instruction
1918 _march="-march=i486"
1919 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1920 cflag_check $_mcpu || _mcpu=""
1921 cflag_check $_march $_mcpu || _march=""
1924 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1925 ## autodetected mcpu/march parameters
1926 if test "$_target" ; then
1927 # TODO: it may be a good idea to check GCC and fall back in all cases
1928 if test "$host_arch" = "i586-i686"; then
1929 _march="-march=i586"
1930 _mcpu="$cpuopt=i686"
1931 else
1932 _march="-march=$host_arch"
1933 _mcpu="$cpuopt=$host_arch"
1936 proc="$host_arch"
1938 case "$proc" in
1939 i386) iproc=386 ;;
1940 i486) iproc=486 ;;
1941 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1942 i686|athlon*|pentium*) iproc=686 ;;
1943 *) iproc=586 ;;
1944 esac
1947 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1948 _fast_cmov="yes"
1949 else
1950 _fast_cmov="no"
1952 test $_fast_clz = "auto" && _fast_clz=yes
1954 echores "$proc"
1957 ia64)
1958 arch='ia64'
1959 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1960 iproc='ia64'
1963 x86_64|amd64)
1964 arch='x86'
1965 subarch='x86_64'
1966 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1967 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1968 iproc='x86_64'
1970 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1971 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1972 cpuopt=-mtune
1973 else
1974 cpuopt=-mcpu
1976 if test "$_runtime_cpudetection" = no ; then
1977 case "$pvendor" in
1978 AuthenticAMD)
1979 case "$pfamily" in
1980 15) proc=k8
1981 test $_fast_clz = "auto" && _fast_clz=no
1983 *) proc=amdfam10;;
1984 esac
1986 GenuineIntel)
1987 case "$pfamily" in
1988 6) proc=core2;;
1990 # 64-bit prescotts exist, but as far as GCC is concerned they
1991 # have the same capabilities as a nocona.
1992 proc=nocona
1993 test $_fast_cmov = "auto" && _fast_cmov=no
1994 test $_fast_clz = "auto" && _fast_clz=no
1996 esac
1999 proc=error;;
2000 esac
2001 fi # test "$_runtime_cpudetection" = no
2003 echocheck "GCC & CPU optimization abilities"
2004 # This is a stripped-down version of the i386 fallback.
2005 if test "$_runtime_cpudetection" = no ; then
2006 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
2007 cflag_check -march=native && proc=native
2009 # --- AMD processors ---
2010 if test "$proc" = "amdfam10"; then
2011 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2013 if test "$proc" = "k8"; then
2014 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2016 # This will fail if gcc version < 3.3, which is ok because earlier
2017 # versions don't really support 64-bit on amd64.
2018 # Is this a valid assumption? -Corey
2019 if test "$proc" = "athlon-xp"; then
2020 cflag_check -march=$proc $cpuopt=$proc || proc=error
2022 # --- Intel processors ---
2023 if test "$proc" = "core2"; then
2024 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2026 if test "$proc" = "x86-64"; then
2027 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2029 if test "$proc" = "nocona"; then
2030 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2032 if test "$proc" = "pentium4"; then
2033 cflag_check -march=$proc $cpuopt=$proc || proc=error
2036 _march="-march=$proc"
2037 _mcpu="$cpuopt=$proc"
2038 if test "$proc" = "error" ; then
2039 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2040 _mcpu=""
2041 _march=""
2043 else # if test "$_runtime_cpudetection" = no
2044 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2045 _march="-march=x86-64"
2046 _mcpu="$cpuopt=generic"
2047 cflag_check $_mcpu || _mcpu="x86-64"
2048 cflag_check $_mcpu || _mcpu=""
2049 cflag_check $_march $_mcpu || _march=""
2052 _optimizing="$proc"
2053 test $_fast_cmov = "auto" && _fast_cmov=yes
2054 test $_fast_clz = "auto" && _fast_clz=yes
2056 echores "$proc"
2059 sparc|sparc64)
2060 arch='sparc'
2061 iproc='sparc'
2062 if test "$host_arch" = "sparc64" ; then
2063 _vis='yes'
2064 proc='ultrasparc'
2065 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2066 elif sunos ; then
2067 echocheck "CPU type"
2068 karch=$(uname -m)
2069 case "$(echo $karch)" in
2070 sun4) proc=v7 ;;
2071 sun4c) proc=v7 ;;
2072 sun4d) proc=v8 ;;
2073 sun4m) proc=v8 ;;
2074 sun4u) proc=ultrasparc _vis='yes' ;;
2075 sun4v) proc=v9 ;;
2076 *) proc=v8 ;;
2077 esac
2078 echores "$proc"
2079 else
2080 proc=v8
2082 _mcpu="-mcpu=$proc"
2083 _optimizing="$proc"
2086 arm*)
2087 arch='arm'
2088 iproc='arm'
2091 avr32)
2092 arch='avr32'
2093 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2094 iproc='avr32'
2095 test $_fast_clz = "auto" && _fast_clz=yes
2098 sh|sh4)
2099 arch='sh4'
2100 iproc='sh4'
2103 ppc|ppc64|powerpc|powerpc64)
2104 arch='ppc'
2105 def_dcbzl='#define HAVE_DCBZL 0'
2106 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2107 iproc='ppc'
2109 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2110 subarch='ppc64'
2111 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2113 echocheck "CPU type"
2114 case $system_name in
2115 Linux)
2116 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2117 if test -n "$($_cpuinfo | grep altivec)"; then
2118 test $_altivec = auto && _altivec=yes
2121 Darwin)
2122 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2123 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2124 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2125 test $_altivec = auto && _altivec=yes
2128 NetBSD)
2129 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2130 case $cc_version in
2131 2*|3.0*|3.1*|3.2*|3.3*)
2134 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2135 test $_altivec = auto && _altivec=yes
2138 esac
2140 AIX)
2141 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2143 esac
2144 if test "$_altivec" = yes; then
2145 echores "$proc altivec"
2146 else
2147 _altivec=no
2148 echores "$proc"
2151 echocheck "GCC & CPU optimization abilities"
2153 if test -n "$proc"; then
2154 case "$proc" in
2155 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2156 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2157 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2158 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2159 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2160 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2161 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2162 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2163 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2164 *) ;;
2165 esac
2166 # gcc 3.1(.1) and up supports 7400 and 7450
2167 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2168 case "$proc" in
2169 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2170 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2171 *) ;;
2172 esac
2174 # gcc 3.2 and up supports 970
2175 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2176 case "$proc" in
2177 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2178 def_dcbzl='#define HAVE_DCBZL 1' ;;
2179 *) ;;
2180 esac
2182 # gcc 3.3 and up supports POWER4
2183 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2184 case "$proc" in
2185 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2186 *) ;;
2187 esac
2189 # gcc 3.4 and up supports 440*
2190 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2191 case "$proc" in
2192 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2193 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2194 *) ;;
2195 esac
2197 # gcc 4.0 and up supports POWER5
2198 if test "$_cc_major" -ge "4"; then
2199 case "$proc" in
2200 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2201 *) ;;
2202 esac
2206 if test -n "$_mcpu"; then
2207 _optimizing=$(echo $_mcpu | cut -c 8-)
2208 echores "$_optimizing"
2209 else
2210 echores "none"
2213 test $_fast_clz = "auto" && _fast_clz=yes
2217 alpha*)
2218 arch='alpha'
2219 iproc='alpha'
2220 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2222 echocheck "CPU type"
2223 cat > $TMPC << EOF
2224 int main(void) {
2225 unsigned long ver, mask;
2226 __asm__ ("implver %0" : "=r" (ver));
2227 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2228 printf("%ld-%x\n", ver, ~mask);
2229 return 0;
2232 $_cc -o "$TMPEXE" "$TMPC"
2233 case $("$TMPEXE") in
2235 0-0) proc="ev4"; _mvi="0";;
2236 1-0) proc="ev5"; _mvi="0";;
2237 1-1) proc="ev56"; _mvi="0";;
2238 1-101) proc="pca56"; _mvi="1";;
2239 2-303) proc="ev6"; _mvi="1";;
2240 2-307) proc="ev67"; _mvi="1";;
2241 2-1307) proc="ev68"; _mvi="1";;
2242 esac
2243 echores "$proc"
2245 echocheck "GCC & CPU optimization abilities"
2246 if test "$proc" = "ev68" ; then
2247 cc_check -mcpu=$proc || proc=ev67
2249 if test "$proc" = "ev67" ; then
2250 cc_check -mcpu=$proc || proc=ev6
2252 _mcpu="-mcpu=$proc"
2253 echores "$proc"
2255 test $_fast_clz = "auto" && _fast_clz=yes
2257 _optimizing="$proc"
2260 mips)
2261 arch='mips'
2262 iproc='mips'
2264 if irix ; then
2265 echocheck "CPU type"
2266 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2267 case "$(echo $proc)" in
2268 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2269 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2270 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2271 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2272 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2273 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2274 esac
2275 # gcc < 3.x does not support -mtune.
2276 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2277 _mcpu=''
2279 echores "$proc"
2282 test $_fast_clz = "auto" && _fast_clz=yes
2286 hppa)
2287 arch='pa_risc'
2288 iproc='PA-RISC'
2291 s390)
2292 arch='s390'
2293 iproc='390'
2296 s390x)
2297 arch='s390x'
2298 iproc='390x'
2301 vax)
2302 arch='vax'
2303 iproc='vax'
2306 xtensa)
2307 arch='xtensa'
2308 iproc='xtensa'
2311 generic)
2312 arch='generic'
2316 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2317 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2318 die "unsupported architecture $host_arch"
2320 esac # case "$host_arch" in
2322 if test "$_runtime_cpudetection" = yes ; then
2323 if x86 ; then
2324 test "$_cmov" != no && _cmov=yes
2325 x86_32 && _cmov=no
2326 test "$_mmx" != no && _mmx=yes
2327 test "$_3dnow" != no && _3dnow=yes
2328 test "$_3dnowext" != no && _3dnowext=yes
2329 test "$_mmxext" != no && _mmxext=yes
2330 test "$_sse" != no && _sse=yes
2331 test "$_sse2" != no && _sse2=yes
2332 test "$_ssse3" != no && _ssse3=yes
2333 test "$_mtrr" != no && _mtrr=yes
2335 if ppc; then
2336 _altivec=yes
2341 # endian testing
2342 echocheck "byte order"
2343 if test "$_big_endian" = auto ; then
2344 cat > $TMPC <<EOF
2345 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2346 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2347 int main(void) { return (int)ascii_name; }
2349 if cc_check ; then
2350 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2351 _big_endian=yes
2352 else
2353 _big_endian=no
2355 else
2356 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2359 if test "$_big_endian" = yes ; then
2360 _byte_order='big-endian'
2361 def_words_endian='#define WORDS_BIGENDIAN 1'
2362 def_bigendian='#define HAVE_BIGENDIAN 1'
2363 else
2364 _byte_order='little-endian'
2365 def_words_endian='#undef WORDS_BIGENDIAN'
2366 def_bigendian='#define HAVE_BIGENDIAN 0'
2368 echores "$_byte_order"
2371 echocheck "extern symbol prefix"
2372 cat > $TMPC << EOF
2373 int ff_extern;
2375 cc_check -c || die "Symbol mangling check failed."
2376 sym=$($_nm -P -g $TMPEXE)
2377 extern_prefix=${sym%%ff_extern*}
2378 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2379 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2380 echores $extern_prefix
2383 echocheck "assembler support of -pipe option"
2384 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2385 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2388 echocheck "compiler support of named assembler arguments"
2389 _named_asm_args=yes
2390 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2391 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2392 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2393 _named_asm_args=no
2394 def_named_asm_args="#undef NAMED_ASM_ARGS"
2396 echores $_named_asm_args
2399 if darwin && test "$cc_vendor" = "gnu" ; then
2400 echocheck "GCC support of -mstackrealign"
2401 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2402 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2403 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2404 # wrong code with this flag, but this can be worked around by adding
2405 # -fno-unit-at-a-time as described in the blog post at
2406 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2407 cat > $TMPC << EOF
2408 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2409 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2411 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2412 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2413 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2414 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2415 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2418 # Checking for CFLAGS
2419 _install_strip="-s"
2420 if test "$_profile" != "" || test "$_debug" != "" ; then
2421 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2422 _install_strip=
2423 elif test -z "$CFLAGS" ; then
2424 if test "$cc_vendor" = "intel" ; then
2425 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2426 elif test "$cc_vendor" = "sun" ; then
2427 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2428 elif test "$cc_vendor" != "gnu" ; then
2429 CFLAGS="-O2 $_march $_mcpu $_pipe"
2430 else
2431 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2432 extra_ldflags="$extra_ldflags -ffast-math"
2434 else
2435 warn_cflags=yes
2438 if test "$cc_vendor" = "gnu" ; then
2439 cflag_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2440 cflag_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2441 cflag_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2442 cflag_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2443 cflag_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2444 cflag_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2445 else
2446 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2449 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2450 cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS"
2453 if test -n "$LDFLAGS" ; then
2454 extra_ldflags="$extra_ldflags $LDFLAGS"
2455 warn_cflags=yes
2456 elif test "$cc_vendor" = "intel" ; then
2457 extra_ldflags="$extra_ldflags -i-static"
2459 if test -n "$CPPFLAGS" ; then
2460 extra_cflags="$extra_cflags $CPPFLAGS"
2461 warn_cflags=yes
2466 if x86_32 ; then
2467 # Checking assembler (_as) compatibility...
2468 # Added workaround for older as that reads from stdin by default - atmos
2469 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2470 echocheck "assembler ($_as $as_version)"
2472 _pref_as_version='2.9.1'
2473 echo 'nop' > $TMPS
2474 if test "$_mmx" = yes ; then
2475 echo 'emms' >> $TMPS
2477 if test "$_3dnow" = yes ; then
2478 _pref_as_version='2.10.1'
2479 echo 'femms' >> $TMPS
2481 if test "$_3dnowext" = yes ; then
2482 _pref_as_version='2.10.1'
2483 echo 'pswapd %mm0, %mm0' >> $TMPS
2485 if test "$_mmxext" = yes ; then
2486 _pref_as_version='2.10.1'
2487 echo 'movntq %mm0, (%eax)' >> $TMPS
2489 if test "$_sse" = yes ; then
2490 _pref_as_version='2.10.1'
2491 echo 'xorps %xmm0, %xmm0' >> $TMPS
2493 #if test "$_sse2" = yes ; then
2494 # _pref_as_version='2.11'
2495 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2497 if test "$_cmov" = yes ; then
2498 _pref_as_version='2.10.1'
2499 echo 'cmovb %eax, %ebx' >> $TMPS
2501 if test "$_ssse3" = yes ; then
2502 _pref_as_version='2.16.92'
2503 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2505 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2507 if test "$as_verc_fail" != yes ; then
2508 echores "ok"
2509 else
2510 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2511 echores "failed"
2512 die "obsolete binutils version"
2515 fi #if x86_32
2517 echocheck ".align is a power of two"
2518 if test "$_asmalign_pot" = auto ; then
2519 _asmalign_pot=no
2520 cat > $TMPC << EOF
2521 int main(void) { __asm__ (".align 3"); return 0; }
2523 cc_check && _asmalign_pot=yes
2525 if test "$_asmalign_pot" = "yes" ; then
2526 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2527 else
2528 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2530 echores $_asmalign_pot
2533 echocheck "PIC"
2534 pic=no
2535 cat > $TMPC << EOF
2536 int main(void) {
2537 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2538 #error PIC not enabled
2539 #endif
2540 return 0;
2543 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2544 echores $pic
2547 if x86 ; then
2548 echocheck "10 assembler operands"
2549 ten_operands=no
2550 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2551 cat > $TMPC << EOF
2552 int main(void) {
2553 int x=0;
2554 __asm__ volatile(
2556 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2558 return 0;
2561 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2562 echores $ten_operands
2564 echocheck "ebx availability"
2565 ebx_available=no
2566 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2567 cat > $TMPC << EOF
2568 int main(void) {
2569 int x;
2570 __asm__ volatile(
2571 "xor %0, %0"
2572 :"=b"(x)
2573 // just adding ebx to clobber list seems unreliable with some
2574 // compilers, e.g. Haiku's gcc 2.95
2576 // and the above check does not work for OSX 64 bit...
2577 __asm__ volatile("":::"%ebx");
2578 return 0;
2581 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2582 echores $ebx_available
2585 echocheck "yasm"
2586 if test -z "$YASMFLAGS" ; then
2587 if darwin ; then
2588 x86_64 && objformat="macho64" || objformat="macho"
2589 elif win32 ; then
2590 objformat="win32"
2591 else
2592 objformat="elf"
2594 # currently tested for Linux x86, x86_64
2595 YASMFLAGS="-f $objformat"
2596 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2597 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2598 case "$objformat" in
2599 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2600 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2601 esac
2602 else
2603 warn_cflags=yes
2606 echo "pabsw xmm0, xmm0" > $TMPS
2607 yasm_check || _yasm=""
2608 if test $_yasm ; then
2609 def_yasm='#define HAVE_YASM 1'
2610 have_yasm="yes"
2611 echores "$_yasm"
2612 else
2613 def_yasm='#define HAVE_YASM 0'
2614 have_yasm="no"
2615 echores "no"
2618 echocheck "bswap"
2619 def_bswap='#define HAVE_BSWAP 0'
2620 echo 'bswap %eax' > $TMPS
2621 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2622 echores "$bswap"
2623 fi #if x86
2626 #FIXME: This should happen before the check for CFLAGS..
2627 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2628 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2630 # check if AltiVec is supported by the compiler, and how to enable it
2631 echocheck "GCC AltiVec flags"
2632 if $(cflag_check -maltivec -mabi=altivec) ; then
2633 _altivec_gcc_flags="-maltivec -mabi=altivec"
2634 # check if <altivec.h> should be included
2635 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2636 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2637 inc_altivec_h='#include <altivec.h>'
2638 else
2639 if $(cflag_check -faltivec) ; then
2640 _altivec_gcc_flags="-faltivec"
2641 else
2642 _altivec=no
2643 _altivec_gcc_flags="none, AltiVec disabled"
2647 echores "$_altivec_gcc_flags"
2649 # check if the compiler supports braces for vector declarations
2650 cat > $TMPC << EOF
2651 $inc_altivec_h
2652 int main(void) { (vector int) {1}; return 0; }
2654 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2656 # Disable runtime cpudetection if we cannot generate AltiVec code or
2657 # AltiVec is disabled by the user.
2658 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2659 && _runtime_cpudetection=no
2661 # Show that we are optimizing for AltiVec (if enabled and supported).
2662 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2663 && _optimizing="$_optimizing altivec"
2665 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2666 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2669 if ppc ; then
2670 def_xform_asm='#define HAVE_XFORM_ASM 0'
2671 xform_asm=no
2672 echocheck "XFORM ASM support"
2673 cat > $TMPC << EOF
2674 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2676 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2677 echores "$xform_asm"
2680 if arm ; then
2681 echocheck "ARM pld instruction"
2682 cat > $TMPC << EOF
2683 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2685 pld=no
2686 cc_check && pld=yes
2687 echores "$pld"
2689 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2690 if test $_armv5te = "auto" ; then
2691 cat > $TMPC << EOF
2692 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2694 _armv5te=no
2695 cc_check && _armv5te=yes
2697 echores "$_armv5te"
2699 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2701 echocheck "ARMv6 (SIMD instructions)"
2702 if test $_armv6 = "auto" ; then
2703 cat > $TMPC << EOF
2704 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2706 _armv6=no
2707 cc_check && _armv6=yes
2709 echores "$_armv6"
2711 echocheck "ARMv6t2 (SIMD instructions)"
2712 if test $_armv6t2 = "auto" ; then
2713 cat > $TMPC << EOF
2714 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2716 _armv6t2=no
2717 cc_check && _armv6t2=yes
2719 echores "$_armv6"
2721 echocheck "ARM VFP"
2722 if test $_armvfp = "auto" ; then
2723 cat > $TMPC << EOF
2724 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2726 _armvfp=no
2727 cc_check && _armvfp=yes
2729 echores "$_armvfp"
2731 echocheck "ARM NEON"
2732 if test $neon = "auto" ; then
2733 cat > $TMPC << EOF
2734 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2736 neon=no
2737 cc_check && neon=yes
2739 echores "$neon"
2741 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2742 if test $_iwmmxt = "auto" ; then
2743 cat > $TMPC << EOF
2744 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2746 _iwmmxt=no
2747 cc_check && _iwmmxt=yes
2749 echores "$_iwmmxt"
2752 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'
2753 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2754 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2755 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2756 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2757 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2758 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2759 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2760 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2761 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2762 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2763 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2764 test "$pld" = yes && cpuexts="PLD $cpuexts"
2765 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2766 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2767 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2768 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2769 test "$neon" = yes && cpuexts="NEON $cpuexts"
2770 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2771 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2772 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2774 # Checking kernel version...
2775 if x86_32 && linux ; then
2776 _k_verc_problem=no
2777 kernel_version=$(uname -r 2>&1)
2778 echocheck "$system_name kernel version"
2779 case "$kernel_version" in
2780 '') kernel_version="?.??"; _k_verc_fail=yes;;
2781 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2782 _k_verc_problem=yes;;
2783 esac
2784 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2785 _k_verc_fail=yes
2787 if test "$_k_verc_fail" ; then
2788 echores "$kernel_version, fail"
2789 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2790 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2791 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2792 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2793 echo "2.2.x you must upgrade it to get SSE support!"
2794 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2795 else
2796 echores "$kernel_version, ok"
2800 ######################
2801 # MAIN TESTS GO HERE #
2802 ######################
2805 echocheck "-lposix"
2806 if cflag_check -lposix ; then
2807 extra_ldflags="$extra_ldflags -lposix"
2808 echores "yes"
2809 else
2810 echores "no"
2813 echocheck "-lm"
2814 if cflag_check -lm ; then
2815 _ld_lm="-lm"
2816 echores "yes"
2817 else
2818 _ld_lm=""
2819 echores "no"
2823 echocheck "langinfo"
2824 if test "$_langinfo" = auto ; then
2825 cat > $TMPC <<EOF
2826 #include <langinfo.h>
2827 int main(void) { nl_langinfo(CODESET); return 0; }
2829 _langinfo=no
2830 cc_check && _langinfo=yes
2832 if test "$_langinfo" = yes ; then
2833 def_langinfo='#define HAVE_LANGINFO 1'
2834 else
2835 def_langinfo='#undef HAVE_LANGINFO'
2837 echores "$_langinfo"
2840 echocheck "translation support"
2841 if test "$_translation" = yes; then
2842 def_translation="#define CONFIG_TRANSLATION 1"
2843 else
2844 def_translation="#undef CONFIG_TRANSLATION"
2846 echores "$_translation"
2848 echocheck "language"
2849 # Set preferred languages, "all" uses English as main language.
2850 test -z "$language" && language=$LINGUAS
2851 test -z "$language_doc" && language_doc=$language
2852 test -z "$language_man" && language_man=$language
2853 test -z "$language_msg" && language_msg="all"
2854 language_doc=$(echo $language_doc | tr , " ")
2855 language_man=$(echo $language_man | tr , " ")
2856 language_msg=$(echo $language_msg | tr , " ")
2858 test "$language_doc" = "all" && language_doc=$doc_lang_all
2859 test "$language_man" = "all" && language_man=$man_lang_all
2860 test "$language_msg" = "all" && language_msg=$msg_lang_all
2862 if test "$_translation" != yes ; then
2863 language_msg=""
2866 # Prune non-existing translations from language lists.
2867 # Set message translation to the first available language.
2868 # Fall back on English.
2869 for lang in $language_doc ; do
2870 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2871 done
2872 language_doc=$tmp_language_doc
2873 test -z "$language_doc" && language_doc=en
2875 for lang in $language_man ; do
2876 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2877 done
2878 language_man=$tmp_language_man
2879 test -z "$language_man" && language_man=en
2881 for lang in $language_msg ; do
2882 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2883 done
2884 language_msg=$tmp_language_msg
2886 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2889 echocheck "enable sighandler"
2890 if test "$_sighandler" = yes ; then
2891 def_sighandler='#define CONFIG_SIGHANDLER 1'
2892 else
2893 def_sighandler='#undef CONFIG_SIGHANDLER'
2895 echores "$_sighandler"
2897 echocheck "runtime cpudetection"
2898 if test "$_runtime_cpudetection" = yes ; then
2899 _optimizing="Runtime CPU-Detection enabled"
2900 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2901 else
2902 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2904 echores "$_runtime_cpudetection"
2907 echocheck "restrict keyword"
2908 for restrict_keyword in restrict __restrict __restrict__ ; do
2909 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2910 if cc_check; then
2911 def_restrict_keyword=$restrict_keyword
2912 break;
2914 done
2915 if [ -n "$def_restrict_keyword" ]; then
2916 echores "$def_restrict_keyword"
2917 else
2918 echores "none"
2920 # Avoid infinite recursion loop ("#define restrict restrict")
2921 if [ "$def_restrict_keyword" != "restrict" ]; then
2922 def_restrict_keyword="#define restrict $def_restrict_keyword"
2923 else
2924 def_restrict_keyword=""
2928 echocheck "__builtin_expect"
2929 # GCC branch prediction hint
2930 cat > $TMPC << EOF
2931 int foo(int a) {
2932 a = __builtin_expect(a, 10);
2933 return a == 10 ? 0 : 1;
2935 int main(void) { return foo(10) && foo(0); }
2937 _builtin_expect=no
2938 cc_check && _builtin_expect=yes
2939 if test "$_builtin_expect" = yes ; then
2940 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2941 else
2942 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2944 echores "$_builtin_expect"
2947 echocheck "kstat"
2948 cat > $TMPC << EOF
2949 #include <kstat.h>
2950 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2952 _kstat=no
2953 cc_check -lkstat && _kstat=yes
2954 if test "$_kstat" = yes ; then
2955 def_kstat="#define HAVE_LIBKSTAT 1"
2956 extra_ldflags="$extra_ldflags -lkstat"
2957 else
2958 def_kstat="#undef HAVE_LIBKSTAT"
2960 echores "$_kstat"
2963 echocheck "posix4"
2964 # required for nanosleep on some systems
2965 cat > $TMPC << EOF
2966 #include <time.h>
2967 int main(void) { (void) nanosleep(0, 0); return 0; }
2969 _posix4=no
2970 cc_check -lposix4 && _posix4=yes
2971 if test "$_posix4" = yes ; then
2972 extra_ldflags="$extra_ldflags -lposix4"
2974 echores "$_posix4"
2976 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2977 echocheck $func
2978 cat > $TMPC << EOF
2979 #include <math.h>
2980 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2982 eval _$func=no
2983 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2984 if eval test "x\$_$func" = "xyes"; then
2985 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2986 echores yes
2987 else
2988 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2989 echores no
2991 done
2994 echocheck "mkstemp"
2995 cat > $TMPC << EOF
2996 #include <stdlib.h>
2997 int main(void) { char a; mkstemp(&a); return 0; }
2999 _mkstemp=no
3000 cc_check && _mkstemp=yes
3001 if test "$_mkstemp" = yes ; then
3002 def_mkstemp='#define HAVE_MKSTEMP 1'
3003 else
3004 def_mkstemp='#undef HAVE_MKSTEMP'
3006 echores "$_mkstemp"
3009 echocheck "nanosleep"
3010 # also check for nanosleep
3011 cat > $TMPC << EOF
3012 #include <time.h>
3013 int main(void) { (void) nanosleep(0, 0); return 0; }
3015 _nanosleep=no
3016 cc_check && _nanosleep=yes
3017 if test "$_nanosleep" = yes ; then
3018 def_nanosleep='#define HAVE_NANOSLEEP 1'
3019 else
3020 def_nanosleep='#undef HAVE_NANOSLEEP'
3022 echores "$_nanosleep"
3025 echocheck "socklib"
3026 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3027 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3028 cat > $TMPC << EOF
3029 #include <netdb.h>
3030 #include <sys/socket.h>
3031 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3033 _socklib=no
3034 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3035 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3036 done
3037 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3038 if test $_winsock2_h = auto ; then
3039 _winsock2_h=no
3040 cat > $TMPC << EOF
3041 #include <winsock2.h>
3042 int main(void) { (void) gethostbyname(0); return 0; }
3044 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3046 test "$_ld_sock" && res_comment="using $_ld_sock"
3047 echores "$_socklib"
3050 if test $_winsock2_h = yes ; then
3051 _ld_sock="-lws2_32"
3052 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3053 else
3054 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3058 echocheck "arpa/inet.h"
3059 arpa_inet_h=no
3060 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3061 header_check arpa/inet.h && arpa_inet_h=yes &&
3062 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3063 echores "$arpa_inet_h"
3066 echocheck "inet_pton()"
3067 def_inet_pton='#define HAVE_INET_PTON 0'
3068 inet_pton=no
3069 cat > $TMPC << EOF
3070 #include <sys/types.h>
3071 #include <sys/socket.h>
3072 #include <arpa/inet.h>
3073 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3075 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3076 cc_check $_ld_tmp && inet_pton=yes && break
3077 done
3078 if test $inet_pton = yes ; then
3079 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3080 def_inet_pton='#define HAVE_INET_PTON 1'
3082 echores "$inet_pton"
3085 echocheck "inet_aton()"
3086 def_inet_aton='#define HAVE_INET_ATON 0'
3087 inet_aton=no
3088 cat > $TMPC << EOF
3089 #include <sys/types.h>
3090 #include <sys/socket.h>
3091 #include <arpa/inet.h>
3092 int main(void) { (void) inet_aton(0, 0); return 0; }
3094 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3095 cc_check $_ld_tmp && inet_aton=yes && break
3096 done
3097 if test $inet_aton = yes ; then
3098 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3099 def_inet_aton='#define HAVE_INET_ATON 1'
3101 echores "$inet_aton"
3104 echocheck "socklen_t"
3105 _socklen_t=no
3106 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3107 cat > $TMPC << EOF
3108 #include <$header>
3109 int main(void) { socklen_t v = 0; return v; }
3111 cc_check && _socklen_t=yes && break
3112 done
3113 if test "$_socklen_t" = yes ; then
3114 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3115 else
3116 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3118 echores "$_socklen_t"
3121 echocheck "closesocket()"
3122 _closesocket=no
3123 cat > $TMPC << EOF
3124 #include <winsock2.h>
3125 int main(void) { closesocket(~0); return 0; }
3127 cc_check $_ld_sock && _closesocket=yes
3128 if test "$_closesocket" = yes ; then
3129 def_closesocket='#define HAVE_CLOSESOCKET 1'
3130 else
3131 def_closesocket='#define HAVE_CLOSESOCKET 0'
3133 echores "$_closesocket"
3136 echocheck "networking"
3137 test $_winsock2_h = no && test $inet_pton = no &&
3138 test $inet_aton = no && networking=no
3139 if test "$networking" = yes ; then
3140 def_network='#define CONFIG_NETWORK 1'
3141 def_networking='#define CONFIG_NETWORKING 1'
3142 extra_ldflags="$extra_ldflags $_ld_sock"
3143 inputmodules="networking $inputmodules"
3144 else
3145 noinputmodules="networking $noinputmodules"
3146 def_network='#undef CONFIG_NETWORK'
3147 def_networking='#undef CONFIG_NETWORKING'
3148 _ftp=no
3150 echores "$networking"
3153 echocheck "inet6"
3154 if test "$_inet6" = auto ; then
3155 cat > $TMPC << EOF
3156 #include <sys/types.h>
3157 #if !defined(_WIN32) || defined(__CYGWIN__)
3158 #include <sys/socket.h>
3159 #include <netinet/in.h>
3160 #else
3161 #include <ws2tcpip.h>
3162 #endif
3163 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3165 _inet6=no
3166 if cc_check $_ld_sock ; then
3167 _inet6=yes
3170 if test "$_inet6" = yes ; then
3171 def_inet6='#define HAVE_AF_INET6 1'
3172 else
3173 def_inet6='#undef HAVE_AF_INET6'
3175 echores "$_inet6"
3178 echocheck "gethostbyname2"
3179 if test "$_gethostbyname2" = auto ; then
3180 cat > $TMPC << EOF
3181 #include <sys/types.h>
3182 #include <sys/socket.h>
3183 #include <netdb.h>
3184 int main(void) { gethostbyname2("", AF_INET); return 0; }
3186 _gethostbyname2=no
3187 if cc_check ; then
3188 _gethostbyname2=yes
3191 if test "$_gethostbyname2" = yes ; then
3192 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3193 else
3194 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3196 echores "$_gethostbyname2"
3199 echocheck "inttypes.h (required)"
3200 _inttypes=no
3201 header_check inttypes.h && _inttypes=yes
3202 echores "$_inttypes"
3204 if test "$_inttypes" = no ; then
3205 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3206 header_check sys/bitypes.h && _inttypes=yes
3207 if test "$_inttypes" = yes ; then
3208 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."
3209 else
3210 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3215 echocheck "int_fastXY_t in inttypes.h"
3216 cat > $TMPC << EOF
3217 #include <inttypes.h>
3218 int main(void) {
3219 volatile int_fast16_t v= 0;
3220 return v; }
3222 _fast_inttypes=no
3223 cc_check && _fast_inttypes=yes
3224 if test "$_fast_inttypes" = no ; then
3225 def_fast_inttypes='
3226 typedef signed char int_fast8_t;
3227 typedef signed int int_fast16_t;
3228 typedef signed int int_fast32_t;
3229 typedef signed long long int_fast64_t;
3230 typedef unsigned char uint_fast8_t;
3231 typedef unsigned int uint_fast16_t;
3232 typedef unsigned int uint_fast32_t;
3233 typedef unsigned long long uint_fast64_t;'
3235 echores "$_fast_inttypes"
3238 echocheck "malloc.h"
3239 _malloc=no
3240 header_check malloc.h && _malloc=yes
3241 if test "$_malloc" = yes ; then
3242 def_malloc_h='#define HAVE_MALLOC_H 1'
3243 else
3244 def_malloc_h='#define HAVE_MALLOC_H 0'
3246 echores "$_malloc"
3249 echocheck "memalign()"
3250 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3251 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3252 cat > $TMPC << EOF
3253 #include <malloc.h>
3254 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3256 _memalign=no
3257 cc_check && _memalign=yes
3258 if test "$_memalign" = yes ; then
3259 def_memalign='#define HAVE_MEMALIGN 1'
3260 else
3261 def_memalign='#define HAVE_MEMALIGN 0'
3262 def_map_memalign='#define memalign(a,b) malloc(b)'
3263 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3265 echores "$_memalign"
3268 echocheck "posix_memalign()"
3269 posix_memalign=no
3270 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3271 cat > $TMPC << EOF
3272 #define _XOPEN_SOURCE 600
3273 #include <stdlib.h>
3274 int main(void) { posix_memalign(NULL, 0, 0); }
3276 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3277 echores "$posix_memalign"
3280 echocheck "alloca.h"
3281 cat > $TMPC << EOF
3282 #include <alloca.h>
3283 int main(void) { (void) alloca(0); return 0; }
3285 _alloca=no
3286 cc_check && _alloca=yes
3287 if cc_check ; then
3288 def_alloca_h='#define HAVE_ALLOCA_H 1'
3289 else
3290 def_alloca_h='#undef HAVE_ALLOCA_H'
3292 echores "$_alloca"
3295 echocheck "fastmemcpy"
3296 if test "$_fastmemcpy" = yes ; then
3297 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3298 else
3299 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3301 echores "$_fastmemcpy"
3304 echocheck "mman.h"
3305 cat > $TMPC << EOF
3306 #include <sys/types.h>
3307 #include <sys/mman.h>
3308 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3310 _mman=no
3311 cc_check && _mman=yes
3312 if test "$_mman" = yes ; then
3313 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3314 else
3315 def_mman_h='#undef HAVE_SYS_MMAN_H'
3316 os2 && _need_mmap=yes
3318 echores "$_mman"
3320 cat > $TMPC << EOF
3321 #include <sys/types.h>
3322 #include <sys/mman.h>
3323 int main(void) { void *p = MAP_FAILED; return 0; }
3325 _mman_has_map_failed=no
3326 cc_check && _mman_has_map_failed=yes
3327 if test "$_mman_has_map_failed" = yes ; then
3328 def_mman_has_map_failed=''
3329 else
3330 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3333 echocheck "dynamic loader"
3334 cat > $TMPC << EOF
3335 #include <stddef.h>
3336 #include <dlfcn.h>
3337 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3339 _dl=no
3340 for _ld_tmp in "" "-ldl" ; do
3341 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3342 done
3343 if test "$_dl" = yes ; then
3344 def_dl='#define HAVE_LIBDL 1'
3345 else
3346 def_dl='#undef HAVE_LIBDL'
3348 echores "$_dl"
3351 echocheck "dynamic a/v plugins support"
3352 if test "$_dl" = no ; then
3353 _dynamic_plugins=no
3355 if test "$_dynamic_plugins" = yes ; then
3356 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3357 else
3358 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3360 echores "$_dynamic_plugins"
3363 def_threads='#define HAVE_THREADS 0'
3365 echocheck "pthread"
3366 if linux ; then
3367 THREAD_CFLAGS=-D_REENTRANT
3368 elif freebsd || netbsd || openbsd || bsdos ; then
3369 THREAD_CFLAGS=-D_THREAD_SAFE
3371 if test "$_pthreads" = auto ; then
3372 cat > $TMPC << EOF
3373 #include <pthread.h>
3374 void* func(void *arg) { return arg; }
3375 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3377 _pthreads=no
3378 if ! hpux ; then
3379 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3380 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3381 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3382 done
3385 if test "$_pthreads" = yes ; then
3386 test $_ld_pthread && res_comment="using $_ld_pthread"
3387 def_pthreads='#define HAVE_PTHREADS 1'
3388 def_threads='#define HAVE_THREADS 1'
3389 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3390 else
3391 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3392 def_pthreads='#undef HAVE_PTHREADS'
3393 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3394 mingw32 || _win32dll=no
3396 echores "$_pthreads"
3398 if cygwin ; then
3399 if test "$_pthreads" = yes ; then
3400 def_pthread_cache="#define PTHREAD_CACHE 1"
3401 else
3402 _stream_cache=no
3403 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3407 echocheck "w32threads"
3408 if test "$_pthreads" = yes ; then
3409 res_comment="using pthread instead"
3410 _w32threads=no
3412 if test "$_w32threads" = auto ; then
3413 _w32threads=no
3414 mingw32 && _w32threads=yes
3416 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3417 echores "$_w32threads"
3419 echocheck "rpath"
3420 netbsd &&_rpath=yes
3421 if test "$_rpath" = yes ; then
3422 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3423 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3424 done
3425 extra_ldflags=$tmp
3427 echores "$_rpath"
3429 echocheck "iconv"
3430 if test "$_iconv" = auto ; then
3431 cat > $TMPC << EOF
3432 #include <stdio.h>
3433 #include <unistd.h>
3434 #include <iconv.h>
3435 #define INBUFSIZE 1024
3436 #define OUTBUFSIZE 4096
3438 char inbuffer[INBUFSIZE];
3439 char outbuffer[OUTBUFSIZE];
3441 int main(void) {
3442 size_t numread;
3443 iconv_t icdsc;
3444 char *tocode="UTF-8";
3445 char *fromcode="cp1250";
3446 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3447 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3448 char *iptr=inbuffer;
3449 char *optr=outbuffer;
3450 size_t inleft=numread;
3451 size_t outleft=OUTBUFSIZE;
3452 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3453 != (size_t)(-1)) {
3454 write(1, outbuffer, OUTBUFSIZE - outleft);
3457 if (iconv_close(icdsc) == -1)
3460 return 0;
3463 _iconv=no
3464 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3465 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3466 _iconv=yes && break
3467 done
3469 if test "$_iconv" = yes ; then
3470 def_iconv='#define CONFIG_ICONV 1'
3471 else
3472 def_iconv='#undef CONFIG_ICONV'
3474 echores "$_iconv"
3477 echocheck "soundcard.h"
3478 _soundcard_h=no
3479 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3480 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3481 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3482 header_check $_soundcard_header && _soundcard_h=yes &&
3483 res_comment="$_soundcard_header" && break
3484 done
3486 if test "$_soundcard_h" = yes ; then
3487 if test $_soundcard_header = "sys/soundcard.h"; then
3488 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3489 else
3490 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3493 echores "$_soundcard_h"
3496 echocheck "sys/dvdio.h"
3497 _dvdio=no
3498 header_check sys/dvdio.h && _dvdio=yes
3499 if test "$_dvdio" = yes ; then
3500 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3501 else
3502 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3504 echores "$_dvdio"
3507 echocheck "sys/cdio.h"
3508 _cdio=no
3509 # at least OpenSolaris has a broken cdio.h
3510 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3511 if test "$_cdio" = yes ; then
3512 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3513 else
3514 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3516 echores "$_cdio"
3519 echocheck "linux/cdrom.h"
3520 _cdrom=no
3521 header_check linux/cdrom.h && _cdrom=yes
3522 if test "$_cdrom" = yes ; then
3523 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3524 else
3525 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3527 echores "$_cdrom"
3530 echocheck "dvd.h"
3531 _dvd=no
3532 header_check dvd.h && _dvd=yes
3533 if test "$_dvd" = yes ; then
3534 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3535 else
3536 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3538 echores "$_dvd"
3541 if bsdos; then
3542 echocheck "BSDI dvd.h"
3543 _bsdi_dvd=no
3544 header_check dvd.h && _bsdi_dvd=yes
3545 if test "$_bsdi_dvd" = yes ; then
3546 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3547 else
3548 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3550 echores "$_bsdi_dvd"
3551 fi #if bsdos
3554 if hpux; then
3555 # also used by AIX, but AIX does not support VCD and/or libdvdread
3556 echocheck "HP-UX SCSI header"
3557 _hpux_scsi_h=no
3558 header_check sys/scsi.h && _hpux_scsi_h=yes
3559 if test "$_hpux_scsi_h" = yes ; then
3560 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3561 else
3562 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3564 echores "$_hpux_scsi_h"
3565 fi #if hpux
3568 if sunos; then
3569 echocheck "userspace SCSI headers (Solaris)"
3570 _sol_scsi_h=no
3571 header_check sys/scsi/scsi_types.h &&
3572 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3573 _sol_scsi_h=yes
3574 if test "$_sol_scsi_h" = yes ; then
3575 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3576 else
3577 def_sol_scsi_h='#undef SOLARIS_USCSI'
3579 echores "$_sol_scsi_h"
3580 fi #if sunos
3583 echocheck "termcap"
3584 if test "$_termcap" = auto ; then
3585 cat > $TMPC <<EOF
3586 #include <stddef.h>
3587 #include <term.h>
3588 int main(void) { tgetent(NULL, NULL); return 0; }
3590 _termcap=no
3591 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3592 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3593 && _termcap=yes && break
3594 done
3596 if test "$_termcap" = yes ; then
3597 def_termcap='#define HAVE_TERMCAP 1'
3598 test $_ld_tmp && res_comment="using $_ld_tmp"
3599 else
3600 def_termcap='#undef HAVE_TERMCAP'
3602 echores "$_termcap"
3605 echocheck "termios"
3606 def_termios='#undef HAVE_TERMIOS'
3607 def_termios_h='#undef HAVE_TERMIOS_H'
3608 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3609 if test "$_termios" = auto ; then
3610 _termios=no
3611 for _termios_header in "termios.h" "sys/termios.h"; do
3612 header_check $_termios_header && _termios=yes &&
3613 res_comment="using $_termios_header" && break
3614 done
3617 if test "$_termios" = yes ; then
3618 def_termios='#define HAVE_TERMIOS 1'
3619 if test "$_termios_header" = "termios.h" ; then
3620 def_termios_h='#define HAVE_TERMIOS_H 1'
3621 else
3622 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3625 echores "$_termios"
3628 echocheck "shm"
3629 if test "$_shm" = auto ; then
3630 cat > $TMPC << EOF
3631 #include <sys/types.h>
3632 #include <sys/shm.h>
3633 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3635 _shm=no
3636 cc_check && _shm=yes
3638 if test "$_shm" = yes ; then
3639 def_shm='#define HAVE_SHM 1'
3640 else
3641 def_shm='#undef HAVE_SHM'
3643 echores "$_shm"
3646 echocheck "strsep()"
3647 cat > $TMPC << EOF
3648 #include <string.h>
3649 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3651 _strsep=no
3652 cc_check && _strsep=yes
3653 if test "$_strsep" = yes ; then
3654 def_strsep='#define HAVE_STRSEP 1'
3655 _need_strsep=no
3656 else
3657 def_strsep='#undef HAVE_STRSEP'
3658 _need_strsep=yes
3660 echores "$_strsep"
3663 echocheck "vsscanf()"
3664 cat > $TMPC << EOF
3665 #define _ISOC99_SOURCE
3666 #include <stdarg.h>
3667 #include <stdio.h>
3668 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3670 _vsscanf=no
3671 cc_check && _vsscanf=yes
3672 if test "$_vsscanf" = yes ; then
3673 def_vsscanf='#define HAVE_VSSCANF 1'
3674 _need_vsscanf=no
3675 else
3676 def_vsscanf='#undef HAVE_VSSCANF'
3677 _need_vsscanf=yes
3679 echores "$_vsscanf"
3682 echocheck "swab()"
3683 cat > $TMPC << EOF
3684 #define _XOPEN_SOURCE 600
3685 #include <unistd.h>
3686 int main(void) { swab(0, 0, 0); return 0; }
3688 _swab=no
3689 cc_check && _swab=yes
3690 if test "$_swab" = yes ; then
3691 def_swab='#define HAVE_SWAB 1'
3692 _need_swab=no
3693 else
3694 def_swab='#undef HAVE_SWAB'
3695 _need_swab=yes
3697 echores "$_swab"
3699 echocheck "POSIX select()"
3700 cat > $TMPC << EOF
3701 #include <stdio.h>
3702 #include <stdlib.h>
3703 #include <sys/types.h>
3704 #include <string.h>
3705 #include <sys/time.h>
3706 #include <unistd.h>
3707 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3709 _posix_select=no
3710 def_posix_select='#undef HAVE_POSIX_SELECT'
3711 #select() of kLIBC (OS/2) supports socket only
3712 ! os2 && cc_check && _posix_select=yes \
3713 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3714 echores "$_posix_select"
3717 echocheck "audio select()"
3718 if test "$_select" = no ; then
3719 def_select='#undef HAVE_AUDIO_SELECT'
3720 elif test "$_select" = yes ; then
3721 def_select='#define HAVE_AUDIO_SELECT 1'
3723 echores "$_select"
3726 echocheck "gettimeofday()"
3727 cat > $TMPC << EOF
3728 #include <sys/time.h>
3729 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3731 _gettimeofday=no
3732 cc_check && _gettimeofday=yes
3733 if test "$_gettimeofday" = yes ; then
3734 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3735 _need_gettimeofday=no
3736 else
3737 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3738 _need_gettimeofday=yes
3740 echores "$_gettimeofday"
3743 echocheck "glob()"
3744 cat > $TMPC << EOF
3745 #include <stdio.h>
3746 #include <glob.h>
3747 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3749 _glob=no
3750 cc_check && _glob=yes
3751 if test "$_glob" = yes ; then
3752 def_glob='#define HAVE_GLOB 1'
3753 _need_glob=no
3754 else
3755 def_glob='#undef HAVE_GLOB'
3756 _need_glob=yes
3758 echores "$_glob"
3761 echocheck "setenv()"
3762 cat > $TMPC << EOF
3763 #include <stdlib.h>
3764 int main(void) { setenv("","",0); return 0; }
3766 _setenv=no
3767 cc_check && _setenv=yes
3768 if test "$_setenv" = yes ; then
3769 def_setenv='#define HAVE_SETENV 1'
3770 _need_setenv=no
3771 else
3772 def_setenv='#undef HAVE_SETENV'
3773 _need_setenv=yes
3775 echores "$_setenv"
3778 echocheck "setmode()"
3779 _setmode=no
3780 def_setmode='#define HAVE_SETMODE 0'
3781 cat > $TMPC << EOF
3782 #include <io.h>
3783 int main(void) { setmode(0, 0); return 0; }
3785 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3786 echores "$_setmode"
3789 if sunos; then
3790 echocheck "sysi86()"
3791 cat > $TMPC << EOF
3792 #include <sys/sysi86.h>
3793 int main(void) { sysi86(0); return 0; }
3795 _sysi86=no
3796 cc_check && _sysi86=yes
3797 if test "$_sysi86" = yes ; then
3798 def_sysi86='#define HAVE_SYSI86 1'
3799 cat > $TMPC << EOF
3800 #include <sys/sysi86.h>
3801 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3803 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3804 else
3805 def_sysi86='#undef HAVE_SYSI86'
3807 echores "$_sysi86"
3808 fi #if sunos
3811 echocheck "sys/sysinfo.h"
3812 cat > $TMPC << EOF
3813 #include <sys/sysinfo.h>
3814 int main(void) {
3815 struct sysinfo s_info;
3816 sysinfo(&s_info);
3817 return 0;
3820 _sys_sysinfo=no
3821 cc_check && _sys_sysinfo=yes
3822 if test "$_sys_sysinfo" = yes ; then
3823 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3824 else
3825 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3827 echores "$_sys_sysinfo"
3830 if darwin; then
3832 echocheck "Mac OS X Finder Support"
3833 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3834 if test "$_macosx_finder" = yes ; then
3835 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3836 extra_ldflags="$extra_ldflags -framework Carbon"
3838 echores "$_macosx_finder"
3840 echocheck "Mac OS X Bundle file locations"
3841 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3842 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3843 if test "$_macosx_bundle" = yes ; then
3844 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3845 extra_ldflags="$extra_ldflags -framework Carbon"
3847 echores "$_macosx_bundle"
3849 echocheck "Apple Remote"
3850 if test "$_apple_remote" = auto ; then
3851 _apple_remote=no
3852 cat > $TMPC <<EOF
3853 #include <stdio.h>
3854 #include <IOKit/IOCFPlugIn.h>
3855 int main(void) {
3856 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3857 CFMutableDictionaryRef hidMatchDictionary;
3858 IOReturn ioReturnValue;
3860 // Set up a matching dictionary to search the I/O Registry by class.
3861 // name for all HID class devices
3862 hidMatchDictionary = IOServiceMatching("AppleIRController");
3864 // Now search I/O Registry for matching devices.
3865 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3866 hidMatchDictionary, &hidObjectIterator);
3868 // If search is unsuccessful, return nonzero.
3869 if (ioReturnValue != kIOReturnSuccess ||
3870 !IOIteratorIsValid(hidObjectIterator)) {
3871 return 1;
3873 return 0;
3876 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3878 if test "$_apple_remote" = yes ; then
3879 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3880 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3881 else
3882 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3884 echores "$_apple_remote"
3886 fi #if darwin
3888 if linux; then
3890 echocheck "Apple IR"
3891 if test "$_apple_ir" = auto ; then
3892 _apple_ir=no
3893 cat > $TMPC <<EOF
3894 #include <linux/types.h>
3895 #include <linux/input.h>
3896 int main(void) {
3897 struct input_event ev;
3898 struct input_id id;
3899 return 0;
3902 cc_check && _apple_ir=yes
3904 if test "$_apple_ir" = yes ; then
3905 def_apple_ir='#define CONFIG_APPLE_IR 1'
3906 else
3907 def_apple_ir='#undef CONFIG_APPLE_IR'
3909 echores "$_apple_ir"
3910 fi #if linux
3912 echocheck "pkg-config"
3913 _pkg_config=pkg-config
3914 if $($_pkg_config --version > /dev/null 2>&1); then
3915 if test "$_ld_static"; then
3916 _pkg_config="$_pkg_config --static"
3918 echores "yes"
3919 else
3920 _pkg_config=false
3921 echores "no"
3925 echocheck "Samba support (libsmbclient)"
3926 if test "$_smb" = yes; then
3927 extra_ldflags="$extra_ldflags -lsmbclient"
3929 if test "$_smb" = auto; then
3930 _smb=no
3931 cat > $TMPC << EOF
3932 #include <libsmbclient.h>
3933 int main(void) { smbc_opendir("smb://"); return 0; }
3935 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3936 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3937 _smb=yes && break
3938 done
3941 if test "$_smb" = yes; then
3942 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3943 inputmodules="smb $inputmodules"
3944 else
3945 def_smb="#undef CONFIG_LIBSMBCLIENT"
3946 noinputmodules="smb $noinputmodules"
3948 echores "$_smb"
3951 #########
3952 # VIDEO #
3953 #########
3956 echocheck "tdfxfb"
3957 if test "$_tdfxfb" = yes ; then
3958 def_tdfxfb='#define CONFIG_TDFXFB 1'
3959 vomodules="tdfxfb $vomodules"
3960 else
3961 def_tdfxfb='#undef CONFIG_TDFXFB'
3962 novomodules="tdfxfb $novomodules"
3964 echores "$_tdfxfb"
3966 echocheck "s3fb"
3967 if test "$_s3fb" = yes ; then
3968 def_s3fb='#define CONFIG_S3FB 1'
3969 vomodules="s3fb $vomodules"
3970 else
3971 def_s3fb='#undef CONFIG_S3FB'
3972 novomodules="s3fb $novomodules"
3974 echores "$_s3fb"
3976 echocheck "wii"
3977 if test "$_wii" = yes ; then
3978 def_wii='#define CONFIG_WII 1'
3979 vomodules="wii $vomodules"
3980 else
3981 def_wii='#undef CONFIG_WII'
3982 novomodules="wii $novomodules"
3984 echores "$_wii"
3986 echocheck "tdfxvid"
3987 if test "$_tdfxvid" = yes ; then
3988 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3989 vomodules="tdfx_vid $vomodules"
3990 else
3991 def_tdfxvid='#undef CONFIG_TDFX_VID'
3992 novomodules="tdfx_vid $novomodules"
3994 echores "$_tdfxvid"
3996 echocheck "xvr100"
3997 if test "$_xvr100" = auto ; then
3998 cat > $TMPC << EOF
3999 #include <unistd.h>
4000 #include <sys/fbio.h>
4001 #include <sys/visual_io.h>
4002 int main(void) {
4003 struct vis_identifier ident;
4004 struct fbgattr attr;
4005 ioctl(0, VIS_GETIDENTIFIER, &ident);
4006 ioctl(0, FBIOGATTR, &attr);
4007 return 0;
4010 _xvr100=no
4011 cc_check && _xvr100=yes
4013 if test "$_xvr100" = yes ; then
4014 def_xvr100='#define CONFIG_XVR100 1'
4015 vomodules="xvr100 $vomodules"
4016 else
4017 def_tdfxvid='#undef CONFIG_XVR100'
4018 novomodules="xvr100 $novomodules"
4020 echores "$_xvr100"
4022 echocheck "tga"
4023 if test "$_tga" = yes ; then
4024 def_tga='#define CONFIG_TGA 1'
4025 vomodules="tga $vomodules"
4026 else
4027 def_tga='#undef CONFIG_TGA'
4028 novomodules="tga $novomodules"
4030 echores "$_tga"
4033 echocheck "md5sum support"
4034 if test "$_md5sum" = yes; then
4035 def_md5sum="#define CONFIG_MD5SUM 1"
4036 vomodules="md5sum $vomodules"
4037 else
4038 def_md5sum="#undef CONFIG_MD5SUM"
4039 novomodules="md5sum $novomodules"
4041 echores "$_md5sum"
4044 echocheck "yuv4mpeg support"
4045 if test "$_yuv4mpeg" = yes; then
4046 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4047 vomodules="yuv4mpeg $vomodules"
4048 else
4049 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4050 novomodules="yuv4mpeg $novomodules"
4052 echores "$_yuv4mpeg"
4055 echocheck "bl"
4056 if test "$_bl" = yes ; then
4057 def_bl='#define CONFIG_BL 1'
4058 vomodules="bl $vomodules"
4059 else
4060 def_bl='#undef CONFIG_BL'
4061 novomodules="bl $novomodules"
4063 echores "$_bl"
4066 echocheck "DirectFB"
4067 if test "$_directfb" = auto ; then
4068 _directfb=no
4069 cat > $TMPC <<EOF
4070 #include <directfb.h>
4071 int main(void) { DirectFBInit(0, 0); return 0; }
4073 for _inc_tmp in "" -I/usr/local/include/directfb \
4074 -I/usr/include/directfb -I/usr/local/include; do
4075 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4076 extra_cflags="$extra_cflags $_inc_tmp" && break
4077 done
4080 dfb_version() {
4081 expr $1 \* 65536 + $2 \* 256 + $3
4084 if test "$_directfb" = yes; then
4085 cat > $TMPC << EOF
4086 #include <directfb_version.h>
4088 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4091 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4092 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4093 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4094 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4095 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4096 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4097 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4098 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4099 res_comment="$_directfb_version"
4100 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4101 else
4102 def_directfb_version='#undef DIRECTFBVERSION'
4103 _directfb=no
4104 res_comment="version >=0.9.13 required"
4106 else
4107 _directfb=no
4108 res_comment="failed to get version"
4111 echores "$_directfb"
4113 if test "$_directfb" = yes ; then
4114 def_directfb='#define CONFIG_DIRECTFB 1'
4115 vomodules="directfb $vomodules"
4116 libs_mplayer="$libs_mplayer -ldirectfb"
4117 else
4118 def_directfb='#undef CONFIG_DIRECTFB'
4119 novomodules="directfb $novomodules"
4121 if test "$_dfbmga" = yes; then
4122 vomodules="dfbmga $vomodules"
4123 def_dfbmga='#define CONFIG_DFBMGA 1'
4124 else
4125 novomodules="dfbmga $novomodules"
4126 def_dfbmga='#undef CONFIG_DFBMGA'
4130 echocheck "X11 headers presence"
4131 _x11_headers="no"
4132 res_comment="check if the dev(el) packages are installed"
4133 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4134 if test -f "$I/X11/Xlib.h" ; then
4135 _x11_headers="yes"
4136 res_comment=""
4137 break
4139 done
4140 if test $_cross_compile = no; then
4141 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4142 /usr/include/X11R6 /usr/openwin/include ; do
4143 if test -f "$I/X11/Xlib.h" ; then
4144 extra_cflags="$extra_cflags -I$I"
4145 _x11_headers="yes"
4146 res_comment="using $I"
4147 break
4149 done
4151 echores "$_x11_headers"
4154 echocheck "X11"
4155 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4156 cat > $TMPC <<EOF
4157 #include <X11/Xlib.h>
4158 #include <X11/Xutil.h>
4159 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4161 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4162 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4163 -L/usr/lib ; do
4164 if netbsd; then
4165 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4166 else
4167 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4169 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4170 && _x11=yes && break
4171 done
4173 if test "$_x11" = yes ; then
4174 def_x11='#define CONFIG_X11 1'
4175 vomodules="x11 xover $vomodules"
4176 else
4177 _x11=no
4178 def_x11='#undef CONFIG_X11'
4179 novomodules="x11 $novomodules"
4180 res_comment="check if the dev(el) packages are installed"
4181 # disable stuff that depends on X
4182 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4184 echores "$_x11"
4186 echocheck "Xss screensaver extensions"
4187 if test "$_xss" = auto ; then
4188 cat > $TMPC << EOF
4189 #include <X11/Xlib.h>
4190 #include <X11/extensions/scrnsaver.h>
4191 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4193 _xss=no
4194 cc_check -lXss && _xss=yes
4196 if test "$_xss" = yes ; then
4197 def_xss='#define CONFIG_XSS 1'
4198 libs_mplayer="$libs_mplayer -lXss"
4199 else
4200 def_xss='#undef CONFIG_XSS'
4202 echores "$_xss"
4204 echocheck "DPMS"
4205 _xdpms3=no
4206 _xdpms4=no
4207 if test "$_x11" = yes ; then
4208 cat > $TMPC <<EOF
4209 #include <X11/Xmd.h>
4210 #include <X11/Xlib.h>
4211 #include <X11/Xutil.h>
4212 #include <X11/Xatom.h>
4213 #include <X11/extensions/dpms.h>
4214 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4216 cc_check -lXdpms && _xdpms3=yes
4217 cat > $TMPC <<EOF
4218 #include <X11/Xlib.h>
4219 #include <X11/extensions/dpms.h>
4220 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4222 cc_check -lXext && _xdpms4=yes
4224 if test "$_xdpms4" = yes ; then
4225 def_xdpms='#define CONFIG_XDPMS 1'
4226 res_comment="using Xdpms 4"
4227 echores "yes"
4228 elif test "$_xdpms3" = yes ; then
4229 def_xdpms='#define CONFIG_XDPMS 1'
4230 libs_mplayer="$libs_mplayer -lXdpms"
4231 res_comment="using Xdpms 3"
4232 echores "yes"
4233 else
4234 def_xdpms='#undef CONFIG_XDPMS'
4235 echores "no"
4239 echocheck "Xv"
4240 if test "$_xv" = auto ; then
4241 cat > $TMPC <<EOF
4242 #include <X11/Xlib.h>
4243 #include <X11/extensions/Xvlib.h>
4244 int main(void) {
4245 (void) XvGetPortAttribute(0, 0, 0, 0);
4246 (void) XvQueryPortAttributes(0, 0, 0);
4247 return 0; }
4249 _xv=no
4250 cc_check -lXv && _xv=yes
4253 if test "$_xv" = yes ; then
4254 def_xv='#define CONFIG_XV 1'
4255 libs_mplayer="$libs_mplayer -lXv"
4256 vomodules="xv $vomodules"
4257 else
4258 def_xv='#undef CONFIG_XV'
4259 novomodules="xv $novomodules"
4261 echores "$_xv"
4264 echocheck "XvMC"
4265 if test "$_xv" = yes && test "$_xvmc" != no ; then
4266 _xvmc=no
4267 cat > $TMPC <<EOF
4268 #include <X11/Xlib.h>
4269 #include <X11/extensions/Xvlib.h>
4270 #include <X11/extensions/XvMClib.h>
4271 int main(void) {
4272 (void) XvMCQueryExtension(0,0,0);
4273 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4274 return 0; }
4276 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4277 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4278 done
4280 if test "$_xvmc" = yes ; then
4281 def_xvmc='#define CONFIG_XVMC 1'
4282 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4283 vomodules="xvmc $vomodules"
4284 res_comment="using $_xvmclib"
4285 else
4286 def_xvmc='#define CONFIG_XVMC 0'
4287 novomodules="xvmc $novomodules"
4289 echores "$_xvmc"
4292 echocheck "VDPAU"
4293 if test "$_vdpau" = auto ; then
4294 _vdpau=no
4295 if test "$_dl" = yes ; then
4296 cat > $TMPC <<EOF
4297 #include <vdpau/vdpau_x11.h>
4298 int main(void) {
4299 (void) vdp_device_create_x11(0, 0, 0, 0);
4300 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4302 cc_check -lvdpau && _vdpau=yes
4305 if test "$_vdpau" = yes ; then
4306 def_vdpau='#define CONFIG_VDPAU 1'
4307 libs_mplayer="$libs_mplayer -lvdpau"
4308 vomodules="vdpau $vomodules"
4309 else
4310 def_vdpau='#define CONFIG_VDPAU 0'
4311 novomodules="vdpau $novomodules"
4313 echores "$_vdpau"
4316 echocheck "Xinerama"
4317 if test "$_xinerama" = auto ; then
4318 cat > $TMPC <<EOF
4319 #include <X11/Xlib.h>
4320 #include <X11/extensions/Xinerama.h>
4321 int main(void) { (void) XineramaIsActive(0); return 0; }
4323 _xinerama=no
4324 cc_check -lXinerama && _xinerama=yes
4327 if test "$_xinerama" = yes ; then
4328 def_xinerama='#define CONFIG_XINERAMA 1'
4329 libs_mplayer="$libs_mplayer -lXinerama"
4330 else
4331 def_xinerama='#undef CONFIG_XINERAMA'
4333 echores "$_xinerama"
4336 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4337 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4338 # named 'X extensions' or something similar.
4339 # This check may be useful for future mplayer versions (to change resolution)
4340 # If you run into problems, remove '-lXxf86vm'.
4341 echocheck "Xxf86vm"
4342 if test "$_vm" = auto ; then
4343 cat > $TMPC <<EOF
4344 #include <X11/Xlib.h>
4345 #include <X11/extensions/xf86vmode.h>
4346 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4348 _vm=no
4349 cc_check -lXxf86vm && _vm=yes
4351 if test "$_vm" = yes ; then
4352 def_vm='#define CONFIG_XF86VM 1'
4353 libs_mplayer="$libs_mplayer -lXxf86vm"
4354 else
4355 def_vm='#undef CONFIG_XF86VM'
4357 echores "$_vm"
4359 # Check for the presence of special keycodes, like audio control buttons
4360 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4361 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4362 # have these new keycodes.
4363 echocheck "XF86keysym"
4364 if test "$_xf86keysym" = auto; then
4365 _xf86keysym=no
4366 cat > $TMPC <<EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/XF86keysym.h>
4369 int main(void) { return XF86XK_AudioPause; }
4371 cc_check && _xf86keysym=yes
4373 if test "$_xf86keysym" = yes ; then
4374 def_xf86keysym='#define CONFIG_XF86XK 1'
4375 else
4376 def_xf86keysym='#undef CONFIG_XF86XK'
4378 echores "$_xf86keysym"
4380 echocheck "DGA"
4381 if test "$_dga2" = auto && test "$_x11" = yes ; then
4382 cat > $TMPC << EOF
4383 #include <X11/Xlib.h>
4384 #include <X11/extensions/xf86dga.h>
4385 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4387 _dga2=no
4388 cc_check -lXxf86dga && _dga2=yes
4390 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4391 cat > $TMPC << EOF
4392 #include <X11/Xlib.h>
4393 #include <X11/extensions/xf86dga.h>
4394 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4396 _dga1=no
4397 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4400 _dga=no
4401 def_dga='#undef CONFIG_DGA'
4402 def_dga1='#undef CONFIG_DGA1'
4403 def_dga2='#undef CONFIG_DGA2'
4404 if test "$_dga1" = yes ; then
4405 _dga=yes
4406 def_dga1='#define CONFIG_DGA1 1'
4407 res_comment="using DGA 1.0"
4408 elif test "$_dga2" = yes ; then
4409 _dga=yes
4410 def_dga2='#define CONFIG_DGA2 1'
4411 res_comment="using DGA 2.0"
4413 if test "$_dga" = yes ; then
4414 def_dga='#define CONFIG_DGA 1'
4415 libs_mplayer="$libs_mplayer -lXxf86dga"
4416 vomodules="dga $vomodules"
4417 else
4418 novomodules="dga $novomodules"
4420 echores "$_dga"
4423 echocheck "3dfx"
4424 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4425 def_3dfx='#define CONFIG_3DFX 1'
4426 vomodules="3dfx $vomodules"
4427 else
4428 def_3dfx='#undef CONFIG_3DFX'
4429 novomodules="3dfx $novomodules"
4431 echores "$_3dfx"
4434 echocheck "VIDIX"
4435 def_vidix='#undef CONFIG_VIDIX'
4436 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4437 _vidix_drv_cyberblade=no
4438 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4439 _vidix_drv_ivtv=no
4440 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4441 _vidix_drv_mach64=no
4442 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4443 _vidix_drv_mga=no
4444 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4445 _vidix_drv_mga_crtc2=no
4446 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4447 _vidix_drv_nvidia=no
4448 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4449 _vidix_drv_pm2=no
4450 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4451 _vidix_drv_pm3=no
4452 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4453 _vidix_drv_radeon=no
4454 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4455 _vidix_drv_rage128=no
4456 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4457 _vidix_drv_s3=no
4458 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4459 _vidix_drv_sh_veu=no
4460 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4461 _vidix_drv_sis=no
4462 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4463 _vidix_drv_unichrome=no
4464 if test "$_vidix" = auto ; then
4465 _vidix=no
4466 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4467 && _vidix=yes
4468 x86_64 && ! linux && _vidix=no
4469 (ppc || alpha) && linux && _vidix=yes
4471 echores "$_vidix"
4473 if test "$_vidix" = yes ; then
4474 def_vidix='#define CONFIG_VIDIX 1'
4475 vomodules="cvidix $vomodules"
4476 # FIXME: ivtv driver temporarily disabled until we have a proper test
4477 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4478 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4480 # some vidix drivers are architecture and os specific, discard them elsewhere
4481 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4482 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4484 for driver in $_vidix_drivers ; do
4485 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4486 eval _vidix_drv_${driver}=yes
4487 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4488 done
4490 echocheck "VIDIX PCI device name database"
4491 echores "$_vidix_pcidb"
4492 if test "$_vidix_pcidb" = yes ; then
4493 _vidix_pcidb_val=1
4494 else
4495 _vidix_pcidb_val=0
4498 echocheck "VIDIX dhahelper support"
4499 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4500 echores "$_dhahelper"
4502 echocheck "VIDIX svgalib_helper support"
4503 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4504 echores "$_svgalib_helper"
4506 else
4507 novomodules="cvidix $novomodules"
4510 if test "$_vidix" = yes && win32; then
4511 winvidix=yes
4512 vomodules="winvidix $vomodules"
4513 libs_mplayer="$libs_mplayer -lgdi32"
4514 else
4515 novomodules="winvidix $novomodules"
4517 if test "$_vidix" = yes && test "$_x11" = yes; then
4518 xvidix=yes
4519 vomodules="xvidix $vomodules"
4520 else
4521 novomodules="xvidix $novomodules"
4524 echocheck "GGI"
4525 if test "$_ggi" = auto ; then
4526 cat > $TMPC << EOF
4527 #include <ggi/ggi.h>
4528 int main(void) { ggiInit(); return 0; }
4530 _ggi=no
4531 cc_check -lggi && _ggi=yes
4533 if test "$_ggi" = yes ; then
4534 def_ggi='#define CONFIG_GGI 1'
4535 libs_mplayer="$libs_mplayer -lggi"
4536 vomodules="ggi $vomodules"
4537 else
4538 def_ggi='#undef CONFIG_GGI'
4539 novomodules="ggi $novomodules"
4541 echores "$_ggi"
4543 echocheck "GGI extension: libggiwmh"
4544 if test "$_ggiwmh" = auto ; then
4545 _ggiwmh=no
4546 cat > $TMPC << EOF
4547 #include <ggi/ggi.h>
4548 #include <ggi/wmh.h>
4549 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4551 cc_check -lggi -lggiwmh && _ggiwmh=yes
4553 # needed to get right output on obscure combination
4554 # like --disable-ggi --enable-ggiwmh
4555 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4556 def_ggiwmh='#define CONFIG_GGIWMH 1'
4557 libs_mplayer="$libs_mplayer -lggiwmh"
4558 else
4559 _ggiwmh=no
4560 def_ggiwmh='#undef CONFIG_GGIWMH'
4562 echores "$_ggiwmh"
4565 echocheck "AA"
4566 if test "$_aa" = auto ; then
4567 cat > $TMPC << EOF
4568 #include <aalib.h>
4569 extern struct aa_hardware_params aa_defparams;
4570 extern struct aa_renderparams aa_defrenderparams;
4571 int main(void) {
4572 aa_context *c;
4573 aa_renderparams *p;
4574 (void) aa_init(0, 0, 0);
4575 c = aa_autoinit(&aa_defparams);
4576 p = aa_getrenderparams();
4577 aa_autoinitkbd(c,0);
4578 return 0; }
4580 _aa=no
4581 for _ld_tmp in "-laa" ; do
4582 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4583 done
4585 if test "$_aa" = yes ; then
4586 def_aa='#define CONFIG_AA 1'
4587 if cygwin ; then
4588 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4590 vomodules="aa $vomodules"
4591 else
4592 def_aa='#undef CONFIG_AA'
4593 novomodules="aa $novomodules"
4595 echores "$_aa"
4598 echocheck "CACA"
4599 if test "$_caca" = auto ; then
4600 _caca=no
4601 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4602 cat > $TMPC << EOF
4603 #include <caca.h>
4604 #ifdef CACA_API_VERSION_1
4605 #include <caca0.h>
4606 #endif
4607 int main(void) { (void) caca_init(); return 0; }
4609 cc_check $(caca-config --libs) && _caca=yes
4612 if test "$_caca" = yes ; then
4613 def_caca='#define CONFIG_CACA 1'
4614 extra_cflags="$extra_cflags $(caca-config --cflags)"
4615 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4616 vomodules="caca $vomodules"
4617 else
4618 def_caca='#undef CONFIG_CACA'
4619 novomodules="caca $novomodules"
4621 echores "$_caca"
4624 echocheck "SVGAlib"
4625 if test "$_svga" = auto ; then
4626 _svga=no
4627 header_check vga.h -lvga $_ld_lm && _svga=yes
4629 if test "$_svga" = yes ; then
4630 def_svga='#define CONFIG_SVGALIB 1'
4631 libs_mplayer="$libs_mplayer -lvga"
4632 vomodules="svga $vomodules"
4633 else
4634 def_svga='#undef CONFIG_SVGALIB'
4635 novomodules="svga $novomodules"
4637 echores "$_svga"
4640 echocheck "FBDev"
4641 if test "$_fbdev" = auto ; then
4642 _fbdev=no
4643 linux && _fbdev=yes
4645 if test "$_fbdev" = yes ; then
4646 def_fbdev='#define CONFIG_FBDEV 1'
4647 vomodules="fbdev $vomodules"
4648 else
4649 def_fbdev='#undef CONFIG_FBDEV'
4650 novomodules="fbdev $novomodules"
4652 echores "$_fbdev"
4656 echocheck "DVB"
4657 if test "$_dvb" = auto ; then
4658 _dvb=no
4659 cat >$TMPC << EOF
4660 #include <poll.h>
4661 #include <sys/ioctl.h>
4662 #include <stdio.h>
4663 #include <time.h>
4664 #include <unistd.h>
4665 #include <linux/dvb/dmx.h>
4666 #include <linux/dvb/frontend.h>
4667 #include <linux/dvb/video.h>
4668 #include <linux/dvb/audio.h>
4669 int main(void) {return 0;}
4671 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4672 cc_check $_inc_tmp && _dvb=yes && \
4673 extra_cflags="$extra_cflags $_inc_tmp" && break
4674 done
4676 echores "$_dvb"
4677 if test "$_dvb" = yes ; then
4678 _dvbin=yes
4679 inputmodules="dvb $inputmodules"
4680 def_dvb='#define CONFIG_DVB 1'
4681 def_dvbin='#define CONFIG_DVBIN 1'
4682 aomodules="mpegpes(dvb) $aomodules"
4683 vomodules="mpegpes(dvb) $vomodules"
4684 else
4685 _dvbin=no
4686 noinputmodules="dvb $noinputmodules"
4687 def_dvb='#undef CONFIG_DVB'
4688 def_dvbin='#undef CONFIG_DVBIN '
4689 aomodules="mpegpes(file) $aomodules"
4690 vomodules="mpegpes(file) $vomodules"
4694 if darwin; then
4696 echocheck "QuickTime"
4697 if test "$quicktime" = auto ; then
4698 cat > $TMPC <<EOF
4699 #include <QuickTime/QuickTime.h>
4700 int main(void) {
4701 ImageDescription *desc;
4702 EnterMovies();
4703 ExitMovies();
4704 return 0;
4707 quicktime=no
4708 cc_check -framework QuickTime && quicktime=yes
4710 if test "$quicktime" = yes ; then
4711 extra_ldflags="$extra_ldflags -framework QuickTime"
4712 def_quicktime='#define CONFIG_QUICKTIME 1'
4713 else
4714 def_quicktime='#undef CONFIG_QUICKTIME'
4715 _quartz=no
4717 echores $quicktime
4719 echocheck "Quartz"
4720 if test "$_quartz" = auto ; then
4721 cat > $TMPC <<EOF
4722 #include <Carbon/Carbon.h>
4723 int main(void) {
4724 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4725 return 0;
4728 _quartz=no
4729 cc_check -framework Carbon && _quartz=yes
4731 if test "$_quartz" = yes ; then
4732 libs_mplayer="$libs_mplayer -framework Carbon"
4733 def_quartz='#define CONFIG_QUARTZ 1'
4734 vomodules="quartz $vomodules"
4735 else
4736 def_quartz='#undef CONFIG_QUARTZ'
4737 novomodules="quartz $novomodules"
4739 echores $_quartz
4741 echocheck "CoreVideo"
4742 if test "$_corevideo" = auto ; then
4743 cat > $TMPC <<EOF
4744 #include <Carbon/Carbon.h>
4745 #include <CoreServices/CoreServices.h>
4746 #include <OpenGL/OpenGL.h>
4747 #include <QuartzCore/CoreVideo.h>
4748 int main(void) { return 0; }
4750 _corevideo=no
4751 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4753 if test "$_corevideo" = yes ; then
4754 vomodules="corevideo $vomodules"
4755 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4756 def_corevideo='#define CONFIG_COREVIDEO 1'
4757 else
4758 novomodules="corevideo $novomodules"
4759 def_corevideo='#undef CONFIG_COREVIDEO'
4761 echores "$_corevideo"
4763 fi #if darwin
4766 echocheck "PNG support"
4767 if test "$_png" = auto ; then
4768 _png=no
4769 if irix ; then
4770 # Don't check for -lpng on irix since it has its own libpng
4771 # incompatible with the GNU libpng
4772 res_comment="disabled on irix (not GNU libpng)"
4773 else
4774 cat > $TMPC << EOF
4775 #include <png.h>
4776 #include <string.h>
4777 int main(void) {
4778 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4779 printf("libpng: %s\n", png_libpng_ver);
4780 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4783 cc_check -lpng -lz $_ld_lm && _png=yes
4786 echores "$_png"
4787 if test "$_png" = yes ; then
4788 def_png='#define CONFIG_PNG 1'
4789 extra_ldflags="$extra_ldflags -lpng -lz"
4790 else
4791 def_png='#undef CONFIG_PNG'
4794 echocheck "MNG support"
4795 if test "$_mng" = auto ; then
4796 _mng=no
4797 cat > $TMPC << EOF
4798 #include <libmng.h>
4799 int main(void) {
4800 const char * p_ver = mng_version_text();
4801 return !p_ver || p_ver[0] == 0;
4804 if cc_check -lmng -lz $_ld_lm ; then
4805 _mng=yes
4808 echores "$_mng"
4809 if test "$_mng" = yes ; then
4810 def_mng='#define CONFIG_MNG 1'
4811 extra_ldflags="$extra_ldflags -lmng -lz"
4812 else
4813 def_mng='#undef CONFIG_MNG'
4816 echocheck "JPEG support"
4817 if test "$_jpeg" = auto ; then
4818 _jpeg=no
4819 cat > $TMPC << EOF
4820 #include <stdio.h>
4821 #include <stdlib.h>
4822 #include <setjmp.h>
4823 #include <string.h>
4824 #include <jpeglib.h>
4825 int main(void) { return 0; }
4827 cc_check -ljpeg $_ld_lm && _jpeg=yes
4829 echores "$_jpeg"
4831 if test "$_jpeg" = yes ; then
4832 def_jpeg='#define CONFIG_JPEG 1'
4833 vomodules="jpeg $vomodules"
4834 extra_ldflags="$extra_ldflags -ljpeg"
4835 else
4836 def_jpeg='#undef CONFIG_JPEG'
4837 novomodules="jpeg $novomodules"
4842 echocheck "PNM support"
4843 if test "$_pnm" = yes; then
4844 def_pnm="#define CONFIG_PNM 1"
4845 vomodules="pnm $vomodules"
4846 else
4847 def_pnm="#undef CONFIG_PNM"
4848 novomodules="pnm $novomodules"
4850 echores "$_pnm"
4854 echocheck "GIF support"
4855 # This is to appease people who want to force gif support.
4856 # If it is forced to yes, then we still do checks to determine
4857 # which gif library to use.
4858 if test "$_gif" = yes ; then
4859 _force_gif=yes
4860 _gif=auto
4863 if test "$_gif" = auto ; then
4864 _gif=no
4865 cat > $TMPC << EOF
4866 #include <gif_lib.h>
4867 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4869 for _ld_gif in "-lungif" "-lgif" ; do
4870 cc_check $_ld_gif && _gif=yes && break
4871 done
4874 # If no library was found, and the user wants support forced,
4875 # then we force it on with libgif, as this is the safest
4876 # assumption IMHO. (libungif & libregif both create symbolic
4877 # links to libgif. We also assume that no x11 support is needed,
4878 # because if you are forcing this, then you _should_ know what
4879 # you are doing. [ Besides, package maintainers should never
4880 # have compiled x11 deps into libungif in the first place. ] )
4881 # </rant>
4882 # --Joey
4883 if test "$_force_gif" = yes && test "$_gif" = no ; then
4884 _gif=yes
4885 _ld_gif="-lgif"
4888 if test "$_gif" = yes ; then
4889 def_gif='#define CONFIG_GIF 1'
4890 codecmodules="gif $codecmodules"
4891 vomodules="gif89a $vomodules"
4892 res_comment="old version, some encoding functions disabled"
4893 def_gif_4='#undef CONFIG_GIF_4'
4894 extra_ldflags="$extra_ldflags $_ld_gif"
4896 cat > $TMPC << EOF
4897 #include <signal.h>
4898 #include <gif_lib.h>
4899 void catch(int sig) { exit(1); }
4900 int main(void) {
4901 signal(SIGSEGV, catch); // catch segfault
4902 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4903 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4904 return 0;
4907 if cc_check "$_ld_gif" ; then
4908 def_gif_4='#define CONFIG_GIF_4 1'
4909 res_comment=""
4911 else
4912 def_gif='#undef CONFIG_GIF'
4913 def_gif_4='#undef CONFIG_GIF_4'
4914 novomodules="gif89a $novomodules"
4915 nocodecmodules="gif $nocodecmodules"
4917 echores "$_gif"
4920 case "$_gif" in yes*)
4921 echocheck "broken giflib workaround"
4922 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4924 cat > $TMPC << EOF
4925 #include <gif_lib.h>
4926 int main(void) {
4927 GifFileType gif;
4928 printf("UserData is at address %p\n", gif.UserData);
4929 return 0;
4932 if cc_check "$_ld_gif" ; then
4933 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4934 echores "disabled"
4935 else
4936 echores "enabled"
4939 esac
4942 echocheck "VESA support"
4943 if test "$_vesa" = auto ; then
4944 cat > $TMPC << EOF
4945 #include <vbe.h>
4946 int main(void) { vbeVersion(); return 0; }
4948 _vesa=no
4949 cc_check -lvbe -llrmi && _vesa=yes
4951 if test "$_vesa" = yes ; then
4952 def_vesa='#define CONFIG_VESA 1'
4953 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4954 vomodules="vesa $vomodules"
4955 else
4956 def_vesa='#undef CONFIG_VESA'
4957 novomodules="vesa $novomodules"
4959 echores "$_vesa"
4961 #################
4962 # VIDEO + AUDIO #
4963 #################
4966 echocheck "SDL"
4967 _inc_tmp=""
4968 _ld_tmp=""
4969 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4970 if test -z "$_sdlconfig" ; then
4971 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4972 _sdlconfig="sdl-config"
4973 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4974 _sdlconfig="sdl11-config"
4975 else
4976 _sdlconfig=false
4979 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4980 cat > $TMPC << EOF
4981 #ifdef CONFIG_SDL_SDL_H
4982 #include <SDL/SDL.h>
4983 #else
4984 #include <SDL.h>
4985 #endif
4986 #ifndef __APPLE__
4987 // we allow SDL hacking our main() only on OSX
4988 #undef main
4989 #endif
4990 int main(int argc, char *argv[]) {
4991 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4992 return 0;
4995 _sdl=no
4996 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4997 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4998 _sdl=yes
4999 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5000 break
5002 done
5003 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5004 res_comment="using $_sdlconfig"
5005 if cygwin ; then
5006 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5007 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5008 elif mingw32 ; then
5009 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5010 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5011 else
5012 _inc_tmp="$($_sdlconfig --cflags)"
5013 _ld_tmp="$($_sdlconfig --libs)"
5015 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5016 _sdl=yes
5020 if test "$_sdl" = yes ; then
5021 def_sdl='#define CONFIG_SDL 1'
5022 extra_cflags="$extra_cflags $_inc_tmp"
5023 libs_mplayer="$libs_mplayer $_ld_tmp"
5024 vomodules="sdl $vomodules"
5025 aomodules="sdl $aomodules"
5026 else
5027 def_sdl='#undef CONFIG_SDL'
5028 novomodules="sdl $novomodules"
5029 noaomodules="sdl $noaomodules"
5031 echores "$_sdl"
5034 # make sure this stays below CoreVideo to avoid issues due to namespace
5035 # conflicts between -lGL and -framework OpenGL
5036 echocheck "OpenGL"
5037 #Note: this test is run even with --enable-gl since we autodetect linker flags
5038 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5039 cat > $TMPC << EOF
5040 #ifdef GL_WIN32
5041 #include <windows.h>
5042 #include <GL/gl.h>
5043 #elif defined(GL_SDL)
5044 #include <GL/gl.h>
5045 #ifdef CONFIG_SDL_SDL_H
5046 #include <SDL/SDL.h>
5047 #else
5048 #include <SDL.h>
5049 #endif
5050 #ifndef __APPLE__
5051 // we allow SDL hacking our main() only on OSX
5052 #undef main
5053 #endif
5054 #else
5055 #include <GL/gl.h>
5056 #include <X11/Xlib.h>
5057 #include <GL/glx.h>
5058 #endif
5059 int main(int argc, char *argv[]) {
5060 #ifdef GL_WIN32
5061 HDC dc;
5062 wglCreateContext(dc);
5063 #elif defined(GL_SDL)
5064 SDL_GL_SwapBuffers();
5065 #else
5066 glXCreateContext(NULL, NULL, NULL, True);
5067 #endif
5068 glFinish();
5069 return 0;
5072 _gl=no
5073 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5074 if cc_check $_ld_tmp $_ld_lm ; then
5075 _gl=yes
5076 _gl_x11=yes
5077 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5078 break
5080 done
5081 if cc_check -DGL_WIN32 -lopengl32 ; then
5082 _gl=yes
5083 _gl_win32=yes
5084 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5086 # last so it can reuse any linker etc. flags detected before
5087 if test "$_sdl" = yes ; then
5088 if cc_check -DGL_SDL ||
5089 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5090 _gl=yes
5091 _gl_sdl=yes
5092 elif cc_check -DGL_SDL -lGL ||
5093 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5094 _gl=yes
5095 _gl_sdl=yes
5096 libs_mplayer="$libs_mplayer -lGL"
5099 else
5100 _gl=no
5102 if test "$_gl" = yes ; then
5103 def_gl='#define CONFIG_GL 1'
5104 res_comment="backends:"
5105 if test "$_gl_win32" = yes ; then
5106 def_gl_win32='#define CONFIG_GL_WIN32 1'
5107 res_comment="$res_comment win32"
5109 if test "$_gl_x11" = yes ; then
5110 def_gl_x11='#define CONFIG_GL_X11 1'
5111 res_comment="$res_comment x11"
5113 if test "$_gl_sdl" = yes ; then
5114 def_gl_sdl='#define CONFIG_GL_SDL 1'
5115 res_comment="$res_comment sdl"
5117 vomodules="opengl $vomodules"
5118 else
5119 def_gl='#undef CONFIG_GL'
5120 def_gl_win32='#undef CONFIG_GL_WIN32'
5121 def_gl_x11='#undef CONFIG_GL_X11'
5122 def_gl_sdl='#undef CONFIG_GL_SDL'
5123 novomodules="opengl $novomodules"
5125 echores "$_gl"
5128 echocheck "MatrixView"
5129 if test "$_gl" = no ; then
5130 matrixview=no
5132 if test "$matrixview" = yes ; then
5133 vomodules="matrixview $vomodules"
5134 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5135 else
5136 novomodules="matrixview $novomodules"
5137 def_matrixview='#undef CONFIG_MATRIXVIEW'
5139 echores "$matrixview"
5142 if os2 ; then
5143 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5144 if test "$_kva" = auto; then
5145 cat > $TMPC << EOF
5146 #include <os2.h>
5147 #include <kva.h>
5148 int main(void) { return 0; }
5150 _kva=no;
5151 cc_check -lkva && _kva=yes
5153 if test "$_kva" = yes ; then
5154 def_kva='#define CONFIG_KVA 1'
5155 libs_mplayer="$libs_mplayer -lkva"
5156 vomodules="kva $vomodules"
5157 else
5158 def_kva='#undef CONFIG_KVA'
5159 novomodules="kva $novomodules"
5161 echores "$_kva"
5162 fi #if os2
5165 if win32; then
5167 echocheck "Windows waveout"
5168 if test "$_win32waveout" = auto ; then
5169 cat > $TMPC << EOF
5170 #include <windows.h>
5171 #include <mmsystem.h>
5172 int main(void) { return 0; }
5174 _win32waveout=no
5175 cc_check -lwinmm && _win32waveout=yes
5177 if test "$_win32waveout" = yes ; then
5178 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5179 libs_mplayer="$libs_mplayer -lwinmm"
5180 aomodules="win32 $aomodules"
5181 else
5182 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5183 noaomodules="win32 $noaomodules"
5185 echores "$_win32waveout"
5187 echocheck "Direct3D"
5188 if test "$_direct3d" = auto ; then
5189 cat > $TMPC << EOF
5190 #include <windows.h>
5191 #include <d3d9.h>
5192 int main(void) { return 0; }
5194 _direct3d=no
5195 cc_check && _direct3d=yes
5197 if test "$_direct3d" = yes ; then
5198 def_direct3d='#define CONFIG_DIRECT3D 1'
5199 vomodules="direct3d $vomodules"
5200 else
5201 def_direct3d='#undef CONFIG_DIRECT3D'
5202 novomodules="direct3d $novomodules"
5204 echores "$_direct3d"
5206 echocheck "Directx"
5207 if test "$_directx" = auto ; then
5208 cat > $TMPC << EOF
5209 #include <windows.h>
5210 #include <ddraw.h>
5211 #include <dsound.h>
5212 int main(void) { return 0; }
5214 _directx=no
5215 cc_check -lgdi32 && _directx=yes
5217 if test "$_directx" = yes ; then
5218 def_directx='#define CONFIG_DIRECTX 1'
5219 libs_mplayer="$libs_mplayer -lgdi32"
5220 vomodules="directx $vomodules"
5221 aomodules="dsound $aomodules"
5222 else
5223 def_directx='#undef CONFIG_DIRECTX'
5224 novomodules="directx $novomodules"
5225 noaomodules="dsound $noaomodules"
5227 echores "$_directx"
5229 fi #if win32; then
5232 echocheck "DXR2"
5233 if test "$_dxr2" = auto; then
5234 _dxr2=no
5235 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5236 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5237 extra_cflags="$extra_cflags $_inc_tmp" && break
5238 done
5240 if test "$_dxr2" = yes; then
5241 def_dxr2='#define CONFIG_DXR2 1'
5242 aomodules="dxr2 $aomodules"
5243 vomodules="dxr2 $vomodules"
5244 else
5245 def_dxr2='#undef CONFIG_DXR2'
5246 noaomodules="dxr2 $noaomodules"
5247 novomodules="dxr2 $novomodules"
5249 echores "$_dxr2"
5251 echocheck "DXR3/H+"
5252 if test "$_dxr3" = auto ; then
5253 _dxr3=no
5254 header_check linux/em8300.h && _dxr3=yes
5256 if test "$_dxr3" = yes ; then
5257 def_dxr3='#define CONFIG_DXR3 1'
5258 vomodules="dxr3 $vomodules"
5259 else
5260 def_dxr3='#undef CONFIG_DXR3'
5261 novomodules="dxr3 $novomodules"
5263 echores "$_dxr3"
5266 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5267 if test "$_ivtv" = auto ; then
5268 cat > $TMPC << EOF
5269 #include <stdlib.h>
5270 #include <inttypes.h>
5271 #include <linux/types.h>
5272 #include <linux/videodev2.h>
5273 #include <linux/ivtv.h>
5274 #include <sys/ioctl.h>
5275 int main(void) {
5276 struct ivtv_cfg_stop_decode sd;
5277 struct ivtv_cfg_start_decode sd1;
5278 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5279 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5280 return 0; }
5282 _ivtv=no
5283 cc_check && _ivtv=yes
5285 if test "$_ivtv" = yes ; then
5286 def_ivtv='#define CONFIG_IVTV 1'
5287 vomodules="ivtv $vomodules"
5288 aomodules="ivtv $aomodules"
5289 else
5290 def_ivtv='#undef CONFIG_IVTV'
5291 novomodules="ivtv $novomodules"
5292 noaomodules="ivtv $noaomodules"
5294 echores "$_ivtv"
5297 echocheck "V4L2 MPEG Decoder"
5298 if test "$_v4l2" = auto ; then
5299 cat > $TMPC << EOF
5300 #include <stdlib.h>
5301 #include <inttypes.h>
5302 #include <linux/types.h>
5303 #include <linux/videodev2.h>
5304 #include <linux/version.h>
5305 int main(void) {
5306 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5307 #error kernel headers too old, need 2.6.22
5308 #endif
5309 struct v4l2_ext_controls ctrls;
5310 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5311 return 0;
5314 _v4l2=no
5315 cc_check && _v4l2=yes
5317 if test "$_v4l2" = yes ; then
5318 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5319 vomodules="v4l2 $vomodules"
5320 aomodules="v4l2 $aomodules"
5321 else
5322 def_v4l2='#undef CONFIG_V4L2_DECODER'
5323 novomodules="v4l2 $novomodules"
5324 noaomodules="v4l2 $noaomodules"
5326 echores "$_v4l2"
5330 #########
5331 # AUDIO #
5332 #########
5335 echocheck "OSS Audio"
5336 if test "$_ossaudio" = auto ; then
5337 cat > $TMPC << EOF
5338 #include <sys/ioctl.h>
5339 #include <$_soundcard_header>
5340 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5342 _ossaudio=no
5343 cc_check && _ossaudio=yes
5345 if test "$_ossaudio" = yes ; then
5346 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5347 aomodules="oss $aomodules"
5348 cat > $TMPC << EOF
5349 #include <sys/ioctl.h>
5350 #include <$_soundcard_header>
5351 #ifdef OPEN_SOUND_SYSTEM
5352 int main(void) { return 0; }
5353 #else
5354 #error Not the real thing
5355 #endif
5357 _real_ossaudio=no
5358 cc_check && _real_ossaudio=yes
5359 if test "$_real_ossaudio" = yes; then
5360 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5361 # Check for OSS4 headers (override default headers)
5362 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5363 if test -f /etc/oss.conf; then
5364 . /etc/oss.conf
5365 _ossinc="$OSSLIBDIR/include"
5366 if test -f "$_ossinc/sys/soundcard.h"; then
5367 extra_cflags="-I$_ossinc $extra_cflags"
5370 elif netbsd || openbsd ; then
5371 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5372 extra_ldflags="$extra_ldflags -lossaudio"
5373 else
5374 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5376 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5377 else
5378 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5379 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5380 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5381 noaomodules="oss $noaomodules"
5383 echores "$_ossaudio"
5386 echocheck "aRts"
5387 if test "$_arts" = auto ; then
5388 _arts=no
5389 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5390 header_check artsc.h $(artsc-config --libs) $(artsc-config --cflags) &&
5391 _arts=yes
5395 if test "$_arts" = yes ; then
5396 def_arts='#define CONFIG_ARTS 1'
5397 aomodules="arts $aomodules"
5398 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5399 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5400 else
5401 noaomodules="arts $noaomodules"
5403 echores "$_arts"
5406 echocheck "EsounD"
5407 if test "$_esd" = auto ; then
5408 _esd=no
5409 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5411 cat > $TMPC << EOF
5412 #include <esd.h>
5413 int main(void) { int fd = esd_open_sound("test"); return fd; }
5415 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5419 echores "$_esd"
5421 if test "$_esd" = yes ; then
5422 def_esd='#define CONFIG_ESD 1'
5423 aomodules="esd $aomodules"
5424 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5425 extra_cflags="$extra_cflags $(esd-config --cflags)"
5427 echocheck "esd_get_latency()"
5428 cat > $TMPC << EOF
5429 #include <esd.h>
5430 int main(void) { return esd_get_latency(0); }
5432 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5433 echores "$_esd_latency"
5434 else
5435 def_esd='#undef CONFIG_ESD'
5436 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5437 noaomodules="esd $noaomodules"
5441 echocheck "NAS"
5442 if test "$_nas" = auto ; then
5443 _nas=no
5444 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5446 if test "$_nas" = yes ; then
5447 def_nas='#define CONFIG_NAS 1'
5448 libs_mplayer="$libs_mplayer -laudio -lXt"
5449 aomodules="nas $aomodules"
5450 else
5451 noaomodules="nas $noaomodules"
5452 def_nas='#undef CONFIG_NAS'
5454 echores "$_nas"
5457 echocheck "pulse"
5458 if test "$_pulse" = auto ; then
5459 _pulse=no
5460 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5461 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5462 _pulse=yes
5465 echores "$_pulse"
5467 if test "$_pulse" = yes ; then
5468 def_pulse='#define CONFIG_PULSE 1'
5469 aomodules="pulse $aomodules"
5470 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5471 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5472 else
5473 def_pulse='#undef CONFIG_PULSE'
5474 noaomodules="pulse $noaomodules"
5478 echocheck "JACK"
5479 if test "$_jack" = auto ; then
5480 _jack=yes
5482 cat > $TMPC << EOF
5483 #include <jack/jack.h>
5484 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5486 if cc_check -ljack ; then
5487 libs_mplayer="$libs_mplayer -ljack"
5488 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5489 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5490 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5491 else
5492 _jack=no
5496 if test "$_jack" = yes ; then
5497 def_jack='#define CONFIG_JACK 1'
5498 aomodules="jack $aomodules"
5499 else
5500 noaomodules="jack $noaomodules"
5502 echores "$_jack"
5504 echocheck "OpenAL"
5505 if test "$_openal" = auto ; then
5506 _openal=no
5507 cat > $TMPC << EOF
5508 #ifdef OPENAL_AL_H
5509 #include <OpenAL/al.h>
5510 #else
5511 #include <AL/al.h>
5512 #endif
5513 int main(void) {
5514 alSourceQueueBuffers(0, 0, 0);
5515 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5516 return 0;
5519 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5520 cc_check $I && _openal=yes && break
5521 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5522 done
5523 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5525 if test "$_openal" = yes ; then
5526 def_openal='#define CONFIG_OPENAL 1'
5527 aomodules="openal $aomodules"
5528 else
5529 noaomodules="openal $noaomodules"
5531 echores "$_openal"
5533 echocheck "ALSA audio"
5534 if test "$_alloca" != yes ; then
5535 _alsa=no
5536 res_comment="alloca missing"
5538 if test "$_alsa" != no ; then
5539 _alsa=no
5540 cat > $TMPC << EOF
5541 #include <sys/asoundlib.h>
5542 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5543 #error "alsa version != 0.5.x"
5544 #endif
5545 int main(void) { return 0; }
5547 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5549 cat > $TMPC << EOF
5550 #include <sys/asoundlib.h>
5551 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5552 #error "alsa version != 0.9.x"
5553 #endif
5554 int main(void) { return 0; }
5556 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5557 cat > $TMPC << EOF
5558 #include <alsa/asoundlib.h>
5559 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5560 #error "alsa version != 0.9.x"
5561 #endif
5562 int main(void) { return 0; }
5564 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5566 cat > $TMPC << EOF
5567 #include <sys/asoundlib.h>
5568 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5569 #error "alsa version != 1.0.x"
5570 #endif
5571 int main(void) { return 0; }
5573 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5574 cat > $TMPC << EOF
5575 #include <alsa/asoundlib.h>
5576 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5577 #error "alsa version != 1.0.x"
5578 #endif
5579 int main(void) { return 0; }
5581 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5583 def_alsa='#undef CONFIG_ALSA'
5584 def_alsa5='#undef CONFIG_ALSA5'
5585 def_alsa9='#undef CONFIG_ALSA9'
5586 def_alsa1x='#undef CONFIG_ALSA1X'
5587 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5588 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5589 if test "$_alsaver" ; then
5590 _alsa=yes
5591 if test "$_alsaver" = '0.5.x' ; then
5592 _alsa5=yes
5593 aomodules="alsa5 $aomodules"
5594 def_alsa5='#define CONFIG_ALSA5 1'
5595 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5596 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5597 elif test "$_alsaver" = '0.9.x-sys' ; then
5598 _alsa9=yes
5599 aomodules="alsa $aomodules"
5600 def_alsa='#define CONFIG_ALSA 1'
5601 def_alsa9='#define CONFIG_ALSA9 1'
5602 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5603 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5604 elif test "$_alsaver" = '0.9.x-alsa' ; then
5605 _alsa9=yes
5606 aomodules="alsa $aomodules"
5607 def_alsa='#define CONFIG_ALSA 1'
5608 def_alsa9='#define CONFIG_ALSA9 1'
5609 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5610 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5611 elif test "$_alsaver" = '1.0.x-sys' ; then
5612 _alsa1x=yes
5613 aomodules="alsa $aomodules"
5614 def_alsa='#define CONFIG_ALSA 1'
5615 def_alsa1x="#define CONFIG_ALSA1X 1"
5616 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5617 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5618 elif test "$_alsaver" = '1.0.x-alsa' ; then
5619 _alsa1x=yes
5620 aomodules="alsa $aomodules"
5621 def_alsa='#define CONFIG_ALSA 1'
5622 def_alsa1x="#define CONFIG_ALSA1X 1"
5623 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5624 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5625 else
5626 _alsa=no
5627 res_comment="unknown version"
5629 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5630 else
5631 noaomodules="alsa $noaomodules"
5633 echores "$_alsa"
5636 echocheck "Sun audio"
5637 if test "$_sunaudio" = auto ; then
5638 cat > $TMPC << EOF
5639 #include <sys/types.h>
5640 #include <sys/audioio.h>
5641 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5643 _sunaudio=no
5644 cc_check && _sunaudio=yes
5646 if test "$_sunaudio" = yes ; then
5647 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5648 aomodules="sun $aomodules"
5649 else
5650 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5651 noaomodules="sun $noaomodules"
5653 echores "$_sunaudio"
5656 def_mlib='#define CONFIG_MLIB 0'
5657 if sunos; then
5658 echocheck "Sun mediaLib"
5659 if test "$_mlib" = auto ; then
5660 _mlib=no
5661 cat > $TMPC << EOF
5662 #include <mlib.h>
5663 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5665 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5667 echores "$_mlib"
5668 fi #if sunos
5671 if darwin; then
5672 echocheck "CoreAudio"
5673 if test "$_coreaudio" = auto ; then
5674 cat > $TMPC <<EOF
5675 #include <CoreAudio/CoreAudio.h>
5676 #include <AudioToolbox/AudioToolbox.h>
5677 #include <AudioUnit/AudioUnit.h>
5678 int main(void) { return 0; }
5680 _coreaudio=no
5681 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5683 if test "$_coreaudio" = yes ; then
5684 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5685 def_coreaudio='#define CONFIG_COREAUDIO 1'
5686 aomodules="coreaudio $aomodules"
5687 else
5688 def_coreaudio='#undef CONFIG_COREAUDIO'
5689 noaomodules="coreaudio $noaomodules"
5691 echores $_coreaudio
5692 fi #if darwin
5695 if irix; then
5696 echocheck "SGI audio"
5697 if test "$_sgiaudio" = auto ; then
5698 _sgiaudio=no
5699 header_check dmedia/audio.h && _sgiaudio=yes
5701 if test "$_sgiaudio" = "yes" ; then
5702 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5703 libs_mplayer="$libs_mplayer -laudio"
5704 aomodules="sgi $aomodules"
5705 else
5706 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5707 noaomodules="sgi $noaomodules"
5709 echores "$_sgiaudio"
5710 fi #if irix
5713 if os2 ; then
5714 echocheck "KAI (UNIAUD/DART)"
5715 if test "$_kai" = auto; then
5716 cat > $TMPC << EOF
5717 #include <os2.h>
5718 #include <kai.h>
5719 int main(void) { return 0; }
5721 _kai=no;
5722 cc_check -lkai && _kai=yes
5724 if test "$_kai" = yes ; then
5725 def_kai='#define CONFIG_KAI 1'
5726 libs_mplayer="$libs_mplayer -lkai"
5727 aomodules="kai $aomodules"
5728 else
5729 def_kai='#undef CONFIG_KAI'
5730 noaomodules="kai $noaomodules"
5732 echores "$_kai"
5734 echocheck "DART"
5735 if test "$_dart" = auto; then
5736 cat > $TMPC << EOF
5737 #include <os2.h>
5738 #include <dart.h>
5739 int main(void) { return 0; }
5741 _dart=no;
5742 cc_check -ldart && _dart=yes
5744 if test "$_dart" = yes ; then
5745 def_dart='#define CONFIG_DART 1'
5746 libs_mplayer="$libs_mplayer -ldart"
5747 aomodules="dart $aomodules"
5748 else
5749 def_dart='#undef CONFIG_DART'
5750 noaomodules="dart $noaomodules"
5752 echores "$_dart"
5753 fi #if os2
5756 # set default CD/DVD devices
5757 if win32 || os2 ; then
5758 default_cdrom_device="D:"
5759 elif darwin ; then
5760 default_cdrom_device="/dev/disk1"
5761 elif dragonfly ; then
5762 default_cdrom_device="/dev/cd0"
5763 elif freebsd ; then
5764 default_cdrom_device="/dev/acd0"
5765 elif openbsd ; then
5766 default_cdrom_device="/dev/rcd0a"
5767 elif sunos ; then
5768 default_cdrom_device="/vol/dev/aliases/cdrom0"
5769 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5770 # file system and the volfs service.
5771 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5772 elif amigaos ; then
5773 default_cdrom_device="a1ide.device:2"
5774 else
5775 default_cdrom_device="/dev/cdrom"
5778 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5779 default_dvd_device=$default_cdrom_device
5780 elif darwin ; then
5781 default_dvd_device="/dev/rdiskN"
5782 else
5783 default_dvd_device="/dev/dvd"
5787 echocheck "VCD support"
5788 if test "$_vcd" = auto; then
5789 _vcd=no
5790 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5791 _vcd=yes
5792 elif mingw32; then
5793 header_check ddk/ntddcdrm.h && _vcd=yes
5796 if test "$_vcd" = yes; then
5797 inputmodules="vcd $inputmodules"
5798 def_vcd='#define CONFIG_VCD 1'
5799 else
5800 def_vcd='#undef CONFIG_VCD'
5801 noinputmodules="vcd $noinputmodules"
5802 res_comment="not supported on this OS"
5804 echores "$_vcd"
5808 echocheck "Blu-ray support"
5809 if test "$_bluray" = auto ; then
5810 _bluray=no
5812 cat > $TMPC << EOF
5813 #include <stdlib.h>
5814 #include <libbluray/bluray.h>
5815 int main(void) {
5816 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5817 return 0;
5820 compile_check $TMPC -lbluray && _bluray=yes
5822 if test "$_bluray" = yes ; then
5823 def_bluray='#define CONFIG_LIBBLURAY 1'
5824 extra_ldflags="$extra_ldflags -lbluray"
5825 inputmodules="bluray $inputmodules"
5826 else
5827 def_bluray='#undef CONFIG_LIBBLURAY'
5828 noinputmodules="bluray $noinputmodules"
5830 echores "$_bluray"
5832 echocheck "dvdread"
5833 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5834 _dvdread_internal=no
5836 if test "$_dvdread_internal" = auto ; then
5837 _dvdread_internal=no
5838 _dvdread=no
5839 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5840 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5841 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5842 || darwin || win32 || os2; then
5843 _dvdread_internal=yes
5844 _dvdread=yes
5845 extra_cflags="-Ilibdvdread4 $extra_cflags"
5847 elif test "$_dvdread" = auto ; then
5848 _dvdread=no
5849 if test "$_dl" = yes; then
5850 cat > $TMPC << EOF
5851 #include <inttypes.h>
5852 #include <dvdread/dvd_reader.h>
5853 #include <dvdread/ifo_types.h>
5854 #include <dvdread/ifo_read.h>
5855 #include <dvdread/nav_read.h>
5856 int main(void) { return 0; }
5858 _dvdreadcflags=$($_dvdreadconfig --cflags)
5859 _dvdreadlibs=$($_dvdreadconfig --libs)
5860 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5861 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5862 _dvdread=yes
5863 extra_cflags="$extra_cflags $_dvdreadcflags"
5864 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5865 res_comment="external"
5870 if test "$_dvdread_internal" = yes; then
5871 def_dvdread='#define CONFIG_DVDREAD 1'
5872 inputmodules="dvdread(internal) $inputmodules"
5873 _largefiles=yes
5874 res_comment="internal"
5875 elif test "$_dvdread" = yes; then
5876 def_dvdread='#define CONFIG_DVDREAD 1'
5877 _largefiles=yes
5878 extra_ldflags="$extra_ldflags -ldvdread"
5879 inputmodules="dvdread(external) $inputmodules"
5880 res_comment="external"
5881 else
5882 def_dvdread='#undef CONFIG_DVDREAD'
5883 noinputmodules="dvdread $noinputmodules"
5885 echores "$_dvdread"
5888 echocheck "internal libdvdcss"
5889 if test "$_libdvdcss_internal" = auto ; then
5890 _libdvdcss_internal=no
5891 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5892 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5894 if test "$_libdvdcss_internal" = yes ; then
5895 if linux || netbsd || openbsd || bsdos ; then
5896 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5897 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5898 elif freebsd || dragonfly ; then
5899 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5900 elif darwin ; then
5901 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5902 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5903 elif cygwin ; then
5904 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5905 elif beos ; then
5906 cflags_libdvdcss="-DSYS_BEOS"
5907 elif os2 ; then
5908 cflags_libdvdcss="-DSYS_OS2"
5910 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5911 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5912 inputmodules="libdvdcss(internal) $inputmodules"
5913 _largefiles=yes
5914 else
5915 noinputmodules="libdvdcss(internal) $noinputmodules"
5917 echores "$_libdvdcss_internal"
5920 echocheck "cdparanoia"
5921 if test "$_cdparanoia" = auto ; then
5922 cat > $TMPC <<EOF
5923 #include <cdda_interface.h>
5924 #include <cdda_paranoia.h>
5925 // This need a better test. How ?
5926 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5928 _cdparanoia=no
5929 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5930 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5931 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5932 done
5934 if test "$_cdparanoia" = yes ; then
5935 _cdda='yes'
5936 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5937 openbsd && extra_ldflags="$extra_ldflags -lutil"
5939 echores "$_cdparanoia"
5942 echocheck "libcdio"
5943 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5944 cat > $TMPC << EOF
5945 #include <stdio.h>
5946 #include <cdio/version.h>
5947 #include <cdio/cdda.h>
5948 #include <cdio/paranoia.h>
5949 int main(void) {
5950 void *test = cdda_verbose_set;
5951 printf("%s\n", CDIO_VERSION);
5952 return test == (void *)1;
5955 _libcdio=no
5956 for _ld_tmp in "" "-lwinmm" ; do
5957 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5958 cc_check $_ld_tmp $_ld_lm \
5959 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5960 done
5961 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5962 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5963 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5964 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5965 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5968 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5969 _cdda='yes'
5970 def_libcdio='#define CONFIG_LIBCDIO 1'
5971 def_havelibcdio='yes'
5972 else
5973 if test "$_cdparanoia" = yes ; then
5974 res_comment="using cdparanoia"
5976 def_libcdio='#undef CONFIG_LIBCDIO'
5977 def_havelibcdio='no'
5979 echores "$_libcdio"
5981 if test "$_cdda" = yes ; then
5982 test $_cddb = auto && test $networking = yes && _cddb=yes
5983 def_cdparanoia='#define CONFIG_CDDA 1'
5984 inputmodules="cdda $inputmodules"
5985 else
5986 def_cdparanoia='#undef CONFIG_CDDA'
5987 noinputmodules="cdda $noinputmodules"
5990 if test "$_cddb" = yes ; then
5991 def_cddb='#define CONFIG_CDDB 1'
5992 inputmodules="cddb $inputmodules"
5993 else
5994 _cddb=no
5995 def_cddb='#undef CONFIG_CDDB'
5996 noinputmodules="cddb $noinputmodules"
5999 echocheck "bitmap font support"
6000 if test "$_bitmap_font" = yes ; then
6001 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6002 else
6003 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6005 echores "$_bitmap_font"
6008 echocheck "freetype >= 2.0.9"
6010 # freetype depends on iconv
6011 if test "$_iconv" = no ; then
6012 _freetype=no
6013 res_comment="iconv support needed"
6016 if test "$_freetype" = auto ; then
6017 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6018 cat > $TMPC << EOF
6019 #include <stdio.h>
6020 #include <ft2build.h>
6021 #include FT_FREETYPE_H
6022 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6023 #error "Need FreeType 2.0.9 or newer"
6024 #endif
6025 int main(void) {
6026 FT_Library library;
6027 FT_Int major=-1,minor=-1,patch=-1;
6028 int err=FT_Init_FreeType(&library);
6029 return 0;
6032 _freetype=no
6033 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6034 else
6035 _freetype=no
6038 if test "$_freetype" = yes ; then
6039 def_freetype='#define CONFIG_FREETYPE 1'
6040 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6041 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6042 else
6043 def_freetype='#undef CONFIG_FREETYPE'
6045 echores "$_freetype"
6047 if test "$_freetype" = no ; then
6048 _fontconfig=no
6049 res_comment="FreeType support needed"
6051 echocheck "fontconfig"
6052 if test "$_fontconfig" = auto ; then
6053 cat > $TMPC << EOF
6054 #include <stdio.h>
6055 #include <stdlib.h>
6056 #include <fontconfig/fontconfig.h>
6057 #if FC_VERSION < 20402
6058 #error At least version 2.4.2 of fontconfig required
6059 #endif
6060 int main(void) {
6061 int err = FcInit();
6062 if (err == FcFalse) {
6063 printf("Couldn't initialize fontconfig lib\n");
6064 exit(err);
6066 return 0;
6069 _fontconfig=no
6070 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6071 _ld_tmp="-lfontconfig $_ld_tmp"
6072 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6073 done
6074 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6075 _inc_tmp=$($_pkg_config --cflags fontconfig)
6076 _ld_tmp=$($_pkg_config --libs fontconfig)
6077 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6078 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6081 if test "$_fontconfig" = yes ; then
6082 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6083 else
6084 def_fontconfig='#undef CONFIG_FONTCONFIG'
6086 echores "$_fontconfig"
6089 echocheck "SSA/ASS support"
6090 if test "$_ass" = auto -o "$_ass" = yes ; then
6091 if $_pkg_config libass; then
6092 _ass=yes
6093 def_ass='#define CONFIG_ASS 1'
6094 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6095 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6096 else
6097 _ass=no
6098 def_ass='#undef CONFIG_ASS'
6100 else
6101 def_ass='#undef CONFIG_ASS'
6103 echores "$_ass"
6106 echocheck "fribidi with charsets"
6107 _inc_tmp=""
6108 _ld_tmp=""
6109 if test "$_fribidi" = auto ; then
6110 cat > $TMPC << EOF
6111 #include <stdlib.h>
6112 /* workaround for fribidi 0.10.4 and below */
6113 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6114 #include <fribidi/fribidi.h>
6115 int main(void) {
6116 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6117 exit(1);
6118 return 0;
6121 _fribidi=no
6122 _inc_tmp=""
6123 _ld_tmp="-lfribidi"
6124 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6125 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6126 test "$_fribidi" = no ; then
6127 _inc_tmp="$($_pkg_config --cflags)"
6128 _ld_tmp="$($_pkg_config --libs)"
6129 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6132 if test "$_fribidi" = yes ; then
6133 def_fribidi='#define CONFIG_FRIBIDI 1'
6134 extra_cflags="$extra_cflags $_inc_tmp"
6135 extra_ldflags="$extra_ldflags $_ld_tmp"
6136 else
6137 def_fribidi='#undef CONFIG_FRIBIDI'
6139 echores "$_fribidi"
6142 echocheck "ENCA"
6143 if test "$_enca" = auto ; then
6144 cat > $TMPC << EOF
6145 #include <sys/types.h>
6146 #include <enca.h>
6147 int main(void) {
6148 const char **langs;
6149 size_t langcnt;
6150 langs = enca_get_languages(&langcnt);
6151 return 0;
6154 _enca=no
6155 cc_check -lenca $_ld_lm && _enca=yes
6157 if test "$_enca" = yes ; then
6158 def_enca='#define CONFIG_ENCA 1'
6159 extra_ldflags="$extra_ldflags -lenca"
6160 else
6161 def_enca='#undef CONFIG_ENCA'
6163 echores "$_enca"
6166 echocheck "zlib"
6167 cat > $TMPC << EOF
6168 #include <zlib.h>
6169 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6171 _zlib=no
6172 cc_check -lz && _zlib=yes
6173 if test "$_zlib" = yes ; then
6174 def_zlib='#define CONFIG_ZLIB 1'
6175 extra_ldflags="$extra_ldflags -lz"
6176 else
6177 def_zlib='#define CONFIG_ZLIB 0'
6179 echores "$_zlib"
6182 echocheck "bzlib"
6183 bzlib=no
6184 def_bzlib='#define CONFIG_BZLIB 0'
6185 cat > $TMPC << EOF
6186 #include <bzlib.h>
6187 int main(void) { BZ2_bzlibVersion(); return 0; }
6189 cc_check -lbz2 && bzlib=yes
6190 if test "$bzlib" = yes ; then
6191 def_bzlib='#define CONFIG_BZLIB 1'
6192 extra_ldflags="$extra_ldflags -lbz2"
6194 echores "$bzlib"
6197 echocheck "RTC"
6198 if test "$_rtc" = auto ; then
6199 cat > $TMPC << EOF
6200 #include <sys/ioctl.h>
6201 #ifdef __linux__
6202 #include <linux/rtc.h>
6203 #else
6204 #include <rtc.h>
6205 #define RTC_PIE_ON RTCIO_PIE_ON
6206 #endif
6207 int main(void) { return RTC_PIE_ON; }
6209 _rtc=no
6210 cc_check && _rtc=yes
6211 ppc && _rtc=no
6213 if test "$_rtc" = yes ; then
6214 def_rtc='#define HAVE_RTC 1'
6215 else
6216 def_rtc='#undef HAVE_RTC'
6218 echores "$_rtc"
6221 echocheck "liblzo2 support"
6222 if test "$_liblzo" = auto ; then
6223 _liblzo=no
6224 cat > $TMPC << EOF
6225 #include <lzo/lzo1x.h>
6226 int main(void) { lzo_init(); return 0; }
6228 cc_check -llzo2 && _liblzo=yes
6230 if test "$_liblzo" = yes ; then
6231 def_liblzo='#define CONFIG_LIBLZO 1'
6232 extra_ldflags="$extra_ldflags -llzo2"
6233 codecmodules="liblzo $codecmodules"
6234 else
6235 def_liblzo='#undef CONFIG_LIBLZO'
6236 nocodecmodules="liblzo $nocodecmodules"
6238 echores "$_liblzo"
6241 echocheck "mad support"
6242 if test "$_mad" = auto ; then
6243 _mad=no
6244 header_check mad.h -lmad && _mad=yes
6246 if test "$_mad" = yes ; then
6247 def_mad='#define CONFIG_LIBMAD 1'
6248 extra_ldflags="$extra_ldflags -lmad"
6249 codecmodules="libmad $codecmodules"
6250 else
6251 def_mad='#undef CONFIG_LIBMAD'
6252 nocodecmodules="libmad $nocodecmodules"
6254 echores "$_mad"
6256 echocheck "Twolame"
6257 if test "$_twolame" = auto ; then
6258 cat > $TMPC <<EOF
6259 #include <twolame.h>
6260 int main(void) { twolame_init(); return 0; }
6262 _twolame=no
6263 cc_check -ltwolame $_ld_lm && _twolame=yes
6265 if test "$_twolame" = yes ; then
6266 def_twolame='#define CONFIG_TWOLAME 1'
6267 libs_mencoder="$libs_mencoder -ltwolame"
6268 codecmodules="twolame $codecmodules"
6269 else
6270 def_twolame='#undef CONFIG_TWOLAME'
6271 nocodecmodules="twolame $nocodecmodules"
6273 echores "$_twolame"
6275 echocheck "Toolame"
6276 if test "$_toolame" = auto ; then
6277 _toolame=no
6278 if test "$_twolame" = yes ; then
6279 res_comment="disabled by twolame"
6280 else
6281 cat > $TMPC <<EOF
6282 #include <toolame.h>
6283 int main(void) { toolame_init(); return 0; }
6285 cc_check -ltoolame $_ld_lm && _toolame=yes
6288 if test "$_toolame" = yes ; then
6289 def_toolame='#define CONFIG_TOOLAME 1'
6290 libs_mencoder="$libs_mencoder -ltoolame"
6291 codecmodules="toolame $codecmodules"
6292 else
6293 def_toolame='#undef CONFIG_TOOLAME'
6294 nocodecmodules="toolame $nocodecmodules"
6296 if test "$_toolamedir" ; then
6297 res_comment="using $_toolamedir"
6299 echores "$_toolame"
6301 echocheck "OggVorbis support"
6302 if test "$_tremor_internal" = yes; then
6303 _libvorbis=no
6304 elif test "$_tremor" = auto; then
6305 _tremor=no
6306 cat > $TMPC << EOF
6307 #include <tremor/ivorbiscodec.h>
6308 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6310 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6312 if test "$_libvorbis" = auto; then
6313 _libvorbis=no
6314 cat > $TMPC << EOF
6315 #include <vorbis/codec.h>
6316 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6318 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6320 if test "$_tremor_internal" = yes ; then
6321 _vorbis=yes
6322 def_vorbis='#define CONFIG_OGGVORBIS 1'
6323 def_tremor='#define CONFIG_TREMOR 1'
6324 codecmodules="tremor(internal) $codecmodules"
6325 res_comment="internal Tremor"
6326 if test "$_tremor_low" = yes ; then
6327 cflags_tremor_low="-D_LOW_ACCURACY_"
6328 res_comment="internal low accuracy Tremor"
6330 elif test "$_tremor" = yes ; then
6331 _vorbis=yes
6332 def_vorbis='#define CONFIG_OGGVORBIS 1'
6333 def_tremor='#define CONFIG_TREMOR 1'
6334 codecmodules="tremor(external) $codecmodules"
6335 res_comment="external Tremor"
6336 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6337 elif test "$_libvorbis" = yes ; then
6338 _vorbis=yes
6339 def_vorbis='#define CONFIG_OGGVORBIS 1'
6340 codecmodules="libvorbis $codecmodules"
6341 res_comment="libvorbis"
6342 extra_ldflags="$extra_ldflags -lvorbis -logg"
6343 else
6344 _vorbis=no
6345 nocodecmodules="libvorbis $nocodecmodules"
6347 echores "$_vorbis"
6349 echocheck "libspeex (version >= 1.1 required)"
6350 if test "$_speex" = auto ; then
6351 _speex=no
6352 cat > $TMPC << EOF
6353 #include <speex/speex.h>
6354 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6356 cc_check -lspeex $_ld_lm && _speex=yes
6358 if test "$_speex" = yes ; then
6359 def_speex='#define CONFIG_SPEEX 1'
6360 extra_ldflags="$extra_ldflags -lspeex"
6361 codecmodules="speex $codecmodules"
6362 else
6363 def_speex='#undef CONFIG_SPEEX'
6364 nocodecmodules="speex $nocodecmodules"
6366 echores "$_speex"
6368 echocheck "OggTheora support"
6369 if test "$_theora" = auto ; then
6370 _theora=no
6371 cat > $TMPC << EOF
6372 #include <theora/theora.h>
6373 #include <string.h>
6374 int main(void) {
6375 /* Theora is in flux, make sure that all interface routines and datatypes
6376 * exist and work the way we expect it, so we don't break MPlayer. */
6377 ogg_packet op;
6378 theora_comment tc;
6379 theora_info inf;
6380 theora_state st;
6381 yuv_buffer yuv;
6382 int r;
6383 double t;
6385 theora_info_init(&inf);
6386 theora_comment_init(&tc);
6388 return 0;
6390 /* we don't want to execute this kind of nonsense; just for making sure
6391 * that compilation works... */
6392 memset(&op, 0, sizeof(op));
6393 r = theora_decode_header(&inf, &tc, &op);
6394 r = theora_decode_init(&st, &inf);
6395 t = theora_granule_time(&st, op.granulepos);
6396 r = theora_decode_packetin(&st, &op);
6397 r = theora_decode_YUVout(&st, &yuv);
6398 theora_clear(&st);
6400 return 0;
6403 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6404 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6405 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6406 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6407 if test _theora = no; then
6408 _ld_theora="-ltheora -logg"
6409 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6411 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6412 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6413 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6414 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6415 extra_ldflags="$extra_ldflags $_ld_theora" &&
6416 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6417 if test _theora = no; then
6418 _ld_theora="-ltheora -logg"
6419 cc_check tremor/bitwise.c $_ld_theora &&
6420 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6424 if test "$_theora" = yes ; then
6425 def_theora='#define CONFIG_OGGTHEORA 1'
6426 codecmodules="libtheora $codecmodules"
6427 # when --enable-theora is forced, we'd better provide a probably sane
6428 # $_ld_theora than nothing
6429 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6430 else
6431 def_theora='#undef CONFIG_OGGTHEORA'
6432 nocodecmodules="libtheora $nocodecmodules"
6434 echores "$_theora"
6436 echocheck "mp3lib support"
6437 if test "$_mp3lib" = auto ; then
6438 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6440 if test "$_mp3lib" = yes ; then
6441 def_mp3lib='#define CONFIG_MP3LIB 1'
6442 codecmodules="mp3lib(internal) $codecmodules"
6443 else
6444 def_mp3lib='#undef CONFIG_MP3LIB'
6445 nocodecmodules="mp3lib(internal) $nocodecmodules"
6447 echores "$_mp3lib"
6449 # Any version of libmpg123 shall be fine.
6450 echocheck "mpg123 support"
6451 def_mpg123='#undef CONFIG_MPG123'
6452 if test "$_mpg123" = auto; then
6453 _mpg123=no
6454 cat > $TMPC <<EOF
6455 #include <mpg123.h>
6456 int main(void){ mpg123_init(); return 0; }
6458 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6460 if test "$_mpg123" = yes ; then
6461 def_mpg123='#define CONFIG_MPG123 1'
6462 codecmodules="mpg123 $codecmodules"
6463 else
6464 nocodecmodules="mpg123 $nocodecmodules"
6466 echores "$_mpg123"
6468 echocheck "liba52 support"
6469 def_liba52='#undef CONFIG_LIBA52'
6470 if test "$_liba52" = auto ; then
6471 _liba52=no
6472 cat > $TMPC << EOF
6473 #include <inttypes.h>
6474 #include <a52dec/a52.h>
6475 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6477 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6479 if test "$_liba52" = yes ; then
6480 def_liba52='#define CONFIG_LIBA52 1'
6481 codecmodules="liba52 $codecmodules"
6482 else
6483 nocodecmodules="liba52 $nocodecmodules"
6485 echores "$_liba52"
6487 echocheck "internal libmpeg2 support"
6488 if test "$_libmpeg2" = auto ; then
6489 _libmpeg2=yes
6490 if alpha && test cc_vendor=gnu; then
6491 case $cc_version in
6492 2*|3.0*|3.1*) # cannot compile MVI instructions
6493 _libmpeg2=no
6494 res_comment="broken gcc"
6496 esac
6499 if test "$_libmpeg2" = yes ; then
6500 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6501 codecmodules="libmpeg2(internal) $codecmodules"
6502 else
6503 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6504 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6506 echores "$_libmpeg2"
6508 echocheck "libdca support"
6509 if test "$_libdca" = auto ; then
6510 _libdca=no
6511 cat > $TMPC << EOF
6512 #include <inttypes.h>
6513 #include <dts.h>
6514 int main(void) { dts_init(0); return 0; }
6516 for _ld_dca in -ldca -ldts ; do
6517 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6518 && _libdca=yes && break
6519 done
6521 if test "$_libdca" = yes ; then
6522 def_libdca='#define CONFIG_LIBDCA 1'
6523 codecmodules="libdca $codecmodules"
6524 else
6525 def_libdca='#undef CONFIG_LIBDCA'
6526 nocodecmodules="libdca $nocodecmodules"
6528 echores "$_libdca"
6530 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6531 if test "$_musepack" = auto ; then
6532 _musepack=no
6533 cat > $TMPC << EOF
6534 #include <stddef.h>
6535 #include <mpcdec/mpcdec.h>
6536 int main(void) {
6537 mpc_streaminfo info;
6538 mpc_decoder decoder;
6539 mpc_decoder_set_streaminfo(&decoder, &info);
6540 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6541 return 0;
6544 cc_check -lmpcdec $_ld_lm && _musepack=yes
6546 if test "$_musepack" = yes ; then
6547 def_musepack='#define CONFIG_MUSEPACK 1'
6548 extra_ldflags="$extra_ldflags -lmpcdec"
6549 codecmodules="musepack $codecmodules"
6550 else
6551 def_musepack='#undef CONFIG_MUSEPACK'
6552 nocodecmodules="musepack $nocodecmodules"
6554 echores "$_musepack"
6557 echocheck "FAAC support"
6558 if test "$_faac" = auto ; then
6559 cat > $TMPC <<EOF
6560 #include <inttypes.h>
6561 #include <faac.h>
6562 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6564 _faac=no
6565 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6566 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6567 done
6569 if test "$_faac" = yes ; then
6570 def_faac="#define CONFIG_FAAC 1"
6571 codecmodules="faac $codecmodules"
6572 else
6573 def_faac="#undef CONFIG_FAAC"
6574 nocodecmodules="faac $nocodecmodules"
6576 echores "$_faac"
6579 echocheck "FAAD2 support"
6580 if test "$_faad_internal" = auto ; then
6581 if x86_32 && test cc_vendor=gnu; then
6582 case $cc_version in
6583 3.1*|3.2) # ICE/insn with these versions
6584 _faad_internal=no
6585 res_comment="broken gcc"
6588 _faad=yes
6589 _faad_internal=yes
6591 esac
6592 else
6593 _faad=yes
6594 _faad_internal=yes
6597 if test "$_faad" = auto ; then
6598 cat > $TMPC << EOF
6599 #include <faad.h>
6600 #ifndef FAAD_MIN_STREAMSIZE
6601 #error Too old version
6602 #endif
6603 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6604 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6606 cc_check -lfaad $_ld_lm && _faad=yes
6609 def_faad='#undef CONFIG_FAAD'
6610 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6611 if test "$_faad_internal" = yes ; then
6612 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6613 res_comment="internal floating-point"
6614 if test "$_faad_fixed" = yes ; then
6615 # The FIXED_POINT implementation of FAAD2 improves performance
6616 # on some platforms, especially for SBR files.
6617 cflags_faad_fixed="-DFIXED_POINT"
6618 res_comment="internal fixed-point"
6620 elif test "$_faad" = yes ; then
6621 extra_ldflags="$extra_ldflags -lfaad"
6624 if test "$_faad" = yes ; then
6625 def_faad='#define CONFIG_FAAD 1'
6626 if test "$_faad_internal" = yes ; then
6627 codecmodules="faad2(internal) $codecmodules"
6628 else
6629 codecmodules="faad2 $codecmodules"
6631 else
6632 _faad=no
6633 nocodecmodules="faad2 $nocodecmodules"
6635 echores "$_faad"
6638 echocheck "LADSPA plugin support"
6639 if test "$_ladspa" = auto ; then
6640 cat > $TMPC <<EOF
6641 #include <ladspa.h>
6642 int main(void) {
6643 LADSPA_Descriptor ld = {0};
6644 return 0;
6647 _ladspa=no
6648 cc_check && _ladspa=yes
6650 if test "$_ladspa" = yes; then
6651 def_ladspa="#define CONFIG_LADSPA 1"
6652 else
6653 def_ladspa="#undef CONFIG_LADSPA"
6655 echores "$_ladspa"
6658 echocheck "libbs2b audio filter support"
6659 if test "$_libbs2b" = auto ; then
6660 cat > $TMPC <<EOF
6661 #include <bs2b.h>
6662 #if BS2B_VERSION_MAJOR < 3
6663 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6664 #endif
6665 int main(void) {
6666 t_bs2bdp filter;
6667 filter=bs2b_open();
6668 bs2b_close(filter);
6669 return 0;
6672 _libbs2b=no
6673 if $_pkg_config --exists libbs2b ; then
6674 _inc_tmp=$($_pkg_config --cflags libbs2b)
6675 _ld_tmp=$($_pkg_config --libs libbs2b)
6676 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6677 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6678 else
6679 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6680 -I/usr/local/include/bs2b ; do
6681 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6682 extra_ldflags="$extra_ldflags -lbs2b"
6683 extra_cflags="$extra_cflags $_inc_tmp"
6684 _libbs2b=yes
6685 break
6687 done
6690 def_libbs2b="#undef CONFIG_LIBBS2B"
6691 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6692 echores "$_libbs2b"
6695 if test -z "$_codecsdir" ; then
6696 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6697 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6698 if test -d "$dir" ; then
6699 _codecsdir="$dir"
6700 break;
6702 done
6704 # Fall back on default directory.
6705 if test -z "$_codecsdir" ; then
6706 _codecsdir="$_libdir/codecs"
6707 mingw32 || os2 && _codecsdir="codecs"
6711 echocheck "Win32 codecs"
6712 if test "$_win32dll" = auto ; then
6713 _win32dll=no
6714 if x86_32 && ! qnx; then
6715 _win32dll=yes
6718 if test "$_win32dll" = yes ; then
6719 def_win32dll='#define CONFIG_WIN32DLL 1'
6720 if ! win32 ; then
6721 def_win32_loader='#define WIN32_LOADER 1'
6722 _win32_emulation=yes
6723 else
6724 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6725 res_comment="using native windows"
6727 codecmodules="win32 $codecmodules"
6728 else
6729 def_win32dll='#undef CONFIG_WIN32DLL'
6730 def_win32_loader='#undef WIN32_LOADER'
6731 nocodecmodules="win32 $nocodecmodules"
6733 echores "$_win32dll"
6736 echocheck "XAnim codecs"
6737 if test "$_xanim" = auto ; then
6738 _xanim=no
6739 res_comment="dynamic loader support needed"
6740 if test "$_dl" = yes ; then
6741 _xanim=yes
6744 if test "$_xanim" = yes ; then
6745 def_xanim='#define CONFIG_XANIM 1'
6746 codecmodules="xanim $codecmodules"
6747 else
6748 def_xanim='#undef CONFIG_XANIM'
6749 nocodecmodules="xanim $nocodecmodules"
6751 echores "$_xanim"
6754 echocheck "RealPlayer codecs"
6755 if test "$_real" = auto ; then
6756 _real=no
6757 res_comment="dynamic loader support needed"
6758 if test "$_dl" = yes || test "$_win32dll" = yes &&
6759 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6760 _real=yes
6763 if test "$_real" = yes ; then
6764 def_real='#define CONFIG_REALCODECS 1'
6765 codecmodules="real $codecmodules"
6766 else
6767 def_real='#undef CONFIG_REALCODECS'
6768 nocodecmodules="real $nocodecmodules"
6770 echores "$_real"
6773 echocheck "QuickTime codecs"
6774 _qtx_emulation=no
6775 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6776 if test "$_qtx" = auto ; then
6777 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6779 if test "$_qtx" = yes ; then
6780 def_qtx='#define CONFIG_QTX_CODECS 1'
6781 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6782 codecmodules="qtx $codecmodules"
6783 darwin || win32 || _qtx_emulation=yes
6784 else
6785 def_qtx='#undef CONFIG_QTX_CODECS'
6786 nocodecmodules="qtx $nocodecmodules"
6788 echores "$_qtx"
6790 echocheck "Nemesi Streaming Media libraries"
6791 if test "$_nemesi" = auto && test "$networking" = yes ; then
6792 _nemesi=no
6793 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6794 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6795 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6796 _nemesi=yes
6799 if test "$_nemesi" = yes; then
6800 _native_rtsp=no
6801 def_nemesi='#define CONFIG_LIBNEMESI 1'
6802 inputmodules="nemesi $inputmodules"
6803 else
6804 _native_rtsp="$networking"
6805 _nemesi=no
6806 def_nemesi='#undef CONFIG_LIBNEMESI'
6807 noinputmodules="nemesi $noinputmodules"
6809 echores "$_nemesi"
6811 echocheck "LIVE555 Streaming Media libraries"
6812 if test "$_live" = auto && test "$networking" = yes ; then
6813 cat > $TMPCPP << EOF
6814 #include <liveMedia.hh>
6815 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6816 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6817 #endif
6818 int main(void) { return 0; }
6821 _live=no
6822 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
6823 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6824 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6825 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6826 $_livelibdir/groupsock/libgroupsock.a \
6827 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6828 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6829 $extra_ldflags -lstdc++" \
6830 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6831 -I$_livelibdir/UsageEnvironment/include \
6832 -I$_livelibdir/BasicUsageEnvironment/include \
6833 -I$_livelibdir/groupsock/include" && \
6834 _live=yes && break
6835 done
6836 if test "$_live" != yes ; then
6837 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6838 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6839 _live_dist=yes
6843 if test "$_live" = yes && test "$networking" = yes; then
6844 test $_livelibdir && res_comment="using $_livelibdir"
6845 def_live='#define CONFIG_LIVE555 1'
6846 inputmodules="live555 $inputmodules"
6847 elif test "$_live_dist" = yes && test "$networking" = yes; then
6848 res_comment="using distribution version"
6849 _live="yes"
6850 def_live='#define CONFIG_LIVE555 1'
6851 extra_ldflags="$extra_ldflags $ld_tmp"
6852 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6853 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6854 inputmodules="live555 $inputmodules"
6855 else
6856 _live=no
6857 def_live='#undef CONFIG_LIVE555'
6858 noinputmodules="live555 $noinputmodules"
6860 echores "$_live"
6863 echocheck "FFmpeg libavutil"
6864 if test "$_libavutil" = auto ; then
6865 _libavutil=no
6866 cat > $TMPC << EOF
6867 #include <libavutil/common.h>
6868 int main(void) { av_clip(1, 1, 1); return 0; }
6870 if $_pkg_config --exists libavutil ; then
6871 _inc_libavutil=$($_pkg_config --cflags libavutil)
6872 _ld_tmp=$($_pkg_config --libs libavutil)
6873 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6874 && _libavutil=yes
6875 elif cc_check -lavutil $_ld_lm ; then
6876 extra_ldflags="$extra_ldflags -lavutil"
6877 _libavutil=yes
6880 def_libavutil='#undef CONFIG_LIBAVUTIL'
6881 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6882 # libavutil is not available, but it is mandatory ...
6883 if test "$_libavutil" = no ; then
6884 die "You need libavutil, MPlayer will not compile without!"
6886 echores "$_libavutil"
6888 echocheck "FFmpeg libavcodec"
6889 if test "$_libavcodec" = auto ; then
6890 _libavcodec=no
6891 cat > $TMPC << EOF
6892 #include <libavcodec/avcodec.h>
6893 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6895 if $_pkg_config --exists libavcodec ; then
6896 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6897 _ld_tmp=$($_pkg_config --libs libavcodec)
6898 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6899 && _libavcodec=yes
6900 elif cc_check -lavcodec $_ld_lm ; then
6901 extra_ldflags="$extra_ldflags -lavcodec"
6902 _libavcodec=yes
6905 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6906 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6907 if test "$_libavcodec" = yes ; then
6908 codecmodules="libavcodec $codecmodules"
6909 else
6910 nocodecmodules="libavcodec $nocodecmodules"
6912 echores "$_libavcodec"
6914 echocheck "FFmpeg libavformat"
6915 if test "$_libavformat" = auto ; then
6916 _libavformat=no
6917 cat > $TMPC <<EOF
6918 #include <libavformat/avformat.h>
6919 int main(void) { av_alloc_format_context(); return 0; }
6921 if $_pkg_config --exists libavformat ; then
6922 _inc_libavformat=$($_pkg_config --cflags libavformat)
6923 _ld_tmp=$($_pkg_config --libs libavformat)
6924 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6925 && _libavformat=yes
6926 elif cc_check $_ld_lm -lavformat ; then
6927 extra_ldflags="$extra_ldflags -lavformat"
6928 _libavformat=yes
6931 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6932 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6933 echores "$_libavformat"
6935 echocheck "FFmpeg libpostproc"
6936 if test "$_libpostproc" = auto ; then
6937 _libpostproc=no
6938 cat > $TMPC << EOF
6939 #include <libpostproc/postprocess.h>
6940 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6942 if $_pkg_config --exists libpostproc ; then
6943 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6944 _ld_tmp=$($_pkg_config --libs libpostproc)
6945 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6946 && _libpostproc=yes
6947 elif cc_check -lpostproc $_ld_lm ; then
6948 extra_ldflags="$extra_ldflags -lpostproc"
6949 _libpostproc=yes
6952 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6953 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6954 echores "$_libpostproc"
6956 echocheck "FFmpeg libswscale"
6957 if test "$_libswscale" = auto ; then
6958 _libswscale=no
6959 cat > $TMPC << EOF
6960 #include <libswscale/swscale.h>
6961 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6963 if $_pkg_config --exists libswscale ; then
6964 _inc_libswscale=$($_pkg_config --cflags libswscale)
6965 _ld_tmp=$($_pkg_config --libs libswscale)
6966 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6967 && _libswscale=yes
6968 elif cc_check -lswscale ; then
6969 extra_ldflags="$extra_ldflags -lswscale"
6970 _libswscale=yes
6973 def_libswscale='#undef CONFIG_LIBSWSCALE'
6974 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6975 echores "$_libswscale"
6977 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6978 if ! test -z "$_ffmpeg_source" ; then
6979 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6982 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6983 if ! test -z "$_ffmpeg_source" ; then
6984 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6987 echocheck "libdv-0.9.5+"
6988 if test "$_libdv" = auto ; then
6989 _libdv=no
6990 cat > $TMPC <<EOF
6991 #include <libdv/dv.h>
6992 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6994 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6996 if test "$_libdv" = yes ; then
6997 def_libdv='#define CONFIG_LIBDV095 1'
6998 extra_ldflags="$extra_ldflags -ldv"
6999 codecmodules="libdv $codecmodules"
7000 else
7001 def_libdv='#undef CONFIG_LIBDV095'
7002 nocodecmodules="libdv $nocodecmodules"
7004 echores "$_libdv"
7007 echocheck "Xvid"
7008 if test "$_xvid" = auto ; then
7009 _xvid=no
7010 cat > $TMPC << EOF
7011 #include <xvid.h>
7012 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7014 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7015 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7016 done
7019 if test "$_xvid" = yes ; then
7020 def_xvid='#define CONFIG_XVID4 1'
7021 codecmodules="xvid $codecmodules"
7022 else
7023 def_xvid='#undef CONFIG_XVID4'
7024 nocodecmodules="xvid $nocodecmodules"
7026 echores "$_xvid"
7028 echocheck "x264"
7029 if test "$_x264" = auto ; then
7030 cat > $TMPC << EOF
7031 #include <inttypes.h>
7032 #include <x264.h>
7033 #if X264_BUILD < 98
7034 #error We do not support old versions of x264. Get the latest from git.
7035 #endif
7036 int main(void) { x264_encoder_open((void*)0); return 0; }
7038 _x264=no
7039 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7040 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7041 done
7044 if test "$_x264" = yes ; then
7045 def_x264='#define CONFIG_X264 1'
7046 codecmodules="x264 $codecmodules"
7047 else
7048 def_x264='#undef CONFIG_X264'
7049 nocodecmodules="x264 $nocodecmodules"
7051 echores "$_x264"
7053 echocheck "libnut"
7054 if test "$_libnut" = auto ; then
7055 cat > $TMPC << EOF
7056 #include <libnut.h>
7057 nut_context_tt * nut;
7058 int main(void) { (void)nut_error(0); return 0; }
7060 _libnut=no
7061 cc_check -lnut && _libnut=yes
7064 if test "$_libnut" = yes ; then
7065 def_libnut='#define CONFIG_LIBNUT 1'
7066 extra_ldflags="$extra_ldflags -lnut"
7067 else
7068 def_libnut='#undef CONFIG_LIBNUT'
7070 echores "$_libnut"
7072 # These VO checks must be done after libavcodec/libswscale one
7073 echocheck "/dev/mga_vid"
7074 if test "$_mga" = auto ; then
7075 _mga=no
7076 test -c /dev/mga_vid && _mga=yes
7078 if test "$_mga" = yes ; then
7079 if test "$_libswscale_internals" = yes ; then
7080 def_mga='#define CONFIG_MGA 1'
7081 vomodules="mga $vomodules"
7082 else
7083 res_comment="libswscale internal headers are required by mga, sorry"
7084 _mga=no
7085 def_mga='#undef CONFIG_MGA'
7086 novomodules="mga $novomodules"
7088 else
7089 def_mga='#undef CONFIG_MGA'
7090 novomodules="mga $novomodules"
7092 echores "$_mga"
7095 echocheck "xmga"
7096 if test "$_xmga" = auto ; then
7097 _xmga=no
7098 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7100 if test "$_xmga" = yes ; then
7101 if test "$_libswscale_internals" = yes ; then
7102 def_xmga='#define CONFIG_XMGA 1'
7103 vomodules="xmga $vomodules"
7104 else
7105 res_comment="libswscale internal headers are required by xmga, sorry"
7106 _xmga=no
7107 def_xmga='#undef CONFIG_XMGA'
7108 novomodules="xmga $novomodules"
7110 else
7111 def_xmga='#undef CONFIG_XMGA'
7112 novomodules="xmga $novomodules"
7114 echores "$_xmga"
7116 echocheck "zr"
7117 if test "$_zr" = auto ; then
7118 #36067's seem to identify themselves as 36057PQC's, so the line
7119 #below should work for 36067's and 36057's.
7120 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7121 _zr=yes
7122 else
7123 _zr=no
7126 if test "$_zr" = yes ; then
7127 if test "$_libavcodec_internals" = yes ; then
7128 def_zr='#define CONFIG_ZR 1'
7129 vomodules="zr zr2 $vomodules"
7130 else
7131 res_comment="libavcodec internal headers are required by zr, sorry"
7132 novomodules="zr $novomodules"
7133 def_zr='#undef CONFIG_ZR'
7135 else
7136 def_zr='#undef CONFIG_ZR'
7137 novomodules="zr zr2 $novomodules"
7139 echores "$_zr"
7141 # mencoder requires (optional) those libs: libmp3lame
7142 if test "$_mencoder" != no ; then
7144 echocheck "libmp3lame"
7145 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7146 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7147 if test "$_mp3lame" = auto ; then
7148 _mp3lame=no
7149 cat > $TMPC <<EOF
7150 #include <lame/lame.h>
7151 int main(void) { lame_version_t lv; (void) lame_init();
7152 get_lame_version_numerical(&lv);
7153 return 0; }
7155 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7157 if test "$_mp3lame" = yes ; then
7158 def_mp3lame="#define CONFIG_MP3LAME 1"
7159 _ld_mp3lame=-lmp3lame
7160 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7161 cat > $TMPC << EOF
7162 #include <lame/lame.h>
7163 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7165 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7166 cat > $TMPC << EOF
7167 #include <lame/lame.h>
7168 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7170 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7171 else
7172 def_mp3lame='#undef CONFIG_MP3LAME'
7174 echores "$_mp3lame"
7176 fi # test "$_mencoder" != no
7178 echocheck "mencoder"
7179 if test "$_mencoder" = yes ; then
7180 def_muxers='#define CONFIG_MUXERS 1'
7181 else
7182 def_muxers='#define CONFIG_MUXERS 0'
7184 echores "$_mencoder"
7187 echocheck "UnRAR executable"
7188 if test "$_unrar_exec" = auto ; then
7189 _unrar_exec="yes"
7190 mingw32 && _unrar_exec="no"
7192 if test "$_unrar_exec" = yes ; then
7193 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7194 else
7195 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7197 echores "$_unrar_exec"
7199 echocheck "TV interface"
7200 if test "$_tv" = yes ; then
7201 def_tv='#define CONFIG_TV 1'
7202 inputmodules="tv $inputmodules"
7203 else
7204 noinputmodules="tv $noinputmodules"
7205 def_tv='#undef CONFIG_TV'
7207 echores "$_tv"
7210 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7211 echocheck "*BSD BT848 bt8xx header"
7212 _ioctl_bt848_h=no
7213 for file in "machine/ioctl_bt848.h" \
7214 "dev/bktr/ioctl_bt848.h" \
7215 "dev/video/bktr/ioctl_bt848.h" \
7216 "dev/ic/bt8xx.h" ; do
7217 cat > $TMPC <<EOF
7218 #include <sys/types.h>
7219 #include <sys/ioctl.h>
7220 #include <$file>
7221 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7223 if cc_check ; then
7224 _ioctl_bt848_h=yes
7225 _ioctl_bt848_h_name="$file"
7226 break;
7228 done
7229 if test "$_ioctl_bt848_h" = yes ; then
7230 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7231 res_comment="using $_ioctl_bt848_h_name"
7232 else
7233 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7235 echores "$_ioctl_bt848_h"
7237 echocheck "*BSD ioctl_meteor.h"
7238 _ioctl_meteor_h=no
7239 for file in "machine/ioctl_meteor.h" \
7240 "dev/bktr/ioctl_meteor.h" \
7241 "dev/video/bktr/ioctl_meteor.h" ; do
7242 cat > $TMPC <<EOF
7243 #include <sys/types.h>
7244 #include <$file>
7245 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7247 if cc_check ; then
7248 _ioctl_meteor_h=yes
7249 _ioctl_meteor_h_name="$file"
7250 break;
7252 done
7253 if test "$_ioctl_meteor_h" = yes ; then
7254 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7255 res_comment="using $_ioctl_meteor_h_name"
7256 else
7257 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7259 echores "$_ioctl_meteor_h"
7261 echocheck "*BSD BrookTree 848 TV interface"
7262 if test "$_tv_bsdbt848" = auto ; then
7263 _tv_bsdbt848=no
7264 if test "$_tv" = yes ; then
7265 cat > $TMPC <<EOF
7266 #include <sys/types.h>
7267 $def_ioctl_meteor_h_name
7268 $def_ioctl_bt848_h_name
7269 #ifdef IOCTL_METEOR_H_NAME
7270 #include IOCTL_METEOR_H_NAME
7271 #endif
7272 #ifdef IOCTL_BT848_H_NAME
7273 #include IOCTL_BT848_H_NAME
7274 #endif
7275 int main(void) {
7276 ioctl(0, METEORSINPUT, 0);
7277 ioctl(0, TVTUNER_GETFREQ, 0);
7278 return 0;
7281 cc_check && _tv_bsdbt848=yes
7284 if test "$_tv_bsdbt848" = yes ; then
7285 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7286 inputmodules="tv-bsdbt848 $inputmodules"
7287 else
7288 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7289 noinputmodules="tv-bsdbt848 $noinputmodules"
7291 echores "$_tv_bsdbt848"
7292 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7295 echocheck "DirectShow TV interface"
7296 if test "$_tv_dshow" = auto ; then
7297 _tv_dshow=no
7298 if test "$_tv" = yes && win32 ; then
7299 cat > $TMPC <<EOF
7300 #include <ole2.h>
7301 int main(void) {
7302 void* p;
7303 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7304 return 0;
7307 cc_check -lole32 -luuid && _tv_dshow=yes
7310 if test "$_tv_dshow" = yes ; then
7311 inputmodules="tv-dshow $inputmodules"
7312 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7313 extra_ldflags="$extra_ldflags -lole32 -luuid"
7314 else
7315 noinputmodules="tv-dshow $noinputmodules"
7316 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7318 echores "$_tv_dshow"
7321 echocheck "Video 4 Linux TV interface"
7322 if test "$_tv_v4l1" = auto ; then
7323 _tv_v4l1=no
7324 if test "$_tv" = yes && linux ; then
7325 header_check linux/videodev.h && _tv_v4l1=yes
7328 if test "$_tv_v4l1" = yes ; then
7329 _audio_input=yes
7330 _tv_v4l=yes
7331 def_tv_v4l='#define CONFIG_TV_V4L 1'
7332 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7333 inputmodules="tv-v4l $inputmodules"
7334 else
7335 noinputmodules="tv-v4l1 $noinputmodules"
7336 def_tv_v4l='#undef CONFIG_TV_V4L'
7338 echores "$_tv_v4l1"
7341 echocheck "Video 4 Linux 2 TV interface"
7342 if test "$_tv_v4l2" = auto ; then
7343 _tv_v4l2=no
7344 if test "$_tv" = yes && linux ; then
7345 header_check linux/videodev2.h && _tv_v4l2=yes
7348 if test "$_tv_v4l2" = yes ; then
7349 _audio_input=yes
7350 _tv_v4l=yes
7351 def_tv_v4l='#define CONFIG_TV_V4L 1'
7352 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7353 inputmodules="tv-v4l2 $inputmodules"
7354 else
7355 noinputmodules="tv-v4l2 $noinputmodules"
7356 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7358 echores "$_tv_v4l2"
7361 echocheck "Radio interface"
7362 if test "$_radio" = yes ; then
7363 def_radio='#define CONFIG_RADIO 1'
7364 inputmodules="radio $inputmodules"
7365 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7366 _radio_capture=no
7368 if test "$_radio_capture" = yes ; then
7369 _audio_input=yes
7370 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7371 else
7372 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7374 else
7375 noinputmodules="radio $noinputmodules"
7376 def_radio='#undef CONFIG_RADIO'
7377 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7378 _radio_capture=no
7380 echores "$_radio"
7381 echocheck "Capture for Radio interface"
7382 echores "$_radio_capture"
7384 echocheck "Video 4 Linux 2 Radio interface"
7385 if test "$_radio_v4l2" = auto ; then
7386 _radio_v4l2=no
7387 if test "$_radio" = yes && linux ; then
7388 header_check linux/videodev2.h && _radio_v4l2=yes
7391 if test "$_radio_v4l2" = yes ; then
7392 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7393 else
7394 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7396 echores "$_radio_v4l2"
7398 echocheck "Video 4 Linux Radio interface"
7399 if test "$_radio_v4l" = auto ; then
7400 _radio_v4l=no
7401 if test "$_radio" = yes && linux ; then
7402 header_check linux/videodev.h && _radio_v4l=yes
7405 if test "$_radio_v4l" = yes ; then
7406 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7407 else
7408 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7410 echores "$_radio_v4l"
7412 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7413 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7414 echocheck "*BSD BrookTree 848 Radio interface"
7415 _radio_bsdbt848=no
7416 cat > $TMPC <<EOF
7417 #include <sys/types.h>
7418 $def_ioctl_bt848_h_name
7419 #ifdef IOCTL_BT848_H_NAME
7420 #include IOCTL_BT848_H_NAME
7421 #endif
7422 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7424 cc_check && _radio_bsdbt848=yes
7425 echores "$_radio_bsdbt848"
7426 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7428 if test "$_radio_bsdbt848" = yes ; then
7429 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7430 else
7431 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7434 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7435 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7436 die "Radio driver requires BSD BT848, V4L or V4L2!"
7439 echocheck "Video 4 Linux 2 MPEG PVR interface"
7440 if test "$_pvr" = auto ; then
7441 _pvr=no
7442 if test "$_tv_v4l2" = yes && linux ; then
7443 cat > $TMPC <<EOF
7444 #include <linux/videodev2.h>
7445 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7447 cc_check && _pvr=yes
7450 if test "$_pvr" = yes ; then
7451 def_pvr='#define CONFIG_PVR 1'
7452 inputmodules="pvr $inputmodules"
7453 else
7454 noinputmodules="pvr $noinputmodules"
7455 def_pvr='#undef CONFIG_PVR'
7457 echores "$_pvr"
7460 echocheck "ftp"
7461 if ! beos && test "$_ftp" = yes ; then
7462 def_ftp='#define CONFIG_FTP 1'
7463 inputmodules="ftp $inputmodules"
7464 else
7465 noinputmodules="ftp $noinputmodules"
7466 def_ftp='#undef CONFIG_FTP'
7468 echores "$_ftp"
7470 echocheck "vstream client"
7471 if test "$_vstream" = auto ; then
7472 _vstream=no
7473 cat > $TMPC <<EOF
7474 #include <vstream-client.h>
7475 void vstream_error(const char *format, ... ) {}
7476 int main(void) { vstream_start(); return 0; }
7478 cc_check -lvstream-client && _vstream=yes
7480 if test "$_vstream" = yes ; then
7481 def_vstream='#define CONFIG_VSTREAM 1'
7482 inputmodules="vstream $inputmodules"
7483 extra_ldflags="$extra_ldflags -lvstream-client"
7484 else
7485 noinputmodules="vstream $noinputmodules"
7486 def_vstream='#undef CONFIG_VSTREAM'
7488 echores "$_vstream"
7491 echocheck "OSD menu"
7492 if test "$_menu" = yes ; then
7493 def_menu='#define CONFIG_MENU 1'
7494 test $_dvbin = "yes" && _menu_dvbin=yes
7495 else
7496 def_menu='#undef CONFIG_MENU'
7497 _menu_dvbin=no
7499 echores "$_menu"
7502 echocheck "Subtitles sorting"
7503 if test "$_sortsub" = yes ; then
7504 def_sortsub='#define CONFIG_SORTSUB 1'
7505 else
7506 def_sortsub='#undef CONFIG_SORTSUB'
7508 echores "$_sortsub"
7511 echocheck "XMMS inputplugin support"
7512 if test "$_xmms" = yes ; then
7513 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7514 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7515 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7516 else
7517 _xmmsplugindir=/usr/lib/xmms/Input
7518 _xmmslibdir=/usr/lib
7521 def_xmms='#define CONFIG_XMMS 1'
7522 if darwin ; then
7523 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7524 else
7525 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7527 else
7528 def_xmms='#undef CONFIG_XMMS'
7530 echores "$_xmms"
7532 if test "$_charset" != "noconv" ; then
7533 def_charset="#define MSG_CHARSET \"$_charset\""
7534 else
7535 def_charset="#undef MSG_CHARSET"
7536 _charset="UTF-8"
7539 #############################################################################
7541 echocheck "automatic gdb attach"
7542 if test "$_crash_debug" = yes ; then
7543 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7544 else
7545 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7546 _crash_debug=no
7548 echores "$_crash_debug"
7550 echocheck "compiler support for noexecstack"
7551 if cflag_check -Wl,-z,noexecstack ; then
7552 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7553 echores "yes"
7554 else
7555 echores "no"
7558 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7559 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7560 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7561 echores "yes"
7562 else
7563 echores "no"
7567 # Dynamic linking flags
7568 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7569 _ld_dl_dynamic=''
7570 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7571 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7572 _ld_dl_dynamic='-rdynamic'
7575 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7576 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7577 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7579 def_debug='#undef MP_DEBUG'
7580 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7583 echocheck "joystick"
7584 def_joystick='#undef CONFIG_JOYSTICK'
7585 if test "$_joystick" = yes ; then
7586 if linux ; then
7587 # TODO add some check
7588 def_joystick='#define CONFIG_JOYSTICK 1'
7589 else
7590 _joystick="no"
7591 res_comment="unsupported under $system_name"
7594 echores "$_joystick"
7596 echocheck "lirc"
7597 if test "$_lirc" = auto ; then
7598 _lirc=no
7599 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7601 if test "$_lirc" = yes ; then
7602 def_lirc='#define CONFIG_LIRC 1'
7603 libs_mplayer="$libs_mplayer -llirc_client"
7604 else
7605 def_lirc='#undef CONFIG_LIRC'
7607 echores "$_lirc"
7609 echocheck "lircc"
7610 if test "$_lircc" = auto ; then
7611 _lircc=no
7612 header_check lirc/lircc.h -llircc && _lircc=yes
7614 if test "$_lircc" = yes ; then
7615 def_lircc='#define CONFIG_LIRCC 1'
7616 libs_mplayer="$libs_mplayer -llircc"
7617 else
7618 def_lircc='#undef CONFIG_LIRCC'
7620 echores "$_lircc"
7622 if arm; then
7623 # Detect maemo development platform libraries availability (http://www.maemo.org),
7624 # they are used when run on Nokia 770|8x0
7625 echocheck "maemo (Nokia 770|8x0)"
7626 if test "$_maemo" = auto ; then
7627 _maemo=no
7628 cat > $TMPC << EOF
7629 #include <libosso.h>
7630 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7632 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7634 if test "$_maemo" = yes ; then
7635 def_maemo='#define CONFIG_MAEMO 1'
7636 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7637 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7638 else
7639 def_maemo='#undef CONFIG_MAEMO'
7641 echores "$_maemo"
7644 #############################################################################
7646 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7647 # the OMF format needs to come after the 'extern symbol prefix' check, which
7648 # uses nm.
7649 if os2 ; then
7650 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7653 # linker paths should be the same for mencoder and mplayer
7654 _ld_tmp=""
7655 for I in $libs_mplayer ; do
7656 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7657 if test -z "$_tmp" ; then
7658 extra_ldflags="$extra_ldflags $I"
7659 else
7660 _ld_tmp="$_ld_tmp $I"
7662 done
7663 libs_mplayer=$_ld_tmp
7666 #############################################################################
7667 # 64 bit file offsets?
7668 if test "$_largefiles" = yes || freebsd ; then
7669 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7670 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7671 # dvdread support requires this (for off64_t)
7672 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7676 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7678 # This must be the last test to be performed. Any other tests following it
7679 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7680 # against libdvdread (to permit MPlayer to use its own copy of the library).
7681 # So any compilation using the flags added here but not linking against
7682 # libdvdread can fail.
7683 echocheck "DVD support (libdvdnav)"
7684 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7685 _dvdnav=no
7687 dvdnav_internal=no
7688 if test "$_dvdnav" = auto ; then
7689 if test "$_dvdread_internal" = yes ; then
7690 _dvdnav=yes
7691 dvdnav_internal=yes
7692 res_comment="internal"
7693 else
7694 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7697 if test "$_dvdnav" = auto ; then
7698 cat > $TMPC <<EOF
7699 #include <inttypes.h>
7700 #include <dvdnav/dvdnav.h>
7701 int main(void) { dvdnav_t *dvd=0; return 0; }
7703 _dvdnav=no
7704 _dvdnavdir=$($_dvdnavconfig --cflags)
7705 _dvdnavlibs=$($_dvdnavconfig --libs)
7706 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7708 if test "$_dvdnav" = yes ; then
7709 _largefiles=yes
7710 def_dvdnav='#define CONFIG_DVDNAV 1'
7711 if test "$dvdnav_internal" = yes ; then
7712 cflags_libdvdnav="-Ilibdvdnav"
7713 inputmodules="dvdnav(internal) $inputmodules"
7714 else
7715 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7716 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7717 inputmodules="dvdnav $inputmodules"
7719 else
7720 def_dvdnav='#undef CONFIG_DVDNAV'
7721 noinputmodules="dvdnav $noinputmodules"
7723 echores "$_dvdnav"
7725 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7726 # Read dvdnav comment above.
7728 mak_enable () {
7729 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7730 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7731 nprefix=$3;
7732 for part in $list; do
7733 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7734 echo "${nprefix}_$part = yes"
7736 done
7739 #############################################################################
7740 echo "Creating config.mak"
7741 cat > config.mak << EOF
7742 # -------- Generated by configure -----------
7744 # Ensure that locale settings do not interfere with shell commands.
7745 export LC_ALL = C
7747 CONFIGURATION = $configuration
7749 CHARSET = $_charset
7750 DOC_LANGS = $language_doc
7751 DOC_LANG_ALL = $doc_lang_all
7752 MAN_LANGS = $language_man
7753 MAN_LANG_ALL = $man_lang_all
7754 MSG_LANGS = $language_msg
7755 MSG_LANG_ALL = $msg_lang_all
7757 prefix = \$(DESTDIR)$_prefix
7758 BINDIR = \$(DESTDIR)$_bindir
7759 DATADIR = \$(DESTDIR)$_datadir
7760 LIBDIR = \$(DESTDIR)$_libdir
7761 MANDIR = \$(DESTDIR)$_mandir
7762 CONFDIR = \$(DESTDIR)$_confdir
7763 LOCALEDIR = \$(DESTDIR)$_localedir
7765 AR = $_ar
7766 AS = $_cc
7767 CC = $_cc
7768 CXX = $_cc
7769 HOST_CC = $_host_cc
7770 INSTALL = $_install
7771 INSTALLSTRIP = $_install_strip
7772 WINDRES = $_windres
7774 CFLAGS = $CFLAGS $extra_cflags
7775 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7776 DEPFLAGS = $DEPFLAGS
7778 CFLAGS_DHAHELPER = $cflags_dhahelper
7779 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7780 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7781 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7782 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7783 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7784 CFLAGS_STACKREALIGN = $cflags_stackrealign
7785 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7786 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7788 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7789 EXTRALIBS_MPLAYER = $libs_mplayer
7790 EXTRALIBS_MENCODER = $libs_mencoder
7792 GETCH = $_getch
7793 TIMER = $_timer
7795 EXESUF = $_exesuf
7796 EXESUFS_ALL = .exe
7798 ARCH = $arch
7799 $(mak_enable "$arch_all" "$arch" ARCH)
7800 $(mak_enable "$subarch_all" "$subarch" ARCH)
7801 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7803 MENCODER = $_mencoder
7804 MPLAYER = $_mplayer
7806 NEED_GETTIMEOFDAY = $_need_gettimeofday
7807 NEED_GLOB = $_need_glob
7808 NEED_MMAP = $_need_mmap
7809 NEED_SETENV = $_need_setenv
7810 NEED_SHMEM = $_need_shmem
7811 NEED_STRSEP = $_need_strsep
7812 NEED_SWAB = $_need_swab
7813 NEED_VSSCANF = $_need_vsscanf
7815 # features
7816 3DFX = $_3dfx
7817 AA = $_aa
7818 ALSA1X = $_alsa1x
7819 ALSA9 = $_alsa9
7820 ALSA5 = $_alsa5
7821 APPLE_IR = $_apple_ir
7822 APPLE_REMOTE = $_apple_remote
7823 ARTS = $_arts
7824 AUDIO_INPUT = $_audio_input
7825 BITMAP_FONT = $_bitmap_font
7826 BL = $_bl
7827 CACA = $_caca
7828 CDDA = $_cdda
7829 CDDB = $_cddb
7830 COREAUDIO = $_coreaudio
7831 COREVIDEO = $_corevideo
7832 DART = $_dart
7833 DFBMGA = $_dfbmga
7834 DGA = $_dga
7835 DIRECT3D = $_direct3d
7836 DIRECTFB = $_directfb
7837 DIRECTX = $_directx
7838 DVBIN = $_dvbin
7839 DVDNAV = $_dvdnav
7840 DVDNAV_INTERNAL = $dvdnav_internal
7841 DVDREAD = $_dvdread
7842 DVDREAD_INTERNAL = $_dvdread_internal
7843 DXR2 = $_dxr2
7844 DXR3 = $_dxr3
7845 ESD = $_esd
7846 FAAC=$_faac
7847 FAAD = $_faad
7848 FAAD_INTERNAL = $_faad_internal
7849 FASTMEMCPY = $_fastmemcpy
7850 FBDEV = $_fbdev
7851 FREETYPE = $_freetype
7852 FTP = $_ftp
7853 GIF = $_gif
7854 GGI = $_ggi
7855 GL = $_gl
7856 GL_WIN32 = $_gl_win32
7857 GL_X11 = $_gl_x11
7858 GL_SDL = $_gl_sdl
7859 MATRIXVIEW = $matrixview
7860 HAVE_POSIX_SELECT = $_posix_select
7861 HAVE_SYS_MMAN_H = $_mman
7862 IVTV = $_ivtv
7863 JACK = $_jack
7864 JOYSTICK = $_joystick
7865 JPEG = $_jpeg
7866 KAI = $_kai
7867 KVA = $_kva
7868 LADSPA = $_ladspa
7869 LIBA52 = $_liba52
7870 LIBASS = $_ass
7871 LIBBLURAY = $_bluray
7872 LIBBS2B = $_libbs2b
7873 LIBDCA = $_libdca
7874 LIBDV = $_libdv
7875 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7876 LIBLZO = $_liblzo
7877 LIBMAD = $_mad
7878 LIBMENU = $_menu
7879 LIBMENU_DVBIN = $_menu_dvbin
7880 LIBMPEG2 = $_libmpeg2
7881 LIBNEMESI = $_nemesi
7882 LIBNUT = $_libnut
7883 LIBSMBCLIENT = $_smb
7884 LIBTHEORA = $_theora
7885 LIRC = $_lirc
7886 LIVE555 = $_live
7887 MACOSX_FINDER = $_macosx_finder
7888 MD5SUM = $_md5sum
7889 MGA = $_mga
7890 MNG = $_mng
7891 MP3LAME = $_mp3lame
7892 MP3LIB = $_mp3lib
7893 MPG123 = $_mpg123
7894 MUSEPACK = $_musepack
7895 NAS = $_nas
7896 NATIVE_RTSP = $_native_rtsp
7897 NETWORKING = $networking
7898 OPENAL = $_openal
7899 OSS = $_ossaudio
7900 PE_EXECUTABLE = $_pe_executable
7901 PNG = $_png
7902 PNM = $_pnm
7903 PRIORITY = $_priority
7904 PULSE = $_pulse
7905 PVR = $_pvr
7906 QTX_CODECS = $_qtx
7907 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7908 QTX_EMULATION = $_qtx_emulation
7909 QUARTZ = $_quartz
7910 RADIO=$_radio
7911 RADIO_CAPTURE=$_radio_capture
7912 REAL_CODECS = $_real
7913 S3FB = $_s3fb
7914 SDL = $_sdl
7915 SPEEX = $_speex
7916 STREAM_CACHE = $_stream_cache
7917 SGIAUDIO = $_sgiaudio
7918 SUNAUDIO = $_sunaudio
7919 SVGA = $_svga
7920 TDFXFB = $_tdfxfb
7921 TDFXVID = $_tdfxvid
7922 TGA = $_tga
7923 TOOLAME=$_toolame
7924 TREMOR_INTERNAL = $_tremor_internal
7925 TV = $_tv
7926 TV_BSDBT848 = $_tv_bsdbt848
7927 TV_DSHOW = $_tv_dshow
7928 TV_V4L = $_tv_v4l
7929 TV_V4L1 = $_tv_v4l1
7930 TV_V4L2 = $_tv_v4l2
7931 TWOLAME=$_twolame
7932 UNRAR_EXEC = $_unrar_exec
7933 V4L2 = $_v4l2
7934 VCD = $_vcd
7935 VDPAU = $_vdpau
7936 VESA = $_vesa
7937 VIDIX = $_vidix
7938 VIDIX_PCIDB = $_vidix_pcidb_val
7939 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7940 VIDIX_IVTV=$_vidix_drv_ivtv
7941 VIDIX_MACH64=$_vidix_drv_mach64
7942 VIDIX_MGA=$_vidix_drv_mga
7943 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7944 VIDIX_NVIDIA=$_vidix_drv_nvidia
7945 VIDIX_PM2=$_vidix_drv_pm2
7946 VIDIX_PM3=$_vidix_drv_pm3
7947 VIDIX_RADEON=$_vidix_drv_radeon
7948 VIDIX_RAGE128=$_vidix_drv_rage128
7949 VIDIX_S3=$_vidix_drv_s3
7950 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7951 VIDIX_SIS=$_vidix_drv_sis
7952 VIDIX_UNICHROME=$_vidix_drv_unichrome
7953 VORBIS = $_vorbis
7954 VSTREAM = $_vstream
7955 WII = $_wii
7956 WIN32DLL = $_win32dll
7957 WIN32WAVEOUT = $_win32waveout
7958 WIN32_EMULATION = $_win32_emulation
7959 WINVIDIX = $winvidix
7960 X11 = $_x11
7961 X264 = $_x264
7962 XANIM_CODECS = $_xanim
7963 XMGA = $_xmga
7964 XMMS_PLUGINS = $_xmms
7965 XV = $_xv
7966 XVID4 = $_xvid
7967 XVIDIX = $xvidix
7968 XVMC = $_xvmc
7969 XVR100 = $_xvr100
7970 YUV4MPEG = $_yuv4mpeg
7971 ZR = $_zr
7973 # FFmpeg
7974 LIBAVUTIL = $_libavutil
7975 LIBAVCODEC = $_libavcodec
7976 LIBAVFORMAT = $_libavformat
7977 LIBPOSTPROC = $_libpostproc
7978 LIBSWSCALE = $_libswscale
7979 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7980 LIBSWSCALE_INTERNALS = $_libswscale_internals
7981 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7983 RANLIB = $_ranlib
7984 YASM = $_yasm
7985 YASMFLAGS = $YASMFLAGS
7987 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7988 CONFIG_AANDCT = yes
7989 CONFIG_FFT = yes
7990 CONFIG_GOLOMB = yes
7991 CONFIG_H264DSP = yes
7992 CONFIG_LPC = yes
7993 CONFIG_MDCT = yes
7994 CONFIG_RDFT = yes
7996 CONFIG_BZLIB = $bzlib
7997 CONFIG_ENCODERS = yes
7998 CONFIG_GPL = yes
7999 CONFIG_MLIB = $_mlib
8000 CONFIG_MUXERS = $_mencoder
8001 CONFIG_VDPAU = $_vdpau
8002 CONFIG_XVMC = $_xvmc
8003 CONFIG_ZLIB = $_zlib
8005 HAVE_PTHREADS = $_pthreads
8006 HAVE_SHM = $_shm
8007 HAVE_W32THREADS = $_w32threads
8008 HAVE_YASM = $have_yasm
8012 #############################################################################
8014 ff_config_enable () {
8015 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8016 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8017 _nprefix=$3;
8018 test -z "$_nprefix" && _nprefix='CONFIG'
8019 for part in $list; do
8020 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8021 echo "#define ${_nprefix}_$part 1"
8022 else
8023 echo "#define ${_nprefix}_$part 0"
8025 done
8028 echo "Creating config.h"
8029 cat > $TMPH << EOF
8030 /*----------------------------------------------------------------------------
8031 ** This file has been automatically generated by configure any changes in it
8032 ** will be lost when you run configure again.
8033 ** Instead of modifying definitions here, use the --enable/--disable options
8034 ** of the configure script! See ./configure --help for details.
8035 *---------------------------------------------------------------------------*/
8037 #ifndef MPLAYER_CONFIG_H
8038 #define MPLAYER_CONFIG_H
8040 /* Undefine this if you do not want to select mono audio (left or right)
8041 with a stereo MPEG layer 2/3 audio stream. The command line option
8042 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8043 right-only), with 0 being the default.
8045 #define CONFIG_FAKE_MONO 1
8047 /* set up audio OUTBURST. Do not change this! */
8048 #define OUTBURST 512
8050 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8051 #undef FAST_OSD
8052 #undef FAST_OSD_TABLE
8054 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8055 #define MPEG12_POSTPROC 1
8056 #define ATTRIBUTE_ALIGNED_MAX 16
8060 #define CONFIGURATION "$configuration"
8062 #define MPLAYER_DATADIR "$_datadir"
8063 #define MPLAYER_CONFDIR "$_confdir"
8064 #define MPLAYER_LIBDIR "$_libdir"
8065 #define MPLAYER_LOCALEDIR "$_localedir"
8067 $def_translation
8069 /* definitions needed by included libraries */
8070 #define HAVE_INTTYPES_H 1
8071 /* libmpeg2 + FFmpeg */
8072 $def_fast_inttypes
8073 /* libdvdcss */
8074 #define HAVE_ERRNO_H 1
8075 /* libdvdcss + libdvdread */
8076 #define HAVE_LIMITS_H 1
8077 /* libdvdcss + libfaad2 */
8078 #define HAVE_UNISTD_H 1
8079 /* libfaad2 + libdvdread */
8080 #define STDC_HEADERS 1
8081 #define HAVE_MEMCPY 1
8082 /* libfaad2 */
8083 #define HAVE_STRING_H 1
8084 #define HAVE_STRINGS_H 1
8085 #define HAVE_SYS_STAT_H 1
8086 #define HAVE_SYS_TYPES_H 1
8087 /* libdvdnav */
8088 #define READ_CACHE_TRACE 0
8089 /* libdvdread */
8090 #define HAVE_DLFCN_H 1
8091 $def_dvdcss
8094 /* system headers */
8095 $def_alloca_h
8096 $def_alsa_asoundlib_h
8097 $def_altivec_h
8098 $def_malloc_h
8099 $def_mman_h
8100 $def_mman_has_map_failed
8101 $def_soundcard_h
8102 $def_sys_asoundlib_h
8103 $def_sys_soundcard_h
8104 $def_sys_sysinfo_h
8105 $def_termios_h
8106 $def_termios_sys_h
8107 $def_winsock2_h
8110 /* system functions */
8111 $def_gethostbyname2
8112 $def_gettimeofday
8113 $def_glob
8114 $def_langinfo
8115 $def_lrintf
8116 $def_map_memalign
8117 $def_memalign
8118 $def_nanosleep
8119 $def_posix_select
8120 $def_select
8121 $def_setenv
8122 $def_setmode
8123 $def_shm
8124 $def_strsep
8125 $def_swab
8126 $def_sysi86
8127 $def_sysi86_iv
8128 $def_termcap
8129 $def_termios
8130 $def_vsscanf
8133 /* system-specific features */
8134 $def_asmalign_pot
8135 $def_builtin_expect
8136 $def_dl
8137 $def_dos_paths
8138 $def_extern_asm
8139 $def_extern_prefix
8140 $def_iconv
8141 $def_kstat
8142 $def_macosx_bundle
8143 $def_macosx_finder
8144 $def_maemo
8145 $def_named_asm_args
8146 $def_priority
8147 $def_quicktime
8148 $def_restrict_keyword
8149 $def_rtc
8150 $def_unrar_exec
8153 /* configurable options */
8154 $def_charset
8155 $def_crash_debug
8156 $def_debug
8157 $def_dynamic_plugins
8158 $def_fastmemcpy
8159 $def_menu
8160 $def_runtime_cpudetection
8161 $def_sighandler
8162 $def_sortsub
8163 $def_stream_cache
8164 $def_pthread_cache
8167 /* CPU stuff */
8168 #define __CPU__ $iproc
8169 $def_ebx_available
8170 $def_words_endian
8171 $def_bigendian
8172 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8173 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8174 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8177 /* Blu-ray/DVD/VCD/CD */
8178 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8179 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8180 $def_bluray
8181 $def_bsdi_dvd
8182 $def_cddb
8183 $def_cdio
8184 $def_cdparanoia
8185 $def_cdrom
8186 $def_dvd
8187 $def_dvd_bsd
8188 $def_dvd_darwin
8189 $def_dvd_linux
8190 $def_dvd_openbsd
8191 $def_dvdio
8192 $def_dvdnav
8193 $def_dvdread
8194 $def_hpux_scsi_h
8195 $def_libcdio
8196 $def_sol_scsi_h
8197 $def_vcd
8200 /* codec libraries */
8201 $def_faac
8202 $def_faad
8203 $def_faad_internal
8204 $def_liba52
8205 $def_libdca
8206 $def_libdv
8207 $def_liblzo
8208 $def_libmpeg2
8209 $def_mad
8210 $def_mp3lame
8211 $def_mp3lame_preset
8212 $def_mp3lame_preset_medium
8213 $def_mp3lib
8214 $def_mpg123
8215 $def_musepack
8216 $def_speex
8217 $def_theora
8218 $def_toolame
8219 $def_tremor
8220 $def_twolame
8221 $def_vorbis
8222 $def_x264
8223 $def_xvid
8224 $def_zlib
8226 $def_libnut
8229 /* binary codecs */
8230 $def_qtx
8231 $def_qtx_win32
8232 $def_real
8233 $def_win32_loader
8234 $def_win32dll
8235 $def_xanim
8236 $def_xmms
8237 #define BINARY_CODECS_PATH "$_codecsdir"
8238 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8241 /* Audio output drivers */
8242 $def_alsa
8243 $def_alsa1x
8244 $def_alsa5
8245 $def_alsa9
8246 $def_arts
8247 $def_coreaudio
8248 $def_dart
8249 $def_esd
8250 $def_esd_latency
8251 $def_jack
8252 $def_kai
8253 $def_nas
8254 $def_openal
8255 $def_openal_h
8256 $def_ossaudio
8257 $def_ossaudio_devdsp
8258 $def_ossaudio_devmixer
8259 $def_pulse
8260 $def_sgiaudio
8261 $def_sunaudio
8262 $def_win32waveout
8264 $def_ladspa
8265 $def_libbs2b
8268 /* input */
8269 $def_apple_ir
8270 $def_apple_remote
8271 $def_ioctl_bt848_h_name
8272 $def_ioctl_meteor_h_name
8273 $def_joystick
8274 $def_lirc
8275 $def_lircc
8276 $def_pvr
8277 $def_radio
8278 $def_radio_bsdbt848
8279 $def_radio_capture
8280 $def_radio_v4l
8281 $def_radio_v4l2
8282 $def_tv
8283 $def_tv_bsdbt848
8284 $def_tv_dshow
8285 $def_tv_v4l
8286 $def_tv_v4l1
8287 $def_tv_v4l2
8290 /* font stuff */
8291 $def_ass
8292 $def_bitmap_font
8293 $def_enca
8294 $def_fontconfig
8295 $def_freetype
8296 $def_fribidi
8299 /* networking */
8300 $def_closesocket
8301 $def_ftp
8302 $def_inet6
8303 $def_inet_aton
8304 $def_inet_pton
8305 $def_live
8306 $def_nemesi
8307 $def_networking
8308 $def_smb
8309 $def_socklen_t
8310 $def_vstream
8313 /* libvo options */
8314 $def_3dfx
8315 $def_aa
8316 $def_bl
8317 $def_caca
8318 $def_corevideo
8319 $def_dfbmga
8320 $def_dga
8321 $def_dga1
8322 $def_dga2
8323 $def_direct3d
8324 $def_directfb
8325 $def_directfb_version
8326 $def_directx
8327 $def_dvb
8328 $def_dvbin
8329 $def_dxr2
8330 $def_dxr3
8331 $def_fbdev
8332 $def_ggi
8333 $def_ggiwmh
8334 $def_gif
8335 $def_gif_4
8336 $def_gif_tvt_hack
8337 $def_gl
8338 $def_gl_win32
8339 $def_gl_x11
8340 $def_gl_sdl
8341 $def_matrixview
8342 $def_ivtv
8343 $def_jpeg
8344 $def_kva
8345 $def_md5sum
8346 $def_mga
8347 $def_mng
8348 $def_png
8349 $def_pnm
8350 $def_quartz
8351 $def_s3fb
8352 $def_sdl
8353 $def_sdl_sdl_h
8354 $def_svga
8355 $def_tdfxfb
8356 $def_tdfxvid
8357 $def_tga
8358 $def_v4l2
8359 $def_vdpau
8360 $def_vesa
8361 $def_vidix
8362 $def_vidix_drv_cyberblade
8363 $def_vidix_drv_ivtv
8364 $def_vidix_drv_mach64
8365 $def_vidix_drv_mga
8366 $def_vidix_drv_mga_crtc2
8367 $def_vidix_drv_nvidia
8368 $def_vidix_drv_pm3
8369 $def_vidix_drv_radeon
8370 $def_vidix_drv_rage128
8371 $def_vidix_drv_s3
8372 $def_vidix_drv_sh_veu
8373 $def_vidix_drv_sis
8374 $def_vidix_drv_unichrome
8375 $def_vidix_pfx
8376 $def_vm
8377 $def_wii
8378 $def_x11
8379 $def_xdpms
8380 $def_xf86keysym
8381 $def_xinerama
8382 $def_xmga
8383 $def_xss
8384 $def_xv
8385 $def_xvmc
8386 $def_xvr100
8387 $def_yuv4mpeg
8388 $def_zr
8391 /* FFmpeg */
8392 $def_libavcodec
8393 $def_libavformat
8394 $def_libavutil
8395 $def_libpostproc
8396 $def_libswscale
8397 $def_libavcodec_internals
8398 $def_libswscale_internals
8400 #define CONFIG_DECODERS 1
8401 #define CONFIG_ENCODERS 1
8402 #define CONFIG_DEMUXERS 1
8403 $def_muxers
8405 $def_arpa_inet_h
8406 $def_bswap
8407 $def_bzlib
8408 $def_dcbzl
8409 $def_exp2
8410 $def_exp2f
8411 $def_fast_64bit
8412 $def_fast_unaligned
8413 $def_llrint
8414 $def_log2
8415 $def_log2f
8416 $def_lrint
8417 $def_memalign_hack
8418 $def_mlib
8419 $def_mkstemp
8420 $def_posix_memalign
8421 $def_pthreads
8422 $def_round
8423 $def_roundf
8424 $def_ten_operands
8425 $def_threads
8426 $def_truncf
8427 $def_xform_asm
8428 $def_yasm
8430 #define CONFIG_FASTDIV 0
8431 #define CONFIG_FFSERVER 0
8432 #define CONFIG_GPL 1
8433 #define CONFIG_GRAY 0
8434 #define CONFIG_HARDCODED_TABLES 0
8435 #define CONFIG_LIBVORBIS 0
8436 #define CONFIG_POWERPC_PERF 0
8437 #define CONFIG_SMALL 0
8438 #define CONFIG_SWSCALE_ALPHA 1
8440 #define HAVE_ATTRIBUTE_PACKED 1
8441 #define HAVE_GETHRTIME 0
8442 #define HAVE_INLINE_ASM 1
8443 #define HAVE_LDBRX 0
8444 #define HAVE_POLL_H 1
8445 #define HAVE_PPC4XX 0
8446 #define HAVE_VFP_ARGS 1
8447 #define HAVE_VIRTUALALLOC 0
8449 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8450 #define CONFIG_AANDCT 1
8451 #define CONFIG_DCT 1
8452 #define CONFIG_DWT 1
8453 #define CONFIG_FFT 1
8454 #define CONFIG_GOLOMB 1
8455 #define CONFIG_H264DSP 1
8456 #define CONFIG_LPC 1
8457 #define CONFIG_MDCT 1
8458 #define CONFIG_RDFT 1
8460 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8461 #ifndef MP_DEBUG
8462 #define HAVE_EBP_AVAILABLE 1
8463 #else
8464 #define HAVE_EBP_AVAILABLE 0
8465 #endif
8467 #define CONFIG_H263_VAAPI_HWACCEL 0
8468 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8469 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8470 #define CONFIG_H264_VAAPI_HWACCEL 0
8471 #define CONFIG_VC1_VAAPI_HWACCEL 0
8472 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8474 #endif /* MPLAYER_CONFIG_H */
8477 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8478 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8480 #############################################################################
8482 ./version.sh `$_cc -dumpversion`
8484 cat << EOF
8486 Config files successfully generated by ./configure $configuration !
8488 Install prefix: $_prefix
8489 Data directory: $_datadir
8490 Config direct.: $_confdir
8492 Byte order: $_byte_order
8493 Optimizing for: $_optimizing
8495 Languages:
8496 Messages (in addition to English): $language_msg
8497 Manual pages: $language_man
8498 Documentation: $language_doc
8500 Enabled optional drivers:
8501 Input: $inputmodules
8502 Codecs: $codecmodules
8503 Audio output: $aomodules
8504 Video output: $vomodules
8506 Disabled optional drivers:
8507 Input: $noinputmodules
8508 Codecs: $nocodecmodules
8509 Audio output: $noaomodules
8510 Video output: $novomodules
8512 'config.h' and 'config.mak' contain your configuration options.
8513 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8514 compile *** DO NOT REPORT BUGS if you tweak these files ***
8516 'make' will now compile MPlayer and 'make install' will install it.
8517 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8522 if test "$_mtrr" = yes ; then
8523 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8524 echo
8527 if ! x86_32; then
8528 cat <<EOF
8529 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8530 operating system ($system_name). You may encounter a few files that cannot
8531 be played due to missing open source video/audio codec support.
8537 cat <<EOF
8538 Check $TMPLOG if you wonder why an autodetection failed (make sure
8539 development headers/packages are installed).
8541 NOTE: The --enable-* parameters unconditionally force options on, completely
8542 skipping autodetection. This behavior is unlike what you may be used to from
8543 autoconf-based configure scripts that can decide to override you. This greater
8544 level of control comes at a price. You may have to provide the correct compiler
8545 and linker flags yourself.
8546 If you used one of these options (except --enable-menu and similar ones that
8547 turn on internal features) and experience a compilation or linking failure,
8548 make sure you have passed the necessary compiler/linker flags to configure.
8550 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8554 if test "$warn_cflags" = yes; then
8555 cat <<EOF
8557 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8558 but:
8560 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8562 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8563 To do so, execute 'CFLAGS= ./configure <options>'
8568 # Last move:
8569 rm -rf "$mplayer_tmpdir"