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