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