Put variable declaration inside an #ifdef to avoid an unused variable warning.
[mplayer/glamo.git] / configure
blobc9ab4b458c0aa182549bce62cc323286cf5f990a
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 "$_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 # if test "$_feature" = yes ; then
33 # _def_feature='#define CONFIG_FEATURE 1'
34 # else
35 # _def_feature='#undef CONFIG_FEATURE'
36 # fi
37 # echores "$_feature"
39 # Furthermore you need to add the variable _feature to the list of default
40 # settings and set it to one of yes/no/auto. Also add appropriate
41 # --enable-feature/--disable-feature command line options.
42 # The results of the check should be written to config.h and config.mak
43 # at the end of this script. The variable names used for this should be
44 # uniform, i.e. if the option is named 'feature':
46 # _feature : should have a value of yes/no/auto
47 # _def_feature : '#define ... 1' or '#undef ...' for conditional compilation
48 # _ld_feature : '-L/path/dir -lfeature' GCC options
50 #############################################################################
52 # Prevent locale nonsense from breaking basic text processing utils
53 export LC_ALL=C
55 # Store the configure line that was used
56 _configuration="$*"
58 # Prefer these macros to full length text !
59 # These macros only return an error code - NO display is done
60 compile_check() {
61 echo >> "$TMPLOG"
62 cat "$1" >> "$TMPLOG"
63 echo >> "$TMPLOG"
64 echo "$_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra $_libs_mplayer $_libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
65 rm -f "$TMPEXE"
66 $_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra $_libs_mplayer $_libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
67 TMP="$?"
68 echo >> "$TMPLOG"
69 echo >> "$TMPLOG"
70 return "$TMP"
73 cc_check() {
74 compile_check $TMPC $@
77 cxx_check() {
78 compile_check $TMPCPP $@ -lstdc++
81 yasm_check() {
82 echo >> "$TMPLOG"
83 cat "$TMPS" >> "$TMPLOG"
84 echo >> "$TMPLOG"
85 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
86 rm -f "$TMPEXE"
87 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
88 TMP="$?"
89 echo >> "$TMPLOG"
90 echo >> "$TMPLOG"
91 return "$TMP"
94 tmp_run() {
95 "$TMPEXE" >> "$TMPLOG" 2>&1
98 # Display error message, flushes tempfile, exit
99 die () {
100 echo
101 echo "Error: $@" >&2
102 echo >&2
103 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
104 echo "Check \"$TMPLOG\" if you do not understand why it failed."
105 exit 1
108 # OS test booleans functions
109 issystem() {
110 test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
112 linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
113 sunos() { issystem "SunOS" ; return "$?" ; }
114 hpux() { issystem "HP-UX" ; return "$?" ; }
115 irix() { issystem "IRIX" ; return "$?" ; }
116 aix() { issystem "AIX" ; return "$?" ; }
117 cygwin() { issystem "CYGWIN" ; return "$?" ; }
118 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; return "$?" ; }
119 netbsd() { issystem "NetBSD" ; return "$?" ; }
120 bsdos() { issystem "BSD/OS" ; return "$?" ; }
121 openbsd() { issystem "OpenBSD" ; return "$?" ; }
122 dragonfly() { issystem "DragonFly" ; return "$?" ; }
123 qnx() { issystem "QNX" ; return "$?" ; }
124 darwin() { issystem "Darwin" ; return "$?" ; }
125 gnu() { issystem "GNU" ; return "$?" ; }
126 mingw32() { issystem "MINGW32" ; return "$?" ; }
127 morphos() { issystem "MorphOS" ; return "$?" ; }
128 amigaos() { issystem "AmigaOS" ; return "$?" ; }
129 win32() { cygwin || mingw32 ; return "$?" ; }
130 beos() { issystem "BEOS" ; return "$?" ; }
131 os2() { issystem "OS/2" ; return "$?" ; }
133 # arch test boolean functions
134 # x86/x86pc is used by QNX
135 x86_32() {
136 case "$host_arch" in
137 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
138 *) return 1 ;;
139 esac
142 x86_64() {
143 case "$host_arch" in
144 x86_64|amd64) return 0 ;;
145 *) return 1 ;;
146 esac
149 x86() {
150 x86_32 || x86_64
153 ppc() {
154 case "$host_arch" in
155 ppc|ppc64|powerpc|powerpc64) return 0;;
156 *) return 1;;
157 esac
160 alpha() {
161 case "$host_arch" in
162 alpha) return 0;;
163 *) return 1;;
164 esac
167 arm() {
168 case "$host_arch" in
169 arm) return 0;;
170 *) return 1;;
171 esac
174 # Use this before starting a check
175 echocheck() {
176 echo "============ Checking for $@ ============" >> "$TMPLOG"
177 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
180 # Use this to echo the results of a check
181 echores() {
182 if test "$_res_comment" ; then
183 _res_comment="($_res_comment)"
185 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
186 echo "##########################################" >> "$TMPLOG"
187 echo "" >> "$TMPLOG"
188 echo "$@ $_res_comment"
189 _res_comment=""
191 #############################################################################
193 # Check how echo works in this /bin/sh
194 case `echo -n` in
195 -n) _echo_n= _echo_c='\c' ;; # SysV echo
196 *) _echo_n='-n ' _echo_c= ;; # BSD echo
197 esac
199 msg_lang_all=`echo help/help_mp-??.h help/help_mp-??_??.h | sed -e "s:help/help_mp-\(..\).h:\1:g" -e "s:help/help_mp-\(.....\).h:\1:g"`
200 man_lang_all=`echo DOCS/man/??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g"`
201 doc_lang_all=`echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g"`
203 show_help(){
204 cat << EOF
205 Usage: $0 [OPTIONS]...
207 Configuration:
208 -h, --help display this help and exit
210 Installation directories:
211 --prefix=DIR prefix directory for installation [/usr/local]
212 --bindir=DIR directory for installing binaries [PREFIX/bin]
213 --datadir=DIR directory for installing machine independent
214 data files (skins, etc) [PREFIX/share/mplayer]
215 --mandir=DIR directory for installing man pages [PREFIX/share/man]
216 --confdir=DIR directory for installing configuration files
217 [PREFIX/etc/mplayer]
218 --libdir=DIR directory for object code libraries [PREFIX/lib]
219 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
220 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
221 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
222 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
224 Optional features:
225 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
226 --disable-mplayer disable MPlayer compilation [enable]
227 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
228 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
229 --disable-largefiles disable support for files > 2GB [enable]
230 --enable-linux-devfs set default devices to devfs [disable]
231 --enable-termcap use termcap database for key codes [autodetect]
232 --enable-termios use termios database for key codes [autodetect]
233 --disable-iconv disable iconv for encoding conversion [autodetect]
234 --disable-langinfo do not use langinfo [autodetect]
235 --enable-lirc enable LIRC (remote control) support [autodetect]
236 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
237 --enable-joystick enable joystick support [disable]
238 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
239 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
240 --disable-vm disable X video mode extensions [autodetect]
241 --disable-xf86keysym disable support for multimedia keys [autodetect]
242 --enable-radio enable radio interface [disable]
243 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
244 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
245 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
246 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
247 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
248 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
249 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
250 --disable-tv-teletext disable TV teletext interface [autodetect]
251 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
252 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
253 --disable-network disable networking [enable]
254 --enable-winsock2_h enable winsock2_h [autodetect]
255 --enable-smb enable Samba (SMB) input [autodetect]
256 --enable-live enable LIVE555 Streaming Media [autodetect]
257 --enable-nemesi enable Nemesi Streaming Media [autodetect]
258 --disable-dvdnav disable libdvdnav [autodetect]
259 --disable-dvdread disable libdvdread [autodetect]
260 --disable-dvdread-internal disable internal libdvdread [autodetect]
261 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
262 --disable-cdparanoia disable cdparanoia [autodetect]
263 --disable-cddb disable cddb [autodetect]
264 --disable-bitmap-font disable bitmap font support [enable]
265 --disable-freetype disable FreeType 2 font rendering [autodetect]
266 --disable-fontconfig disable fontconfig font lookup [autodetect]
267 --disable-unrarexec disable using of UnRAR executable [enabled]
268 --enable-menu enable OSD menu (not DVD menu) [disabled]
269 --disable-sortsub disable subtitle sorting [enabled]
270 --enable-fribidi enable the FriBiDi libs [autodetect]
271 --disable-enca disable ENCA charset oracle library [autodetect]
272 --disable-macosx disable Mac OS X specific features [autodetect]
273 --disable-maemo disable maemo specific features [autodetect]
274 --enable-macosx-finder enable Mac OS X Finder invocation parameter
275 parsing [disabled]
276 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
277 --disable-inet6 disable IPv6 support [autodetect]
278 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
279 --disable-ftp disable FTP support [enabled]
280 --disable-vstream disable TiVo vstream client support [autodetect]
281 --disable-pthreads disable Posix threads support [autodetect]
282 --disable-w32threads disable Win32 threads support [autodetect]
283 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
284 --enable-rpath enable runtime linker path for extra libs [disabled]
286 Codecs:
287 --enable-gif enable GIF support [autodetect]
288 --enable-png enable PNG input/output support [autodetect]
289 --enable-jpeg enable JPEG input/output support [autodetect]
290 --enable-libcdio enable libcdio support [autodetect]
291 --enable-liblzo enable liblzo support [autodetect]
292 --disable-win32dll disable Win32 DLL support [enabled]
293 --disable-qtx disable QuickTime codecs support [enabled]
294 --disable-xanim disable XAnim codecs support [enabled]
295 --disable-real disable RealPlayer codecs support [enabled]
296 --disable-xvid disable Xvid [autodetect]
297 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
298 --disable-x264 disable x264 [autodetect]
299 --disable-x264-lavc disable x264 in libavcodec [autodetect]
300 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
301 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
302 decoder) [autodetect]
303 --disable-libnut disable libnut [autodetect]
304 --disable-libavutil_a disable static libavutil [autodetect]
305 --disable-libavcodec_a disable static libavcodec [autodetect]
306 --disable-libavformat_a disable static libavformat [autodetect]
307 --disable-libpostproc_a disable static libpostproc [autodetect]
308 --disable-libswscale_a disable static libswscale [autodetect]
309 --disable-libavutil_so disable shared libavutil [autodetect]
310 --disable-libavcodec_so disable shared libavcodec [autodetect]
311 --disable-libavformat_so disable shared libavformat [autodetect]
312 --disable-libpostproc_so disable shared libpostproc [autodetect]
313 --disable-libswscale_so disable shared libswscale [autodetect]
314 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
315 in libavcodec [enabled]
316 --disable-tremor-internal disable internal Tremor [enabled]
317 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
318 --enable-tremor enable external Tremor [autodetect]
319 --disable-libvorbis disable libvorbis support [autodetect]
320 --disable-speex disable Speex support [autodetect]
321 --enable-theora enable OggTheora libraries [autodetect]
322 --enable-faad enable external FAAD2 (AAC) [autodetect]
323 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
324 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
325 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
326 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
327 --disable-ladspa disable LADSPA plugin support [autodetect]
328 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
329 --disable-mad disable libmad (MPEG audio) support [autodetect]
330 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
331 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
332 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
333 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
334 --enable-xmms enable XMMS input plugin support [disabled]
335 --enable-libdca enable libdca support [autodetect]
336 --disable-mp3lib disable builtin mp3lib [autodetect]
337 --disable-liba52 disable liba52 [autodetect]
338 --disable-liba52-internal disable builtin liba52 [autodetect]
339 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
340 --disable-musepack disable musepack support [autodetect]
341 --disable-libamr_nb disable libamr narrowband [autodetect]
342 --disable-libamr_wb disable libamr wideband [autodetect]
343 --disable-decoder=DECODER disable specified FFmpeg decoder
344 --enable-decoder=DECODER enable specified FFmpeg decoder
345 --disable-encoder=ENCODER disable specified FFmpeg encoder
346 --enable-encoder=ENCODER enable specified FFmpeg encoder
347 --disable-parser=PARSER disable specified FFmpeg parser
348 --enable-parser=PARSER enable specified FFmpeg parser
349 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
350 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
351 --disable-muxer=MUXER disable specified FFmpeg muxer
352 --enable-muxer=MUXER enable specified FFmpeg muxer
354 Video output:
355 --disable-vidix disable VIDIX [for x86 *nix]
356 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
357 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
358 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
359 --disable-vidix-pcidb disable VIDIX PCI device name database
360 --enable-dhahelper enable VIDIX dhahelper support
361 --enable-svgalib_helper enable VIDIX svgalib_helper support
362 --enable-gl enable OpenGL 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-aa enable AAlib video output [autodetect]
369 --enable-caca enable CACA video output [autodetect]
370 --enable-ggi enable GGI video output [autodetect]
371 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
372 --enable-directx enable DirectX video output [autodetect]
373 --enable-dxr2 enable DXR2 video output [autodetect]
374 --enable-dxr3 enable DXR3/H+ video output [autodetect]
375 --enable-ivtv enable IVTV TV-Out video output [autodetect]
376 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
377 --enable-dvb enable DVB video output [autodetect]
378 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
379 --enable-mga enable mga_vid video output [autodetect]
380 --enable-xmga enable mga_vid X11 video output [autodetect]
381 --enable-xv enable Xv video output [autodetect]
382 --enable-xvmc enable XvMC acceleration [disable]
383 --enable-vm enable XF86VidMode support [autodetect]
384 --enable-xinerama enable Xinerama support [autodetect]
385 --enable-x11 enable X11 video output [autodetect]
386 --enable-xshape enable XShape support [autodetect]
387 --disable-xss disable screensaver support via xss [autodetect]
388 --enable-fbdev enable FBDev video output [autodetect]
389 --enable-mlib enable mediaLib video output (Solaris) [disable]
390 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
391 --enable-tdfxfb enable tdfxfb video output [disable]
392 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
393 --enable-wii enable Nintendo Wii/GameCube video output [disable]
394 --enable-directfb enable DirectFB video output [autodetect]
395 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
396 --enable-bl enable Blinkenlights video output [disable]
397 --enable-tdfxvid enable tdfx_vid video output [disable]
398 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
399 --disable-tga disable Targa video output [enable]
400 --disable-pnm disable PNM video output [enable]
401 --disable-md5sum disable md5sum video output [enable]
402 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
404 Audio output:
405 --disable-alsa disable ALSA audio output [autodetect]
406 --disable-ossaudio disable OSS audio output [autodetect]
407 --disable-arts disable aRts audio output [autodetect]
408 --disable-esd disable esd audio output [autodetect]
409 --disable-pulse disable Pulseaudio audio output [autodetect]
410 --disable-jack disable JACK audio output [autodetect]
411 --disable-openal disable OpenAL audio output [autodetect]
412 --disable-nas disable NAS audio output [autodetect]
413 --disable-sgiaudio disable SGI audio output [autodetect]
414 --disable-sunaudio disable Sun audio output [autodetect]
415 --disable-win32waveout disable Windows waveout audio output [autodetect]
416 --disable-select disable using select() on the audio device [enable]
418 Miscellaneous options:
419 --enable-runtime-cpudetection enable runtime CPU detection [disable]
420 --enable-cross-compile enable cross-compilation [autodetect]
421 --cc=COMPILER C compiler to build MPlayer [gcc]
422 --host-cc=COMPILER C compiler for tools needed while building [gcc]
423 --as=ASSEMBLER assembler to build MPlayer [as]
424 --yasm=YASM Yasm assembler to build MPlayer [yasm]
425 --ar=AR librarian to build MPlayer [ar]
426 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
427 --windres=WINDRES windres to build MPlayer [windres]
428 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
429 --enable-static build a statically linked binary
430 --charset=charset convert the console messages to this character set
431 --language=list a white space or comma separated list of languages for
432 translated man pages, the first language is used for
433 messages and the GUI (the environment variable
434 \$LINGUAS is also honored) [en]
435 (Available: all $msg_lang_all)
436 --with-install=PATH path to a custom install program
438 Advanced options:
439 --enable-mmx enable MMX [autodetect]
440 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
441 --enable-3dnow enable 3DNow! [autodetect]
442 --enable-3dnowext enable extended 3DNow! [autodetect]
443 --enable-sse enable SSE [autodetect]
444 --enable-sse2 enable SSE2 [autodetect]
445 --enable-ssse3 enable SSSE3 [autodetect]
446 --enable-shm enable shm [autodetect]
447 --enable-altivec enable AltiVec (PowerPC) [autodetect]
448 --enable-armv5te enable DSP extensions (ARM) [autodetect]
449 --enable-armv6 enable ARMv6 (ARM) [autodetect]
450 --enable-armvfp enable ARM VFP (ARM) [autodetect]
451 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
452 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
453 --enable-big-endian force byte order to big-endian [autodetect]
454 --enable-debug[=1-3] compile-in debugging information [disable]
455 --enable-profile compile-in profiling information [disable]
456 --disable-sighandler disable sighandler for crashes [enable]
457 --enable-crash-debug enable automatic gdb attach on crash [disable]
458 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
460 Use these options if autodetection fails (Options marked with (*) accept
461 multiple paths separated by ':'):
462 --extra-libs=FLAGS extra linker flags
463 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
464 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
465 --with-extraincdir=DIR extra header search paths in DIR (*)
466 --with-extralibdir=DIR extra linker search paths in DIR (*)
467 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
469 --with-freetype-config=PATH path to freetype-config
470 --with-fribidi-config=PATH path to fribidi-config
471 --with-glib-config=PATH path to glib*-config
472 --with-gtk-config=PATH path to gtk*-config
473 --with-sdl-config=PATH path to sdl*-config
474 --with-dvdnav-config=PATH path to dvdnav-config
475 --with-dvdread-config=PATH path to dvdread-config
477 This configure script is NOT autoconf-based, even though its output is similar.
478 It will try to autodetect all configuration options. If you --enable an option
479 it will be forcefully turned on, skipping autodetection. This can break
480 compilation, so you need to know what you are doing.
482 exit 0
483 } #show_help()
485 # GOTCHA: the variables below defines the default behavior for autodetection
486 # and have - unless stated otherwise - at least 2 states : yes no
487 # If autodetection is available then the third state is: auto
488 _mmx=auto
489 _3dnow=auto
490 _3dnowext=auto
491 _mmxext=auto
492 _sse=auto
493 _sse2=auto
494 _ssse3=auto
495 _cmov=auto
496 _fast_cmov=auto
497 _armv5te=auto
498 _armv6=auto
499 _armvfp=auto
500 _iwmmxt=auto
501 _mtrr=auto
502 _altivec=auto
503 _install=install
504 _ranlib=ranlib
505 _windres=windres
506 _cc=cc
507 _ar=ar
508 test "$CC" && _cc="$CC"
509 _as=auto
510 _yasm=yasm
511 _runtime_cpudetection=no
512 _cross_compile=auto
513 _prefix="/usr/local"
514 _libavutil_a=auto
515 _libavutil_so=auto
516 _libavcodec_a=auto
517 _libamr_nb=auto
518 _libamr_wb=auto
519 _libavdecoders_all=`sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
520 _libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER// `
521 _libavencoders_all=`sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
522 _libavencoders=` echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g'`
523 _libavparsers_all=`sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
524 _libavparsers=$_libavparsers_all
525 _libavbsfs_all=`sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
526 _libavbsfs=$_libavbsfs_all
527 _libavdemuxers_all=`sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
528 _libavdemuxers=`echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER// -e s/AVISYNTH_DEMUXER// `
529 _libavmuxers_all=`sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
530 _libavmuxers=`echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// `
531 _libavprotocols_all=`sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
532 _libavcodec_so=auto
533 _libavformat_a=auto
534 _libavformat_so=auto
535 _libpostproc_a=auto
536 _libpostproc_so=auto
537 _libswscale_a=auto
538 _libswscale_so=auto
539 _libavcodec_mpegaudio_hp=yes
540 _mencoder=yes
541 _mplayer=yes
542 _x11=auto
543 _xshape=auto
544 _xss=auto
545 _dga1=auto
546 _dga2=auto
547 _xv=auto
548 _xvmc=no #auto when complete
549 _sdl=auto
550 _directx=auto
551 _win32waveout=auto
552 _nas=auto
553 _png=auto
554 _jpeg=auto
555 _pnm=yes
556 _md5sum=yes
557 _yuv4mpeg=yes
558 _gif=auto
559 _gl=auto
560 _ggi=auto
561 _ggiwmh=auto
562 _aa=auto
563 _caca=auto
564 _svga=auto
565 _vesa=auto
566 _fbdev=auto
567 _dvb=auto
568 _dvbhead=auto
569 _dxr2=auto
570 _dxr3=auto
571 _ivtv=auto
572 _v4l2=auto
573 _iconv=auto
574 _langinfo=auto
575 _rtc=auto
576 _ossaudio=auto
577 _arts=auto
578 _esd=auto
579 _pulse=auto
580 _jack=auto
581 _openal=auto
582 _libcdio=auto
583 _liblzo=auto
584 _mad=auto
585 _mp3lame=auto
586 _mp3lame_lavc=auto
587 _toolame=auto
588 _twolame=auto
589 _tremor=auto
590 _tremor_internal=yes
591 _tremor_low=no
592 _libvorbis=auto
593 _speex=auto
594 _theora=auto
595 _mp3lib=auto
596 _liba52=auto
597 _liba52_internal=auto
598 _libdca=auto
599 _libmpeg2=auto
600 _faad=auto
601 _faad_internal=auto
602 _faad_fixed=no
603 _faac=auto
604 _faac_lavc=auto
605 _ladspa=auto
606 _xmms=no
607 _dvdnav=auto
608 _dvdnavconfig=dvdnav-config
609 _dvdreadconfig=dvdread-config
610 _dvdread=auto
611 _dvdread_internal=auto
612 _libdvdcss_internal=auto
613 _xanim=auto
614 _real=auto
615 _live=auto
616 _nemesi=auto
617 _native_rtsp=yes
618 _xinerama=auto
619 _mga=auto
620 _xmga=auto
621 _vm=auto
622 _xf86keysym=auto
623 _mlib=no #broken, thus disabled
624 _sgiaudio=auto
625 _sunaudio=auto
626 _alsa=auto
627 _fastmemcpy=yes
628 _unrar_exec=auto
629 _win32dll=auto
630 _select=yes
631 _radio=no
632 _radio_capture=no
633 _radio_v4l=auto
634 _radio_v4l2=auto
635 _radio_bsdbt848=auto
636 _tv=yes
637 _tv_v4l1=auto
638 _tv_v4l2=auto
639 _tv_bsdbt848=auto
640 _tv_dshow=auto
641 _tv_teletext=auto
642 _pvr=auto
643 _network=yes
644 _winsock2_h=auto
645 _smb=auto
646 _vidix=auto
647 _vidix_pcidb=yes
648 _dhahelper=no
649 _svgalib_helper=no
650 _joystick=no
651 _xvid=auto
652 _xvid_lavc=auto
653 _x264=auto
654 _x264_lavc=auto
655 _libdirac_lavc=auto
656 _libschroedinger_lavc=auto
657 _libnut=auto
658 _lirc=auto
659 _lircc=auto
660 _apple_remote=auto
661 _apple_ir=auto
662 _gui=no
663 _gtk1=no
664 _termcap=auto
665 _termios=auto
666 _3dfx=no
667 _s3fb=no
668 _wii=no
669 _tdfxfb=no
670 _tdfxvid=no
671 _xvr100=auto
672 _tga=yes
673 _directfb=auto
674 _zr=auto
675 _bl=no
676 _largefiles=yes
677 #_language=en
678 _shm=auto
679 _linux_devfs=no
680 _charset="UTF-8"
681 _dynamic_plugins=no
682 _crash_debug=no
683 _sighandler=yes
684 _libdv=auto
685 _cdparanoia=auto
686 _cddb=auto
687 _big_endian=auto
688 _bitmap_font=yes
689 _freetype=auto
690 _fontconfig=auto
691 _menu=no
692 _qtx=auto
693 _macosx=auto
694 _maemo=auto
695 _macosx_finder=no
696 _macosx_bundle=auto
697 _sortsub=yes
698 _freetypeconfig='freetype-config'
699 _fribidi=auto
700 _fribidiconfig='fribidi-config'
701 _enca=auto
702 _inet6=auto
703 _gethostbyname2=auto
704 _ftp=yes
705 _musepack=auto
706 _vstream=auto
707 _pthreads=auto
708 _w32threads=auto
709 _ass=auto
710 _rpath=no
711 _asmalign_pot=auto
712 _stream_cache=yes
713 _def_stream_cache="#define CONFIG_STREAM_CACHE 1"
714 _need_shmem=yes
715 for ac_option do
716 case "$ac_option" in
717 --help|-help|-h)
718 show_help
720 --prefix=*)
721 _prefix=`echo $ac_option | cut -d '=' -f 2`
723 --bindir=*)
724 _bindir=`echo $ac_option | cut -d '=' -f 2`
726 --datadir=*)
727 _datadir=`echo $ac_option | cut -d '=' -f 2`
729 --mandir=*)
730 _mandir=`echo $ac_option | cut -d '=' -f 2`
732 --confdir=*)
733 _confdir=`echo $ac_option | cut -d '=' -f 2`
735 --libdir=*)
736 _libdir=`echo $ac_option | cut -d '=' -f 2`
738 --codecsdir=*)
739 _codecsdir=`echo $ac_option | cut -d '=' -f 2`
741 --win32codecsdir=*)
742 _win32codecsdir=`echo $ac_option | cut -d '=' -f 2`
744 --xanimcodecsdir=*)
745 _xanimcodecsdir=`echo $ac_option | cut -d '=' -f 2`
747 --realcodecsdir=*)
748 _realcodecsdir=`echo $ac_option | cut -d '=' -f 2`
750 --with-extraincdir=*)
751 _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'`
753 --with-extralibdir=*)
754 _ld_extra=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
757 --with-install=*)
758 _install=`echo $ac_option | cut -d '=' -f 2 `
760 --with-xvmclib=*)
761 _xvmclib=`echo $ac_option | cut -d '=' -f 2`
764 --with-sdl-config=*)
765 _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
767 --with-freetype-config=*)
768 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2`
770 --with-fribidi-config=*)
771 _fribidiconfig=`echo $ac_option | cut -d '=' -f 2`
773 --with-gtk-config=*)
774 _gtkconfig=`echo $ac_option | cut -d '=' -f 2`
776 --with-glib-config=*)
777 _glibconfig=`echo $ac_option | cut -d '=' -f 2`
779 --with-dvdnav-config=*)
780 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
782 --with-dvdread-config=*)
783 _dvdreadconfig=`echo $ac_option | cut -d '=' -f 2`
786 --extra-libs=*)
787 _extra_libs=`echo $ac_option | cut -d '=' -f 2`
789 --extra-libs-mplayer=*)
790 _libs_mplayer=`echo $ac_option | cut -d '=' -f 2`
792 --extra-libs-mencoder=*)
793 _libs_mencoder=`echo $ac_option | cut -d '=' -f 2`
796 --target=*)
797 _target=`echo $ac_option | cut -d '=' -f 2`
799 --cc=*)
800 _cc=`echo $ac_option | cut -d '=' -f 2`
802 --host-cc=*)
803 _host_cc=`echo $ac_option | cut -d '=' -f 2`
805 --as=*)
806 _as=`echo $ac_option | cut -d '=' -f 2`
808 --yasm=*)
809 _yasm=`echo $ac_option | cut -d '=' -f 2`
811 --ar=*)
812 _ar=`echo $ac_option | cut -d '=' -f 2`
814 --ranlib=*)
815 _ranlib=`echo $ac_option | cut -d '=' -f 2`
817 --windres=*)
818 _windres=`echo $ac_option | cut -d '=' -f 2`
820 --charset=*)
821 _charset=`echo $ac_option | cut -d '=' -f 2`
823 --language=*)
824 _language=`echo $ac_option | cut -d '=' -f 2`
827 --enable-static)
828 _ld_static='-static'
830 --disable-static)
831 _ld_static=''
833 --enable-profile)
834 _profile='-p'
836 --disable-profile)
837 _profile=
839 --enable-debug)
840 _debug='-g'
842 --enable-debug=*)
843 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
845 --disable-debug)
846 _debug=
848 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
849 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
850 --enable-cross-compile) _cross_compile=yes ;;
851 --disable-cross-compile) _cross_compile=no ;;
852 --enable-mencoder) _mencoder=yes ;;
853 --disable-mencoder) _mencoder=no ;;
854 --enable-mplayer) _mplayer=yes ;;
855 --disable-mplayer) _mplayer=no ;;
856 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
857 --disable-dynamic-plugins) _dynamic_plugins=no ;;
858 --enable-x11) _x11=yes ;;
859 --disable-x11) _x11=no ;;
860 --enable-xshape) _xshape=yes ;;
861 --disable-xshape) _xshape=no ;;
862 --enable-xss) _xss=yes ;;
863 --disable-xss) _xss=no ;;
864 --enable-xv) _xv=yes ;;
865 --disable-xv) _xv=no ;;
866 --enable-xvmc) _xvmc=yes ;;
867 --disable-xvmc) _xvmc=no ;;
868 --enable-sdl) _sdl=yes ;;
869 --disable-sdl) _sdl=no ;;
870 --enable-directx) _directx=yes ;;
871 --disable-directx) _directx=no ;;
872 --enable-win32waveout) _win32waveout=yes ;;
873 --disable-win32waveout) _win32waveout=no ;;
874 --enable-nas) _nas=yes ;;
875 --disable-nas) _nas=no ;;
876 --enable-png) _png=yes ;;
877 --disable-png) _png=no ;;
878 --enable-jpeg) _jpeg=yes ;;
879 --disable-jpeg) _jpeg=no ;;
880 --enable-pnm) _pnm=yes ;;
881 --disable-pnm) _pnm=no ;;
882 --enable-md5sum) _md5sum=yes ;;
883 --disable-md5sum) _md5sum=no ;;
884 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
885 --disable-yuv4mpeg) _yuv4mpeg=no ;;
886 --enable-gif) _gif=yes ;;
887 --disable-gif) _gif=no ;;
888 --enable-gl) _gl=yes ;;
889 --disable-gl) _gl=no ;;
890 --enable-ggi) _ggi=yes ;;
891 --disable-ggi) _ggi=no ;;
892 --enable-ggiwmh) _ggiwmh=yes ;;
893 --disable-ggiwmh) _ggiwmh=no ;;
894 --enable-aa) _aa=yes ;;
895 --disable-aa) _aa=no ;;
896 --enable-caca) _caca=yes ;;
897 --disable-caca) _caca=no ;;
898 --enable-svga) _svga=yes ;;
899 --disable-svga) _svga=no ;;
900 --enable-vesa) _vesa=yes ;;
901 --disable-vesa) _vesa=no ;;
902 --enable-fbdev) _fbdev=yes ;;
903 --disable-fbdev) _fbdev=no ;;
904 --enable-dvb) _dvb=yes ;;
905 --disable-dvb) _dvb=no ;;
906 --enable-dvbhead) _dvbhead=yes ;;
907 --disable-dvbhead) _dvbhead=no ;;
908 --enable-dxr2) _dxr2=yes ;;
909 --disable-dxr2) _dxr2=no ;;
910 --enable-dxr3) _dxr3=yes ;;
911 --disable-dxr3) _dxr3=no ;;
912 --enable-ivtv) _ivtv=yes ;;
913 --disable-ivtv) _ivtv=no ;;
914 --enable-v4l2) _v4l2=yes ;;
915 --disable-v4l2) _v4l2=no ;;
916 --enable-iconv) _iconv=yes ;;
917 --disable-iconv) _iconv=no ;;
918 --enable-langinfo) _langinfo=yes ;;
919 --disable-langinfo) _langinfo=no ;;
920 --enable-rtc) _rtc=yes ;;
921 --disable-rtc) _rtc=no ;;
922 --enable-libdv) _libdv=yes ;;
923 --disable-libdv) _libdv=no ;;
924 --enable-ossaudio) _ossaudio=yes ;;
925 --disable-ossaudio) _ossaudio=no ;;
926 --enable-arts) _arts=yes ;;
927 --disable-arts) _arts=no ;;
928 --enable-esd) _esd=yes ;;
929 --disable-esd) _esd=no ;;
930 --enable-pulse) _pulse=yes ;;
931 --disable-pulse) _pulse=no ;;
932 --enable-jack) _jack=yes ;;
933 --disable-jack) _jack=no ;;
934 --enable-openal) _openal=yes ;;
935 --disable-openal) _openal=no ;;
936 --enable-mad) _mad=yes ;;
937 --disable-mad) _mad=no ;;
938 --enable-mp3lame) _mp3lame=yes ;;
939 --disable-mp3lame) _mp3lame=no ;;
940 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
941 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
942 --enable-toolame) _toolame=yes ;;
943 --disable-toolame) _toolame=no ;;
944 --enable-twolame) _twolame=yes ;;
945 --disable-twolame) _twolame=no ;;
946 --enable-libcdio) _libcdio=yes ;;
947 --disable-libcdio) _libcdio=no ;;
948 --enable-liblzo) _liblzo=yes ;;
949 --disable-liblzo) _liblzo=no ;;
950 --enable-libvorbis) _libvorbis=yes ;;
951 --disable-libvorbis) _libvorbis=no ;;
952 --enable-speex) _speex=yes ;;
953 --disable-speex) _speex=no ;;
954 --enable-tremor) _tremor=yes ;;
955 --disable-tremor) _tremor=no ;;
956 --enable-tremor-internal) _tremor_internal=yes ;;
957 --disable-tremor-internal) _tremor_internal=no ;;
958 --enable-tremor-low) _tremor_low=yes ;;
959 --disable-tremor-low) _tremor_low=no ;;
960 --enable-theora) _theora=yes ;;
961 --disable-theora) _theora=no ;;
962 --enable-mp3lib) _mp3lib=yes ;;
963 --disable-mp3lib) _mp3lib=no ;;
964 --enable-liba52-internal) _liba52_internal=yes ;;
965 --disable-liba52-internal) _liba52_internal=no ;;
966 --enable-liba52) _liba52=yes ;;
967 --disable-liba52) _liba52=no ;;
968 --enable-libdca) _libdca=yes ;;
969 --disable-libdca) _libdca=no ;;
970 --enable-libmpeg2) _libmpeg2=yes ;;
971 --disable-libmpeg2) _libmpeg2=no ;;
972 --enable-musepack) _musepack=yes ;;
973 --disable-musepack) _musepack=no ;;
974 --enable-faad) _faad=yes ;;
975 --disable-faad) _faad=no ;;
976 --enable-faad-internal) _faad_internal=yes ;;
977 --disable-faad-internal) _faad_internal=no ;;
978 --enable-faad-fixed) _faad_fixed=yes ;;
979 --disable-faad-fixed) _faad_fixed=no ;;
980 --enable-faac) _faac=yes ;;
981 --disable-faac) _faac=no ;;
982 --enable-faac-lavc) _faac_lavc=yes ;;
983 --disable-faac-lavc) _faac_lavc=no ;;
984 --enable-ladspa) _ladspa=yes ;;
985 --disable-ladspa) _ladspa=no ;;
986 --enable-xmms) _xmms=yes ;;
987 --disable-xmms) _xmms=no ;;
988 --enable-dvdread) _dvdread=yes ;;
989 --disable-dvdread) _dvdread=no ;;
990 --enable-dvdread-internal) _dvdread_internal=yes ;;
991 --disable-dvdread-internal) _dvdread_internal=no ;;
992 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
993 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
994 --enable-dvdnav) _dvdnav=yes ;;
995 --disable-dvdnav) _dvdnav=no ;;
996 --enable-xanim) _xanim=yes ;;
997 --disable-xanim) _xanim=no ;;
998 --enable-real) _real=yes ;;
999 --disable-real) _real=no ;;
1000 --enable-live) _live=yes ;;
1001 --disable-live) _live=no ;;
1002 --enable-nemesi) _nemesi=yes ;;
1003 --disable-nemesi) _nemesi=no ;;
1004 --enable-xinerama) _xinerama=yes ;;
1005 --disable-xinerama) _xinerama=no ;;
1006 --enable-mga) _mga=yes ;;
1007 --disable-mga) _mga=no ;;
1008 --enable-xmga) _xmga=yes ;;
1009 --disable-xmga) _xmga=no ;;
1010 --enable-vm) _vm=yes ;;
1011 --disable-vm) _vm=no ;;
1012 --enable-xf86keysym) _xf86keysym=yes ;;
1013 --disable-xf86keysym) _xf86keysym=no ;;
1014 --enable-mlib) _mlib=yes ;;
1015 --disable-mlib) _mlib=no ;;
1016 --enable-sunaudio) _sunaudio=yes ;;
1017 --disable-sunaudio) _sunaudio=no ;;
1018 --enable-sgiaudio) _sgiaudio=yes ;;
1019 --disable-sgiaudio) _sgiaudio=no ;;
1020 --enable-alsa) _alsa=yes ;;
1021 --disable-alsa) _alsa=no ;;
1022 --enable-tv) _tv=yes ;;
1023 --disable-tv) _tv=no ;;
1024 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1025 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1026 --enable-tv-v4l1) _tv_v4l1=yes ;;
1027 --disable-tv-v4l1) _tv_v4l1=no ;;
1028 --enable-tv-v4l2) _tv_v4l2=yes ;;
1029 --disable-tv-v4l2) _tv_v4l2=no ;;
1030 --enable-tv-dshow) _tv_dshow=yes ;;
1031 --disable-tv-dshow) _tv_dshow=no ;;
1032 --enable-tv-teletext) _tv_teletext=yes ;;
1033 --disable-tv-teletext) _tv_teletext=no ;;
1034 --enable-radio) _radio=yes ;;
1035 --enable-radio-capture) _radio_capture=yes ;;
1036 --disable-radio-capture) _radio_capture=no ;;
1037 --disable-radio) _radio=no ;;
1038 --enable-radio-v4l) _radio_v4l=yes ;;
1039 --disable-radio-v4l) _radio_v4l=no ;;
1040 --enable-radio-v4l2) _radio_v4l2=yes ;;
1041 --disable-radio-v4l2) _radio_v4l2=no ;;
1042 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1043 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1044 --enable-pvr) _pvr=yes ;;
1045 --disable-pvr) _pvr=no ;;
1046 --enable-fastmemcpy) _fastmemcpy=yes ;;
1047 --disable-fastmemcpy) _fastmemcpy=no ;;
1048 --enable-network) _network=yes ;;
1049 --disable-network) _network=no ;;
1050 --enable-winsock2_h) _winsock2_h=yes ;;
1051 --disable-winsock2_h) _winsock2_h=no ;;
1052 --enable-smb) _smb=yes ;;
1053 --disable-smb) _smb=no ;;
1054 --enable-vidix) _vidix=yes ;;
1055 --disable-vidix) _vidix=no ;;
1056 --with-vidix-drivers=*)
1057 _vidix_drivers=`echo $ac_option | cut -d '=' -f 2`
1059 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1060 --enable-dhahelper) _dhahelper=yes ;;
1061 --disable-dhahelper) _dhahelper=no ;;
1062 --enable-svgalib_helper) _svgalib_helper=yes ;;
1063 --disable-svgalib_helper) _svgalib_helper=no ;;
1064 --enable-joystick) _joystick=yes ;;
1065 --disable-joystick) _joystick=no ;;
1066 --enable-xvid) _xvid=yes ;;
1067 --disable-xvid) _xvid=no ;;
1068 --enable-xvid-lavc) _xvid_lavc=yes ;;
1069 --disable-xvid-lavc) _xvid_lavc=no ;;
1070 --enable-x264) _x264=yes ;;
1071 --disable-x264) _x264=no ;;
1072 --enable-x264-lavc) _x264_lavc=yes ;;
1073 --disable-x264-lavc) _x264_lavc=no ;;
1074 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1075 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1076 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1077 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1078 --enable-libnut) _libnut=yes ;;
1079 --disable-libnut) _libnut=no ;;
1080 --enable-libavutil_a) _libavutil_a=yes ;;
1081 --disable-libavutil_a) _libavutil_a=no ;;
1082 --enable-libavutil_so) _libavutil_so=yes ;;
1083 --disable-libavutil_so) _libavutil_so=no ;;
1084 --enable-libavcodec_a) _libavcodec_a=yes ;;
1085 --disable-libavcodec_a) _libavcodec_a=no ;;
1086 --enable-libavcodec_so) _libavcodec_so=yes ;;
1087 --disable-libavcodec_so) _libavcodec_so=no ;;
1088 --enable-libamr_nb) _libamr_nb=yes ;;
1089 --disable-libamr_nb) _libamr_nb=no ;;
1090 --enable-libamr_wb) _libamr_wb=yes ;;
1091 --disable-libamr_wb) _libamr_wb=no ;;
1092 --enable-decoder=*) _libavdecoders="$_libavdecoders `echo $ac_option | cut -d '=' -f 2`" ;;
1093 --disable-decoder=*) _libavdecoders=`echo $_libavdecoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1094 --enable-encoder=*) _libavencoders="$_libavencoders `echo $ac_option | cut -d '=' -f 2`" ;;
1095 --disable-encoder=*) _libavencoders=`echo $_libavencoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1096 --enable-parser=*) _libavparsers="$_libavparsers `echo $ac_option | cut -d '=' -f 2`" ;;
1097 --disable-parser=*) _libavparsers=`echo $_libavparsers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1098 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1099 --disable-demuxer=*) _libavdemuxers=`echo $_libavdemuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1100 --enable-muxer=*) _libavmuxers="$_libavmuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1101 --disable-muxer=*) _libavmuxers=`echo $_libavmuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1102 --enable-libavformat_a) _libavformat_a=yes ;;
1103 --disable-libavformat_a) _libavformat_a=no ;;
1104 --enable-libavformat_so) _libavformat_so=yes ;;
1105 --disable-libavformat_so) _libavformat_so=no ;;
1106 --enable-libpostproc_a) _libpostproc_a=yes ;;
1107 --disable-libpostproc_a) _libpostproc_a=no ;;
1108 --enable-libpostproc_so) _libpostproc_so=yes ;;
1109 --disable-libpostproc_so) _libpostproc_so=no ;;
1110 --enable-libswscale_a) _libswscale_a=yes ;;
1111 --disable-libswscale_a) _libswscale_a=no ;;
1112 --enable-libswscale_so) _libswscale_so=yes ;;
1113 --disable-libswscale_so) _libswscale_so=no ;;
1114 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1115 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1117 --enable-lirc) _lirc=yes ;;
1118 --disable-lirc) _lirc=no ;;
1119 --enable-lircc) _lircc=yes ;;
1120 --disable-lircc) _lircc=no ;;
1121 --enable-apple-remote) _apple_remote=yes ;;
1122 --disable-apple-remote) _apple_remote=no ;;
1123 --enable-apple-ir) _apple_ir=yes ;;
1124 --disable-apple-ir) _apple_ir=no ;;
1125 --enable-gui) _gui=yes ;;
1126 --disable-gui) _gui=no ;;
1127 --enable-gtk1) _gtk1=yes ;;
1128 --disable-gtk1) _gtk1=no ;;
1129 --enable-termcap) _termcap=yes ;;
1130 --disable-termcap) _termcap=no ;;
1131 --enable-termios) _termios=yes ;;
1132 --disable-termios) _termios=no ;;
1133 --enable-3dfx) _3dfx=yes ;;
1134 --disable-3dfx) _3dfx=no ;;
1135 --enable-s3fb) _s3fb=yes ;;
1136 --disable-s3fb) _s3fb=no ;;
1137 --enable-wii) _wii=yes ;;
1138 --disable-wii) _wii=no ;;
1139 --enable-tdfxfb) _tdfxfb=yes ;;
1140 --disable-tdfxfb) _tdfxfb=no ;;
1141 --disable-tdfxvid) _tdfxvid=no ;;
1142 --enable-tdfxvid) _tdfxvid=yes ;;
1143 --disable-xvr100) _xvr100=no ;;
1144 --enable-xvr100) _xvr100=yes ;;
1145 --disable-tga) _tga=no ;;
1146 --enable-tga) _tga=yes ;;
1147 --enable-directfb) _directfb=yes ;;
1148 --disable-directfb) _directfb=no ;;
1149 --enable-zr) _zr=yes ;;
1150 --disable-zr) _zr=no ;;
1151 --enable-bl) _bl=yes ;;
1152 --disable-bl) _bl=no ;;
1153 --enable-mtrr) _mtrr=yes ;;
1154 --disable-mtrr) _mtrr=no ;;
1155 --enable-largefiles) _largefiles=yes ;;
1156 --disable-largefiles) _largefiles=no ;;
1157 --enable-shm) _shm=yes ;;
1158 --disable-shm) _shm=no ;;
1159 --enable-select) _select=yes ;;
1160 --disable-select) _select=no ;;
1161 --enable-linux-devfs) _linux_devfs=yes ;;
1162 --disable-linux-devfs) _linux_devfs=no ;;
1163 --enable-cdparanoia) _cdparanoia=yes ;;
1164 --disable-cdparanoia) _cdparanoia=no ;;
1165 --enable-cddb) _cddb=yes ;;
1166 --disable-cddb) _cddb=no ;;
1167 --enable-big-endian) _big_endian=yes ;;
1168 --disable-big-endian) _big_endian=no ;;
1169 --enable-bitmap-font) _bitmap_font=yes ;;
1170 --disable-bitmap-font) _bitmap_font=no ;;
1171 --enable-freetype) _freetype=yes ;;
1172 --disable-freetype) _freetype=no ;;
1173 --enable-fontconfig) _fontconfig=yes ;;
1174 --disable-fontconfig) _fontconfig=no ;;
1175 --enable-unrarexec) _unrar_exec=yes ;;
1176 --disable-unrarexec) _unrar_exec=no ;;
1177 --enable-ftp) _ftp=yes ;;
1178 --disable-ftp) _ftp=no ;;
1179 --enable-vstream) _vstream=yes ;;
1180 --disable-vstream) _vstream=no ;;
1181 --enable-pthreads) _pthreads=yes ;;
1182 --disable-pthreads) _pthreads=no ;;
1183 --enable-w32threads) _w32threads=yes ;;
1184 --disable-w32threads) _w32threads=no ;;
1185 --enable-ass) _ass=yes ;;
1186 --disable-ass) _ass=no ;;
1187 --enable-rpath) _rpath=yes ;;
1188 --disable-rpath) _rpath=no ;;
1190 --enable-fribidi) _fribidi=yes ;;
1191 --disable-fribidi) _fribidi=no ;;
1193 --enable-enca) _enca=yes ;;
1194 --disable-enca) _enca=no ;;
1196 --enable-inet6) _inet6=yes ;;
1197 --disable-inet6) _inet6=no ;;
1199 --enable-gethostbyname2) _gethostbyname2=yes ;;
1200 --disable-gethostbyname2) _gethostbyname2=no ;;
1202 --enable-dga1) _dga1=yes ;;
1203 --disable-dga1) _dga1=no ;;
1204 --enable-dga2) _dga2=yes ;;
1205 --disable-dga2) _dga2=no ;;
1207 --enable-menu) _menu=yes ;;
1208 --disable-menu) _menu=no ;;
1210 --enable-qtx) _qtx=yes ;;
1211 --disable-qtx) _qtx=no ;;
1213 --enable-macosx) _macosx=yes ;;
1214 --disable-macosx) _macosx=no ;;
1215 --enable-macosx-finder) _macosx_finder=yes ;;
1216 --disable-macosx-finder) _macosx_finder=no ;;
1217 --enable-macosx-bundle) _macosx_bundle=yes;;
1218 --disable-macosx-bundle) _macosx_bundle=no;;
1220 --enable-maemo) _maemo=yes ;;
1221 --disable-maemo) _maemo=no ;;
1223 --enable-sortsub) _sortsub=yes ;;
1224 --disable-sortsub) _sortsub=no ;;
1226 --enable-crash-debug) _crash_debug=yes ;;
1227 --disable-crash-debug) _crash_debug=no ;;
1228 --enable-sighandler) _sighandler=yes ;;
1229 --disable-sighandler) _sighandler=no ;;
1230 --enable-win32dll) _win32dll=yes ;;
1231 --disable-win32dll) _win32dll=no ;;
1233 --enable-sse) _sse=yes ;;
1234 --disable-sse) _sse=no ;;
1235 --enable-sse2) _sse2=yes ;;
1236 --disable-sse2) _sse2=no ;;
1237 --enable-ssse3) _ssse3=yes ;;
1238 --disable-ssse3) _ssse3=no ;;
1239 --enable-mmxext) _mmxext=yes ;;
1240 --disable-mmxext) _mmxext=no ;;
1241 --enable-3dnow) _3dnow=yes ;;
1242 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1243 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1244 --disable-3dnowext) _3dnowext=no ;;
1245 --enable-cmov) _cmov=yes ;;
1246 --disable-cmov) _cmov=no ;;
1247 --enable-fast-cmov) _fast_cmov=yes ;;
1248 --disable-fast-cmov) _fast_cmov=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-armvfp) _armvfp=yes ;;
1256 --disable-armvfp) _armvfp=no ;;
1257 --enable-iwmmxt) _iwmmxt=yes ;;
1258 --disable-iwmmxt) _iwmmxt=no ;;
1259 --enable-mmx) _mmx=yes ;;
1260 --disable-mmx) # 3Dnow! and MMX2 require MMX
1261 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1264 echo "Unknown parameter: $ac_option"
1265 exit 1
1268 esac
1269 done
1271 # Atmos: moved this here, to be correct, if --prefix is specified
1272 test -z "$_bindir" && _bindir="$_prefix/bin"
1273 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1274 test -z "$_mandir" && _mandir="$_prefix/share/man"
1275 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1276 test -z "$_libdir" && _libdir="$_prefix/lib"
1278 # Determine our OS name and CPU architecture
1279 if test -z "$_target" ; then
1280 # OS name
1281 system_name=`uname -s 2>&1`
1282 case "$system_name" in
1283 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1285 IRIX*)
1286 system_name=IRIX
1288 GNU/kFreeBSD)
1289 system_name=FreeBSD
1291 HP-UX*)
1292 system_name=HP-UX
1294 [cC][yY][gG][wW][iI][nN]*)
1295 system_name=CYGWIN
1297 MINGW32*)
1298 system_name=MINGW32
1300 OS/2*)
1301 system_name=OS/2
1304 system_name="$system_name-UNKNOWN"
1306 esac
1309 # host's CPU/instruction set
1310 host_arch=`uname -p 2>&1`
1311 case "$host_arch" in
1312 i386|sparc|ppc|alpha|arm|mips|vax)
1314 powerpc) # Darwin returns 'powerpc'
1315 host_arch=ppc
1317 *) # uname -p on Linux returns 'unknown' for the processor type,
1318 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1320 # Maybe uname -m (machine hardware name) returns something we
1321 # recognize.
1323 # x86/x86pc is used by QNX
1324 case "`uname -m 2>&1`" in
1325 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 ;;
1326 ia64) host_arch=ia64 ;;
1327 x86_64|amd64)
1328 if [ -n "`$_cc -dumpmachine | sed -n '/^x86_64-/p;/^amd64-/p'`" -a \
1329 -z "`echo $CFLAGS | grep -- -m32`" ]; then
1330 host_arch=x86_64
1331 else
1332 host_arch=i386
1335 macppc|ppc|ppc64) host_arch=ppc ;;
1336 alpha) host_arch=alpha ;;
1337 sparc) host_arch=sparc ;;
1338 sparc64) host_arch=sparc64 ;;
1339 parisc*|hppa*|9000*) host_arch=hppa ;;
1340 arm*|zaurus|cats) host_arch=arm ;;
1341 sh3|sh4|sh4a) host_arch=sh ;;
1342 s390) host_arch=s390 ;;
1343 s390x) host_arch=s390x ;;
1344 mips*) host_arch=mips ;;
1345 vax) host_arch=vax ;;
1346 xtensa*) host_arch=xtensa ;;
1347 *) host_arch=UNKNOWN ;;
1348 esac
1350 esac
1351 else # if test -z "$_target"
1352 system_name=`echo $_target | cut -d '-' -f 2`
1353 case "`echo $system_name | tr A-Z a-z`" in
1354 linux) system_name=Linux ;;
1355 freebsd) system_name=FreeBSD ;;
1356 gnu/kfreebsd) system_name=FreeBSD ;;
1357 netbsd) system_name=NetBSD ;;
1358 bsd/os) system_name=BSD/OS ;;
1359 openbsd) system_name=OpenBSD ;;
1360 dragonfly) system_name=DragonFly ;;
1361 sunos) system_name=SunOS ;;
1362 qnx) system_name=QNX ;;
1363 morphos) system_name=MorphOS ;;
1364 amigaos) system_name=AmigaOS ;;
1365 mingw32msvc) system_name=MINGW32 ;;
1366 esac
1367 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1368 host_arch=`echo $_target | cut -d '-' -f 1`
1369 if test `echo $host_arch` != "x86_64" ; then
1370 host_arch=`echo $host_arch | tr '_' '-'`
1374 echo "Detected operating system: $system_name"
1375 echo "Detected host architecture: $host_arch"
1377 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1378 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1382 _inc_extra="-I. $_inc_extra"
1383 _timer=timer-linux.c
1384 _getch=getch2.c
1385 if freebsd ; then
1386 _ld_extra="$_ld_extra -L/usr/local/lib"
1387 _inc_extra="$_inc_extra -I/usr/local/include"
1390 if netbsd || dragonfly ; then
1391 _ld_extra="$_ld_extra -L/usr/pkg/lib"
1392 _inc_extra="$_inc_extra -I/usr/pkg/include"
1395 if darwin; then
1396 _ld_extra="$_ld_extra -L/usr/local/lib"
1397 _inc_extra="$_inc_extra -I/usr/local/include"
1398 _timer=timer-darwin.c
1401 if aix ; then
1402 _ld_extra="$_ld_extra -lC"
1405 if irix ; then
1406 _ranlib='ar -r'
1407 elif linux ; then
1408 _ranlib='true'
1411 if win32 ; then
1412 _exesuf=".exe"
1413 # -lwinmm is always needed for osdep/timer-win2.c
1414 _ld_extra="$_ld_extra -lwinmm"
1415 _pe_executable=yes
1416 _timer=timer-win2.c
1419 if mingw32 ; then
1420 _getch=getch2-win.c
1421 _need_shmem=no
1424 if amigaos ; then
1425 _select=no
1426 _sighandler=no
1427 _stream_cache=no
1428 _def_stream_cache="#undef CONFIG_STREAM_CACHE"
1431 if qnx ; then
1432 _ld_extra="$_ld_extra -lph"
1435 if os2 ; then
1436 _exesuf=".exe"
1437 _getch=getch2-os2.c
1438 _need_shmem=no
1441 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1442 test "$I" && break
1443 done
1446 TMPLOG="configure.log"
1447 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1448 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1449 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1450 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1451 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1453 rm -f "$TMPLOG"
1454 echo configuration: $_configuration > "$TMPLOG"
1455 echo >> "$TMPLOG"
1458 # Check how to call 'head' and 'tail'. Newer versions spit out warnings
1459 # if used as 'head -1' instead of 'head -n 1', but older versions don't
1460 # know about '-n'.
1461 if test "`(echo line1 ; echo line2) | head -1 2>/dev/null`" = "line1" ; then
1462 _head() { head -$1 2>/dev/null ; }
1463 else
1464 _head() { head -n $1 2>/dev/null ; }
1466 if test "`(echo line1 ; echo line2) | tail -1 2>/dev/null`" = "line2" ; then
1467 _tail() { tail -$1 2>/dev/null ; }
1468 else
1469 _tail() { tail -n $1 2>/dev/null ; }
1472 # Checking CC version...
1473 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1474 if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then
1475 echocheck "$_cc version"
1476 cc_vendor=intel
1477 cc_name=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 1`
1478 cc_version=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 2 | cut -d ' ' -f 3`
1479 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1480 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1481 # TODO verify older icc/ecc compatibility
1482 case $cc_version in
1484 cc_version="v. ?.??, bad"
1485 cc_fail=yes
1487 10.1)
1488 cc_version="$cc_version, ok"
1491 cc_version="$cc_version, bad"
1492 cc_fail=yes
1494 esac
1495 echores "$cc_version"
1496 else
1497 for _cc in "$_cc" cc gcc ; do
1498 cc_name_tmp=`$_cc -v 2>&1 | _tail 1 | cut -d ' ' -f 1`
1499 if test "$cc_name_tmp" = "gcc"; then
1500 cc_name=$cc_name_tmp
1501 echocheck "$_cc version"
1502 cc_vendor=gnu
1503 cc_version=`$_cc -dumpversion 2>&1`
1504 case $cc_version in
1505 2.96*)
1506 cc_fail=yes
1509 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1510 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1511 _cc_mini=`echo $cc_version | cut -d '.' -f 3`
1513 esac
1514 echores "$cc_version"
1515 break
1517 done
1518 fi # icc
1519 test "$cc_fail" = yes && die "unsupported compiler version"
1521 echocheck "host cc"
1522 test "$_host_cc" || _host_cc=$_cc
1523 echores $_host_cc
1525 echocheck "cross compilation"
1526 if test $_cross_compile = auto ; then
1527 cat > $TMPC << EOF
1528 int main(void) { return 0; }
1530 _cross_compile=yes
1531 cc_check && "$TMPEXE" && _cross_compile=no
1533 echores $_cross_compile
1535 if test $_cross_compile = yes; then
1536 tmp_run() {
1537 return 0
1541 # ---
1543 # now that we know what compiler should be used for compilation, try to find
1544 # out which assembler is used by the $_cc compiler
1545 if test "$_as" = auto ; then
1546 _as=`$_cc -print-prog-name=as`
1547 test -z "$_as" && _as=as
1550 # XXX: this should be ok..
1551 _cpuinfo="echo"
1553 if test "$_runtime_cpudetection" = no ; then
1555 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1556 # FIXME: Remove the cygwin check once AMD CPUs are supported
1557 if test -r /proc/cpuinfo && ! cygwin; then
1558 # Linux with /proc mounted, extract CPU information from it
1559 _cpuinfo="cat /proc/cpuinfo"
1560 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1561 # FreeBSD with Linux emulation /proc mounted,
1562 # extract CPU information from it
1563 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1564 elif darwin && ! x86 ; then
1565 # use hostinfo on Darwin
1566 _cpuinfo="hostinfo"
1567 elif aix; then
1568 # use 'lsattr' on AIX
1569 _cpuinfo="lsattr -E -l proc0 -a type"
1570 elif x86; then
1571 # all other OSes try to extract CPU information from a small helper
1572 # program cpuinfo instead
1573 $_cc -o cpuinfo$_exesuf cpuinfo.c
1574 _cpuinfo="./cpuinfo$_exesuf"
1577 if x86 ; then
1578 # gather more CPU information
1579 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | _head 1`
1580 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1581 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1582 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1583 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1585 exts=`$_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | _head 1`
1587 pparam=`echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1588 -e s/xmm/sse/ -e s/kni/sse/`
1590 for ext in $pparam ; do
1591 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1592 done
1594 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1595 test $_sse = kernel_check && _mmxext=kernel_check
1597 echocheck "CPU vendor"
1598 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1600 echocheck "CPU type"
1601 echores "$pname"
1604 fi # test "$_runtime_cpudetection" = no
1606 if x86 && test "$_runtime_cpudetection" = no ; then
1607 extcheck() {
1608 if test "$1" = kernel_check ; then
1609 echocheck "kernel support of $2"
1610 cat > $TMPC <<EOF
1611 #include <stdlib.h>
1612 #include <signal.h>
1613 void catch() { exit(1); }
1614 int main(void) {
1615 signal(SIGILL, catch);
1616 __asm__ volatile ("$3":::"memory"); return 0;
1620 if cc_check && tmp_run ; then
1621 eval _$2=yes
1622 echores "yes"
1623 _optimizing="$_optimizing $2"
1624 return 0
1625 else
1626 eval _$2=no
1627 echores "failed"
1628 echo "It seems that your kernel does not correctly support $2."
1629 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1630 return 1
1633 return 0
1636 extcheck $_mmx "mmx" "emms"
1637 extcheck $_mmxext "mmxext" "sfence"
1638 extcheck $_3dnow "3dnow" "femms"
1639 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1640 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1641 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1642 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1643 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1645 echocheck "mtrr support"
1646 if test "$_mtrr" = kernel_check ; then
1647 _mtrr="yes"
1648 _optimizing="$_optimizing mtrr"
1650 echores "$_mtrr"
1652 if test "$_gcc3_ext" != ""; then
1653 # if we had to disable sse/sse2 because the active kernel does not
1654 # support this instruction set extension, we also have to tell
1655 # gcc3 to not generate sse/sse2 instructions for normal C code
1656 cat > $TMPC << EOF
1657 int main(void) { return 0; }
1659 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1665 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM ARMV4L SH POWERPC PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1666 case "$host_arch" in
1667 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1668 _arch='X86 X86_32'
1669 _target_arch_x86="ARCH_X86 = yes"
1670 _target_arch="ARCH_X86_32 = yes"
1671 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1672 iproc=486
1673 proc=i486
1676 if test "$_runtime_cpudetection" = no ; then
1677 case "$pvendor" in
1678 AuthenticAMD)
1679 case "$pfamily" in
1680 3) proc=i386 iproc=386 ;;
1681 4) proc=i486 iproc=486 ;;
1682 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1683 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1684 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1685 proc=k6-3
1686 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1687 proc=geode
1688 elif test "$pmodel" -ge 8; then
1689 proc=k6-2
1690 elif test "$pmodel" -ge 6; then
1691 proc=k6
1692 else
1693 proc=i586
1696 6) iproc=686
1697 # It's a bit difficult to determine the correct type of Family 6
1698 # AMD CPUs just from their signature. Instead, we check directly
1699 # whether it supports SSE.
1700 if test "$_sse" = yes; then
1701 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1702 proc=athlon-xp
1703 else
1704 # Again, gcc treats athlon and athlon-tbird similarly.
1705 proc=athlon
1708 15) iproc=686
1709 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1710 # caught and remedied in the optimization tests below.
1711 proc=k8
1714 *) proc=k8 iproc=686 ;;
1715 esac
1717 GenuineIntel)
1718 case "$pfamily" in
1719 3) proc=i386 iproc=386 ;;
1720 4) proc=i486 iproc=486 ;;
1721 5) iproc=586
1722 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1723 proc=pentium-mmx # 4 is desktop, 8 is mobile
1724 else
1725 proc=i586
1728 6) iproc=686
1729 if test "$pmodel" -ge 15; then
1730 proc=core2
1731 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1732 proc=pentium-m
1733 elif test "$pmodel" -ge 7; then
1734 proc=pentium3
1735 elif test "$pmodel" -ge 3; then
1736 proc=pentium2
1737 else
1738 proc=i686
1741 15) iproc=686
1742 # A nocona in 32-bit mode has no more capabilities than a prescott.
1743 if test "$pmodel" -ge 3; then
1744 proc=prescott
1745 else
1746 proc=pentium4
1748 test $_fast_cmov = "auto" && _fast_cmov=no
1750 *) proc=prescott iproc=686 ;;
1751 esac
1753 CentaurHauls)
1754 case "$pfamily" in
1755 5) iproc=586
1756 if test "$pmodel" -ge 8; then
1757 proc=winchip2
1758 elif test "$pmodel" -ge 4; then
1759 proc=winchip-c6
1760 else
1761 proc=i586
1764 6) iproc=686
1765 if test "$pmodel" -ge 9; then
1766 proc=c3-2
1767 else
1768 proc=c3
1769 iproc=586
1772 *) proc=i686 iproc=i686 ;;
1773 esac
1775 unknown)
1776 case "$pfamily" in
1777 3) proc=i386 iproc=386 ;;
1778 4) proc=i486 iproc=486 ;;
1779 *) proc=i586 iproc=586 ;;
1780 esac
1783 proc=i586 iproc=586 ;;
1784 esac
1785 fi # test "$_runtime_cpudetection" = no
1788 # check that gcc supports our CPU, if not, fall back to earlier ones
1789 # LGB: check -mcpu and -march swithing step by step with enabling
1790 # to fall back till 386.
1792 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1794 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1795 cpuopt=-mtune
1796 else
1797 cpuopt=-mcpu
1800 echocheck "GCC & CPU optimization abilities"
1801 cat > $TMPC << EOF
1802 int main(void) { return 0; }
1804 if test "$_runtime_cpudetection" = no ; then
1805 cc_check -march=native && proc=native
1806 if test "$proc" = "k8"; then
1807 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1809 if test "$proc" = "athlon-xp"; then
1810 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1812 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1813 cc_check -march=$proc $cpuopt=$proc || proc=k6
1815 if test "$proc" = "k6" || test "$proc" = "c3"; then
1816 if ! cc_check -march=$proc $cpuopt=$proc; then
1817 if cc_check -march=i586 $cpuopt=i686; then
1818 proc=i586-i686
1819 else
1820 proc=i586
1824 if test "$proc" = "prescott" ; then
1825 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1827 if test "$proc" = "core2" ; then
1828 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1830 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
1831 cc_check -march=$proc $cpuopt=$proc || proc=i686
1833 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1834 cc_check -march=$proc $cpuopt=$proc || proc=i586
1836 if test "$proc" = "i586"; then
1837 cc_check -march=$proc $cpuopt=$proc || proc=i486
1839 if test "$proc" = "i486" ; then
1840 cc_check -march=$proc $cpuopt=$proc || proc=i386
1842 if test "$proc" = "i386" ; then
1843 cc_check -march=$proc $cpuopt=$proc || proc=error
1845 if test "$proc" = "error" ; then
1846 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1847 _mcpu=""
1848 _march=""
1849 _optimizing=""
1850 elif test "$proc" = "i586-i686"; then
1851 _march="-march=i586"
1852 _mcpu="$cpuopt=i686"
1853 _optimizing="$proc"
1854 else
1855 _march="-march=$proc"
1856 _mcpu="$cpuopt=$proc"
1857 _optimizing="$proc"
1859 else # if test "$_runtime_cpudetection" = no
1860 _mcpu="$cpuopt=generic"
1861 # at least i486 required, for bswap instruction
1862 _march="-march=i486"
1863 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1864 cc_check $_mcpu || _mcpu=""
1865 cc_check $_march $_mcpu || _march=""
1868 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1869 ## autodetected mcpu/march parameters
1870 if test "$_target" ; then
1871 # TODO: it may be a good idea to check GCC and fall back in all cases
1872 if test "$host_arch" = "i586-i686"; then
1873 _march="-march=i586"
1874 _mcpu="$cpuopt=i686"
1875 else
1876 _march="-march=$host_arch"
1877 _mcpu="$cpuopt=$host_arch"
1880 proc="$host_arch"
1882 case "$proc" in
1883 i386) iproc=386 ;;
1884 i486) iproc=486 ;;
1885 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1886 i686|athlon*|pentium*) iproc=686 ;;
1887 *) iproc=586 ;;
1888 esac
1891 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1892 _fast_cmov="yes"
1893 else
1894 _fast_cmov="no"
1897 echores "$proc"
1900 ia64)
1901 _arch='IA64'
1902 _target_arch='ARCH_IA64 = yes'
1903 iproc='ia64'
1906 x86_64|amd64)
1907 _arch='X86 X86_64'
1908 _target_arch='ARCH_X86_64 = yes'
1909 _target_arch_x86="ARCH_X86 = yes"
1910 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1911 iproc='x86_64'
1913 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1914 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1915 cpuopt=-mtune
1916 else
1917 cpuopt=-mcpu
1919 if test "$_runtime_cpudetection" = no ; then
1920 case "$pvendor" in
1921 AuthenticAMD)
1922 proc=k8;;
1923 GenuineIntel)
1924 case "$pfamily" in
1925 6) proc=core2;;
1927 # 64-bit prescotts exist, but as far as GCC is concerned they
1928 # have the same capabilities as a nocona.
1929 proc=nocona
1930 test $_fast_cmov = "auto" && _fast_cmov=no
1932 esac
1935 proc=error;;
1936 esac
1937 fi # test "$_runtime_cpudetection" = no
1939 echocheck "GCC & CPU optimization abilities"
1940 cat > $TMPC << EOF
1941 int main(void) { return 0; }
1943 # This is a stripped-down version of the i386 fallback.
1944 if test "$_runtime_cpudetection" = no ; then
1945 cc_check -march=native && proc=native
1946 # --- AMD processors ---
1947 if test "$proc" = "k8"; then
1948 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1950 # This will fail if gcc version < 3.3, which is ok because earlier
1951 # versions don't really support 64-bit on amd64.
1952 # Is this a valid assumption? -Corey
1953 if test "$proc" = "athlon-xp"; then
1954 cc_check -march=$proc $cpuopt=$proc || proc=error
1956 # --- Intel processors ---
1957 if test "$proc" = "core2"; then
1958 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1960 if test "$proc" = "nocona"; then
1961 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1963 if test "$proc" = "pentium4"; then
1964 cc_check -march=$proc $cpuopt=$proc || proc=error
1967 _march="-march=$proc"
1968 _mcpu="$cpuopt=$proc"
1969 if test "$proc" = "error" ; then
1970 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1971 _mcpu=""
1972 _march=""
1974 else # if test "$_runtime_cpudetection" = no
1975 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1976 _march="-march=x86-64"
1977 _mcpu="$cpuopt=generic"
1978 cc_check $_mcpu || _mcpu="x86-64"
1979 cc_check $_mcpu || _mcpu=""
1980 cc_check $_march $_mcpu || _march=""
1983 _optimizing=""
1985 echores "$proc"
1988 sparc|sparc64)
1989 _arch='SPARC'
1990 _target_arch='ARCH_SPARC = yes'
1991 iproc='sparc'
1992 if test "$host_arch" = "sparc64" ; then
1993 _vis='yes'
1994 proc='ultrasparc'
1995 elif sunos ; then
1996 echocheck "CPU type"
1997 karch=`uname -m`
1998 case "`echo $karch`" in
1999 sun4) proc=v7 ;;
2000 sun4c) proc=v7 ;;
2001 sun4d) proc=v8 ;;
2002 sun4m) proc=v8 ;;
2003 sun4u) proc=ultrasparc _vis='yes' ;;
2004 sun4v) proc=v9 ;;
2005 *) proc=v8 ;;
2006 esac
2007 echores "$proc"
2008 else
2009 proc=v8
2011 _mcpu="-mcpu=$proc"
2012 _optimizing="$proc"
2015 arm|armv4l|armv5tel)
2016 _arch='ARM ARMV4L'
2017 _target_arch='ARCH_ARMV4L = yes'
2018 iproc='arm'
2022 _arch='SH'
2023 _target_arch='ARCH_SH = yes'
2024 iproc='sh'
2027 ppc|ppc64|powerpc|powerpc64)
2028 _arch='POWERPC PPC'
2029 _def_dcbzl='#undef HAVE_DCBZL'
2030 _target_arch='ARCH_POWERPC = yes'
2031 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2032 iproc='ppc'
2034 echocheck "CPU type"
2035 case $system_name in
2036 Linux)
2037 proc=`$_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | _head 1`
2038 if test -n "`$_cpuinfo | grep altivec`"; then
2039 test $_altivec = auto && _altivec=yes
2042 Darwin)
2043 proc=`$_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//'`
2044 if [ `sysctl -n hw.vectorunit` -eq 1 -o \
2045 "`sysctl -n hw.optional.altivec 2> /dev/null`" = "1" ]; then
2046 test $_altivec = auto && _altivec=yes
2049 NetBSD)
2050 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2051 case $cc_version in
2052 2*|3.0*|3.1*|3.2*|3.3*)
2055 if [ `sysctl -n machdep.altivec` -eq 1 ]; then
2056 test $_altivec = auto && _altivec=yes
2059 esac
2061 AIX)
2062 proc=`$_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//'`
2064 esac
2065 if test "$_altivec" = yes; then
2066 echores "$proc altivec"
2067 else
2068 _altivec=no
2069 echores "$proc"
2072 echocheck "GCC & CPU optimization abilities"
2074 if test -n "$proc"; then
2075 case "$proc" in
2076 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2077 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2078 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2079 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2080 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2081 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2082 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2083 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2084 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2085 *) ;;
2086 esac
2087 # gcc 3.1(.1) and up supports 7400 and 7450
2088 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2089 case "$proc" in
2090 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2091 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2092 *) ;;
2093 esac
2095 # gcc 3.2 and up supports 970
2096 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2097 case "$proc" in
2098 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2099 _def_dcbzl='#define HAVE_DCBZL 1' ;;
2100 *) ;;
2101 esac
2103 # gcc 3.3 and up supports POWER4
2104 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2105 case "$proc" in
2106 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2107 *) ;;
2108 esac
2110 # gcc 3.4 and up supports 440*
2111 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2112 case "$proc" in
2113 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2114 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2115 *) ;;
2116 esac
2118 # gcc 4.0 and up supports POWER5
2119 if test "$_cc_major" -ge "4"; then
2120 case "$proc" in
2121 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2122 *) ;;
2123 esac
2127 if test -n "$_mcpu"; then
2128 _optimizing=`echo $_mcpu | cut -c 8-`
2129 echores "$_optimizing"
2130 else
2131 echores "none"
2136 alpha)
2137 _arch='ALPHA'
2138 _target_arch='ARCH_ALPHA = yes'
2139 iproc='alpha'
2141 echocheck "CPU type"
2142 cat > $TMPC << EOF
2143 int main(void) {
2144 unsigned long ver, mask;
2145 __asm__ ("implver %0" : "=r" (ver));
2146 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2147 printf("%ld-%x\n", ver, ~mask);
2148 return 0;
2151 $_cc -o "$TMPEXE" "$TMPC"
2152 case `"$TMPEXE"` in
2154 0-0) proc="ev4"; _mvi="0";;
2155 1-0) proc="ev5"; _mvi="0";;
2156 1-1) proc="ev56"; _mvi="0";;
2157 1-101) proc="pca56"; _mvi="1";;
2158 2-303) proc="ev6"; _mvi="1";;
2159 2-307) proc="ev67"; _mvi="1";;
2160 2-1307) proc="ev68"; _mvi="1";;
2161 esac
2162 echores "$proc"
2164 echocheck "GCC & CPU optimization abilities"
2165 if test "$proc" = "ev68" ; then
2166 cc_check -mcpu=$proc || proc=ev67
2168 if test "$proc" = "ev67" ; then
2169 cc_check -mcpu=$proc || proc=ev6
2171 _mcpu="-mcpu=$proc"
2172 echores "$proc"
2174 _optimizing="$proc"
2177 mips)
2178 _arch='SGI_MIPS'
2179 _target_arch='ARCH_SGI_MIPS = yes'
2180 iproc='sgi-mips'
2182 if irix ; then
2183 echocheck "CPU type"
2184 proc=`hinv -c processor | grep CPU | cut -d " " -f3`
2185 case "`echo $proc`" in
2186 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2187 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2188 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2189 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2190 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2191 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2192 esac
2193 # gcc < 3.x does not support -mtune.
2194 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2195 _mcpu=''
2197 echores "$proc"
2202 hppa)
2203 _arch='PA_RISC'
2204 _target_arch='ARCH_PA_RISC = yes'
2205 iproc='PA-RISC'
2208 s390)
2209 _arch='S390'
2210 _target_arch='ARCH_S390 = yes'
2211 iproc='390'
2214 s390x)
2215 _arch='S390X'
2216 _target_arch='ARCH_S390X = yes'
2217 iproc='390x'
2220 vax)
2221 _arch='VAX'
2222 _target_arch='ARCH_VAX = yes'
2223 iproc='vax'
2226 xtensa)
2227 _arch='XTENSA'
2228 _target_arch='ARCH_XTENSA = yes'
2229 iproc='xtensa'
2232 generic)
2233 _arch='GENERIC'
2234 _target_arch='ARCH_GENERIC = yes'
2238 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2239 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2240 die "unsupported architecture $host_arch"
2242 esac # case "$host_arch" in
2244 if test "$_runtime_cpudetection" = yes ; then
2245 if x86 ; then
2246 test "$_cmov" != no && _cmov=yes
2247 x86_32 && _cmov=no
2248 test "$_mmx" != no && _mmx=yes
2249 test "$_3dnow" != no && _3dnow=yes
2250 test "$_3dnowext" != no && _3dnowext=yes
2251 test "$_mmxext" != no && _mmxext=yes
2252 test "$_sse" != no && _sse=yes
2253 test "$_sse2" != no && _sse2=yes
2254 test "$_ssse3" != no && _ssse3=yes
2255 test "$_mtrr" != no && _mtrr=yes
2257 if ppc; then
2258 _altivec=yes
2263 echocheck "extern symbol prefix"
2264 cat > $TMPC << EOF
2265 int ff_extern;
2267 cc_check -c || die "Symbol mangling check failed."
2268 sym=$(nm -P -g $TMPEXE)
2269 extern_prefix=${sym%%ff_extern*}
2270 _def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2271 echores $extern_prefix
2274 echocheck "assembler support of -pipe option"
2275 cat > $TMPC << EOF
2276 int main(void) { return 0; }
2278 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2281 echocheck "compiler support of named assembler arguments"
2282 _named_asm_args=yes
2283 _def_named_asm_args="#define NAMED_ASM_ARGS 1"
2284 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2285 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2286 _named_asm_args=no
2287 _def_named_asm_args="#undef NAMED_ASM_ARGS"
2289 echores $_named_asm_args
2292 if darwin && test "$cc_vendor" = "gnu" ; then
2293 echocheck "GCC support of -mstackrealign"
2294 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2295 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2296 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2297 # wrong code with this flag, but this can be worked around by adding
2298 # -fno-unit-at-a-time as described in the blog post at
2299 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2300 cat > $TMPC << EOF
2301 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2302 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2304 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2305 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2306 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2307 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2308 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2311 # Checking for CFLAGS
2312 _install_strip="-s"
2313 if test "$_profile" != "" || test "$_debug" != "" ; then
2314 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2315 _install_strip=
2316 elif test -z "$CFLAGS" ; then
2317 if test "$cc_vendor" = "intel" ; then
2318 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2319 elif test "$cc_vendor" != "gnu" ; then
2320 CFLAGS="-O2 $_march $_mcpu $_pipe"
2321 else
2322 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2324 else
2325 _warn_CFLAGS=yes
2327 if test -n "$LDFLAGS" ; then
2328 _ld_extra="$_ld_extra $LDFLAGS"
2329 _warn_CFLAGS=yes
2330 elif test "$cc_vendor" = "intel" ; then
2331 _ld_extra="$_ld_extra -i-static"
2333 if test -n "$CPPFLAGS" ; then
2334 _inc_extra="$_inc_extra $CPPFLAGS"
2335 _warn_CFLAGS=yes
2340 if x86_32 ; then
2341 # Checking assembler (_as) compatibility...
2342 # Added workaround for older as that reads from stdin by default - atmos
2343 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'`
2344 echocheck "assembler ($_as $as_version)"
2346 _pref_as_version='2.9.1'
2347 echo 'nop' > $TMPS
2348 if test "$_mmx" = yes ; then
2349 echo 'emms' >> $TMPS
2351 if test "$_3dnow" = yes ; then
2352 _pref_as_version='2.10.1'
2353 echo 'femms' >> $TMPS
2355 if test "$_3dnowext" = yes ; then
2356 _pref_as_version='2.10.1'
2357 echo 'pswapd %mm0, %mm0' >> $TMPS
2359 if test "$_mmxext" = yes ; then
2360 _pref_as_version='2.10.1'
2361 echo 'movntq %mm0, (%eax)' >> $TMPS
2363 if test "$_sse" = yes ; then
2364 _pref_as_version='2.10.1'
2365 echo 'xorps %xmm0, %xmm0' >> $TMPS
2367 #if test "$_sse2" = yes ; then
2368 # _pref_as_version='2.11'
2369 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2371 if test "$_cmov" = yes ; then
2372 _pref_as_version='2.10.1'
2373 echo 'cmovb %eax, %ebx' >> $TMPS
2375 if test "$_ssse3" = yes ; then
2376 _pref_as_version='2.16.92'
2377 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2379 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2381 if test "$as_verc_fail" != yes ; then
2382 echores "ok"
2383 else
2384 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2385 echores "failed"
2386 die "obsolete binutils version"
2389 fi #if x86_32
2391 echocheck ".align is a power of two"
2392 if test "$_asmalign_pot" = auto ; then
2393 _asmalign_pot=no
2394 cat > $TMPC << EOF
2395 int main(void) { __asm__ (".align 3"); return 0; }
2397 cc_check && _asmalign_pot=yes
2399 if test "$_asmalign_pot" = "yes" ; then
2400 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2401 else
2402 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2404 echores $_asmalign_pot
2406 echocheck "yasm"
2407 if test -z "$YASMFLAGS" ; then
2408 if darwin ; then
2409 x86_64 && objformat="macho64" || objformat="macho32"
2410 elif win32 ; then
2411 objformat="win32"
2412 else
2413 objformat="elf"
2415 # currently tested for Linux x86, x86_64
2416 YASMFLAGS="-f $objformat"
2417 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2418 case "$objformat" in
2419 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2420 macho64) YASMFLAGS="$YASMFLAGS -DPIC -DPREFIX" ;;
2421 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2422 esac
2423 else
2424 _warn_CFLAGS=yes
2427 echo "pabsw xmm0, xmm0" > $TMPS
2428 yasm_check || _yasm=""
2429 if test $_yasm ; then
2430 _def_yasm='#define HAVE_YASM 1'
2431 _have_yasm="yes"
2432 echores "$_yasm"
2433 else
2434 _def_yasm='#undef HAVE_YASM'
2435 echores "no"
2438 #FIXME: This should happen before the check for CFLAGS..
2439 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2441 # check if AltiVec is supported by the compiler, and how to enable it
2442 echocheck "GCC AltiVec flags"
2443 cat > $TMPC << EOF
2444 int main(void) { return 0; }
2446 if $(cc_check -maltivec -mabi=altivec) ; then
2447 _altivec_gcc_flags="-maltivec -mabi=altivec"
2448 # check if <altivec.h> should be included
2449 def_altivec_h='#undef HAVE_ALTIVEC_H'
2450 cat > $TMPC << EOF
2451 #include <altivec.h>
2452 int main(void) { return 0; }
2454 if $(cc_check $_altivec_gcc_flags) ; then
2455 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2456 inc_altivec_h='#include <altivec.h>'
2457 else
2458 cat > $TMPC << EOF
2459 int main(void) { return 0; }
2461 if $(cc_check -faltivec) ; then
2462 _altivec_gcc_flags="-faltivec"
2463 else
2464 _altivec=no
2465 _altivec_gcc_flags="none, AltiVec disabled"
2469 echores "$_altivec_gcc_flags"
2471 # check if the compiler supports braces for vector declarations
2472 cat > $TMPC << EOF
2473 $inc_altivec_h
2474 int main(void) { (vector int) {1}; return 0; }
2476 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2478 # Disable runtime cpudetection if we cannot generate AltiVec code or
2479 # AltiVec is disabled by the user.
2480 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2481 && _runtime_cpudetection=no
2483 # Show that we are optimizing for AltiVec (if enabled and supported).
2484 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2485 && _optimizing="$_optimizing altivec"
2487 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2488 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2491 if arm ; then
2492 echocheck "ARM pld instruction"
2493 cat > $TMPC << EOF
2494 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2496 pld=no
2497 cc_check && pld=yes
2498 echores "$pld"
2500 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2501 if test $_armv5te = "auto" ; then
2502 cat > $TMPC << EOF
2503 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2505 _armv5te=no
2506 cc_check && _armv5te=yes
2508 echores "$_armv5te"
2510 echocheck "ARMv6 (SIMD instructions)"
2511 if test $_armv6 = "auto" ; then
2512 cat > $TMPC << EOF
2513 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2515 _armv6=no
2516 cc_check && _armv6=yes
2518 echores "$_armv6"
2520 echocheck "ARM VFP"
2521 if test $_armvfp = "auto" ; then
2522 cat > $TMPC << EOF
2523 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2525 _armvfp=no
2526 cc_check && _armvfp=yes
2528 echores "$_armvfp"
2530 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2531 if test $_iwmmxt = "auto" ; then
2532 cat > $TMPC << EOF
2533 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2535 _iwmmxt=no
2536 cc_check && _iwmmxt=yes
2538 echores "$_iwmmxt"
2541 _cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMVFP IWMMXT MLIB MMI SH4 VIS MVI'
2542 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2543 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2544 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2545 test "$_3dnow" = yes && _cpuexts="3DNOW $_cpuexts"
2546 test "$_3dnowext" = yes && _cpuexts="3DNOWEX $_cpuexts"
2547 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2548 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2549 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2550 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2551 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2552 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2553 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2554 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2555 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2556 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2557 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2558 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2560 # Checking kernel version...
2561 if x86_32 && linux ; then
2562 _k_verc_problem=no
2563 kernel_version=`uname -r 2>&1`
2564 echocheck "$system_name kernel version"
2565 case "$kernel_version" in
2566 '') kernel_version="?.??"; _k_verc_fail=yes;;
2567 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2568 _k_verc_problem=yes;;
2569 esac
2570 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2571 _k_verc_fail=yes
2573 if test "$_k_verc_fail" ; then
2574 echores "$kernel_version, fail"
2575 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2576 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2577 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2578 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2579 echo "2.2.x you must upgrade it to get SSE support!"
2580 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2581 else
2582 echores "$kernel_version, ok"
2586 ######################
2587 # MAIN TESTS GO HERE #
2588 ######################
2591 echocheck "-lposix"
2592 cat > $TMPC <<EOF
2593 int main(void) { return 0; }
2595 if cc_check -lposix ; then
2596 _ld_extra="$_ld_extra -lposix"
2597 echores "yes"
2598 else
2599 echores "no"
2602 echocheck "-lm"
2603 cat > $TMPC <<EOF
2604 int main(void) { return 0; }
2606 if cc_check -lm ; then
2607 _ld_lm="-lm"
2608 echores "yes"
2609 else
2610 _ld_lm=""
2611 echores "no"
2615 echocheck "langinfo"
2616 if test "$_langinfo" = auto ; then
2617 cat > $TMPC <<EOF
2618 #include <langinfo.h>
2619 int main(void) { nl_langinfo(CODESET); return 0; }
2621 _langinfo=no
2622 cc_check && _langinfo=yes
2624 if test "$_langinfo" = yes ; then
2625 _def_langinfo='#define HAVE_LANGINFO 1'
2626 else
2627 _def_langinfo='#undef HAVE_LANGINFO'
2629 echores "$_langinfo"
2632 echocheck "language"
2633 test -z "$_language" && _language=$LINGUAS
2634 _language=`echo $_language | tr , " "`
2635 if $(echo $_language | grep -q all) ; then
2636 doc_lang=en ; doc_langs=$doc_lang_all
2637 man_lang=en ; man_langs=$man_lang_all
2638 msg_lang=en
2639 else
2640 for lang in $_language ; do
2641 if test -d DOCS/man/$lang ; then
2642 tmp_man_langs="$tmp_man_langs $lang"
2644 if test -d DOCS/xml/$lang ; then
2645 tmp_doc_langs="$tmp_doc_langs $lang"
2647 done
2648 man_langs=$tmp_man_langs
2649 doc_langs=$tmp_man_langs
2650 for lang in $_language ; do
2651 if test -f "help/help_mp-${lang}.h" ; then
2652 msg_lang=$lang
2653 break
2654 else
2655 echo ${_echo_n} "$lang not found, ${_echo_c}"
2656 _language=`echo $_language | sed "s/$lang *//"`
2658 done
2660 test -z "$doc_langs" && doc_langs=en
2661 test -z "$man_langs" && man_langs=en
2662 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2663 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2664 test -z "$msg_lang" && msg_lang=en
2665 _mp_help="help/help_mp-${msg_lang}.h"
2666 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2669 echocheck "enable sighandler"
2670 if test "$_sighandler" = yes ; then
2671 _def_sighandler='#define CONFIG_SIGHANDLER 1'
2672 else
2673 _def_sighandler='#undef CONFIG_SIGHANDLER'
2675 echores "$_sighandler"
2677 echocheck "runtime cpudetection"
2678 if test "$_runtime_cpudetection" = yes ; then
2679 _optimizing="Runtime CPU-Detection enabled"
2680 _def_runtime_cpudetection='#define RUNTIME_CPUDETECT 1'
2681 else
2682 _def_runtime_cpudetection='#undef RUNTIME_CPUDETECT'
2684 echores "$_runtime_cpudetection"
2687 echocheck "restrict keyword"
2688 for restrict_keyword in restrict __restrict __restrict__ ; do
2689 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2690 if cc_check; then
2691 _def_restrict_keyword=$restrict_keyword
2692 break;
2694 done
2695 if [ -n "$_def_restrict_keyword" ]; then
2696 echores "$_def_restrict_keyword"
2697 else
2698 echores "none"
2700 # Avoid infinite recursion loop ("#define restrict restrict")
2701 if [ "$_def_restrict_keyword" != "restrict" ]; then
2702 _def_restrict_keyword="#define restrict $_def_restrict_keyword"
2703 else
2704 _def_restrict_keyword=""
2708 echocheck "__builtin_expect"
2709 # GCC branch prediction hint
2710 cat > $TMPC << EOF
2711 int foo (int a) {
2712 a = __builtin_expect (a, 10);
2713 return a == 10 ? 0 : 1;
2715 int main(void) { return foo(10) && foo(0); }
2717 _builtin_expect=no
2718 cc_check && _builtin_expect=yes
2719 if test "$_builtin_expect" = yes ; then
2720 _def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2721 else
2722 _def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2724 echores "$_builtin_expect"
2727 echocheck "kstat"
2728 cat > $TMPC << EOF
2729 #include <kstat.h>
2730 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2732 _kstat=no
2733 cc_check -lkstat && _kstat=yes
2734 if test "$_kstat" = yes ; then
2735 _def_kstat="#define HAVE_LIBKSTAT 1"
2736 _ld_extra="$_ld_extra -lkstat"
2737 else
2738 _def_kstat="#undef HAVE_LIBKSTAT"
2740 echores "$_kstat"
2743 echocheck "posix4"
2744 # required for nanosleep on some systems
2745 cat > $TMPC << EOF
2746 #include <time.h>
2747 int main(void) { (void) nanosleep(0, 0); return 0; }
2749 _posix4=no
2750 cc_check -lposix4 && _posix4=yes
2751 if test "$_posix4" = yes ; then
2752 _ld_extra="$_ld_extra -lposix4"
2754 echores "$_posix4"
2756 for func in llrint lrint lrintf round roundf; do
2757 echocheck $func
2758 cat > $TMPC << EOF
2759 #include <math.h>
2760 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2762 eval _$func=no
2763 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2764 if eval test "x\$_$func" = "xyes"; then
2765 eval _def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 1\""
2766 echores yes
2767 else
2768 eval _def_$func="\"#undef HAVE_`echo $func | tr '[a-z]' '[A-Z]'`\""
2769 echores no
2771 done
2774 echocheck "mkstemp"
2775 cat > $TMPC << EOF
2776 #include <stdlib.h>
2777 int main(void) { char a; mkstemp(&a); return 0; }
2779 _mkstemp=no
2780 cc_check && _mkstemp=yes
2781 if test "$_mkstemp" = yes ; then
2782 _def_mkstemp='#define HAVE_MKSTEMP 1'
2783 else
2784 _def_mkstemp='#undef HAVE_MKSTEMP'
2786 echores "$_mkstemp"
2789 echocheck "nanosleep"
2790 # also check for nanosleep
2791 cat > $TMPC << EOF
2792 #include <time.h>
2793 int main(void) { (void) nanosleep(0, 0); return 0; }
2795 _nanosleep=no
2796 cc_check && _nanosleep=yes
2797 if test "$_nanosleep" = yes ; then
2798 _def_nanosleep='#define HAVE_NANOSLEEP 1'
2799 else
2800 _def_nanosleep='#undef HAVE_NANOSLEEP'
2802 echores "$_nanosleep"
2805 echocheck "socklib"
2806 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2807 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2808 cat > $TMPC << EOF
2809 #include <netdb.h>
2810 #include <sys/socket.h>
2811 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2813 _socklib=no
2814 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2815 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2816 done
2817 if test $_winsock2_h = auto && ! cygwin ; then
2818 _winsock2_h=no
2819 cat > $TMPC << EOF
2820 #include <winsock2.h>
2821 int main(void) { (void) gethostbyname(0); return 0; }
2823 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2825 test "$_ld_sock" && _res_comment="using $_ld_sock"
2826 echores "$_socklib"
2829 if test $_winsock2_h = yes ; then
2830 _ld_sock="-lws2_32"
2831 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2832 else
2833 def_winsock2_h='#undef HAVE_WINSOCK2_H'
2837 _use_aton=no
2838 echocheck "inet_pton()"
2839 cat > $TMPC << EOF
2840 #include <sys/types.h>
2841 #include <sys/socket.h>
2842 #include <arpa/inet.h>
2843 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
2845 if test "$_winsock2_h" = yes ; then
2846 _res_comment="using winsock2 functions instead"
2847 echores "no"
2848 elif cc_check $_ld_sock ; then
2849 # NOTE: Linux has libresolv but does not need it
2851 _res_comment="using $_ld_sock"
2852 echores "yes"
2853 elif cc_check $_ld_sock -lresolv ; then
2854 # NOTE: needed for SunOS at least
2855 _ld_sock="$_ld_sock -lresolv"
2856 _res_comment="using $_ld_sock"
2857 echores "yes"
2858 else
2859 _res_comment="trying inet_aton next"
2860 echores "no"
2862 echocheck "inet_aton()"
2863 cat > $TMPC << EOF
2864 #include <sys/types.h>
2865 #include <sys/socket.h>
2866 #include <arpa/inet.h>
2867 int main(void) { (void) inet_aton(0, 0); return 0; }
2869 _use_aton=yes
2870 if cc_check $_ld_sock ; then
2871 # NOTE: Linux has libresolv but does not need it
2873 _res_comment="using $_ld_sock"
2874 elif cc_check $_ld_sock -lresolv ; then
2875 # NOTE: needed for SunOS at least
2876 _ld_sock="$_ld_sock -lresolv"
2877 _res_comment="using $_ld_sock"
2878 else
2879 _use_aton=no
2880 _network=no
2881 _res_comment="network support disabled"
2883 echores "$_use_aton"
2886 _def_use_aton='#undef HAVE_ATON'
2887 if test "$_use_aton" = yes; then
2888 _def_use_aton='#define HAVE_ATON 1'
2892 echocheck "socklen_t"
2893 _socklen_t=no
2894 for header in "sys/socket.h" "ws2tcpip.h" ; do
2895 cat > $TMPC << EOF
2896 #include <$header>
2897 int main(void) { socklen_t v = 0; return v; }
2899 cc_check && _socklen_t=yes && break
2900 done
2901 if test "$_socklen_t" = yes ; then
2902 _def_socklen_t='#define HAVE_SOCKLEN_T 1'
2903 else
2904 _def_socklen_t='#undef HAVE_SOCKLEN_T'
2906 echores "$_socklen_t"
2909 echocheck "closesocket()"
2910 _closesocket=no
2911 cat > $TMPC << EOF
2912 #include <winsock2.h>
2913 int main(void) { closesocket(~0); return 0; }
2915 cc_check $_ld_sock && _closesocket=yes
2916 if test "$_closesocket" = yes ; then
2917 _def_closesocket='#define HAVE_CLOSESOCKET 1'
2918 else
2919 _def_closesocket='#undef HAVE_CLOSESOCKET'
2921 echores "$_closesocket"
2924 echocheck "network"
2925 # FIXME network check
2926 if test "$_network" = yes ; then
2927 _def_network='#define CONFIG_NETWORK 1'
2928 _ld_extra="$_ld_extra $_ld_sock"
2929 _inputmodules="network $_inputmodules"
2930 else
2931 _noinputmodules="network $_noinputmodules"
2932 _def_network='#undef CONFIG_NETWORK'
2933 _ftp=no
2935 echores "$_network"
2937 echocheck "inttypes.h (required)"
2938 cat > $TMPC << EOF
2939 #include <inttypes.h>
2940 int main(void) { return 0; }
2942 _inttypes=no
2943 cc_check && _inttypes=yes
2944 echores "$_inttypes"
2946 if test "$_inttypes" = no ; then
2947 echocheck "bitypes.h (inttypes.h predecessor)"
2948 cat > $TMPC << EOF
2949 #include <sys/bitypes.h>
2950 int main(void) { return 0; }
2952 cc_check && _inttypes=yes
2953 if test "$_inttypes" = yes ; then
2954 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."
2955 else
2956 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
2961 echocheck "int_fastXY_t in inttypes.h"
2962 cat > $TMPC << EOF
2963 #include <inttypes.h>
2964 int main(void) {
2965 volatile int_fast16_t v= 0;
2966 return v; }
2968 _fast_inttypes=no
2969 cc_check && _fast_inttypes=yes
2970 if test "$_fast_inttypes" = no ; then
2971 _def_fast_inttypes='
2972 typedef signed char int_fast8_t;
2973 typedef signed int int_fast16_t;
2974 typedef signed int int_fast32_t;
2975 typedef signed long long int_fast64_t;
2976 typedef unsigned char uint_fast8_t;
2977 typedef unsigned int uint_fast16_t;
2978 typedef unsigned int uint_fast32_t;
2979 typedef unsigned long long uint_fast64_t;'
2981 echores "$_fast_inttypes"
2984 echocheck "malloc.h"
2985 cat > $TMPC << EOF
2986 #include <malloc.h>
2987 int main(void) { (void) malloc(0); return 0; }
2989 _malloc=no
2990 cc_check && _malloc=yes
2991 if test "$_malloc" = yes ; then
2992 def_malloc_h='#define HAVE_MALLOC_H 1'
2993 else
2994 def_malloc_h='#undef HAVE_MALLOC_H'
2996 # malloc.h emits a warning in FreeBSD and OpenBSD
2997 freebsd || openbsd || dragonfly && def_malloc_h='#undef HAVE_MALLOC_H'
2998 echores "$_malloc"
3001 echocheck "memalign()"
3002 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3003 cat > $TMPC << EOF
3004 #include <malloc.h>
3005 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3007 _memalign=no
3008 cc_check && _memalign=yes
3009 if test "$_memalign" = yes ; then
3010 _def_memalign='#define HAVE_MEMALIGN 1'
3011 else
3012 _def_memalign='#undef HAVE_MEMALIGN'
3013 _def_map_memalign='#define memalign(a,b) malloc(b)'
3014 darwin || _def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3016 echores "$_memalign"
3019 echocheck "alloca.h"
3020 cat > $TMPC << EOF
3021 #include <alloca.h>
3022 int main(void) { (void) alloca(0); return 0; }
3024 _alloca=no
3025 cc_check && _alloca=yes
3026 if cc_check ; then
3027 def_alloca_h='#define HAVE_ALLOCA_H 1'
3028 else
3029 def_alloca_h='#undef HAVE_ALLOCA_H'
3031 echores "$_alloca"
3034 echocheck "mman.h"
3035 cat > $TMPC << EOF
3036 #include <sys/types.h>
3037 #include <sys/mman.h>
3038 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3040 _mman=no
3041 cc_check && _mman=yes
3042 if test "$_mman" = yes ; then
3043 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3044 else
3045 def_mman_h='#undef HAVE_SYS_MMAN_H'
3046 os2 && _need_mmap=yes
3048 echores "$_mman"
3050 cat > $TMPC << EOF
3051 #include <sys/types.h>
3052 #include <sys/mman.h>
3053 int main(void) { void *p = MAP_FAILED; return 0; }
3055 _mman_has_map_failed=no
3056 cc_check && _mman_has_map_failed=yes
3057 if test "$_mman_has_map_failed" = yes ; then
3058 _def_mman_has_map_failed=''
3059 else
3060 _def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3063 echocheck "dynamic loader"
3064 cat > $TMPC << EOF
3065 #include <stddef.h>
3066 #include <dlfcn.h>
3067 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3069 _dl=no
3070 for _ld_tmp in "" "-ldl" ; do
3071 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3072 done
3073 if test "$_dl" = yes ; then
3074 _def_dl='#define HAVE_LIBDL 1'
3075 else
3076 _def_dl='#undef HAVE_LIBDL'
3078 echores "$_dl"
3081 echocheck "dynamic a/v plugins support"
3082 if test "$_dl" = no ; then
3083 _dynamic_plugins=no
3085 if test "$_dynamic_plugins" = yes ; then
3086 _def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3087 else
3088 _def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3090 echores "$_dynamic_plugins"
3093 _def_threads='#undef HAVE_THREADS'
3095 echocheck "pthread"
3096 if test "$_pthreads" = auto ; then
3097 cat > $TMPC << EOF
3098 #include <pthread.h>
3099 void* func(void *arg) { return arg; }
3100 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
3102 _pthreads=no
3103 if ! hpux ; then
3104 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3105 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3106 cc_check $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3107 done
3110 if test "$_pthreads" = yes ; then
3111 _res_comment="using $_ld_pthread"
3112 _def_pthreads='#define HAVE_PTHREADS 1'
3113 _def_threads='#define HAVE_THREADS 1'
3114 else
3115 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3116 _def_pthreads='#undef HAVE_PTHREADS'
3117 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3118 mingw32 || _win32dll=no
3120 echores "$_pthreads"
3122 echocheck "w32threads"
3123 if test "$_pthreads" = yes ; then
3124 _res_comment="using pthread instead"
3125 _w32threads=no
3127 if test "$_w32threads" = auto ; then
3128 _w32threads=no
3129 mingw32 && _w32threads=yes
3131 test "$_w32threads" = yes && _def_threads='#define HAVE_THREADS 1'
3132 echores "$_w32threads"
3134 echocheck "rpath"
3135 netbsd &&_rpath=yes
3136 if test "$_rpath" = yes ; then
3137 for I in `echo $_ld_extra | sed 's/-L//g'` ; do
3138 tmp="$tmp ` echo $I | sed 's/.*/ -L& -Wl,-R&/'`"
3139 done
3140 _ld_extra=$tmp
3142 echores "$_rpath"
3144 echocheck "iconv"
3145 if test "$_iconv" = auto ; then
3146 cat > $TMPC << EOF
3147 #include <stdio.h>
3148 #include <unistd.h>
3149 #include <iconv.h>
3150 #define INBUFSIZE 1024
3151 #define OUTBUFSIZE 4096
3153 char inbuffer[INBUFSIZE];
3154 char outbuffer[OUTBUFSIZE];
3156 int main(void) {
3157 size_t numread;
3158 iconv_t icdsc;
3159 char *tocode="UTF-8";
3160 char *fromcode="cp1250";
3161 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) {
3162 while ((numread = read (0, inbuffer, INBUFSIZE))) {
3163 char *iptr=inbuffer;
3164 char *optr=outbuffer;
3165 size_t inleft=numread;
3166 size_t outleft=OUTBUFSIZE;
3167 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3168 != (size_t)(-1)) {
3169 write (1, outbuffer, OUTBUFSIZE - outleft);
3172 if (iconv_close(icdsc) == -1)
3175 return 0;
3178 _iconv=no
3179 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3180 cc_check $_ld_lm $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3181 _iconv=yes && break
3182 done
3184 if test "$_iconv" = yes ; then
3185 _def_iconv='#define CONFIG_ICONV 1'
3186 else
3187 _def_iconv='#undef CONFIG_ICONV'
3189 echores "$_iconv"
3192 echocheck "soundcard.h"
3193 _soundcard_h=no
3194 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3195 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3196 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3197 cat > $TMPC << EOF
3198 #include <$_soundcard_header>
3199 int main(void) { return 0; }
3201 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3202 done
3204 if test "$_soundcard_h" = yes ; then
3205 if test $_soundcard_header = "sys/soundcard.h"; then
3206 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3207 else
3208 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3211 echores "$_soundcard_h"
3214 echocheck "sys/dvdio.h"
3215 cat > $TMPC << EOF
3216 #include <unistd.h>
3217 #include <sys/dvdio.h>
3218 int main(void) { return 0; }
3220 _dvdio=no
3221 cc_check && _dvdio=yes
3222 if test "$_dvdio" = yes ; then
3223 _def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3224 else
3225 _def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3227 echores "$_dvdio"
3230 echocheck "sys/cdio.h"
3231 cat > $TMPC << EOF
3232 #include <unistd.h>
3233 #include <sys/cdio.h>
3234 int main(void) { return 0; }
3236 _cdio=no
3237 cc_check && _cdio=yes
3238 if test "$_cdio" = yes ; then
3239 _def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3240 else
3241 _def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3243 echores "$_cdio"
3246 echocheck "linux/cdrom.h"
3247 cat > $TMPC << EOF
3248 #include <sys/types.h>
3249 #include <linux/cdrom.h>
3250 int main(void) { return 0; }
3252 _cdrom=no
3253 cc_check && _cdrom=yes
3254 if test "$_cdrom" = yes ; then
3255 _def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3256 else
3257 _def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3259 echores "$_cdrom"
3262 echocheck "dvd.h"
3263 cat > $TMPC << EOF
3264 #include <dvd.h>
3265 int main(void) { return 0; }
3267 _dvd=no
3268 cc_check && _dvd=yes
3269 if test "$_dvd" = yes ; then
3270 _def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3271 else
3272 _def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3274 echores "$_dvd"
3277 if bsdos; then
3278 echocheck "BSDI dvd.h"
3279 cat > $TMPC << EOF
3280 #include <dvd.h>
3281 int main(void) { return 0; }
3283 _bsdi_dvd=no
3284 cc_check && _bsdi_dvd=yes
3285 if test "$_bsdi_dvd" = yes ; then
3286 _def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3287 else
3288 _def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3290 echores "$_bsdi_dvd"
3291 fi #if bsdos
3294 if hpux; then
3295 # also used by AIX, but AIX does not support VCD and/or libdvdread
3296 echocheck "HP-UX SCSI header"
3297 cat > $TMPC << EOF
3298 #include <sys/scsi.h>
3299 int main(void) { return 0; }
3301 _hpux_scsi_h=no
3302 cc_check && _hpux_scsi_h=yes
3303 if test "$_hpux_scsi_h" = yes ; then
3304 _def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3305 else
3306 _def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3308 echores "$_hpux_scsi_h"
3309 fi #if hpux
3312 if sunos; then
3313 echocheck "userspace SCSI headers (Solaris)"
3314 cat > $TMPC << EOF
3315 #include <unistd.h>
3316 #include <stropts.h>
3317 #include <sys/scsi/scsi_types.h>
3318 #include <sys/scsi/impl/uscsi.h>
3319 int main(void) { return 0; }
3321 _sol_scsi_h=no
3322 cc_check && _sol_scsi_h=yes
3323 if test "$_sol_scsi_h" = yes ; then
3324 _def_sol_scsi_h='#define SOLARIS_USCSI 1'
3325 else
3326 _def_sol_scsi_h='#undef SOLARIS_USCSI'
3328 echores "$_sol_scsi_h"
3329 fi #if sunos
3332 echocheck "termcap"
3333 if test "$_termcap" = auto ; then
3334 cat > $TMPC <<EOF
3335 #include <stddef.h>
3336 #include <term.h>
3337 int main(void) { tgetent(NULL, NULL); return 0; }
3339 _termcap=no
3340 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3341 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
3342 && _termcap=yes && break
3343 done
3345 if test "$_termcap" = yes ; then
3346 _def_termcap='#define HAVE_TERMCAP 1'
3347 _res_comment="using $_ld_tmp"
3348 else
3349 _def_termcap='#undef HAVE_TERMCAP'
3351 echores "$_termcap"
3354 echocheck "termios"
3355 _def_termios='#undef HAVE_TERMIOS'
3356 def_termios_h='#undef HAVE_TERMIOS_H'
3357 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3358 if test "$_termios" = auto ; then
3359 _termios=no
3360 for _termios_header in "sys/termios.h" "termios.h"; do
3361 cat > $TMPC <<EOF
3362 #include <$_termios_header>
3363 int main(void) { return 0; }
3365 cc_check && _termios=yes && _res_comment="$_termios_header" && break
3366 done
3369 if test "$_termios" = yes ; then
3370 _def_termios='#define HAVE_TERMIOS 1'
3371 if test "$_termios_header" = "termios.h" ; then
3372 def_termios_h='#define HAVE_TERMIOS_H 1'
3373 else
3374 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3377 echores "$_termios"
3380 echocheck "shm"
3381 if test "$_shm" = auto ; then
3382 cat > $TMPC << EOF
3383 #include <sys/types.h>
3384 #include <sys/shm.h>
3385 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3387 _shm=no
3388 cc_check && _shm=yes
3390 if test "$_shm" = yes ; then
3391 _def_shm='#define HAVE_SHM 1'
3392 else
3393 _def_shm='#undef HAVE_SHM'
3395 echores "$_shm"
3398 echocheck "strsep()"
3399 cat > $TMPC << EOF
3400 #include <string.h>
3401 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3403 _strsep=no
3404 cc_check && _strsep=yes
3405 if test "$_strsep" = yes ; then
3406 _def_strsep='#define HAVE_STRSEP 1'
3407 _need_strsep=no
3408 else
3409 _def_strsep='#undef HAVE_STRSEP'
3410 _need_strsep=yes
3412 echores "$_strsep"
3415 echocheck "vsscanf()"
3416 cat > $TMPC << EOF
3417 #define _ISOC99_SOURCE
3418 #include <stdarg.h>
3419 #include <stdio.h>
3420 int main(void) { vsscanf(0, 0, 0); return 0; }
3422 _vsscanf=no
3423 cc_check && _vsscanf=yes
3424 if test "$_vsscanf" = yes ; then
3425 _def_vsscanf='#define HAVE_VSSCANF 1'
3426 _need_vsscanf=no
3427 else
3428 _def_vsscanf='#undef HAVE_VSSCANF'
3429 _need_vsscanf=yes
3431 echores "$_vsscanf"
3434 echocheck "swab()"
3435 cat > $TMPC << EOF
3436 #include <unistd.h>
3437 int main(void) { swab(0, 0, 0); return 0; }
3439 _swab=no
3440 cc_check && _swab=yes
3441 if test "$_swab" = yes ; then
3442 _def_swab='#define HAVE_SWAB 1'
3443 _need_swab=no
3444 else
3445 _def_swab='#undef HAVE_SWAB'
3446 _need_swab=yes
3448 echores "$_swab"
3450 echocheck "POSIX select()"
3451 cat > $TMPC << EOF
3452 #include <stdio.h>
3453 #include <stdlib.h>
3454 #include <sys/types.h>
3455 #include <string.h>
3456 #include <sys/time.h>
3457 #include <unistd.h>
3458 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3460 _posix_select=no
3461 _def_posix_select='#undef HAVE_POSIX_SELECT'
3462 #select() of kLIBC (OS/2) supports socket only
3463 ! os2 && cc_check && _posix_select=yes \
3464 && _def_posix_select='#define HAVE_POSIX_SELECT 1'
3465 echores "$_posix_select"
3468 echocheck "gettimeofday()"
3469 cat > $TMPC << EOF
3470 #include <stdio.h>
3471 #include <sys/time.h>
3472 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3474 _gettimeofday=no
3475 cc_check && _gettimeofday=yes
3476 if test "$_gettimeofday" = yes ; then
3477 _def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3478 _need_gettimeofday=no
3479 else
3480 _def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3481 _need_gettimeofday=yes
3483 echores "$_gettimeofday"
3486 echocheck "glob()"
3487 cat > $TMPC << EOF
3488 #include <stdio.h>
3489 #include <glob.h>
3490 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3492 _glob=no
3493 cc_check && _glob=yes
3494 if test "$_glob" = yes ; then
3495 _def_glob='#define HAVE_GLOB 1'
3496 _need_glob=no
3497 else
3498 _def_glob='#undef HAVE_GLOB'
3499 _need_glob=yes
3501 echores "$_glob"
3504 echocheck "setenv()"
3505 cat > $TMPC << EOF
3506 #include <stdlib.h>
3507 int main(void) { setenv("","",0); return 0; }
3509 _setenv=no
3510 cc_check && _setenv=yes
3511 if test "$_setenv" = yes ; then
3512 _def_setenv='#define HAVE_SETENV 1'
3513 _need_setenv=no
3514 else
3515 _def_setenv='#undef HAVE_SETENV'
3516 _need_setenv=yes
3518 echores "$_setenv"
3521 if sunos; then
3522 echocheck "sysi86()"
3523 cat > $TMPC << EOF
3524 #include <sys/sysi86.h>
3525 int main(void) { sysi86(0); return 0; }
3527 _sysi86=no
3528 cc_check && _sysi86=yes
3529 if test "$_sysi86" = yes ; then
3530 _def_sysi86='#define HAVE_SYSI86 1'
3531 cat > $TMPC << EOF
3532 #include <sys/sysi86.h>
3533 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3535 cc_check && _def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3536 else
3537 _def_sysi86='#undef HAVE_SYSI86'
3539 echores "$_sysi86"
3540 fi #if sunos
3543 echocheck "sys/sysinfo.h"
3544 cat > $TMPC << EOF
3545 #include <sys/sysinfo.h>
3546 int main(void) {
3547 struct sysinfo s_info;
3548 sysinfo(&s_info);
3549 return 0;
3552 _sys_sysinfo=no
3553 cc_check && _sys_sysinfo=yes
3554 if test "$_sys_sysinfo" = yes ; then
3555 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3556 else
3557 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3559 echores "$_sys_sysinfo"
3562 if darwin; then
3564 echocheck "Mac OS X APIs"
3565 if test "$_macosx" = auto ; then
3566 productName=`/usr/bin/sw_vers -productName`
3567 if test "$productName" = "Mac OS X" ||
3568 test "$productName" = "Mac OS X Server" ; then
3569 _macosx=yes
3570 else
3571 _macosx=no
3572 _noaomodules="macosx $_noaomodules"
3573 _novomodules="macosx quartz $_novomodules"
3576 if test "$_macosx" = yes ; then
3577 cat > $TMPC <<EOF
3578 #include <Carbon/Carbon.h>
3579 #include <QuickTime/QuickTime.h>
3580 #include <CoreAudio/CoreAudio.h>
3581 int main(void) {
3582 EnterMovies();
3583 ExitMovies();
3584 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
3585 return 0;
3588 if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then
3589 _ld_extra="$_ld_extra -framework Carbon -framework QuickTime -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
3590 _coreaudio=yes
3591 _def_coreaudio='#define CONFIG_COREAUDIO 1'
3592 _aosrc="$_aosrc ao_macosx.c"
3593 _aomodules="macosx $_aomodules"
3594 _def_quartz='#define CONFIG_QUARTZ 1'
3595 _vosrc="$_vosrc vo_quartz.c"
3596 _vomodules="quartz $_vomodules"
3597 _def_quicktime='#define CONFIG_QUICKTIME 1'
3598 else
3599 _macosx=no
3600 _coreaudio=no
3601 _def_coreaudio='#undef CONFIG_COREAUDIO'
3602 _noaomodules="macosx $_noaomodules"
3603 _def_quartz='#undef CONFIG_QUARTZ'
3604 _novomodules="quartz $_novomodules"
3605 _def_quicktime='#undef CONFIG_QUICKTIME'
3607 cat > $TMPC <<EOF
3608 #include <Carbon/Carbon.h>
3609 #include <QuartzCore/CoreVideo.h>
3610 int main(void) { return 0; }
3612 if cc_check -framework Carbon -framework QuartzCore -framework OpenGL; then
3613 _vosrc="$_vosrc vo_macosx.m"
3614 _vomodules="macosx $_vomodules"
3615 _ld_extra="$_ld_extra -framework Cocoa -framework QuartzCore -framework OpenGL"
3616 _def_corevideo='#define CONFIG_COREVIDEO 1'
3617 _corevideo=yes
3618 else
3619 _novomodules="macosx $_novomodules"
3620 _def_corevideo='#undef CONFIG_COREVIDEO'
3621 _corevideo=no
3624 echores "$_macosx"
3626 echocheck "Mac OS X Finder Support"
3627 if test "$_macosx_finder" = auto ; then
3628 _macosx_finder=$_macosx
3630 if test "$_macosx_finder" = yes; then
3631 _def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3632 _macosx_finder=yes
3633 else
3634 _def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3635 _macosx_finder=no
3637 echores "$_macosx_finder"
3639 echocheck "Mac OS X Bundle file locations"
3640 if test "$_macosx_bundle" = auto ; then
3641 _macosx_bundle=$_macosx_finder
3643 if test "$_macosx_bundle" = yes; then
3644 _def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3645 else
3646 _def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3647 _macosx_bundle=no
3649 echores "$_macosx_bundle"
3651 echocheck "Apple Remote"
3652 if test "$_apple_remote" = auto ; then
3653 _apple_remote=no
3654 cat > $TMPC <<EOF
3655 #include <stdio.h>
3656 #include <IOKit/IOCFPlugIn.h>
3657 int main(void) {
3658 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3659 CFMutableDictionaryRef hidMatchDictionary;
3660 IOReturn ioReturnValue;
3662 // Set up a matching dictionary to search the I/O Registry by class.
3663 // name for all HID class devices
3664 hidMatchDictionary = IOServiceMatching("AppleIRController");
3666 // Now search I/O Registry for matching devices.
3667 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3668 hidMatchDictionary, &hidObjectIterator);
3670 // If search is unsuccessful, return nonzero.
3671 if (ioReturnValue != kIOReturnSuccess ||
3672 !IOIteratorIsValid(hidObjectIterator)) {
3673 return 1;
3675 return 0;
3678 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3680 if test "$_apple_remote" = yes ; then
3681 _def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3682 _ld_extra="$_ld_extra -framework IOKit"
3683 else
3684 _def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3686 echores "$_apple_remote"
3688 fi #if darwin
3690 if linux; then
3692 echocheck "Apple IR"
3693 if test "$_apple_ir" = auto ; then
3694 _apple_ir=no
3695 cat > $TMPC <<EOF
3696 #include <linux/types.h>
3697 #include <linux/input.h>
3698 int main(void) {
3699 struct input_event ev;
3700 struct input_id id;
3701 return 0;
3704 cc_check && tmp_run && _apple_ir=yes
3706 if test "$_apple_ir" = yes ; then
3707 _def_apple_ir='#define CONFIG_APPLE_IR 1'
3708 else
3709 _def_apple_ir='#undef CONFIG_APPLE_IR'
3711 echores "$_apple_ir"
3712 fi #if linux
3714 echocheck "pkg-config"
3715 _pkg_config=pkg-config
3716 if `$_pkg_config --version > /dev/null 2>&1`; then
3717 if test "$_ld_static"; then
3718 _pkg_config="$_pkg_config --static"
3720 echores "yes"
3721 else
3722 _pkg_config=false
3723 echores "no"
3727 echocheck "Samba support (libsmbclient)"
3728 if test "$_smb" = yes; then
3729 _ld_extra="$_ld_extra -lsmbclient"
3731 if test "$_smb" = auto; then
3732 _smb=no
3733 cat > $TMPC << EOF
3734 #include <libsmbclient.h>
3735 int main(void) { smbc_opendir("smb://"); return 0; }
3737 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3738 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3739 _smb=yes && break
3740 done
3743 if test "$_smb" = yes; then
3744 _def_smb="#define CONFIG_LIBSMBCLIENT"
3745 _inputmodules="smb $_inputmodules"
3746 else
3747 _def_smb="#undef CONFIG_LIBSMBCLIENT"
3748 _noinputmodules="smb $_noinputmodules"
3750 echores "$_smb"
3753 #########
3754 # VIDEO #
3755 #########
3758 echocheck "tdfxfb"
3759 if test "$_tdfxfb" = yes ; then
3760 _def_tdfxfb='#define CONFIG_TDFXFB 1'
3761 _vosrc="$_vosrc vo_tdfxfb.c"
3762 _vomodules="tdfxfb $_vomodules"
3763 else
3764 _def_tdfxfb='#undef CONFIG_TDFXFB'
3765 _novomodules="tdfxfb $_novomodules"
3767 echores "$_tdfxfb"
3769 echocheck "s3fb"
3770 if test "$_s3fb" = yes ; then
3771 _def_s3fb='#define CONFIG_S3FB 1'
3772 _vosrc="$_vosrc vo_s3fb.c"
3773 _vomodules="s3fb $_vomodules"
3774 else
3775 _def_s3fb='#undef CONFIG_S3FB'
3776 _novomodules="s3fb $_novomodules"
3778 echores "$_s3fb"
3780 echocheck "wii"
3781 if test "$_wii" = yes ; then
3782 _def_wii='#define CONFIG_WII 1'
3783 _vosrc="$_vosrc vo_wii.c"
3784 _vomodules="wii $_vomodules"
3785 else
3786 _def_wii='#undef CONFIG_WII'
3787 _novomodules="wii $_novomodules"
3789 echores "$_wii"
3791 echocheck "tdfxvid"
3792 if test "$_tdfxvid" = yes ; then
3793 _def_tdfxvid='#define CONFIG_TDFX_VID 1'
3794 _vosrc="$_vosrc vo_tdfx_vid.c"
3795 _vomodules="tdfx_vid $_vomodules"
3796 else
3797 _def_tdfxvid='#undef CONFIG_TDFX_VID'
3798 _novomodules="tdfx_vid $_novomodules"
3800 echores "$_tdfxvid"
3802 echocheck "xvr100"
3803 if test "$_xvr100" = auto ; then
3804 cat > $TMPC << EOF
3805 #include <unistd.h>
3806 #include <sys/fbio.h>
3807 #include <sys/visual_io.h>
3808 int main(void) {
3809 struct vis_identifier ident;
3810 struct fbgattr attr;
3811 ioctl(0, VIS_GETIDENTIFIER, &ident);
3812 ioctl(0, FBIOGATTR, &attr);
3813 return 0;
3816 _xvr100=no
3817 cc_check && _xvr100=yes
3819 if test "$_xvr100" = yes ; then
3820 _def_xvr100='#define CONFIG_XVR100 1'
3821 _vosrc="$_vosrc vo_xvr100.c"
3822 _vomodules="xvr100 $_vomodules"
3823 else
3824 _def_tdfxvid='#undef CONFIG_XVR100'
3825 _novomodules="xvr100 $_novomodules"
3827 echores "$_xvr100"
3829 echocheck "tga"
3830 if test "$_tga" = yes ; then
3831 _def_tga='#define CONFIG_TGA 1'
3832 _vosrc="$_vosrc vo_tga.c"
3833 _vomodules="tga $_vomodules"
3834 else
3835 _def_tga='#undef CONFIG_TGA'
3836 _novomodules="tga $_novomodules"
3838 echores "$_tga"
3841 echocheck "md5sum support"
3842 if test "$_md5sum" = yes; then
3843 _def_md5sum="#define CONFIG_MD5SUM"
3844 _vosrc="$_vosrc vo_md5sum.c"
3845 _vomodules="md5sum $_vomodules"
3846 else
3847 _def_md5sum="#undef CONFIG_MD5SUM"
3848 _novomodules="md5sum $_novomodules"
3850 echores "$_md5sum"
3853 echocheck "yuv4mpeg support"
3854 if test "$_yuv4mpeg" = yes; then
3855 _def_yuv4mpeg="#define CONFIG_YUV4MPEG"
3856 _vosrc="$_vosrc vo_yuv4mpeg.c"
3857 _vomodules="yuv4mpeg $_vomodules"
3858 else
3859 _def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3860 _novomodules="yuv4mpeg $_novomodules"
3862 echores "$_yuv4mpeg"
3865 echocheck "bl"
3866 if test "$_bl" = yes ; then
3867 _def_bl='#define CONFIG_BL 1'
3868 _vosrc="$_vosrc vo_bl.c"
3869 _vomodules="bl $_vomodules"
3870 else
3871 _def_bl='#undef CONFIG_BL'
3872 _novomodules="bl $_novomodules"
3874 echores "$_bl"
3877 echocheck "DirectFB"
3878 if test "$_directfb" = auto ; then
3879 _directfb=no
3880 cat > $TMPC <<EOF
3881 #include <directfb.h>
3882 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
3884 for _inc_tmp in "" -I/usr/local/include/directfb \
3885 -I/usr/include/directfb -I/usr/local/include; do
3886 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
3887 _inc_extra="$_inc_extra $_inc_tmp" && break
3888 done
3891 dfb_version() {
3892 expr $1 \* 65536 + $2 \* 256 + $3
3895 if test "$_directfb" = yes; then
3896 cat > $TMPC << EOF
3897 #include <directfb_version.h>
3899 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
3902 if $_cc -E $TMPC $_inc_extra > "$TMPEXE"; then
3903 _directfb_version=`sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()'`
3904 _dfb_major=`echo $_directfb_version | cut -d . -f 1`
3905 _dfb_minor=`echo $_directfb_version | cut -d . -f 2`
3906 _dfb_micro=`echo $_directfb_version | cut -d . -f 3`
3907 _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
3908 if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
3909 _def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
3910 _res_comment="$_directfb_version"
3911 test "$_dfb_version" -ge `dfb_version 0 9 15` && _dfbmga=yes
3912 else
3913 _def_directfb_version='#undef DIRECTFBVERSION'
3914 _directfb=no
3915 _res_comment="version >=0.9.13 required"
3917 else
3918 _directfb=no
3919 _res_comment="failed to get version"
3922 echores "$_directfb"
3924 if test "$_directfb" = yes ; then
3925 _def_directfb='#define CONFIG_DIRECTFB 1'
3926 _vosrc="$_vosrc vo_directfb2.c"
3927 _vomodules="directfb $_vomodules"
3928 _libs_mplayer="$_libs_mplayer -ldirectfb"
3929 else
3930 _def_directfb='#undef CONFIG_DIRECTFB'
3931 _novomodules="directfb $_novomodules"
3933 if test "$_dfbmga" = yes; then
3934 _vosrc="$_vosrc vo_dfbmga.c"
3935 _vomodules="dfbmga $_vomodules"
3936 _def_dfbmga='#define CONFIG_DFBMGA 1'
3937 else
3938 _novomodules="dfbmga $_novomodules"
3939 _def_dfbmga='#undef CONFIG_DFBMGA'
3943 echocheck "X11 headers presence"
3944 _x11_headers="no"
3945 _res_comment="check if the dev(el) packages are installed"
3946 for I in `echo $_inc_extra | sed s/-I//g` /usr/include ; do
3947 if test -f "$I/X11/Xlib.h" ; then
3948 _x11_headers="yes"
3949 _res_comment=""
3950 break
3952 done
3953 if test $_cross_compile = no; then
3954 for I in /usr/X11/include /usr/X11R6/include /usr/include/X11R6 /usr/openwin/include ; do
3955 if test -f "$I/X11/Xlib.h" ; then
3956 _inc_extra="$_inc_extra -I$I"
3957 _x11_headers="yes"
3958 _res_comment="using $I"
3959 break
3961 done
3963 echores "$_x11_headers"
3966 echocheck "X11"
3967 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3968 cat > $TMPC <<EOF
3969 #include <X11/Xlib.h>
3970 #include <X11/Xutil.h>
3971 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
3973 for I in "" -L/usr/X11R6/lib -L/usr/lib/X11R6 -L/usr/X11/lib \
3974 -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 -L/usr/lib ; do
3975 if netbsd; then
3976 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R`echo $I | sed s/^-L//`"
3977 else
3978 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3980 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" \
3981 && _x11=yes && break
3982 done
3984 if test "$_x11" = yes ; then
3985 _def_x11='#define CONFIG_X11 1'
3986 _vosrc="$_vosrc x11_common.c vo_x11.c vo_xover.c"
3987 _vomodules="x11 xover $_vomodules"
3988 else
3989 _x11=no
3990 _def_x11='#undef CONFIG_X11'
3991 _novomodules="x11 $_novomodules"
3992 _res_comment="check if the dev(el) packages are installed"
3993 # disable stuff that depends on X
3994 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no
3996 echores "$_x11"
3998 echocheck "Xss screensaver extensions"
3999 if test "$_xss" = auto ; then
4000 cat > $TMPC << EOF
4001 #include <X11/Xlib.h>
4002 #include <X11/extensions/scrnsaver.h>
4003 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4005 _xss=no
4006 cc_check -lXss && _xss=yes
4008 if test "$_xss" = yes ; then
4009 _def_xss='#define CONFIG_XSS 1'
4010 _libs_mplayer="$_libs_mplayer -lXss"
4011 else
4012 _def_xss='#undef CONFIG_XSS'
4014 echores "$_xss"
4016 echocheck "DPMS"
4017 _xdpms3=no
4018 _xdpms4=no
4019 if test "$_x11" = yes ; then
4020 cat > $TMPC <<EOF
4021 #include <X11/Xmd.h>
4022 #include <X11/Xlib.h>
4023 #include <X11/Xutil.h>
4024 #include <X11/Xatom.h>
4025 #include <X11/extensions/dpms.h>
4026 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4028 cc_check -lXdpms && _xdpms3=yes
4029 cat > $TMPC <<EOF
4030 #include <X11/Xlib.h>
4031 #include <X11/extensions/dpms.h>
4032 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4034 cc_check -lXext && _xdpms4=yes
4036 if test "$_xdpms4" = yes ; then
4037 _def_xdpms='#define CONFIG_XDPMS 1'
4038 _res_comment="using Xdpms 4"
4039 echores "yes"
4040 elif test "$_xdpms3" = yes ; then
4041 _def_xdpms='#define CONFIG_XDPMS 1'
4042 _libs_mplayer="$_libs_mplayer -lXdpms"
4043 _res_comment="using Xdpms 3"
4044 echores "yes"
4045 else
4046 _def_xdpms='#undef CONFIG_XDPMS'
4047 echores "no"
4051 echocheck "Xv"
4052 if test "$_xv" = auto ; then
4053 cat > $TMPC <<EOF
4054 #include <X11/Xlib.h>
4055 #include <X11/extensions/Xvlib.h>
4056 int main(void) {
4057 (void) XvGetPortAttribute(0, 0, 0, 0);
4058 (void) XvQueryPortAttributes(0, 0, 0);
4059 return 0; }
4061 _xv=no
4062 cc_check -lXv && _xv=yes
4065 if test "$_xv" = yes ; then
4066 _def_xv='#define CONFIG_XV 1'
4067 _libs_mplayer="$_libs_mplayer -lXv"
4068 _vosrc="$_vosrc vo_xv.c"
4069 _vomodules="xv $_vomodules"
4070 else
4071 _def_xv='#undef CONFIG_XV'
4072 _novomodules="xv $_novomodules"
4074 echores "$_xv"
4077 echocheck "XvMC"
4078 if test "$_xv" = yes && test "$_xvmc" != no ; then
4079 _xvmc=no
4080 cat > $TMPC <<EOF
4081 #include <X11/Xlib.h>
4082 #include <X11/extensions/Xvlib.h>
4083 #include <X11/extensions/XvMClib.h>
4084 int main(void) {
4085 (void) XvMCQueryExtension(0,0,0);
4086 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4087 return 0; }
4089 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4090 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4091 done
4093 if test "$_xvmc" = yes ; then
4094 _def_xvmc='#define HAVE_XVMC 1'
4095 _libs_mplayer="$_libs_mplayer -lXvMC -l$_xvmclib"
4096 _vosrc="$_vosrc vo_xvmc.c"
4097 _vomodules="xvmc $_vomodules"
4098 _res_comment="using $_xvmclib"
4099 else
4100 _def_xvmc='#undef HAVE_XVMC'
4101 _novomodules="xvmc $_novomodules"
4102 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
4104 echores "$_xvmc"
4107 echocheck "Xinerama"
4108 if test "$_xinerama" = auto ; then
4109 cat > $TMPC <<EOF
4110 #include <X11/Xlib.h>
4111 #include <X11/extensions/Xinerama.h>
4112 int main(void) { (void) XineramaIsActive(0); return 0; }
4114 _xinerama=no
4115 cc_check -lXinerama && _xinerama=yes
4118 if test "$_xinerama" = yes ; then
4119 _def_xinerama='#define CONFIG_XINERAMA 1'
4120 _libs_mplayer="$_libs_mplayer -lXinerama"
4121 else
4122 _def_xinerama='#undef CONFIG_XINERAMA'
4124 echores "$_xinerama"
4127 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4128 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4129 # named 'X extensions' or something similar.
4130 # This check may be useful for future mplayer versions (to change resolution)
4131 # If you run into problems, remove '-lXxf86vm'.
4132 echocheck "Xxf86vm"
4133 if test "$_vm" = auto ; then
4134 cat > $TMPC <<EOF
4135 #include <X11/Xlib.h>
4136 #include <X11/extensions/xf86vmode.h>
4137 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4139 _vm=no
4140 cc_check -lXxf86vm && _vm=yes
4142 if test "$_vm" = yes ; then
4143 _def_vm='#define CONFIG_XF86VM 1'
4144 _libs_mplayer="$_libs_mplayer -lXxf86vm"
4145 else
4146 _def_vm='#undef CONFIG_XF86VM'
4148 echores "$_vm"
4150 # Check for the presence of special keycodes, like audio control buttons
4151 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4152 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4153 # have these new keycodes.
4154 echocheck "XF86keysym"
4155 if test "$_xf86keysym" = auto; then
4156 _xf86keysym=no
4157 cat > $TMPC <<EOF
4158 #include <X11/Xlib.h>
4159 #include <X11/XF86keysym.h>
4160 int main(void) { return XF86XK_AudioPause; }
4162 cc_check && _xf86keysym=yes
4164 if test "$_xf86keysym" = yes ; then
4165 _def_xf86keysym='#define CONFIG_XF86XK 1'
4166 else
4167 _def_xf86keysym='#undef CONFIG_XF86XK'
4169 echores "$_xf86keysym"
4171 echocheck "DGA"
4172 if test "$_dga2" = auto && test "$_x11" = yes ; then
4173 cat > $TMPC << EOF
4174 #include <X11/Xlib.h>
4175 #include <X11/extensions/xf86dga.h>
4176 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4178 _dga2=no
4179 cc_check -lXxf86dga && _dga2=yes
4181 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4182 cat > $TMPC << EOF
4183 #include <X11/Xlib.h>
4184 #include <X11/extensions/xf86dga.h>
4185 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4187 _dga1=no
4188 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4191 _dga=no
4192 _def_dga='#undef CONFIG_DGA'
4193 _def_dga1='#undef CONFIG_DGA1'
4194 _def_dga2='#undef CONFIG_DGA2'
4195 if test "$_dga1" = yes ; then
4196 _dga=yes
4197 _def_dga1='#define CONFIG_DGA1 1'
4198 _res_comment="using DGA 1.0"
4199 elif test "$_dga2" = yes ; then
4200 _dga=yes
4201 _def_dga2='#define CONFIG_DGA2 1'
4202 _res_comment="using DGA 2.0"
4204 if test "$_dga" = yes ; then
4205 _def_dga='#define CONFIG_DGA 1'
4206 _libs_mplayer="$_libs_mplayer -lXxf86dga"
4207 _vosrc="$_vosrc vo_dga.c"
4208 _vomodules="dga $_vomodules"
4209 else
4210 _novomodules="dga $_novomodules"
4212 echores "$_dga"
4215 echocheck "3dfx"
4216 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4217 _def_3dfx='#define CONFIG_3DFX 1'
4218 _vosrc="$_vosrc vo_3dfx.c"
4219 _vomodules="3dfx $_vomodules"
4220 else
4221 _def_3dfx='#undef CONFIG_3DFX'
4222 _novomodules="3dfx $_novomodules"
4224 echores "$_3dfx"
4227 echocheck "OpenGL"
4228 #Note: this test is run even with --enable-gl since we autodetect linker flags
4229 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4230 cat > $TMPC << EOF
4231 #ifdef GL_WIN32
4232 #include <windows.h>
4233 #include <GL/gl.h>
4234 #else
4235 #include <GL/gl.h>
4236 #include <X11/Xlib.h>
4237 #include <GL/glx.h>
4238 #endif
4239 int main(void) {
4240 #ifdef GL_WIN32
4241 HDC dc;
4242 wglCreateContext(dc);
4243 #else
4244 glXCreateContext(NULL, NULL, NULL, True);
4245 #endif
4246 glFinish();
4247 return 0;
4250 _gl=no
4251 if cc_check -lGL $_ld_lm ; then
4252 _gl=yes
4253 _libs_mplayer="$_libs_mplayer -lGL $_ld_dl"
4254 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4255 _gl=yes
4256 _libs_mplayer="$_libs_mplayer -lGL $_ld_pthread $_ld_dl"
4257 elif cc_check -DGL_WIN32 -lopengl32 ; then
4258 _gl=yes
4259 _gl_win32=yes
4260 _libs_mplayer="$_libs_mplayer -lopengl32 -lgdi32"
4262 else
4263 _gl=no
4265 if test "$_gl" = yes ; then
4266 _def_gl='#define CONFIG_GL 1'
4267 _vosrc="$_vosrc vo_gl.c vo_gl2.c gl_common.c"
4268 if test "$_gl_win32" = yes ; then
4269 _def_gl_win32='#define GL_WIN32 1'
4270 _vosrc="$_vosrc w32_common.c"
4271 _res_comment="win32 version"
4273 _vomodules="opengl $_vomodules"
4274 else
4275 _def_gl='#undef CONFIG_GL'
4276 _def_gl_win32='#undef GL_WIN32'
4277 _novomodules="opengl $_novomodules"
4279 echores "$_gl"
4282 echocheck "VIDIX"
4283 _def_vidix='#undef CONFIG_VIDIX'
4284 _def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4285 _vidix_drv_cyberblade=no
4286 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4287 _vidix_drv_ivtv=no
4288 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4289 _vidix_drv_ivtv=no
4290 _def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4291 _vidix_drv_mach64=no
4292 _def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4293 _vidix_drv_mga=no
4294 _def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4295 _vidix_drv_mga_crtc2=no
4296 _def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4297 _vidix_drv_nvidia=no
4298 _def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4299 _vidix_drv_pm2=no
4300 _def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4301 _vidix_drv_pm3=no
4302 _def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4303 _vidix_drv_radeon=no
4304 _def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4305 _vidix_drv_rage128=no
4306 _def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4307 _vidix_drv_s3=no
4308 _def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4309 _vidix_drv_sh_veu=no
4310 _def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4311 _vidix_drv_sis=no
4312 _def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4313 _vidix_drv_unichrome=no
4314 if test "$_vidix" = auto ; then
4315 _vidix=no
4316 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4317 && _vidix=yes
4318 (ppc || alpha) && linux && _vidix=yes
4320 echores "$_vidix"
4322 if test "$_vidix" = yes ; then
4323 _def_vidix='#define CONFIG_VIDIX 1'
4324 _vosrc="$_vosrc vo_cvidix.c"
4325 _vomodules="cvidix $_vomodules"
4326 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4327 test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
4329 # some vidix drivers are architecture and os specific, discard them elsewhere
4330 x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//`
4331 (test $host_arch = "sh" && linux) || _vidix_drivers=`echo $_vidix_drivers | sed s/sh_veu//`
4333 for driver in $_vidix_drivers ; do
4334 uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
4335 eval _vidix_drv_${driver}=yes
4336 eval _def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4337 done
4339 echocheck "VIDIX PCI device name database"
4340 echores "$_vidix_pcidb"
4341 if test "$_vidix_pcidb" = yes ; then
4342 _vidix_pcidb_val=1
4343 else
4344 _vidix_pcidb_val=0
4347 echocheck "VIDIX dhahelper support"
4348 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4349 echores "$_dhahelper"
4351 echocheck "VIDIX svgalib_helper support"
4352 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4353 echores "$_svgalib_helper"
4355 else
4356 _novomodules="cvidix $_novomodules"
4359 if test "$_vidix" = yes && win32; then
4360 _vosrc="$_vosrc vo_winvidix.c"
4361 _vomodules="winvidix $_vomodules"
4362 _libs_mplayer="$_libs_mplayer -lgdi32"
4363 else
4364 _novomodules="winvidix $_novomodules"
4366 if test "$_vidix" = yes && test "$_x11" = yes; then
4367 _vosrc="$_vosrc vo_xvidix.c"
4368 _vomodules="xvidix $_vomodules"
4369 else
4370 _novomodules="xvidix $_novomodules"
4373 echocheck "/dev/mga_vid"
4374 if test "$_mga" = auto ; then
4375 _mga=no
4376 test -c /dev/mga_vid && _mga=yes
4378 if test "$_mga" = yes ; then
4379 _def_mga='#define CONFIG_MGA 1'
4380 _vosrc="$_vosrc vo_mga.c"
4381 _vomodules="mga $_vomodules"
4382 else
4383 _def_mga='#undef CONFIG_MGA'
4384 _novomodules="mga $_novomodules"
4386 echores "$_mga"
4389 echocheck "xmga"
4390 if test "$_xmga" = auto ; then
4391 _xmga=no
4392 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4394 if test "$_xmga" = yes ; then
4395 _def_xmga='#define CONFIG_XMGA 1'
4396 _vosrc="$_vosrc vo_xmga.c"
4397 _vomodules="xmga $_vomodules"
4398 else
4399 _def_xmga='#undef CONFIG_XMGA'
4400 _novomodules="xmga $_novomodules"
4402 echores "$_xmga"
4405 echocheck "GGI"
4406 if test "$_ggi" = auto ; then
4407 cat > $TMPC << EOF
4408 #include <ggi/ggi.h>
4409 int main(void) { ggiInit(); return 0; }
4411 _ggi=no
4412 cc_check -lggi && _ggi=yes
4414 if test "$_ggi" = yes ; then
4415 _def_ggi='#define CONFIG_GGI 1'
4416 _libs_mplayer="$_libs_mplayer -lggi"
4417 _vosrc="$_vosrc vo_ggi.c"
4418 _vomodules="ggi $_vomodules"
4419 else
4420 _def_ggi='#undef CONFIG_GGI'
4421 _novomodules="ggi $_novomodules"
4423 echores "$_ggi"
4425 echocheck "GGI extension: libggiwmh"
4426 if test "$_ggiwmh" = auto ; then
4427 _ggiwmh=no
4428 cat > $TMPC << EOF
4429 #include <ggi/ggi.h>
4430 #include <ggi/wmh.h>
4431 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4433 cc_check -lggi -lggiwmh && _ggiwmh=yes
4435 # needed to get right output on obscure combination
4436 # like --disable-ggi --enable-ggiwmh
4437 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4438 _def_ggiwmh='#define CONFIG_GGIWMH 1'
4439 _libs_mplayer="$_libs_mplayer -lggiwmh"
4440 else
4441 _ggiwmh=no
4442 _def_ggiwmh='#undef CONFIG_GGIWMH'
4444 echores "$_ggiwmh"
4447 echocheck "AA"
4448 if test "$_aa" = auto ; then
4449 cat > $TMPC << EOF
4450 #include <aalib.h>
4451 extern struct aa_hardware_params aa_defparams;
4452 extern struct aa_renderparams aa_defrenderparams;
4453 int main(void) {
4454 aa_context *c;
4455 aa_renderparams *p;
4456 (void) aa_init(0, 0, 0);
4457 c = aa_autoinit(&aa_defparams);
4458 p = aa_getrenderparams();
4459 aa_autoinitkbd(c,0);
4460 return 0; }
4462 _aa=no
4463 for _ld_tmp in "-laa" ; do
4464 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" && _aa=yes && break
4465 done
4467 if test "$_aa" = yes ; then
4468 _def_aa='#define CONFIG_AA 1'
4469 if cygwin ; then
4470 _libs_mplayer="$_libs_mplayer `aalib-config --libs | cut -d " " -f 2,5,6`"
4472 _vosrc="$_vosrc vo_aa.c"
4473 _vomodules="aa $_vomodules"
4474 else
4475 _def_aa='#undef CONFIG_AA'
4476 _novomodules="aa $_novomodules"
4478 echores "$_aa"
4481 echocheck "CACA"
4482 if test "$_caca" = auto ; then
4483 _caca=no
4484 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4485 cat > $TMPC << EOF
4486 #include <caca.h>
4487 #ifdef CACA_API_VERSION_1
4488 #include <caca0.h>
4489 #endif
4490 int main(void) { (void) caca_init(); return 0; }
4492 cc_check `caca-config --libs` && _caca=yes
4495 if test "$_caca" = yes ; then
4496 _def_caca='#define CONFIG_CACA 1'
4497 _inc_extra="$_inc_extra `caca-config --cflags`"
4498 _libs_mplayer="$_libs_mplayer `caca-config --libs`"
4499 _vosrc="$_vosrc vo_caca.c"
4500 _vomodules="caca $_vomodules"
4501 else
4502 _def_caca='#undef CONFIG_CACA'
4503 _novomodules="caca $_novomodules"
4505 echores "$_caca"
4508 echocheck "SVGAlib"
4509 if test "$_svga" = auto ; then
4510 cat > $TMPC << EOF
4511 #include <vga.h>
4512 int main(void) { return 0; }
4514 _svga=no
4515 cc_check -lvga $_ld_lm && _svga=yes
4517 if test "$_svga" = yes ; then
4518 _def_svga='#define CONFIG_SVGALIB 1'
4519 _libs_mplayer="$_libs_mplayer -lvga"
4520 _vosrc="$_vosrc vo_svga.c"
4521 _vomodules="svga $_vomodules"
4522 else
4523 _def_svga='#undef CONFIG_SVGALIB'
4524 _novomodules="svga $_novomodules"
4526 echores "$_svga"
4529 echocheck "FBDev"
4530 if test "$_fbdev" = auto ; then
4531 _fbdev=no
4532 linux && _fbdev=yes
4534 if test "$_fbdev" = yes ; then
4535 _def_fbdev='#define CONFIG_FBDEV 1'
4536 _vosrc="$_vosrc vo_fbdev.c vo_fbdev2.c"
4537 _vomodules="fbdev $_vomodules"
4538 else
4539 _def_fbdev='#undef CONFIG_FBDEV'
4540 _novomodules="fbdev $_novomodules"
4542 echores "$_fbdev"
4546 echocheck "DVB"
4547 if test "$_dvb" = auto ; then
4548 _dvb=no
4549 cat >$TMPC << EOF
4550 #include <poll.h>
4551 #include <sys/ioctl.h>
4552 #include <stdio.h>
4553 #include <time.h>
4554 #include <unistd.h>
4555 #include <ost/dmx.h>
4556 #include <ost/frontend.h>
4557 #include <ost/sec.h>
4558 #include <ost/video.h>
4559 #include <ost/audio.h>
4560 int main(void) {return 0;}
4562 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4563 cc_check $_inc_tmp && _dvb=yes && \
4564 _inc_extra="$_inc_extra $_inc_tmp" && break
4565 done
4567 echores "$_dvb"
4568 if test "$_dvb" = yes ; then
4569 _def_dvb='#define CONFIG_DVB 1'
4570 _def_dvbin='#define CONFIG_DVBIN 1'
4571 _aomodules="mpegpes(dvb) $_aomodules"
4572 _vomodules="mpegpes(dvb) $_vomodules"
4575 echocheck "DVB HEAD"
4576 if test "$_dvbhead" = auto ; then
4577 _dvbhead=no
4579 cat >$TMPC << EOF
4580 #include <poll.h>
4581 #include <sys/ioctl.h>
4582 #include <stdio.h>
4583 #include <time.h>
4584 #include <unistd.h>
4585 #include <linux/dvb/dmx.h>
4586 #include <linux/dvb/frontend.h>
4587 #include <linux/dvb/video.h>
4588 #include <linux/dvb/audio.h>
4589 int main(void) {return 0;}
4591 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4592 cc_check $_inc_tmp && _dvbhead=yes && \
4593 _inc_extra="$_inc_extra $_inc_tmp" && break
4594 done
4596 echores "$_dvbhead"
4597 if test "$_dvbhead" = yes ; then
4598 _def_dvb='#define CONFIG_DVB 1'
4599 _def_dvb_head='#define CONFIG_DVB_HEAD 1'
4600 _def_dvbin='#define CONFIG_DVBIN 1'
4601 _aomodules="mpegpes(dvb) $_aomodules"
4602 _vomodules="mpegpes(dvb) $_vomodules"
4605 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4606 _def_dvb='#undef CONFIG_DVB'
4607 _def_dvb_head='#undef CONFIG_DVB_HEAD'
4608 _def_dvbin='#undef CONFIG_DVBIN '
4609 _aomodules="mpegpes(file) $_aomodules"
4610 _vomodules="mpegpes(file) $_vomodules"
4613 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4614 _dvbin=yes
4615 _inputmodules="dvb $_inputmodules"
4616 else
4617 _dvbin=no
4618 _noinputmodules="dvb $_noinputmodules"
4624 echocheck "PNG support"
4625 if test "$_png" = auto ; then
4626 _png=no
4627 if irix ; then
4628 # Don't check for -lpng on irix since it has its own libpng
4629 # incompatible with the GNU libpng
4630 _res_comment="disabled on irix (not GNU libpng)"
4631 else
4632 cat > $TMPC << EOF
4633 #include <png.h>
4634 #include <string.h>
4635 int main(void) {
4636 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4637 printf("libpng: %s\n", png_libpng_ver);
4638 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4641 if cc_check -lpng -lz $_ld_lm ; then
4642 if tmp_run ; then
4643 _png=yes
4644 else
4645 _res_comment="mismatch of library and header versions"
4650 echores "$_png"
4651 if test "$_png" = yes ; then
4652 _def_png='#define CONFIG_PNG 1'
4653 _ld_extra="$_ld_extra -lpng -lz"
4654 _vosrc="$_vosrc vo_png.c"
4655 _vomodules="png $_vomodules"
4656 else
4657 _def_png='#undef CONFIG_PNG'
4658 _novomodules="png $_novomodules"
4661 echocheck "JPEG support"
4662 if test "$_jpeg" = auto ; then
4663 _jpeg=no
4664 cat > $TMPC << EOF
4665 #include <stdio.h>
4666 #include <stdlib.h>
4667 #include <setjmp.h>
4668 #include <string.h>
4669 #include <jpeglib.h>
4670 int main(void) { return 0; }
4672 if cc_check -ljpeg $_ld_lm ; then
4673 if tmp_run ; then
4674 _jpeg=yes
4678 echores "$_jpeg"
4680 if test "$_jpeg" = yes ; then
4681 _def_jpeg='#define CONFIG_JPEG 1'
4682 _vosrc="$_vosrc vo_jpeg.c"
4683 _vomodules="jpeg $_vomodules"
4684 _ld_extra="$_ld_extra -ljpeg"
4685 else
4686 _def_jpeg='#undef CONFIG_JPEG'
4687 _novomodules="jpeg $_novomodules"
4692 echocheck "PNM support"
4693 if test "$_pnm" = yes; then
4694 _def_pnm="#define CONFIG_PNM"
4695 _vosrc="$_vosrc vo_pnm.c"
4696 _vomodules="pnm $_vomodules"
4697 else
4698 _def_pnm="#undef CONFIG_PNM"
4699 _novomodules="pnm $_novomodules"
4701 echores "$_pnm"
4705 echocheck "GIF support"
4706 # This is to appease people who want to force gif support.
4707 # If it is forced to yes, then we still do checks to determine
4708 # which gif library to use.
4709 if test "$_gif" = yes ; then
4710 _force_gif=yes
4711 _gif=auto
4714 if test "$_gif" = auto ; then
4715 _gif=no
4716 cat > $TMPC << EOF
4717 #include <gif_lib.h>
4718 int main(void) { return 0; }
4720 for _ld_gif in "-lungif" "-lgif" ; do
4721 cc_check $_ld_gif && tmp_run && _gif=yes && break
4722 done
4725 # If no library was found, and the user wants support forced,
4726 # then we force it on with libgif, as this is the safest
4727 # assumption IMHO. (libungif & libregif both create symbolic
4728 # links to libgif. We also assume that no x11 support is needed,
4729 # because if you are forcing this, then you _should_ know what
4730 # you are doing. [ Besides, package maintainers should never
4731 # have compiled x11 deps into libungif in the first place. ] )
4732 # </rant>
4733 # --Joey
4734 if test "$_force_gif" = yes && test "$_gif" = no ; then
4735 _gif=yes
4736 _ld_gif="-lgif"
4739 if test "$_gif" = yes ; then
4740 _def_gif='#define CONFIG_GIF 1'
4741 _vosrc="$_vosrc vo_gif89a.c"
4742 _codecmodules="gif $_codecmodules"
4743 _vomodules="gif89a $_vomodules"
4744 _res_comment="old version, some encoding functions disabled"
4745 _def_gif_4='#undef CONFIG_GIF_4'
4746 _ld_extra="$_ld_extra $_ld_gif"
4748 cat > $TMPC << EOF
4749 #include <signal.h>
4750 #include <gif_lib.h>
4751 void catch() { exit(1); }
4752 int main(void) {
4753 signal(SIGSEGV, catch); // catch segfault
4754 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4755 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4756 return 0;
4759 if cc_check "$_ld_gif" && tmp_run ; then
4760 _def_gif_4='#define CONFIG_GIF_4 1'
4761 _res_comment=""
4763 else
4764 _def_gif='#undef CONFIG_GIF'
4765 _def_gif_4='#undef CONFIG_GIF_4'
4766 _novomodules="gif89a $_novomodules"
4767 _nocodecmodules="gif $_nocodecmodules"
4769 echores "$_gif"
4772 case "$_gif" in yes*)
4773 echocheck "broken giflib workaround"
4774 _def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4776 cat > $TMPC << EOF
4777 #include <gif_lib.h>
4778 int main(void) {
4779 GifFileType gif;
4780 printf("UserData is at address %p\n", gif.UserData);
4781 return 0;
4784 if cc_check "$_ld_gif" && tmp_run ; then
4785 _def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4786 echores "disabled"
4787 else
4788 echores "enabled"
4791 esac
4794 echocheck "VESA support"
4795 if test "$_vesa" = auto ; then
4796 cat > $TMPC << EOF
4797 #include <vbe.h>
4798 int main(void) { vbeVersion(); return 0; }
4800 _vesa=no
4801 cc_check -lvbe -llrmi && _vesa=yes
4803 if test "$_vesa" = yes ; then
4804 _def_vesa='#define CONFIG_VESA 1'
4805 _libs_mplayer="$_libs_mplayer -lvbe -llrmi"
4806 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c gtf.c"
4807 _vomodules="vesa $_vomodules"
4808 else
4809 _def_vesa='#undef CONFIG_VESA'
4810 _novomodules="vesa $_novomodules"
4812 echores "$_vesa"
4814 #################
4815 # VIDEO + AUDIO #
4816 #################
4819 echocheck "SDL"
4820 if test -z "$_sdlconfig" ; then
4821 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4822 _sdlconfig="sdl-config"
4823 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4824 _sdlconfig="sdl11-config"
4825 else
4826 _sdlconfig=false
4829 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4830 cat > $TMPC << EOF
4831 #include <SDL.h>
4832 int main(void) {
4833 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4834 return 0;
4837 _sdl=no
4838 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4839 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
4840 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
4841 if test "$_sdlversion" -gt 116 ; then
4842 if test "$_sdlversion" -lt 121 ; then
4843 _def_sdlbuggy='#define BUGGY_SDL'
4844 else
4845 _def_sdlbuggy='#undef BUGGY_SDL'
4847 _sdl=yes
4852 if test "$_sdl" = yes ; then
4853 _def_sdl='#define CONFIG_SDL 1'
4854 if cygwin ; then
4855 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/`"
4856 _inc_extra="$_inc_extra `$_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/`"
4857 elif mingw32 ; then
4858 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//`"
4859 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-Dmain=SDL_main//`"
4860 else
4861 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs`"
4862 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//`"
4864 _vosrc="$_vosrc vo_sdl.c"
4865 _vomodules="sdl $_vomodules"
4866 _aosrc="$_aosrc ao_sdl.c"
4867 _aomodules="sdl $_aomodules"
4868 _res_comment="using $_sdlconfig"
4869 else
4870 _def_sdl='#undef CONFIG_SDL'
4871 _novomodules="sdl $_novomodules"
4872 _noaomodules="sdl $_noaomodules"
4874 echores "$_sdl"
4877 if win32; then
4879 echocheck "Windows waveout"
4880 if test "$_win32waveout" = auto ; then
4881 cat > $TMPC << EOF
4882 #include <windows.h>
4883 #include <mmsystem.h>
4884 int main(void) { return 0; }
4886 _win32waveout=no
4887 cc_check -lwinmm && _win32waveout=yes
4889 if test "$_win32waveout" = yes ; then
4890 _def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4891 _libs_mplayer="$_libs_mplayer -lwinmm"
4892 _aosrc="$_aosrc ao_win32.c"
4893 _aomodules="win32 $_aomodules"
4894 else
4895 _def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4896 _noaomodules="win32 $_noaomodules"
4898 echores "$_win32waveout"
4900 echocheck "Directx"
4901 if test "$_directx" = auto ; then
4902 cat > $TMPC << EOF
4903 #include <windows.h>
4904 #include <ddraw.h>
4905 #include <dsound.h>
4906 int main(void) { return 0; }
4908 _directx=no
4909 cc_check -lgdi32 && _directx=yes
4911 if test "$_directx" = yes ; then
4912 _def_directx='#define CONFIG_DIRECTX 1'
4913 _libs_mplayer="$_libs_mplayer -lgdi32"
4914 _vosrc="$_vosrc vo_directx.c"
4915 _vomodules="directx $_vomodules"
4916 _aosrc="$_aosrc ao_dsound.c"
4917 _aomodules="dsound $_aomodules"
4918 else
4919 _def_directx='#undef CONFIG_DIRECTX'
4920 _novomodules="directx $_novomodules"
4921 _noaomodules="dsound $_noaomodules"
4923 echores "$_directx"
4925 fi #if win32; then
4928 echocheck "NAS"
4929 if test "$_nas" = auto ; then
4930 cat > $TMPC << EOF
4931 #include <audio/audiolib.h>
4932 int main(void) { return 0; }
4934 _nas=no
4935 cc_check $_ld_lm -laudio -lXt && _nas=yes
4937 if test "$_nas" = yes ; then
4938 _def_nas='#define CONFIG_NAS 1'
4939 _libs_mplayer="$_libs_mplayer -laudio -lXt"
4940 _aosrc="$_aosrc ao_nas.c"
4941 _aomodules="nas $_aomodules"
4942 else
4943 _noaomodules="nas $_noaomodules"
4944 _def_nas='#undef CONFIG_NAS'
4946 echores "$_nas"
4948 echocheck "DXR2"
4949 if test "$_dxr2" = auto; then
4950 _dxr2=no
4951 cat > $TMPC << EOF
4952 #include <dxr2ioctl.h>
4953 int main(void) { return 0; }
4955 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
4956 cc_check $_inc_tmp && _dxr2=yes && \
4957 _inc_extra="$_inc_extra $_inc_tmp" && break
4958 done
4960 if test "$_dxr2" = yes; then
4961 _def_dxr2='#define CONFIG_DXR2 1'
4962 _vosrc="$_vosrc vo_dxr2.c"
4963 _aosrc="$_aosrc ao_dxr2.c"
4964 _aomodules="dxr2 $_aomodules"
4965 _vomodules="dxr2 $_vomodules"
4966 else
4967 _def_dxr2='#undef CONFIG_DXR2'
4968 _noaomodules="dxr2 $_noaomodules"
4969 _novomodules="dxr2 $_novomodules"
4971 echores "$_dxr2"
4973 echocheck "DXR3/H+"
4974 if test "$_dxr3" = auto ; then
4975 cat > $TMPC << EOF
4976 #include <linux/em8300.h>
4977 int main(void) { return 0; }
4979 _dxr3=no
4980 cc_check && _dxr3=yes
4982 if test "$_dxr3" = yes ; then
4983 _def_dxr3='#define CONFIG_DXR3 1'
4984 _vosrc="$_vosrc vo_dxr3.c"
4985 _vomodules="dxr3 $_vomodules"
4986 else
4987 _def_dxr3='#undef CONFIG_DXR3'
4988 _novomodules="dxr3 $_novomodules"
4990 echores "$_dxr3"
4993 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4994 if test "$_ivtv" = auto ; then
4995 cat > $TMPC << EOF
4996 #include <stdlib.h>
4997 #include <inttypes.h>
4998 #include <linux/types.h>
4999 #include <linux/videodev2.h>
5000 #include <linux/ivtv.h>
5001 #include <sys/ioctl.h>
5002 int main(void) {
5003 struct ivtv_cfg_stop_decode sd;
5004 struct ivtv_cfg_start_decode sd1;
5005 ioctl (0, IVTV_IOC_START_DECODE, &sd1);
5006 ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
5007 return 0; }
5009 _ivtv=no
5010 cc_check && _ivtv=yes
5012 if test "$_ivtv" = yes ; then
5013 _def_ivtv='#define CONFIG_IVTV 1'
5014 _vosrc="$_vosrc vo_ivtv.c"
5015 _vomodules="ivtv $_vomodules"
5016 _aosrc="$_aosrc ao_ivtv.c"
5017 _aomodules="ivtv $_aomodules"
5018 else
5019 _def_ivtv='#undef CONFIG_IVTV'
5020 _novomodules="ivtv $_novomodules"
5021 _noaomodules="ivtv $_noaomodules"
5023 echores "$_ivtv"
5026 echocheck "V4L2 MPEG Decoder"
5027 if test "$_v4l2" = auto ; then
5028 cat > $TMPC << EOF
5029 #include <stdlib.h>
5030 #include <inttypes.h>
5031 #include <linux/types.h>
5032 #include <linux/videodev2.h>
5033 #include <linux/version.h>
5034 int main(void) {
5035 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5036 #error kernel headers too old, need 2.6.22
5037 bad_kernel_version();
5038 #endif
5039 struct v4l2_ext_controls ctrls;
5040 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5041 return 0;
5044 _v4l2=no
5045 cc_check && _v4l2=yes
5047 if test "$_v4l2" = yes ; then
5048 _def_v4l2='#define CONFIG_V4L2_DECODER 1'
5049 _vosrc="$_vosrc vo_v4l2.c"
5050 _vomodules="v4l2 $_vomodules"
5051 _aosrc="$_aosrc ao_v4l2.c"
5052 _aomodules="v4l2 $_aomodules"
5053 else
5054 _def_v4l2='#undef CONFIG_V4L2_DECODER'
5055 _novomodules="v4l2 $_novomodules"
5056 _noaomodules="v4l2 $_noaomodules"
5058 echores "$_v4l2"
5062 #########
5063 # AUDIO #
5064 #########
5067 echocheck "OSS Audio"
5068 if test "$_ossaudio" = auto ; then
5069 cat > $TMPC << EOF
5070 #include <sys/ioctl.h>
5071 #include <$_soundcard_header>
5072 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5074 _ossaudio=no
5075 cc_check && _ossaudio=yes
5077 if test "$_ossaudio" = yes ; then
5078 _def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5079 _aosrc="$_aosrc ao_oss.c"
5080 _aomodules="oss $_aomodules"
5081 if test "$_linux_devfs" = yes; then
5082 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5083 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5084 else
5085 cat > $TMPC << EOF
5086 #include <sys/ioctl.h>
5087 #include <$_soundcard_header>
5088 #ifdef OPEN_SOUND_SYSTEM
5089 int main(void) { return 0; }
5090 #else
5091 #error Not the real thing
5092 #endif
5094 _real_ossaudio=no
5095 cc_check && _real_ossaudio=yes
5096 if test "$_real_ossaudio" = yes; then
5097 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5098 elif netbsd || openbsd ; then
5099 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5100 _ld_extra="$_ld_extra -lossaudio"
5101 else
5102 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5104 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5106 else
5107 _def_ossaudio='#undef CONFIG_OSS_AUDIO'
5108 _def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5109 _def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5110 _noaomodules="oss $_noaomodules"
5112 echores "$_ossaudio"
5115 echocheck "aRts"
5116 if test "$_arts" = auto ; then
5117 _arts=no
5118 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5120 cat > $TMPC << EOF
5121 #include <artsc.h>
5122 int main(void) { return 0; }
5124 cc_check `artsc-config --libs` `artsc-config --cflags` && tmp_run && _arts=yes
5129 if test "$_arts" = yes ; then
5130 _def_arts='#define CONFIG_ARTS 1'
5131 _aosrc="$_aosrc ao_arts.c"
5132 _aomodules="arts $_aomodules"
5133 _libs_mplayer="$_libs_mplayer `artsc-config --libs`"
5134 _inc_extra="$_inc_extra `artsc-config --cflags`"
5135 else
5136 _noaomodules="arts $_noaomodules"
5138 echores "$_arts"
5141 echocheck "EsounD"
5142 if test "$_esd" = auto ; then
5143 _esd=no
5144 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5146 cat > $TMPC << EOF
5147 #include <esd.h>
5148 int main(void) { int fd = esd_open_sound("test"); return fd; }
5150 cc_check `esd-config --libs` `esd-config --cflags` && _esd=yes
5154 echores "$_esd"
5156 if test "$_esd" = yes ; then
5157 _def_esd='#define CONFIG_ESD 1'
5158 _aosrc="$_aosrc ao_esd.c"
5159 _aomodules="esd $_aomodules"
5160 _libs_mplayer="$_libs_mplayer `esd-config --libs`"
5161 _inc_extra="$_inc_extra `esd-config --cflags`"
5163 echocheck "esd_get_latency()"
5164 cat > $TMPC << EOF
5165 #include <esd.h>
5166 int main(void) { return esd_get_latency(0); }
5168 cc_check `esd-config --libs` `esd-config --cflags` && _esd_latency=yes && _def_esd_latency='#define CONFIG_ESD_LATENCY'
5169 echores "$_esd_latency"
5170 else
5171 _def_esd='#undef CONFIG_ESD'
5172 _def_esd_latency='#undef CONFIG_ESD_LATENCY'
5173 _noaomodules="esd $_noaomodules"
5176 echocheck "pulse"
5177 if test "$_pulse" = auto ; then
5178 _pulse=no
5179 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5181 cat > $TMPC << EOF
5182 #include <pulse/pulseaudio.h>
5183 int main(void) { return 0; }
5185 cc_check `$_pkg_config --libs --cflags libpulse` && tmp_run && _pulse=yes
5189 echores "$_pulse"
5191 if test "$_pulse" = yes ; then
5192 _def_pulse='#define CONFIG_PULSE 1'
5193 _aosrc="$_aosrc ao_pulse.c"
5194 _aomodules="pulse $_aomodules"
5195 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs libpulse`"
5196 _inc_extra="$_inc_extra `$_pkg_config --cflags libpulse`"
5197 else
5198 _def_pulse='#undef CONFIG_PULSE'
5199 _noaomodules="pulse $_noaomodules"
5203 echocheck "JACK"
5204 if test "$_jack" = auto ; then
5205 _jack=yes
5207 cat > $TMPC << EOF
5208 #include <jack/jack.h>
5209 int main(void) { jack_client_new("test"); return 0; }
5211 if cc_check -ljack ; then
5212 _libs_mplayer="$_libs_mplayer -ljack"
5213 elif cc_check `$_pkg_config --libs --cflags --silence-errors jack` ; then
5214 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs jack`"
5215 _inc_extra="$_inc_extra "`$_pkg_config --cflags jack`""
5216 else
5217 _jack=no
5221 if test "$_jack" = yes ; then
5222 _def_jack='#define CONFIG_JACK 1'
5223 _aosrc="$_aosrc ao_jack.c"
5224 _aomodules="jack $_aomodules"
5225 else
5226 _noaomodules="jack $_noaomodules"
5228 echores "$_jack"
5230 echocheck "OpenAL"
5231 if test "$_openal" = auto ; then
5232 _openal=no
5233 cat > $TMPC << EOF
5234 #ifdef OPENAL_AL_H
5235 #include <OpenAL/al.h>
5236 #else
5237 #include <AL/al.h>
5238 #endif
5239 int main(void) {
5240 alSourceQueueBuffers(0, 0, 0);
5241 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5242 return 0;
5245 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5246 cc_check $I && _openal=yes && break
5247 cc_check -DOPENAL_AL_H=1 $I && _def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5248 done
5249 test "$_openal" = yes && _libs_mplayer="$_libs_mplayer $I"
5251 if test "$_openal" = yes ; then
5252 _def_openal='#define CONFIG_OPENAL 1'
5253 _aosrc="$_aosrc ao_openal.c"
5254 _aomodules="openal $_aomodules"
5255 else
5256 _noaomodules="openal $_noaomodules"
5258 echores "$_openal"
5260 echocheck "ALSA audio"
5261 if test "$_alloca" != yes ; then
5262 _alsa=no
5263 _res_comment="alloca missing"
5265 if test "$_alsa" != no ; then
5266 _alsa=no
5267 cat > $TMPC << EOF
5268 #include <sys/time.h>
5269 #include <sys/asoundlib.h>
5270 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5271 #error "alsa version != 0.5.x"
5272 #endif
5273 int main(void) { return 0; }
5275 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5277 cat > $TMPC << EOF
5278 #include <sys/time.h>
5279 #include <sys/asoundlib.h>
5280 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5281 #error "alsa version != 0.9.x"
5282 #endif
5283 int main(void) { return 0; }
5285 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5286 cat > $TMPC << EOF
5287 #include <sys/time.h>
5288 #include <alsa/asoundlib.h>
5289 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5290 #error "alsa version != 0.9.x"
5291 #endif
5292 int main(void) { return 0; }
5294 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5296 cat > $TMPC << EOF
5297 #include <sys/time.h>
5298 #include <sys/asoundlib.h>
5299 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5300 #error "alsa version != 1.0.x"
5301 #endif
5302 int main(void) { return 0; }
5304 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5305 cat > $TMPC << EOF
5306 #include <sys/time.h>
5307 #include <alsa/asoundlib.h>
5308 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5309 #error "alsa version != 1.0.x"
5310 #endif
5311 int main(void) { return 0; }
5313 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5315 _def_alsa='#undef CONFIG_ALSA'
5316 _def_alsa5='#undef CONFIG_ALSA5'
5317 _def_alsa9='#undef CONFIG_ALSA9'
5318 _def_alsa1x='#undef CONFIG_ALSA1X'
5319 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5320 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5321 if test "$_alsaver" ; then
5322 _alsa=yes
5323 if test "$_alsaver" = '0.5.x' ; then
5324 _alsa5=yes
5325 _aosrc="$_aosrc ao_alsa5.c"
5326 _aomodules="alsa5 $_aomodules"
5327 _def_alsa5='#define CONFIG_ALSA5 1'
5328 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5329 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5330 elif test "$_alsaver" = '0.9.x-sys' ; then
5331 _alsa9=yes
5332 _aosrc="$_aosrc ao_alsa.c"
5333 _aomodules="alsa $_aomodules"
5334 _def_alsa='#define CONFIG_ALSA 1'
5335 _def_alsa9='#define CONFIG_ALSA9 1'
5336 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5337 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5338 elif test "$_alsaver" = '0.9.x-alsa' ; then
5339 _alsa9=yes
5340 _aosrc="$_aosrc ao_alsa.c"
5341 _aomodules="alsa $_aomodules"
5342 _def_alsa='#define CONFIG_ALSA 1'
5343 _def_alsa9='#define CONFIG_ALSA9 1'
5344 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5345 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5346 elif test "$_alsaver" = '1.0.x-sys' ; then
5347 _alsa1x=yes
5348 _aosrc="$_aosrc ao_alsa.c"
5349 _aomodules="alsa $_aomodules"
5350 _def_alsa='#define CONFIG_ALSA 1'
5351 _def_alsa1x="#define CONFIG_ALSA1X 1"
5352 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5353 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5354 elif test "$_alsaver" = '1.0.x-alsa' ; then
5355 _alsa1x=yes
5356 _aosrc="$_aosrc ao_alsa.c"
5357 _aomodules="alsa $_aomodules"
5358 _def_alsa='#define CONFIG_ALSA 1'
5359 _def_alsa1x="#define CONFIG_ALSA1X 1"
5360 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5361 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5362 else
5363 _alsa=no
5364 _res_comment="unknown version"
5366 _ld_extra="$_ld_extra -lasound $_ld_dl $_ld_pthread"
5367 else
5368 _noaomodules="alsa $_noaomodules"
5370 echores "$_alsa"
5373 echocheck "Sun audio"
5374 if test "$_sunaudio" = auto ; then
5375 cat > $TMPC << EOF
5376 #include <sys/types.h>
5377 #include <sys/audioio.h>
5378 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5380 _sunaudio=no
5381 cc_check && _sunaudio=yes
5383 if test "$_sunaudio" = yes ; then
5384 _def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5385 _aosrc="$_aosrc ao_sun.c"
5386 _aomodules="sun $_aomodules"
5387 else
5388 _def_sunaudio='#undef CONFIG_SUN_AUDIO'
5389 _noaomodules="sun $_noaomodules"
5391 echores "$_sunaudio"
5394 if sunos; then
5395 echocheck "Sun mediaLib"
5396 if test "$_mlib" = auto ; then
5397 _mlib=no
5398 cat > $TMPC << EOF
5399 #include <mlib.h>
5400 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5402 cc_check -lmlib && _mlib=yes
5404 test "$_mlib" = yes && _cpuexts="MLIB $_cpuexts"
5405 echores "$_mlib"
5406 fi #if sunos
5409 if irix; then
5410 echocheck "SGI audio"
5411 if test "$_sgiaudio" = auto ; then
5412 # check for SGI audio
5413 cat > $TMPC << EOF
5414 #include <dmedia/audio.h>
5415 int main(void) { return 0; }
5417 _sgiaudio=no
5418 cc_check && _sgiaudio=yes
5420 if test "$_sgiaudio" = "yes" ; then
5421 _def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5422 _libs_mplayer="$_libs_mplayer -laudio"
5423 _aosrc="$_aosrc ao_sgi.c"
5424 _aomodules="sgi $_aomodules"
5425 else
5426 _def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5427 _noaomodules="sgi $_noaomodules"
5429 echores "$_sgiaudio"
5430 fi #if irix
5433 # set default CD/DVD devices
5434 if win32 || os2 ; then
5435 default_cdrom_device="D:"
5436 elif darwin ; then
5437 default_cdrom_device="/dev/disk1"
5438 elif dragonfly ; then
5439 default_cdrom_device="/dev/cd0"
5440 elif freebsd ; then
5441 default_cdrom_device="/dev/acd0"
5442 elif openbsd ; then
5443 default_cdrom_device="/dev/rcd0a"
5444 elif sunos ; then
5445 default_cdrom_device="/vol/dev/aliases/cdrom0"
5446 elif amigaos ; then
5447 default_cdrom_device="a1ide.device:2"
5448 else
5449 default_cdrom_device="/dev/cdrom"
5452 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5453 default_dvd_device=$default_cdrom_device
5454 elif darwin ; then
5455 default_dvd_device="/dev/rdiskN"
5456 else
5457 default_dvd_device="/dev/dvd"
5461 echocheck "VCD support"
5462 if linux || freebsd || netbsd || dragonfly || bsdos || darwin || sunos || mingw32; then
5463 _inputmodules="vcd $_inputmodules"
5464 _def_vcd='#define CONFIG_VCD 1'
5465 _vcd="yes"
5466 else
5467 _def_vcd='#undef CONFIG_VCD'
5468 _noinputmodules="vcd $_noinputmodules"
5469 _res_comment="not supported on this OS"
5470 _vcd="no"
5472 echores "$_vcd"
5476 echocheck "dvdread"
5477 if test "$_dvdread_internal" = auto ; then
5478 _dvdread_internal=no
5479 _dvdread=no
5480 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5481 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5482 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5483 || darwin || win32; then
5484 _dvdread_internal=yes
5485 _dvdread=yes
5487 elif test "$_dvdread" = auto ; then
5488 _dvdread=no
5489 if test "$_dl" = yes; then
5490 cat > $TMPC << EOF
5491 #include <inttypes.h>
5492 #include <dvdread/dvd_reader.h>
5493 #include <dvdread/ifo_types.h>
5494 #include <dvdread/ifo_read.h>
5495 #include <dvdread/nav_read.h>
5496 int main(void) { return 0; }
5499 _dvdreadcflags=`$_dvdreadconfig --cflags`
5500 _dvdreadlibs=`$_dvdreadconfig --libs`
5501 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5502 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5503 _dvdread=yes
5504 _inc_extra="$_inc_extra $_dvdreadcflags"
5505 _ld_extra="$_ld_extra $_dvdreadlibs"
5506 _res_comment="external"
5510 if test "$_dvdread_internal" = yes; then
5511 _def_dvdread_internal="#define CONFIG_DVDREAD_INTERNAL 1"
5512 _def_dvdread='#define CONFIG_DVDREAD 1'
5513 _inputmodules="dvdread(internal) $_inputmodules"
5514 _largefiles=yes
5515 _res_comment="internal"
5516 elif test "$_dvdread" = yes; then
5517 _def_dvdread='#define CONFIG_DVDREAD 1'
5518 _largefiles=yes
5519 _ld_extra="$_ld_extra -ldvdread"
5520 _inputmodules="dvdread(external) $_inputmodules"
5521 _res_comment="external"
5522 else
5523 _def_dvdread_internal="#undef CONFIG_DVDREAD_INTERNAL"
5524 _def_dvdread='#undef CONFIG_DVDREAD'
5525 _noinputmodules="dvdread $_noinputmodules"
5527 echores "$_dvdread"
5530 echocheck "internal libdvdcss"
5531 if test "$_libdvdcss_internal" = auto ; then
5532 _libdvdcss_internal=no
5533 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5534 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5536 if test "$_libdvdcss_internal" = yes ; then
5537 if linux || netbsd || openbsd || bsdos ; then
5538 _def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5539 openbsd && _def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5540 elif freebsd || dragonfly ; then
5541 _def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5542 elif darwin ; then
5543 _def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5544 _ld_extra="$_ld_extra -framework IOKit"
5545 elif cygwin ; then
5546 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5547 elif beos ; then
5548 cflags_libdvdcss="-DSYS_BEOS"
5549 elif os2 ; then
5550 cflags_libdvdcss="-DSYS_OS2"
5552 cflags_libdvdcss_dvdread="-Ilibdvdcss -DHAVE_DVDCSS_DVDCSS_H"
5553 _inputmodules="libdvdcss(internal) $_inputmodules"
5554 _largefiles=yes
5555 else
5556 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5558 echores "$_libdvdcss_internal"
5561 echocheck "cdparanoia"
5562 if test "$_cdparanoia" = auto ; then
5563 cat > $TMPC <<EOF
5564 #include <cdda_interface.h>
5565 #include <cdda_paranoia.h>
5566 // This need a better test. How ?
5567 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5569 _cdparanoia=no
5570 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5571 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5572 _cdparanoia=yes && _inc_extra="$_inc_extra $_inc_tmp" && break
5573 done
5575 if test "$_cdparanoia" = yes ; then
5576 _cdda='yes'
5577 _ld_extra="$_ld_extra -lcdda_interface -lcdda_paranoia"
5578 openbsd && _ld_extra="$_ld_extra -lutil"
5580 echores "$_cdparanoia"
5583 echocheck "libcdio"
5584 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5585 cat > $TMPC << EOF
5586 #include <stdio.h>
5587 #include <cdio/version.h>
5588 #include <cdio/cdda.h>
5589 #include <cdio/paranoia.h>
5590 int main(void) {
5591 void *test = cdda_verbose_set;
5592 printf("%s\n", CDIO_VERSION);
5593 return test == (void *)1;
5596 _libcdio=no
5597 for _ld_tmp in "" "-lwinmm" ; do
5598 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5599 cc_check $_ld_tmp $_ld_lm \
5600 && _libcdio=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5601 done
5602 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5603 _inc_tmp=`$_pkg_config --cflags libcdio_paranoia`
5604 _ld_tmp=`$_pkg_config --libs libcdio_paranoia`
5605 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5606 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5609 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5610 _cdda='yes'
5611 _def_libcdio='#define CONFIG_LIBCDIO'
5612 _def_havelibcdio='yes'
5613 else
5614 if test "$_cdparanoia" = yes ; then
5615 _res_comment="using cdparanoia"
5617 _def_libcdio='#undef CONFIG_LIBCDIO'
5618 _def_havelibcdio='no'
5620 echores "$_libcdio"
5622 if test "$_cdda" = yes ; then
5623 test $_cddb = auto && test $_network = yes && _cddb=yes
5624 _def_cdparanoia='#define CONFIG_CDDA'
5625 _inputmodules="cdda $_inputmodules"
5626 else
5627 _def_cdparanoia='#undef CONFIG_CDDA'
5628 _noinputmodules="cdda $_noinputmodules"
5631 if test "$_cddb" = yes ; then
5632 _def_cddb='#define CONFIG_CDDB'
5633 _inputmodules="cddb $_inputmodules"
5634 else
5635 _cddb=no
5636 _def_cddb='#undef CONFIG_CDDB'
5637 _noinputmodules="cddb $_noinputmodules"
5640 echocheck "bitmap font support"
5641 if test "$_bitmap_font" = yes ; then
5642 _def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5643 else
5644 _def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5646 echores "$_bitmap_font"
5649 echocheck "freetype >= 2.0.9"
5651 # freetype depends on iconv
5652 if test "$_iconv" = no ; then
5653 _freetype=no
5654 _res_comment="iconv support needed"
5657 if test "$_freetype" = auto ; then
5658 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5659 cat > $TMPC << EOF
5660 #include <stdio.h>
5661 #include <ft2build.h>
5662 #include FT_FREETYPE_H
5663 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5664 #error "Need FreeType 2.0.9 or newer"
5665 #endif
5666 int main(void) {
5667 FT_Library library;
5668 FT_Int major=-1,minor=-1,patch=-1;
5669 int err=FT_Init_FreeType(&library);
5670 if(err){
5671 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
5672 exit(err);
5674 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
5675 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
5676 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
5677 (int)major,(int)minor,(int)patch );
5678 if(major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR){
5679 printf("Library and header version mismatch! Fix it in your distribution!\n");
5680 exit(1);
5682 return 0;
5685 _freetype=no
5686 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _freetype=yes
5687 else
5688 _freetype=no
5691 if test "$_freetype" = yes ; then
5692 _def_freetype='#define CONFIG_FREETYPE'
5693 _inc_extra="$_inc_extra `$_freetypeconfig --cflags`"
5694 _ld_extra="$_ld_extra `$_freetypeconfig --libs`"
5695 else
5696 _def_freetype='#undef CONFIG_FREETYPE'
5698 echores "$_freetype"
5700 if test "$_freetype" = no ; then
5701 _fontconfig=no
5702 _res_comment="freetype support needed"
5704 echocheck "fontconfig"
5705 if test "$_fontconfig" = auto ; then
5706 cat > $TMPC << EOF
5707 #include <stdio.h>
5708 #include <stdlib.h>
5709 #include <fontconfig/fontconfig.h>
5710 int main(void) {
5711 int err = FcInit();
5712 if(err == FcFalse){
5713 printf("Couldn't initialize fontconfig lib\n");
5714 exit(err);
5716 return 0;
5719 _fontconfig=no
5720 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
5721 _ld_tmp="-lfontconfig $_ld_tmp"
5722 cc_check $_ld_tmp && _fontconfig=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5723 done
5724 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5725 _inc_tmp=`$_pkg_config --cflags fontconfig`
5726 _ld_tmp=`$_pkg_config --libs fontconfig`
5727 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5728 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5731 if test "$_fontconfig" = yes ; then
5732 _def_fontconfig='#define CONFIG_FONTCONFIG'
5733 else
5734 _def_fontconfig='#undef CONFIG_FONTCONFIG'
5736 echores "$_fontconfig"
5739 echocheck "SSA/ASS support"
5740 # libass depends on FreeType
5741 if test "$_freetype" = no ; then
5742 _ass=no
5743 _res_comment="FreeType support needed"
5746 if test "$_ass" = auto ; then
5747 cat > $TMPC << EOF
5748 #include <ft2build.h>
5749 #include FT_FREETYPE_H
5750 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
5751 #error "Need FreeType 2.1.8 or newer"
5752 #endif
5753 int main(void) { return 0; }
5755 _ass=no
5756 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _ass=yes
5757 if test "$_ass" = no ; then
5758 _res_comment="FreeType >= 2.1.8 needed"
5761 if test "$_ass" = yes ; then
5762 _def_ass='#define CONFIG_ASS'
5763 else
5764 _def_ass='#undef CONFIG_ASS'
5766 echores "$_ass"
5769 echocheck "fribidi with charsets"
5770 if test "$_fribidi" = auto ; then
5771 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
5772 cat > $TMPC << EOF
5773 #include <stdio.h>
5774 /* workaround for fribidi 0.10.4 and below */
5775 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5776 #include <fribidi/fribidi.h>
5777 int main(void) {
5778 if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
5779 printf("Fribidi headers are not consistents with the library!\n");
5780 exit(1);
5782 return 0;
5785 _fribidi=no
5786 cc_check `$_fribidiconfig --cflags` `$_fribidiconfig --libs` && tmp_run && _fribidi=yes
5787 else
5788 _fribidi=no
5791 if test "$_fribidi" = yes ; then
5792 _def_fribidi='#define CONFIG_FRIBIDI'
5793 _inc_extra="$_inc_extra `$_fribidiconfig --cflags`"
5794 _ld_extra="$_ld_extra `$_fribidiconfig --libs`"
5795 else
5796 _def_fribidi='#undef CONFIG_FRIBIDI'
5798 echores "$_fribidi"
5801 echocheck "ENCA"
5802 if test "$_enca" = auto ; then
5803 cat > $TMPC << EOF
5804 #include <sys/types.h>
5805 #include <enca.h>
5806 int main(void) {
5807 const char **langs;
5808 size_t langcnt;
5809 langs = enca_get_languages(&langcnt);
5810 return 0;
5813 _enca=no
5814 cc_check -lenca $_ld_lm && _enca=yes
5816 if test "$_enca" = yes ; then
5817 _def_enca='#define CONFIG_ENCA 1'
5818 _ld_extra="$_ld_extra -lenca"
5819 else
5820 _def_enca='#undef CONFIG_ENCA'
5822 echores "$_enca"
5825 echocheck "zlib"
5826 cat > $TMPC << EOF
5827 #include <zlib.h>
5828 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
5830 _zlib=no
5831 cc_check -lz && _zlib=yes
5832 if test "$_zlib" = yes ; then
5833 _def_zlib='#define CONFIG_ZLIB 1'
5834 _ld_extra="$_ld_extra -lz"
5835 else
5836 _def_zlib='#undef CONFIG_ZLIB'
5837 _libavdecoders=`echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// -e/TSCC_DECODER// `
5838 _libavencoders=`echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// `
5840 echores "$_zlib"
5843 echocheck "RTC"
5844 if test "$_rtc" = auto ; then
5845 cat > $TMPC << EOF
5846 #include <sys/ioctl.h>
5847 #ifdef __linux__
5848 #include <linux/rtc.h>
5849 #else
5850 #include <rtc.h>
5851 #define RTC_PIE_ON RTCIO_PIE_ON
5852 #endif
5853 int main(void) { return RTC_PIE_ON; }
5855 _rtc=no
5856 cc_check && _rtc=yes
5857 ppc && _rtc=no
5859 if test "$_rtc" = yes ; then
5860 _def_rtc='#define HAVE_RTC 1'
5861 else
5862 _def_rtc='#undef HAVE_RTC'
5864 echores "$_rtc"
5867 echocheck "liblzo2 support"
5868 if test "$_liblzo" = auto ; then
5869 _liblzo=no
5870 cat > $TMPC << EOF
5871 #include <lzo/lzo1x.h>
5872 int main(void) { lzo_init();return 0; }
5874 cc_check -llzo2 && _liblzo=yes
5876 if test "$_liblzo" = yes ; then
5877 _def_liblzo='#define CONFIG_LIBLZO 1'
5878 _ld_extra="$_ld_extra -llzo2"
5879 _codecmodules="liblzo $_codecmodules"
5880 else
5881 _def_liblzo='#undef CONFIG_LIBLZO'
5882 _nocodecmodules="liblzo $_nocodecmodules"
5884 echores "$_liblzo"
5887 echocheck "mad support"
5888 if test "$_mad" = auto ; then
5889 _mad=no
5890 cat > $TMPC << EOF
5891 #include <mad.h>
5892 int main(void) { return 0; }
5894 cc_check -lmad && _mad=yes
5896 if test "$_mad" = yes ; then
5897 _def_mad='#define CONFIG_LIBMAD 1'
5898 _ld_extra="$_ld_extra -lmad"
5899 _codecmodules="libmad $_codecmodules"
5900 else
5901 _def_mad='#undef CONFIG_LIBMAD'
5902 _nocodecmodules="libmad $_nocodecmodules"
5904 echores "$_mad"
5906 echocheck "Twolame"
5907 if test "$_twolame" = auto ; then
5908 cat > $TMPC <<EOF
5909 #include <twolame.h>
5910 int main(void) { twolame_init(); return 0; }
5912 _twolame=no
5913 cc_check -ltwolame $_ld_lm && _twolame=yes
5915 if test "$_twolame" = yes ; then
5916 _def_twolame='#define CONFIG_TWOLAME 1'
5917 _libs_mencoder="$_libs_mencoder -ltwolame"
5918 _codecmodules="twolame $_codecmodules"
5919 else
5920 _def_twolame='#undef CONFIG_TWOLAME'
5921 _nocodecmodules="twolame $_nocodecmodules"
5923 echores "$_twolame"
5925 echocheck "Toolame"
5926 if test "$_toolame" = auto ; then
5927 _toolame=no
5928 if test "$_twolame" = yes ; then
5929 _res_comment="disabled by twolame"
5930 else
5931 cat > $TMPC <<EOF
5932 #include <toolame.h>
5933 int main(void) { toolame_init(); return 0; }
5935 cc_check -ltoolame $_ld_lm && _toolame=yes
5938 if test "$_toolame" = yes ; then
5939 _def_toolame='#define CONFIG_TOOLAME 1'
5940 _libs_mencoder="$_libs_mencoder -ltoolame"
5941 _codecmodules="toolame $_codecmodules"
5942 else
5943 _def_toolame='#undef CONFIG_TOOLAME'
5944 _nocodecmodules="toolame $_nocodecmodules"
5946 if test "$_toolamedir" ; then
5947 _res_comment="using $_toolamedir"
5949 echores "$_toolame"
5951 echocheck "OggVorbis support"
5952 if test "$_tremor_internal" = yes; then
5953 _libvorbis=no
5954 elif test "$_tremor" = auto; then
5955 _tremor=no
5956 cat > $TMPC << EOF
5957 #include <tremor/ivorbiscodec.h>
5958 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5960 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
5962 if test "$_libvorbis" = auto; then
5963 _libvorbis=no
5964 cat > $TMPC << EOF
5965 #include <vorbis/codec.h>
5966 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5968 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
5970 if test "$_tremor_internal" = yes ; then
5971 _vorbis=yes
5972 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5973 _def_tremor='#define CONFIG_TREMOR 1'
5974 _codecmodules="tremor(internal) $_codecmodules"
5975 _res_comment="internal Tremor"
5976 if test "$_tremor_low" = yes ; then
5977 cflags_tremor_low="-D_LOW_ACCURACY_"
5978 _res_comment="internal low accuracy Tremor"
5980 elif test "$_tremor" = yes ; then
5981 _vorbis=yes
5982 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5983 _def_tremor='#define CONFIG_TREMOR 1'
5984 _codecmodules="tremor(external) $_codecmodules"
5985 _res_comment="external Tremor"
5986 _ld_extra="$_ld_extra -logg -lvorbisidec"
5987 elif test "$_libvorbis" = yes ; then
5988 _vorbis=yes
5989 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5990 _codecmodules="libvorbis $_codecmodules"
5991 _res_comment="libvorbis"
5992 _ld_extra="$_ld_extra -lvorbis -logg"
5993 else
5994 _vorbis=no
5995 _nocodecmodules="libvorbis $_nocodecmodules"
5997 echores "$_vorbis"
5999 echocheck "libspeex (version >= 1.1 required)"
6000 if test "$_speex" = auto ; then
6001 _speex=no
6002 cat > $TMPC << EOF
6003 #include <speex/speex.h>
6004 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6006 cc_check -lspeex $_ld_lm && _speex=yes
6008 if test "$_speex" = yes ; then
6009 _def_speex='#define CONFIG_SPEEX 1'
6010 _ld_extra="$_ld_extra -lspeex"
6011 _codecmodules="speex $_codecmodules"
6012 else
6013 _def_speex='#undef CONFIG_SPEEX'
6014 _nocodecmodules="speex $_nocodecmodules"
6016 echores "$_speex"
6018 echocheck "OggTheora support"
6019 if test "$_theora" = auto ; then
6020 _theora=no
6021 cat > $TMPC << EOF
6022 #include <theora/theora.h>
6023 #include <string.h>
6024 int main(void) {
6025 /* Theora is in flux, make sure that all interface routines and datatypes
6026 * exist and work the way we expect it, so we don't break MPlayer. */
6027 ogg_packet op;
6028 theora_comment tc;
6029 theora_info inf;
6030 theora_state st;
6031 yuv_buffer yuv;
6032 int r;
6033 double t;
6035 theora_info_init (&inf);
6036 theora_comment_init (&tc);
6038 return 0;
6040 /* we don't want to execute this kind of nonsense; just for making sure
6041 * that compilation works... */
6042 memset(&op, 0, sizeof(op));
6043 r = theora_decode_header (&inf, &tc, &op);
6044 r = theora_decode_init (&st, &inf);
6045 t = theora_granule_time (&st, op.granulepos);
6046 r = theora_decode_packetin (&st, &op);
6047 r = theora_decode_YUVout (&st, &yuv);
6048 theora_clear (&st);
6050 return 0;
6053 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
6054 cc_check $_ld_theora && _ld_extra="$_ld_extra $_ld_theora" \
6055 && _theora=yes && break
6056 done
6057 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6058 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
6059 cc_check tremor/bitwise.c $_ld_theora \
6060 && _ld_extra="$_ld_extra $_ld_theora" && theora=yes && break
6061 done
6064 if test "$_theora" = yes ; then
6065 _def_theora='#define CONFIG_OGGTHEORA 1'
6066 _codecmodules="libtheora $_codecmodules"
6067 # when --enable-theora is forced, we'd better provide a probably sane
6068 # $_ld_theora than nothing
6069 test -z "$_ld_theora" && _ld_extra="$_ld_extra -ltheora -logg"
6070 else
6071 _def_theora='#undef CONFIG_OGGTHEORA'
6072 _nocodecmodules="libtheora $_nocodecmodules"
6074 echores "$_theora"
6076 echocheck "internal mp3lib support"
6077 if test "$_mp3lib" = auto ; then
6078 test "$cc_vendor" = intel && _mp3lib=no || _mp3lib=yes
6080 if test "$_mp3lib" = yes ; then
6081 _def_mp3lib='#define CONFIG_MP3LIB 1'
6082 _codecmodules="mp3lib $_codecmodules"
6083 else
6084 _def_mp3lib='#undef CONFIG_MP3LIB'
6085 _nocodecmodules="mp3lib $_nocodecmodules"
6087 echores "$_mp3lib"
6089 echocheck "liba52 support"
6090 if test "$_liba52_internal" = auto ; then
6091 test "$cc_vendor" = intel && _liba52_internal=no || _liba52_internal=yes
6093 _def_liba52='#undef CONFIG_LIBA52'
6094 _def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6095 if test "$_liba52_internal" = yes ; then
6096 _liba52=yes
6097 _def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6098 _res_comment="internal"
6099 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6100 _liba52=no
6101 cat > $TMPC << EOF
6102 #include <inttypes.h>
6103 #include <a52dec/a52.h>
6104 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6106 cc_check -la52 && _liba52=yes && _res_comment="external" && _ld_extra="$_ld_extra -la52"
6108 if test "$_liba52" = yes ; then
6109 _def_liba52='#define CONFIG_LIBA52 1'
6110 _codecmodules="liba52($_res_comment) $_codecmodules"
6111 else
6112 _nocodecmodules="liba52 $_nocodecmodules"
6114 echores "$_liba52"
6116 echocheck "internal libmpeg2 support"
6117 if test "$_libmpeg2" = auto ; then
6118 _libmpeg2=yes
6119 if alpha && test cc_vendor=gnu; then
6120 case $cc_version in
6121 2*|3.0*|3.1*) # cannot compile MVI instructions
6122 _libmpeg2=no
6123 _res_comment="broken gcc"
6125 esac
6128 if test "$_libmpeg2" = yes ; then
6129 _def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6130 _codecmodules="libmpeg2 $_codecmodules"
6131 else
6132 _def_libmpeg2='#undef CONFIG_LIBMPEG2'
6133 _nocodecmodules="libmpeg2 $_nocodecmodules"
6135 echores "$_libmpeg2"
6137 echocheck "libdca support"
6138 if test "$_libdca" = auto ; then
6139 _libdca=no
6140 cat > $TMPC << EOF
6141 #include <inttypes.h>
6142 #include <dts.h>
6143 int main(void) { dts_init (0); return 0; }
6145 for _ld_dca in -ldts -ldca ; do
6146 cc_check $_ld_dca $_ld_lm && _ld_extra="$_ld_extra $_ld_dca" \
6147 && _libdca=yes && break
6148 done
6150 if test "$_libdca" = yes ; then
6151 _def_libdca='#define CONFIG_LIBDCA 1'
6152 _codecmodules="libdca $_codecmodules"
6153 else
6154 _def_libdca='#undef CONFIG_LIBDCA'
6155 _nocodecmodules="libdca $_nocodecmodules"
6157 echores "$_libdca"
6159 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6160 if test "$_musepack" = auto ; then
6161 _musepack=no
6162 cat > $TMPC << EOF
6163 #include <stddef.h>
6164 #include <mpcdec/mpcdec.h>
6165 int main(void) {
6166 mpc_streaminfo info;
6167 mpc_decoder decoder;
6168 mpc_decoder_set_streaminfo(&decoder, &info);
6169 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6170 return 0;
6173 cc_check -lmpcdec $_ld_lm && _musepack=yes
6175 if test "$_musepack" = yes ; then
6176 _def_musepack='#define CONFIG_MUSEPACK 1'
6177 _ld_extra="$_ld_extra -lmpcdec"
6178 _codecmodules="musepack $_codecmodules"
6179 else
6180 _def_musepack='#undef CONFIG_MUSEPACK'
6181 _nocodecmodules="musepack $_nocodecmodules"
6183 echores "$_musepack"
6186 echocheck "FAAC support"
6187 if test "$_faac" = auto ; then
6188 cat > $TMPC <<EOF
6189 #include <inttypes.h>
6190 #include <faac.h>
6191 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6193 _faac=no
6194 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6195 cc_check -O4 $_ld_faac $_ld_lm && _libs_mencoder="$_libs_mencoder $_ld_faac" && _faac=yes && break
6196 done
6198 if test "$_faac" = yes ; then
6199 _def_faac="#define CONFIG_FAAC 1"
6200 test "$_faac_lavc" = auto && _faac_lavc=yes
6201 if test "$_faac_lavc" = yes ; then
6202 _def_faac_lavc="#define CONFIG_LIBFAAC 1"
6203 _libs_mplayer="$_libs_mplayer $_ld_faac"
6204 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6206 _codecmodules="faac $_codecmodules"
6207 else
6208 _faac_lavc=no
6209 _def_faac="#undef CONFIG_FAAC"
6210 _def_faac_lavc="#undef CONFIG_LIBFAAC"
6211 _nocodecmodules="faac $_nocodecmodules"
6213 _res_comment="in libavcodec: $_faac_lavc"
6214 echores "$_faac"
6217 echocheck "FAAD2 support"
6218 if test "$_faad_internal" = auto ; then
6219 if x86_32 && test cc_vendor=gnu; then
6220 case $cc_version in
6221 3.1*|3.2) # ICE/insn with these versions
6222 _faad_internal=no
6223 _res_comment="broken gcc"
6226 _faad=yes
6227 _faad_internal=yes
6229 esac
6230 else
6231 _faad=yes
6232 _faad_internal=yes
6235 if test "$_faad" = auto ; then
6236 cat > $TMPC << EOF
6237 #include <faad.h>
6238 #ifndef FAAD_MIN_STREAMSIZE
6239 #error Too old version
6240 #endif
6241 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6242 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6244 cc_check -lfaad $_ld_lm && _faad=yes
6247 _def_faad='#undef CONFIG_FAAD'
6248 _def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6249 if test "$_faad_internal" = yes ; then
6250 _def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6251 _res_comment="internal floating-point"
6252 if test "$_faad_fixed" = yes ; then
6253 # The FIXED_POINT implementation of FAAD2 improves performance
6254 # on some platforms, especially for SBR files.
6255 cflags_faad_fixed="-DFIXED_POINT"
6256 _res_comment="internal fixed-point"
6258 elif test "$_faad" = yes ; then
6259 _ld_extra="$_ld_extra -lfaad"
6262 if test "$_faad" = yes ; then
6263 _def_faad='#define CONFIG_FAAD 1'
6264 _codecmodules="faad2 $_codecmodules"
6265 else
6266 _faad=no
6267 _nocodecmodules="faad2 $_nocodecmodules"
6269 echores "$_faad"
6272 echocheck "LADSPA plugin support"
6273 if test "$_ladspa" = auto ; then
6274 cat > $TMPC <<EOF
6275 #include <stdio.h>
6276 #include <ladspa.h>
6277 int main(void) {
6278 const LADSPA_Descriptor *ld = NULL;
6279 return 0;
6282 _ladspa=no
6283 cc_check && _ladspa=yes
6285 if test "$_ladspa" = yes; then
6286 _def_ladspa="#define CONFIG_LADSPA"
6287 else
6288 _def_ladspa="#undef CONFIG_LADSPA"
6290 echores "$_ladspa"
6293 if test -z "$_codecsdir" ; then
6294 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6295 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6296 if test -d "$dir" ; then
6297 _codecsdir="$dir"
6298 break;
6300 done
6302 # Fall back on default directory.
6303 if test -z "$_codecsdir" ; then
6304 _codecsdir="$_libdir/codecs"
6305 mingw32 && _codecsdir="codecs"
6306 os2 && _codecsdir="codecs"
6310 echocheck "Win32 codecs"
6311 if test "$_win32dll" = auto ; then
6312 _win32dll=no
6313 if x86_32 && ! qnx; then
6314 _win32dll=yes
6317 if test "$_win32dll" = yes ; then
6318 _def_win32dll='#define CONFIG_WIN32DLL 1'
6319 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6320 _res_comment="using $_win32codecsdir"
6321 if ! win32 ; then
6322 _def_win32_loader='#define WIN32_LOADER 1'
6323 _win32_emulation=yes
6324 else
6325 _ld_extra="$_ld_extra -ladvapi32 -lole32"
6326 _res_comment="using native windows"
6328 _codecmodules="win32 $_codecmodules"
6329 else
6330 _def_win32dll='#undef CONFIG_WIN32DLL'
6331 _def_win32_loader='#undef WIN32_LOADER'
6332 _nocodecmodules="win32 $_nocodecmodules"
6334 echores "$_win32dll"
6337 echocheck "XAnim codecs"
6338 if test "$_xanim" = auto ; then
6339 _xanim=no
6340 _res_comment="dynamic loader support needed"
6341 if test "$_dl" = yes ; then
6342 _xanim=yes
6345 if test "$_xanim" = yes ; then
6346 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6347 _def_xanim='#define CONFIG_XANIM 1'
6348 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6349 _codecmodules="xanim $_codecmodules"
6350 _res_comment="using $_xanimcodecsdir"
6351 else
6352 _def_xanim='#undef CONFIG_XANIM'
6353 _def_xanim_path='#undef XACODEC_PATH'
6354 _nocodecmodules="xanim $_nocodecmodules"
6356 echores "$_xanim"
6359 echocheck "RealPlayer codecs"
6360 if test "$_real" = auto ; then
6361 _real=no
6362 _res_comment="dynamic loader support needed"
6363 if test "$_dl" = yes || test "$_win32dll" = yes &&
6364 (linux || freebsd || netbsd || dragonfly || darwin || win32) ; then
6365 _real=yes
6368 if test "$_real" = yes ; then
6369 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6370 _def_real='#define CONFIG_REALCODECS 1'
6371 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6372 _codecmodules="real $_codecmodules"
6373 _res_comment="using $_realcodecsdir"
6374 else
6375 _def_real='#undef CONFIG_REALCODECS'
6376 _def_real_path="#undef REALCODEC_PATH"
6377 _nocodecmodules="real $_nocodecmodules"
6379 echores "$_real"
6382 echocheck "QuickTime codecs"
6383 _qtx_emulation=no
6384 _def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6385 if test "$_qtx" = auto ; then
6386 test "$_win32dll" = yes || darwin && _qtx=yes
6388 if test "$_qtx" = yes ; then
6389 _def_qtx='#define CONFIG_QTX_CODECS 1'
6390 win32 && _qtx_codecs_win32=yes && _def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6391 _codecmodules="qtx $_codecmodules"
6392 darwin || win32 || _qtx_emulation=yes
6393 else
6394 _def_qtx='#undef CONFIG_QTX_CODECS'
6395 _nocodecmodules="qtx $_nocodecmodules"
6397 echores "$_qtx"
6399 echocheck "Nemesi Streaming Media libraries"
6400 if test "$_nemesi" = auto && test "$_network" = yes ; then
6401 _nemesi=no
6402 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6403 _inc_extra="$_inc_extra `$_pkg_config --cflags libnemesi`"
6404 _ld_extra="$_ld_extra `$_pkg_config --libs libnemesi`"
6405 _nemesi=yes
6408 if test "$_nemesi" = yes; then
6409 _native_rtsp=no
6410 _def_nemesi='#define CONFIG_LIBNEMESI 1'
6411 _inputmodules="nemesi $_inputmodules"
6412 else
6413 _native_rtsp="$_network"
6414 _nemesi=no
6415 _def_nemesi='#undef CONFIG_LIBNEMESI'
6416 _noinputmodules="nemesi $_noinputmodules"
6418 echores "$_nemesi"
6420 echocheck "LIVE555 Streaming Media libraries"
6421 if test "$_live" = auto && test "$_network" = yes ; then
6422 cat > $TMPCPP << EOF
6423 #include <liveMedia.hh>
6424 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6425 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6426 #endif
6427 int main(void) { return 0; }
6430 _live=no
6431 for I in $_inc_extra "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6432 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6433 $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
6434 _ld_extra="$_livelibdir/liveMedia/libliveMedia.a \
6435 $_livelibdir/groupsock/libgroupsock.a \
6436 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6437 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6438 $_ld_extra -lstdc++" \
6439 _inc_extraxx="-I$_livelibdir/liveMedia/include \
6440 -I$_livelibdir/UsageEnvironment/include \
6441 -I$_livelibdir/BasicUsageEnvironment/include \
6442 -I$_livelibdir/groupsock/include" && \
6443 _live=yes && break
6444 done
6445 if test "$_live" != yes ; then
6446 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6447 _live_dist=yes
6451 if test "$_live" = yes && test "$_network" = yes; then
6452 _res_comment="using $_livelibdir"
6453 _def_live='#define CONFIG_LIVE555 1'
6454 _inputmodules="live555 $_inputmodules"
6455 elif test "$_live_dist" = yes && test "$_network" = yes; then
6456 _res_comment="using distribution version"
6457 _live="yes"
6458 _def_live='#define CONFIG_LIVE555 1'
6459 _ld_extra="$_ld_extra -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6460 _inc_extraxx="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6461 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6462 _inputmodules="live555 $_inputmodules"
6463 else
6464 _live=no
6465 _def_live='#undef CONFIG_LIVE555'
6466 _noinputmodules="live555 $_noinputmodules"
6468 echores "$_live"
6471 echocheck "FFmpeg libavutil"
6472 if test "$_libavutil_a" = auto ; then
6473 if test -d libavutil ; then
6474 _libavutil_a=yes
6475 _res_comment="static"
6476 else
6477 die "MPlayer will not compile without libavutil in the source tree."
6479 elif test "$_libavutil_so" = auto ; then
6480 _libavutil_so=no
6481 cat > $TMPC << EOF
6482 #include <libavutil/common.h>
6483 int main(void) { ff_gcd(1,1); return 0; }
6485 if $_pkg_config --exists libavutil ; then
6486 _inc_libavutil=`$_pkg_config --cflags libavutil`
6487 _ld_tmp=`$_pkg_config --libs libavutil`
6488 cc_check $_inc_libavutil $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6489 && _libavutil_so=yes
6490 elif cc_check -lavutil $_ld_lm ; then
6491 _ld_extra="$_ld_extra -lavutil"
6492 _libavutil_so=yes
6493 _res_comment="using libavutil.so, but static libavutil is recommended"
6496 _libavutil=no
6497 _def_libavutil='#undef CONFIG_LIBAVUTIL'
6498 _def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6499 _def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6500 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6501 test "$_libavutil" = yes && _def_libavutil='#define CONFIG_LIBAVUTIL 1'
6502 test "$_libavutil_a" = yes && _def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6503 test "$_libavutil_so" = yes && _def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6504 # neither static nor shared libavutil is available, but it is mandatory ...
6505 if test "$_libavutil" = no ; then
6506 die "You need static or shared libavutil, MPlayer will not compile without!"
6508 echores "$_libavutil"
6510 echocheck "FFmpeg libavcodec"
6511 if test "$_libavcodec_a" = auto ; then
6512 _libavcodec_a=no
6513 if test -d libavcodec && test -f libavcodec/utils.c ; then
6514 _libavcodec_a="yes"
6515 _res_comment="static"
6517 elif test "$_libavcodec_so" = auto ; then
6518 _libavcodec_so=no
6519 _res_comment="libavcodec.so is discouraged over static libavcodec"
6520 cat > $TMPC << EOF
6521 #include <libavcodec/avcodec.h>
6522 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6524 if $_pkg_config --exists libavcodec ; then
6525 _inc_libavcodec=`$_pkg_config --cflags libavcodec`
6526 _ld_tmp=`$_pkg_config --libs libavcodec`
6527 cc_check $_inc_libavcodec $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6528 && _libavcodec_so=yes
6529 elif cc_check -lavcodec $_ld_lm ; then
6530 _ld_extra="$_ld_extra -lavcodec"
6531 _libavcodec_so=yes
6532 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6535 _libavcodec=no
6536 _def_libavcodec='#undef CONFIG_LIBAVCODEC'
6537 _def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6538 _def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6539 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6540 test "$_libavcodec" = yes && _def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6541 test "$_libavcodec_a" = yes && _def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6542 test "$_libavcodec_so" = yes && _def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6543 test "$_libavcodec_mpegaudio_hp" = yes \
6544 && _def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6545 if test "$_libavcodec_a" = yes ; then
6546 _codecmodules="libavcodec $_codecmodules"
6547 elif test "$_libavcodec_so" = yes ; then
6548 _codecmodules="libavcodec.so $_codecmodules"
6549 else
6550 _nocodecmodules="libavcodec $_nocodecmodules"
6552 echores "$_libavcodec"
6554 echocheck "FFmpeg libavformat"
6555 if test "$_libavformat_a" = auto ; then
6556 _libavformat_a=no
6557 if test -d libavformat && test -f libavformat/utils.c ; then
6558 _libavformat_a=yes
6559 _res_comment="static"
6561 elif test "$_libavformat_so" = auto ; then
6562 _libavformat_so=no
6563 cat > $TMPC <<EOF
6564 #include <libavformat/avformat.h>
6565 #include <libavcodec/opt.h>
6566 int main(void) { av_alloc_format_context(); return 0; }
6568 if $_pkg_config --exists libavformat ; then
6569 _inc_libavformat=`$_pkg_config --cflags libavformat`
6570 _ld_tmp=`$_pkg_config --libs libavformat`
6571 cc_check $_inc_libavformat $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6572 && _libavformat_so=yes
6573 elif cc_check $_ld_lm -lavformat ; then
6574 _ld_extra="$_ld_extra -lavformat"
6575 _libavformat_so=yes
6576 _res_comment="using libavformat.so, but static libavformat is recommended"
6579 _libavformat=no
6580 _def_libavformat='#undef CONFIG_LIBAVFORMAT'
6581 _def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6582 _def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6583 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6584 test "$_libavformat" = yes && _def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6585 test "$_libavformat_a" = yes && _def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6586 test "$_libavformat_so" = yes \
6587 && _def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6588 echores "$_libavformat"
6590 echocheck "FFmpeg libpostproc"
6591 if test "$_libpostproc_a" = auto ; then
6592 _libpostproc_a=no
6593 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
6594 _libpostproc_a='yes'
6595 _res_comment="static"
6597 elif test "$_libpostproc_so" = auto ; then
6598 _libpostproc_so=no
6599 cat > $TMPC << EOF
6600 #include <inttypes.h>
6601 #include <libpostproc/postprocess.h>
6602 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6604 if cc_check -lpostproc $_ld_lm ; then
6605 _ld_extra="$_ld_extra -lpostproc"
6606 _libpostproc_so=yes
6607 _res_comment="using libpostproc.so, but static libpostproc is recommended"
6610 _libpostproc=no
6611 _def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6612 _def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
6613 _def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
6614 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
6615 test "$_libpostproc" = yes && _def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6616 test "$_libpostproc_a" = yes && _def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
6617 test "$_libpostproc_so" = yes \
6618 && _def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
6619 echores "$_libpostproc"
6621 echocheck "FFmpeg libswscale"
6622 if test "$_libswscale_a" = auto ; then
6623 _libswscale_a=no
6624 if test -d libswscale && test -f libswscale/swscale.h ; then
6625 _libswscale_a='yes'
6626 _res_comment="static"
6628 elif test "$_libswscale_so" = auto ; then
6629 _libswscale_so=no
6630 _res_comment="using libswscale.so, but static libswscale is recommended"
6631 cat > $TMPC << EOF
6632 #include <libswscale/swscale.h>
6633 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6635 if $_pkg_config --exists libswscale ; then
6636 _inc_libswscale=`$_pkg_config --cflags libswscale`
6637 _ld_tmp=`$_pkg_config --libs libswscale`
6638 cc_check $_inc_libswscale $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6639 && _libswscale_so=yes
6640 elif cc_check -lswscale ; then
6641 _ld_extra="$_ld_extra -lswscale"
6642 _libswscale_so=yes
6645 _libswscale=no
6646 _def_libswscale='#undef CONFIG_LIBSWSCALE'
6647 _def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
6648 _def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
6649 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
6650 test "$_libswscale" = yes && _def_libswscale='#define CONFIG_LIBSWSCALE 1'
6651 test "$_libswscale_a" = yes && _def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
6652 test "$_libswscale_so" = yes \
6653 && _def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
6654 echores "$_libswscale"
6656 echocheck "libamr narrowband"
6657 if test "$_libamr_nb" = auto ; then
6658 _libamr_nb=no
6659 cat > $TMPC << EOF
6660 #include <amrnb/sp_dec.h>
6661 int main(void) { Speech_Decode_Frame_init(); return 0; }
6663 cc_check -lamrnb && _libamr_nb=yes
6664 if test "$_libavcodec_a" != yes ; then
6665 _libamr_nb=no
6666 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
6669 if test "$_libamr_nb" = yes ; then
6670 _libamr=yes
6671 _ld_extra="$_ld_extra -lamrnb"
6672 _def_libamr='#define CONFIG_LIBAMR 1'
6673 _def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
6674 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
6675 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
6676 _codecmodules="libamr_nb $_codecmodules"
6677 else
6678 _def_libamr_nb='#undef CONFIG_LIBAMR_NB'
6679 _nocodecmodules="libamr_nb $_nocodecmodules"
6681 echores "$_libamr_nb"
6684 echocheck "libamr wideband"
6685 if test "$_libamr_wb" = auto ; then
6686 _libamr_wb=no
6687 cat > $TMPC << EOF
6688 #include <amrwb/dec_if.h>
6689 int main(void) { D_IF_init(); return 0; }
6691 cc_check -lamrwb && _libamr_wb=yes
6692 if test "$_libavcodec_a" != yes ; then
6693 _libamr_wb=no
6694 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
6697 if test "$_libamr_wb" = yes ; then
6698 _libamr=yes
6699 _ld_extra="$_ld_extra -lamrwb"
6700 _def_libamr='#define CONFIG_LIBAMR 1'
6701 _def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
6702 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
6703 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
6704 _codecmodules="libamr_wb $_codecmodules"
6705 else
6706 _def_libamr_wb='#undef CONFIG_LIBAMR_WB'
6707 _nocodecmodules="libamr_wb $_nocodecmodules"
6709 echores "$_libamr_wb"
6711 echocheck "libdv-0.9.5+"
6712 if test "$_libdv" = auto ; then
6713 _libdv=no
6714 cat > $TMPC <<EOF
6715 #include <libdv/dv.h>
6716 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6718 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6720 if test "$_libdv" = yes ; then
6721 _def_libdv='#define CONFIG_LIBDV095 1'
6722 _ld_extra="$_ld_extra -ldv"
6723 _codecmodules="libdv $_codecmodules"
6724 else
6725 _def_libdv='#undef CONFIG_LIBDV095'
6726 _nocodecmodules="libdv $_nocodecmodules"
6728 echores "$_libdv"
6731 echocheck "Xvid"
6732 if test "$_xvid" = auto ; then
6733 _xvid=no
6734 cat > $TMPC << EOF
6735 #include <xvid.h>
6736 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6738 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6739 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && _xvid=yes && break
6740 done
6743 if test "$_xvid" = yes ; then
6744 _def_xvid='#define CONFIG_XVID4 1'
6745 _codecmodules="xvid $_codecmodules"
6746 else
6747 _def_xvid='#undef CONFIG_XVID4'
6748 _nocodecmodules="xvid $_nocodecmodules"
6750 echores "$_xvid"
6752 echocheck "Xvid two pass plugin"
6753 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
6754 cat > $TMPC << EOF
6755 #include <xvid.h>
6756 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
6758 cc_check && _xvid_lavc=yes
6760 if test "$_xvid_lavc" = yes ; then
6761 _def_xvid_lavc='#define CONFIG_LIBXVID 1'
6762 _libavencoders="$_libavencoders LIBXVID_ENCODER"
6763 else
6764 _xvid_lavc=no
6765 _def_xvid_lavc='#undef CONFIG_LIBXVID'
6767 echores "$_xvid_lavc"
6770 echocheck "x264"
6771 if test "$_x264" = auto ; then
6772 cat > $TMPC << EOF
6773 #include <inttypes.h>
6774 #include <x264.h>
6775 #if X264_BUILD < 59
6776 #error We do not support old versions of x264. Get the latest from SVN.
6777 #endif
6778 int main(void) { x264_encoder_open((void*)0); return 0; }
6780 _x264=no
6781 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6782 cc_check $_ld_x264 && _libs_mencoder="$_libs_mencoder $_ld_x264" && _x264=yes && break
6783 done
6786 if test "$_x264" = yes ; then
6787 _def_x264='#define CONFIG_X264 1'
6788 _codecmodules="x264 $_codecmodules"
6789 test "$_x264_lavc" = auto && _x264_lavc=yes
6790 if test "$_x264_lavc" = yes ; then
6791 _def_x264_lavc='#define CONFIG_LIBX264 1'
6792 _libs_mplayer="$_libs_mplayer $_ld_x264"
6793 _libavencoders="$_libavencoders LIBX264_ENCODER"
6795 else
6796 _x264_lavc=no
6797 _def_x264='#undef CONFIG_X264'
6798 _def_x264_lavc='#undef CONFIG_LIBX264'
6799 _nocodecmodules="x264 $_nocodecmodules"
6801 _res_comment="in libavcodec: $_x264_lavc"
6802 echores "$_x264"
6805 echocheck "libdirac"
6806 if test "$_libdirac_lavc" = auto; then
6807 _libdirac_lavc=no
6808 if test "$_libavcodec_a" != yes; then
6809 _res_comment="libavcodec (static) is required by libdirac, sorry"
6810 else
6811 cat > $TMPC << EOF
6812 #include <libdirac_encoder/dirac_encoder.h>
6813 #include <libdirac_decoder/dirac_parser.h>
6814 int main(void)
6816 dirac_encoder_context_t enc_ctx;
6817 dirac_decoder_t *dec_handle;
6818 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
6819 dec_handle = dirac_decoder_init(0);
6820 if (dec_handle)
6821 dirac_decoder_close(dec_handle);
6822 return 0;
6825 if $_pkg_config --exists dirac ; then
6826 _inc_dirac=`$_pkg_config --silence-errors --cflags dirac`
6827 _ld_dirac=`$_pkg_config --silence-errors --libs dirac`
6828 cc_check $_inc_dirac $_ld_dirac &&
6829 _libdirac_lavc=yes &&
6830 _inc_extra="$_inc_extra $_inc_dirac" &&
6831 _ld_extra="$_ld_extra $_ld_dirac"
6835 if test "$_libdirac_lavc" = yes ; then
6836 _def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
6837 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
6838 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
6839 _codecmodules="libdirac $_codecmodules"
6840 else
6841 _def_libdirac_lavc='#undef CONFIG_LIBDIRAC'
6842 _nocodecmodules="libdirac $_nocodecmodules"
6844 echores "$_libdirac_lavc"
6847 echocheck "libschroedinger"
6848 if test "$_libschroedinger_lavc" = auto ; then
6849 _libschroedinger_lavc=no
6850 if test "$_libavcodec_a" != yes; then
6851 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
6852 else
6853 cat > $TMPC << EOF
6854 #include <schroedinger/schro.h>
6855 int main(void) { schro_init(); return 0; }
6857 if $_pkg_config --exists schroedinger-1.0 ; then
6858 _inc_schroedinger=`$_pkg_config --silence-errors --cflags schroedinger-1.0`
6859 _ld_schroedinger=`$_pkg_config --silence-errors --libs schroedinger-1.0`
6860 cc_check $_inc_schroedinger $_ld_schroedinger &&
6861 _libschroedinger_lavc=yes &&
6862 _inc_extra="$_inc_extra $_inc_schroedinger" &&
6863 _ld_extra="$_ld_extra $_ld_schroedinger"
6867 if test "$_libschroedinger_lavc" = yes ; then
6868 _def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
6869 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
6870 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
6871 _codecmodules="libschroedinger $_codecmodules"
6872 else
6873 _def_libschroedinger_lavc='#undef CONFIG_LIBSCHROEDINGER'
6874 _nocodecmodules="libschroedinger $_nocodecmodules"
6876 echores "$_libschroedinger_lavc"
6878 echocheck "libnut"
6879 if test "$_libnut" = auto ; then
6880 cat > $TMPC << EOF
6881 #include <stdio.h>
6882 #include <stdlib.h>
6883 #include <inttypes.h>
6884 #include <libnut.h>
6885 int main(void) { (void)nut_error(0); return 0; }
6887 _libnut=no
6888 cc_check -lnut && _libnut=yes
6891 if test "$_libnut" = yes ; then
6892 _def_libnut='#define CONFIG_LIBNUT 1'
6893 _ld_extra="$_ld_extra -lnut"
6894 else
6895 _def_libnut='#undef CONFIG_LIBNUT'
6897 echores "$_libnut"
6899 #check must be done after libavcodec one
6900 echocheck "zr"
6901 if test "$_zr" = auto ; then
6902 #36067's seem to identify themselves as 36057PQC's, so the line
6903 #below should work for 36067's and 36057's.
6904 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6905 _zr=yes
6906 else
6907 _zr=no
6910 if test "$_zr" = yes ; then
6911 if test "$_libavcodec_a" = yes ; then
6912 _def_zr='#define CONFIG_ZR 1'
6913 _vosrc="$_vosrc vo_zr2.c vo_zr.c jpeg_enc.c"
6914 _vomodules="zr zr2 $_vomodules"
6915 else
6916 _res_comment="libavcodec (static) is required by zr, sorry"
6917 _novomodules="zr $_novomodules"
6918 _def_zr='#undef CONFIG_ZR'
6920 else
6921 _def_zr='#undef CONFIG_ZR'
6922 _novomodules="zr zr2 $_novomodules"
6924 echores "$_zr"
6926 # mencoder requires (optional) those libs: libmp3lame
6927 if test "$_mencoder" != no ; then
6929 echocheck "libmp3lame (for mencoder)"
6930 _def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6931 _def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6932 if test "$_mp3lame" = auto ; then
6933 _mp3lame=no
6934 cat > $TMPC <<EOF
6935 #include <lame/lame.h>
6936 int main(void) { lame_version_t lv; (void) lame_init();
6937 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
6938 return 0; }
6940 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
6942 if test "$_mp3lame" = yes ; then
6943 _def_mp3lame="#define CONFIG_MP3LAME"
6944 _ld_mp3lame=-lmp3lame
6945 _libs_mencoder="$_libs_mencoder $_ld_mp3lame"
6946 cat > $TMPC << EOF
6947 #include <lame/lame.h>
6948 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
6950 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
6951 cat > $TMPC << EOF
6952 #include <lame/lame.h>
6953 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
6955 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
6956 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
6957 if test "$_mp3lame_lavc" = yes ; then
6958 _def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
6959 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
6960 _libs_mplayer="$_libs_mplayer $_ld_mp3lame"
6962 else
6963 _mp3lame_lavc=no
6964 _def_mp3lame='#undef CONFIG_MP3LAME'
6965 _def_mp3lame_lavc="#undef CONFIG_LIBMP3LAME"
6967 _res_comment="in libavcodec: $_mp3lame_lavc"
6968 echores "$_mp3lame"
6970 fi # test "$_mencoder" != no
6972 echocheck "mencoder"
6973 if test "$_mencoder" = yes ; then
6974 _def_muxers='#define CONFIG_MUXERS 1'
6975 else
6976 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
6977 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
6978 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
6979 _libavmuxers=""
6981 echores "$_mencoder"
6983 echocheck "fastmemcpy"
6984 # fastmemcpy check is done earlier with tests of CPU & binutils features
6985 if test "$_fastmemcpy" = yes ; then
6986 _def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
6987 else
6988 _def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
6990 echores "$_fastmemcpy"
6993 echocheck "UnRAR executable"
6994 if test "$_unrar_exec" = auto ; then
6995 _unrar_exec="yes"
6996 mingw32 && _unrar_exec="no"
6998 if test "$_unrar_exec" = yes ; then
6999 _def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7000 else
7001 _def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7003 echores "$_unrar_exec"
7005 echocheck "TV interface"
7006 if test "$_tv" = yes ; then
7007 _def_tv='#define CONFIG_TV 1'
7008 _inputmodules="tv $_inputmodules"
7009 else
7010 _noinputmodules="tv $_noinputmodules"
7011 _def_tv='#undef CONFIG_TV'
7013 echores "$_tv"
7016 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7017 echocheck "*BSD BT848 bt8xx header"
7018 _ioctl_bt848_h=no
7019 for file in "machine/ioctl_bt848.h" \
7020 "dev/bktr/ioctl_bt848.h" \
7021 "dev/video/bktr/ioctl_bt848.h" \
7022 "dev/ic/bt8xx.h" ; do
7023 cat > $TMPC <<EOF
7024 #include <sys/types.h>
7025 #include <sys/ioctl.h>
7026 #include <$file>
7027 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7029 if cc_check ; then
7030 _ioctl_bt848_h=yes
7031 _ioctl_bt848_h_name="$file"
7032 break;
7034 done
7035 if test "$_ioctl_bt848_h" = yes ; then
7036 _def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7037 _res_comment="using $_ioctl_bt848_h_name"
7038 else
7039 _def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7041 echores "$_ioctl_bt848_h"
7043 echocheck "*BSD ioctl_meteor.h"
7044 _ioctl_meteor_h=no
7045 for file in "machine/ioctl_meteor.h" \
7046 "dev/bktr/ioctl_meteor.h" \
7047 "dev/video/bktr/ioctl_meteor.h" ; do
7048 cat > $TMPC <<EOF
7049 #include <sys/types.h>
7050 #include <$file>
7051 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7053 if cc_check ; then
7054 _ioctl_meteor_h=yes
7055 _ioctl_meteor_h_name="$file"
7056 break;
7058 done
7059 if test "$_ioctl_meteor_h" = yes ; then
7060 _def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7061 _res_comment="using $_ioctl_meteor_h_name"
7062 else
7063 _def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7065 echores "$_ioctl_meteor_h"
7067 echocheck "*BSD BrookTree 848 TV interface"
7068 if test "$_tv_bsdbt848" = auto ; then
7069 _tv_bsdbt848=no
7070 if test "$_tv" = yes ; then
7071 cat > $TMPC <<EOF
7072 #include <sys/types.h>
7073 $_def_ioctl_meteor_h_name
7074 $_def_ioctl_bt848_h_name
7075 #ifdef IOCTL_METEOR_H_NAME
7076 #include IOCTL_METEOR_H_NAME
7077 #endif
7078 #ifdef IOCTL_BT848_H_NAME
7079 #include IOCTL_BT848_H_NAME
7080 #endif
7081 int main(void) {
7082 ioctl(0, METEORSINPUT, 0);
7083 ioctl(0, TVTUNER_GETFREQ, 0);
7084 return 0;
7087 cc_check && _tv_bsdbt848=yes
7090 if test "$_tv_bsdbt848" = yes ; then
7091 _def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7092 _inputmodules="tv-bsdbt848 $_inputmodules"
7093 else
7094 _def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7095 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7097 echores "$_tv_bsdbt848"
7098 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7101 echocheck "DirectShow TV interface"
7102 if test "$_tv_dshow" = auto ; then
7103 _tv_dshow=no
7104 if test "$_tv" = yes && win32 ; then
7105 cat > $TMPC <<EOF
7106 #include <ole2.h>
7107 int main(void) {
7108 void* p;
7109 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7110 return 0;
7113 cc_check -lole32 -luuid && _tv_dshow=yes
7116 if test "$_tv_dshow" = yes ; then
7117 _inputmodules="tv-dshow $_inputmodules"
7118 _def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7119 _ld_extra="$_ld_extra -lole32 -luuid"
7120 else
7121 _noinputmodules="tv-dshow $_noinputmodules"
7122 _def_tv_dshow='#undef CONFIG_TV_DSHOW'
7124 echores "$_tv_dshow"
7127 echocheck "Video 4 Linux TV interface"
7128 if test "$_tv_v4l1" = auto ; then
7129 _tv_v4l1=no
7130 if test "$_tv" = yes && linux ; then
7131 cat > $TMPC <<EOF
7132 #include <stdlib.h>
7133 #include <linux/videodev.h>
7134 int main(void) { return 0; }
7136 cc_check && _tv_v4l1=yes
7139 if test "$_tv_v4l1" = yes ; then
7140 _audio_input=yes
7141 _tv_v4l=yes
7142 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7143 _def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7144 _inputmodules="tv-v4l $_inputmodules"
7145 else
7146 _noinputmodules="tv-v4l1 $_noinputmodules"
7147 _def_tv_v4l='#undef CONFIG_TV_V4L'
7149 echores "$_tv_v4l1"
7152 echocheck "Video 4 Linux 2 TV interface"
7153 if test "$_tv_v4l2" = auto ; then
7154 _tv_v4l2=no
7155 if test "$_tv" = yes && linux ; then
7156 cat > $TMPC <<EOF
7157 #include <stdlib.h>
7158 #include <linux/types.h>
7159 #include <linux/videodev2.h>
7160 int main(void) { return 0; }
7162 cc_check && _tv_v4l2=yes
7165 if test "$_tv_v4l2" = yes ; then
7166 _audio_input=yes
7167 _tv_v4l=yes
7168 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7169 _def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7170 _inputmodules="tv-v4l2 $_inputmodules"
7171 else
7172 _noinputmodules="tv-v4l2 $_noinputmodules"
7173 _def_tv_v4l2='#undef CONFIG_TV_V4L2'
7175 echores "$_tv_v4l2"
7178 echocheck "TV teletext interface"
7179 if test "$_tv_teletext" = auto ; then
7180 _tv_teletext=no
7181 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7182 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7183 _tv_teletext=yes
7187 if test "$_tv_teletext" = yes ; then
7188 _def_tv_teletext='#define CONFIG_TV_TELETEXT 1'
7189 _inputmodules="tv-teletext $_inputmodules"
7190 else
7191 _noinputmodules="tv-teletext $_noinputmodules"
7192 _def_tv_teletext='#undef CONFIG_TV_TELETEXT'
7194 echores "$_tv_teletext"
7197 echocheck "Radio interface"
7198 if test "$_radio" = yes ; then
7199 _def_radio='#define CONFIG_RADIO 1'
7200 _inputmodules="radio $_inputmodules"
7201 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7202 _radio_capture=no
7204 if test "$_radio_capture" = yes ; then
7205 _audio_input=yes
7206 _def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7207 else
7208 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7210 else
7211 _noinputmodules="radio $_noinputmodules"
7212 _def_radio='#undef CONFIG_RADIO'
7213 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7214 _radio_capture=no
7216 echores "$_radio"
7217 echocheck "Capture for Radio interface"
7218 echores "$_radio_capture"
7220 echocheck "Video 4 Linux 2 Radio interface"
7221 if test "$_radio_v4l2" = auto ; then
7222 _radio_v4l2=no
7223 if test "$_radio" = yes && linux ; then
7224 cat > $TMPC <<EOF
7225 #include <stdlib.h>
7226 #include <linux/types.h>
7227 #include <linux/videodev2.h>
7228 int main(void) { return 0; }
7230 cc_check && _radio_v4l2=yes
7233 if test "$_radio_v4l2" = yes ; then
7234 _def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7235 else
7236 _def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7238 echores "$_radio_v4l2"
7240 echocheck "Video 4 Linux Radio interface"
7241 if test "$_radio_v4l" = auto ; then
7242 _radio_v4l=no
7243 if test "$_radio" = yes && linux ; then
7244 cat > $TMPC <<EOF
7245 #include <stdlib.h>
7246 #include <linux/videodev.h>
7247 int main(void) { return 0; }
7249 cc_check && _radio_v4l=yes
7252 if test "$_radio_v4l" = yes ; then
7253 _def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7254 else
7255 _def_radio_v4l='#undef CONFIG_RADIO_V4L'
7257 echores "$_radio_v4l"
7259 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7260 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7261 echocheck "*BSD BrookTree 848 Radio interface"
7262 _radio_bsdbt848=no
7263 cat > $TMPC <<EOF
7264 #include <sys/types.h>
7265 $_def_ioctl_bt848_h_name
7266 #ifdef IOCTL_BT848_H_NAME
7267 #include IOCTL_BT848_H_NAME
7268 #endif
7269 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7271 cc_check && _radio_bsdbt848=yes
7272 echores "$_radio_bsdbt848"
7273 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7275 if test "$_radio_bsdbt848" = yes ; then
7276 _def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7277 else
7278 _def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7281 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7282 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7283 die "Radio driver requires BSD BT848, V4L or V4L2!"
7286 echocheck "Video 4 Linux 2 MPEG PVR interface"
7287 if test "$_pvr" = auto ; then
7288 _pvr=no
7289 if test "$_tv_v4l2" = yes && linux ; then
7290 cat > $TMPC <<EOF
7291 #include <stdlib.h>
7292 #include <inttypes.h>
7293 #include <linux/types.h>
7294 #include <linux/videodev2.h>
7295 int main(void) { struct v4l2_ext_controls ext; return 0; }
7297 cc_check && _pvr=yes
7300 if test "$_pvr" = yes ; then
7301 _def_pvr='#define CONFIG_PVR 1'
7302 _inputmodules="pvr $_inputmodules"
7303 else
7304 _noinputmodules="pvr $_noinputmodules"
7305 _def_pvr='#undef CONFIG_PVR'
7307 echores "$_pvr"
7310 echocheck "audio select()"
7311 if test "$_select" = no ; then
7312 _def_select='#undef HAVE_AUDIO_SELECT'
7313 elif test "$_select" = yes ; then
7314 _def_select='#define HAVE_AUDIO_SELECT 1'
7316 echores "$_select"
7319 echocheck "ftp"
7320 if ! beos && test "$_ftp" = yes ; then
7321 _def_ftp='#define CONFIG_FTP 1'
7322 _inputmodules="ftp $_inputmodules"
7323 else
7324 _noinputmodules="ftp $_noinputmodules"
7325 _def_ftp='#undef CONFIG_FTP'
7327 echores "$_ftp"
7329 echocheck "vstream client"
7330 if test "$_vstream" = auto ; then
7331 _vstream=no
7332 cat > $TMPC <<EOF
7333 #include <vstream-client.h>
7334 void vstream_error(const char *format, ... ) {}
7335 int main(void) { vstream_start(); return 0; }
7337 cc_check -lvstream-client && _vstream=yes
7339 if test "$_vstream" = yes ; then
7340 _def_vstream='#define CONFIG_VSTREAM 1'
7341 _inputmodules="vstream $_inputmodules"
7342 _ld_extra="$_ld_extra -lvstream-client"
7343 else
7344 _noinputmodules="vstream $_noinputmodules"
7345 _def_vstream='#undef CONFIG_VSTREAM'
7347 echores "$_vstream"
7349 # endian testing
7350 echocheck "byte order"
7351 if test "$_big_endian" = auto ; then
7352 cat > $TMPC <<EOF
7353 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
7354 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
7355 int main(void) { return (int)ascii_name; }
7357 if cc_check ; then
7358 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
7359 _big_endian=yes
7360 else
7361 _big_endian=no
7363 else
7364 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
7367 if test "$_big_endian" = yes ; then
7368 _byte_order='big-endian'
7369 _def_words_endian='#define WORDS_BIGENDIAN 1'
7370 else
7371 _byte_order='little-endian'
7372 _def_words_endian='#undef WORDS_BIGENDIAN'
7374 echores "$_byte_order"
7376 echocheck "OSD menu"
7377 if test "$_menu" = yes ; then
7378 _def_menu='#define CONFIG_MENU 1'
7379 test $_dvbin = "yes" && _menu_dvbin=yes
7380 else
7381 _def_menu='#undef CONFIG_MENU'
7382 _menu_dvbin=no
7384 echores "$_menu"
7387 echocheck "Subtitles sorting"
7388 if test "$_sortsub" = yes ; then
7389 _def_sortsub='#define CONFIG_SORTSUB 1'
7390 else
7391 _def_sortsub='#undef CONFIG_SORTSUB'
7393 echores "$_sortsub"
7396 echocheck "XMMS inputplugin support"
7397 if test "$_xmms" = yes ; then
7398 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7399 _xmmsplugindir=`xmms-config --input-plugin-dir`
7400 _xmmslibdir=`xmms-config --exec-prefix`/lib
7401 else
7402 _xmmsplugindir=/usr/lib/xmms/Input
7403 _xmmslibdir=/usr/lib
7406 _def_xmms='#define CONFIG_XMMS 1'
7407 if darwin ; then
7408 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.dylib"
7409 else
7410 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7412 else
7413 _def_xmms='#undef CONFIG_XMMS'
7415 echores "$_xmms"
7417 echocheck "inet6"
7418 if test "$_inet6" = auto ; then
7419 cat > $TMPC << EOF
7420 #include <sys/types.h>
7421 #if !defined(_WIN32) || defined(__CYGWIN__)
7422 #include <sys/socket.h>
7423 #include <netinet/in.h>
7424 #else
7425 #include <ws2tcpip.h>
7426 #endif
7427 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
7429 _inet6=no
7430 if cc_check $_ld_sock ; then
7431 _inet6=yes
7434 if test "$_inet6" = yes ; then
7435 _def_inet6='#define HAVE_AF_INET6 1'
7436 else
7437 _def_inet6='#undef HAVE_AF_INET6'
7439 echores "$_inet6"
7442 echocheck "gethostbyname2"
7443 if test "$_gethostbyname2" = auto ; then
7444 cat > $TMPC << EOF
7445 #include <sys/types.h>
7446 #include <sys/socket.h>
7447 #include <netdb.h>
7448 int main(void) { gethostbyname2("", AF_INET); return 0; }
7450 _gethostbyname2=no
7451 if cc_check ; then
7452 _gethostbyname2=yes
7456 if test "$_gethostbyname2" = yes ; then
7457 _def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
7458 else
7459 _def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
7461 echores "$_gethostbyname2"
7464 # --------------- GUI specific tests begin -------------------
7465 echocheck "GUI"
7466 echo "$_gui"
7467 if test "$_gui" = yes ; then
7469 # Required libraries
7470 if test "$_libavcodec" != yes ||
7471 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7472 die "The GUI requires libavcodec with PNG support (needs zlib)."
7474 test "$_freetype" = no && test "$_bitmap_font" = no && \
7475 die "The GUI requires either FreeType or bitmap font support."
7476 if ! win32 ; then
7477 _gui_gtk=yes
7478 test "$_x11" != yes && die "X11 support required for GUI compilation."
7480 echocheck "XShape extension"
7481 if test "$_xshape" = auto ; then
7482 _xshape=no
7483 cat > $TMPC << EOF
7484 #include <X11/Xlib.h>
7485 #include <X11/Xproto.h>
7486 #include <X11/Xutil.h>
7487 #include <X11/extensions/shape.h>
7488 #include <stdlib.h>
7489 int main(void) {
7490 char *name = ":0.0";
7491 Display *wsDisplay;
7492 int exitvar = 0;
7493 int eventbase, errorbase;
7494 if (getenv("DISPLAY"))
7495 name=getenv("DISPLAY");
7496 wsDisplay=XOpenDisplay(name);
7497 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7498 exitvar=1;
7499 XCloseDisplay(wsDisplay);
7500 return exitvar;
7503 cc_check -lXext && _xshape=yes
7505 if test "$_xshape" = yes ; then
7506 _def_xshape='#define CONFIG_XSHAPE 1'
7507 else
7508 die "The GUI requires the X11 extension XShape (which was not found)."
7510 echores "$_xshape"
7512 #Check for GTK
7513 if test "$_gtk1" = no ; then
7514 #Check for GTK2 :
7515 echocheck "GTK+ version"
7517 if $_pkg_config gtk+-2.0 --exists ; then
7518 _gtk=`$_pkg_config gtk+-2.0 --modversion 2>/dev/null`
7519 _inc_extra="$_inc_extra `$_pkg_config gtk+-2.0 --cflags 2>/dev/null`"
7520 _libs_mplayer="$_libs_mplayer `$_pkg_config gtk+-2.0 --libs 2>/dev/null`"
7521 echores "$_gtk"
7523 # Check for GLIB2
7524 if $_pkg_config glib-2.0 --exists ; then
7525 echocheck "glib version"
7526 _glib=`$_pkg_config glib-2.0 --modversion 2>/dev/null`
7527 _libs_mplayer="$_libs_mplayer `$_pkg_config glib-2.0 --libs 2>/dev/null`"
7528 echores "$_glib"
7530 _def_gui='#define CONFIG_GUI 1'
7531 _def_gtk2='#define CONFIG_GTK2 1'
7532 else
7533 _gtk1=yes
7534 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7536 else
7537 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7538 _gtk1=yes
7542 if test "$_gtk1" = yes ; then
7543 # Check for old GTK (1.2.x)
7544 echocheck "GTK version"
7545 if test -z "$_gtkconfig" ; then
7546 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7547 _gtkconfig="gtk-config"
7548 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7549 _gtkconfig="gtk12-config"
7550 else
7551 die "The GUI requires GTK devel packages (which were not found)."
7554 _gtk=`$_gtkconfig --version 2>&1`
7555 _inc_extra="$_inc_extra `$_gtkconfig --cflags 2>&1`"
7556 _libs_mplayer="$_libs_mplayer `$_gtkconfig --libs 2>&1`"
7557 echores "$_gtk (using $_gtkconfig)"
7559 # Check for GLIB
7560 echocheck "glib version"
7561 if test -z "$_glibconfig" ; then
7562 if ( glib-config --version ) >/dev/null 2>&1 ; then
7563 _glibconfig="glib-config"
7564 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7565 _glibconfig="glib12-config"
7566 else
7567 die "The GUI requires GLIB devel packages (which were not found)"
7570 _glib=`$_glibconfig --version 2>&1`
7571 _libs_mplayer="$_libs_mplayer `$_glibconfig --libs 2>&1`"
7572 echores "$_glib (using $_glibconfig)"
7574 _def_gui='#define CONFIG_GUI 1'
7575 _def_gtk2='#undef CONFIG_GTK2'
7578 else #if ! win32
7579 _gui_win32=yes
7580 _libs_mplayer="$_libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7581 _def_gui='#define CONFIG_GUI 1'
7582 _def_gtk2='#undef CONFIG_GTK2'
7583 fi #if ! win32
7585 else #if test "$_gui"
7586 _def_gui='#undef CONFIG_GUI'
7587 _def_gtk2='#undef CONFIG_GTK2'
7588 fi #if test "$_gui"
7589 # --------------- GUI specific tests end -------------------
7592 if test "$_charset" = "noconv" ; then
7593 _charset=""
7595 if test "$_charset" ; then
7596 _def_charset="#define MSG_CHARSET \"$_charset\""
7597 else
7598 _def_charset="#undef MSG_CHARSET"
7601 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7602 echocheck "iconv program"
7603 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7604 if test "$?" -ne 0 ; then
7605 echores "no"
7606 echo "No working iconv program found, use "
7607 echo "--charset=UTF-8 to continue anyway."
7608 echo "If you also have problems with iconv library functions use --charset=noconv."
7609 echo "Messages in the GTK-2 interface will be broken then."
7610 exit 1
7611 else
7612 echores "yes"
7616 #############################################################################
7618 echocheck "automatic gdb attach"
7619 if test "$_crash_debug" = yes ; then
7620 _def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7621 else
7622 _def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7623 _crash_debug=no
7625 echores "$_crash_debug"
7627 echocheck "compiler support for noexecstack"
7628 cat > $TMPC <<EOF
7629 int main(void) { return 0; }
7631 if cc_check -Wl,-z,noexecstack ; then
7632 _ld_extra="-Wl,-z,noexecstack $_ld_extra"
7633 echores "yes"
7634 else
7635 echores "no"
7639 # Dynamic linking flags
7640 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7641 _ld_dl_dynamic=''
7642 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7643 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7644 _ld_dl_dynamic='-rdynamic'
7647 _ld_extra="$_ld_extra $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7648 bsdos && _ld_extra="$_ld_extra -ldvd"
7649 netbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7650 openbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7652 _def_debug='#undef MP_DEBUG'
7653 test "$_debug" != "" && _def_debug='#define MP_DEBUG 1'
7656 echocheck "joystick"
7657 _def_joystick='#undef CONFIG_JOYSTICK'
7658 if test "$_joystick" = yes ; then
7659 if linux ; then
7660 # TODO add some check
7661 _def_joystick='#define CONFIG_JOYSTICK 1'
7662 else
7663 _joystick="no"
7664 _res_comment="unsupported under $system_name"
7667 echores "$_joystick"
7669 echocheck "lirc"
7670 if test "$_lirc" = auto ; then
7671 _lirc=no
7672 cat > $TMPC <<EOF
7673 #include <lirc/lirc_client.h>
7674 int main(void) { return 0; }
7676 cc_check -llirc_client && _lirc=yes
7678 if test "$_lirc" = yes ; then
7679 _def_lirc='#define CONFIG_LIRC 1'
7680 _ld_extra="$_ld_extra -llirc_client"
7681 else
7682 _def_lirc='#undef CONFIG_LIRC'
7684 echores "$_lirc"
7686 echocheck "lircc"
7687 if test "$_lircc" = auto ; then
7688 _lircc=no
7689 cat > $TMPC <<EOF
7690 #include <lirc/lircc.h>
7691 int main(void) { return 0; }
7693 cc_check -llircc && _lircc=yes
7695 if test "$_lircc" = yes ; then
7696 _def_lircc='#define CONFIG_LIRCC 1'
7697 _ld_extra="$_ld_extra -llircc"
7698 else
7699 _def_lircc='#undef CONFIG_LIRCC'
7701 echores "$_lircc"
7703 if arm; then
7704 # Detect maemo development platform libraries availability (http://www.maemo.org),
7705 # they are used when run on Nokia 770|8x0
7706 echocheck "maemo (Nokia 770|8x0)"
7707 if test "$_maemo" = auto ; then
7708 _maemo=no
7709 cat > $TMPC << EOF
7710 #include <libosso.h>
7711 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7713 cc_check `$_pkg_config --cflags --libs libosso 2>/dev/null` && _maemo=yes
7715 if test "$_maemo" = yes ; then
7716 _def_maemo='#define CONFIG_MAEMO 1'
7717 _inc_extra="$_inc_extra `$_pkg_config --cflags libosso`"
7718 _ld_extra="$_ld_extra `$_pkg_config --libs libosso` -lXsp"
7719 else
7720 _def_maemo='#undef CONFIG_MAEMO'
7722 echores "$_maemo"
7725 #this must be the last test to be performed or the ones following it will likely fail
7726 #because libdvdnavmini is intentionally not linked against libdvdread (to permit mplayer
7727 # to use its own copy of the library)
7728 echocheck "DVD support (libdvdnav)"
7729 if test "$_dvdnav" = auto ; then
7730 if test "$_dvdread_internal" = yes ; then
7731 _dvdnav=no
7732 _res_comment="Disabled in favor of the internal copy of dvdread. Append --disable-dvdread-internal."
7733 else
7734 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7737 if test "$_dvdnav" = auto ; then
7738 cat > $TMPC <<EOF
7739 #include <inttypes.h>
7740 #include <dvdnav/dvdnav.h>
7741 int main(void) { dvdnav_t *dvd=0; return 0; }
7743 _dvdnav=no
7744 _dvdnavdir=`$_dvdnavconfig --cflags`
7745 _dvdnavlibs=`$_dvdnavconfig --libs`
7746 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7748 if test "$_dvdnav" = yes ; then
7749 _largefiles=yes
7750 _def_dvdnav='#define CONFIG_DVDNAV 1'
7751 _inc_extra="$_inc_extra `$_dvdnavconfig --cflags`"
7752 _ld_extra="$_ld_extra `$_dvdnavconfig --minilibs`"
7753 _inputmodules="dvdnav $_inputmodules"
7754 else
7755 _def_dvdnav='#undef CONFIG_DVDNAV'
7756 _noinputmodules="dvdnav $_noinputmodules"
7758 echores "$_dvdnav"
7761 #############################################################################
7763 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7764 # the OMF format needs to come after the 'extern symbol prefix' check, which
7765 # uses nm.
7766 if os2 ; then
7767 _ld_extra="$_ld_extra -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7770 # linker paths should be the same for mencoder and mplayer
7771 _ld_tmp=""
7772 for I in $_libs_mplayer ; do
7773 _tmp=`echo $I | sed -e 's/^-L.*$//'`
7774 if test -z "$_tmp" ; then
7775 _ld_extra="$_ld_extra $I"
7776 else
7777 _ld_tmp="$_ld_tmp $I"
7779 done
7780 _libs_mplayer=$_ld_tmp
7783 #############################################################################
7784 if darwin ; then
7785 CFLAGS="$CFLAGS -mdynamic-no-pic -falign-loops=16 -shared-libgcc"
7786 if [ "$_cc_major" = 3 ] && [ "$_cc_minor" -lt 1 ]; then
7787 CFLAGS="$CFLAGS -no-cpp-precomp"
7790 if amigaos ; then
7791 CFLAGS="$CFLAGS -DNEWLIB -D__USE_INLINE__"
7793 # Thread support
7794 if linux ; then
7795 CFLAGS="$CFLAGS -D_REENTRANT"
7796 elif freebsd || netbsd || openbsd || bsdos ; then
7797 # FIXME bsd needs this so maybe other OS'es
7798 CFLAGS="$CFLAGS -D_THREAD_SAFE"
7800 # 64 bit file offsets?
7801 if test "$_largefiles" = yes || freebsd ; then
7802 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7803 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7804 # dvdread support requires this (for off64_t)
7805 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7809 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
7811 cat > $TMPC << EOF
7812 int main(void) { return 0; }
7814 if test "$cc_vendor" = "gnu" ; then
7815 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
7816 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
7817 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
7818 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
7819 else
7820 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
7823 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
7825 #############################################################################
7826 echo "Creating config.mak"
7827 cat > config.mak << EOF
7828 # -------- Generated by configure -----------
7830 # Ensure that locale settings do not interfere with shell commands.
7831 export LC_ALL = C
7833 CHARSET = $_charset
7834 DOC_LANG = $doc_lang
7835 DOC_LANGS = $doc_langs
7836 DOC_LANG_ALL = $doc_lang_all
7837 MAN_LANG = $man_lang
7838 MAN_LANGS = $man_langs
7839 MAN_LANG_ALL = $man_lang_all
7841 prefix = \$(DESTDIR)$_prefix
7842 BINDIR = \$(DESTDIR)$_bindir
7843 DATADIR = \$(DESTDIR)$_datadir
7844 LIBDIR = \$(DESTDIR)$_libdir
7845 MANDIR = \$(DESTDIR)$_mandir
7846 CONFDIR = \$(DESTDIR)$_confdir
7848 AR = $_ar
7849 CC = $_cc
7850 CXX = $_cc
7851 HOST_CC = $_host_cc
7852 YASM = $_yasm
7853 INSTALL = $_install
7854 INSTALLSTRIP = $_install_strip
7855 RANLIB = $_ranlib
7856 WINDRES = $_windres
7858 EXTRA_INC = $_inc_extra
7859 EXTRAXX_INC = $_inc_extra $_inc_extraxx
7860 CFLAGS = $CFLAGS \$(EXTRA_INC)
7861 OPTFLAGS = $CFLAGS \$(EXTRA_INC)
7862 CXXFLAGS = $CXXFLAGS \$(EXTRAXX_INC)
7863 CFLAGS_DHAHELPER = $cflags_dhahelper
7864 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7865 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7866 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7867 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7868 CFLAGS_STACKREALIGN = $cflags_stackrealign
7869 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7870 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7871 YASMFLAGS = $YASMFLAGS
7873 EXTRALIBS = $_extra_libs
7874 EXTRA_LIB = $_ld_extra $_ld_static $_ld_lm
7875 EXTRALIBS_MPLAYER = $_libs_mplayer
7876 EXTRALIBS_MENCODER = $_libs_mencoder
7878 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
7880 MPDEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.xpm,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7881 MPDEPEND_CMD_CXX = \$(CC) -MM \$(CXXFLAGS) \$(filter-out %.hh,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7883 GETCH = $_getch
7884 HELP_FILE = $_mp_help
7885 TIMER = $_timer
7887 AO_SRCS = $_aosrc
7888 VO_SRCS = $_vosrc
7890 EXESUF = $_exesuf
7892 $_target_arch
7893 $_target_arch_x86
7894 `echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/'`
7896 MENCODER = $_mencoder
7897 MPLAYER = $_mplayer
7899 NEED_GETTIMEOFDAY = $_need_gettimeofday
7900 NEED_GLOB = $_need_glob
7901 NEED_MMAP = $_need_mmap
7902 NEED_SETENV = $_need_setenv
7903 NEED_SHMEM = $_need_shmem
7904 NEED_STRSEP = $_need_strsep
7905 NEED_SWAB = $_need_swab
7906 NEED_VSSCANF = $_need_vsscanf
7908 # features
7909 ALSA1X = $_alsa1x
7910 ALSA9 = $_alsa9
7911 APPLE_IR = $_apple_ir
7912 APPLE_REMOTE = $_apple_remote
7913 AUDIO_INPUT = $_audio_input
7914 BITMAP_FONT = $_bitmap_font
7915 CDDA = $_cdda
7916 CDDB = $_cddb
7917 COREAUDIO = $_coreaudio
7918 COREVIDEO = $_corevideo
7919 DVBIN = $_dvbin
7920 DVDNAV = $_dvdnav
7921 DVDREAD = $_dvdread
7922 DVDREAD_INTERNAL = $_dvdread_internal
7923 FAAC=$_faac
7924 FAAD = $_faad
7925 FAAD_INTERNAL = $_faad_internal
7926 FREETYPE = $_freetype
7927 FTP = $_ftp
7928 GIF = $_gif
7929 GUI = $_gui
7930 GUI_GTK = $_gui_gtk
7931 GUI_WIN32 = $_gui_win32
7932 HAVE_POSIX_SELECT = $_posix_select
7933 HAVE_SYS_MMAN_H = $_mman
7934 HAVE_XVMC = $_xvmc
7935 JOYSTICK = $_joystick
7936 JPEG = $_jpeg
7937 LADSPA = $_ladspa
7938 LIBA52 = $_liba52
7939 LIBA52_INTERNAL = $_liba52_internal
7940 LIBASS = $_ass
7941 LIBDCA = $_libdca
7942 LIBDV = $_libdv
7943 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7944 LIBLZO = $_liblzo
7945 LIBMAD = $_mad
7946 LIBMENU = $_menu
7947 LIBMENU_DVBIN = $_menu_dvbin
7948 LIBMPEG2 = $_libmpeg2
7949 LIBNEMESI = $_nemesi
7950 LIBNUT = $_libnut
7951 LIBSMBCLIENT = $_smb
7952 LIBTHEORA = $_theora
7953 LIBVORBIS = $_vorbis
7954 LIRC = $_lirc
7955 LIVE555 = $_live
7956 MACOSX_BUNDLE = $_macosx_bundle
7957 MACOSX_FINDER = $_macosx_finder
7958 MP3LAME = $_mp3lame
7959 MP3LIB = $_mp3lib
7960 MUSEPACK = $_musepack
7961 NATIVE_RTSP = $_native_rtsp
7962 NETWORK = $_network
7963 OSS = $_ossaudio
7964 PE_EXECUTABLE = $_pe_executable
7965 PNG = $_png
7966 PVR = $_pvr
7967 QTX_CODECS = $_qtx
7968 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7969 QTX_EMULATION = $_qtx_emulation
7970 QUARTZ = $_quartz
7971 RADIO=$_radio
7972 RADIO_CAPTURE=$_radio_capture
7973 REAL_CODECS = $_real
7974 SPEEX = $_speex
7975 STREAM_CACHE = $_stream_cache
7976 TOOLAME=$_toolame
7977 TREMOR_INTERNAL = $_tremor_internal
7978 TV = $_tv
7979 TV_BSDBT848 = $_tv_bsdbt848
7980 TV_DSHOW = $_tv_dshow
7981 TV_TELETEXT = $_tv_teletext
7982 TV_V4L = $_tv_v4l
7983 TV_V4L1 = $_tv_v4l1
7984 TV_V4L2 = $_tv_v4l2
7985 TWOLAME=$_twolame
7986 UNRAR_EXEC = $_unrar_exec
7987 VCD = $_vcd
7988 VIDIX = $_vidix
7989 VIDIX_PCIDB = $_vidix_pcidb_val
7990 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7991 VIDIX_IVTV=$_vidix_drv_ivtv
7992 VIDIX_MACH64=$_vidix_drv_mach64
7993 VIDIX_MGA=$_vidix_drv_mga
7994 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7995 VIDIX_NVIDIA=$_vidix_drv_nvidia
7996 VIDIX_PM2=$_vidix_drv_pm2
7997 VIDIX_PM3=$_vidix_drv_pm3
7998 VIDIX_RADEON=$_vidix_drv_radeon
7999 VIDIX_RAGE128=$_vidix_drv_rage128
8000 VIDIX_S3=$_vidix_drv_s3
8001 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8002 VIDIX_SIS=$_vidix_drv_sis
8003 VIDIX_UNICHROME=$_vidix_drv_unichrome
8004 VSTREAM = $_vstream
8005 WIN32DLL = $_win32dll
8006 WIN32_EMULATION = $_win32_emulation
8007 X264 = $_x264
8008 XANIM_CODECS = $_xanim
8009 XMMS_PLUGINS = $_xmms
8010 XVID4 = $_xvid
8011 ZORAN = $_zr
8013 # FFmpeg
8014 LIBAVUTIL = $_libavutil
8015 LIBAVUTIL_A = $_libavutil_a
8016 LIBAVUTIL_SO = $_libavutil_so
8017 LIBAVCODEC = $_libavcodec
8018 LIBAVCODEC_A = $_libavcodec_a
8019 LIBAVCODEC_SO = $_libavcodec_so
8020 LIBAVFORMAT = $_libavformat
8021 LIBAVFORMAT_A = $_libavformat_a
8022 LIBAVFORMAT_SO = $_libavformat_so
8023 LIBPOSTPROC = $_libpostproc
8024 LIBPOSTPROC_A = $_libpostproc_a
8025 LIBPOSTPROC_SO = $_libpostproc_so
8026 LIBSWSCALE = $_libswscale
8027 LIBSWSCALE_A = $_libswscale_a
8028 LIBSWSCALE_SO = $_libswscale_so
8030 BUILD_STATIC=yes
8031 SRC_PATH=..
8032 BUILD_ROOT=..
8033 LIBPREF=lib
8034 LIBSUF=.a
8035 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8037 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8038 CONFIG_FFT=yes
8039 CONFIG_FFT_MMX=$_mmx
8040 CONFIG_GOLOMB=yes
8041 CONFIG_MDCT=yes
8043 CONFIG_ENCODERS=yes
8044 CONFIG_GPL=yes
8045 CONFIG_LIBAMR=$_libamr
8046 CONFIG_LIBAMR_NB=$_libamr_nb
8047 CONFIG_LIBAMR_WB=$_libamr_wb
8048 CONFIG_LIBDIRAC=$_libdirac_lavc
8049 CONFIG_LIBFAAC=$_faac_lavc
8050 CONFIG_LIBMP3LAME=$_mp3lame_lavc
8051 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
8052 CONFIG_LIBVORBIS=$_libvorbis
8053 CONFIG_LIBX264=$_x264_lavc
8054 CONFIG_LIBXVID=$_xvid_lavc
8055 CONFIG_MLIB = $_mlib
8056 CONFIG_MUXERS=$_mencoder
8057 CONFIG_POSTPROC = yes
8058 # Prevent building libavcodec/imgresample.c with conflicting symbols
8059 CONFIG_SWSCALE=yes
8060 CONFIG_ZLIB=$_zlib
8062 HAVE_PTHREADS = $_pthreads
8063 HAVE_W32THREADS = $_w32threads
8064 HAVE_YASM = $_have_yasm
8066 `echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8067 `echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8068 `echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8069 `echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8070 `echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8071 `echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8074 #############################################################################
8076 ff_config_enable () {
8077 _nprefix=$3;
8078 test -z "$_nprefix" && _nprefix='CONFIG'
8079 for part in $1; do
8080 if ` echo $2 | grep -q -E "(^| )$part($| )" `; then
8081 echo "#define ${_nprefix}_$part 1"
8082 echo "#define ENABLE_$part 1"
8083 else
8084 echo "#define ENABLE_$part 0"
8086 done
8089 echo "Creating config.h"
8090 cat > $TMPH << EOF
8091 /*----------------------------------------------------------------------------
8092 ** This file has been automatically generated by configure any changes in it
8093 ** will be lost when you run configure again.
8094 ** Instead of modifying definitions here, use the --enable/--disable options
8095 ** of the configure script! See ./configure --help for details.
8096 *---------------------------------------------------------------------------*/
8098 #ifndef MPLAYER_CONFIG_H
8099 #define MPLAYER_CONFIG_H
8101 /* Undefine this if you do not want to select mono audio (left or right)
8102 with a stereo MPEG layer 2/3 audio stream. The command line option
8103 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8104 right-only), with 0 being the default.
8106 #define CONFIG_FAKE_MONO 1
8108 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8109 #define MAX_OUTBURST 65536
8111 /* set up audio OUTBURST. Do not change this! */
8112 #define OUTBURST 512
8114 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8115 #undef FAST_OSD
8116 #undef FAST_OSD_TABLE
8118 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8119 #define MPEG12_POSTPROC 1
8120 #define ATTRIBUTE_ALIGNED_MAX 16
8124 #define CONFIGURATION "$_configuration"
8126 #define MPLAYER_DATADIR "$_datadir"
8127 #define MPLAYER_CONFDIR "$_confdir"
8128 #define MPLAYER_LIBDIR "$_libdir"
8130 /* definitions needed by included libraries */
8131 #define HAVE_INTTYPES_H 1
8132 /* libmpeg2 + FFmpeg */
8133 $_def_fast_inttypes
8134 /* libdvdcss */
8135 #define HAVE_ERRNO_H 1
8136 /* libdvdcss + libdvdread */
8137 #define HAVE_LIMITS_H 1
8138 /* libdvdcss + libfaad2 */
8139 #define HAVE_UNISTD_H 1
8140 /* libfaad2 + libdvdread */
8141 #define STDC_HEADERS 1
8142 #define HAVE_MEMCPY 1
8143 /* libdvdread */
8144 #define HAVE_UINTPTR_T 1
8147 /* system headers */
8148 $def_alloca_h
8149 $def_alsa_asoundlib_h
8150 $def_altivec_h
8151 $def_malloc_h
8152 $def_mman_h
8153 $_def_mman_has_map_failed
8154 $def_soundcard_h
8155 $def_sys_asoundlib_h
8156 $def_sys_soundcard_h
8157 $def_sys_sysinfo_h
8158 $def_termios_h
8159 $def_termios_sys_h
8160 $def_winsock2_h
8163 /* system functions */
8164 $_def_gethostbyname2
8165 $_def_gettimeofday
8166 $_def_glob
8167 $_def_langinfo
8168 $_def_llrint
8169 $_def_lrint
8170 $_def_lrintf
8171 $_def_map_memalign
8172 $_def_memalign
8173 $_def_memalign_hack
8174 $_def_nanosleep
8175 $_def_posix_select
8176 $_def_round
8177 $_def_roundf
8178 $_def_select
8179 $_def_setenv
8180 $_def_shm
8181 $_def_strsep
8182 $_def_swab
8183 $_def_sysi86
8184 $_def_sysi86_iv
8185 $_def_termcap
8186 $_def_termios
8187 $_def_vsscanf
8190 /* system-specific features */
8191 $_def_asmalign_pot
8192 $_def_builtin_expect
8193 $_def_dl
8194 $_def_iconv
8195 $_def_kstat
8196 $_def_macosx_bundle
8197 $_def_macosx_finder
8198 $_def_maemo
8199 $_def_named_asm_args
8200 $_def_quicktime
8201 $_def_restrict_keyword
8202 $_def_rtc
8203 $_def_unrar_exec
8206 /* configurable options */
8207 $_def_charset
8208 $_def_crash_debug
8209 $_def_debug
8210 $_def_dynamic_plugins
8211 $_def_fastmemcpy
8212 $_def_menu
8213 $_def_runtime_cpudetection
8214 $_def_sighandler
8215 $_def_sortsub
8216 $_def_stream_cache
8219 /* CPU stuff */
8220 #define __CPU__ $iproc
8221 $_def_words_endian
8222 `ff_config_enable "$_arch_all" "$_arch" "ARCH"`
8223 `ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE"`
8226 /* DVD/VCD/CD */
8227 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8228 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8229 $_def_bsdi_dvd
8230 $_def_cddb
8231 $_def_cdio
8232 $_def_cdparanoia
8233 $_def_cdrom
8234 $_def_dvd
8235 $_def_dvd_bsd
8236 $_def_dvd_darwin
8237 $_def_dvd_linux
8238 $_def_dvd_openbsd
8239 $_def_dvdio
8240 $_def_dvdnav
8241 $_def_dvdread
8242 $_def_dvdread_internal
8243 $_def_hpux_scsi_h
8244 $_def_libcdio
8245 $_def_sol_scsi_h
8246 $_def_vcd
8249 /* codec libraries */
8250 $_def_faac
8251 $_def_faad
8252 $_def_faad_internal
8253 $_def_liba52
8254 $_def_liba52_internal
8255 $_def_libdca
8256 $_def_libdv
8257 $_def_liblzo
8258 $_def_libmpeg2
8259 $_def_mad
8260 $_def_mp3lame
8261 $_def_mp3lame_preset
8262 $_def_mp3lame_preset_medium
8263 $_def_mp3lib
8264 $_def_musepack
8265 $_def_speex
8266 $_def_theora
8267 $_def_toolame
8268 $_def_tremor
8269 $_def_twolame
8270 $_def_vorbis
8271 $_def_x264
8272 $_def_xvid
8273 $_def_zlib
8275 $_def_libnut
8278 /* binary codecs */
8279 $_def_qtx
8280 $_def_qtx_win32
8281 $_def_real
8282 $_def_real_path
8283 $_def_win32_loader
8284 $_def_win32dll
8285 #define WIN32_PATH "$_win32codecsdir"
8286 $_def_xanim
8287 $_def_xanim_path
8288 $_def_xmms
8289 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8292 /* GUI */
8293 $_def_gtk2
8294 $_def_gui
8295 $_def_xshape
8298 /* Audio output drivers */
8299 $_def_alsa
8300 $_def_alsa1x
8301 $_def_alsa5
8302 $_def_alsa9
8303 $_def_arts
8304 $_def_coreaudio
8305 $_def_esd
8306 $_def_esd_latency
8307 $_def_jack
8308 $_def_nas
8309 $_def_openal
8310 $_def_openal_h
8311 $_def_ossaudio
8312 $_def_ossaudio_devdsp
8313 $_def_ossaudio_devmixer
8314 $_def_pulse
8315 $_def_sgiaudio
8316 $_def_sunaudio
8317 $_def_win32waveout
8319 $_def_ladspa
8322 /* input */
8323 $_def_apple_ir
8324 $_def_apple_remote
8325 $_def_ioctl_bt848_h_name
8326 $_def_ioctl_meteor_h_name
8327 $_def_joystick
8328 $_def_lirc
8329 $_def_lircc
8330 $_def_pvr
8331 $_def_radio
8332 $_def_radio_bsdbt848
8333 $_def_radio_capture
8334 $_def_radio_v4l
8335 $_def_radio_v4l2
8336 $_def_tv
8337 $_def_tv_bsdbt848
8338 $_def_tv_dshow
8339 $_def_tv_teletext
8340 $_def_tv_v4l
8341 $_def_tv_v4l1
8342 $_def_tv_v4l2
8345 /* font stuff */
8346 $_def_ass
8347 $_def_bitmap_font
8348 $_def_enca
8349 $_def_fontconfig
8350 $_def_freetype
8351 $_def_fribidi
8354 /* networking */
8355 $_def_closesocket
8356 $_def_ftp
8357 $_def_inet6
8358 $_def_live
8359 $_def_nemesi
8360 $_def_network
8361 $_def_smb
8362 $_def_socklen_t
8363 $_def_use_aton
8364 $_def_vstream
8367 /* libvo options */
8368 $_def_3dfx
8369 $_def_aa
8370 $_def_bl
8371 $_def_caca
8372 $_def_corevideo
8373 $_def_dfbmga
8374 $_def_dga
8375 $_def_dga1
8376 $_def_dga2
8377 $_def_directfb
8378 $_def_directfb_version
8379 $_def_directx
8380 $_def_dvb
8381 $_def_dvb_head
8382 $_def_dvbin
8383 $_def_dxr2
8384 $_def_dxr3
8385 $_def_fbdev
8386 $_def_ggi
8387 $_def_ggiwmh
8388 $_def_gif
8389 $_def_gif_4
8390 $_def_gif_tvt_hack
8391 $_def_gl
8392 $_def_gl_win32
8393 $_def_ivtv
8394 $_def_jpeg
8395 $_def_md5sum
8396 $_def_mga
8397 $_def_png
8398 $_def_pnm
8399 $_def_quartz
8400 $_def_s3fb
8401 $_def_sdl
8402 $_def_sdlbuggy
8403 $_def_svga
8404 $_def_tdfxfb
8405 $_def_tdfxvid
8406 $_def_tga
8407 $_def_v4l2
8408 $_def_vesa
8409 $_def_vidix
8410 $_def_vidix_drv_cyberblade
8411 $_def_vidix_drv_ivtv
8412 $_def_vidix_drv_mach64
8413 $_def_vidix_drv_mga
8414 $_def_vidix_drv_mga_crtc2
8415 $_def_vidix_drv_nvidia
8416 $_def_vidix_drv_pm3
8417 $_def_vidix_drv_radeon
8418 $_def_vidix_drv_rage128
8419 $_def_vidix_drv_s3
8420 $_def_vidix_drv_sh_veu
8421 $_def_vidix_drv_sis
8422 $_def_vidix_drv_unichrome
8423 $_def_vidix_pfx
8424 $_def_vm
8425 $_def_wii
8426 $_def_x11
8427 $_def_xdpms
8428 $_def_xf86keysym
8429 $_def_xinerama
8430 $_def_xmga
8431 $_def_xss
8432 $_def_xv
8433 $_def_xvmc
8434 $_def_xvr100
8435 $_def_yuv4mpeg
8436 $_def_zr
8439 /* FFmpeg */
8440 $_def_libavcodec
8441 $_def_libavcodec_a
8442 $_def_libavcodec_mpegaudio_hp
8443 $_def_libavcodec_so
8444 $_def_libavformat
8445 $_def_libavformat_a
8446 $_def_libavformat_so
8447 $_def_libavutil
8448 $_def_libavutil_a
8449 $_def_libavutil_so
8450 $_def_libpostproc
8451 $_def_libpostproc_a
8452 $_def_libpostproc_so
8453 $_def_libswscale
8454 $_def_libswscale_a
8455 $_def_libswscale_so
8457 $_def_dcbzl
8458 $_def_extern_prefix
8459 $_def_fast_unaligned
8460 $_def_mkstemp
8461 $_def_pthreads
8462 $_def_threads
8463 #ifdef HAVE_THREADS
8464 #define ENABLE_THREADS 1
8465 #else
8466 #define ENABLE_THREADS 0
8467 #endif
8468 $_def_yasm
8470 #define CONFIG_GPL 1
8471 #define ENABLE_SMALL 0
8472 #define ENABLE_GRAY 0
8474 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8475 #define CONFIG_FFT 1
8476 #define ENABLE_FFT 1
8477 #define CONFIG_GOLOMB 1
8478 #define ENABLE_GOLOMB 1
8479 #define CONFIG_MDCT 1
8480 #define ENABLE_MDCT 1
8482 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8483 #define HAVE_EBX_AVAILABLE 1
8484 #ifndef MP_DEBUG
8485 #define HAVE_EBP_AVAILABLE 1
8486 #endif
8488 #define CONFIG_DECODERS 1
8489 #define ENABLE_DECODERS 1
8490 #define CONFIG_ENCODERS 1
8491 #define ENABLE_ENCODERS 1
8493 #define CONFIG_DEMUXERS 1
8494 #define ENABLE_DEMUXERS 1
8496 $_def_muxers
8498 /* External libraries used through libavcodec. */
8499 $_def_faac_lavc
8500 $_def_libamr
8501 $_def_libamr_nb
8502 $_def_libamr_wb
8503 $_def_libdirac_lavc
8504 $_def_libschroedinger_lavc
8505 $_def_mp3lame_lavc
8506 $_def_x264_lavc
8507 $_def_xvid_lavc
8509 `ff_config_enable "$_libavdecoders_all" "$_libavdecoders"`
8510 `ff_config_enable "$_libavencoders_all" "$_libavencoders"`
8511 `ff_config_enable "$_libavparsers_all" "$_libavparsers"`
8512 `ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers"`
8513 `ff_config_enable "$_libavmuxers_all" "$_libavmuxers"`
8514 `ff_config_enable "$_libavprotocols_all" "$_libavprotocols"`
8515 `ff_config_enable "$_libavbsfs_all" "$_libavbsfs"`
8517 #endif /* MPLAYER_CONFIG_H */
8520 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8521 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8523 #############################################################################
8525 cat << EOF
8527 Config files successfully generated by ./configure $_configuration !
8529 Install prefix: $_prefix
8530 Data directory: $_datadir
8531 Config direct.: $_confdir
8533 Byte order: $_byte_order
8534 Optimizing for: $_optimizing
8536 Languages:
8537 Messages/GUI: $msg_lang
8538 Manual pages: $man_langs
8540 Enabled optional drivers:
8541 Input: $_inputmodules
8542 Codecs: $_codecmodules
8543 Audio output: $_aomodules
8544 Video output: $_vomodules
8546 Disabled optional drivers:
8547 Input: $_noinputmodules
8548 Codecs: $_nocodecmodules
8549 Audio output: $_noaomodules
8550 Video output: $_novomodules
8552 'config.h' and 'config.mak' contain your configuration options.
8553 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8554 compile *** DO NOT REPORT BUGS if you tweak these files ***
8556 'make' will now compile MPlayer and 'make install' will install it.
8557 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8562 if test "$_mtrr" = yes ; then
8563 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8564 echo
8567 if ! x86_32; then
8568 cat <<EOF
8569 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8570 operating system ($system_name). You may encounter a few files that cannot
8571 be played due to missing open source video/audio codec support.
8577 cat <<EOF
8578 Check $TMPLOG if you wonder why an autodetection failed (make sure
8579 development headers/packages are installed).
8581 NOTE: The --enable-* parameters unconditionally force options on, completely
8582 skipping autodetection. This behavior is unlike what you may be used to from
8583 autoconf-based configure scripts that can decide to override you. This greater
8584 level of control comes at a price. You may have to provide the correct compiler
8585 and linker flags yourself.
8586 If you used one of these options (except --enable-gui and similar ones that
8587 turn on internal features) and experience a compilation or linking failure,
8588 make sure you have passed the necessary compiler/linker flags to configure.
8590 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8594 if test "$_warn_CFLAGS" = yes; then
8595 cat <<EOF
8597 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8598 but:
8600 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8602 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8603 To do so, execute 'CFLAGS= ./configure <options>'
8608 # Last move:
8609 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"