configure: Fix compilation on Windows: MinGW unistd.h does not define NULL
[mplayer/glamo.git] / configure
blobfbfb85cf76bc4dc9615fc358288f3e15f837d07a
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 source="$1"
63 shift
64 echo >> "$TMPLOG"
65 cat "$source" >> "$TMPLOG"
66 echo >> "$TMPLOG"
67 echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
70 TMPRES="$?"
71 echo >> "$TMPLOG"
72 echo >> "$TMPLOG"
73 return "$TMPRES"
76 cc_check() {
77 compile_check $TMPC $@
80 cxx_check() {
81 compile_check $TMPCPP $@ -lstdc++
84 cflag_check() {
85 cat > $TMPC << EOF
86 int main(void) { return 0; }
87 EOF
88 compile_check $TMPC $@
91 function_check() {
92 cat > $TMPC << EOF
93 #include <$1>
94 int main(void) { $2; return 0; }
95 EOF
96 shift
97 shift
98 compile_check $TMPC $@
101 header_check() {
102 cat > $TMPC << EOF
103 #include <$1>
104 int main(void) { return 0; }
106 shift
107 compile_check $TMPC $@
110 inline_asm_check() {
111 cat > $TMPC << EOF
112 int main(void) { __asm__ volatile ($1); return 0; }
114 shift
115 compile_check $TMPC $@
118 # this is a special check only to be
119 # used for broken headers that do not
120 # include all dependencies
121 header_check_broken() {
122 cat > $TMPC << EOF
123 #include <$1>
124 #include <$2>
125 int main(void) { return 0; }
127 shift
128 shift
129 compile_check $TMPC $@
132 yasm_check() {
133 echo >> "$TMPLOG"
134 cat "$TMPS" >> "$TMPLOG"
135 echo >> "$TMPLOG"
136 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
137 rm -f "$TMPEXE"
138 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
139 TMPRES="$?"
140 echo >> "$TMPLOG"
141 echo >> "$TMPLOG"
142 return "$TMPRES"
145 tmp_run() {
146 "$TMPEXE" >> "$TMPLOG" 2>&1
149 # Display error message, flushes tempfile, exit
150 die () {
151 echo
152 echo "Error: $@" >&2
153 echo >&2
154 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
155 echo "Check \"$TMPLOG\" if you do not understand why it failed."
156 exit 1
159 # OS test booleans functions
160 issystem() {
161 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
163 aix() { issystem "AIX"; }
164 amigaos() { issystem "AmigaOS"; }
165 beos() { issystem "BEOS"; }
166 bsdos() { issystem "BSD/OS"; }
167 cygwin() { issystem "CYGWIN"; }
168 darwin() { issystem "Darwin"; }
169 dragonfly() { issystem "DragonFly"; }
170 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
171 gnu() { issystem "GNU"; }
172 hpux() { issystem "HP-UX"; }
173 irix() { issystem "IRIX"; }
174 linux() { issystem "Linux"; }
175 mingw32() { issystem "MINGW32"; }
176 morphos() { issystem "MorphOS"; }
177 netbsd() { issystem "NetBSD"; }
178 openbsd() { issystem "OpenBSD"; }
179 os2() { issystem "OS/2"; }
180 qnx() { issystem "QNX"; }
181 sunos() { issystem "SunOS"; }
182 win32() { cygwin || mingw32; }
184 # arch test boolean functions
185 # x86/x86pc is used by QNX
186 x86_32() {
187 case "$host_arch" in
188 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
189 *) return 1 ;;
190 esac
193 x86_64() {
194 case "$host_arch" in
195 x86_64|amd64) return 0 ;;
196 *) return 1 ;;
197 esac
200 x86() {
201 x86_32 || x86_64
204 ppc() {
205 case "$host_arch" in
206 ppc|ppc64|powerpc|powerpc64) return 0;;
207 *) return 1;;
208 esac
211 alpha() {
212 case "$host_arch" in
213 alpha*) return 0;;
214 *) return 1;;
215 esac
218 arm() {
219 case "$host_arch" in
220 arm*) return 0;;
221 *) return 1;;
222 esac
225 # Use this before starting a check
226 echocheck() {
227 echo "============ Checking for $@ ============" >> "$TMPLOG"
228 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
231 # Use this to echo the results of a check
232 echores() {
233 if test "$res_comment" ; then
234 res_comment="($res_comment)"
236 echo "Result is: $@ $res_comment" >> "$TMPLOG"
237 echo "##########################################" >> "$TMPLOG"
238 echo "" >> "$TMPLOG"
239 echo "$@ $res_comment"
240 res_comment=""
242 #############################################################################
244 # Check how echo works in this /bin/sh
245 case $(echo -n) in
246 -n) _echo_n= _echo_c='\c' ;; # SysV echo
247 *) _echo_n='-n ' _echo_c= ;; # BSD echo
248 esac
250 msg_lang_all=''
251 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
252 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")
253 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
255 show_help(){
256 cat << EOF
257 Usage: $0 [OPTIONS]...
259 Configuration:
260 -h, --help display this help and exit
262 Installation directories:
263 --prefix=DIR prefix directory for installation [/usr/local]
264 --bindir=DIR directory for installing binaries [PREFIX/bin]
265 --datadir=DIR directory for installing machine independent
266 data files (skins, etc) [PREFIX/share/mplayer]
267 --mandir=DIR directory for installing man pages [PREFIX/share/man]
268 --confdir=DIR directory for installing configuration files
269 [PREFIX/etc/mplayer]
270 --localedir=DIR directory for locale tree [PREFIX/share/locale]
271 --libdir=DIR directory for object code libraries [PREFIX/lib]
272 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
274 Optional features:
275 --disable-mplayer disable MPlayer compilation [enable]
276 --disable-largefiles disable support for files > 2GB [enable]
277 --enable-termcap use termcap database for key codes [autodetect]
278 --enable-termios use termios database for key codes [autodetect]
279 --disable-iconv disable iconv for encoding conversion [autodetect]
280 --disable-langinfo do not use langinfo [autodetect]
281 --enable-lirc enable LIRC (remote control) support [autodetect]
282 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
283 --enable-joystick enable joystick support [disable]
284 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
285 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
286 --disable-vm disable X video mode extensions [autodetect]
287 --disable-xf86keysym disable support for multimedia keys [autodetect]
288 --enable-radio enable radio interface [disable]
289 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
290 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
291 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
292 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
293 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
294 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
295 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
296 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
297 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
298 --disable-networking disable networking [enable]
299 --enable-winsock2_h enable winsock2_h [autodetect]
300 --enable-smb enable Samba (SMB) input [autodetect]
301 --enable-live enable LIVE555 Streaming Media [autodetect]
302 --enable-nemesi enable Nemesi Streaming Media [autodetect]
303 --disable-vcd disable VCD support [autodetect]
304 --disable-bluray disable Blu-ray support [autodetect]
305 --disable-dvdnav disable libdvdnav [autodetect]
306 --disable-dvdread disable libdvdread [autodetect]
307 --disable-dvdread-internal disable internal libdvdread [autodetect]
308 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
309 --disable-cdparanoia disable cdparanoia [autodetect]
310 --disable-cddb disable cddb [autodetect]
311 --disable-bitmap-font disable bitmap font support [enable]
312 --disable-freetype disable FreeType 2 font rendering [autodetect]
313 --disable-fontconfig disable fontconfig font lookup [autodetect]
314 --disable-unrarexec disable using of UnRAR executable [enabled]
315 --enable-menu enable OSD menu (not DVD menu) [disabled]
316 --disable-sortsub disable subtitle sorting [enabled]
317 --enable-fribidi enable the FriBiDi libs [autodetect]
318 --disable-enca disable ENCA charset oracle library [autodetect]
319 --disable-maemo disable maemo specific features [autodetect]
320 --enable-macosx-finder enable Mac OS X Finder invocation parameter
321 parsing [disabled]
322 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
323 --disable-inet6 disable IPv6 support [autodetect]
324 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
325 --disable-ftp disable FTP support [enabled]
326 --disable-vstream disable TiVo vstream client support [autodetect]
327 --disable-pthreads disable Posix threads support [autodetect]
328 --disable-w32threads disable Win32 threads support [autodetect]
329 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
330 --enable-rpath enable runtime linker path for extra libs [disabled]
332 Codecs:
333 --enable-gif enable GIF support [autodetect]
334 --enable-png enable PNG input/output support [autodetect]
335 --enable-mng enable MNG input support [autodetect]
336 --enable-jpeg enable JPEG input/output support [autodetect]
337 --enable-libcdio enable libcdio support [autodetect]
338 --enable-liblzo enable liblzo support [autodetect]
339 --disable-win32dll disable Win32 DLL support [autodetect]
340 --disable-qtx disable QuickTime codecs support [enabled]
341 --disable-xanim disable XAnim codecs support [enabled]
342 --disable-real disable RealPlayer codecs support [enabled]
343 --disable-xvid disable Xvid [autodetect]
344 --disable-x264 disable x264 [autodetect]
345 --disable-libnut disable libnut [autodetect]
346 --disable-ffmpeg_a disable static FFmpeg [autodetect]
347 --disable-ffmpeg_so disable shared FFmpeg [autodetect]
348 --disable-tremor-internal disable internal Tremor [enabled]
349 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
350 --enable-tremor enable external Tremor [autodetect]
351 --disable-libvorbis disable libvorbis support [autodetect]
352 --disable-speex disable Speex support [autodetect]
353 --enable-theora enable OggTheora libraries [autodetect]
354 --enable-faad enable external FAAD2 (AAC) [autodetect]
355 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
356 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
357 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
358 --disable-ladspa disable LADSPA plugin support [autodetect]
359 --disable-libbs2b disable libbs2b audio filter support [autodetect]
360 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
361 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
362 --disable-mad disable libmad (MPEG audio) support [autodetect]
363 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
364 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
365 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
366 --enable-xmms enable XMMS input plugin support [disabled]
367 --enable-libdca enable libdca support [autodetect]
368 --disable-mp3lib disable builtin mp3lib [autodetect]
369 --disable-liba52 disable liba52 [autodetect]
370 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
371 --disable-musepack disable musepack support [autodetect]
373 Video output:
374 --disable-vidix disable VIDIX [for x86 *nix]
375 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
376 Available: cyberblade, ivtv, mach64, mga, mga_crtc2,
377 nvidia, pm2, pm3, radeon, rage128, s3, sis, unichrome
378 --disable-vidix-pcidb disable VIDIX PCI device name database
379 --enable-dhahelper enable VIDIX dhahelper support
380 --enable-svgalib_helper enable VIDIX svgalib_helper support
381 --enable-gl enable OpenGL video output [autodetect]
382 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
383 --enable-dga2 enable DGA 2 support [autodetect]
384 --enable-dga1 enable DGA 1 support [autodetect]
385 --enable-vesa enable VESA video output [autodetect]
386 --enable-svga enable SVGAlib video output [autodetect]
387 --enable-sdl enable SDL video output [autodetect]
388 --enable-kva enable KVA video output [autodetect]
389 --enable-aa enable AAlib video output [autodetect]
390 --enable-caca enable CACA video output [autodetect]
391 --enable-ggi enable GGI video output [autodetect]
392 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
393 --enable-direct3d enable Direct3D video output [autodetect]
394 --enable-directx enable DirectX video output [autodetect]
395 --enable-dxr2 enable DXR2 video output [autodetect]
396 --enable-dxr3 enable DXR3/H+ video output [autodetect]
397 --enable-ivtv enable IVTV TV-Out video output [autodetect]
398 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
399 --enable-dvb enable DVB video output [autodetect]
400 --enable-mga enable mga_vid video output [autodetect]
401 --enable-xmga enable mga_vid X11 video output [autodetect]
402 --enable-xv enable Xv video output [autodetect]
403 --enable-xvmc enable XvMC acceleration [disable]
404 --enable-vdpau enable VDPAU acceleration [autodetect]
405 --enable-vm enable XF86VidMode support [autodetect]
406 --enable-xinerama enable Xinerama support [autodetect]
407 --enable-x11 enable X11 video output [autodetect]
408 --enable-xshape enable XShape support [autodetect]
409 --disable-xss disable screensaver support via xss [autodetect]
410 --enable-fbdev enable FBDev video output [autodetect]
411 --enable-mlib enable mediaLib video output (Solaris) [disable]
412 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
413 --enable-tdfxfb enable tdfxfb video output [disable]
414 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
415 --enable-wii enable Nintendo Wii/GameCube video output [disable]
416 --enable-directfb enable DirectFB video output [autodetect]
417 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
418 --enable-bl enable Blinkenlights video output [disable]
419 --enable-tdfxvid enable tdfx_vid video output [disable]
420 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
421 --disable-tga disable Targa video output [enable]
422 --disable-pnm disable PNM video output [enable]
423 --disable-md5sum disable md5sum video output [enable]
424 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
425 --disable-corevideo disable CoreVideo video output [autodetect]
426 --disable-quartz disable Quartz video output [autodetect]
428 Audio output:
429 --disable-alsa disable ALSA audio output [autodetect]
430 --disable-ossaudio disable OSS audio output [autodetect]
431 --disable-arts disable aRts audio output [autodetect]
432 --disable-esd disable esd audio output [autodetect]
433 --disable-pulse disable Pulseaudio audio output [autodetect]
434 --disable-jack disable JACK audio output [autodetect]
435 --enable-openal enable OpenAL audio output [disable]
436 --disable-nas disable NAS audio output [autodetect]
437 --disable-sgiaudio disable SGI audio output [autodetect]
438 --disable-sunaudio disable Sun audio output [autodetect]
439 --disable-kai disable KAI audio output [autodetect]
440 --disable-dart disable DART audio output [autodetect]
441 --disable-win32waveout disable Windows waveout audio output [autodetect]
442 --disable-coreaudio disable CoreAudio audio output [autodetect]
443 --disable-select disable using select() on the audio device [enable]
445 Language options:
446 --enable-translation enable support for translated output [disable]
447 --charset=charset convert the console messages to this character set
448 --language-doc=lang language to use for the documentation [en]
449 --language-man=lang language to use for the man pages [en]
450 --language-msg=lang extra languages for program messages [all]
451 --language=lang default language to use [en]
452 Specific options override --language. You can pass a list of languages separated
453 by whitespace or commas instead of a single language. Nonexisting translations
454 will be dropped from each list. All translations available in the list will be
455 installed. The value "all" will activate all translations. The LINGUAS
456 environment variable is honored. In all cases the fallback is English.
457 The program always supports English-language output; additional message
458 languages are only installed if --enable-translation is also specified.
459 Available values for --language-doc are: all $doc_lang_all
460 Available values for --language-man are: all $man_lang_all
461 Available values for --language-msg are: all $msg_lang_all
463 Miscellaneous options:
464 --enable-runtime-cpudetection enable runtime CPU detection [disable]
465 --enable-cross-compile enable cross-compilation [autodetect]
466 --cc=COMPILER C compiler to build MPlayer [gcc]
467 --host-cc=COMPILER C compiler for tools needed while building [gcc]
468 --as=ASSEMBLER assembler to build MPlayer [as]
469 --nm=NM nm tool to build MPlayer [nm]
470 --yasm=YASM Yasm assembler to build MPlayer [yasm]
471 --ar=AR librarian to build MPlayer [ar]
472 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
473 --windres=WINDRES windres to build MPlayer [windres]
474 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
475 --enable-static build a statically linked binary
476 --with-install=PATH path to a custom install program
478 Advanced options:
479 --enable-mmx enable MMX [autodetect]
480 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
481 --enable-3dnow enable 3DNow! [autodetect]
482 --enable-3dnowext enable extended 3DNow! [autodetect]
483 --enable-sse enable SSE [autodetect]
484 --enable-sse2 enable SSE2 [autodetect]
485 --enable-ssse3 enable SSSE3 [autodetect]
486 --enable-shm enable shm [autodetect]
487 --enable-altivec enable AltiVec (PowerPC) [autodetect]
488 --enable-armv5te enable DSP extensions (ARM) [autodetect]
489 --enable-armv6 enable ARMv6 (ARM) [autodetect]
490 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
491 --enable-armvfp enable ARM VFP (ARM) [autodetect]
492 --enable-neon enable NEON (ARM) [autodetect]
493 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
494 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
495 --enable-big-endian force byte order to big-endian [autodetect]
496 --enable-debug[=1-3] compile-in debugging information [disable]
497 --enable-profile compile-in profiling information [disable]
498 --disable-sighandler disable sighandler for crashes [enable]
499 --enable-crash-debug enable automatic gdb attach on crash [disable]
500 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
501 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
503 Use these options if autodetection fails:
504 --extra-cflags=FLAGS extra CFLAGS
505 --extra-ldflags=FLAGS extra LDFLAGS
506 --extra-libs=FLAGS extra linker flags
507 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
508 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
510 --with-freetype-config=PATH path to freetype-config
511 --with-glib-config=PATH path to glib*-config
512 --with-gtk-config=PATH path to gtk*-config
513 --with-sdl-config=PATH path to sdl*-config
514 --with-dvdnav-config=PATH path to dvdnav-config
515 --with-dvdread-config=PATH path to dvdread-config
517 This configure script is NOT autoconf-based, even though its output is similar.
518 It will try to autodetect all configuration options. If you --enable an option
519 it will be forcefully turned on, skipping autodetection. This can break
520 compilation, so you need to know what you are doing.
522 exit 0
523 } #show_help()
525 # GOTCHA: the variables below defines the default behavior for autodetection
526 # and have - unless stated otherwise - at least 2 states : yes no
527 # If autodetection is available then the third state is: auto
528 _mmx=auto
529 _3dnow=auto
530 _3dnowext=auto
531 _mmxext=auto
532 _sse=auto
533 _sse2=auto
534 _ssse3=auto
535 _cmov=auto
536 _fast_cmov=auto
537 _fast_clz=auto
538 _armv5te=auto
539 _armv6=auto
540 _armv6t2=auto
541 _armvfp=auto
542 neon=auto
543 _iwmmxt=auto
544 _mtrr=auto
545 _altivec=auto
546 _install=install
547 _ranlib=ranlib
548 _windres=windres
549 _cc=cc
550 _ar=ar
551 test "$CC" && _cc="$CC"
552 _as=auto
553 _nm=auto
554 _yasm=yasm
555 _runtime_cpudetection=no
556 _cross_compile=auto
557 _prefix="/usr/local"
558 ffmpeg=auto
559 ffmpeg_internals=no
560 _mencoder=no
561 _mplayer=yes
562 _x11=auto
563 _xshape=auto
564 _xss=auto
565 _dga1=auto
566 _dga2=auto
567 _xv=auto
568 _xvmc=no #auto when complete
569 _vdpau=auto
570 _sdl=auto
571 _kva=auto
572 _direct3d=auto
573 _directx=auto
574 _win32waveout=auto
575 _nas=auto
576 _png=auto
577 _mng=auto
578 _jpeg=auto
579 _pnm=yes
580 _md5sum=yes
581 _yuv4mpeg=yes
582 _gif=auto
583 _gl=auto
584 matrixview=yes
585 _ggi=auto
586 _ggiwmh=auto
587 _aa=auto
588 _caca=auto
589 _svga=auto
590 _vesa=auto
591 _fbdev=auto
592 _dvb=auto
593 _dxr2=auto
594 _dxr3=auto
595 _ivtv=auto
596 _v4l2=auto
597 _iconv=auto
598 _langinfo=auto
599 _rtc=auto
600 _ossaudio=auto
601 _arts=auto
602 _esd=auto
603 _pulse=auto
604 _jack=auto
605 _kai=auto
606 _dart=auto
607 _openal=no
608 _libcdio=auto
609 _liblzo=auto
610 _mad=auto
611 _mp3lame=auto
612 _toolame=auto
613 _twolame=auto
614 _tremor=auto
615 _tremor_internal=yes
616 _tremor_low=no
617 _libvorbis=auto
618 _speex=auto
619 _theora=auto
620 _mpg123=auto
621 _mp3lib=auto
622 _liba52=auto
623 _libdca=auto
624 _libmpeg2=auto
625 _faad=auto
626 _faad_internal=auto
627 _faad_fixed=no
628 _faac=auto
629 _ladspa=auto
630 _libbs2b=auto
631 _xmms=no
632 _vcd=auto
633 _bluray=auto
634 _dvdnav=auto
635 _dvdnavconfig=dvdnav-config
636 _dvdreadconfig=dvdread-config
637 _dvdread=auto
638 _dvdread_internal=auto
639 _libdvdcss_internal=auto
640 _xanim=auto
641 _real=auto
642 _live=auto
643 _nemesi=auto
644 _native_rtsp=yes
645 _xinerama=auto
646 _mga=auto
647 _xmga=auto
648 _vm=auto
649 _xf86keysym=auto
650 _mlib=no #broken, thus disabled
651 _sgiaudio=auto
652 _sunaudio=auto
653 _alsa=auto
654 _fastmemcpy=yes
655 _unrar_exec=auto
656 _win32dll=auto
657 _select=yes
658 _radio=no
659 _radio_capture=no
660 _radio_v4l=auto
661 _radio_v4l2=auto
662 _radio_bsdbt848=auto
663 _tv=yes
664 _tv_v4l1=auto
665 _tv_v4l2=auto
666 _tv_bsdbt848=auto
667 _tv_dshow=auto
668 _pvr=auto
669 networking=yes
670 _winsock2_h=auto
671 _smb=auto
672 _vidix=auto
673 _vidix_pcidb=yes
674 _dhahelper=no
675 _svgalib_helper=no
676 _joystick=no
677 _xvid=auto
678 _x264=auto
679 _libnut=auto
680 _lirc=auto
681 _lircc=auto
682 _apple_remote=auto
683 _apple_ir=auto
684 _gui=no
685 _gtk1=no
686 _termcap=auto
687 _termios=auto
688 _3dfx=no
689 _s3fb=no
690 _wii=no
691 _tdfxfb=no
692 _tdfxvid=no
693 _xvr100=auto
694 _tga=yes
695 _directfb=auto
696 _zr=auto
697 _bl=no
698 _largefiles=yes
699 #language=en
700 _shm=auto
701 _translation=no
702 _charset="UTF-8"
703 _dynamic_plugins=no
704 _crash_debug=no
705 _sighandler=yes
706 _libdv=auto
707 _cdparanoia=auto
708 _cddb=auto
709 _big_endian=auto
710 _bitmap_font=yes
711 _freetype=auto
712 _fontconfig=auto
713 _menu=no
714 _qtx=auto
715 _maemo=auto
716 _coreaudio=auto
717 _corevideo=auto
718 _quartz=auto
719 quicktime=auto
720 _macosx_finder=no
721 _macosx_bundle=auto
722 _sortsub=yes
723 _freetypeconfig='freetype-config'
724 _fribidi=auto
725 _enca=auto
726 _inet6=auto
727 _gethostbyname2=auto
728 _ftp=yes
729 _musepack=auto
730 _vstream=auto
731 _pthreads=auto
732 _w32threads=auto
733 _ass=auto
734 _rpath=no
735 _asmalign_pot=auto
736 _stream_cache=yes
737 _priority=no
738 def_dos_paths="#define HAVE_DOS_PATHS 0"
739 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
740 def_priority="#undef CONFIG_PRIORITY"
741 def_pthread_cache="#undef PTHREAD_CACHE"
742 _need_shmem=yes
743 for ac_option do
744 case "$ac_option" in
745 --help|-help|-h)
746 show_help
748 --prefix=*)
749 _prefix=$(echo $ac_option | cut -d '=' -f 2)
751 --bindir=*)
752 _bindir=$(echo $ac_option | cut -d '=' -f 2)
754 --datadir=*)
755 _datadir=$(echo $ac_option | cut -d '=' -f 2)
757 --mandir=*)
758 _mandir=$(echo $ac_option | cut -d '=' -f 2)
760 --confdir=*)
761 _confdir=$(echo $ac_option | cut -d '=' -f 2)
763 --libdir=*)
764 _libdir=$(echo $ac_option | cut -d '=' -f 2)
766 --codecsdir=*)
767 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
769 --localedir=*)
770 _localedir=$(echo $ac_option | cut -d '=' -f 2)
773 --with-install=*)
774 _install=$(echo $ac_option | cut -d '=' -f 2 )
776 --with-xvmclib=*)
777 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
780 --with-sdl-config=*)
781 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
783 --with-freetype-config=*)
784 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
786 --with-gtk-config=*)
787 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
789 --with-glib-config=*)
790 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
792 --with-dvdnav-config=*)
793 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
795 --with-dvdread-config=*)
796 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
799 --extra-cflags=*)
800 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
802 --extra-ldflags=*)
803 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
805 --extra-libs=*)
806 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
808 --extra-libs-mplayer=*)
809 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
812 --target=*)
813 _target=$(echo $ac_option | cut -d '=' -f 2)
815 --cc=*)
816 _cc=$(echo $ac_option | cut -d '=' -f 2)
818 --host-cc=*)
819 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
821 --as=*)
822 _as=$(echo $ac_option | cut -d '=' -f 2)
824 --nm=*)
825 _nm=$(echo $ac_option | cut -d '=' -f 2)
827 --yasm=*)
828 _yasm=$(echo $ac_option | cut -d '=' -f 2)
830 --ar=*)
831 _ar=$(echo $ac_option | cut -d '=' -f 2)
833 --ranlib=*)
834 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
836 --windres=*)
837 _windres=$(echo $ac_option | cut -d '=' -f 2)
839 --charset=*)
840 _charset=$(echo $ac_option | cut -d '=' -f 2)
842 --language-doc=*)
843 language_doc=$(echo $ac_option | cut -d '=' -f 2)
845 --language-man=*)
846 language_man=$(echo $ac_option | cut -d '=' -f 2)
848 --language-msg=*)
849 language_msg=$(echo $ac_option | cut -d '=' -f 2)
851 --language=*)
852 language=$(echo $ac_option | cut -d '=' -f 2)
855 --enable-static)
856 _ld_static='-static'
858 --disable-static)
859 _ld_static=''
861 --enable-profile)
862 _profile='-p'
864 --disable-profile)
865 _profile=
867 --enable-debug)
868 _debug='-g'
870 --enable-debug=*)
871 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
873 --disable-debug)
874 _debug=
876 --enable-translation) _translation=yes ;;
877 --disable-translation) _translation=no ;;
878 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
879 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
880 --enable-cross-compile) _cross_compile=yes ;;
881 --disable-cross-compile) _cross_compile=no ;;
882 --enable-mplayer) _mplayer=yes ;;
883 --disable-mplayer) _mplayer=no ;;
884 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
885 --disable-dynamic-plugins) _dynamic_plugins=no ;;
886 --enable-x11) _x11=yes ;;
887 --disable-x11) _x11=no ;;
888 --enable-xshape) _xshape=yes ;;
889 --disable-xshape) _xshape=no ;;
890 --enable-xss) _xss=yes ;;
891 --disable-xss) _xss=no ;;
892 --enable-xv) _xv=yes ;;
893 --disable-xv) _xv=no ;;
894 --enable-xvmc) _xvmc=yes ;;
895 --disable-xvmc) _xvmc=no ;;
896 --enable-vdpau) _vdpau=yes ;;
897 --disable-vdpau) _vdpau=no ;;
898 --enable-sdl) _sdl=yes ;;
899 --disable-sdl) _sdl=no ;;
900 --enable-kva) _kva=yes ;;
901 --disable-kva) _kva=no ;;
902 --enable-direct3d) _direct3d=yes ;;
903 --disable-direct3d) _direct3d=no ;;
904 --enable-directx) _directx=yes ;;
905 --disable-directx) _directx=no ;;
906 --enable-win32waveout) _win32waveout=yes ;;
907 --disable-win32waveout) _win32waveout=no ;;
908 --enable-nas) _nas=yes ;;
909 --disable-nas) _nas=no ;;
910 --enable-png) _png=yes ;;
911 --disable-png) _png=no ;;
912 --enable-mng) _mng=yes ;;
913 --disable-mng) _mng=no ;;
914 --enable-jpeg) _jpeg=yes ;;
915 --disable-jpeg) _jpeg=no ;;
916 --enable-pnm) _pnm=yes ;;
917 --disable-pnm) _pnm=no ;;
918 --enable-md5sum) _md5sum=yes ;;
919 --disable-md5sum) _md5sum=no ;;
920 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
921 --disable-yuv4mpeg) _yuv4mpeg=no ;;
922 --enable-gif) _gif=yes ;;
923 --disable-gif) _gif=no ;;
924 --enable-gl) _gl=yes ;;
925 --disable-gl) _gl=no ;;
926 --enable-matrixview) matrixview=yes ;;
927 --disable-matrixview) matrixview=no ;;
928 --enable-ggi) _ggi=yes ;;
929 --disable-ggi) _ggi=no ;;
930 --enable-ggiwmh) _ggiwmh=yes ;;
931 --disable-ggiwmh) _ggiwmh=no ;;
932 --enable-aa) _aa=yes ;;
933 --disable-aa) _aa=no ;;
934 --enable-caca) _caca=yes ;;
935 --disable-caca) _caca=no ;;
936 --enable-svga) _svga=yes ;;
937 --disable-svga) _svga=no ;;
938 --enable-vesa) _vesa=yes ;;
939 --disable-vesa) _vesa=no ;;
940 --enable-fbdev) _fbdev=yes ;;
941 --disable-fbdev) _fbdev=no ;;
942 --enable-dvb) _dvb=yes ;;
943 --disable-dvb) _dvb=no ;;
944 --enable-dxr2) _dxr2=yes ;;
945 --disable-dxr2) _dxr2=no ;;
946 --enable-dxr3) _dxr3=yes ;;
947 --disable-dxr3) _dxr3=no ;;
948 --enable-ivtv) _ivtv=yes ;;
949 --disable-ivtv) _ivtv=no ;;
950 --enable-v4l2) _v4l2=yes ;;
951 --disable-v4l2) _v4l2=no ;;
952 --enable-iconv) _iconv=yes ;;
953 --disable-iconv) _iconv=no ;;
954 --enable-langinfo) _langinfo=yes ;;
955 --disable-langinfo) _langinfo=no ;;
956 --enable-rtc) _rtc=yes ;;
957 --disable-rtc) _rtc=no ;;
958 --enable-libdv) _libdv=yes ;;
959 --disable-libdv) _libdv=no ;;
960 --enable-ossaudio) _ossaudio=yes ;;
961 --disable-ossaudio) _ossaudio=no ;;
962 --enable-arts) _arts=yes ;;
963 --disable-arts) _arts=no ;;
964 --enable-esd) _esd=yes ;;
965 --disable-esd) _esd=no ;;
966 --enable-pulse) _pulse=yes ;;
967 --disable-pulse) _pulse=no ;;
968 --enable-jack) _jack=yes ;;
969 --disable-jack) _jack=no ;;
970 --enable-openal) _openal=yes ;;
971 --disable-openal) _openal=no ;;
972 --enable-kai) _kai=yes ;;
973 --disable-kai) _kai=no ;;
974 --enable-dart) _dart=yes ;;
975 --disable-dart) _dart=no ;;
976 --enable-mad) _mad=yes ;;
977 --disable-mad) _mad=no ;;
978 --enable-mp3lame) _mp3lame=yes ;;
979 --disable-mp3lame) _mp3lame=no ;;
980 --enable-toolame) _toolame=yes ;;
981 --disable-toolame) _toolame=no ;;
982 --enable-twolame) _twolame=yes ;;
983 --disable-twolame) _twolame=no ;;
984 --enable-libcdio) _libcdio=yes ;;
985 --disable-libcdio) _libcdio=no ;;
986 --enable-liblzo) _liblzo=yes ;;
987 --disable-liblzo) _liblzo=no ;;
988 --enable-libvorbis) _libvorbis=yes ;;
989 --disable-libvorbis) _libvorbis=no ;;
990 --enable-speex) _speex=yes ;;
991 --disable-speex) _speex=no ;;
992 --enable-tremor) _tremor=yes ;;
993 --disable-tremor) _tremor=no ;;
994 --enable-tremor-internal) _tremor_internal=yes ;;
995 --disable-tremor-internal) _tremor_internal=no ;;
996 --enable-tremor-low) _tremor_low=yes ;;
997 --disable-tremor-low) _tremor_low=no ;;
998 --enable-theora) _theora=yes ;;
999 --disable-theora) _theora=no ;;
1000 --enable-mpg123) _mpg123=yes ;;
1001 --disable-mpg123) _mpg123=no ;;
1002 --enable-mp3lib) _mp3lib=yes ;;
1003 --disable-mp3lib) _mp3lib=no ;;
1004 --enable-liba52) _liba52=yes ;;
1005 --disable-liba52) _liba52=no ;;
1006 --enable-libdca) _libdca=yes ;;
1007 --disable-libdca) _libdca=no ;;
1008 --enable-libmpeg2) _libmpeg2=yes ;;
1009 --disable-libmpeg2) _libmpeg2=no ;;
1010 --enable-musepack) _musepack=yes ;;
1011 --disable-musepack) _musepack=no ;;
1012 --enable-faad) _faad=yes ;;
1013 --disable-faad) _faad=no ;;
1014 --enable-faad-internal) _faad_internal=yes ;;
1015 --disable-faad-internal) _faad_internal=no ;;
1016 --enable-faad-fixed) _faad_fixed=yes ;;
1017 --disable-faad-fixed) _faad_fixed=no ;;
1018 --enable-faac) _faac=yes ;;
1019 --disable-faac) _faac=no ;;
1020 --enable-ladspa) _ladspa=yes ;;
1021 --disable-ladspa) _ladspa=no ;;
1022 --enable-libbs2b) _libbs2b=yes ;;
1023 --disable-libbs2b) _libbs2b=no ;;
1024 --enable-xmms) _xmms=yes ;;
1025 --disable-xmms) _xmms=no ;;
1026 --enable-vcd) _vcd=yes ;;
1027 --disable-vcd) _vcd=no ;;
1028 --enable-bluray) _bluray=yes ;;
1029 --disable-bluray) _bluray=no ;;
1030 --enable-dvdread) _dvdread=yes ;;
1031 --disable-dvdread) _dvdread=no ;;
1032 --enable-dvdread-internal) _dvdread_internal=yes ;;
1033 --disable-dvdread-internal) _dvdread_internal=no ;;
1034 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1035 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1036 --enable-dvdnav) _dvdnav=yes ;;
1037 --disable-dvdnav) _dvdnav=no ;;
1038 --enable-xanim) _xanim=yes ;;
1039 --disable-xanim) _xanim=no ;;
1040 --enable-real) _real=yes ;;
1041 --disable-real) _real=no ;;
1042 --enable-live) _live=yes ;;
1043 --disable-live) _live=no ;;
1044 --enable-nemesi) _nemesi=yes ;;
1045 --disable-nemesi) _nemesi=no ;;
1046 --enable-xinerama) _xinerama=yes ;;
1047 --disable-xinerama) _xinerama=no ;;
1048 --enable-mga) _mga=yes ;;
1049 --disable-mga) _mga=no ;;
1050 --enable-xmga) _xmga=yes ;;
1051 --disable-xmga) _xmga=no ;;
1052 --enable-vm) _vm=yes ;;
1053 --disable-vm) _vm=no ;;
1054 --enable-xf86keysym) _xf86keysym=yes ;;
1055 --disable-xf86keysym) _xf86keysym=no ;;
1056 --enable-mlib) _mlib=yes ;;
1057 --disable-mlib) _mlib=no ;;
1058 --enable-sunaudio) _sunaudio=yes ;;
1059 --disable-sunaudio) _sunaudio=no ;;
1060 --enable-sgiaudio) _sgiaudio=yes ;;
1061 --disable-sgiaudio) _sgiaudio=no ;;
1062 --enable-alsa) _alsa=yes ;;
1063 --disable-alsa) _alsa=no ;;
1064 --enable-tv) _tv=yes ;;
1065 --disable-tv) _tv=no ;;
1066 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1067 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1068 --enable-tv-v4l1) _tv_v4l1=yes ;;
1069 --disable-tv-v4l1) _tv_v4l1=no ;;
1070 --enable-tv-v4l2) _tv_v4l2=yes ;;
1071 --disable-tv-v4l2) _tv_v4l2=no ;;
1072 --enable-tv-dshow) _tv_dshow=yes ;;
1073 --disable-tv-dshow) _tv_dshow=no ;;
1074 --enable-radio) _radio=yes ;;
1075 --enable-radio-capture) _radio_capture=yes ;;
1076 --disable-radio-capture) _radio_capture=no ;;
1077 --disable-radio) _radio=no ;;
1078 --enable-radio-v4l) _radio_v4l=yes ;;
1079 --disable-radio-v4l) _radio_v4l=no ;;
1080 --enable-radio-v4l2) _radio_v4l2=yes ;;
1081 --disable-radio-v4l2) _radio_v4l2=no ;;
1082 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1083 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1084 --enable-pvr) _pvr=yes ;;
1085 --disable-pvr) _pvr=no ;;
1086 --enable-fastmemcpy) _fastmemcpy=yes ;;
1087 --disable-fastmemcpy) _fastmemcpy=no ;;
1088 --enable-networking) networking=yes ;;
1089 --disable-networking) networking=no ;;
1090 --enable-winsock2_h) _winsock2_h=yes ;;
1091 --disable-winsock2_h) _winsock2_h=no ;;
1092 --enable-smb) _smb=yes ;;
1093 --disable-smb) _smb=no ;;
1094 --enable-vidix) _vidix=yes ;;
1095 --disable-vidix) _vidix=no ;;
1096 --with-vidix-drivers=*)
1097 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1099 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1100 --enable-dhahelper) _dhahelper=yes ;;
1101 --disable-dhahelper) _dhahelper=no ;;
1102 --enable-svgalib_helper) _svgalib_helper=yes ;;
1103 --disable-svgalib_helper) _svgalib_helper=no ;;
1104 --enable-joystick) _joystick=yes ;;
1105 --disable-joystick) _joystick=no ;;
1106 --enable-xvid) _xvid=yes ;;
1107 --disable-xvid) _xvid=no ;;
1108 --enable-x264) _x264=yes ;;
1109 --disable-x264) _x264=no ;;
1110 --enable-libnut) _libnut=yes ;;
1111 --disable-libnut) _libnut=no ;;
1112 --enable-ffmpeg) ffmpeg=yes ;;
1113 --disable-ffmpeg) ffmpeg=no ;;
1114 --ffmpeg-source-dir=*)
1115 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1117 --enable-lirc) _lirc=yes ;;
1118 --disable-lirc) _lirc=no ;;
1119 --enable-lircc) _lircc=yes ;;
1120 --disable-lircc) _lircc=no ;;
1121 --enable-apple-remote) _apple_remote=yes ;;
1122 --disable-apple-remote) _apple_remote=no ;;
1123 --enable-apple-ir) _apple_ir=yes ;;
1124 --disable-apple-ir) _apple_ir=no ;;
1125 --enable-gui) _gui=yes ;;
1126 --disable-gui) _gui=no ;;
1127 --enable-gtk1) _gtk1=yes ;;
1128 --disable-gtk1) _gtk1=no ;;
1129 --enable-termcap) _termcap=yes ;;
1130 --disable-termcap) _termcap=no ;;
1131 --enable-termios) _termios=yes ;;
1132 --disable-termios) _termios=no ;;
1133 --enable-3dfx) _3dfx=yes ;;
1134 --disable-3dfx) _3dfx=no ;;
1135 --enable-s3fb) _s3fb=yes ;;
1136 --disable-s3fb) _s3fb=no ;;
1137 --enable-wii) _wii=yes ;;
1138 --disable-wii) _wii=no ;;
1139 --enable-tdfxfb) _tdfxfb=yes ;;
1140 --disable-tdfxfb) _tdfxfb=no ;;
1141 --disable-tdfxvid) _tdfxvid=no ;;
1142 --enable-tdfxvid) _tdfxvid=yes ;;
1143 --disable-xvr100) _xvr100=no ;;
1144 --enable-xvr100) _xvr100=yes ;;
1145 --disable-tga) _tga=no ;;
1146 --enable-tga) _tga=yes ;;
1147 --enable-directfb) _directfb=yes ;;
1148 --disable-directfb) _directfb=no ;;
1149 --enable-zr) _zr=yes ;;
1150 --disable-zr) _zr=no ;;
1151 --enable-bl) _bl=yes ;;
1152 --disable-bl) _bl=no ;;
1153 --enable-mtrr) _mtrr=yes ;;
1154 --disable-mtrr) _mtrr=no ;;
1155 --enable-largefiles) _largefiles=yes ;;
1156 --disable-largefiles) _largefiles=no ;;
1157 --enable-shm) _shm=yes ;;
1158 --disable-shm) _shm=no ;;
1159 --enable-select) _select=yes ;;
1160 --disable-select) _select=no ;;
1161 --enable-cdparanoia) _cdparanoia=yes ;;
1162 --disable-cdparanoia) _cdparanoia=no ;;
1163 --enable-cddb) _cddb=yes ;;
1164 --disable-cddb) _cddb=no ;;
1165 --enable-big-endian) _big_endian=yes ;;
1166 --disable-big-endian) _big_endian=no ;;
1167 --enable-bitmap-font) _bitmap_font=yes ;;
1168 --disable-bitmap-font) _bitmap_font=no ;;
1169 --enable-freetype) _freetype=yes ;;
1170 --disable-freetype) _freetype=no ;;
1171 --enable-fontconfig) _fontconfig=yes ;;
1172 --disable-fontconfig) _fontconfig=no ;;
1173 --enable-unrarexec) _unrar_exec=yes ;;
1174 --disable-unrarexec) _unrar_exec=no ;;
1175 --enable-ftp) _ftp=yes ;;
1176 --disable-ftp) _ftp=no ;;
1177 --enable-vstream) _vstream=yes ;;
1178 --disable-vstream) _vstream=no ;;
1179 --enable-pthreads) _pthreads=yes ;;
1180 --disable-pthreads) _pthreads=no ;;
1181 --enable-w32threads) _w32threads=yes ;;
1182 --disable-w32threads) _w32threads=no ;;
1183 --enable-ass) _ass=yes ;;
1184 --disable-ass) _ass=no ;;
1185 --enable-rpath) _rpath=yes ;;
1186 --disable-rpath) _rpath=no ;;
1188 --enable-fribidi) _fribidi=yes ;;
1189 --disable-fribidi) _fribidi=no ;;
1191 --enable-enca) _enca=yes ;;
1192 --disable-enca) _enca=no ;;
1194 --enable-inet6) _inet6=yes ;;
1195 --disable-inet6) _inet6=no ;;
1197 --enable-gethostbyname2) _gethostbyname2=yes ;;
1198 --disable-gethostbyname2) _gethostbyname2=no ;;
1200 --enable-dga1) _dga1=yes ;;
1201 --disable-dga1) _dga1=no ;;
1202 --enable-dga2) _dga2=yes ;;
1203 --disable-dga2) _dga2=no ;;
1205 --enable-menu) _menu=yes ;;
1206 --disable-menu) _menu=no ;;
1208 --enable-qtx) _qtx=yes ;;
1209 --disable-qtx) _qtx=no ;;
1211 --enable-coreaudio) _coreaudio=yes ;;
1212 --disable-coreaudio) _coreaudio=no ;;
1213 --enable-corevideo) _corevideo=yes ;;
1214 --disable-corevideo) _corevideo=no ;;
1215 --enable-quartz) _quartz=yes ;;
1216 --disable-quartz) _quartz=no ;;
1217 --enable-macosx-finder) _macosx_finder=yes ;;
1218 --disable-macosx-finder) _macosx_finder=no ;;
1219 --enable-macosx-bundle) _macosx_bundle=yes ;;
1220 --disable-macosx-bundle) _macosx_bundle=no ;;
1222 --enable-maemo) _maemo=yes ;;
1223 --disable-maemo) _maemo=no ;;
1225 --enable-sortsub) _sortsub=yes ;;
1226 --disable-sortsub) _sortsub=no ;;
1228 --enable-crash-debug) _crash_debug=yes ;;
1229 --disable-crash-debug) _crash_debug=no ;;
1230 --enable-sighandler) _sighandler=yes ;;
1231 --disable-sighandler) _sighandler=no ;;
1232 --enable-win32dll) _win32dll=yes ;;
1233 --disable-win32dll) _win32dll=no ;;
1235 --enable-sse) _sse=yes ;;
1236 --disable-sse) _sse=no ;;
1237 --enable-sse2) _sse2=yes ;;
1238 --disable-sse2) _sse2=no ;;
1239 --enable-ssse3) _ssse3=yes ;;
1240 --disable-ssse3) _ssse3=no ;;
1241 --enable-mmxext) _mmxext=yes ;;
1242 --disable-mmxext) _mmxext=no ;;
1243 --enable-3dnow) _3dnow=yes ;;
1244 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1245 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1246 --disable-3dnowext) _3dnowext=no ;;
1247 --enable-cmov) _cmov=yes ;;
1248 --disable-cmov) _cmov=no ;;
1249 --enable-fast-cmov) _fast_cmov=yes ;;
1250 --disable-fast-cmov) _fast_cmov=no ;;
1251 --enable-fast-clz) _fast_clz=yes ;;
1252 --disable-fast-clz) _fast_clz=no ;;
1253 --enable-altivec) _altivec=yes ;;
1254 --disable-altivec) _altivec=no ;;
1255 --enable-armv5te) _armv5te=yes ;;
1256 --disable-armv5te) _armv5te=no ;;
1257 --enable-armv6) _armv6=yes ;;
1258 --disable-armv6) _armv6=no ;;
1259 --enable-armv6t2) _armv6t2=yes ;;
1260 --disable-armv6t2) _armv6t2=no ;;
1261 --enable-armvfp) _armvfp=yes ;;
1262 --disable-armvfp) _armvfp=no ;;
1263 --enable-neon) neon=yes ;;
1264 --disable-neon) neon=no ;;
1265 --enable-iwmmxt) _iwmmxt=yes ;;
1266 --disable-iwmmxt) _iwmmxt=no ;;
1267 --enable-mmx) _mmx=yes ;;
1268 --disable-mmx) # 3Dnow! and MMX2 require MMX
1269 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1272 echo "Unknown parameter: $ac_option"
1273 exit 1
1276 esac
1277 done
1279 if test "$_gui" = yes ; then
1280 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1281 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1284 # Atmos: moved this here, to be correct, if --prefix is specified
1285 test -z "$_bindir" && _bindir="$_prefix/bin"
1286 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1287 test -z "$_mandir" && _mandir="$_prefix/share/man"
1288 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1289 test -z "$_libdir" && _libdir="$_prefix/lib"
1290 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1292 # Determine our OS name and CPU architecture
1293 if test -z "$_target" ; then
1294 # OS name
1295 system_name=$(uname -s 2>&1)
1296 case "$system_name" in
1297 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1299 Haiku)
1300 system_name=BeOS
1302 IRIX*)
1303 system_name=IRIX
1305 GNU/kFreeBSD)
1306 system_name=FreeBSD
1308 HP-UX*)
1309 system_name=HP-UX
1311 [cC][yY][gG][wW][iI][nN]*)
1312 system_name=CYGWIN
1314 MINGW32*)
1315 system_name=MINGW32
1317 OS/2*)
1318 system_name=OS/2
1321 system_name="$system_name-UNKNOWN"
1323 esac
1326 # host's CPU/instruction set
1327 host_arch=$(uname -p 2>&1)
1328 case "$host_arch" in
1329 i386|sparc|ppc|alpha|arm|mips|vax)
1331 powerpc) # Darwin returns 'powerpc'
1332 host_arch=ppc
1334 *) # uname -p on Linux returns 'unknown' for the processor type,
1335 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1337 # Maybe uname -m (machine hardware name) returns something we
1338 # recognize.
1340 # x86/x86pc is used by QNX
1341 case "$(uname -m 2>&1)" in
1342 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 ;;
1343 ia64) host_arch=ia64 ;;
1344 macppc|ppc) host_arch=ppc ;;
1345 ppc64) host_arch=ppc64 ;;
1346 alpha) host_arch=alpha ;;
1347 sparc) host_arch=sparc ;;
1348 sparc64) host_arch=sparc64 ;;
1349 parisc*|hppa*|9000*) host_arch=hppa ;;
1350 arm*|zaurus|cats) host_arch=arm ;;
1351 sh3|sh4|sh4a) host_arch=sh ;;
1352 s390) host_arch=s390 ;;
1353 s390x) host_arch=s390x ;;
1354 *mips*) host_arch=mips ;;
1355 vax) host_arch=vax ;;
1356 xtensa*) host_arch=xtensa ;;
1357 *) host_arch=UNKNOWN ;;
1358 esac
1360 esac
1361 else # if test -z "$_target"
1362 system_name=$(echo $_target | cut -d '-' -f 2)
1363 case "$(echo $system_name | tr A-Z a-z)" in
1364 linux) system_name=Linux ;;
1365 freebsd) system_name=FreeBSD ;;
1366 gnu/kfreebsd) system_name=FreeBSD ;;
1367 netbsd) system_name=NetBSD ;;
1368 bsd/os) system_name=BSD/OS ;;
1369 openbsd) system_name=OpenBSD ;;
1370 dragonfly) system_name=DragonFly ;;
1371 sunos) system_name=SunOS ;;
1372 qnx) system_name=QNX ;;
1373 morphos) system_name=MorphOS ;;
1374 amigaos) system_name=AmigaOS ;;
1375 mingw32*) system_name=MINGW32 ;;
1376 esac
1377 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1378 host_arch=$(echo $_target | cut -d '-' -f 1)
1379 if test $(echo $host_arch) != "x86_64" ; then
1380 host_arch=$(echo $host_arch | tr '_' '-')
1384 extra_cflags="-I. $extra_cflags"
1385 _timer=timer-linux.c
1386 _getch=getch2.c
1387 if freebsd ; then
1388 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1389 extra_cflags="$extra_cflags -I/usr/local/include"
1392 if netbsd || dragonfly ; then
1393 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1394 extra_cflags="$extra_cflags -I/usr/pkg/include"
1397 if darwin; then
1398 extra_cflags="-mdynamic-no-pic $extra_cflags"
1399 if test "$(basename $_cc)" != "clang" ; then
1400 extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
1402 _timer=timer-darwin.c
1405 if aix ; then
1406 extra_ldflags="$extra_ldflags -lC"
1409 if irix ; then
1410 _ranlib='ar -r'
1411 elif linux ; then
1412 _ranlib='true'
1415 if win32 ; then
1416 _exesuf=".exe"
1417 extra_cflags="$extra_cflags -fno-common"
1418 # -lwinmm is always needed for osdep/timer-win2.c
1419 extra_ldflags="$extra_ldflags -lwinmm"
1420 _pe_executable=yes
1421 _timer=timer-win2.c
1422 _priority=yes
1423 def_dos_paths="#define HAVE_DOS_PATHS 1"
1424 def_priority="#define CONFIG_PRIORITY 1"
1427 if mingw32 ; then
1428 _getch=getch2-win.c
1429 _need_shmem=no
1432 if amigaos ; then
1433 _select=no
1434 _sighandler=no
1435 _stream_cache=no
1436 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1437 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1440 if qnx ; then
1441 extra_ldflags="$extra_ldflags -lph"
1444 if os2 ; then
1445 _exesuf=".exe"
1446 _getch=getch2-os2.c
1447 _need_shmem=no
1448 _priority=yes
1449 def_dos_paths="#define HAVE_DOS_PATHS 1"
1450 def_priority="#define CONFIG_PRIORITY 1"
1453 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1454 test "$tmpdir" && break
1455 done
1457 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1458 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1460 TMPLOG="config.log"
1461 TMPC="$mplayer_tmpdir/tmp.c"
1462 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1463 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1464 TMPH="$mplayer_tmpdir/tmp.h"
1465 TMPS="$mplayer_tmpdir/tmp.S"
1467 rm -f "$TMPLOG"
1468 echo configuration: $configuration > "$TMPLOG"
1469 echo >> "$TMPLOG"
1472 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1473 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1477 # Checking CC version...
1478 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1479 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1480 echocheck "$_cc version"
1481 cc_vendor=intel
1482 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1483 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1484 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1485 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1486 # TODO verify older icc/ecc compatibility
1487 case $cc_version in
1489 cc_version="v. ?.??, bad"
1490 cc_fail=yes
1492 10.1|11.0|11.1)
1493 cc_version="$cc_version, ok"
1496 cc_version="$cc_version, bad"
1497 cc_fail=yes
1499 esac
1500 echores "$cc_version"
1501 else
1502 for _cc in "$_cc" gcc cc ; do
1503 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1504 if test "$cc_name_tmp" = "gcc"; then
1505 cc_name=$cc_name_tmp
1506 echocheck "$_cc version"
1507 cc_vendor=gnu
1508 cc_version=$($_cc -dumpversion 2>&1)
1509 case $cc_version in
1510 2.96*)
1511 cc_fail=yes
1514 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1515 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1516 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1518 esac
1519 echores "$cc_version"
1520 break
1522 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1523 if test "$cc_name_tmp" = "clang"; then
1524 echocheck "$_cc version"
1525 cc_vendor=clang
1526 cc_version=$($_cc -dumpversion 2>&1)
1527 res_comment="experimental support only"
1528 echores "clang $cc_version"
1529 break
1531 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1532 if test "$cc_name_tmp" = "Sun C"; then
1533 echocheck "$_cc version"
1534 cc_vendor=sun
1535 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1536 res_comment="experimental support only"
1537 echores "Sun C $cc_version"
1538 break
1540 done
1541 fi # icc
1542 test "$cc_fail" = yes && die "unsupported compiler version"
1544 if test -z "$_target" && x86 ; then
1545 cat > $TMPC << EOF
1546 int main(void) {
1547 int test[(int)sizeof(char *)-7];
1548 return 0;
1551 cc_check && host_arch=x86_64 || host_arch=i386
1554 echo "Detected operating system: $system_name"
1555 echo "Detected host architecture: $host_arch"
1557 echocheck "host cc"
1558 test "$_host_cc" || _host_cc=$_cc
1559 echores $_host_cc
1561 echocheck "cross compilation"
1562 if test $_cross_compile = auto ; then
1563 _cross_compile=yes
1564 cflag_check "" && "$TMPEXE" && _cross_compile=no
1566 echores $_cross_compile
1568 if test $_cross_compile = yes; then
1569 tmp_run() {
1570 return 0
1574 # ---
1576 # now that we know what compiler should be used for compilation, try to find
1577 # out which assembler is used by the $_cc compiler
1578 if test "$_as" = auto ; then
1579 _as=$($_cc -print-prog-name=as)
1580 test -z "$_as" && _as=as
1583 if test "$_nm" = auto ; then
1584 _nm=$($_cc -print-prog-name=nm)
1585 test -z "$_nm" && _nm=nm
1588 # XXX: this should be ok..
1589 _cpuinfo="echo"
1591 if test "$_runtime_cpudetection" = no ; then
1593 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1594 # FIXME: Remove the cygwin check once AMD CPUs are supported
1595 if test -r /proc/cpuinfo && ! cygwin; then
1596 # Linux with /proc mounted, extract CPU information from it
1597 _cpuinfo="cat /proc/cpuinfo"
1598 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1599 # FreeBSD with Linux emulation /proc mounted,
1600 # extract CPU information from it
1601 # Don't use it on x86 though, it never reports 3Dnow
1602 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1603 elif darwin && ! x86 ; then
1604 # use hostinfo on Darwin
1605 _cpuinfo="hostinfo"
1606 elif aix; then
1607 # use 'lsattr' on AIX
1608 _cpuinfo="lsattr -E -l proc0 -a type"
1609 elif x86; then
1610 # all other OSes try to extract CPU information from a small helper
1611 # program cpuinfo instead
1612 $_cc -o cpuinfo$_exesuf cpuinfo.c
1613 _cpuinfo="./cpuinfo$_exesuf"
1616 if x86 ; then
1617 # gather more CPU information
1618 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1619 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1620 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1621 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1622 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1624 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1626 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1627 -e s/xmm/sse/ -e s/kni/sse/)
1629 for ext in $pparam ; do
1630 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1631 done
1633 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1634 test $_sse = kernel_check && _mmxext=kernel_check
1636 echocheck "CPU vendor"
1637 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1639 echocheck "CPU type"
1640 echores "$pname"
1643 fi # test "$_runtime_cpudetection" = no
1645 if x86 && test "$_runtime_cpudetection" = no ; then
1646 extcheck() {
1647 if test "$1" = kernel_check ; then
1648 echocheck "kernel support of $2"
1649 cat > $TMPC <<EOF
1650 #include <stdlib.h>
1651 #include <signal.h>
1652 static void catch(int sig) { exit(1); }
1653 int main(void) {
1654 signal(SIGILL, catch);
1655 __asm__ volatile ("$3":::"memory"); return 0;
1659 if cc_check && tmp_run ; then
1660 eval _$2=yes
1661 echores "yes"
1662 _optimizing="$_optimizing $2"
1663 return 0
1664 else
1665 eval _$2=no
1666 echores "failed"
1667 echo "It seems that your kernel does not correctly support $2."
1668 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1669 return 1
1672 return 0
1675 extcheck $_mmx "mmx" "emms"
1676 extcheck $_mmxext "mmxext" "sfence"
1677 extcheck $_3dnow "3dnow" "femms"
1678 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1679 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1680 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1681 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1682 extcheck $_cmov "cmov" "cmovb %%eax, %%ebx"
1684 echocheck "mtrr support"
1685 if test "$_mtrr" = kernel_check ; then
1686 _mtrr="yes"
1687 _optimizing="$_optimizing mtrr"
1689 echores "$_mtrr"
1691 if test "$_gcc3_ext" != ""; then
1692 # if we had to disable sse/sse2 because the active kernel does not
1693 # support this instruction set extension, we also have to tell
1694 # gcc3 to not generate sse/sse2 instructions for normal C code
1695 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1701 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1702 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1703 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1704 subarch_all='X86_32 X86_64 PPC64'
1705 case "$host_arch" in
1706 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1707 arch='x86'
1708 subarch='x86_32'
1709 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1710 iproc=486
1711 proc=i486
1714 if test "$_runtime_cpudetection" = no ; then
1715 case "$pvendor" in
1716 AuthenticAMD)
1717 case "$pfamily" in
1718 3) proc=i386 iproc=386 ;;
1719 4) proc=i486 iproc=486 ;;
1720 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1721 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1722 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1723 proc=k6-3
1724 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1725 proc=geode
1726 elif test "$pmodel" -ge 8; then
1727 proc=k6-2
1728 elif test "$pmodel" -ge 6; then
1729 proc=k6
1730 else
1731 proc=i586
1734 6) iproc=686
1735 # It's a bit difficult to determine the correct type of Family 6
1736 # AMD CPUs just from their signature. Instead, we check directly
1737 # whether it supports SSE.
1738 if test "$_sse" = yes; then
1739 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1740 proc=athlon-xp
1741 else
1742 # Again, gcc treats athlon and athlon-tbird similarly.
1743 proc=athlon
1746 15) iproc=686
1747 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1748 # caught and remedied in the optimization tests below.
1749 proc=k8
1752 *) proc=amdfam10 iproc=686
1753 test $_fast_clz = "auto" && _fast_clz=yes
1755 esac
1757 GenuineIntel)
1758 case "$pfamily" in
1759 3) proc=i386 iproc=386 ;;
1760 4) proc=i486 iproc=486 ;;
1761 5) iproc=586
1762 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1763 proc=pentium-mmx # 4 is desktop, 8 is mobile
1764 else
1765 proc=i586
1768 6) iproc=686
1769 if test "$pmodel" -ge 15; then
1770 proc=core2
1771 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1772 proc=pentium-m
1773 elif test "$pmodel" -ge 7; then
1774 proc=pentium3
1775 elif test "$pmodel" -ge 3; then
1776 proc=pentium2
1777 else
1778 proc=i686
1780 test $_fast_clz = "auto" && _fast_clz=yes
1782 15) iproc=686
1783 # A nocona in 32-bit mode has no more capabilities than a prescott.
1784 if test "$pmodel" -ge 3; then
1785 proc=prescott
1786 else
1787 proc=pentium4
1788 test $_fast_clz = "auto" && _fast_clz=yes
1790 test $_fast_cmov = "auto" && _fast_cmov=no
1792 *) proc=prescott iproc=686 ;;
1793 esac
1795 CentaurHauls)
1796 case "$pfamily" in
1797 5) iproc=586
1798 if test "$pmodel" -ge 8; then
1799 proc=winchip2
1800 elif test "$pmodel" -ge 4; then
1801 proc=winchip-c6
1802 else
1803 proc=i586
1806 6) iproc=686
1807 if test "$pmodel" -ge 9; then
1808 proc=c3-2
1809 else
1810 proc=c3
1811 iproc=586
1814 *) proc=i686 iproc=i686 ;;
1815 esac
1817 unknown)
1818 case "$pfamily" in
1819 3) proc=i386 iproc=386 ;;
1820 4) proc=i486 iproc=486 ;;
1821 *) proc=i586 iproc=586 ;;
1822 esac
1825 proc=i586 iproc=586 ;;
1826 esac
1827 test $_fast_clz = "auto" && _fast_clz=no
1828 fi # test "$_runtime_cpudetection" = no
1831 # check that gcc supports our CPU, if not, fall back to earlier ones
1832 # LGB: check -mcpu and -march swithing step by step with enabling
1833 # to fall back till 386.
1835 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1837 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1838 cpuopt=-mtune
1839 else
1840 cpuopt=-mcpu
1843 echocheck "GCC & CPU optimization abilities"
1844 if test "$_runtime_cpudetection" = no ; then
1845 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1846 cflag_check -march=native && proc=native
1848 if test "$proc" = "amdfam10"; then
1849 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1851 if test "$proc" = "k8"; then
1852 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1854 if test "$proc" = "athlon-xp"; then
1855 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1857 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1858 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1860 if test "$proc" = "k6" || test "$proc" = "c3"; then
1861 if ! cflag_check -march=$proc $cpuopt=$proc; then
1862 if cflag_check -march=i586 $cpuopt=i686; then
1863 proc=i586-i686
1864 else
1865 proc=i586
1869 if test "$proc" = "prescott" ; then
1870 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1872 if test "$proc" = "core2" ; then
1873 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1875 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
1876 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1878 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1879 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1881 if test "$proc" = "i586"; then
1882 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1884 if test "$proc" = "i486" ; then
1885 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1887 if test "$proc" = "i386" ; then
1888 cflag_check -march=$proc $cpuopt=$proc || proc=error
1890 if test "$proc" = "error" ; then
1891 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1892 _mcpu=""
1893 _march=""
1894 _optimizing=""
1895 elif test "$proc" = "i586-i686"; then
1896 _march="-march=i586"
1897 _mcpu="$cpuopt=i686"
1898 _optimizing="$proc"
1899 else
1900 _march="-march=$proc"
1901 _mcpu="$cpuopt=$proc"
1902 _optimizing="$proc"
1904 else # if test "$_runtime_cpudetection" = no
1905 _mcpu="$cpuopt=generic"
1906 # at least i486 required, for bswap instruction
1907 _march="-march=i486"
1908 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1909 cflag_check $_mcpu || _mcpu=""
1910 cflag_check $_march $_mcpu || _march=""
1913 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1914 ## autodetected mcpu/march parameters
1915 if test "$_target" ; then
1916 # TODO: it may be a good idea to check GCC and fall back in all cases
1917 if test "$host_arch" = "i586-i686"; then
1918 _march="-march=i586"
1919 _mcpu="$cpuopt=i686"
1920 else
1921 _march="-march=$host_arch"
1922 _mcpu="$cpuopt=$host_arch"
1925 proc="$host_arch"
1927 case "$proc" in
1928 i386) iproc=386 ;;
1929 i486) iproc=486 ;;
1930 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1931 i686|athlon*|pentium*) iproc=686 ;;
1932 *) iproc=586 ;;
1933 esac
1936 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1937 _fast_cmov="yes"
1938 else
1939 _fast_cmov="no"
1941 test $_fast_clz = "auto" && _fast_clz=yes
1943 echores "$proc"
1946 ia64)
1947 arch='ia64'
1948 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1949 iproc='ia64'
1952 x86_64|amd64)
1953 arch='x86'
1954 subarch='x86_64'
1955 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1956 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1957 iproc='x86_64'
1959 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1960 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1961 cpuopt=-mtune
1962 else
1963 cpuopt=-mcpu
1965 if test "$_runtime_cpudetection" = no ; then
1966 case "$pvendor" in
1967 AuthenticAMD)
1968 case "$pfamily" in
1969 15) proc=k8
1970 test $_fast_clz = "auto" && _fast_clz=no
1972 *) proc=amdfam10;;
1973 esac
1975 GenuineIntel)
1976 case "$pfamily" in
1977 6) proc=core2;;
1979 # 64-bit prescotts exist, but as far as GCC is concerned they
1980 # have the same capabilities as a nocona.
1981 proc=nocona
1982 test $_fast_cmov = "auto" && _fast_cmov=no
1983 test $_fast_clz = "auto" && _fast_clz=no
1985 esac
1988 proc=error;;
1989 esac
1990 fi # test "$_runtime_cpudetection" = no
1992 echocheck "GCC & CPU optimization abilities"
1993 # This is a stripped-down version of the i386 fallback.
1994 if test "$_runtime_cpudetection" = no ; then
1995 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1996 cflag_check -march=native && proc=native
1998 # --- AMD processors ---
1999 if test "$proc" = "amdfam10"; then
2000 cflag_check -march=$proc $cpuopt=$proc || proc=k8
2002 if test "$proc" = "k8"; then
2003 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2005 # This will fail if gcc version < 3.3, which is ok because earlier
2006 # versions don't really support 64-bit on amd64.
2007 # Is this a valid assumption? -Corey
2008 if test "$proc" = "athlon-xp"; then
2009 cflag_check -march=$proc $cpuopt=$proc || proc=error
2011 # --- Intel processors ---
2012 if test "$proc" = "core2"; then
2013 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2015 if test "$proc" = "x86-64"; then
2016 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2018 if test "$proc" = "nocona"; then
2019 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2021 if test "$proc" = "pentium4"; then
2022 cflag_check -march=$proc $cpuopt=$proc || proc=error
2025 _march="-march=$proc"
2026 _mcpu="$cpuopt=$proc"
2027 if test "$proc" = "error" ; then
2028 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2029 _mcpu=""
2030 _march=""
2032 else # if test "$_runtime_cpudetection" = no
2033 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2034 _march="-march=x86-64"
2035 _mcpu="$cpuopt=generic"
2036 cflag_check $_mcpu || _mcpu="x86-64"
2037 cflag_check $_mcpu || _mcpu=""
2038 cflag_check $_march $_mcpu || _march=""
2041 _optimizing="$proc"
2042 test $_fast_cmov = "auto" && _fast_cmov=yes
2043 test $_fast_clz = "auto" && _fast_clz=yes
2045 echores "$proc"
2048 sparc|sparc64)
2049 arch='sparc'
2050 iproc='sparc'
2051 if test "$host_arch" = "sparc64" ; then
2052 _vis='yes'
2053 proc='ultrasparc'
2054 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2055 elif sunos ; then
2056 echocheck "CPU type"
2057 karch=$(uname -m)
2058 case "$(echo $karch)" in
2059 sun4) proc=v7 ;;
2060 sun4c) proc=v7 ;;
2061 sun4d) proc=v8 ;;
2062 sun4m) proc=v8 ;;
2063 sun4u) proc=ultrasparc _vis='yes' ;;
2064 sun4v) proc=v9 ;;
2065 *) proc=v8 ;;
2066 esac
2067 echores "$proc"
2068 else
2069 proc=v8
2071 _mcpu="-mcpu=$proc"
2072 _optimizing="$proc"
2075 arm*)
2076 arch='arm'
2077 iproc='arm'
2080 avr32)
2081 arch='avr32'
2082 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2083 iproc='avr32'
2084 test $_fast_clz = "auto" && _fast_clz=yes
2087 sh|sh4)
2088 arch='sh4'
2089 iproc='sh4'
2092 ppc|ppc64|powerpc|powerpc64)
2093 arch='ppc'
2094 def_dcbzl='#define HAVE_DCBZL 0'
2095 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2096 iproc='ppc'
2098 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2099 subarch='ppc64'
2100 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2102 echocheck "CPU type"
2103 case $system_name in
2104 Linux)
2105 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2106 if test -n "$($_cpuinfo | grep altivec)"; then
2107 test $_altivec = auto && _altivec=yes
2110 Darwin)
2111 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2112 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2113 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2114 test $_altivec = auto && _altivec=yes
2117 NetBSD)
2118 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2119 case $cc_version in
2120 2*|3.0*|3.1*|3.2*|3.3*)
2123 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2124 test $_altivec = auto && _altivec=yes
2127 esac
2129 AIX)
2130 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2132 esac
2133 if test "$_altivec" = yes; then
2134 echores "$proc altivec"
2135 else
2136 _altivec=no
2137 echores "$proc"
2140 echocheck "GCC & CPU optimization abilities"
2142 if test -n "$proc"; then
2143 case "$proc" in
2144 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2145 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2146 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2147 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2148 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2149 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2150 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2151 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2152 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2153 *) ;;
2154 esac
2155 # gcc 3.1(.1) and up supports 7400 and 7450
2156 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2157 case "$proc" in
2158 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2159 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2160 *) ;;
2161 esac
2163 # gcc 3.2 and up supports 970
2164 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2165 case "$proc" in
2166 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2167 def_dcbzl='#define HAVE_DCBZL 1' ;;
2168 *) ;;
2169 esac
2171 # gcc 3.3 and up supports POWER4
2172 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2173 case "$proc" in
2174 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2175 *) ;;
2176 esac
2178 # gcc 3.4 and up supports 440*
2179 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2180 case "$proc" in
2181 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2182 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2183 *) ;;
2184 esac
2186 # gcc 4.0 and up supports POWER5
2187 if test "$_cc_major" -ge "4"; then
2188 case "$proc" in
2189 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2190 *) ;;
2191 esac
2195 if test -n "$_mcpu"; then
2196 _optimizing=$(echo $_mcpu | cut -c 8-)
2197 echores "$_optimizing"
2198 else
2199 echores "none"
2202 test $_fast_clz = "auto" && _fast_clz=yes
2206 alpha*)
2207 arch='alpha'
2208 iproc='alpha'
2209 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2211 echocheck "CPU type"
2212 cat > $TMPC << EOF
2213 int main(void) {
2214 unsigned long ver, mask;
2215 __asm__ ("implver %0" : "=r" (ver));
2216 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2217 printf("%ld-%x\n", ver, ~mask);
2218 return 0;
2221 $_cc -o "$TMPEXE" "$TMPC"
2222 case $("$TMPEXE") in
2224 0-0) proc="ev4"; _mvi="0";;
2225 1-0) proc="ev5"; _mvi="0";;
2226 1-1) proc="ev56"; _mvi="0";;
2227 1-101) proc="pca56"; _mvi="1";;
2228 2-303) proc="ev6"; _mvi="1";;
2229 2-307) proc="ev67"; _mvi="1";;
2230 2-1307) proc="ev68"; _mvi="1";;
2231 esac
2232 echores "$proc"
2234 echocheck "GCC & CPU optimization abilities"
2235 if test "$proc" = "ev68" ; then
2236 cc_check -mcpu=$proc || proc=ev67
2238 if test "$proc" = "ev67" ; then
2239 cc_check -mcpu=$proc || proc=ev6
2241 _mcpu="-mcpu=$proc"
2242 echores "$proc"
2244 test $_fast_clz = "auto" && _fast_clz=yes
2246 _optimizing="$proc"
2249 mips)
2250 arch='mips'
2251 iproc='mips'
2253 if irix ; then
2254 echocheck "CPU type"
2255 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2256 case "$(echo $proc)" in
2257 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2258 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2259 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2260 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2261 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2262 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2263 esac
2264 # gcc < 3.x does not support -mtune.
2265 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2266 _mcpu=''
2268 echores "$proc"
2271 test $_fast_clz = "auto" && _fast_clz=yes
2275 hppa)
2276 arch='pa_risc'
2277 iproc='PA-RISC'
2280 s390)
2281 arch='s390'
2282 iproc='390'
2285 s390x)
2286 arch='s390x'
2287 iproc='390x'
2290 vax)
2291 arch='vax'
2292 iproc='vax'
2295 xtensa)
2296 arch='xtensa'
2297 iproc='xtensa'
2300 generic)
2301 arch='generic'
2305 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2306 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2307 die "unsupported architecture $host_arch"
2309 esac # case "$host_arch" in
2311 if test "$_runtime_cpudetection" = yes ; then
2312 if x86 ; then
2313 test "$_cmov" != no && _cmov=yes
2314 x86_32 && _cmov=no
2315 test "$_mmx" != no && _mmx=yes
2316 test "$_3dnow" != no && _3dnow=yes
2317 test "$_3dnowext" != no && _3dnowext=yes
2318 test "$_mmxext" != no && _mmxext=yes
2319 test "$_sse" != no && _sse=yes
2320 test "$_sse2" != no && _sse2=yes
2321 test "$_ssse3" != no && _ssse3=yes
2322 test "$_mtrr" != no && _mtrr=yes
2324 if ppc; then
2325 _altivec=yes
2330 # endian testing
2331 echocheck "byte order"
2332 if test "$_big_endian" = auto ; then
2333 cat > $TMPC <<EOF
2334 short ascii_name[] = {
2335 (('M' << 8) | 'P'), (('l' << 8) | 'a'), (('y' << 8) | 'e'),
2336 (('r' << 8) | 'B'), (('i' << 8) | 'g'), (('E' << 8) | 'n'),
2337 (('d' << 8) | 'i'), (('a' << 8) | 'n'), 0 };
2338 int main(void) { return (long)ascii_name; }
2340 if cc_check ; then
2341 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2342 _big_endian=yes
2343 else
2344 _big_endian=no
2346 else
2347 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2350 if test "$_big_endian" = yes ; then
2351 _byte_order='big-endian'
2352 def_words_endian='#define WORDS_BIGENDIAN 1'
2353 def_bigendian='#define HAVE_BIGENDIAN 1'
2354 else
2355 _byte_order='little-endian'
2356 def_words_endian='#undef WORDS_BIGENDIAN'
2357 def_bigendian='#define HAVE_BIGENDIAN 0'
2359 echores "$_byte_order"
2362 echocheck "extern symbol prefix"
2363 cat > $TMPC << EOF
2364 int ff_extern;
2366 cc_check -c || die "Symbol mangling check failed."
2367 sym=$($_nm -P -g $TMPEXE)
2368 extern_prefix=${sym%%ff_extern*}
2369 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2370 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2371 echores $extern_prefix
2374 echocheck "assembler support of -pipe option"
2375 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2376 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2379 echocheck "compiler support of named assembler arguments"
2380 _named_asm_args=yes
2381 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2382 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2383 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2384 _named_asm_args=no
2385 def_named_asm_args="#undef NAMED_ASM_ARGS"
2387 echores $_named_asm_args
2390 if darwin && test "$cc_vendor" = "gnu" ; then
2391 echocheck "GCC support of -mstackrealign"
2392 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2393 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2394 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2395 # wrong code with this flag, but this can be worked around by adding
2396 # -fno-unit-at-a-time as described in the blog post at
2397 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2398 cat > $TMPC << EOF
2399 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2400 int main(void) { return foo3(1, 2, 3) == 3 ? 0 : 1; }
2402 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2403 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2404 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2405 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2406 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2409 # Checking for CFLAGS
2410 _install_strip="-s"
2411 if test "$_profile" != "" || test "$_debug" != "" ; then
2412 CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
2413 WARNFLAGS="-W -Wall"
2414 _install_strip=
2415 elif test -z "$CFLAGS" ; then
2416 if test "$cc_vendor" = "intel" ; then
2417 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer"
2418 WARNFLAGS="-wd167 -wd556 -wd144"
2419 elif test "$cc_vendor" = "sun" ; then
2420 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2421 elif test "$cc_vendor" = "clang"; then
2422 CFLAGS="-O2 $_march $_pipe"
2423 elif test "$cc_vendor" != "gnu" ; then
2424 CFLAGS="-O2 $_march $_mcpu $_pipe"
2425 else
2426 CFLAGS="-O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2427 WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
2428 extra_ldflags="$extra_ldflags -ffast-math"
2430 else
2431 warn_cflags=yes
2434 if test "$cc_vendor" = "gnu" ; then
2435 cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
2436 # -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
2437 # that's the only variable specific to C now, and this option is not valid
2438 # for C++.
2439 cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
2440 cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
2441 cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
2442 cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
2443 cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
2444 else
2445 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2448 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2449 cflag_check -MD -MP && DEPFLAGS="-MD -MP"
2452 if test -n "$LDFLAGS" ; then
2453 extra_ldflags="$extra_ldflags $LDFLAGS"
2454 warn_cflags=yes
2455 elif test "$cc_vendor" = "intel" ; then
2456 extra_ldflags="$extra_ldflags -i-static"
2458 if test -n "$CPPFLAGS" ; then
2459 extra_cflags="$extra_cflags $CPPFLAGS"
2460 warn_cflags=yes
2465 if x86_32 ; then
2466 # Checking assembler (_as) compatibility...
2467 # Added workaround for older as that reads from stdin by default - atmos
2468 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2469 echocheck "assembler ($_as $as_version)"
2471 _pref_as_version='2.9.1'
2472 echo 'nop' > $TMPS
2473 if test "$_mmx" = yes ; then
2474 echo 'emms' >> $TMPS
2476 if test "$_3dnow" = yes ; then
2477 _pref_as_version='2.10.1'
2478 echo 'femms' >> $TMPS
2480 if test "$_3dnowext" = yes ; then
2481 _pref_as_version='2.10.1'
2482 echo 'pswapd %mm0, %mm0' >> $TMPS
2484 if test "$_mmxext" = yes ; then
2485 _pref_as_version='2.10.1'
2486 echo 'movntq %mm0, (%eax)' >> $TMPS
2488 if test "$_sse" = yes ; then
2489 _pref_as_version='2.10.1'
2490 echo 'xorps %xmm0, %xmm0' >> $TMPS
2492 #if test "$_sse2" = yes ; then
2493 # _pref_as_version='2.11'
2494 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2496 if test "$_cmov" = yes ; then
2497 _pref_as_version='2.10.1'
2498 echo 'cmovb %eax, %ebx' >> $TMPS
2500 if test "$_ssse3" = yes ; then
2501 _pref_as_version='2.16.92'
2502 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2504 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2506 if test "$as_verc_fail" != yes ; then
2507 echores "ok"
2508 else
2509 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2510 echores "failed"
2511 die "obsolete binutils version"
2514 fi #if x86_32
2516 echocheck ".align is a power of two"
2517 if test "$_asmalign_pot" = auto ; then
2518 _asmalign_pot=no
2519 inline_asm_check '".align 3"' && _asmalign_pot=yes
2521 if test "$_asmalign_pot" = "yes" ; then
2522 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2523 else
2524 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2526 echores $_asmalign_pot
2529 echocheck "PIC"
2530 pic=no
2531 cat > $TMPC << EOF
2532 int main(void) {
2533 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2534 #error PIC not enabled
2535 #endif
2536 return 0;
2539 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2540 echores $pic
2543 if x86 ; then
2544 echocheck "10 assembler operands"
2545 ten_operands=no
2546 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2547 cat > $TMPC << EOF
2548 int main(void) {
2549 int x=0;
2550 __asm__ volatile(
2552 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2554 return 0;
2557 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2558 echores $ten_operands
2560 echocheck "ebx availability"
2561 ebx_available=no
2562 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2563 cat > $TMPC << EOF
2564 int main(void) {
2565 int x;
2566 __asm__ volatile(
2567 "xor %0, %0"
2568 :"=b"(x)
2569 // just adding ebx to clobber list seems unreliable with some
2570 // compilers, e.g. Haiku's gcc 2.95
2572 // and the above check does not work for OSX 64 bit...
2573 __asm__ volatile("":::"%ebx");
2574 return 0;
2577 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2578 echores $ebx_available
2581 echocheck "yasm"
2582 if test -z "$YASMFLAGS" ; then
2583 if darwin ; then
2584 x86_64 && objformat="macho64" || objformat="macho"
2585 elif win32 ; then
2586 objformat="win32"
2587 else
2588 objformat="elf"
2590 # currently tested for Linux x86, x86_64
2591 YASMFLAGS="-f $objformat"
2592 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2593 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2594 case "$objformat" in
2595 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2596 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2597 esac
2598 else
2599 warn_cflags=yes
2602 echo "pabsw xmm0, xmm0" > $TMPS
2603 yasm_check || _yasm=""
2604 if test $_yasm ; then
2605 def_yasm='#define HAVE_YASM 1'
2606 have_yasm="yes"
2607 echores "$_yasm"
2608 else
2609 def_yasm='#define HAVE_YASM 0'
2610 have_yasm="no"
2611 echores "no"
2614 echocheck "bswap"
2615 def_bswap='#define HAVE_BSWAP 0'
2616 echo 'bswap %eax' > $TMPS
2617 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2618 echores "$bswap"
2619 fi #if x86
2622 #FIXME: This should happen before the check for CFLAGS..
2623 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2624 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2626 # check if AltiVec is supported by the compiler, and how to enable it
2627 echocheck "GCC AltiVec flags"
2628 if $(cflag_check -maltivec -mabi=altivec) ; then
2629 _altivec_gcc_flags="-maltivec -mabi=altivec"
2630 # check if <altivec.h> should be included
2631 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2632 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2633 inc_altivec_h='#include <altivec.h>'
2634 else
2635 if $(cflag_check -faltivec) ; then
2636 _altivec_gcc_flags="-faltivec"
2637 else
2638 _altivec=no
2639 _altivec_gcc_flags="none, AltiVec disabled"
2643 echores "$_altivec_gcc_flags"
2645 # check if the compiler supports braces for vector declarations
2646 cat > $TMPC << EOF
2647 $inc_altivec_h
2648 int main(void) { (vector int) {1}; return 0; }
2650 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2652 # Disable runtime cpudetection if we cannot generate AltiVec code or
2653 # AltiVec is disabled by the user.
2654 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2655 && _runtime_cpudetection=no
2657 # Show that we are optimizing for AltiVec (if enabled and supported).
2658 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2659 && _optimizing="$_optimizing altivec"
2661 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2662 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2665 if ppc ; then
2666 def_xform_asm='#define HAVE_XFORM_ASM 0'
2667 xform_asm=no
2668 echocheck "XFORM ASM support"
2669 inline_asm_check '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' &&
2670 xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2671 echores "$xform_asm"
2674 if arm ; then
2675 echocheck "ARM pld instruction"
2676 pld=no
2677 inline_asm_check '"pld [r0]"' && pld=yes
2678 echores "$pld"
2680 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2681 if test $_armv5te = "auto" ; then
2682 _armv5te=no
2683 inline_asm_check '"qadd r0, r0, r0"' && _armv5te=yes
2685 echores "$_armv5te"
2687 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2689 echocheck "ARMv6 (SIMD instructions)"
2690 if test $_armv6 = "auto" ; then
2691 _armv6=no
2692 inline_asm_check '"sadd16 r0, r0, r0"' && _armv6=yes
2694 echores "$_armv6"
2696 echocheck "ARMv6t2 (SIMD instructions)"
2697 if test $_armv6t2 = "auto" ; then
2698 _armv6t2=no
2699 inline_asm_check '"movt r0, #0"' && _armv6t2=yes
2701 echores "$_armv6"
2703 echocheck "ARM VFP"
2704 if test $_armvfp = "auto" ; then
2705 _armvfp=no
2706 inline_asm_check '"fadds s0, s0, s0"' && _armvfp=yes
2708 echores "$_armvfp"
2710 echocheck "ARM NEON"
2711 if test $neon = "auto" ; then
2712 neon=no
2713 inline_asm_check '"vadd.i16 q0, q0, q0"' && neon=yes
2715 echores "$neon"
2717 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2718 if test $_iwmmxt = "auto" ; then
2719 _iwmmxt=no
2720 inline_asm_check '"wunpckelub wr6, wr4"' && _iwmmxt=yes
2722 echores "$_iwmmxt"
2725 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'
2726 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2727 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2728 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2729 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2730 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2731 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2732 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2733 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2734 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2735 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2736 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2737 test "$pld" = yes && cpuexts="PLD $cpuexts"
2738 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2739 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2740 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2741 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2742 test "$neon" = yes && cpuexts="NEON $cpuexts"
2743 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2744 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2745 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2747 # Checking kernel version...
2748 if x86_32 && linux ; then
2749 _k_verc_problem=no
2750 kernel_version=$(uname -r 2>&1)
2751 echocheck "$system_name kernel version"
2752 case "$kernel_version" in
2753 '') kernel_version="?.??"; _k_verc_fail=yes;;
2754 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2755 _k_verc_problem=yes;;
2756 esac
2757 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2758 _k_verc_fail=yes
2760 if test "$_k_verc_fail" ; then
2761 echores "$kernel_version, fail"
2762 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2763 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2764 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2765 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2766 echo "2.2.x you must upgrade it to get SSE support!"
2767 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2768 else
2769 echores "$kernel_version, ok"
2773 ######################
2774 # MAIN TESTS GO HERE #
2775 ######################
2778 echocheck "-lposix"
2779 if cflag_check -lposix ; then
2780 extra_ldflags="$extra_ldflags -lposix"
2781 echores "yes"
2782 else
2783 echores "no"
2786 echocheck "-lm"
2787 if cflag_check -lm ; then
2788 _ld_lm="-lm"
2789 echores "yes"
2790 else
2791 _ld_lm=""
2792 echores "no"
2796 echocheck "langinfo"
2797 if test "$_langinfo" = auto ; then
2798 _langinfo=no
2799 function_check langinfo.h 'nl_langinfo(CODESET)' && _langinfo=yes
2801 if test "$_langinfo" = yes ; then
2802 def_langinfo='#define HAVE_LANGINFO 1'
2803 else
2804 def_langinfo='#undef HAVE_LANGINFO'
2806 echores "$_langinfo"
2809 echocheck "translation support"
2810 if test "$_translation" = yes; then
2811 def_translation="#define CONFIG_TRANSLATION 1"
2812 else
2813 def_translation="#undef CONFIG_TRANSLATION"
2815 echores "$_translation"
2817 echocheck "language"
2818 # Set preferred languages, "all" uses English as main language.
2819 test -z "$language" && language=$LINGUAS
2820 test -z "$language_doc" && language_doc=$language
2821 test -z "$language_man" && language_man=$language
2822 test -z "$language_msg" && language_msg="all"
2823 language_doc=$(echo $language_doc | tr , " ")
2824 language_man=$(echo $language_man | tr , " ")
2825 language_msg=$(echo $language_msg | tr , " ")
2827 test "$language_doc" = "all" && language_doc=$doc_lang_all
2828 test "$language_man" = "all" && language_man=$man_lang_all
2829 test "$language_msg" = "all" && language_msg=$msg_lang_all
2831 if test "$_translation" != yes ; then
2832 language_msg=""
2835 # Prune non-existing translations from language lists.
2836 # Set message translation to the first available language.
2837 # Fall back on English.
2838 for lang in $language_doc ; do
2839 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2840 done
2841 language_doc=$tmp_language_doc
2842 test -z "$language_doc" && language_doc=en
2844 for lang in $language_man ; do
2845 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2846 done
2847 language_man=$tmp_language_man
2848 test -z "$language_man" && language_man=en
2850 for lang in $language_msg ; do
2851 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2852 done
2853 language_msg=$tmp_language_msg
2855 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2858 echocheck "enable sighandler"
2859 if test "$_sighandler" = yes ; then
2860 def_sighandler='#define CONFIG_SIGHANDLER 1'
2861 else
2862 def_sighandler='#undef CONFIG_SIGHANDLER'
2864 echores "$_sighandler"
2866 echocheck "runtime cpudetection"
2867 if test "$_runtime_cpudetection" = yes ; then
2868 _optimizing="Runtime CPU-Detection enabled"
2869 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2870 else
2871 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2873 echores "$_runtime_cpudetection"
2876 echocheck "restrict keyword"
2877 for restrict_keyword in restrict __restrict __restrict__ ; do
2878 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2879 if cc_check; then
2880 def_restrict_keyword=$restrict_keyword
2881 break;
2883 done
2884 if [ -n "$def_restrict_keyword" ]; then
2885 echores "$def_restrict_keyword"
2886 else
2887 echores "none"
2889 # Avoid infinite recursion loop ("#define restrict restrict")
2890 if [ "$def_restrict_keyword" != "restrict" ]; then
2891 def_restrict_keyword="#define restrict $def_restrict_keyword"
2892 else
2893 def_restrict_keyword=""
2897 echocheck "__builtin_expect"
2898 # GCC branch prediction hint
2899 cat > $TMPC << EOF
2900 static int foo(int a) {
2901 a = __builtin_expect(a, 10);
2902 return a == 10 ? 0 : 1;
2904 int main(void) { return foo(10) && foo(0); }
2906 _builtin_expect=no
2907 cc_check && _builtin_expect=yes
2908 if test "$_builtin_expect" = yes ; then
2909 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2910 else
2911 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2913 echores "$_builtin_expect"
2916 echocheck "kstat"
2917 _kstat=no
2918 function_check kstat.h 'kstat_open()' -lkstat && _kstat=yes
2919 if test "$_kstat" = yes ; then
2920 def_kstat="#define HAVE_LIBKSTAT 1"
2921 extra_ldflags="$extra_ldflags -lkstat"
2922 else
2923 def_kstat="#undef HAVE_LIBKSTAT"
2925 echores "$_kstat"
2928 echocheck "posix4"
2929 # required for nanosleep on some systems
2930 _posix4=no
2931 function_check time.h 'nanosleep(0, 0)' -lposix4 && _posix4=yes
2932 if test "$_posix4" = yes ; then
2933 extra_ldflags="$extra_ldflags -lposix4"
2935 echores "$_posix4"
2937 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2938 echocheck $func
2939 eval _$func=no
2940 function_check math.h "${func}(2.0)" -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2941 if eval test "x\$_$func" = "xyes"; then
2942 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2943 echores yes
2944 else
2945 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2946 echores no
2948 done
2951 echocheck "mkstemp"
2952 cat > $TMPC << EOF
2953 #define _XOPEN_SOURCE 500
2954 #include <stdlib.h>
2955 int main(void) { mkstemp(""); return 0; }
2957 _mkstemp=no
2958 cc_check && _mkstemp=yes
2959 if test "$_mkstemp" = yes ; then
2960 def_mkstemp='#define HAVE_MKSTEMP 1'
2961 else
2962 def_mkstemp='#undef HAVE_MKSTEMP'
2964 echores "$_mkstemp"
2967 echocheck "nanosleep"
2968 _nanosleep=no
2969 function_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
2970 if test "$_nanosleep" = yes ; then
2971 def_nanosleep='#define HAVE_NANOSLEEP 1'
2972 else
2973 def_nanosleep='#undef HAVE_NANOSLEEP'
2975 echores "$_nanosleep"
2978 echocheck "socklib"
2979 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2980 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2981 cat > $TMPC << EOF
2982 #include <netdb.h>
2983 #include <sys/socket.h>
2984 int main(void) { gethostbyname(0); socket(AF_INET, SOCK_STREAM, 0); return 0; }
2986 _socklib=no
2987 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2988 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2989 done
2990 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2991 if test $_winsock2_h = auto ; then
2992 _winsock2_h=no
2993 function_check winsock2.h 'gethostbyname(0)' -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2995 test "$_ld_sock" && res_comment="using $_ld_sock"
2996 echores "$_socklib"
2999 if test $_winsock2_h = yes ; then
3000 _ld_sock="-lws2_32"
3001 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3002 else
3003 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3007 echocheck "arpa/inet.h"
3008 arpa_inet_h=no
3009 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3010 header_check arpa/inet.h && arpa_inet_h=yes &&
3011 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3012 echores "$arpa_inet_h"
3015 echocheck "inet_pton()"
3016 def_inet_pton='#define HAVE_INET_PTON 0'
3017 inet_pton=no
3018 cat > $TMPC << EOF
3019 #include <sys/types.h>
3020 #include <sys/socket.h>
3021 #include <arpa/inet.h>
3022 int main(void) { inet_pton(0, 0, 0); return 0; }
3024 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3025 cc_check $_ld_tmp && inet_pton=yes && break
3026 done
3027 if test $inet_pton = yes ; then
3028 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3029 def_inet_pton='#define HAVE_INET_PTON 1'
3031 echores "$inet_pton"
3034 echocheck "inet_aton()"
3035 def_inet_aton='#define HAVE_INET_ATON 0'
3036 inet_aton=no
3037 cat > $TMPC << EOF
3038 #include <sys/types.h>
3039 #include <sys/socket.h>
3040 #include <arpa/inet.h>
3041 int main(void) { inet_aton(0, 0); return 0; }
3043 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3044 cc_check $_ld_tmp && inet_aton=yes && break
3045 done
3046 if test $inet_aton = yes ; then
3047 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3048 def_inet_aton='#define HAVE_INET_ATON 1'
3050 echores "$inet_aton"
3053 echocheck "socklen_t"
3054 _socklen_t=no
3055 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3056 cat > $TMPC << EOF
3057 #include <$header>
3058 int main(void) { socklen_t v = 0; return v; }
3060 cc_check && _socklen_t=yes && break
3061 done
3062 if test "$_socklen_t" = yes ; then
3063 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3064 else
3065 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3067 echores "$_socklen_t"
3070 echocheck "closesocket()"
3071 _closesocket=no
3072 function_check winsock2.h 'closesocket(~0)' $_ld_sock && _closesocket=yes
3073 if test "$_closesocket" = yes ; then
3074 def_closesocket='#define HAVE_CLOSESOCKET 1'
3075 else
3076 def_closesocket='#define HAVE_CLOSESOCKET 0'
3078 echores "$_closesocket"
3081 echocheck "networking"
3082 test $_winsock2_h = no && test $inet_pton = no &&
3083 test $inet_aton = no && networking=no
3084 if test "$networking" = yes ; then
3085 def_network='#define CONFIG_NETWORK 1'
3086 def_networking='#define CONFIG_NETWORKING 1'
3087 extra_ldflags="$extra_ldflags $_ld_sock"
3088 inputmodules="networking $inputmodules"
3089 else
3090 noinputmodules="networking $noinputmodules"
3091 def_network='#undef CONFIG_NETWORK'
3092 def_networking='#undef CONFIG_NETWORKING'
3093 _ftp=no
3095 echores "$networking"
3098 echocheck "inet6"
3099 if test "$_inet6" = auto ; then
3100 cat > $TMPC << EOF
3101 #include <sys/types.h>
3102 #if !defined(_WIN32) || defined(__CYGWIN__)
3103 #include <sys/socket.h>
3104 #include <netinet/in.h>
3105 #else
3106 #include <ws2tcpip.h>
3107 #endif
3108 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3110 _inet6=no
3111 if cc_check $_ld_sock ; then
3112 _inet6=yes
3115 if test "$_inet6" = yes ; then
3116 def_inet6='#define HAVE_AF_INET6 1'
3117 else
3118 def_inet6='#undef HAVE_AF_INET6'
3120 echores "$_inet6"
3123 echocheck "gethostbyname2"
3124 if test "$_gethostbyname2" = auto ; then
3125 cat > $TMPC << EOF
3126 #include <sys/types.h>
3127 #include <sys/socket.h>
3128 #include <netdb.h>
3129 int main(void) { gethostbyname2("", AF_INET); return 0; }
3131 _gethostbyname2=no
3132 if cc_check ; then
3133 _gethostbyname2=yes
3136 if test "$_gethostbyname2" = yes ; then
3137 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3138 else
3139 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3141 echores "$_gethostbyname2"
3144 echocheck "inttypes.h (required)"
3145 _inttypes=no
3146 header_check inttypes.h && _inttypes=yes
3147 echores "$_inttypes"
3149 if test "$_inttypes" = no ; then
3150 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3151 header_check sys/bitypes.h && _inttypes=yes
3152 if test "$_inttypes" = yes ; then
3153 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."
3154 else
3155 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3160 echocheck "int_fastXY_t in inttypes.h"
3161 cat > $TMPC << EOF
3162 #include <inttypes.h>
3163 int main(void) { volatile int_fast16_t v = 0; return v; }
3165 _fast_inttypes=no
3166 cc_check && _fast_inttypes=yes
3167 if test "$_fast_inttypes" = no ; then
3168 def_fast_inttypes='
3169 typedef signed char int_fast8_t;
3170 typedef signed int int_fast16_t;
3171 typedef signed int int_fast32_t;
3172 typedef signed long long int_fast64_t;
3173 typedef unsigned char uint_fast8_t;
3174 typedef unsigned int uint_fast16_t;
3175 typedef unsigned int uint_fast32_t;
3176 typedef unsigned long long uint_fast64_t;'
3178 echores "$_fast_inttypes"
3181 echocheck "malloc.h"
3182 _malloc=no
3183 header_check malloc.h && _malloc=yes
3184 if test "$_malloc" = yes ; then
3185 def_malloc_h='#define HAVE_MALLOC_H 1'
3186 else
3187 def_malloc_h='#define HAVE_MALLOC_H 0'
3189 echores "$_malloc"
3192 echocheck "memalign()"
3193 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3194 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3195 _memalign=no
3196 function_check malloc.h 'memalign(64, sizeof(char))' && _memalign=yes
3197 if test "$_memalign" = yes ; then
3198 def_memalign='#define HAVE_MEMALIGN 1'
3199 else
3200 def_memalign='#define HAVE_MEMALIGN 0'
3201 def_map_memalign='#define memalign(a, b) malloc(b)'
3202 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3204 echores "$_memalign"
3207 echocheck "posix_memalign()"
3208 posix_memalign=no
3209 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3210 cat > $TMPC << EOF
3211 #define _XOPEN_SOURCE 600
3212 #include <stdlib.h>
3213 int main(void) { posix_memalign(NULL, 0, 0); }
3215 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3216 echores "$posix_memalign"
3219 echocheck "alloca.h"
3220 _alloca=no
3221 function_check alloca.h 'alloca(0)' && _alloca=yes
3222 if cc_check ; then
3223 def_alloca_h='#define HAVE_ALLOCA_H 1'
3224 else
3225 def_alloca_h='#undef HAVE_ALLOCA_H'
3227 echores "$_alloca"
3230 echocheck "fastmemcpy"
3231 if test "$_fastmemcpy" = yes ; then
3232 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3233 else
3234 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3236 echores "$_fastmemcpy"
3239 echocheck "mman.h"
3240 _mman=no
3241 function_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3242 if test "$_mman" = yes ; then
3243 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3244 else
3245 def_mman_h='#undef HAVE_SYS_MMAN_H'
3246 os2 && _need_mmap=yes
3248 echores "$_mman"
3250 cat > $TMPC << EOF
3251 #include <sys/mman.h>
3252 int main(void) { void *p = MAP_FAILED; return 0; }
3254 _mman_has_map_failed=no
3255 cc_check && _mman_has_map_failed=yes
3256 if test "$_mman_has_map_failed" = yes ; then
3257 def_mman_has_map_failed=''
3258 else
3259 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3262 echocheck "dynamic loader"
3263 _dl=no
3264 for _ld_tmp in "" "-ldl"; do
3265 function_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3266 done
3267 if test "$_dl" = yes ; then
3268 def_dl='#define HAVE_LIBDL 1'
3269 else
3270 def_dl='#undef HAVE_LIBDL'
3272 echores "$_dl"
3275 echocheck "dynamic a/v plugins support"
3276 if test "$_dl" = no ; then
3277 _dynamic_plugins=no
3279 if test "$_dynamic_plugins" = yes ; then
3280 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3281 else
3282 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3284 echores "$_dynamic_plugins"
3287 def_threads='#define HAVE_THREADS 0'
3289 echocheck "pthread"
3290 if linux ; then
3291 THREAD_CFLAGS=-D_REENTRANT
3292 elif freebsd || netbsd || openbsd || bsdos ; then
3293 THREAD_CFLAGS=-D_THREAD_SAFE
3295 if test "$_pthreads" = auto ; then
3296 cat > $TMPC << EOF
3297 #include <pthread.h>
3298 static void *func(void *arg) { return arg; }
3299 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3301 _pthreads=no
3302 if ! hpux ; then
3303 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3304 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3305 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3306 done
3309 if test "$_pthreads" = yes ; then
3310 test $_ld_pthread && res_comment="using $_ld_pthread"
3311 def_pthreads='#define HAVE_PTHREADS 1'
3312 def_threads='#define HAVE_THREADS 1'
3313 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3314 else
3315 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3316 def_pthreads='#undef HAVE_PTHREADS'
3317 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3318 mingw32 || _win32dll=no
3320 echores "$_pthreads"
3322 if cygwin ; then
3323 if test "$_pthreads" = yes ; then
3324 def_pthread_cache="#define PTHREAD_CACHE 1"
3325 else
3326 _stream_cache=no
3327 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3331 echocheck "w32threads"
3332 if test "$_pthreads" = yes ; then
3333 res_comment="using pthread instead"
3334 _w32threads=no
3336 if test "$_w32threads" = auto ; then
3337 _w32threads=no
3338 mingw32 && _w32threads=yes
3340 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3341 echores "$_w32threads"
3343 echocheck "rpath"
3344 netbsd &&_rpath=yes
3345 if test "$_rpath" = yes ; then
3346 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3347 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3348 done
3349 extra_ldflags=$tmp
3351 echores "$_rpath"
3353 echocheck "iconv"
3354 if test "$_iconv" = auto ; then
3355 cat > $TMPC << EOF
3356 #include <stdio.h>
3357 #include <unistd.h>
3358 #include <iconv.h>
3359 #define INBUFSIZE 1024
3360 #define OUTBUFSIZE 4096
3362 char inbuffer[INBUFSIZE];
3363 char outbuffer[OUTBUFSIZE];
3365 int main(void) {
3366 size_t numread;
3367 iconv_t icdsc;
3368 char *tocode="UTF-8";
3369 char *fromcode="cp1250";
3370 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3371 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3372 char *iptr=inbuffer;
3373 char *optr=outbuffer;
3374 size_t inleft=numread;
3375 size_t outleft=OUTBUFSIZE;
3376 if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
3377 != (size_t)(-1)) {
3378 write(1, outbuffer, OUTBUFSIZE - outleft);
3381 if (iconv_close(icdsc) == -1)
3384 return 0;
3387 _iconv=no
3388 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3389 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3390 _iconv=yes && break
3391 done
3393 if test "$_iconv" = yes ; then
3394 def_iconv='#define CONFIG_ICONV 1'
3395 else
3396 def_iconv='#undef CONFIG_ICONV'
3398 echores "$_iconv"
3401 echocheck "soundcard.h"
3402 _soundcard_h=no
3403 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3404 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3405 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3406 header_check $_soundcard_header && _soundcard_h=yes &&
3407 res_comment="$_soundcard_header" && break
3408 done
3410 if test "$_soundcard_h" = yes ; then
3411 if test $_soundcard_header = "sys/soundcard.h"; then
3412 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3413 else
3414 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3417 echores "$_soundcard_h"
3420 echocheck "sys/dvdio.h"
3421 _dvdio=no
3422 # FreeBSD 8.1 has broken dvdio.h
3423 header_check_broken sys/types.h sys/dvdio.h && _dvdio=yes
3424 if test "$_dvdio" = yes ; then
3425 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3426 else
3427 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3429 echores "$_dvdio"
3432 echocheck "sys/cdio.h"
3433 _cdio=no
3434 # at least OpenSolaris has a broken cdio.h
3435 header_check_broken sys/types.h sys/cdio.h && _cdio=yes
3436 if test "$_cdio" = yes ; then
3437 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3438 else
3439 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3441 echores "$_cdio"
3444 echocheck "linux/cdrom.h"
3445 _cdrom=no
3446 header_check linux/cdrom.h && _cdrom=yes
3447 if test "$_cdrom" = yes ; then
3448 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3449 else
3450 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3452 echores "$_cdrom"
3455 echocheck "dvd.h"
3456 _dvd=no
3457 header_check dvd.h && _dvd=yes
3458 if test "$_dvd" = yes ; then
3459 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3460 else
3461 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3463 echores "$_dvd"
3466 if bsdos; then
3467 echocheck "BSDI dvd.h"
3468 _bsdi_dvd=no
3469 header_check dvd.h && _bsdi_dvd=yes
3470 if test "$_bsdi_dvd" = yes ; then
3471 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3472 else
3473 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3475 echores "$_bsdi_dvd"
3476 fi #if bsdos
3479 if hpux; then
3480 # also used by AIX, but AIX does not support VCD and/or libdvdread
3481 echocheck "HP-UX SCSI header"
3482 _hpux_scsi_h=no
3483 header_check sys/scsi.h && _hpux_scsi_h=yes
3484 if test "$_hpux_scsi_h" = yes ; then
3485 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3486 else
3487 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3489 echores "$_hpux_scsi_h"
3490 fi #if hpux
3493 if sunos; then
3494 echocheck "userspace SCSI headers (Solaris)"
3495 _sol_scsi_h=no
3496 header_check sys/scsi/scsi_types.h &&
3497 header_check_broken sys/types.h sys/scsi/impl/uscsi.h &&
3498 _sol_scsi_h=yes
3499 if test "$_sol_scsi_h" = yes ; then
3500 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3501 else
3502 def_sol_scsi_h='#undef SOLARIS_USCSI'
3504 echores "$_sol_scsi_h"
3505 fi #if sunos
3508 echocheck "termcap"
3509 if test "$_termcap" = auto ; then
3510 _termcap=no
3511 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3512 function_check term.h 'tgetent(0, 0)' $_ld_tmp &&
3513 extra_ldflags="$extra_ldflags $_ld_tmp" && _termcap=yes && break
3514 done
3516 if test "$_termcap" = yes ; then
3517 def_termcap='#define HAVE_TERMCAP 1'
3518 test $_ld_tmp && res_comment="using $_ld_tmp"
3519 else
3520 def_termcap='#undef HAVE_TERMCAP'
3522 echores "$_termcap"
3525 echocheck "termios"
3526 def_termios='#undef HAVE_TERMIOS'
3527 def_termios_h='#undef HAVE_TERMIOS_H'
3528 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3529 if test "$_termios" = auto ; then
3530 _termios=no
3531 for _termios_header in "termios.h" "sys/termios.h"; do
3532 header_check $_termios_header && _termios=yes &&
3533 res_comment="using $_termios_header" && break
3534 done
3537 if test "$_termios" = yes ; then
3538 def_termios='#define HAVE_TERMIOS 1'
3539 if test "$_termios_header" = "termios.h" ; then
3540 def_termios_h='#define HAVE_TERMIOS_H 1'
3541 else
3542 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3545 echores "$_termios"
3548 echocheck "shm"
3549 if test "$_shm" = auto ; then
3550 cat > $TMPC << EOF
3551 #include <sys/types.h>
3552 #include <sys/shm.h>
3553 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3555 _shm=no
3556 cc_check && _shm=yes
3558 if test "$_shm" = yes ; then
3559 def_shm='#define HAVE_SHM 1'
3560 else
3561 def_shm='#undef HAVE_SHM'
3563 echores "$_shm"
3566 echocheck "strsep()"
3567 cat > $TMPC << EOF
3568 #include <string.h>
3569 int main(void) { char *s = "Hello, world!"; strsep(&s, ","); return 0; }
3571 _strsep=no
3572 cc_check && _strsep=yes
3573 if test "$_strsep" = yes ; then
3574 def_strsep='#define HAVE_STRSEP 1'
3575 _need_strsep=no
3576 else
3577 def_strsep='#undef HAVE_STRSEP'
3578 _need_strsep=yes
3580 echores "$_strsep"
3583 echocheck "vsscanf()"
3584 cat > $TMPC << EOF
3585 #define _ISOC99_SOURCE
3586 #include <stdarg.h>
3587 #include <stdio.h>
3588 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3590 _vsscanf=no
3591 cc_check && _vsscanf=yes
3592 if test "$_vsscanf" = yes ; then
3593 def_vsscanf='#define HAVE_VSSCANF 1'
3594 _need_vsscanf=no
3595 else
3596 def_vsscanf='#undef HAVE_VSSCANF'
3597 _need_vsscanf=yes
3599 echores "$_vsscanf"
3602 echocheck "swab()"
3603 cat > $TMPC << EOF
3604 #define _XOPEN_SOURCE 600
3605 #include <unistd.h>
3606 int main(void) {
3607 int a = 0, b = 0;
3608 swab(&a, &b, 0);
3609 return 0;
3612 _swab=no
3613 cc_check && _swab=yes
3614 if test "$_swab" = yes ; then
3615 def_swab='#define HAVE_SWAB 1'
3616 _need_swab=no
3617 else
3618 def_swab='#undef HAVE_SWAB'
3619 _need_swab=yes
3621 echores "$_swab"
3623 echocheck "POSIX select()"
3624 cat > $TMPC << EOF
3625 #include <stdio.h>
3626 #include <stdlib.h>
3627 #include <sys/types.h>
3628 #include <string.h>
3629 #include <sys/time.h>
3630 #include <unistd.h>
3631 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
3633 _posix_select=no
3634 def_posix_select='#undef HAVE_POSIX_SELECT'
3635 #select() of kLIBC (OS/2) supports socket only
3636 ! os2 && cc_check && _posix_select=yes \
3637 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3638 echores "$_posix_select"
3641 echocheck "audio select()"
3642 if test "$_select" = no ; then
3643 def_select='#undef HAVE_AUDIO_SELECT'
3644 elif test "$_select" = yes ; then
3645 def_select='#define HAVE_AUDIO_SELECT 1'
3647 echores "$_select"
3650 echocheck "gettimeofday()"
3651 cat > $TMPC << EOF
3652 #include <sys/time.h>
3653 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3655 _gettimeofday=no
3656 cc_check && _gettimeofday=yes
3657 if test "$_gettimeofday" = yes ; then
3658 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3659 _need_gettimeofday=no
3660 else
3661 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3662 _need_gettimeofday=yes
3664 echores "$_gettimeofday"
3667 echocheck "glob()"
3668 _glob=no
3669 function_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
3670 if test "$_glob" = yes ; then
3671 def_glob='#define HAVE_GLOB 1'
3672 _need_glob=no
3673 else
3674 def_glob='#undef HAVE_GLOB'
3675 _need_glob=yes
3677 echores "$_glob"
3680 echocheck "setenv()"
3681 _setenv=no
3682 function_check stdlib.h 'setenv("", "", 0)' && _setenv=yes
3683 if test "$_setenv" = yes ; then
3684 def_setenv='#define HAVE_SETENV 1'
3685 _need_setenv=no
3686 else
3687 def_setenv='#undef HAVE_SETENV'
3688 _need_setenv=yes
3690 echores "$_setenv"
3693 echocheck "setmode()"
3694 _setmode=no
3695 def_setmode='#define HAVE_SETMODE 0'
3696 function_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3697 echores "$_setmode"
3700 if sunos; then
3701 echocheck "sysi86()"
3702 _sysi86=no
3703 function_check sys/sysi86.h 'sysi86(0)' && _sysi86=yes
3704 if test "$_sysi86" = yes ; then
3705 def_sysi86='#define HAVE_SYSI86 1'
3706 cat > $TMPC << EOF
3707 #include <sys/sysi86.h>
3708 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3710 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3711 else
3712 def_sysi86='#undef HAVE_SYSI86'
3714 echores "$_sysi86"
3715 fi #if sunos
3718 echocheck "sys/sysinfo.h"
3719 cat > $TMPC << EOF
3720 #include <sys/sysinfo.h>
3721 int main(void) { struct sysinfo s_info; sysinfo(&s_info); return 0; }
3723 _sys_sysinfo=no
3724 cc_check && _sys_sysinfo=yes
3725 if test "$_sys_sysinfo" = yes ; then
3726 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3727 else
3728 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3730 echores "$_sys_sysinfo"
3733 if darwin; then
3735 echocheck "Mac OS X Finder Support"
3736 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3737 if test "$_macosx_finder" = yes ; then
3738 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3739 extra_ldflags="$extra_ldflags -framework Carbon"
3741 echores "$_macosx_finder"
3743 echocheck "Mac OS X Bundle file locations"
3744 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3745 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3746 if test "$_macosx_bundle" = yes ; then
3747 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3748 extra_ldflags="$extra_ldflags -framework Carbon"
3750 echores "$_macosx_bundle"
3752 echocheck "Apple Remote"
3753 if test "$_apple_remote" = auto ; then
3754 _apple_remote=no
3755 cat > $TMPC <<EOF
3756 #include <stdio.h>
3757 #include <IOKit/IOCFPlugIn.h>
3758 int main(void) {
3759 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3760 CFMutableDictionaryRef hidMatchDictionary;
3761 IOReturn ioReturnValue;
3763 // Set up a matching dictionary to search the I/O Registry by class.
3764 // name for all HID class devices
3765 hidMatchDictionary = IOServiceMatching("AppleIRController");
3767 // Now search I/O Registry for matching devices.
3768 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3769 hidMatchDictionary, &hidObjectIterator);
3771 // If search is unsuccessful, return nonzero.
3772 if (ioReturnValue != kIOReturnSuccess ||
3773 !IOIteratorIsValid(hidObjectIterator)) {
3774 return 1;
3776 return 0;
3779 cc_check -framework IOKit && _apple_remote=yes
3781 if test "$_apple_remote" = yes ; then
3782 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3783 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3784 else
3785 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3787 echores "$_apple_remote"
3789 fi #if darwin
3791 if linux; then
3793 echocheck "Apple IR"
3794 if test "$_apple_ir" = auto ; then
3795 _apple_ir=no
3796 cat > $TMPC <<EOF
3797 #include <linux/types.h>
3798 #include <linux/input.h>
3799 int main(void) { struct input_event ev; struct input_id id; return 0; }
3801 cc_check && _apple_ir=yes
3803 if test "$_apple_ir" = yes ; then
3804 def_apple_ir='#define CONFIG_APPLE_IR 1'
3805 else
3806 def_apple_ir='#undef CONFIG_APPLE_IR'
3808 echores "$_apple_ir"
3809 fi #if linux
3811 echocheck "pkg-config"
3812 _pkg_config=pkg-config
3813 if $($_pkg_config --version > /dev/null 2>&1); then
3814 if test "$_ld_static"; then
3815 _pkg_config="$_pkg_config --static"
3817 echores "yes"
3818 else
3819 _pkg_config=false
3820 echores "no"
3824 echocheck "Samba support (libsmbclient)"
3825 if test "$_smb" = yes; then
3826 extra_ldflags="$extra_ldflags -lsmbclient"
3828 if test "$_smb" = auto; then
3829 _smb=no
3830 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3831 function_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
3832 extra_ldflags="$extra_ldflags $_ld_tmp" && _smb=yes && break
3833 done
3836 if test "$_smb" = yes; then
3837 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3838 inputmodules="smb $inputmodules"
3839 else
3840 def_smb="#undef CONFIG_LIBSMBCLIENT"
3841 noinputmodules="smb $noinputmodules"
3843 echores "$_smb"
3846 #########
3847 # VIDEO #
3848 #########
3851 echocheck "tdfxfb"
3852 if test "$_tdfxfb" = yes ; then
3853 def_tdfxfb='#define CONFIG_TDFXFB 1'
3854 vomodules="tdfxfb $vomodules"
3855 else
3856 def_tdfxfb='#undef CONFIG_TDFXFB'
3857 novomodules="tdfxfb $novomodules"
3859 echores "$_tdfxfb"
3861 echocheck "s3fb"
3862 if test "$_s3fb" = yes ; then
3863 def_s3fb='#define CONFIG_S3FB 1'
3864 vomodules="s3fb $vomodules"
3865 else
3866 def_s3fb='#undef CONFIG_S3FB'
3867 novomodules="s3fb $novomodules"
3869 echores "$_s3fb"
3871 echocheck "wii"
3872 if test "$_wii" = yes ; then
3873 def_wii='#define CONFIG_WII 1'
3874 vomodules="wii $vomodules"
3875 else
3876 def_wii='#undef CONFIG_WII'
3877 novomodules="wii $novomodules"
3879 echores "$_wii"
3881 echocheck "tdfxvid"
3882 if test "$_tdfxvid" = yes ; then
3883 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3884 vomodules="tdfx_vid $vomodules"
3885 else
3886 def_tdfxvid='#undef CONFIG_TDFX_VID'
3887 novomodules="tdfx_vid $novomodules"
3889 echores "$_tdfxvid"
3891 echocheck "xvr100"
3892 if test "$_xvr100" = auto ; then
3893 cat > $TMPC << EOF
3894 #include <unistd.h>
3895 #include <sys/fbio.h>
3896 #include <sys/visual_io.h>
3897 int main(void) {
3898 struct vis_identifier ident;
3899 struct fbgattr attr;
3900 ioctl(0, VIS_GETIDENTIFIER, &ident);
3901 ioctl(0, FBIOGATTR, &attr);
3902 return 0;
3905 _xvr100=no
3906 cc_check && _xvr100=yes
3908 if test "$_xvr100" = yes ; then
3909 def_xvr100='#define CONFIG_XVR100 1'
3910 vomodules="xvr100 $vomodules"
3911 else
3912 def_tdfxvid='#undef CONFIG_XVR100'
3913 novomodules="xvr100 $novomodules"
3915 echores "$_xvr100"
3917 echocheck "tga"
3918 if test "$_tga" = yes ; then
3919 def_tga='#define CONFIG_TGA 1'
3920 vomodules="tga $vomodules"
3921 else
3922 def_tga='#undef CONFIG_TGA'
3923 novomodules="tga $novomodules"
3925 echores "$_tga"
3928 echocheck "md5sum support"
3929 if test "$_md5sum" = yes; then
3930 def_md5sum="#define CONFIG_MD5SUM 1"
3931 vomodules="md5sum $vomodules"
3932 else
3933 def_md5sum="#undef CONFIG_MD5SUM"
3934 novomodules="md5sum $novomodules"
3936 echores "$_md5sum"
3939 echocheck "yuv4mpeg support"
3940 if test "$_yuv4mpeg" = yes; then
3941 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
3942 vomodules="yuv4mpeg $vomodules"
3943 else
3944 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3945 novomodules="yuv4mpeg $novomodules"
3947 echores "$_yuv4mpeg"
3950 echocheck "bl"
3951 if test "$_bl" = yes ; then
3952 def_bl='#define CONFIG_BL 1'
3953 vomodules="bl $vomodules"
3954 else
3955 def_bl='#undef CONFIG_BL'
3956 novomodules="bl $novomodules"
3958 echores "$_bl"
3961 echocheck "DirectFB"
3962 if test "$_directfb" = auto ; then
3963 _directfb=no
3964 cat > $TMPC << EOF
3965 #include <directfb.h>
3966 #include <directfb_version.h>
3967 #if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22)
3968 #error "DirectFB version too old."
3969 #endif
3970 int main(void) { DirectFBInit(0, 0); return 0; }
3972 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
3973 cc_check $_inc_tmp -ldirectfb &&
3974 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
3975 done
3977 if test "$_directfb" = yes ; then
3978 def_directfb='#define CONFIG_DIRECTFB 1'
3979 vomodules="directfb dfbmga $vomodules"
3980 libs_mplayer="$libs_mplayer -ldirectfb"
3981 else
3982 def_directfb='#undef CONFIG_DIRECTFB'
3983 novomodules="directfb dfbmga $novomodules"
3985 echores "$_directfb"
3988 echocheck "X11 headers presence"
3989 _x11_headers="no"
3990 res_comment="check if the dev(el) packages are installed"
3991 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
3992 if test -f "$I/X11/Xlib.h" ; then
3993 _x11_headers="yes"
3994 res_comment=""
3995 break
3997 done
3998 if test $_cross_compile = no; then
3999 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4000 /usr/include/X11R6 /usr/openwin/include ; do
4001 if test -f "$I/X11/Xlib.h" ; then
4002 extra_cflags="$extra_cflags -I$I"
4003 _x11_headers="yes"
4004 res_comment="using $I"
4005 break
4007 done
4009 echores "$_x11_headers"
4012 echocheck "X11"
4013 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4014 cat > $TMPC <<EOF
4015 #include <X11/Xlib.h>
4016 #include <X11/Xutil.h>
4017 int main(void) { XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4019 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4020 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4021 -L/usr/lib ; do
4022 if netbsd; then
4023 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4024 else
4025 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4027 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4028 && _x11=yes && break
4029 done
4031 if test "$_x11" = yes ; then
4032 def_x11='#define CONFIG_X11 1'
4033 vomodules="x11 xover $vomodules"
4034 else
4035 _x11=no
4036 def_x11='#undef CONFIG_X11'
4037 novomodules="x11 $novomodules"
4038 res_comment="check if the dev(el) packages are installed"
4039 # disable stuff that depends on X
4040 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4042 echores "$_x11"
4044 echocheck "Xss screensaver extensions"
4045 if test "$_xss" = auto ; then
4046 cat > $TMPC << EOF
4047 #include <X11/Xlib.h>
4048 #include <X11/extensions/scrnsaver.h>
4049 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4051 _xss=no
4052 cc_check -lXss && _xss=yes
4054 if test "$_xss" = yes ; then
4055 def_xss='#define CONFIG_XSS 1'
4056 libs_mplayer="$libs_mplayer -lXss"
4057 else
4058 def_xss='#undef CONFIG_XSS'
4060 echores "$_xss"
4062 echocheck "DPMS"
4063 _xdpms3=no
4064 _xdpms4=no
4065 if test "$_x11" = yes ; then
4066 cat > $TMPC <<EOF
4067 #include <X11/Xmd.h>
4068 #include <X11/Xlib.h>
4069 #include <X11/Xutil.h>
4070 #include <X11/Xatom.h>
4071 #include <X11/extensions/dpms.h>
4072 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4074 cc_check -lXdpms && _xdpms3=yes
4075 cat > $TMPC <<EOF
4076 #include <X11/Xlib.h>
4077 #include <X11/extensions/dpms.h>
4078 int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
4080 cc_check -lXext && _xdpms4=yes
4082 if test "$_xdpms4" = yes ; then
4083 def_xdpms='#define CONFIG_XDPMS 1'
4084 res_comment="using Xdpms 4"
4085 echores "yes"
4086 elif test "$_xdpms3" = yes ; then
4087 def_xdpms='#define CONFIG_XDPMS 1'
4088 libs_mplayer="$libs_mplayer -lXdpms"
4089 res_comment="using Xdpms 3"
4090 echores "yes"
4091 else
4092 def_xdpms='#undef CONFIG_XDPMS'
4093 echores "no"
4097 echocheck "Xv"
4098 if test "$_xv" = auto ; then
4099 cat > $TMPC <<EOF
4100 #include <X11/Xlib.h>
4101 #include <X11/extensions/Xvlib.h>
4102 int main(void) {
4103 XvGetPortAttribute(0, 0, 0, 0);
4104 XvQueryPortAttributes(0, 0, 0);
4105 return 0; }
4107 _xv=no
4108 cc_check -lXv && _xv=yes
4111 if test "$_xv" = yes ; then
4112 def_xv='#define CONFIG_XV 1'
4113 libs_mplayer="$libs_mplayer -lXv"
4114 vomodules="xv $vomodules"
4115 else
4116 def_xv='#undef CONFIG_XV'
4117 novomodules="xv $novomodules"
4119 echores "$_xv"
4122 echocheck "XvMC"
4123 if test "$_xv" = yes && test "$_xvmc" != no ; then
4124 _xvmc=no
4125 cat > $TMPC <<EOF
4126 #include <X11/Xlib.h>
4127 #include <X11/extensions/Xvlib.h>
4128 #include <X11/extensions/XvMClib.h>
4129 int main(void) {
4130 XvMCQueryExtension(0, 0, 0);
4131 XvMCCreateContext(0, 0, 0, 0, 0, 0, 0);
4132 return 0; }
4134 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4135 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4136 done
4138 if test "$_xvmc" = yes ; then
4139 def_xvmc='#define CONFIG_XVMC 1'
4140 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4141 vomodules="xvmc $vomodules"
4142 res_comment="using $_xvmclib"
4143 else
4144 def_xvmc='#define CONFIG_XVMC 0'
4145 novomodules="xvmc $novomodules"
4147 echores "$_xvmc"
4150 echocheck "VDPAU"
4151 if test "$_vdpau" = auto ; then
4152 _vdpau=no
4153 if test "$_dl" = yes ; then
4154 cat > $TMPC <<EOF
4155 #include <vdpau/vdpau_x11.h>
4156 int main(void) {
4157 vdp_device_create_x11(0, 0, 0, 0);
4158 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4160 cc_check -lvdpau && _vdpau=yes
4163 if test "$_vdpau" = yes ; then
4164 def_vdpau='#define CONFIG_VDPAU 1'
4165 libs_mplayer="$libs_mplayer -lvdpau"
4166 vomodules="vdpau $vomodules"
4167 else
4168 def_vdpau='#define CONFIG_VDPAU 0'
4169 novomodules="vdpau $novomodules"
4171 echores "$_vdpau"
4174 echocheck "Xinerama"
4175 if test "$_xinerama" = auto ; then
4176 cat > $TMPC <<EOF
4177 #include <X11/Xlib.h>
4178 #include <X11/extensions/Xinerama.h>
4179 int main(void) { XineramaIsActive(0); return 0; }
4181 _xinerama=no
4182 cc_check -lXinerama && _xinerama=yes
4185 if test "$_xinerama" = yes ; then
4186 def_xinerama='#define CONFIG_XINERAMA 1'
4187 libs_mplayer="$libs_mplayer -lXinerama"
4188 else
4189 def_xinerama='#undef CONFIG_XINERAMA'
4191 echores "$_xinerama"
4194 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4195 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4196 # named 'X extensions' or something similar.
4197 # This check may be useful for future mplayer versions (to change resolution)
4198 # If you run into problems, remove '-lXxf86vm'.
4199 echocheck "Xxf86vm"
4200 if test "$_vm" = auto ; then
4201 cat > $TMPC <<EOF
4202 #include <X11/Xlib.h>
4203 #include <X11/extensions/xf86vmode.h>
4204 int main(void) { XF86VidModeQueryExtension(0, 0, 0); return 0; }
4206 _vm=no
4207 cc_check -lXxf86vm && _vm=yes
4209 if test "$_vm" = yes ; then
4210 def_vm='#define CONFIG_XF86VM 1'
4211 libs_mplayer="$libs_mplayer -lXxf86vm"
4212 else
4213 def_vm='#undef CONFIG_XF86VM'
4215 echores "$_vm"
4217 # Check for the presence of special keycodes, like audio control buttons
4218 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4219 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4220 # have these new keycodes.
4221 echocheck "XF86keysym"
4222 if test "$_xf86keysym" = auto; then
4223 _xf86keysym=no
4224 cat > $TMPC <<EOF
4225 #include <X11/Xlib.h>
4226 #include <X11/XF86keysym.h>
4227 int main(void) { return XF86XK_AudioPause; }
4229 cc_check && _xf86keysym=yes
4231 if test "$_xf86keysym" = yes ; then
4232 def_xf86keysym='#define CONFIG_XF86XK 1'
4233 else
4234 def_xf86keysym='#undef CONFIG_XF86XK'
4236 echores "$_xf86keysym"
4238 echocheck "DGA"
4239 if test "$_dga2" = auto && test "$_x11" = yes ; then
4240 cat > $TMPC << EOF
4241 #include <X11/Xlib.h>
4242 #include <X11/extensions/xf86dga.h>
4243 int main(void) { XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4245 _dga2=no
4246 cc_check -lXxf86dga && _dga2=yes
4248 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4249 cat > $TMPC << EOF
4250 #include <X11/Xlib.h>
4251 #include <X11/extensions/xf86dga.h>
4252 int main(void) { XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4254 _dga1=no
4255 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4258 _dga=no
4259 def_dga='#undef CONFIG_DGA'
4260 def_dga1='#undef CONFIG_DGA1'
4261 def_dga2='#undef CONFIG_DGA2'
4262 if test "$_dga1" = yes ; then
4263 _dga=yes
4264 def_dga1='#define CONFIG_DGA1 1'
4265 res_comment="using DGA 1.0"
4266 elif test "$_dga2" = yes ; then
4267 _dga=yes
4268 def_dga2='#define CONFIG_DGA2 1'
4269 res_comment="using DGA 2.0"
4271 if test "$_dga" = yes ; then
4272 def_dga='#define CONFIG_DGA 1'
4273 libs_mplayer="$libs_mplayer -lXxf86dga"
4274 vomodules="dga $vomodules"
4275 else
4276 novomodules="dga $novomodules"
4278 echores "$_dga"
4281 echocheck "3dfx"
4282 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4283 def_3dfx='#define CONFIG_3DFX 1'
4284 vomodules="3dfx $vomodules"
4285 else
4286 def_3dfx='#undef CONFIG_3DFX'
4287 novomodules="3dfx $novomodules"
4289 echores "$_3dfx"
4292 echocheck "VIDIX"
4293 def_vidix='#undef CONFIG_VIDIX'
4294 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4295 _vidix_drv_cyberblade=no
4296 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4297 _vidix_drv_ivtv=no
4298 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4299 _vidix_drv_mach64=no
4300 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4301 _vidix_drv_mga=no
4302 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4303 _vidix_drv_mga_crtc2=no
4304 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4305 _vidix_drv_nvidia=no
4306 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4307 _vidix_drv_pm2=no
4308 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4309 _vidix_drv_pm3=no
4310 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4311 _vidix_drv_radeon=no
4312 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4313 _vidix_drv_rage128=no
4314 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4315 _vidix_drv_s3=no
4316 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4317 _vidix_drv_sh_veu=no
4318 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4319 _vidix_drv_sis=no
4320 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4321 _vidix_drv_unichrome=no
4322 if test "$_vidix" = auto ; then
4323 _vidix=no
4324 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4325 && _vidix=yes
4326 x86_64 && ! linux && _vidix=no
4327 (ppc || alpha) && linux && _vidix=yes
4329 echores "$_vidix"
4331 if test "$_vidix" = yes ; then
4332 def_vidix='#define CONFIG_VIDIX 1'
4333 vomodules="cvidix $vomodules"
4334 # FIXME: ivtv driver temporarily disabled until we have a proper test
4335 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4336 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4338 # some vidix drivers are architecture and os specific, discard them elsewhere
4339 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4340 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4342 for driver in $_vidix_drivers ; do
4343 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4344 eval _vidix_drv_${driver}=yes
4345 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4346 done
4348 echocheck "VIDIX PCI device name database"
4349 echores "$_vidix_pcidb"
4350 if test "$_vidix_pcidb" = yes ; then
4351 _vidix_pcidb_val=1
4352 else
4353 _vidix_pcidb_val=0
4356 echocheck "VIDIX dhahelper support"
4357 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4358 echores "$_dhahelper"
4360 echocheck "VIDIX svgalib_helper support"
4361 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4362 echores "$_svgalib_helper"
4364 else
4365 novomodules="cvidix $novomodules"
4368 if test "$_vidix" = yes && win32; then
4369 winvidix=yes
4370 vomodules="winvidix $vomodules"
4371 libs_mplayer="$libs_mplayer -lgdi32"
4372 else
4373 novomodules="winvidix $novomodules"
4375 if test "$_vidix" = yes && test "$_x11" = yes; then
4376 xvidix=yes
4377 vomodules="xvidix $vomodules"
4378 else
4379 novomodules="xvidix $novomodules"
4382 echocheck "GGI"
4383 if test "$_ggi" = auto ; then
4384 _ggi=no
4385 function_check ggi/ggi.h 'ggiInit()' -lggi && _ggi=yes
4387 if test "$_ggi" = yes ; then
4388 def_ggi='#define CONFIG_GGI 1'
4389 libs_mplayer="$libs_mplayer -lggi"
4390 vomodules="ggi $vomodules"
4391 else
4392 def_ggi='#undef CONFIG_GGI'
4393 novomodules="ggi $novomodules"
4395 echores "$_ggi"
4397 echocheck "GGI extension: libggiwmh"
4398 if test "$_ggiwmh" = auto ; then
4399 _ggiwmh=no
4400 function_check ggi/wmh.h 'ggiWmhInit()' -lggi -lggiwmh && _ggiwmh=yes
4402 # needed to get right output on obscure combination
4403 # like --disable-ggi --enable-ggiwmh
4404 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4405 def_ggiwmh='#define CONFIG_GGIWMH 1'
4406 libs_mplayer="$libs_mplayer -lggiwmh"
4407 else
4408 _ggiwmh=no
4409 def_ggiwmh='#undef CONFIG_GGIWMH'
4411 echores "$_ggiwmh"
4414 echocheck "AA"
4415 if test "$_aa" = auto ; then
4416 cat > $TMPC << EOF
4417 #include <aalib.h>
4418 int main(void) {
4419 aa_context *c;
4420 aa_renderparams *p;
4421 aa_init(0, 0, 0);
4422 c = aa_autoinit(&aa_defparams);
4423 p = aa_getrenderparams();
4424 aa_autoinitkbd(c, 0);
4425 return 0; }
4427 _aa=no
4428 for _ld_tmp in "-laa" ; do
4429 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4430 done
4432 if test "$_aa" = yes ; then
4433 def_aa='#define CONFIG_AA 1'
4434 if cygwin ; then
4435 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4437 vomodules="aa $vomodules"
4438 else
4439 def_aa='#undef CONFIG_AA'
4440 novomodules="aa $novomodules"
4442 echores "$_aa"
4445 echocheck "CACA"
4446 if test "$_caca" = auto ; then
4447 _caca=no
4448 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4449 cat > $TMPC << EOF
4450 #include <caca.h>
4451 #ifdef CACA_API_VERSION_1
4452 #include <caca0.h>
4453 #endif
4454 int main(void) { caca_init(); return 0; }
4456 cc_check $(caca-config --libs) && _caca=yes
4459 if test "$_caca" = yes ; then
4460 def_caca='#define CONFIG_CACA 1'
4461 extra_cflags="$extra_cflags $(caca-config --cflags)"
4462 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4463 vomodules="caca $vomodules"
4464 else
4465 def_caca='#undef CONFIG_CACA'
4466 novomodules="caca $novomodules"
4468 echores "$_caca"
4471 echocheck "SVGAlib"
4472 if test "$_svga" = auto ; then
4473 _svga=no
4474 header_check vga.h -lvga $_ld_lm && _svga=yes
4476 if test "$_svga" = yes ; then
4477 def_svga='#define CONFIG_SVGALIB 1'
4478 libs_mplayer="$libs_mplayer -lvga"
4479 vomodules="svga $vomodules"
4480 else
4481 def_svga='#undef CONFIG_SVGALIB'
4482 novomodules="svga $novomodules"
4484 echores "$_svga"
4487 echocheck "FBDev"
4488 if test "$_fbdev" = auto ; then
4489 _fbdev=no
4490 linux && _fbdev=yes
4492 if test "$_fbdev" = yes ; then
4493 def_fbdev='#define CONFIG_FBDEV 1'
4494 vomodules="fbdev $vomodules"
4495 else
4496 def_fbdev='#undef CONFIG_FBDEV'
4497 novomodules="fbdev $novomodules"
4499 echores "$_fbdev"
4503 echocheck "DVB"
4504 if test "$_dvb" = auto ; then
4505 _dvb=no
4506 cat >$TMPC << EOF
4507 #include <poll.h>
4508 #include <sys/ioctl.h>
4509 #include <stdio.h>
4510 #include <time.h>
4511 #include <unistd.h>
4512 #include <linux/dvb/dmx.h>
4513 #include <linux/dvb/frontend.h>
4514 #include <linux/dvb/video.h>
4515 #include <linux/dvb/audio.h>
4516 int main(void) {return 0;}
4518 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4519 cc_check $_inc_tmp && _dvb=yes && \
4520 extra_cflags="$extra_cflags $_inc_tmp" && break
4521 done
4523 echores "$_dvb"
4524 if test "$_dvb" = yes ; then
4525 _dvbin=yes
4526 inputmodules="dvb $inputmodules"
4527 def_dvb='#define CONFIG_DVB 1'
4528 def_dvbin='#define CONFIG_DVBIN 1'
4529 aomodules="mpegpes(dvb) $aomodules"
4530 vomodules="mpegpes(dvb) $vomodules"
4531 else
4532 _dvbin=no
4533 noinputmodules="dvb $noinputmodules"
4534 def_dvb='#undef CONFIG_DVB'
4535 def_dvbin='#undef CONFIG_DVBIN '
4536 aomodules="mpegpes(file) $aomodules"
4537 vomodules="mpegpes(file) $vomodules"
4541 if darwin; then
4543 echocheck "QuickTime"
4544 if test "$quicktime" = auto ; then
4545 cat > $TMPC <<EOF
4546 #include <QuickTime/QuickTime.h>
4547 int main(void) {
4548 ImageDescription *desc;
4549 EnterMovies();
4550 ExitMovies();
4551 return 0;
4554 quicktime=no
4555 cc_check -framework QuickTime && quicktime=yes
4557 if test "$quicktime" = yes ; then
4558 extra_ldflags="$extra_ldflags -framework QuickTime"
4559 def_quicktime='#define CONFIG_QUICKTIME 1'
4560 else
4561 def_quicktime='#undef CONFIG_QUICKTIME'
4562 _quartz=no
4564 echores $quicktime
4566 echocheck "Quartz"
4567 if test "$_quartz" = auto ; then
4568 _quartz=no
4569 function_check Carbon/Carbon.h 'CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false)' -framework Carbon && _quartz=yes
4571 if test "$_quartz" = yes ; then
4572 libs_mplayer="$libs_mplayer -framework Carbon"
4573 def_quartz='#define CONFIG_QUARTZ 1'
4574 vomodules="quartz $vomodules"
4575 else
4576 def_quartz='#undef CONFIG_QUARTZ'
4577 novomodules="quartz $novomodules"
4579 echores $_quartz
4581 echocheck "CoreVideo"
4582 if test "$_corevideo" = auto ; then
4583 cat > $TMPC <<EOF
4584 #include <Carbon/Carbon.h>
4585 #include <CoreServices/CoreServices.h>
4586 #include <OpenGL/OpenGL.h>
4587 #include <QuartzCore/CoreVideo.h>
4588 int main(void) { return 0; }
4590 _corevideo=no
4591 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4593 if test "$_corevideo" = yes ; then
4594 vomodules="corevideo $vomodules"
4595 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4596 def_corevideo='#define CONFIG_COREVIDEO 1'
4597 else
4598 novomodules="corevideo $novomodules"
4599 def_corevideo='#undef CONFIG_COREVIDEO'
4601 echores "$_corevideo"
4603 fi #if darwin
4606 echocheck "PNG support"
4607 if test "$_png" = auto ; then
4608 _png=no
4609 if irix ; then
4610 # Don't check for -lpng on irix since it has its own libpng
4611 # incompatible with the GNU libpng
4612 res_comment="disabled on irix (not GNU libpng)"
4613 else
4614 cat > $TMPC << EOF
4615 #include <stdio.h>
4616 #include <string.h>
4617 #include <png.h>
4618 int main(void) {
4619 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4620 printf("libpng: %s\n", png_libpng_ver);
4621 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4624 cc_check -lpng -lz $_ld_lm && _png=yes
4627 echores "$_png"
4628 if test "$_png" = yes ; then
4629 def_png='#define CONFIG_PNG 1'
4630 extra_ldflags="$extra_ldflags -lpng -lz"
4631 else
4632 def_png='#undef CONFIG_PNG'
4635 echocheck "MNG support"
4636 if test "$_mng" = auto ; then
4637 _mng=no
4638 cat > $TMPC << EOF
4639 #include <libmng.h>
4640 int main(void) {
4641 const char * p_ver = mng_version_text();
4642 return !p_ver || p_ver[0] == 0;
4645 if cc_check -lmng -lz $_ld_lm ; then
4646 _mng=yes
4649 echores "$_mng"
4650 if test "$_mng" = yes ; then
4651 def_mng='#define CONFIG_MNG 1'
4652 extra_ldflags="$extra_ldflags -lmng -lz"
4653 else
4654 def_mng='#undef CONFIG_MNG'
4657 echocheck "JPEG support"
4658 if test "$_jpeg" = auto ; then
4659 _jpeg=no
4660 cat > $TMPC << EOF
4661 #include <stdio.h>
4662 #include <stdlib.h>
4663 #include <setjmp.h>
4664 #include <string.h>
4665 #include <jpeglib.h>
4666 int main(void) { return 0; }
4668 cc_check -ljpeg $_ld_lm && _jpeg=yes
4670 echores "$_jpeg"
4672 if test "$_jpeg" = yes ; then
4673 def_jpeg='#define CONFIG_JPEG 1'
4674 vomodules="jpeg $vomodules"
4675 extra_ldflags="$extra_ldflags -ljpeg"
4676 else
4677 def_jpeg='#undef CONFIG_JPEG'
4678 novomodules="jpeg $novomodules"
4683 echocheck "PNM support"
4684 if test "$_pnm" = yes; then
4685 def_pnm="#define CONFIG_PNM 1"
4686 vomodules="pnm $vomodules"
4687 else
4688 def_pnm="#undef CONFIG_PNM"
4689 novomodules="pnm $novomodules"
4691 echores "$_pnm"
4695 echocheck "GIF support"
4696 # This is to appease people who want to force gif support.
4697 # If it is forced to yes, then we still do checks to determine
4698 # which gif library to use.
4699 if test "$_gif" = yes ; then
4700 _force_gif=yes
4701 _gif=auto
4704 if test "$_gif" = auto ; then
4705 _gif=no
4706 for _ld_gif in "-lungif" "-lgif" ; do
4707 function_check gif_lib.h 'QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0)' $_ld_gif && _gif=yes && break
4708 done
4711 # If no library was found, and the user wants support forced,
4712 # then we force it on with libgif, as this is the safest
4713 # assumption IMHO. (libungif & libregif both create symbolic
4714 # links to libgif. We also assume that no x11 support is needed,
4715 # because if you are forcing this, then you _should_ know what
4716 # you are doing. [ Besides, package maintainers should never
4717 # have compiled x11 deps into libungif in the first place. ] )
4718 # </rant>
4719 # --Joey
4720 if test "$_force_gif" = yes && test "$_gif" = no ; then
4721 _gif=yes
4722 _ld_gif="-lgif"
4725 if test "$_gif" = yes ; then
4726 def_gif='#define CONFIG_GIF 1'
4727 codecmodules="gif $codecmodules"
4728 vomodules="gif89a $vomodules"
4729 res_comment="old version, some encoding functions disabled"
4730 def_gif_4='#undef CONFIG_GIF_4'
4731 extra_ldflags="$extra_ldflags $_ld_gif"
4733 cat > $TMPC << EOF
4734 #include <signal.h>
4735 #include <stdio.h>
4736 #include <stdlib.h>
4737 #include <gif_lib.h>
4738 static void catch(int sig) { exit(1); }
4739 int main(void) {
4740 signal(SIGSEGV, catch); // catch segfault
4741 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4742 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4743 return 0;
4746 if cc_check "$_ld_gif" ; then
4747 def_gif_4='#define CONFIG_GIF_4 1'
4748 res_comment=""
4750 else
4751 def_gif='#undef CONFIG_GIF'
4752 def_gif_4='#undef CONFIG_GIF_4'
4753 novomodules="gif89a $novomodules"
4754 nocodecmodules="gif $nocodecmodules"
4756 echores "$_gif"
4759 case "$_gif" in yes*)
4760 echocheck "broken giflib workaround"
4761 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4763 cat > $TMPC << EOF
4764 #include <stdio.h>
4765 #include <gif_lib.h>
4766 int main(void) {
4767 GifFileType gif = {.UserData = NULL};
4768 printf("UserData is at address %p\n", gif.UserData);
4769 return 0;
4772 if cc_check "$_ld_gif" ; then
4773 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4774 echores "disabled"
4775 else
4776 echores "enabled"
4779 esac
4782 echocheck "VESA support"
4783 if test "$_vesa" = auto ; then
4784 _vesa=no
4785 function_check vbe.h 'vbeInit()' -lvbe -llrmi && _vesa=yes
4787 if test "$_vesa" = yes ; then
4788 def_vesa='#define CONFIG_VESA 1'
4789 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4790 vomodules="vesa $vomodules"
4791 else
4792 def_vesa='#undef CONFIG_VESA'
4793 novomodules="vesa $novomodules"
4795 echores "$_vesa"
4797 #################
4798 # VIDEO + AUDIO #
4799 #################
4802 echocheck "SDL"
4803 _inc_tmp=""
4804 _ld_tmp=""
4805 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4806 if test -z "$_sdlconfig" ; then
4807 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4808 _sdlconfig="sdl-config"
4809 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4810 _sdlconfig="sdl11-config"
4811 else
4812 _sdlconfig=false
4815 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4816 cat > $TMPC << EOF
4817 #ifdef CONFIG_SDL_SDL_H
4818 #include <SDL/SDL.h>
4819 #else
4820 #include <SDL.h>
4821 #endif
4822 #ifndef __APPLE__
4823 // we allow SDL hacking our main() only on OSX
4824 #undef main
4825 #endif
4826 int main(int argc, char *argv[]) {
4827 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4828 return 0;
4831 _sdl=no
4832 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4833 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4834 _sdl=yes
4835 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4836 break
4838 done
4839 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4840 res_comment="using $_sdlconfig"
4841 if cygwin ; then
4842 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4843 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4844 elif mingw32 ; then
4845 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4846 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4847 else
4848 _inc_tmp="$($_sdlconfig --cflags)"
4849 _ld_tmp="$($_sdlconfig --libs)"
4851 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4852 _sdl=yes
4853 elif cc_check $_inc_tmp $_ld_tmp -lstdc++ >>"$TMPLOG" 2>&1 ; then
4854 # HACK for BeOS/Haiku SDL
4855 _ld_tmp="$_ld_tmp -lstdc++"
4856 _sdl=yes
4860 if test "$_sdl" = yes ; then
4861 def_sdl='#define CONFIG_SDL 1'
4862 extra_cflags="$extra_cflags $_inc_tmp"
4863 libs_mplayer="$libs_mplayer $_ld_tmp"
4864 vomodules="sdl $vomodules"
4865 aomodules="sdl $aomodules"
4866 else
4867 def_sdl='#undef CONFIG_SDL'
4868 novomodules="sdl $novomodules"
4869 noaomodules="sdl $noaomodules"
4871 echores "$_sdl"
4874 # make sure this stays below CoreVideo to avoid issues due to namespace
4875 # conflicts between -lGL and -framework OpenGL
4876 echocheck "OpenGL"
4877 #Note: this test is run even with --enable-gl since we autodetect linker flags
4878 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
4879 cat > $TMPC << EOF
4880 #ifdef GL_WIN32
4881 #include <windows.h>
4882 #include <GL/gl.h>
4883 #elif defined(GL_SDL)
4884 #include <GL/gl.h>
4885 #ifdef CONFIG_SDL_SDL_H
4886 #include <SDL/SDL.h>
4887 #else
4888 #include <SDL.h>
4889 #endif
4890 #ifndef __APPLE__
4891 // we allow SDL hacking our main() only on OSX
4892 #undef main
4893 #endif
4894 #else
4895 #include <GL/gl.h>
4896 #include <X11/Xlib.h>
4897 #include <GL/glx.h>
4898 #endif
4899 int main(int argc, char *argv[]) {
4900 #ifdef GL_WIN32
4901 HDC dc;
4902 wglCreateContext(dc);
4903 #elif defined(GL_SDL)
4904 SDL_GL_SwapBuffers();
4905 #else
4906 glXCreateContext(NULL, NULL, NULL, True);
4907 #endif
4908 glFinish();
4909 return 0;
4912 _gl=no
4913 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4914 if cc_check $_ld_tmp $_ld_lm ; then
4915 _gl=yes
4916 _gl_x11=yes
4917 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4918 break
4920 done
4921 if cc_check -DGL_WIN32 -lopengl32 ; then
4922 _gl=yes
4923 _gl_win32=yes
4924 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4926 # last so it can reuse any linker etc. flags detected before
4927 if test "$_sdl" = yes ; then
4928 if cc_check -DGL_SDL ||
4929 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
4930 _gl=yes
4931 _gl_sdl=yes
4932 elif cc_check -DGL_SDL -lGL ||
4933 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
4934 _gl=yes
4935 _gl_sdl=yes
4936 libs_mplayer="$libs_mplayer -lGL"
4939 else
4940 _gl=no
4942 if test "$_gl" = yes ; then
4943 def_gl='#define CONFIG_GL 1'
4944 res_comment="backends:"
4945 if test "$_gl_win32" = yes ; then
4946 def_gl_win32='#define CONFIG_GL_WIN32 1'
4947 res_comment="$res_comment win32"
4949 if test "$_gl_x11" = yes ; then
4950 def_gl_x11='#define CONFIG_GL_X11 1'
4951 res_comment="$res_comment x11"
4953 if test "$_gl_sdl" = yes ; then
4954 def_gl_sdl='#define CONFIG_GL_SDL 1'
4955 res_comment="$res_comment sdl"
4957 vomodules="opengl $vomodules"
4958 else
4959 def_gl='#undef CONFIG_GL'
4960 def_gl_win32='#undef CONFIG_GL_WIN32'
4961 def_gl_x11='#undef CONFIG_GL_X11'
4962 def_gl_sdl='#undef CONFIG_GL_SDL'
4963 novomodules="opengl $novomodules"
4965 echores "$_gl"
4968 echocheck "MatrixView"
4969 if test "$_gl" = no ; then
4970 matrixview=no
4972 if test "$matrixview" = yes ; then
4973 vomodules="matrixview $vomodules"
4974 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4975 else
4976 novomodules="matrixview $novomodules"
4977 def_matrixview='#undef CONFIG_MATRIXVIEW'
4979 echores "$matrixview"
4982 if os2 ; then
4983 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
4984 if test "$_kva" = auto; then
4985 _kva=no;
4986 header_check_broken os2.h kva.h -lkva && _kva=yes
4988 if test "$_kva" = yes ; then
4989 def_kva='#define CONFIG_KVA 1'
4990 libs_mplayer="$libs_mplayer -lkva"
4991 vomodules="kva $vomodules"
4992 else
4993 def_kva='#undef CONFIG_KVA'
4994 novomodules="kva $novomodules"
4996 echores "$_kva"
4997 fi #if os2
5000 if win32; then
5002 echocheck "Windows waveout"
5003 if test "$_win32waveout" = auto ; then
5004 cat > $TMPC << EOF
5005 #include <windows.h>
5006 #include <mmsystem.h>
5007 int main(void) { return 0; }
5009 _win32waveout=no
5010 cc_check -lwinmm && _win32waveout=yes
5012 if test "$_win32waveout" = yes ; then
5013 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5014 libs_mplayer="$libs_mplayer -lwinmm"
5015 aomodules="win32 $aomodules"
5016 else
5017 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5018 noaomodules="win32 $noaomodules"
5020 echores "$_win32waveout"
5022 echocheck "Direct3D"
5023 if test "$_direct3d" = auto ; then
5024 cat > $TMPC << EOF
5025 #include <windows.h>
5026 #include <d3d9.h>
5027 int main(void) { return 0; }
5029 _direct3d=no
5030 cc_check && _direct3d=yes
5032 if test "$_direct3d" = yes ; then
5033 def_direct3d='#define CONFIG_DIRECT3D 1'
5034 vomodules="direct3d $vomodules"
5035 else
5036 def_direct3d='#undef CONFIG_DIRECT3D'
5037 novomodules="direct3d $novomodules"
5039 echores "$_direct3d"
5041 echocheck "Directx"
5042 if test "$_directx" = auto ; then
5043 cat > $TMPC << EOF
5044 #include <windows.h>
5045 #include <ddraw.h>
5046 #include <dsound.h>
5047 int main(void) { return 0; }
5049 _directx=no
5050 cc_check -lgdi32 && _directx=yes
5052 if test "$_directx" = yes ; then
5053 def_directx='#define CONFIG_DIRECTX 1'
5054 libs_mplayer="$libs_mplayer -lgdi32"
5055 vomodules="directx $vomodules"
5056 aomodules="dsound $aomodules"
5057 else
5058 def_directx='#undef CONFIG_DIRECTX'
5059 novomodules="directx $novomodules"
5060 noaomodules="dsound $noaomodules"
5062 echores "$_directx"
5064 fi #if win32; then
5067 echocheck "DXR2"
5068 if test "$_dxr2" = auto; then
5069 _dxr2=no
5070 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5071 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5072 extra_cflags="$extra_cflags $_inc_tmp" && break
5073 done
5075 if test "$_dxr2" = yes; then
5076 def_dxr2='#define CONFIG_DXR2 1'
5077 aomodules="dxr2 $aomodules"
5078 vomodules="dxr2 $vomodules"
5079 else
5080 def_dxr2='#undef CONFIG_DXR2'
5081 noaomodules="dxr2 $noaomodules"
5082 novomodules="dxr2 $novomodules"
5084 echores "$_dxr2"
5086 echocheck "DXR3/H+"
5087 if test "$_dxr3" = auto ; then
5088 _dxr3=no
5089 header_check linux/em8300.h && _dxr3=yes
5091 if test "$_dxr3" = yes ; then
5092 def_dxr3='#define CONFIG_DXR3 1'
5093 vomodules="dxr3 $vomodules"
5094 else
5095 def_dxr3='#undef CONFIG_DXR3'
5096 novomodules="dxr3 $novomodules"
5098 echores "$_dxr3"
5101 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5102 if test "$_ivtv" = auto ; then
5103 cat > $TMPC << EOF
5104 #include <stdlib.h>
5105 #include <inttypes.h>
5106 #include <linux/types.h>
5107 #include <linux/videodev2.h>
5108 #include <linux/ivtv.h>
5109 #include <sys/ioctl.h>
5110 int main(void) {
5111 struct ivtv_cfg_stop_decode sd;
5112 struct ivtv_cfg_start_decode sd1;
5113 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5114 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5115 return 0; }
5117 _ivtv=no
5118 cc_check && _ivtv=yes
5120 if test "$_ivtv" = yes ; then
5121 def_ivtv='#define CONFIG_IVTV 1'
5122 vomodules="ivtv $vomodules"
5123 aomodules="ivtv $aomodules"
5124 else
5125 def_ivtv='#undef CONFIG_IVTV'
5126 novomodules="ivtv $novomodules"
5127 noaomodules="ivtv $noaomodules"
5129 echores "$_ivtv"
5132 echocheck "V4L2 MPEG Decoder"
5133 if test "$_v4l2" = auto ; then
5134 cat > $TMPC << EOF
5135 #include <stdlib.h>
5136 #include <inttypes.h>
5137 #include <linux/types.h>
5138 #include <linux/videodev2.h>
5139 #include <linux/version.h>
5140 int main(void) {
5141 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5142 #error kernel headers too old, need 2.6.22
5143 #endif
5144 struct v4l2_ext_controls ctrls;
5145 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5146 return 0;
5149 _v4l2=no
5150 cc_check && _v4l2=yes
5152 if test "$_v4l2" = yes ; then
5153 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5154 vomodules="v4l2 $vomodules"
5155 aomodules="v4l2 $aomodules"
5156 else
5157 def_v4l2='#undef CONFIG_V4L2_DECODER'
5158 novomodules="v4l2 $novomodules"
5159 noaomodules="v4l2 $noaomodules"
5161 echores "$_v4l2"
5165 #########
5166 # AUDIO #
5167 #########
5170 echocheck "OSS Audio"
5171 if test "$_ossaudio" = auto ; then
5172 cat > $TMPC << EOF
5173 #include <$_soundcard_header>
5174 int main(void) { return SNDCTL_DSP_SETFRAGMENT; }
5176 _ossaudio=no
5177 cc_check && _ossaudio=yes
5179 if test "$_ossaudio" = yes ; then
5180 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5181 aomodules="oss $aomodules"
5182 cat > $TMPC << EOF
5183 #include <$_soundcard_header>
5184 #ifdef OPEN_SOUND_SYSTEM
5185 int main(void) { return 0; }
5186 #else
5187 #error Not the real thing
5188 #endif
5190 _real_ossaudio=no
5191 cc_check && _real_ossaudio=yes
5192 if test "$_real_ossaudio" = yes; then
5193 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5194 # Check for OSS4 headers (override default headers)
5195 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5196 if test -f /etc/oss.conf; then
5197 . /etc/oss.conf
5198 _ossinc="$OSSLIBDIR/include"
5199 if test -f "$_ossinc/sys/soundcard.h"; then
5200 extra_cflags="-I$_ossinc $extra_cflags"
5203 elif netbsd || openbsd ; then
5204 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5205 extra_ldflags="$extra_ldflags -lossaudio"
5206 else
5207 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5209 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5210 else
5211 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5212 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5213 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5214 noaomodules="oss $noaomodules"
5216 echores "$_ossaudio"
5219 echocheck "aRts"
5220 if test "$_arts" = auto ; then
5221 _arts=no
5222 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5223 function_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
5224 _arts=yes
5228 if test "$_arts" = yes ; then
5229 def_arts='#define CONFIG_ARTS 1'
5230 aomodules="arts $aomodules"
5231 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5232 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5233 else
5234 noaomodules="arts $noaomodules"
5236 echores "$_arts"
5239 echocheck "EsounD"
5240 if test "$_esd" = auto ; then
5241 _esd=no
5242 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5243 function_check esd.h 'esd_open_sound("test")' $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5246 echores "$_esd"
5248 if test "$_esd" = yes ; then
5249 def_esd='#define CONFIG_ESD 1'
5250 aomodules="esd $aomodules"
5251 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5252 extra_cflags="$extra_cflags $(esd-config --cflags)"
5254 echocheck "esd_get_latency()"
5255 function_check esd.h 'esd_get_latency(0)' $(esd-config --libs) $(esd-config --cflags) &&
5256 _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5257 echores "$_esd_latency"
5258 else
5259 def_esd='#undef CONFIG_ESD'
5260 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5261 noaomodules="esd $noaomodules"
5265 echocheck "NAS"
5266 if test "$_nas" = auto ; then
5267 _nas=no
5268 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5270 if test "$_nas" = yes ; then
5271 def_nas='#define CONFIG_NAS 1'
5272 libs_mplayer="$libs_mplayer -laudio -lXt"
5273 aomodules="nas $aomodules"
5274 else
5275 noaomodules="nas $noaomodules"
5276 def_nas='#undef CONFIG_NAS'
5278 echores "$_nas"
5281 echocheck "pulse"
5282 if test "$_pulse" = auto ; then
5283 _pulse=no
5284 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5285 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5286 _pulse=yes
5289 echores "$_pulse"
5291 if test "$_pulse" = yes ; then
5292 def_pulse='#define CONFIG_PULSE 1'
5293 aomodules="pulse $aomodules"
5294 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5295 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5296 else
5297 def_pulse='#undef CONFIG_PULSE'
5298 noaomodules="pulse $noaomodules"
5302 echocheck "JACK"
5303 if test "$_jack" = auto ; then
5304 _jack=yes
5305 if function_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' -ljack ; then
5306 libs_mplayer="$libs_mplayer -ljack"
5307 elif function_check jack/jack.h 'jack_client_open("test", JackUseExactName, NULL)' $($_pkg_config --libs --cflags --silence-errors jack) ; then
5308 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5309 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5310 else
5311 _jack=no
5315 if test "$_jack" = yes ; then
5316 def_jack='#define CONFIG_JACK 1'
5317 aomodules="jack $aomodules"
5318 else
5319 noaomodules="jack $noaomodules"
5321 echores "$_jack"
5323 echocheck "OpenAL"
5324 if test "$_openal" = auto ; then
5325 _openal=no
5326 cat > $TMPC << EOF
5327 #ifdef OPENAL_AL_H
5328 #include <OpenAL/al.h>
5329 #else
5330 #include <AL/al.h>
5331 #endif
5332 int main(void) {
5333 alSourceQueueBuffers(0, 0, 0);
5334 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5335 return 0;
5338 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5339 cc_check $I && _openal=yes && break
5340 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5341 done
5342 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5344 if test "$_openal" = yes ; then
5345 def_openal='#define CONFIG_OPENAL 1'
5346 aomodules="openal $aomodules"
5347 else
5348 noaomodules="openal $noaomodules"
5350 echores "$_openal"
5352 echocheck "ALSA audio"
5353 if test "$_alloca" != yes ; then
5354 _alsa=no
5355 res_comment="alloca missing"
5357 if test "$_alsa" != no ; then
5358 _alsa=no
5359 cat > $TMPC << EOF
5360 #include <sys/asoundlib.h>
5361 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5362 #error "alsa version != 0.5.x"
5363 #endif
5364 int main(void) { return 0; }
5366 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5368 cat > $TMPC << EOF
5369 #include <sys/asoundlib.h>
5370 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5371 #error "alsa version != 0.9.x"
5372 #endif
5373 int main(void) { return 0; }
5375 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5376 cat > $TMPC << EOF
5377 #include <alsa/asoundlib.h>
5378 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5379 #error "alsa version != 0.9.x"
5380 #endif
5381 int main(void) { return 0; }
5383 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5385 cat > $TMPC << EOF
5386 #include <sys/asoundlib.h>
5387 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5388 #error "alsa version != 1.0.x"
5389 #endif
5390 int main(void) { return 0; }
5392 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5393 cat > $TMPC << EOF
5394 #include <alsa/asoundlib.h>
5395 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5396 #error "alsa version != 1.0.x"
5397 #endif
5398 int main(void) { return 0; }
5400 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5402 def_alsa='#undef CONFIG_ALSA'
5403 def_alsa5='#undef CONFIG_ALSA5'
5404 def_alsa9='#undef CONFIG_ALSA9'
5405 def_alsa1x='#undef CONFIG_ALSA1X'
5406 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5407 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5408 if test "$_alsaver" ; then
5409 _alsa=yes
5410 if test "$_alsaver" = '0.5.x' ; then
5411 _alsa5=yes
5412 aomodules="alsa5 $aomodules"
5413 def_alsa5='#define CONFIG_ALSA5 1'
5414 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5415 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5416 elif test "$_alsaver" = '0.9.x-sys' ; then
5417 _alsa9=yes
5418 aomodules="alsa $aomodules"
5419 def_alsa='#define CONFIG_ALSA 1'
5420 def_alsa9='#define CONFIG_ALSA9 1'
5421 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5422 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5423 elif test "$_alsaver" = '0.9.x-alsa' ; then
5424 _alsa9=yes
5425 aomodules="alsa $aomodules"
5426 def_alsa='#define CONFIG_ALSA 1'
5427 def_alsa9='#define CONFIG_ALSA9 1'
5428 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5429 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5430 elif test "$_alsaver" = '1.0.x-sys' ; then
5431 _alsa1x=yes
5432 aomodules="alsa $aomodules"
5433 def_alsa='#define CONFIG_ALSA 1'
5434 def_alsa1x="#define CONFIG_ALSA1X 1"
5435 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5436 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5437 elif test "$_alsaver" = '1.0.x-alsa' ; then
5438 _alsa1x=yes
5439 aomodules="alsa $aomodules"
5440 def_alsa='#define CONFIG_ALSA 1'
5441 def_alsa1x="#define CONFIG_ALSA1X 1"
5442 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5443 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5444 else
5445 _alsa=no
5446 res_comment="unknown version"
5448 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5449 else
5450 noaomodules="alsa $noaomodules"
5452 echores "$_alsa"
5455 echocheck "Sun audio"
5456 if test "$_sunaudio" = auto ; then
5457 cat > $TMPC << EOF
5458 #include <sys/types.h>
5459 #include <sys/audioio.h>
5460 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5462 _sunaudio=no
5463 cc_check && _sunaudio=yes
5465 if test "$_sunaudio" = yes ; then
5466 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5467 aomodules="sun $aomodules"
5468 else
5469 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5470 noaomodules="sun $noaomodules"
5472 echores "$_sunaudio"
5475 def_mlib='#define CONFIG_MLIB 0'
5476 if sunos; then
5477 echocheck "Sun mediaLib"
5478 if test "$_mlib" = auto ; then
5479 _mlib=no
5480 cc_check mlib.h "mlib_VideoColorYUV2ABGR420(0, 0, 0, 0, 0, 0, 0, 0, 0)" -lmlib &&
5481 _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5483 echores "$_mlib"
5484 fi #if sunos
5487 if darwin; then
5488 echocheck "CoreAudio"
5489 if test "$_coreaudio" = auto ; then
5490 cat > $TMPC <<EOF
5491 #include <CoreAudio/CoreAudio.h>
5492 #include <AudioToolbox/AudioToolbox.h>
5493 #include <AudioUnit/AudioUnit.h>
5494 int main(void) { return 0; }
5496 _coreaudio=no
5497 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5499 if test "$_coreaudio" = yes ; then
5500 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5501 def_coreaudio='#define CONFIG_COREAUDIO 1'
5502 aomodules="coreaudio $aomodules"
5503 else
5504 def_coreaudio='#undef CONFIG_COREAUDIO'
5505 noaomodules="coreaudio $noaomodules"
5507 echores $_coreaudio
5508 fi #if darwin
5511 if irix; then
5512 echocheck "SGI audio"
5513 if test "$_sgiaudio" = auto ; then
5514 _sgiaudio=no
5515 header_check dmedia/audio.h && _sgiaudio=yes
5517 if test "$_sgiaudio" = "yes" ; then
5518 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5519 libs_mplayer="$libs_mplayer -laudio"
5520 aomodules="sgi $aomodules"
5521 else
5522 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5523 noaomodules="sgi $noaomodules"
5525 echores "$_sgiaudio"
5526 fi #if irix
5529 if os2 ; then
5530 echocheck "KAI (UNIAUD/DART)"
5531 if test "$_kai" = auto; then
5532 _kai=no;
5533 header_check_broken os2.h kai.h -lkai && _kai=yes
5535 if test "$_kai" = yes ; then
5536 def_kai='#define CONFIG_KAI 1'
5537 libs_mplayer="$libs_mplayer -lkai"
5538 aomodules="kai $aomodules"
5539 else
5540 def_kai='#undef CONFIG_KAI'
5541 noaomodules="kai $noaomodules"
5543 echores "$_kai"
5545 echocheck "DART"
5546 if test "$_dart" = auto; then
5547 _dart=no;
5548 header_check_broken os2.h dart.h -ldart && _dart=yes
5550 if test "$_dart" = yes ; then
5551 def_dart='#define CONFIG_DART 1'
5552 libs_mplayer="$libs_mplayer -ldart"
5553 aomodules="dart $aomodules"
5554 else
5555 def_dart='#undef CONFIG_DART'
5556 noaomodules="dart $noaomodules"
5558 echores "$_dart"
5559 fi #if os2
5562 # set default CD/DVD devices
5563 if win32 || os2 ; then
5564 default_cdrom_device="D:"
5565 elif darwin ; then
5566 default_cdrom_device="/dev/disk1"
5567 elif dragonfly ; then
5568 default_cdrom_device="/dev/cd0"
5569 elif freebsd ; then
5570 default_cdrom_device="/dev/acd0"
5571 elif openbsd ; then
5572 default_cdrom_device="/dev/rcd0c"
5573 elif sunos ; then
5574 default_cdrom_device="/vol/dev/aliases/cdrom0"
5575 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5576 # file system and the volfs service.
5577 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5578 elif amigaos ; then
5579 default_cdrom_device="a1ide.device:2"
5580 else
5581 default_cdrom_device="/dev/cdrom"
5584 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5585 default_dvd_device=$default_cdrom_device
5586 elif darwin ; then
5587 default_dvd_device="/dev/rdiskN"
5588 else
5589 default_dvd_device="/dev/dvd"
5593 echocheck "VCD support"
5594 if test "$_vcd" = auto; then
5595 _vcd=no
5596 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5597 _vcd=yes
5598 elif mingw32; then
5599 header_check ddk/ntddcdrm.h && _vcd=yes
5602 if test "$_vcd" = yes; then
5603 inputmodules="vcd $inputmodules"
5604 def_vcd='#define CONFIG_VCD 1'
5605 else
5606 def_vcd='#undef CONFIG_VCD'
5607 noinputmodules="vcd $noinputmodules"
5608 res_comment="not supported on this OS"
5610 echores "$_vcd"
5614 echocheck "Blu-ray support"
5615 if test "$_bluray" = auto ; then
5616 _bluray=no
5618 cat > $TMPC << EOF
5619 #include <stdlib.h>
5620 #include <libbluray/bluray.h>
5621 int main(void) { BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0); return 0; }
5623 compile_check $TMPC -lbluray && _bluray=yes
5625 if test "$_bluray" = yes ; then
5626 def_bluray='#define CONFIG_LIBBLURAY 1'
5627 extra_ldflags="$extra_ldflags -lbluray"
5628 inputmodules="bluray $inputmodules"
5629 else
5630 def_bluray='#undef CONFIG_LIBBLURAY'
5631 noinputmodules="bluray $noinputmodules"
5633 echores "$_bluray"
5635 echocheck "dvdread"
5636 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5637 _dvdread_internal=no
5639 if test "$_dvdread_internal" = auto ; then
5640 _dvdread_internal=no
5641 _dvdread=no
5642 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5643 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5644 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5645 || darwin || win32 || os2; then
5646 _dvdread_internal=yes
5647 _dvdread=yes
5648 extra_cflags="-Ilibdvdread4 $extra_cflags"
5650 elif test "$_dvdread" = auto ; then
5651 _dvdread=no
5652 if test "$_dl" = yes; then
5653 _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
5654 _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
5655 if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5656 _dvdread=yes
5657 extra_cflags="$extra_cflags $_dvdreadcflags"
5658 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5659 res_comment="external"
5664 if test "$_dvdread_internal" = yes; then
5665 def_dvdread='#define CONFIG_DVDREAD 1'
5666 inputmodules="dvdread(internal) $inputmodules"
5667 _largefiles=yes
5668 res_comment="internal"
5669 elif test "$_dvdread" = yes; then
5670 def_dvdread='#define CONFIG_DVDREAD 1'
5671 _largefiles=yes
5672 extra_ldflags="$extra_ldflags -ldvdread"
5673 inputmodules="dvdread(external) $inputmodules"
5674 res_comment="external"
5675 else
5676 def_dvdread='#undef CONFIG_DVDREAD'
5677 noinputmodules="dvdread $noinputmodules"
5679 echores "$_dvdread"
5682 echocheck "internal libdvdcss"
5683 if test "$_libdvdcss_internal" = auto ; then
5684 _libdvdcss_internal=no
5685 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5686 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5688 if test "$_libdvdcss_internal" = yes ; then
5689 if linux || netbsd || openbsd || bsdos ; then
5690 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5691 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5692 elif freebsd || dragonfly ; then
5693 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5694 elif darwin ; then
5695 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5696 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5697 elif cygwin ; then
5698 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5699 elif beos ; then
5700 cflags_libdvdcss="-DSYS_BEOS"
5701 elif os2 ; then
5702 cflags_libdvdcss="-DSYS_OS2"
5704 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5705 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5706 inputmodules="libdvdcss(internal) $inputmodules"
5707 _largefiles=yes
5708 else
5709 noinputmodules="libdvdcss(internal) $noinputmodules"
5711 echores "$_libdvdcss_internal"
5714 echocheck "cdparanoia"
5715 if test "$_cdparanoia" = auto ; then
5716 cat > $TMPC <<EOF
5717 #include <cdda_interface.h>
5718 #include <cdda_paranoia.h>
5719 // This need a better test. How ?
5720 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5722 _cdparanoia=no
5723 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5724 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5725 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5726 done
5728 if test "$_cdparanoia" = yes ; then
5729 _cdda='yes'
5730 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5731 openbsd && extra_ldflags="$extra_ldflags -lutil"
5733 echores "$_cdparanoia"
5736 echocheck "libcdio"
5737 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5738 cat > $TMPC << EOF
5739 #include <stdio.h>
5740 #include <cdio/version.h>
5741 #include <cdio/cdda.h>
5742 #include <cdio/paranoia.h>
5743 int main(void) {
5744 void *test = cdda_verbose_set;
5745 printf("%s\n", CDIO_VERSION);
5746 return test == (void *)1;
5749 _libcdio=no
5750 for _ld_tmp in "" "-lwinmm" ; do
5751 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5752 cc_check $_ld_tmp $_ld_lm \
5753 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5754 done
5755 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5756 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5757 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5758 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5759 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5762 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5763 _cdda='yes'
5764 def_libcdio='#define CONFIG_LIBCDIO 1'
5765 def_havelibcdio='yes'
5766 else
5767 if test "$_cdparanoia" = yes ; then
5768 res_comment="using cdparanoia"
5770 def_libcdio='#undef CONFIG_LIBCDIO'
5771 def_havelibcdio='no'
5773 echores "$_libcdio"
5775 if test "$_cdda" = yes ; then
5776 test $_cddb = auto && test $networking = yes && _cddb=yes
5777 def_cdparanoia='#define CONFIG_CDDA 1'
5778 inputmodules="cdda $inputmodules"
5779 else
5780 def_cdparanoia='#undef CONFIG_CDDA'
5781 noinputmodules="cdda $noinputmodules"
5784 if test "$_cddb" = yes ; then
5785 def_cddb='#define CONFIG_CDDB 1'
5786 inputmodules="cddb $inputmodules"
5787 else
5788 _cddb=no
5789 def_cddb='#undef CONFIG_CDDB'
5790 noinputmodules="cddb $noinputmodules"
5793 echocheck "bitmap font support"
5794 if test "$_bitmap_font" = yes ; then
5795 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5796 else
5797 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5799 echores "$_bitmap_font"
5802 echocheck "freetype >= 2.0.9"
5804 # freetype depends on iconv
5805 if test "$_iconv" = no ; then
5806 _freetype=no
5807 res_comment="iconv support needed"
5810 if test "$_freetype" = auto ; then
5811 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5812 cat > $TMPC << EOF
5813 #include <stdio.h>
5814 #include <ft2build.h>
5815 #include FT_FREETYPE_H
5816 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5817 #error "Need FreeType 2.0.9 or newer"
5818 #endif
5819 int main(void) {
5820 FT_Library library;
5821 FT_Init_FreeType(&library);
5822 return 0;
5825 _freetype=no
5826 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5827 else
5828 _freetype=no
5831 if test "$_freetype" = yes ; then
5832 def_freetype='#define CONFIG_FREETYPE 1'
5833 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5834 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5835 else
5836 def_freetype='#undef CONFIG_FREETYPE'
5838 echores "$_freetype"
5840 if test "$_freetype" = no ; then
5841 _fontconfig=no
5842 res_comment="FreeType support needed"
5844 echocheck "fontconfig"
5845 if test "$_fontconfig" = auto ; then
5846 cat > $TMPC << EOF
5847 #include <stdio.h>
5848 #include <stdlib.h>
5849 #include <fontconfig/fontconfig.h>
5850 #if FC_VERSION < 20402
5851 #error At least version 2.4.2 of fontconfig required
5852 #endif
5853 int main(void) {
5854 int err = FcInit();
5855 if (err == FcFalse) {
5856 printf("Couldn't initialize fontconfig lib\n");
5857 exit(err);
5859 return 0;
5862 _fontconfig=no
5863 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
5864 _ld_tmp="-lfontconfig $_ld_tmp"
5865 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5866 done
5867 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5868 _inc_tmp=$($_pkg_config --cflags fontconfig)
5869 _ld_tmp=$($_pkg_config --libs fontconfig)
5870 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5871 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5874 if test "$_fontconfig" = yes ; then
5875 def_fontconfig='#define CONFIG_FONTCONFIG 1'
5876 else
5877 def_fontconfig='#undef CONFIG_FONTCONFIG'
5879 echores "$_fontconfig"
5882 echocheck "SSA/ASS support"
5883 if test "$_ass" = auto -o "$_ass" = yes ; then
5884 if $_pkg_config libass; then
5885 _ass=yes
5886 def_ass='#define CONFIG_ASS 1'
5887 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
5888 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
5889 else
5890 _ass=no
5891 def_ass='#undef CONFIG_ASS'
5893 else
5894 def_ass='#undef CONFIG_ASS'
5896 echores "$_ass"
5899 echocheck "fribidi with charsets"
5900 _inc_tmp=""
5901 _ld_tmp=""
5902 if test "$_fribidi" = auto ; then
5903 cat > $TMPC << EOF
5904 #include <stdlib.h>
5905 /* workaround for fribidi 0.10.4 and below */
5906 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5907 #include <fribidi/fribidi.h>
5908 int main(void) {
5909 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
5910 exit(1);
5911 return 0;
5914 _fribidi=no
5915 _inc_tmp=""
5916 _ld_tmp="-lfribidi"
5917 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5918 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
5919 test "$_fribidi" = no ; then
5920 _inc_tmp="$($_pkg_config --cflags)"
5921 _ld_tmp="$($_pkg_config --libs)"
5922 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
5925 if test "$_fribidi" = yes ; then
5926 def_fribidi='#define CONFIG_FRIBIDI 1'
5927 extra_cflags="$extra_cflags $_inc_tmp"
5928 extra_ldflags="$extra_ldflags $_ld_tmp"
5929 else
5930 def_fribidi='#undef CONFIG_FRIBIDI'
5932 echores "$_fribidi"
5935 echocheck "ENCA"
5936 if test "$_enca" = auto ; then
5937 cat > $TMPC << EOF
5938 #include <sys/types.h>
5939 #include <enca.h>
5940 int main(void) {
5941 const char **langs;
5942 size_t langcnt;
5943 langs = enca_get_languages(&langcnt);
5944 return 0;
5947 _enca=no
5948 cc_check -lenca $_ld_lm && _enca=yes
5950 if test "$_enca" = yes ; then
5951 def_enca='#define CONFIG_ENCA 1'
5952 extra_ldflags="$extra_ldflags -lenca"
5953 else
5954 def_enca='#undef CONFIG_ENCA'
5956 echores "$_enca"
5959 echocheck "zlib"
5960 _zlib=no
5961 function_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
5962 if test "$_zlib" = yes ; then
5963 def_zlib='#define CONFIG_ZLIB 1'
5964 extra_ldflags="$extra_ldflags -lz"
5965 else
5966 def_zlib='#define CONFIG_ZLIB 0'
5968 echores "$_zlib"
5971 echocheck "bzlib"
5972 bzlib=no
5973 def_bzlib='#define CONFIG_BZLIB 0'
5974 function_check bzlib.h 'BZ2_bzlibVersion()' -lbz2 && bzlib=yes
5975 if test "$bzlib" = yes ; then
5976 def_bzlib='#define CONFIG_BZLIB 1'
5977 extra_ldflags="$extra_ldflags -lbz2"
5979 echores "$bzlib"
5982 echocheck "RTC"
5983 if test "$_rtc" = auto ; then
5984 cat > $TMPC << EOF
5985 #include <sys/ioctl.h>
5986 #ifdef __linux__
5987 #include <linux/rtc.h>
5988 #else
5989 #include <rtc.h>
5990 #define RTC_PIE_ON RTCIO_PIE_ON
5991 #endif
5992 int main(void) { return RTC_PIE_ON; }
5994 _rtc=no
5995 cc_check && _rtc=yes
5996 ppc && _rtc=no
5998 if test "$_rtc" = yes ; then
5999 def_rtc='#define HAVE_RTC 1'
6000 else
6001 def_rtc='#undef HAVE_RTC'
6003 echores "$_rtc"
6006 echocheck "liblzo2 support"
6007 if test "$_liblzo" = auto ; then
6008 _liblzo=no
6009 function_check lzo/lzo1x.h 'lzo_init()' -llzo2 && _liblzo=yes
6011 if test "$_liblzo" = yes ; then
6012 def_liblzo='#define CONFIG_LIBLZO 1'
6013 extra_ldflags="$extra_ldflags -llzo2"
6014 codecmodules="liblzo $codecmodules"
6015 else
6016 def_liblzo='#undef CONFIG_LIBLZO'
6017 nocodecmodules="liblzo $nocodecmodules"
6019 echores "$_liblzo"
6022 echocheck "mad support"
6023 if test "$_mad" = auto ; then
6024 _mad=no
6025 header_check mad.h -lmad && _mad=yes
6027 if test "$_mad" = yes ; then
6028 def_mad='#define CONFIG_LIBMAD 1'
6029 extra_ldflags="$extra_ldflags -lmad"
6030 codecmodules="libmad $codecmodules"
6031 else
6032 def_mad='#undef CONFIG_LIBMAD'
6033 nocodecmodules="libmad $nocodecmodules"
6035 echores "$_mad"
6037 echocheck "Twolame"
6038 if test "$_twolame" = auto ; then
6039 _twolame=no
6040 function_check twolame.h 'twolame_init()' -ltwolame $_ld_lm && _twolame=yes
6042 if test "$_twolame" = yes ; then
6043 def_twolame='#define CONFIG_TWOLAME 1'
6044 libs_mencoder="$libs_mencoder -ltwolame"
6045 codecmodules="twolame $codecmodules"
6046 else
6047 def_twolame='#undef CONFIG_TWOLAME'
6048 nocodecmodules="twolame $nocodecmodules"
6050 echores "$_twolame"
6052 echocheck "Toolame"
6053 if test "$_toolame" = auto ; then
6054 _toolame=no
6055 if test "$_twolame" = yes ; then
6056 res_comment="disabled by twolame"
6057 else
6058 function_check toolame.h 'toolame_init()' -ltoolame $_ld_lm && _toolame=yes
6061 if test "$_toolame" = yes ; then
6062 def_toolame='#define CONFIG_TOOLAME 1'
6063 libs_mencoder="$libs_mencoder -ltoolame"
6064 codecmodules="toolame $codecmodules"
6065 else
6066 def_toolame='#undef CONFIG_TOOLAME'
6067 nocodecmodules="toolame $nocodecmodules"
6069 if test "$_toolamedir" ; then
6070 res_comment="using $_toolamedir"
6072 echores "$_toolame"
6074 echocheck "OggVorbis support"
6075 if test "$_tremor_internal" = yes; then
6076 _libvorbis=no
6077 elif test "$_tremor" = auto; then
6078 _tremor=no
6079 function_check tremor/ivorbiscodec.h 'vorbis_packet_blocksize(0, 0)' -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6081 if test "$_libvorbis" = auto; then
6082 _libvorbis=no
6083 function_check vorbis/codec.h 'vorbis_packet_blocksize(0, 0)' -lvorbis -logg $_ld_lm && _libvorbis=yes
6085 if test "$_tremor_internal" = yes ; then
6086 _vorbis=yes
6087 def_vorbis='#define CONFIG_OGGVORBIS 1'
6088 def_tremor='#define CONFIG_TREMOR 1'
6089 codecmodules="tremor(internal) $codecmodules"
6090 res_comment="internal Tremor"
6091 if test "$_tremor_low" = yes ; then
6092 cflags_tremor_low="-D_LOW_ACCURACY_"
6093 res_comment="internal low accuracy Tremor"
6095 elif test "$_tremor" = yes ; then
6096 _vorbis=yes
6097 def_vorbis='#define CONFIG_OGGVORBIS 1'
6098 def_tremor='#define CONFIG_TREMOR 1'
6099 codecmodules="tremor(external) $codecmodules"
6100 res_comment="external Tremor"
6101 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6102 elif test "$_libvorbis" = yes ; then
6103 _vorbis=yes
6104 def_vorbis='#define CONFIG_OGGVORBIS 1'
6105 codecmodules="libvorbis $codecmodules"
6106 res_comment="libvorbis"
6107 extra_ldflags="$extra_ldflags -lvorbis -logg"
6108 else
6109 _vorbis=no
6110 nocodecmodules="libvorbis $nocodecmodules"
6112 echores "$_vorbis"
6114 echocheck "libspeex (version >= 1.1 required)"
6115 if test "$_speex" = auto ; then
6116 _speex=no
6117 cat > $TMPC << EOF
6118 #include <stddef.h>
6119 #include <speex/speex.h>
6120 int main(void) { SpeexBits bits; void *dec = NULL; speex_decode_int(dec, &bits, dec); return 0; }
6122 cc_check -lspeex $_ld_lm && _speex=yes
6124 if test "$_speex" = yes ; then
6125 def_speex='#define CONFIG_SPEEX 1'
6126 extra_ldflags="$extra_ldflags -lspeex"
6127 codecmodules="speex $codecmodules"
6128 else
6129 def_speex='#undef CONFIG_SPEEX'
6130 nocodecmodules="speex $nocodecmodules"
6132 echores "$_speex"
6134 echocheck "OggTheora support"
6135 if test "$_theora" = auto ; then
6136 _theora=no
6137 cat > $TMPC << EOF
6138 #include <theora/theora.h>
6139 #include <string.h>
6140 int main(void) {
6141 /* Theora is in flux, make sure that all interface routines and datatypes
6142 * exist and work the way we expect it, so we don't break MPlayer. */
6143 ogg_packet op;
6144 theora_comment tc;
6145 theora_info inf;
6146 theora_state st;
6147 yuv_buffer yuv;
6148 int r;
6149 double t;
6151 theora_info_init(&inf);
6152 theora_comment_init(&tc);
6154 return 0;
6156 /* we don't want to execute this kind of nonsense; just for making sure
6157 * that compilation works... */
6158 memset(&op, 0, sizeof(op));
6159 r = theora_decode_header(&inf, &tc, &op);
6160 r = theora_decode_init(&st, &inf);
6161 t = theora_granule_time(&st, op.granulepos);
6162 r = theora_decode_packetin(&st, &op);
6163 r = theora_decode_YUVout(&st, &yuv);
6164 theora_clear(&st);
6166 return 0;
6169 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6170 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6171 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6172 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6173 if test _theora = no; then
6174 _ld_theora="-ltheora -logg"
6175 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6177 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6178 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6179 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6180 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6181 extra_ldflags="$extra_ldflags $_ld_theora" &&
6182 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6183 if test _theora = no; then
6184 _ld_theora="-ltheora -logg"
6185 cc_check tremor/bitwise.c $_ld_theora &&
6186 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6190 if test "$_theora" = yes ; then
6191 def_theora='#define CONFIG_OGGTHEORA 1'
6192 codecmodules="libtheora $codecmodules"
6193 # when --enable-theora is forced, we'd better provide a probably sane
6194 # $_ld_theora than nothing
6195 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6196 else
6197 def_theora='#undef CONFIG_OGGTHEORA'
6198 nocodecmodules="libtheora $nocodecmodules"
6200 echores "$_theora"
6202 echocheck "mp3lib support"
6203 if test "$_mp3lib" = auto ; then
6204 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6206 if test "$_mp3lib" = yes ; then
6207 def_mp3lib='#define CONFIG_MP3LIB 1'
6208 codecmodules="mp3lib(internal) $codecmodules"
6209 else
6210 def_mp3lib='#undef CONFIG_MP3LIB'
6211 nocodecmodules="mp3lib(internal) $nocodecmodules"
6213 echores "$_mp3lib"
6215 # Any version of libmpg123 shall be fine.
6216 echocheck "mpg123 support"
6217 def_mpg123='#undef CONFIG_MPG123'
6218 if test "$_mpg123" = auto; then
6219 _mpg123=no
6220 function_check mpg123.h 'mpg123_init()' -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6222 if test "$_mpg123" = yes ; then
6223 def_mpg123='#define CONFIG_MPG123 1'
6224 codecmodules="mpg123 $codecmodules"
6225 else
6226 nocodecmodules="mpg123 $nocodecmodules"
6228 echores "$_mpg123"
6230 echocheck "liba52 support"
6231 def_liba52='#undef CONFIG_LIBA52'
6232 if test "$_liba52" = auto ; then
6233 _liba52=no
6234 cat > $TMPC << EOF
6235 #include <inttypes.h>
6236 #include <a52dec/a52.h>
6237 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6239 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6241 if test "$_liba52" = yes ; then
6242 def_liba52='#define CONFIG_LIBA52 1'
6243 codecmodules="liba52 $codecmodules"
6244 else
6245 nocodecmodules="liba52 $nocodecmodules"
6247 echores "$_liba52"
6249 echocheck "internal libmpeg2 support"
6250 if test "$_libmpeg2" = auto ; then
6251 _libmpeg2=yes
6252 if alpha && test cc_vendor=gnu; then
6253 case $cc_version in
6254 2*|3.0*|3.1*) # cannot compile MVI instructions
6255 _libmpeg2=no
6256 res_comment="broken gcc"
6258 esac
6261 if test "$_libmpeg2" = yes ; then
6262 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6263 codecmodules="libmpeg2(internal) $codecmodules"
6264 else
6265 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6266 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6268 echores "$_libmpeg2"
6270 echocheck "libdca support"
6271 if test "$_libdca" = auto ; then
6272 _libdca=no
6273 cat > $TMPC << EOF
6274 #include <inttypes.h>
6275 #include <dts.h>
6276 int main(void) { dts_init(0); return 0; }
6278 for _ld_dca in -ldca -ldts ; do
6279 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6280 && _libdca=yes && break
6281 done
6283 if test "$_libdca" = yes ; then
6284 def_libdca='#define CONFIG_LIBDCA 1'
6285 codecmodules="libdca $codecmodules"
6286 else
6287 def_libdca='#undef CONFIG_LIBDCA'
6288 nocodecmodules="libdca $nocodecmodules"
6290 echores "$_libdca"
6292 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6293 if test "$_musepack" = auto ; then
6294 _musepack=no
6295 cat > $TMPC << EOF
6296 #include <stddef.h>
6297 #include <mpcdec/mpcdec.h>
6298 int main(void) {
6299 mpc_streaminfo info;
6300 mpc_decoder decoder;
6301 mpc_decoder_set_streaminfo(&decoder, &info);
6302 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6303 return 0;
6306 cc_check -lmpcdec $_ld_lm && _musepack=yes
6308 if test "$_musepack" = yes ; then
6309 def_musepack='#define CONFIG_MUSEPACK 1'
6310 extra_ldflags="$extra_ldflags -lmpcdec"
6311 codecmodules="musepack $codecmodules"
6312 else
6313 def_musepack='#undef CONFIG_MUSEPACK'
6314 nocodecmodules="musepack $nocodecmodules"
6316 echores "$_musepack"
6319 echocheck "FAAC support"
6320 if test "$_faac" = auto ; then
6321 cat > $TMPC <<EOF
6322 #include <inttypes.h>
6323 #include <faac.h>
6324 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6326 _faac=no
6327 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6328 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6329 done
6331 if test "$_faac" = yes ; then
6332 def_faac="#define CONFIG_FAAC 1"
6333 codecmodules="faac $codecmodules"
6334 else
6335 def_faac="#undef CONFIG_FAAC"
6336 nocodecmodules="faac $nocodecmodules"
6338 echores "$_faac"
6341 echocheck "FAAD2 support"
6342 if test "$_faad_internal" = auto ; then
6343 if x86_32 && test cc_vendor=gnu; then
6344 case $cc_version in
6345 3.1*|3.2) # ICE/insn with these versions
6346 _faad_internal=no
6347 res_comment="broken gcc"
6350 _faad=yes
6351 _faad_internal=yes
6353 esac
6354 else
6355 _faad=yes
6356 _faad_internal=yes
6359 if test "$_faad" = auto ; then
6360 cat > $TMPC << EOF
6361 #include <faad.h>
6362 #ifndef FAAD_MIN_STREAMSIZE
6363 #error Too old version
6364 #endif
6365 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6366 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6368 cc_check -lfaad $_ld_lm && _faad=yes
6371 def_faad='#undef CONFIG_FAAD'
6372 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6373 if test "$_faad_internal" = yes ; then
6374 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6375 res_comment="internal floating-point"
6376 if test "$_faad_fixed" = yes ; then
6377 # The FIXED_POINT implementation of FAAD2 improves performance
6378 # on some platforms, especially for SBR files.
6379 cflags_faad_fixed="-DFIXED_POINT"
6380 res_comment="internal fixed-point"
6382 elif test "$_faad" = yes ; then
6383 extra_ldflags="$extra_ldflags -lfaad"
6386 if test "$_faad" = yes ; then
6387 def_faad='#define CONFIG_FAAD 1'
6388 if test "$_faad_internal" = yes ; then
6389 codecmodules="faad2(internal) $codecmodules"
6390 else
6391 codecmodules="faad2 $codecmodules"
6393 else
6394 _faad=no
6395 nocodecmodules="faad2 $nocodecmodules"
6397 echores "$_faad"
6400 echocheck "LADSPA plugin support"
6401 if test "$_ladspa" = auto ; then
6402 cat > $TMPC <<EOF
6403 #include <ladspa.h>
6404 int main(void) { LADSPA_Descriptor ld = {0}; return 0; }
6406 _ladspa=no
6407 cc_check && _ladspa=yes
6409 if test "$_ladspa" = yes; then
6410 def_ladspa="#define CONFIG_LADSPA 1"
6411 else
6412 def_ladspa="#undef CONFIG_LADSPA"
6414 echores "$_ladspa"
6417 echocheck "libbs2b audio filter support"
6418 if test "$_libbs2b" = auto ; then
6419 cat > $TMPC <<EOF
6420 #include <bs2b.h>
6421 #if BS2B_VERSION_MAJOR < 3
6422 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6423 #endif
6424 int main(void) {
6425 t_bs2bdp filter;
6426 filter=bs2b_open();
6427 bs2b_close(filter);
6428 return 0;
6431 _libbs2b=no
6432 if $_pkg_config --exists libbs2b ; then
6433 _inc_tmp=$($_pkg_config --cflags libbs2b)
6434 _ld_tmp=$($_pkg_config --libs libbs2b)
6435 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6436 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6437 else
6438 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6439 -I/usr/local/include/bs2b ; do
6440 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6441 extra_ldflags="$extra_ldflags -lbs2b"
6442 extra_cflags="$extra_cflags $_inc_tmp"
6443 _libbs2b=yes
6444 break
6446 done
6449 def_libbs2b="#undef CONFIG_LIBBS2B"
6450 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6451 echores "$_libbs2b"
6454 if test -z "$_codecsdir" ; then
6455 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6456 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6457 if test -d "$dir" ; then
6458 _codecsdir="$dir"
6459 break;
6461 done
6463 # Fall back on default directory.
6464 if test -z "$_codecsdir" ; then
6465 _codecsdir="$_libdir/codecs"
6466 mingw32 || os2 && _codecsdir="codecs"
6470 echocheck "Win32 codecs"
6471 if test "$_win32dll" = auto ; then
6472 _win32dll=no
6473 if x86_32 && ! qnx; then
6474 _win32dll=yes
6477 if test "$_win32dll" = yes ; then
6478 def_win32dll='#define CONFIG_WIN32DLL 1'
6479 if ! win32 ; then
6480 def_win32_loader='#define WIN32_LOADER 1'
6481 _win32_emulation=yes
6482 else
6483 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6484 res_comment="using native windows"
6486 codecmodules="win32 $codecmodules"
6487 else
6488 def_win32dll='#undef CONFIG_WIN32DLL'
6489 def_win32_loader='#undef WIN32_LOADER'
6490 nocodecmodules="win32 $nocodecmodules"
6492 echores "$_win32dll"
6495 echocheck "XAnim codecs"
6496 if test "$_xanim" = auto ; then
6497 _xanim=no
6498 res_comment="dynamic loader support needed"
6499 if test "$_dl" = yes ; then
6500 _xanim=yes
6503 if test "$_xanim" = yes ; then
6504 def_xanim='#define CONFIG_XANIM 1'
6505 codecmodules="xanim $codecmodules"
6506 else
6507 def_xanim='#undef CONFIG_XANIM'
6508 nocodecmodules="xanim $nocodecmodules"
6510 echores "$_xanim"
6513 echocheck "RealPlayer codecs"
6514 if test "$_real" = auto ; then
6515 _real=no
6516 res_comment="dynamic loader support needed"
6517 if test "$_dl" = yes || test "$_win32dll" = yes &&
6518 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6519 _real=yes
6522 if test "$_real" = yes ; then
6523 def_real='#define CONFIG_REALCODECS 1'
6524 codecmodules="real $codecmodules"
6525 else
6526 def_real='#undef CONFIG_REALCODECS'
6527 nocodecmodules="real $nocodecmodules"
6529 echores "$_real"
6532 echocheck "QuickTime codecs"
6533 _qtx_emulation=no
6534 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6535 if test "$_qtx" = auto ; then
6536 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6538 if test "$_qtx" = yes ; then
6539 def_qtx='#define CONFIG_QTX_CODECS 1'
6540 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6541 codecmodules="qtx $codecmodules"
6542 darwin || win32 || _qtx_emulation=yes
6543 else
6544 def_qtx='#undef CONFIG_QTX_CODECS'
6545 nocodecmodules="qtx $nocodecmodules"
6547 echores "$_qtx"
6549 echocheck "Nemesi Streaming Media libraries"
6550 if test "$_nemesi" = auto && test "$networking" = yes ; then
6551 _nemesi=no
6552 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6553 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6554 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6555 _nemesi=yes
6558 if test "$_nemesi" = yes; then
6559 _native_rtsp=no
6560 def_nemesi='#define CONFIG_LIBNEMESI 1'
6561 inputmodules="nemesi $inputmodules"
6562 else
6563 _native_rtsp="$networking"
6564 _nemesi=no
6565 def_nemesi='#undef CONFIG_LIBNEMESI'
6566 noinputmodules="nemesi $noinputmodules"
6568 echores "$_nemesi"
6570 echocheck "LIVE555 Streaming Media libraries"
6571 if test "$_live" = auto && test "$networking" = yes ; then
6572 cat > $TMPCPP << EOF
6573 #include <liveMedia.hh>
6574 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6575 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6576 #endif
6577 int main(void) { return 0; }
6580 _live=no
6581 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
6582 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6583 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6584 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6585 $_livelibdir/groupsock/libgroupsock.a \
6586 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6587 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6588 $extra_ldflags -lstdc++" \
6589 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6590 -I$_livelibdir/UsageEnvironment/include \
6591 -I$_livelibdir/BasicUsageEnvironment/include \
6592 -I$_livelibdir/groupsock/include" && \
6593 _live=yes && break
6594 done
6595 if test "$_live" != yes ; then
6596 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6597 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6598 _live_dist=yes
6602 if test "$_live" = yes && test "$networking" = yes; then
6603 test $_livelibdir && res_comment="using $_livelibdir"
6604 def_live='#define CONFIG_LIVE555 1'
6605 inputmodules="live555 $inputmodules"
6606 elif test "$_live_dist" = yes && test "$networking" = yes; then
6607 res_comment="using distribution version"
6608 _live="yes"
6609 def_live='#define CONFIG_LIVE555 1'
6610 extra_ldflags="$extra_ldflags $ld_tmp"
6611 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6612 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6613 inputmodules="live555 $inputmodules"
6614 else
6615 _live=no
6616 def_live='#undef CONFIG_LIVE555'
6617 noinputmodules="live555 $noinputmodules"
6619 echores "$_live"
6623 all_ffmpeg_libs="libavutil libavcodec libavformat libswscale libpostproc"
6624 echocheck "FFmpeg ($all_ffmpeg_libs)"
6625 if test "$ffmpeg" = auto ; then
6626 ffmpeg=no
6627 if $_pkg_config --exists $all_ffmpeg_libs ; then
6628 inc_ffmpeg=$($_pkg_config --cflags $all_ffmpeg_libs)
6629 _ld_tmp=$($_pkg_config --libs $all_ffmpeg_libs)
6630 extra_ldflags="$extra_ldflags $_ld_tmp"
6631 extra_cflags="$extra_cflags $inc_ffmpeg"
6632 ffmpeg=yes
6633 elif header_check libavcore/avutil.h -lpostproc -lswscale -lavformat -lavcodec -lavutil $_ld_lm ; then
6634 extra_ldflags="$extra_ldflags -lpostproc -lswscale -lavformat -lavcodec -lavutil -lavcore"
6635 ffmpeg=yes
6639 if test "$ffmpeg" = yes; then
6640 def_ffmpeg='#define CONFIG_FFMPEG 1'
6641 codecmodules="ffmpeg $codecmodules"
6642 else
6643 def_ffmpeg='#undef CONFIG_FFMPEG'
6644 nocodecmodules="ffmpeg $nocodecmodules"
6646 echores "$ffmpeg"
6648 def_ffmpeg_internals="#undef CONFIG_FFMPEG_INTERNALS"
6649 if ! test -z "$_ffmpeg_source" ; then
6650 test "$ffmpeg" = yes && def_ffmpeg_internals="#define CONFIG_FFMPEG_INTERNALS 1" && ffmpeg_internals=yes
6655 echocheck "libdv-0.9.5+"
6656 if test "$_libdv" = auto ; then
6657 _libdv=no
6658 function_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
6660 if test "$_libdv" = yes ; then
6661 def_libdv='#define CONFIG_LIBDV095 1'
6662 extra_ldflags="$extra_ldflags -ldv"
6663 codecmodules="libdv $codecmodules"
6664 else
6665 def_libdv='#undef CONFIG_LIBDV095'
6666 nocodecmodules="libdv $nocodecmodules"
6668 echores "$_libdv"
6671 echocheck "Xvid"
6672 if test "$_xvid" = auto ; then
6673 _xvid=no
6674 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6675 function_check xvid.h 'xvid_global(0, 0, 0, 0)' $_ld_tmp &&
6676 extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6677 done
6680 if test "$_xvid" = yes ; then
6681 def_xvid='#define CONFIG_XVID4 1'
6682 codecmodules="xvid $codecmodules"
6683 else
6684 def_xvid='#undef CONFIG_XVID4'
6685 nocodecmodules="xvid $nocodecmodules"
6687 echores "$_xvid"
6689 echocheck "x264"
6690 if test "$_x264" = auto ; then
6691 cat > $TMPC << EOF
6692 #include <inttypes.h>
6693 #include <x264.h>
6694 #if X264_BUILD < 98
6695 #error We do not support old versions of x264. Get the latest from git.
6696 #endif
6697 int main(void) { x264_encoder_open((void*)0); return 0; }
6699 _x264=no
6700 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6701 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
6702 done
6705 if test "$_x264" = yes ; then
6706 def_x264='#define CONFIG_X264 1'
6707 codecmodules="x264 $codecmodules"
6708 else
6709 def_x264='#undef CONFIG_X264'
6710 nocodecmodules="x264 $nocodecmodules"
6712 echores "$_x264"
6714 echocheck "libnut"
6715 if test "$_libnut" = auto ; then
6716 cat > $TMPC << EOF
6717 #include <libnut.h>
6718 nut_context_tt * nut;
6719 int main(void) { nut_error(0); return 0; }
6721 _libnut=no
6722 cc_check -lnut && _libnut=yes
6725 if test "$_libnut" = yes ; then
6726 def_libnut='#define CONFIG_LIBNUT 1'
6727 extra_ldflags="$extra_ldflags -lnut"
6728 else
6729 def_libnut='#undef CONFIG_LIBNUT'
6731 echores "$_libnut"
6733 # These VO checks must be done after the FFmpeg one
6734 echocheck "/dev/mga_vid"
6735 if test "$_mga" = auto ; then
6736 _mga=no
6737 test -c /dev/mga_vid && _mga=yes
6739 if test "$_mga" = yes ; then
6740 def_mga='#define CONFIG_MGA 1'
6741 vomodules="mga $vomodules"
6742 else
6743 def_mga='#undef CONFIG_MGA'
6744 novomodules="mga $novomodules"
6746 echores "$_mga"
6749 echocheck "xmga"
6750 if test "$_xmga" = auto ; then
6751 _xmga=no
6752 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
6754 if test "$_xmga" = yes ; then
6755 def_xmga='#define CONFIG_XMGA 1'
6756 vomodules="xmga $vomodules"
6757 else
6758 def_xmga='#undef CONFIG_XMGA'
6759 novomodules="xmga $novomodules"
6761 echores "$_xmga"
6763 echocheck "zr"
6764 if test "$_zr" = auto ; then
6765 #36067's seem to identify themselves as 36057PQC's, so the line
6766 #below should work for 36067's and 36057's.
6767 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6768 _zr=yes
6769 else
6770 _zr=no
6773 if test "$_zr" = yes ; then
6774 if test "$ffmpeg_internals" = yes ; then
6775 def_zr='#define CONFIG_ZR 1'
6776 vomodules="zr zr2 $vomodules"
6777 else
6778 res_comment="FFmpeg internal headers are required by zr, sorry"
6779 novomodules="zr $novomodules"
6780 def_zr='#undef CONFIG_ZR'
6782 else
6783 def_zr='#undef CONFIG_ZR'
6784 novomodules="zr zr2 $novomodules"
6786 echores "$_zr"
6788 # mencoder requires (optional) those libs: libmp3lame
6789 if test "$_mencoder" != no ; then
6791 echocheck "libmp3lame"
6792 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6793 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6794 if test "$_mp3lame" = auto ; then
6795 _mp3lame=no
6796 cat > $TMPC <<EOF
6797 #include <lame/lame.h>
6798 int main(void) { lame_version_t lv; lame_init();
6799 get_lame_version_numerical(&lv);
6800 return 0; }
6802 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
6804 if test "$_mp3lame" = yes ; then
6805 def_mp3lame="#define CONFIG_MP3LAME 1"
6806 _ld_mp3lame=-lmp3lame
6807 libs_mencoder="$libs_mencoder $_ld_mp3lame"
6808 function_check lame/lame.h 'lame_set_preset(NULL, STANDARD_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
6809 function_check lame/lame.h 'lame_set_preset(NULL, MEDIUM_FAST)' $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
6810 else
6811 def_mp3lame='#undef CONFIG_MP3LAME'
6813 echores "$_mp3lame"
6815 fi # test "$_mencoder" != no
6817 echocheck "mencoder"
6818 if test "$_mencoder" = yes ; then
6819 def_muxers='#define CONFIG_MUXERS 1'
6820 else
6821 def_muxers='#define CONFIG_MUXERS 0'
6823 echores "$_mencoder"
6826 echocheck "UnRAR executable"
6827 if test "$_unrar_exec" = auto ; then
6828 _unrar_exec="yes"
6829 mingw32 && _unrar_exec="no"
6831 if test "$_unrar_exec" = yes ; then
6832 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6833 else
6834 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6836 echores "$_unrar_exec"
6838 echocheck "TV interface"
6839 if test "$_tv" = yes ; then
6840 def_tv='#define CONFIG_TV 1'
6841 inputmodules="tv $inputmodules"
6842 else
6843 noinputmodules="tv $noinputmodules"
6844 def_tv='#undef CONFIG_TV'
6846 echores "$_tv"
6849 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6850 echocheck "*BSD BT848 bt8xx header"
6851 _ioctl_bt848_h=no
6852 for file in "machine/ioctl_bt848.h" \
6853 "dev/bktr/ioctl_bt848.h" \
6854 "dev/video/bktr/ioctl_bt848.h" \
6855 "dev/ic/bt8xx.h" ; do
6856 cat > $TMPC <<EOF
6857 #include <sys/types.h>
6858 #include <sys/ioctl.h>
6859 #include <$file>
6860 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6862 if cc_check ; then
6863 _ioctl_bt848_h=yes
6864 _ioctl_bt848_h_name="$file"
6865 break;
6867 done
6868 if test "$_ioctl_bt848_h" = yes ; then
6869 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6870 res_comment="using $_ioctl_bt848_h_name"
6871 else
6872 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6874 echores "$_ioctl_bt848_h"
6876 echocheck "*BSD ioctl_meteor.h"
6877 _ioctl_meteor_h=no
6878 for file in "machine/ioctl_meteor.h" \
6879 "dev/bktr/ioctl_meteor.h" \
6880 "dev/video/bktr/ioctl_meteor.h" ; do
6881 cat > $TMPC <<EOF
6882 #include <sys/types.h>
6883 #include <$file>
6884 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
6886 if cc_check ; then
6887 _ioctl_meteor_h=yes
6888 _ioctl_meteor_h_name="$file"
6889 break;
6891 done
6892 if test "$_ioctl_meteor_h" = yes ; then
6893 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
6894 res_comment="using $_ioctl_meteor_h_name"
6895 else
6896 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6898 echores "$_ioctl_meteor_h"
6900 echocheck "*BSD BrookTree 848 TV interface"
6901 if test "$_tv_bsdbt848" = auto ; then
6902 _tv_bsdbt848=no
6903 if test "$_tv" = yes ; then
6904 cat > $TMPC <<EOF
6905 #include <sys/types.h>
6906 $def_ioctl_meteor_h_name
6907 $def_ioctl_bt848_h_name
6908 #ifdef IOCTL_METEOR_H_NAME
6909 #include IOCTL_METEOR_H_NAME
6910 #endif
6911 #ifdef IOCTL_BT848_H_NAME
6912 #include IOCTL_BT848_H_NAME
6913 #endif
6914 int main(void) {
6915 ioctl(0, METEORSINPUT, 0);
6916 ioctl(0, TVTUNER_GETFREQ, 0);
6917 return 0;
6920 cc_check && _tv_bsdbt848=yes
6923 if test "$_tv_bsdbt848" = yes ; then
6924 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
6925 inputmodules="tv-bsdbt848 $inputmodules"
6926 else
6927 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
6928 noinputmodules="tv-bsdbt848 $noinputmodules"
6930 echores "$_tv_bsdbt848"
6931 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6934 echocheck "DirectShow TV interface"
6935 if test "$_tv_dshow" = auto ; then
6936 _tv_dshow=no
6937 if test "$_tv" = yes && win32 ; then
6938 cat > $TMPC <<EOF
6939 #include <ole2.h>
6940 int main(void) {
6941 void* p;
6942 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
6943 return 0;
6946 cc_check -lole32 -luuid && _tv_dshow=yes
6949 if test "$_tv_dshow" = yes ; then
6950 inputmodules="tv-dshow $inputmodules"
6951 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
6952 extra_ldflags="$extra_ldflags -lole32 -luuid"
6953 else
6954 noinputmodules="tv-dshow $noinputmodules"
6955 def_tv_dshow='#undef CONFIG_TV_DSHOW'
6957 echores "$_tv_dshow"
6960 echocheck "Video 4 Linux TV interface"
6961 if test "$_tv_v4l1" = auto ; then
6962 _tv_v4l1=no
6963 if test "$_tv" = yes && linux ; then
6964 header_check linux/videodev.h && _tv_v4l1=yes
6967 if test "$_tv_v4l1" = yes ; then
6968 _audio_input=yes
6969 _tv_v4l=yes
6970 def_tv_v4l='#define CONFIG_TV_V4L 1'
6971 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
6972 inputmodules="tv-v4l $inputmodules"
6973 else
6974 noinputmodules="tv-v4l1 $noinputmodules"
6975 def_tv_v4l='#undef CONFIG_TV_V4L'
6977 echores "$_tv_v4l1"
6980 echocheck "Video 4 Linux 2 TV interface"
6981 if test "$_tv_v4l2" = auto ; then
6982 _tv_v4l2=no
6983 if test "$_tv" = yes && linux ; then
6984 header_check linux/videodev2.h && _tv_v4l2=yes
6987 if test "$_tv_v4l2" = yes ; then
6988 _audio_input=yes
6989 _tv_v4l=yes
6990 def_tv_v4l='#define CONFIG_TV_V4L 1'
6991 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
6992 inputmodules="tv-v4l2 $inputmodules"
6993 else
6994 noinputmodules="tv-v4l2 $noinputmodules"
6995 def_tv_v4l2='#undef CONFIG_TV_V4L2'
6997 echores "$_tv_v4l2"
7000 echocheck "Radio interface"
7001 if test "$_radio" = yes ; then
7002 def_radio='#define CONFIG_RADIO 1'
7003 inputmodules="radio $inputmodules"
7004 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7005 _radio_capture=no
7007 if test "$_radio_capture" = yes ; then
7008 _audio_input=yes
7009 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7010 else
7011 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7013 else
7014 noinputmodules="radio $noinputmodules"
7015 def_radio='#undef CONFIG_RADIO'
7016 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7017 _radio_capture=no
7019 echores "$_radio"
7020 echocheck "Capture for Radio interface"
7021 echores "$_radio_capture"
7023 echocheck "Video 4 Linux 2 Radio interface"
7024 if test "$_radio_v4l2" = auto ; then
7025 _radio_v4l2=no
7026 if test "$_radio" = yes && linux ; then
7027 header_check linux/videodev2.h && _radio_v4l2=yes
7030 if test "$_radio_v4l2" = yes ; then
7031 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7032 else
7033 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7035 echores "$_radio_v4l2"
7037 echocheck "Video 4 Linux Radio interface"
7038 if test "$_radio_v4l" = auto ; then
7039 _radio_v4l=no
7040 if test "$_radio" = yes && linux ; then
7041 header_check linux/videodev.h && _radio_v4l=yes
7044 if test "$_radio_v4l" = yes ; then
7045 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7046 else
7047 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7049 echores "$_radio_v4l"
7051 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7052 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7053 echocheck "*BSD BrookTree 848 Radio interface"
7054 _radio_bsdbt848=no
7055 cat > $TMPC <<EOF
7056 #include <sys/types.h>
7057 $def_ioctl_bt848_h_name
7058 #ifdef IOCTL_BT848_H_NAME
7059 #include IOCTL_BT848_H_NAME
7060 #endif
7061 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7063 cc_check && _radio_bsdbt848=yes
7064 echores "$_radio_bsdbt848"
7065 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7067 if test "$_radio_bsdbt848" = yes ; then
7068 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7069 else
7070 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7073 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7074 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7075 die "Radio driver requires BSD BT848, V4L or V4L2!"
7078 echocheck "Video 4 Linux 2 MPEG PVR interface"
7079 if test "$_pvr" = auto ; then
7080 _pvr=no
7081 if test "$_tv_v4l2" = yes && linux ; then
7082 cat > $TMPC <<EOF
7083 #include <linux/videodev2.h>
7084 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7086 cc_check && _pvr=yes
7089 if test "$_pvr" = yes ; then
7090 def_pvr='#define CONFIG_PVR 1'
7091 inputmodules="pvr $inputmodules"
7092 else
7093 noinputmodules="pvr $noinputmodules"
7094 def_pvr='#undef CONFIG_PVR'
7096 echores "$_pvr"
7099 echocheck "ftp"
7100 if ! beos && test "$_ftp" = yes ; then
7101 def_ftp='#define CONFIG_FTP 1'
7102 inputmodules="ftp $inputmodules"
7103 else
7104 noinputmodules="ftp $noinputmodules"
7105 def_ftp='#undef CONFIG_FTP'
7107 echores "$_ftp"
7109 echocheck "vstream client"
7110 if test "$_vstream" = auto ; then
7111 _vstream=no
7112 cat > $TMPC <<EOF
7113 #include <vstream-client.h>
7114 void vstream_error(const char *format, ... ) {}
7115 int main(void) { vstream_start(); return 0; }
7117 cc_check -lvstream-client && _vstream=yes
7119 if test "$_vstream" = yes ; then
7120 def_vstream='#define CONFIG_VSTREAM 1'
7121 inputmodules="vstream $inputmodules"
7122 extra_ldflags="$extra_ldflags -lvstream-client"
7123 else
7124 noinputmodules="vstream $noinputmodules"
7125 def_vstream='#undef CONFIG_VSTREAM'
7127 echores "$_vstream"
7130 echocheck "OSD menu"
7131 if test "$_menu" = yes ; then
7132 def_menu='#define CONFIG_MENU 1'
7133 test $_dvbin = "yes" && _menu_dvbin=yes
7134 else
7135 def_menu='#undef CONFIG_MENU'
7136 _menu_dvbin=no
7138 echores "$_menu"
7141 echocheck "Subtitles sorting"
7142 if test "$_sortsub" = yes ; then
7143 def_sortsub='#define CONFIG_SORTSUB 1'
7144 else
7145 def_sortsub='#undef CONFIG_SORTSUB'
7147 echores "$_sortsub"
7150 echocheck "XMMS inputplugin support"
7151 if test "$_xmms" = yes ; then
7152 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7153 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7154 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7155 else
7156 _xmmsplugindir=/usr/lib/xmms/Input
7157 _xmmslibdir=/usr/lib
7160 def_xmms='#define CONFIG_XMMS 1'
7161 if darwin ; then
7162 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7163 else
7164 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7166 else
7167 def_xmms='#undef CONFIG_XMMS'
7169 echores "$_xmms"
7171 if test "$_charset" != "noconv" ; then
7172 def_charset="#define MSG_CHARSET \"$_charset\""
7173 else
7174 def_charset="#undef MSG_CHARSET"
7175 _charset="UTF-8"
7178 #############################################################################
7180 echocheck "automatic gdb attach"
7181 if test "$_crash_debug" = yes ; then
7182 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7183 else
7184 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7185 _crash_debug=no
7187 echores "$_crash_debug"
7189 echocheck "compiler support for noexecstack"
7190 if cflag_check -Wl,-z,noexecstack ; then
7191 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7192 echores "yes"
7193 else
7194 echores "no"
7197 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7198 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7199 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7200 echores "yes"
7201 else
7202 echores "no"
7206 # Dynamic linking flags
7207 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7208 _ld_dl_dynamic=''
7209 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7210 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7211 _ld_dl_dynamic='-rdynamic'
7214 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7215 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7216 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7218 def_debug='#undef MP_DEBUG'
7219 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7222 echocheck "joystick"
7223 def_joystick='#undef CONFIG_JOYSTICK'
7224 if test "$_joystick" = yes ; then
7225 if linux ; then
7226 # TODO add some check
7227 def_joystick='#define CONFIG_JOYSTICK 1'
7228 else
7229 _joystick="no"
7230 res_comment="unsupported under $system_name"
7233 echores "$_joystick"
7235 echocheck "lirc"
7236 if test "$_lirc" = auto ; then
7237 _lirc=no
7238 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7240 if test "$_lirc" = yes ; then
7241 def_lirc='#define CONFIG_LIRC 1'
7242 libs_mplayer="$libs_mplayer -llirc_client"
7243 else
7244 def_lirc='#undef CONFIG_LIRC'
7246 echores "$_lirc"
7248 echocheck "lircc"
7249 if test "$_lircc" = auto ; then
7250 _lircc=no
7251 header_check lirc/lircc.h -llircc && _lircc=yes
7253 if test "$_lircc" = yes ; then
7254 def_lircc='#define CONFIG_LIRCC 1'
7255 libs_mplayer="$libs_mplayer -llircc"
7256 else
7257 def_lircc='#undef CONFIG_LIRCC'
7259 echores "$_lircc"
7261 if arm; then
7262 # Detect maemo development platform libraries availability (http://www.maemo.org),
7263 # they are used when run on Nokia 770|8x0
7264 echocheck "maemo (Nokia 770|8x0)"
7265 if test "$_maemo" = auto ; then
7266 _maemo=no
7267 function_check libosso.h 'osso_initialize('', '', 0, NULL)' $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7269 if test "$_maemo" = yes ; then
7270 def_maemo='#define CONFIG_MAEMO 1'
7271 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7272 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7273 else
7274 def_maemo='#undef CONFIG_MAEMO'
7276 echores "$_maemo"
7279 #############################################################################
7281 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7282 # the OMF format needs to come after the 'extern symbol prefix' check, which
7283 # uses nm.
7284 if os2 ; then
7285 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7288 # linker paths should be the same for mencoder and mplayer
7289 _ld_tmp=""
7290 for I in $libs_mplayer ; do
7291 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7292 if test -z "$_tmp" ; then
7293 extra_ldflags="$extra_ldflags $I"
7294 else
7295 _ld_tmp="$_ld_tmp $I"
7297 done
7298 libs_mplayer=$_ld_tmp
7301 #############################################################################
7302 # 64 bit file offsets?
7303 if test "$_largefiles" = yes || freebsd ; then
7304 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7305 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7306 # dvdread support requires this (for off64_t)
7307 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7311 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7313 # This must be the last test to be performed. Any other tests following it
7314 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7315 # against libdvdread (to permit MPlayer to use its own copy of the library).
7316 # So any compilation using the flags added here but not linking against
7317 # libdvdread can fail.
7318 echocheck "DVD support (libdvdnav)"
7319 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7320 _dvdnav=no
7322 dvdnav_internal=no
7323 if test "$_dvdnav" = auto ; then
7324 if test "$_dvdread_internal" = yes ; then
7325 _dvdnav=yes
7326 dvdnav_internal=yes
7327 res_comment="internal"
7328 else
7329 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7332 if test "$_dvdnav" = auto ; then
7333 cat > $TMPC <<EOF
7334 #include <inttypes.h>
7335 #include <dvdnav/dvdnav.h>
7336 int main(void) { dvdnav_t *dvd=0; return 0; }
7338 _dvdnav=no
7339 _dvdnavdir=$($_dvdnavconfig --cflags)
7340 _dvdnavlibs=$($_dvdnavconfig --libs)
7341 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7343 if test "$_dvdnav" = yes ; then
7344 _largefiles=yes
7345 def_dvdnav='#define CONFIG_DVDNAV 1'
7346 if test "$dvdnav_internal" = yes ; then
7347 cflags_libdvdnav="-Ilibdvdnav"
7348 inputmodules="dvdnav(internal) $inputmodules"
7349 else
7350 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7351 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7352 inputmodules="dvdnav $inputmodules"
7354 else
7355 def_dvdnav='#undef CONFIG_DVDNAV'
7356 noinputmodules="dvdnav $noinputmodules"
7358 echores "$_dvdnav"
7360 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7361 # Read dvdnav comment above.
7363 mak_enable () {
7364 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7365 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7366 nprefix=$3;
7367 for part in $list; do
7368 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7369 echo "${nprefix}_$part = yes"
7371 done
7374 #############################################################################
7375 echo "Creating config.mak"
7376 cat > config.mak << EOF
7377 # -------- Generated by configure -----------
7379 # Ensure that locale settings do not interfere with shell commands.
7380 export LC_ALL = C
7382 CONFIGURATION = $configuration
7384 CHARSET = $_charset
7385 DOC_LANGS = $language_doc
7386 DOC_LANG_ALL = $doc_lang_all
7387 MAN_LANGS = $language_man
7388 MAN_LANG_ALL = $man_lang_all
7389 MSG_LANGS = $language_msg
7390 MSG_LANG_ALL = $msg_lang_all
7392 prefix = \$(DESTDIR)$_prefix
7393 BINDIR = \$(DESTDIR)$_bindir
7394 DATADIR = \$(DESTDIR)$_datadir
7395 LIBDIR = \$(DESTDIR)$_libdir
7396 MANDIR = \$(DESTDIR)$_mandir
7397 CONFDIR = \$(DESTDIR)$_confdir
7398 LOCALEDIR = \$(DESTDIR)$_localedir
7400 AR = $_ar
7401 AS = $_cc
7402 CC = $_cc
7403 CXX = $_cc
7404 HOST_CC = $_host_cc
7405 INSTALL = $_install
7406 INSTALLSTRIP = $_install_strip
7407 WINDRES = $_windres
7409 CFLAGS = $WARNFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
7410 CXXFLAGS = $WARNFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
7411 DEPFLAGS = $DEPFLAGS
7413 CFLAGS_DHAHELPER = $cflags_dhahelper
7414 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7415 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7416 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7417 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7418 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7419 CFLAGS_STACKREALIGN = $cflags_stackrealign
7420 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7421 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7423 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7424 EXTRALIBS_MPLAYER = $libs_mplayer
7425 EXTRALIBS_MENCODER = $libs_mencoder
7427 GETCH = $_getch
7428 TIMER = $_timer
7430 EXESUF = $_exesuf
7431 EXESUFS_ALL = .exe
7433 ARCH = $arch
7434 $(mak_enable "$arch_all" "$arch" ARCH)
7435 $(mak_enable "$subarch_all" "$subarch" ARCH)
7436 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7438 MENCODER = $_mencoder
7439 MPLAYER = $_mplayer
7441 NEED_GETTIMEOFDAY = $_need_gettimeofday
7442 NEED_GLOB = $_need_glob
7443 NEED_MMAP = $_need_mmap
7444 NEED_SETENV = $_need_setenv
7445 NEED_SHMEM = $_need_shmem
7446 NEED_STRSEP = $_need_strsep
7447 NEED_SWAB = $_need_swab
7448 NEED_VSSCANF = $_need_vsscanf
7450 # features
7451 3DFX = $_3dfx
7452 AA = $_aa
7453 ALSA1X = $_alsa1x
7454 ALSA9 = $_alsa9
7455 ALSA5 = $_alsa5
7456 APPLE_IR = $_apple_ir
7457 APPLE_REMOTE = $_apple_remote
7458 ARTS = $_arts
7459 AUDIO_INPUT = $_audio_input
7460 BITMAP_FONT = $_bitmap_font
7461 BL = $_bl
7462 CACA = $_caca
7463 CDDA = $_cdda
7464 CDDB = $_cddb
7465 COREAUDIO = $_coreaudio
7466 COREVIDEO = $_corevideo
7467 DART = $_dart
7468 DGA = $_dga
7469 DIRECT3D = $_direct3d
7470 DIRECTFB = $_directfb
7471 DIRECTX = $_directx
7472 DVBIN = $_dvbin
7473 DVDNAV = $_dvdnav
7474 DVDNAV_INTERNAL = $dvdnav_internal
7475 DVDREAD = $_dvdread
7476 DVDREAD_INTERNAL = $_dvdread_internal
7477 DXR2 = $_dxr2
7478 DXR3 = $_dxr3
7479 ESD = $_esd
7480 FAAC=$_faac
7481 FAAD = $_faad
7482 FAAD_INTERNAL = $_faad_internal
7483 FASTMEMCPY = $_fastmemcpy
7484 FBDEV = $_fbdev
7485 FREETYPE = $_freetype
7486 FTP = $_ftp
7487 GIF = $_gif
7488 GGI = $_ggi
7489 GL = $_gl
7490 GL_WIN32 = $_gl_win32
7491 GL_X11 = $_gl_x11
7492 GL_SDL = $_gl_sdl
7493 MATRIXVIEW = $matrixview
7494 HAVE_POSIX_SELECT = $_posix_select
7495 HAVE_SYS_MMAN_H = $_mman
7496 IVTV = $_ivtv
7497 JACK = $_jack
7498 JOYSTICK = $_joystick
7499 JPEG = $_jpeg
7500 KAI = $_kai
7501 KVA = $_kva
7502 LADSPA = $_ladspa
7503 LIBA52 = $_liba52
7504 LIBASS = $_ass
7505 LIBBLURAY = $_bluray
7506 LIBBS2B = $_libbs2b
7507 LIBDCA = $_libdca
7508 LIBDV = $_libdv
7509 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7510 LIBLZO = $_liblzo
7511 LIBMAD = $_mad
7512 LIBMENU = $_menu
7513 LIBMENU_DVBIN = $_menu_dvbin
7514 LIBMPEG2 = $_libmpeg2
7515 LIBNEMESI = $_nemesi
7516 LIBNUT = $_libnut
7517 LIBSMBCLIENT = $_smb
7518 LIBTHEORA = $_theora
7519 LIRC = $_lirc
7520 LIVE555 = $_live
7521 MACOSX_FINDER = $_macosx_finder
7522 MD5SUM = $_md5sum
7523 MGA = $_mga
7524 MNG = $_mng
7525 MP3LAME = $_mp3lame
7526 MP3LIB = $_mp3lib
7527 MPG123 = $_mpg123
7528 MUSEPACK = $_musepack
7529 NAS = $_nas
7530 NATIVE_RTSP = $_native_rtsp
7531 NETWORKING = $networking
7532 OPENAL = $_openal
7533 OSS = $_ossaudio
7534 PE_EXECUTABLE = $_pe_executable
7535 PNG = $_png
7536 PNM = $_pnm
7537 PRIORITY = $_priority
7538 PULSE = $_pulse
7539 PVR = $_pvr
7540 QTX_CODECS = $_qtx
7541 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7542 QTX_EMULATION = $_qtx_emulation
7543 QUARTZ = $_quartz
7544 RADIO=$_radio
7545 RADIO_CAPTURE=$_radio_capture
7546 REAL_CODECS = $_real
7547 S3FB = $_s3fb
7548 SDL = $_sdl
7549 SPEEX = $_speex
7550 STREAM_CACHE = $_stream_cache
7551 SGIAUDIO = $_sgiaudio
7552 SUNAUDIO = $_sunaudio
7553 SVGA = $_svga
7554 TDFXFB = $_tdfxfb
7555 TDFXVID = $_tdfxvid
7556 TGA = $_tga
7557 TOOLAME=$_toolame
7558 TREMOR_INTERNAL = $_tremor_internal
7559 TV = $_tv
7560 TV_BSDBT848 = $_tv_bsdbt848
7561 TV_DSHOW = $_tv_dshow
7562 TV_V4L = $_tv_v4l
7563 TV_V4L1 = $_tv_v4l1
7564 TV_V4L2 = $_tv_v4l2
7565 TWOLAME=$_twolame
7566 UNRAR_EXEC = $_unrar_exec
7567 V4L2 = $_v4l2
7568 VCD = $_vcd
7569 VDPAU = $_vdpau
7570 VESA = $_vesa
7571 VIDIX = $_vidix
7572 VIDIX_PCIDB = $_vidix_pcidb_val
7573 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7574 VIDIX_IVTV=$_vidix_drv_ivtv
7575 VIDIX_MACH64=$_vidix_drv_mach64
7576 VIDIX_MGA=$_vidix_drv_mga
7577 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7578 VIDIX_NVIDIA=$_vidix_drv_nvidia
7579 VIDIX_PM2=$_vidix_drv_pm2
7580 VIDIX_PM3=$_vidix_drv_pm3
7581 VIDIX_RADEON=$_vidix_drv_radeon
7582 VIDIX_RAGE128=$_vidix_drv_rage128
7583 VIDIX_S3=$_vidix_drv_s3
7584 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7585 VIDIX_SIS=$_vidix_drv_sis
7586 VIDIX_UNICHROME=$_vidix_drv_unichrome
7587 VORBIS = $_vorbis
7588 VSTREAM = $_vstream
7589 WII = $_wii
7590 WIN32DLL = $_win32dll
7591 WIN32WAVEOUT = $_win32waveout
7592 WIN32_EMULATION = $_win32_emulation
7593 WINVIDIX = $winvidix
7594 X11 = $_x11
7595 X264 = $_x264
7596 XANIM_CODECS = $_xanim
7597 XMGA = $_xmga
7598 XMMS_PLUGINS = $_xmms
7599 XV = $_xv
7600 XVID4 = $_xvid
7601 XVIDIX = $xvidix
7602 XVMC = $_xvmc
7603 XVR100 = $_xvr100
7604 YUV4MPEG = $_yuv4mpeg
7605 ZR = $_zr
7607 # FFmpeg
7608 FFMPEG = $ffmpeg
7609 FFMPEG_INTERNALS = $ffmpeg_internals
7610 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7612 RANLIB = $_ranlib
7613 YASM = $_yasm
7614 YASMFLAGS = $YASMFLAGS
7616 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7617 CONFIG_AANDCT = yes
7618 CONFIG_FFT = yes
7619 CONFIG_GOLOMB = yes
7620 CONFIG_H264DSP = yes
7621 CONFIG_LPC = yes
7622 CONFIG_MDCT = yes
7623 CONFIG_RDFT = yes
7625 CONFIG_BZLIB = $bzlib
7626 CONFIG_ENCODERS = yes
7627 CONFIG_GPL = yes
7628 CONFIG_MLIB = $_mlib
7629 CONFIG_MUXERS = $_mencoder
7630 CONFIG_VDPAU = $_vdpau
7631 CONFIG_XVMC = $_xvmc
7632 CONFIG_ZLIB = $_zlib
7634 HAVE_PTHREADS = $_pthreads
7635 HAVE_SHM = $_shm
7636 HAVE_W32THREADS = $_w32threads
7637 HAVE_YASM = $have_yasm
7641 #############################################################################
7643 ff_config_enable () {
7644 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7645 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7646 _nprefix=$3;
7647 test -z "$_nprefix" && _nprefix='CONFIG'
7648 for part in $list; do
7649 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7650 echo "#define ${_nprefix}_$part 1"
7651 else
7652 echo "#define ${_nprefix}_$part 0"
7654 done
7657 echo "Creating config.h"
7658 cat > $TMPH << EOF
7659 /*----------------------------------------------------------------------------
7660 ** This file has been automatically generated by configure any changes in it
7661 ** will be lost when you run configure again.
7662 ** Instead of modifying definitions here, use the --enable/--disable options
7663 ** of the configure script! See ./configure --help for details.
7664 *---------------------------------------------------------------------------*/
7666 #ifndef MPLAYER_CONFIG_H
7667 #define MPLAYER_CONFIG_H
7669 /* Undefine this if you do not want to select mono audio (left or right)
7670 with a stereo MPEG layer 2/3 audio stream. The command line option
7671 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7672 right-only), with 0 being the default.
7674 #define CONFIG_FAKE_MONO 1
7676 /* set up audio OUTBURST. Do not change this! */
7677 #define OUTBURST 512
7679 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
7680 #undef FAST_OSD
7681 #undef FAST_OSD_TABLE
7683 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
7684 #define MPEG12_POSTPROC 1
7685 #define ATTRIBUTE_ALIGNED_MAX 16
7689 #define CONFIGURATION "$configuration"
7691 #define MPLAYER_DATADIR "$_datadir"
7692 #define MPLAYER_CONFDIR "$_confdir"
7693 #define MPLAYER_LIBDIR "$_libdir"
7694 #define MPLAYER_LOCALEDIR "$_localedir"
7696 $def_translation
7698 /* definitions needed by included libraries */
7699 #define HAVE_INTTYPES_H 1
7700 /* libmpeg2 + FFmpeg */
7701 $def_fast_inttypes
7702 /* libdvdcss */
7703 #define HAVE_ERRNO_H 1
7704 /* libdvdcss + libdvdread */
7705 #define HAVE_LIMITS_H 1
7706 /* libdvdcss + libfaad2 */
7707 #define HAVE_UNISTD_H 1
7708 /* libfaad2 + libdvdread */
7709 #define STDC_HEADERS 1
7710 #define HAVE_MEMCPY 1
7711 /* libfaad2 */
7712 #define HAVE_STRING_H 1
7713 #define HAVE_STRINGS_H 1
7714 #define HAVE_SYS_STAT_H 1
7715 #define HAVE_SYS_TYPES_H 1
7716 /* libdvdnav */
7717 #define READ_CACHE_TRACE 0
7718 /* libdvdread */
7719 #define HAVE_DLFCN_H 1
7720 $def_dvdcss
7723 /* system headers */
7724 $def_alloca_h
7725 $def_alsa_asoundlib_h
7726 $def_altivec_h
7727 $def_malloc_h
7728 $def_mman_h
7729 $def_mman_has_map_failed
7730 $def_soundcard_h
7731 $def_sys_asoundlib_h
7732 $def_sys_soundcard_h
7733 $def_sys_sysinfo_h
7734 $def_termios_h
7735 $def_termios_sys_h
7736 $def_winsock2_h
7739 /* system functions */
7740 $def_gethostbyname2
7741 $def_gettimeofday
7742 $def_glob
7743 $def_langinfo
7744 $def_lrintf
7745 $def_map_memalign
7746 $def_memalign
7747 $def_nanosleep
7748 $def_posix_select
7749 $def_select
7750 $def_setenv
7751 $def_setmode
7752 $def_shm
7753 $def_strsep
7754 $def_swab
7755 $def_sysi86
7756 $def_sysi86_iv
7757 $def_termcap
7758 $def_termios
7759 $def_vsscanf
7762 /* system-specific features */
7763 $def_asmalign_pot
7764 $def_builtin_expect
7765 $def_dl
7766 $def_dos_paths
7767 $def_extern_asm
7768 $def_extern_prefix
7769 $def_iconv
7770 $def_kstat
7771 $def_macosx_bundle
7772 $def_macosx_finder
7773 $def_maemo
7774 $def_named_asm_args
7775 $def_priority
7776 $def_quicktime
7777 $def_restrict_keyword
7778 $def_rtc
7779 $def_unrar_exec
7782 /* configurable options */
7783 $def_charset
7784 $def_crash_debug
7785 $def_debug
7786 $def_dynamic_plugins
7787 $def_fastmemcpy
7788 $def_menu
7789 $def_runtime_cpudetection
7790 $def_sighandler
7791 $def_sortsub
7792 $def_stream_cache
7793 $def_pthread_cache
7796 /* CPU stuff */
7797 #define __CPU__ $iproc
7798 $def_ebx_available
7799 $def_words_endian
7800 $def_bigendian
7801 $(ff_config_enable "$arch_all" "$arch" "ARCH")
7802 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
7803 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
7806 /* Blu-ray/DVD/VCD/CD */
7807 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
7808 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
7809 $def_bluray
7810 $def_bsdi_dvd
7811 $def_cddb
7812 $def_cdio
7813 $def_cdparanoia
7814 $def_cdrom
7815 $def_dvd
7816 $def_dvd_bsd
7817 $def_dvd_darwin
7818 $def_dvd_linux
7819 $def_dvd_openbsd
7820 $def_dvdio
7821 $def_dvdnav
7822 $def_dvdread
7823 $def_hpux_scsi_h
7824 $def_libcdio
7825 $def_sol_scsi_h
7826 $def_vcd
7829 /* codec libraries */
7830 $def_faac
7831 $def_faad
7832 $def_faad_internal
7833 $def_liba52
7834 $def_libdca
7835 $def_libdv
7836 $def_liblzo
7837 $def_libmpeg2
7838 $def_mad
7839 $def_mp3lame
7840 $def_mp3lame_preset
7841 $def_mp3lame_preset_medium
7842 $def_mp3lib
7843 $def_mpg123
7844 $def_musepack
7845 $def_speex
7846 $def_theora
7847 $def_toolame
7848 $def_tremor
7849 $def_twolame
7850 $def_vorbis
7851 $def_x264
7852 $def_xvid
7853 $def_zlib
7855 $def_libnut
7858 /* binary codecs */
7859 $def_qtx
7860 $def_qtx_win32
7861 $def_real
7862 $def_win32_loader
7863 $def_win32dll
7864 $def_xanim
7865 $def_xmms
7866 #define BINARY_CODECS_PATH "$_codecsdir"
7867 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
7870 /* Audio output drivers */
7871 $def_alsa
7872 $def_alsa1x
7873 $def_alsa5
7874 $def_alsa9
7875 $def_arts
7876 $def_coreaudio
7877 $def_dart
7878 $def_esd
7879 $def_esd_latency
7880 $def_jack
7881 $def_kai
7882 $def_nas
7883 $def_openal
7884 $def_openal_h
7885 $def_ossaudio
7886 $def_ossaudio_devdsp
7887 $def_ossaudio_devmixer
7888 $def_pulse
7889 $def_sgiaudio
7890 $def_sunaudio
7891 $def_win32waveout
7893 $def_ladspa
7894 $def_libbs2b
7897 /* input */
7898 $def_apple_ir
7899 $def_apple_remote
7900 $def_ioctl_bt848_h_name
7901 $def_ioctl_meteor_h_name
7902 $def_joystick
7903 $def_lirc
7904 $def_lircc
7905 $def_pvr
7906 $def_radio
7907 $def_radio_bsdbt848
7908 $def_radio_capture
7909 $def_radio_v4l
7910 $def_radio_v4l2
7911 $def_tv
7912 $def_tv_bsdbt848
7913 $def_tv_dshow
7914 $def_tv_v4l
7915 $def_tv_v4l1
7916 $def_tv_v4l2
7919 /* font stuff */
7920 $def_ass
7921 $def_bitmap_font
7922 $def_enca
7923 $def_fontconfig
7924 $def_freetype
7925 $def_fribidi
7928 /* networking */
7929 $def_closesocket
7930 $def_ftp
7931 $def_inet6
7932 $def_inet_aton
7933 $def_inet_pton
7934 $def_live
7935 $def_nemesi
7936 $def_networking
7937 $def_smb
7938 $def_socklen_t
7939 $def_vstream
7942 /* libvo options */
7943 $def_3dfx
7944 $def_aa
7945 $def_bl
7946 $def_caca
7947 $def_corevideo
7948 $def_dga
7949 $def_dga1
7950 $def_dga2
7951 $def_direct3d
7952 $def_directfb
7953 $def_directx
7954 $def_dvb
7955 $def_dvbin
7956 $def_dxr2
7957 $def_dxr3
7958 $def_fbdev
7959 $def_ggi
7960 $def_ggiwmh
7961 $def_gif
7962 $def_gif_4
7963 $def_gif_tvt_hack
7964 $def_gl
7965 $def_gl_win32
7966 $def_gl_x11
7967 $def_gl_sdl
7968 $def_matrixview
7969 $def_ivtv
7970 $def_jpeg
7971 $def_kva
7972 $def_md5sum
7973 $def_mga
7974 $def_mng
7975 $def_png
7976 $def_pnm
7977 $def_quartz
7978 $def_s3fb
7979 $def_sdl
7980 $def_sdl_sdl_h
7981 $def_svga
7982 $def_tdfxfb
7983 $def_tdfxvid
7984 $def_tga
7985 $def_v4l2
7986 $def_vdpau
7987 $def_vesa
7988 $def_vidix
7989 $def_vidix_drv_cyberblade
7990 $def_vidix_drv_ivtv
7991 $def_vidix_drv_mach64
7992 $def_vidix_drv_mga
7993 $def_vidix_drv_mga_crtc2
7994 $def_vidix_drv_nvidia
7995 $def_vidix_drv_pm3
7996 $def_vidix_drv_radeon
7997 $def_vidix_drv_rage128
7998 $def_vidix_drv_s3
7999 $def_vidix_drv_sh_veu
8000 $def_vidix_drv_sis
8001 $def_vidix_drv_unichrome
8002 $def_vidix_pfx
8003 $def_vm
8004 $def_wii
8005 $def_x11
8006 $def_xdpms
8007 $def_xf86keysym
8008 $def_xinerama
8009 $def_xmga
8010 $def_xss
8011 $def_xv
8012 $def_xvmc
8013 $def_xvr100
8014 $def_yuv4mpeg
8015 $def_zr
8018 /* FFmpeg */
8019 $def_ffmpeg
8020 $def_ffmpeg_internals
8022 #define CONFIG_DECODERS 1
8023 #define CONFIG_ENCODERS 1
8024 #define CONFIG_DEMUXERS 1
8025 $def_muxers
8027 $def_arpa_inet_h
8028 $def_bswap
8029 $def_bzlib
8030 $def_dcbzl
8031 $def_exp2
8032 $def_exp2f
8033 $def_fast_64bit
8034 $def_fast_unaligned
8035 $def_llrint
8036 $def_log2
8037 $def_log2f
8038 $def_lrint
8039 $def_memalign_hack
8040 $def_mlib
8041 $def_mkstemp
8042 $def_posix_memalign
8043 $def_pthreads
8044 $def_round
8045 $def_roundf
8046 $def_ten_operands
8047 $def_threads
8048 $def_truncf
8049 $def_xform_asm
8050 $def_yasm
8052 #define CONFIG_FASTDIV 0
8053 #define CONFIG_FFSERVER 0
8054 #define CONFIG_GPL 1
8055 #define CONFIG_GRAY 0
8056 #define CONFIG_HARDCODED_TABLES 0
8057 #define CONFIG_LIBVORBIS 0
8058 #define CONFIG_POWERPC_PERF 0
8059 #define CONFIG_SMALL 0
8060 #define CONFIG_SWSCALE_ALPHA 1
8062 #define HAVE_ATTRIBUTE_PACKED 1
8063 #define HAVE_GETHRTIME 0
8064 #define HAVE_INLINE_ASM 1
8065 #define HAVE_LDBRX 0
8066 #define HAVE_POLL_H 1
8067 #define HAVE_PPC4XX 0
8068 #define HAVE_VFP_ARGS 1
8069 #define HAVE_VIRTUALALLOC 0
8071 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8072 #define CONFIG_AANDCT 1
8073 #define CONFIG_DCT 1
8074 #define CONFIG_DWT 1
8075 #define CONFIG_FFT 1
8076 #define CONFIG_GOLOMB 1
8077 #define CONFIG_H264DSP 1
8078 #define CONFIG_LPC 1
8079 #define CONFIG_MDCT 1
8080 #define CONFIG_RDFT 1
8082 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8083 #ifndef MP_DEBUG
8084 #define HAVE_EBP_AVAILABLE 1
8085 #else
8086 #define HAVE_EBP_AVAILABLE 0
8087 #endif
8089 #endif /* MPLAYER_CONFIG_H */
8092 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8093 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8095 #############################################################################
8097 ./version.sh `$_cc -dumpversion`
8099 cat << EOF
8101 Config files successfully generated by ./configure $configuration !
8103 Install prefix: $_prefix
8104 Data directory: $_datadir
8105 Config direct.: $_confdir
8107 Byte order: $_byte_order
8108 Optimizing for: $_optimizing
8110 Languages:
8111 Messages (in addition to English): $language_msg
8112 Manual pages: $language_man
8113 Documentation: $language_doc
8115 Enabled optional drivers:
8116 Input: $inputmodules
8117 Codecs: $codecmodules
8118 Audio output: $aomodules
8119 Video output: $vomodules
8121 Disabled optional drivers:
8122 Input: $noinputmodules
8123 Codecs: $nocodecmodules
8124 Audio output: $noaomodules
8125 Video output: $novomodules
8127 'config.h' and 'config.mak' contain your configuration options.
8128 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8129 compile *** DO NOT REPORT BUGS if you tweak these files ***
8131 'make' will now compile MPlayer and 'make install' will install it.
8132 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8137 if test "$_mtrr" = yes ; then
8138 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$language_doc/video.html#mtrr)"
8139 echo
8142 if ! x86_32; then
8143 cat <<EOF
8144 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8145 operating system ($system_name). You may encounter a few files that cannot
8146 be played due to missing open source video/audio codec support.
8152 cat <<EOF
8153 Check $TMPLOG if you wonder why an autodetection failed (make sure
8154 development headers/packages are installed).
8156 NOTE: The --enable-* parameters unconditionally force options on, completely
8157 skipping autodetection. This behavior is unlike what you may be used to from
8158 autoconf-based configure scripts that can decide to override you. This greater
8159 level of control comes at a price. You may have to provide the correct compiler
8160 and linker flags yourself.
8161 If you used one of these options (except --enable-menu and similar ones that
8162 turn on internal features) and experience a compilation or linking failure,
8163 make sure you have passed the necessary compiler/linker flags to configure.
8165 If you suspect a bug, please read DOCS/HTML/$language_doc/bugreports.html.
8169 if test "$warn_cflags" = yes; then
8170 cat <<EOF
8172 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8173 but:
8175 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8177 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8178 To do so, execute 'CFLAGS= ./configure <options>'
8183 # Last move:
8184 rm -rf "$mplayer_tmpdir"