dvdcss: Fix typo in documentation
[mplayer/glamo.git] / configure
blob386c0cdfded9d2d9abd791e33f8cf5adcea33648
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" = "clang"; then
2429 CFLAGS="-O2 $_march $_pipe"
2430 elif test "$cc_vendor" != "gnu" ; then
2431 CFLAGS="-O2 $_march $_mcpu $_pipe"
2432 else
2433 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2434 extra_ldflags="$extra_ldflags -ffast-math"
2436 else
2437 warn_cflags=yes
2440 if test "$cc_vendor" = "gnu" ; then
2441 cflag_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2442 cflag_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2443 cflag_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2444 cflag_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2445 cflag_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2446 cflag_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2447 else
2448 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2451 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2452 cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS"
2455 if test -n "$LDFLAGS" ; then
2456 extra_ldflags="$extra_ldflags $LDFLAGS"
2457 warn_cflags=yes
2458 elif test "$cc_vendor" = "intel" ; then
2459 extra_ldflags="$extra_ldflags -i-static"
2461 if test -n "$CPPFLAGS" ; then
2462 extra_cflags="$extra_cflags $CPPFLAGS"
2463 warn_cflags=yes
2468 if x86_32 ; then
2469 # Checking assembler (_as) compatibility...
2470 # Added workaround for older as that reads from stdin by default - atmos
2471 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2472 echocheck "assembler ($_as $as_version)"
2474 _pref_as_version='2.9.1'
2475 echo 'nop' > $TMPS
2476 if test "$_mmx" = yes ; then
2477 echo 'emms' >> $TMPS
2479 if test "$_3dnow" = yes ; then
2480 _pref_as_version='2.10.1'
2481 echo 'femms' >> $TMPS
2483 if test "$_3dnowext" = yes ; then
2484 _pref_as_version='2.10.1'
2485 echo 'pswapd %mm0, %mm0' >> $TMPS
2487 if test "$_mmxext" = yes ; then
2488 _pref_as_version='2.10.1'
2489 echo 'movntq %mm0, (%eax)' >> $TMPS
2491 if test "$_sse" = yes ; then
2492 _pref_as_version='2.10.1'
2493 echo 'xorps %xmm0, %xmm0' >> $TMPS
2495 #if test "$_sse2" = yes ; then
2496 # _pref_as_version='2.11'
2497 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2499 if test "$_cmov" = yes ; then
2500 _pref_as_version='2.10.1'
2501 echo 'cmovb %eax, %ebx' >> $TMPS
2503 if test "$_ssse3" = yes ; then
2504 _pref_as_version='2.16.92'
2505 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2507 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2509 if test "$as_verc_fail" != yes ; then
2510 echores "ok"
2511 else
2512 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2513 echores "failed"
2514 die "obsolete binutils version"
2517 fi #if x86_32
2519 echocheck ".align is a power of two"
2520 if test "$_asmalign_pot" = auto ; then
2521 _asmalign_pot=no
2522 cat > $TMPC << EOF
2523 int main(void) { __asm__ (".align 3"); return 0; }
2525 cc_check && _asmalign_pot=yes
2527 if test "$_asmalign_pot" = "yes" ; then
2528 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2529 else
2530 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2532 echores $_asmalign_pot
2535 echocheck "PIC"
2536 pic=no
2537 cat > $TMPC << EOF
2538 int main(void) {
2539 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2540 #error PIC not enabled
2541 #endif
2542 return 0;
2545 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2546 echores $pic
2549 if x86 ; then
2550 echocheck "10 assembler operands"
2551 ten_operands=no
2552 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2553 cat > $TMPC << EOF
2554 int main(void) {
2555 int x=0;
2556 __asm__ volatile(
2558 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2560 return 0;
2563 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2564 echores $ten_operands
2566 echocheck "ebx availability"
2567 ebx_available=no
2568 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2569 cat > $TMPC << EOF
2570 int main(void) {
2571 int x;
2572 __asm__ volatile(
2573 "xor %0, %0"
2574 :"=b"(x)
2575 // just adding ebx to clobber list seems unreliable with some
2576 // compilers, e.g. Haiku's gcc 2.95
2578 // and the above check does not work for OSX 64 bit...
2579 __asm__ volatile("":::"%ebx");
2580 return 0;
2583 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2584 echores $ebx_available
2587 echocheck "yasm"
2588 if test -z "$YASMFLAGS" ; then
2589 if darwin ; then
2590 x86_64 && objformat="macho64" || objformat="macho"
2591 elif win32 ; then
2592 objformat="win32"
2593 else
2594 objformat="elf"
2596 # currently tested for Linux x86, x86_64
2597 YASMFLAGS="-f $objformat"
2598 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2599 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2600 case "$objformat" in
2601 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2602 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2603 esac
2604 else
2605 warn_cflags=yes
2608 echo "pabsw xmm0, xmm0" > $TMPS
2609 yasm_check || _yasm=""
2610 if test $_yasm ; then
2611 def_yasm='#define HAVE_YASM 1'
2612 have_yasm="yes"
2613 echores "$_yasm"
2614 else
2615 def_yasm='#define HAVE_YASM 0'
2616 have_yasm="no"
2617 echores "no"
2620 echocheck "bswap"
2621 def_bswap='#define HAVE_BSWAP 0'
2622 echo 'bswap %eax' > $TMPS
2623 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2624 echores "$bswap"
2625 fi #if x86
2628 #FIXME: This should happen before the check for CFLAGS..
2629 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2630 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2632 # check if AltiVec is supported by the compiler, and how to enable it
2633 echocheck "GCC AltiVec flags"
2634 if $(cflag_check -maltivec -mabi=altivec) ; then
2635 _altivec_gcc_flags="-maltivec -mabi=altivec"
2636 # check if <altivec.h> should be included
2637 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2638 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2639 inc_altivec_h='#include <altivec.h>'
2640 else
2641 if $(cflag_check -faltivec) ; then
2642 _altivec_gcc_flags="-faltivec"
2643 else
2644 _altivec=no
2645 _altivec_gcc_flags="none, AltiVec disabled"
2649 echores "$_altivec_gcc_flags"
2651 # check if the compiler supports braces for vector declarations
2652 cat > $TMPC << EOF
2653 $inc_altivec_h
2654 int main(void) { (vector int) {1}; return 0; }
2656 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2658 # Disable runtime cpudetection if we cannot generate AltiVec code or
2659 # AltiVec is disabled by the user.
2660 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2661 && _runtime_cpudetection=no
2663 # Show that we are optimizing for AltiVec (if enabled and supported).
2664 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2665 && _optimizing="$_optimizing altivec"
2667 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2668 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2671 if ppc ; then
2672 def_xform_asm='#define HAVE_XFORM_ASM 0'
2673 xform_asm=no
2674 echocheck "XFORM ASM support"
2675 cat > $TMPC << EOF
2676 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2678 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2679 echores "$xform_asm"
2682 if arm ; then
2683 echocheck "ARM pld instruction"
2684 cat > $TMPC << EOF
2685 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2687 pld=no
2688 cc_check && pld=yes
2689 echores "$pld"
2691 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2692 if test $_armv5te = "auto" ; then
2693 cat > $TMPC << EOF
2694 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2696 _armv5te=no
2697 cc_check && _armv5te=yes
2699 echores "$_armv5te"
2701 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2703 echocheck "ARMv6 (SIMD instructions)"
2704 if test $_armv6 = "auto" ; then
2705 cat > $TMPC << EOF
2706 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2708 _armv6=no
2709 cc_check && _armv6=yes
2711 echores "$_armv6"
2713 echocheck "ARMv6t2 (SIMD instructions)"
2714 if test $_armv6t2 = "auto" ; then
2715 cat > $TMPC << EOF
2716 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2718 _armv6t2=no
2719 cc_check && _armv6t2=yes
2721 echores "$_armv6"
2723 echocheck "ARM VFP"
2724 if test $_armvfp = "auto" ; then
2725 cat > $TMPC << EOF
2726 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2728 _armvfp=no
2729 cc_check && _armvfp=yes
2731 echores "$_armvfp"
2733 echocheck "ARM NEON"
2734 if test $neon = "auto" ; then
2735 cat > $TMPC << EOF
2736 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2738 neon=no
2739 cc_check && neon=yes
2741 echores "$neon"
2743 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2744 if test $_iwmmxt = "auto" ; then
2745 cat > $TMPC << EOF
2746 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2748 _iwmmxt=no
2749 cc_check && _iwmmxt=yes
2751 echores "$_iwmmxt"
2754 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'
2755 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2756 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2757 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2758 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2759 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2760 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2761 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2762 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2763 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2764 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2765 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2766 test "$pld" = yes && cpuexts="PLD $cpuexts"
2767 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2768 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2769 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2770 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2771 test "$neon" = yes && cpuexts="NEON $cpuexts"
2772 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2773 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2774 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2776 # Checking kernel version...
2777 if x86_32 && linux ; then
2778 _k_verc_problem=no
2779 kernel_version=$(uname -r 2>&1)
2780 echocheck "$system_name kernel version"
2781 case "$kernel_version" in
2782 '') kernel_version="?.??"; _k_verc_fail=yes;;
2783 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2784 _k_verc_problem=yes;;
2785 esac
2786 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2787 _k_verc_fail=yes
2789 if test "$_k_verc_fail" ; then
2790 echores "$kernel_version, fail"
2791 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2792 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2793 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2794 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2795 echo "2.2.x you must upgrade it to get SSE support!"
2796 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2797 else
2798 echores "$kernel_version, ok"
2802 ######################
2803 # MAIN TESTS GO HERE #
2804 ######################
2807 echocheck "-lposix"
2808 if cflag_check -lposix ; then
2809 extra_ldflags="$extra_ldflags -lposix"
2810 echores "yes"
2811 else
2812 echores "no"
2815 echocheck "-lm"
2816 if cflag_check -lm ; then
2817 _ld_lm="-lm"
2818 echores "yes"
2819 else
2820 _ld_lm=""
2821 echores "no"
2825 echocheck "langinfo"
2826 if test "$_langinfo" = auto ; then
2827 cat > $TMPC <<EOF
2828 #include <langinfo.h>
2829 int main(void) { nl_langinfo(CODESET); return 0; }
2831 _langinfo=no
2832 cc_check && _langinfo=yes
2834 if test "$_langinfo" = yes ; then
2835 def_langinfo='#define HAVE_LANGINFO 1'
2836 else
2837 def_langinfo='#undef HAVE_LANGINFO'
2839 echores "$_langinfo"
2842 echocheck "translation support"
2843 if test "$_translation" = yes; then
2844 def_translation="#define CONFIG_TRANSLATION 1"
2845 else
2846 def_translation="#undef CONFIG_TRANSLATION"
2848 echores "$_translation"
2850 echocheck "language"
2851 # Set preferred languages, "all" uses English as main language.
2852 test -z "$language" && language=$LINGUAS
2853 test -z "$language_doc" && language_doc=$language
2854 test -z "$language_man" && language_man=$language
2855 test -z "$language_msg" && language_msg="all"
2856 language_doc=$(echo $language_doc | tr , " ")
2857 language_man=$(echo $language_man | tr , " ")
2858 language_msg=$(echo $language_msg | tr , " ")
2860 test "$language_doc" = "all" && language_doc=$doc_lang_all
2861 test "$language_man" = "all" && language_man=$man_lang_all
2862 test "$language_msg" = "all" && language_msg=$msg_lang_all
2864 if test "$_translation" != yes ; then
2865 language_msg=""
2868 # Prune non-existing translations from language lists.
2869 # Set message translation to the first available language.
2870 # Fall back on English.
2871 for lang in $language_doc ; do
2872 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2873 done
2874 language_doc=$tmp_language_doc
2875 test -z "$language_doc" && language_doc=en
2877 for lang in $language_man ; do
2878 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2879 done
2880 language_man=$tmp_language_man
2881 test -z "$language_man" && language_man=en
2883 for lang in $language_msg ; do
2884 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2885 done
2886 language_msg=$tmp_language_msg
2888 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2891 echocheck "enable sighandler"
2892 if test "$_sighandler" = yes ; then
2893 def_sighandler='#define CONFIG_SIGHANDLER 1'
2894 else
2895 def_sighandler='#undef CONFIG_SIGHANDLER'
2897 echores "$_sighandler"
2899 echocheck "runtime cpudetection"
2900 if test "$_runtime_cpudetection" = yes ; then
2901 _optimizing="Runtime CPU-Detection enabled"
2902 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2903 else
2904 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2906 echores "$_runtime_cpudetection"
2909 echocheck "restrict keyword"
2910 for restrict_keyword in restrict __restrict __restrict__ ; do
2911 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2912 if cc_check; then
2913 def_restrict_keyword=$restrict_keyword
2914 break;
2916 done
2917 if [ -n "$def_restrict_keyword" ]; then
2918 echores "$def_restrict_keyword"
2919 else
2920 echores "none"
2922 # Avoid infinite recursion loop ("#define restrict restrict")
2923 if [ "$def_restrict_keyword" != "restrict" ]; then
2924 def_restrict_keyword="#define restrict $def_restrict_keyword"
2925 else
2926 def_restrict_keyword=""
2930 echocheck "__builtin_expect"
2931 # GCC branch prediction hint
2932 cat > $TMPC << EOF
2933 int foo(int a) {
2934 a = __builtin_expect(a, 10);
2935 return a == 10 ? 0 : 1;
2937 int main(void) { return foo(10) && foo(0); }
2939 _builtin_expect=no
2940 cc_check && _builtin_expect=yes
2941 if test "$_builtin_expect" = yes ; then
2942 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2943 else
2944 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2946 echores "$_builtin_expect"
2949 echocheck "kstat"
2950 cat > $TMPC << EOF
2951 #include <kstat.h>
2952 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2954 _kstat=no
2955 cc_check -lkstat && _kstat=yes
2956 if test "$_kstat" = yes ; then
2957 def_kstat="#define HAVE_LIBKSTAT 1"
2958 extra_ldflags="$extra_ldflags -lkstat"
2959 else
2960 def_kstat="#undef HAVE_LIBKSTAT"
2962 echores "$_kstat"
2965 echocheck "posix4"
2966 # required for nanosleep on some systems
2967 cat > $TMPC << EOF
2968 #include <time.h>
2969 int main(void) { (void) nanosleep(0, 0); return 0; }
2971 _posix4=no
2972 cc_check -lposix4 && _posix4=yes
2973 if test "$_posix4" = yes ; then
2974 extra_ldflags="$extra_ldflags -lposix4"
2976 echores "$_posix4"
2978 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2979 echocheck $func
2980 cat > $TMPC << EOF
2981 #include <math.h>
2982 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2984 eval _$func=no
2985 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2986 if eval test "x\$_$func" = "xyes"; then
2987 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2988 echores yes
2989 else
2990 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2991 echores no
2993 done
2996 echocheck "mkstemp"
2997 cat > $TMPC << EOF
2998 #include <stdlib.h>
2999 int main(void) { char a; mkstemp(&a); return 0; }
3001 _mkstemp=no
3002 cc_check && _mkstemp=yes
3003 if test "$_mkstemp" = yes ; then
3004 def_mkstemp='#define HAVE_MKSTEMP 1'
3005 else
3006 def_mkstemp='#undef HAVE_MKSTEMP'
3008 echores "$_mkstemp"
3011 echocheck "nanosleep"
3012 # also check for nanosleep
3013 cat > $TMPC << EOF
3014 #include <time.h>
3015 int main(void) { (void) nanosleep(0, 0); return 0; }
3017 _nanosleep=no
3018 cc_check && _nanosleep=yes
3019 if test "$_nanosleep" = yes ; then
3020 def_nanosleep='#define HAVE_NANOSLEEP 1'
3021 else
3022 def_nanosleep='#undef HAVE_NANOSLEEP'
3024 echores "$_nanosleep"
3027 echocheck "socklib"
3028 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3029 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3030 cat > $TMPC << EOF
3031 #include <netdb.h>
3032 #include <sys/socket.h>
3033 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3035 _socklib=no
3036 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3037 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3038 done
3039 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3040 if test $_winsock2_h = auto ; then
3041 _winsock2_h=no
3042 cat > $TMPC << EOF
3043 #include <winsock2.h>
3044 int main(void) { (void) gethostbyname(0); return 0; }
3046 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3048 test "$_ld_sock" && res_comment="using $_ld_sock"
3049 echores "$_socklib"
3052 if test $_winsock2_h = yes ; then
3053 _ld_sock="-lws2_32"
3054 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3055 else
3056 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3060 echocheck "arpa/inet.h"
3061 arpa_inet_h=no
3062 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3063 header_check arpa/inet.h && arpa_inet_h=yes &&
3064 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3065 echores "$arpa_inet_h"
3068 echocheck "inet_pton()"
3069 def_inet_pton='#define HAVE_INET_PTON 0'
3070 inet_pton=no
3071 cat > $TMPC << EOF
3072 #include <sys/types.h>
3073 #include <sys/socket.h>
3074 #include <arpa/inet.h>
3075 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3077 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3078 cc_check $_ld_tmp && inet_pton=yes && break
3079 done
3080 if test $inet_pton = yes ; then
3081 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3082 def_inet_pton='#define HAVE_INET_PTON 1'
3084 echores "$inet_pton"
3087 echocheck "inet_aton()"
3088 def_inet_aton='#define HAVE_INET_ATON 0'
3089 inet_aton=no
3090 cat > $TMPC << EOF
3091 #include <sys/types.h>
3092 #include <sys/socket.h>
3093 #include <arpa/inet.h>
3094 int main(void) { (void) inet_aton(0, 0); return 0; }
3096 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3097 cc_check $_ld_tmp && inet_aton=yes && break
3098 done
3099 if test $inet_aton = yes ; then
3100 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3101 def_inet_aton='#define HAVE_INET_ATON 1'
3103 echores "$inet_aton"
3106 echocheck "socklen_t"
3107 _socklen_t=no
3108 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3109 cat > $TMPC << EOF
3110 #include <$header>
3111 int main(void) { socklen_t v = 0; return v; }
3113 cc_check && _socklen_t=yes && break
3114 done
3115 if test "$_socklen_t" = yes ; then
3116 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3117 else
3118 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3120 echores "$_socklen_t"
3123 echocheck "closesocket()"
3124 _closesocket=no
3125 cat > $TMPC << EOF
3126 #include <winsock2.h>
3127 int main(void) { closesocket(~0); return 0; }
3129 cc_check $_ld_sock && _closesocket=yes
3130 if test "$_closesocket" = yes ; then
3131 def_closesocket='#define HAVE_CLOSESOCKET 1'
3132 else
3133 def_closesocket='#define HAVE_CLOSESOCKET 0'
3135 echores "$_closesocket"
3138 echocheck "networking"
3139 test $_winsock2_h = no && test $inet_pton = no &&
3140 test $inet_aton = no && networking=no
3141 if test "$networking" = yes ; then
3142 def_network='#define CONFIG_NETWORK 1'
3143 def_networking='#define CONFIG_NETWORKING 1'
3144 extra_ldflags="$extra_ldflags $_ld_sock"
3145 inputmodules="networking $inputmodules"
3146 else
3147 noinputmodules="networking $noinputmodules"
3148 def_network='#undef CONFIG_NETWORK'
3149 def_networking='#undef CONFIG_NETWORKING'
3150 _ftp=no
3152 echores "$networking"
3155 echocheck "inet6"
3156 if test "$_inet6" = auto ; then
3157 cat > $TMPC << EOF
3158 #include <sys/types.h>
3159 #if !defined(_WIN32) || defined(__CYGWIN__)
3160 #include <sys/socket.h>
3161 #include <netinet/in.h>
3162 #else
3163 #include <ws2tcpip.h>
3164 #endif
3165 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3167 _inet6=no
3168 if cc_check $_ld_sock ; then
3169 _inet6=yes
3172 if test "$_inet6" = yes ; then
3173 def_inet6='#define HAVE_AF_INET6 1'
3174 else
3175 def_inet6='#undef HAVE_AF_INET6'
3177 echores "$_inet6"
3180 echocheck "gethostbyname2"
3181 if test "$_gethostbyname2" = auto ; then
3182 cat > $TMPC << EOF
3183 #include <sys/types.h>
3184 #include <sys/socket.h>
3185 #include <netdb.h>
3186 int main(void) { gethostbyname2("", AF_INET); return 0; }
3188 _gethostbyname2=no
3189 if cc_check ; then
3190 _gethostbyname2=yes
3193 if test "$_gethostbyname2" = yes ; then
3194 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3195 else
3196 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3198 echores "$_gethostbyname2"
3201 echocheck "inttypes.h (required)"
3202 _inttypes=no
3203 header_check inttypes.h && _inttypes=yes
3204 echores "$_inttypes"
3206 if test "$_inttypes" = no ; then
3207 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3208 header_check sys/bitypes.h && _inttypes=yes
3209 if test "$_inttypes" = yes ; then
3210 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."
3211 else
3212 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3217 echocheck "int_fastXY_t in inttypes.h"
3218 cat > $TMPC << EOF
3219 #include <inttypes.h>
3220 int main(void) {
3221 volatile int_fast16_t v= 0;
3222 return v; }
3224 _fast_inttypes=no
3225 cc_check && _fast_inttypes=yes
3226 if test "$_fast_inttypes" = no ; then
3227 def_fast_inttypes='
3228 typedef signed char int_fast8_t;
3229 typedef signed int int_fast16_t;
3230 typedef signed int int_fast32_t;
3231 typedef signed long long int_fast64_t;
3232 typedef unsigned char uint_fast8_t;
3233 typedef unsigned int uint_fast16_t;
3234 typedef unsigned int uint_fast32_t;
3235 typedef unsigned long long uint_fast64_t;'
3237 echores "$_fast_inttypes"
3240 echocheck "malloc.h"
3241 _malloc=no
3242 header_check malloc.h && _malloc=yes
3243 if test "$_malloc" = yes ; then
3244 def_malloc_h='#define HAVE_MALLOC_H 1'
3245 else
3246 def_malloc_h='#define HAVE_MALLOC_H 0'
3248 echores "$_malloc"
3251 echocheck "memalign()"
3252 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3253 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3254 cat > $TMPC << EOF
3255 #include <malloc.h>
3256 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3258 _memalign=no
3259 cc_check && _memalign=yes
3260 if test "$_memalign" = yes ; then
3261 def_memalign='#define HAVE_MEMALIGN 1'
3262 else
3263 def_memalign='#define HAVE_MEMALIGN 0'
3264 def_map_memalign='#define memalign(a,b) malloc(b)'
3265 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3267 echores "$_memalign"
3270 echocheck "posix_memalign()"
3271 posix_memalign=no
3272 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3273 cat > $TMPC << EOF
3274 #define _XOPEN_SOURCE 600
3275 #include <stdlib.h>
3276 int main(void) { posix_memalign(NULL, 0, 0); }
3278 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3279 echores "$posix_memalign"
3282 echocheck "alloca.h"
3283 cat > $TMPC << EOF
3284 #include <alloca.h>
3285 int main(void) { (void) alloca(0); return 0; }
3287 _alloca=no
3288 cc_check && _alloca=yes
3289 if cc_check ; then
3290 def_alloca_h='#define HAVE_ALLOCA_H 1'
3291 else
3292 def_alloca_h='#undef HAVE_ALLOCA_H'
3294 echores "$_alloca"
3297 echocheck "fastmemcpy"
3298 if test "$_fastmemcpy" = yes ; then
3299 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3300 else
3301 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3303 echores "$_fastmemcpy"
3306 echocheck "mman.h"
3307 cat > $TMPC << EOF
3308 #include <sys/types.h>
3309 #include <sys/mman.h>
3310 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3312 _mman=no
3313 cc_check && _mman=yes
3314 if test "$_mman" = yes ; then
3315 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3316 else
3317 def_mman_h='#undef HAVE_SYS_MMAN_H'
3318 os2 && _need_mmap=yes
3320 echores "$_mman"
3322 cat > $TMPC << EOF
3323 #include <sys/types.h>
3324 #include <sys/mman.h>
3325 int main(void) { void *p = MAP_FAILED; return 0; }
3327 _mman_has_map_failed=no
3328 cc_check && _mman_has_map_failed=yes
3329 if test "$_mman_has_map_failed" = yes ; then
3330 def_mman_has_map_failed=''
3331 else
3332 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3335 echocheck "dynamic loader"
3336 cat > $TMPC << EOF
3337 #include <stddef.h>
3338 #include <dlfcn.h>
3339 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3341 _dl=no
3342 for _ld_tmp in "" "-ldl" ; do
3343 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3344 done
3345 if test "$_dl" = yes ; then
3346 def_dl='#define HAVE_LIBDL 1'
3347 else
3348 def_dl='#undef HAVE_LIBDL'
3350 echores "$_dl"
3353 echocheck "dynamic a/v plugins support"
3354 if test "$_dl" = no ; then
3355 _dynamic_plugins=no
3357 if test "$_dynamic_plugins" = yes ; then
3358 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3359 else
3360 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3362 echores "$_dynamic_plugins"
3365 def_threads='#define HAVE_THREADS 0'
3367 echocheck "pthread"
3368 if linux ; then
3369 THREAD_CFLAGS=-D_REENTRANT
3370 elif freebsd || netbsd || openbsd || bsdos ; then
3371 THREAD_CFLAGS=-D_THREAD_SAFE
3373 if test "$_pthreads" = auto ; then
3374 cat > $TMPC << EOF
3375 #include <pthread.h>
3376 void* func(void *arg) { return arg; }
3377 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3379 _pthreads=no
3380 if ! hpux ; then
3381 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3382 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3383 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3384 done
3387 if test "$_pthreads" = yes ; then
3388 test $_ld_pthread && res_comment="using $_ld_pthread"
3389 def_pthreads='#define HAVE_PTHREADS 1'
3390 def_threads='#define HAVE_THREADS 1'
3391 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3392 else
3393 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3394 def_pthreads='#undef HAVE_PTHREADS'
3395 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3396 mingw32 || _win32dll=no
3398 echores "$_pthreads"
3400 if cygwin ; then
3401 if test "$_pthreads" = yes ; then
3402 def_pthread_cache="#define PTHREAD_CACHE 1"
3403 else
3404 _stream_cache=no
3405 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3409 echocheck "w32threads"
3410 if test "$_pthreads" = yes ; then
3411 res_comment="using pthread instead"
3412 _w32threads=no
3414 if test "$_w32threads" = auto ; then
3415 _w32threads=no
3416 mingw32 && _w32threads=yes
3418 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3419 echores "$_w32threads"
3421 echocheck "rpath"
3422 netbsd &&_rpath=yes
3423 if test "$_rpath" = yes ; then
3424 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3425 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3426 done
3427 extra_ldflags=$tmp
3429 echores "$_rpath"
3431 echocheck "iconv"
3432 if test "$_iconv" = auto ; then
3433 cat > $TMPC << EOF
3434 #include <stdio.h>
3435 #include <unistd.h>
3436 #include <iconv.h>
3437 #define INBUFSIZE 1024
3438 #define OUTBUFSIZE 4096
3440 char inbuffer[INBUFSIZE];
3441 char outbuffer[OUTBUFSIZE];
3443 int main(void) {
3444 size_t numread;
3445 iconv_t icdsc;
3446 char *tocode="UTF-8";
3447 char *fromcode="cp1250";
3448 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3449 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3450 char *iptr=inbuffer;
3451 char *optr=outbuffer;
3452 size_t inleft=numread;
3453 size_t outleft=OUTBUFSIZE;
3454 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3455 != (size_t)(-1)) {
3456 write(1, outbuffer, OUTBUFSIZE - outleft);
3459 if (iconv_close(icdsc) == -1)
3462 return 0;
3465 _iconv=no
3466 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3467 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3468 _iconv=yes && break
3469 done
3471 if test "$_iconv" = yes ; then
3472 def_iconv='#define CONFIG_ICONV 1'
3473 else
3474 def_iconv='#undef CONFIG_ICONV'
3476 echores "$_iconv"
3479 echocheck "soundcard.h"
3480 _soundcard_h=no
3481 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3482 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3483 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3484 header_check $_soundcard_header && _soundcard_h=yes &&
3485 res_comment="$_soundcard_header" && break
3486 done
3488 if test "$_soundcard_h" = yes ; then
3489 if test $_soundcard_header = "sys/soundcard.h"; then
3490 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3491 else
3492 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3495 echores "$_soundcard_h"
3498 echocheck "sys/dvdio.h"
3499 _dvdio=no
3500 header_check sys/dvdio.h && _dvdio=yes
3501 if test "$_dvdio" = yes ; then
3502 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3503 else
3504 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3506 echores "$_dvdio"
3509 echocheck "sys/cdio.h"
3510 _cdio=no
3511 # at least OpenSolaris has a broken cdio.h
3512 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3513 if test "$_cdio" = yes ; then
3514 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3515 else
3516 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3518 echores "$_cdio"
3521 echocheck "linux/cdrom.h"
3522 _cdrom=no
3523 header_check linux/cdrom.h && _cdrom=yes
3524 if test "$_cdrom" = yes ; then
3525 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3526 else
3527 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3529 echores "$_cdrom"
3532 echocheck "dvd.h"
3533 _dvd=no
3534 header_check dvd.h && _dvd=yes
3535 if test "$_dvd" = yes ; then
3536 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3537 else
3538 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3540 echores "$_dvd"
3543 if bsdos; then
3544 echocheck "BSDI dvd.h"
3545 _bsdi_dvd=no
3546 header_check dvd.h && _bsdi_dvd=yes
3547 if test "$_bsdi_dvd" = yes ; then
3548 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3549 else
3550 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3552 echores "$_bsdi_dvd"
3553 fi #if bsdos
3556 if hpux; then
3557 # also used by AIX, but AIX does not support VCD and/or libdvdread
3558 echocheck "HP-UX SCSI header"
3559 _hpux_scsi_h=no
3560 header_check sys/scsi.h && _hpux_scsi_h=yes
3561 if test "$_hpux_scsi_h" = yes ; then
3562 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3563 else
3564 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3566 echores "$_hpux_scsi_h"
3567 fi #if hpux
3570 if sunos; then
3571 echocheck "userspace SCSI headers (Solaris)"
3572 _sol_scsi_h=no
3573 header_check sys/scsi/scsi_types.h &&
3574 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3575 _sol_scsi_h=yes
3576 if test "$_sol_scsi_h" = yes ; then
3577 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3578 else
3579 def_sol_scsi_h='#undef SOLARIS_USCSI'
3581 echores "$_sol_scsi_h"
3582 fi #if sunos
3585 echocheck "termcap"
3586 if test "$_termcap" = auto ; then
3587 cat > $TMPC <<EOF
3588 #include <stddef.h>
3589 #include <term.h>
3590 int main(void) { tgetent(NULL, NULL); return 0; }
3592 _termcap=no
3593 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3594 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3595 && _termcap=yes && break
3596 done
3598 if test "$_termcap" = yes ; then
3599 def_termcap='#define HAVE_TERMCAP 1'
3600 test $_ld_tmp && res_comment="using $_ld_tmp"
3601 else
3602 def_termcap='#undef HAVE_TERMCAP'
3604 echores "$_termcap"
3607 echocheck "termios"
3608 def_termios='#undef HAVE_TERMIOS'
3609 def_termios_h='#undef HAVE_TERMIOS_H'
3610 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3611 if test "$_termios" = auto ; then
3612 _termios=no
3613 for _termios_header in "termios.h" "sys/termios.h"; do
3614 header_check $_termios_header && _termios=yes &&
3615 res_comment="using $_termios_header" && break
3616 done
3619 if test "$_termios" = yes ; then
3620 def_termios='#define HAVE_TERMIOS 1'
3621 if test "$_termios_header" = "termios.h" ; then
3622 def_termios_h='#define HAVE_TERMIOS_H 1'
3623 else
3624 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3627 echores "$_termios"
3630 echocheck "shm"
3631 if test "$_shm" = auto ; then
3632 cat > $TMPC << EOF
3633 #include <sys/types.h>
3634 #include <sys/shm.h>
3635 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3637 _shm=no
3638 cc_check && _shm=yes
3640 if test "$_shm" = yes ; then
3641 def_shm='#define HAVE_SHM 1'
3642 else
3643 def_shm='#undef HAVE_SHM'
3645 echores "$_shm"
3648 echocheck "strsep()"
3649 cat > $TMPC << EOF
3650 #include <string.h>
3651 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3653 _strsep=no
3654 cc_check && _strsep=yes
3655 if test "$_strsep" = yes ; then
3656 def_strsep='#define HAVE_STRSEP 1'
3657 _need_strsep=no
3658 else
3659 def_strsep='#undef HAVE_STRSEP'
3660 _need_strsep=yes
3662 echores "$_strsep"
3665 echocheck "vsscanf()"
3666 cat > $TMPC << EOF
3667 #define _ISOC99_SOURCE
3668 #include <stdarg.h>
3669 #include <stdio.h>
3670 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3672 _vsscanf=no
3673 cc_check && _vsscanf=yes
3674 if test "$_vsscanf" = yes ; then
3675 def_vsscanf='#define HAVE_VSSCANF 1'
3676 _need_vsscanf=no
3677 else
3678 def_vsscanf='#undef HAVE_VSSCANF'
3679 _need_vsscanf=yes
3681 echores "$_vsscanf"
3684 echocheck "swab()"
3685 cat > $TMPC << EOF
3686 #define _XOPEN_SOURCE 600
3687 #include <unistd.h>
3688 int main(void) { swab(0, 0, 0); return 0; }
3690 _swab=no
3691 cc_check && _swab=yes
3692 if test "$_swab" = yes ; then
3693 def_swab='#define HAVE_SWAB 1'
3694 _need_swab=no
3695 else
3696 def_swab='#undef HAVE_SWAB'
3697 _need_swab=yes
3699 echores "$_swab"
3701 echocheck "POSIX select()"
3702 cat > $TMPC << EOF
3703 #include <stdio.h>
3704 #include <stdlib.h>
3705 #include <sys/types.h>
3706 #include <string.h>
3707 #include <sys/time.h>
3708 #include <unistd.h>
3709 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3711 _posix_select=no
3712 def_posix_select='#undef HAVE_POSIX_SELECT'
3713 #select() of kLIBC (OS/2) supports socket only
3714 ! os2 && cc_check && _posix_select=yes \
3715 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3716 echores "$_posix_select"
3719 echocheck "audio select()"
3720 if test "$_select" = no ; then
3721 def_select='#undef HAVE_AUDIO_SELECT'
3722 elif test "$_select" = yes ; then
3723 def_select='#define HAVE_AUDIO_SELECT 1'
3725 echores "$_select"
3728 echocheck "gettimeofday()"
3729 cat > $TMPC << EOF
3730 #include <sys/time.h>
3731 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3733 _gettimeofday=no
3734 cc_check && _gettimeofday=yes
3735 if test "$_gettimeofday" = yes ; then
3736 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3737 _need_gettimeofday=no
3738 else
3739 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3740 _need_gettimeofday=yes
3742 echores "$_gettimeofday"
3745 echocheck "glob()"
3746 cat > $TMPC << EOF
3747 #include <stdio.h>
3748 #include <glob.h>
3749 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3751 _glob=no
3752 cc_check && _glob=yes
3753 if test "$_glob" = yes ; then
3754 def_glob='#define HAVE_GLOB 1'
3755 _need_glob=no
3756 else
3757 def_glob='#undef HAVE_GLOB'
3758 _need_glob=yes
3760 echores "$_glob"
3763 echocheck "setenv()"
3764 cat > $TMPC << EOF
3765 #include <stdlib.h>
3766 int main(void) { setenv("","",0); return 0; }
3768 _setenv=no
3769 cc_check && _setenv=yes
3770 if test "$_setenv" = yes ; then
3771 def_setenv='#define HAVE_SETENV 1'
3772 _need_setenv=no
3773 else
3774 def_setenv='#undef HAVE_SETENV'
3775 _need_setenv=yes
3777 echores "$_setenv"
3780 echocheck "setmode()"
3781 _setmode=no
3782 def_setmode='#define HAVE_SETMODE 0'
3783 cat > $TMPC << EOF
3784 #include <io.h>
3785 int main(void) { setmode(0, 0); return 0; }
3787 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3788 echores "$_setmode"
3791 if sunos; then
3792 echocheck "sysi86()"
3793 cat > $TMPC << EOF
3794 #include <sys/sysi86.h>
3795 int main(void) { sysi86(0); return 0; }
3797 _sysi86=no
3798 cc_check && _sysi86=yes
3799 if test "$_sysi86" = yes ; then
3800 def_sysi86='#define HAVE_SYSI86 1'
3801 cat > $TMPC << EOF
3802 #include <sys/sysi86.h>
3803 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3805 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3806 else
3807 def_sysi86='#undef HAVE_SYSI86'
3809 echores "$_sysi86"
3810 fi #if sunos
3813 echocheck "sys/sysinfo.h"
3814 cat > $TMPC << EOF
3815 #include <sys/sysinfo.h>
3816 int main(void) {
3817 struct sysinfo s_info;
3818 sysinfo(&s_info);
3819 return 0;
3822 _sys_sysinfo=no
3823 cc_check && _sys_sysinfo=yes
3824 if test "$_sys_sysinfo" = yes ; then
3825 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3826 else
3827 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3829 echores "$_sys_sysinfo"
3832 if darwin; then
3834 echocheck "Mac OS X Finder Support"
3835 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3836 if test "$_macosx_finder" = yes ; then
3837 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3838 extra_ldflags="$extra_ldflags -framework Carbon"
3840 echores "$_macosx_finder"
3842 echocheck "Mac OS X Bundle file locations"
3843 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3844 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3845 if test "$_macosx_bundle" = yes ; then
3846 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3847 extra_ldflags="$extra_ldflags -framework Carbon"
3849 echores "$_macosx_bundle"
3851 echocheck "Apple Remote"
3852 if test "$_apple_remote" = auto ; then
3853 _apple_remote=no
3854 cat > $TMPC <<EOF
3855 #include <stdio.h>
3856 #include <IOKit/IOCFPlugIn.h>
3857 int main(void) {
3858 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3859 CFMutableDictionaryRef hidMatchDictionary;
3860 IOReturn ioReturnValue;
3862 // Set up a matching dictionary to search the I/O Registry by class.
3863 // name for all HID class devices
3864 hidMatchDictionary = IOServiceMatching("AppleIRController");
3866 // Now search I/O Registry for matching devices.
3867 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3868 hidMatchDictionary, &hidObjectIterator);
3870 // If search is unsuccessful, return nonzero.
3871 if (ioReturnValue != kIOReturnSuccess ||
3872 !IOIteratorIsValid(hidObjectIterator)) {
3873 return 1;
3875 return 0;
3878 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3880 if test "$_apple_remote" = yes ; then
3881 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3882 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3883 else
3884 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3886 echores "$_apple_remote"
3888 fi #if darwin
3890 if linux; then
3892 echocheck "Apple IR"
3893 if test "$_apple_ir" = auto ; then
3894 _apple_ir=no
3895 cat > $TMPC <<EOF
3896 #include <linux/types.h>
3897 #include <linux/input.h>
3898 int main(void) {
3899 struct input_event ev;
3900 struct input_id id;
3901 return 0;
3904 cc_check && _apple_ir=yes
3906 if test "$_apple_ir" = yes ; then
3907 def_apple_ir='#define CONFIG_APPLE_IR 1'
3908 else
3909 def_apple_ir='#undef CONFIG_APPLE_IR'
3911 echores "$_apple_ir"
3912 fi #if linux
3914 echocheck "pkg-config"
3915 _pkg_config=pkg-config
3916 if $($_pkg_config --version > /dev/null 2>&1); then
3917 if test "$_ld_static"; then
3918 _pkg_config="$_pkg_config --static"
3920 echores "yes"
3921 else
3922 _pkg_config=false
3923 echores "no"
3927 echocheck "Samba support (libsmbclient)"
3928 if test "$_smb" = yes; then
3929 extra_ldflags="$extra_ldflags -lsmbclient"
3931 if test "$_smb" = auto; then
3932 _smb=no
3933 cat > $TMPC << EOF
3934 #include <libsmbclient.h>
3935 int main(void) { smbc_opendir("smb://"); return 0; }
3937 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3938 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3939 _smb=yes && break
3940 done
3943 if test "$_smb" = yes; then
3944 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3945 inputmodules="smb $inputmodules"
3946 else
3947 def_smb="#undef CONFIG_LIBSMBCLIENT"
3948 noinputmodules="smb $noinputmodules"
3950 echores "$_smb"
3953 #########
3954 # VIDEO #
3955 #########
3958 echocheck "tdfxfb"
3959 if test "$_tdfxfb" = yes ; then
3960 def_tdfxfb='#define CONFIG_TDFXFB 1'
3961 vomodules="tdfxfb $vomodules"
3962 else
3963 def_tdfxfb='#undef CONFIG_TDFXFB'
3964 novomodules="tdfxfb $novomodules"
3966 echores "$_tdfxfb"
3968 echocheck "s3fb"
3969 if test "$_s3fb" = yes ; then
3970 def_s3fb='#define CONFIG_S3FB 1'
3971 vomodules="s3fb $vomodules"
3972 else
3973 def_s3fb='#undef CONFIG_S3FB'
3974 novomodules="s3fb $novomodules"
3976 echores "$_s3fb"
3978 echocheck "wii"
3979 if test "$_wii" = yes ; then
3980 def_wii='#define CONFIG_WII 1'
3981 vomodules="wii $vomodules"
3982 else
3983 def_wii='#undef CONFIG_WII'
3984 novomodules="wii $novomodules"
3986 echores "$_wii"
3988 echocheck "tdfxvid"
3989 if test "$_tdfxvid" = yes ; then
3990 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3991 vomodules="tdfx_vid $vomodules"
3992 else
3993 def_tdfxvid='#undef CONFIG_TDFX_VID'
3994 novomodules="tdfx_vid $novomodules"
3996 echores "$_tdfxvid"
3998 echocheck "xvr100"
3999 if test "$_xvr100" = auto ; then
4000 cat > $TMPC << EOF
4001 #include <unistd.h>
4002 #include <sys/fbio.h>
4003 #include <sys/visual_io.h>
4004 int main(void) {
4005 struct vis_identifier ident;
4006 struct fbgattr attr;
4007 ioctl(0, VIS_GETIDENTIFIER, &ident);
4008 ioctl(0, FBIOGATTR, &attr);
4009 return 0;
4012 _xvr100=no
4013 cc_check && _xvr100=yes
4015 if test "$_xvr100" = yes ; then
4016 def_xvr100='#define CONFIG_XVR100 1'
4017 vomodules="xvr100 $vomodules"
4018 else
4019 def_tdfxvid='#undef CONFIG_XVR100'
4020 novomodules="xvr100 $novomodules"
4022 echores "$_xvr100"
4024 echocheck "tga"
4025 if test "$_tga" = yes ; then
4026 def_tga='#define CONFIG_TGA 1'
4027 vomodules="tga $vomodules"
4028 else
4029 def_tga='#undef CONFIG_TGA'
4030 novomodules="tga $novomodules"
4032 echores "$_tga"
4035 echocheck "md5sum support"
4036 if test "$_md5sum" = yes; then
4037 def_md5sum="#define CONFIG_MD5SUM 1"
4038 vomodules="md5sum $vomodules"
4039 else
4040 def_md5sum="#undef CONFIG_MD5SUM"
4041 novomodules="md5sum $novomodules"
4043 echores "$_md5sum"
4046 echocheck "yuv4mpeg support"
4047 if test "$_yuv4mpeg" = yes; then
4048 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4049 vomodules="yuv4mpeg $vomodules"
4050 else
4051 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4052 novomodules="yuv4mpeg $novomodules"
4054 echores "$_yuv4mpeg"
4057 echocheck "bl"
4058 if test "$_bl" = yes ; then
4059 def_bl='#define CONFIG_BL 1'
4060 vomodules="bl $vomodules"
4061 else
4062 def_bl='#undef CONFIG_BL'
4063 novomodules="bl $novomodules"
4065 echores "$_bl"
4068 echocheck "DirectFB"
4069 if test "$_directfb" = auto ; then
4070 _directfb=no
4071 cat > $TMPC <<EOF
4072 #include <directfb.h>
4073 int main(void) { DirectFBInit(0, 0); return 0; }
4075 for _inc_tmp in "" -I/usr/local/include/directfb \
4076 -I/usr/include/directfb -I/usr/local/include; do
4077 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4078 extra_cflags="$extra_cflags $_inc_tmp" && break
4079 done
4082 dfb_version() {
4083 expr $1 \* 65536 + $2 \* 256 + $3
4086 if test "$_directfb" = yes; then
4087 cat > $TMPC << EOF
4088 #include <directfb_version.h>
4090 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4093 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4094 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4095 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4096 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4097 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4098 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4099 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4100 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4101 res_comment="$_directfb_version"
4102 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4103 else
4104 def_directfb_version='#undef DIRECTFBVERSION'
4105 _directfb=no
4106 res_comment="version >=0.9.13 required"
4108 else
4109 _directfb=no
4110 res_comment="failed to get version"
4113 echores "$_directfb"
4115 if test "$_directfb" = yes ; then
4116 def_directfb='#define CONFIG_DIRECTFB 1'
4117 vomodules="directfb $vomodules"
4118 libs_mplayer="$libs_mplayer -ldirectfb"
4119 else
4120 def_directfb='#undef CONFIG_DIRECTFB'
4121 novomodules="directfb $novomodules"
4123 if test "$_dfbmga" = yes; then
4124 vomodules="dfbmga $vomodules"
4125 def_dfbmga='#define CONFIG_DFBMGA 1'
4126 else
4127 novomodules="dfbmga $novomodules"
4128 def_dfbmga='#undef CONFIG_DFBMGA'
4132 echocheck "X11 headers presence"
4133 _x11_headers="no"
4134 res_comment="check if the dev(el) packages are installed"
4135 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4136 if test -f "$I/X11/Xlib.h" ; then
4137 _x11_headers="yes"
4138 res_comment=""
4139 break
4141 done
4142 if test $_cross_compile = no; then
4143 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4144 /usr/include/X11R6 /usr/openwin/include ; do
4145 if test -f "$I/X11/Xlib.h" ; then
4146 extra_cflags="$extra_cflags -I$I"
4147 _x11_headers="yes"
4148 res_comment="using $I"
4149 break
4151 done
4153 echores "$_x11_headers"
4156 echocheck "X11"
4157 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4158 cat > $TMPC <<EOF
4159 #include <X11/Xlib.h>
4160 #include <X11/Xutil.h>
4161 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4163 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4164 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4165 -L/usr/lib ; do
4166 if netbsd; then
4167 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4168 else
4169 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4171 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4172 && _x11=yes && break
4173 done
4175 if test "$_x11" = yes ; then
4176 def_x11='#define CONFIG_X11 1'
4177 vomodules="x11 xover $vomodules"
4178 else
4179 _x11=no
4180 def_x11='#undef CONFIG_X11'
4181 novomodules="x11 $novomodules"
4182 res_comment="check if the dev(el) packages are installed"
4183 # disable stuff that depends on X
4184 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4186 echores "$_x11"
4188 echocheck "Xss screensaver extensions"
4189 if test "$_xss" = auto ; then
4190 cat > $TMPC << EOF
4191 #include <X11/Xlib.h>
4192 #include <X11/extensions/scrnsaver.h>
4193 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4195 _xss=no
4196 cc_check -lXss && _xss=yes
4198 if test "$_xss" = yes ; then
4199 def_xss='#define CONFIG_XSS 1'
4200 libs_mplayer="$libs_mplayer -lXss"
4201 else
4202 def_xss='#undef CONFIG_XSS'
4204 echores "$_xss"
4206 echocheck "DPMS"
4207 _xdpms3=no
4208 _xdpms4=no
4209 if test "$_x11" = yes ; then
4210 cat > $TMPC <<EOF
4211 #include <X11/Xmd.h>
4212 #include <X11/Xlib.h>
4213 #include <X11/Xutil.h>
4214 #include <X11/Xatom.h>
4215 #include <X11/extensions/dpms.h>
4216 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4218 cc_check -lXdpms && _xdpms3=yes
4219 cat > $TMPC <<EOF
4220 #include <X11/Xlib.h>
4221 #include <X11/extensions/dpms.h>
4222 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4224 cc_check -lXext && _xdpms4=yes
4226 if test "$_xdpms4" = yes ; then
4227 def_xdpms='#define CONFIG_XDPMS 1'
4228 res_comment="using Xdpms 4"
4229 echores "yes"
4230 elif test "$_xdpms3" = yes ; then
4231 def_xdpms='#define CONFIG_XDPMS 1'
4232 libs_mplayer="$libs_mplayer -lXdpms"
4233 res_comment="using Xdpms 3"
4234 echores "yes"
4235 else
4236 def_xdpms='#undef CONFIG_XDPMS'
4237 echores "no"
4241 echocheck "Xv"
4242 if test "$_xv" = auto ; then
4243 cat > $TMPC <<EOF
4244 #include <X11/Xlib.h>
4245 #include <X11/extensions/Xvlib.h>
4246 int main(void) {
4247 (void) XvGetPortAttribute(0, 0, 0, 0);
4248 (void) XvQueryPortAttributes(0, 0, 0);
4249 return 0; }
4251 _xv=no
4252 cc_check -lXv && _xv=yes
4255 if test "$_xv" = yes ; then
4256 def_xv='#define CONFIG_XV 1'
4257 libs_mplayer="$libs_mplayer -lXv"
4258 vomodules="xv $vomodules"
4259 else
4260 def_xv='#undef CONFIG_XV'
4261 novomodules="xv $novomodules"
4263 echores "$_xv"
4266 echocheck "XvMC"
4267 if test "$_xv" = yes && test "$_xvmc" != no ; then
4268 _xvmc=no
4269 cat > $TMPC <<EOF
4270 #include <X11/Xlib.h>
4271 #include <X11/extensions/Xvlib.h>
4272 #include <X11/extensions/XvMClib.h>
4273 int main(void) {
4274 (void) XvMCQueryExtension(0,0,0);
4275 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4276 return 0; }
4278 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4279 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4280 done
4282 if test "$_xvmc" = yes ; then
4283 def_xvmc='#define CONFIG_XVMC 1'
4284 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4285 vomodules="xvmc $vomodules"
4286 res_comment="using $_xvmclib"
4287 else
4288 def_xvmc='#define CONFIG_XVMC 0'
4289 novomodules="xvmc $novomodules"
4291 echores "$_xvmc"
4294 echocheck "VDPAU"
4295 if test "$_vdpau" = auto ; then
4296 _vdpau=no
4297 if test "$_dl" = yes ; then
4298 cat > $TMPC <<EOF
4299 #include <vdpau/vdpau_x11.h>
4300 int main(void) {
4301 (void) vdp_device_create_x11(0, 0, 0, 0);
4302 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4304 cc_check -lvdpau && _vdpau=yes
4307 if test "$_vdpau" = yes ; then
4308 def_vdpau='#define CONFIG_VDPAU 1'
4309 libs_mplayer="$libs_mplayer -lvdpau"
4310 vomodules="vdpau $vomodules"
4311 else
4312 def_vdpau='#define CONFIG_VDPAU 0'
4313 novomodules="vdpau $novomodules"
4315 echores "$_vdpau"
4318 echocheck "Xinerama"
4319 if test "$_xinerama" = auto ; then
4320 cat > $TMPC <<EOF
4321 #include <X11/Xlib.h>
4322 #include <X11/extensions/Xinerama.h>
4323 int main(void) { (void) XineramaIsActive(0); return 0; }
4325 _xinerama=no
4326 cc_check -lXinerama && _xinerama=yes
4329 if test "$_xinerama" = yes ; then
4330 def_xinerama='#define CONFIG_XINERAMA 1'
4331 libs_mplayer="$libs_mplayer -lXinerama"
4332 else
4333 def_xinerama='#undef CONFIG_XINERAMA'
4335 echores "$_xinerama"
4338 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4339 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4340 # named 'X extensions' or something similar.
4341 # This check may be useful for future mplayer versions (to change resolution)
4342 # If you run into problems, remove '-lXxf86vm'.
4343 echocheck "Xxf86vm"
4344 if test "$_vm" = auto ; then
4345 cat > $TMPC <<EOF
4346 #include <X11/Xlib.h>
4347 #include <X11/extensions/xf86vmode.h>
4348 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4350 _vm=no
4351 cc_check -lXxf86vm && _vm=yes
4353 if test "$_vm" = yes ; then
4354 def_vm='#define CONFIG_XF86VM 1'
4355 libs_mplayer="$libs_mplayer -lXxf86vm"
4356 else
4357 def_vm='#undef CONFIG_XF86VM'
4359 echores "$_vm"
4361 # Check for the presence of special keycodes, like audio control buttons
4362 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4363 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4364 # have these new keycodes.
4365 echocheck "XF86keysym"
4366 if test "$_xf86keysym" = auto; then
4367 _xf86keysym=no
4368 cat > $TMPC <<EOF
4369 #include <X11/Xlib.h>
4370 #include <X11/XF86keysym.h>
4371 int main(void) { return XF86XK_AudioPause; }
4373 cc_check && _xf86keysym=yes
4375 if test "$_xf86keysym" = yes ; then
4376 def_xf86keysym='#define CONFIG_XF86XK 1'
4377 else
4378 def_xf86keysym='#undef CONFIG_XF86XK'
4380 echores "$_xf86keysym"
4382 echocheck "DGA"
4383 if test "$_dga2" = auto && test "$_x11" = yes ; then
4384 cat > $TMPC << EOF
4385 #include <X11/Xlib.h>
4386 #include <X11/extensions/xf86dga.h>
4387 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4389 _dga2=no
4390 cc_check -lXxf86dga && _dga2=yes
4392 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4393 cat > $TMPC << EOF
4394 #include <X11/Xlib.h>
4395 #include <X11/extensions/xf86dga.h>
4396 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4398 _dga1=no
4399 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4402 _dga=no
4403 def_dga='#undef CONFIG_DGA'
4404 def_dga1='#undef CONFIG_DGA1'
4405 def_dga2='#undef CONFIG_DGA2'
4406 if test "$_dga1" = yes ; then
4407 _dga=yes
4408 def_dga1='#define CONFIG_DGA1 1'
4409 res_comment="using DGA 1.0"
4410 elif test "$_dga2" = yes ; then
4411 _dga=yes
4412 def_dga2='#define CONFIG_DGA2 1'
4413 res_comment="using DGA 2.0"
4415 if test "$_dga" = yes ; then
4416 def_dga='#define CONFIG_DGA 1'
4417 libs_mplayer="$libs_mplayer -lXxf86dga"
4418 vomodules="dga $vomodules"
4419 else
4420 novomodules="dga $novomodules"
4422 echores "$_dga"
4425 echocheck "3dfx"
4426 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4427 def_3dfx='#define CONFIG_3DFX 1'
4428 vomodules="3dfx $vomodules"
4429 else
4430 def_3dfx='#undef CONFIG_3DFX'
4431 novomodules="3dfx $novomodules"
4433 echores "$_3dfx"
4436 echocheck "VIDIX"
4437 def_vidix='#undef CONFIG_VIDIX'
4438 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4439 _vidix_drv_cyberblade=no
4440 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4441 _vidix_drv_ivtv=no
4442 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4443 _vidix_drv_mach64=no
4444 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4445 _vidix_drv_mga=no
4446 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4447 _vidix_drv_mga_crtc2=no
4448 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4449 _vidix_drv_nvidia=no
4450 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4451 _vidix_drv_pm2=no
4452 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4453 _vidix_drv_pm3=no
4454 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4455 _vidix_drv_radeon=no
4456 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4457 _vidix_drv_rage128=no
4458 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4459 _vidix_drv_s3=no
4460 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4461 _vidix_drv_sh_veu=no
4462 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4463 _vidix_drv_sis=no
4464 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4465 _vidix_drv_unichrome=no
4466 if test "$_vidix" = auto ; then
4467 _vidix=no
4468 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4469 && _vidix=yes
4470 x86_64 && ! linux && _vidix=no
4471 (ppc || alpha) && linux && _vidix=yes
4473 echores "$_vidix"
4475 if test "$_vidix" = yes ; then
4476 def_vidix='#define CONFIG_VIDIX 1'
4477 vomodules="cvidix $vomodules"
4478 # FIXME: ivtv driver temporarily disabled until we have a proper test
4479 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4480 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4482 # some vidix drivers are architecture and os specific, discard them elsewhere
4483 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4484 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4486 for driver in $_vidix_drivers ; do
4487 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4488 eval _vidix_drv_${driver}=yes
4489 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4490 done
4492 echocheck "VIDIX PCI device name database"
4493 echores "$_vidix_pcidb"
4494 if test "$_vidix_pcidb" = yes ; then
4495 _vidix_pcidb_val=1
4496 else
4497 _vidix_pcidb_val=0
4500 echocheck "VIDIX dhahelper support"
4501 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4502 echores "$_dhahelper"
4504 echocheck "VIDIX svgalib_helper support"
4505 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4506 echores "$_svgalib_helper"
4508 else
4509 novomodules="cvidix $novomodules"
4512 if test "$_vidix" = yes && win32; then
4513 winvidix=yes
4514 vomodules="winvidix $vomodules"
4515 libs_mplayer="$libs_mplayer -lgdi32"
4516 else
4517 novomodules="winvidix $novomodules"
4519 if test "$_vidix" = yes && test "$_x11" = yes; then
4520 xvidix=yes
4521 vomodules="xvidix $vomodules"
4522 else
4523 novomodules="xvidix $novomodules"
4526 echocheck "GGI"
4527 if test "$_ggi" = auto ; then
4528 cat > $TMPC << EOF
4529 #include <ggi/ggi.h>
4530 int main(void) { ggiInit(); return 0; }
4532 _ggi=no
4533 cc_check -lggi && _ggi=yes
4535 if test "$_ggi" = yes ; then
4536 def_ggi='#define CONFIG_GGI 1'
4537 libs_mplayer="$libs_mplayer -lggi"
4538 vomodules="ggi $vomodules"
4539 else
4540 def_ggi='#undef CONFIG_GGI'
4541 novomodules="ggi $novomodules"
4543 echores "$_ggi"
4545 echocheck "GGI extension: libggiwmh"
4546 if test "$_ggiwmh" = auto ; then
4547 _ggiwmh=no
4548 cat > $TMPC << EOF
4549 #include <ggi/ggi.h>
4550 #include <ggi/wmh.h>
4551 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4553 cc_check -lggi -lggiwmh && _ggiwmh=yes
4555 # needed to get right output on obscure combination
4556 # like --disable-ggi --enable-ggiwmh
4557 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4558 def_ggiwmh='#define CONFIG_GGIWMH 1'
4559 libs_mplayer="$libs_mplayer -lggiwmh"
4560 else
4561 _ggiwmh=no
4562 def_ggiwmh='#undef CONFIG_GGIWMH'
4564 echores "$_ggiwmh"
4567 echocheck "AA"
4568 if test "$_aa" = auto ; then
4569 cat > $TMPC << EOF
4570 #include <aalib.h>
4571 extern struct aa_hardware_params aa_defparams;
4572 extern struct aa_renderparams aa_defrenderparams;
4573 int main(void) {
4574 aa_context *c;
4575 aa_renderparams *p;
4576 (void) aa_init(0, 0, 0);
4577 c = aa_autoinit(&aa_defparams);
4578 p = aa_getrenderparams();
4579 aa_autoinitkbd(c,0);
4580 return 0; }
4582 _aa=no
4583 for _ld_tmp in "-laa" ; do
4584 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4585 done
4587 if test "$_aa" = yes ; then
4588 def_aa='#define CONFIG_AA 1'
4589 if cygwin ; then
4590 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4592 vomodules="aa $vomodules"
4593 else
4594 def_aa='#undef CONFIG_AA'
4595 novomodules="aa $novomodules"
4597 echores "$_aa"
4600 echocheck "CACA"
4601 if test "$_caca" = auto ; then
4602 _caca=no
4603 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4604 cat > $TMPC << EOF
4605 #include <caca.h>
4606 #ifdef CACA_API_VERSION_1
4607 #include <caca0.h>
4608 #endif
4609 int main(void) { (void) caca_init(); return 0; }
4611 cc_check $(caca-config --libs) && _caca=yes
4614 if test "$_caca" = yes ; then
4615 def_caca='#define CONFIG_CACA 1'
4616 extra_cflags="$extra_cflags $(caca-config --cflags)"
4617 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4618 vomodules="caca $vomodules"
4619 else
4620 def_caca='#undef CONFIG_CACA'
4621 novomodules="caca $novomodules"
4623 echores "$_caca"
4626 echocheck "SVGAlib"
4627 if test "$_svga" = auto ; then
4628 _svga=no
4629 header_check vga.h -lvga $_ld_lm && _svga=yes
4631 if test "$_svga" = yes ; then
4632 def_svga='#define CONFIG_SVGALIB 1'
4633 libs_mplayer="$libs_mplayer -lvga"
4634 vomodules="svga $vomodules"
4635 else
4636 def_svga='#undef CONFIG_SVGALIB'
4637 novomodules="svga $novomodules"
4639 echores "$_svga"
4642 echocheck "FBDev"
4643 if test "$_fbdev" = auto ; then
4644 _fbdev=no
4645 linux && _fbdev=yes
4647 if test "$_fbdev" = yes ; then
4648 def_fbdev='#define CONFIG_FBDEV 1'
4649 vomodules="fbdev $vomodules"
4650 else
4651 def_fbdev='#undef CONFIG_FBDEV'
4652 novomodules="fbdev $novomodules"
4654 echores "$_fbdev"
4658 echocheck "DVB"
4659 if test "$_dvb" = auto ; then
4660 _dvb=no
4661 cat >$TMPC << EOF
4662 #include <poll.h>
4663 #include <sys/ioctl.h>
4664 #include <stdio.h>
4665 #include <time.h>
4666 #include <unistd.h>
4667 #include <linux/dvb/dmx.h>
4668 #include <linux/dvb/frontend.h>
4669 #include <linux/dvb/video.h>
4670 #include <linux/dvb/audio.h>
4671 int main(void) {return 0;}
4673 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4674 cc_check $_inc_tmp && _dvb=yes && \
4675 extra_cflags="$extra_cflags $_inc_tmp" && break
4676 done
4678 echores "$_dvb"
4679 if test "$_dvb" = yes ; then
4680 _dvbin=yes
4681 inputmodules="dvb $inputmodules"
4682 def_dvb='#define CONFIG_DVB 1'
4683 def_dvbin='#define CONFIG_DVBIN 1'
4684 aomodules="mpegpes(dvb) $aomodules"
4685 vomodules="mpegpes(dvb) $vomodules"
4686 else
4687 _dvbin=no
4688 noinputmodules="dvb $noinputmodules"
4689 def_dvb='#undef CONFIG_DVB'
4690 def_dvbin='#undef CONFIG_DVBIN '
4691 aomodules="mpegpes(file) $aomodules"
4692 vomodules="mpegpes(file) $vomodules"
4696 if darwin; then
4698 echocheck "QuickTime"
4699 if test "$quicktime" = auto ; then
4700 cat > $TMPC <<EOF
4701 #include <QuickTime/QuickTime.h>
4702 int main(void) {
4703 ImageDescription *desc;
4704 EnterMovies();
4705 ExitMovies();
4706 return 0;
4709 quicktime=no
4710 cc_check -framework QuickTime && quicktime=yes
4712 if test "$quicktime" = yes ; then
4713 extra_ldflags="$extra_ldflags -framework QuickTime"
4714 def_quicktime='#define CONFIG_QUICKTIME 1'
4715 else
4716 def_quicktime='#undef CONFIG_QUICKTIME'
4717 _quartz=no
4719 echores $quicktime
4721 echocheck "Quartz"
4722 if test "$_quartz" = auto ; then
4723 cat > $TMPC <<EOF
4724 #include <Carbon/Carbon.h>
4725 int main(void) {
4726 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4727 return 0;
4730 _quartz=no
4731 cc_check -framework Carbon && _quartz=yes
4733 if test "$_quartz" = yes ; then
4734 libs_mplayer="$libs_mplayer -framework Carbon"
4735 def_quartz='#define CONFIG_QUARTZ 1'
4736 vomodules="quartz $vomodules"
4737 else
4738 def_quartz='#undef CONFIG_QUARTZ'
4739 novomodules="quartz $novomodules"
4741 echores $_quartz
4743 echocheck "CoreVideo"
4744 if test "$_corevideo" = auto ; then
4745 cat > $TMPC <<EOF
4746 #include <Carbon/Carbon.h>
4747 #include <CoreServices/CoreServices.h>
4748 #include <OpenGL/OpenGL.h>
4749 #include <QuartzCore/CoreVideo.h>
4750 int main(void) { return 0; }
4752 _corevideo=no
4753 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4755 if test "$_corevideo" = yes ; then
4756 vomodules="corevideo $vomodules"
4757 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4758 def_corevideo='#define CONFIG_COREVIDEO 1'
4759 else
4760 novomodules="corevideo $novomodules"
4761 def_corevideo='#undef CONFIG_COREVIDEO'
4763 echores "$_corevideo"
4765 fi #if darwin
4768 echocheck "PNG support"
4769 if test "$_png" = auto ; then
4770 _png=no
4771 if irix ; then
4772 # Don't check for -lpng on irix since it has its own libpng
4773 # incompatible with the GNU libpng
4774 res_comment="disabled on irix (not GNU libpng)"
4775 else
4776 cat > $TMPC << EOF
4777 #include <png.h>
4778 #include <string.h>
4779 int main(void) {
4780 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4781 printf("libpng: %s\n", png_libpng_ver);
4782 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4785 cc_check -lpng -lz $_ld_lm && _png=yes
4788 echores "$_png"
4789 if test "$_png" = yes ; then
4790 def_png='#define CONFIG_PNG 1'
4791 extra_ldflags="$extra_ldflags -lpng -lz"
4792 else
4793 def_png='#undef CONFIG_PNG'
4796 echocheck "MNG support"
4797 if test "$_mng" = auto ; then
4798 _mng=no
4799 cat > $TMPC << EOF
4800 #include <libmng.h>
4801 int main(void) {
4802 const char * p_ver = mng_version_text();
4803 return !p_ver || p_ver[0] == 0;
4806 if cc_check -lmng -lz $_ld_lm ; then
4807 _mng=yes
4810 echores "$_mng"
4811 if test "$_mng" = yes ; then
4812 def_mng='#define CONFIG_MNG 1'
4813 extra_ldflags="$extra_ldflags -lmng -lz"
4814 else
4815 def_mng='#undef CONFIG_MNG'
4818 echocheck "JPEG support"
4819 if test "$_jpeg" = auto ; then
4820 _jpeg=no
4821 cat > $TMPC << EOF
4822 #include <stdio.h>
4823 #include <stdlib.h>
4824 #include <setjmp.h>
4825 #include <string.h>
4826 #include <jpeglib.h>
4827 int main(void) { return 0; }
4829 cc_check -ljpeg $_ld_lm && _jpeg=yes
4831 echores "$_jpeg"
4833 if test "$_jpeg" = yes ; then
4834 def_jpeg='#define CONFIG_JPEG 1'
4835 vomodules="jpeg $vomodules"
4836 extra_ldflags="$extra_ldflags -ljpeg"
4837 else
4838 def_jpeg='#undef CONFIG_JPEG'
4839 novomodules="jpeg $novomodules"
4844 echocheck "PNM support"
4845 if test "$_pnm" = yes; then
4846 def_pnm="#define CONFIG_PNM 1"
4847 vomodules="pnm $vomodules"
4848 else
4849 def_pnm="#undef CONFIG_PNM"
4850 novomodules="pnm $novomodules"
4852 echores "$_pnm"
4856 echocheck "GIF support"
4857 # This is to appease people who want to force gif support.
4858 # If it is forced to yes, then we still do checks to determine
4859 # which gif library to use.
4860 if test "$_gif" = yes ; then
4861 _force_gif=yes
4862 _gif=auto
4865 if test "$_gif" = auto ; then
4866 _gif=no
4867 cat > $TMPC << EOF
4868 #include <gif_lib.h>
4869 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4871 for _ld_gif in "-lungif" "-lgif" ; do
4872 cc_check $_ld_gif && _gif=yes && break
4873 done
4876 # If no library was found, and the user wants support forced,
4877 # then we force it on with libgif, as this is the safest
4878 # assumption IMHO. (libungif & libregif both create symbolic
4879 # links to libgif. We also assume that no x11 support is needed,
4880 # because if you are forcing this, then you _should_ know what
4881 # you are doing. [ Besides, package maintainers should never
4882 # have compiled x11 deps into libungif in the first place. ] )
4883 # </rant>
4884 # --Joey
4885 if test "$_force_gif" = yes && test "$_gif" = no ; then
4886 _gif=yes
4887 _ld_gif="-lgif"
4890 if test "$_gif" = yes ; then
4891 def_gif='#define CONFIG_GIF 1'
4892 codecmodules="gif $codecmodules"
4893 vomodules="gif89a $vomodules"
4894 res_comment="old version, some encoding functions disabled"
4895 def_gif_4='#undef CONFIG_GIF_4'
4896 extra_ldflags="$extra_ldflags $_ld_gif"
4898 cat > $TMPC << EOF
4899 #include <signal.h>
4900 #include <gif_lib.h>
4901 void catch(int sig) { exit(1); }
4902 int main(void) {
4903 signal(SIGSEGV, catch); // catch segfault
4904 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4905 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4906 return 0;
4909 if cc_check "$_ld_gif" ; then
4910 def_gif_4='#define CONFIG_GIF_4 1'
4911 res_comment=""
4913 else
4914 def_gif='#undef CONFIG_GIF'
4915 def_gif_4='#undef CONFIG_GIF_4'
4916 novomodules="gif89a $novomodules"
4917 nocodecmodules="gif $nocodecmodules"
4919 echores "$_gif"
4922 case "$_gif" in yes*)
4923 echocheck "broken giflib workaround"
4924 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4926 cat > $TMPC << EOF
4927 #include <gif_lib.h>
4928 int main(void) {
4929 GifFileType gif;
4930 printf("UserData is at address %p\n", gif.UserData);
4931 return 0;
4934 if cc_check "$_ld_gif" ; then
4935 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4936 echores "disabled"
4937 else
4938 echores "enabled"
4941 esac
4944 echocheck "VESA support"
4945 if test "$_vesa" = auto ; then
4946 cat > $TMPC << EOF
4947 #include <vbe.h>
4948 int main(void) { vbeVersion(); return 0; }
4950 _vesa=no
4951 cc_check -lvbe -llrmi && _vesa=yes
4953 if test "$_vesa" = yes ; then
4954 def_vesa='#define CONFIG_VESA 1'
4955 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4956 vomodules="vesa $vomodules"
4957 else
4958 def_vesa='#undef CONFIG_VESA'
4959 novomodules="vesa $novomodules"
4961 echores "$_vesa"
4963 #################
4964 # VIDEO + AUDIO #
4965 #################
4968 echocheck "SDL"
4969 _inc_tmp=""
4970 _ld_tmp=""
4971 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4972 if test -z "$_sdlconfig" ; then
4973 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4974 _sdlconfig="sdl-config"
4975 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4976 _sdlconfig="sdl11-config"
4977 else
4978 _sdlconfig=false
4981 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4982 cat > $TMPC << EOF
4983 #ifdef CONFIG_SDL_SDL_H
4984 #include <SDL/SDL.h>
4985 #else
4986 #include <SDL.h>
4987 #endif
4988 #ifndef __APPLE__
4989 // we allow SDL hacking our main() only on OSX
4990 #undef main
4991 #endif
4992 int main(int argc, char *argv[]) {
4993 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4994 return 0;
4997 _sdl=no
4998 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4999 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5000 _sdl=yes
5001 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5002 break
5004 done
5005 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5006 res_comment="using $_sdlconfig"
5007 if cygwin ; then
5008 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5009 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5010 elif mingw32 ; then
5011 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5012 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5013 else
5014 _inc_tmp="$($_sdlconfig --cflags)"
5015 _ld_tmp="$($_sdlconfig --libs)"
5017 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5018 _sdl=yes
5022 if test "$_sdl" = yes ; then
5023 def_sdl='#define CONFIG_SDL 1'
5024 extra_cflags="$extra_cflags $_inc_tmp"
5025 libs_mplayer="$libs_mplayer $_ld_tmp"
5026 vomodules="sdl $vomodules"
5027 aomodules="sdl $aomodules"
5028 else
5029 def_sdl='#undef CONFIG_SDL'
5030 novomodules="sdl $novomodules"
5031 noaomodules="sdl $noaomodules"
5033 echores "$_sdl"
5036 # make sure this stays below CoreVideo to avoid issues due to namespace
5037 # conflicts between -lGL and -framework OpenGL
5038 echocheck "OpenGL"
5039 #Note: this test is run even with --enable-gl since we autodetect linker flags
5040 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5041 cat > $TMPC << EOF
5042 #ifdef GL_WIN32
5043 #include <windows.h>
5044 #include <GL/gl.h>
5045 #elif defined(GL_SDL)
5046 #include <GL/gl.h>
5047 #ifdef CONFIG_SDL_SDL_H
5048 #include <SDL/SDL.h>
5049 #else
5050 #include <SDL.h>
5051 #endif
5052 #ifndef __APPLE__
5053 // we allow SDL hacking our main() only on OSX
5054 #undef main
5055 #endif
5056 #else
5057 #include <GL/gl.h>
5058 #include <X11/Xlib.h>
5059 #include <GL/glx.h>
5060 #endif
5061 int main(int argc, char *argv[]) {
5062 #ifdef GL_WIN32
5063 HDC dc;
5064 wglCreateContext(dc);
5065 #elif defined(GL_SDL)
5066 SDL_GL_SwapBuffers();
5067 #else
5068 glXCreateContext(NULL, NULL, NULL, True);
5069 #endif
5070 glFinish();
5071 return 0;
5074 _gl=no
5075 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5076 if cc_check $_ld_tmp $_ld_lm ; then
5077 _gl=yes
5078 _gl_x11=yes
5079 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5080 break
5082 done
5083 if cc_check -DGL_WIN32 -lopengl32 ; then
5084 _gl=yes
5085 _gl_win32=yes
5086 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5088 # last so it can reuse any linker etc. flags detected before
5089 if test "$_sdl" = yes ; then
5090 if cc_check -DGL_SDL ||
5091 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5092 _gl=yes
5093 _gl_sdl=yes
5094 elif cc_check -DGL_SDL -lGL ||
5095 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5096 _gl=yes
5097 _gl_sdl=yes
5098 libs_mplayer="$libs_mplayer -lGL"
5101 else
5102 _gl=no
5104 if test "$_gl" = yes ; then
5105 def_gl='#define CONFIG_GL 1'
5106 res_comment="backends:"
5107 if test "$_gl_win32" = yes ; then
5108 def_gl_win32='#define CONFIG_GL_WIN32 1'
5109 res_comment="$res_comment win32"
5111 if test "$_gl_x11" = yes ; then
5112 def_gl_x11='#define CONFIG_GL_X11 1'
5113 res_comment="$res_comment x11"
5115 if test "$_gl_sdl" = yes ; then
5116 def_gl_sdl='#define CONFIG_GL_SDL 1'
5117 res_comment="$res_comment sdl"
5119 vomodules="opengl $vomodules"
5120 else
5121 def_gl='#undef CONFIG_GL'
5122 def_gl_win32='#undef CONFIG_GL_WIN32'
5123 def_gl_x11='#undef CONFIG_GL_X11'
5124 def_gl_sdl='#undef CONFIG_GL_SDL'
5125 novomodules="opengl $novomodules"
5127 echores "$_gl"
5130 echocheck "MatrixView"
5131 if test "$_gl" = no ; then
5132 matrixview=no
5134 if test "$matrixview" = yes ; then
5135 vomodules="matrixview $vomodules"
5136 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5137 else
5138 novomodules="matrixview $novomodules"
5139 def_matrixview='#undef CONFIG_MATRIXVIEW'
5141 echores "$matrixview"
5144 if os2 ; then
5145 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5146 if test "$_kva" = auto; then
5147 cat > $TMPC << EOF
5148 #include <os2.h>
5149 #include <kva.h>
5150 int main(void) { return 0; }
5152 _kva=no;
5153 cc_check -lkva && _kva=yes
5155 if test "$_kva" = yes ; then
5156 def_kva='#define CONFIG_KVA 1'
5157 libs_mplayer="$libs_mplayer -lkva"
5158 vomodules="kva $vomodules"
5159 else
5160 def_kva='#undef CONFIG_KVA'
5161 novomodules="kva $novomodules"
5163 echores "$_kva"
5164 fi #if os2
5167 if win32; then
5169 echocheck "Windows waveout"
5170 if test "$_win32waveout" = auto ; then
5171 cat > $TMPC << EOF
5172 #include <windows.h>
5173 #include <mmsystem.h>
5174 int main(void) { return 0; }
5176 _win32waveout=no
5177 cc_check -lwinmm && _win32waveout=yes
5179 if test "$_win32waveout" = yes ; then
5180 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5181 libs_mplayer="$libs_mplayer -lwinmm"
5182 aomodules="win32 $aomodules"
5183 else
5184 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5185 noaomodules="win32 $noaomodules"
5187 echores "$_win32waveout"
5189 echocheck "Direct3D"
5190 if test "$_direct3d" = auto ; then
5191 cat > $TMPC << EOF
5192 #include <windows.h>
5193 #include <d3d9.h>
5194 int main(void) { return 0; }
5196 _direct3d=no
5197 cc_check && _direct3d=yes
5199 if test "$_direct3d" = yes ; then
5200 def_direct3d='#define CONFIG_DIRECT3D 1'
5201 vomodules="direct3d $vomodules"
5202 else
5203 def_direct3d='#undef CONFIG_DIRECT3D'
5204 novomodules="direct3d $novomodules"
5206 echores "$_direct3d"
5208 echocheck "Directx"
5209 if test "$_directx" = auto ; then
5210 cat > $TMPC << EOF
5211 #include <windows.h>
5212 #include <ddraw.h>
5213 #include <dsound.h>
5214 int main(void) { return 0; }
5216 _directx=no
5217 cc_check -lgdi32 && _directx=yes
5219 if test "$_directx" = yes ; then
5220 def_directx='#define CONFIG_DIRECTX 1'
5221 libs_mplayer="$libs_mplayer -lgdi32"
5222 vomodules="directx $vomodules"
5223 aomodules="dsound $aomodules"
5224 else
5225 def_directx='#undef CONFIG_DIRECTX'
5226 novomodules="directx $novomodules"
5227 noaomodules="dsound $noaomodules"
5229 echores "$_directx"
5231 fi #if win32; then
5234 echocheck "DXR2"
5235 if test "$_dxr2" = auto; then
5236 _dxr2=no
5237 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5238 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5239 extra_cflags="$extra_cflags $_inc_tmp" && break
5240 done
5242 if test "$_dxr2" = yes; then
5243 def_dxr2='#define CONFIG_DXR2 1'
5244 aomodules="dxr2 $aomodules"
5245 vomodules="dxr2 $vomodules"
5246 else
5247 def_dxr2='#undef CONFIG_DXR2'
5248 noaomodules="dxr2 $noaomodules"
5249 novomodules="dxr2 $novomodules"
5251 echores "$_dxr2"
5253 echocheck "DXR3/H+"
5254 if test "$_dxr3" = auto ; then
5255 _dxr3=no
5256 header_check linux/em8300.h && _dxr3=yes
5258 if test "$_dxr3" = yes ; then
5259 def_dxr3='#define CONFIG_DXR3 1'
5260 vomodules="dxr3 $vomodules"
5261 else
5262 def_dxr3='#undef CONFIG_DXR3'
5263 novomodules="dxr3 $novomodules"
5265 echores "$_dxr3"
5268 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5269 if test "$_ivtv" = auto ; then
5270 cat > $TMPC << EOF
5271 #include <stdlib.h>
5272 #include <inttypes.h>
5273 #include <linux/types.h>
5274 #include <linux/videodev2.h>
5275 #include <linux/ivtv.h>
5276 #include <sys/ioctl.h>
5277 int main(void) {
5278 struct ivtv_cfg_stop_decode sd;
5279 struct ivtv_cfg_start_decode sd1;
5280 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5281 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5282 return 0; }
5284 _ivtv=no
5285 cc_check && _ivtv=yes
5287 if test "$_ivtv" = yes ; then
5288 def_ivtv='#define CONFIG_IVTV 1'
5289 vomodules="ivtv $vomodules"
5290 aomodules="ivtv $aomodules"
5291 else
5292 def_ivtv='#undef CONFIG_IVTV'
5293 novomodules="ivtv $novomodules"
5294 noaomodules="ivtv $noaomodules"
5296 echores "$_ivtv"
5299 echocheck "V4L2 MPEG Decoder"
5300 if test "$_v4l2" = auto ; then
5301 cat > $TMPC << EOF
5302 #include <stdlib.h>
5303 #include <inttypes.h>
5304 #include <linux/types.h>
5305 #include <linux/videodev2.h>
5306 #include <linux/version.h>
5307 int main(void) {
5308 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5309 #error kernel headers too old, need 2.6.22
5310 #endif
5311 struct v4l2_ext_controls ctrls;
5312 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5313 return 0;
5316 _v4l2=no
5317 cc_check && _v4l2=yes
5319 if test "$_v4l2" = yes ; then
5320 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5321 vomodules="v4l2 $vomodules"
5322 aomodules="v4l2 $aomodules"
5323 else
5324 def_v4l2='#undef CONFIG_V4L2_DECODER'
5325 novomodules="v4l2 $novomodules"
5326 noaomodules="v4l2 $noaomodules"
5328 echores "$_v4l2"
5332 #########
5333 # AUDIO #
5334 #########
5337 echocheck "OSS Audio"
5338 if test "$_ossaudio" = auto ; then
5339 cat > $TMPC << EOF
5340 #include <sys/ioctl.h>
5341 #include <$_soundcard_header>
5342 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5344 _ossaudio=no
5345 cc_check && _ossaudio=yes
5347 if test "$_ossaudio" = yes ; then
5348 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5349 aomodules="oss $aomodules"
5350 cat > $TMPC << EOF
5351 #include <sys/ioctl.h>
5352 #include <$_soundcard_header>
5353 #ifdef OPEN_SOUND_SYSTEM
5354 int main(void) { return 0; }
5355 #else
5356 #error Not the real thing
5357 #endif
5359 _real_ossaudio=no
5360 cc_check && _real_ossaudio=yes
5361 if test "$_real_ossaudio" = yes; then
5362 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5363 # Check for OSS4 headers (override default headers)
5364 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5365 if test -f /etc/oss.conf; then
5366 . /etc/oss.conf
5367 _ossinc="$OSSLIBDIR/include"
5368 if test -f "$_ossinc/sys/soundcard.h"; then
5369 extra_cflags="-I$_ossinc $extra_cflags"
5372 elif netbsd || openbsd ; then
5373 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5374 extra_ldflags="$extra_ldflags -lossaudio"
5375 else
5376 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5378 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5379 else
5380 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5381 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5382 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5383 noaomodules="oss $noaomodules"
5385 echores "$_ossaudio"
5388 echocheck "aRts"
5389 if test "$_arts" = auto ; then
5390 _arts=no
5391 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5392 header_check artsc.h $(artsc-config --libs) $(artsc-config --cflags) &&
5393 _arts=yes
5397 if test "$_arts" = yes ; then
5398 def_arts='#define CONFIG_ARTS 1'
5399 aomodules="arts $aomodules"
5400 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5401 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5402 else
5403 noaomodules="arts $noaomodules"
5405 echores "$_arts"
5408 echocheck "EsounD"
5409 if test "$_esd" = auto ; then
5410 _esd=no
5411 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5413 cat > $TMPC << EOF
5414 #include <esd.h>
5415 int main(void) { int fd = esd_open_sound("test"); return fd; }
5417 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5421 echores "$_esd"
5423 if test "$_esd" = yes ; then
5424 def_esd='#define CONFIG_ESD 1'
5425 aomodules="esd $aomodules"
5426 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5427 extra_cflags="$extra_cflags $(esd-config --cflags)"
5429 echocheck "esd_get_latency()"
5430 cat > $TMPC << EOF
5431 #include <esd.h>
5432 int main(void) { return esd_get_latency(0); }
5434 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5435 echores "$_esd_latency"
5436 else
5437 def_esd='#undef CONFIG_ESD'
5438 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5439 noaomodules="esd $noaomodules"
5443 echocheck "NAS"
5444 if test "$_nas" = auto ; then
5445 _nas=no
5446 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5448 if test "$_nas" = yes ; then
5449 def_nas='#define CONFIG_NAS 1'
5450 libs_mplayer="$libs_mplayer -laudio -lXt"
5451 aomodules="nas $aomodules"
5452 else
5453 noaomodules="nas $noaomodules"
5454 def_nas='#undef CONFIG_NAS'
5456 echores "$_nas"
5459 echocheck "pulse"
5460 if test "$_pulse" = auto ; then
5461 _pulse=no
5462 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5463 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5464 _pulse=yes
5467 echores "$_pulse"
5469 if test "$_pulse" = yes ; then
5470 def_pulse='#define CONFIG_PULSE 1'
5471 aomodules="pulse $aomodules"
5472 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5473 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5474 else
5475 def_pulse='#undef CONFIG_PULSE'
5476 noaomodules="pulse $noaomodules"
5480 echocheck "JACK"
5481 if test "$_jack" = auto ; then
5482 _jack=yes
5484 cat > $TMPC << EOF
5485 #include <jack/jack.h>
5486 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5488 if cc_check -ljack ; then
5489 libs_mplayer="$libs_mplayer -ljack"
5490 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5491 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5492 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5493 else
5494 _jack=no
5498 if test "$_jack" = yes ; then
5499 def_jack='#define CONFIG_JACK 1'
5500 aomodules="jack $aomodules"
5501 else
5502 noaomodules="jack $noaomodules"
5504 echores "$_jack"
5506 echocheck "OpenAL"
5507 if test "$_openal" = auto ; then
5508 _openal=no
5509 cat > $TMPC << EOF
5510 #ifdef OPENAL_AL_H
5511 #include <OpenAL/al.h>
5512 #else
5513 #include <AL/al.h>
5514 #endif
5515 int main(void) {
5516 alSourceQueueBuffers(0, 0, 0);
5517 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5518 return 0;
5521 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5522 cc_check $I && _openal=yes && break
5523 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5524 done
5525 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5527 if test "$_openal" = yes ; then
5528 def_openal='#define CONFIG_OPENAL 1'
5529 aomodules="openal $aomodules"
5530 else
5531 noaomodules="openal $noaomodules"
5533 echores "$_openal"
5535 echocheck "ALSA audio"
5536 if test "$_alloca" != yes ; then
5537 _alsa=no
5538 res_comment="alloca missing"
5540 if test "$_alsa" != no ; then
5541 _alsa=no
5542 cat > $TMPC << EOF
5543 #include <sys/asoundlib.h>
5544 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5545 #error "alsa version != 0.5.x"
5546 #endif
5547 int main(void) { return 0; }
5549 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5551 cat > $TMPC << EOF
5552 #include <sys/asoundlib.h>
5553 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5554 #error "alsa version != 0.9.x"
5555 #endif
5556 int main(void) { return 0; }
5558 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5559 cat > $TMPC << EOF
5560 #include <alsa/asoundlib.h>
5561 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5562 #error "alsa version != 0.9.x"
5563 #endif
5564 int main(void) { return 0; }
5566 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5568 cat > $TMPC << EOF
5569 #include <sys/asoundlib.h>
5570 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5571 #error "alsa version != 1.0.x"
5572 #endif
5573 int main(void) { return 0; }
5575 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5576 cat > $TMPC << EOF
5577 #include <alsa/asoundlib.h>
5578 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5579 #error "alsa version != 1.0.x"
5580 #endif
5581 int main(void) { return 0; }
5583 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5585 def_alsa='#undef CONFIG_ALSA'
5586 def_alsa5='#undef CONFIG_ALSA5'
5587 def_alsa9='#undef CONFIG_ALSA9'
5588 def_alsa1x='#undef CONFIG_ALSA1X'
5589 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5590 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5591 if test "$_alsaver" ; then
5592 _alsa=yes
5593 if test "$_alsaver" = '0.5.x' ; then
5594 _alsa5=yes
5595 aomodules="alsa5 $aomodules"
5596 def_alsa5='#define CONFIG_ALSA5 1'
5597 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5598 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5599 elif test "$_alsaver" = '0.9.x-sys' ; then
5600 _alsa9=yes
5601 aomodules="alsa $aomodules"
5602 def_alsa='#define CONFIG_ALSA 1'
5603 def_alsa9='#define CONFIG_ALSA9 1'
5604 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5605 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5606 elif test "$_alsaver" = '0.9.x-alsa' ; then
5607 _alsa9=yes
5608 aomodules="alsa $aomodules"
5609 def_alsa='#define CONFIG_ALSA 1'
5610 def_alsa9='#define CONFIG_ALSA9 1'
5611 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5612 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5613 elif test "$_alsaver" = '1.0.x-sys' ; then
5614 _alsa1x=yes
5615 aomodules="alsa $aomodules"
5616 def_alsa='#define CONFIG_ALSA 1'
5617 def_alsa1x="#define CONFIG_ALSA1X 1"
5618 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5619 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5620 elif test "$_alsaver" = '1.0.x-alsa' ; then
5621 _alsa1x=yes
5622 aomodules="alsa $aomodules"
5623 def_alsa='#define CONFIG_ALSA 1'
5624 def_alsa1x="#define CONFIG_ALSA1X 1"
5625 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5626 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5627 else
5628 _alsa=no
5629 res_comment="unknown version"
5631 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5632 else
5633 noaomodules="alsa $noaomodules"
5635 echores "$_alsa"
5638 echocheck "Sun audio"
5639 if test "$_sunaudio" = auto ; then
5640 cat > $TMPC << EOF
5641 #include <sys/types.h>
5642 #include <sys/audioio.h>
5643 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5645 _sunaudio=no
5646 cc_check && _sunaudio=yes
5648 if test "$_sunaudio" = yes ; then
5649 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5650 aomodules="sun $aomodules"
5651 else
5652 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5653 noaomodules="sun $noaomodules"
5655 echores "$_sunaudio"
5658 def_mlib='#define CONFIG_MLIB 0'
5659 if sunos; then
5660 echocheck "Sun mediaLib"
5661 if test "$_mlib" = auto ; then
5662 _mlib=no
5663 cat > $TMPC << EOF
5664 #include <mlib.h>
5665 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5667 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5669 echores "$_mlib"
5670 fi #if sunos
5673 if darwin; then
5674 echocheck "CoreAudio"
5675 if test "$_coreaudio" = auto ; then
5676 cat > $TMPC <<EOF
5677 #include <CoreAudio/CoreAudio.h>
5678 #include <AudioToolbox/AudioToolbox.h>
5679 #include <AudioUnit/AudioUnit.h>
5680 int main(void) { return 0; }
5682 _coreaudio=no
5683 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5685 if test "$_coreaudio" = yes ; then
5686 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5687 def_coreaudio='#define CONFIG_COREAUDIO 1'
5688 aomodules="coreaudio $aomodules"
5689 else
5690 def_coreaudio='#undef CONFIG_COREAUDIO'
5691 noaomodules="coreaudio $noaomodules"
5693 echores $_coreaudio
5694 fi #if darwin
5697 if irix; then
5698 echocheck "SGI audio"
5699 if test "$_sgiaudio" = auto ; then
5700 _sgiaudio=no
5701 header_check dmedia/audio.h && _sgiaudio=yes
5703 if test "$_sgiaudio" = "yes" ; then
5704 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5705 libs_mplayer="$libs_mplayer -laudio"
5706 aomodules="sgi $aomodules"
5707 else
5708 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5709 noaomodules="sgi $noaomodules"
5711 echores "$_sgiaudio"
5712 fi #if irix
5715 if os2 ; then
5716 echocheck "KAI (UNIAUD/DART)"
5717 if test "$_kai" = auto; then
5718 cat > $TMPC << EOF
5719 #include <os2.h>
5720 #include <kai.h>
5721 int main(void) { return 0; }
5723 _kai=no;
5724 cc_check -lkai && _kai=yes
5726 if test "$_kai" = yes ; then
5727 def_kai='#define CONFIG_KAI 1'
5728 libs_mplayer="$libs_mplayer -lkai"
5729 aomodules="kai $aomodules"
5730 else
5731 def_kai='#undef CONFIG_KAI'
5732 noaomodules="kai $noaomodules"
5734 echores "$_kai"
5736 echocheck "DART"
5737 if test "$_dart" = auto; then
5738 cat > $TMPC << EOF
5739 #include <os2.h>
5740 #include <dart.h>
5741 int main(void) { return 0; }
5743 _dart=no;
5744 cc_check -ldart && _dart=yes
5746 if test "$_dart" = yes ; then
5747 def_dart='#define CONFIG_DART 1'
5748 libs_mplayer="$libs_mplayer -ldart"
5749 aomodules="dart $aomodules"
5750 else
5751 def_dart='#undef CONFIG_DART'
5752 noaomodules="dart $noaomodules"
5754 echores "$_dart"
5755 fi #if os2
5758 # set default CD/DVD devices
5759 if win32 || os2 ; then
5760 default_cdrom_device="D:"
5761 elif darwin ; then
5762 default_cdrom_device="/dev/disk1"
5763 elif dragonfly ; then
5764 default_cdrom_device="/dev/cd0"
5765 elif freebsd ; then
5766 default_cdrom_device="/dev/acd0"
5767 elif openbsd ; then
5768 default_cdrom_device="/dev/rcd0a"
5769 elif sunos ; then
5770 default_cdrom_device="/vol/dev/aliases/cdrom0"
5771 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5772 # file system and the volfs service.
5773 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5774 elif amigaos ; then
5775 default_cdrom_device="a1ide.device:2"
5776 else
5777 default_cdrom_device="/dev/cdrom"
5780 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5781 default_dvd_device=$default_cdrom_device
5782 elif darwin ; then
5783 default_dvd_device="/dev/rdiskN"
5784 else
5785 default_dvd_device="/dev/dvd"
5789 echocheck "VCD support"
5790 if test "$_vcd" = auto; then
5791 _vcd=no
5792 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5793 _vcd=yes
5794 elif mingw32; then
5795 header_check ddk/ntddcdrm.h && _vcd=yes
5798 if test "$_vcd" = yes; then
5799 inputmodules="vcd $inputmodules"
5800 def_vcd='#define CONFIG_VCD 1'
5801 else
5802 def_vcd='#undef CONFIG_VCD'
5803 noinputmodules="vcd $noinputmodules"
5804 res_comment="not supported on this OS"
5806 echores "$_vcd"
5810 echocheck "Blu-ray support"
5811 if test "$_bluray" = auto ; then
5812 _bluray=no
5814 cat > $TMPC << EOF
5815 #include <stdlib.h>
5816 #include <libbluray/bluray.h>
5817 int main(void) {
5818 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5819 return 0;
5822 compile_check $TMPC -lbluray && _bluray=yes
5824 if test "$_bluray" = yes ; then
5825 def_bluray='#define CONFIG_LIBBLURAY 1'
5826 extra_ldflags="$extra_ldflags -lbluray"
5827 inputmodules="bluray $inputmodules"
5828 else
5829 def_bluray='#undef CONFIG_LIBBLURAY'
5830 noinputmodules="bluray $noinputmodules"
5832 echores "$_bluray"
5834 echocheck "dvdread"
5835 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5836 _dvdread_internal=no
5838 if test "$_dvdread_internal" = auto ; then
5839 _dvdread_internal=no
5840 _dvdread=no
5841 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5842 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5843 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5844 || darwin || win32 || os2; then
5845 _dvdread_internal=yes
5846 _dvdread=yes
5847 extra_cflags="-Ilibdvdread4 $extra_cflags"
5849 elif test "$_dvdread" = auto ; then
5850 _dvdread=no
5851 if test "$_dl" = yes; then
5852 cat > $TMPC << EOF
5853 #include <inttypes.h>
5854 #include <dvdread/dvd_reader.h>
5855 #include <dvdread/ifo_types.h>
5856 #include <dvdread/ifo_read.h>
5857 #include <dvdread/nav_read.h>
5858 int main(void) { return 0; }
5860 _dvdreadcflags=$($_dvdreadconfig --cflags)
5861 _dvdreadlibs=$($_dvdreadconfig --libs)
5862 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5863 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5864 _dvdread=yes
5865 extra_cflags="$extra_cflags $_dvdreadcflags"
5866 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5867 res_comment="external"
5872 if test "$_dvdread_internal" = yes; then
5873 def_dvdread='#define CONFIG_DVDREAD 1'
5874 inputmodules="dvdread(internal) $inputmodules"
5875 _largefiles=yes
5876 res_comment="internal"
5877 elif test "$_dvdread" = yes; then
5878 def_dvdread='#define CONFIG_DVDREAD 1'
5879 _largefiles=yes
5880 extra_ldflags="$extra_ldflags -ldvdread"
5881 inputmodules="dvdread(external) $inputmodules"
5882 res_comment="external"
5883 else
5884 def_dvdread='#undef CONFIG_DVDREAD'
5885 noinputmodules="dvdread $noinputmodules"
5887 echores "$_dvdread"
5890 echocheck "internal libdvdcss"
5891 if test "$_libdvdcss_internal" = auto ; then
5892 _libdvdcss_internal=no
5893 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5894 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5896 if test "$_libdvdcss_internal" = yes ; then
5897 if linux || netbsd || openbsd || bsdos ; then
5898 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5899 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5900 elif freebsd || dragonfly ; then
5901 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5902 elif darwin ; then
5903 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5904 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5905 elif cygwin ; then
5906 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5907 elif beos ; then
5908 cflags_libdvdcss="-DSYS_BEOS"
5909 elif os2 ; then
5910 cflags_libdvdcss="-DSYS_OS2"
5912 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5913 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5914 inputmodules="libdvdcss(internal) $inputmodules"
5915 _largefiles=yes
5916 else
5917 noinputmodules="libdvdcss(internal) $noinputmodules"
5919 echores "$_libdvdcss_internal"
5922 echocheck "cdparanoia"
5923 if test "$_cdparanoia" = auto ; then
5924 cat > $TMPC <<EOF
5925 #include <cdda_interface.h>
5926 #include <cdda_paranoia.h>
5927 // This need a better test. How ?
5928 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5930 _cdparanoia=no
5931 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5932 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5933 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5934 done
5936 if test "$_cdparanoia" = yes ; then
5937 _cdda='yes'
5938 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5939 openbsd && extra_ldflags="$extra_ldflags -lutil"
5941 echores "$_cdparanoia"
5944 echocheck "libcdio"
5945 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5946 cat > $TMPC << EOF
5947 #include <stdio.h>
5948 #include <cdio/version.h>
5949 #include <cdio/cdda.h>
5950 #include <cdio/paranoia.h>
5951 int main(void) {
5952 void *test = cdda_verbose_set;
5953 printf("%s\n", CDIO_VERSION);
5954 return test == (void *)1;
5957 _libcdio=no
5958 for _ld_tmp in "" "-lwinmm" ; do
5959 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5960 cc_check $_ld_tmp $_ld_lm \
5961 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5962 done
5963 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5964 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5965 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5966 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5967 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5970 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5971 _cdda='yes'
5972 def_libcdio='#define CONFIG_LIBCDIO 1'
5973 def_havelibcdio='yes'
5974 else
5975 if test "$_cdparanoia" = yes ; then
5976 res_comment="using cdparanoia"
5978 def_libcdio='#undef CONFIG_LIBCDIO'
5979 def_havelibcdio='no'
5981 echores "$_libcdio"
5983 if test "$_cdda" = yes ; then
5984 test $_cddb = auto && test $networking = yes && _cddb=yes
5985 def_cdparanoia='#define CONFIG_CDDA 1'
5986 inputmodules="cdda $inputmodules"
5987 else
5988 def_cdparanoia='#undef CONFIG_CDDA'
5989 noinputmodules="cdda $noinputmodules"
5992 if test "$_cddb" = yes ; then
5993 def_cddb='#define CONFIG_CDDB 1'
5994 inputmodules="cddb $inputmodules"
5995 else
5996 _cddb=no
5997 def_cddb='#undef CONFIG_CDDB'
5998 noinputmodules="cddb $noinputmodules"
6001 echocheck "bitmap font support"
6002 if test "$_bitmap_font" = yes ; then
6003 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6004 else
6005 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6007 echores "$_bitmap_font"
6010 echocheck "freetype >= 2.0.9"
6012 # freetype depends on iconv
6013 if test "$_iconv" = no ; then
6014 _freetype=no
6015 res_comment="iconv support needed"
6018 if test "$_freetype" = auto ; then
6019 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6020 cat > $TMPC << EOF
6021 #include <stdio.h>
6022 #include <ft2build.h>
6023 #include FT_FREETYPE_H
6024 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6025 #error "Need FreeType 2.0.9 or newer"
6026 #endif
6027 int main(void) {
6028 FT_Library library;
6029 FT_Int major=-1,minor=-1,patch=-1;
6030 int err=FT_Init_FreeType(&library);
6031 return 0;
6034 _freetype=no
6035 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6036 else
6037 _freetype=no
6040 if test "$_freetype" = yes ; then
6041 def_freetype='#define CONFIG_FREETYPE 1'
6042 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6043 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6044 else
6045 def_freetype='#undef CONFIG_FREETYPE'
6047 echores "$_freetype"
6049 if test "$_freetype" = no ; then
6050 _fontconfig=no
6051 res_comment="FreeType support needed"
6053 echocheck "fontconfig"
6054 if test "$_fontconfig" = auto ; then
6055 cat > $TMPC << EOF
6056 #include <stdio.h>
6057 #include <stdlib.h>
6058 #include <fontconfig/fontconfig.h>
6059 #if FC_VERSION < 20402
6060 #error At least version 2.4.2 of fontconfig required
6061 #endif
6062 int main(void) {
6063 int err = FcInit();
6064 if (err == FcFalse) {
6065 printf("Couldn't initialize fontconfig lib\n");
6066 exit(err);
6068 return 0;
6071 _fontconfig=no
6072 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6073 _ld_tmp="-lfontconfig $_ld_tmp"
6074 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6075 done
6076 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6077 _inc_tmp=$($_pkg_config --cflags fontconfig)
6078 _ld_tmp=$($_pkg_config --libs fontconfig)
6079 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6080 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6083 if test "$_fontconfig" = yes ; then
6084 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6085 else
6086 def_fontconfig='#undef CONFIG_FONTCONFIG'
6088 echores "$_fontconfig"
6091 echocheck "SSA/ASS support"
6092 if test "$_ass" = auto -o "$_ass" = yes ; then
6093 if $_pkg_config libass; then
6094 _ass=yes
6095 def_ass='#define CONFIG_ASS 1'
6096 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6097 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6098 else
6099 _ass=no
6100 def_ass='#undef CONFIG_ASS'
6102 else
6103 def_ass='#undef CONFIG_ASS'
6105 echores "$_ass"
6108 echocheck "fribidi with charsets"
6109 _inc_tmp=""
6110 _ld_tmp=""
6111 if test "$_fribidi" = auto ; then
6112 cat > $TMPC << EOF
6113 #include <stdlib.h>
6114 /* workaround for fribidi 0.10.4 and below */
6115 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6116 #include <fribidi/fribidi.h>
6117 int main(void) {
6118 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6119 exit(1);
6120 return 0;
6123 _fribidi=no
6124 _inc_tmp=""
6125 _ld_tmp="-lfribidi"
6126 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6127 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6128 test "$_fribidi" = no ; then
6129 _inc_tmp="$($_pkg_config --cflags)"
6130 _ld_tmp="$($_pkg_config --libs)"
6131 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6134 if test "$_fribidi" = yes ; then
6135 def_fribidi='#define CONFIG_FRIBIDI 1'
6136 extra_cflags="$extra_cflags $_inc_tmp"
6137 extra_ldflags="$extra_ldflags $_ld_tmp"
6138 else
6139 def_fribidi='#undef CONFIG_FRIBIDI'
6141 echores "$_fribidi"
6144 echocheck "ENCA"
6145 if test "$_enca" = auto ; then
6146 cat > $TMPC << EOF
6147 #include <sys/types.h>
6148 #include <enca.h>
6149 int main(void) {
6150 const char **langs;
6151 size_t langcnt;
6152 langs = enca_get_languages(&langcnt);
6153 return 0;
6156 _enca=no
6157 cc_check -lenca $_ld_lm && _enca=yes
6159 if test "$_enca" = yes ; then
6160 def_enca='#define CONFIG_ENCA 1'
6161 extra_ldflags="$extra_ldflags -lenca"
6162 else
6163 def_enca='#undef CONFIG_ENCA'
6165 echores "$_enca"
6168 echocheck "zlib"
6169 cat > $TMPC << EOF
6170 #include <zlib.h>
6171 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6173 _zlib=no
6174 cc_check -lz && _zlib=yes
6175 if test "$_zlib" = yes ; then
6176 def_zlib='#define CONFIG_ZLIB 1'
6177 extra_ldflags="$extra_ldflags -lz"
6178 else
6179 def_zlib='#define CONFIG_ZLIB 0'
6181 echores "$_zlib"
6184 echocheck "bzlib"
6185 bzlib=no
6186 def_bzlib='#define CONFIG_BZLIB 0'
6187 cat > $TMPC << EOF
6188 #include <bzlib.h>
6189 int main(void) { BZ2_bzlibVersion(); return 0; }
6191 cc_check -lbz2 && bzlib=yes
6192 if test "$bzlib" = yes ; then
6193 def_bzlib='#define CONFIG_BZLIB 1'
6194 extra_ldflags="$extra_ldflags -lbz2"
6196 echores "$bzlib"
6199 echocheck "RTC"
6200 if test "$_rtc" = auto ; then
6201 cat > $TMPC << EOF
6202 #include <sys/ioctl.h>
6203 #ifdef __linux__
6204 #include <linux/rtc.h>
6205 #else
6206 #include <rtc.h>
6207 #define RTC_PIE_ON RTCIO_PIE_ON
6208 #endif
6209 int main(void) { return RTC_PIE_ON; }
6211 _rtc=no
6212 cc_check && _rtc=yes
6213 ppc && _rtc=no
6215 if test "$_rtc" = yes ; then
6216 def_rtc='#define HAVE_RTC 1'
6217 else
6218 def_rtc='#undef HAVE_RTC'
6220 echores "$_rtc"
6223 echocheck "liblzo2 support"
6224 if test "$_liblzo" = auto ; then
6225 _liblzo=no
6226 cat > $TMPC << EOF
6227 #include <lzo/lzo1x.h>
6228 int main(void) { lzo_init(); return 0; }
6230 cc_check -llzo2 && _liblzo=yes
6232 if test "$_liblzo" = yes ; then
6233 def_liblzo='#define CONFIG_LIBLZO 1'
6234 extra_ldflags="$extra_ldflags -llzo2"
6235 codecmodules="liblzo $codecmodules"
6236 else
6237 def_liblzo='#undef CONFIG_LIBLZO'
6238 nocodecmodules="liblzo $nocodecmodules"
6240 echores "$_liblzo"
6243 echocheck "mad support"
6244 if test "$_mad" = auto ; then
6245 _mad=no
6246 header_check mad.h -lmad && _mad=yes
6248 if test "$_mad" = yes ; then
6249 def_mad='#define CONFIG_LIBMAD 1'
6250 extra_ldflags="$extra_ldflags -lmad"
6251 codecmodules="libmad $codecmodules"
6252 else
6253 def_mad='#undef CONFIG_LIBMAD'
6254 nocodecmodules="libmad $nocodecmodules"
6256 echores "$_mad"
6258 echocheck "Twolame"
6259 if test "$_twolame" = auto ; then
6260 cat > $TMPC <<EOF
6261 #include <twolame.h>
6262 int main(void) { twolame_init(); return 0; }
6264 _twolame=no
6265 cc_check -ltwolame $_ld_lm && _twolame=yes
6267 if test "$_twolame" = yes ; then
6268 def_twolame='#define CONFIG_TWOLAME 1'
6269 libs_mencoder="$libs_mencoder -ltwolame"
6270 codecmodules="twolame $codecmodules"
6271 else
6272 def_twolame='#undef CONFIG_TWOLAME'
6273 nocodecmodules="twolame $nocodecmodules"
6275 echores "$_twolame"
6277 echocheck "Toolame"
6278 if test "$_toolame" = auto ; then
6279 _toolame=no
6280 if test "$_twolame" = yes ; then
6281 res_comment="disabled by twolame"
6282 else
6283 cat > $TMPC <<EOF
6284 #include <toolame.h>
6285 int main(void) { toolame_init(); return 0; }
6287 cc_check -ltoolame $_ld_lm && _toolame=yes
6290 if test "$_toolame" = yes ; then
6291 def_toolame='#define CONFIG_TOOLAME 1'
6292 libs_mencoder="$libs_mencoder -ltoolame"
6293 codecmodules="toolame $codecmodules"
6294 else
6295 def_toolame='#undef CONFIG_TOOLAME'
6296 nocodecmodules="toolame $nocodecmodules"
6298 if test "$_toolamedir" ; then
6299 res_comment="using $_toolamedir"
6301 echores "$_toolame"
6303 echocheck "OggVorbis support"
6304 if test "$_tremor_internal" = yes; then
6305 _libvorbis=no
6306 elif test "$_tremor" = auto; then
6307 _tremor=no
6308 cat > $TMPC << EOF
6309 #include <tremor/ivorbiscodec.h>
6310 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6312 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6314 if test "$_libvorbis" = auto; then
6315 _libvorbis=no
6316 cat > $TMPC << EOF
6317 #include <vorbis/codec.h>
6318 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6320 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6322 if test "$_tremor_internal" = yes ; then
6323 _vorbis=yes
6324 def_vorbis='#define CONFIG_OGGVORBIS 1'
6325 def_tremor='#define CONFIG_TREMOR 1'
6326 codecmodules="tremor(internal) $codecmodules"
6327 res_comment="internal Tremor"
6328 if test "$_tremor_low" = yes ; then
6329 cflags_tremor_low="-D_LOW_ACCURACY_"
6330 res_comment="internal low accuracy Tremor"
6332 elif test "$_tremor" = yes ; then
6333 _vorbis=yes
6334 def_vorbis='#define CONFIG_OGGVORBIS 1'
6335 def_tremor='#define CONFIG_TREMOR 1'
6336 codecmodules="tremor(external) $codecmodules"
6337 res_comment="external Tremor"
6338 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6339 elif test "$_libvorbis" = yes ; then
6340 _vorbis=yes
6341 def_vorbis='#define CONFIG_OGGVORBIS 1'
6342 codecmodules="libvorbis $codecmodules"
6343 res_comment="libvorbis"
6344 extra_ldflags="$extra_ldflags -lvorbis -logg"
6345 else
6346 _vorbis=no
6347 nocodecmodules="libvorbis $nocodecmodules"
6349 echores "$_vorbis"
6351 echocheck "libspeex (version >= 1.1 required)"
6352 if test "$_speex" = auto ; then
6353 _speex=no
6354 cat > $TMPC << EOF
6355 #include <speex/speex.h>
6356 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6358 cc_check -lspeex $_ld_lm && _speex=yes
6360 if test "$_speex" = yes ; then
6361 def_speex='#define CONFIG_SPEEX 1'
6362 extra_ldflags="$extra_ldflags -lspeex"
6363 codecmodules="speex $codecmodules"
6364 else
6365 def_speex='#undef CONFIG_SPEEX'
6366 nocodecmodules="speex $nocodecmodules"
6368 echores "$_speex"
6370 echocheck "OggTheora support"
6371 if test "$_theora" = auto ; then
6372 _theora=no
6373 cat > $TMPC << EOF
6374 #include <theora/theora.h>
6375 #include <string.h>
6376 int main(void) {
6377 /* Theora is in flux, make sure that all interface routines and datatypes
6378 * exist and work the way we expect it, so we don't break MPlayer. */
6379 ogg_packet op;
6380 theora_comment tc;
6381 theora_info inf;
6382 theora_state st;
6383 yuv_buffer yuv;
6384 int r;
6385 double t;
6387 theora_info_init(&inf);
6388 theora_comment_init(&tc);
6390 return 0;
6392 /* we don't want to execute this kind of nonsense; just for making sure
6393 * that compilation works... */
6394 memset(&op, 0, sizeof(op));
6395 r = theora_decode_header(&inf, &tc, &op);
6396 r = theora_decode_init(&st, &inf);
6397 t = theora_granule_time(&st, op.granulepos);
6398 r = theora_decode_packetin(&st, &op);
6399 r = theora_decode_YUVout(&st, &yuv);
6400 theora_clear(&st);
6402 return 0;
6405 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6406 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6407 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6408 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6409 if test _theora = no; then
6410 _ld_theora="-ltheora -logg"
6411 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6413 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6414 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6415 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6416 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6417 extra_ldflags="$extra_ldflags $_ld_theora" &&
6418 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6419 if test _theora = no; then
6420 _ld_theora="-ltheora -logg"
6421 cc_check tremor/bitwise.c $_ld_theora &&
6422 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6426 if test "$_theora" = yes ; then
6427 def_theora='#define CONFIG_OGGTHEORA 1'
6428 codecmodules="libtheora $codecmodules"
6429 # when --enable-theora is forced, we'd better provide a probably sane
6430 # $_ld_theora than nothing
6431 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6432 else
6433 def_theora='#undef CONFIG_OGGTHEORA'
6434 nocodecmodules="libtheora $nocodecmodules"
6436 echores "$_theora"
6438 echocheck "mp3lib support"
6439 if test "$_mp3lib" = auto ; then
6440 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6442 if test "$_mp3lib" = yes ; then
6443 def_mp3lib='#define CONFIG_MP3LIB 1'
6444 codecmodules="mp3lib(internal) $codecmodules"
6445 else
6446 def_mp3lib='#undef CONFIG_MP3LIB'
6447 nocodecmodules="mp3lib(internal) $nocodecmodules"
6449 echores "$_mp3lib"
6451 # Any version of libmpg123 shall be fine.
6452 echocheck "mpg123 support"
6453 def_mpg123='#undef CONFIG_MPG123'
6454 if test "$_mpg123" = auto; then
6455 _mpg123=no
6456 cat > $TMPC <<EOF
6457 #include <mpg123.h>
6458 int main(void){ mpg123_init(); return 0; }
6460 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6462 if test "$_mpg123" = yes ; then
6463 def_mpg123='#define CONFIG_MPG123 1'
6464 codecmodules="mpg123 $codecmodules"
6465 else
6466 nocodecmodules="mpg123 $nocodecmodules"
6468 echores "$_mpg123"
6470 echocheck "liba52 support"
6471 def_liba52='#undef CONFIG_LIBA52'
6472 if test "$_liba52" = auto ; then
6473 _liba52=no
6474 cat > $TMPC << EOF
6475 #include <inttypes.h>
6476 #include <a52dec/a52.h>
6477 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6479 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6481 if test "$_liba52" = yes ; then
6482 def_liba52='#define CONFIG_LIBA52 1'
6483 codecmodules="liba52 $codecmodules"
6484 else
6485 nocodecmodules="liba52 $nocodecmodules"
6487 echores "$_liba52"
6489 echocheck "internal libmpeg2 support"
6490 if test "$_libmpeg2" = auto ; then
6491 _libmpeg2=yes
6492 if alpha && test cc_vendor=gnu; then
6493 case $cc_version in
6494 2*|3.0*|3.1*) # cannot compile MVI instructions
6495 _libmpeg2=no
6496 res_comment="broken gcc"
6498 esac
6501 if test "$_libmpeg2" = yes ; then
6502 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6503 codecmodules="libmpeg2(internal) $codecmodules"
6504 else
6505 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6506 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6508 echores "$_libmpeg2"
6510 echocheck "libdca support"
6511 if test "$_libdca" = auto ; then
6512 _libdca=no
6513 cat > $TMPC << EOF
6514 #include <inttypes.h>
6515 #include <dts.h>
6516 int main(void) { dts_init(0); return 0; }
6518 for _ld_dca in -ldca -ldts ; do
6519 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6520 && _libdca=yes && break
6521 done
6523 if test "$_libdca" = yes ; then
6524 def_libdca='#define CONFIG_LIBDCA 1'
6525 codecmodules="libdca $codecmodules"
6526 else
6527 def_libdca='#undef CONFIG_LIBDCA'
6528 nocodecmodules="libdca $nocodecmodules"
6530 echores "$_libdca"
6532 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6533 if test "$_musepack" = auto ; then
6534 _musepack=no
6535 cat > $TMPC << EOF
6536 #include <stddef.h>
6537 #include <mpcdec/mpcdec.h>
6538 int main(void) {
6539 mpc_streaminfo info;
6540 mpc_decoder decoder;
6541 mpc_decoder_set_streaminfo(&decoder, &info);
6542 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6543 return 0;
6546 cc_check -lmpcdec $_ld_lm && _musepack=yes
6548 if test "$_musepack" = yes ; then
6549 def_musepack='#define CONFIG_MUSEPACK 1'
6550 extra_ldflags="$extra_ldflags -lmpcdec"
6551 codecmodules="musepack $codecmodules"
6552 else
6553 def_musepack='#undef CONFIG_MUSEPACK'
6554 nocodecmodules="musepack $nocodecmodules"
6556 echores "$_musepack"
6559 echocheck "FAAC support"
6560 if test "$_faac" = auto ; then
6561 cat > $TMPC <<EOF
6562 #include <inttypes.h>
6563 #include <faac.h>
6564 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6566 _faac=no
6567 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6568 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6569 done
6571 if test "$_faac" = yes ; then
6572 def_faac="#define CONFIG_FAAC 1"
6573 codecmodules="faac $codecmodules"
6574 else
6575 def_faac="#undef CONFIG_FAAC"
6576 nocodecmodules="faac $nocodecmodules"
6578 echores "$_faac"
6581 echocheck "FAAD2 support"
6582 if test "$_faad_internal" = auto ; then
6583 if x86_32 && test cc_vendor=gnu; then
6584 case $cc_version in
6585 3.1*|3.2) # ICE/insn with these versions
6586 _faad_internal=no
6587 res_comment="broken gcc"
6590 _faad=yes
6591 _faad_internal=yes
6593 esac
6594 else
6595 _faad=yes
6596 _faad_internal=yes
6599 if test "$_faad" = auto ; then
6600 cat > $TMPC << EOF
6601 #include <faad.h>
6602 #ifndef FAAD_MIN_STREAMSIZE
6603 #error Too old version
6604 #endif
6605 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6606 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6608 cc_check -lfaad $_ld_lm && _faad=yes
6611 def_faad='#undef CONFIG_FAAD'
6612 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6613 if test "$_faad_internal" = yes ; then
6614 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6615 res_comment="internal floating-point"
6616 if test "$_faad_fixed" = yes ; then
6617 # The FIXED_POINT implementation of FAAD2 improves performance
6618 # on some platforms, especially for SBR files.
6619 cflags_faad_fixed="-DFIXED_POINT"
6620 res_comment="internal fixed-point"
6622 elif test "$_faad" = yes ; then
6623 extra_ldflags="$extra_ldflags -lfaad"
6626 if test "$_faad" = yes ; then
6627 def_faad='#define CONFIG_FAAD 1'
6628 if test "$_faad_internal" = yes ; then
6629 codecmodules="faad2(internal) $codecmodules"
6630 else
6631 codecmodules="faad2 $codecmodules"
6633 else
6634 _faad=no
6635 nocodecmodules="faad2 $nocodecmodules"
6637 echores "$_faad"
6640 echocheck "LADSPA plugin support"
6641 if test "$_ladspa" = auto ; then
6642 cat > $TMPC <<EOF
6643 #include <ladspa.h>
6644 int main(void) {
6645 LADSPA_Descriptor ld = {0};
6646 return 0;
6649 _ladspa=no
6650 cc_check && _ladspa=yes
6652 if test "$_ladspa" = yes; then
6653 def_ladspa="#define CONFIG_LADSPA 1"
6654 else
6655 def_ladspa="#undef CONFIG_LADSPA"
6657 echores "$_ladspa"
6660 echocheck "libbs2b audio filter support"
6661 if test "$_libbs2b" = auto ; then
6662 cat > $TMPC <<EOF
6663 #include <bs2b.h>
6664 #if BS2B_VERSION_MAJOR < 3
6665 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6666 #endif
6667 int main(void) {
6668 t_bs2bdp filter;
6669 filter=bs2b_open();
6670 bs2b_close(filter);
6671 return 0;
6674 _libbs2b=no
6675 if $_pkg_config --exists libbs2b ; then
6676 _inc_tmp=$($_pkg_config --cflags libbs2b)
6677 _ld_tmp=$($_pkg_config --libs libbs2b)
6678 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6679 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6680 else
6681 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6682 -I/usr/local/include/bs2b ; do
6683 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6684 extra_ldflags="$extra_ldflags -lbs2b"
6685 extra_cflags="$extra_cflags $_inc_tmp"
6686 _libbs2b=yes
6687 break
6689 done
6692 def_libbs2b="#undef CONFIG_LIBBS2B"
6693 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6694 echores "$_libbs2b"
6697 if test -z "$_codecsdir" ; then
6698 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6699 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6700 if test -d "$dir" ; then
6701 _codecsdir="$dir"
6702 break;
6704 done
6706 # Fall back on default directory.
6707 if test -z "$_codecsdir" ; then
6708 _codecsdir="$_libdir/codecs"
6709 mingw32 || os2 && _codecsdir="codecs"
6713 echocheck "Win32 codecs"
6714 if test "$_win32dll" = auto ; then
6715 _win32dll=no
6716 if x86_32 && ! qnx; then
6717 _win32dll=yes
6720 if test "$_win32dll" = yes ; then
6721 def_win32dll='#define CONFIG_WIN32DLL 1'
6722 if ! win32 ; then
6723 def_win32_loader='#define WIN32_LOADER 1'
6724 _win32_emulation=yes
6725 else
6726 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6727 res_comment="using native windows"
6729 codecmodules="win32 $codecmodules"
6730 else
6731 def_win32dll='#undef CONFIG_WIN32DLL'
6732 def_win32_loader='#undef WIN32_LOADER'
6733 nocodecmodules="win32 $nocodecmodules"
6735 echores "$_win32dll"
6738 echocheck "XAnim codecs"
6739 if test "$_xanim" = auto ; then
6740 _xanim=no
6741 res_comment="dynamic loader support needed"
6742 if test "$_dl" = yes ; then
6743 _xanim=yes
6746 if test "$_xanim" = yes ; then
6747 def_xanim='#define CONFIG_XANIM 1'
6748 codecmodules="xanim $codecmodules"
6749 else
6750 def_xanim='#undef CONFIG_XANIM'
6751 nocodecmodules="xanim $nocodecmodules"
6753 echores "$_xanim"
6756 echocheck "RealPlayer codecs"
6757 if test "$_real" = auto ; then
6758 _real=no
6759 res_comment="dynamic loader support needed"
6760 if test "$_dl" = yes || test "$_win32dll" = yes &&
6761 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6762 _real=yes
6765 if test "$_real" = yes ; then
6766 def_real='#define CONFIG_REALCODECS 1'
6767 codecmodules="real $codecmodules"
6768 else
6769 def_real='#undef CONFIG_REALCODECS'
6770 nocodecmodules="real $nocodecmodules"
6772 echores "$_real"
6775 echocheck "QuickTime codecs"
6776 _qtx_emulation=no
6777 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6778 if test "$_qtx" = auto ; then
6779 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6781 if test "$_qtx" = yes ; then
6782 def_qtx='#define CONFIG_QTX_CODECS 1'
6783 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6784 codecmodules="qtx $codecmodules"
6785 darwin || win32 || _qtx_emulation=yes
6786 else
6787 def_qtx='#undef CONFIG_QTX_CODECS'
6788 nocodecmodules="qtx $nocodecmodules"
6790 echores "$_qtx"
6792 echocheck "Nemesi Streaming Media libraries"
6793 if test "$_nemesi" = auto && test "$networking" = yes ; then
6794 _nemesi=no
6795 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6796 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6797 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6798 _nemesi=yes
6801 if test "$_nemesi" = yes; then
6802 _native_rtsp=no
6803 def_nemesi='#define CONFIG_LIBNEMESI 1'
6804 inputmodules="nemesi $inputmodules"
6805 else
6806 _native_rtsp="$networking"
6807 _nemesi=no
6808 def_nemesi='#undef CONFIG_LIBNEMESI'
6809 noinputmodules="nemesi $noinputmodules"
6811 echores "$_nemesi"
6813 echocheck "LIVE555 Streaming Media libraries"
6814 if test "$_live" = auto && test "$networking" = yes ; then
6815 cat > $TMPCPP << EOF
6816 #include <liveMedia.hh>
6817 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6818 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6819 #endif
6820 int main(void) { return 0; }
6823 _live=no
6824 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
6825 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6826 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6827 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6828 $_livelibdir/groupsock/libgroupsock.a \
6829 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6830 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6831 $extra_ldflags -lstdc++" \
6832 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6833 -I$_livelibdir/UsageEnvironment/include \
6834 -I$_livelibdir/BasicUsageEnvironment/include \
6835 -I$_livelibdir/groupsock/include" && \
6836 _live=yes && break
6837 done
6838 if test "$_live" != yes ; then
6839 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6840 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6841 _live_dist=yes
6845 if test "$_live" = yes && test "$networking" = yes; then
6846 test $_livelibdir && res_comment="using $_livelibdir"
6847 def_live='#define CONFIG_LIVE555 1'
6848 inputmodules="live555 $inputmodules"
6849 elif test "$_live_dist" = yes && test "$networking" = yes; then
6850 res_comment="using distribution version"
6851 _live="yes"
6852 def_live='#define CONFIG_LIVE555 1'
6853 extra_ldflags="$extra_ldflags $ld_tmp"
6854 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6855 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6856 inputmodules="live555 $inputmodules"
6857 else
6858 _live=no
6859 def_live='#undef CONFIG_LIVE555'
6860 noinputmodules="live555 $noinputmodules"
6862 echores "$_live"
6865 echocheck "FFmpeg libavutil"
6866 if test "$_libavutil" = auto ; then
6867 _libavutil=no
6868 cat > $TMPC << EOF
6869 #include <libavutil/common.h>
6870 int main(void) { av_clip(1, 1, 1); return 0; }
6872 if $_pkg_config --exists libavutil ; then
6873 _inc_libavutil=$($_pkg_config --cflags libavutil)
6874 _ld_tmp=$($_pkg_config --libs libavutil)
6875 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6876 && _libavutil=yes
6877 elif cc_check -lavutil $_ld_lm ; then
6878 extra_ldflags="$extra_ldflags -lavutil"
6879 _libavutil=yes
6882 def_libavutil='#undef CONFIG_LIBAVUTIL'
6883 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6884 # libavutil is not available, but it is mandatory ...
6885 if test "$_libavutil" = no ; then
6886 die "You need libavutil, MPlayer will not compile without!"
6888 echores "$_libavutil"
6890 echocheck "FFmpeg libavcodec"
6891 if test "$_libavcodec" = auto ; then
6892 _libavcodec=no
6893 cat > $TMPC << EOF
6894 #include <libavcodec/avcodec.h>
6895 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6897 if $_pkg_config --exists libavcodec ; then
6898 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6899 _ld_tmp=$($_pkg_config --libs libavcodec)
6900 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6901 && _libavcodec=yes
6902 elif cc_check -lavcodec $_ld_lm ; then
6903 extra_ldflags="$extra_ldflags -lavcodec"
6904 _libavcodec=yes
6907 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6908 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6909 if test "$_libavcodec" = yes ; then
6910 codecmodules="libavcodec $codecmodules"
6911 else
6912 nocodecmodules="libavcodec $nocodecmodules"
6914 echores "$_libavcodec"
6916 echocheck "FFmpeg libavformat"
6917 if test "$_libavformat" = auto ; then
6918 _libavformat=no
6919 cat > $TMPC <<EOF
6920 #include <libavformat/avformat.h>
6921 int main(void) { av_alloc_format_context(); return 0; }
6923 if $_pkg_config --exists libavformat ; then
6924 _inc_libavformat=$($_pkg_config --cflags libavformat)
6925 _ld_tmp=$($_pkg_config --libs libavformat)
6926 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6927 && _libavformat=yes
6928 elif cc_check $_ld_lm -lavformat ; then
6929 extra_ldflags="$extra_ldflags -lavformat"
6930 _libavformat=yes
6933 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6934 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6935 echores "$_libavformat"
6937 echocheck "FFmpeg libpostproc"
6938 if test "$_libpostproc" = auto ; then
6939 _libpostproc=no
6940 cat > $TMPC << EOF
6941 #include <libpostproc/postprocess.h>
6942 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6944 if $_pkg_config --exists libpostproc ; then
6945 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6946 _ld_tmp=$($_pkg_config --libs libpostproc)
6947 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6948 && _libpostproc=yes
6949 elif cc_check -lpostproc $_ld_lm ; then
6950 extra_ldflags="$extra_ldflags -lpostproc"
6951 _libpostproc=yes
6954 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6955 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6956 echores "$_libpostproc"
6958 echocheck "FFmpeg libswscale"
6959 if test "$_libswscale" = auto ; then
6960 _libswscale=no
6961 cat > $TMPC << EOF
6962 #include <libswscale/swscale.h>
6963 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6965 if $_pkg_config --exists libswscale ; then
6966 _inc_libswscale=$($_pkg_config --cflags libswscale)
6967 _ld_tmp=$($_pkg_config --libs libswscale)
6968 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6969 && _libswscale=yes
6970 elif cc_check -lswscale ; then
6971 extra_ldflags="$extra_ldflags -lswscale"
6972 _libswscale=yes
6975 def_libswscale='#undef CONFIG_LIBSWSCALE'
6976 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6977 echores "$_libswscale"
6979 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6980 if ! test -z "$_ffmpeg_source" ; then
6981 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6984 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6985 if ! test -z "$_ffmpeg_source" ; then
6986 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6989 echocheck "libdv-0.9.5+"
6990 if test "$_libdv" = auto ; then
6991 _libdv=no
6992 cat > $TMPC <<EOF
6993 #include <libdv/dv.h>
6994 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6996 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6998 if test "$_libdv" = yes ; then
6999 def_libdv='#define CONFIG_LIBDV095 1'
7000 extra_ldflags="$extra_ldflags -ldv"
7001 codecmodules="libdv $codecmodules"
7002 else
7003 def_libdv='#undef CONFIG_LIBDV095'
7004 nocodecmodules="libdv $nocodecmodules"
7006 echores "$_libdv"
7009 echocheck "Xvid"
7010 if test "$_xvid" = auto ; then
7011 _xvid=no
7012 cat > $TMPC << EOF
7013 #include <xvid.h>
7014 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7016 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7017 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7018 done
7021 if test "$_xvid" = yes ; then
7022 def_xvid='#define CONFIG_XVID4 1'
7023 codecmodules="xvid $codecmodules"
7024 else
7025 def_xvid='#undef CONFIG_XVID4'
7026 nocodecmodules="xvid $nocodecmodules"
7028 echores "$_xvid"
7030 echocheck "x264"
7031 if test "$_x264" = auto ; then
7032 cat > $TMPC << EOF
7033 #include <inttypes.h>
7034 #include <x264.h>
7035 #if X264_BUILD < 98
7036 #error We do not support old versions of x264. Get the latest from git.
7037 #endif
7038 int main(void) { x264_encoder_open((void*)0); return 0; }
7040 _x264=no
7041 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7042 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7043 done
7046 if test "$_x264" = yes ; then
7047 def_x264='#define CONFIG_X264 1'
7048 codecmodules="x264 $codecmodules"
7049 else
7050 def_x264='#undef CONFIG_X264'
7051 nocodecmodules="x264 $nocodecmodules"
7053 echores "$_x264"
7055 echocheck "libnut"
7056 if test "$_libnut" = auto ; then
7057 cat > $TMPC << EOF
7058 #include <libnut.h>
7059 nut_context_tt * nut;
7060 int main(void) { (void)nut_error(0); return 0; }
7062 _libnut=no
7063 cc_check -lnut && _libnut=yes
7066 if test "$_libnut" = yes ; then
7067 def_libnut='#define CONFIG_LIBNUT 1'
7068 extra_ldflags="$extra_ldflags -lnut"
7069 else
7070 def_libnut='#undef CONFIG_LIBNUT'
7072 echores "$_libnut"
7074 # These VO checks must be done after libavcodec/libswscale one
7075 echocheck "/dev/mga_vid"
7076 if test "$_mga" = auto ; then
7077 _mga=no
7078 test -c /dev/mga_vid && _mga=yes
7080 if test "$_mga" = yes ; then
7081 if test "$_libswscale_internals" = yes ; then
7082 def_mga='#define CONFIG_MGA 1'
7083 vomodules="mga $vomodules"
7084 else
7085 res_comment="libswscale internal headers are required by mga, sorry"
7086 _mga=no
7087 def_mga='#undef CONFIG_MGA'
7088 novomodules="mga $novomodules"
7090 else
7091 def_mga='#undef CONFIG_MGA'
7092 novomodules="mga $novomodules"
7094 echores "$_mga"
7097 echocheck "xmga"
7098 if test "$_xmga" = auto ; then
7099 _xmga=no
7100 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7102 if test "$_xmga" = yes ; then
7103 if test "$_libswscale_internals" = yes ; then
7104 def_xmga='#define CONFIG_XMGA 1'
7105 vomodules="xmga $vomodules"
7106 else
7107 res_comment="libswscale internal headers are required by xmga, sorry"
7108 _xmga=no
7109 def_xmga='#undef CONFIG_XMGA'
7110 novomodules="xmga $novomodules"
7112 else
7113 def_xmga='#undef CONFIG_XMGA'
7114 novomodules="xmga $novomodules"
7116 echores "$_xmga"
7118 echocheck "zr"
7119 if test "$_zr" = auto ; then
7120 #36067's seem to identify themselves as 36057PQC's, so the line
7121 #below should work for 36067's and 36057's.
7122 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7123 _zr=yes
7124 else
7125 _zr=no
7128 if test "$_zr" = yes ; then
7129 if test "$_libavcodec_internals" = yes ; then
7130 def_zr='#define CONFIG_ZR 1'
7131 vomodules="zr zr2 $vomodules"
7132 else
7133 res_comment="libavcodec internal headers are required by zr, sorry"
7134 novomodules="zr $novomodules"
7135 def_zr='#undef CONFIG_ZR'
7137 else
7138 def_zr='#undef CONFIG_ZR'
7139 novomodules="zr zr2 $novomodules"
7141 echores "$_zr"
7143 # mencoder requires (optional) those libs: libmp3lame
7144 if test "$_mencoder" != no ; then
7146 echocheck "libmp3lame"
7147 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7148 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7149 if test "$_mp3lame" = auto ; then
7150 _mp3lame=no
7151 cat > $TMPC <<EOF
7152 #include <lame/lame.h>
7153 int main(void) { lame_version_t lv; (void) lame_init();
7154 get_lame_version_numerical(&lv);
7155 return 0; }
7157 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7159 if test "$_mp3lame" = yes ; then
7160 def_mp3lame="#define CONFIG_MP3LAME 1"
7161 _ld_mp3lame=-lmp3lame
7162 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7163 cat > $TMPC << EOF
7164 #include <lame/lame.h>
7165 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7167 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7168 cat > $TMPC << EOF
7169 #include <lame/lame.h>
7170 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7172 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7173 else
7174 def_mp3lame='#undef CONFIG_MP3LAME'
7176 echores "$_mp3lame"
7178 fi # test "$_mencoder" != no
7180 echocheck "mencoder"
7181 if test "$_mencoder" = yes ; then
7182 def_muxers='#define CONFIG_MUXERS 1'
7183 else
7184 def_muxers='#define CONFIG_MUXERS 0'
7186 echores "$_mencoder"
7189 echocheck "UnRAR executable"
7190 if test "$_unrar_exec" = auto ; then
7191 _unrar_exec="yes"
7192 mingw32 && _unrar_exec="no"
7194 if test "$_unrar_exec" = yes ; then
7195 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7196 else
7197 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7199 echores "$_unrar_exec"
7201 echocheck "TV interface"
7202 if test "$_tv" = yes ; then
7203 def_tv='#define CONFIG_TV 1'
7204 inputmodules="tv $inputmodules"
7205 else
7206 noinputmodules="tv $noinputmodules"
7207 def_tv='#undef CONFIG_TV'
7209 echores "$_tv"
7212 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7213 echocheck "*BSD BT848 bt8xx header"
7214 _ioctl_bt848_h=no
7215 for file in "machine/ioctl_bt848.h" \
7216 "dev/bktr/ioctl_bt848.h" \
7217 "dev/video/bktr/ioctl_bt848.h" \
7218 "dev/ic/bt8xx.h" ; do
7219 cat > $TMPC <<EOF
7220 #include <sys/types.h>
7221 #include <sys/ioctl.h>
7222 #include <$file>
7223 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7225 if cc_check ; then
7226 _ioctl_bt848_h=yes
7227 _ioctl_bt848_h_name="$file"
7228 break;
7230 done
7231 if test "$_ioctl_bt848_h" = yes ; then
7232 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7233 res_comment="using $_ioctl_bt848_h_name"
7234 else
7235 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7237 echores "$_ioctl_bt848_h"
7239 echocheck "*BSD ioctl_meteor.h"
7240 _ioctl_meteor_h=no
7241 for file in "machine/ioctl_meteor.h" \
7242 "dev/bktr/ioctl_meteor.h" \
7243 "dev/video/bktr/ioctl_meteor.h" ; do
7244 cat > $TMPC <<EOF
7245 #include <sys/types.h>
7246 #include <$file>
7247 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7249 if cc_check ; then
7250 _ioctl_meteor_h=yes
7251 _ioctl_meteor_h_name="$file"
7252 break;
7254 done
7255 if test "$_ioctl_meteor_h" = yes ; then
7256 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7257 res_comment="using $_ioctl_meteor_h_name"
7258 else
7259 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7261 echores "$_ioctl_meteor_h"
7263 echocheck "*BSD BrookTree 848 TV interface"
7264 if test "$_tv_bsdbt848" = auto ; then
7265 _tv_bsdbt848=no
7266 if test "$_tv" = yes ; then
7267 cat > $TMPC <<EOF
7268 #include <sys/types.h>
7269 $def_ioctl_meteor_h_name
7270 $def_ioctl_bt848_h_name
7271 #ifdef IOCTL_METEOR_H_NAME
7272 #include IOCTL_METEOR_H_NAME
7273 #endif
7274 #ifdef IOCTL_BT848_H_NAME
7275 #include IOCTL_BT848_H_NAME
7276 #endif
7277 int main(void) {
7278 ioctl(0, METEORSINPUT, 0);
7279 ioctl(0, TVTUNER_GETFREQ, 0);
7280 return 0;
7283 cc_check && _tv_bsdbt848=yes
7286 if test "$_tv_bsdbt848" = yes ; then
7287 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7288 inputmodules="tv-bsdbt848 $inputmodules"
7289 else
7290 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7291 noinputmodules="tv-bsdbt848 $noinputmodules"
7293 echores "$_tv_bsdbt848"
7294 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7297 echocheck "DirectShow TV interface"
7298 if test "$_tv_dshow" = auto ; then
7299 _tv_dshow=no
7300 if test "$_tv" = yes && win32 ; then
7301 cat > $TMPC <<EOF
7302 #include <ole2.h>
7303 int main(void) {
7304 void* p;
7305 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7306 return 0;
7309 cc_check -lole32 -luuid && _tv_dshow=yes
7312 if test "$_tv_dshow" = yes ; then
7313 inputmodules="tv-dshow $inputmodules"
7314 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7315 extra_ldflags="$extra_ldflags -lole32 -luuid"
7316 else
7317 noinputmodules="tv-dshow $noinputmodules"
7318 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7320 echores "$_tv_dshow"
7323 echocheck "Video 4 Linux TV interface"
7324 if test "$_tv_v4l1" = auto ; then
7325 _tv_v4l1=no
7326 if test "$_tv" = yes && linux ; then
7327 header_check linux/videodev.h && _tv_v4l1=yes
7330 if test "$_tv_v4l1" = yes ; then
7331 _audio_input=yes
7332 _tv_v4l=yes
7333 def_tv_v4l='#define CONFIG_TV_V4L 1'
7334 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7335 inputmodules="tv-v4l $inputmodules"
7336 else
7337 noinputmodules="tv-v4l1 $noinputmodules"
7338 def_tv_v4l='#undef CONFIG_TV_V4L'
7340 echores "$_tv_v4l1"
7343 echocheck "Video 4 Linux 2 TV interface"
7344 if test "$_tv_v4l2" = auto ; then
7345 _tv_v4l2=no
7346 if test "$_tv" = yes && linux ; then
7347 header_check linux/videodev2.h && _tv_v4l2=yes
7350 if test "$_tv_v4l2" = yes ; then
7351 _audio_input=yes
7352 _tv_v4l=yes
7353 def_tv_v4l='#define CONFIG_TV_V4L 1'
7354 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7355 inputmodules="tv-v4l2 $inputmodules"
7356 else
7357 noinputmodules="tv-v4l2 $noinputmodules"
7358 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7360 echores "$_tv_v4l2"
7363 echocheck "Radio interface"
7364 if test "$_radio" = yes ; then
7365 def_radio='#define CONFIG_RADIO 1'
7366 inputmodules="radio $inputmodules"
7367 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7368 _radio_capture=no
7370 if test "$_radio_capture" = yes ; then
7371 _audio_input=yes
7372 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7373 else
7374 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7376 else
7377 noinputmodules="radio $noinputmodules"
7378 def_radio='#undef CONFIG_RADIO'
7379 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7380 _radio_capture=no
7382 echores "$_radio"
7383 echocheck "Capture for Radio interface"
7384 echores "$_radio_capture"
7386 echocheck "Video 4 Linux 2 Radio interface"
7387 if test "$_radio_v4l2" = auto ; then
7388 _radio_v4l2=no
7389 if test "$_radio" = yes && linux ; then
7390 header_check linux/videodev2.h && _radio_v4l2=yes
7393 if test "$_radio_v4l2" = yes ; then
7394 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7395 else
7396 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7398 echores "$_radio_v4l2"
7400 echocheck "Video 4 Linux Radio interface"
7401 if test "$_radio_v4l" = auto ; then
7402 _radio_v4l=no
7403 if test "$_radio" = yes && linux ; then
7404 header_check linux/videodev.h && _radio_v4l=yes
7407 if test "$_radio_v4l" = yes ; then
7408 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7409 else
7410 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7412 echores "$_radio_v4l"
7414 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7415 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7416 echocheck "*BSD BrookTree 848 Radio interface"
7417 _radio_bsdbt848=no
7418 cat > $TMPC <<EOF
7419 #include <sys/types.h>
7420 $def_ioctl_bt848_h_name
7421 #ifdef IOCTL_BT848_H_NAME
7422 #include IOCTL_BT848_H_NAME
7423 #endif
7424 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7426 cc_check && _radio_bsdbt848=yes
7427 echores "$_radio_bsdbt848"
7428 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7430 if test "$_radio_bsdbt848" = yes ; then
7431 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7432 else
7433 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7436 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7437 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7438 die "Radio driver requires BSD BT848, V4L or V4L2!"
7441 echocheck "Video 4 Linux 2 MPEG PVR interface"
7442 if test "$_pvr" = auto ; then
7443 _pvr=no
7444 if test "$_tv_v4l2" = yes && linux ; then
7445 cat > $TMPC <<EOF
7446 #include <linux/videodev2.h>
7447 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7449 cc_check && _pvr=yes
7452 if test "$_pvr" = yes ; then
7453 def_pvr='#define CONFIG_PVR 1'
7454 inputmodules="pvr $inputmodules"
7455 else
7456 noinputmodules="pvr $noinputmodules"
7457 def_pvr='#undef CONFIG_PVR'
7459 echores "$_pvr"
7462 echocheck "ftp"
7463 if ! beos && test "$_ftp" = yes ; then
7464 def_ftp='#define CONFIG_FTP 1'
7465 inputmodules="ftp $inputmodules"
7466 else
7467 noinputmodules="ftp $noinputmodules"
7468 def_ftp='#undef CONFIG_FTP'
7470 echores "$_ftp"
7472 echocheck "vstream client"
7473 if test "$_vstream" = auto ; then
7474 _vstream=no
7475 cat > $TMPC <<EOF
7476 #include <vstream-client.h>
7477 void vstream_error(const char *format, ... ) {}
7478 int main(void) { vstream_start(); return 0; }
7480 cc_check -lvstream-client && _vstream=yes
7482 if test "$_vstream" = yes ; then
7483 def_vstream='#define CONFIG_VSTREAM 1'
7484 inputmodules="vstream $inputmodules"
7485 extra_ldflags="$extra_ldflags -lvstream-client"
7486 else
7487 noinputmodules="vstream $noinputmodules"
7488 def_vstream='#undef CONFIG_VSTREAM'
7490 echores "$_vstream"
7493 echocheck "OSD menu"
7494 if test "$_menu" = yes ; then
7495 def_menu='#define CONFIG_MENU 1'
7496 test $_dvbin = "yes" && _menu_dvbin=yes
7497 else
7498 def_menu='#undef CONFIG_MENU'
7499 _menu_dvbin=no
7501 echores "$_menu"
7504 echocheck "Subtitles sorting"
7505 if test "$_sortsub" = yes ; then
7506 def_sortsub='#define CONFIG_SORTSUB 1'
7507 else
7508 def_sortsub='#undef CONFIG_SORTSUB'
7510 echores "$_sortsub"
7513 echocheck "XMMS inputplugin support"
7514 if test "$_xmms" = yes ; then
7515 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7516 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7517 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7518 else
7519 _xmmsplugindir=/usr/lib/xmms/Input
7520 _xmmslibdir=/usr/lib
7523 def_xmms='#define CONFIG_XMMS 1'
7524 if darwin ; then
7525 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7526 else
7527 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7529 else
7530 def_xmms='#undef CONFIG_XMMS'
7532 echores "$_xmms"
7534 if test "$_charset" != "noconv" ; then
7535 def_charset="#define MSG_CHARSET \"$_charset\""
7536 else
7537 def_charset="#undef MSG_CHARSET"
7538 _charset="UTF-8"
7541 #############################################################################
7543 echocheck "automatic gdb attach"
7544 if test "$_crash_debug" = yes ; then
7545 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7546 else
7547 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7548 _crash_debug=no
7550 echores "$_crash_debug"
7552 echocheck "compiler support for noexecstack"
7553 if cflag_check -Wl,-z,noexecstack ; then
7554 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7555 echores "yes"
7556 else
7557 echores "no"
7560 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7561 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7562 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7563 echores "yes"
7564 else
7565 echores "no"
7569 # Dynamic linking flags
7570 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7571 _ld_dl_dynamic=''
7572 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7573 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7574 _ld_dl_dynamic='-rdynamic'
7577 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7578 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7579 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7581 def_debug='#undef MP_DEBUG'
7582 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7585 echocheck "joystick"
7586 def_joystick='#undef CONFIG_JOYSTICK'
7587 if test "$_joystick" = yes ; then
7588 if linux ; then
7589 # TODO add some check
7590 def_joystick='#define CONFIG_JOYSTICK 1'
7591 else
7592 _joystick="no"
7593 res_comment="unsupported under $system_name"
7596 echores "$_joystick"
7598 echocheck "lirc"
7599 if test "$_lirc" = auto ; then
7600 _lirc=no
7601 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7603 if test "$_lirc" = yes ; then
7604 def_lirc='#define CONFIG_LIRC 1'
7605 libs_mplayer="$libs_mplayer -llirc_client"
7606 else
7607 def_lirc='#undef CONFIG_LIRC'
7609 echores "$_lirc"
7611 echocheck "lircc"
7612 if test "$_lircc" = auto ; then
7613 _lircc=no
7614 header_check lirc/lircc.h -llircc && _lircc=yes
7616 if test "$_lircc" = yes ; then
7617 def_lircc='#define CONFIG_LIRCC 1'
7618 libs_mplayer="$libs_mplayer -llircc"
7619 else
7620 def_lircc='#undef CONFIG_LIRCC'
7622 echores "$_lircc"
7624 if arm; then
7625 # Detect maemo development platform libraries availability (http://www.maemo.org),
7626 # they are used when run on Nokia 770|8x0
7627 echocheck "maemo (Nokia 770|8x0)"
7628 if test "$_maemo" = auto ; then
7629 _maemo=no
7630 cat > $TMPC << EOF
7631 #include <libosso.h>
7632 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7634 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7636 if test "$_maemo" = yes ; then
7637 def_maemo='#define CONFIG_MAEMO 1'
7638 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7639 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7640 else
7641 def_maemo='#undef CONFIG_MAEMO'
7643 echores "$_maemo"
7646 #############################################################################
7648 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7649 # the OMF format needs to come after the 'extern symbol prefix' check, which
7650 # uses nm.
7651 if os2 ; then
7652 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7655 # linker paths should be the same for mencoder and mplayer
7656 _ld_tmp=""
7657 for I in $libs_mplayer ; do
7658 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7659 if test -z "$_tmp" ; then
7660 extra_ldflags="$extra_ldflags $I"
7661 else
7662 _ld_tmp="$_ld_tmp $I"
7664 done
7665 libs_mplayer=$_ld_tmp
7668 #############################################################################
7669 # 64 bit file offsets?
7670 if test "$_largefiles" = yes || freebsd ; then
7671 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7672 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7673 # dvdread support requires this (for off64_t)
7674 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7678 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7680 # This must be the last test to be performed. Any other tests following it
7681 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7682 # against libdvdread (to permit MPlayer to use its own copy of the library).
7683 # So any compilation using the flags added here but not linking against
7684 # libdvdread can fail.
7685 echocheck "DVD support (libdvdnav)"
7686 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7687 _dvdnav=no
7689 dvdnav_internal=no
7690 if test "$_dvdnav" = auto ; then
7691 if test "$_dvdread_internal" = yes ; then
7692 _dvdnav=yes
7693 dvdnav_internal=yes
7694 res_comment="internal"
7695 else
7696 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7699 if test "$_dvdnav" = auto ; then
7700 cat > $TMPC <<EOF
7701 #include <inttypes.h>
7702 #include <dvdnav/dvdnav.h>
7703 int main(void) { dvdnav_t *dvd=0; return 0; }
7705 _dvdnav=no
7706 _dvdnavdir=$($_dvdnavconfig --cflags)
7707 _dvdnavlibs=$($_dvdnavconfig --libs)
7708 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7710 if test "$_dvdnav" = yes ; then
7711 _largefiles=yes
7712 def_dvdnav='#define CONFIG_DVDNAV 1'
7713 if test "$dvdnav_internal" = yes ; then
7714 cflags_libdvdnav="-Ilibdvdnav"
7715 inputmodules="dvdnav(internal) $inputmodules"
7716 else
7717 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7718 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7719 inputmodules="dvdnav $inputmodules"
7721 else
7722 def_dvdnav='#undef CONFIG_DVDNAV'
7723 noinputmodules="dvdnav $noinputmodules"
7725 echores "$_dvdnav"
7727 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7728 # Read dvdnav comment above.
7730 mak_enable () {
7731 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7732 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7733 nprefix=$3;
7734 for part in $list; do
7735 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7736 echo "${nprefix}_$part = yes"
7738 done
7741 #############################################################################
7742 echo "Creating config.mak"
7743 cat > config.mak << EOF
7744 # -------- Generated by configure -----------
7746 # Ensure that locale settings do not interfere with shell commands.
7747 export LC_ALL = C
7749 CONFIGURATION = $configuration
7751 CHARSET = $_charset
7752 DOC_LANGS = $language_doc
7753 DOC_LANG_ALL = $doc_lang_all
7754 MAN_LANGS = $language_man
7755 MAN_LANG_ALL = $man_lang_all
7756 MSG_LANGS = $language_msg
7757 MSG_LANG_ALL = $msg_lang_all
7759 prefix = \$(DESTDIR)$_prefix
7760 BINDIR = \$(DESTDIR)$_bindir
7761 DATADIR = \$(DESTDIR)$_datadir
7762 LIBDIR = \$(DESTDIR)$_libdir
7763 MANDIR = \$(DESTDIR)$_mandir
7764 CONFDIR = \$(DESTDIR)$_confdir
7765 LOCALEDIR = \$(DESTDIR)$_localedir
7767 AR = $_ar
7768 AS = $_cc
7769 CC = $_cc
7770 CXX = $_cc
7771 HOST_CC = $_host_cc
7772 INSTALL = $_install
7773 INSTALLSTRIP = $_install_strip
7774 WINDRES = $_windres
7776 CFLAGS = $CFLAGS $extra_cflags
7777 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7778 DEPFLAGS = $DEPFLAGS
7780 CFLAGS_DHAHELPER = $cflags_dhahelper
7781 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7782 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7783 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7784 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7785 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7786 CFLAGS_STACKREALIGN = $cflags_stackrealign
7787 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7788 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7790 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7791 EXTRALIBS_MPLAYER = $libs_mplayer
7792 EXTRALIBS_MENCODER = $libs_mencoder
7794 GETCH = $_getch
7795 TIMER = $_timer
7797 EXESUF = $_exesuf
7798 EXESUFS_ALL = .exe
7800 ARCH = $arch
7801 $(mak_enable "$arch_all" "$arch" ARCH)
7802 $(mak_enable "$subarch_all" "$subarch" ARCH)
7803 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7805 MENCODER = $_mencoder
7806 MPLAYER = $_mplayer
7808 NEED_GETTIMEOFDAY = $_need_gettimeofday
7809 NEED_GLOB = $_need_glob
7810 NEED_MMAP = $_need_mmap
7811 NEED_SETENV = $_need_setenv
7812 NEED_SHMEM = $_need_shmem
7813 NEED_STRSEP = $_need_strsep
7814 NEED_SWAB = $_need_swab
7815 NEED_VSSCANF = $_need_vsscanf
7817 # features
7818 3DFX = $_3dfx
7819 AA = $_aa
7820 ALSA1X = $_alsa1x
7821 ALSA9 = $_alsa9
7822 ALSA5 = $_alsa5
7823 APPLE_IR = $_apple_ir
7824 APPLE_REMOTE = $_apple_remote
7825 ARTS = $_arts
7826 AUDIO_INPUT = $_audio_input
7827 BITMAP_FONT = $_bitmap_font
7828 BL = $_bl
7829 CACA = $_caca
7830 CDDA = $_cdda
7831 CDDB = $_cddb
7832 COREAUDIO = $_coreaudio
7833 COREVIDEO = $_corevideo
7834 DART = $_dart
7835 DFBMGA = $_dfbmga
7836 DGA = $_dga
7837 DIRECT3D = $_direct3d
7838 DIRECTFB = $_directfb
7839 DIRECTX = $_directx
7840 DVBIN = $_dvbin
7841 DVDNAV = $_dvdnav
7842 DVDNAV_INTERNAL = $dvdnav_internal
7843 DVDREAD = $_dvdread
7844 DVDREAD_INTERNAL = $_dvdread_internal
7845 DXR2 = $_dxr2
7846 DXR3 = $_dxr3
7847 ESD = $_esd
7848 FAAC=$_faac
7849 FAAD = $_faad
7850 FAAD_INTERNAL = $_faad_internal
7851 FASTMEMCPY = $_fastmemcpy
7852 FBDEV = $_fbdev
7853 FREETYPE = $_freetype
7854 FTP = $_ftp
7855 GIF = $_gif
7856 GGI = $_ggi
7857 GL = $_gl
7858 GL_WIN32 = $_gl_win32
7859 GL_X11 = $_gl_x11
7860 GL_SDL = $_gl_sdl
7861 MATRIXVIEW = $matrixview
7862 HAVE_POSIX_SELECT = $_posix_select
7863 HAVE_SYS_MMAN_H = $_mman
7864 IVTV = $_ivtv
7865 JACK = $_jack
7866 JOYSTICK = $_joystick
7867 JPEG = $_jpeg
7868 KAI = $_kai
7869 KVA = $_kva
7870 LADSPA = $_ladspa
7871 LIBA52 = $_liba52
7872 LIBASS = $_ass
7873 LIBBLURAY = $_bluray
7874 LIBBS2B = $_libbs2b
7875 LIBDCA = $_libdca
7876 LIBDV = $_libdv
7877 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7878 LIBLZO = $_liblzo
7879 LIBMAD = $_mad
7880 LIBMENU = $_menu
7881 LIBMENU_DVBIN = $_menu_dvbin
7882 LIBMPEG2 = $_libmpeg2
7883 LIBNEMESI = $_nemesi
7884 LIBNUT = $_libnut
7885 LIBSMBCLIENT = $_smb
7886 LIBTHEORA = $_theora
7887 LIRC = $_lirc
7888 LIVE555 = $_live
7889 MACOSX_FINDER = $_macosx_finder
7890 MD5SUM = $_md5sum
7891 MGA = $_mga
7892 MNG = $_mng
7893 MP3LAME = $_mp3lame
7894 MP3LIB = $_mp3lib
7895 MPG123 = $_mpg123
7896 MUSEPACK = $_musepack
7897 NAS = $_nas
7898 NATIVE_RTSP = $_native_rtsp
7899 NETWORKING = $networking
7900 OPENAL = $_openal
7901 OSS = $_ossaudio
7902 PE_EXECUTABLE = $_pe_executable
7903 PNG = $_png
7904 PNM = $_pnm
7905 PRIORITY = $_priority
7906 PULSE = $_pulse
7907 PVR = $_pvr
7908 QTX_CODECS = $_qtx
7909 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7910 QTX_EMULATION = $_qtx_emulation
7911 QUARTZ = $_quartz
7912 RADIO=$_radio
7913 RADIO_CAPTURE=$_radio_capture
7914 REAL_CODECS = $_real
7915 S3FB = $_s3fb
7916 SDL = $_sdl
7917 SPEEX = $_speex
7918 STREAM_CACHE = $_stream_cache
7919 SGIAUDIO = $_sgiaudio
7920 SUNAUDIO = $_sunaudio
7921 SVGA = $_svga
7922 TDFXFB = $_tdfxfb
7923 TDFXVID = $_tdfxvid
7924 TGA = $_tga
7925 TOOLAME=$_toolame
7926 TREMOR_INTERNAL = $_tremor_internal
7927 TV = $_tv
7928 TV_BSDBT848 = $_tv_bsdbt848
7929 TV_DSHOW = $_tv_dshow
7930 TV_V4L = $_tv_v4l
7931 TV_V4L1 = $_tv_v4l1
7932 TV_V4L2 = $_tv_v4l2
7933 TWOLAME=$_twolame
7934 UNRAR_EXEC = $_unrar_exec
7935 V4L2 = $_v4l2
7936 VCD = $_vcd
7937 VDPAU = $_vdpau
7938 VESA = $_vesa
7939 VIDIX = $_vidix
7940 VIDIX_PCIDB = $_vidix_pcidb_val
7941 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7942 VIDIX_IVTV=$_vidix_drv_ivtv
7943 VIDIX_MACH64=$_vidix_drv_mach64
7944 VIDIX_MGA=$_vidix_drv_mga
7945 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7946 VIDIX_NVIDIA=$_vidix_drv_nvidia
7947 VIDIX_PM2=$_vidix_drv_pm2
7948 VIDIX_PM3=$_vidix_drv_pm3
7949 VIDIX_RADEON=$_vidix_drv_radeon
7950 VIDIX_RAGE128=$_vidix_drv_rage128
7951 VIDIX_S3=$_vidix_drv_s3
7952 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7953 VIDIX_SIS=$_vidix_drv_sis
7954 VIDIX_UNICHROME=$_vidix_drv_unichrome
7955 VORBIS = $_vorbis
7956 VSTREAM = $_vstream
7957 WII = $_wii
7958 WIN32DLL = $_win32dll
7959 WIN32WAVEOUT = $_win32waveout
7960 WIN32_EMULATION = $_win32_emulation
7961 WINVIDIX = $winvidix
7962 X11 = $_x11
7963 X264 = $_x264
7964 XANIM_CODECS = $_xanim
7965 XMGA = $_xmga
7966 XMMS_PLUGINS = $_xmms
7967 XV = $_xv
7968 XVID4 = $_xvid
7969 XVIDIX = $xvidix
7970 XVMC = $_xvmc
7971 XVR100 = $_xvr100
7972 YUV4MPEG = $_yuv4mpeg
7973 ZR = $_zr
7975 # FFmpeg
7976 LIBAVUTIL = $_libavutil
7977 LIBAVCODEC = $_libavcodec
7978 LIBAVFORMAT = $_libavformat
7979 LIBPOSTPROC = $_libpostproc
7980 LIBSWSCALE = $_libswscale
7981 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7982 LIBSWSCALE_INTERNALS = $_libswscale_internals
7983 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7985 RANLIB = $_ranlib
7986 YASM = $_yasm
7987 YASMFLAGS = $YASMFLAGS
7989 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7990 CONFIG_AANDCT = yes
7991 CONFIG_FFT = yes
7992 CONFIG_GOLOMB = yes
7993 CONFIG_H264DSP = yes
7994 CONFIG_LPC = yes
7995 CONFIG_MDCT = yes
7996 CONFIG_RDFT = yes
7998 CONFIG_BZLIB = $bzlib
7999 CONFIG_ENCODERS = yes
8000 CONFIG_GPL = yes
8001 CONFIG_MLIB = $_mlib
8002 CONFIG_MUXERS = $_mencoder
8003 CONFIG_VDPAU = $_vdpau
8004 CONFIG_XVMC = $_xvmc
8005 CONFIG_ZLIB = $_zlib
8007 HAVE_PTHREADS = $_pthreads
8008 HAVE_SHM = $_shm
8009 HAVE_W32THREADS = $_w32threads
8010 HAVE_YASM = $have_yasm
8014 #############################################################################
8016 ff_config_enable () {
8017 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8018 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8019 _nprefix=$3;
8020 test -z "$_nprefix" && _nprefix='CONFIG'
8021 for part in $list; do
8022 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8023 echo "#define ${_nprefix}_$part 1"
8024 else
8025 echo "#define ${_nprefix}_$part 0"
8027 done
8030 echo "Creating config.h"
8031 cat > $TMPH << EOF
8032 /*----------------------------------------------------------------------------
8033 ** This file has been automatically generated by configure any changes in it
8034 ** will be lost when you run configure again.
8035 ** Instead of modifying definitions here, use the --enable/--disable options
8036 ** of the configure script! See ./configure --help for details.
8037 *---------------------------------------------------------------------------*/
8039 #ifndef MPLAYER_CONFIG_H
8040 #define MPLAYER_CONFIG_H
8042 /* Undefine this if you do not want to select mono audio (left or right)
8043 with a stereo MPEG layer 2/3 audio stream. The command line option
8044 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8045 right-only), with 0 being the default.
8047 #define CONFIG_FAKE_MONO 1
8049 /* set up audio OUTBURST. Do not change this! */
8050 #define OUTBURST 512
8052 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8053 #undef FAST_OSD
8054 #undef FAST_OSD_TABLE
8056 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8057 #define MPEG12_POSTPROC 1
8058 #define ATTRIBUTE_ALIGNED_MAX 16
8062 #define CONFIGURATION "$configuration"
8064 #define MPLAYER_DATADIR "$_datadir"
8065 #define MPLAYER_CONFDIR "$_confdir"
8066 #define MPLAYER_LIBDIR "$_libdir"
8067 #define MPLAYER_LOCALEDIR "$_localedir"
8069 $def_translation
8071 /* definitions needed by included libraries */
8072 #define HAVE_INTTYPES_H 1
8073 /* libmpeg2 + FFmpeg */
8074 $def_fast_inttypes
8075 /* libdvdcss */
8076 #define HAVE_ERRNO_H 1
8077 /* libdvdcss + libdvdread */
8078 #define HAVE_LIMITS_H 1
8079 /* libdvdcss + libfaad2 */
8080 #define HAVE_UNISTD_H 1
8081 /* libfaad2 + libdvdread */
8082 #define STDC_HEADERS 1
8083 #define HAVE_MEMCPY 1
8084 /* libfaad2 */
8085 #define HAVE_STRING_H 1
8086 #define HAVE_STRINGS_H 1
8087 #define HAVE_SYS_STAT_H 1
8088 #define HAVE_SYS_TYPES_H 1
8089 /* libdvdnav */
8090 #define READ_CACHE_TRACE 0
8091 /* libdvdread */
8092 #define HAVE_DLFCN_H 1
8093 $def_dvdcss
8096 /* system headers */
8097 $def_alloca_h
8098 $def_alsa_asoundlib_h
8099 $def_altivec_h
8100 $def_malloc_h
8101 $def_mman_h
8102 $def_mman_has_map_failed
8103 $def_soundcard_h
8104 $def_sys_asoundlib_h
8105 $def_sys_soundcard_h
8106 $def_sys_sysinfo_h
8107 $def_termios_h
8108 $def_termios_sys_h
8109 $def_winsock2_h
8112 /* system functions */
8113 $def_gethostbyname2
8114 $def_gettimeofday
8115 $def_glob
8116 $def_langinfo
8117 $def_lrintf
8118 $def_map_memalign
8119 $def_memalign
8120 $def_nanosleep
8121 $def_posix_select
8122 $def_select
8123 $def_setenv
8124 $def_setmode
8125 $def_shm
8126 $def_strsep
8127 $def_swab
8128 $def_sysi86
8129 $def_sysi86_iv
8130 $def_termcap
8131 $def_termios
8132 $def_vsscanf
8135 /* system-specific features */
8136 $def_asmalign_pot
8137 $def_builtin_expect
8138 $def_dl
8139 $def_dos_paths
8140 $def_extern_asm
8141 $def_extern_prefix
8142 $def_iconv
8143 $def_kstat
8144 $def_macosx_bundle
8145 $def_macosx_finder
8146 $def_maemo
8147 $def_named_asm_args
8148 $def_priority
8149 $def_quicktime
8150 $def_restrict_keyword
8151 $def_rtc
8152 $def_unrar_exec
8155 /* configurable options */
8156 $def_charset
8157 $def_crash_debug
8158 $def_debug
8159 $def_dynamic_plugins
8160 $def_fastmemcpy
8161 $def_menu
8162 $def_runtime_cpudetection
8163 $def_sighandler
8164 $def_sortsub
8165 $def_stream_cache
8166 $def_pthread_cache
8169 /* CPU stuff */
8170 #define __CPU__ $iproc
8171 $def_ebx_available
8172 $def_words_endian
8173 $def_bigendian
8174 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8175 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8176 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8179 /* Blu-ray/DVD/VCD/CD */
8180 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8181 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8182 $def_bluray
8183 $def_bsdi_dvd
8184 $def_cddb
8185 $def_cdio
8186 $def_cdparanoia
8187 $def_cdrom
8188 $def_dvd
8189 $def_dvd_bsd
8190 $def_dvd_darwin
8191 $def_dvd_linux
8192 $def_dvd_openbsd
8193 $def_dvdio
8194 $def_dvdnav
8195 $def_dvdread
8196 $def_hpux_scsi_h
8197 $def_libcdio
8198 $def_sol_scsi_h
8199 $def_vcd
8202 /* codec libraries */
8203 $def_faac
8204 $def_faad
8205 $def_faad_internal
8206 $def_liba52
8207 $def_libdca
8208 $def_libdv
8209 $def_liblzo
8210 $def_libmpeg2
8211 $def_mad
8212 $def_mp3lame
8213 $def_mp3lame_preset
8214 $def_mp3lame_preset_medium
8215 $def_mp3lib
8216 $def_mpg123
8217 $def_musepack
8218 $def_speex
8219 $def_theora
8220 $def_toolame
8221 $def_tremor
8222 $def_twolame
8223 $def_vorbis
8224 $def_x264
8225 $def_xvid
8226 $def_zlib
8228 $def_libnut
8231 /* binary codecs */
8232 $def_qtx
8233 $def_qtx_win32
8234 $def_real
8235 $def_win32_loader
8236 $def_win32dll
8237 $def_xanim
8238 $def_xmms
8239 #define BINARY_CODECS_PATH "$_codecsdir"
8240 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8243 /* Audio output drivers */
8244 $def_alsa
8245 $def_alsa1x
8246 $def_alsa5
8247 $def_alsa9
8248 $def_arts
8249 $def_coreaudio
8250 $def_dart
8251 $def_esd
8252 $def_esd_latency
8253 $def_jack
8254 $def_kai
8255 $def_nas
8256 $def_openal
8257 $def_openal_h
8258 $def_ossaudio
8259 $def_ossaudio_devdsp
8260 $def_ossaudio_devmixer
8261 $def_pulse
8262 $def_sgiaudio
8263 $def_sunaudio
8264 $def_win32waveout
8266 $def_ladspa
8267 $def_libbs2b
8270 /* input */
8271 $def_apple_ir
8272 $def_apple_remote
8273 $def_ioctl_bt848_h_name
8274 $def_ioctl_meteor_h_name
8275 $def_joystick
8276 $def_lirc
8277 $def_lircc
8278 $def_pvr
8279 $def_radio
8280 $def_radio_bsdbt848
8281 $def_radio_capture
8282 $def_radio_v4l
8283 $def_radio_v4l2
8284 $def_tv
8285 $def_tv_bsdbt848
8286 $def_tv_dshow
8287 $def_tv_v4l
8288 $def_tv_v4l1
8289 $def_tv_v4l2
8292 /* font stuff */
8293 $def_ass
8294 $def_bitmap_font
8295 $def_enca
8296 $def_fontconfig
8297 $def_freetype
8298 $def_fribidi
8301 /* networking */
8302 $def_closesocket
8303 $def_ftp
8304 $def_inet6
8305 $def_inet_aton
8306 $def_inet_pton
8307 $def_live
8308 $def_nemesi
8309 $def_networking
8310 $def_smb
8311 $def_socklen_t
8312 $def_vstream
8315 /* libvo options */
8316 $def_3dfx
8317 $def_aa
8318 $def_bl
8319 $def_caca
8320 $def_corevideo
8321 $def_dfbmga
8322 $def_dga
8323 $def_dga1
8324 $def_dga2
8325 $def_direct3d
8326 $def_directfb
8327 $def_directfb_version
8328 $def_directx
8329 $def_dvb
8330 $def_dvbin
8331 $def_dxr2
8332 $def_dxr3
8333 $def_fbdev
8334 $def_ggi
8335 $def_ggiwmh
8336 $def_gif
8337 $def_gif_4
8338 $def_gif_tvt_hack
8339 $def_gl
8340 $def_gl_win32
8341 $def_gl_x11
8342 $def_gl_sdl
8343 $def_matrixview
8344 $def_ivtv
8345 $def_jpeg
8346 $def_kva
8347 $def_md5sum
8348 $def_mga
8349 $def_mng
8350 $def_png
8351 $def_pnm
8352 $def_quartz
8353 $def_s3fb
8354 $def_sdl
8355 $def_sdl_sdl_h
8356 $def_svga
8357 $def_tdfxfb
8358 $def_tdfxvid
8359 $def_tga
8360 $def_v4l2
8361 $def_vdpau
8362 $def_vesa
8363 $def_vidix
8364 $def_vidix_drv_cyberblade
8365 $def_vidix_drv_ivtv
8366 $def_vidix_drv_mach64
8367 $def_vidix_drv_mga
8368 $def_vidix_drv_mga_crtc2
8369 $def_vidix_drv_nvidia
8370 $def_vidix_drv_pm3
8371 $def_vidix_drv_radeon
8372 $def_vidix_drv_rage128
8373 $def_vidix_drv_s3
8374 $def_vidix_drv_sh_veu
8375 $def_vidix_drv_sis
8376 $def_vidix_drv_unichrome
8377 $def_vidix_pfx
8378 $def_vm
8379 $def_wii
8380 $def_x11
8381 $def_xdpms
8382 $def_xf86keysym
8383 $def_xinerama
8384 $def_xmga
8385 $def_xss
8386 $def_xv
8387 $def_xvmc
8388 $def_xvr100
8389 $def_yuv4mpeg
8390 $def_zr
8393 /* FFmpeg */
8394 $def_libavcodec
8395 $def_libavformat
8396 $def_libavutil
8397 $def_libpostproc
8398 $def_libswscale
8399 $def_libavcodec_internals
8400 $def_libswscale_internals
8402 #define CONFIG_DECODERS 1
8403 #define CONFIG_ENCODERS 1
8404 #define CONFIG_DEMUXERS 1
8405 $def_muxers
8407 $def_arpa_inet_h
8408 $def_bswap
8409 $def_bzlib
8410 $def_dcbzl
8411 $def_exp2
8412 $def_exp2f
8413 $def_fast_64bit
8414 $def_fast_unaligned
8415 $def_llrint
8416 $def_log2
8417 $def_log2f
8418 $def_lrint
8419 $def_memalign_hack
8420 $def_mlib
8421 $def_mkstemp
8422 $def_posix_memalign
8423 $def_pthreads
8424 $def_round
8425 $def_roundf
8426 $def_ten_operands
8427 $def_threads
8428 $def_truncf
8429 $def_xform_asm
8430 $def_yasm
8432 #define CONFIG_FASTDIV 0
8433 #define CONFIG_FFSERVER 0
8434 #define CONFIG_GPL 1
8435 #define CONFIG_GRAY 0
8436 #define CONFIG_HARDCODED_TABLES 0
8437 #define CONFIG_LIBVORBIS 0
8438 #define CONFIG_POWERPC_PERF 0
8439 #define CONFIG_SMALL 0
8440 #define CONFIG_SWSCALE_ALPHA 1
8442 #define HAVE_ATTRIBUTE_PACKED 1
8443 #define HAVE_GETHRTIME 0
8444 #define HAVE_INLINE_ASM 1
8445 #define HAVE_LDBRX 0
8446 #define HAVE_POLL_H 1
8447 #define HAVE_PPC4XX 0
8448 #define HAVE_VFP_ARGS 1
8449 #define HAVE_VIRTUALALLOC 0
8451 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8452 #define CONFIG_AANDCT 1
8453 #define CONFIG_DCT 1
8454 #define CONFIG_DWT 1
8455 #define CONFIG_FFT 1
8456 #define CONFIG_GOLOMB 1
8457 #define CONFIG_H264DSP 1
8458 #define CONFIG_LPC 1
8459 #define CONFIG_MDCT 1
8460 #define CONFIG_RDFT 1
8462 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8463 #ifndef MP_DEBUG
8464 #define HAVE_EBP_AVAILABLE 1
8465 #else
8466 #define HAVE_EBP_AVAILABLE 0
8467 #endif
8469 #define CONFIG_H263_VAAPI_HWACCEL 0
8470 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8471 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8472 #define CONFIG_H264_VAAPI_HWACCEL 0
8473 #define CONFIG_VC1_VAAPI_HWACCEL 0
8474 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8476 #endif /* MPLAYER_CONFIG_H */
8479 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8480 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8482 #############################################################################
8484 ./version.sh `$_cc -dumpversion`
8486 cat << EOF
8488 Config files successfully generated by ./configure $configuration !
8490 Install prefix: $_prefix
8491 Data directory: $_datadir
8492 Config direct.: $_confdir
8494 Byte order: $_byte_order
8495 Optimizing for: $_optimizing
8497 Languages:
8498 Messages (in addition to English): $language_msg
8499 Manual pages: $language_man
8500 Documentation: $language_doc
8502 Enabled optional drivers:
8503 Input: $inputmodules
8504 Codecs: $codecmodules
8505 Audio output: $aomodules
8506 Video output: $vomodules
8508 Disabled optional drivers:
8509 Input: $noinputmodules
8510 Codecs: $nocodecmodules
8511 Audio output: $noaomodules
8512 Video output: $novomodules
8514 'config.h' and 'config.mak' contain your configuration options.
8515 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8516 compile *** DO NOT REPORT BUGS if you tweak these files ***
8518 'make' will now compile MPlayer and 'make install' will install it.
8519 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8524 if test "$_mtrr" = yes ; then
8525 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8526 echo
8529 if ! x86_32; then
8530 cat <<EOF
8531 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8532 operating system ($system_name). You may encounter a few files that cannot
8533 be played due to missing open source video/audio codec support.
8539 cat <<EOF
8540 Check $TMPLOG if you wonder why an autodetection failed (make sure
8541 development headers/packages are installed).
8543 NOTE: The --enable-* parameters unconditionally force options on, completely
8544 skipping autodetection. This behavior is unlike what you may be used to from
8545 autoconf-based configure scripts that can decide to override you. This greater
8546 level of control comes at a price. You may have to provide the correct compiler
8547 and linker flags yourself.
8548 If you used one of these options (except --enable-menu and similar ones that
8549 turn on internal features) and experience a compilation or linking failure,
8550 make sure you have passed the necessary compiler/linker flags to configure.
8552 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8556 if test "$warn_cflags" = yes; then
8557 cat <<EOF
8559 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8560 but:
8562 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8564 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8565 To do so, execute 'CFLAGS= ./configure <options>'
8570 # Last move:
8571 rm -rf "$mplayer_tmpdir"