mp_msg.c: Avoid out-of-bounds read if empty string is printed
[mplayer/glamo.git] / configure
blob2cb46c94bd34f9fee58152c11b96fae5756e958e
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 source="$1"
63 shift
64 echo >> "$TMPLOG"
65 cat "$source" >> "$TMPLOG"
66 echo >> "$TMPLOG"
67 echo "$_cc $source $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
70 TMPRES="$?"
71 echo >> "$TMPLOG"
72 echo >> "$TMPLOG"
73 return "$TMPRES"
76 cc_check() {
77 compile_check $TMPC $@
80 cxx_check() {
81 compile_check $TMPCPP $@ -lstdc++
84 cflag_check() {
85 cat > $TMPC << EOF
86 int main(void) { return 0; }
87 EOF
88 compile_check $TMPC $@
91 function_check() {
92 cat > $TMPC << EOF
93 #include <$1>
94 int main(void) { $2; return 0; }
95 EOF
96 shift
97 compile_check $TMPC $@
100 header_check() {
101 cat > $TMPC << EOF
102 #include <$1>
103 int main(void) { return 0; }
105 shift
106 compile_check $TMPC $@
109 yasm_check() {
110 echo >> "$TMPLOG"
111 cat "$TMPS" >> "$TMPLOG"
112 echo >> "$TMPLOG"
113 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
114 rm -f "$TMPEXE"
115 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
116 TMPRES="$?"
117 echo >> "$TMPLOG"
118 echo >> "$TMPLOG"
119 return "$TMPRES"
122 tmp_run() {
123 "$TMPEXE" >> "$TMPLOG" 2>&1
126 # Display error message, flushes tempfile, exit
127 die () {
128 echo
129 echo "Error: $@" >&2
130 echo >&2
131 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
132 echo "Check \"$TMPLOG\" if you do not understand why it failed."
133 exit 1
136 # OS test booleans functions
137 issystem() {
138 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
140 aix() { issystem "AIX"; }
141 amigaos() { issystem "AmigaOS"; }
142 beos() { issystem "BEOS"; }
143 bsdos() { issystem "BSD/OS"; }
144 cygwin() { issystem "CYGWIN"; }
145 darwin() { issystem "Darwin"; }
146 dragonfly() { issystem "DragonFly"; }
147 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
148 gnu() { issystem "GNU"; }
149 hpux() { issystem "HP-UX"; }
150 irix() { issystem "IRIX"; }
151 linux() { issystem "Linux"; }
152 mingw32() { issystem "MINGW32"; }
153 morphos() { issystem "MorphOS"; }
154 netbsd() { issystem "NetBSD"; }
155 openbsd() { issystem "OpenBSD"; }
156 os2() { issystem "OS/2"; }
157 qnx() { issystem "QNX"; }
158 sunos() { issystem "SunOS"; }
159 win32() { cygwin || mingw32; }
161 # arch test boolean functions
162 # x86/x86pc is used by QNX
163 x86_32() {
164 case "$host_arch" in
165 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
166 *) return 1 ;;
167 esac
170 x86_64() {
171 case "$host_arch" in
172 x86_64|amd64) return 0 ;;
173 *) return 1 ;;
174 esac
177 x86() {
178 x86_32 || x86_64
181 ppc() {
182 case "$host_arch" in
183 ppc|ppc64|powerpc|powerpc64) return 0;;
184 *) return 1;;
185 esac
188 alpha() {
189 case "$host_arch" in
190 alpha*) return 0;;
191 *) return 1;;
192 esac
195 arm() {
196 case "$host_arch" in
197 arm*) return 0;;
198 *) return 1;;
199 esac
202 # Use this before starting a check
203 echocheck() {
204 echo "============ Checking for $@ ============" >> "$TMPLOG"
205 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
208 # Use this to echo the results of a check
209 echores() {
210 if test "$res_comment" ; then
211 res_comment="($res_comment)"
213 echo "Result is: $@ $res_comment" >> "$TMPLOG"
214 echo "##########################################" >> "$TMPLOG"
215 echo "" >> "$TMPLOG"
216 echo "$@ $res_comment"
217 res_comment=""
219 #############################################################################
221 # Check how echo works in this /bin/sh
222 case $(echo -n) in
223 -n) _echo_n= _echo_c='\c' ;; # SysV echo
224 *) _echo_n='-n ' _echo_c= ;; # BSD echo
225 esac
227 msg_lang_all=''
228 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
229 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")
230 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
232 show_help(){
233 cat << EOF
234 Usage: $0 [OPTIONS]...
236 Configuration:
237 -h, --help display this help and exit
239 Installation directories:
240 --prefix=DIR prefix directory for installation [/usr/local]
241 --bindir=DIR directory for installing binaries [PREFIX/bin]
242 --datadir=DIR directory for installing machine independent
243 data files (skins, etc) [PREFIX/share/mplayer]
244 --mandir=DIR directory for installing man pages [PREFIX/share/man]
245 --confdir=DIR directory for installing configuration files
246 [PREFIX/etc/mplayer]
247 --localedir=DIR directory for locale tree [PREFIX/share/locale]
248 --libdir=DIR directory for object code libraries [PREFIX/lib]
249 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
251 Optional features:
252 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
253 --disable-mplayer disable MPlayer compilation [enable]
254 --disable-largefiles disable support for files > 2GB [enable]
255 --enable-termcap use termcap database for key codes [autodetect]
256 --enable-termios use termios database for key codes [autodetect]
257 --disable-iconv disable iconv for encoding conversion [autodetect]
258 --disable-langinfo do not use langinfo [autodetect]
259 --enable-lirc enable LIRC (remote control) support [autodetect]
260 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
261 --enable-joystick enable joystick support [disable]
262 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
263 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
264 --disable-vm disable X video mode extensions [autodetect]
265 --disable-xf86keysym disable support for multimedia keys [autodetect]
266 --enable-radio enable radio interface [disable]
267 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
268 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
269 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
270 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
271 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
272 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
273 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
274 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
275 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
276 --disable-network disable networking [enable]
277 --enable-winsock2_h enable winsock2_h [autodetect]
278 --enable-smb enable Samba (SMB) input [autodetect]
279 --enable-live enable LIVE555 Streaming Media [autodetect]
280 --enable-nemesi enable Nemesi Streaming Media [autodetect]
281 --disable-vcd disable VCD support [autodetect]
282 --disable-dvdnav disable libdvdnav [autodetect]
283 --disable-dvdread disable libdvdread [autodetect]
284 --disable-dvdread-internal disable internal libdvdread [autodetect]
285 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
286 --disable-cdparanoia disable cdparanoia [autodetect]
287 --disable-cddb disable cddb [autodetect]
288 --disable-bitmap-font disable bitmap font support [enable]
289 --disable-freetype disable FreeType 2 font rendering [autodetect]
290 --disable-fontconfig disable fontconfig font lookup [autodetect]
291 --disable-unrarexec disable using of UnRAR executable [enabled]
292 --enable-menu enable OSD menu (not DVD menu) [disabled]
293 --disable-sortsub disable subtitle sorting [enabled]
294 --enable-fribidi enable the FriBiDi libs [autodetect]
295 --disable-enca disable ENCA charset oracle library [autodetect]
296 --disable-maemo disable maemo specific features [autodetect]
297 --enable-macosx-finder enable Mac OS X Finder invocation parameter
298 parsing [disabled]
299 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
300 --disable-inet6 disable IPv6 support [autodetect]
301 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
302 --disable-ftp disable FTP support [enabled]
303 --disable-vstream disable TiVo vstream client support [autodetect]
304 --disable-pthreads disable Posix threads support [autodetect]
305 --disable-w32threads disable Win32 threads support [autodetect]
306 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
307 --enable-rpath enable runtime linker path for extra libs [disabled]
309 Codecs:
310 --enable-gif enable GIF support [autodetect]
311 --enable-png enable PNG input/output support [autodetect]
312 --enable-mng enable MNG input support [autodetect]
313 --enable-jpeg enable JPEG input/output support [autodetect]
314 --enable-libcdio enable libcdio support [autodetect]
315 --enable-liblzo enable liblzo support [autodetect]
316 --disable-win32dll disable Win32 DLL support [autodetect]
317 --disable-qtx disable QuickTime codecs support [enabled]
318 --disable-xanim disable XAnim codecs support [enabled]
319 --disable-real disable RealPlayer codecs support [enabled]
320 --disable-xvid disable Xvid [autodetect]
321 --disable-x264 disable x264 [autodetect]
322 --disable-libnut disable libnut [autodetect]
323 --disable-libavutil disable libavutil [autodetect]
324 --disable-libavcodec disable libavcodec [autodetect]
325 --disable-libavformat disable libavformat [autodetect]
326 --disable-libpostproc disable libpostproc [autodetect]
327 --disable-libswscale disable libswscale [autodetect]
328 --disable-tremor-internal disable internal Tremor [enabled]
329 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
330 --enable-tremor enable external Tremor [autodetect]
331 --disable-libvorbis disable libvorbis support [autodetect]
332 --disable-speex disable Speex support [autodetect]
333 --enable-theora enable OggTheora libraries [autodetect]
334 --enable-faad enable external FAAD2 (AAC) [autodetect]
335 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
336 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
337 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
338 --disable-ladspa disable LADSPA plugin support [autodetect]
339 --disable-libbs2b disable libbs2b audio filter support [autodetect]
340 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
341 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
342 --disable-mad disable libmad (MPEG audio) support [autodetect]
343 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
344 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
345 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
346 --enable-xmms enable XMMS input plugin support [disabled]
347 --enable-libdca enable libdca support [autodetect]
348 --disable-mp3lib disable builtin mp3lib [autodetect]
349 --disable-liba52 disable liba52 [autodetect]
350 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
351 --disable-musepack disable musepack support [autodetect]
353 Video output:
354 --disable-vidix disable VIDIX [for x86 *nix]
355 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
356 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
357 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
358 --disable-vidix-pcidb disable VIDIX PCI device name database
359 --enable-dhahelper enable VIDIX dhahelper support
360 --enable-svgalib_helper enable VIDIX svgalib_helper support
361 --enable-gl enable OpenGL video output [autodetect]
362 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
363 --enable-dga2 enable DGA 2 support [autodetect]
364 --enable-dga1 enable DGA 1 support [autodetect]
365 --enable-vesa enable VESA video output [autodetect]
366 --enable-svga enable SVGAlib video output [autodetect]
367 --enable-sdl enable SDL video output [autodetect]
368 --enable-kva enable KVA video output [autodetect]
369 --enable-aa enable AAlib video output [autodetect]
370 --enable-caca enable CACA video output [autodetect]
371 --enable-ggi enable GGI video output [autodetect]
372 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
373 --enable-direct3d enable Direct3D video output [autodetect]
374 --enable-directx enable DirectX video output [autodetect]
375 --enable-dxr2 enable DXR2 video output [autodetect]
376 --enable-dxr3 enable DXR3/H+ video output [autodetect]
377 --enable-ivtv enable IVTV TV-Out video output [autodetect]
378 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
379 --enable-dvb enable DVB video output [autodetect]
380 --enable-mga enable mga_vid video output [autodetect]
381 --enable-xmga enable mga_vid X11 video output [autodetect]
382 --enable-xv enable Xv video output [autodetect]
383 --enable-xvmc enable XvMC acceleration [disable]
384 --enable-vdpau enable VDPAU acceleration [autodetect]
385 --enable-vm enable XF86VidMode support [autodetect]
386 --enable-xinerama enable Xinerama support [autodetect]
387 --enable-x11 enable X11 video output [autodetect]
388 --enable-xshape enable XShape support [autodetect]
389 --disable-xss disable screensaver support via xss [autodetect]
390 --enable-fbdev enable FBDev video output [autodetect]
391 --enable-mlib enable mediaLib video output (Solaris) [disable]
392 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
393 --enable-tdfxfb enable tdfxfb video output [disable]
394 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
395 --enable-wii enable Nintendo Wii/GameCube video output [disable]
396 --enable-directfb enable DirectFB video output [autodetect]
397 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
398 --enable-bl enable Blinkenlights video output [disable]
399 --enable-tdfxvid enable tdfx_vid video output [disable]
400 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
401 --disable-tga disable Targa video output [enable]
402 --disable-pnm disable PNM video output [enable]
403 --disable-md5sum disable md5sum video output [enable]
404 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
405 --disable-corevideo disable CoreVideo video output [autodetect]
406 --disable-quartz disable Quartz video output [autodetect]
408 Audio output:
409 --disable-alsa disable ALSA audio output [autodetect]
410 --disable-ossaudio disable OSS audio output [autodetect]
411 --disable-arts disable aRts audio output [autodetect]
412 --disable-esd disable esd audio output [autodetect]
413 --disable-pulse disable Pulseaudio audio output [autodetect]
414 --disable-jack disable JACK audio output [autodetect]
415 --enable-openal enable OpenAL audio output [disable]
416 --disable-nas disable NAS audio output [autodetect]
417 --disable-sgiaudio disable SGI audio output [autodetect]
418 --disable-sunaudio disable Sun audio output [autodetect]
419 --disable-kai disable KAI audio output [autodetect]
420 --disable-dart disable DART audio output [autodetect]
421 --disable-win32waveout disable Windows waveout audio output [autodetect]
422 --disable-coreaudio disable CoreAudio audio output [autodetect]
423 --disable-select disable using select() on the audio device [enable]
425 Language options:
426 --enable-translation enable support for translated output [disable]
427 --charset=charset convert the console messages to this character set
428 --language-doc=lang language to use for the documentation [en]
429 --language-man=lang language to use for the man pages [en]
430 --language-msg=lang extra languages for program messages [all]
431 --language=lang default language to use [en]
432 Specific options override --language. You can pass a list of languages separated
433 by whitespace or commas instead of a single language. Nonexisting translations
434 will be dropped from each list. All translations available in the list will be
435 installed. The value "all" will activate all translations. The LINGUAS
436 environment variable is honored. In all cases the fallback is English.
437 The program always supports English-language output; additional message
438 languages are only installed if --enable-translation is also specified.
439 Available values for --language-doc are: all $doc_lang_all
440 Available values for --language-man are: all $man_lang_all
441 Available values for --language-msg are: all $msg_lang_all
443 Miscellaneous options:
444 --enable-runtime-cpudetection enable runtime CPU detection [disable]
445 --enable-cross-compile enable cross-compilation [autodetect]
446 --cc=COMPILER C compiler to build MPlayer [gcc]
447 --host-cc=COMPILER C compiler for tools needed while building [gcc]
448 --as=ASSEMBLER assembler to build MPlayer [as]
449 --nm=NM nm tool to build MPlayer [nm]
450 --yasm=YASM Yasm assembler to build MPlayer [yasm]
451 --ar=AR librarian to build MPlayer [ar]
452 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
453 --windres=WINDRES windres to build MPlayer [windres]
454 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
455 --enable-static build a statically linked binary
456 --with-install=PATH path to a custom install program
458 Advanced options:
459 --enable-mmx enable MMX [autodetect]
460 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
461 --enable-3dnow enable 3DNow! [autodetect]
462 --enable-3dnowext enable extended 3DNow! [autodetect]
463 --enable-sse enable SSE [autodetect]
464 --enable-sse2 enable SSE2 [autodetect]
465 --enable-ssse3 enable SSSE3 [autodetect]
466 --enable-shm enable shm [autodetect]
467 --enable-altivec enable AltiVec (PowerPC) [autodetect]
468 --enable-armv5te enable DSP extensions (ARM) [autodetect]
469 --enable-armv6 enable ARMv6 (ARM) [autodetect]
470 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
471 --enable-armvfp enable ARM VFP (ARM) [autodetect]
472 --enable-neon enable NEON (ARM) [autodetect]
473 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
474 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
475 --enable-big-endian force byte order to big-endian [autodetect]
476 --enable-debug[=1-3] compile-in debugging information [disable]
477 --enable-profile compile-in profiling information [disable]
478 --disable-sighandler disable sighandler for crashes [enable]
479 --enable-crash-debug enable automatic gdb attach on crash [disable]
480 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
481 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
483 Use these options if autodetection fails:
484 --extra-cflags=FLAGS extra CFLAGS
485 --extra-ldflags=FLAGS extra LDFLAGS
486 --extra-libs=FLAGS extra linker flags
487 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
488 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
489 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
491 --with-freetype-config=PATH path to freetype-config
492 --with-glib-config=PATH path to glib*-config
493 --with-gtk-config=PATH path to gtk*-config
494 --with-sdl-config=PATH path to sdl*-config
495 --with-dvdnav-config=PATH path to dvdnav-config
496 --with-dvdread-config=PATH path to dvdread-config
498 This configure script is NOT autoconf-based, even though its output is similar.
499 It will try to autodetect all configuration options. If you --enable an option
500 it will be forcefully turned on, skipping autodetection. This can break
501 compilation, so you need to know what you are doing.
503 exit 0
504 } #show_help()
506 # GOTCHA: the variables below defines the default behavior for autodetection
507 # and have - unless stated otherwise - at least 2 states : yes no
508 # If autodetection is available then the third state is: auto
509 _mmx=auto
510 _3dnow=auto
511 _3dnowext=auto
512 _mmxext=auto
513 _sse=auto
514 _sse2=auto
515 _ssse3=auto
516 _cmov=auto
517 _fast_cmov=auto
518 _fast_clz=auto
519 _armv5te=auto
520 _armv6=auto
521 _armv6t2=auto
522 _armvfp=auto
523 neon=auto
524 _iwmmxt=auto
525 _mtrr=auto
526 _altivec=auto
527 _install=install
528 _ranlib=ranlib
529 _windres=windres
530 _cc=cc
531 _ar=ar
532 test "$CC" && _cc="$CC"
533 _as=auto
534 _nm=auto
535 _yasm=yasm
536 _runtime_cpudetection=no
537 _cross_compile=auto
538 _prefix="/usr/local"
539 _libavutil=auto
540 _libavcodec=auto
541 _libavformat=auto
542 _libpostproc=auto
543 _libswscale=auto
544 _libavcodec_internals=no
545 _libswscale_internals=no
546 _mencoder=yes
547 _mplayer=yes
548 _x11=auto
549 _xshape=auto
550 _xss=auto
551 _dga1=auto
552 _dga2=auto
553 _xv=auto
554 _xvmc=no #auto when complete
555 _vdpau=auto
556 _sdl=auto
557 _kva=auto
558 _direct3d=auto
559 _directx=auto
560 _win32waveout=auto
561 _nas=auto
562 _png=auto
563 _mng=auto
564 _jpeg=auto
565 _pnm=yes
566 _md5sum=yes
567 _yuv4mpeg=yes
568 _gif=auto
569 _gl=auto
570 matrixview=yes
571 _ggi=auto
572 _ggiwmh=auto
573 _aa=auto
574 _caca=auto
575 _svga=auto
576 _vesa=auto
577 _fbdev=auto
578 _dvb=auto
579 _dxr2=auto
580 _dxr3=auto
581 _ivtv=auto
582 _v4l2=auto
583 _iconv=auto
584 _langinfo=auto
585 _rtc=auto
586 _ossaudio=auto
587 _arts=auto
588 _esd=auto
589 _pulse=auto
590 _jack=auto
591 _kai=auto
592 _dart=auto
593 _openal=no
594 _libcdio=auto
595 _liblzo=auto
596 _mad=auto
597 _mp3lame=auto
598 _toolame=auto
599 _twolame=auto
600 _tremor=auto
601 _tremor_internal=yes
602 _tremor_low=no
603 _libvorbis=auto
604 _speex=auto
605 _theora=auto
606 _mpg123=auto
607 _mp3lib=auto
608 _liba52=auto
609 _libdca=auto
610 _libmpeg2=auto
611 _faad=auto
612 _faad_internal=auto
613 _faad_fixed=no
614 _faac=auto
615 _ladspa=auto
616 _libbs2b=auto
617 _xmms=no
618 _vcd=auto
619 _dvdnav=auto
620 _dvdnavconfig=dvdnav-config
621 _dvdreadconfig=dvdread-config
622 _dvdread=auto
623 _dvdread_internal=auto
624 _libdvdcss_internal=auto
625 _xanim=auto
626 _real=auto
627 _live=auto
628 _nemesi=auto
629 _native_rtsp=yes
630 _xinerama=auto
631 _mga=auto
632 _xmga=auto
633 _vm=auto
634 _xf86keysym=auto
635 _mlib=no #broken, thus disabled
636 _sgiaudio=auto
637 _sunaudio=auto
638 _alsa=auto
639 _fastmemcpy=yes
640 _unrar_exec=auto
641 _win32dll=auto
642 _select=yes
643 _radio=no
644 _radio_capture=no
645 _radio_v4l=auto
646 _radio_v4l2=auto
647 _radio_bsdbt848=auto
648 _tv=yes
649 _tv_v4l1=auto
650 _tv_v4l2=auto
651 _tv_bsdbt848=auto
652 _tv_dshow=auto
653 _pvr=auto
654 _network=yes
655 _winsock2_h=auto
656 _smb=auto
657 _vidix=auto
658 _vidix_pcidb=yes
659 _dhahelper=no
660 _svgalib_helper=no
661 _joystick=no
662 _xvid=auto
663 _x264=auto
664 _libnut=auto
665 _lirc=auto
666 _lircc=auto
667 _apple_remote=auto
668 _apple_ir=auto
669 _gui=no
670 _gtk1=no
671 _termcap=auto
672 _termios=auto
673 _3dfx=no
674 _s3fb=no
675 _wii=no
676 _tdfxfb=no
677 _tdfxvid=no
678 _xvr100=auto
679 _tga=yes
680 _directfb=auto
681 _zr=auto
682 _bl=no
683 _largefiles=yes
684 #language=en
685 _shm=auto
686 _translation=no
687 _charset="UTF-8"
688 _dynamic_plugins=no
689 _crash_debug=no
690 _sighandler=yes
691 _libdv=auto
692 _cdparanoia=auto
693 _cddb=auto
694 _big_endian=auto
695 _bitmap_font=yes
696 _freetype=auto
697 _fontconfig=auto
698 _menu=no
699 _qtx=auto
700 _maemo=auto
701 _coreaudio=auto
702 _corevideo=auto
703 _quartz=auto
704 quicktime=auto
705 _macosx_finder=no
706 _macosx_bundle=auto
707 _sortsub=yes
708 _freetypeconfig='freetype-config'
709 _fribidi=auto
710 _enca=auto
711 _inet6=auto
712 _gethostbyname2=auto
713 _ftp=yes
714 _musepack=auto
715 _vstream=auto
716 _pthreads=auto
717 _w32threads=auto
718 _ass=auto
719 _rpath=no
720 _asmalign_pot=auto
721 _stream_cache=yes
722 _priority=no
723 def_dos_paths="#define HAVE_DOS_PATHS 0"
724 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
725 def_priority="#undef CONFIG_PRIORITY"
726 def_pthread_cache="#undef PTHREAD_CACHE"
727 _need_shmem=yes
728 for ac_option do
729 case "$ac_option" in
730 --help|-help|-h)
731 show_help
733 --prefix=*)
734 _prefix=$(echo $ac_option | cut -d '=' -f 2)
736 --bindir=*)
737 _bindir=$(echo $ac_option | cut -d '=' -f 2)
739 --datadir=*)
740 _datadir=$(echo $ac_option | cut -d '=' -f 2)
742 --mandir=*)
743 _mandir=$(echo $ac_option | cut -d '=' -f 2)
745 --confdir=*)
746 _confdir=$(echo $ac_option | cut -d '=' -f 2)
748 --libdir=*)
749 _libdir=$(echo $ac_option | cut -d '=' -f 2)
751 --codecsdir=*)
752 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
754 --localedir=*)
755 _localedir=$(echo $ac_option | cut -d '=' -f 2)
758 --with-install=*)
759 _install=$(echo $ac_option | cut -d '=' -f 2 )
761 --with-xvmclib=*)
762 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
765 --with-sdl-config=*)
766 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
768 --with-freetype-config=*)
769 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
771 --with-gtk-config=*)
772 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
774 --with-glib-config=*)
775 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
777 --with-dvdnav-config=*)
778 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
780 --with-dvdread-config=*)
781 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
784 --extra-cflags=*)
785 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
787 --extra-ldflags=*)
788 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
790 --extra-libs=*)
791 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
793 --extra-libs-mplayer=*)
794 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
796 --extra-libs-mencoder=*)
797 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
800 --target=*)
801 _target=$(echo $ac_option | cut -d '=' -f 2)
803 --cc=*)
804 _cc=$(echo $ac_option | cut -d '=' -f 2)
806 --host-cc=*)
807 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
809 --as=*)
810 _as=$(echo $ac_option | cut -d '=' -f 2)
812 --nm=*)
813 _nm=$(echo $ac_option | cut -d '=' -f 2)
815 --yasm=*)
816 _yasm=$(echo $ac_option | cut -d '=' -f 2)
818 --ar=*)
819 _ar=$(echo $ac_option | cut -d '=' -f 2)
821 --ranlib=*)
822 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
824 --windres=*)
825 _windres=$(echo $ac_option | cut -d '=' -f 2)
827 --charset=*)
828 _charset=$(echo $ac_option | cut -d '=' -f 2)
830 --language-doc=*)
831 language_doc=$(echo $ac_option | cut -d '=' -f 2)
833 --language-man=*)
834 language_man=$(echo $ac_option | cut -d '=' -f 2)
836 --language-msg=*)
837 language_msg=$(echo $ac_option | cut -d '=' -f 2)
839 --language=*)
840 language=$(echo $ac_option | cut -d '=' -f 2)
843 --enable-static)
844 _ld_static='-static'
846 --disable-static)
847 _ld_static=''
849 --enable-profile)
850 _profile='-p'
852 --disable-profile)
853 _profile=
855 --enable-debug)
856 _debug='-g'
858 --enable-debug=*)
859 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
861 --disable-debug)
862 _debug=
864 --enable-translation) _translation=yes ;;
865 --disable-translation) _translation=no ;;
866 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
867 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
868 --enable-cross-compile) _cross_compile=yes ;;
869 --disable-cross-compile) _cross_compile=no ;;
870 --enable-mencoder) _mencoder=yes ;;
871 --disable-mencoder) _mencoder=no ;;
872 --enable-mplayer) _mplayer=yes ;;
873 --disable-mplayer) _mplayer=no ;;
874 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
875 --disable-dynamic-plugins) _dynamic_plugins=no ;;
876 --enable-x11) _x11=yes ;;
877 --disable-x11) _x11=no ;;
878 --enable-xshape) _xshape=yes ;;
879 --disable-xshape) _xshape=no ;;
880 --enable-xss) _xss=yes ;;
881 --disable-xss) _xss=no ;;
882 --enable-xv) _xv=yes ;;
883 --disable-xv) _xv=no ;;
884 --enable-xvmc) _xvmc=yes ;;
885 --disable-xvmc) _xvmc=no ;;
886 --enable-vdpau) _vdpau=yes ;;
887 --disable-vdpau) _vdpau=no ;;
888 --enable-sdl) _sdl=yes ;;
889 --disable-sdl) _sdl=no ;;
890 --enable-kva) _kva=yes ;;
891 --disable-kva) _kva=no ;;
892 --enable-direct3d) _direct3d=yes ;;
893 --disable-direct3d) _direct3d=no ;;
894 --enable-directx) _directx=yes ;;
895 --disable-directx) _directx=no ;;
896 --enable-win32waveout) _win32waveout=yes ;;
897 --disable-win32waveout) _win32waveout=no ;;
898 --enable-nas) _nas=yes ;;
899 --disable-nas) _nas=no ;;
900 --enable-png) _png=yes ;;
901 --disable-png) _png=no ;;
902 --enable-mng) _mng=yes ;;
903 --disable-mng) _mng=no ;;
904 --enable-jpeg) _jpeg=yes ;;
905 --disable-jpeg) _jpeg=no ;;
906 --enable-pnm) _pnm=yes ;;
907 --disable-pnm) _pnm=no ;;
908 --enable-md5sum) _md5sum=yes ;;
909 --disable-md5sum) _md5sum=no ;;
910 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
911 --disable-yuv4mpeg) _yuv4mpeg=no ;;
912 --enable-gif) _gif=yes ;;
913 --disable-gif) _gif=no ;;
914 --enable-gl) _gl=yes ;;
915 --disable-gl) _gl=no ;;
916 --enable-matrixview) matrixview=yes ;;
917 --disable-matrixview) matrixview=no ;;
918 --enable-ggi) _ggi=yes ;;
919 --disable-ggi) _ggi=no ;;
920 --enable-ggiwmh) _ggiwmh=yes ;;
921 --disable-ggiwmh) _ggiwmh=no ;;
922 --enable-aa) _aa=yes ;;
923 --disable-aa) _aa=no ;;
924 --enable-caca) _caca=yes ;;
925 --disable-caca) _caca=no ;;
926 --enable-svga) _svga=yes ;;
927 --disable-svga) _svga=no ;;
928 --enable-vesa) _vesa=yes ;;
929 --disable-vesa) _vesa=no ;;
930 --enable-fbdev) _fbdev=yes ;;
931 --disable-fbdev) _fbdev=no ;;
932 --enable-dvb) _dvb=yes ;;
933 --disable-dvb) _dvb=no ;;
934 --enable-dxr2) _dxr2=yes ;;
935 --disable-dxr2) _dxr2=no ;;
936 --enable-dxr3) _dxr3=yes ;;
937 --disable-dxr3) _dxr3=no ;;
938 --enable-ivtv) _ivtv=yes ;;
939 --disable-ivtv) _ivtv=no ;;
940 --enable-v4l2) _v4l2=yes ;;
941 --disable-v4l2) _v4l2=no ;;
942 --enable-iconv) _iconv=yes ;;
943 --disable-iconv) _iconv=no ;;
944 --enable-langinfo) _langinfo=yes ;;
945 --disable-langinfo) _langinfo=no ;;
946 --enable-rtc) _rtc=yes ;;
947 --disable-rtc) _rtc=no ;;
948 --enable-libdv) _libdv=yes ;;
949 --disable-libdv) _libdv=no ;;
950 --enable-ossaudio) _ossaudio=yes ;;
951 --disable-ossaudio) _ossaudio=no ;;
952 --enable-arts) _arts=yes ;;
953 --disable-arts) _arts=no ;;
954 --enable-esd) _esd=yes ;;
955 --disable-esd) _esd=no ;;
956 --enable-pulse) _pulse=yes ;;
957 --disable-pulse) _pulse=no ;;
958 --enable-jack) _jack=yes ;;
959 --disable-jack) _jack=no ;;
960 --enable-openal) _openal=yes ;;
961 --disable-openal) _openal=no ;;
962 --enable-kai) _kai=yes ;;
963 --disable-kai) _kai=no ;;
964 --enable-dart) _dart=yes ;;
965 --disable-dart) _dart=no ;;
966 --enable-mad) _mad=yes ;;
967 --disable-mad) _mad=no ;;
968 --enable-mp3lame) _mp3lame=yes ;;
969 --disable-mp3lame) _mp3lame=no ;;
970 --enable-toolame) _toolame=yes ;;
971 --disable-toolame) _toolame=no ;;
972 --enable-twolame) _twolame=yes ;;
973 --disable-twolame) _twolame=no ;;
974 --enable-libcdio) _libcdio=yes ;;
975 --disable-libcdio) _libcdio=no ;;
976 --enable-liblzo) _liblzo=yes ;;
977 --disable-liblzo) _liblzo=no ;;
978 --enable-libvorbis) _libvorbis=yes ;;
979 --disable-libvorbis) _libvorbis=no ;;
980 --enable-speex) _speex=yes ;;
981 --disable-speex) _speex=no ;;
982 --enable-tremor) _tremor=yes ;;
983 --disable-tremor) _tremor=no ;;
984 --enable-tremor-internal) _tremor_internal=yes ;;
985 --disable-tremor-internal) _tremor_internal=no ;;
986 --enable-tremor-low) _tremor_low=yes ;;
987 --disable-tremor-low) _tremor_low=no ;;
988 --enable-theora) _theora=yes ;;
989 --disable-theora) _theora=no ;;
990 --enable-mpg123) _mpg123=yes ;;
991 --disable-mpg123) _mpg123=no ;;
992 --enable-mp3lib) _mp3lib=yes ;;
993 --disable-mp3lib) _mp3lib=no ;;
994 --enable-liba52) _liba52=yes ;;
995 --disable-liba52) _liba52=no ;;
996 --enable-libdca) _libdca=yes ;;
997 --disable-libdca) _libdca=no ;;
998 --enable-libmpeg2) _libmpeg2=yes ;;
999 --disable-libmpeg2) _libmpeg2=no ;;
1000 --enable-musepack) _musepack=yes ;;
1001 --disable-musepack) _musepack=no ;;
1002 --enable-faad) _faad=yes ;;
1003 --disable-faad) _faad=no ;;
1004 --enable-faad-internal) _faad_internal=yes ;;
1005 --disable-faad-internal) _faad_internal=no ;;
1006 --enable-faad-fixed) _faad_fixed=yes ;;
1007 --disable-faad-fixed) _faad_fixed=no ;;
1008 --enable-faac) _faac=yes ;;
1009 --disable-faac) _faac=no ;;
1010 --enable-ladspa) _ladspa=yes ;;
1011 --disable-ladspa) _ladspa=no ;;
1012 --enable-libbs2b) _libbs2b=yes ;;
1013 --disable-libbs2b) _libbs2b=no ;;
1014 --enable-xmms) _xmms=yes ;;
1015 --disable-xmms) _xmms=no ;;
1016 --enable-vcd) _vcd=yes ;;
1017 --disable-vcd) _vcd=no ;;
1018 --enable-dvdread) _dvdread=yes ;;
1019 --disable-dvdread) _dvdread=no ;;
1020 --enable-dvdread-internal) _dvdread_internal=yes ;;
1021 --disable-dvdread-internal) _dvdread_internal=no ;;
1022 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1023 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1024 --enable-dvdnav) _dvdnav=yes ;;
1025 --disable-dvdnav) _dvdnav=no ;;
1026 --enable-xanim) _xanim=yes ;;
1027 --disable-xanim) _xanim=no ;;
1028 --enable-real) _real=yes ;;
1029 --disable-real) _real=no ;;
1030 --enable-live) _live=yes ;;
1031 --disable-live) _live=no ;;
1032 --enable-nemesi) _nemesi=yes ;;
1033 --disable-nemesi) _nemesi=no ;;
1034 --enable-xinerama) _xinerama=yes ;;
1035 --disable-xinerama) _xinerama=no ;;
1036 --enable-mga) _mga=yes ;;
1037 --disable-mga) _mga=no ;;
1038 --enable-xmga) _xmga=yes ;;
1039 --disable-xmga) _xmga=no ;;
1040 --enable-vm) _vm=yes ;;
1041 --disable-vm) _vm=no ;;
1042 --enable-xf86keysym) _xf86keysym=yes ;;
1043 --disable-xf86keysym) _xf86keysym=no ;;
1044 --enable-mlib) _mlib=yes ;;
1045 --disable-mlib) _mlib=no ;;
1046 --enable-sunaudio) _sunaudio=yes ;;
1047 --disable-sunaudio) _sunaudio=no ;;
1048 --enable-sgiaudio) _sgiaudio=yes ;;
1049 --disable-sgiaudio) _sgiaudio=no ;;
1050 --enable-alsa) _alsa=yes ;;
1051 --disable-alsa) _alsa=no ;;
1052 --enable-tv) _tv=yes ;;
1053 --disable-tv) _tv=no ;;
1054 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1055 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1056 --enable-tv-v4l1) _tv_v4l1=yes ;;
1057 --disable-tv-v4l1) _tv_v4l1=no ;;
1058 --enable-tv-v4l2) _tv_v4l2=yes ;;
1059 --disable-tv-v4l2) _tv_v4l2=no ;;
1060 --enable-tv-dshow) _tv_dshow=yes ;;
1061 --disable-tv-dshow) _tv_dshow=no ;;
1062 --enable-radio) _radio=yes ;;
1063 --enable-radio-capture) _radio_capture=yes ;;
1064 --disable-radio-capture) _radio_capture=no ;;
1065 --disable-radio) _radio=no ;;
1066 --enable-radio-v4l) _radio_v4l=yes ;;
1067 --disable-radio-v4l) _radio_v4l=no ;;
1068 --enable-radio-v4l2) _radio_v4l2=yes ;;
1069 --disable-radio-v4l2) _radio_v4l2=no ;;
1070 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1071 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1072 --enable-pvr) _pvr=yes ;;
1073 --disable-pvr) _pvr=no ;;
1074 --enable-fastmemcpy) _fastmemcpy=yes ;;
1075 --disable-fastmemcpy) _fastmemcpy=no ;;
1076 --enable-network) _network=yes ;;
1077 --disable-network) _network=no ;;
1078 --enable-winsock2_h) _winsock2_h=yes ;;
1079 --disable-winsock2_h) _winsock2_h=no ;;
1080 --enable-smb) _smb=yes ;;
1081 --disable-smb) _smb=no ;;
1082 --enable-vidix) _vidix=yes ;;
1083 --disable-vidix) _vidix=no ;;
1084 --with-vidix-drivers=*)
1085 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1087 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1088 --enable-dhahelper) _dhahelper=yes ;;
1089 --disable-dhahelper) _dhahelper=no ;;
1090 --enable-svgalib_helper) _svgalib_helper=yes ;;
1091 --disable-svgalib_helper) _svgalib_helper=no ;;
1092 --enable-joystick) _joystick=yes ;;
1093 --disable-joystick) _joystick=no ;;
1094 --enable-xvid) _xvid=yes ;;
1095 --disable-xvid) _xvid=no ;;
1096 --enable-x264) _x264=yes ;;
1097 --disable-x264) _x264=no ;;
1098 --enable-libnut) _libnut=yes ;;
1099 --disable-libnut) _libnut=no ;;
1100 --enable-libavutil) _libavutil=yes ;;
1101 --disable-libavutil) _libavutil=no ;;
1102 --enable-libavcodec) _libavcodec=yes ;;
1103 --disable-libavcodec) _libavcodec=no ;;
1104 --enable-libavformat) _libavformat=yes ;;
1105 --disable-libavformat) _libavformat=no ;;
1106 --enable-libpostproc) _libpostproc=yes ;;
1107 --disable-libpostproc) _libpostproc=no ;;
1108 --enable-libswscale) _libswscale=yes ;;
1109 --disable-libswscale) _libswscale=no ;;
1110 --ffmpeg-source-dir=*)
1111 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1113 --enable-lirc) _lirc=yes ;;
1114 --disable-lirc) _lirc=no ;;
1115 --enable-lircc) _lircc=yes ;;
1116 --disable-lircc) _lircc=no ;;
1117 --enable-apple-remote) _apple_remote=yes ;;
1118 --disable-apple-remote) _apple_remote=no ;;
1119 --enable-apple-ir) _apple_ir=yes ;;
1120 --disable-apple-ir) _apple_ir=no ;;
1121 --enable-gui) _gui=yes ;;
1122 --disable-gui) _gui=no ;;
1123 --enable-gtk1) _gtk1=yes ;;
1124 --disable-gtk1) _gtk1=no ;;
1125 --enable-termcap) _termcap=yes ;;
1126 --disable-termcap) _termcap=no ;;
1127 --enable-termios) _termios=yes ;;
1128 --disable-termios) _termios=no ;;
1129 --enable-3dfx) _3dfx=yes ;;
1130 --disable-3dfx) _3dfx=no ;;
1131 --enable-s3fb) _s3fb=yes ;;
1132 --disable-s3fb) _s3fb=no ;;
1133 --enable-wii) _wii=yes ;;
1134 --disable-wii) _wii=no ;;
1135 --enable-tdfxfb) _tdfxfb=yes ;;
1136 --disable-tdfxfb) _tdfxfb=no ;;
1137 --disable-tdfxvid) _tdfxvid=no ;;
1138 --enable-tdfxvid) _tdfxvid=yes ;;
1139 --disable-xvr100) _xvr100=no ;;
1140 --enable-xvr100) _xvr100=yes ;;
1141 --disable-tga) _tga=no ;;
1142 --enable-tga) _tga=yes ;;
1143 --enable-directfb) _directfb=yes ;;
1144 --disable-directfb) _directfb=no ;;
1145 --enable-zr) _zr=yes ;;
1146 --disable-zr) _zr=no ;;
1147 --enable-bl) _bl=yes ;;
1148 --disable-bl) _bl=no ;;
1149 --enable-mtrr) _mtrr=yes ;;
1150 --disable-mtrr) _mtrr=no ;;
1151 --enable-largefiles) _largefiles=yes ;;
1152 --disable-largefiles) _largefiles=no ;;
1153 --enable-shm) _shm=yes ;;
1154 --disable-shm) _shm=no ;;
1155 --enable-select) _select=yes ;;
1156 --disable-select) _select=no ;;
1157 --enable-cdparanoia) _cdparanoia=yes ;;
1158 --disable-cdparanoia) _cdparanoia=no ;;
1159 --enable-cddb) _cddb=yes ;;
1160 --disable-cddb) _cddb=no ;;
1161 --enable-big-endian) _big_endian=yes ;;
1162 --disable-big-endian) _big_endian=no ;;
1163 --enable-bitmap-font) _bitmap_font=yes ;;
1164 --disable-bitmap-font) _bitmap_font=no ;;
1165 --enable-freetype) _freetype=yes ;;
1166 --disable-freetype) _freetype=no ;;
1167 --enable-fontconfig) _fontconfig=yes ;;
1168 --disable-fontconfig) _fontconfig=no ;;
1169 --enable-unrarexec) _unrar_exec=yes ;;
1170 --disable-unrarexec) _unrar_exec=no ;;
1171 --enable-ftp) _ftp=yes ;;
1172 --disable-ftp) _ftp=no ;;
1173 --enable-vstream) _vstream=yes ;;
1174 --disable-vstream) _vstream=no ;;
1175 --enable-pthreads) _pthreads=yes ;;
1176 --disable-pthreads) _pthreads=no ;;
1177 --enable-w32threads) _w32threads=yes ;;
1178 --disable-w32threads) _w32threads=no ;;
1179 --enable-ass) _ass=yes ;;
1180 --disable-ass) _ass=no ;;
1181 --enable-rpath) _rpath=yes ;;
1182 --disable-rpath) _rpath=no ;;
1184 --enable-fribidi) _fribidi=yes ;;
1185 --disable-fribidi) _fribidi=no ;;
1187 --enable-enca) _enca=yes ;;
1188 --disable-enca) _enca=no ;;
1190 --enable-inet6) _inet6=yes ;;
1191 --disable-inet6) _inet6=no ;;
1193 --enable-gethostbyname2) _gethostbyname2=yes ;;
1194 --disable-gethostbyname2) _gethostbyname2=no ;;
1196 --enable-dga1) _dga1=yes ;;
1197 --disable-dga1) _dga1=no ;;
1198 --enable-dga2) _dga2=yes ;;
1199 --disable-dga2) _dga2=no ;;
1201 --enable-menu) _menu=yes ;;
1202 --disable-menu) _menu=no ;;
1204 --enable-qtx) _qtx=yes ;;
1205 --disable-qtx) _qtx=no ;;
1207 --enable-coreaudio) _coreaudio=yes ;;
1208 --disable-coreaudio) _coreaudio=no ;;
1209 --enable-corevideo) _corevideo=yes ;;
1210 --disable-corevideo) _corevideo=no ;;
1211 --enable-quartz) _quartz=yes ;;
1212 --disable-quartz) _quartz=no ;;
1213 --enable-macosx-finder) _macosx_finder=yes ;;
1214 --disable-macosx-finder) _macosx_finder=no ;;
1215 --enable-macosx-bundle) _macosx_bundle=yes ;;
1216 --disable-macosx-bundle) _macosx_bundle=no ;;
1218 --enable-maemo) _maemo=yes ;;
1219 --disable-maemo) _maemo=no ;;
1221 --enable-sortsub) _sortsub=yes ;;
1222 --disable-sortsub) _sortsub=no ;;
1224 --enable-crash-debug) _crash_debug=yes ;;
1225 --disable-crash-debug) _crash_debug=no ;;
1226 --enable-sighandler) _sighandler=yes ;;
1227 --disable-sighandler) _sighandler=no ;;
1228 --enable-win32dll) _win32dll=yes ;;
1229 --disable-win32dll) _win32dll=no ;;
1231 --enable-sse) _sse=yes ;;
1232 --disable-sse) _sse=no ;;
1233 --enable-sse2) _sse2=yes ;;
1234 --disable-sse2) _sse2=no ;;
1235 --enable-ssse3) _ssse3=yes ;;
1236 --disable-ssse3) _ssse3=no ;;
1237 --enable-mmxext) _mmxext=yes ;;
1238 --disable-mmxext) _mmxext=no ;;
1239 --enable-3dnow) _3dnow=yes ;;
1240 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1241 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1242 --disable-3dnowext) _3dnowext=no ;;
1243 --enable-cmov) _cmov=yes ;;
1244 --disable-cmov) _cmov=no ;;
1245 --enable-fast-cmov) _fast_cmov=yes ;;
1246 --disable-fast-cmov) _fast_cmov=no ;;
1247 --enable-fast-clz) _fast_clz=yes ;;
1248 --disable-fast-clz) _fast_clz=no ;;
1249 --enable-altivec) _altivec=yes ;;
1250 --disable-altivec) _altivec=no ;;
1251 --enable-armv5te) _armv5te=yes ;;
1252 --disable-armv5te) _armv5te=no ;;
1253 --enable-armv6) _armv6=yes ;;
1254 --disable-armv6) _armv6=no ;;
1255 --enable-armv6t2) _armv6t2=yes ;;
1256 --disable-armv6t2) _armv6t2=no ;;
1257 --enable-armvfp) _armvfp=yes ;;
1258 --disable-armvfp) _armvfp=no ;;
1259 --enable-neon) neon=yes ;;
1260 --disable-neon) neon=no ;;
1261 --enable-iwmmxt) _iwmmxt=yes ;;
1262 --disable-iwmmxt) _iwmmxt=no ;;
1263 --enable-mmx) _mmx=yes ;;
1264 --disable-mmx) # 3Dnow! and MMX2 require MMX
1265 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1268 echo "Unknown parameter: $ac_option"
1269 exit 1
1272 esac
1273 done
1275 if test "$_gui" = yes ; then
1276 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1277 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1280 # Atmos: moved this here, to be correct, if --prefix is specified
1281 test -z "$_bindir" && _bindir="$_prefix/bin"
1282 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1283 test -z "$_mandir" && _mandir="$_prefix/share/man"
1284 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1285 test -z "$_libdir" && _libdir="$_prefix/lib"
1286 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1288 # Determine our OS name and CPU architecture
1289 if test -z "$_target" ; then
1290 # OS name
1291 system_name=$(uname -s 2>&1)
1292 case "$system_name" in
1293 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1295 Haiku)
1296 system_name=BeOS
1298 IRIX*)
1299 system_name=IRIX
1301 GNU/kFreeBSD)
1302 system_name=FreeBSD
1304 HP-UX*)
1305 system_name=HP-UX
1307 [cC][yY][gG][wW][iI][nN]*)
1308 system_name=CYGWIN
1310 MINGW32*)
1311 system_name=MINGW32
1313 OS/2*)
1314 system_name=OS/2
1317 system_name="$system_name-UNKNOWN"
1319 esac
1322 # host's CPU/instruction set
1323 host_arch=$(uname -p 2>&1)
1324 case "$host_arch" in
1325 i386|sparc|ppc|alpha|arm|mips|vax)
1327 powerpc) # Darwin returns 'powerpc'
1328 host_arch=ppc
1330 *) # uname -p on Linux returns 'unknown' for the processor type,
1331 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1333 # Maybe uname -m (machine hardware name) returns something we
1334 # recognize.
1336 # x86/x86pc is used by QNX
1337 case "$(uname -m 2>&1)" in
1338 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 ;;
1339 ia64) host_arch=ia64 ;;
1340 macppc|ppc) host_arch=ppc ;;
1341 ppc64) host_arch=ppc64 ;;
1342 alpha) host_arch=alpha ;;
1343 sparc) host_arch=sparc ;;
1344 sparc64) host_arch=sparc64 ;;
1345 parisc*|hppa*|9000*) host_arch=hppa ;;
1346 arm*|zaurus|cats) host_arch=arm ;;
1347 sh3|sh4|sh4a) host_arch=sh ;;
1348 s390) host_arch=s390 ;;
1349 s390x) host_arch=s390x ;;
1350 *mips*) host_arch=mips ;;
1351 vax) host_arch=vax ;;
1352 xtensa*) host_arch=xtensa ;;
1353 *) host_arch=UNKNOWN ;;
1354 esac
1356 esac
1357 else # if test -z "$_target"
1358 system_name=$(echo $_target | cut -d '-' -f 2)
1359 case "$(echo $system_name | tr A-Z a-z)" in
1360 linux) system_name=Linux ;;
1361 freebsd) system_name=FreeBSD ;;
1362 gnu/kfreebsd) system_name=FreeBSD ;;
1363 netbsd) system_name=NetBSD ;;
1364 bsd/os) system_name=BSD/OS ;;
1365 openbsd) system_name=OpenBSD ;;
1366 dragonfly) system_name=DragonFly ;;
1367 sunos) system_name=SunOS ;;
1368 qnx) system_name=QNX ;;
1369 morphos) system_name=MorphOS ;;
1370 amigaos) system_name=AmigaOS ;;
1371 mingw32*) system_name=MINGW32 ;;
1372 esac
1373 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1374 host_arch=$(echo $_target | cut -d '-' -f 1)
1375 if test $(echo $host_arch) != "x86_64" ; then
1376 host_arch=$(echo $host_arch | tr '_' '-')
1380 extra_cflags="-I. $extra_cflags"
1381 _timer=timer-linux.c
1382 _getch=getch2.c
1383 if freebsd ; then
1384 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1385 extra_cflags="$extra_cflags -I/usr/local/include"
1388 if netbsd || dragonfly ; then
1389 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1390 extra_cflags="$extra_cflags -I/usr/pkg/include"
1393 if darwin; then
1394 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1395 _timer=timer-darwin.c
1398 if aix ; then
1399 extra_ldflags="$extra_ldflags -lC"
1402 if irix ; then
1403 _ranlib='ar -r'
1404 elif linux ; then
1405 _ranlib='true'
1408 if win32 ; then
1409 _exesuf=".exe"
1410 extra_cflags="$extra_cflags -fno-common"
1411 # -lwinmm is always needed for osdep/timer-win2.c
1412 extra_ldflags="$extra_ldflags -lwinmm"
1413 _pe_executable=yes
1414 _timer=timer-win2.c
1415 _priority=yes
1416 def_dos_paths="#define HAVE_DOS_PATHS 1"
1417 def_priority="#define CONFIG_PRIORITY 1"
1420 if mingw32 ; then
1421 _getch=getch2-win.c
1422 _need_shmem=no
1425 if amigaos ; then
1426 _select=no
1427 _sighandler=no
1428 _stream_cache=no
1429 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1430 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1433 if qnx ; then
1434 extra_ldflags="$extra_ldflags -lph"
1437 if os2 ; then
1438 _exesuf=".exe"
1439 _getch=getch2-os2.c
1440 _need_shmem=no
1441 _priority=yes
1442 def_dos_paths="#define HAVE_DOS_PATHS 1"
1443 def_priority="#define CONFIG_PRIORITY 1"
1446 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1447 test "$tmpdir" && break
1448 done
1450 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1451 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1453 TMPLOG="config.log"
1454 TMPC="$mplayer_tmpdir/tmp.c"
1455 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1456 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1457 TMPH="$mplayer_tmpdir/tmp.h"
1458 TMPS="$mplayer_tmpdir/tmp.S"
1460 rm -f "$TMPLOG"
1461 echo configuration: $configuration > "$TMPLOG"
1462 echo >> "$TMPLOG"
1465 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1466 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1470 # Checking CC version...
1471 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1472 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1473 echocheck "$_cc version"
1474 cc_vendor=intel
1475 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1476 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1477 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1478 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1479 # TODO verify older icc/ecc compatibility
1480 case $cc_version in
1482 cc_version="v. ?.??, bad"
1483 cc_fail=yes
1485 10.1|11.0|11.1)
1486 cc_version="$cc_version, ok"
1489 cc_version="$cc_version, bad"
1490 cc_fail=yes
1492 esac
1493 echores "$cc_version"
1494 else
1495 for _cc in "$_cc" gcc cc ; do
1496 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1497 if test "$cc_name_tmp" = "gcc"; then
1498 cc_name=$cc_name_tmp
1499 echocheck "$_cc version"
1500 cc_vendor=gnu
1501 cc_version=$($_cc -dumpversion 2>&1)
1502 case $cc_version in
1503 2.96*)
1504 cc_fail=yes
1507 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1508 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1509 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1511 esac
1512 echores "$cc_version"
1513 break
1515 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1516 if test "$cc_name_tmp" = "clang"; then
1517 echocheck "$_cc version"
1518 cc_vendor=clang
1519 cc_version=$($_cc -dumpversion 2>&1)
1520 res_comment="experimental support only"
1521 echores "clang $cc_version"
1522 break
1524 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1525 if test "$cc_name_tmp" = "Sun C"; then
1526 echocheck "$_cc version"
1527 cc_vendor=sun
1528 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1529 res_comment="experimental support only"
1530 echores "Sun C $cc_version"
1531 break
1533 done
1534 fi # icc
1535 test "$cc_fail" = yes && die "unsupported compiler version"
1537 if test -z "$_target" && x86 ; then
1538 cat > $TMPC << EOF
1539 int main(void) {
1540 int test[(int)sizeof(char *)-7];
1541 return 0;
1544 cc_check && host_arch=x86_64 || host_arch=i386
1547 echo "Detected operating system: $system_name"
1548 echo "Detected host architecture: $host_arch"
1550 echocheck "host cc"
1551 test "$_host_cc" || _host_cc=$_cc
1552 echores $_host_cc
1554 echocheck "cross compilation"
1555 if test $_cross_compile = auto ; then
1556 _cross_compile=yes
1557 cflag_check "" && "$TMPEXE" && _cross_compile=no
1559 echores $_cross_compile
1561 if test $_cross_compile = yes; then
1562 tmp_run() {
1563 return 0
1567 # ---
1569 # now that we know what compiler should be used for compilation, try to find
1570 # out which assembler is used by the $_cc compiler
1571 if test "$_as" = auto ; then
1572 _as=$($_cc -print-prog-name=as)
1573 test -z "$_as" && _as=as
1576 if test "$_nm" = auto ; then
1577 _nm=$($_cc -print-prog-name=nm)
1578 test -z "$_nm" && _nm=nm
1581 # XXX: this should be ok..
1582 _cpuinfo="echo"
1584 if test "$_runtime_cpudetection" = no ; then
1586 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1587 # FIXME: Remove the cygwin check once AMD CPUs are supported
1588 if test -r /proc/cpuinfo && ! cygwin; then
1589 # Linux with /proc mounted, extract CPU information from it
1590 _cpuinfo="cat /proc/cpuinfo"
1591 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1592 # FreeBSD with Linux emulation /proc mounted,
1593 # extract CPU information from it
1594 # Don't use it on x86 though, it never reports 3Dnow
1595 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1596 elif darwin && ! x86 ; then
1597 # use hostinfo on Darwin
1598 _cpuinfo="hostinfo"
1599 elif aix; then
1600 # use 'lsattr' on AIX
1601 _cpuinfo="lsattr -E -l proc0 -a type"
1602 elif x86; then
1603 # all other OSes try to extract CPU information from a small helper
1604 # program cpuinfo instead
1605 $_cc -o cpuinfo$_exesuf cpuinfo.c
1606 _cpuinfo="./cpuinfo$_exesuf"
1609 if x86 ; then
1610 # gather more CPU information
1611 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1612 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1613 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1614 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1615 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1617 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1619 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1620 -e s/xmm/sse/ -e s/kni/sse/)
1622 for ext in $pparam ; do
1623 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1624 done
1626 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1627 test $_sse = kernel_check && _mmxext=kernel_check
1629 echocheck "CPU vendor"
1630 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1632 echocheck "CPU type"
1633 echores "$pname"
1636 fi # test "$_runtime_cpudetection" = no
1638 if x86 && test "$_runtime_cpudetection" = no ; then
1639 extcheck() {
1640 if test "$1" = kernel_check ; then
1641 echocheck "kernel support of $2"
1642 cat > $TMPC <<EOF
1643 #include <stdlib.h>
1644 #include <signal.h>
1645 void catch(void) { exit(1); }
1646 int main(void) {
1647 signal(SIGILL, catch);
1648 __asm__ volatile ("$3":::"memory"); return 0;
1652 if cc_check && tmp_run ; then
1653 eval _$2=yes
1654 echores "yes"
1655 _optimizing="$_optimizing $2"
1656 return 0
1657 else
1658 eval _$2=no
1659 echores "failed"
1660 echo "It seems that your kernel does not correctly support $2."
1661 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1662 return 1
1665 return 0
1668 extcheck $_mmx "mmx" "emms"
1669 extcheck $_mmxext "mmxext" "sfence"
1670 extcheck $_3dnow "3dnow" "femms"
1671 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1672 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1673 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1674 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1675 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1677 echocheck "mtrr support"
1678 if test "$_mtrr" = kernel_check ; then
1679 _mtrr="yes"
1680 _optimizing="$_optimizing mtrr"
1682 echores "$_mtrr"
1684 if test "$_gcc3_ext" != ""; then
1685 # if we had to disable sse/sse2 because the active kernel does not
1686 # support this instruction set extension, we also have to tell
1687 # gcc3 to not generate sse/sse2 instructions for normal C code
1688 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1694 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1695 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1696 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1697 subarch_all='X86_32 X86_64 PPC64'
1698 case "$host_arch" in
1699 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1700 arch='x86'
1701 subarch='x86_32'
1702 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1703 iproc=486
1704 proc=i486
1707 if test "$_runtime_cpudetection" = no ; then
1708 case "$pvendor" in
1709 AuthenticAMD)
1710 case "$pfamily" in
1711 3) proc=i386 iproc=386 ;;
1712 4) proc=i486 iproc=486 ;;
1713 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1714 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1715 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1716 proc=k6-3
1717 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1718 proc=geode
1719 elif test "$pmodel" -ge 8; then
1720 proc=k6-2
1721 elif test "$pmodel" -ge 6; then
1722 proc=k6
1723 else
1724 proc=i586
1727 6) iproc=686
1728 # It's a bit difficult to determine the correct type of Family 6
1729 # AMD CPUs just from their signature. Instead, we check directly
1730 # whether it supports SSE.
1731 if test "$_sse" = yes; then
1732 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1733 proc=athlon-xp
1734 else
1735 # Again, gcc treats athlon and athlon-tbird similarly.
1736 proc=athlon
1739 15) iproc=686
1740 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1741 # caught and remedied in the optimization tests below.
1742 proc=k8
1745 *) proc=amdfam10 iproc=686
1746 test $_fast_clz = "auto" && _fast_clz=yes
1748 esac
1750 GenuineIntel)
1751 case "$pfamily" in
1752 3) proc=i386 iproc=386 ;;
1753 4) proc=i486 iproc=486 ;;
1754 5) iproc=586
1755 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1756 proc=pentium-mmx # 4 is desktop, 8 is mobile
1757 else
1758 proc=i586
1761 6) iproc=686
1762 if test "$pmodel" -ge 15; then
1763 proc=core2
1764 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1765 proc=pentium-m
1766 elif test "$pmodel" -ge 7; then
1767 proc=pentium3
1768 elif test "$pmodel" -ge 3; then
1769 proc=pentium2
1770 else
1771 proc=i686
1773 test $_fast_clz = "auto" && _fast_clz=yes
1775 15) iproc=686
1776 # A nocona in 32-bit mode has no more capabilities than a prescott.
1777 if test "$pmodel" -ge 3; then
1778 proc=prescott
1779 else
1780 proc=pentium4
1781 test $_fast_clz = "auto" && _fast_clz=yes
1783 test $_fast_cmov = "auto" && _fast_cmov=no
1785 *) proc=prescott iproc=686 ;;
1786 esac
1788 CentaurHauls)
1789 case "$pfamily" in
1790 5) iproc=586
1791 if test "$pmodel" -ge 8; then
1792 proc=winchip2
1793 elif test "$pmodel" -ge 4; then
1794 proc=winchip-c6
1795 else
1796 proc=i586
1799 6) iproc=686
1800 if test "$pmodel" -ge 9; then
1801 proc=c3-2
1802 else
1803 proc=c3
1804 iproc=586
1807 *) proc=i686 iproc=i686 ;;
1808 esac
1810 unknown)
1811 case "$pfamily" in
1812 3) proc=i386 iproc=386 ;;
1813 4) proc=i486 iproc=486 ;;
1814 *) proc=i586 iproc=586 ;;
1815 esac
1818 proc=i586 iproc=586 ;;
1819 esac
1820 test $_fast_clz = "auto" && _fast_clz=no
1821 fi # test "$_runtime_cpudetection" = no
1824 # check that gcc supports our CPU, if not, fall back to earlier ones
1825 # LGB: check -mcpu and -march swithing step by step with enabling
1826 # to fall back till 386.
1828 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1830 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1831 cpuopt=-mtune
1832 else
1833 cpuopt=-mcpu
1836 echocheck "GCC & CPU optimization abilities"
1837 if test "$_runtime_cpudetection" = no ; then
1838 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1839 cflag_check -march=native && proc=native
1841 if test "$proc" = "amdfam10"; then
1842 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1844 if test "$proc" = "k8"; then
1845 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1847 if test "$proc" = "athlon-xp"; then
1848 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1850 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1851 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1853 if test "$proc" = "k6" || test "$proc" = "c3"; then
1854 if ! cflag_check -march=$proc $cpuopt=$proc; then
1855 if cflag_check -march=i586 $cpuopt=i686; then
1856 proc=i586-i686
1857 else
1858 proc=i586
1862 if test "$proc" = "prescott" ; then
1863 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1865 if test "$proc" = "core2" ; then
1866 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1868 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
1869 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1871 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1872 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1874 if test "$proc" = "i586"; then
1875 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1877 if test "$proc" = "i486" ; then
1878 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1880 if test "$proc" = "i386" ; then
1881 cflag_check -march=$proc $cpuopt=$proc || proc=error
1883 if test "$proc" = "error" ; then
1884 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1885 _mcpu=""
1886 _march=""
1887 _optimizing=""
1888 elif test "$proc" = "i586-i686"; then
1889 _march="-march=i586"
1890 _mcpu="$cpuopt=i686"
1891 _optimizing="$proc"
1892 else
1893 _march="-march=$proc"
1894 _mcpu="$cpuopt=$proc"
1895 _optimizing="$proc"
1897 else # if test "$_runtime_cpudetection" = no
1898 _mcpu="$cpuopt=generic"
1899 # at least i486 required, for bswap instruction
1900 _march="-march=i486"
1901 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1902 cflag_check $_mcpu || _mcpu=""
1903 cflag_check $_march $_mcpu || _march=""
1906 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1907 ## autodetected mcpu/march parameters
1908 if test "$_target" ; then
1909 # TODO: it may be a good idea to check GCC and fall back in all cases
1910 if test "$host_arch" = "i586-i686"; then
1911 _march="-march=i586"
1912 _mcpu="$cpuopt=i686"
1913 else
1914 _march="-march=$host_arch"
1915 _mcpu="$cpuopt=$host_arch"
1918 proc="$host_arch"
1920 case "$proc" in
1921 i386) iproc=386 ;;
1922 i486) iproc=486 ;;
1923 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1924 i686|athlon*|pentium*) iproc=686 ;;
1925 *) iproc=586 ;;
1926 esac
1929 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1930 _fast_cmov="yes"
1931 else
1932 _fast_cmov="no"
1934 test $_fast_clz = "auto" && _fast_clz=yes
1936 echores "$proc"
1939 ia64)
1940 arch='ia64'
1941 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1942 iproc='ia64'
1945 x86_64|amd64)
1946 arch='x86'
1947 subarch='x86_64'
1948 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1949 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1950 iproc='x86_64'
1952 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1953 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1954 cpuopt=-mtune
1955 else
1956 cpuopt=-mcpu
1958 if test "$_runtime_cpudetection" = no ; then
1959 case "$pvendor" in
1960 AuthenticAMD)
1961 case "$pfamily" in
1962 15) proc=k8
1963 test $_fast_clz = "auto" && _fast_clz=no
1965 *) proc=amdfam10;;
1966 esac
1968 GenuineIntel)
1969 case "$pfamily" in
1970 6) proc=core2;;
1972 # 64-bit prescotts exist, but as far as GCC is concerned they
1973 # have the same capabilities as a nocona.
1974 proc=nocona
1975 test $_fast_cmov = "auto" && _fast_cmov=no
1976 test $_fast_clz = "auto" && _fast_clz=no
1978 esac
1981 proc=error;;
1982 esac
1983 fi # test "$_runtime_cpudetection" = no
1985 echocheck "GCC & CPU optimization abilities"
1986 # This is a stripped-down version of the i386 fallback.
1987 if test "$_runtime_cpudetection" = no ; then
1988 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1989 cflag_check -march=native && proc=native
1991 # --- AMD processors ---
1992 if test "$proc" = "amdfam10"; then
1993 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1995 if test "$proc" = "k8"; then
1996 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1998 # This will fail if gcc version < 3.3, which is ok because earlier
1999 # versions don't really support 64-bit on amd64.
2000 # Is this a valid assumption? -Corey
2001 if test "$proc" = "athlon-xp"; then
2002 cflag_check -march=$proc $cpuopt=$proc || proc=error
2004 # --- Intel processors ---
2005 if test "$proc" = "core2"; then
2006 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2008 if test "$proc" = "x86-64"; then
2009 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2011 if test "$proc" = "nocona"; then
2012 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2014 if test "$proc" = "pentium4"; then
2015 cflag_check -march=$proc $cpuopt=$proc || proc=error
2018 _march="-march=$proc"
2019 _mcpu="$cpuopt=$proc"
2020 if test "$proc" = "error" ; then
2021 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2022 _mcpu=""
2023 _march=""
2025 else # if test "$_runtime_cpudetection" = no
2026 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2027 _march="-march=x86-64"
2028 _mcpu="$cpuopt=generic"
2029 cflag_check $_mcpu || _mcpu="x86-64"
2030 cflag_check $_mcpu || _mcpu=""
2031 cflag_check $_march $_mcpu || _march=""
2034 _optimizing="$proc"
2035 test $_fast_cmov = "auto" && _fast_cmov=yes
2036 test $_fast_clz = "auto" && _fast_clz=yes
2038 echores "$proc"
2041 sparc|sparc64)
2042 arch='sparc'
2043 iproc='sparc'
2044 if test "$host_arch" = "sparc64" ; then
2045 _vis='yes'
2046 proc='ultrasparc'
2047 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2048 elif sunos ; then
2049 echocheck "CPU type"
2050 karch=$(uname -m)
2051 case "$(echo $karch)" in
2052 sun4) proc=v7 ;;
2053 sun4c) proc=v7 ;;
2054 sun4d) proc=v8 ;;
2055 sun4m) proc=v8 ;;
2056 sun4u) proc=ultrasparc _vis='yes' ;;
2057 sun4v) proc=v9 ;;
2058 *) proc=v8 ;;
2059 esac
2060 echores "$proc"
2061 else
2062 proc=v8
2064 _mcpu="-mcpu=$proc"
2065 _optimizing="$proc"
2068 arm*)
2069 arch='arm'
2070 iproc='arm'
2073 avr32)
2074 arch='avr32'
2075 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2076 iproc='avr32'
2077 test $_fast_clz = "auto" && _fast_clz=yes
2080 sh|sh4)
2081 arch='sh4'
2082 iproc='sh4'
2085 ppc|ppc64|powerpc|powerpc64)
2086 arch='ppc'
2087 def_dcbzl='#define HAVE_DCBZL 0'
2088 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2089 iproc='ppc'
2091 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2092 subarch='ppc64'
2093 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2095 echocheck "CPU type"
2096 case $system_name in
2097 Linux)
2098 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2099 if test -n "$($_cpuinfo | grep altivec)"; then
2100 test $_altivec = auto && _altivec=yes
2103 Darwin)
2104 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2105 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2106 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2107 test $_altivec = auto && _altivec=yes
2110 NetBSD)
2111 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2112 case $cc_version in
2113 2*|3.0*|3.1*|3.2*|3.3*)
2116 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2117 test $_altivec = auto && _altivec=yes
2120 esac
2122 AIX)
2123 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2125 esac
2126 if test "$_altivec" = yes; then
2127 echores "$proc altivec"
2128 else
2129 _altivec=no
2130 echores "$proc"
2133 echocheck "GCC & CPU optimization abilities"
2135 if test -n "$proc"; then
2136 case "$proc" in
2137 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2138 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2139 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2140 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2141 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2142 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2143 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2144 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2145 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2146 *) ;;
2147 esac
2148 # gcc 3.1(.1) and up supports 7400 and 7450
2149 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2150 case "$proc" in
2151 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2152 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2153 *) ;;
2154 esac
2156 # gcc 3.2 and up supports 970
2157 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2158 case "$proc" in
2159 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2160 def_dcbzl='#define HAVE_DCBZL 1' ;;
2161 *) ;;
2162 esac
2164 # gcc 3.3 and up supports POWER4
2165 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2166 case "$proc" in
2167 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2168 *) ;;
2169 esac
2171 # gcc 3.4 and up supports 440*
2172 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2173 case "$proc" in
2174 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2175 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2176 *) ;;
2177 esac
2179 # gcc 4.0 and up supports POWER5
2180 if test "$_cc_major" -ge "4"; then
2181 case "$proc" in
2182 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2183 *) ;;
2184 esac
2188 if test -n "$_mcpu"; then
2189 _optimizing=$(echo $_mcpu | cut -c 8-)
2190 echores "$_optimizing"
2191 else
2192 echores "none"
2195 test $_fast_clz = "auto" && _fast_clz=yes
2199 alpha*)
2200 arch='alpha'
2201 iproc='alpha'
2202 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2204 echocheck "CPU type"
2205 cat > $TMPC << EOF
2206 int main(void) {
2207 unsigned long ver, mask;
2208 __asm__ ("implver %0" : "=r" (ver));
2209 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2210 printf("%ld-%x\n", ver, ~mask);
2211 return 0;
2214 $_cc -o "$TMPEXE" "$TMPC"
2215 case $("$TMPEXE") in
2217 0-0) proc="ev4"; _mvi="0";;
2218 1-0) proc="ev5"; _mvi="0";;
2219 1-1) proc="ev56"; _mvi="0";;
2220 1-101) proc="pca56"; _mvi="1";;
2221 2-303) proc="ev6"; _mvi="1";;
2222 2-307) proc="ev67"; _mvi="1";;
2223 2-1307) proc="ev68"; _mvi="1";;
2224 esac
2225 echores "$proc"
2227 echocheck "GCC & CPU optimization abilities"
2228 if test "$proc" = "ev68" ; then
2229 cc_check -mcpu=$proc || proc=ev67
2231 if test "$proc" = "ev67" ; then
2232 cc_check -mcpu=$proc || proc=ev6
2234 _mcpu="-mcpu=$proc"
2235 echores "$proc"
2237 test $_fast_clz = "auto" && _fast_clz=yes
2239 _optimizing="$proc"
2242 mips)
2243 arch='mips'
2244 iproc='mips'
2246 if irix ; then
2247 echocheck "CPU type"
2248 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2249 case "$(echo $proc)" in
2250 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2251 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2252 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2253 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2254 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2255 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2256 esac
2257 # gcc < 3.x does not support -mtune.
2258 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2259 _mcpu=''
2261 echores "$proc"
2264 test $_fast_clz = "auto" && _fast_clz=yes
2268 hppa)
2269 arch='pa_risc'
2270 iproc='PA-RISC'
2273 s390)
2274 arch='s390'
2275 iproc='390'
2278 s390x)
2279 arch='s390x'
2280 iproc='390x'
2283 vax)
2284 arch='vax'
2285 iproc='vax'
2288 xtensa)
2289 arch='xtensa'
2290 iproc='xtensa'
2293 generic)
2294 arch='generic'
2298 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2299 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2300 die "unsupported architecture $host_arch"
2302 esac # case "$host_arch" in
2304 if test "$_runtime_cpudetection" = yes ; then
2305 if x86 ; then
2306 test "$_cmov" != no && _cmov=yes
2307 x86_32 && _cmov=no
2308 test "$_mmx" != no && _mmx=yes
2309 test "$_3dnow" != no && _3dnow=yes
2310 test "$_3dnowext" != no && _3dnowext=yes
2311 test "$_mmxext" != no && _mmxext=yes
2312 test "$_sse" != no && _sse=yes
2313 test "$_sse2" != no && _sse2=yes
2314 test "$_ssse3" != no && _ssse3=yes
2315 test "$_mtrr" != no && _mtrr=yes
2317 if ppc; then
2318 _altivec=yes
2323 # endian testing
2324 echocheck "byte order"
2325 if test "$_big_endian" = auto ; then
2326 cat > $TMPC <<EOF
2327 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2328 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2329 int main(void) { return (int)ascii_name; }
2331 if cc_check ; then
2332 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2333 _big_endian=yes
2334 else
2335 _big_endian=no
2337 else
2338 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2341 if test "$_big_endian" = yes ; then
2342 _byte_order='big-endian'
2343 def_words_endian='#define WORDS_BIGENDIAN 1'
2344 def_bigendian='#define HAVE_BIGENDIAN 1'
2345 else
2346 _byte_order='little-endian'
2347 def_words_endian='#undef WORDS_BIGENDIAN'
2348 def_bigendian='#define HAVE_BIGENDIAN 0'
2350 echores "$_byte_order"
2353 echocheck "extern symbol prefix"
2354 cat > $TMPC << EOF
2355 int ff_extern;
2357 cc_check -c || die "Symbol mangling check failed."
2358 sym=$($_nm -P -g $TMPEXE)
2359 extern_prefix=${sym%%ff_extern*}
2360 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2361 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2362 echores $extern_prefix
2365 echocheck "assembler support of -pipe option"
2366 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2367 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2370 echocheck "compiler support of named assembler arguments"
2371 _named_asm_args=yes
2372 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2373 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2374 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2375 _named_asm_args=no
2376 def_named_asm_args="#undef NAMED_ASM_ARGS"
2378 echores $_named_asm_args
2381 if darwin && test "$cc_vendor" = "gnu" ; then
2382 echocheck "GCC support of -mstackrealign"
2383 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2384 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2385 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2386 # wrong code with this flag, but this can be worked around by adding
2387 # -fno-unit-at-a-time as described in the blog post at
2388 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2389 cat > $TMPC << EOF
2390 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2391 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2393 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2394 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2395 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2396 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2397 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2400 # Checking for CFLAGS
2401 _install_strip="-s"
2402 if test "$_profile" != "" || test "$_debug" != "" ; then
2403 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2404 _install_strip=
2405 elif test -z "$CFLAGS" ; then
2406 if test "$cc_vendor" = "intel" ; then
2407 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2408 elif test "$cc_vendor" = "sun" ; then
2409 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2410 elif test "$cc_vendor" != "gnu" ; then
2411 CFLAGS="-O2 $_march $_mcpu $_pipe"
2412 else
2413 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2414 extra_ldflags="$extra_ldflags -ffast-math"
2416 else
2417 warn_cflags=yes
2420 if test "$cc_vendor" = "gnu" ; then
2421 cflag_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2422 cflag_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2423 cflag_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2424 cflag_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2425 cflag_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2426 cflag_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2427 else
2428 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2431 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2432 cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS"
2435 if test -n "$LDFLAGS" ; then
2436 extra_ldflags="$extra_ldflags $LDFLAGS"
2437 warn_cflags=yes
2438 elif test "$cc_vendor" = "intel" ; then
2439 extra_ldflags="$extra_ldflags -i-static"
2441 if test -n "$CPPFLAGS" ; then
2442 extra_cflags="$extra_cflags $CPPFLAGS"
2443 warn_cflags=yes
2448 if x86_32 ; then
2449 # Checking assembler (_as) compatibility...
2450 # Added workaround for older as that reads from stdin by default - atmos
2451 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2452 echocheck "assembler ($_as $as_version)"
2454 _pref_as_version='2.9.1'
2455 echo 'nop' > $TMPS
2456 if test "$_mmx" = yes ; then
2457 echo 'emms' >> $TMPS
2459 if test "$_3dnow" = yes ; then
2460 _pref_as_version='2.10.1'
2461 echo 'femms' >> $TMPS
2463 if test "$_3dnowext" = yes ; then
2464 _pref_as_version='2.10.1'
2465 echo 'pswapd %mm0, %mm0' >> $TMPS
2467 if test "$_mmxext" = yes ; then
2468 _pref_as_version='2.10.1'
2469 echo 'movntq %mm0, (%eax)' >> $TMPS
2471 if test "$_sse" = yes ; then
2472 _pref_as_version='2.10.1'
2473 echo 'xorps %xmm0, %xmm0' >> $TMPS
2475 #if test "$_sse2" = yes ; then
2476 # _pref_as_version='2.11'
2477 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2479 if test "$_cmov" = yes ; then
2480 _pref_as_version='2.10.1'
2481 echo 'cmovb %eax, %ebx' >> $TMPS
2483 if test "$_ssse3" = yes ; then
2484 _pref_as_version='2.16.92'
2485 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2487 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2489 if test "$as_verc_fail" != yes ; then
2490 echores "ok"
2491 else
2492 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2493 echores "failed"
2494 die "obsolete binutils version"
2497 fi #if x86_32
2499 echocheck ".align is a power of two"
2500 if test "$_asmalign_pot" = auto ; then
2501 _asmalign_pot=no
2502 cat > $TMPC << EOF
2503 int main(void) { __asm__ (".align 3"); return 0; }
2505 cc_check && _asmalign_pot=yes
2507 if test "$_asmalign_pot" = "yes" ; then
2508 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2509 else
2510 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2512 echores $_asmalign_pot
2514 if x86 ; then
2515 echocheck "10 assembler operands"
2516 ten_operands=no
2517 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2518 cat > $TMPC << EOF
2519 int main(void) {
2520 int x=0;
2521 __asm__ volatile(
2523 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2525 return 0;
2528 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2529 echores $ten_operands
2531 echocheck "ebx availability"
2532 ebx_available=no
2533 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2534 cat > $TMPC << EOF
2535 int main(void) {
2536 int x;
2537 __asm__ volatile(
2538 "xor %0, %0"
2539 :"=b"(x)
2540 // just adding ebx to clobber list seems unreliable with some
2541 // compilers, e.g. Haiku's gcc 2.95
2543 // and the above check does not work for OSX 64 bit...
2544 __asm__ volatile("":::"%ebx");
2545 return 0;
2548 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2549 echores $ebx_available
2551 echocheck "PIC"
2552 pic=no
2553 cat > $TMPC << EOF
2554 int main(void) {
2555 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2556 #error PIC not enabled
2557 #endif
2558 return 0;
2561 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2562 echores $pic
2564 echocheck "yasm"
2565 if test -z "$YASMFLAGS" ; then
2566 if darwin ; then
2567 x86_64 && objformat="macho64" || objformat="macho"
2568 elif win32 ; then
2569 objformat="win32"
2570 else
2571 objformat="elf"
2573 # currently tested for Linux x86, x86_64
2574 YASMFLAGS="-f $objformat"
2575 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2576 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2577 case "$objformat" in
2578 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2579 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2580 esac
2581 else
2582 warn_cflags=yes
2585 echo "pabsw xmm0, xmm0" > $TMPS
2586 yasm_check || _yasm=""
2587 if test $_yasm ; then
2588 def_yasm='#define HAVE_YASM 1'
2589 have_yasm="yes"
2590 echores "$_yasm"
2591 else
2592 def_yasm='#define HAVE_YASM 0'
2593 have_yasm="no"
2594 echores "no"
2597 echocheck "bswap"
2598 def_bswap='#define HAVE_BSWAP 0'
2599 echo 'bswap %eax' > $TMPS
2600 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2601 echores "$bswap"
2602 fi #if x86
2605 #FIXME: This should happen before the check for CFLAGS..
2606 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2607 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2609 # check if AltiVec is supported by the compiler, and how to enable it
2610 echocheck "GCC AltiVec flags"
2611 if $(cflag_check -maltivec -mabi=altivec) ; then
2612 _altivec_gcc_flags="-maltivec -mabi=altivec"
2613 # check if <altivec.h> should be included
2614 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2615 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2616 inc_altivec_h='#include <altivec.h>'
2617 else
2618 if $(cflag_check -faltivec) ; then
2619 _altivec_gcc_flags="-faltivec"
2620 else
2621 _altivec=no
2622 _altivec_gcc_flags="none, AltiVec disabled"
2626 echores "$_altivec_gcc_flags"
2628 # check if the compiler supports braces for vector declarations
2629 cat > $TMPC << EOF
2630 $inc_altivec_h
2631 int main(void) { (vector int) {1}; return 0; }
2633 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2635 # Disable runtime cpudetection if we cannot generate AltiVec code or
2636 # AltiVec is disabled by the user.
2637 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2638 && _runtime_cpudetection=no
2640 # Show that we are optimizing for AltiVec (if enabled and supported).
2641 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2642 && _optimizing="$_optimizing altivec"
2644 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2645 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2648 if ppc ; then
2649 def_xform_asm='#define HAVE_XFORM_ASM 0'
2650 xform_asm=no
2651 echocheck "XFORM ASM support"
2652 cat > $TMPC << EOF
2653 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2655 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2656 echores "$xform_asm"
2659 if arm ; then
2660 echocheck "ARM pld instruction"
2661 cat > $TMPC << EOF
2662 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2664 pld=no
2665 cc_check && pld=yes
2666 echores "$pld"
2668 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2669 if test $_armv5te = "auto" ; then
2670 cat > $TMPC << EOF
2671 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2673 _armv5te=no
2674 cc_check && _armv5te=yes
2676 echores "$_armv5te"
2678 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2680 echocheck "ARMv6 (SIMD instructions)"
2681 if test $_armv6 = "auto" ; then
2682 cat > $TMPC << EOF
2683 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2685 _armv6=no
2686 cc_check && _armv6=yes
2688 echores "$_armv6"
2690 echocheck "ARMv6t2 (SIMD instructions)"
2691 if test $_armv6t2 = "auto" ; then
2692 cat > $TMPC << EOF
2693 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2695 _armv6t2=no
2696 cc_check && _armv6t2=yes
2698 echores "$_armv6"
2700 echocheck "ARM VFP"
2701 if test $_armvfp = "auto" ; then
2702 cat > $TMPC << EOF
2703 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2705 _armvfp=no
2706 cc_check && _armvfp=yes
2708 echores "$_armvfp"
2710 echocheck "ARM NEON"
2711 if test $neon = "auto" ; then
2712 cat > $TMPC << EOF
2713 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2715 neon=no
2716 cc_check && neon=yes
2718 echores "$neon"
2720 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2721 if test $_iwmmxt = "auto" ; then
2722 cat > $TMPC << EOF
2723 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2725 _iwmmxt=no
2726 cc_check && _iwmmxt=yes
2728 echores "$_iwmmxt"
2731 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'
2732 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2733 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2734 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2735 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2736 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2737 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2738 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2739 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2740 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2741 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2742 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2743 test "$pld" = yes && cpuexts="PLD $cpuexts"
2744 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2745 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2746 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2747 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2748 test "$neon" = yes && cpuexts="NEON $cpuexts"
2749 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2750 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2751 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2753 # Checking kernel version...
2754 if x86_32 && linux ; then
2755 _k_verc_problem=no
2756 kernel_version=$(uname -r 2>&1)
2757 echocheck "$system_name kernel version"
2758 case "$kernel_version" in
2759 '') kernel_version="?.??"; _k_verc_fail=yes;;
2760 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2761 _k_verc_problem=yes;;
2762 esac
2763 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2764 _k_verc_fail=yes
2766 if test "$_k_verc_fail" ; then
2767 echores "$kernel_version, fail"
2768 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2769 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2770 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2771 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2772 echo "2.2.x you must upgrade it to get SSE support!"
2773 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2774 else
2775 echores "$kernel_version, ok"
2779 ######################
2780 # MAIN TESTS GO HERE #
2781 ######################
2784 echocheck "-lposix"
2785 if cflag_check -lposix ; then
2786 extra_ldflags="$extra_ldflags -lposix"
2787 echores "yes"
2788 else
2789 echores "no"
2792 echocheck "-lm"
2793 if cflag_check -lm ; then
2794 _ld_lm="-lm"
2795 echores "yes"
2796 else
2797 _ld_lm=""
2798 echores "no"
2802 echocheck "langinfo"
2803 if test "$_langinfo" = auto ; then
2804 cat > $TMPC <<EOF
2805 #include <langinfo.h>
2806 int main(void) { nl_langinfo(CODESET); return 0; }
2808 _langinfo=no
2809 cc_check && _langinfo=yes
2811 if test "$_langinfo" = yes ; then
2812 def_langinfo='#define HAVE_LANGINFO 1'
2813 else
2814 def_langinfo='#undef HAVE_LANGINFO'
2816 echores "$_langinfo"
2819 echocheck "translation support"
2820 if test "$_translation" = yes; then
2821 def_translation="#define CONFIG_TRANSLATION 1"
2822 else
2823 def_translation="#undef CONFIG_TRANSLATION"
2825 echores "$_translation"
2827 echocheck "language"
2828 # Set preferred languages, "all" uses English as main language.
2829 test -z "$language" && language=$LINGUAS
2830 test -z "$language_doc" && language_doc=$language
2831 test -z "$language_man" && language_man=$language
2832 test -z "$language_msg" && language_msg="all"
2833 language_doc=$(echo $language_doc | tr , " ")
2834 language_man=$(echo $language_man | tr , " ")
2835 language_msg=$(echo $language_msg | tr , " ")
2837 test "$language_doc" = "all" && language_doc=$doc_lang_all
2838 test "$language_man" = "all" && language_man=$man_lang_all
2839 test "$language_msg" = "all" && language_msg=$msg_lang_all
2841 if test "$_translation" != yes ; then
2842 language_msg=""
2845 # Prune non-existing translations from language lists.
2846 # Set message translation to the first available language.
2847 # Fall back on English.
2848 for lang in $language_doc ; do
2849 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2850 done
2851 language_doc=$tmp_language_doc
2852 test -z "$language_doc" && language_doc=en
2854 for lang in $language_man ; do
2855 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2856 done
2857 language_man=$tmp_language_man
2858 test -z "$language_man" && language_man=en
2860 for lang in $language_msg ; do
2861 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2862 done
2863 language_msg=$tmp_language_msg
2865 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2868 echocheck "enable sighandler"
2869 if test "$_sighandler" = yes ; then
2870 def_sighandler='#define CONFIG_SIGHANDLER 1'
2871 else
2872 def_sighandler='#undef CONFIG_SIGHANDLER'
2874 echores "$_sighandler"
2876 echocheck "runtime cpudetection"
2877 if test "$_runtime_cpudetection" = yes ; then
2878 _optimizing="Runtime CPU-Detection enabled"
2879 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2880 else
2881 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2883 echores "$_runtime_cpudetection"
2886 echocheck "restrict keyword"
2887 for restrict_keyword in restrict __restrict __restrict__ ; do
2888 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2889 if cc_check; then
2890 def_restrict_keyword=$restrict_keyword
2891 break;
2893 done
2894 if [ -n "$def_restrict_keyword" ]; then
2895 echores "$def_restrict_keyword"
2896 else
2897 echores "none"
2899 # Avoid infinite recursion loop ("#define restrict restrict")
2900 if [ "$def_restrict_keyword" != "restrict" ]; then
2901 def_restrict_keyword="#define restrict $def_restrict_keyword"
2902 else
2903 def_restrict_keyword=""
2907 echocheck "__builtin_expect"
2908 # GCC branch prediction hint
2909 cat > $TMPC << EOF
2910 int foo(int a) {
2911 a = __builtin_expect(a, 10);
2912 return a == 10 ? 0 : 1;
2914 int main(void) { return foo(10) && foo(0); }
2916 _builtin_expect=no
2917 cc_check && _builtin_expect=yes
2918 if test "$_builtin_expect" = yes ; then
2919 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2920 else
2921 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2923 echores "$_builtin_expect"
2926 echocheck "kstat"
2927 cat > $TMPC << EOF
2928 #include <kstat.h>
2929 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2931 _kstat=no
2932 cc_check -lkstat && _kstat=yes
2933 if test "$_kstat" = yes ; then
2934 def_kstat="#define HAVE_LIBKSTAT 1"
2935 extra_ldflags="$extra_ldflags -lkstat"
2936 else
2937 def_kstat="#undef HAVE_LIBKSTAT"
2939 echores "$_kstat"
2942 echocheck "posix4"
2943 # required for nanosleep on some systems
2944 cat > $TMPC << EOF
2945 #include <time.h>
2946 int main(void) { (void) nanosleep(0, 0); return 0; }
2948 _posix4=no
2949 cc_check -lposix4 && _posix4=yes
2950 if test "$_posix4" = yes ; then
2951 extra_ldflags="$extra_ldflags -lposix4"
2953 echores "$_posix4"
2955 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2956 echocheck $func
2957 cat > $TMPC << EOF
2958 #include <math.h>
2959 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2961 eval _$func=no
2962 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2963 if eval test "x\$_$func" = "xyes"; then
2964 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2965 echores yes
2966 else
2967 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2968 echores no
2970 done
2973 echocheck "mkstemp"
2974 cat > $TMPC << EOF
2975 #include <stdlib.h>
2976 int main(void) { char a; mkstemp(&a); return 0; }
2978 _mkstemp=no
2979 cc_check && _mkstemp=yes
2980 if test "$_mkstemp" = yes ; then
2981 def_mkstemp='#define HAVE_MKSTEMP 1'
2982 else
2983 def_mkstemp='#undef HAVE_MKSTEMP'
2985 echores "$_mkstemp"
2988 echocheck "nanosleep"
2989 # also check for nanosleep
2990 cat > $TMPC << EOF
2991 #include <time.h>
2992 int main(void) { (void) nanosleep(0, 0); return 0; }
2994 _nanosleep=no
2995 cc_check && _nanosleep=yes
2996 if test "$_nanosleep" = yes ; then
2997 def_nanosleep='#define HAVE_NANOSLEEP 1'
2998 else
2999 def_nanosleep='#undef HAVE_NANOSLEEP'
3001 echores "$_nanosleep"
3004 echocheck "socklib"
3005 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3006 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3007 cat > $TMPC << EOF
3008 #include <netdb.h>
3009 #include <sys/socket.h>
3010 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3012 _socklib=no
3013 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3014 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3015 done
3016 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3017 if test $_winsock2_h = auto ; then
3018 _winsock2_h=no
3019 cat > $TMPC << EOF
3020 #include <winsock2.h>
3021 int main(void) { (void) gethostbyname(0); return 0; }
3023 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3025 test "$_ld_sock" && res_comment="using $_ld_sock"
3026 echores "$_socklib"
3029 if test $_winsock2_h = yes ; then
3030 _ld_sock="-lws2_32"
3031 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3032 else
3033 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3037 echocheck "arpa/inet.h"
3038 arpa_inet_h=no
3039 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3040 header_check arpa/inet.h && arpa_inet_h=yes &&
3041 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3042 echores "$arpa_inet_h"
3045 echocheck "inet_pton()"
3046 def_inet_pton='#define HAVE_INET_PTON 0'
3047 inet_pton=no
3048 cat > $TMPC << EOF
3049 #include <sys/types.h>
3050 #include <sys/socket.h>
3051 #include <arpa/inet.h>
3052 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3054 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3055 cc_check $_ld_tmp && inet_pton=yes && break
3056 done
3057 if test $inet_pton = yes ; then
3058 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3059 def_inet_pton='#define HAVE_INET_PTON 1'
3061 echores "$inet_pton"
3064 echocheck "inet_aton()"
3065 def_inet_aton='#define HAVE_INET_ATON 0'
3066 inet_aton=no
3067 cat > $TMPC << EOF
3068 #include <sys/types.h>
3069 #include <sys/socket.h>
3070 #include <arpa/inet.h>
3071 int main(void) { (void) inet_aton(0, 0); return 0; }
3073 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3074 cc_check $_ld_tmp && inet_aton=yes && break
3075 done
3076 if test $inet_aton = yes ; then
3077 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3078 def_inet_aton='#define HAVE_INET_ATON 1'
3080 echores "$inet_aton"
3083 echocheck "socklen_t"
3084 _socklen_t=no
3085 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3086 cat > $TMPC << EOF
3087 #include <$header>
3088 int main(void) { socklen_t v = 0; return v; }
3090 cc_check && _socklen_t=yes && break
3091 done
3092 if test "$_socklen_t" = yes ; then
3093 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3094 else
3095 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3097 echores "$_socklen_t"
3100 echocheck "closesocket()"
3101 _closesocket=no
3102 cat > $TMPC << EOF
3103 #include <winsock2.h>
3104 int main(void) { closesocket(~0); return 0; }
3106 cc_check $_ld_sock && _closesocket=yes
3107 if test "$_closesocket" = yes ; then
3108 def_closesocket='#define HAVE_CLOSESOCKET 1'
3109 else
3110 def_closesocket='#define HAVE_CLOSESOCKET 0'
3112 echores "$_closesocket"
3115 echocheck "network"
3116 test $_winsock2_h = no && test $inet_pton = no &&
3117 test $inet_aton = no && _network=no
3118 if test "$_network" = yes ; then
3119 def_network='#define CONFIG_NETWORK 1'
3120 extra_ldflags="$extra_ldflags $_ld_sock"
3121 inputmodules="network $inputmodules"
3122 else
3123 noinputmodules="network $noinputmodules"
3124 def_network='#undef CONFIG_NETWORK'
3125 _ftp=no
3127 echores "$_network"
3130 echocheck "inet6"
3131 if test "$_inet6" = auto ; then
3132 cat > $TMPC << EOF
3133 #include <sys/types.h>
3134 #if !defined(_WIN32) || defined(__CYGWIN__)
3135 #include <sys/socket.h>
3136 #include <netinet/in.h>
3137 #else
3138 #include <ws2tcpip.h>
3139 #endif
3140 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3142 _inet6=no
3143 if cc_check $_ld_sock ; then
3144 _inet6=yes
3147 if test "$_inet6" = yes ; then
3148 def_inet6='#define HAVE_AF_INET6 1'
3149 else
3150 def_inet6='#undef HAVE_AF_INET6'
3152 echores "$_inet6"
3155 echocheck "gethostbyname2"
3156 if test "$_gethostbyname2" = auto ; then
3157 cat > $TMPC << EOF
3158 #include <sys/types.h>
3159 #include <sys/socket.h>
3160 #include <netdb.h>
3161 int main(void) { gethostbyname2("", AF_INET); return 0; }
3163 _gethostbyname2=no
3164 if cc_check ; then
3165 _gethostbyname2=yes
3168 if test "$_gethostbyname2" = yes ; then
3169 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3170 else
3171 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3173 echores "$_gethostbyname2"
3176 echocheck "inttypes.h (required)"
3177 _inttypes=no
3178 header_check inttypes.h && _inttypes=yes
3179 echores "$_inttypes"
3181 if test "$_inttypes" = no ; then
3182 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3183 header_check sys/bitypes.h && _inttypes=yes
3184 if test "$_inttypes" = yes ; then
3185 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."
3186 else
3187 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3192 echocheck "int_fastXY_t in inttypes.h"
3193 cat > $TMPC << EOF
3194 #include <inttypes.h>
3195 int main(void) {
3196 volatile int_fast16_t v= 0;
3197 return v; }
3199 _fast_inttypes=no
3200 cc_check && _fast_inttypes=yes
3201 if test "$_fast_inttypes" = no ; then
3202 def_fast_inttypes='
3203 typedef signed char int_fast8_t;
3204 typedef signed int int_fast16_t;
3205 typedef signed int int_fast32_t;
3206 typedef signed long long int_fast64_t;
3207 typedef unsigned char uint_fast8_t;
3208 typedef unsigned int uint_fast16_t;
3209 typedef unsigned int uint_fast32_t;
3210 typedef unsigned long long uint_fast64_t;'
3212 echores "$_fast_inttypes"
3215 echocheck "malloc.h"
3216 _malloc=no
3217 header_check malloc.h && _malloc=yes
3218 if test "$_malloc" = yes ; then
3219 def_malloc_h='#define HAVE_MALLOC_H 1'
3220 else
3221 def_malloc_h='#define HAVE_MALLOC_H 0'
3223 echores "$_malloc"
3226 echocheck "memalign()"
3227 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3228 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3229 cat > $TMPC << EOF
3230 #include <malloc.h>
3231 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3233 _memalign=no
3234 cc_check && _memalign=yes
3235 if test "$_memalign" = yes ; then
3236 def_memalign='#define HAVE_MEMALIGN 1'
3237 else
3238 def_memalign='#define HAVE_MEMALIGN 0'
3239 def_map_memalign='#define memalign(a,b) malloc(b)'
3240 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3242 echores "$_memalign"
3245 echocheck "posix_memalign()"
3246 posix_memalign=no
3247 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3248 cat > $TMPC << EOF
3249 #define _XOPEN_SOURCE 600
3250 #include <stdlib.h>
3251 int main(void) { posix_memalign(NULL, 0, 0); }
3253 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3254 echores "$posix_memalign"
3257 echocheck "alloca.h"
3258 cat > $TMPC << EOF
3259 #include <alloca.h>
3260 int main(void) { (void) alloca(0); return 0; }
3262 _alloca=no
3263 cc_check && _alloca=yes
3264 if cc_check ; then
3265 def_alloca_h='#define HAVE_ALLOCA_H 1'
3266 else
3267 def_alloca_h='#undef HAVE_ALLOCA_H'
3269 echores "$_alloca"
3272 echocheck "fastmemcpy"
3273 if test "$_fastmemcpy" = yes ; then
3274 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3275 else
3276 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3278 echores "$_fastmemcpy"
3281 echocheck "mman.h"
3282 cat > $TMPC << EOF
3283 #include <sys/types.h>
3284 #include <sys/mman.h>
3285 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3287 _mman=no
3288 cc_check && _mman=yes
3289 if test "$_mman" = yes ; then
3290 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3291 else
3292 def_mman_h='#undef HAVE_SYS_MMAN_H'
3293 os2 && _need_mmap=yes
3295 echores "$_mman"
3297 cat > $TMPC << EOF
3298 #include <sys/types.h>
3299 #include <sys/mman.h>
3300 int main(void) { void *p = MAP_FAILED; return 0; }
3302 _mman_has_map_failed=no
3303 cc_check && _mman_has_map_failed=yes
3304 if test "$_mman_has_map_failed" = yes ; then
3305 def_mman_has_map_failed=''
3306 else
3307 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3310 echocheck "dynamic loader"
3311 cat > $TMPC << EOF
3312 #include <stddef.h>
3313 #include <dlfcn.h>
3314 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3316 _dl=no
3317 for _ld_tmp in "" "-ldl" ; do
3318 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3319 done
3320 if test "$_dl" = yes ; then
3321 def_dl='#define HAVE_LIBDL 1'
3322 else
3323 def_dl='#undef HAVE_LIBDL'
3325 echores "$_dl"
3328 echocheck "dynamic a/v plugins support"
3329 if test "$_dl" = no ; then
3330 _dynamic_plugins=no
3332 if test "$_dynamic_plugins" = yes ; then
3333 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3334 else
3335 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3337 echores "$_dynamic_plugins"
3340 def_threads='#define HAVE_THREADS 0'
3342 echocheck "pthread"
3343 if linux ; then
3344 THREAD_CFLAGS=-D_REENTRANT
3345 elif freebsd || netbsd || openbsd || bsdos ; then
3346 THREAD_CFLAGS=-D_THREAD_SAFE
3348 if test "$_pthreads" = auto ; then
3349 cat > $TMPC << EOF
3350 #include <pthread.h>
3351 void* func(void *arg) { return arg; }
3352 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3354 _pthreads=no
3355 if ! hpux ; then
3356 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3357 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3358 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3359 done
3362 if test "$_pthreads" = yes ; then
3363 test $_ld_pthread && res_comment="using $_ld_pthread"
3364 def_pthreads='#define HAVE_PTHREADS 1'
3365 def_threads='#define HAVE_THREADS 1'
3366 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3367 else
3368 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3369 def_pthreads='#undef HAVE_PTHREADS'
3370 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3371 mingw32 || _win32dll=no
3373 echores "$_pthreads"
3375 if cygwin ; then
3376 if test "$_pthreads" = yes ; then
3377 def_pthread_cache="#define PTHREAD_CACHE 1"
3378 else
3379 _stream_cache=no
3380 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3384 echocheck "w32threads"
3385 if test "$_pthreads" = yes ; then
3386 res_comment="using pthread instead"
3387 _w32threads=no
3389 if test "$_w32threads" = auto ; then
3390 _w32threads=no
3391 mingw32 && _w32threads=yes
3393 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3394 echores "$_w32threads"
3396 echocheck "rpath"
3397 netbsd &&_rpath=yes
3398 if test "$_rpath" = yes ; then
3399 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3400 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3401 done
3402 extra_ldflags=$tmp
3404 echores "$_rpath"
3406 echocheck "iconv"
3407 if test "$_iconv" = auto ; then
3408 cat > $TMPC << EOF
3409 #include <stdio.h>
3410 #include <unistd.h>
3411 #include <iconv.h>
3412 #define INBUFSIZE 1024
3413 #define OUTBUFSIZE 4096
3415 char inbuffer[INBUFSIZE];
3416 char outbuffer[OUTBUFSIZE];
3418 int main(void) {
3419 size_t numread;
3420 iconv_t icdsc;
3421 char *tocode="UTF-8";
3422 char *fromcode="cp1250";
3423 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3424 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3425 char *iptr=inbuffer;
3426 char *optr=outbuffer;
3427 size_t inleft=numread;
3428 size_t outleft=OUTBUFSIZE;
3429 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3430 != (size_t)(-1)) {
3431 write(1, outbuffer, OUTBUFSIZE - outleft);
3434 if (iconv_close(icdsc) == -1)
3437 return 0;
3440 _iconv=no
3441 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3442 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3443 _iconv=yes && break
3444 done
3446 if test "$_iconv" = yes ; then
3447 def_iconv='#define CONFIG_ICONV 1'
3448 else
3449 def_iconv='#undef CONFIG_ICONV'
3451 echores "$_iconv"
3454 echocheck "soundcard.h"
3455 _soundcard_h=no
3456 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3457 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3458 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3459 header_check $_soundcard_header && _soundcard_h=yes &&
3460 res_comment="$_soundcard_header" && break
3461 done
3463 if test "$_soundcard_h" = yes ; then
3464 if test $_soundcard_header = "sys/soundcard.h"; then
3465 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3466 else
3467 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3470 echores "$_soundcard_h"
3473 echocheck "sys/dvdio.h"
3474 _dvdio=no
3475 header_check sys/dvdio.h && _dvdio=yes
3476 if test "$_dvdio" = yes ; then
3477 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3478 else
3479 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3481 echores "$_dvdio"
3484 echocheck "sys/cdio.h"
3485 _cdio=no
3486 header_check sys/cdio.h && _cdio=yes
3487 if test "$_cdio" = yes ; then
3488 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3489 else
3490 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3492 echores "$_cdio"
3495 echocheck "linux/cdrom.h"
3496 _cdrom=no
3497 header_check linux/cdrom.h && _cdrom=yes
3498 if test "$_cdrom" = yes ; then
3499 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3500 else
3501 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3503 echores "$_cdrom"
3506 echocheck "dvd.h"
3507 _dvd=no
3508 header_check dvd.h && _dvd=yes
3509 if test "$_dvd" = yes ; then
3510 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3511 else
3512 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3514 echores "$_dvd"
3517 if bsdos; then
3518 echocheck "BSDI dvd.h"
3519 _bsdi_dvd=no
3520 header_check dvd.h && _bsdi_dvd=yes
3521 if test "$_bsdi_dvd" = yes ; then
3522 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3523 else
3524 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3526 echores "$_bsdi_dvd"
3527 fi #if bsdos
3530 if hpux; then
3531 # also used by AIX, but AIX does not support VCD and/or libdvdread
3532 echocheck "HP-UX SCSI header"
3533 _hpux_scsi_h=no
3534 header_check sys/scsi.h && _hpux_scsi_h=yes
3535 if test "$_hpux_scsi_h" = yes ; then
3536 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3537 else
3538 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3540 echores "$_hpux_scsi_h"
3541 fi #if hpux
3544 if sunos; then
3545 echocheck "userspace SCSI headers (Solaris)"
3546 _sol_scsi_h=no
3547 header_check sys/scsi/scsi_types.h && header_check sys/scsi/impl/uscsi.h &&
3548 _sol_scsi_h=yes
3549 if test "$_sol_scsi_h" = yes ; then
3550 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3551 else
3552 def_sol_scsi_h='#undef SOLARIS_USCSI'
3554 echores "$_sol_scsi_h"
3555 fi #if sunos
3558 echocheck "termcap"
3559 if test "$_termcap" = auto ; then
3560 cat > $TMPC <<EOF
3561 #include <stddef.h>
3562 #include <term.h>
3563 int main(void) { tgetent(NULL, NULL); return 0; }
3565 _termcap=no
3566 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3567 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3568 && _termcap=yes && break
3569 done
3571 if test "$_termcap" = yes ; then
3572 def_termcap='#define HAVE_TERMCAP 1'
3573 test $_ld_tmp && res_comment="using $_ld_tmp"
3574 else
3575 def_termcap='#undef HAVE_TERMCAP'
3577 echores "$_termcap"
3580 echocheck "termios"
3581 def_termios='#undef HAVE_TERMIOS'
3582 def_termios_h='#undef HAVE_TERMIOS_H'
3583 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3584 if test "$_termios" = auto ; then
3585 _termios=no
3586 for _termios_header in "termios.h" "sys/termios.h"; do
3587 header_check $_termios_header && _termios=yes &&
3588 res_comment="using $_termios_header" && break
3589 done
3592 if test "$_termios" = yes ; then
3593 def_termios='#define HAVE_TERMIOS 1'
3594 if test "$_termios_header" = "termios.h" ; then
3595 def_termios_h='#define HAVE_TERMIOS_H 1'
3596 else
3597 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3600 echores "$_termios"
3603 echocheck "shm"
3604 if test "$_shm" = auto ; then
3605 cat > $TMPC << EOF
3606 #include <sys/types.h>
3607 #include <sys/shm.h>
3608 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3610 _shm=no
3611 cc_check && _shm=yes
3613 if test "$_shm" = yes ; then
3614 def_shm='#define HAVE_SHM 1'
3615 else
3616 def_shm='#undef HAVE_SHM'
3618 echores "$_shm"
3621 echocheck "strsep()"
3622 cat > $TMPC << EOF
3623 #include <string.h>
3624 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3626 _strsep=no
3627 cc_check && _strsep=yes
3628 if test "$_strsep" = yes ; then
3629 def_strsep='#define HAVE_STRSEP 1'
3630 _need_strsep=no
3631 else
3632 def_strsep='#undef HAVE_STRSEP'
3633 _need_strsep=yes
3635 echores "$_strsep"
3638 echocheck "vsscanf()"
3639 cat > $TMPC << EOF
3640 #define _ISOC99_SOURCE
3641 #include <stdarg.h>
3642 #include <stdio.h>
3643 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3645 _vsscanf=no
3646 cc_check && _vsscanf=yes
3647 if test "$_vsscanf" = yes ; then
3648 def_vsscanf='#define HAVE_VSSCANF 1'
3649 _need_vsscanf=no
3650 else
3651 def_vsscanf='#undef HAVE_VSSCANF'
3652 _need_vsscanf=yes
3654 echores "$_vsscanf"
3657 echocheck "swab()"
3658 cat > $TMPC << EOF
3659 #define _XOPEN_SOURCE 600
3660 #include <unistd.h>
3661 int main(void) { swab(0, 0, 0); return 0; }
3663 _swab=no
3664 cc_check && _swab=yes
3665 if test "$_swab" = yes ; then
3666 def_swab='#define HAVE_SWAB 1'
3667 _need_swab=no
3668 else
3669 def_swab='#undef HAVE_SWAB'
3670 _need_swab=yes
3672 echores "$_swab"
3674 echocheck "POSIX select()"
3675 cat > $TMPC << EOF
3676 #include <stdio.h>
3677 #include <stdlib.h>
3678 #include <sys/types.h>
3679 #include <string.h>
3680 #include <sys/time.h>
3681 #include <unistd.h>
3682 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3684 _posix_select=no
3685 def_posix_select='#undef HAVE_POSIX_SELECT'
3686 #select() of kLIBC (OS/2) supports socket only
3687 ! os2 && cc_check && _posix_select=yes \
3688 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3689 echores "$_posix_select"
3692 echocheck "audio select()"
3693 if test "$_select" = no ; then
3694 def_select='#undef HAVE_AUDIO_SELECT'
3695 elif test "$_select" = yes ; then
3696 def_select='#define HAVE_AUDIO_SELECT 1'
3698 echores "$_select"
3701 echocheck "gettimeofday()"
3702 cat > $TMPC << EOF
3703 #include <sys/time.h>
3704 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3706 _gettimeofday=no
3707 cc_check && _gettimeofday=yes
3708 if test "$_gettimeofday" = yes ; then
3709 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3710 _need_gettimeofday=no
3711 else
3712 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3713 _need_gettimeofday=yes
3715 echores "$_gettimeofday"
3718 echocheck "glob()"
3719 cat > $TMPC << EOF
3720 #include <stdio.h>
3721 #include <glob.h>
3722 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3724 _glob=no
3725 cc_check && _glob=yes
3726 if test "$_glob" = yes ; then
3727 def_glob='#define HAVE_GLOB 1'
3728 _need_glob=no
3729 else
3730 def_glob='#undef HAVE_GLOB'
3731 _need_glob=yes
3733 echores "$_glob"
3736 echocheck "setenv()"
3737 cat > $TMPC << EOF
3738 #include <stdlib.h>
3739 int main(void) { setenv("","",0); return 0; }
3741 _setenv=no
3742 cc_check && _setenv=yes
3743 if test "$_setenv" = yes ; then
3744 def_setenv='#define HAVE_SETENV 1'
3745 _need_setenv=no
3746 else
3747 def_setenv='#undef HAVE_SETENV'
3748 _need_setenv=yes
3750 echores "$_setenv"
3753 echocheck "setmode()"
3754 _setmode=no
3755 def_setmode='#define HAVE_SETMODE 0'
3756 cat > $TMPC << EOF
3757 #include <io.h>
3758 int main(void) { setmode(0, 0); return 0; }
3760 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3761 echores "$_setmode"
3764 if sunos; then
3765 echocheck "sysi86()"
3766 cat > $TMPC << EOF
3767 #include <sys/sysi86.h>
3768 int main(void) { sysi86(0); return 0; }
3770 _sysi86=no
3771 cc_check && _sysi86=yes
3772 if test "$_sysi86" = yes ; then
3773 def_sysi86='#define HAVE_SYSI86 1'
3774 cat > $TMPC << EOF
3775 #include <sys/sysi86.h>
3776 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3778 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3779 else
3780 def_sysi86='#undef HAVE_SYSI86'
3782 echores "$_sysi86"
3783 fi #if sunos
3786 echocheck "sys/sysinfo.h"
3787 cat > $TMPC << EOF
3788 #include <sys/sysinfo.h>
3789 int main(void) {
3790 struct sysinfo s_info;
3791 sysinfo(&s_info);
3792 return 0;
3795 _sys_sysinfo=no
3796 cc_check && _sys_sysinfo=yes
3797 if test "$_sys_sysinfo" = yes ; then
3798 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3799 else
3800 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3802 echores "$_sys_sysinfo"
3805 if darwin; then
3807 echocheck "Mac OS X Finder Support"
3808 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3809 if test "$_macosx_finder" = yes ; then
3810 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3811 extra_ldflags="$extra_ldflags -framework Carbon"
3813 echores "$_macosx_finder"
3815 echocheck "Mac OS X Bundle file locations"
3816 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3817 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3818 if test "$_macosx_bundle" = yes ; then
3819 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3820 extra_ldflags="$extra_ldflags -framework Carbon"
3822 echores "$_macosx_bundle"
3824 echocheck "Apple Remote"
3825 if test "$_apple_remote" = auto ; then
3826 _apple_remote=no
3827 cat > $TMPC <<EOF
3828 #include <stdio.h>
3829 #include <IOKit/IOCFPlugIn.h>
3830 int main(void) {
3831 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3832 CFMutableDictionaryRef hidMatchDictionary;
3833 IOReturn ioReturnValue;
3835 // Set up a matching dictionary to search the I/O Registry by class.
3836 // name for all HID class devices
3837 hidMatchDictionary = IOServiceMatching("AppleIRController");
3839 // Now search I/O Registry for matching devices.
3840 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3841 hidMatchDictionary, &hidObjectIterator);
3843 // If search is unsuccessful, return nonzero.
3844 if (ioReturnValue != kIOReturnSuccess ||
3845 !IOIteratorIsValid(hidObjectIterator)) {
3846 return 1;
3848 return 0;
3851 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3853 if test "$_apple_remote" = yes ; then
3854 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3855 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3856 else
3857 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3859 echores "$_apple_remote"
3861 fi #if darwin
3863 if linux; then
3865 echocheck "Apple IR"
3866 if test "$_apple_ir" = auto ; then
3867 _apple_ir=no
3868 cat > $TMPC <<EOF
3869 #include <linux/types.h>
3870 #include <linux/input.h>
3871 int main(void) {
3872 struct input_event ev;
3873 struct input_id id;
3874 return 0;
3877 cc_check && _apple_ir=yes
3879 if test "$_apple_ir" = yes ; then
3880 def_apple_ir='#define CONFIG_APPLE_IR 1'
3881 else
3882 def_apple_ir='#undef CONFIG_APPLE_IR'
3884 echores "$_apple_ir"
3885 fi #if linux
3887 echocheck "pkg-config"
3888 _pkg_config=pkg-config
3889 if $($_pkg_config --version > /dev/null 2>&1); then
3890 if test "$_ld_static"; then
3891 _pkg_config="$_pkg_config --static"
3893 echores "yes"
3894 else
3895 _pkg_config=false
3896 echores "no"
3900 echocheck "Samba support (libsmbclient)"
3901 if test "$_smb" = yes; then
3902 extra_ldflags="$extra_ldflags -lsmbclient"
3904 if test "$_smb" = auto; then
3905 _smb=no
3906 cat > $TMPC << EOF
3907 #include <libsmbclient.h>
3908 int main(void) { smbc_opendir("smb://"); return 0; }
3910 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3911 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3912 _smb=yes && break
3913 done
3916 if test "$_smb" = yes; then
3917 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3918 inputmodules="smb $inputmodules"
3919 else
3920 def_smb="#undef CONFIG_LIBSMBCLIENT"
3921 noinputmodules="smb $noinputmodules"
3923 echores "$_smb"
3926 #########
3927 # VIDEO #
3928 #########
3931 echocheck "tdfxfb"
3932 if test "$_tdfxfb" = yes ; then
3933 def_tdfxfb='#define CONFIG_TDFXFB 1'
3934 vomodules="tdfxfb $vomodules"
3935 else
3936 def_tdfxfb='#undef CONFIG_TDFXFB'
3937 novomodules="tdfxfb $novomodules"
3939 echores "$_tdfxfb"
3941 echocheck "s3fb"
3942 if test "$_s3fb" = yes ; then
3943 def_s3fb='#define CONFIG_S3FB 1'
3944 vomodules="s3fb $vomodules"
3945 else
3946 def_s3fb='#undef CONFIG_S3FB'
3947 novomodules="s3fb $novomodules"
3949 echores "$_s3fb"
3951 echocheck "wii"
3952 if test "$_wii" = yes ; then
3953 def_wii='#define CONFIG_WII 1'
3954 vomodules="wii $vomodules"
3955 else
3956 def_wii='#undef CONFIG_WII'
3957 novomodules="wii $novomodules"
3959 echores "$_wii"
3961 echocheck "tdfxvid"
3962 if test "$_tdfxvid" = yes ; then
3963 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3964 vomodules="tdfx_vid $vomodules"
3965 else
3966 def_tdfxvid='#undef CONFIG_TDFX_VID'
3967 novomodules="tdfx_vid $novomodules"
3969 echores "$_tdfxvid"
3971 echocheck "xvr100"
3972 if test "$_xvr100" = auto ; then
3973 cat > $TMPC << EOF
3974 #include <unistd.h>
3975 #include <sys/fbio.h>
3976 #include <sys/visual_io.h>
3977 int main(void) {
3978 struct vis_identifier ident;
3979 struct fbgattr attr;
3980 ioctl(0, VIS_GETIDENTIFIER, &ident);
3981 ioctl(0, FBIOGATTR, &attr);
3982 return 0;
3985 _xvr100=no
3986 cc_check && _xvr100=yes
3988 if test "$_xvr100" = yes ; then
3989 def_xvr100='#define CONFIG_XVR100 1'
3990 vomodules="xvr100 $vomodules"
3991 else
3992 def_tdfxvid='#undef CONFIG_XVR100'
3993 novomodules="xvr100 $novomodules"
3995 echores "$_xvr100"
3997 echocheck "tga"
3998 if test "$_tga" = yes ; then
3999 def_tga='#define CONFIG_TGA 1'
4000 vomodules="tga $vomodules"
4001 else
4002 def_tga='#undef CONFIG_TGA'
4003 novomodules="tga $novomodules"
4005 echores "$_tga"
4008 echocheck "md5sum support"
4009 if test "$_md5sum" = yes; then
4010 def_md5sum="#define CONFIG_MD5SUM 1"
4011 vomodules="md5sum $vomodules"
4012 else
4013 def_md5sum="#undef CONFIG_MD5SUM"
4014 novomodules="md5sum $novomodules"
4016 echores "$_md5sum"
4019 echocheck "yuv4mpeg support"
4020 if test "$_yuv4mpeg" = yes; then
4021 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4022 vomodules="yuv4mpeg $vomodules"
4023 else
4024 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4025 novomodules="yuv4mpeg $novomodules"
4027 echores "$_yuv4mpeg"
4030 echocheck "bl"
4031 if test "$_bl" = yes ; then
4032 def_bl='#define CONFIG_BL 1'
4033 vomodules="bl $vomodules"
4034 else
4035 def_bl='#undef CONFIG_BL'
4036 novomodules="bl $novomodules"
4038 echores "$_bl"
4041 echocheck "DirectFB"
4042 if test "$_directfb" = auto ; then
4043 _directfb=no
4044 cat > $TMPC <<EOF
4045 #include <directfb.h>
4046 int main(void) { DirectFBInit(0, 0); return 0; }
4048 for _inc_tmp in "" -I/usr/local/include/directfb \
4049 -I/usr/include/directfb -I/usr/local/include; do
4050 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4051 extra_cflags="$extra_cflags $_inc_tmp" && break
4052 done
4055 dfb_version() {
4056 expr $1 \* 65536 + $2 \* 256 + $3
4059 if test "$_directfb" = yes; then
4060 cat > $TMPC << EOF
4061 #include <directfb_version.h>
4063 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4066 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4067 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4068 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4069 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4070 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4071 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4072 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4073 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4074 res_comment="$_directfb_version"
4075 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4076 else
4077 def_directfb_version='#undef DIRECTFBVERSION'
4078 _directfb=no
4079 res_comment="version >=0.9.13 required"
4081 else
4082 _directfb=no
4083 res_comment="failed to get version"
4086 echores "$_directfb"
4088 if test "$_directfb" = yes ; then
4089 def_directfb='#define CONFIG_DIRECTFB 1'
4090 vomodules="directfb $vomodules"
4091 libs_mplayer="$libs_mplayer -ldirectfb"
4092 else
4093 def_directfb='#undef CONFIG_DIRECTFB'
4094 novomodules="directfb $novomodules"
4096 if test "$_dfbmga" = yes; then
4097 vomodules="dfbmga $vomodules"
4098 def_dfbmga='#define CONFIG_DFBMGA 1'
4099 else
4100 novomodules="dfbmga $novomodules"
4101 def_dfbmga='#undef CONFIG_DFBMGA'
4105 echocheck "X11 headers presence"
4106 _x11_headers="no"
4107 res_comment="check if the dev(el) packages are installed"
4108 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4109 if test -f "$I/X11/Xlib.h" ; then
4110 _x11_headers="yes"
4111 res_comment=""
4112 break
4114 done
4115 if test $_cross_compile = no; then
4116 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4117 /usr/include/X11R6 /usr/openwin/include ; do
4118 if test -f "$I/X11/Xlib.h" ; then
4119 extra_cflags="$extra_cflags -I$I"
4120 _x11_headers="yes"
4121 res_comment="using $I"
4122 break
4124 done
4126 echores "$_x11_headers"
4129 echocheck "X11"
4130 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4131 cat > $TMPC <<EOF
4132 #include <X11/Xlib.h>
4133 #include <X11/Xutil.h>
4134 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4136 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4137 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4138 -L/usr/lib ; do
4139 if netbsd; then
4140 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4141 else
4142 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4144 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4145 && _x11=yes && break
4146 done
4148 if test "$_x11" = yes ; then
4149 def_x11='#define CONFIG_X11 1'
4150 vomodules="x11 xover $vomodules"
4151 else
4152 _x11=no
4153 def_x11='#undef CONFIG_X11'
4154 novomodules="x11 $novomodules"
4155 res_comment="check if the dev(el) packages are installed"
4156 # disable stuff that depends on X
4157 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4159 echores "$_x11"
4161 echocheck "Xss screensaver extensions"
4162 if test "$_xss" = auto ; then
4163 cat > $TMPC << EOF
4164 #include <X11/Xlib.h>
4165 #include <X11/extensions/scrnsaver.h>
4166 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4168 _xss=no
4169 cc_check -lXss && _xss=yes
4171 if test "$_xss" = yes ; then
4172 def_xss='#define CONFIG_XSS 1'
4173 libs_mplayer="$libs_mplayer -lXss"
4174 else
4175 def_xss='#undef CONFIG_XSS'
4177 echores "$_xss"
4179 echocheck "DPMS"
4180 _xdpms3=no
4181 _xdpms4=no
4182 if test "$_x11" = yes ; then
4183 cat > $TMPC <<EOF
4184 #include <X11/Xmd.h>
4185 #include <X11/Xlib.h>
4186 #include <X11/Xutil.h>
4187 #include <X11/Xatom.h>
4188 #include <X11/extensions/dpms.h>
4189 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4191 cc_check -lXdpms && _xdpms3=yes
4192 cat > $TMPC <<EOF
4193 #include <X11/Xlib.h>
4194 #include <X11/extensions/dpms.h>
4195 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4197 cc_check -lXext && _xdpms4=yes
4199 if test "$_xdpms4" = yes ; then
4200 def_xdpms='#define CONFIG_XDPMS 1'
4201 res_comment="using Xdpms 4"
4202 echores "yes"
4203 elif test "$_xdpms3" = yes ; then
4204 def_xdpms='#define CONFIG_XDPMS 1'
4205 libs_mplayer="$libs_mplayer -lXdpms"
4206 res_comment="using Xdpms 3"
4207 echores "yes"
4208 else
4209 def_xdpms='#undef CONFIG_XDPMS'
4210 echores "no"
4214 echocheck "Xv"
4215 if test "$_xv" = auto ; then
4216 cat > $TMPC <<EOF
4217 #include <X11/Xlib.h>
4218 #include <X11/extensions/Xvlib.h>
4219 int main(void) {
4220 (void) XvGetPortAttribute(0, 0, 0, 0);
4221 (void) XvQueryPortAttributes(0, 0, 0);
4222 return 0; }
4224 _xv=no
4225 cc_check -lXv && _xv=yes
4228 if test "$_xv" = yes ; then
4229 def_xv='#define CONFIG_XV 1'
4230 libs_mplayer="$libs_mplayer -lXv"
4231 vomodules="xv $vomodules"
4232 else
4233 def_xv='#undef CONFIG_XV'
4234 novomodules="xv $novomodules"
4236 echores "$_xv"
4239 echocheck "XvMC"
4240 if test "$_xv" = yes && test "$_xvmc" != no ; then
4241 _xvmc=no
4242 cat > $TMPC <<EOF
4243 #include <X11/Xlib.h>
4244 #include <X11/extensions/Xvlib.h>
4245 #include <X11/extensions/XvMClib.h>
4246 int main(void) {
4247 (void) XvMCQueryExtension(0,0,0);
4248 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4249 return 0; }
4251 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4252 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4253 done
4255 if test "$_xvmc" = yes ; then
4256 def_xvmc='#define CONFIG_XVMC 1'
4257 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4258 vomodules="xvmc $vomodules"
4259 res_comment="using $_xvmclib"
4260 else
4261 def_xvmc='#define CONFIG_XVMC 0'
4262 novomodules="xvmc $novomodules"
4264 echores "$_xvmc"
4267 echocheck "VDPAU"
4268 if test "$_vdpau" = auto ; then
4269 _vdpau=no
4270 if test "$_dl" = yes ; then
4271 cat > $TMPC <<EOF
4272 #include <vdpau/vdpau_x11.h>
4273 int main(void) {
4274 (void) vdp_device_create_x11(0, 0, 0, 0);
4275 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4277 cc_check -lvdpau && _vdpau=yes
4280 if test "$_vdpau" = yes ; then
4281 def_vdpau='#define CONFIG_VDPAU 1'
4282 libs_mplayer="$libs_mplayer -lvdpau"
4283 vomodules="vdpau $vomodules"
4284 else
4285 def_vdpau='#define CONFIG_VDPAU 0'
4286 novomodules="vdpau $novomodules"
4288 echores "$_vdpau"
4291 echocheck "Xinerama"
4292 if test "$_xinerama" = auto ; then
4293 cat > $TMPC <<EOF
4294 #include <X11/Xlib.h>
4295 #include <X11/extensions/Xinerama.h>
4296 int main(void) { (void) XineramaIsActive(0); return 0; }
4298 _xinerama=no
4299 cc_check -lXinerama && _xinerama=yes
4302 if test "$_xinerama" = yes ; then
4303 def_xinerama='#define CONFIG_XINERAMA 1'
4304 libs_mplayer="$libs_mplayer -lXinerama"
4305 else
4306 def_xinerama='#undef CONFIG_XINERAMA'
4308 echores "$_xinerama"
4311 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4312 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4313 # named 'X extensions' or something similar.
4314 # This check may be useful for future mplayer versions (to change resolution)
4315 # If you run into problems, remove '-lXxf86vm'.
4316 echocheck "Xxf86vm"
4317 if test "$_vm" = auto ; then
4318 cat > $TMPC <<EOF
4319 #include <X11/Xlib.h>
4320 #include <X11/extensions/xf86vmode.h>
4321 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4323 _vm=no
4324 cc_check -lXxf86vm && _vm=yes
4326 if test "$_vm" = yes ; then
4327 def_vm='#define CONFIG_XF86VM 1'
4328 libs_mplayer="$libs_mplayer -lXxf86vm"
4329 else
4330 def_vm='#undef CONFIG_XF86VM'
4332 echores "$_vm"
4334 # Check for the presence of special keycodes, like audio control buttons
4335 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4336 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4337 # have these new keycodes.
4338 echocheck "XF86keysym"
4339 if test "$_xf86keysym" = auto; then
4340 _xf86keysym=no
4341 cat > $TMPC <<EOF
4342 #include <X11/Xlib.h>
4343 #include <X11/XF86keysym.h>
4344 int main(void) { return XF86XK_AudioPause; }
4346 cc_check && _xf86keysym=yes
4348 if test "$_xf86keysym" = yes ; then
4349 def_xf86keysym='#define CONFIG_XF86XK 1'
4350 else
4351 def_xf86keysym='#undef CONFIG_XF86XK'
4353 echores "$_xf86keysym"
4355 echocheck "DGA"
4356 if test "$_dga2" = auto && test "$_x11" = yes ; then
4357 cat > $TMPC << EOF
4358 #include <X11/Xlib.h>
4359 #include <X11/extensions/xf86dga.h>
4360 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4362 _dga2=no
4363 cc_check -lXxf86dga && _dga2=yes
4365 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4366 cat > $TMPC << EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/extensions/xf86dga.h>
4369 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4371 _dga1=no
4372 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4375 _dga=no
4376 def_dga='#undef CONFIG_DGA'
4377 def_dga1='#undef CONFIG_DGA1'
4378 def_dga2='#undef CONFIG_DGA2'
4379 if test "$_dga1" = yes ; then
4380 _dga=yes
4381 def_dga1='#define CONFIG_DGA1 1'
4382 res_comment="using DGA 1.0"
4383 elif test "$_dga2" = yes ; then
4384 _dga=yes
4385 def_dga2='#define CONFIG_DGA2 1'
4386 res_comment="using DGA 2.0"
4388 if test "$_dga" = yes ; then
4389 def_dga='#define CONFIG_DGA 1'
4390 libs_mplayer="$libs_mplayer -lXxf86dga"
4391 vomodules="dga $vomodules"
4392 else
4393 novomodules="dga $novomodules"
4395 echores "$_dga"
4398 echocheck "3dfx"
4399 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4400 def_3dfx='#define CONFIG_3DFX 1'
4401 vomodules="3dfx $vomodules"
4402 else
4403 def_3dfx='#undef CONFIG_3DFX'
4404 novomodules="3dfx $novomodules"
4406 echores "$_3dfx"
4409 echocheck "VIDIX"
4410 def_vidix='#undef CONFIG_VIDIX'
4411 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4412 _vidix_drv_cyberblade=no
4413 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4414 _vidix_drv_ivtv=no
4415 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4416 _vidix_drv_mach64=no
4417 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4418 _vidix_drv_mga=no
4419 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4420 _vidix_drv_mga_crtc2=no
4421 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4422 _vidix_drv_nvidia=no
4423 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4424 _vidix_drv_pm2=no
4425 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4426 _vidix_drv_pm3=no
4427 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4428 _vidix_drv_radeon=no
4429 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4430 _vidix_drv_rage128=no
4431 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4432 _vidix_drv_s3=no
4433 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4434 _vidix_drv_sh_veu=no
4435 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4436 _vidix_drv_sis=no
4437 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4438 _vidix_drv_unichrome=no
4439 if test "$_vidix" = auto ; then
4440 _vidix=no
4441 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4442 && _vidix=yes
4443 x86_64 && ! linux && _vidix=no
4444 (ppc || alpha) && linux && _vidix=yes
4446 echores "$_vidix"
4448 if test "$_vidix" = yes ; then
4449 def_vidix='#define CONFIG_VIDIX 1'
4450 vomodules="cvidix $vomodules"
4451 # FIXME: ivtv driver temporarily disabled until we have a proper test
4452 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4453 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4455 # some vidix drivers are architecture and os specific, discard them elsewhere
4456 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4457 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4459 for driver in $_vidix_drivers ; do
4460 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4461 eval _vidix_drv_${driver}=yes
4462 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4463 done
4465 echocheck "VIDIX PCI device name database"
4466 echores "$_vidix_pcidb"
4467 if test "$_vidix_pcidb" = yes ; then
4468 _vidix_pcidb_val=1
4469 else
4470 _vidix_pcidb_val=0
4473 echocheck "VIDIX dhahelper support"
4474 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4475 echores "$_dhahelper"
4477 echocheck "VIDIX svgalib_helper support"
4478 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4479 echores "$_svgalib_helper"
4481 else
4482 novomodules="cvidix $novomodules"
4485 if test "$_vidix" = yes && win32; then
4486 winvidix=yes
4487 vomodules="winvidix $vomodules"
4488 libs_mplayer="$libs_mplayer -lgdi32"
4489 else
4490 novomodules="winvidix $novomodules"
4492 if test "$_vidix" = yes && test "$_x11" = yes; then
4493 xvidix=yes
4494 vomodules="xvidix $vomodules"
4495 else
4496 novomodules="xvidix $novomodules"
4499 echocheck "GGI"
4500 if test "$_ggi" = auto ; then
4501 cat > $TMPC << EOF
4502 #include <ggi/ggi.h>
4503 int main(void) { ggiInit(); return 0; }
4505 _ggi=no
4506 cc_check -lggi && _ggi=yes
4508 if test "$_ggi" = yes ; then
4509 def_ggi='#define CONFIG_GGI 1'
4510 libs_mplayer="$libs_mplayer -lggi"
4511 vomodules="ggi $vomodules"
4512 else
4513 def_ggi='#undef CONFIG_GGI'
4514 novomodules="ggi $novomodules"
4516 echores "$_ggi"
4518 echocheck "GGI extension: libggiwmh"
4519 if test "$_ggiwmh" = auto ; then
4520 _ggiwmh=no
4521 cat > $TMPC << EOF
4522 #include <ggi/ggi.h>
4523 #include <ggi/wmh.h>
4524 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4526 cc_check -lggi -lggiwmh && _ggiwmh=yes
4528 # needed to get right output on obscure combination
4529 # like --disable-ggi --enable-ggiwmh
4530 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4531 def_ggiwmh='#define CONFIG_GGIWMH 1'
4532 libs_mplayer="$libs_mplayer -lggiwmh"
4533 else
4534 _ggiwmh=no
4535 def_ggiwmh='#undef CONFIG_GGIWMH'
4537 echores "$_ggiwmh"
4540 echocheck "AA"
4541 if test "$_aa" = auto ; then
4542 cat > $TMPC << EOF
4543 #include <aalib.h>
4544 extern struct aa_hardware_params aa_defparams;
4545 extern struct aa_renderparams aa_defrenderparams;
4546 int main(void) {
4547 aa_context *c;
4548 aa_renderparams *p;
4549 (void) aa_init(0, 0, 0);
4550 c = aa_autoinit(&aa_defparams);
4551 p = aa_getrenderparams();
4552 aa_autoinitkbd(c,0);
4553 return 0; }
4555 _aa=no
4556 for _ld_tmp in "-laa" ; do
4557 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4558 done
4560 if test "$_aa" = yes ; then
4561 def_aa='#define CONFIG_AA 1'
4562 if cygwin ; then
4563 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4565 vomodules="aa $vomodules"
4566 else
4567 def_aa='#undef CONFIG_AA'
4568 novomodules="aa $novomodules"
4570 echores "$_aa"
4573 echocheck "CACA"
4574 if test "$_caca" = auto ; then
4575 _caca=no
4576 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4577 cat > $TMPC << EOF
4578 #include <caca.h>
4579 #ifdef CACA_API_VERSION_1
4580 #include <caca0.h>
4581 #endif
4582 int main(void) { (void) caca_init(); return 0; }
4584 cc_check $(caca-config --libs) && _caca=yes
4587 if test "$_caca" = yes ; then
4588 def_caca='#define CONFIG_CACA 1'
4589 extra_cflags="$extra_cflags $(caca-config --cflags)"
4590 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4591 vomodules="caca $vomodules"
4592 else
4593 def_caca='#undef CONFIG_CACA'
4594 novomodules="caca $novomodules"
4596 echores "$_caca"
4599 echocheck "SVGAlib"
4600 if test "$_svga" = auto ; then
4601 _svga=no
4602 header_check vga.h -lvga $_ld_lm && _svga=yes
4604 if test "$_svga" = yes ; then
4605 def_svga='#define CONFIG_SVGALIB 1'
4606 libs_mplayer="$libs_mplayer -lvga"
4607 vomodules="svga $vomodules"
4608 else
4609 def_svga='#undef CONFIG_SVGALIB'
4610 novomodules="svga $novomodules"
4612 echores "$_svga"
4615 echocheck "FBDev"
4616 if test "$_fbdev" = auto ; then
4617 _fbdev=no
4618 linux && _fbdev=yes
4620 if test "$_fbdev" = yes ; then
4621 def_fbdev='#define CONFIG_FBDEV 1'
4622 vomodules="fbdev $vomodules"
4623 else
4624 def_fbdev='#undef CONFIG_FBDEV'
4625 novomodules="fbdev $novomodules"
4627 echores "$_fbdev"
4631 echocheck "DVB"
4632 if test "$_dvb" = auto ; then
4633 _dvb=no
4634 cat >$TMPC << EOF
4635 #include <poll.h>
4636 #include <sys/ioctl.h>
4637 #include <stdio.h>
4638 #include <time.h>
4639 #include <unistd.h>
4640 #include <linux/dvb/dmx.h>
4641 #include <linux/dvb/frontend.h>
4642 #include <linux/dvb/video.h>
4643 #include <linux/dvb/audio.h>
4644 int main(void) {return 0;}
4646 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4647 cc_check $_inc_tmp && _dvb=yes && \
4648 extra_cflags="$extra_cflags $_inc_tmp" && break
4649 done
4651 echores "$_dvb"
4652 if test "$_dvb" = yes ; then
4653 _dvbin=yes
4654 inputmodules="dvb $inputmodules"
4655 def_dvb='#define CONFIG_DVB 1'
4656 def_dvbin='#define CONFIG_DVBIN 1'
4657 aomodules="mpegpes(dvb) $aomodules"
4658 vomodules="mpegpes(dvb) $vomodules"
4659 else
4660 _dvbin=no
4661 noinputmodules="dvb $noinputmodules"
4662 def_dvb='#undef CONFIG_DVB'
4663 def_dvbin='#undef CONFIG_DVBIN '
4664 aomodules="mpegpes(file) $aomodules"
4665 vomodules="mpegpes(file) $vomodules"
4669 if darwin; then
4671 echocheck "QuickTime"
4672 if test "$quicktime" = auto ; then
4673 cat > $TMPC <<EOF
4674 #include <QuickTime/QuickTime.h>
4675 int main(void) {
4676 ImageDescription *desc;
4677 EnterMovies();
4678 ExitMovies();
4679 return 0;
4682 quicktime=no
4683 cc_check -framework QuickTime && quicktime=yes
4685 if test "$quicktime" = yes ; then
4686 extra_ldflags="$extra_ldflags -framework QuickTime"
4687 def_quicktime='#define CONFIG_QUICKTIME 1'
4688 else
4689 def_quicktime='#undef CONFIG_QUICKTIME'
4690 _quartz=no
4692 echores $quicktime
4694 echocheck "Quartz"
4695 if test "$_quartz" = auto ; then
4696 cat > $TMPC <<EOF
4697 #include <Carbon/Carbon.h>
4698 int main(void) {
4699 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4700 return 0;
4703 _quartz=no
4704 cc_check -framework Carbon && _quartz=yes
4706 if test "$_quartz" = yes ; then
4707 libs_mplayer="$libs_mplayer -framework Carbon"
4708 def_quartz='#define CONFIG_QUARTZ 1'
4709 vomodules="quartz $vomodules"
4710 else
4711 def_quartz='#undef CONFIG_QUARTZ'
4712 novomodules="quartz $novomodules"
4714 echores $_quartz
4716 echocheck "CoreVideo"
4717 if test "$_corevideo" = auto ; then
4718 cat > $TMPC <<EOF
4719 #include <Carbon/Carbon.h>
4720 #include <CoreServices/CoreServices.h>
4721 #include <OpenGL/OpenGL.h>
4722 #include <QuartzCore/CoreVideo.h>
4723 int main(void) { return 0; }
4725 _corevideo=no
4726 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4728 if test "$_corevideo" = yes ; then
4729 vomodules="corevideo $vomodules"
4730 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4731 def_corevideo='#define CONFIG_COREVIDEO 1'
4732 else
4733 novomodules="corevideo $novomodules"
4734 def_corevideo='#undef CONFIG_COREVIDEO'
4736 echores "$_corevideo"
4738 fi #if darwin
4741 echocheck "PNG support"
4742 if test "$_png" = auto ; then
4743 _png=no
4744 if irix ; then
4745 # Don't check for -lpng on irix since it has its own libpng
4746 # incompatible with the GNU libpng
4747 res_comment="disabled on irix (not GNU libpng)"
4748 else
4749 cat > $TMPC << EOF
4750 #include <png.h>
4751 #include <string.h>
4752 int main(void) {
4753 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4754 printf("libpng: %s\n", png_libpng_ver);
4755 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4758 cc_check -lpng -lz $_ld_lm && _png=yes
4761 echores "$_png"
4762 if test "$_png" = yes ; then
4763 def_png='#define CONFIG_PNG 1'
4764 extra_ldflags="$extra_ldflags -lpng -lz"
4765 else
4766 def_png='#undef CONFIG_PNG'
4769 echocheck "MNG support"
4770 if test "$_mng" = auto ; then
4771 _mng=no
4772 cat > $TMPC << EOF
4773 #include <libmng.h>
4774 int main(void) {
4775 const char * p_ver = mng_version_text();
4776 return !p_ver || p_ver[0] == 0;
4779 if cc_check -lmng -lz $_ld_lm ; then
4780 _mng=yes
4783 echores "$_mng"
4784 if test "$_mng" = yes ; then
4785 def_mng='#define CONFIG_MNG 1'
4786 extra_ldflags="$extra_ldflags -lmng -lz"
4787 else
4788 def_mng='#undef CONFIG_MNG'
4791 echocheck "JPEG support"
4792 if test "$_jpeg" = auto ; then
4793 _jpeg=no
4794 cat > $TMPC << EOF
4795 #include <stdio.h>
4796 #include <stdlib.h>
4797 #include <setjmp.h>
4798 #include <string.h>
4799 #include <jpeglib.h>
4800 int main(void) { return 0; }
4802 cc_check -ljpeg $_ld_lm && _jpeg=yes
4804 echores "$_jpeg"
4806 if test "$_jpeg" = yes ; then
4807 def_jpeg='#define CONFIG_JPEG 1'
4808 vomodules="jpeg $vomodules"
4809 extra_ldflags="$extra_ldflags -ljpeg"
4810 else
4811 def_jpeg='#undef CONFIG_JPEG'
4812 novomodules="jpeg $novomodules"
4817 echocheck "PNM support"
4818 if test "$_pnm" = yes; then
4819 def_pnm="#define CONFIG_PNM 1"
4820 vomodules="pnm $vomodules"
4821 else
4822 def_pnm="#undef CONFIG_PNM"
4823 novomodules="pnm $novomodules"
4825 echores "$_pnm"
4829 echocheck "GIF support"
4830 # This is to appease people who want to force gif support.
4831 # If it is forced to yes, then we still do checks to determine
4832 # which gif library to use.
4833 if test "$_gif" = yes ; then
4834 _force_gif=yes
4835 _gif=auto
4838 if test "$_gif" = auto ; then
4839 _gif=no
4840 cat > $TMPC << EOF
4841 #include <gif_lib.h>
4842 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4844 for _ld_gif in "-lungif" "-lgif" ; do
4845 cc_check $_ld_gif && _gif=yes && break
4846 done
4849 # If no library was found, and the user wants support forced,
4850 # then we force it on with libgif, as this is the safest
4851 # assumption IMHO. (libungif & libregif both create symbolic
4852 # links to libgif. We also assume that no x11 support is needed,
4853 # because if you are forcing this, then you _should_ know what
4854 # you are doing. [ Besides, package maintainers should never
4855 # have compiled x11 deps into libungif in the first place. ] )
4856 # </rant>
4857 # --Joey
4858 if test "$_force_gif" = yes && test "$_gif" = no ; then
4859 _gif=yes
4860 _ld_gif="-lgif"
4863 if test "$_gif" = yes ; then
4864 def_gif='#define CONFIG_GIF 1'
4865 codecmodules="gif $codecmodules"
4866 vomodules="gif89a $vomodules"
4867 res_comment="old version, some encoding functions disabled"
4868 def_gif_4='#undef CONFIG_GIF_4'
4869 extra_ldflags="$extra_ldflags $_ld_gif"
4871 cat > $TMPC << EOF
4872 #include <signal.h>
4873 #include <gif_lib.h>
4874 void catch(void) { exit(1); }
4875 int main(void) {
4876 signal(SIGSEGV, catch); // catch segfault
4877 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4878 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4879 return 0;
4882 if cc_check "$_ld_gif" ; then
4883 def_gif_4='#define CONFIG_GIF_4 1'
4884 res_comment=""
4886 else
4887 def_gif='#undef CONFIG_GIF'
4888 def_gif_4='#undef CONFIG_GIF_4'
4889 novomodules="gif89a $novomodules"
4890 nocodecmodules="gif $nocodecmodules"
4892 echores "$_gif"
4895 case "$_gif" in yes*)
4896 echocheck "broken giflib workaround"
4897 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4899 cat > $TMPC << EOF
4900 #include <gif_lib.h>
4901 int main(void) {
4902 GifFileType gif;
4903 printf("UserData is at address %p\n", gif.UserData);
4904 return 0;
4907 if cc_check "$_ld_gif" ; then
4908 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4909 echores "disabled"
4910 else
4911 echores "enabled"
4914 esac
4917 echocheck "VESA support"
4918 if test "$_vesa" = auto ; then
4919 cat > $TMPC << EOF
4920 #include <vbe.h>
4921 int main(void) { vbeVersion(); return 0; }
4923 _vesa=no
4924 cc_check -lvbe -llrmi && _vesa=yes
4926 if test "$_vesa" = yes ; then
4927 def_vesa='#define CONFIG_VESA 1'
4928 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4929 vomodules="vesa $vomodules"
4930 else
4931 def_vesa='#undef CONFIG_VESA'
4932 novomodules="vesa $novomodules"
4934 echores "$_vesa"
4936 #################
4937 # VIDEO + AUDIO #
4938 #################
4941 echocheck "SDL"
4942 _inc_tmp=""
4943 _ld_tmp=""
4944 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4945 if test -z "$_sdlconfig" ; then
4946 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4947 _sdlconfig="sdl-config"
4948 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4949 _sdlconfig="sdl11-config"
4950 else
4951 _sdlconfig=false
4954 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4955 cat > $TMPC << EOF
4956 #ifdef CONFIG_SDL_SDL_H
4957 #include <SDL/SDL.h>
4958 #else
4959 #include <SDL.h>
4960 #endif
4961 #ifndef __APPLE__
4962 // we allow SDL hacking our main() only on OSX
4963 #undef main
4964 #endif
4965 int main(int argc, char *argv[]) {
4966 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4967 return 0;
4970 _sdl=no
4971 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4972 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4973 _sdl=yes
4974 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4975 break
4977 done
4978 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4979 res_comment="using $_sdlconfig"
4980 if cygwin ; then
4981 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4982 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4983 elif mingw32 ; then
4984 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4985 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4986 else
4987 _inc_tmp="$($_sdlconfig --cflags)"
4988 _ld_tmp="$($_sdlconfig --libs)"
4990 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
4991 _sdl=yes
4995 if test "$_sdl" = yes ; then
4996 def_sdl='#define CONFIG_SDL 1'
4997 extra_cflags="$extra_cflags $_inc_tmp"
4998 libs_mplayer="$libs_mplayer $_ld_tmp"
4999 vomodules="sdl $vomodules"
5000 aomodules="sdl $aomodules"
5001 else
5002 def_sdl='#undef CONFIG_SDL'
5003 novomodules="sdl $novomodules"
5004 noaomodules="sdl $noaomodules"
5006 echores "$_sdl"
5009 # make sure this stays below CoreVideo to avoid issues due to namespace
5010 # conflicts between -lGL and -framework OpenGL
5011 echocheck "OpenGL"
5012 #Note: this test is run even with --enable-gl since we autodetect linker flags
5013 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5014 cat > $TMPC << EOF
5015 #ifdef GL_WIN32
5016 #include <windows.h>
5017 #include <GL/gl.h>
5018 #elif defined(GL_SDL)
5019 #include <GL/gl.h>
5020 #ifdef CONFIG_SDL_SDL_H
5021 #include <SDL/SDL.h>
5022 #else
5023 #include <SDL.h>
5024 #endif
5025 #ifndef __APPLE__
5026 // we allow SDL hacking our main() only on OSX
5027 #undef main
5028 #endif
5029 #else
5030 #include <GL/gl.h>
5031 #include <X11/Xlib.h>
5032 #include <GL/glx.h>
5033 #endif
5034 int main(int argc, char *argv[]) {
5035 #ifdef GL_WIN32
5036 HDC dc;
5037 wglCreateContext(dc);
5038 #elif defined(GL_SDL)
5039 SDL_GL_SwapBuffers();
5040 #else
5041 glXCreateContext(NULL, NULL, NULL, True);
5042 #endif
5043 glFinish();
5044 return 0;
5047 _gl=no
5048 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5049 if cc_check $_ld_tmp $_ld_lm ; then
5050 _gl=yes
5051 _gl_x11=yes
5052 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5053 break
5055 done
5056 if cc_check -DGL_WIN32 -lopengl32 ; then
5057 _gl=yes
5058 _gl_win32=yes
5059 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5061 # last so it can reuse any linker etc. flags detected before
5062 if test "$_sdl" = yes ; then
5063 if cc_check -DGL_SDL ||
5064 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5065 _gl=yes
5066 _gl_sdl=yes
5067 elif cc_check -DGL_SDL -lGL ||
5068 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5069 _gl=yes
5070 _gl_sdl=yes
5071 libs_mplayer="$libs_mplayer -lGL"
5074 else
5075 _gl=no
5077 if test "$_gl" = yes ; then
5078 def_gl='#define CONFIG_GL 1'
5079 res_comment="backends:"
5080 if test "$_gl_win32" = yes ; then
5081 def_gl_win32='#define CONFIG_GL_WIN32 1'
5082 res_comment="$res_comment win32"
5084 if test "$_gl_x11" = yes ; then
5085 def_gl_x11='#define CONFIG_GL_X11 1'
5086 res_comment="$res_comment x11"
5088 if test "$_gl_sdl" = yes ; then
5089 def_gl_sdl='#define CONFIG_GL_SDL 1'
5090 res_comment="$res_comment sdl"
5092 vomodules="opengl $vomodules"
5093 else
5094 def_gl='#undef CONFIG_GL'
5095 def_gl_win32='#undef CONFIG_GL_WIN32'
5096 def_gl_x11='#undef CONFIG_GL_X11'
5097 def_gl_sdl='#undef CONFIG_GL_SDL'
5098 novomodules="opengl $novomodules"
5100 echores "$_gl"
5103 echocheck "MatrixView"
5104 if test "$_gl" = no ; then
5105 matrixview=no
5107 if test "$matrixview" = yes ; then
5108 vomodules="matrixview $vomodules"
5109 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5110 else
5111 novomodules="matrixview $novomodules"
5112 def_matrixview='#undef CONFIG_MATRIXVIEW'
5114 echores "$matrixview"
5117 if os2 ; then
5118 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5119 if test "$_kva" = auto; then
5120 cat > $TMPC << EOF
5121 #include <os2.h>
5122 #include <kva.h>
5123 int main(void) { return 0; }
5125 _kva=no;
5126 cc_check -lkva && _kva=yes
5128 if test "$_kva" = yes ; then
5129 def_kva='#define CONFIG_KVA 1'
5130 libs_mplayer="$libs_mplayer -lkva"
5131 vomodules="kva $vomodules"
5132 else
5133 def_kva='#undef CONFIG_KVA'
5134 novomodules="kva $novomodules"
5136 echores "$_kva"
5137 fi #if os2
5140 if win32; then
5142 echocheck "Windows waveout"
5143 if test "$_win32waveout" = auto ; then
5144 cat > $TMPC << EOF
5145 #include <windows.h>
5146 #include <mmsystem.h>
5147 int main(void) { return 0; }
5149 _win32waveout=no
5150 cc_check -lwinmm && _win32waveout=yes
5152 if test "$_win32waveout" = yes ; then
5153 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5154 libs_mplayer="$libs_mplayer -lwinmm"
5155 aomodules="win32 $aomodules"
5156 else
5157 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5158 noaomodules="win32 $noaomodules"
5160 echores "$_win32waveout"
5162 echocheck "Direct3D"
5163 if test "$_direct3d" = auto ; then
5164 cat > $TMPC << EOF
5165 #include <windows.h>
5166 #include <d3d9.h>
5167 int main(void) { return 0; }
5169 _direct3d=no
5170 cc_check && _direct3d=yes
5172 if test "$_direct3d" = yes ; then
5173 def_direct3d='#define CONFIG_DIRECT3D 1'
5174 vomodules="direct3d $vomodules"
5175 else
5176 def_direct3d='#undef CONFIG_DIRECT3D'
5177 novomodules="direct3d $novomodules"
5179 echores "$_direct3d"
5181 echocheck "Directx"
5182 if test "$_directx" = auto ; then
5183 cat > $TMPC << EOF
5184 #include <windows.h>
5185 #include <ddraw.h>
5186 #include <dsound.h>
5187 int main(void) { return 0; }
5189 _directx=no
5190 cc_check -lgdi32 && _directx=yes
5192 if test "$_directx" = yes ; then
5193 def_directx='#define CONFIG_DIRECTX 1'
5194 libs_mplayer="$libs_mplayer -lgdi32"
5195 vomodules="directx $vomodules"
5196 aomodules="dsound $aomodules"
5197 else
5198 def_directx='#undef CONFIG_DIRECTX'
5199 novomodules="directx $novomodules"
5200 noaomodules="dsound $noaomodules"
5202 echores "$_directx"
5204 fi #if win32; then
5207 echocheck "DXR2"
5208 if test "$_dxr2" = auto; then
5209 _dxr2=no
5210 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5211 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5212 extra_cflags="$extra_cflags $_inc_tmp" && break
5213 done
5215 if test "$_dxr2" = yes; then
5216 def_dxr2='#define CONFIG_DXR2 1'
5217 aomodules="dxr2 $aomodules"
5218 vomodules="dxr2 $vomodules"
5219 else
5220 def_dxr2='#undef CONFIG_DXR2'
5221 noaomodules="dxr2 $noaomodules"
5222 novomodules="dxr2 $novomodules"
5224 echores "$_dxr2"
5226 echocheck "DXR3/H+"
5227 if test "$_dxr3" = auto ; then
5228 _dxr3=no
5229 header_check linux/em8300.h && _dxr3=yes
5231 if test "$_dxr3" = yes ; then
5232 def_dxr3='#define CONFIG_DXR3 1'
5233 vomodules="dxr3 $vomodules"
5234 else
5235 def_dxr3='#undef CONFIG_DXR3'
5236 novomodules="dxr3 $novomodules"
5238 echores "$_dxr3"
5241 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5242 if test "$_ivtv" = auto ; then
5243 cat > $TMPC << EOF
5244 #include <stdlib.h>
5245 #include <inttypes.h>
5246 #include <linux/types.h>
5247 #include <linux/videodev2.h>
5248 #include <linux/ivtv.h>
5249 #include <sys/ioctl.h>
5250 int main(void) {
5251 struct ivtv_cfg_stop_decode sd;
5252 struct ivtv_cfg_start_decode sd1;
5253 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5254 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5255 return 0; }
5257 _ivtv=no
5258 cc_check && _ivtv=yes
5260 if test "$_ivtv" = yes ; then
5261 def_ivtv='#define CONFIG_IVTV 1'
5262 vomodules="ivtv $vomodules"
5263 aomodules="ivtv $aomodules"
5264 else
5265 def_ivtv='#undef CONFIG_IVTV'
5266 novomodules="ivtv $novomodules"
5267 noaomodules="ivtv $noaomodules"
5269 echores "$_ivtv"
5272 echocheck "V4L2 MPEG Decoder"
5273 if test "$_v4l2" = auto ; then
5274 cat > $TMPC << EOF
5275 #include <stdlib.h>
5276 #include <inttypes.h>
5277 #include <linux/types.h>
5278 #include <linux/videodev2.h>
5279 #include <linux/version.h>
5280 int main(void) {
5281 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5282 #error kernel headers too old, need 2.6.22
5283 #endif
5284 struct v4l2_ext_controls ctrls;
5285 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5286 return 0;
5289 _v4l2=no
5290 cc_check && _v4l2=yes
5292 if test "$_v4l2" = yes ; then
5293 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5294 vomodules="v4l2 $vomodules"
5295 aomodules="v4l2 $aomodules"
5296 else
5297 def_v4l2='#undef CONFIG_V4L2_DECODER'
5298 novomodules="v4l2 $novomodules"
5299 noaomodules="v4l2 $noaomodules"
5301 echores "$_v4l2"
5305 #########
5306 # AUDIO #
5307 #########
5310 echocheck "OSS Audio"
5311 if test "$_ossaudio" = auto ; then
5312 cat > $TMPC << EOF
5313 #include <sys/ioctl.h>
5314 #include <$_soundcard_header>
5315 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5317 _ossaudio=no
5318 cc_check && _ossaudio=yes
5320 if test "$_ossaudio" = yes ; then
5321 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5322 aomodules="oss $aomodules"
5323 cat > $TMPC << EOF
5324 #include <sys/ioctl.h>
5325 #include <$_soundcard_header>
5326 #ifdef OPEN_SOUND_SYSTEM
5327 int main(void) { return 0; }
5328 #else
5329 #error Not the real thing
5330 #endif
5332 _real_ossaudio=no
5333 cc_check && _real_ossaudio=yes
5334 if test "$_real_ossaudio" = yes; then
5335 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5336 # Check for OSS4 headers (override default headers)
5337 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5338 if test -f /etc/oss.conf; then
5339 . /etc/oss.conf
5340 _ossinc="$OSSLIBDIR/include"
5341 if test -f "$_ossinc/sys/soundcard.h"; then
5342 extra_cflags="-I$_ossinc $extra_cflags"
5345 elif netbsd || openbsd ; then
5346 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5347 extra_ldflags="$extra_ldflags -lossaudio"
5348 else
5349 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5351 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5352 else
5353 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5354 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5355 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5356 noaomodules="oss $noaomodules"
5358 echores "$_ossaudio"
5361 echocheck "aRts"
5362 if test "$_arts" = auto ; then
5363 _arts=no
5364 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5365 header_check artsc.h $(artsc-config --libs) $(artsc-config --cflags) &&
5366 _arts=yes
5370 if test "$_arts" = yes ; then
5371 def_arts='#define CONFIG_ARTS 1'
5372 aomodules="arts $aomodules"
5373 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5374 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5375 else
5376 noaomodules="arts $noaomodules"
5378 echores "$_arts"
5381 echocheck "EsounD"
5382 if test "$_esd" = auto ; then
5383 _esd=no
5384 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5386 cat > $TMPC << EOF
5387 #include <esd.h>
5388 int main(void) { int fd = esd_open_sound("test"); return fd; }
5390 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5394 echores "$_esd"
5396 if test "$_esd" = yes ; then
5397 def_esd='#define CONFIG_ESD 1'
5398 aomodules="esd $aomodules"
5399 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5400 extra_cflags="$extra_cflags $(esd-config --cflags)"
5402 echocheck "esd_get_latency()"
5403 cat > $TMPC << EOF
5404 #include <esd.h>
5405 int main(void) { return esd_get_latency(0); }
5407 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5408 echores "$_esd_latency"
5409 else
5410 def_esd='#undef CONFIG_ESD'
5411 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5412 noaomodules="esd $noaomodules"
5416 echocheck "NAS"
5417 if test "$_nas" = auto ; then
5418 _nas=no
5419 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5421 if test "$_nas" = yes ; then
5422 def_nas='#define CONFIG_NAS 1'
5423 libs_mplayer="$libs_mplayer -laudio -lXt"
5424 aomodules="nas $aomodules"
5425 else
5426 noaomodules="nas $noaomodules"
5427 def_nas='#undef CONFIG_NAS'
5429 echores "$_nas"
5432 echocheck "pulse"
5433 if test "$_pulse" = auto ; then
5434 _pulse=no
5435 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5436 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5437 _pulse=yes
5440 echores "$_pulse"
5442 if test "$_pulse" = yes ; then
5443 def_pulse='#define CONFIG_PULSE 1'
5444 aomodules="pulse $aomodules"
5445 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5446 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5447 else
5448 def_pulse='#undef CONFIG_PULSE'
5449 noaomodules="pulse $noaomodules"
5453 echocheck "JACK"
5454 if test "$_jack" = auto ; then
5455 _jack=yes
5457 cat > $TMPC << EOF
5458 #include <jack/jack.h>
5459 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5461 if cc_check -ljack ; then
5462 libs_mplayer="$libs_mplayer -ljack"
5463 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5464 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5465 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5466 else
5467 _jack=no
5471 if test "$_jack" = yes ; then
5472 def_jack='#define CONFIG_JACK 1'
5473 aomodules="jack $aomodules"
5474 else
5475 noaomodules="jack $noaomodules"
5477 echores "$_jack"
5479 echocheck "OpenAL"
5480 if test "$_openal" = auto ; then
5481 _openal=no
5482 cat > $TMPC << EOF
5483 #ifdef OPENAL_AL_H
5484 #include <OpenAL/al.h>
5485 #else
5486 #include <AL/al.h>
5487 #endif
5488 int main(void) {
5489 alSourceQueueBuffers(0, 0, 0);
5490 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5491 return 0;
5494 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5495 cc_check $I && _openal=yes && break
5496 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5497 done
5498 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5500 if test "$_openal" = yes ; then
5501 def_openal='#define CONFIG_OPENAL 1'
5502 aomodules="openal $aomodules"
5503 else
5504 noaomodules="openal $noaomodules"
5506 echores "$_openal"
5508 echocheck "ALSA audio"
5509 if test "$_alloca" != yes ; then
5510 _alsa=no
5511 res_comment="alloca missing"
5513 if test "$_alsa" != no ; then
5514 _alsa=no
5515 cat > $TMPC << EOF
5516 #include <sys/asoundlib.h>
5517 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5518 #error "alsa version != 0.5.x"
5519 #endif
5520 int main(void) { return 0; }
5522 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5524 cat > $TMPC << EOF
5525 #include <sys/asoundlib.h>
5526 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5527 #error "alsa version != 0.9.x"
5528 #endif
5529 int main(void) { return 0; }
5531 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5532 cat > $TMPC << EOF
5533 #include <alsa/asoundlib.h>
5534 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5535 #error "alsa version != 0.9.x"
5536 #endif
5537 int main(void) { return 0; }
5539 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5541 cat > $TMPC << EOF
5542 #include <sys/asoundlib.h>
5543 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5544 #error "alsa version != 1.0.x"
5545 #endif
5546 int main(void) { return 0; }
5548 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5549 cat > $TMPC << EOF
5550 #include <alsa/asoundlib.h>
5551 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5552 #error "alsa version != 1.0.x"
5553 #endif
5554 int main(void) { return 0; }
5556 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5558 def_alsa='#undef CONFIG_ALSA'
5559 def_alsa5='#undef CONFIG_ALSA5'
5560 def_alsa9='#undef CONFIG_ALSA9'
5561 def_alsa1x='#undef CONFIG_ALSA1X'
5562 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5563 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5564 if test "$_alsaver" ; then
5565 _alsa=yes
5566 if test "$_alsaver" = '0.5.x' ; then
5567 _alsa5=yes
5568 aomodules="alsa5 $aomodules"
5569 def_alsa5='#define CONFIG_ALSA5 1'
5570 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5571 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5572 elif test "$_alsaver" = '0.9.x-sys' ; then
5573 _alsa9=yes
5574 aomodules="alsa $aomodules"
5575 def_alsa='#define CONFIG_ALSA 1'
5576 def_alsa9='#define CONFIG_ALSA9 1'
5577 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5578 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5579 elif test "$_alsaver" = '0.9.x-alsa' ; then
5580 _alsa9=yes
5581 aomodules="alsa $aomodules"
5582 def_alsa='#define CONFIG_ALSA 1'
5583 def_alsa9='#define CONFIG_ALSA9 1'
5584 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5585 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5586 elif test "$_alsaver" = '1.0.x-sys' ; then
5587 _alsa1x=yes
5588 aomodules="alsa $aomodules"
5589 def_alsa='#define CONFIG_ALSA 1'
5590 def_alsa1x="#define CONFIG_ALSA1X 1"
5591 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5592 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5593 elif test "$_alsaver" = '1.0.x-alsa' ; then
5594 _alsa1x=yes
5595 aomodules="alsa $aomodules"
5596 def_alsa='#define CONFIG_ALSA 1'
5597 def_alsa1x="#define CONFIG_ALSA1X 1"
5598 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5599 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5600 else
5601 _alsa=no
5602 res_comment="unknown version"
5604 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5605 else
5606 noaomodules="alsa $noaomodules"
5608 echores "$_alsa"
5611 echocheck "Sun audio"
5612 if test "$_sunaudio" = auto ; then
5613 cat > $TMPC << EOF
5614 #include <sys/types.h>
5615 #include <sys/audioio.h>
5616 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5618 _sunaudio=no
5619 cc_check && _sunaudio=yes
5621 if test "$_sunaudio" = yes ; then
5622 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5623 aomodules="sun $aomodules"
5624 else
5625 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5626 noaomodules="sun $noaomodules"
5628 echores "$_sunaudio"
5631 def_mlib='#define CONFIG_MLIB 0'
5632 if sunos; then
5633 echocheck "Sun mediaLib"
5634 if test "$_mlib" = auto ; then
5635 _mlib=no
5636 cat > $TMPC << EOF
5637 #include <mlib.h>
5638 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5640 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5642 echores "$_mlib"
5643 fi #if sunos
5646 if darwin; then
5647 echocheck "CoreAudio"
5648 if test "$_coreaudio" = auto ; then
5649 cat > $TMPC <<EOF
5650 #include <CoreAudio/CoreAudio.h>
5651 #include <AudioToolbox/AudioToolbox.h>
5652 #include <AudioUnit/AudioUnit.h>
5653 int main(void) { return 0; }
5655 _coreaudio=no
5656 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5658 if test "$_coreaudio" = yes ; then
5659 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5660 def_coreaudio='#define CONFIG_COREAUDIO 1'
5661 aomodules="coreaudio $aomodules"
5662 else
5663 def_coreaudio='#undef CONFIG_COREAUDIO'
5664 noaomodules="coreaudio $noaomodules"
5666 echores $_coreaudio
5667 fi #if darwin
5670 if irix; then
5671 echocheck "SGI audio"
5672 if test "$_sgiaudio" = auto ; then
5673 _sgiaudio=no
5674 header_check dmedia/audio.h && _sgiaudio=yes
5676 if test "$_sgiaudio" = "yes" ; then
5677 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5678 libs_mplayer="$libs_mplayer -laudio"
5679 aomodules="sgi $aomodules"
5680 else
5681 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5682 noaomodules="sgi $noaomodules"
5684 echores "$_sgiaudio"
5685 fi #if irix
5688 if os2 ; then
5689 echocheck "KAI (UNIAUD/DART)"
5690 if test "$_kai" = auto; then
5691 cat > $TMPC << EOF
5692 #include <os2.h>
5693 #include <kai.h>
5694 int main(void) { return 0; }
5696 _kai=no;
5697 cc_check -lkai && _kai=yes
5699 if test "$_kai" = yes ; then
5700 def_kai='#define CONFIG_KAI 1'
5701 libs_mplayer="$libs_mplayer -lkai"
5702 aomodules="kai $aomodules"
5703 else
5704 def_kai='#undef CONFIG_KAI'
5705 noaomodules="kai $noaomodules"
5707 echores "$_kai"
5709 echocheck "DART"
5710 if test "$_dart" = auto; then
5711 cat > $TMPC << EOF
5712 #include <os2.h>
5713 #include <dart.h>
5714 int main(void) { return 0; }
5716 _dart=no;
5717 cc_check -ldart && _dart=yes
5719 if test "$_dart" = yes ; then
5720 def_dart='#define CONFIG_DART 1'
5721 libs_mplayer="$libs_mplayer -ldart"
5722 aomodules="dart $aomodules"
5723 else
5724 def_dart='#undef CONFIG_DART'
5725 noaomodules="dart $noaomodules"
5727 echores "$_dart"
5728 fi #if os2
5731 # set default CD/DVD devices
5732 if win32 || os2 ; then
5733 default_cdrom_device="D:"
5734 elif darwin ; then
5735 default_cdrom_device="/dev/disk1"
5736 elif dragonfly ; then
5737 default_cdrom_device="/dev/cd0"
5738 elif freebsd ; then
5739 default_cdrom_device="/dev/acd0"
5740 elif openbsd ; then
5741 default_cdrom_device="/dev/rcd0a"
5742 elif sunos ; then
5743 default_cdrom_device="/vol/dev/aliases/cdrom0"
5744 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5745 # file system and the volfs service.
5746 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5747 elif amigaos ; then
5748 default_cdrom_device="a1ide.device:2"
5749 else
5750 default_cdrom_device="/dev/cdrom"
5753 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5754 default_dvd_device=$default_cdrom_device
5755 elif darwin ; then
5756 default_dvd_device="/dev/rdiskN"
5757 else
5758 default_dvd_device="/dev/dvd"
5762 echocheck "VCD support"
5763 if test "$_vcd" = auto; then
5764 _vcd=no
5765 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5766 _vcd=yes
5767 elif mingw32; then
5768 header_check ddk/ntddcdrm.h && _vcd=yes
5771 if test "$_vcd" = yes; then
5772 inputmodules="vcd $inputmodules"
5773 def_vcd='#define CONFIG_VCD 1'
5774 else
5775 def_vcd='#undef CONFIG_VCD'
5776 noinputmodules="vcd $noinputmodules"
5777 res_comment="not supported on this OS"
5779 echores "$_vcd"
5783 echocheck "dvdread"
5784 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5785 _dvdread_internal=no
5787 if test "$_dvdread_internal" = auto ; then
5788 _dvdread_internal=no
5789 _dvdread=no
5790 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5791 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5792 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5793 || darwin || win32 || os2; then
5794 _dvdread_internal=yes
5795 _dvdread=yes
5796 extra_cflags="-Ilibdvdread4 $extra_cflags"
5798 elif test "$_dvdread" = auto ; then
5799 _dvdread=no
5800 if test "$_dl" = yes; then
5801 cat > $TMPC << EOF
5802 #include <inttypes.h>
5803 #include <dvdread/dvd_reader.h>
5804 #include <dvdread/ifo_types.h>
5805 #include <dvdread/ifo_read.h>
5806 #include <dvdread/nav_read.h>
5807 int main(void) { return 0; }
5809 _dvdreadcflags=$($_dvdreadconfig --cflags)
5810 _dvdreadlibs=$($_dvdreadconfig --libs)
5811 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5812 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5813 _dvdread=yes
5814 extra_cflags="$extra_cflags $_dvdreadcflags"
5815 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5816 res_comment="external"
5821 if test "$_dvdread_internal" = yes; then
5822 def_dvdread='#define CONFIG_DVDREAD 1'
5823 inputmodules="dvdread(internal) $inputmodules"
5824 _largefiles=yes
5825 res_comment="internal"
5826 elif test "$_dvdread" = yes; then
5827 def_dvdread='#define CONFIG_DVDREAD 1'
5828 _largefiles=yes
5829 extra_ldflags="$extra_ldflags -ldvdread"
5830 inputmodules="dvdread(external) $inputmodules"
5831 res_comment="external"
5832 else
5833 def_dvdread='#undef CONFIG_DVDREAD'
5834 noinputmodules="dvdread $noinputmodules"
5836 echores "$_dvdread"
5839 echocheck "internal libdvdcss"
5840 if test "$_libdvdcss_internal" = auto ; then
5841 _libdvdcss_internal=no
5842 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5843 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5845 if test "$_libdvdcss_internal" = yes ; then
5846 if linux || netbsd || openbsd || bsdos ; then
5847 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5848 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5849 elif freebsd || dragonfly ; then
5850 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5851 elif darwin ; then
5852 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5853 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5854 elif cygwin ; then
5855 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5856 elif beos ; then
5857 cflags_libdvdcss="-DSYS_BEOS"
5858 elif os2 ; then
5859 cflags_libdvdcss="-DSYS_OS2"
5861 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5862 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5863 inputmodules="libdvdcss(internal) $inputmodules"
5864 _largefiles=yes
5865 else
5866 noinputmodules="libdvdcss(internal) $noinputmodules"
5868 echores "$_libdvdcss_internal"
5871 echocheck "cdparanoia"
5872 if test "$_cdparanoia" = auto ; then
5873 cat > $TMPC <<EOF
5874 #include <cdda_interface.h>
5875 #include <cdda_paranoia.h>
5876 // This need a better test. How ?
5877 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5879 _cdparanoia=no
5880 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5881 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5882 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5883 done
5885 if test "$_cdparanoia" = yes ; then
5886 _cdda='yes'
5887 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5888 openbsd && extra_ldflags="$extra_ldflags -lutil"
5890 echores "$_cdparanoia"
5893 echocheck "libcdio"
5894 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5895 cat > $TMPC << EOF
5896 #include <stdio.h>
5897 #include <cdio/version.h>
5898 #include <cdio/cdda.h>
5899 #include <cdio/paranoia.h>
5900 int main(void) {
5901 void *test = cdda_verbose_set;
5902 printf("%s\n", CDIO_VERSION);
5903 return test == (void *)1;
5906 _libcdio=no
5907 for _ld_tmp in "" "-lwinmm" ; do
5908 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5909 cc_check $_ld_tmp $_ld_lm \
5910 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5911 done
5912 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5913 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5914 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5915 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5916 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5919 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5920 _cdda='yes'
5921 def_libcdio='#define CONFIG_LIBCDIO 1'
5922 def_havelibcdio='yes'
5923 else
5924 if test "$_cdparanoia" = yes ; then
5925 res_comment="using cdparanoia"
5927 def_libcdio='#undef CONFIG_LIBCDIO'
5928 def_havelibcdio='no'
5930 echores "$_libcdio"
5932 if test "$_cdda" = yes ; then
5933 test $_cddb = auto && test $_network = yes && _cddb=yes
5934 def_cdparanoia='#define CONFIG_CDDA 1'
5935 inputmodules="cdda $inputmodules"
5936 else
5937 def_cdparanoia='#undef CONFIG_CDDA'
5938 noinputmodules="cdda $noinputmodules"
5941 if test "$_cddb" = yes ; then
5942 def_cddb='#define CONFIG_CDDB 1'
5943 inputmodules="cddb $inputmodules"
5944 else
5945 _cddb=no
5946 def_cddb='#undef CONFIG_CDDB'
5947 noinputmodules="cddb $noinputmodules"
5950 echocheck "bitmap font support"
5951 if test "$_bitmap_font" = yes ; then
5952 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5953 else
5954 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5956 echores "$_bitmap_font"
5959 echocheck "freetype >= 2.0.9"
5961 # freetype depends on iconv
5962 if test "$_iconv" = no ; then
5963 _freetype=no
5964 res_comment="iconv support needed"
5967 if test "$_freetype" = auto ; then
5968 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5969 cat > $TMPC << EOF
5970 #include <stdio.h>
5971 #include <ft2build.h>
5972 #include FT_FREETYPE_H
5973 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5974 #error "Need FreeType 2.0.9 or newer"
5975 #endif
5976 int main(void) {
5977 FT_Library library;
5978 FT_Int major=-1,minor=-1,patch=-1;
5979 int err=FT_Init_FreeType(&library);
5980 return 0;
5983 _freetype=no
5984 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
5985 else
5986 _freetype=no
5989 if test "$_freetype" = yes ; then
5990 def_freetype='#define CONFIG_FREETYPE 1'
5991 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
5992 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
5993 else
5994 def_freetype='#undef CONFIG_FREETYPE'
5996 echores "$_freetype"
5998 if test "$_freetype" = no ; then
5999 _fontconfig=no
6000 res_comment="FreeType support needed"
6002 echocheck "fontconfig"
6003 if test "$_fontconfig" = auto ; then
6004 cat > $TMPC << EOF
6005 #include <stdio.h>
6006 #include <stdlib.h>
6007 #include <fontconfig/fontconfig.h>
6008 #if FC_VERSION < 20402
6009 #error At least version 2.4.2 of fontconfig required
6010 #endif
6011 int main(void) {
6012 int err = FcInit();
6013 if (err == FcFalse) {
6014 printf("Couldn't initialize fontconfig lib\n");
6015 exit(err);
6017 return 0;
6020 _fontconfig=no
6021 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6022 _ld_tmp="-lfontconfig $_ld_tmp"
6023 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6024 done
6025 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6026 _inc_tmp=$($_pkg_config --cflags fontconfig)
6027 _ld_tmp=$($_pkg_config --libs fontconfig)
6028 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6029 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6032 if test "$_fontconfig" = yes ; then
6033 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6034 else
6035 def_fontconfig='#undef CONFIG_FONTCONFIG'
6037 echores "$_fontconfig"
6040 echocheck "SSA/ASS support"
6041 if test "$_ass" = auto -o "$_ass" = yes ; then
6042 if $_pkg_config libass; then
6043 _ass=yes
6044 def_ass='#define CONFIG_ASS 1'
6045 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6046 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6047 else
6048 _ass=no
6049 def_ass='#undef CONFIG_ASS'
6051 else
6052 def_ass='#undef CONFIG_ASS'
6054 echores "$_ass"
6057 echocheck "fribidi with charsets"
6058 _inc_tmp=""
6059 _ld_tmp=""
6060 if test "$_fribidi" = auto ; then
6061 cat > $TMPC << EOF
6062 #include <stdlib.h>
6063 /* workaround for fribidi 0.10.4 and below */
6064 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6065 #include <fribidi/fribidi.h>
6066 int main(void) {
6067 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6068 exit(1);
6069 return 0;
6072 _fribidi=no
6073 _inc_tmp=""
6074 _ld_tmp="-lfribidi"
6075 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6076 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6077 test "$_fribidi" = no ; then
6078 _inc_tmp="$($_pkg_config --cflags)"
6079 _ld_tmp="$($_pkg_config --libs)"
6080 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6083 if test "$_fribidi" = yes ; then
6084 def_fribidi='#define CONFIG_FRIBIDI 1'
6085 extra_cflags="$extra_cflags $_inc_tmp"
6086 extra_ldflags="$extra_ldflags $_ld_tmp"
6087 else
6088 def_fribidi='#undef CONFIG_FRIBIDI'
6090 echores "$_fribidi"
6093 echocheck "ENCA"
6094 if test "$_enca" = auto ; then
6095 cat > $TMPC << EOF
6096 #include <sys/types.h>
6097 #include <enca.h>
6098 int main(void) {
6099 const char **langs;
6100 size_t langcnt;
6101 langs = enca_get_languages(&langcnt);
6102 return 0;
6105 _enca=no
6106 cc_check -lenca $_ld_lm && _enca=yes
6108 if test "$_enca" = yes ; then
6109 def_enca='#define CONFIG_ENCA 1'
6110 extra_ldflags="$extra_ldflags -lenca"
6111 else
6112 def_enca='#undef CONFIG_ENCA'
6114 echores "$_enca"
6117 echocheck "zlib"
6118 cat > $TMPC << EOF
6119 #include <zlib.h>
6120 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6122 _zlib=no
6123 cc_check -lz && _zlib=yes
6124 if test "$_zlib" = yes ; then
6125 def_zlib='#define CONFIG_ZLIB 1'
6126 extra_ldflags="$extra_ldflags -lz"
6127 else
6128 def_zlib='#define CONFIG_ZLIB 0'
6130 echores "$_zlib"
6133 echocheck "bzlib"
6134 bzlib=no
6135 def_bzlib='#define CONFIG_BZLIB 0'
6136 cat > $TMPC << EOF
6137 #include <bzlib.h>
6138 int main(void) { BZ2_bzlibVersion(); return 0; }
6140 cc_check -lbz2 && bzlib=yes
6141 if test "$bzlib" = yes ; then
6142 def_bzlib='#define CONFIG_BZLIB 1'
6143 extra_ldflags="$extra_ldflags -lbz2"
6145 echores "$bzlib"
6148 echocheck "RTC"
6149 if test "$_rtc" = auto ; then
6150 cat > $TMPC << EOF
6151 #include <sys/ioctl.h>
6152 #ifdef __linux__
6153 #include <linux/rtc.h>
6154 #else
6155 #include <rtc.h>
6156 #define RTC_PIE_ON RTCIO_PIE_ON
6157 #endif
6158 int main(void) { return RTC_PIE_ON; }
6160 _rtc=no
6161 cc_check && _rtc=yes
6162 ppc && _rtc=no
6164 if test "$_rtc" = yes ; then
6165 def_rtc='#define HAVE_RTC 1'
6166 else
6167 def_rtc='#undef HAVE_RTC'
6169 echores "$_rtc"
6172 echocheck "liblzo2 support"
6173 if test "$_liblzo" = auto ; then
6174 _liblzo=no
6175 cat > $TMPC << EOF
6176 #include <lzo/lzo1x.h>
6177 int main(void) { lzo_init(); return 0; }
6179 cc_check -llzo2 && _liblzo=yes
6181 if test "$_liblzo" = yes ; then
6182 def_liblzo='#define CONFIG_LIBLZO 1'
6183 extra_ldflags="$extra_ldflags -llzo2"
6184 codecmodules="liblzo $codecmodules"
6185 else
6186 def_liblzo='#undef CONFIG_LIBLZO'
6187 nocodecmodules="liblzo $nocodecmodules"
6189 echores "$_liblzo"
6192 echocheck "mad support"
6193 if test "$_mad" = auto ; then
6194 _mad=no
6195 header_check mad.h -lmad && _mad=yes
6197 if test "$_mad" = yes ; then
6198 def_mad='#define CONFIG_LIBMAD 1'
6199 extra_ldflags="$extra_ldflags -lmad"
6200 codecmodules="libmad $codecmodules"
6201 else
6202 def_mad='#undef CONFIG_LIBMAD'
6203 nocodecmodules="libmad $nocodecmodules"
6205 echores "$_mad"
6207 echocheck "Twolame"
6208 if test "$_twolame" = auto ; then
6209 cat > $TMPC <<EOF
6210 #include <twolame.h>
6211 int main(void) { twolame_init(); return 0; }
6213 _twolame=no
6214 cc_check -ltwolame $_ld_lm && _twolame=yes
6216 if test "$_twolame" = yes ; then
6217 def_twolame='#define CONFIG_TWOLAME 1'
6218 libs_mencoder="$libs_mencoder -ltwolame"
6219 codecmodules="twolame $codecmodules"
6220 else
6221 def_twolame='#undef CONFIG_TWOLAME'
6222 nocodecmodules="twolame $nocodecmodules"
6224 echores "$_twolame"
6226 echocheck "Toolame"
6227 if test "$_toolame" = auto ; then
6228 _toolame=no
6229 if test "$_twolame" = yes ; then
6230 res_comment="disabled by twolame"
6231 else
6232 cat > $TMPC <<EOF
6233 #include <toolame.h>
6234 int main(void) { toolame_init(); return 0; }
6236 cc_check -ltoolame $_ld_lm && _toolame=yes
6239 if test "$_toolame" = yes ; then
6240 def_toolame='#define CONFIG_TOOLAME 1'
6241 libs_mencoder="$libs_mencoder -ltoolame"
6242 codecmodules="toolame $codecmodules"
6243 else
6244 def_toolame='#undef CONFIG_TOOLAME'
6245 nocodecmodules="toolame $nocodecmodules"
6247 if test "$_toolamedir" ; then
6248 res_comment="using $_toolamedir"
6250 echores "$_toolame"
6252 echocheck "OggVorbis support"
6253 if test "$_tremor_internal" = yes; then
6254 _libvorbis=no
6255 elif test "$_tremor" = auto; then
6256 _tremor=no
6257 cat > $TMPC << EOF
6258 #include <tremor/ivorbiscodec.h>
6259 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6261 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6263 if test "$_libvorbis" = auto; then
6264 _libvorbis=no
6265 cat > $TMPC << EOF
6266 #include <vorbis/codec.h>
6267 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6269 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6271 if test "$_tremor_internal" = yes ; then
6272 _vorbis=yes
6273 def_vorbis='#define CONFIG_OGGVORBIS 1'
6274 def_tremor='#define CONFIG_TREMOR 1'
6275 codecmodules="tremor(internal) $codecmodules"
6276 res_comment="internal Tremor"
6277 if test "$_tremor_low" = yes ; then
6278 cflags_tremor_low="-D_LOW_ACCURACY_"
6279 res_comment="internal low accuracy Tremor"
6281 elif test "$_tremor" = yes ; then
6282 _vorbis=yes
6283 def_vorbis='#define CONFIG_OGGVORBIS 1'
6284 def_tremor='#define CONFIG_TREMOR 1'
6285 codecmodules="tremor(external) $codecmodules"
6286 res_comment="external Tremor"
6287 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6288 elif test "$_libvorbis" = yes ; then
6289 _vorbis=yes
6290 def_vorbis='#define CONFIG_OGGVORBIS 1'
6291 codecmodules="libvorbis $codecmodules"
6292 res_comment="libvorbis"
6293 extra_ldflags="$extra_ldflags -lvorbis -logg"
6294 else
6295 _vorbis=no
6296 nocodecmodules="libvorbis $nocodecmodules"
6298 echores "$_vorbis"
6300 echocheck "libspeex (version >= 1.1 required)"
6301 if test "$_speex" = auto ; then
6302 _speex=no
6303 cat > $TMPC << EOF
6304 #include <speex/speex.h>
6305 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6307 cc_check -lspeex $_ld_lm && _speex=yes
6309 if test "$_speex" = yes ; then
6310 def_speex='#define CONFIG_SPEEX 1'
6311 extra_ldflags="$extra_ldflags -lspeex"
6312 codecmodules="speex $codecmodules"
6313 else
6314 def_speex='#undef CONFIG_SPEEX'
6315 nocodecmodules="speex $nocodecmodules"
6317 echores "$_speex"
6319 echocheck "OggTheora support"
6320 if test "$_theora" = auto ; then
6321 _theora=no
6322 cat > $TMPC << EOF
6323 #include <theora/theora.h>
6324 #include <string.h>
6325 int main(void) {
6326 /* Theora is in flux, make sure that all interface routines and datatypes
6327 * exist and work the way we expect it, so we don't break MPlayer. */
6328 ogg_packet op;
6329 theora_comment tc;
6330 theora_info inf;
6331 theora_state st;
6332 yuv_buffer yuv;
6333 int r;
6334 double t;
6336 theora_info_init(&inf);
6337 theora_comment_init(&tc);
6339 return 0;
6341 /* we don't want to execute this kind of nonsense; just for making sure
6342 * that compilation works... */
6343 memset(&op, 0, sizeof(op));
6344 r = theora_decode_header(&inf, &tc, &op);
6345 r = theora_decode_init(&st, &inf);
6346 t = theora_granule_time(&st, op.granulepos);
6347 r = theora_decode_packetin(&st, &op);
6348 r = theora_decode_YUVout(&st, &yuv);
6349 theora_clear(&st);
6351 return 0;
6354 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6355 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6356 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6357 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6358 if test _theora = no; then
6359 _ld_theora="-ltheora -logg"
6360 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6362 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6363 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6364 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6365 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6366 extra_ldflags="$extra_ldflags $_ld_theora" &&
6367 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6368 if test _theora = no; then
6369 _ld_theora="-ltheora -logg"
6370 cc_check tremor/bitwise.c $_ld_theora &&
6371 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6375 if test "$_theora" = yes ; then
6376 def_theora='#define CONFIG_OGGTHEORA 1'
6377 codecmodules="libtheora $codecmodules"
6378 # when --enable-theora is forced, we'd better provide a probably sane
6379 # $_ld_theora than nothing
6380 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6381 else
6382 def_theora='#undef CONFIG_OGGTHEORA'
6383 nocodecmodules="libtheora $nocodecmodules"
6385 echores "$_theora"
6387 echocheck "mp3lib support"
6388 if test "$_mp3lib" = auto ; then
6389 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6391 if test "$_mp3lib" = yes ; then
6392 def_mp3lib='#define CONFIG_MP3LIB 1'
6393 codecmodules="mp3lib(internal) $codecmodules"
6394 else
6395 def_mp3lib='#undef CONFIG_MP3LIB'
6396 nocodecmodules="mp3lib(internal) $nocodecmodules"
6398 echores "$_mp3lib"
6400 # Any version of libmpg123 shall be fine.
6401 echocheck "mpg123 support"
6402 def_mpg123='#undef CONFIG_MPG123'
6403 if test "$_mpg123" = auto; then
6404 _mpg123=no
6405 cat > $TMPC <<EOF
6406 #include <mpg123.h>
6407 int main(void){ mpg123_init(); return 0; }
6409 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6411 if test "$_mpg123" = yes ; then
6412 def_mpg123='#define CONFIG_MPG123 1'
6413 codecmodules="mpg123 $codecmodules"
6414 else
6415 nocodecmodules="mpg123 $nocodecmodules"
6417 echores "$_mpg123"
6419 echocheck "liba52 support"
6420 def_liba52='#undef CONFIG_LIBA52'
6421 if test "$_liba52" = auto ; then
6422 _liba52=no
6423 cat > $TMPC << EOF
6424 #include <inttypes.h>
6425 #include <a52dec/a52.h>
6426 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6428 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6430 if test "$_liba52" = yes ; then
6431 def_liba52='#define CONFIG_LIBA52 1'
6432 codecmodules="liba52 $codecmodules"
6433 else
6434 nocodecmodules="liba52 $nocodecmodules"
6436 echores "$_liba52"
6438 echocheck "internal libmpeg2 support"
6439 if test "$_libmpeg2" = auto ; then
6440 _libmpeg2=yes
6441 if alpha && test cc_vendor=gnu; then
6442 case $cc_version in
6443 2*|3.0*|3.1*) # cannot compile MVI instructions
6444 _libmpeg2=no
6445 res_comment="broken gcc"
6447 esac
6450 if test "$_libmpeg2" = yes ; then
6451 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6452 codecmodules="libmpeg2(internal) $codecmodules"
6453 else
6454 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6455 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6457 echores "$_libmpeg2"
6459 echocheck "libdca support"
6460 if test "$_libdca" = auto ; then
6461 _libdca=no
6462 cat > $TMPC << EOF
6463 #include <inttypes.h>
6464 #include <dts.h>
6465 int main(void) { dts_init(0); return 0; }
6467 for _ld_dca in -ldca -ldts ; do
6468 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6469 && _libdca=yes && break
6470 done
6472 if test "$_libdca" = yes ; then
6473 def_libdca='#define CONFIG_LIBDCA 1'
6474 codecmodules="libdca $codecmodules"
6475 else
6476 def_libdca='#undef CONFIG_LIBDCA'
6477 nocodecmodules="libdca $nocodecmodules"
6479 echores "$_libdca"
6481 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6482 if test "$_musepack" = auto ; then
6483 _musepack=no
6484 cat > $TMPC << EOF
6485 #include <stddef.h>
6486 #include <mpcdec/mpcdec.h>
6487 int main(void) {
6488 mpc_streaminfo info;
6489 mpc_decoder decoder;
6490 mpc_decoder_set_streaminfo(&decoder, &info);
6491 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6492 return 0;
6495 cc_check -lmpcdec $_ld_lm && _musepack=yes
6497 if test "$_musepack" = yes ; then
6498 def_musepack='#define CONFIG_MUSEPACK 1'
6499 extra_ldflags="$extra_ldflags -lmpcdec"
6500 codecmodules="musepack $codecmodules"
6501 else
6502 def_musepack='#undef CONFIG_MUSEPACK'
6503 nocodecmodules="musepack $nocodecmodules"
6505 echores "$_musepack"
6508 echocheck "FAAC support"
6509 if test "$_faac" = auto ; then
6510 cat > $TMPC <<EOF
6511 #include <inttypes.h>
6512 #include <faac.h>
6513 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6515 _faac=no
6516 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6517 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6518 done
6520 if test "$_faac" = yes ; then
6521 def_faac="#define CONFIG_FAAC 1"
6522 codecmodules="faac $codecmodules"
6523 else
6524 def_faac="#undef CONFIG_FAAC"
6525 nocodecmodules="faac $nocodecmodules"
6527 echores "$_faac"
6530 echocheck "FAAD2 support"
6531 if test "$_faad_internal" = auto ; then
6532 if x86_32 && test cc_vendor=gnu; then
6533 case $cc_version in
6534 3.1*|3.2) # ICE/insn with these versions
6535 _faad_internal=no
6536 res_comment="broken gcc"
6539 _faad=yes
6540 _faad_internal=yes
6542 esac
6543 else
6544 _faad=yes
6545 _faad_internal=yes
6548 if test "$_faad" = auto ; then
6549 cat > $TMPC << EOF
6550 #include <faad.h>
6551 #ifndef FAAD_MIN_STREAMSIZE
6552 #error Too old version
6553 #endif
6554 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6555 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6557 cc_check -lfaad $_ld_lm && _faad=yes
6560 def_faad='#undef CONFIG_FAAD'
6561 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6562 if test "$_faad_internal" = yes ; then
6563 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6564 res_comment="internal floating-point"
6565 if test "$_faad_fixed" = yes ; then
6566 # The FIXED_POINT implementation of FAAD2 improves performance
6567 # on some platforms, especially for SBR files.
6568 cflags_faad_fixed="-DFIXED_POINT"
6569 res_comment="internal fixed-point"
6571 elif test "$_faad" = yes ; then
6572 extra_ldflags="$extra_ldflags -lfaad"
6575 if test "$_faad" = yes ; then
6576 def_faad='#define CONFIG_FAAD 1'
6577 if test "$_faad_internal" = yes ; then
6578 codecmodules="faad2(internal) $codecmodules"
6579 else
6580 codecmodules="faad2 $codecmodules"
6582 else
6583 _faad=no
6584 nocodecmodules="faad2 $nocodecmodules"
6586 echores "$_faad"
6589 echocheck "LADSPA plugin support"
6590 if test "$_ladspa" = auto ; then
6591 cat > $TMPC <<EOF
6592 #include <ladspa.h>
6593 int main(void) {
6594 const LADSPA_Descriptor *ld = NULL;
6595 return 0;
6598 _ladspa=no
6599 cc_check && _ladspa=yes
6601 if test "$_ladspa" = yes; then
6602 def_ladspa="#define CONFIG_LADSPA 1"
6603 else
6604 def_ladspa="#undef CONFIG_LADSPA"
6606 echores "$_ladspa"
6609 echocheck "libbs2b audio filter support"
6610 if test "$_libbs2b" = auto ; then
6611 cat > $TMPC <<EOF
6612 #include <bs2b.h>
6613 #if BS2B_VERSION_MAJOR < 3
6614 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6615 #endif
6616 int main(void) {
6617 t_bs2bdp filter;
6618 filter=bs2b_open();
6619 bs2b_close(filter);
6620 return 0;
6623 _libbs2b=no
6624 if $_pkg_config --exists libbs2b ; then
6625 _inc_tmp=$($_pkg_config --cflags libbs2b)
6626 _ld_tmp=$($_pkg_config --libs libbs2b)
6627 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6628 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6629 else
6630 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6631 -I/usr/local/include/bs2b ; do
6632 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6633 extra_ldflags="$extra_ldflags -lbs2b"
6634 extra_cflags="$extra_cflags $_inc_tmp"
6635 _libbs2b=yes
6636 break
6638 done
6641 def_libbs2b="#undef CONFIG_LIBBS2B"
6642 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6643 echores "$_libbs2b"
6646 if test -z "$_codecsdir" ; then
6647 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6648 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6649 if test -d "$dir" ; then
6650 _codecsdir="$dir"
6651 break;
6653 done
6655 # Fall back on default directory.
6656 if test -z "$_codecsdir" ; then
6657 _codecsdir="$_libdir/codecs"
6658 mingw32 || os2 && _codecsdir="codecs"
6662 echocheck "Win32 codecs"
6663 if test "$_win32dll" = auto ; then
6664 _win32dll=no
6665 if x86_32 && ! qnx; then
6666 _win32dll=yes
6669 if test "$_win32dll" = yes ; then
6670 def_win32dll='#define CONFIG_WIN32DLL 1'
6671 if ! win32 ; then
6672 def_win32_loader='#define WIN32_LOADER 1'
6673 _win32_emulation=yes
6674 else
6675 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6676 res_comment="using native windows"
6678 codecmodules="win32 $codecmodules"
6679 else
6680 def_win32dll='#undef CONFIG_WIN32DLL'
6681 def_win32_loader='#undef WIN32_LOADER'
6682 nocodecmodules="win32 $nocodecmodules"
6684 echores "$_win32dll"
6687 echocheck "XAnim codecs"
6688 if test "$_xanim" = auto ; then
6689 _xanim=no
6690 res_comment="dynamic loader support needed"
6691 if test "$_dl" = yes ; then
6692 _xanim=yes
6695 if test "$_xanim" = yes ; then
6696 def_xanim='#define CONFIG_XANIM 1'
6697 codecmodules="xanim $codecmodules"
6698 else
6699 def_xanim='#undef CONFIG_XANIM'
6700 nocodecmodules="xanim $nocodecmodules"
6702 echores "$_xanim"
6705 echocheck "RealPlayer codecs"
6706 if test "$_real" = auto ; then
6707 _real=no
6708 res_comment="dynamic loader support needed"
6709 if test "$_dl" = yes || test "$_win32dll" = yes &&
6710 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6711 _real=yes
6714 if test "$_real" = yes ; then
6715 def_real='#define CONFIG_REALCODECS 1'
6716 codecmodules="real $codecmodules"
6717 else
6718 def_real='#undef CONFIG_REALCODECS'
6719 nocodecmodules="real $nocodecmodules"
6721 echores "$_real"
6724 echocheck "QuickTime codecs"
6725 _qtx_emulation=no
6726 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6727 if test "$_qtx" = auto ; then
6728 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6730 if test "$_qtx" = yes ; then
6731 def_qtx='#define CONFIG_QTX_CODECS 1'
6732 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6733 codecmodules="qtx $codecmodules"
6734 darwin || win32 || _qtx_emulation=yes
6735 else
6736 def_qtx='#undef CONFIG_QTX_CODECS'
6737 nocodecmodules="qtx $nocodecmodules"
6739 echores "$_qtx"
6741 echocheck "Nemesi Streaming Media libraries"
6742 if test "$_nemesi" = auto && test "$_network" = yes ; then
6743 _nemesi=no
6744 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6745 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6746 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6747 _nemesi=yes
6750 if test "$_nemesi" = yes; then
6751 _native_rtsp=no
6752 def_nemesi='#define CONFIG_LIBNEMESI 1'
6753 inputmodules="nemesi $inputmodules"
6754 else
6755 _native_rtsp="$_network"
6756 _nemesi=no
6757 def_nemesi='#undef CONFIG_LIBNEMESI'
6758 noinputmodules="nemesi $noinputmodules"
6760 echores "$_nemesi"
6762 echocheck "LIVE555 Streaming Media libraries"
6763 if test "$_live" = auto && test "$_network" = yes ; then
6764 cat > $TMPCPP << EOF
6765 #include <liveMedia.hh>
6766 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6767 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6768 #endif
6769 int main(void) { return 0; }
6772 _live=no
6773 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
6774 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6775 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6776 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6777 $_livelibdir/groupsock/libgroupsock.a \
6778 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6779 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6780 $extra_ldflags -lstdc++" \
6781 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6782 -I$_livelibdir/UsageEnvironment/include \
6783 -I$_livelibdir/BasicUsageEnvironment/include \
6784 -I$_livelibdir/groupsock/include" && \
6785 _live=yes && break
6786 done
6787 if test "$_live" != yes ; then
6788 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6789 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6790 _live_dist=yes
6794 if test "$_live" = yes && test "$_network" = yes; then
6795 test $_livelibdir && res_comment="using $_livelibdir"
6796 def_live='#define CONFIG_LIVE555 1'
6797 inputmodules="live555 $inputmodules"
6798 elif test "$_live_dist" = yes && test "$_network" = yes; then
6799 res_comment="using distribution version"
6800 _live="yes"
6801 def_live='#define CONFIG_LIVE555 1'
6802 extra_ldflags="$extra_ldflags $ld_tmp"
6803 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6804 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6805 inputmodules="live555 $inputmodules"
6806 else
6807 _live=no
6808 def_live='#undef CONFIG_LIVE555'
6809 noinputmodules="live555 $noinputmodules"
6811 echores "$_live"
6814 echocheck "FFmpeg libavutil"
6815 if test "$_libavutil" = auto ; then
6816 _libavutil=no
6817 cat > $TMPC << EOF
6818 #include <libavutil/common.h>
6819 int main(void) { av_clip(1, 1, 1); return 0; }
6821 if $_pkg_config --exists libavutil ; then
6822 _inc_libavutil=$($_pkg_config --cflags libavutil)
6823 _ld_tmp=$($_pkg_config --libs libavutil)
6824 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6825 && _libavutil=yes
6826 elif cc_check -lavutil $_ld_lm ; then
6827 extra_ldflags="$extra_ldflags -lavutil"
6828 _libavutil=yes
6831 def_libavutil='#undef CONFIG_LIBAVUTIL'
6832 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6833 # libavutil is not available, but it is mandatory ...
6834 if test "$_libavutil" = no ; then
6835 die "You need libavutil, MPlayer will not compile without!"
6837 echores "$_libavutil"
6839 echocheck "FFmpeg libavcodec"
6840 if test "$_libavcodec" = auto ; then
6841 _libavcodec=no
6842 cat > $TMPC << EOF
6843 #include <libavcodec/avcodec.h>
6844 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6846 if $_pkg_config --exists libavcodec ; then
6847 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6848 _ld_tmp=$($_pkg_config --libs libavcodec)
6849 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6850 && _libavcodec=yes
6851 elif cc_check -lavcodec $_ld_lm ; then
6852 extra_ldflags="$extra_ldflags -lavcodec"
6853 _libavcodec=yes
6856 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6857 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6858 if test "$_libavcodec" = yes ; then
6859 codecmodules="libavcodec $codecmodules"
6860 else
6861 nocodecmodules="libavcodec $nocodecmodules"
6863 echores "$_libavcodec"
6865 echocheck "FFmpeg libavformat"
6866 if test "$_libavformat" = auto ; then
6867 _libavformat=no
6868 cat > $TMPC <<EOF
6869 #include <libavformat/avformat.h>
6870 int main(void) { av_alloc_format_context(); return 0; }
6872 if $_pkg_config --exists libavformat ; then
6873 _inc_libavformat=$($_pkg_config --cflags libavformat)
6874 _ld_tmp=$($_pkg_config --libs libavformat)
6875 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6876 && _libavformat=yes
6877 elif cc_check $_ld_lm -lavformat ; then
6878 extra_ldflags="$extra_ldflags -lavformat"
6879 _libavformat=yes
6882 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6883 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6884 echores "$_libavformat"
6886 echocheck "FFmpeg libpostproc"
6887 if test "$_libpostproc" = auto ; then
6888 _libpostproc=no
6889 cat > $TMPC << EOF
6890 #include <libpostproc/postprocess.h>
6891 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6893 if $_pkg_config --exists libpostproc ; then
6894 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6895 _ld_tmp=$($_pkg_config --libs libpostproc)
6896 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6897 && _libpostproc=yes
6898 elif cc_check -lpostproc $_ld_lm ; then
6899 extra_ldflags="$extra_ldflags -lpostproc"
6900 _libpostproc=yes
6903 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6904 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6905 echores "$_libpostproc"
6907 echocheck "FFmpeg libswscale"
6908 if test "$_libswscale" = auto ; then
6909 _libswscale=no
6910 cat > $TMPC << EOF
6911 #include <libswscale/swscale.h>
6912 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6914 if $_pkg_config --exists libswscale ; then
6915 _inc_libswscale=$($_pkg_config --cflags libswscale)
6916 _ld_tmp=$($_pkg_config --libs libswscale)
6917 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6918 && _libswscale=yes
6919 elif cc_check -lswscale ; then
6920 extra_ldflags="$extra_ldflags -lswscale"
6921 _libswscale=yes
6924 def_libswscale='#undef CONFIG_LIBSWSCALE'
6925 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6926 echores "$_libswscale"
6928 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6929 if ! test -z "$_ffmpeg_source" ; then
6930 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6933 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6934 if ! test -z "$_ffmpeg_source" ; then
6935 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6938 echocheck "libdv-0.9.5+"
6939 if test "$_libdv" = auto ; then
6940 _libdv=no
6941 cat > $TMPC <<EOF
6942 #include <libdv/dv.h>
6943 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6945 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6947 if test "$_libdv" = yes ; then
6948 def_libdv='#define CONFIG_LIBDV095 1'
6949 extra_ldflags="$extra_ldflags -ldv"
6950 codecmodules="libdv $codecmodules"
6951 else
6952 def_libdv='#undef CONFIG_LIBDV095'
6953 nocodecmodules="libdv $nocodecmodules"
6955 echores "$_libdv"
6958 echocheck "Xvid"
6959 if test "$_xvid" = auto ; then
6960 _xvid=no
6961 cat > $TMPC << EOF
6962 #include <xvid.h>
6963 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6965 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6966 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6967 done
6970 if test "$_xvid" = yes ; then
6971 def_xvid='#define CONFIG_XVID4 1'
6972 codecmodules="xvid $codecmodules"
6973 else
6974 def_xvid='#undef CONFIG_XVID4'
6975 nocodecmodules="xvid $nocodecmodules"
6977 echores "$_xvid"
6979 echocheck "x264"
6980 if test "$_x264" = auto ; then
6981 cat > $TMPC << EOF
6982 #include <inttypes.h>
6983 #include <x264.h>
6984 #if X264_BUILD < 98
6985 #error We do not support old versions of x264. Get the latest from git.
6986 #endif
6987 int main(void) { x264_encoder_open((void*)0); return 0; }
6989 _x264=no
6990 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6991 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
6992 done
6995 if test "$_x264" = yes ; then
6996 def_x264='#define CONFIG_X264 1'
6997 codecmodules="x264 $codecmodules"
6998 else
6999 def_x264='#undef CONFIG_X264'
7000 nocodecmodules="x264 $nocodecmodules"
7002 echores "$_x264"
7004 echocheck "libnut"
7005 if test "$_libnut" = auto ; then
7006 cat > $TMPC << EOF
7007 #include <libnut.h>
7008 nut_context_tt * nut;
7009 int main(void) { (void)nut_error(0); return 0; }
7011 _libnut=no
7012 cc_check -lnut && _libnut=yes
7015 if test "$_libnut" = yes ; then
7016 def_libnut='#define CONFIG_LIBNUT 1'
7017 extra_ldflags="$extra_ldflags -lnut"
7018 else
7019 def_libnut='#undef CONFIG_LIBNUT'
7021 echores "$_libnut"
7023 # These VO checks must be done after libavcodec/libswscale one
7024 echocheck "/dev/mga_vid"
7025 if test "$_mga" = auto ; then
7026 _mga=no
7027 test -c /dev/mga_vid && _mga=yes
7029 if test "$_mga" = yes ; then
7030 if test "$_libswscale_internals" = yes ; then
7031 def_mga='#define CONFIG_MGA 1'
7032 vomodules="mga $vomodules"
7033 else
7034 res_comment="libswscale internal headers are required by mga, sorry"
7035 _mga=no
7036 def_mga='#undef CONFIG_MGA'
7037 novomodules="mga $novomodules"
7039 else
7040 def_mga='#undef CONFIG_MGA'
7041 novomodules="mga $novomodules"
7043 echores "$_mga"
7046 echocheck "xmga"
7047 if test "$_xmga" = auto ; then
7048 _xmga=no
7049 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7051 if test "$_xmga" = yes ; then
7052 if test "$_libswscale_internals" = yes ; then
7053 def_xmga='#define CONFIG_XMGA 1'
7054 vomodules="xmga $vomodules"
7055 else
7056 res_comment="libswscale internal headers are required by xmga, sorry"
7057 _xmga=no
7058 def_xmga='#undef CONFIG_XMGA'
7059 novomodules="xmga $novomodules"
7061 else
7062 def_xmga='#undef CONFIG_XMGA'
7063 novomodules="xmga $novomodules"
7065 echores "$_xmga"
7067 echocheck "zr"
7068 if test "$_zr" = auto ; then
7069 #36067's seem to identify themselves as 36057PQC's, so the line
7070 #below should work for 36067's and 36057's.
7071 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7072 _zr=yes
7073 else
7074 _zr=no
7077 if test "$_zr" = yes ; then
7078 if test "$_libavcodec_internals" = yes ; then
7079 def_zr='#define CONFIG_ZR 1'
7080 vomodules="zr zr2 $vomodules"
7081 else
7082 res_comment="libavcodec internal headers are required by zr, sorry"
7083 novomodules="zr $novomodules"
7084 def_zr='#undef CONFIG_ZR'
7086 else
7087 def_zr='#undef CONFIG_ZR'
7088 novomodules="zr zr2 $novomodules"
7090 echores "$_zr"
7092 # mencoder requires (optional) those libs: libmp3lame
7093 if test "$_mencoder" != no ; then
7095 echocheck "libmp3lame"
7096 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7097 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7098 if test "$_mp3lame" = auto ; then
7099 _mp3lame=no
7100 cat > $TMPC <<EOF
7101 #include <lame/lame.h>
7102 int main(void) { lame_version_t lv; (void) lame_init();
7103 get_lame_version_numerical(&lv);
7104 return 0; }
7106 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7108 if test "$_mp3lame" = yes ; then
7109 def_mp3lame="#define CONFIG_MP3LAME 1"
7110 _ld_mp3lame=-lmp3lame
7111 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7112 cat > $TMPC << EOF
7113 #include <lame/lame.h>
7114 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7116 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7117 cat > $TMPC << EOF
7118 #include <lame/lame.h>
7119 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7121 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7122 else
7123 def_mp3lame='#undef CONFIG_MP3LAME'
7125 echores "$_mp3lame"
7127 fi # test "$_mencoder" != no
7129 echocheck "mencoder"
7130 if test "$_mencoder" = yes ; then
7131 def_muxers='#define CONFIG_MUXERS 1'
7132 else
7133 def_muxers='#define CONFIG_MUXERS 0'
7135 echores "$_mencoder"
7138 echocheck "UnRAR executable"
7139 if test "$_unrar_exec" = auto ; then
7140 _unrar_exec="yes"
7141 mingw32 && _unrar_exec="no"
7143 if test "$_unrar_exec" = yes ; then
7144 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7145 else
7146 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7148 echores "$_unrar_exec"
7150 echocheck "TV interface"
7151 if test "$_tv" = yes ; then
7152 def_tv='#define CONFIG_TV 1'
7153 inputmodules="tv $inputmodules"
7154 else
7155 noinputmodules="tv $noinputmodules"
7156 def_tv='#undef CONFIG_TV'
7158 echores "$_tv"
7161 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7162 echocheck "*BSD BT848 bt8xx header"
7163 _ioctl_bt848_h=no
7164 for file in "machine/ioctl_bt848.h" \
7165 "dev/bktr/ioctl_bt848.h" \
7166 "dev/video/bktr/ioctl_bt848.h" \
7167 "dev/ic/bt8xx.h" ; do
7168 cat > $TMPC <<EOF
7169 #include <sys/types.h>
7170 #include <sys/ioctl.h>
7171 #include <$file>
7172 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7174 if cc_check ; then
7175 _ioctl_bt848_h=yes
7176 _ioctl_bt848_h_name="$file"
7177 break;
7179 done
7180 if test "$_ioctl_bt848_h" = yes ; then
7181 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7182 res_comment="using $_ioctl_bt848_h_name"
7183 else
7184 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7186 echores "$_ioctl_bt848_h"
7188 echocheck "*BSD ioctl_meteor.h"
7189 _ioctl_meteor_h=no
7190 for file in "machine/ioctl_meteor.h" \
7191 "dev/bktr/ioctl_meteor.h" \
7192 "dev/video/bktr/ioctl_meteor.h" ; do
7193 cat > $TMPC <<EOF
7194 #include <sys/types.h>
7195 #include <$file>
7196 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7198 if cc_check ; then
7199 _ioctl_meteor_h=yes
7200 _ioctl_meteor_h_name="$file"
7201 break;
7203 done
7204 if test "$_ioctl_meteor_h" = yes ; then
7205 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7206 res_comment="using $_ioctl_meteor_h_name"
7207 else
7208 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7210 echores "$_ioctl_meteor_h"
7212 echocheck "*BSD BrookTree 848 TV interface"
7213 if test "$_tv_bsdbt848" = auto ; then
7214 _tv_bsdbt848=no
7215 if test "$_tv" = yes ; then
7216 cat > $TMPC <<EOF
7217 #include <sys/types.h>
7218 $def_ioctl_meteor_h_name
7219 $def_ioctl_bt848_h_name
7220 #ifdef IOCTL_METEOR_H_NAME
7221 #include IOCTL_METEOR_H_NAME
7222 #endif
7223 #ifdef IOCTL_BT848_H_NAME
7224 #include IOCTL_BT848_H_NAME
7225 #endif
7226 int main(void) {
7227 ioctl(0, METEORSINPUT, 0);
7228 ioctl(0, TVTUNER_GETFREQ, 0);
7229 return 0;
7232 cc_check && _tv_bsdbt848=yes
7235 if test "$_tv_bsdbt848" = yes ; then
7236 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7237 inputmodules="tv-bsdbt848 $inputmodules"
7238 else
7239 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7240 noinputmodules="tv-bsdbt848 $noinputmodules"
7242 echores "$_tv_bsdbt848"
7243 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7246 echocheck "DirectShow TV interface"
7247 if test "$_tv_dshow" = auto ; then
7248 _tv_dshow=no
7249 if test "$_tv" = yes && win32 ; then
7250 cat > $TMPC <<EOF
7251 #include <ole2.h>
7252 int main(void) {
7253 void* p;
7254 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7255 return 0;
7258 cc_check -lole32 -luuid && _tv_dshow=yes
7261 if test "$_tv_dshow" = yes ; then
7262 inputmodules="tv-dshow $inputmodules"
7263 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7264 extra_ldflags="$extra_ldflags -lole32 -luuid"
7265 else
7266 noinputmodules="tv-dshow $noinputmodules"
7267 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7269 echores "$_tv_dshow"
7272 echocheck "Video 4 Linux TV interface"
7273 if test "$_tv_v4l1" = auto ; then
7274 _tv_v4l1=no
7275 if test "$_tv" = yes && linux ; then
7276 header_check linux/videodev.h && _tv_v4l1=yes
7279 if test "$_tv_v4l1" = yes ; then
7280 _audio_input=yes
7281 _tv_v4l=yes
7282 def_tv_v4l='#define CONFIG_TV_V4L 1'
7283 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7284 inputmodules="tv-v4l $inputmodules"
7285 else
7286 noinputmodules="tv-v4l1 $noinputmodules"
7287 def_tv_v4l='#undef CONFIG_TV_V4L'
7289 echores "$_tv_v4l1"
7292 echocheck "Video 4 Linux 2 TV interface"
7293 if test "$_tv_v4l2" = auto ; then
7294 _tv_v4l2=no
7295 if test "$_tv" = yes && linux ; then
7296 header_check linux/videodev2.h && _tv_v4l2=yes
7299 if test "$_tv_v4l2" = yes ; then
7300 _audio_input=yes
7301 _tv_v4l=yes
7302 def_tv_v4l='#define CONFIG_TV_V4L 1'
7303 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7304 inputmodules="tv-v4l2 $inputmodules"
7305 else
7306 noinputmodules="tv-v4l2 $noinputmodules"
7307 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7309 echores "$_tv_v4l2"
7312 echocheck "Radio interface"
7313 if test "$_radio" = yes ; then
7314 def_radio='#define CONFIG_RADIO 1'
7315 inputmodules="radio $inputmodules"
7316 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7317 _radio_capture=no
7319 if test "$_radio_capture" = yes ; then
7320 _audio_input=yes
7321 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7322 else
7323 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7325 else
7326 noinputmodules="radio $noinputmodules"
7327 def_radio='#undef CONFIG_RADIO'
7328 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7329 _radio_capture=no
7331 echores "$_radio"
7332 echocheck "Capture for Radio interface"
7333 echores "$_radio_capture"
7335 echocheck "Video 4 Linux 2 Radio interface"
7336 if test "$_radio_v4l2" = auto ; then
7337 _radio_v4l2=no
7338 if test "$_radio" = yes && linux ; then
7339 header_check linux/videodev2.h && _radio_v4l2=yes
7342 if test "$_radio_v4l2" = yes ; then
7343 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7344 else
7345 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7347 echores "$_radio_v4l2"
7349 echocheck "Video 4 Linux Radio interface"
7350 if test "$_radio_v4l" = auto ; then
7351 _radio_v4l=no
7352 if test "$_radio" = yes && linux ; then
7353 header_check linux/videodev.h && _radio_v4l=yes
7356 if test "$_radio_v4l" = yes ; then
7357 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7358 else
7359 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7361 echores "$_radio_v4l"
7363 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7364 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7365 echocheck "*BSD BrookTree 848 Radio interface"
7366 _radio_bsdbt848=no
7367 cat > $TMPC <<EOF
7368 #include <sys/types.h>
7369 $def_ioctl_bt848_h_name
7370 #ifdef IOCTL_BT848_H_NAME
7371 #include IOCTL_BT848_H_NAME
7372 #endif
7373 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7375 cc_check && _radio_bsdbt848=yes
7376 echores "$_radio_bsdbt848"
7377 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7379 if test "$_radio_bsdbt848" = yes ; then
7380 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7381 else
7382 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7385 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7386 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7387 die "Radio driver requires BSD BT848, V4L or V4L2!"
7390 echocheck "Video 4 Linux 2 MPEG PVR interface"
7391 if test "$_pvr" = auto ; then
7392 _pvr=no
7393 if test "$_tv_v4l2" = yes && linux ; then
7394 cat > $TMPC <<EOF
7395 #include <linux/videodev2.h>
7396 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7398 cc_check && _pvr=yes
7401 if test "$_pvr" = yes ; then
7402 def_pvr='#define CONFIG_PVR 1'
7403 inputmodules="pvr $inputmodules"
7404 else
7405 noinputmodules="pvr $noinputmodules"
7406 def_pvr='#undef CONFIG_PVR'
7408 echores "$_pvr"
7411 echocheck "ftp"
7412 if ! beos && test "$_ftp" = yes ; then
7413 def_ftp='#define CONFIG_FTP 1'
7414 inputmodules="ftp $inputmodules"
7415 else
7416 noinputmodules="ftp $noinputmodules"
7417 def_ftp='#undef CONFIG_FTP'
7419 echores "$_ftp"
7421 echocheck "vstream client"
7422 if test "$_vstream" = auto ; then
7423 _vstream=no
7424 cat > $TMPC <<EOF
7425 #include <vstream-client.h>
7426 void vstream_error(const char *format, ... ) {}
7427 int main(void) { vstream_start(); return 0; }
7429 cc_check -lvstream-client && _vstream=yes
7431 if test "$_vstream" = yes ; then
7432 def_vstream='#define CONFIG_VSTREAM 1'
7433 inputmodules="vstream $inputmodules"
7434 extra_ldflags="$extra_ldflags -lvstream-client"
7435 else
7436 noinputmodules="vstream $noinputmodules"
7437 def_vstream='#undef CONFIG_VSTREAM'
7439 echores "$_vstream"
7442 echocheck "OSD menu"
7443 if test "$_menu" = yes ; then
7444 def_menu='#define CONFIG_MENU 1'
7445 test $_dvbin = "yes" && _menu_dvbin=yes
7446 else
7447 def_menu='#undef CONFIG_MENU'
7448 _menu_dvbin=no
7450 echores "$_menu"
7453 echocheck "Subtitles sorting"
7454 if test "$_sortsub" = yes ; then
7455 def_sortsub='#define CONFIG_SORTSUB 1'
7456 else
7457 def_sortsub='#undef CONFIG_SORTSUB'
7459 echores "$_sortsub"
7462 echocheck "XMMS inputplugin support"
7463 if test "$_xmms" = yes ; then
7464 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7465 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7466 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7467 else
7468 _xmmsplugindir=/usr/lib/xmms/Input
7469 _xmmslibdir=/usr/lib
7472 def_xmms='#define CONFIG_XMMS 1'
7473 if darwin ; then
7474 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7475 else
7476 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7478 else
7479 def_xmms='#undef CONFIG_XMMS'
7481 echores "$_xmms"
7483 if test "$_charset" != "noconv" ; then
7484 def_charset="#define MSG_CHARSET \"$_charset\""
7485 else
7486 def_charset="#undef MSG_CHARSET"
7487 _charset="UTF-8"
7490 #############################################################################
7492 echocheck "automatic gdb attach"
7493 if test "$_crash_debug" = yes ; then
7494 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7495 else
7496 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7497 _crash_debug=no
7499 echores "$_crash_debug"
7501 echocheck "compiler support for noexecstack"
7502 if cflag_check -Wl,-z,noexecstack ; then
7503 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7504 echores "yes"
7505 else
7506 echores "no"
7509 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7510 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7511 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7512 echores "yes"
7513 else
7514 echores "no"
7518 # Dynamic linking flags
7519 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7520 _ld_dl_dynamic=''
7521 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7522 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7523 _ld_dl_dynamic='-rdynamic'
7526 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7527 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7528 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7530 def_debug='#undef MP_DEBUG'
7531 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7534 echocheck "joystick"
7535 def_joystick='#undef CONFIG_JOYSTICK'
7536 if test "$_joystick" = yes ; then
7537 if linux ; then
7538 # TODO add some check
7539 def_joystick='#define CONFIG_JOYSTICK 1'
7540 else
7541 _joystick="no"
7542 res_comment="unsupported under $system_name"
7545 echores "$_joystick"
7547 echocheck "lirc"
7548 if test "$_lirc" = auto ; then
7549 _lirc=no
7550 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7552 if test "$_lirc" = yes ; then
7553 def_lirc='#define CONFIG_LIRC 1'
7554 libs_mplayer="$libs_mplayer -llirc_client"
7555 else
7556 def_lirc='#undef CONFIG_LIRC'
7558 echores "$_lirc"
7560 echocheck "lircc"
7561 if test "$_lircc" = auto ; then
7562 _lircc=no
7563 header_check lirc/lircc.h -llircc && _lircc=yes
7565 if test "$_lircc" = yes ; then
7566 def_lircc='#define CONFIG_LIRCC 1'
7567 libs_mplayer="$libs_mplayer -llircc"
7568 else
7569 def_lircc='#undef CONFIG_LIRCC'
7571 echores "$_lircc"
7573 if arm; then
7574 # Detect maemo development platform libraries availability (http://www.maemo.org),
7575 # they are used when run on Nokia 770|8x0
7576 echocheck "maemo (Nokia 770|8x0)"
7577 if test "$_maemo" = auto ; then
7578 _maemo=no
7579 cat > $TMPC << EOF
7580 #include <libosso.h>
7581 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7583 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7585 if test "$_maemo" = yes ; then
7586 def_maemo='#define CONFIG_MAEMO 1'
7587 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7588 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7589 else
7590 def_maemo='#undef CONFIG_MAEMO'
7592 echores "$_maemo"
7595 #############################################################################
7597 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7598 # the OMF format needs to come after the 'extern symbol prefix' check, which
7599 # uses nm.
7600 if os2 ; then
7601 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7604 # linker paths should be the same for mencoder and mplayer
7605 _ld_tmp=""
7606 for I in $libs_mplayer ; do
7607 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7608 if test -z "$_tmp" ; then
7609 extra_ldflags="$extra_ldflags $I"
7610 else
7611 _ld_tmp="$_ld_tmp $I"
7613 done
7614 libs_mplayer=$_ld_tmp
7617 #############################################################################
7618 # 64 bit file offsets?
7619 if test "$_largefiles" = yes || freebsd ; then
7620 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7621 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7622 # dvdread support requires this (for off64_t)
7623 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7627 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7629 # This must be the last test to be performed. Any other tests following it
7630 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7631 # against libdvdread (to permit MPlayer to use its own copy of the library).
7632 # So any compilation using the flags added here but not linking against
7633 # libdvdread can fail.
7634 echocheck "DVD support (libdvdnav)"
7635 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7636 _dvdnav=no
7638 dvdnav_internal=no
7639 if test "$_dvdnav" = auto ; then
7640 if test "$_dvdread_internal" = yes ; then
7641 _dvdnav=yes
7642 dvdnav_internal=yes
7643 res_comment="internal"
7644 else
7645 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7648 if test "$_dvdnav" = auto ; then
7649 cat > $TMPC <<EOF
7650 #include <inttypes.h>
7651 #include <dvdnav/dvdnav.h>
7652 int main(void) { dvdnav_t *dvd=0; return 0; }
7654 _dvdnav=no
7655 _dvdnavdir=$($_dvdnavconfig --cflags)
7656 _dvdnavlibs=$($_dvdnavconfig --libs)
7657 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7659 if test "$_dvdnav" = yes ; then
7660 _largefiles=yes
7661 def_dvdnav='#define CONFIG_DVDNAV 1'
7662 if test "$dvdnav_internal" = yes ; then
7663 cflags_libdvdnav="-Ilibdvdnav"
7664 inputmodules="dvdnav(internal) $inputmodules"
7665 else
7666 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7667 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7668 inputmodules="dvdnav $inputmodules"
7670 else
7671 def_dvdnav='#undef CONFIG_DVDNAV'
7672 noinputmodules="dvdnav $noinputmodules"
7674 echores "$_dvdnav"
7676 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7677 # Read dvdnav comment above.
7679 mak_enable () {
7680 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7681 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7682 nprefix=$3;
7683 for part in $list; do
7684 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7685 echo "${nprefix}_$part = yes"
7687 done
7690 #############################################################################
7691 echo "Creating config.mak"
7692 cat > config.mak << EOF
7693 # -------- Generated by configure -----------
7695 # Ensure that locale settings do not interfere with shell commands.
7696 export LC_ALL = C
7698 CONFIGURATION = $configuration
7700 CHARSET = $_charset
7701 DOC_LANGS = $language_doc
7702 DOC_LANG_ALL = $doc_lang_all
7703 MAN_LANGS = $language_man
7704 MAN_LANG_ALL = $man_lang_all
7705 MSG_LANGS = $language_msg
7706 MSG_LANG_ALL = $msg_lang_all
7708 prefix = \$(DESTDIR)$_prefix
7709 BINDIR = \$(DESTDIR)$_bindir
7710 DATADIR = \$(DESTDIR)$_datadir
7711 LIBDIR = \$(DESTDIR)$_libdir
7712 MANDIR = \$(DESTDIR)$_mandir
7713 CONFDIR = \$(DESTDIR)$_confdir
7714 LOCALEDIR = \$(DESTDIR)$_localedir
7716 AR = $_ar
7717 AS = $_cc
7718 CC = $_cc
7719 CXX = $_cc
7720 HOST_CC = $_host_cc
7721 INSTALL = $_install
7722 INSTALLSTRIP = $_install_strip
7723 WINDRES = $_windres
7725 CFLAGS = $CFLAGS $extra_cflags
7726 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7727 DEPFLAGS = $DEPFLAGS
7729 CFLAGS_DHAHELPER = $cflags_dhahelper
7730 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7731 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7732 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7733 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7734 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7735 CFLAGS_STACKREALIGN = $cflags_stackrealign
7736 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7737 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7739 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7740 EXTRALIBS_MPLAYER = $libs_mplayer
7741 EXTRALIBS_MENCODER = $libs_mencoder
7743 GETCH = $_getch
7744 TIMER = $_timer
7746 EXESUF = $_exesuf
7747 EXESUFS_ALL = .exe
7749 ARCH = $arch
7750 $(mak_enable "$arch_all" "$arch" ARCH)
7751 $(mak_enable "$subarch_all" "$subarch" ARCH)
7752 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7754 MENCODER = $_mencoder
7755 MPLAYER = $_mplayer
7757 NEED_GETTIMEOFDAY = $_need_gettimeofday
7758 NEED_GLOB = $_need_glob
7759 NEED_MMAP = $_need_mmap
7760 NEED_SETENV = $_need_setenv
7761 NEED_SHMEM = $_need_shmem
7762 NEED_STRSEP = $_need_strsep
7763 NEED_SWAB = $_need_swab
7764 NEED_VSSCANF = $_need_vsscanf
7766 # features
7767 3DFX = $_3dfx
7768 AA = $_aa
7769 ALSA1X = $_alsa1x
7770 ALSA9 = $_alsa9
7771 ALSA5 = $_alsa5
7772 APPLE_IR = $_apple_ir
7773 APPLE_REMOTE = $_apple_remote
7774 ARTS = $_arts
7775 AUDIO_INPUT = $_audio_input
7776 BITMAP_FONT = $_bitmap_font
7777 BL = $_bl
7778 CACA = $_caca
7779 CDDA = $_cdda
7780 CDDB = $_cddb
7781 COREAUDIO = $_coreaudio
7782 COREVIDEO = $_corevideo
7783 DART = $_dart
7784 DFBMGA = $_dfbmga
7785 DGA = $_dga
7786 DIRECT3D = $_direct3d
7787 DIRECTFB = $_directfb
7788 DIRECTX = $_directx
7789 DVBIN = $_dvbin
7790 DVDNAV = $_dvdnav
7791 DVDNAV_INTERNAL = $dvdnav_internal
7792 DVDREAD = $_dvdread
7793 DVDREAD_INTERNAL = $_dvdread_internal
7794 DXR2 = $_dxr2
7795 DXR3 = $_dxr3
7796 ESD = $_esd
7797 FAAC=$_faac
7798 FAAD = $_faad
7799 FAAD_INTERNAL = $_faad_internal
7800 FASTMEMCPY = $_fastmemcpy
7801 FBDEV = $_fbdev
7802 FREETYPE = $_freetype
7803 FTP = $_ftp
7804 GIF = $_gif
7805 GGI = $_ggi
7806 GL = $_gl
7807 GL_WIN32 = $_gl_win32
7808 GL_X11 = $_gl_x11
7809 GL_SDL = $_gl_sdl
7810 MATRIXVIEW = $matrixview
7811 HAVE_POSIX_SELECT = $_posix_select
7812 HAVE_SYS_MMAN_H = $_mman
7813 IVTV = $_ivtv
7814 JACK = $_jack
7815 JOYSTICK = $_joystick
7816 JPEG = $_jpeg
7817 KAI = $_kai
7818 KVA = $_kva
7819 LADSPA = $_ladspa
7820 LIBA52 = $_liba52
7821 LIBASS = $_ass
7822 LIBBS2B = $_libbs2b
7823 LIBDCA = $_libdca
7824 LIBDV = $_libdv
7825 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7826 LIBLZO = $_liblzo
7827 LIBMAD = $_mad
7828 LIBMENU = $_menu
7829 LIBMENU_DVBIN = $_menu_dvbin
7830 LIBMPEG2 = $_libmpeg2
7831 LIBNEMESI = $_nemesi
7832 LIBNUT = $_libnut
7833 LIBSMBCLIENT = $_smb
7834 LIBTHEORA = $_theora
7835 LIRC = $_lirc
7836 LIVE555 = $_live
7837 MACOSX_FINDER = $_macosx_finder
7838 MD5SUM = $_md5sum
7839 MGA = $_mga
7840 MNG = $_mng
7841 MP3LAME = $_mp3lame
7842 MP3LIB = $_mp3lib
7843 MPG123 = $_mpg123
7844 MUSEPACK = $_musepack
7845 NAS = $_nas
7846 NATIVE_RTSP = $_native_rtsp
7847 NETWORK = $_network
7848 OPENAL = $_openal
7849 OSS = $_ossaudio
7850 PE_EXECUTABLE = $_pe_executable
7851 PNG = $_png
7852 PNM = $_pnm
7853 PRIORITY = $_priority
7854 PULSE = $_pulse
7855 PVR = $_pvr
7856 QTX_CODECS = $_qtx
7857 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7858 QTX_EMULATION = $_qtx_emulation
7859 QUARTZ = $_quartz
7860 RADIO=$_radio
7861 RADIO_CAPTURE=$_radio_capture
7862 REAL_CODECS = $_real
7863 S3FB = $_s3fb
7864 SDL = $_sdl
7865 SPEEX = $_speex
7866 STREAM_CACHE = $_stream_cache
7867 SGIAUDIO = $_sgiaudio
7868 SUNAUDIO = $_sunaudio
7869 SVGA = $_svga
7870 TDFXFB = $_tdfxfb
7871 TDFXVID = $_tdfxvid
7872 TGA = $_tga
7873 TOOLAME=$_toolame
7874 TREMOR_INTERNAL = $_tremor_internal
7875 TV = $_tv
7876 TV_BSDBT848 = $_tv_bsdbt848
7877 TV_DSHOW = $_tv_dshow
7878 TV_V4L = $_tv_v4l
7879 TV_V4L1 = $_tv_v4l1
7880 TV_V4L2 = $_tv_v4l2
7881 TWOLAME=$_twolame
7882 UNRAR_EXEC = $_unrar_exec
7883 V4L2 = $_v4l2
7884 VCD = $_vcd
7885 VDPAU = $_vdpau
7886 VESA = $_vesa
7887 VIDIX = $_vidix
7888 VIDIX_PCIDB = $_vidix_pcidb_val
7889 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7890 VIDIX_IVTV=$_vidix_drv_ivtv
7891 VIDIX_MACH64=$_vidix_drv_mach64
7892 VIDIX_MGA=$_vidix_drv_mga
7893 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7894 VIDIX_NVIDIA=$_vidix_drv_nvidia
7895 VIDIX_PM2=$_vidix_drv_pm2
7896 VIDIX_PM3=$_vidix_drv_pm3
7897 VIDIX_RADEON=$_vidix_drv_radeon
7898 VIDIX_RAGE128=$_vidix_drv_rage128
7899 VIDIX_S3=$_vidix_drv_s3
7900 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7901 VIDIX_SIS=$_vidix_drv_sis
7902 VIDIX_UNICHROME=$_vidix_drv_unichrome
7903 VORBIS = $_vorbis
7904 VSTREAM = $_vstream
7905 WII = $_wii
7906 WIN32DLL = $_win32dll
7907 WIN32WAVEOUT = $_win32waveout
7908 WIN32_EMULATION = $_win32_emulation
7909 WINVIDIX = $winvidix
7910 X11 = $_x11
7911 X264 = $_x264
7912 XANIM_CODECS = $_xanim
7913 XMGA = $_xmga
7914 XMMS_PLUGINS = $_xmms
7915 XV = $_xv
7916 XVID4 = $_xvid
7917 XVIDIX = $xvidix
7918 XVMC = $_xvmc
7919 XVR100 = $_xvr100
7920 YUV4MPEG = $_yuv4mpeg
7921 ZR = $_zr
7923 # FFmpeg
7924 LIBAVUTIL = $_libavutil
7925 LIBAVCODEC = $_libavcodec
7926 LIBAVFORMAT = $_libavformat
7927 LIBPOSTPROC = $_libpostproc
7928 LIBSWSCALE = $_libswscale
7929 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7930 LIBSWSCALE_INTERNALS = $_libswscale_internals
7931 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7933 RANLIB = $_ranlib
7934 YASM = $_yasm
7935 YASMFLAGS = $YASMFLAGS
7937 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7938 CONFIG_AANDCT = yes
7939 CONFIG_FFT = yes
7940 CONFIG_GOLOMB = yes
7941 CONFIG_H264DSP = yes
7942 CONFIG_LPC = yes
7943 CONFIG_MDCT = yes
7944 CONFIG_RDFT = yes
7946 CONFIG_BZLIB = $bzlib
7947 CONFIG_ENCODERS = yes
7948 CONFIG_GPL = yes
7949 CONFIG_MLIB = $_mlib
7950 CONFIG_MUXERS = $_mencoder
7951 CONFIG_VDPAU = $_vdpau
7952 CONFIG_XVMC = $_xvmc
7953 CONFIG_ZLIB = $_zlib
7955 HAVE_PTHREADS = $_pthreads
7956 HAVE_SHM = $_shm
7957 HAVE_W32THREADS = $_w32threads
7958 HAVE_YASM = $have_yasm
7962 #############################################################################
7964 ff_config_enable () {
7965 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7966 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7967 _nprefix=$3;
7968 test -z "$_nprefix" && _nprefix='CONFIG'
7969 for part in $list; do
7970 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7971 echo "#define ${_nprefix}_$part 1"
7972 else
7973 echo "#define ${_nprefix}_$part 0"
7975 done
7978 echo "Creating config.h"
7979 cat > $TMPH << EOF
7980 /*----------------------------------------------------------------------------
7981 ** This file has been automatically generated by configure any changes in it
7982 ** will be lost when you run configure again.
7983 ** Instead of modifying definitions here, use the --enable/--disable options
7984 ** of the configure script! See ./configure --help for details.
7985 *---------------------------------------------------------------------------*/
7987 #ifndef MPLAYER_CONFIG_H
7988 #define MPLAYER_CONFIG_H
7990 /* Undefine this if you do not want to select mono audio (left or right)
7991 with a stereo MPEG layer 2/3 audio stream. The command line option
7992 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
7993 right-only), with 0 being the default.
7995 #define CONFIG_FAKE_MONO 1
7997 /* set up audio OUTBURST. Do not change this! */
7998 #define OUTBURST 512
8000 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8001 #undef FAST_OSD
8002 #undef FAST_OSD_TABLE
8004 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8005 #define MPEG12_POSTPROC 1
8006 #define ATTRIBUTE_ALIGNED_MAX 16
8010 #define CONFIGURATION "$configuration"
8012 #define MPLAYER_DATADIR "$_datadir"
8013 #define MPLAYER_CONFDIR "$_confdir"
8014 #define MPLAYER_LIBDIR "$_libdir"
8015 #define MPLAYER_LOCALEDIR "$_localedir"
8017 $def_translation
8019 /* definitions needed by included libraries */
8020 #define HAVE_INTTYPES_H 1
8021 /* libmpeg2 + FFmpeg */
8022 $def_fast_inttypes
8023 /* libdvdcss */
8024 #define HAVE_ERRNO_H 1
8025 /* libdvdcss + libdvdread */
8026 #define HAVE_LIMITS_H 1
8027 /* libdvdcss + libfaad2 */
8028 #define HAVE_UNISTD_H 1
8029 /* libfaad2 + libdvdread */
8030 #define STDC_HEADERS 1
8031 #define HAVE_MEMCPY 1
8032 /* libfaad2 */
8033 #define HAVE_STRING_H 1
8034 #define HAVE_STRINGS_H 1
8035 #define HAVE_SYS_STAT_H 1
8036 #define HAVE_SYS_TYPES_H 1
8037 /* libdvdnav */
8038 #define READ_CACHE_TRACE 0
8039 /* libdvdread */
8040 #define HAVE_DLFCN_H 1
8041 $def_dvdcss
8044 /* system headers */
8045 $def_alloca_h
8046 $def_alsa_asoundlib_h
8047 $def_altivec_h
8048 $def_malloc_h
8049 $def_mman_h
8050 $def_mman_has_map_failed
8051 $def_soundcard_h
8052 $def_sys_asoundlib_h
8053 $def_sys_soundcard_h
8054 $def_sys_sysinfo_h
8055 $def_termios_h
8056 $def_termios_sys_h
8057 $def_winsock2_h
8060 /* system functions */
8061 $def_gethostbyname2
8062 $def_gettimeofday
8063 $def_glob
8064 $def_langinfo
8065 $def_lrintf
8066 $def_map_memalign
8067 $def_memalign
8068 $def_nanosleep
8069 $def_posix_select
8070 $def_select
8071 $def_setenv
8072 $def_setmode
8073 $def_shm
8074 $def_strsep
8075 $def_swab
8076 $def_sysi86
8077 $def_sysi86_iv
8078 $def_termcap
8079 $def_termios
8080 $def_vsscanf
8083 /* system-specific features */
8084 $def_asmalign_pot
8085 $def_builtin_expect
8086 $def_dl
8087 $def_dos_paths
8088 $def_extern_asm
8089 $def_extern_prefix
8090 $def_iconv
8091 $def_kstat
8092 $def_macosx_bundle
8093 $def_macosx_finder
8094 $def_maemo
8095 $def_named_asm_args
8096 $def_priority
8097 $def_quicktime
8098 $def_restrict_keyword
8099 $def_rtc
8100 $def_unrar_exec
8103 /* configurable options */
8104 $def_charset
8105 $def_crash_debug
8106 $def_debug
8107 $def_dynamic_plugins
8108 $def_fastmemcpy
8109 $def_menu
8110 $def_runtime_cpudetection
8111 $def_sighandler
8112 $def_sortsub
8113 $def_stream_cache
8114 $def_pthread_cache
8117 /* CPU stuff */
8118 #define __CPU__ $iproc
8119 $def_words_endian
8120 $def_bigendian
8121 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8122 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8123 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8126 /* DVD/VCD/CD */
8127 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8128 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8129 $def_bsdi_dvd
8130 $def_cddb
8131 $def_cdio
8132 $def_cdparanoia
8133 $def_cdrom
8134 $def_dvd
8135 $def_dvd_bsd
8136 $def_dvd_darwin
8137 $def_dvd_linux
8138 $def_dvd_openbsd
8139 $def_dvdio
8140 $def_dvdnav
8141 $def_dvdread
8142 $def_hpux_scsi_h
8143 $def_libcdio
8144 $def_sol_scsi_h
8145 $def_vcd
8148 /* codec libraries */
8149 $def_faac
8150 $def_faad
8151 $def_faad_internal
8152 $def_liba52
8153 $def_libdca
8154 $def_libdv
8155 $def_liblzo
8156 $def_libmpeg2
8157 $def_mad
8158 $def_mp3lame
8159 $def_mp3lame_preset
8160 $def_mp3lame_preset_medium
8161 $def_mp3lib
8162 $def_mpg123
8163 $def_musepack
8164 $def_speex
8165 $def_theora
8166 $def_toolame
8167 $def_tremor
8168 $def_twolame
8169 $def_vorbis
8170 $def_x264
8171 $def_xvid
8172 $def_zlib
8174 $def_libnut
8177 /* binary codecs */
8178 $def_qtx
8179 $def_qtx_win32
8180 $def_real
8181 $def_win32_loader
8182 $def_win32dll
8183 $def_xanim
8184 $def_xmms
8185 #define BINARY_CODECS_PATH "$_codecsdir"
8186 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8189 /* Audio output drivers */
8190 $def_alsa
8191 $def_alsa1x
8192 $def_alsa5
8193 $def_alsa9
8194 $def_arts
8195 $def_coreaudio
8196 $def_dart
8197 $def_esd
8198 $def_esd_latency
8199 $def_jack
8200 $def_kai
8201 $def_nas
8202 $def_openal
8203 $def_openal_h
8204 $def_ossaudio
8205 $def_ossaudio_devdsp
8206 $def_ossaudio_devmixer
8207 $def_pulse
8208 $def_sgiaudio
8209 $def_sunaudio
8210 $def_win32waveout
8212 $def_ladspa
8213 $def_libbs2b
8216 /* input */
8217 $def_apple_ir
8218 $def_apple_remote
8219 $def_ioctl_bt848_h_name
8220 $def_ioctl_meteor_h_name
8221 $def_joystick
8222 $def_lirc
8223 $def_lircc
8224 $def_pvr
8225 $def_radio
8226 $def_radio_bsdbt848
8227 $def_radio_capture
8228 $def_radio_v4l
8229 $def_radio_v4l2
8230 $def_tv
8231 $def_tv_bsdbt848
8232 $def_tv_dshow
8233 $def_tv_v4l
8234 $def_tv_v4l1
8235 $def_tv_v4l2
8238 /* font stuff */
8239 $def_ass
8240 $def_bitmap_font
8241 $def_enca
8242 $def_fontconfig
8243 $def_freetype
8244 $def_fribidi
8247 /* networking */
8248 $def_closesocket
8249 $def_ftp
8250 $def_inet6
8251 $def_inet_aton
8252 $def_inet_pton
8253 $def_live
8254 $def_nemesi
8255 $def_network
8256 $def_smb
8257 $def_socklen_t
8258 $def_vstream
8261 /* libvo options */
8262 $def_3dfx
8263 $def_aa
8264 $def_bl
8265 $def_caca
8266 $def_corevideo
8267 $def_dfbmga
8268 $def_dga
8269 $def_dga1
8270 $def_dga2
8271 $def_direct3d
8272 $def_directfb
8273 $def_directfb_version
8274 $def_directx
8275 $def_dvb
8276 $def_dvbin
8277 $def_dxr2
8278 $def_dxr3
8279 $def_fbdev
8280 $def_ggi
8281 $def_ggiwmh
8282 $def_gif
8283 $def_gif_4
8284 $def_gif_tvt_hack
8285 $def_gl
8286 $def_gl_win32
8287 $def_gl_x11
8288 $def_gl_sdl
8289 $def_matrixview
8290 $def_ivtv
8291 $def_jpeg
8292 $def_kva
8293 $def_md5sum
8294 $def_mga
8295 $def_mng
8296 $def_png
8297 $def_pnm
8298 $def_quartz
8299 $def_s3fb
8300 $def_sdl
8301 $def_sdl_sdl_h
8302 $def_svga
8303 $def_tdfxfb
8304 $def_tdfxvid
8305 $def_tga
8306 $def_v4l2
8307 $def_vdpau
8308 $def_vesa
8309 $def_vidix
8310 $def_vidix_drv_cyberblade
8311 $def_vidix_drv_ivtv
8312 $def_vidix_drv_mach64
8313 $def_vidix_drv_mga
8314 $def_vidix_drv_mga_crtc2
8315 $def_vidix_drv_nvidia
8316 $def_vidix_drv_pm3
8317 $def_vidix_drv_radeon
8318 $def_vidix_drv_rage128
8319 $def_vidix_drv_s3
8320 $def_vidix_drv_sh_veu
8321 $def_vidix_drv_sis
8322 $def_vidix_drv_unichrome
8323 $def_vidix_pfx
8324 $def_vm
8325 $def_wii
8326 $def_x11
8327 $def_xdpms
8328 $def_xf86keysym
8329 $def_xinerama
8330 $def_xmga
8331 $def_xss
8332 $def_xv
8333 $def_xvmc
8334 $def_xvr100
8335 $def_yuv4mpeg
8336 $def_zr
8339 /* FFmpeg */
8340 $def_libavcodec
8341 $def_libavformat
8342 $def_libavutil
8343 $def_libpostproc
8344 $def_libswscale
8345 $def_libavcodec_internals
8346 $def_libswscale_internals
8348 #define CONFIG_DECODERS 1
8349 #define CONFIG_ENCODERS 1
8350 #define CONFIG_DEMUXERS 1
8351 $def_muxers
8353 $def_arpa_inet_h
8354 $def_bswap
8355 $def_bzlib
8356 $def_dcbzl
8357 $def_exp2
8358 $def_exp2f
8359 $def_fast_64bit
8360 $def_fast_unaligned
8361 $def_llrint
8362 $def_log2
8363 $def_log2f
8364 $def_lrint
8365 $def_memalign_hack
8366 $def_mlib
8367 $def_mkstemp
8368 $def_posix_memalign
8369 $def_pthreads
8370 $def_round
8371 $def_roundf
8372 $def_ten_operands
8373 $def_threads
8374 $def_truncf
8375 $def_xform_asm
8376 $def_yasm
8378 #define CONFIG_FASTDIV 0
8379 #define CONFIG_FFSERVER 0
8380 #define CONFIG_GPL 1
8381 #define CONFIG_GRAY 0
8382 #define CONFIG_HARDCODED_TABLES 0
8383 #define CONFIG_LIBVORBIS 0
8384 #define CONFIG_POWERPC_PERF 0
8385 #define CONFIG_SMALL 0
8386 #define CONFIG_SWSCALE_ALPHA 1
8388 #define HAVE_ATTRIBUTE_PACKED 1
8389 #define HAVE_GETHRTIME 0
8390 #define HAVE_INLINE_ASM 1
8391 #define HAVE_LDBRX 0
8392 #define HAVE_POLL_H 1
8393 #define HAVE_PPC4XX 0
8394 #define HAVE_VFP_ARGS 1
8395 #define HAVE_VIRTUALALLOC 0
8397 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8398 #define CONFIG_AANDCT 1
8399 #define CONFIG_DCT 1
8400 #define CONFIG_DWT 1
8401 #define CONFIG_FFT 1
8402 #define CONFIG_GOLOMB 1
8403 #define CONFIG_H264DSP 1
8404 #define CONFIG_LPC 1
8405 #define CONFIG_MDCT 1
8406 #define CONFIG_RDFT 1
8408 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8409 $def_ebx_available
8410 #ifndef MP_DEBUG
8411 #define HAVE_EBP_AVAILABLE 1
8412 #else
8413 #define HAVE_EBP_AVAILABLE 0
8414 #endif
8416 #define CONFIG_H263_VAAPI_HWACCEL 0
8417 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8418 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8419 #define CONFIG_H264_VAAPI_HWACCEL 0
8420 #define CONFIG_VC1_VAAPI_HWACCEL 0
8421 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8423 #endif /* MPLAYER_CONFIG_H */
8426 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8427 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8429 #############################################################################
8431 ./version.sh `$_cc -dumpversion`
8433 cat << EOF
8435 Config files successfully generated by ./configure $configuration !
8437 Install prefix: $_prefix
8438 Data directory: $_datadir
8439 Config direct.: $_confdir
8441 Byte order: $_byte_order
8442 Optimizing for: $_optimizing
8444 Languages:
8445 Messages (in addition to English): $language_msg
8446 Manual pages: $language_man
8447 Documentation: $language_doc
8449 Enabled optional drivers:
8450 Input: $inputmodules
8451 Codecs: $codecmodules
8452 Audio output: $aomodules
8453 Video output: $vomodules
8455 Disabled optional drivers:
8456 Input: $noinputmodules
8457 Codecs: $nocodecmodules
8458 Audio output: $noaomodules
8459 Video output: $novomodules
8461 'config.h' and 'config.mak' contain your configuration options.
8462 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8463 compile *** DO NOT REPORT BUGS if you tweak these files ***
8465 'make' will now compile MPlayer and 'make install' will install it.
8466 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8471 if test "$_mtrr" = yes ; then
8472 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8473 echo
8476 if ! x86_32; then
8477 cat <<EOF
8478 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8479 operating system ($system_name). You may encounter a few files that cannot
8480 be played due to missing open source video/audio codec support.
8486 cat <<EOF
8487 Check $TMPLOG if you wonder why an autodetection failed (make sure
8488 development headers/packages are installed).
8490 NOTE: The --enable-* parameters unconditionally force options on, completely
8491 skipping autodetection. This behavior is unlike what you may be used to from
8492 autoconf-based configure scripts that can decide to override you. This greater
8493 level of control comes at a price. You may have to provide the correct compiler
8494 and linker flags yourself.
8495 If you used one of these options (except --enable-menu and similar ones that
8496 turn on internal features) and experience a compilation or linking failure,
8497 make sure you have passed the necessary compiler/linker flags to configure.
8499 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8503 if test "$warn_cflags" = yes; then
8504 cat <<EOF
8506 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8507 but:
8509 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8511 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8512 To do so, execute 'CFLAGS= ./configure <options>'
8517 # Last move:
8518 rm -rf "$mplayer_tmpdir"