Sync with latest FFmpeg changes.
[mplayer/glamo.git] / configure
blobebc6c3ca0678de9f12639691141b8be58bc1d428
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 tmp_run() {
82 "$TMPEXE" >> "$TMPLOG" 2>&1
85 # Display error message, flushes tempfile, exit
86 die () {
87 echo
88 echo "Error: $@" >&2
89 echo >&2
90 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
91 echo "Check \"$TMPLOG\" if you do not understand why it failed."
92 exit 1
95 # OS test booleans functions
96 issystem() {
97 test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
99 linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
100 sunos() { issystem "SunOS" ; return "$?" ; }
101 hpux() { issystem "HP-UX" ; return "$?" ; }
102 irix() { issystem "IRIX" ; return "$?" ; }
103 aix() { issystem "AIX" ; return "$?" ; }
104 cygwin() { issystem "CYGWIN" ; return "$?" ; }
105 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; return "$?" ; }
106 netbsd() { issystem "NetBSD" ; return "$?" ; }
107 bsdos() { issystem "BSD/OS" ; return "$?" ; }
108 openbsd() { issystem "OpenBSD" ; return "$?" ; }
109 dragonfly() { issystem "DragonFly" ; return "$?" ; }
110 qnx() { issystem "QNX" ; return "$?" ; }
111 darwin() { issystem "Darwin" ; return "$?" ; }
112 gnu() { issystem "GNU" ; return "$?" ; }
113 mingw32() { issystem "MINGW32" ; return "$?" ; }
114 morphos() { issystem "MorphOS" ; return "$?" ; }
115 amigaos() { issystem "AmigaOS" ; return "$?" ; }
116 win32() { cygwin || mingw32 ; return "$?" ; }
117 beos() { issystem "BEOS" ; return "$?" ; }
118 os2() { issystem "OS/2" ; return "$?" ; }
120 # arch test boolean functions
121 # x86/x86pc is used by QNX
122 x86_32() {
123 case "$host_arch" in
124 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
125 *) return 1 ;;
126 esac
129 x86_64() {
130 case "$host_arch" in
131 x86_64|amd64) return 0 ;;
132 *) return 1 ;;
133 esac
136 x86() {
137 x86_32 || x86_64
140 ppc() {
141 case "$host_arch" in
142 ppc|ppc64|powerpc|powerpc64) return 0;;
143 *) return 1;;
144 esac
147 alpha() {
148 case "$host_arch" in
149 alpha) return 0;;
150 *) return 1;;
151 esac
154 arm() {
155 case "$host_arch" in
156 arm) return 0;;
157 *) return 1;;
158 esac
161 # Use this before starting a check
162 echocheck() {
163 echo "============ Checking for $@ ============" >> "$TMPLOG"
164 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
167 # Use this to echo the results of a check
168 echores() {
169 if test "$_res_comment" ; then
170 _res_comment="($_res_comment)"
172 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
173 echo "##########################################" >> "$TMPLOG"
174 echo "" >> "$TMPLOG"
175 echo "$@ $_res_comment"
176 _res_comment=""
178 #############################################################################
180 # Check how echo works in this /bin/sh
181 case `echo -n` in
182 -n) _echo_n= _echo_c='\c' ;; # SysV echo
183 *) _echo_n='-n ' _echo_c= ;; # BSD echo
184 esac
186 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"`
187 man_lang_all=`echo DOCS/man/??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g"`
188 doc_lang_all=`echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g"`
190 show_help(){
191 cat << EOF
192 Usage: $0 [OPTIONS]...
194 Configuration:
195 -h, --help display this help and exit
197 Installation directories:
198 --prefix=DIR prefix directory for installation [/usr/local]
199 --bindir=DIR directory for installing binaries [PREFIX/bin]
200 --datadir=DIR directory for installing machine independent
201 data files (skins, etc) [PREFIX/share/mplayer]
202 --mandir=DIR directory for installing man pages [PREFIX/share/man]
203 --confdir=DIR directory for installing configuration files
204 [PREFIX/etc/mplayer]
205 --libdir=DIR directory for object code libraries [PREFIX/lib]
206 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
207 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
208 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
209 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
211 Optional features:
212 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
213 --disable-mplayer disable MPlayer compilation [enable]
214 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
215 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
216 --disable-largefiles disable support for files > 2GB [enable]
217 --enable-linux-devfs set default devices to devfs [disable]
218 --enable-termcap use termcap database for key codes [autodetect]
219 --enable-termios use termios database for key codes [autodetect]
220 --disable-iconv disable iconv for encoding conversion [autodetect]
221 --disable-langinfo do not use langinfo [autodetect]
222 --enable-lirc enable LIRC (remote control) support [autodetect]
223 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
224 --enable-joystick enable joystick support [disable]
225 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
226 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
227 --disable-vm disable X video mode extensions [autodetect]
228 --disable-xf86keysym disable support for multimedia keys [autodetect]
229 --enable-radio enable radio interface [disable]
230 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
231 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
232 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
233 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
234 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
235 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
236 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
237 --disable-tv-teletext disable TV teletext interface [autodetect]
238 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
239 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
240 --disable-network disable networking [enable]
241 --enable-winsock2_h enable winsock2_h [autodetect]
242 --enable-smb enable Samba (SMB) input [autodetect]
243 --enable-live enable LIVE555 Streaming Media [autodetect]
244 --enable-nemesi enable Nemesi Streaming Media [autodetect]
245 --disable-dvdnav disable libdvdnav [autodetect]
246 --disable-dvdread disable libdvdread [autodetect]
247 --disable-dvdread-internal disable internal libdvdread [autodetect]
248 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
249 --disable-cdparanoia disable cdparanoia [autodetect]
250 --disable-cddb disable cddb [autodetect]
251 --disable-bitmap-font disable bitmap font support [enable]
252 --disable-freetype disable FreeType 2 font rendering [autodetect]
253 --disable-fontconfig disable fontconfig font lookup [autodetect]
254 --disable-unrarexec disable using of UnRAR executable [enabled]
255 --enable-menu enable OSD menu (not DVD menu) [disabled]
256 --disable-sortsub disable subtitle sorting [enabled]
257 --enable-fribidi enable the FriBiDi libs [autodetect]
258 --disable-enca disable ENCA charset oracle library [autodetect]
259 --disable-macosx disable Mac OS X specific features [autodetect]
260 --disable-maemo disable maemo specific features [autodetect]
261 --enable-macosx-finder enable Mac OS X Finder invocation parameter
262 parsing [disabled]
263 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
264 --disable-inet6 disable IPv6 support [autodetect]
265 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
266 --disable-ftp disable FTP support [enabled]
267 --disable-vstream disable TiVo vstream client support [autodetect]
268 --disable-pthreads disable Posix threads support [autodetect]
269 --disable-w32threads disable Win32 threads support [autodetect]
270 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
271 --enable-rpath enable runtime linker path for extra libs [disabled]
273 Codecs:
274 --enable-gif enable GIF support [autodetect]
275 --enable-png enable PNG input/output support [autodetect]
276 --enable-jpeg enable JPEG input/output support [autodetect]
277 --enable-libcdio enable libcdio support [autodetect]
278 --enable-liblzo enable liblzo support [autodetect]
279 --disable-win32dll disable Win32 DLL support [enabled]
280 --disable-qtx disable QuickTime codecs support [enabled]
281 --disable-xanim disable XAnim codecs support [enabled]
282 --disable-real disable RealPlayer codecs support [enabled]
283 --disable-xvid disable Xvid [autodetect]
284 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
285 --disable-x264 disable x264 [autodetect]
286 --disable-x264-lavc disable x264 in libavcodec [autodetect]
287 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
288 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
289 decoder) [autodetect]
290 --disable-libnut disable libnut [autodetect]
291 --disable-libavutil_a disable static libavutil [autodetect]
292 --disable-libavcodec_a disable static libavcodec [autodetect]
293 --disable-libavformat_a disable static libavformat [autodetect]
294 --disable-libpostproc_a disable static libpostproc [autodetect]
295 --disable-libswscale_a disable static libswscale [autodetect]
296 --disable-libavutil_so disable shared libavutil [autodetect]
297 --disable-libavcodec_so disable shared libavcodec [autodetect]
298 --disable-libavformat_so disable shared libavformat [autodetect]
299 --disable-libpostproc_so disable shared libpostproc [autodetect]
300 --disable-libswscale_so disable shared libswscale [autodetect]
301 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
302 in libavcodec [enabled]
303 --disable-tremor-internal disable internal Tremor [enabled]
304 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
305 --enable-tremor enable external Tremor [autodetect]
306 --disable-libvorbis disable libvorbis support [autodetect]
307 --disable-speex disable Speex support [autodetect]
308 --enable-theora enable OggTheora libraries [autodetect]
309 --enable-faad enable external FAAD2 (AAC) [autodetect]
310 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
311 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
312 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
313 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
314 --disable-ladspa disable LADSPA plugin support [autodetect]
315 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
316 --disable-mad disable libmad (MPEG audio) support [autodetect]
317 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
318 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
319 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
320 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
321 --enable-xmms enable XMMS input plugin support [disabled]
322 --enable-libdca enable libdca support [autodetect]
323 --disable-mp3lib disable builtin mp3lib [autodetect]
324 --disable-liba52 disable liba52 [autodetect]
325 --disable-liba52-internal disable builtin liba52 [autodetect]
326 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
327 --disable-musepack disable musepack support [autodetect]
328 --disable-libamr_nb disable libamr narrowband [autodetect]
329 --disable-libamr_wb disable libamr wideband [autodetect]
330 --disable-decoder=DECODER disable specified FFmpeg decoder
331 --enable-decoder=DECODER enable specified FFmpeg decoder
332 --disable-encoder=ENCODER disable specified FFmpeg encoder
333 --enable-encoder=ENCODER enable specified FFmpeg encoder
334 --disable-parser=PARSER disable specified FFmpeg parser
335 --enable-parser=PARSER enable specified FFmpeg parser
336 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
337 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
338 --disable-muxer=MUXER disable specified FFmpeg muxer
339 --enable-muxer=MUXER enable specified FFmpeg muxer
341 Video output:
342 --disable-vidix disable VIDIX [for x86 *nix]
343 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
344 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
345 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
346 --disable-vidix-pcidb disable VIDIX PCI device name database
347 --enable-dhahelper enable VIDIX dhahelper support
348 --enable-svgalib_helper enable VIDIX svgalib_helper support
349 --enable-gl enable OpenGL video output [autodetect]
350 --enable-dga2 enable DGA 2 support [autodetect]
351 --enable-dga1 enable DGA 1 support [autodetect]
352 --enable-vesa enable VESA video output [autodetect]
353 --enable-svga enable SVGAlib video output [autodetect]
354 --enable-sdl enable SDL video output [autodetect]
355 --enable-aa enable AAlib video output [autodetect]
356 --enable-caca enable CACA video output [autodetect]
357 --enable-ggi enable GGI video output [autodetect]
358 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
359 --enable-directx enable DirectX video output [autodetect]
360 --enable-dxr2 enable DXR2 video output [autodetect]
361 --enable-dxr3 enable DXR3/H+ video output [autodetect]
362 --enable-ivtv enable IVTV TV-Out video output [autodetect]
363 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
364 --enable-dvb enable DVB video output [autodetect]
365 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
366 --enable-mga enable mga_vid video output [autodetect]
367 --enable-xmga enable mga_vid X11 video output [autodetect]
368 --enable-xv enable Xv video output [autodetect]
369 --enable-xvmc enable XvMC acceleration [disable]
370 --enable-vm enable XF86VidMode support [autodetect]
371 --enable-xinerama enable Xinerama support [autodetect]
372 --enable-x11 enable X11 video output [autodetect]
373 --enable-xshape enable XShape support [autodetect]
374 --disable-xss disable screensaver support via xss [autodetect]
375 --enable-fbdev enable FBDev video output [autodetect]
376 --enable-mlib enable mediaLib video output (Solaris) [disable]
377 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
378 --enable-tdfxfb enable tdfxfb video output [disable]
379 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
380 --enable-wii enable Nintendo Wii/GameCube video output [disable]
381 --enable-directfb enable DirectFB video output [autodetect]
382 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
383 --enable-bl enable Blinkenlights video output [disable]
384 --enable-tdfxvid enable tdfx_vid video output [disable]
385 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
386 --disable-tga disable Targa video output [enable]
387 --disable-pnm disable PNM video output [enable]
388 --disable-md5sum disable md5sum video output [enable]
389 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
391 Audio output:
392 --disable-alsa disable ALSA audio output [autodetect]
393 --disable-ossaudio disable OSS audio output [autodetect]
394 --disable-arts disable aRts audio output [autodetect]
395 --disable-esd disable esd audio output [autodetect]
396 --disable-pulse disable Pulseaudio audio output [autodetect]
397 --disable-jack disable JACK audio output [autodetect]
398 --disable-openal disable OpenAL audio output [autodetect]
399 --disable-nas disable NAS audio output [autodetect]
400 --disable-sgiaudio disable SGI audio output [autodetect]
401 --disable-sunaudio disable Sun audio output [autodetect]
402 --disable-win32waveout disable Windows waveout audio output [autodetect]
403 --disable-select disable using select() on the audio device [enable]
405 Miscellaneous options:
406 --enable-runtime-cpudetection enable runtime CPU detection [disable]
407 --enable-cross-compile enable cross-compilation [autodetect]
408 --cc=COMPILER C compiler to build MPlayer [gcc]
409 --host-cc=COMPILER C compiler for tools needed while building [gcc]
410 --as=ASSEMBLER assembler to build MPlayer [as]
411 --ar=AR librarian to build MPlayer [ar]
412 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
413 --windres=WINDRES windres to build MPlayer [windres]
414 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
415 --enable-static build a statically linked binary
416 --charset=charset convert the console messages to this character set
417 --language=list a white space or comma separated list of languages for
418 translated man pages, the first language is used for
419 messages and the GUI (the environment variable
420 \$LINGUAS is also honored) [en]
421 (Available: all $msg_lang_all)
422 --with-install=PATH path to a custom install program
424 Advanced options:
425 --enable-mmx enable MMX [autodetect]
426 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
427 --enable-3dnow enable 3DNow! [autodetect]
428 --enable-3dnowext enable extended 3DNow! [autodetect]
429 --enable-sse enable SSE [autodetect]
430 --enable-sse2 enable SSE2 [autodetect]
431 --enable-ssse3 enable SSSE3 [autodetect]
432 --enable-shm enable shm [autodetect]
433 --enable-altivec enable AltiVec (PowerPC) [autodetect]
434 --enable-armv5te enable DSP extensions (ARM) [autodetect]
435 --enable-armv6 enable ARMv6 (ARM) [autodetect]
436 --enable-armvfp enable ARM VFP (ARM) [autodetect]
437 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
438 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
439 --enable-big-endian force byte order to big-endian [autodetect]
440 --enable-debug[=1-3] compile-in debugging information [disable]
441 --enable-profile compile-in profiling information [disable]
442 --disable-sighandler disable sighandler for crashes [enable]
443 --enable-crash-debug enable automatic gdb attach on crash [disable]
444 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
446 Use these options if autodetection fails (Options marked with (*) accept
447 multiple paths separated by ':'):
448 --extra-libs=FLAGS extra linker flags
449 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
450 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
451 --with-extraincdir=DIR extra header search paths in DIR (*)
452 --with-extralibdir=DIR extra linker search paths in DIR (*)
453 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
455 --with-freetype-config=PATH path to freetype-config
456 --with-fribidi-config=PATH path to fribidi-config
457 --with-glib-config=PATH path to glib*-config
458 --with-gtk-config=PATH path to gtk*-config
459 --with-sdl-config=PATH path to sdl*-config
460 --with-dvdnav-config=PATH path to dvdnav-config
461 --with-dvdread-config=PATH path to dvdread-config
463 This configure script is NOT autoconf-based, even though its output is similar.
464 It will try to autodetect all configuration options. If you --enable an option
465 it will be forcefully turned on, skipping autodetection. This can break
466 compilation, so you need to know what you are doing.
468 exit 0
469 } #show_help()
471 # GOTCHA: the variables below defines the default behavior for autodetection
472 # and have - unless stated otherwise - at least 2 states : yes no
473 # If autodetection is available then the third state is: auto
474 _mmx=auto
475 _3dnow=auto
476 _3dnowext=auto
477 _mmxext=auto
478 _sse=auto
479 _sse2=auto
480 _ssse3=auto
481 _cmov=auto
482 _fast_cmov=auto
483 _armv5te=auto
484 _armv6=auto
485 _armvfp=auto
486 _iwmmxt=auto
487 _mtrr=auto
488 _altivec=auto
489 _install=install
490 _ranlib=ranlib
491 _windres=windres
492 _cc=cc
493 _ar=ar
494 test "$CC" && _cc="$CC"
495 _as=auto
496 _runtime_cpudetection=no
497 _cross_compile=auto
498 _prefix="/usr/local"
499 _libavutil_a=auto
500 _libavutil_so=auto
501 _libavcodec_a=auto
502 _libamr_nb=auto
503 _libamr_wb=auto
504 _libavdecoders_all=`sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
505 _libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER// `
506 _libavencoders_all=`sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
507 _libavencoders=` echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g'`
508 _libavparsers_all=`sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
509 _libavparsers=$_libavparsers_all
510 _libavbsfs_all=`sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
511 _libavbsfs=$_libavbsfs_all
512 _libavdemuxers_all=`sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
513 _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// `
514 _libavmuxers_all=`sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
515 _libavmuxers=`echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// `
516 _libavprotocols_all=`sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
517 _libavcodec_so=auto
518 _libavformat_a=auto
519 _libavformat_so=auto
520 _libpostproc_a=auto
521 _libpostproc_so=auto
522 _libswscale_a=auto
523 _libswscale_so=auto
524 _libavcodec_mpegaudio_hp=yes
525 _mencoder=yes
526 _mplayer=yes
527 _x11=auto
528 _xshape=auto
529 _xss=auto
530 _dga1=auto
531 _dga2=auto
532 _xv=auto
533 _xvmc=no #auto when complete
534 _sdl=auto
535 _directx=auto
536 _win32waveout=auto
537 _nas=auto
538 _png=auto
539 _jpeg=auto
540 _pnm=yes
541 _md5sum=yes
542 _yuv4mpeg=yes
543 _gif=auto
544 _gl=auto
545 _ggi=auto
546 _ggiwmh=auto
547 _aa=auto
548 _caca=auto
549 _svga=auto
550 _vesa=auto
551 _fbdev=auto
552 _dvb=auto
553 _dvbhead=auto
554 _dxr2=auto
555 _dxr3=auto
556 _ivtv=auto
557 _v4l2=auto
558 _iconv=auto
559 _langinfo=auto
560 _rtc=auto
561 _ossaudio=auto
562 _arts=auto
563 _esd=auto
564 _pulse=auto
565 _jack=auto
566 _openal=auto
567 _libcdio=auto
568 _liblzo=auto
569 _mad=auto
570 _mp3lame=auto
571 _mp3lame_lavc=auto
572 _toolame=auto
573 _twolame=auto
574 _tremor=auto
575 _tremor_internal=yes
576 _tremor_low=no
577 _libvorbis=auto
578 _speex=auto
579 _theora=auto
580 _mp3lib=auto
581 _liba52=auto
582 _liba52_internal=auto
583 _libdca=auto
584 _libmpeg2=auto
585 _faad=auto
586 _faad_internal=auto
587 _faad_fixed=no
588 _faac=auto
589 _faac_lavc=auto
590 _ladspa=auto
591 _xmms=no
592 _dvdnav=auto
593 _dvdnavconfig=dvdnav-config
594 _dvdreadconfig=dvdread-config
595 _dvdread=auto
596 _dvdread_internal=auto
597 _libdvdcss_internal=auto
598 _xanim=auto
599 _real=auto
600 _live=auto
601 _nemesi=auto
602 _native_rtsp=yes
603 _xinerama=auto
604 _mga=auto
605 _xmga=auto
606 _vm=auto
607 _xf86keysym=auto
608 _mlib=no #broken, thus disabled
609 _sgiaudio=auto
610 _sunaudio=auto
611 _alsa=auto
612 _fastmemcpy=yes
613 _unrar_exec=auto
614 _win32dll=auto
615 _select=yes
616 _radio=no
617 _radio_capture=no
618 _radio_v4l=auto
619 _radio_v4l2=auto
620 _radio_bsdbt848=auto
621 _tv=yes
622 _tv_v4l1=auto
623 _tv_v4l2=auto
624 _tv_bsdbt848=auto
625 _tv_dshow=auto
626 _tv_teletext=auto
627 _pvr=auto
628 _network=yes
629 _winsock2_h=auto
630 _smb=auto
631 _vidix=auto
632 _vidix_pcidb=yes
633 _dhahelper=no
634 _svgalib_helper=no
635 _joystick=no
636 _xvid=auto
637 _xvid_lavc=auto
638 _x264=auto
639 _x264_lavc=auto
640 _libdirac_lavc=auto
641 _libschroedinger_lavc=auto
642 _libnut=auto
643 _lirc=auto
644 _lircc=auto
645 _apple_remote=auto
646 _apple_ir=auto
647 _gui=no
648 _gtk1=no
649 _termcap=auto
650 _termios=auto
651 _3dfx=no
652 _s3fb=no
653 _wii=no
654 _tdfxfb=no
655 _tdfxvid=no
656 _xvr100=auto
657 _tga=yes
658 _directfb=auto
659 _zr=auto
660 _bl=no
661 _largefiles=yes
662 #_language=en
663 _shm=auto
664 _linux_devfs=no
665 _charset="UTF-8"
666 _dynamic_plugins=no
667 _crash_debug=no
668 _sighandler=yes
669 _libdv=auto
670 _cdparanoia=auto
671 _cddb=auto
672 _big_endian=auto
673 _bitmap_font=yes
674 _freetype=auto
675 _fontconfig=auto
676 _menu=no
677 _qtx=auto
678 _macosx=auto
679 _maemo=auto
680 _macosx_finder=no
681 _macosx_bundle=auto
682 _sortsub=yes
683 _freetypeconfig='freetype-config'
684 _fribidi=auto
685 _fribidiconfig='fribidi-config'
686 _enca=auto
687 _inet6=auto
688 _gethostbyname2=auto
689 _ftp=yes
690 _musepack=auto
691 _vstream=auto
692 _pthreads=auto
693 _w32threads=auto
694 _ass=auto
695 _rpath=no
696 _asmalign_pot=auto
697 _stream_cache=yes
698 _def_stream_cache="#define CONFIG_STREAM_CACHE 1"
699 _need_shmem=yes
700 for ac_option do
701 case "$ac_option" in
702 --help|-help|-h)
703 show_help
705 --prefix=*)
706 _prefix=`echo $ac_option | cut -d '=' -f 2`
708 --bindir=*)
709 _bindir=`echo $ac_option | cut -d '=' -f 2`
711 --datadir=*)
712 _datadir=`echo $ac_option | cut -d '=' -f 2`
714 --mandir=*)
715 _mandir=`echo $ac_option | cut -d '=' -f 2`
717 --confdir=*)
718 _confdir=`echo $ac_option | cut -d '=' -f 2`
720 --libdir=*)
721 _libdir=`echo $ac_option | cut -d '=' -f 2`
723 --codecsdir=*)
724 _codecsdir=`echo $ac_option | cut -d '=' -f 2`
726 --win32codecsdir=*)
727 _win32codecsdir=`echo $ac_option | cut -d '=' -f 2`
729 --xanimcodecsdir=*)
730 _xanimcodecsdir=`echo $ac_option | cut -d '=' -f 2`
732 --realcodecsdir=*)
733 _realcodecsdir=`echo $ac_option | cut -d '=' -f 2`
735 --with-extraincdir=*)
736 _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'`
738 --with-extralibdir=*)
739 _ld_extra=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
742 --with-install=*)
743 _install=`echo $ac_option | cut -d '=' -f 2 `
745 --with-xvmclib=*)
746 _xvmclib=`echo $ac_option | cut -d '=' -f 2`
749 --with-sdl-config=*)
750 _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
752 --with-freetype-config=*)
753 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2`
755 --with-fribidi-config=*)
756 _fribidiconfig=`echo $ac_option | cut -d '=' -f 2`
758 --with-gtk-config=*)
759 _gtkconfig=`echo $ac_option | cut -d '=' -f 2`
761 --with-glib-config=*)
762 _glibconfig=`echo $ac_option | cut -d '=' -f 2`
764 --with-dvdnav-config=*)
765 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
767 --with-dvdread-config=*)
768 _dvdreadconfig=`echo $ac_option | cut -d '=' -f 2`
771 --extra-libs=*)
772 _extra_libs=`echo $ac_option | cut -d '=' -f 2`
774 --extra-libs-mplayer=*)
775 _libs_mplayer=`echo $ac_option | cut -d '=' -f 2`
777 --extra-libs-mencoder=*)
778 _libs_mencoder=`echo $ac_option | cut -d '=' -f 2`
781 --target=*)
782 _target=`echo $ac_option | cut -d '=' -f 2`
784 --cc=*)
785 _cc=`echo $ac_option | cut -d '=' -f 2`
787 --host-cc=*)
788 _host_cc=`echo $ac_option | cut -d '=' -f 2`
790 --as=*)
791 _as=`echo $ac_option | cut -d '=' -f 2`
793 --ar=*)
794 _ar=`echo $ac_option | cut -d '=' -f 2`
796 --ranlib=*)
797 _ranlib=`echo $ac_option | cut -d '=' -f 2`
799 --windres=*)
800 _windres=`echo $ac_option | cut -d '=' -f 2`
802 --charset=*)
803 _charset=`echo $ac_option | cut -d '=' -f 2`
805 --language=*)
806 _language=`echo $ac_option | cut -d '=' -f 2`
809 --enable-static)
810 _ld_static='-static'
812 --disable-static)
813 _ld_static=''
815 --enable-profile)
816 _profile='-p'
818 --disable-profile)
819 _profile=
821 --enable-debug)
822 _debug='-g'
824 --enable-debug=*)
825 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
827 --disable-debug)
828 _debug=
830 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
831 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
832 --enable-cross-compile) _cross_compile=yes ;;
833 --disable-cross-compile) _cross_compile=no ;;
834 --enable-mencoder) _mencoder=yes ;;
835 --disable-mencoder) _mencoder=no ;;
836 --enable-mplayer) _mplayer=yes ;;
837 --disable-mplayer) _mplayer=no ;;
838 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
839 --disable-dynamic-plugins) _dynamic_plugins=no ;;
840 --enable-x11) _x11=yes ;;
841 --disable-x11) _x11=no ;;
842 --enable-xshape) _xshape=yes ;;
843 --disable-xshape) _xshape=no ;;
844 --enable-xss) _xss=yes ;;
845 --disable-xss) _xss=no ;;
846 --enable-xv) _xv=yes ;;
847 --disable-xv) _xv=no ;;
848 --enable-xvmc) _xvmc=yes ;;
849 --disable-xvmc) _xvmc=no ;;
850 --enable-sdl) _sdl=yes ;;
851 --disable-sdl) _sdl=no ;;
852 --enable-directx) _directx=yes ;;
853 --disable-directx) _directx=no ;;
854 --enable-win32waveout) _win32waveout=yes ;;
855 --disable-win32waveout) _win32waveout=no ;;
856 --enable-nas) _nas=yes ;;
857 --disable-nas) _nas=no ;;
858 --enable-png) _png=yes ;;
859 --disable-png) _png=no ;;
860 --enable-jpeg) _jpeg=yes ;;
861 --disable-jpeg) _jpeg=no ;;
862 --enable-pnm) _pnm=yes ;;
863 --disable-pnm) _pnm=no ;;
864 --enable-md5sum) _md5sum=yes ;;
865 --disable-md5sum) _md5sum=no ;;
866 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
867 --disable-yuv4mpeg) _yuv4mpeg=no ;;
868 --enable-gif) _gif=yes ;;
869 --disable-gif) _gif=no ;;
870 --enable-gl) _gl=yes ;;
871 --disable-gl) _gl=no ;;
872 --enable-ggi) _ggi=yes ;;
873 --disable-ggi) _ggi=no ;;
874 --enable-ggiwmh) _ggiwmh=yes ;;
875 --disable-ggiwmh) _ggiwmh=no ;;
876 --enable-aa) _aa=yes ;;
877 --disable-aa) _aa=no ;;
878 --enable-caca) _caca=yes ;;
879 --disable-caca) _caca=no ;;
880 --enable-svga) _svga=yes ;;
881 --disable-svga) _svga=no ;;
882 --enable-vesa) _vesa=yes ;;
883 --disable-vesa) _vesa=no ;;
884 --enable-fbdev) _fbdev=yes ;;
885 --disable-fbdev) _fbdev=no ;;
886 --enable-dvb) _dvb=yes ;;
887 --disable-dvb) _dvb=no ;;
888 --enable-dvbhead) _dvbhead=yes ;;
889 --disable-dvbhead) _dvbhead=no ;;
890 --enable-dxr2) _dxr2=yes ;;
891 --disable-dxr2) _dxr2=no ;;
892 --enable-dxr3) _dxr3=yes ;;
893 --disable-dxr3) _dxr3=no ;;
894 --enable-ivtv) _ivtv=yes ;;
895 --disable-ivtv) _ivtv=no ;;
896 --enable-v4l2) _v4l2=yes ;;
897 --disable-v4l2) _v4l2=no ;;
898 --enable-iconv) _iconv=yes ;;
899 --disable-iconv) _iconv=no ;;
900 --enable-langinfo) _langinfo=yes ;;
901 --disable-langinfo) _langinfo=no ;;
902 --enable-rtc) _rtc=yes ;;
903 --disable-rtc) _rtc=no ;;
904 --enable-libdv) _libdv=yes ;;
905 --disable-libdv) _libdv=no ;;
906 --enable-ossaudio) _ossaudio=yes ;;
907 --disable-ossaudio) _ossaudio=no ;;
908 --enable-arts) _arts=yes ;;
909 --disable-arts) _arts=no ;;
910 --enable-esd) _esd=yes ;;
911 --disable-esd) _esd=no ;;
912 --enable-pulse) _pulse=yes ;;
913 --disable-pulse) _pulse=no ;;
914 --enable-jack) _jack=yes ;;
915 --disable-jack) _jack=no ;;
916 --enable-openal) _openal=yes ;;
917 --disable-openal) _openal=no ;;
918 --enable-mad) _mad=yes ;;
919 --disable-mad) _mad=no ;;
920 --enable-mp3lame) _mp3lame=yes ;;
921 --disable-mp3lame) _mp3lame=no ;;
922 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
923 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
924 --enable-toolame) _toolame=yes ;;
925 --disable-toolame) _toolame=no ;;
926 --enable-twolame) _twolame=yes ;;
927 --disable-twolame) _twolame=no ;;
928 --enable-libcdio) _libcdio=yes ;;
929 --disable-libcdio) _libcdio=no ;;
930 --enable-liblzo) _liblzo=yes ;;
931 --disable-liblzo) _liblzo=no ;;
932 --enable-libvorbis) _libvorbis=yes ;;
933 --disable-libvorbis) _libvorbis=no ;;
934 --enable-speex) _speex=yes ;;
935 --disable-speex) _speex=no ;;
936 --enable-tremor) _tremor=yes ;;
937 --disable-tremor) _tremor=no ;;
938 --enable-tremor-internal) _tremor_internal=yes ;;
939 --disable-tremor-internal) _tremor_internal=no ;;
940 --enable-tremor-low) _tremor_low=yes ;;
941 --disable-tremor-low) _tremor_low=no ;;
942 --enable-theora) _theora=yes ;;
943 --disable-theora) _theora=no ;;
944 --enable-mp3lib) _mp3lib=yes ;;
945 --disable-mp3lib) _mp3lib=no ;;
946 --enable-liba52-internal) _liba52_internal=yes ;;
947 --disable-liba52-internal) _liba52_internal=no ;;
948 --enable-liba52) _liba52=yes ;;
949 --disable-liba52) _liba52=no ;;
950 --enable-libdca) _libdca=yes ;;
951 --disable-libdca) _libdca=no ;;
952 --enable-libmpeg2) _libmpeg2=yes ;;
953 --disable-libmpeg2) _libmpeg2=no ;;
954 --enable-musepack) _musepack=yes ;;
955 --disable-musepack) _musepack=no ;;
956 --enable-faad) _faad=yes ;;
957 --disable-faad) _faad=no ;;
958 --enable-faad-internal) _faad_internal=yes ;;
959 --disable-faad-internal) _faad_internal=no ;;
960 --enable-faad-fixed) _faad_fixed=yes ;;
961 --disable-faad-fixed) _faad_fixed=no ;;
962 --enable-faac) _faac=yes ;;
963 --disable-faac) _faac=no ;;
964 --enable-faac-lavc) _faac_lavc=yes ;;
965 --disable-faac-lavc) _faac_lavc=no ;;
966 --enable-ladspa) _ladspa=yes ;;
967 --disable-ladspa) _ladspa=no ;;
968 --enable-xmms) _xmms=yes ;;
969 --disable-xmms) _xmms=no ;;
970 --enable-dvdread) _dvdread=yes ;;
971 --disable-dvdread) _dvdread=no ;;
972 --enable-dvdread-internal) _dvdread_internal=yes ;;
973 --disable-dvdread-internal) _dvdread_internal=no ;;
974 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
975 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
976 --enable-dvdnav) _dvdnav=yes ;;
977 --disable-dvdnav) _dvdnav=no ;;
978 --enable-xanim) _xanim=yes ;;
979 --disable-xanim) _xanim=no ;;
980 --enable-real) _real=yes ;;
981 --disable-real) _real=no ;;
982 --enable-live) _live=yes ;;
983 --disable-live) _live=no ;;
984 --enable-nemesi) _nemesi=yes ;;
985 --disable-nemesi) _nemesi=no ;;
986 --enable-xinerama) _xinerama=yes ;;
987 --disable-xinerama) _xinerama=no ;;
988 --enable-mga) _mga=yes ;;
989 --disable-mga) _mga=no ;;
990 --enable-xmga) _xmga=yes ;;
991 --disable-xmga) _xmga=no ;;
992 --enable-vm) _vm=yes ;;
993 --disable-vm) _vm=no ;;
994 --enable-xf86keysym) _xf86keysym=yes ;;
995 --disable-xf86keysym) _xf86keysym=no ;;
996 --enable-mlib) _mlib=yes ;;
997 --disable-mlib) _mlib=no ;;
998 --enable-sunaudio) _sunaudio=yes ;;
999 --disable-sunaudio) _sunaudio=no ;;
1000 --enable-sgiaudio) _sgiaudio=yes ;;
1001 --disable-sgiaudio) _sgiaudio=no ;;
1002 --enable-alsa) _alsa=yes ;;
1003 --disable-alsa) _alsa=no ;;
1004 --enable-tv) _tv=yes ;;
1005 --disable-tv) _tv=no ;;
1006 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1007 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1008 --enable-tv-v4l1) _tv_v4l1=yes ;;
1009 --disable-tv-v4l1) _tv_v4l1=no ;;
1010 --enable-tv-v4l2) _tv_v4l2=yes ;;
1011 --disable-tv-v4l2) _tv_v4l2=no ;;
1012 --enable-tv-dshow) _tv_dshow=yes ;;
1013 --disable-tv-dshow) _tv_dshow=no ;;
1014 --enable-tv-teletext) _tv_teletext=yes ;;
1015 --disable-tv-teletext) _tv_teletext=no ;;
1016 --enable-radio) _radio=yes ;;
1017 --enable-radio-capture) _radio_capture=yes ;;
1018 --disable-radio-capture) _radio_capture=no ;;
1019 --disable-radio) _radio=no ;;
1020 --enable-radio-v4l) _radio_v4l=yes ;;
1021 --disable-radio-v4l) _radio_v4l=no ;;
1022 --enable-radio-v4l2) _radio_v4l2=yes ;;
1023 --disable-radio-v4l2) _radio_v4l2=no ;;
1024 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1025 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1026 --enable-pvr) _pvr=yes ;;
1027 --disable-pvr) _pvr=no ;;
1028 --enable-fastmemcpy) _fastmemcpy=yes ;;
1029 --disable-fastmemcpy) _fastmemcpy=no ;;
1030 --enable-network) _network=yes ;;
1031 --disable-network) _network=no ;;
1032 --enable-winsock2_h) _winsock2_h=yes ;;
1033 --disable-winsock2_h) _winsock2_h=no ;;
1034 --enable-smb) _smb=yes ;;
1035 --disable-smb) _smb=no ;;
1036 --enable-vidix) _vidix=yes ;;
1037 --disable-vidix) _vidix=no ;;
1038 --with-vidix-drivers=*)
1039 _vidix_drivers=`echo $ac_option | cut -d '=' -f 2`
1041 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1042 --enable-dhahelper) _dhahelper=yes ;;
1043 --disable-dhahelper) _dhahelper=no ;;
1044 --enable-svgalib_helper) _svgalib_helper=yes ;;
1045 --disable-svgalib_helper) _svgalib_helper=no ;;
1046 --enable-joystick) _joystick=yes ;;
1047 --disable-joystick) _joystick=no ;;
1048 --enable-xvid) _xvid=yes ;;
1049 --disable-xvid) _xvid=no ;;
1050 --enable-xvid-lavc) _xvid_lavc=yes ;;
1051 --disable-xvid-lavc) _xvid_lavc=no ;;
1052 --enable-x264) _x264=yes ;;
1053 --disable-x264) _x264=no ;;
1054 --enable-x264-lavc) _x264_lavc=yes ;;
1055 --disable-x264-lavc) _x264_lavc=no ;;
1056 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1057 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1058 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1059 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1060 --enable-libnut) _libnut=yes ;;
1061 --disable-libnut) _libnut=no ;;
1062 --enable-libavutil_a) _libavutil_a=yes ;;
1063 --disable-libavutil_a) _libavutil_a=no ;;
1064 --enable-libavutil_so) _libavutil_so=yes ;;
1065 --disable-libavutil_so) _libavutil_so=no ;;
1066 --enable-libavcodec_a) _libavcodec_a=yes ;;
1067 --disable-libavcodec_a) _libavcodec_a=no ;;
1068 --enable-libavcodec_so) _libavcodec_so=yes ;;
1069 --disable-libavcodec_so) _libavcodec_so=no ;;
1070 --enable-libamr_nb) _libamr_nb=yes ;;
1071 --disable-libamr_nb) _libamr_nb=no ;;
1072 --enable-libamr_wb) _libamr_wb=yes ;;
1073 --disable-libamr_wb) _libamr_wb=no ;;
1074 --enable-decoder=*) _libavdecoders="$_libavdecoders `echo $ac_option | cut -d '=' -f 2`" ;;
1075 --disable-decoder=*) _libavdecoders=`echo $_libavdecoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1076 --enable-encoder=*) _libavencoders="$_libavencoders `echo $ac_option | cut -d '=' -f 2`" ;;
1077 --disable-encoder=*) _libavencoders=`echo $_libavencoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1078 --enable-parser=*) _libavparsers="$_libavparsers `echo $ac_option | cut -d '=' -f 2`" ;;
1079 --disable-parser=*) _libavparsers=`echo $_libavparsers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1080 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1081 --disable-demuxer=*) _libavdemuxers=`echo $_libavdemuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1082 --enable-muxer=*) _libavmuxers="$_libavmuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1083 --disable-muxer=*) _libavmuxers=`echo $_libavmuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1084 --enable-libavformat_a) _libavformat_a=yes ;;
1085 --disable-libavformat_a) _libavformat_a=no ;;
1086 --enable-libavformat_so) _libavformat_so=yes ;;
1087 --disable-libavformat_so) _libavformat_so=no ;;
1088 --enable-libpostproc_a) _libpostproc_a=yes ;;
1089 --disable-libpostproc_a) _libpostproc_a=no ;;
1090 --enable-libpostproc_so) _libpostproc_so=yes ;;
1091 --disable-libpostproc_so) _libpostproc_so=no ;;
1092 --enable-libswscale_a) _libswscale_a=yes ;;
1093 --disable-libswscale_a) _libswscale_a=no ;;
1094 --enable-libswscale_so) _libswscale_so=yes ;;
1095 --disable-libswscale_so) _libswscale_so=no ;;
1096 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1097 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1099 --enable-lirc) _lirc=yes ;;
1100 --disable-lirc) _lirc=no ;;
1101 --enable-lircc) _lircc=yes ;;
1102 --disable-lircc) _lircc=no ;;
1103 --enable-apple-remote) _apple_remote=yes ;;
1104 --disable-apple-remote) _apple_remote=no ;;
1105 --enable-apple-ir) _apple_ir=yes ;;
1106 --disable-apple-ir) _apple_ir=no ;;
1107 --enable-gui) _gui=yes ;;
1108 --disable-gui) _gui=no ;;
1109 --enable-gtk1) _gtk1=yes ;;
1110 --disable-gtk1) _gtk1=no ;;
1111 --enable-termcap) _termcap=yes ;;
1112 --disable-termcap) _termcap=no ;;
1113 --enable-termios) _termios=yes ;;
1114 --disable-termios) _termios=no ;;
1115 --enable-3dfx) _3dfx=yes ;;
1116 --disable-3dfx) _3dfx=no ;;
1117 --enable-s3fb) _s3fb=yes ;;
1118 --disable-s3fb) _s3fb=no ;;
1119 --enable-wii) _wii=yes ;;
1120 --disable-wii) _wii=no ;;
1121 --enable-tdfxfb) _tdfxfb=yes ;;
1122 --disable-tdfxfb) _tdfxfb=no ;;
1123 --disable-tdfxvid) _tdfxvid=no ;;
1124 --enable-tdfxvid) _tdfxvid=yes ;;
1125 --disable-xvr100) _xvr100=no ;;
1126 --enable-xvr100) _xvr100=yes ;;
1127 --disable-tga) _tga=no ;;
1128 --enable-tga) _tga=yes ;;
1129 --enable-directfb) _directfb=yes ;;
1130 --disable-directfb) _directfb=no ;;
1131 --enable-zr) _zr=yes ;;
1132 --disable-zr) _zr=no ;;
1133 --enable-bl) _bl=yes ;;
1134 --disable-bl) _bl=no ;;
1135 --enable-mtrr) _mtrr=yes ;;
1136 --disable-mtrr) _mtrr=no ;;
1137 --enable-largefiles) _largefiles=yes ;;
1138 --disable-largefiles) _largefiles=no ;;
1139 --enable-shm) _shm=yes ;;
1140 --disable-shm) _shm=no ;;
1141 --enable-select) _select=yes ;;
1142 --disable-select) _select=no ;;
1143 --enable-linux-devfs) _linux_devfs=yes ;;
1144 --disable-linux-devfs) _linux_devfs=no ;;
1145 --enable-cdparanoia) _cdparanoia=yes ;;
1146 --disable-cdparanoia) _cdparanoia=no ;;
1147 --enable-cddb) _cddb=yes ;;
1148 --disable-cddb) _cddb=no ;;
1149 --enable-big-endian) _big_endian=yes ;;
1150 --disable-big-endian) _big_endian=no ;;
1151 --enable-bitmap-font) _bitmap_font=yes ;;
1152 --disable-bitmap-font) _bitmap_font=no ;;
1153 --enable-freetype) _freetype=yes ;;
1154 --disable-freetype) _freetype=no ;;
1155 --enable-fontconfig) _fontconfig=yes ;;
1156 --disable-fontconfig) _fontconfig=no ;;
1157 --enable-unrarexec) _unrar_exec=yes ;;
1158 --disable-unrarexec) _unrar_exec=no ;;
1159 --enable-ftp) _ftp=yes ;;
1160 --disable-ftp) _ftp=no ;;
1161 --enable-vstream) _vstream=yes ;;
1162 --disable-vstream) _vstream=no ;;
1163 --enable-pthreads) _pthreads=yes ;;
1164 --disable-pthreads) _pthreads=no ;;
1165 --enable-w32threads) _w32threads=yes ;;
1166 --disable-w32threads) _w32threads=no ;;
1167 --enable-ass) _ass=yes ;;
1168 --disable-ass) _ass=no ;;
1169 --enable-rpath) _rpath=yes ;;
1170 --disable-rpath) _rpath=no ;;
1172 --enable-fribidi) _fribidi=yes ;;
1173 --disable-fribidi) _fribidi=no ;;
1175 --enable-enca) _enca=yes ;;
1176 --disable-enca) _enca=no ;;
1178 --enable-inet6) _inet6=yes ;;
1179 --disable-inet6) _inet6=no ;;
1181 --enable-gethostbyname2) _gethostbyname2=yes ;;
1182 --disable-gethostbyname2) _gethostbyname2=no ;;
1184 --enable-dga1) _dga1=yes ;;
1185 --disable-dga1) _dga1=no ;;
1186 --enable-dga2) _dga2=yes ;;
1187 --disable-dga2) _dga2=no ;;
1189 --enable-menu) _menu=yes ;;
1190 --disable-menu) _menu=no ;;
1192 --enable-qtx) _qtx=yes ;;
1193 --disable-qtx) _qtx=no ;;
1195 --enable-macosx) _macosx=yes ;;
1196 --disable-macosx) _macosx=no ;;
1197 --enable-macosx-finder) _macosx_finder=yes ;;
1198 --disable-macosx-finder) _macosx_finder=no ;;
1199 --enable-macosx-bundle) _macosx_bundle=yes;;
1200 --disable-macosx-bundle) _macosx_bundle=no;;
1202 --enable-maemo) _maemo=yes ;;
1203 --disable-maemo) _maemo=no ;;
1205 --enable-sortsub) _sortsub=yes ;;
1206 --disable-sortsub) _sortsub=no ;;
1208 --enable-crash-debug) _crash_debug=yes ;;
1209 --disable-crash-debug) _crash_debug=no ;;
1210 --enable-sighandler) _sighandler=yes ;;
1211 --disable-sighandler) _sighandler=no ;;
1212 --enable-win32dll) _win32dll=yes ;;
1213 --disable-win32dll) _win32dll=no ;;
1215 --enable-sse) _sse=yes ;;
1216 --disable-sse) _sse=no ;;
1217 --enable-sse2) _sse2=yes ;;
1218 --disable-sse2) _sse2=no ;;
1219 --enable-ssse3) _ssse3=yes ;;
1220 --disable-ssse3) _ssse3=no ;;
1221 --enable-mmxext) _mmxext=yes ;;
1222 --disable-mmxext) _mmxext=no ;;
1223 --enable-3dnow) _3dnow=yes ;;
1224 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1225 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1226 --disable-3dnowext) _3dnowext=no ;;
1227 --enable-cmov) _cmov=yes ;;
1228 --disable-cmov) _cmov=no ;;
1229 --enable-fast-cmov) _fast_cmov=yes ;;
1230 --disable-fast-cmov) _fast_cmov=no ;;
1231 --enable-altivec) _altivec=yes ;;
1232 --disable-altivec) _altivec=no ;;
1233 --enable-armv5te) _armv5te=yes ;;
1234 --disable-armv5te) _armv5te=no ;;
1235 --enable-armv6) _armv6=yes ;;
1236 --disable-armv6) _armv6=no ;;
1237 --enable-armvfp) _armvfp=yes ;;
1238 --disable-armvfp) _armvfp=no ;;
1239 --enable-iwmmxt) _iwmmxt=yes ;;
1240 --disable-iwmmxt) _iwmmxt=no ;;
1241 --enable-mmx) _mmx=yes ;;
1242 --disable-mmx) # 3Dnow! and MMX2 require MMX
1243 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1246 echo "Unknown parameter: $ac_option"
1247 exit 1
1250 esac
1251 done
1253 # Atmos: moved this here, to be correct, if --prefix is specified
1254 test -z "$_bindir" && _bindir="$_prefix/bin"
1255 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1256 test -z "$_mandir" && _mandir="$_prefix/share/man"
1257 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1258 test -z "$_libdir" && _libdir="$_prefix/lib"
1260 # Determine our OS name and CPU architecture
1261 if test -z "$_target" ; then
1262 # OS name
1263 system_name=`uname -s 2>&1`
1264 case "$system_name" in
1265 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1267 IRIX*)
1268 system_name=IRIX
1270 GNU/kFreeBSD)
1271 system_name=FreeBSD
1273 HP-UX*)
1274 system_name=HP-UX
1276 [cC][yY][gG][wW][iI][nN]*)
1277 system_name=CYGWIN
1279 MINGW32*)
1280 system_name=MINGW32
1282 OS/2*)
1283 system_name=OS/2
1286 system_name="$system_name-UNKNOWN"
1288 esac
1291 # host's CPU/instruction set
1292 host_arch=`uname -p 2>&1`
1293 case "$host_arch" in
1294 i386|sparc|ppc|alpha|arm|mips|vax)
1296 powerpc) # Darwin returns 'powerpc'
1297 host_arch=ppc
1299 *) # uname -p on Linux returns 'unknown' for the processor type,
1300 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1302 # Maybe uname -m (machine hardware name) returns something we
1303 # recognize.
1305 # x86/x86pc is used by QNX
1306 case "`uname -m 2>&1`" in
1307 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 ;;
1308 ia64) host_arch=ia64 ;;
1309 x86_64|amd64)
1310 if [ -n "`$_cc -dumpmachine | sed -n '/^x86_64-/p;/^amd64-/p'`" -a \
1311 -z "`echo $CFLAGS | grep -- -m32`" ]; then
1312 host_arch=x86_64
1313 else
1314 host_arch=i386
1317 macppc|ppc|ppc64) host_arch=ppc ;;
1318 alpha) host_arch=alpha ;;
1319 sparc) host_arch=sparc ;;
1320 sparc64) host_arch=sparc64 ;;
1321 parisc*|hppa*|9000*) host_arch=hppa ;;
1322 arm*|zaurus|cats) host_arch=arm ;;
1323 sh3|sh4|sh4a) host_arch=sh ;;
1324 s390) host_arch=s390 ;;
1325 s390x) host_arch=s390x ;;
1326 mips*) host_arch=mips ;;
1327 vax) host_arch=vax ;;
1328 xtensa*) host_arch=xtensa ;;
1329 *) host_arch=UNKNOWN ;;
1330 esac
1332 esac
1333 else # if test -z "$_target"
1334 system_name=`echo $_target | cut -d '-' -f 2`
1335 case "`echo $system_name | tr A-Z a-z`" in
1336 linux) system_name=Linux ;;
1337 freebsd) system_name=FreeBSD ;;
1338 gnu/kfreebsd) system_name=FreeBSD ;;
1339 netbsd) system_name=NetBSD ;;
1340 bsd/os) system_name=BSD/OS ;;
1341 openbsd) system_name=OpenBSD ;;
1342 dragonfly) system_name=DragonFly ;;
1343 sunos) system_name=SunOS ;;
1344 qnx) system_name=QNX ;;
1345 morphos) system_name=MorphOS ;;
1346 amigaos) system_name=AmigaOS ;;
1347 mingw32msvc) system_name=MINGW32 ;;
1348 esac
1349 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1350 host_arch=`echo $_target | cut -d '-' -f 1`
1351 if test `echo $host_arch` != "x86_64" ; then
1352 host_arch=`echo $host_arch | tr '_' '-'`
1356 echo "Detected operating system: $system_name"
1357 echo "Detected host architecture: $host_arch"
1359 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1360 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1364 _inc_extra="-I. $_inc_extra"
1365 _timer=timer-linux.c
1366 _getch=getch2.c
1367 if freebsd ; then
1368 _ld_extra="$_ld_extra -L/usr/local/lib"
1369 _inc_extra="$_inc_extra -I/usr/local/include"
1372 if netbsd || dragonfly ; then
1373 _ld_extra="$_ld_extra -L/usr/pkg/lib"
1374 _inc_extra="$_inc_extra -I/usr/pkg/include"
1377 if darwin; then
1378 _ld_extra="$_ld_extra -L/usr/local/lib"
1379 _inc_extra="$_inc_extra -I/usr/local/include"
1380 _timer=timer-darwin.c
1383 if aix ; then
1384 _ld_extra="$_ld_extra -lC"
1387 if irix ; then
1388 _ranlib='ar -r'
1389 elif linux ; then
1390 _ranlib='true'
1393 if win32 ; then
1394 _exesuf=".exe"
1395 # -lwinmm is always needed for osdep/timer-win2.c
1396 _ld_extra="$_ld_extra -lwinmm"
1397 _pe_executable=yes
1398 _timer=timer-win2.c
1401 if mingw32 ; then
1402 _getch=getch2-win.c
1403 _need_shmem=no
1406 if amigaos ; then
1407 _select=no
1408 _sighandler=no
1409 _stream_cache=no
1410 _def_stream_cache="#undef CONFIG_STREAM_CACHE"
1413 if qnx ; then
1414 _ld_extra="$_ld_extra -lph"
1417 if os2 ; then
1418 _exesuf=".exe"
1419 _getch=getch2-os2.c
1420 _need_shmem=no
1423 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1424 test "$I" && break
1425 done
1428 TMPLOG="configure.log"
1429 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1430 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1431 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1432 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1433 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1435 rm -f "$TMPLOG"
1436 echo configuration: $_configuration > "$TMPLOG"
1437 echo >> "$TMPLOG"
1440 # Check how to call 'head' and 'tail'. Newer versions spit out warnings
1441 # if used as 'head -1' instead of 'head -n 1', but older versions don't
1442 # know about '-n'.
1443 if test "`(echo line1 ; echo line2) | head -1 2>/dev/null`" = "line1" ; then
1444 _head() { head -$1 2>/dev/null ; }
1445 else
1446 _head() { head -n $1 2>/dev/null ; }
1448 if test "`(echo line1 ; echo line2) | tail -1 2>/dev/null`" = "line2" ; then
1449 _tail() { tail -$1 2>/dev/null ; }
1450 else
1451 _tail() { tail -n $1 2>/dev/null ; }
1454 # Checking CC version...
1455 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1456 if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then
1457 echocheck "$_cc version"
1458 cc_vendor=intel
1459 cc_name=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 1`
1460 cc_version=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 2 | cut -d ' ' -f 3`
1461 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1462 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1463 # TODO verify older icc/ecc compatibility
1464 case $cc_version in
1466 cc_version="v. ?.??, bad"
1467 cc_fail=yes
1469 10.1)
1470 cc_version="$cc_version, ok"
1473 cc_version="$cc_version, bad"
1474 cc_fail=yes
1476 esac
1477 echores "$cc_version"
1478 else
1479 for _cc in "$_cc" cc gcc ; do
1480 cc_name_tmp=`$_cc -v 2>&1 | _tail 1 | cut -d ' ' -f 1`
1481 if test "$cc_name_tmp" = "gcc"; then
1482 cc_name=$cc_name_tmp
1483 echocheck "$_cc version"
1484 cc_vendor=gnu
1485 cc_version=`$_cc -dumpversion 2>&1`
1486 case $cc_version in
1487 2.96*)
1488 cc_fail=yes
1491 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1492 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1493 _cc_mini=`echo $cc_version | cut -d '.' -f 3`
1495 esac
1496 echores "$cc_version"
1497 break
1499 done
1500 fi # icc
1501 test "$cc_fail" = yes && die "unsupported compiler version"
1503 echocheck "host cc"
1504 test "$_host_cc" || _host_cc=$_cc
1505 echores $_host_cc
1507 echocheck "cross compilation"
1508 if test $_cross_compile = auto ; then
1509 cat > $TMPC << EOF
1510 int main(void) { return 0; }
1512 _cross_compile=yes
1513 cc_check && "$TMPEXE" && _cross_compile=no
1515 echores $_cross_compile
1517 if test $_cross_compile = yes; then
1518 tmp_run() {
1519 return 0
1523 # ---
1525 # now that we know what compiler should be used for compilation, try to find
1526 # out which assembler is used by the $_cc compiler
1527 if test "$_as" = auto ; then
1528 _as=`$_cc -print-prog-name=as`
1529 test -z "$_as" && _as=as
1532 # XXX: this should be ok..
1533 _cpuinfo="echo"
1535 if test "$_runtime_cpudetection" = no ; then
1537 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1538 # FIXME: Remove the cygwin check once AMD CPUs are supported
1539 if test -r /proc/cpuinfo && ! cygwin; then
1540 # Linux with /proc mounted, extract CPU information from it
1541 _cpuinfo="cat /proc/cpuinfo"
1542 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1543 # FreeBSD with Linux emulation /proc mounted,
1544 # extract CPU information from it
1545 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1546 elif darwin && ! x86_32 ; then
1547 # use hostinfo on Darwin
1548 _cpuinfo="hostinfo"
1549 elif aix; then
1550 # use 'lsattr' on AIX
1551 _cpuinfo="lsattr -E -l proc0 -a type"
1552 elif x86; then
1553 # all other OSes try to extract CPU information from a small helper
1554 # program cpuinfo instead
1555 $_cc -o cpuinfo$_exesuf cpuinfo.c
1556 _cpuinfo="./cpuinfo$_exesuf"
1559 if x86 ; then
1560 # gather more CPU information
1561 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | _head 1`
1562 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1563 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1564 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1565 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1567 exts=`$_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | _head 1`
1569 pparam=`echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1570 -e s/xmm/sse/ -e s/kni/sse/`
1572 for ext in $pparam ; do
1573 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1574 done
1576 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1577 test $_sse = kernel_check && _mmxext=kernel_check
1579 echocheck "CPU vendor"
1580 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1582 echocheck "CPU type"
1583 echores "$pname"
1586 fi # test "$_runtime_cpudetection" = no
1588 if x86 && test "$_runtime_cpudetection" = no ; then
1589 extcheck() {
1590 if test "$1" = kernel_check ; then
1591 echocheck "kernel support of $2"
1592 cat > $TMPC <<EOF
1593 #include <stdlib.h>
1594 #include <signal.h>
1595 void catch() { exit(1); }
1596 int main(void) {
1597 signal(SIGILL, catch);
1598 __asm__ volatile ("$3":::"memory"); return 0;
1602 if cc_check && tmp_run ; then
1603 eval _$2=yes
1604 echores "yes"
1605 _optimizing="$_optimizing $2"
1606 return 0
1607 else
1608 eval _$2=no
1609 echores "failed"
1610 echo "It seems that your kernel does not correctly support $2."
1611 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1612 return 1
1615 return 0
1618 extcheck $_mmx "mmx" "emms"
1619 extcheck $_mmxext "mmxext" "sfence"
1620 extcheck $_3dnow "3dnow" "femms"
1621 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1622 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1623 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1624 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1625 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1627 echocheck "mtrr support"
1628 if test "$_mtrr" = kernel_check ; then
1629 _mtrr="yes"
1630 _optimizing="$_optimizing mtrr"
1632 echores "$_mtrr"
1634 if test "$_gcc3_ext" != ""; then
1635 # if we had to disable sse/sse2 because the active kernel does not
1636 # support this instruction set extension, we also have to tell
1637 # gcc3 to not generate sse/sse2 instructions for normal C code
1638 cat > $TMPC << EOF
1639 int main(void) { return 0; }
1641 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1647 _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'
1648 case "$host_arch" in
1649 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1650 _arch='X86 X86_32'
1651 _target_arch_x86="ARCH_X86 = yes"
1652 _target_arch="ARCH_X86_32 = yes"
1653 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1654 iproc=486
1655 proc=i486
1658 if test "$_runtime_cpudetection" = no ; then
1659 case "$pvendor" in
1660 AuthenticAMD)
1661 case "$pfamily" in
1662 3) proc=i386 iproc=386 ;;
1663 4) proc=i486 iproc=486 ;;
1664 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1665 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1666 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1667 proc=k6-3
1668 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1669 proc=geode
1670 elif test "$pmodel" -ge 8; then
1671 proc=k6-2
1672 elif test "$pmodel" -ge 6; then
1673 proc=k6
1674 else
1675 proc=i586
1678 6) iproc=686
1679 # It's a bit difficult to determine the correct type of Family 6
1680 # AMD CPUs just from their signature. Instead, we check directly
1681 # whether it supports SSE.
1682 if test "$_sse" = yes; then
1683 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1684 proc=athlon-xp
1685 else
1686 # Again, gcc treats athlon and athlon-tbird similarly.
1687 proc=athlon
1690 15) iproc=686
1691 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1692 # caught and remedied in the optimization tests below.
1693 proc=k8
1696 *) proc=k8 iproc=686 ;;
1697 esac
1699 GenuineIntel)
1700 case "$pfamily" in
1701 3) proc=i386 iproc=386 ;;
1702 4) proc=i486 iproc=486 ;;
1703 5) iproc=586
1704 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1705 proc=pentium-mmx # 4 is desktop, 8 is mobile
1706 else
1707 proc=i586
1710 6) iproc=686
1711 if test "$pmodel" -ge 15; then
1712 proc=core2
1713 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1714 proc=pentium-m
1715 elif test "$pmodel" -ge 7; then
1716 proc=pentium3
1717 elif test "$pmodel" -ge 3; then
1718 proc=pentium2
1719 else
1720 proc=i686
1723 15) iproc=686
1724 # A nocona in 32-bit mode has no more capabilities than a prescott.
1725 if test "$pmodel" -ge 3; then
1726 proc=prescott
1727 else
1728 proc=pentium4
1730 test $_fast_cmov = "auto" && _fast_cmov=no
1732 *) proc=prescott iproc=686 ;;
1733 esac
1735 CentaurHauls)
1736 case "$pfamily" in
1737 5) iproc=586
1738 if test "$pmodel" -ge 8; then
1739 proc=winchip2
1740 elif test "$pmodel" -ge 4; then
1741 proc=winchip-c6
1742 else
1743 proc=i586
1746 6) iproc=686
1747 if test "$pmodel" -ge 9; then
1748 proc=c3-2
1749 else
1750 proc=c3
1751 iproc=586
1754 *) proc=i686 iproc=i686 ;;
1755 esac
1757 unknown)
1758 case "$pfamily" in
1759 3) proc=i386 iproc=386 ;;
1760 4) proc=i486 iproc=486 ;;
1761 *) proc=i586 iproc=586 ;;
1762 esac
1765 proc=i586 iproc=586 ;;
1766 esac
1767 fi # test "$_runtime_cpudetection" = no
1770 # check that gcc supports our CPU, if not, fall back to earlier ones
1771 # LGB: check -mcpu and -march swithing step by step with enabling
1772 # to fall back till 386.
1774 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1776 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1777 cpuopt=-mtune
1778 else
1779 cpuopt=-mcpu
1782 echocheck "GCC & CPU optimization abilities"
1783 cat > $TMPC << EOF
1784 int main(void) { return 0; }
1786 if test "$_runtime_cpudetection" = no ; then
1787 cc_check -march=native && proc=native
1788 if test "$proc" = "k8"; then
1789 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1791 if test "$proc" = "athlon-xp"; then
1792 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1794 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1795 cc_check -march=$proc $cpuopt=$proc || proc=k6
1797 if test "$proc" = "k6" || test "$proc" = "c3"; then
1798 if ! cc_check -march=$proc $cpuopt=$proc; then
1799 if cc_check -march=i586 $cpuopt=i686; then
1800 proc=i586-i686
1801 else
1802 proc=i586
1806 if test "$proc" = "prescott" ; then
1807 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1809 if test "$proc" = "core2" ; then
1810 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1812 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
1813 cc_check -march=$proc $cpuopt=$proc || proc=i686
1815 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1816 cc_check -march=$proc $cpuopt=$proc || proc=i586
1818 if test "$proc" = "i586"; then
1819 cc_check -march=$proc $cpuopt=$proc || proc=i486
1821 if test "$proc" = "i486" ; then
1822 cc_check -march=$proc $cpuopt=$proc || proc=i386
1824 if test "$proc" = "i386" ; then
1825 cc_check -march=$proc $cpuopt=$proc || proc=error
1827 if test "$proc" = "error" ; then
1828 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1829 _mcpu=""
1830 _march=""
1831 _optimizing=""
1832 elif test "$proc" = "i586-i686"; then
1833 _march="-march=i586"
1834 _mcpu="$cpuopt=i686"
1835 _optimizing="$proc"
1836 else
1837 _march="-march=$proc"
1838 _mcpu="$cpuopt=$proc"
1839 _optimizing="$proc"
1841 else # if test "$_runtime_cpudetection" = no
1842 _mcpu="$cpuopt=generic"
1843 # at least i486 required, for bswap instruction
1844 _march="-march=i486"
1845 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1846 cc_check $_mcpu || _mcpu=""
1847 cc_check $_march $_mcpu || _march=""
1850 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1851 ## autodetected mcpu/march parameters
1852 if test "$_target" ; then
1853 # TODO: it may be a good idea to check GCC and fall back in all cases
1854 if test "$host_arch" = "i586-i686"; then
1855 _march="-march=i586"
1856 _mcpu="$cpuopt=i686"
1857 else
1858 _march="-march=$host_arch"
1859 _mcpu="$cpuopt=$host_arch"
1862 proc="$host_arch"
1864 case "$proc" in
1865 i386) iproc=386 ;;
1866 i486) iproc=486 ;;
1867 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1868 i686|athlon*|pentium*) iproc=686 ;;
1869 *) iproc=586 ;;
1870 esac
1873 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1874 _fast_cmov="yes"
1875 else
1876 _fast_cmov="no"
1879 echores "$proc"
1882 ia64)
1883 _arch='IA64'
1884 _target_arch='ARCH_IA64 = yes'
1885 iproc='ia64'
1888 x86_64|amd64)
1889 _arch='X86 X86_64'
1890 _target_arch='ARCH_X86_64 = yes'
1891 _target_arch_x86="ARCH_X86 = yes"
1892 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1893 iproc='x86_64'
1895 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1896 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1897 cpuopt=-mtune
1898 else
1899 cpuopt=-mcpu
1901 if test "$_runtime_cpudetection" = no ; then
1902 case "$pvendor" in
1903 AuthenticAMD)
1904 proc=k8;;
1905 GenuineIntel)
1906 case "$pfamily" in
1907 6) proc=core2;;
1909 # 64-bit prescotts exist, but as far as GCC is concerned they
1910 # have the same capabilities as a nocona.
1911 proc=nocona
1912 test $_fast_cmov = "auto" && _fast_cmov=no
1914 esac
1917 proc=error;;
1918 esac
1919 fi # test "$_runtime_cpudetection" = no
1921 echocheck "GCC & CPU optimization abilities"
1922 cat > $TMPC << EOF
1923 int main(void) { return 0; }
1925 # This is a stripped-down version of the i386 fallback.
1926 if test "$_runtime_cpudetection" = no ; then
1927 cc_check -march=native && proc=native
1928 # --- AMD processors ---
1929 if test "$proc" = "k8"; then
1930 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1932 # This will fail if gcc version < 3.3, which is ok because earlier
1933 # versions don't really support 64-bit on amd64.
1934 # Is this a valid assumption? -Corey
1935 if test "$proc" = "athlon-xp"; then
1936 cc_check -march=$proc $cpuopt=$proc || proc=error
1938 # --- Intel processors ---
1939 if test "$proc" = "core2"; then
1940 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1942 if test "$proc" = "nocona"; then
1943 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1945 if test "$proc" = "pentium4"; then
1946 cc_check -march=$proc $cpuopt=$proc || proc=error
1949 _march="-march=$proc"
1950 _mcpu="$cpuopt=$proc"
1951 if test "$proc" = "error" ; then
1952 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1953 _mcpu=""
1954 _march=""
1956 else # if test "$_runtime_cpudetection" = no
1957 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1958 _march="-march=x86-64"
1959 _mcpu="$cpuopt=generic"
1960 cc_check $_mcpu || _mcpu="x86-64"
1961 cc_check $_mcpu || _mcpu=""
1962 cc_check $_march $_mcpu || _march=""
1965 _optimizing=""
1967 echores "$proc"
1970 sparc|sparc64)
1971 _arch='SPARC'
1972 _target_arch='ARCH_SPARC = yes'
1973 iproc='sparc'
1974 if test "$host_arch" = "sparc64" ; then
1975 _vis='yes'
1976 proc='ultrasparc'
1977 elif sunos ; then
1978 echocheck "CPU type"
1979 karch=`uname -m`
1980 case "`echo $karch`" in
1981 sun4) proc=v7 ;;
1982 sun4c) proc=v7 ;;
1983 sun4d) proc=v8 ;;
1984 sun4m) proc=v8 ;;
1985 sun4u) proc=ultrasparc _vis='yes' ;;
1986 sun4v) proc=v9 ;;
1987 *) proc=v8 ;;
1988 esac
1989 echores "$proc"
1990 else
1991 proc=v8
1993 _mcpu="-mcpu=$proc"
1994 _optimizing="$proc"
1997 arm|armv4l|armv5tel)
1998 _arch='ARM ARMV4L'
1999 _target_arch='ARCH_ARMV4L = yes'
2000 iproc='arm'
2004 _arch='SH'
2005 _target_arch='ARCH_SH = yes'
2006 iproc='sh'
2009 ppc|ppc64|powerpc|powerpc64)
2010 _arch='POWERPC PPC'
2011 _def_dcbzl='#undef HAVE_DCBZL'
2012 _target_arch='ARCH_POWERPC = yes'
2013 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2014 iproc='ppc'
2016 echocheck "CPU type"
2017 case $system_name in
2018 Linux)
2019 proc=`$_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | _head 1`
2020 if test -n "`$_cpuinfo | grep altivec`"; then
2021 test $_altivec = auto && _altivec=yes
2024 Darwin)
2025 proc=`$_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//'`
2026 if [ `sysctl -n hw.vectorunit` -eq 1 -o \
2027 "`sysctl -n hw.optional.altivec 2> /dev/null`" = "1" ]; then
2028 test $_altivec = auto && _altivec=yes
2031 NetBSD)
2032 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2033 case $cc_version in
2034 2*|3.0*|3.1*|3.2*|3.3*)
2037 if [ `sysctl -n machdep.altivec` -eq 1 ]; then
2038 test $_altivec = auto && _altivec=yes
2041 esac
2043 AIX)
2044 proc=`$_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//'`
2046 esac
2047 if test "$_altivec" = yes; then
2048 echores "$proc altivec"
2049 else
2050 _altivec=no
2051 echores "$proc"
2054 echocheck "GCC & CPU optimization abilities"
2056 if test -n "$proc"; then
2057 case "$proc" in
2058 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2059 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2060 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2061 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2062 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2063 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2064 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2065 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2066 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2067 *) ;;
2068 esac
2069 # gcc 3.1(.1) and up supports 7400 and 7450
2070 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2071 case "$proc" in
2072 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2073 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2074 *) ;;
2075 esac
2077 # gcc 3.2 and up supports 970
2078 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2079 case "$proc" in
2080 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2081 _def_dcbzl='#define HAVE_DCBZL 1' ;;
2082 *) ;;
2083 esac
2085 # gcc 3.3 and up supports POWER4
2086 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2087 case "$proc" in
2088 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2089 *) ;;
2090 esac
2092 # gcc 3.4 and up supports 440*
2093 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2094 case "$proc" in
2095 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2096 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2097 *) ;;
2098 esac
2100 # gcc 4.0 and up supports POWER5
2101 if test "$_cc_major" -ge "4"; then
2102 case "$proc" in
2103 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2104 *) ;;
2105 esac
2109 if test -n "$_mcpu"; then
2110 _optimizing=`echo $_mcpu | cut -c 8-`
2111 echores "$_optimizing"
2112 else
2113 echores "none"
2118 alpha)
2119 _arch='ALPHA'
2120 _target_arch='ARCH_ALPHA = yes'
2121 iproc='alpha'
2123 echocheck "CPU type"
2124 cat > $TMPC << EOF
2125 int main(void) {
2126 unsigned long ver, mask;
2127 __asm__ ("implver %0" : "=r" (ver));
2128 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2129 printf("%ld-%x\n", ver, ~mask);
2130 return 0;
2133 $_cc -o "$TMPEXE" "$TMPC"
2134 case `"$TMPEXE"` in
2136 0-0) proc="ev4"; _mvi="0";;
2137 1-0) proc="ev5"; _mvi="0";;
2138 1-1) proc="ev56"; _mvi="0";;
2139 1-101) proc="pca56"; _mvi="1";;
2140 2-303) proc="ev6"; _mvi="1";;
2141 2-307) proc="ev67"; _mvi="1";;
2142 2-1307) proc="ev68"; _mvi="1";;
2143 esac
2144 echores "$proc"
2146 echocheck "GCC & CPU optimization abilities"
2147 if test "$proc" = "ev68" ; then
2148 cc_check -mcpu=$proc || proc=ev67
2150 if test "$proc" = "ev67" ; then
2151 cc_check -mcpu=$proc || proc=ev6
2153 _mcpu="-mcpu=$proc"
2154 echores "$proc"
2156 _optimizing="$proc"
2159 mips)
2160 _arch='SGI_MIPS'
2161 _target_arch='ARCH_SGI_MIPS = yes'
2162 iproc='sgi-mips'
2164 if irix ; then
2165 echocheck "CPU type"
2166 proc=`hinv -c processor | grep CPU | cut -d " " -f3`
2167 case "`echo $proc`" in
2168 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2169 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2170 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2171 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2172 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2173 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2174 esac
2175 # gcc < 3.x does not support -mtune.
2176 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2177 _mcpu=''
2179 echores "$proc"
2184 hppa)
2185 _arch='PA_RISC'
2186 _target_arch='ARCH_PA_RISC = yes'
2187 iproc='PA-RISC'
2190 s390)
2191 _arch='S390'
2192 _target_arch='ARCH_S390 = yes'
2193 iproc='390'
2196 s390x)
2197 _arch='S390X'
2198 _target_arch='ARCH_S390X = yes'
2199 iproc='390x'
2202 vax)
2203 _arch='VAX'
2204 _target_arch='ARCH_VAX = yes'
2205 iproc='vax'
2208 xtensa)
2209 _arch='XTENSA'
2210 _target_arch='ARCH_XTENSA = yes'
2211 iproc='xtensa'
2214 generic)
2215 _arch='GENERIC'
2216 _target_arch='ARCH_GENERIC = yes'
2220 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2221 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2222 die "unsupported architecture $host_arch"
2224 esac # case "$host_arch" in
2226 if test "$_runtime_cpudetection" = yes ; then
2227 if x86 ; then
2228 test "$_cmov" != no && _cmov=yes
2229 x86_32 && _cmov=no
2230 test "$_mmx" != no && _mmx=yes
2231 test "$_3dnow" != no && _3dnow=yes
2232 test "$_3dnowext" != no && _3dnowext=yes
2233 test "$_mmxext" != no && _mmxext=yes
2234 test "$_sse" != no && _sse=yes
2235 test "$_sse2" != no && _sse2=yes
2236 test "$_ssse3" != no && _ssse3=yes
2237 test "$_mtrr" != no && _mtrr=yes
2239 if ppc; then
2240 _altivec=yes
2245 echocheck "extern symbol prefix"
2246 cat > $TMPC << EOF
2247 int ff_extern;
2249 cc_check -c || die "Symbol mangling check failed."
2250 sym=$(nm -P -g $TMPEXE)
2251 extern_prefix=${sym%%ff_extern*}
2252 _def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2253 echores $extern_prefix
2256 echocheck "assembler support of -pipe option"
2257 cat > $TMPC << EOF
2258 int main(void) { return 0; }
2260 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2263 echocheck "compiler support of named assembler arguments"
2264 _named_asm_args=yes
2265 _def_named_asm_args="#define NAMED_ASM_ARGS 1"
2266 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2267 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2268 _named_asm_args=no
2269 _def_named_asm_args="#undef NAMED_ASM_ARGS"
2271 echores $_named_asm_args
2274 if darwin && test "$cc_vendor" = "gnu" ; then
2275 echocheck "GCC support of -mstackrealign"
2276 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2277 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2278 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2279 # wrong code with this flag, but this can be worked around by adding
2280 # -fno-unit-at-a-time as described in the blog post at
2281 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2282 cat > $TMPC << EOF
2283 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2284 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2286 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2287 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2288 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2289 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2290 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2293 # Checking for CFLAGS
2294 _install_strip="-s"
2295 if test "$_profile" != "" || test "$_debug" != "" ; then
2296 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2297 _install_strip=
2298 elif test -z "$CFLAGS" ; then
2299 if test "$cc_vendor" = "intel" ; then
2300 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2301 elif test "$cc_vendor" != "gnu" ; then
2302 CFLAGS="-O2 $_march $_mcpu $_pipe"
2303 else
2304 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2306 else
2307 _warn_CFLAGS=yes
2309 if test -n "$LDFLAGS" ; then
2310 _ld_extra="$_ld_extra $LDFLAGS"
2311 _warn_CFLAGS=yes
2312 elif test "$cc_vendor" = "intel" ; then
2313 _ld_extra="$_ld_extra -i-static"
2315 if test -n "$CPPFLAGS" ; then
2316 _inc_extra="$_inc_extra $CPPFLAGS"
2317 _warn_CFLAGS=yes
2322 if x86_32 ; then
2323 # Checking assembler (_as) compatibility...
2324 # Added workaround for older as that reads from stdin by default - atmos
2325 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'`
2326 echocheck "assembler ($_as $as_version)"
2328 _pref_as_version='2.9.1'
2329 echo 'nop' > $TMPS
2330 if test "$_mmx" = yes ; then
2331 echo 'emms' >> $TMPS
2333 if test "$_3dnow" = yes ; then
2334 _pref_as_version='2.10.1'
2335 echo 'femms' >> $TMPS
2337 if test "$_3dnowext" = yes ; then
2338 _pref_as_version='2.10.1'
2339 echo 'pswapd %mm0, %mm0' >> $TMPS
2341 if test "$_mmxext" = yes ; then
2342 _pref_as_version='2.10.1'
2343 echo 'movntq %mm0, (%eax)' >> $TMPS
2345 if test "$_sse" = yes ; then
2346 _pref_as_version='2.10.1'
2347 echo 'xorps %xmm0, %xmm0' >> $TMPS
2349 #if test "$_sse2" = yes ; then
2350 # _pref_as_version='2.11'
2351 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2353 if test "$_cmov" = yes ; then
2354 _pref_as_version='2.10.1'
2355 echo 'cmovb %eax, %ebx' >> $TMPS
2357 if test "$_ssse3" = yes ; then
2358 _pref_as_version='2.16.92'
2359 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2361 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2363 if test "$as_verc_fail" != yes ; then
2364 echores "ok"
2365 else
2366 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2367 echores "failed"
2368 die "obsolete binutils version"
2371 fi #if x86_32
2373 echocheck ".align is a power of two"
2374 if test "$_asmalign_pot" = auto ; then
2375 _asmalign_pot=no
2376 cat > $TMPC << EOF
2377 int main(void) { __asm__ (".align 3"); return 0; }
2379 cc_check && _asmalign_pot=yes
2381 if test "$_asmalign_pot" = "yes" ; then
2382 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2383 else
2384 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2386 echores $_asmalign_pot
2389 #FIXME: This should happen before the check for CFLAGS..
2390 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2392 # check if AltiVec is supported by the compiler, and how to enable it
2393 echocheck "GCC AltiVec flags"
2394 cat > $TMPC << EOF
2395 int main(void) { return 0; }
2397 if $(cc_check -maltivec -mabi=altivec) ; then
2398 _altivec_gcc_flags="-maltivec -mabi=altivec"
2399 # check if <altivec.h> should be included
2400 def_altivec_h='#undef HAVE_ALTIVEC_H'
2401 cat > $TMPC << EOF
2402 #include <altivec.h>
2403 int main(void) { return 0; }
2405 if $(cc_check $_altivec_gcc_flags) ; then
2406 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2407 inc_altivec_h='#include <altivec.h>'
2408 else
2409 cat > $TMPC << EOF
2410 int main(void) { return 0; }
2412 if $(cc_check -faltivec) ; then
2413 _altivec_gcc_flags="-faltivec"
2414 else
2415 _altivec=no
2416 _altivec_gcc_flags="none, AltiVec disabled"
2420 echores "$_altivec_gcc_flags"
2422 # check if the compiler supports braces for vector declarations
2423 cat > $TMPC << EOF
2424 $inc_altivec_h
2425 int main(void) { (vector int) {1}; return 0; }
2427 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2429 # Disable runtime cpudetection if we cannot generate AltiVec code or
2430 # AltiVec is disabled by the user.
2431 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2432 && _runtime_cpudetection=no
2434 # Show that we are optimizing for AltiVec (if enabled and supported).
2435 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2436 && _optimizing="$_optimizing altivec"
2438 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2439 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2442 if arm ; then
2443 echocheck "ARM pld instruction"
2444 cat > $TMPC << EOF
2445 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2447 pld=no
2448 cc_check && pld=yes
2449 echores "$pld"
2451 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2452 if test $_armv5te = "auto" ; then
2453 cat > $TMPC << EOF
2454 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2456 _armv5te=no
2457 cc_check && _armv5te=yes
2459 echores "$_armv5te"
2461 echocheck "ARMv6 (SIMD instructions)"
2462 if test $_armv6 = "auto" ; then
2463 cat > $TMPC << EOF
2464 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2466 _armv6=no
2467 cc_check && _armv6=yes
2469 echores "$_armv6"
2471 echocheck "ARM VFP"
2472 if test $_armvfp = "auto" ; then
2473 cat > $TMPC << EOF
2474 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2476 _armvfp=no
2477 cc_check && _armvfp=yes
2479 echores "$_armvfp"
2481 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2482 if test $_iwmmxt = "auto" ; then
2483 cat > $TMPC << EOF
2484 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2486 _iwmmxt=no
2487 cc_check && _iwmmxt=yes
2489 echores "$_iwmmxt"
2492 _cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMVFP IWMMXT MLIB MMI SH4 VIS MVI'
2493 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2494 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2495 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2496 test "$_3dnow" = yes && _cpuexts="3DNOW $_cpuexts"
2497 test "$_3dnowext" = yes && _cpuexts="3DNOWEX $_cpuexts"
2498 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2499 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2500 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2501 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2502 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2503 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2504 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2505 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2506 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2507 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2508 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2509 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2511 # Checking kernel version...
2512 if x86_32 && linux ; then
2513 _k_verc_problem=no
2514 kernel_version=`uname -r 2>&1`
2515 echocheck "$system_name kernel version"
2516 case "$kernel_version" in
2517 '') kernel_version="?.??"; _k_verc_fail=yes;;
2518 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2519 _k_verc_problem=yes;;
2520 esac
2521 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2522 _k_verc_fail=yes
2524 if test "$_k_verc_fail" ; then
2525 echores "$kernel_version, fail"
2526 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2527 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2528 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2529 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2530 echo "2.2.x you must upgrade it to get SSE support!"
2531 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2532 else
2533 echores "$kernel_version, ok"
2537 ######################
2538 # MAIN TESTS GO HERE #
2539 ######################
2542 echocheck "-lposix"
2543 cat > $TMPC <<EOF
2544 int main(void) { return 0; }
2546 if cc_check -lposix ; then
2547 _ld_extra="$_ld_extra -lposix"
2548 echores "yes"
2549 else
2550 echores "no"
2553 echocheck "-lm"
2554 cat > $TMPC <<EOF
2555 int main(void) { return 0; }
2557 if cc_check -lm ; then
2558 _ld_lm="-lm"
2559 echores "yes"
2560 else
2561 _ld_lm=""
2562 echores "no"
2566 echocheck "langinfo"
2567 if test "$_langinfo" = auto ; then
2568 cat > $TMPC <<EOF
2569 #include <langinfo.h>
2570 int main(void) { nl_langinfo(CODESET); return 0; }
2572 _langinfo=no
2573 cc_check && _langinfo=yes
2575 if test "$_langinfo" = yes ; then
2576 _def_langinfo='#define HAVE_LANGINFO 1'
2577 else
2578 _def_langinfo='#undef HAVE_LANGINFO'
2580 echores "$_langinfo"
2583 echocheck "language"
2584 test -z "$_language" && _language=$LINGUAS
2585 _language=`echo $_language | tr , " "`
2586 if $(echo $_language | grep -q all) ; then
2587 doc_lang=en ; doc_langs=$doc_lang_all
2588 man_lang=en ; man_langs=$man_lang_all
2589 msg_lang=en
2590 else
2591 for lang in $_language ; do
2592 if test -d DOCS/man/$lang ; then
2593 tmp_man_langs="$tmp_man_langs $lang"
2595 if test -d DOCS/xml/$lang ; then
2596 tmp_doc_langs="$tmp_doc_langs $lang"
2598 done
2599 man_langs=$tmp_man_langs
2600 doc_langs=$tmp_man_langs
2601 for lang in $_language ; do
2602 if test -f "help/help_mp-${lang}.h" ; then
2603 msg_lang=$lang
2604 break
2605 else
2606 echo ${_echo_n} "$lang not found, ${_echo_c}"
2607 _language=`echo $_language | sed "s/$lang *//"`
2609 done
2611 test -z "$doc_langs" && doc_langs=en
2612 test -z "$man_langs" && man_langs=en
2613 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2614 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2615 test -z "$msg_lang" && msg_lang=en
2616 _mp_help="help/help_mp-${msg_lang}.h"
2617 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2620 echocheck "enable sighandler"
2621 if test "$_sighandler" = yes ; then
2622 _def_sighandler='#define CONFIG_SIGHANDLER 1'
2623 else
2624 _def_sighandler='#undef CONFIG_SIGHANDLER'
2626 echores "$_sighandler"
2628 echocheck "runtime cpudetection"
2629 if test "$_runtime_cpudetection" = yes ; then
2630 _optimizing="Runtime CPU-Detection enabled"
2631 _def_runtime_cpudetection='#define RUNTIME_CPUDETECT 1'
2632 else
2633 _def_runtime_cpudetection='#undef RUNTIME_CPUDETECT'
2635 echores "$_runtime_cpudetection"
2638 echocheck "restrict keyword"
2639 for restrict_keyword in restrict __restrict __restrict__ ; do
2640 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2641 if cc_check; then
2642 _def_restrict_keyword=$restrict_keyword
2643 break;
2645 done
2646 if [ -n "$_def_restrict_keyword" ]; then
2647 echores "$_def_restrict_keyword"
2648 else
2649 echores "none"
2651 # Avoid infinite recursion loop ("#define restrict restrict")
2652 if [ "$_def_restrict_keyword" != "restrict" ]; then
2653 _def_restrict_keyword="#define restrict $_def_restrict_keyword"
2654 else
2655 _def_restrict_keyword=""
2659 echocheck "__builtin_expect"
2660 # GCC branch prediction hint
2661 cat > $TMPC << EOF
2662 int foo (int a) {
2663 a = __builtin_expect (a, 10);
2664 return a == 10 ? 0 : 1;
2666 int main(void) { return foo(10) && foo(0); }
2668 _builtin_expect=no
2669 cc_check && _builtin_expect=yes
2670 if test "$_builtin_expect" = yes ; then
2671 _def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2672 else
2673 _def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2675 echores "$_builtin_expect"
2678 echocheck "kstat"
2679 cat > $TMPC << EOF
2680 #include <kstat.h>
2681 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2683 _kstat=no
2684 cc_check -lkstat && _kstat=yes
2685 if test "$_kstat" = yes ; then
2686 _def_kstat="#define HAVE_LIBKSTAT 1"
2687 _ld_extra="$_ld_extra -lkstat"
2688 else
2689 _def_kstat="#undef HAVE_LIBKSTAT"
2691 echores "$_kstat"
2694 echocheck "posix4"
2695 # required for nanosleep on some systems
2696 cat > $TMPC << EOF
2697 #include <time.h>
2698 int main(void) { (void) nanosleep(0, 0); return 0; }
2700 _posix4=no
2701 cc_check -lposix4 && _posix4=yes
2702 if test "$_posix4" = yes ; then
2703 _ld_extra="$_ld_extra -lposix4"
2705 echores "$_posix4"
2707 for func in llrint lrint lrintf round roundf; do
2708 echocheck $func
2709 cat > $TMPC << EOF
2710 #include <math.h>
2711 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2713 eval _$func=no
2714 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2715 if eval test "x\$_$func" = "xyes"; then
2716 eval _def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 1\""
2717 echores yes
2718 else
2719 eval _def_$func="\"#undef HAVE_`echo $func | tr '[a-z]' '[A-Z]'`\""
2720 echores no
2722 done
2725 echocheck "mkstemp"
2726 cat > $TMPC << EOF
2727 #include <stdlib.h>
2728 int main(void) { char a; mkstemp(&a); return 0; }
2730 _mkstemp=no
2731 cc_check && _mkstemp=yes
2732 if test "$_mkstemp" = yes ; then
2733 _def_mkstemp='#define HAVE_MKSTEMP 1'
2734 else
2735 _def_mkstemp='#undef HAVE_MKSTEMP'
2737 echores "$_mkstemp"
2740 echocheck "nanosleep"
2741 # also check for nanosleep
2742 cat > $TMPC << EOF
2743 #include <time.h>
2744 int main(void) { (void) nanosleep(0, 0); return 0; }
2746 _nanosleep=no
2747 cc_check && _nanosleep=yes
2748 if test "$_nanosleep" = yes ; then
2749 _def_nanosleep='#define HAVE_NANOSLEEP 1'
2750 else
2751 _def_nanosleep='#undef HAVE_NANOSLEEP'
2753 echores "$_nanosleep"
2756 echocheck "socklib"
2757 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2758 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2759 cat > $TMPC << EOF
2760 #include <netdb.h>
2761 #include <sys/socket.h>
2762 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2764 _socklib=no
2765 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2766 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2767 done
2768 if test $_winsock2_h = auto && ! cygwin ; then
2769 _winsock2_h=no
2770 cat > $TMPC << EOF
2771 #include <winsock2.h>
2772 int main(void) { (void) gethostbyname(0); return 0; }
2774 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2776 test "$_ld_sock" && _res_comment="using $_ld_sock"
2777 echores "$_socklib"
2780 if test $_winsock2_h = yes ; then
2781 _ld_sock="-lws2_32"
2782 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2783 else
2784 def_winsock2_h='#undef HAVE_WINSOCK2_H'
2788 _use_aton=no
2789 echocheck "inet_pton()"
2790 cat > $TMPC << EOF
2791 #include <sys/types.h>
2792 #include <sys/socket.h>
2793 #include <arpa/inet.h>
2794 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
2796 if test "$_winsock2_h" = yes ; then
2797 _res_comment="using winsock2 functions instead"
2798 echores "no"
2799 elif cc_check $_ld_sock ; then
2800 # NOTE: Linux has libresolv but does not need it
2802 _res_comment="using $_ld_sock"
2803 echores "yes"
2804 elif cc_check $_ld_sock -lresolv ; then
2805 # NOTE: needed for SunOS at least
2806 _ld_sock="$_ld_sock -lresolv"
2807 _res_comment="using $_ld_sock"
2808 echores "yes"
2809 else
2810 _res_comment="trying inet_aton next"
2811 echores "no"
2813 echocheck "inet_aton()"
2814 cat > $TMPC << EOF
2815 #include <sys/types.h>
2816 #include <sys/socket.h>
2817 #include <arpa/inet.h>
2818 int main(void) { (void) inet_aton(0, 0); return 0; }
2820 _use_aton=yes
2821 if cc_check $_ld_sock ; then
2822 # NOTE: Linux has libresolv but does not need it
2824 _res_comment="using $_ld_sock"
2825 elif cc_check $_ld_sock -lresolv ; then
2826 # NOTE: needed for SunOS at least
2827 _ld_sock="$_ld_sock -lresolv"
2828 _res_comment="using $_ld_sock"
2829 else
2830 _use_aton=no
2831 _network=no
2832 _res_comment="network support disabled"
2834 echores "$_use_aton"
2837 _def_use_aton='#undef HAVE_ATON'
2838 if test "$_use_aton" = yes; then
2839 _def_use_aton='#define HAVE_ATON 1'
2843 echocheck "socklen_t"
2844 _socklen_t=no
2845 for header in "sys/socket.h" "ws2tcpip.h" ; do
2846 cat > $TMPC << EOF
2847 #include <$header>
2848 int main(void) { socklen_t v = 0; return v; }
2850 cc_check && _socklen_t=yes && break
2851 done
2852 if test "$_socklen_t" = yes ; then
2853 _def_socklen_t='#define HAVE_SOCKLEN_T 1'
2854 else
2855 _def_socklen_t='#undef HAVE_SOCKLEN_T'
2857 echores "$_socklen_t"
2860 echocheck "closesocket()"
2861 _closesocket=no
2862 cat > $TMPC << EOF
2863 #include <winsock2.h>
2864 int main(void) { closesocket(~0); return 0; }
2866 cc_check $_ld_sock && _closesocket=yes
2867 if test "$_closesocket" = yes ; then
2868 _def_closesocket='#define HAVE_CLOSESOCKET 1'
2869 else
2870 _def_closesocket='#undef HAVE_CLOSESOCKET'
2872 echores "$_closesocket"
2875 echocheck "network"
2876 # FIXME network check
2877 if test "$_network" = yes ; then
2878 _def_network='#define CONFIG_NETWORK 1'
2879 _ld_extra="$_ld_extra $_ld_sock"
2880 _inputmodules="network $_inputmodules"
2881 else
2882 _noinputmodules="network $_noinputmodules"
2883 _def_network='#undef CONFIG_NETWORK'
2884 _ftp=no
2886 echores "$_network"
2888 echocheck "inttypes.h (required)"
2889 cat > $TMPC << EOF
2890 #include <inttypes.h>
2891 int main(void) { return 0; }
2893 _inttypes=no
2894 cc_check && _inttypes=yes
2895 echores "$_inttypes"
2897 if test "$_inttypes" = no ; then
2898 echocheck "bitypes.h (inttypes.h predecessor)"
2899 cat > $TMPC << EOF
2900 #include <sys/bitypes.h>
2901 int main(void) { return 0; }
2903 cc_check && _inttypes=yes
2904 if test "$_inttypes" = yes ; then
2905 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."
2906 else
2907 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
2912 echocheck "int_fastXY_t in inttypes.h"
2913 cat > $TMPC << EOF
2914 #include <inttypes.h>
2915 int main(void) {
2916 volatile int_fast16_t v= 0;
2917 return v; }
2919 _fast_inttypes=no
2920 cc_check && _fast_inttypes=yes
2921 if test "$_fast_inttypes" = no ; then
2922 _def_fast_inttypes='
2923 typedef signed char int_fast8_t;
2924 typedef signed int int_fast16_t;
2925 typedef signed int int_fast32_t;
2926 typedef signed long long int_fast64_t;
2927 typedef unsigned char uint_fast8_t;
2928 typedef unsigned int uint_fast16_t;
2929 typedef unsigned int uint_fast32_t;
2930 typedef unsigned long long uint_fast64_t;'
2932 echores "$_fast_inttypes"
2935 echocheck "malloc.h"
2936 cat > $TMPC << EOF
2937 #include <malloc.h>
2938 int main(void) { (void) malloc(0); return 0; }
2940 _malloc=no
2941 cc_check && _malloc=yes
2942 if test "$_malloc" = yes ; then
2943 def_malloc_h='#define HAVE_MALLOC_H 1'
2944 else
2945 def_malloc_h='#undef HAVE_MALLOC_H'
2947 # malloc.h emits a warning in FreeBSD and OpenBSD
2948 freebsd || openbsd || dragonfly && def_malloc_h='#undef HAVE_MALLOC_H'
2949 echores "$_malloc"
2952 echocheck "memalign()"
2953 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
2954 cat > $TMPC << EOF
2955 #include <malloc.h>
2956 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
2958 _memalign=no
2959 cc_check && _memalign=yes
2960 if test "$_memalign" = yes ; then
2961 _def_memalign='#define HAVE_MEMALIGN 1'
2962 else
2963 _def_memalign='#undef HAVE_MEMALIGN'
2964 _def_map_memalign='#define memalign(a,b) malloc(b)'
2965 darwin || _def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
2967 echores "$_memalign"
2970 echocheck "alloca.h"
2971 cat > $TMPC << EOF
2972 #include <alloca.h>
2973 int main(void) { (void) alloca(0); return 0; }
2975 _alloca=no
2976 cc_check && _alloca=yes
2977 if cc_check ; then
2978 def_alloca_h='#define HAVE_ALLOCA_H 1'
2979 else
2980 def_alloca_h='#undef HAVE_ALLOCA_H'
2982 echores "$_alloca"
2985 echocheck "mman.h"
2986 cat > $TMPC << EOF
2987 #include <sys/types.h>
2988 #include <sys/mman.h>
2989 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
2991 _mman=no
2992 cc_check && _mman=yes
2993 if test "$_mman" = yes ; then
2994 def_mman_h='#define HAVE_SYS_MMAN_H 1'
2995 else
2996 def_mman_h='#undef HAVE_SYS_MMAN_H'
2997 os2 && _need_mmap=yes
2999 echores "$_mman"
3001 cat > $TMPC << EOF
3002 #include <sys/types.h>
3003 #include <sys/mman.h>
3004 int main(void) { void *p = MAP_FAILED; return 0; }
3006 _mman_has_map_failed=no
3007 cc_check && _mman_has_map_failed=yes
3008 if test "$_mman_has_map_failed" = yes ; then
3009 _def_mman_has_map_failed=''
3010 else
3011 _def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3014 echocheck "dynamic loader"
3015 cat > $TMPC << EOF
3016 #include <stddef.h>
3017 #include <dlfcn.h>
3018 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3020 _dl=no
3021 for _ld_tmp in "" "-ldl" ; do
3022 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3023 done
3024 if test "$_dl" = yes ; then
3025 _def_dl='#define HAVE_LIBDL 1'
3026 else
3027 _def_dl='#undef HAVE_LIBDL'
3029 echores "$_dl"
3032 echocheck "dynamic a/v plugins support"
3033 if test "$_dl" = no ; then
3034 _dynamic_plugins=no
3036 if test "$_dynamic_plugins" = yes ; then
3037 _def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3038 else
3039 _def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3041 echores "$_dynamic_plugins"
3044 _def_threads='#undef HAVE_THREADS'
3046 echocheck "pthread"
3047 if test "$_pthreads" = auto ; then
3048 cat > $TMPC << EOF
3049 #include <pthread.h>
3050 void* func(void *arg) { return arg; }
3051 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
3053 _pthreads=no
3054 if ! hpux ; then
3055 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3056 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3057 cc_check $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3058 done
3061 if test "$_pthreads" = yes ; then
3062 _res_comment="using $_ld_pthread"
3063 _def_pthreads='#define HAVE_PTHREADS 1'
3064 _def_threads='#define HAVE_THREADS 1'
3065 else
3066 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3067 _def_pthreads='#undef HAVE_PTHREADS'
3068 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3069 mingw32 || _win32dll=no
3071 echores "$_pthreads"
3073 echocheck "w32threads"
3074 if test "$_pthreads" = yes ; then
3075 _res_comment="using pthread instead"
3076 _w32threads=no
3078 if test "$_w32threads" = auto ; then
3079 _w32threads=no
3080 mingw32 && _w32threads=yes
3082 test "$_w32threads" = yes && _def_threads='#define HAVE_THREADS 1'
3083 echores "$_w32threads"
3085 echocheck "rpath"
3086 netbsd &&_rpath=yes
3087 if test "$_rpath" = yes ; then
3088 for I in `echo $_ld_extra | sed 's/-L//g'` ; do
3089 tmp="$tmp ` echo $I | sed 's/.*/ -L& -Wl,-R&/'`"
3090 done
3091 _ld_extra=$tmp
3093 echores "$_rpath"
3095 echocheck "iconv"
3096 if test "$_iconv" = auto ; then
3097 cat > $TMPC << EOF
3098 #include <stdio.h>
3099 #include <unistd.h>
3100 #include <iconv.h>
3101 #define INBUFSIZE 1024
3102 #define OUTBUFSIZE 4096
3104 char inbuffer[INBUFSIZE];
3105 char outbuffer[OUTBUFSIZE];
3107 int main(void) {
3108 size_t numread;
3109 iconv_t icdsc;
3110 char *tocode="UTF-8";
3111 char *fromcode="cp1250";
3112 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) {
3113 while ((numread = read (0, inbuffer, INBUFSIZE))) {
3114 char *iptr=inbuffer;
3115 char *optr=outbuffer;
3116 size_t inleft=numread;
3117 size_t outleft=OUTBUFSIZE;
3118 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3119 != (size_t)(-1)) {
3120 write (1, outbuffer, OUTBUFSIZE - outleft);
3123 if (iconv_close(icdsc) == -1)
3126 return 0;
3129 _iconv=no
3130 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3131 cc_check $_ld_lm $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3132 _iconv=yes && break
3133 done
3135 if test "$_iconv" = yes ; then
3136 _def_iconv='#define CONFIG_ICONV 1'
3137 else
3138 _def_iconv='#undef CONFIG_ICONV'
3140 echores "$_iconv"
3143 echocheck "soundcard.h"
3144 _soundcard_h=no
3145 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3146 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3147 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3148 cat > $TMPC << EOF
3149 #include <$_soundcard_header>
3150 int main(void) { return 0; }
3152 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3153 done
3155 if test "$_soundcard_h" = yes ; then
3156 if test $_soundcard_header = "sys/soundcard.h"; then
3157 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3158 else
3159 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3162 echores "$_soundcard_h"
3165 echocheck "sys/dvdio.h"
3166 cat > $TMPC << EOF
3167 #include <unistd.h>
3168 #include <sys/dvdio.h>
3169 int main(void) { return 0; }
3171 _dvdio=no
3172 cc_check && _dvdio=yes
3173 if test "$_dvdio" = yes ; then
3174 _def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3175 else
3176 _def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3178 echores "$_dvdio"
3181 echocheck "sys/cdio.h"
3182 cat > $TMPC << EOF
3183 #include <unistd.h>
3184 #include <sys/cdio.h>
3185 int main(void) { return 0; }
3187 _cdio=no
3188 cc_check && _cdio=yes
3189 if test "$_cdio" = yes ; then
3190 _def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3191 else
3192 _def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3194 echores "$_cdio"
3197 echocheck "linux/cdrom.h"
3198 cat > $TMPC << EOF
3199 #include <sys/types.h>
3200 #include <linux/cdrom.h>
3201 int main(void) { return 0; }
3203 _cdrom=no
3204 cc_check && _cdrom=yes
3205 if test "$_cdrom" = yes ; then
3206 _def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3207 else
3208 _def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3210 echores "$_cdrom"
3213 echocheck "dvd.h"
3214 cat > $TMPC << EOF
3215 #include <dvd.h>
3216 int main(void) { return 0; }
3218 _dvd=no
3219 cc_check && _dvd=yes
3220 if test "$_dvd" = yes ; then
3221 _def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3222 else
3223 _def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3225 echores "$_dvd"
3228 if bsdos; then
3229 echocheck "BSDI dvd.h"
3230 cat > $TMPC << EOF
3231 #include <dvd.h>
3232 int main(void) { return 0; }
3234 _bsdi_dvd=no
3235 cc_check && _bsdi_dvd=yes
3236 if test "$_bsdi_dvd" = yes ; then
3237 _def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3238 else
3239 _def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3241 echores "$_bsdi_dvd"
3242 fi #if bsdos
3245 if hpux; then
3246 # also used by AIX, but AIX does not support VCD and/or libdvdread
3247 echocheck "HP-UX SCSI header"
3248 cat > $TMPC << EOF
3249 #include <sys/scsi.h>
3250 int main(void) { return 0; }
3252 _hpux_scsi_h=no
3253 cc_check && _hpux_scsi_h=yes
3254 if test "$_hpux_scsi_h" = yes ; then
3255 _def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3256 else
3257 _def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3259 echores "$_hpux_scsi_h"
3260 fi #if hpux
3263 if sunos; then
3264 echocheck "userspace SCSI headers (Solaris)"
3265 cat > $TMPC << EOF
3266 #include <unistd.h>
3267 #include <stropts.h>
3268 #include <sys/scsi/scsi_types.h>
3269 #include <sys/scsi/impl/uscsi.h>
3270 int main(void) { return 0; }
3272 _sol_scsi_h=no
3273 cc_check && _sol_scsi_h=yes
3274 if test "$_sol_scsi_h" = yes ; then
3275 _def_sol_scsi_h='#define SOLARIS_USCSI 1'
3276 else
3277 _def_sol_scsi_h='#undef SOLARIS_USCSI'
3279 echores "$_sol_scsi_h"
3280 fi #if sunos
3283 echocheck "termcap"
3284 if test "$_termcap" = auto ; then
3285 cat > $TMPC <<EOF
3286 #include <stddef.h>
3287 #include <term.h>
3288 int main(void) { tgetent(NULL, NULL); return 0; }
3290 _termcap=no
3291 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3292 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
3293 && _termcap=yes && break
3294 done
3296 if test "$_termcap" = yes ; then
3297 _def_termcap='#define HAVE_TERMCAP 1'
3298 _res_comment="using $_ld_tmp"
3299 else
3300 _def_termcap='#undef HAVE_TERMCAP'
3302 echores "$_termcap"
3305 echocheck "termios"
3306 _def_termios='#undef HAVE_TERMIOS'
3307 def_termios_h='#undef HAVE_TERMIOS_H'
3308 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3309 if test "$_termios" = auto ; then
3310 _termios=no
3311 for _termios_header in "sys/termios.h" "termios.h"; do
3312 cat > $TMPC <<EOF
3313 #include <$_termios_header>
3314 int main(void) { return 0; }
3316 cc_check && _termios=yes && _res_comment="$_termios_header" && break
3317 done
3320 if test "$_termios" = yes ; then
3321 _def_termios='#define HAVE_TERMIOS 1'
3322 if test "$_termios_header" = "termios.h" ; then
3323 def_termios_h='#define HAVE_TERMIOS_H 1'
3324 else
3325 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3328 echores "$_termios"
3331 echocheck "shm"
3332 if test "$_shm" = auto ; then
3333 cat > $TMPC << EOF
3334 #include <sys/types.h>
3335 #include <sys/shm.h>
3336 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3338 _shm=no
3339 cc_check && _shm=yes
3341 if test "$_shm" = yes ; then
3342 _def_shm='#define HAVE_SHM 1'
3343 else
3344 _def_shm='#undef HAVE_SHM'
3346 echores "$_shm"
3349 echocheck "strsep()"
3350 cat > $TMPC << EOF
3351 #include <string.h>
3352 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3354 _strsep=no
3355 cc_check && _strsep=yes
3356 if test "$_strsep" = yes ; then
3357 _def_strsep='#define HAVE_STRSEP 1'
3358 _need_strsep=no
3359 else
3360 _def_strsep='#undef HAVE_STRSEP'
3361 _need_strsep=yes
3363 echores "$_strsep"
3366 echocheck "vsscanf()"
3367 cat > $TMPC << EOF
3368 #define _ISOC99_SOURCE
3369 #include <stdarg.h>
3370 #include <stdio.h>
3371 int main(void) { vsscanf(0, 0, 0); return 0; }
3373 _vsscanf=no
3374 cc_check && _vsscanf=yes
3375 if test "$_vsscanf" = yes ; then
3376 _def_vsscanf='#define HAVE_VSSCANF 1'
3377 _need_vsscanf=no
3378 else
3379 _def_vsscanf='#undef HAVE_VSSCANF'
3380 _need_vsscanf=yes
3382 echores "$_vsscanf"
3385 echocheck "swab()"
3386 cat > $TMPC << EOF
3387 #include <unistd.h>
3388 int main(void) { swab(0, 0, 0); return 0; }
3390 _swab=no
3391 cc_check && _swab=yes
3392 if test "$_swab" = yes ; then
3393 _def_swab='#define HAVE_SWAB 1'
3394 _need_swab=no
3395 else
3396 _def_swab='#undef HAVE_SWAB'
3397 _need_swab=yes
3399 echores "$_swab"
3401 echocheck "POSIX select()"
3402 cat > $TMPC << EOF
3403 #include <stdio.h>
3404 #include <stdlib.h>
3405 #include <sys/types.h>
3406 #include <string.h>
3407 #include <sys/time.h>
3408 #include <unistd.h>
3409 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3411 _posix_select=no
3412 _def_posix_select='#undef HAVE_POSIX_SELECT'
3413 #select() of kLIBC (OS/2) supports socket only
3414 ! os2 && cc_check && _posix_select=yes \
3415 && _def_posix_select='#define HAVE_POSIX_SELECT 1'
3416 echores "$_posix_select"
3419 echocheck "gettimeofday()"
3420 cat > $TMPC << EOF
3421 #include <stdio.h>
3422 #include <sys/time.h>
3423 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3425 _gettimeofday=no
3426 cc_check && _gettimeofday=yes
3427 if test "$_gettimeofday" = yes ; then
3428 _def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3429 _need_gettimeofday=no
3430 else
3431 _def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3432 _need_gettimeofday=yes
3434 echores "$_gettimeofday"
3437 echocheck "glob()"
3438 cat > $TMPC << EOF
3439 #include <stdio.h>
3440 #include <glob.h>
3441 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3443 _glob=no
3444 cc_check && _glob=yes
3445 if test "$_glob" = yes ; then
3446 _def_glob='#define HAVE_GLOB 1'
3447 _need_glob=no
3448 else
3449 _def_glob='#undef HAVE_GLOB'
3450 _need_glob=yes
3452 echores "$_glob"
3455 echocheck "setenv()"
3456 cat > $TMPC << EOF
3457 #include <stdlib.h>
3458 int main(void) { setenv("","",0); return 0; }
3460 _setenv=no
3461 cc_check && _setenv=yes
3462 if test "$_setenv" = yes ; then
3463 _def_setenv='#define HAVE_SETENV 1'
3464 _need_setenv=no
3465 else
3466 _def_setenv='#undef HAVE_SETENV'
3467 _need_setenv=yes
3469 echores "$_setenv"
3472 if sunos; then
3473 echocheck "sysi86()"
3474 cat > $TMPC << EOF
3475 #include <sys/sysi86.h>
3476 int main(void) { sysi86(0); return 0; }
3478 _sysi86=no
3479 cc_check && _sysi86=yes
3480 if test "$_sysi86" = yes ; then
3481 _def_sysi86='#define HAVE_SYSI86 1'
3482 cat > $TMPC << EOF
3483 #include <sys/sysi86.h>
3484 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3486 cc_check && _def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3487 else
3488 _def_sysi86='#undef HAVE_SYSI86'
3490 echores "$_sysi86"
3491 fi #if sunos
3494 echocheck "sys/sysinfo.h"
3495 cat > $TMPC << EOF
3496 #include <sys/sysinfo.h>
3497 int main(void) {
3498 struct sysinfo s_info;
3499 sysinfo(&s_info);
3500 return 0;
3503 _sys_sysinfo=no
3504 cc_check && _sys_sysinfo=yes
3505 if test "$_sys_sysinfo" = yes ; then
3506 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3507 else
3508 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3510 echores "$_sys_sysinfo"
3513 if darwin; then
3515 echocheck "Mac OS X APIs"
3516 if test "$_macosx" = auto ; then
3517 productName=`/usr/bin/sw_vers -productName`
3518 if test "$productName" = "Mac OS X" ||
3519 test "$productName" = "Mac OS X Server" ; then
3520 _macosx=yes
3521 else
3522 _macosx=no
3523 _noaomodules="macosx $_noaomodules"
3524 _novomodules="quartz $_novomodules"
3527 if test "$_macosx" = yes ; then
3528 cat > $TMPC <<EOF
3529 #include <Carbon/Carbon.h>
3530 #include <QuickTime/QuickTime.h>
3531 #include <CoreAudio/CoreAudio.h>
3532 int main(void) {
3533 EnterMovies();
3534 ExitMovies();
3535 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
3536 return 0;
3539 if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then
3540 _ld_extra="$_ld_extra -framework Carbon -framework QuickTime -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
3541 _coreaudio=yes
3542 _def_coreaudio='#define CONFIG_COREAUDIO 1'
3543 _aosrc="$_aosrc ao_macosx.c"
3544 _aomodules="macosx $_aomodules"
3545 _def_quartz='#define CONFIG_QUARTZ 1'
3546 _vosrc="$_vosrc vo_quartz.c"
3547 _vomodules="quartz $_vomodules"
3548 _def_quicktime='#define CONFIG_QUICKTIME 1'
3549 else
3550 _macosx=no
3551 _coreaudio=no
3552 _def_coreaudio='#undef CONFIG_COREAUDIO'
3553 _noaomodules="macosx $_noaomodules"
3554 _def_quartz='#undef CONFIG_QUARTZ'
3555 _novomodules="quartz $_novomodules"
3556 _def_quicktime='#undef CONFIG_QUICKTIME'
3558 cat > $TMPC <<EOF
3559 #include <Carbon/Carbon.h>
3560 #include <QuartzCore/CoreVideo.h>
3561 int main(void) { return 0; }
3563 if cc_check -framework Carbon -framework QuartzCore -framework OpenGL; then
3564 _vosrc="$_vosrc vo_macosx.m"
3565 _vomodules="macosx $_vomodules"
3566 _ld_extra="$_ld_extra -framework Cocoa -framework QuartzCore -framework OpenGL"
3567 _def_corevideo='#define CONFIG_COREVIDEO 1'
3568 _corevideo=yes
3569 else
3570 _novomodules="macosx $_novomodules"
3571 _def_corevideo='#undef CONFIG_COREVIDEO'
3572 _corevideo=no
3575 echores "$_macosx"
3577 echocheck "Mac OS X Finder Support"
3578 if test "$_macosx_finder" = auto ; then
3579 _macosx_finder=$_macosx
3581 if test "$_macosx_finder" = yes; then
3582 _def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3583 _macosx_finder=yes
3584 else
3585 _def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3586 _macosx_finder=no
3588 echores "$_macosx_finder"
3590 echocheck "Mac OS X Bundle file locations"
3591 if test "$_macosx_bundle" = auto ; then
3592 _macosx_bundle=$_macosx_finder
3594 if test "$_macosx_bundle" = yes; then
3595 _def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3596 else
3597 _def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3598 _macosx_bundle=no
3600 echores "$_macosx_bundle"
3602 echocheck "Apple Remote"
3603 if test "$_apple_remote" = auto ; then
3604 _apple_remote=no
3605 cat > $TMPC <<EOF
3606 #include <stdio.h>
3607 #include <IOKit/IOCFPlugIn.h>
3608 int main(void) {
3609 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3610 CFMutableDictionaryRef hidMatchDictionary;
3611 IOReturn ioReturnValue;
3613 // Set up a matching dictionary to search the I/O Registry by class.
3614 // name for all HID class devices
3615 hidMatchDictionary = IOServiceMatching("AppleIRController");
3617 // Now search I/O Registry for matching devices.
3618 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3619 hidMatchDictionary, &hidObjectIterator);
3621 // If search is unsuccessful, return nonzero.
3622 if (ioReturnValue != kIOReturnSuccess ||
3623 !IOIteratorIsValid(hidObjectIterator)) {
3624 return 1;
3626 return 0;
3629 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3631 if test "$_apple_remote" = yes ; then
3632 _def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3633 _ld_extra="$_ld_extra -framework IOKit"
3634 else
3635 _def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3637 echores "$_apple_remote"
3639 fi #if darwin
3641 if linux; then
3643 echocheck "Apple IR"
3644 if test "$_apple_ir" = auto ; then
3645 _apple_ir=no
3646 cat > $TMPC <<EOF
3647 #include <linux/types.h>
3648 #include <linux/input.h>
3649 int main(void) {
3650 struct input_event ev;
3651 struct input_id id;
3652 return 0;
3655 cc_check && tmp_run && _apple_ir=yes
3657 if test "$_apple_ir" = yes ; then
3658 _def_apple_ir='#define CONFIG_APPLE_IR 1'
3659 else
3660 _def_apple_ir='#undef CONFIG_APPLE_IR'
3662 echores "$_apple_ir"
3663 fi #if linux
3665 echocheck "pkg-config"
3666 _pkg_config=pkg-config
3667 if `$_pkg_config --version > /dev/null 2>&1`; then
3668 if test "$_ld_static"; then
3669 _pkg_config="$_pkg_config --static"
3671 echores "yes"
3672 else
3673 _pkg_config=false
3674 echores "no"
3678 echocheck "Samba support (libsmbclient)"
3679 if test "$_smb" = yes; then
3680 _ld_extra="$_ld_extra -lsmbclient"
3682 if test "$_smb" = auto; then
3683 _smb=no
3684 cat > $TMPC << EOF
3685 #include <libsmbclient.h>
3686 int main(void) { smbc_opendir("smb://"); return 0; }
3688 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3689 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3690 _smb=yes && break
3691 done
3694 if test "$_smb" = yes; then
3695 _def_smb="#define CONFIG_LIBSMBCLIENT"
3696 _inputmodules="smb $_inputmodules"
3697 else
3698 _def_smb="#undef CONFIG_LIBSMBCLIENT"
3699 _noinputmodules="smb $_noinputmodules"
3701 echores "$_smb"
3704 #########
3705 # VIDEO #
3706 #########
3709 echocheck "tdfxfb"
3710 if test "$_tdfxfb" = yes ; then
3711 _def_tdfxfb='#define CONFIG_TDFXFB 1'
3712 _vosrc="$_vosrc vo_tdfxfb.c"
3713 _vomodules="tdfxfb $_vomodules"
3714 else
3715 _def_tdfxfb='#undef CONFIG_TDFXFB'
3716 _novomodules="tdfxfb $_novomodules"
3718 echores "$_tdfxfb"
3720 echocheck "s3fb"
3721 if test "$_s3fb" = yes ; then
3722 _def_s3fb='#define CONFIG_S3FB 1'
3723 _vosrc="$_vosrc vo_s3fb.c"
3724 _vomodules="s3fb $_vomodules"
3725 else
3726 _def_s3fb='#undef CONFIG_S3FB'
3727 _novomodules="s3fb $_novomodules"
3729 echores "$_s3fb"
3731 echocheck "wii"
3732 if test "$_wii" = yes ; then
3733 _def_wii='#define CONFIG_WII 1'
3734 _vosrc="$_vosrc vo_wii.c"
3735 _vomodules="wii $_vomodules"
3736 else
3737 _def_wii='#undef CONFIG_WII'
3738 _novomodules="wii $_novomodules"
3740 echores "$_wii"
3742 echocheck "tdfxvid"
3743 if test "$_tdfxvid" = yes ; then
3744 _def_tdfxvid='#define CONFIG_TDFX_VID 1'
3745 _vosrc="$_vosrc vo_tdfx_vid.c"
3746 _vomodules="tdfx_vid $_vomodules"
3747 else
3748 _def_tdfxvid='#undef CONFIG_TDFX_VID'
3749 _novomodules="tdfx_vid $_novomodules"
3751 echores "$_tdfxvid"
3753 echocheck "xvr100"
3754 if test "$_xvr100" = auto ; then
3755 cat > $TMPC << EOF
3756 #include <unistd.h>
3757 #include <sys/fbio.h>
3758 #include <sys/visual_io.h>
3759 int main(void) {
3760 struct vis_identifier ident;
3761 struct fbgattr attr;
3762 ioctl(0, VIS_GETIDENTIFIER, &ident);
3763 ioctl(0, FBIOGATTR, &attr);
3764 return 0;
3767 _xvr100=no
3768 cc_check && _xvr100=yes
3770 if test "$_xvr100" = yes ; then
3771 _def_xvr100='#define CONFIG_XVR100 1'
3772 _vosrc="$_vosrc vo_xvr100.c"
3773 _vomodules="xvr100 $_vomodules"
3774 else
3775 _def_tdfxvid='#undef CONFIG_XVR100'
3776 _novomodules="xvr100 $_novomodules"
3778 echores "$_xvr100"
3780 echocheck "tga"
3781 if test "$_tga" = yes ; then
3782 _def_tga='#define CONFIG_TGA 1'
3783 _vosrc="$_vosrc vo_tga.c"
3784 _vomodules="tga $_vomodules"
3785 else
3786 _def_tga='#undef CONFIG_TGA'
3787 _novomodules="tga $_novomodules"
3789 echores "$_tga"
3792 echocheck "md5sum support"
3793 if test "$_md5sum" = yes; then
3794 _def_md5sum="#define CONFIG_MD5SUM"
3795 _vosrc="$_vosrc vo_md5sum.c"
3796 _vomodules="md5sum $_vomodules"
3797 else
3798 _def_md5sum="#undef CONFIG_MD5SUM"
3799 _novomodules="md5sum $_novomodules"
3801 echores "$_md5sum"
3804 echocheck "yuv4mpeg support"
3805 if test "$_yuv4mpeg" = yes; then
3806 _def_yuv4mpeg="#define CONFIG_YUV4MPEG"
3807 _vosrc="$_vosrc vo_yuv4mpeg.c"
3808 _vomodules="yuv4mpeg $_vomodules"
3809 else
3810 _def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3811 _novomodules="yuv4mpeg $_novomodules"
3813 echores "$_yuv4mpeg"
3816 echocheck "bl"
3817 if test "$_bl" = yes ; then
3818 _def_bl='#define CONFIG_BL 1'
3819 _vosrc="$_vosrc vo_bl.c"
3820 _vomodules="bl $_vomodules"
3821 else
3822 _def_bl='#undef CONFIG_BL'
3823 _novomodules="bl $_novomodules"
3825 echores "$_bl"
3828 echocheck "DirectFB"
3829 if test "$_directfb" = auto ; then
3830 _directfb=no
3831 cat > $TMPC <<EOF
3832 #include <directfb.h>
3833 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
3835 for _inc_tmp in "" -I/usr/local/include/directfb \
3836 -I/usr/include/directfb -I/usr/local/include; do
3837 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
3838 _inc_extra="$_inc_extra $_inc_tmp" && break
3839 done
3842 dfb_version() {
3843 expr $1 \* 65536 + $2 \* 256 + $3
3846 if test "$_directfb" = yes; then
3847 cat > $TMPC << EOF
3848 #include <directfb_version.h>
3850 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
3853 if $_cc -E $TMPC $_inc_extra > "$TMPEXE"; then
3854 _directfb_version=`sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()'`
3855 _dfb_major=`echo $_directfb_version | cut -d . -f 1`
3856 _dfb_minor=`echo $_directfb_version | cut -d . -f 2`
3857 _dfb_micro=`echo $_directfb_version | cut -d . -f 3`
3858 _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
3859 if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
3860 _def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
3861 _res_comment="$_directfb_version"
3862 test "$_dfb_version" -ge `dfb_version 0 9 15` && _dfbmga=yes
3863 else
3864 _def_directfb_version='#undef DIRECTFBVERSION'
3865 _directfb=no
3866 _res_comment="version >=0.9.13 required"
3868 else
3869 _directfb=no
3870 _res_comment="failed to get version"
3873 echores "$_directfb"
3875 if test "$_directfb" = yes ; then
3876 _def_directfb='#define CONFIG_DIRECTFB 1'
3877 _vosrc="$_vosrc vo_directfb2.c"
3878 _vomodules="directfb $_vomodules"
3879 _libs_mplayer="$_libs_mplayer -ldirectfb"
3880 else
3881 _def_directfb='#undef CONFIG_DIRECTFB'
3882 _novomodules="directfb $_novomodules"
3884 if test "$_dfbmga" = yes; then
3885 _vosrc="$_vosrc vo_dfbmga.c"
3886 _vomodules="dfbmga $_vomodules"
3887 _def_dfbmga='#define CONFIG_DFBMGA 1'
3888 else
3889 _novomodules="dfbmga $_novomodules"
3890 _def_dfbmga='#undef CONFIG_DFBMGA'
3894 echocheck "X11 headers presence"
3895 _x11_headers="no"
3896 _res_comment="check if the dev(el) packages are installed"
3897 for I in `echo $_inc_extra | sed s/-I//g` /usr/include ; do
3898 if test -f "$I/X11/Xlib.h" ; then
3899 _x11_headers="yes"
3900 _res_comment=""
3901 break
3903 done
3904 if test $_cross_compile = no; then
3905 for I in /usr/X11/include /usr/X11R6/include /usr/include/X11R6 /usr/openwin/include ; do
3906 if test -f "$I/X11/Xlib.h" ; then
3907 _inc_extra="$_inc_extra -I$I"
3908 _x11_headers="yes"
3909 _res_comment="using $I"
3910 break
3912 done
3914 echores "$_x11_headers"
3917 echocheck "X11"
3918 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3919 cat > $TMPC <<EOF
3920 #include <X11/Xlib.h>
3921 #include <X11/Xutil.h>
3922 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
3924 for I in "" -L/usr/X11R6/lib -L/usr/lib/X11R6 -L/usr/X11/lib \
3925 -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 -L/usr/lib ; do
3926 if netbsd; then
3927 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R`echo $I | sed s/^-L//`"
3928 else
3929 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3931 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" \
3932 && _x11=yes && break
3933 done
3935 if test "$_x11" = yes ; then
3936 _def_x11='#define CONFIG_X11 1'
3937 _vosrc="$_vosrc x11_common.c vo_x11.c vo_xover.c"
3938 _vomodules="x11 xover $_vomodules"
3939 else
3940 _x11=no
3941 _def_x11='#undef CONFIG_X11'
3942 _novomodules="x11 $_novomodules"
3943 _res_comment="check if the dev(el) packages are installed"
3944 # disable stuff that depends on X
3945 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no
3947 echores "$_x11"
3949 echocheck "Xss screensaver extensions"
3950 if test "$_xss" = auto ; then
3951 cat > $TMPC << EOF
3952 #include <X11/Xlib.h>
3953 #include <X11/extensions/scrnsaver.h>
3954 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
3956 _xss=no
3957 cc_check -lXss && _xss=yes
3959 if test "$_xss" = yes ; then
3960 _def_xss='#define CONFIG_XSS 1'
3961 _libs_mplayer="$_libs_mplayer -lXss"
3962 else
3963 _def_xss='#undef CONFIG_XSS'
3965 echores "$_xss"
3967 echocheck "DPMS"
3968 _xdpms3=no
3969 _xdpms4=no
3970 if test "$_x11" = yes ; then
3971 cat > $TMPC <<EOF
3972 #include <X11/Xmd.h>
3973 #include <X11/Xlib.h>
3974 #include <X11/Xutil.h>
3975 #include <X11/Xatom.h>
3976 #include <X11/extensions/dpms.h>
3977 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
3979 cc_check -lXdpms && _xdpms3=yes
3980 cat > $TMPC <<EOF
3981 #include <X11/Xlib.h>
3982 #include <X11/extensions/dpms.h>
3983 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
3985 cc_check -lXext && _xdpms4=yes
3987 if test "$_xdpms4" = yes ; then
3988 _def_xdpms='#define CONFIG_XDPMS 1'
3989 _res_comment="using Xdpms 4"
3990 echores "yes"
3991 elif test "$_xdpms3" = yes ; then
3992 _def_xdpms='#define CONFIG_XDPMS 1'
3993 _libs_mplayer="$_libs_mplayer -lXdpms"
3994 _res_comment="using Xdpms 3"
3995 echores "yes"
3996 else
3997 _def_xdpms='#undef CONFIG_XDPMS'
3998 echores "no"
4002 echocheck "Xv"
4003 if test "$_xv" = auto ; then
4004 cat > $TMPC <<EOF
4005 #include <X11/Xlib.h>
4006 #include <X11/extensions/Xvlib.h>
4007 int main(void) {
4008 (void) XvGetPortAttribute(0, 0, 0, 0);
4009 (void) XvQueryPortAttributes(0, 0, 0);
4010 return 0; }
4012 _xv=no
4013 cc_check -lXv && _xv=yes
4016 if test "$_xv" = yes ; then
4017 _def_xv='#define CONFIG_XV 1'
4018 _libs_mplayer="$_libs_mplayer -lXv"
4019 _vosrc="$_vosrc vo_xv.c"
4020 _vomodules="xv $_vomodules"
4021 else
4022 _def_xv='#undef CONFIG_XV'
4023 _novomodules="xv $_novomodules"
4025 echores "$_xv"
4028 echocheck "XvMC"
4029 if test "$_xv" = yes && test "$_xvmc" != no ; then
4030 _xvmc=no
4031 cat > $TMPC <<EOF
4032 #include <X11/Xlib.h>
4033 #include <X11/extensions/Xvlib.h>
4034 #include <X11/extensions/XvMClib.h>
4035 int main(void) {
4036 (void) XvMCQueryExtension(0,0,0);
4037 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4038 return 0; }
4040 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4041 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4042 done
4044 if test "$_xvmc" = yes ; then
4045 _def_xvmc='#define HAVE_XVMC 1'
4046 _libs_mplayer="$_libs_mplayer -lXvMC -l$_xvmclib"
4047 _vosrc="$_vosrc vo_xvmc.c"
4048 _vomodules="xvmc $_vomodules"
4049 _res_comment="using $_xvmclib"
4050 else
4051 _def_xvmc='#undef HAVE_XVMC'
4052 _novomodules="xvmc $_novomodules"
4053 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
4055 echores "$_xvmc"
4058 echocheck "Xinerama"
4059 if test "$_xinerama" = auto ; then
4060 cat > $TMPC <<EOF
4061 #include <X11/Xlib.h>
4062 #include <X11/extensions/Xinerama.h>
4063 int main(void) { (void) XineramaIsActive(0); return 0; }
4065 _xinerama=no
4066 cc_check -lXinerama && _xinerama=yes
4069 if test "$_xinerama" = yes ; then
4070 _def_xinerama='#define CONFIG_XINERAMA 1'
4071 _libs_mplayer="$_libs_mplayer -lXinerama"
4072 else
4073 _def_xinerama='#undef CONFIG_XINERAMA'
4075 echores "$_xinerama"
4078 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4079 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4080 # named 'X extensions' or something similar.
4081 # This check may be useful for future mplayer versions (to change resolution)
4082 # If you run into problems, remove '-lXxf86vm'.
4083 echocheck "Xxf86vm"
4084 if test "$_vm" = auto ; then
4085 cat > $TMPC <<EOF
4086 #include <X11/Xlib.h>
4087 #include <X11/extensions/xf86vmode.h>
4088 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4090 _vm=no
4091 cc_check -lXxf86vm && _vm=yes
4093 if test "$_vm" = yes ; then
4094 _def_vm='#define CONFIG_XF86VM 1'
4095 _libs_mplayer="$_libs_mplayer -lXxf86vm"
4096 else
4097 _def_vm='#undef CONFIG_XF86VM'
4099 echores "$_vm"
4101 # Check for the presence of special keycodes, like audio control buttons
4102 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4103 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4104 # have these new keycodes.
4105 echocheck "XF86keysym"
4106 if test "$_xf86keysym" = auto; then
4107 _xf86keysym=no
4108 cat > $TMPC <<EOF
4109 #include <X11/Xlib.h>
4110 #include <X11/XF86keysym.h>
4111 int main(void) { return XF86XK_AudioPause; }
4113 cc_check && _xf86keysym=yes
4115 if test "$_xf86keysym" = yes ; then
4116 _def_xf86keysym='#define CONFIG_XF86XK 1'
4117 else
4118 _def_xf86keysym='#undef CONFIG_XF86XK'
4120 echores "$_xf86keysym"
4122 echocheck "DGA"
4123 if test "$_dga2" = auto && test "$_x11" = yes ; then
4124 cat > $TMPC << EOF
4125 #include <X11/Xlib.h>
4126 #include <X11/extensions/xf86dga.h>
4127 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4129 _dga2=no
4130 cc_check -lXxf86dga && _dga2=yes
4132 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4133 cat > $TMPC << EOF
4134 #include <X11/Xlib.h>
4135 #include <X11/extensions/xf86dga.h>
4136 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4138 _dga1=no
4139 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4142 _dga=no
4143 _def_dga='#undef CONFIG_DGA'
4144 _def_dga1='#undef CONFIG_DGA1'
4145 _def_dga2='#undef CONFIG_DGA2'
4146 if test "$_dga1" = yes ; then
4147 _dga=yes
4148 _def_dga1='#define CONFIG_DGA1 1'
4149 _res_comment="using DGA 1.0"
4150 elif test "$_dga2" = yes ; then
4151 _dga=yes
4152 _def_dga2='#define CONFIG_DGA2 1'
4153 _res_comment="using DGA 2.0"
4155 if test "$_dga" = yes ; then
4156 _def_dga='#define CONFIG_DGA 1'
4157 _libs_mplayer="$_libs_mplayer -lXxf86dga"
4158 _vosrc="$_vosrc vo_dga.c"
4159 _vomodules="dga $_vomodules"
4160 else
4161 _novomodules="dga $_novomodules"
4163 echores "$_dga"
4166 echocheck "3dfx"
4167 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4168 _def_3dfx='#define CONFIG_3DFX 1'
4169 _vosrc="$_vosrc vo_3dfx.c"
4170 _vomodules="3dfx $_vomodules"
4171 else
4172 _def_3dfx='#undef CONFIG_3DFX'
4173 _novomodules="3dfx $_novomodules"
4175 echores "$_3dfx"
4178 echocheck "OpenGL"
4179 #Note: this test is run even with --enable-gl since we autodetect linker flags
4180 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4181 cat > $TMPC << EOF
4182 #ifdef GL_WIN32
4183 #include <windows.h>
4184 #include <GL/gl.h>
4185 #else
4186 #include <GL/gl.h>
4187 #include <X11/Xlib.h>
4188 #include <GL/glx.h>
4189 #endif
4190 int main(void) {
4191 #ifdef GL_WIN32
4192 HDC dc;
4193 wglCreateContext(dc);
4194 #else
4195 glXCreateContext(NULL, NULL, NULL, True);
4196 #endif
4197 glFinish();
4198 return 0;
4201 _gl=no
4202 if cc_check -lGL $_ld_lm ; then
4203 _gl=yes
4204 _libs_mplayer="$_libs_mplayer -lGL $_ld_dl"
4205 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4206 _gl=yes
4207 _libs_mplayer="$_libs_mplayer -lGL $_ld_pthread $_ld_dl"
4208 elif cc_check -DGL_WIN32 -lopengl32 ; then
4209 _gl=yes
4210 _gl_win32=yes
4211 _libs_mplayer="$_libs_mplayer -lopengl32 -lgdi32"
4213 else
4214 _gl=no
4216 if test "$_gl" = yes ; then
4217 _def_gl='#define CONFIG_GL 1'
4218 _vosrc="$_vosrc vo_gl.c vo_gl2.c gl_common.c"
4219 if test "$_gl_win32" = yes ; then
4220 _def_gl_win32='#define GL_WIN32 1'
4221 _vosrc="$_vosrc w32_common.c"
4222 _res_comment="win32 version"
4224 _vomodules="opengl $_vomodules"
4225 else
4226 _def_gl='#undef CONFIG_GL'
4227 _def_gl_win32='#undef GL_WIN32'
4228 _novomodules="opengl $_novomodules"
4230 echores "$_gl"
4233 echocheck "VIDIX"
4234 _def_vidix='#undef CONFIG_VIDIX'
4235 _def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4236 _vidix_drv_cyberblade=no
4237 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4238 _vidix_drv_ivtv=no
4239 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4240 _vidix_drv_ivtv=no
4241 _def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4242 _vidix_drv_mach64=no
4243 _def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4244 _vidix_drv_mga=no
4245 _def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4246 _vidix_drv_mga_crtc2=no
4247 _def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4248 _vidix_drv_nvidia=no
4249 _def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4250 _vidix_drv_pm2=no
4251 _def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4252 _vidix_drv_pm3=no
4253 _def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4254 _vidix_drv_radeon=no
4255 _def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4256 _vidix_drv_rage128=no
4257 _def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4258 _vidix_drv_s3=no
4259 _def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4260 _vidix_drv_sh_veu=no
4261 _def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4262 _vidix_drv_sis=no
4263 _def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4264 _vidix_drv_unichrome=no
4265 if test "$_vidix" = auto ; then
4266 _vidix=no
4267 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4268 && _vidix=yes
4269 (ppc || alpha) && linux && _vidix=yes
4271 echores "$_vidix"
4273 if test "$_vidix" = yes ; then
4274 _def_vidix='#define CONFIG_VIDIX 1'
4275 _vosrc="$_vosrc vo_cvidix.c"
4276 _vomodules="cvidix $_vomodules"
4277 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4278 test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
4280 # some vidix drivers are architecture and os specific, discard them elsewhere
4281 x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//`
4282 (test $host_arch = "sh" && linux) || _vidix_drivers=`echo $_vidix_drivers | sed s/sh_veu//`
4284 for driver in $_vidix_drivers ; do
4285 uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
4286 eval _vidix_drv_${driver}=yes
4287 eval _def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4288 done
4290 echocheck "VIDIX PCI device name database"
4291 echores "$_vidix_pcidb"
4292 if test "$_vidix_pcidb" = yes ; then
4293 _vidix_pcidb_val=1
4294 else
4295 _vidix_pcidb_val=0
4298 echocheck "VIDIX dhahelper support"
4299 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4300 echores "$_dhahelper"
4302 echocheck "VIDIX svgalib_helper support"
4303 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4304 echores "$_svgalib_helper"
4306 else
4307 _novomodules="cvidix $_novomodules"
4310 if test "$_vidix" = yes && win32; then
4311 _vosrc="$_vosrc vo_winvidix.c"
4312 _vomodules="winvidix $_vomodules"
4313 _libs_mplayer="$_libs_mplayer -lgdi32"
4314 else
4315 _novomodules="winvidix $_novomodules"
4317 if test "$_vidix" = yes && test "$_x11" = yes; then
4318 _vosrc="$_vosrc vo_xvidix.c"
4319 _vomodules="xvidix $_vomodules"
4320 else
4321 _novomodules="xvidix $_novomodules"
4324 echocheck "/dev/mga_vid"
4325 if test "$_mga" = auto ; then
4326 _mga=no
4327 test -c /dev/mga_vid && _mga=yes
4329 if test "$_mga" = yes ; then
4330 _def_mga='#define CONFIG_MGA 1'
4331 _vosrc="$_vosrc vo_mga.c"
4332 _vomodules="mga $_vomodules"
4333 else
4334 _def_mga='#undef CONFIG_MGA'
4335 _novomodules="mga $_novomodules"
4337 echores "$_mga"
4340 echocheck "xmga"
4341 if test "$_xmga" = auto ; then
4342 _xmga=no
4343 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4345 if test "$_xmga" = yes ; then
4346 _def_xmga='#define CONFIG_XMGA 1'
4347 _vosrc="$_vosrc vo_xmga.c"
4348 _vomodules="xmga $_vomodules"
4349 else
4350 _def_xmga='#undef CONFIG_XMGA'
4351 _novomodules="xmga $_novomodules"
4353 echores "$_xmga"
4356 echocheck "GGI"
4357 if test "$_ggi" = auto ; then
4358 cat > $TMPC << EOF
4359 #include <ggi/ggi.h>
4360 int main(void) { ggiInit(); return 0; }
4362 _ggi=no
4363 cc_check -lggi && _ggi=yes
4365 if test "$_ggi" = yes ; then
4366 _def_ggi='#define CONFIG_GGI 1'
4367 _libs_mplayer="$_libs_mplayer -lggi"
4368 _vosrc="$_vosrc vo_ggi.c"
4369 _vomodules="ggi $_vomodules"
4370 else
4371 _def_ggi='#undef CONFIG_GGI'
4372 _novomodules="ggi $_novomodules"
4374 echores "$_ggi"
4376 echocheck "GGI extension: libggiwmh"
4377 if test "$_ggiwmh" = auto ; then
4378 _ggiwmh=no
4379 cat > $TMPC << EOF
4380 #include <ggi/ggi.h>
4381 #include <ggi/wmh.h>
4382 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4384 cc_check -lggi -lggiwmh && _ggiwmh=yes
4386 # needed to get right output on obscure combination
4387 # like --disable-ggi --enable-ggiwmh
4388 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4389 _def_ggiwmh='#define CONFIG_GGIWMH 1'
4390 _libs_mplayer="$_libs_mplayer -lggiwmh"
4391 else
4392 _ggiwmh=no
4393 _def_ggiwmh='#undef CONFIG_GGIWMH'
4395 echores "$_ggiwmh"
4398 echocheck "AA"
4399 if test "$_aa" = auto ; then
4400 cat > $TMPC << EOF
4401 #include <aalib.h>
4402 extern struct aa_hardware_params aa_defparams;
4403 extern struct aa_renderparams aa_defrenderparams;
4404 int main(void) {
4405 aa_context *c;
4406 aa_renderparams *p;
4407 (void) aa_init(0, 0, 0);
4408 c = aa_autoinit(&aa_defparams);
4409 p = aa_getrenderparams();
4410 aa_autoinitkbd(c,0);
4411 return 0; }
4413 _aa=no
4414 for _ld_tmp in "-laa" ; do
4415 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" && _aa=yes && break
4416 done
4418 if test "$_aa" = yes ; then
4419 _def_aa='#define CONFIG_AA 1'
4420 if cygwin ; then
4421 _libs_mplayer="$_libs_mplayer `aalib-config --libs | cut -d " " -f 2,5,6`"
4423 _vosrc="$_vosrc vo_aa.c"
4424 _vomodules="aa $_vomodules"
4425 else
4426 _def_aa='#undef CONFIG_AA'
4427 _novomodules="aa $_novomodules"
4429 echores "$_aa"
4432 echocheck "CACA"
4433 if test "$_caca" = auto ; then
4434 _caca=no
4435 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4436 cat > $TMPC << EOF
4437 #include <caca.h>
4438 #ifdef CACA_API_VERSION_1
4439 #include <caca0.h>
4440 #endif
4441 int main(void) { (void) caca_init(); return 0; }
4443 cc_check `caca-config --libs` && _caca=yes
4446 if test "$_caca" = yes ; then
4447 _def_caca='#define CONFIG_CACA 1'
4448 _inc_extra="$_inc_extra `caca-config --cflags`"
4449 _libs_mplayer="$_libs_mplayer `caca-config --libs`"
4450 _vosrc="$_vosrc vo_caca.c"
4451 _vomodules="caca $_vomodules"
4452 else
4453 _def_caca='#undef CONFIG_CACA'
4454 _novomodules="caca $_novomodules"
4456 echores "$_caca"
4459 echocheck "SVGAlib"
4460 if test "$_svga" = auto ; then
4461 cat > $TMPC << EOF
4462 #include <vga.h>
4463 int main(void) { return 0; }
4465 _svga=no
4466 cc_check -lvga $_ld_lm && _svga=yes
4468 if test "$_svga" = yes ; then
4469 _def_svga='#define CONFIG_SVGALIB 1'
4470 _libs_mplayer="$_libs_mplayer -lvga"
4471 _vosrc="$_vosrc vo_svga.c"
4472 _vomodules="svga $_vomodules"
4473 else
4474 _def_svga='#undef CONFIG_SVGALIB'
4475 _novomodules="svga $_novomodules"
4477 echores "$_svga"
4480 echocheck "FBDev"
4481 if test "$_fbdev" = auto ; then
4482 _fbdev=no
4483 linux && _fbdev=yes
4485 if test "$_fbdev" = yes ; then
4486 _def_fbdev='#define CONFIG_FBDEV 1'
4487 _vosrc="$_vosrc vo_fbdev.c vo_fbdev2.c"
4488 _vomodules="fbdev $_vomodules"
4489 else
4490 _def_fbdev='#undef CONFIG_FBDEV'
4491 _novomodules="fbdev $_novomodules"
4493 echores "$_fbdev"
4497 echocheck "DVB"
4498 if test "$_dvb" = auto ; then
4499 _dvb=no
4500 cat >$TMPC << EOF
4501 #include <poll.h>
4502 #include <sys/ioctl.h>
4503 #include <stdio.h>
4504 #include <time.h>
4505 #include <unistd.h>
4506 #include <ost/dmx.h>
4507 #include <ost/frontend.h>
4508 #include <ost/sec.h>
4509 #include <ost/video.h>
4510 #include <ost/audio.h>
4511 int main(void) {return 0;}
4513 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4514 cc_check $_inc_tmp && _dvb=yes && \
4515 _inc_extra="$_inc_extra $_inc_tmp" && break
4516 done
4518 echores "$_dvb"
4519 if test "$_dvb" = yes ; then
4520 _def_dvb='#define CONFIG_DVB 1'
4521 _def_dvbin='#define CONFIG_DVBIN 1'
4522 _aomodules="mpegpes(dvb) $_aomodules"
4523 _vomodules="mpegpes(dvb) $_vomodules"
4526 echocheck "DVB HEAD"
4527 if test "$_dvbhead" = auto ; then
4528 _dvbhead=no
4530 cat >$TMPC << EOF
4531 #include <poll.h>
4532 #include <sys/ioctl.h>
4533 #include <stdio.h>
4534 #include <time.h>
4535 #include <unistd.h>
4536 #include <linux/dvb/dmx.h>
4537 #include <linux/dvb/frontend.h>
4538 #include <linux/dvb/video.h>
4539 #include <linux/dvb/audio.h>
4540 int main(void) {return 0;}
4542 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4543 cc_check $_inc_tmp && _dvbhead=yes && \
4544 _inc_extra="$_inc_extra $_inc_tmp" && break
4545 done
4547 echores "$_dvbhead"
4548 if test "$_dvbhead" = yes ; then
4549 _def_dvb='#define CONFIG_DVB 1'
4550 _def_dvb_head='#define CONFIG_DVB_HEAD 1'
4551 _def_dvbin='#define CONFIG_DVBIN 1'
4552 _aomodules="mpegpes(dvb) $_aomodules"
4553 _vomodules="mpegpes(dvb) $_vomodules"
4556 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4557 _def_dvb='#undef CONFIG_DVB'
4558 _def_dvb_head='#undef CONFIG_DVB_HEAD'
4559 _def_dvbin='#undef CONFIG_DVBIN '
4560 _aomodules="mpegpes(file) $_aomodules"
4561 _vomodules="mpegpes(file) $_vomodules"
4564 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4565 _dvbin=yes
4566 _inputmodules="dvb $_inputmodules"
4567 else
4568 _dvbin=no
4569 _noinputmodules="dvb $_noinputmodules"
4575 echocheck "PNG support"
4576 if test "$_png" = auto ; then
4577 _png=no
4578 if irix ; then
4579 # Don't check for -lpng on irix since it has its own libpng
4580 # incompatible with the GNU libpng
4581 _res_comment="disabled on irix (not GNU libpng)"
4582 else
4583 cat > $TMPC << EOF
4584 #include <png.h>
4585 #include <string.h>
4586 int main(void) {
4587 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4588 printf("libpng: %s\n", png_libpng_ver);
4589 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4592 if cc_check -lpng -lz $_ld_lm ; then
4593 if tmp_run ; then
4594 _png=yes
4595 else
4596 _res_comment="mismatch of library and header versions"
4601 echores "$_png"
4602 if test "$_png" = yes ; then
4603 _def_png='#define CONFIG_PNG 1'
4604 _ld_extra="$_ld_extra -lpng -lz"
4605 _vosrc="$_vosrc vo_png.c"
4606 _vomodules="png $_vomodules"
4607 else
4608 _def_png='#undef CONFIG_PNG'
4609 _novomodules="png $_novomodules"
4612 echocheck "JPEG support"
4613 if test "$_jpeg" = auto ; then
4614 _jpeg=no
4615 cat > $TMPC << EOF
4616 #include <stdio.h>
4617 #include <stdlib.h>
4618 #include <setjmp.h>
4619 #include <string.h>
4620 #include <jpeglib.h>
4621 int main(void) { return 0; }
4623 if cc_check -ljpeg $_ld_lm ; then
4624 if tmp_run ; then
4625 _jpeg=yes
4629 echores "$_jpeg"
4631 if test "$_jpeg" = yes ; then
4632 _def_jpeg='#define CONFIG_JPEG 1'
4633 _vosrc="$_vosrc vo_jpeg.c"
4634 _vomodules="jpeg $_vomodules"
4635 _ld_extra="$_ld_extra -ljpeg"
4636 else
4637 _def_jpeg='#undef CONFIG_JPEG'
4638 _novomodules="jpeg $_novomodules"
4643 echocheck "PNM support"
4644 if test "$_pnm" = yes; then
4645 _def_pnm="#define CONFIG_PNM"
4646 _vosrc="$_vosrc vo_pnm.c"
4647 _vomodules="pnm $_vomodules"
4648 else
4649 _def_pnm="#undef CONFIG_PNM"
4650 _novomodules="pnm $_novomodules"
4652 echores "$_pnm"
4656 echocheck "GIF support"
4657 # This is to appease people who want to force gif support.
4658 # If it is forced to yes, then we still do checks to determine
4659 # which gif library to use.
4660 if test "$_gif" = yes ; then
4661 _force_gif=yes
4662 _gif=auto
4665 if test "$_gif" = auto ; then
4666 _gif=no
4667 cat > $TMPC << EOF
4668 #include <gif_lib.h>
4669 int main(void) { return 0; }
4671 for _ld_gif in "-lungif" "-lgif" ; do
4672 cc_check $_ld_gif && tmp_run && _gif=yes && break
4673 done
4676 # If no library was found, and the user wants support forced,
4677 # then we force it on with libgif, as this is the safest
4678 # assumption IMHO. (libungif & libregif both create symbolic
4679 # links to libgif. We also assume that no x11 support is needed,
4680 # because if you are forcing this, then you _should_ know what
4681 # you are doing. [ Besides, package maintainers should never
4682 # have compiled x11 deps into libungif in the first place. ] )
4683 # </rant>
4684 # --Joey
4685 if test "$_force_gif" = yes && test "$_gif" = no ; then
4686 _gif=yes
4687 _ld_gif="-lgif"
4690 if test "$_gif" = yes ; then
4691 _def_gif='#define CONFIG_GIF 1'
4692 _vosrc="$_vosrc vo_gif89a.c"
4693 _codecmodules="gif $_codecmodules"
4694 _vomodules="gif89a $_vomodules"
4695 _res_comment="old version, some encoding functions disabled"
4696 _def_gif_4='#undef CONFIG_GIF_4'
4697 _ld_extra="$_ld_extra $_ld_gif"
4699 cat > $TMPC << EOF
4700 #include <signal.h>
4701 #include <gif_lib.h>
4702 void catch() { exit(1); }
4703 int main(void) {
4704 signal(SIGSEGV, catch); // catch segfault
4705 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4706 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4707 return 0;
4710 if cc_check "$_ld_gif" && tmp_run ; then
4711 _def_gif_4='#define CONFIG_GIF_4 1'
4712 _res_comment=""
4714 else
4715 _def_gif='#undef CONFIG_GIF'
4716 _def_gif_4='#undef CONFIG_GIF_4'
4717 _novomodules="gif89a $_novomodules"
4718 _nocodecmodules="gif $_nocodecmodules"
4720 echores "$_gif"
4723 case "$_gif" in yes*)
4724 echocheck "broken giflib workaround"
4725 _def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4727 cat > $TMPC << EOF
4728 #include <gif_lib.h>
4729 int main(void) {
4730 GifFileType gif;
4731 printf("UserData is at address %p\n", gif.UserData);
4732 return 0;
4735 if cc_check "$_ld_gif" && tmp_run ; then
4736 _def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4737 echores "disabled"
4738 else
4739 echores "enabled"
4742 esac
4745 echocheck "VESA support"
4746 if test "$_vesa" = auto ; then
4747 cat > $TMPC << EOF
4748 #include <vbe.h>
4749 int main(void) { vbeVersion(); return 0; }
4751 _vesa=no
4752 cc_check -lvbe -llrmi && _vesa=yes
4754 if test "$_vesa" = yes ; then
4755 _def_vesa='#define CONFIG_VESA 1'
4756 _libs_mplayer="$_libs_mplayer -lvbe -llrmi"
4757 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c gtf.c"
4758 _vomodules="vesa $_vomodules"
4759 else
4760 _def_vesa='#undef CONFIG_VESA'
4761 _novomodules="vesa $_novomodules"
4763 echores "$_vesa"
4765 #################
4766 # VIDEO + AUDIO #
4767 #################
4770 echocheck "SDL"
4771 if test -z "$_sdlconfig" ; then
4772 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4773 _sdlconfig="sdl-config"
4774 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4775 _sdlconfig="sdl11-config"
4776 else
4777 _sdlconfig=false
4780 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4781 cat > $TMPC << EOF
4782 #include <SDL.h>
4783 int main(void) {
4784 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4785 return 0;
4788 _sdl=no
4789 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4790 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
4791 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
4792 if test "$_sdlversion" -gt 116 ; then
4793 if test "$_sdlversion" -lt 121 ; then
4794 _def_sdlbuggy='#define BUGGY_SDL'
4795 else
4796 _def_sdlbuggy='#undef BUGGY_SDL'
4798 _sdl=yes
4803 if test "$_sdl" = yes ; then
4804 _def_sdl='#define CONFIG_SDL 1'
4805 if cygwin ; then
4806 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/`"
4807 _inc_extra="$_inc_extra `$_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/`"
4808 elif mingw32 ; then
4809 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//`"
4810 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-Dmain=SDL_main//`"
4811 else
4812 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs`"
4813 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//`"
4815 _vosrc="$_vosrc vo_sdl.c"
4816 _vomodules="sdl $_vomodules"
4817 _aosrc="$_aosrc ao_sdl.c"
4818 _aomodules="sdl $_aomodules"
4819 _res_comment="using $_sdlconfig"
4820 else
4821 _def_sdl='#undef CONFIG_SDL'
4822 _novomodules="sdl $_novomodules"
4823 _noaomodules="sdl $_noaomodules"
4825 echores "$_sdl"
4828 if win32; then
4830 echocheck "Windows waveout"
4831 if test "$_win32waveout" = auto ; then
4832 cat > $TMPC << EOF
4833 #include <windows.h>
4834 #include <mmsystem.h>
4835 int main(void) { return 0; }
4837 _win32waveout=no
4838 cc_check -lwinmm && _win32waveout=yes
4840 if test "$_win32waveout" = yes ; then
4841 _def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4842 _libs_mplayer="$_libs_mplayer -lwinmm"
4843 _aosrc="$_aosrc ao_win32.c"
4844 _aomodules="win32 $_aomodules"
4845 else
4846 _def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4847 _noaomodules="win32 $_noaomodules"
4849 echores "$_win32waveout"
4851 echocheck "Directx"
4852 if test "$_directx" = auto ; then
4853 cat > $TMPC << EOF
4854 #include <windows.h>
4855 #include <ddraw.h>
4856 #include <dsound.h>
4857 int main(void) { return 0; }
4859 _directx=no
4860 cc_check -lgdi32 && _directx=yes
4862 if test "$_directx" = yes ; then
4863 _def_directx='#define CONFIG_DIRECTX 1'
4864 _libs_mplayer="$_libs_mplayer -lgdi32"
4865 _vosrc="$_vosrc vo_directx.c"
4866 _vomodules="directx $_vomodules"
4867 _aosrc="$_aosrc ao_dsound.c"
4868 _aomodules="dsound $_aomodules"
4869 else
4870 _def_directx='#undef CONFIG_DIRECTX'
4871 _novomodules="directx $_novomodules"
4872 _noaomodules="dsound $_noaomodules"
4874 echores "$_directx"
4876 fi #if win32; then
4879 echocheck "NAS"
4880 if test "$_nas" = auto ; then
4881 cat > $TMPC << EOF
4882 #include <audio/audiolib.h>
4883 int main(void) { return 0; }
4885 _nas=no
4886 cc_check $_ld_lm -laudio -lXt && _nas=yes
4888 if test "$_nas" = yes ; then
4889 _def_nas='#define CONFIG_NAS 1'
4890 _libs_mplayer="$_libs_mplayer -laudio -lXt"
4891 _aosrc="$_aosrc ao_nas.c"
4892 _aomodules="nas $_aomodules"
4893 else
4894 _noaomodules="nas $_noaomodules"
4895 _def_nas='#undef CONFIG_NAS'
4897 echores "$_nas"
4899 echocheck "DXR2"
4900 if test "$_dxr2" = auto; then
4901 _dxr2=no
4902 cat > $TMPC << EOF
4903 #include <dxr2ioctl.h>
4904 int main(void) { return 0; }
4906 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
4907 cc_check $_inc_tmp && _dxr2=yes && \
4908 _inc_extra="$_inc_extra $_inc_tmp" && break
4909 done
4911 if test "$_dxr2" = yes; then
4912 _def_dxr2='#define CONFIG_DXR2 1'
4913 _vosrc="$_vosrc vo_dxr2.c"
4914 _aosrc="$_aosrc ao_dxr2.c"
4915 _aomodules="dxr2 $_aomodules"
4916 _vomodules="dxr2 $_vomodules"
4917 else
4918 _def_dxr2='#undef CONFIG_DXR2'
4919 _noaomodules="dxr2 $_noaomodules"
4920 _novomodules="dxr2 $_novomodules"
4922 echores "$_dxr2"
4924 echocheck "DXR3/H+"
4925 if test "$_dxr3" = auto ; then
4926 cat > $TMPC << EOF
4927 #include <linux/em8300.h>
4928 int main(void) { return 0; }
4930 _dxr3=no
4931 cc_check && _dxr3=yes
4933 if test "$_dxr3" = yes ; then
4934 _def_dxr3='#define CONFIG_DXR3 1'
4935 _vosrc="$_vosrc vo_dxr3.c"
4936 _vomodules="dxr3 $_vomodules"
4937 else
4938 _def_dxr3='#undef CONFIG_DXR3'
4939 _novomodules="dxr3 $_novomodules"
4941 echores "$_dxr3"
4944 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4945 if test "$_ivtv" = auto ; then
4946 cat > $TMPC << EOF
4947 #include <stdlib.h>
4948 #include <inttypes.h>
4949 #include <linux/types.h>
4950 #include <linux/videodev2.h>
4951 #include <linux/ivtv.h>
4952 #include <sys/ioctl.h>
4953 int main(void) {
4954 struct ivtv_cfg_stop_decode sd;
4955 struct ivtv_cfg_start_decode sd1;
4956 ioctl (0, IVTV_IOC_START_DECODE, &sd1);
4957 ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
4958 return 0; }
4960 _ivtv=no
4961 cc_check && _ivtv=yes
4963 if test "$_ivtv" = yes ; then
4964 _def_ivtv='#define CONFIG_IVTV 1'
4965 _vosrc="$_vosrc vo_ivtv.c"
4966 _vomodules="ivtv $_vomodules"
4967 _aosrc="$_aosrc ao_ivtv.c"
4968 _aomodules="ivtv $_aomodules"
4969 else
4970 _def_ivtv='#undef CONFIG_IVTV'
4971 _novomodules="ivtv $_novomodules"
4972 _noaomodules="ivtv $_noaomodules"
4974 echores "$_ivtv"
4977 echocheck "V4L2 MPEG Decoder"
4978 if test "$_v4l2" = auto ; then
4979 cat > $TMPC << EOF
4980 #include <stdlib.h>
4981 #include <inttypes.h>
4982 #include <linux/types.h>
4983 #include <linux/videodev2.h>
4984 #include <linux/version.h>
4985 int main(void) {
4986 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4987 #error kernel headers too old, need 2.6.22
4988 bad_kernel_version();
4989 #endif
4990 struct v4l2_ext_controls ctrls;
4991 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4992 return 0;
4995 _v4l2=no
4996 cc_check && _v4l2=yes
4998 if test "$_v4l2" = yes ; then
4999 _def_v4l2='#define CONFIG_V4L2_DECODER 1'
5000 _vosrc="$_vosrc vo_v4l2.c"
5001 _vomodules="v4l2 $_vomodules"
5002 _aosrc="$_aosrc ao_v4l2.c"
5003 _aomodules="v4l2 $_aomodules"
5004 else
5005 _def_v4l2='#undef CONFIG_V4L2_DECODER'
5006 _novomodules="v4l2 $_novomodules"
5007 _noaomodules="v4l2 $_noaomodules"
5009 echores "$_v4l2"
5013 #########
5014 # AUDIO #
5015 #########
5018 echocheck "OSS Audio"
5019 if test "$_ossaudio" = auto ; then
5020 cat > $TMPC << EOF
5021 #include <sys/ioctl.h>
5022 #include <$_soundcard_header>
5023 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5025 _ossaudio=no
5026 cc_check && _ossaudio=yes
5028 if test "$_ossaudio" = yes ; then
5029 _def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5030 _aosrc="$_aosrc ao_oss.c"
5031 _aomodules="oss $_aomodules"
5032 if test "$_linux_devfs" = yes; then
5033 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5034 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5035 else
5036 cat > $TMPC << EOF
5037 #include <sys/ioctl.h>
5038 #include <$_soundcard_header>
5039 #ifdef OPEN_SOUND_SYSTEM
5040 int main(void) { return 0; }
5041 #else
5042 #error Not the real thing
5043 #endif
5045 _real_ossaudio=no
5046 cc_check && _real_ossaudio=yes
5047 if test "$_real_ossaudio" = yes; then
5048 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5049 elif netbsd || openbsd ; then
5050 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5051 _ld_extra="$_ld_extra -lossaudio"
5052 else
5053 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5055 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5057 else
5058 _def_ossaudio='#undef CONFIG_OSS_AUDIO'
5059 _def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5060 _def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5061 _noaomodules="oss $_noaomodules"
5063 echores "$_ossaudio"
5066 echocheck "aRts"
5067 if test "$_arts" = auto ; then
5068 _arts=no
5069 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5071 cat > $TMPC << EOF
5072 #include <artsc.h>
5073 int main(void) { return 0; }
5075 cc_check `artsc-config --libs` `artsc-config --cflags` && tmp_run && _arts=yes
5080 if test "$_arts" = yes ; then
5081 _def_arts='#define CONFIG_ARTS 1'
5082 _aosrc="$_aosrc ao_arts.c"
5083 _aomodules="arts $_aomodules"
5084 _libs_mplayer="$_libs_mplayer `artsc-config --libs`"
5085 _inc_extra="$_inc_extra `artsc-config --cflags`"
5086 else
5087 _noaomodules="arts $_noaomodules"
5089 echores "$_arts"
5092 echocheck "EsounD"
5093 if test "$_esd" = auto ; then
5094 _esd=no
5095 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5097 cat > $TMPC << EOF
5098 #include <esd.h>
5099 int main(void) { int fd = esd_open_sound("test"); return fd; }
5101 cc_check `esd-config --libs` `esd-config --cflags` && _esd=yes
5105 echores "$_esd"
5107 if test "$_esd" = yes ; then
5108 _def_esd='#define CONFIG_ESD 1'
5109 _aosrc="$_aosrc ao_esd.c"
5110 _aomodules="esd $_aomodules"
5111 _libs_mplayer="$_libs_mplayer `esd-config --libs`"
5112 _inc_extra="$_inc_extra `esd-config --cflags`"
5114 echocheck "esd_get_latency()"
5115 cat > $TMPC << EOF
5116 #include <esd.h>
5117 int main(void) { return esd_get_latency(0); }
5119 cc_check `esd-config --libs` `esd-config --cflags` && _esd_latency=yes && _def_esd_latency='#define CONFIG_ESD_LATENCY'
5120 echores "$_esd_latency"
5121 else
5122 _def_esd='#undef CONFIG_ESD'
5123 _def_esd_latency='#undef CONFIG_ESD_LATENCY'
5124 _noaomodules="esd $_noaomodules"
5127 echocheck "pulse"
5128 if test "$_pulse" = auto ; then
5129 _pulse=no
5130 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5132 cat > $TMPC << EOF
5133 #include <pulse/pulseaudio.h>
5134 int main(void) { return 0; }
5136 cc_check `$_pkg_config --libs --cflags libpulse` && tmp_run && _pulse=yes
5140 echores "$_pulse"
5142 if test "$_pulse" = yes ; then
5143 _def_pulse='#define CONFIG_PULSE 1'
5144 _aosrc="$_aosrc ao_pulse.c"
5145 _aomodules="pulse $_aomodules"
5146 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs libpulse`"
5147 _inc_extra="$_inc_extra `$_pkg_config --cflags libpulse`"
5148 else
5149 _def_pulse='#undef CONFIG_PULSE'
5150 _noaomodules="pulse $_noaomodules"
5154 echocheck "JACK"
5155 if test "$_jack" = auto ; then
5156 _jack=yes
5158 cat > $TMPC << EOF
5159 #include <jack/jack.h>
5160 int main(void) { jack_client_new("test"); return 0; }
5162 if cc_check -ljack ; then
5163 _libs_mplayer="$_libs_mplayer -ljack"
5164 elif cc_check `$_pkg_config --libs --cflags --silence-errors jack` ; then
5165 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs jack`"
5166 _inc_extra="$_inc_extra "`$_pkg_config --cflags jack`""
5167 else
5168 _jack=no
5172 if test "$_jack" = yes ; then
5173 _def_jack='#define CONFIG_JACK 1'
5174 _aosrc="$_aosrc ao_jack.c"
5175 _aomodules="jack $_aomodules"
5176 else
5177 _noaomodules="jack $_noaomodules"
5179 echores "$_jack"
5181 echocheck "OpenAL"
5182 if test "$_openal" = auto ; then
5183 _openal=no
5184 cat > $TMPC << EOF
5185 #ifdef OPENAL_AL_H
5186 #include <OpenAL/al.h>
5187 #else
5188 #include <AL/al.h>
5189 #endif
5190 int main(void) {
5191 alSourceQueueBuffers(0, 0, 0);
5192 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5193 return 0;
5196 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5197 cc_check $I && _openal=yes && break
5198 cc_check -DOPENAL_AL_H=1 $I && _def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5199 done
5200 test "$_openal" = yes && _libs_mplayer="$_libs_mplayer $I"
5202 if test "$_openal" = yes ; then
5203 _def_openal='#define CONFIG_OPENAL 1'
5204 _aosrc="$_aosrc ao_openal.c"
5205 _aomodules="openal $_aomodules"
5206 else
5207 _noaomodules="openal $_noaomodules"
5209 echores "$_openal"
5211 echocheck "ALSA audio"
5212 if test "$_alloca" != yes ; then
5213 _alsa=no
5214 _res_comment="alloca missing"
5216 if test "$_alsa" != no ; then
5217 _alsa=no
5218 cat > $TMPC << EOF
5219 #include <sys/time.h>
5220 #include <sys/asoundlib.h>
5221 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5222 #error "alsa version != 0.5.x"
5223 #endif
5224 int main(void) { return 0; }
5226 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5228 cat > $TMPC << EOF
5229 #include <sys/time.h>
5230 #include <sys/asoundlib.h>
5231 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5232 #error "alsa version != 0.9.x"
5233 #endif
5234 int main(void) { return 0; }
5236 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5237 cat > $TMPC << EOF
5238 #include <sys/time.h>
5239 #include <alsa/asoundlib.h>
5240 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5241 #error "alsa version != 0.9.x"
5242 #endif
5243 int main(void) { return 0; }
5245 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5247 cat > $TMPC << EOF
5248 #include <sys/time.h>
5249 #include <sys/asoundlib.h>
5250 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5251 #error "alsa version != 1.0.x"
5252 #endif
5253 int main(void) { return 0; }
5255 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5256 cat > $TMPC << EOF
5257 #include <sys/time.h>
5258 #include <alsa/asoundlib.h>
5259 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5260 #error "alsa version != 1.0.x"
5261 #endif
5262 int main(void) { return 0; }
5264 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5266 _def_alsa='#undef CONFIG_ALSA'
5267 _def_alsa5='#undef CONFIG_ALSA5'
5268 _def_alsa9='#undef CONFIG_ALSA9'
5269 _def_alsa1x='#undef CONFIG_ALSA1X'
5270 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5271 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5272 if test "$_alsaver" ; then
5273 _alsa=yes
5274 if test "$_alsaver" = '0.5.x' ; then
5275 _alsa5=yes
5276 _aosrc="$_aosrc ao_alsa5.c"
5277 _aomodules="alsa5 $_aomodules"
5278 _def_alsa5='#define CONFIG_ALSA5 1'
5279 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5280 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5281 elif test "$_alsaver" = '0.9.x-sys' ; then
5282 _alsa9=yes
5283 _aosrc="$_aosrc ao_alsa.c"
5284 _aomodules="alsa $_aomodules"
5285 _def_alsa='#define CONFIG_ALSA 1'
5286 _def_alsa9='#define CONFIG_ALSA9 1'
5287 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5288 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5289 elif test "$_alsaver" = '0.9.x-alsa' ; then
5290 _alsa9=yes
5291 _aosrc="$_aosrc ao_alsa.c"
5292 _aomodules="alsa $_aomodules"
5293 _def_alsa='#define CONFIG_ALSA 1'
5294 _def_alsa9='#define CONFIG_ALSA9 1'
5295 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5296 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5297 elif test "$_alsaver" = '1.0.x-sys' ; then
5298 _alsa1x=yes
5299 _aosrc="$_aosrc ao_alsa.c"
5300 _aomodules="alsa $_aomodules"
5301 _def_alsa='#define CONFIG_ALSA 1'
5302 _def_alsa1x="#define CONFIG_ALSA1X 1"
5303 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5304 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5305 elif test "$_alsaver" = '1.0.x-alsa' ; then
5306 _alsa1x=yes
5307 _aosrc="$_aosrc ao_alsa.c"
5308 _aomodules="alsa $_aomodules"
5309 _def_alsa='#define CONFIG_ALSA 1'
5310 _def_alsa1x="#define CONFIG_ALSA1X 1"
5311 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5312 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5313 else
5314 _alsa=no
5315 _res_comment="unknown version"
5317 _ld_extra="$_ld_extra -lasound $_ld_dl $_ld_pthread"
5318 else
5319 _noaomodules="alsa $_noaomodules"
5321 echores "$_alsa"
5324 echocheck "Sun audio"
5325 if test "$_sunaudio" = auto ; then
5326 cat > $TMPC << EOF
5327 #include <sys/types.h>
5328 #include <sys/audioio.h>
5329 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5331 _sunaudio=no
5332 cc_check && _sunaudio=yes
5334 if test "$_sunaudio" = yes ; then
5335 _def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5336 _aosrc="$_aosrc ao_sun.c"
5337 _aomodules="sun $_aomodules"
5338 else
5339 _def_sunaudio='#undef CONFIG_SUN_AUDIO'
5340 _noaomodules="sun $_noaomodules"
5342 echores "$_sunaudio"
5345 if sunos; then
5346 echocheck "Sun mediaLib"
5347 if test "$_mlib" = auto ; then
5348 _mlib=no
5349 cat > $TMPC << EOF
5350 #include <mlib.h>
5351 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5353 cc_check -lmlib && _mlib=yes
5355 test "$_mlib" = yes && _cpuexts="MLIB $_cpuexts"
5356 echores "$_mlib"
5357 fi #if sunos
5360 if irix; then
5361 echocheck "SGI audio"
5362 if test "$_sgiaudio" = auto ; then
5363 # check for SGI audio
5364 cat > $TMPC << EOF
5365 #include <dmedia/audio.h>
5366 int main(void) { return 0; }
5368 _sgiaudio=no
5369 cc_check && _sgiaudio=yes
5371 if test "$_sgiaudio" = "yes" ; then
5372 _def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5373 _libs_mplayer="$_libs_mplayer -laudio"
5374 _aosrc="$_aosrc ao_sgi.c"
5375 _aomodules="sgi $_aomodules"
5376 else
5377 _def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5378 _noaomodules="sgi $_noaomodules"
5380 echores "$_sgiaudio"
5381 fi #if irix
5384 # set default CD/DVD devices
5385 if win32 || os2 ; then
5386 default_cdrom_device="D:"
5387 elif darwin ; then
5388 default_cdrom_device="/dev/disk1"
5389 elif dragonfly ; then
5390 default_cdrom_device="/dev/cd0"
5391 elif freebsd ; then
5392 default_cdrom_device="/dev/acd0"
5393 elif openbsd ; then
5394 default_cdrom_device="/dev/rcd0a"
5395 elif sunos ; then
5396 default_cdrom_device="/vol/dev/aliases/cdrom0"
5397 elif amigaos ; then
5398 default_cdrom_device="a1ide.device:2"
5399 else
5400 default_cdrom_device="/dev/cdrom"
5403 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5404 default_dvd_device=$default_cdrom_device
5405 elif darwin ; then
5406 default_dvd_device="/dev/rdiskN"
5407 else
5408 default_dvd_device="/dev/dvd"
5412 echocheck "VCD support"
5413 if linux || freebsd || netbsd || dragonfly || bsdos || darwin || sunos || mingw32; then
5414 _inputmodules="vcd $_inputmodules"
5415 _def_vcd='#define CONFIG_VCD 1'
5416 _vcd="yes"
5417 else
5418 _def_vcd='#undef CONFIG_VCD'
5419 _noinputmodules="vcd $_noinputmodules"
5420 _res_comment="not supported on this OS"
5421 _vcd="no"
5423 echores "$_vcd"
5427 echocheck "dvdread"
5428 if test "$_dvdread_internal" = auto ; then
5429 _dvdread_internal=no
5430 _dvdread=no
5431 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5432 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5433 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5434 || darwin || win32; then
5435 _dvdread_internal=yes
5436 _dvdread=yes
5438 elif test "$_dvdread" = auto ; then
5439 _dvdread=no
5440 if test "$_dl" = yes; then
5441 cat > $TMPC << EOF
5442 #include <inttypes.h>
5443 #include <dvdread/dvd_reader.h>
5444 #include <dvdread/ifo_types.h>
5445 #include <dvdread/ifo_read.h>
5446 #include <dvdread/nav_read.h>
5447 int main(void) { return 0; }
5450 _dvdreadcflags=`$_dvdreadconfig --cflags`
5451 _dvdreadlibs=`$_dvdreadconfig --libs`
5452 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5453 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5454 _dvdread=yes
5455 _inc_extra="$_inc_extra $_dvdreadcflags"
5456 _ld_extra="$_ld_extra $_dvdreadlibs"
5457 _res_comment="external"
5461 if test "$_dvdread_internal" = yes; then
5462 _def_dvdread_internal="#define CONFIG_DVDREAD_INTERNAL 1"
5463 _def_dvdread='#define CONFIG_DVDREAD 1'
5464 _inputmodules="dvdread(internal) $_inputmodules"
5465 _largefiles=yes
5466 _res_comment="internal"
5467 elif test "$_dvdread" = yes; then
5468 _def_dvdread='#define CONFIG_DVDREAD 1'
5469 _largefiles=yes
5470 _ld_extra="$_ld_extra -ldvdread"
5471 _inputmodules="dvdread(external) $_inputmodules"
5472 _res_comment="external"
5473 else
5474 _def_dvdread_internal="#undef CONFIG_DVDREAD_INTERNAL"
5475 _def_dvdread='#undef CONFIG_DVDREAD'
5476 _noinputmodules="dvdread $_noinputmodules"
5478 echores "$_dvdread"
5481 echocheck "internal libdvdcss"
5482 if test "$_libdvdcss_internal" = auto ; then
5483 _libdvdcss_internal=no
5484 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5485 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5487 if test "$_libdvdcss_internal" = yes ; then
5488 if linux || netbsd || openbsd || bsdos ; then
5489 _def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5490 openbsd && _def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5491 elif freebsd || dragonfly ; then
5492 _def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5493 elif darwin ; then
5494 _def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5495 _ld_extra="$_ld_extra -framework IOKit"
5496 elif cygwin ; then
5497 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5498 elif beos ; then
5499 cflags_libdvdcss="-DSYS_BEOS"
5500 elif os2 ; then
5501 cflags_libdvdcss="-DSYS_OS2"
5503 cflags_libdvdcss_dvdread="-Ilibdvdcss -DHAVE_DVDCSS_DVDCSS_H"
5504 _inputmodules="libdvdcss(internal) $_inputmodules"
5505 _largefiles=yes
5506 else
5507 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5509 echores "$_libdvdcss_internal"
5512 echocheck "cdparanoia"
5513 if test "$_cdparanoia" = auto ; then
5514 cat > $TMPC <<EOF
5515 #include <cdda_interface.h>
5516 #include <cdda_paranoia.h>
5517 // This need a better test. How ?
5518 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5520 _cdparanoia=no
5521 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5522 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5523 _cdparanoia=yes && _inc_extra="$_inc_extra $_inc_tmp" && break
5524 done
5526 if test "$_cdparanoia" = yes ; then
5527 _cdda='yes'
5528 _ld_extra="$_ld_extra -lcdda_interface -lcdda_paranoia"
5529 openbsd && _ld_extra="$_ld_extra -lutil"
5531 echores "$_cdparanoia"
5534 echocheck "libcdio"
5535 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5536 cat > $TMPC << EOF
5537 #include <stdio.h>
5538 #include <cdio/version.h>
5539 #include <cdio/cdda.h>
5540 #include <cdio/paranoia.h>
5541 int main(void) {
5542 void *test = cdda_verbose_set;
5543 printf("%s\n", CDIO_VERSION);
5544 return test == (void *)1;
5547 _libcdio=no
5548 for _ld_tmp in "" "-lwinmm" ; do
5549 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5550 cc_check $_ld_tmp $_ld_lm \
5551 && _libcdio=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5552 done
5553 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5554 _inc_tmp=`$_pkg_config --cflags libcdio_paranoia`
5555 _ld_tmp=`$_pkg_config --libs libcdio_paranoia`
5556 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5557 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5560 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5561 _cdda='yes'
5562 _def_libcdio='#define CONFIG_LIBCDIO'
5563 _def_havelibcdio='yes'
5564 else
5565 if test "$_cdparanoia" = yes ; then
5566 _res_comment="using cdparanoia"
5568 _def_libcdio='#undef CONFIG_LIBCDIO'
5569 _def_havelibcdio='no'
5571 echores "$_libcdio"
5573 if test "$_cdda" = yes ; then
5574 test $_cddb = auto && test $_network = yes && _cddb=yes
5575 _def_cdparanoia='#define CONFIG_CDDA'
5576 _inputmodules="cdda $_inputmodules"
5577 else
5578 _def_cdparanoia='#undef CONFIG_CDDA'
5579 _noinputmodules="cdda $_noinputmodules"
5582 if test "$_cddb" = yes ; then
5583 _def_cddb='#define CONFIG_CDDB'
5584 _inputmodules="cddb $_inputmodules"
5585 else
5586 _cddb=no
5587 _def_cddb='#undef CONFIG_CDDB'
5588 _noinputmodules="cddb $_noinputmodules"
5591 echocheck "bitmap font support"
5592 if test "$_bitmap_font" = yes ; then
5593 _def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5594 else
5595 _def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5597 echores "$_bitmap_font"
5600 echocheck "freetype >= 2.0.9"
5602 # freetype depends on iconv
5603 if test "$_iconv" = no ; then
5604 _freetype=no
5605 _res_comment="iconv support needed"
5608 if test "$_freetype" = auto ; then
5609 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5610 cat > $TMPC << EOF
5611 #include <stdio.h>
5612 #include <ft2build.h>
5613 #include FT_FREETYPE_H
5614 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5615 #error "Need FreeType 2.0.9 or newer"
5616 #endif
5617 int main(void) {
5618 FT_Library library;
5619 FT_Int major=-1,minor=-1,patch=-1;
5620 int err=FT_Init_FreeType(&library);
5621 if(err){
5622 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
5623 exit(err);
5625 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
5626 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
5627 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
5628 (int)major,(int)minor,(int)patch );
5629 if(major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR){
5630 printf("Library and header version mismatch! Fix it in your distribution!\n");
5631 exit(1);
5633 return 0;
5636 _freetype=no
5637 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _freetype=yes
5638 else
5639 _freetype=no
5642 if test "$_freetype" = yes ; then
5643 _def_freetype='#define CONFIG_FREETYPE'
5644 _inc_extra="$_inc_extra `$_freetypeconfig --cflags`"
5645 _ld_extra="$_ld_extra `$_freetypeconfig --libs`"
5646 else
5647 _def_freetype='#undef CONFIG_FREETYPE'
5649 echores "$_freetype"
5651 if test "$_freetype" = no ; then
5652 _fontconfig=no
5653 _res_comment="freetype support needed"
5655 echocheck "fontconfig"
5656 if test "$_fontconfig" = auto ; then
5657 cat > $TMPC << EOF
5658 #include <stdio.h>
5659 #include <stdlib.h>
5660 #include <fontconfig/fontconfig.h>
5661 int main(void) {
5662 int err = FcInit();
5663 if(err == FcFalse){
5664 printf("Couldn't initialize fontconfig lib\n");
5665 exit(err);
5667 return 0;
5670 _fontconfig=no
5671 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
5672 _ld_tmp="-lfontconfig $_ld_tmp"
5673 cc_check $_ld_tmp && _fontconfig=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5674 done
5675 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5676 _inc_tmp=`$_pkg_config --cflags fontconfig`
5677 _ld_tmp=`$_pkg_config --libs fontconfig`
5678 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5679 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5682 if test "$_fontconfig" = yes ; then
5683 _def_fontconfig='#define CONFIG_FONTCONFIG'
5684 else
5685 _def_fontconfig='#undef CONFIG_FONTCONFIG'
5687 echores "$_fontconfig"
5690 echocheck "SSA/ASS support"
5691 # libass depends on FreeType
5692 if test "$_freetype" = no ; then
5693 _ass=no
5694 _res_comment="FreeType support needed"
5697 if test "$_ass" = auto ; then
5698 cat > $TMPC << EOF
5699 #include <ft2build.h>
5700 #include FT_FREETYPE_H
5701 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
5702 #error "Need FreeType 2.1.8 or newer"
5703 #endif
5704 int main(void) { return 0; }
5706 _ass=no
5707 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _ass=yes
5708 if test "$_ass" = no ; then
5709 _res_comment="FreeType >= 2.1.8 needed"
5712 if test "$_ass" = yes ; then
5713 _def_ass='#define CONFIG_ASS'
5714 else
5715 _def_ass='#undef CONFIG_ASS'
5717 echores "$_ass"
5720 echocheck "fribidi with charsets"
5721 if test "$_fribidi" = auto ; then
5722 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
5723 cat > $TMPC << EOF
5724 #include <stdio.h>
5725 /* workaround for fribidi 0.10.4 and below */
5726 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5727 #include <fribidi/fribidi.h>
5728 int main(void) {
5729 if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
5730 printf("Fribidi headers are not consistents with the library!\n");
5731 exit(1);
5733 return 0;
5736 _fribidi=no
5737 cc_check `$_fribidiconfig --cflags` `$_fribidiconfig --libs` && tmp_run && _fribidi=yes
5738 else
5739 _fribidi=no
5742 if test "$_fribidi" = yes ; then
5743 _def_fribidi='#define CONFIG_FRIBIDI'
5744 _inc_extra="$_inc_extra `$_fribidiconfig --cflags`"
5745 _ld_extra="$_ld_extra `$_fribidiconfig --libs`"
5746 else
5747 _def_fribidi='#undef CONFIG_FRIBIDI'
5749 echores "$_fribidi"
5752 echocheck "ENCA"
5753 if test "$_enca" = auto ; then
5754 cat > $TMPC << EOF
5755 #include <sys/types.h>
5756 #include <enca.h>
5757 int main(void) {
5758 const char **langs;
5759 size_t langcnt;
5760 langs = enca_get_languages(&langcnt);
5761 return 0;
5764 _enca=no
5765 cc_check -lenca $_ld_lm && _enca=yes
5767 if test "$_enca" = yes ; then
5768 _def_enca='#define CONFIG_ENCA 1'
5769 _ld_extra="$_ld_extra -lenca"
5770 else
5771 _def_enca='#undef CONFIG_ENCA'
5773 echores "$_enca"
5776 echocheck "zlib"
5777 cat > $TMPC << EOF
5778 #include <zlib.h>
5779 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
5781 _zlib=no
5782 cc_check -lz && _zlib=yes
5783 if test "$_zlib" = yes ; then
5784 _def_zlib='#define CONFIG_ZLIB 1'
5785 _ld_extra="$_ld_extra -lz"
5786 else
5787 _def_zlib='#undef CONFIG_ZLIB'
5788 _libavdecoders=`echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// -e/TSCC_DECODER// `
5789 _libavencoders=`echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// `
5791 echores "$_zlib"
5794 echocheck "RTC"
5795 if test "$_rtc" = auto ; then
5796 cat > $TMPC << EOF
5797 #include <sys/ioctl.h>
5798 #ifdef __linux__
5799 #include <linux/rtc.h>
5800 #else
5801 #include <rtc.h>
5802 #define RTC_PIE_ON RTCIO_PIE_ON
5803 #endif
5804 int main(void) { return RTC_PIE_ON; }
5806 _rtc=no
5807 cc_check && _rtc=yes
5808 ppc && _rtc=no
5810 if test "$_rtc" = yes ; then
5811 _def_rtc='#define HAVE_RTC 1'
5812 else
5813 _def_rtc='#undef HAVE_RTC'
5815 echores "$_rtc"
5818 echocheck "liblzo2 support"
5819 if test "$_liblzo" = auto ; then
5820 _liblzo=no
5821 cat > $TMPC << EOF
5822 #include <lzo/lzo1x.h>
5823 int main(void) { lzo_init();return 0; }
5825 cc_check -llzo2 && _liblzo=yes
5827 if test "$_liblzo" = yes ; then
5828 _def_liblzo='#define CONFIG_LIBLZO 1'
5829 _ld_extra="$_ld_extra -llzo2"
5830 _codecmodules="liblzo $_codecmodules"
5831 else
5832 _def_liblzo='#undef CONFIG_LIBLZO'
5833 _nocodecmodules="liblzo $_nocodecmodules"
5835 echores "$_liblzo"
5838 echocheck "mad support"
5839 if test "$_mad" = auto ; then
5840 _mad=no
5841 cat > $TMPC << EOF
5842 #include <mad.h>
5843 int main(void) { return 0; }
5845 cc_check -lmad && _mad=yes
5847 if test "$_mad" = yes ; then
5848 _def_mad='#define CONFIG_LIBMAD 1'
5849 _ld_extra="$_ld_extra -lmad"
5850 _codecmodules="libmad $_codecmodules"
5851 else
5852 _def_mad='#undef CONFIG_LIBMAD'
5853 _nocodecmodules="libmad $_nocodecmodules"
5855 echores "$_mad"
5857 echocheck "Twolame"
5858 if test "$_twolame" = auto ; then
5859 cat > $TMPC <<EOF
5860 #include <twolame.h>
5861 int main(void) { twolame_init(); return 0; }
5863 _twolame=no
5864 cc_check -ltwolame $_ld_lm && _twolame=yes
5866 if test "$_twolame" = yes ; then
5867 _def_twolame='#define CONFIG_TWOLAME 1'
5868 _libs_mencoder="$_libs_mencoder -ltwolame"
5869 _codecmodules="twolame $_codecmodules"
5870 else
5871 _def_twolame='#undef CONFIG_TWOLAME'
5872 _nocodecmodules="twolame $_nocodecmodules"
5874 echores "$_twolame"
5876 echocheck "Toolame"
5877 if test "$_toolame" = auto ; then
5878 _toolame=no
5879 if test "$_twolame" = yes ; then
5880 _res_comment="disabled by twolame"
5881 else
5882 cat > $TMPC <<EOF
5883 #include <toolame.h>
5884 int main(void) { toolame_init(); return 0; }
5886 cc_check -ltoolame $_ld_lm && _toolame=yes
5889 if test "$_toolame" = yes ; then
5890 _def_toolame='#define CONFIG_TOOLAME 1'
5891 _libs_mencoder="$_libs_mencoder -ltoolame"
5892 _codecmodules="toolame $_codecmodules"
5893 else
5894 _def_toolame='#undef CONFIG_TOOLAME'
5895 _nocodecmodules="toolame $_nocodecmodules"
5897 if test "$_toolamedir" ; then
5898 _res_comment="using $_toolamedir"
5900 echores "$_toolame"
5902 echocheck "OggVorbis support"
5903 if test "$_tremor_internal" = yes; then
5904 _libvorbis=no
5905 elif test "$_tremor" = auto; then
5906 _tremor=no
5907 cat > $TMPC << EOF
5908 #include <tremor/ivorbiscodec.h>
5909 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5911 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
5913 if test "$_libvorbis" = auto; then
5914 _libvorbis=no
5915 cat > $TMPC << EOF
5916 #include <vorbis/codec.h>
5917 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5919 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
5921 if test "$_tremor_internal" = yes ; then
5922 _vorbis=yes
5923 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5924 _def_tremor='#define CONFIG_TREMOR 1'
5925 _codecmodules="tremor(internal) $_codecmodules"
5926 _res_comment="internal Tremor"
5927 if test "$_tremor_low" = yes ; then
5928 cflags_tremor_low="-D_LOW_ACCURACY_"
5929 _res_comment="internal low accuracy Tremor"
5931 elif test "$_tremor" = yes ; then
5932 _vorbis=yes
5933 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5934 _def_tremor='#define CONFIG_TREMOR 1'
5935 _codecmodules="tremor(external) $_codecmodules"
5936 _res_comment="external Tremor"
5937 _ld_extra="$_ld_extra -logg -lvorbisidec"
5938 elif test "$_libvorbis" = yes ; then
5939 _vorbis=yes
5940 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5941 _codecmodules="libvorbis $_codecmodules"
5942 _res_comment="libvorbis"
5943 _ld_extra="$_ld_extra -lvorbis -logg"
5944 else
5945 _vorbis=no
5946 _nocodecmodules="libvorbis $_nocodecmodules"
5948 echores "$_vorbis"
5950 echocheck "libspeex (version >= 1.1 required)"
5951 if test "$_speex" = auto ; then
5952 _speex=no
5953 cat > $TMPC << EOF
5954 #include <speex/speex.h>
5955 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
5957 cc_check -lspeex $_ld_lm && _speex=yes
5959 if test "$_speex" = yes ; then
5960 _def_speex='#define CONFIG_SPEEX 1'
5961 _ld_extra="$_ld_extra -lspeex"
5962 _codecmodules="speex $_codecmodules"
5963 else
5964 _def_speex='#undef CONFIG_SPEEX'
5965 _nocodecmodules="speex $_nocodecmodules"
5967 echores "$_speex"
5969 echocheck "OggTheora support"
5970 if test "$_theora" = auto ; then
5971 _theora=no
5972 cat > $TMPC << EOF
5973 #include <theora/theora.h>
5974 #include <string.h>
5975 int main(void) {
5976 /* Theora is in flux, make sure that all interface routines and datatypes
5977 * exist and work the way we expect it, so we don't break MPlayer. */
5978 ogg_packet op;
5979 theora_comment tc;
5980 theora_info inf;
5981 theora_state st;
5982 yuv_buffer yuv;
5983 int r;
5984 double t;
5986 theora_info_init (&inf);
5987 theora_comment_init (&tc);
5989 return 0;
5991 /* we don't want to execute this kind of nonsense; just for making sure
5992 * that compilation works... */
5993 memset(&op, 0, sizeof(op));
5994 r = theora_decode_header (&inf, &tc, &op);
5995 r = theora_decode_init (&st, &inf);
5996 t = theora_granule_time (&st, op.granulepos);
5997 r = theora_decode_packetin (&st, &op);
5998 r = theora_decode_YUVout (&st, &yuv);
5999 theora_clear (&st);
6001 return 0;
6004 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
6005 cc_check $_ld_theora && _ld_extra="$_ld_extra $_ld_theora" \
6006 && _theora=yes && break
6007 done
6008 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6009 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
6010 cc_check tremor/bitwise.c $_ld_theora \
6011 && _ld_extra="$_ld_extra $_ld_theora" && theora=yes && break
6012 done
6015 if test "$_theora" = yes ; then
6016 _def_theora='#define CONFIG_OGGTHEORA 1'
6017 _codecmodules="libtheora $_codecmodules"
6018 # when --enable-theora is forced, we'd better provide a probably sane
6019 # $_ld_theora than nothing
6020 test -z "$_ld_theora" && _ld_extra="$_ld_extra -ltheora -logg"
6021 else
6022 _def_theora='#undef CONFIG_OGGTHEORA'
6023 _nocodecmodules="libtheora $_nocodecmodules"
6025 echores "$_theora"
6027 echocheck "internal mp3lib support"
6028 if test "$_mp3lib" = auto ; then
6029 test "$cc_vendor" = intel && _mp3lib=no || _mp3lib=yes
6031 if test "$_mp3lib" = yes ; then
6032 _def_mp3lib='#define CONFIG_MP3LIB 1'
6033 _codecmodules="mp3lib $_codecmodules"
6034 else
6035 _def_mp3lib='#undef CONFIG_MP3LIB'
6036 _nocodecmodules="mp3lib $_nocodecmodules"
6038 echores "$_mp3lib"
6040 echocheck "liba52 support"
6041 if test "$_liba52_internal" = auto ; then
6042 test "$cc_vendor" = intel && _liba52_internal=no || _liba52_internal=yes
6044 _def_liba52='#undef CONFIG_LIBA52'
6045 _def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6046 if test "$_liba52_internal" = yes ; then
6047 _liba52=yes
6048 _def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6049 _res_comment="internal"
6050 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6051 _liba52=no
6052 cat > $TMPC << EOF
6053 #include <inttypes.h>
6054 #include <a52dec/a52.h>
6055 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6057 cc_check -la52 && _liba52=yes && _res_comment="external" && _ld_extra="$_ld_extra -la52"
6059 if test "$_liba52" = yes ; then
6060 _def_liba52='#define CONFIG_LIBA52 1'
6061 _codecmodules="liba52($_res_comment) $_codecmodules"
6062 else
6063 _nocodecmodules="liba52 $_nocodecmodules"
6065 echores "$_liba52"
6067 echocheck "internal libmpeg2 support"
6068 if test "$_libmpeg2" = auto ; then
6069 _libmpeg2=yes
6070 if alpha && test cc_vendor=gnu; then
6071 case $cc_version in
6072 2*|3.0*|3.1*) # cannot compile MVI instructions
6073 _libmpeg2=no
6074 _res_comment="broken gcc"
6076 esac
6079 if test "$_libmpeg2" = yes ; then
6080 _def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6081 _codecmodules="libmpeg2 $_codecmodules"
6082 else
6083 _def_libmpeg2='#undef CONFIG_LIBMPEG2'
6084 _nocodecmodules="libmpeg2 $_nocodecmodules"
6086 echores "$_libmpeg2"
6088 echocheck "libdca support"
6089 if test "$_libdca" = auto ; then
6090 _libdca=no
6091 cat > $TMPC << EOF
6092 #include <inttypes.h>
6093 #include <dts.h>
6094 int main(void) { dts_init (0); return 0; }
6096 for _ld_dca in -ldts -ldca ; do
6097 cc_check $_ld_dca $_ld_lm && _ld_extra="$_ld_extra $_ld_dca" \
6098 && _libdca=yes && break
6099 done
6101 if test "$_libdca" = yes ; then
6102 _def_libdca='#define CONFIG_LIBDCA 1'
6103 _codecmodules="libdca $_codecmodules"
6104 else
6105 _def_libdca='#undef CONFIG_LIBDCA'
6106 _nocodecmodules="libdca $_nocodecmodules"
6108 echores "$_libdca"
6110 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6111 if test "$_musepack" = auto ; then
6112 _musepack=no
6113 cat > $TMPC << EOF
6114 #include <stddef.h>
6115 #include <mpcdec/mpcdec.h>
6116 int main(void) {
6117 mpc_streaminfo info;
6118 mpc_decoder decoder;
6119 mpc_decoder_set_streaminfo(&decoder, &info);
6120 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6121 return 0;
6124 cc_check -lmpcdec $_ld_lm && _musepack=yes
6126 if test "$_musepack" = yes ; then
6127 _def_musepack='#define CONFIG_MUSEPACK 1'
6128 _ld_extra="$_ld_extra -lmpcdec"
6129 _codecmodules="musepack $_codecmodules"
6130 else
6131 _def_musepack='#undef CONFIG_MUSEPACK'
6132 _nocodecmodules="musepack $_nocodecmodules"
6134 echores "$_musepack"
6137 echocheck "FAAC support"
6138 if test "$_faac" = auto ; then
6139 cat > $TMPC <<EOF
6140 #include <inttypes.h>
6141 #include <faac.h>
6142 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6144 _faac=no
6145 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6146 cc_check -O4 $_ld_faac $_ld_lm && _libs_mencoder="$_libs_mencoder $_ld_faac" && _faac=yes && break
6147 done
6149 if test "$_faac" = yes ; then
6150 _def_faac="#define CONFIG_FAAC 1"
6151 test "$_faac_lavc" = auto && _faac_lavc=yes
6152 if test "$_faac_lavc" = yes ; then
6153 _def_faac_lavc="#define CONFIG_LIBFAAC 1"
6154 _libs_mplayer="$_libs_mplayer $_ld_faac"
6155 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6157 _codecmodules="faac $_codecmodules"
6158 else
6159 _faac_lavc=no
6160 _def_faac="#undef CONFIG_FAAC"
6161 _def_faac_lavc="#undef CONFIG_LIBFAAC"
6162 _nocodecmodules="faac $_nocodecmodules"
6164 _res_comment="in libavcodec: $_faac_lavc"
6165 echores "$_faac"
6168 echocheck "FAAD2 support"
6169 if test "$_faad_internal" = auto ; then
6170 if x86_32 && test cc_vendor=gnu; then
6171 case $cc_version in
6172 3.1*|3.2) # ICE/insn with these versions
6173 _faad_internal=no
6174 _res_comment="broken gcc"
6177 _faad=yes
6178 _faad_internal=yes
6180 esac
6181 else
6182 _faad=yes
6183 _faad_internal=yes
6186 if test "$_faad" = auto ; then
6187 cat > $TMPC << EOF
6188 #include <faad.h>
6189 #ifndef FAAD_MIN_STREAMSIZE
6190 #error Too old version
6191 #endif
6192 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6193 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6195 cc_check -lfaad $_ld_lm && _faad=yes
6198 _def_faad='#undef CONFIG_FAAD'
6199 _def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6200 if test "$_faad_internal" = yes ; then
6201 _def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6202 _res_comment="internal floating-point"
6203 if test "$_faad_fixed" = yes ; then
6204 # The FIXED_POINT implementation of FAAD2 improves performance
6205 # on some platforms, especially for SBR files.
6206 cflags_faad_fixed="-DFIXED_POINT"
6207 _res_comment="internal fixed-point"
6209 elif test "$_faad" = yes ; then
6210 _ld_extra="$_ld_extra -lfaad"
6213 if test "$_faad" = yes ; then
6214 _def_faad='#define CONFIG_FAAD 1'
6215 _codecmodules="faad2 $_codecmodules"
6216 else
6217 _faad=no
6218 _nocodecmodules="faad2 $_nocodecmodules"
6220 echores "$_faad"
6223 echocheck "LADSPA plugin support"
6224 if test "$_ladspa" = auto ; then
6225 cat > $TMPC <<EOF
6226 #include <stdio.h>
6227 #include <ladspa.h>
6228 int main(void) {
6229 const LADSPA_Descriptor *ld = NULL;
6230 return 0;
6233 _ladspa=no
6234 cc_check && _ladspa=yes
6236 if test "$_ladspa" = yes; then
6237 _def_ladspa="#define CONFIG_LADSPA"
6238 else
6239 _def_ladspa="#undef CONFIG_LADSPA"
6241 echores "$_ladspa"
6244 if test -z "$_codecsdir" ; then
6245 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6246 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6247 if test -d "$dir" ; then
6248 _codecsdir="$dir"
6249 break;
6251 done
6253 # Fall back on default directory.
6254 if test -z "$_codecsdir" ; then
6255 _codecsdir="$_libdir/codecs"
6256 mingw32 && _codecsdir="codecs"
6257 os2 && _codecsdir="codecs"
6261 echocheck "Win32 codecs"
6262 if test "$_win32dll" = auto ; then
6263 _win32dll=no
6264 if x86_32 && ! qnx; then
6265 _win32dll=yes
6268 if test "$_win32dll" = yes ; then
6269 _def_win32dll='#define CONFIG_WIN32DLL 1'
6270 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6271 _res_comment="using $_win32codecsdir"
6272 if ! win32 ; then
6273 _def_win32_loader='#define WIN32_LOADER 1'
6274 _win32_emulation=yes
6275 else
6276 _ld_extra="$_ld_extra -ladvapi32 -lole32"
6277 _res_comment="using native windows"
6279 _codecmodules="win32 $_codecmodules"
6280 else
6281 _def_win32dll='#undef CONFIG_WIN32DLL'
6282 _def_win32_loader='#undef WIN32_LOADER'
6283 _nocodecmodules="win32 $_nocodecmodules"
6285 echores "$_win32dll"
6288 echocheck "XAnim codecs"
6289 if test "$_xanim" = auto ; then
6290 _xanim=no
6291 _res_comment="dynamic loader support needed"
6292 if test "$_dl" = yes ; then
6293 _xanim=yes
6296 if test "$_xanim" = yes ; then
6297 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6298 _def_xanim='#define CONFIG_XANIM 1'
6299 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6300 _codecmodules="xanim $_codecmodules"
6301 _res_comment="using $_xanimcodecsdir"
6302 else
6303 _def_xanim='#undef CONFIG_XANIM'
6304 _def_xanim_path='#undef XACODEC_PATH'
6305 _nocodecmodules="xanim $_nocodecmodules"
6307 echores "$_xanim"
6310 echocheck "RealPlayer codecs"
6311 if test "$_real" = auto ; then
6312 _real=no
6313 _res_comment="dynamic loader support needed"
6314 if test "$_dl" = yes || test "$_win32dll" = yes &&
6315 (linux || freebsd || netbsd || dragonfly || darwin || win32) ; then
6316 _real=yes
6319 if test "$_real" = yes ; then
6320 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6321 _def_real='#define CONFIG_REALCODECS 1'
6322 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6323 _codecmodules="real $_codecmodules"
6324 _res_comment="using $_realcodecsdir"
6325 else
6326 _def_real='#undef CONFIG_REALCODECS'
6327 _def_real_path="#undef REALCODEC_PATH"
6328 _nocodecmodules="real $_nocodecmodules"
6330 echores "$_real"
6333 echocheck "QuickTime codecs"
6334 _qtx_emulation=no
6335 _def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6336 if test "$_qtx" = auto ; then
6337 test "$_win32dll" = yes || darwin && _qtx=yes
6339 if test "$_qtx" = yes ; then
6340 _def_qtx='#define CONFIG_QTX_CODECS 1'
6341 win32 && _qtx_codecs_win32=yes && _def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6342 _codecmodules="qtx $_codecmodules"
6343 darwin || win32 || _qtx_emulation=yes
6344 else
6345 _def_qtx='#undef CONFIG_QTX_CODECS'
6346 _nocodecmodules="qtx $_nocodecmodules"
6348 echores "$_qtx"
6350 echocheck "Nemesi Streaming Media libraries"
6351 if test "$_nemesi" = auto && test "$_network" = yes ; then
6352 _nemesi=no
6353 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6354 _inc_extra="$_inc_extra `$_pkg_config --cflags libnemesi`"
6355 _ld_extra="$_ld_extra `$_pkg_config --libs libnemesi`"
6356 _nemesi=yes
6359 if test "$_nemesi" = yes; then
6360 _native_rtsp=no
6361 _def_nemesi='#define CONFIG_LIBNEMESI 1'
6362 _inputmodules="nemesi $_inputmodules"
6363 else
6364 _native_rtsp="$_network"
6365 _nemesi=no
6366 _def_nemesi='#undef CONFIG_LIBNEMESI'
6367 _noinputmodules="nemesi $_noinputmodules"
6369 echores "$_nemesi"
6371 echocheck "LIVE555 Streaming Media libraries"
6372 if test "$_live" = auto && test "$_network" = yes ; then
6373 cat > $TMPCPP << EOF
6374 #include <liveMedia.hh>
6375 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6376 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6377 #endif
6378 int main(void) { return 0; }
6381 _live=no
6382 for I in $_inc_extra "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6383 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6384 $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
6385 _ld_extra="$_livelibdir/liveMedia/libliveMedia.a \
6386 $_livelibdir/groupsock/libgroupsock.a \
6387 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6388 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6389 $_ld_extra -lstdc++" \
6390 _inc_extraxx="-I$_livelibdir/liveMedia/include \
6391 -I$_livelibdir/UsageEnvironment/include \
6392 -I$_livelibdir/BasicUsageEnvironment/include \
6393 -I$_livelibdir/groupsock/include" && \
6394 _live=yes && break
6395 done
6396 if test "$_live" != yes ; then
6397 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6398 _live_dist=yes
6402 if test "$_live" = yes && test "$_network" = yes; then
6403 _res_comment="using $_livelibdir"
6404 _def_live='#define CONFIG_LIVE555 1'
6405 _inputmodules="live555 $_inputmodules"
6406 elif test "$_live_dist" = yes && test "$_network" = yes; then
6407 _res_comment="using distribution version"
6408 _live="yes"
6409 _def_live='#define CONFIG_LIVE555 1'
6410 _ld_extra="$_ld_extra -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6411 _inc_extraxx="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6412 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6413 _inputmodules="live555 $_inputmodules"
6414 else
6415 _live=no
6416 _def_live='#undef CONFIG_LIVE555'
6417 _noinputmodules="live555 $_noinputmodules"
6419 echores "$_live"
6422 echocheck "FFmpeg libavutil"
6423 if test "$_libavutil_a" = auto ; then
6424 if test -d libavutil ; then
6425 _libavutil_a=yes
6426 _res_comment="static"
6427 else
6428 die "MPlayer will not compile without libavutil in the source tree."
6430 elif test "$_libavutil_so" = auto ; then
6431 _libavutil_so=no
6432 cat > $TMPC << EOF
6433 #include <libavutil/common.h>
6434 int main(void) { ff_gcd(1,1); return 0; }
6436 if $_pkg_config --exists libavutil ; then
6437 _inc_libavutil=`$_pkg_config --cflags libavutil`
6438 _ld_tmp=`$_pkg_config --libs libavutil`
6439 cc_check $_inc_libavutil $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6440 && _libavutil_so=yes
6441 elif cc_check -lavutil $_ld_lm ; then
6442 _ld_extra="$_ld_extra -lavutil"
6443 _libavutil_so=yes
6444 _res_comment="using libavutil.so, but static libavutil is recommended"
6447 _libavutil=no
6448 _def_libavutil='#undef CONFIG_LIBAVUTIL'
6449 _def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6450 _def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6451 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6452 test "$_libavutil" = yes && _def_libavutil='#define CONFIG_LIBAVUTIL 1'
6453 test "$_libavutil_a" = yes && _def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6454 test "$_libavutil_so" = yes && _def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6455 # neither static nor shared libavutil is available, but it is mandatory ...
6456 if test "$_libavutil" = no ; then
6457 die "You need static or shared libavutil, MPlayer will not compile without!"
6459 echores "$_libavutil"
6461 echocheck "FFmpeg libavcodec"
6462 if test "$_libavcodec_a" = auto ; then
6463 _libavcodec_a=no
6464 if test -d libavcodec && test -f libavcodec/utils.c ; then
6465 _libavcodec_a="yes"
6466 _res_comment="static"
6468 elif test "$_libavcodec_so" = auto ; then
6469 _libavcodec_so=no
6470 _res_comment="libavcodec.so is discouraged over static libavcodec"
6471 cat > $TMPC << EOF
6472 #include <libavcodec/avcodec.h>
6473 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6475 if $_pkg_config --exists libavcodec ; then
6476 _inc_libavcodec=`$_pkg_config --cflags libavcodec`
6477 _ld_tmp=`$_pkg_config --libs libavcodec`
6478 cc_check $_inc_libavcodec $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6479 && _libavcodec_so=yes
6480 elif cc_check -lavcodec $_ld_lm ; then
6481 _ld_extra="$_ld_extra -lavcodec"
6482 _libavcodec_so=yes
6483 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6486 _libavcodec=no
6487 _def_libavcodec='#undef CONFIG_LIBAVCODEC'
6488 _def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6489 _def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6490 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6491 test "$_libavcodec" = yes && _def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6492 test "$_libavcodec_a" = yes && _def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6493 test "$_libavcodec_so" = yes && _def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6494 test "$_libavcodec_mpegaudio_hp" = yes \
6495 && _def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6496 if test "$_libavcodec_a" = yes ; then
6497 _codecmodules="libavcodec $_codecmodules"
6498 elif test "$_libavcodec_so" = yes ; then
6499 _codecmodules="libavcodec.so $_codecmodules"
6500 else
6501 _nocodecmodules="libavcodec $_nocodecmodules"
6503 echores "$_libavcodec"
6505 echocheck "FFmpeg libavformat"
6506 if test "$_libavformat_a" = auto ; then
6507 _libavformat_a=no
6508 if test -d libavformat && test -f libavformat/utils.c ; then
6509 _libavformat_a=yes
6510 _res_comment="static"
6512 elif test "$_libavformat_so" = auto ; then
6513 _libavformat_so=no
6514 cat > $TMPC <<EOF
6515 #include <libavformat/avformat.h>
6516 #include <libavcodec/opt.h>
6517 int main(void) { av_alloc_format_context(); return 0; }
6519 if $_pkg_config --exists libavformat ; then
6520 _inc_libavformat=`$_pkg_config --cflags libavformat`
6521 _ld_tmp=`$_pkg_config --libs libavformat`
6522 cc_check $_inc_libavformat $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6523 && _libavformat_so=yes
6524 elif cc_check $_ld_lm -lavformat ; then
6525 _ld_extra="$_ld_extra -lavformat"
6526 _libavformat_so=yes
6527 _res_comment="using libavformat.so, but static libavformat is recommended"
6530 _libavformat=no
6531 _def_libavformat='#undef CONFIG_LIBAVFORMAT'
6532 _def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6533 _def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6534 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6535 test "$_libavformat" = yes && _def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6536 test "$_libavformat_a" = yes && _def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6537 test "$_libavformat_so" = yes \
6538 && _def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6539 echores "$_libavformat"
6541 echocheck "FFmpeg libpostproc"
6542 if test "$_libpostproc_a" = auto ; then
6543 _libpostproc_a=no
6544 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
6545 _libpostproc_a='yes'
6546 _res_comment="static"
6548 elif test "$_libpostproc_so" = auto ; then
6549 _libpostproc_so=no
6550 cat > $TMPC << EOF
6551 #include <inttypes.h>
6552 #include <libpostproc/postprocess.h>
6553 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6555 if cc_check -lpostproc $_ld_lm ; then
6556 _ld_extra="$_ld_extra -lpostproc"
6557 _libpostproc_so=yes
6558 _res_comment="using libpostproc.so, but static libpostproc is recommended"
6561 _libpostproc=no
6562 _def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6563 _def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
6564 _def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
6565 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
6566 test "$_libpostproc" = yes && _def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6567 test "$_libpostproc_a" = yes && _def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
6568 test "$_libpostproc_so" = yes \
6569 && _def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
6570 echores "$_libpostproc"
6572 echocheck "FFmpeg libswscale"
6573 if test "$_libswscale_a" = auto ; then
6574 _libswscale_a=no
6575 if test -d libswscale && test -f libswscale/swscale.h ; then
6576 _libswscale_a='yes'
6577 _res_comment="static"
6579 elif test "$_libswscale_so" = auto ; then
6580 _libswscale_so=no
6581 _res_comment="using libswscale.so, but static libswscale is recommended"
6582 cat > $TMPC << EOF
6583 #include <libswscale/swscale.h>
6584 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6586 if $_pkg_config --exists libswscale ; then
6587 _inc_libswscale=`$_pkg_config --cflags libswscale`
6588 _ld_tmp=`$_pkg_config --libs libswscale`
6589 cc_check $_inc_libswscale $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6590 && _libswscale_so=yes
6591 elif cc_check -lswscale ; then
6592 _ld_extra="$_ld_extra -lswscale"
6593 _libswscale_so=yes
6596 _libswscale=no
6597 _def_libswscale='#undef CONFIG_LIBSWSCALE'
6598 _def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
6599 _def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
6600 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
6601 test "$_libswscale" = yes && _def_libswscale='#define CONFIG_LIBSWSCALE 1'
6602 test "$_libswscale_a" = yes && _def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
6603 test "$_libswscale_so" = yes \
6604 && _def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
6605 echores "$_libswscale"
6607 echocheck "libamr narrowband"
6608 if test "$_libamr_nb" = auto ; then
6609 _libamr_nb=no
6610 cat > $TMPC << EOF
6611 #include <amrnb/sp_dec.h>
6612 int main(void) { Speech_Decode_Frame_init(); return 0; }
6614 cc_check -lamrnb && _libamr_nb=yes
6615 if test "$_libavcodec_a" != yes ; then
6616 _libamr_nb=no
6617 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
6620 if test "$_libamr_nb" = yes ; then
6621 _libamr=yes
6622 _ld_extra="$_ld_extra -lamrnb"
6623 _def_libamr='#define CONFIG_LIBAMR 1'
6624 _def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
6625 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
6626 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
6627 _codecmodules="libamr_nb $_codecmodules"
6628 else
6629 _def_libamr_nb='#undef CONFIG_LIBAMR_NB'
6630 _nocodecmodules="libamr_nb $_nocodecmodules"
6632 echores "$_libamr_nb"
6635 echocheck "libamr wideband"
6636 if test "$_libamr_wb" = auto ; then
6637 _libamr_wb=no
6638 cat > $TMPC << EOF
6639 #include <amrwb/dec_if.h>
6640 int main(void) { D_IF_init(); return 0; }
6642 cc_check -lamrwb && _libamr_wb=yes
6643 if test "$_libavcodec_a" != yes ; then
6644 _libamr_wb=no
6645 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
6648 if test "$_libamr_wb" = yes ; then
6649 _libamr=yes
6650 _ld_extra="$_ld_extra -lamrwb"
6651 _def_libamr='#define CONFIG_LIBAMR 1'
6652 _def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
6653 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
6654 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
6655 _codecmodules="libamr_wb $_codecmodules"
6656 else
6657 _def_libamr_wb='#undef CONFIG_LIBAMR_WB'
6658 _nocodecmodules="libamr_wb $_nocodecmodules"
6660 echores "$_libamr_wb"
6662 echocheck "libdv-0.9.5+"
6663 if test "$_libdv" = auto ; then
6664 _libdv=no
6665 cat > $TMPC <<EOF
6666 #include <libdv/dv.h>
6667 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6669 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6671 if test "$_libdv" = yes ; then
6672 _def_libdv='#define CONFIG_LIBDV095 1'
6673 _ld_extra="$_ld_extra -ldv"
6674 _codecmodules="libdv $_codecmodules"
6675 else
6676 _def_libdv='#undef CONFIG_LIBDV095'
6677 _nocodecmodules="libdv $_nocodecmodules"
6679 echores "$_libdv"
6682 echocheck "Xvid"
6683 if test "$_xvid" = auto ; then
6684 _xvid=no
6685 cat > $TMPC << EOF
6686 #include <xvid.h>
6687 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6689 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6690 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && _xvid=yes && break
6691 done
6694 if test "$_xvid" = yes ; then
6695 _def_xvid='#define CONFIG_XVID4 1'
6696 _codecmodules="xvid $_codecmodules"
6697 else
6698 _def_xvid='#undef CONFIG_XVID4'
6699 _nocodecmodules="xvid $_nocodecmodules"
6701 echores "$_xvid"
6703 echocheck "Xvid two pass plugin"
6704 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
6705 cat > $TMPC << EOF
6706 #include <xvid.h>
6707 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
6709 cc_check && _xvid_lavc=yes
6711 if test "$_xvid_lavc" = yes ; then
6712 _def_xvid_lavc='#define CONFIG_LIBXVID 1'
6713 _libavencoders="$_libavencoders LIBXVID_ENCODER"
6714 else
6715 _xvid_lavc=no
6716 _def_xvid_lavc='#undef CONFIG_LIBXVID'
6718 echores "$_xvid_lavc"
6721 echocheck "x264"
6722 if test "$_x264" = auto ; then
6723 cat > $TMPC << EOF
6724 #include <inttypes.h>
6725 #include <x264.h>
6726 #if X264_BUILD < 59
6727 #error We do not support old versions of x264. Get the latest from SVN.
6728 #endif
6729 int main(void) { x264_encoder_open((void*)0); return 0; }
6731 _x264=no
6732 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6733 cc_check $_ld_x264 && _libs_mencoder="$_libs_mencoder $_ld_x264" && _x264=yes && break
6734 done
6737 if test "$_x264" = yes ; then
6738 _def_x264='#define CONFIG_X264 1'
6739 _codecmodules="x264 $_codecmodules"
6740 test "$_x264_lavc" = auto && _x264_lavc=yes
6741 if test "$_x264_lavc" = yes ; then
6742 _def_x264_lavc='#define CONFIG_LIBX264 1'
6743 _libs_mplayer="$_libs_mplayer $_ld_x264"
6744 _libavencoders="$_libavencoders LIBX264_ENCODER"
6746 else
6747 _x264_lavc=no
6748 _def_x264='#undef CONFIG_X264'
6749 _def_x264_lavc='#undef CONFIG_LIBX264'
6750 _nocodecmodules="x264 $_nocodecmodules"
6752 _res_comment="in libavcodec: $_x264_lavc"
6753 echores "$_x264"
6756 echocheck "libdirac"
6757 if test "$_libdirac_lavc" = auto; then
6758 _libdirac_lavc=no
6759 if test "$_libavcodec_a" != yes; then
6760 _res_comment="libavcodec (static) is required by libdirac, sorry"
6761 else
6762 cat > $TMPC << EOF
6763 #include <libdirac_encoder/dirac_encoder.h>
6764 #include <libdirac_decoder/dirac_parser.h>
6765 int main(void)
6767 dirac_encoder_context_t enc_ctx;
6768 dirac_decoder_t *dec_handle;
6769 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
6770 dec_handle = dirac_decoder_init(0);
6771 if (dec_handle)
6772 dirac_decoder_close(dec_handle);
6773 return 0;
6776 if $_pkg_config --exists dirac ; then
6777 _inc_dirac=`$_pkg_config --silence-errors --cflags dirac`
6778 _ld_dirac=`$_pkg_config --silence-errors --libs dirac`
6779 cc_check $_inc_dirac $_ld_dirac &&
6780 _libdirac_lavc=yes &&
6781 _inc_extra="$_inc_extra $_inc_dirac" &&
6782 _ld_extra="$_ld_extra $_ld_dirac"
6786 if test "$_libdirac_lavc" = yes ; then
6787 _def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
6788 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
6789 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
6790 _codecmodules="libdirac $_codecmodules"
6791 else
6792 _def_libdirac_lavc='#undef CONFIG_LIBDIRAC'
6793 _nocodecmodules="libdirac $_nocodecmodules"
6795 echores "$_libdirac_lavc"
6798 echocheck "libschroedinger"
6799 if test "$_libschroedinger_lavc" = auto ; then
6800 _libschroedinger_lavc=no
6801 if test "$_libavcodec_a" != yes; then
6802 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
6803 else
6804 cat > $TMPC << EOF
6805 #include <schroedinger/schro.h>
6806 int main(void) { schro_init(); return 0; }
6808 if $_pkg_config --exists schroedinger-1.0 ; then
6809 _inc_schroedinger=`$_pkg_config --silence-errors --cflags schroedinger-1.0`
6810 _ld_schroedinger=`$_pkg_config --silence-errors --libs schroedinger-1.0`
6811 cc_check $_inc_schroedinger $_ld_schroedinger &&
6812 _libschroedinger_lavc=yes &&
6813 _inc_extra="$_inc_extra $_inc_schroedinger" &&
6814 _ld_extra="$_ld_extra $_ld_schroedinger"
6818 if test "$_libschroedinger_lavc" = yes ; then
6819 _def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
6820 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
6821 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
6822 _codecmodules="libschroedinger $_codecmodules"
6823 else
6824 _def_libschroedinger_lavc='#undef CONFIG_LIBSCHROEDINGER'
6825 _nocodecmodules="libschroedinger $_nocodecmodules"
6827 echores "$_libschroedinger_lavc"
6829 echocheck "libnut"
6830 if test "$_libnut" = auto ; then
6831 cat > $TMPC << EOF
6832 #include <stdio.h>
6833 #include <stdlib.h>
6834 #include <inttypes.h>
6835 #include <libnut.h>
6836 int main(void) { (void)nut_error(0); return 0; }
6838 _libnut=no
6839 cc_check -lnut && _libnut=yes
6842 if test "$_libnut" = yes ; then
6843 _def_libnut='#define CONFIG_LIBNUT 1'
6844 _ld_extra="$_ld_extra -lnut"
6845 else
6846 _def_libnut='#undef CONFIG_LIBNUT'
6848 echores "$_libnut"
6850 #check must be done after libavcodec one
6851 echocheck "zr"
6852 if test "$_zr" = auto ; then
6853 #36067's seem to identify themselves as 36057PQC's, so the line
6854 #below should work for 36067's and 36057's.
6855 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6856 _zr=yes
6857 else
6858 _zr=no
6861 if test "$_zr" = yes ; then
6862 if test "$_libavcodec_a" = yes ; then
6863 _def_zr='#define CONFIG_ZR 1'
6864 _vosrc="$_vosrc vo_zr2.c vo_zr.c jpeg_enc.c"
6865 _vomodules="zr zr2 $_vomodules"
6866 else
6867 _res_comment="libavcodec (static) is required by zr, sorry"
6868 _novomodules="zr $_novomodules"
6869 _def_zr='#undef CONFIG_ZR'
6871 else
6872 _def_zr='#undef CONFIG_ZR'
6873 _novomodules="zr zr2 $_novomodules"
6875 echores "$_zr"
6877 # mencoder requires (optional) those libs: libmp3lame
6878 if test "$_mencoder" != no ; then
6880 echocheck "libmp3lame (for mencoder)"
6881 _def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6882 _def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6883 if test "$_mp3lame" = auto ; then
6884 _mp3lame=no
6885 cat > $TMPC <<EOF
6886 #include <lame/lame.h>
6887 int main(void) { lame_version_t lv; (void) lame_init();
6888 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
6889 return 0; }
6891 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
6893 if test "$_mp3lame" = yes ; then
6894 _def_mp3lame="#define CONFIG_MP3LAME"
6895 _ld_mp3lame=-lmp3lame
6896 _libs_mencoder="$_libs_mencoder $_ld_mp3lame"
6897 cat > $TMPC << EOF
6898 #include <lame/lame.h>
6899 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
6901 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
6902 cat > $TMPC << EOF
6903 #include <lame/lame.h>
6904 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
6906 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
6907 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
6908 if test "$_mp3lame_lavc" = yes ; then
6909 _def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
6910 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
6911 _libs_mplayer="$_libs_mplayer $_ld_mp3lame"
6913 else
6914 _mp3lame_lavc=no
6915 _def_mp3lame='#undef CONFIG_MP3LAME'
6916 _def_mp3lame_lavc="#undef CONFIG_LIBMP3LAME"
6918 _res_comment="in libavcodec: $_mp3lame_lavc"
6919 echores "$_mp3lame"
6921 fi # test "$_mencoder" != no
6923 echocheck "mencoder"
6924 if test "$_mencoder" = yes ; then
6925 _def_muxers='#define CONFIG_MUXERS 1'
6926 else
6927 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
6928 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
6929 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
6930 _libavmuxers=""
6932 echores "$_mencoder"
6934 echocheck "fastmemcpy"
6935 # fastmemcpy check is done earlier with tests of CPU & binutils features
6936 if test "$_fastmemcpy" = yes ; then
6937 _def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
6938 else
6939 _def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
6941 echores "$_fastmemcpy"
6944 echocheck "UnRAR executable"
6945 if test "$_unrar_exec" = auto ; then
6946 _unrar_exec="yes"
6947 mingw32 && _unrar_exec="no"
6949 if test "$_unrar_exec" = yes ; then
6950 _def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6951 else
6952 _def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6954 echores "$_unrar_exec"
6956 echocheck "TV interface"
6957 if test "$_tv" = yes ; then
6958 _def_tv='#define CONFIG_TV 1'
6959 _inputmodules="tv $_inputmodules"
6960 else
6961 _noinputmodules="tv $_noinputmodules"
6962 _def_tv='#undef CONFIG_TV'
6964 echores "$_tv"
6967 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6968 echocheck "*BSD BT848 bt8xx header"
6969 _ioctl_bt848_h=no
6970 for file in "machine/ioctl_bt848.h" \
6971 "dev/bktr/ioctl_bt848.h" \
6972 "dev/video/bktr/ioctl_bt848.h" \
6973 "dev/ic/bt8xx.h" ; do
6974 cat > $TMPC <<EOF
6975 #include <sys/types.h>
6976 #include <sys/ioctl.h>
6977 #include <$file>
6978 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6980 if cc_check ; then
6981 _ioctl_bt848_h=yes
6982 _ioctl_bt848_h_name="$file"
6983 break;
6985 done
6986 if test "$_ioctl_bt848_h" = yes ; then
6987 _def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6988 _res_comment="using $_ioctl_bt848_h_name"
6989 else
6990 _def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6992 echores "$_ioctl_bt848_h"
6994 echocheck "*BSD ioctl_meteor.h"
6995 _ioctl_meteor_h=no
6996 for file in "machine/ioctl_meteor.h" \
6997 "dev/bktr/ioctl_meteor.h" \
6998 "dev/video/bktr/ioctl_meteor.h" ; do
6999 cat > $TMPC <<EOF
7000 #include <sys/types.h>
7001 #include <$file>
7002 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7004 if cc_check ; then
7005 _ioctl_meteor_h=yes
7006 _ioctl_meteor_h_name="$file"
7007 break;
7009 done
7010 if test "$_ioctl_meteor_h" = yes ; then
7011 _def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7012 _res_comment="using $_ioctl_meteor_h_name"
7013 else
7014 _def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7016 echores "$_ioctl_meteor_h"
7018 echocheck "*BSD BrookTree 848 TV interface"
7019 if test "$_tv_bsdbt848" = auto ; then
7020 _tv_bsdbt848=no
7021 if test "$_tv" = yes ; then
7022 cat > $TMPC <<EOF
7023 #include <sys/types.h>
7024 $_def_ioctl_meteor_h_name
7025 $_def_ioctl_bt848_h_name
7026 #ifdef IOCTL_METEOR_H_NAME
7027 #include IOCTL_METEOR_H_NAME
7028 #endif
7029 #ifdef IOCTL_BT848_H_NAME
7030 #include IOCTL_BT848_H_NAME
7031 #endif
7032 int main(void) {
7033 ioctl(0, METEORSINPUT, 0);
7034 ioctl(0, TVTUNER_GETFREQ, 0);
7035 return 0;
7038 cc_check && _tv_bsdbt848=yes
7041 if test "$_tv_bsdbt848" = yes ; then
7042 _def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7043 _inputmodules="tv-bsdbt848 $_inputmodules"
7044 else
7045 _def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7046 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7048 echores "$_tv_bsdbt848"
7049 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7052 echocheck "DirectShow TV interface"
7053 if test "$_tv_dshow" = auto ; then
7054 _tv_dshow=no
7055 if test "$_tv" = yes && win32 ; then
7056 cat > $TMPC <<EOF
7057 #include <ole2.h>
7058 int main(void) {
7059 void* p;
7060 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7061 return 0;
7064 cc_check -lole32 -luuid && _tv_dshow=yes
7067 if test "$_tv_dshow" = yes ; then
7068 _inputmodules="tv-dshow $_inputmodules"
7069 _def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7070 _ld_extra="$_ld_extra -lole32 -luuid"
7071 else
7072 _noinputmodules="tv-dshow $_noinputmodules"
7073 _def_tv_dshow='#undef CONFIG_TV_DSHOW'
7075 echores "$_tv_dshow"
7078 echocheck "Video 4 Linux TV interface"
7079 if test "$_tv_v4l1" = auto ; then
7080 _tv_v4l1=no
7081 if test "$_tv" = yes && linux ; then
7082 cat > $TMPC <<EOF
7083 #include <stdlib.h>
7084 #include <linux/videodev.h>
7085 int main(void) { return 0; }
7087 cc_check && _tv_v4l1=yes
7090 if test "$_tv_v4l1" = yes ; then
7091 _audio_input=yes
7092 _tv_v4l=yes
7093 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7094 _def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7095 _inputmodules="tv-v4l $_inputmodules"
7096 else
7097 _noinputmodules="tv-v4l1 $_noinputmodules"
7098 _def_tv_v4l='#undef CONFIG_TV_V4L'
7100 echores "$_tv_v4l1"
7103 echocheck "Video 4 Linux 2 TV interface"
7104 if test "$_tv_v4l2" = auto ; then
7105 _tv_v4l2=no
7106 if test "$_tv" = yes && linux ; then
7107 cat > $TMPC <<EOF
7108 #include <stdlib.h>
7109 #include <linux/types.h>
7110 #include <linux/videodev2.h>
7111 int main(void) { return 0; }
7113 cc_check && _tv_v4l2=yes
7116 if test "$_tv_v4l2" = yes ; then
7117 _audio_input=yes
7118 _tv_v4l=yes
7119 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7120 _def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7121 _inputmodules="tv-v4l2 $_inputmodules"
7122 else
7123 _noinputmodules="tv-v4l2 $_noinputmodules"
7124 _def_tv_v4l2='#undef CONFIG_TV_V4L2'
7126 echores "$_tv_v4l2"
7129 echocheck "TV teletext interface"
7130 if test "$_tv_teletext" = auto ; then
7131 _tv_teletext=no
7132 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7133 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7134 _tv_teletext=yes
7138 if test "$_tv_teletext" = yes ; then
7139 _def_tv_teletext='#define CONFIG_TV_TELETEXT 1'
7140 _inputmodules="tv-teletext $_inputmodules"
7141 else
7142 _noinputmodules="tv-teletext $_noinputmodules"
7143 _def_tv_teletext='#undef CONFIG_TV_TELETEXT'
7145 echores "$_tv_teletext"
7148 echocheck "Radio interface"
7149 if test "$_radio" = yes ; then
7150 _def_radio='#define CONFIG_RADIO 1'
7151 _inputmodules="radio $_inputmodules"
7152 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7153 _radio_capture=no
7155 if test "$_radio_capture" = yes ; then
7156 _audio_input=yes
7157 _def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7158 else
7159 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7161 else
7162 _noinputmodules="radio $_noinputmodules"
7163 _def_radio='#undef CONFIG_RADIO'
7164 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7165 _radio_capture=no
7167 echores "$_radio"
7168 echocheck "Capture for Radio interface"
7169 echores "$_radio_capture"
7171 echocheck "Video 4 Linux 2 Radio interface"
7172 if test "$_radio_v4l2" = auto ; then
7173 _radio_v4l2=no
7174 if test "$_radio" = yes && linux ; then
7175 cat > $TMPC <<EOF
7176 #include <stdlib.h>
7177 #include <linux/types.h>
7178 #include <linux/videodev2.h>
7179 int main(void) { return 0; }
7181 cc_check && _radio_v4l2=yes
7184 if test "$_radio_v4l2" = yes ; then
7185 _def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7186 else
7187 _def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7189 echores "$_radio_v4l2"
7191 echocheck "Video 4 Linux Radio interface"
7192 if test "$_radio_v4l" = auto ; then
7193 _radio_v4l=no
7194 if test "$_radio" = yes && linux ; then
7195 cat > $TMPC <<EOF
7196 #include <stdlib.h>
7197 #include <linux/videodev.h>
7198 int main(void) { return 0; }
7200 cc_check && _radio_v4l=yes
7203 if test "$_radio_v4l" = yes ; then
7204 _def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7205 else
7206 _def_radio_v4l='#undef CONFIG_RADIO_V4L'
7208 echores "$_radio_v4l"
7210 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7211 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7212 echocheck "*BSD BrookTree 848 Radio interface"
7213 _radio_bsdbt848=no
7214 cat > $TMPC <<EOF
7215 #include <sys/types.h>
7216 $_def_ioctl_bt848_h_name
7217 #ifdef IOCTL_BT848_H_NAME
7218 #include IOCTL_BT848_H_NAME
7219 #endif
7220 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7222 cc_check && _radio_bsdbt848=yes
7223 echores "$_radio_bsdbt848"
7224 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7226 if test "$_radio_bsdbt848" = yes ; then
7227 _def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7228 else
7229 _def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7232 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7233 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7234 die "Radio driver requires BSD BT848, V4L or V4L2!"
7237 echocheck "Video 4 Linux 2 MPEG PVR interface"
7238 if test "$_pvr" = auto ; then
7239 _pvr=no
7240 if test "$_tv_v4l2" = yes && linux ; then
7241 cat > $TMPC <<EOF
7242 #include <stdlib.h>
7243 #include <inttypes.h>
7244 #include <linux/types.h>
7245 #include <linux/videodev2.h>
7246 int main(void) { struct v4l2_ext_controls ext; return 0; }
7248 cc_check && _pvr=yes
7251 if test "$_pvr" = yes ; then
7252 _def_pvr='#define CONFIG_PVR 1'
7253 _inputmodules="pvr $_inputmodules"
7254 else
7255 _noinputmodules="pvr $_noinputmodules"
7256 _def_pvr='#undef CONFIG_PVR'
7258 echores "$_pvr"
7261 echocheck "audio select()"
7262 if test "$_select" = no ; then
7263 _def_select='#undef HAVE_AUDIO_SELECT'
7264 elif test "$_select" = yes ; then
7265 _def_select='#define HAVE_AUDIO_SELECT 1'
7267 echores "$_select"
7270 echocheck "ftp"
7271 if ! beos && test "$_ftp" = yes ; then
7272 _def_ftp='#define CONFIG_FTP 1'
7273 _inputmodules="ftp $_inputmodules"
7274 else
7275 _noinputmodules="ftp $_noinputmodules"
7276 _def_ftp='#undef CONFIG_FTP'
7278 echores "$_ftp"
7280 echocheck "vstream client"
7281 if test "$_vstream" = auto ; then
7282 _vstream=no
7283 cat > $TMPC <<EOF
7284 #include <vstream-client.h>
7285 void vstream_error(const char *format, ... ) {}
7286 int main(void) { vstream_start(); return 0; }
7288 cc_check -lvstream-client && _vstream=yes
7290 if test "$_vstream" = yes ; then
7291 _def_vstream='#define CONFIG_VSTREAM 1'
7292 _inputmodules="vstream $_inputmodules"
7293 _ld_extra="$_ld_extra -lvstream-client"
7294 else
7295 _noinputmodules="vstream $_noinputmodules"
7296 _def_vstream='#undef CONFIG_VSTREAM'
7298 echores "$_vstream"
7300 # endian testing
7301 echocheck "byte order"
7302 if test "$_big_endian" = auto ; then
7303 cat > $TMPC <<EOF
7304 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
7305 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
7306 int main(void) { return (int)ascii_name; }
7308 if cc_check ; then
7309 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
7310 _big_endian=yes
7311 else
7312 _big_endian=no
7314 else
7315 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
7318 if test "$_big_endian" = yes ; then
7319 _byte_order='big-endian'
7320 _def_words_endian='#define WORDS_BIGENDIAN 1'
7321 else
7322 _byte_order='little-endian'
7323 _def_words_endian='#undef WORDS_BIGENDIAN'
7325 echores "$_byte_order"
7327 echocheck "OSD menu"
7328 if test "$_menu" = yes ; then
7329 _def_menu='#define CONFIG_MENU 1'
7330 test $_dvbin = "yes" && _menu_dvbin=yes
7331 else
7332 _def_menu='#undef CONFIG_MENU'
7333 _menu_dvbin=no
7335 echores "$_menu"
7338 echocheck "Subtitles sorting"
7339 if test "$_sortsub" = yes ; then
7340 _def_sortsub='#define CONFIG_SORTSUB 1'
7341 else
7342 _def_sortsub='#undef CONFIG_SORTSUB'
7344 echores "$_sortsub"
7347 echocheck "XMMS inputplugin support"
7348 if test "$_xmms" = yes ; then
7349 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7350 _xmmsplugindir=`xmms-config --input-plugin-dir`
7351 _xmmslibdir=`xmms-config --exec-prefix`/lib
7352 else
7353 _xmmsplugindir=/usr/lib/xmms/Input
7354 _xmmslibdir=/usr/lib
7357 _def_xmms='#define CONFIG_XMMS 1'
7358 if darwin ; then
7359 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.dylib"
7360 else
7361 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7363 else
7364 _def_xmms='#undef CONFIG_XMMS'
7366 echores "$_xmms"
7368 echocheck "inet6"
7369 if test "$_inet6" = auto ; then
7370 cat > $TMPC << EOF
7371 #include <sys/types.h>
7372 #if !defined(_WIN32) || defined(__CYGWIN__)
7373 #include <sys/socket.h>
7374 #include <netinet/in.h>
7375 #else
7376 #include <ws2tcpip.h>
7377 #endif
7378 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
7380 _inet6=no
7381 if cc_check $_ld_sock ; then
7382 _inet6=yes
7385 if test "$_inet6" = yes ; then
7386 _def_inet6='#define HAVE_AF_INET6 1'
7387 else
7388 _def_inet6='#undef HAVE_AF_INET6'
7390 echores "$_inet6"
7393 echocheck "gethostbyname2"
7394 if test "$_gethostbyname2" = auto ; then
7395 cat > $TMPC << EOF
7396 #include <sys/types.h>
7397 #include <sys/socket.h>
7398 #include <netdb.h>
7399 int main(void) { gethostbyname2("", AF_INET); return 0; }
7401 _gethostbyname2=no
7402 if cc_check ; then
7403 _gethostbyname2=yes
7407 if test "$_gethostbyname2" = yes ; then
7408 _def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
7409 else
7410 _def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
7412 echores "$_gethostbyname2"
7415 # --------------- GUI specific tests begin -------------------
7416 echocheck "GUI"
7417 echo "$_gui"
7418 if test "$_gui" = yes ; then
7420 # Required libraries
7421 if test "$_libavcodec" != yes ||
7422 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7423 die "The GUI requires libavcodec with PNG support (needs zlib)."
7425 test "$_freetype" = no && test "$_bitmap_font" = no && \
7426 die "The GUI requires either FreeType or bitmap font support."
7427 if ! win32 ; then
7428 _gui_gtk=yes
7429 test "$_x11" != yes && die "X11 support required for GUI compilation."
7431 echocheck "XShape extension"
7432 if test "$_xshape" = auto ; then
7433 _xshape=no
7434 cat > $TMPC << EOF
7435 #include <X11/Xlib.h>
7436 #include <X11/Xproto.h>
7437 #include <X11/Xutil.h>
7438 #include <X11/extensions/shape.h>
7439 #include <stdlib.h>
7440 int main(void) {
7441 char *name = ":0.0";
7442 Display *wsDisplay;
7443 int exitvar = 0;
7444 int eventbase, errorbase;
7445 if (getenv("DISPLAY"))
7446 name=getenv("DISPLAY");
7447 wsDisplay=XOpenDisplay(name);
7448 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7449 exitvar=1;
7450 XCloseDisplay(wsDisplay);
7451 return exitvar;
7454 cc_check -lXext && _xshape=yes
7456 if test "$_xshape" = yes ; then
7457 _def_xshape='#define CONFIG_XSHAPE 1'
7458 else
7459 die "The GUI requires the X11 extension XShape (which was not found)."
7461 echores "$_xshape"
7463 #Check for GTK
7464 if test "$_gtk1" = no ; then
7465 #Check for GTK2 :
7466 echocheck "GTK+ version"
7468 if $_pkg_config gtk+-2.0 --exists ; then
7469 _gtk=`$_pkg_config gtk+-2.0 --modversion 2>/dev/null`
7470 _inc_extra="$_inc_extra `$_pkg_config gtk+-2.0 --cflags 2>/dev/null`"
7471 _libs_mplayer="$_libs_mplayer `$_pkg_config gtk+-2.0 --libs 2>/dev/null`"
7472 echores "$_gtk"
7474 # Check for GLIB2
7475 if $_pkg_config glib-2.0 --exists ; then
7476 echocheck "glib version"
7477 _glib=`$_pkg_config glib-2.0 --modversion 2>/dev/null`
7478 _libs_mplayer="$_libs_mplayer `$_pkg_config glib-2.0 --libs 2>/dev/null`"
7479 echores "$_glib"
7481 _def_gui='#define CONFIG_GUI 1'
7482 _def_gtk2='#define CONFIG_GTK2 1'
7483 else
7484 _gtk1=yes
7485 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7487 else
7488 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7489 _gtk1=yes
7493 if test "$_gtk1" = yes ; then
7494 # Check for old GTK (1.2.x)
7495 echocheck "GTK version"
7496 if test -z "$_gtkconfig" ; then
7497 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7498 _gtkconfig="gtk-config"
7499 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7500 _gtkconfig="gtk12-config"
7501 else
7502 die "The GUI requires GTK devel packages (which were not found)."
7505 _gtk=`$_gtkconfig --version 2>&1`
7506 _inc_extra="$_inc_extra `$_gtkconfig --cflags 2>&1`"
7507 _libs_mplayer="$_libs_mplayer `$_gtkconfig --libs 2>&1`"
7508 echores "$_gtk (using $_gtkconfig)"
7510 # Check for GLIB
7511 echocheck "glib version"
7512 if test -z "$_glibconfig" ; then
7513 if ( glib-config --version ) >/dev/null 2>&1 ; then
7514 _glibconfig="glib-config"
7515 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7516 _glibconfig="glib12-config"
7517 else
7518 die "The GUI requires GLIB devel packages (which were not found)"
7521 _glib=`$_glibconfig --version 2>&1`
7522 _libs_mplayer="$_libs_mplayer `$_glibconfig --libs 2>&1`"
7523 echores "$_glib (using $_glibconfig)"
7525 _def_gui='#define CONFIG_GUI 1'
7526 _def_gtk2='#undef CONFIG_GTK2'
7529 else #if ! win32
7530 _gui_win32=yes
7531 _libs_mplayer="$_libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7532 _def_gui='#define CONFIG_GUI 1'
7533 _def_gtk2='#undef CONFIG_GTK2'
7534 fi #if ! win32
7536 else #if test "$_gui"
7537 _def_gui='#undef CONFIG_GUI'
7538 _def_gtk2='#undef CONFIG_GTK2'
7539 fi #if test "$_gui"
7540 # --------------- GUI specific tests end -------------------
7543 if test "$_charset" = "noconv" ; then
7544 _charset=""
7546 if test "$_charset" ; then
7547 _def_charset="#define MSG_CHARSET \"$_charset\""
7548 else
7549 _def_charset="#undef MSG_CHARSET"
7552 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7553 echocheck "iconv program"
7554 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7555 if test "$?" -ne 0 ; then
7556 echores "no"
7557 echo "No working iconv program found, use "
7558 echo "--charset=UTF-8 to continue anyway."
7559 echo "If you also have problems with iconv library functions use --charset=noconv."
7560 echo "Messages in the GTK-2 interface will be broken then."
7561 exit 1
7562 else
7563 echores "yes"
7567 #############################################################################
7569 echocheck "automatic gdb attach"
7570 if test "$_crash_debug" = yes ; then
7571 _def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7572 else
7573 _def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7574 _crash_debug=no
7576 echores "$_crash_debug"
7578 echocheck "compiler support for noexecstack"
7579 cat > $TMPC <<EOF
7580 int main(void) { return 0; }
7582 if cc_check -Wl,-z,noexecstack ; then
7583 _ld_extra="-Wl,-z,noexecstack $_ld_extra"
7584 echores "yes"
7585 else
7586 echores "no"
7590 # Dynamic linking flags
7591 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7592 _ld_dl_dynamic=''
7593 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7594 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7595 _ld_dl_dynamic='-rdynamic'
7598 _ld_extra="$_ld_extra $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7599 bsdos && _ld_extra="$_ld_extra -ldvd"
7600 netbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7601 openbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7603 _def_debug='#undef MP_DEBUG'
7604 test "$_debug" != "" && _def_debug='#define MP_DEBUG 1'
7607 echocheck "joystick"
7608 _def_joystick='#undef CONFIG_JOYSTICK'
7609 if test "$_joystick" = yes ; then
7610 if linux ; then
7611 # TODO add some check
7612 _def_joystick='#define CONFIG_JOYSTICK 1'
7613 else
7614 _joystick="no"
7615 _res_comment="unsupported under $system_name"
7618 echores "$_joystick"
7620 echocheck "lirc"
7621 if test "$_lirc" = auto ; then
7622 _lirc=no
7623 cat > $TMPC <<EOF
7624 #include <lirc/lirc_client.h>
7625 int main(void) { return 0; }
7627 cc_check -llirc_client && _lirc=yes
7629 if test "$_lirc" = yes ; then
7630 _def_lirc='#define CONFIG_LIRC 1'
7631 _ld_extra="$_ld_extra -llirc_client"
7632 else
7633 _def_lirc='#undef CONFIG_LIRC'
7635 echores "$_lirc"
7637 echocheck "lircc"
7638 if test "$_lircc" = auto ; then
7639 _lircc=no
7640 cat > $TMPC <<EOF
7641 #include <lirc/lircc.h>
7642 int main(void) { return 0; }
7644 cc_check -llircc && _lircc=yes
7646 if test "$_lircc" = yes ; then
7647 _def_lircc='#define CONFIG_LIRCC 1'
7648 _ld_extra="$_ld_extra -llircc"
7649 else
7650 _def_lircc='#undef CONFIG_LIRCC'
7652 echores "$_lircc"
7654 if arm; then
7655 # Detect maemo development platform libraries availability (http://www.maemo.org),
7656 # they are used when run on Nokia 770|8x0
7657 echocheck "maemo (Nokia 770|8x0)"
7658 if test "$_maemo" = auto ; then
7659 _maemo=no
7660 cat > $TMPC << EOF
7661 #include <libosso.h>
7662 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7664 cc_check `$_pkg_config --cflags --libs libosso 2>/dev/null` && _maemo=yes
7666 if test "$_maemo" = yes ; then
7667 _def_maemo='#define CONFIG_MAEMO 1'
7668 _inc_extra="$_inc_extra `$_pkg_config --cflags libosso`"
7669 _ld_extra="$_ld_extra `$_pkg_config --libs libosso` -lXsp"
7670 else
7671 _def_maemo='#undef CONFIG_MAEMO'
7673 echores "$_maemo"
7676 #this must be the last test to be performed or the ones following it will likely fail
7677 #because libdvdnavmini is intentionally not linked against libdvdread (to permit mplayer
7678 # to use its own copy of the library)
7679 echocheck "DVD support (libdvdnav)"
7680 if test "$_dvdnav" = auto ; then
7681 if test "$_dvdread_internal" = yes ; then
7682 _dvdnav=no
7683 _res_comment="Disabled in favor of the internal copy of dvdread. Append --disable-dvdread-internal."
7684 else
7685 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7688 if test "$_dvdnav" = auto ; then
7689 cat > $TMPC <<EOF
7690 #include <inttypes.h>
7691 #include <dvdnav/dvdnav.h>
7692 int main(void) { dvdnav_t *dvd=0; return 0; }
7694 _dvdnav=no
7695 _dvdnavdir=`$_dvdnavconfig --cflags`
7696 _dvdnavlibs=`$_dvdnavconfig --libs`
7697 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7699 if test "$_dvdnav" = yes ; then
7700 _largefiles=yes
7701 _def_dvdnav='#define CONFIG_DVDNAV 1'
7702 _inc_extra="$_inc_extra `$_dvdnavconfig --cflags`"
7703 _ld_extra="$_ld_extra `$_dvdnavconfig --minilibs`"
7704 _inputmodules="dvdnav $_inputmodules"
7705 else
7706 _def_dvdnav='#undef CONFIG_DVDNAV'
7707 _noinputmodules="dvdnav $_noinputmodules"
7709 echores "$_dvdnav"
7712 #############################################################################
7714 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7715 # the OMF format needs to come after the 'extern symbol prefix' check, which
7716 # uses nm.
7717 if os2 ; then
7718 _ld_extra="$_ld_extra -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7721 # linker paths should be the same for mencoder and mplayer
7722 _ld_tmp=""
7723 for I in $_libs_mplayer ; do
7724 _tmp=`echo $I | sed -e 's/^-L.*$//'`
7725 if test -z "$_tmp" ; then
7726 _ld_extra="$_ld_extra $I"
7727 else
7728 _ld_tmp="$_ld_tmp $I"
7730 done
7731 _libs_mplayer=$_ld_tmp
7734 #############################################################################
7735 if darwin ; then
7736 CFLAGS="$CFLAGS -mdynamic-no-pic -falign-loops=16 -shared-libgcc"
7737 if [ "$_cc_major" = 3 ] && [ "$_cc_minor" -lt 1 ]; then
7738 CFLAGS="$CFLAGS -no-cpp-precomp"
7741 if amigaos ; then
7742 CFLAGS="$CFLAGS -DNEWLIB -D__USE_INLINE__"
7744 # Thread support
7745 if linux ; then
7746 CFLAGS="$CFLAGS -D_REENTRANT"
7747 elif freebsd || netbsd || openbsd || bsdos ; then
7748 # FIXME bsd needs this so maybe other OS'es
7749 CFLAGS="$CFLAGS -D_THREAD_SAFE"
7751 # 64 bit file offsets?
7752 if test "$_largefiles" = yes || freebsd ; then
7753 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7754 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7755 # dvdread support requires this (for off64_t)
7756 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7760 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
7762 cat > $TMPC << EOF
7763 int main(void) { return 0; }
7765 if test "$cc_vendor" = "gnu" ; then
7766 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
7767 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
7768 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
7769 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
7772 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
7774 #############################################################################
7775 echo "Creating config.mak"
7776 cat > config.mak << EOF
7777 # -------- Generated by configure -----------
7779 # Ensure that locale settings do not interfere with shell commands.
7780 export LC_ALL = C
7782 CHARSET = $_charset
7783 DOC_LANG = $doc_lang
7784 DOC_LANGS = $doc_langs
7785 DOC_LANG_ALL = $doc_lang_all
7786 MAN_LANG = $man_lang
7787 MAN_LANGS = $man_langs
7788 MAN_LANG_ALL = $man_lang_all
7790 prefix = \$(DESTDIR)$_prefix
7791 BINDIR = \$(DESTDIR)$_bindir
7792 DATADIR = \$(DESTDIR)$_datadir
7793 LIBDIR = \$(DESTDIR)$_libdir
7794 MANDIR = \$(DESTDIR)$_mandir
7795 CONFDIR = \$(DESTDIR)$_confdir
7797 AR = $_ar
7798 CC = $_cc
7799 CXX = $_cc
7800 HOST_CC = $_host_cc
7801 INSTALL = $_install
7802 INSTALLSTRIP = $_install_strip
7803 RANLIB = $_ranlib
7804 WINDRES = $_windres
7806 EXTRA_INC = $_inc_extra
7807 EXTRAXX_INC = $_inc_extra $_inc_extraxx
7808 CFLAGS = $CFLAGS \$(EXTRA_INC)
7809 OPTFLAGS = $CFLAGS \$(EXTRA_INC)
7810 CXXFLAGS = $CXXFLAGS \$(EXTRAXX_INC)
7811 CFLAGS_DHAHELPER = $cflags_dhahelper
7812 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7813 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7814 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7815 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7816 CFLAGS_STACKREALIGN = $cflags_stackrealign
7817 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7818 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7820 EXTRALIBS = $_extra_libs
7821 EXTRA_LIB = $_ld_extra $_ld_static $_ld_lm
7822 EXTRALIBS_MPLAYER = $_libs_mplayer
7823 EXTRALIBS_MENCODER = $_libs_mencoder
7825 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
7827 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 &,"
7828 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 &,"
7830 GETCH = $_getch
7831 HELP_FILE = $_mp_help
7832 TIMER = $_timer
7834 AO_SRCS = $_aosrc
7835 VO_SRCS = $_vosrc
7837 EXESUF = $_exesuf
7839 $_target_arch
7840 $_target_arch_x86
7841 `echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/'`
7843 MENCODER = $_mencoder
7844 MPLAYER = $_mplayer
7846 NEED_GETTIMEOFDAY = $_need_gettimeofday
7847 NEED_GLOB = $_need_glob
7848 NEED_MMAP = $_need_mmap
7849 NEED_SETENV = $_need_setenv
7850 NEED_SHMEM = $_need_shmem
7851 NEED_STRSEP = $_need_strsep
7852 NEED_SWAB = $_need_swab
7853 NEED_VSSCANF = $_need_vsscanf
7855 # features
7856 ALSA1X = $_alsa1x
7857 ALSA9 = $_alsa9
7858 APPLE_IR = $_apple_ir
7859 APPLE_REMOTE = $_apple_remote
7860 AUDIO_INPUT = $_audio_input
7861 BITMAP_FONT = $_bitmap_font
7862 CDDA = $_cdda
7863 CDDB = $_cddb
7864 COREAUDIO = $_coreaudio
7865 COREVIDEO = $_corevideo
7866 DVBIN = $_dvbin
7867 DVDNAV = $_dvdnav
7868 DVDREAD = $_dvdread
7869 DVDREAD_INTERNAL = $_dvdread_internal
7870 FAAC=$_faac
7871 FAAD = $_faad
7872 FAAD_INTERNAL = $_faad_internal
7873 FREETYPE = $_freetype
7874 FTP = $_ftp
7875 GIF = $_gif
7876 GUI = $_gui
7877 GUI_GTK = $_gui_gtk
7878 GUI_WIN32 = $_gui_win32
7879 HAVE_POSIX_SELECT = $_posix_select
7880 HAVE_SYS_MMAN_H = $_mman
7881 HAVE_XVMC = $_xvmc
7882 JOYSTICK = $_joystick
7883 JPEG = $_jpeg
7884 LADSPA = $_ladspa
7885 LIBA52 = $_liba52
7886 LIBA52_INTERNAL = $_liba52_internal
7887 LIBASS = $_ass
7888 LIBDCA = $_libdca
7889 LIBDV = $_libdv
7890 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7891 LIBLZO = $_liblzo
7892 LIBMAD = $_mad
7893 LIBMENU = $_menu
7894 LIBMENU_DVBIN = $_menu_dvbin
7895 LIBMPEG2 = $_libmpeg2
7896 LIBNEMESI = $_nemesi
7897 LIBNUT = $_libnut
7898 LIBSMBCLIENT = $_smb
7899 LIBTHEORA = $_theora
7900 LIBVORBIS = $_vorbis
7901 LIRC = $_lirc
7902 LIVE555 = $_live
7903 MACOSX_BUNDLE = $_macosx_bundle
7904 MACOSX_FINDER = $_macosx_finder
7905 MP3LAME = $_mp3lame
7906 MP3LIB = $_mp3lib
7907 MUSEPACK = $_musepack
7908 NATIVE_RTSP = $_native_rtsp
7909 NETWORK = $_network
7910 OSS = $_ossaudio
7911 PE_EXECUTABLE = $_pe_executable
7912 PNG = $_png
7913 PVR = $_pvr
7914 QTX_CODECS = $_qtx
7915 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7916 QTX_EMULATION = $_qtx_emulation
7917 QUARTZ = $_quartz
7918 RADIO=$_radio
7919 RADIO_CAPTURE=$_radio_capture
7920 REAL_CODECS = $_real
7921 SPEEX = $_speex
7922 STREAM_CACHE = $_stream_cache
7923 TOOLAME=$_toolame
7924 TREMOR_INTERNAL = $_tremor_internal
7925 TV = $_tv
7926 TV_BSDBT848 = $_tv_bsdbt848
7927 TV_DSHOW = $_tv_dshow
7928 TV_TELETEXT = $_tv_teletext
7929 TV_V4L = $_tv_v4l
7930 TV_V4L1 = $_tv_v4l1
7931 TV_V4L2 = $_tv_v4l2
7932 TWOLAME=$_twolame
7933 UNRAR_EXEC = $_unrar_exec
7934 VCD = $_vcd
7935 VIDIX = $_vidix
7936 VIDIX_PCIDB = $_vidix_pcidb_val
7937 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7938 VIDIX_IVTV=$_vidix_drv_ivtv
7939 VIDIX_MACH64=$_vidix_drv_mach64
7940 VIDIX_MGA=$_vidix_drv_mga
7941 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7942 VIDIX_NVIDIA=$_vidix_drv_nvidia
7943 VIDIX_PM2=$_vidix_drv_pm2
7944 VIDIX_PM3=$_vidix_drv_pm3
7945 VIDIX_RADEON=$_vidix_drv_radeon
7946 VIDIX_RAGE128=$_vidix_drv_rage128
7947 VIDIX_S3=$_vidix_drv_s3
7948 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7949 VIDIX_SIS=$_vidix_drv_sis
7950 VIDIX_UNICHROME=$_vidix_drv_unichrome
7951 VSTREAM = $_vstream
7952 WIN32DLL = $_win32dll
7953 WIN32_EMULATION = $_win32_emulation
7954 X264 = $_x264
7955 XANIM_CODECS = $_xanim
7956 XMMS_PLUGINS = $_xmms
7957 XVID4 = $_xvid
7958 ZORAN = $_zr
7960 # FFmpeg
7961 LIBAVUTIL = $_libavutil
7962 LIBAVUTIL_A = $_libavutil_a
7963 LIBAVUTIL_SO = $_libavutil_so
7964 LIBAVCODEC = $_libavcodec
7965 LIBAVCODEC_A = $_libavcodec_a
7966 LIBAVCODEC_SO = $_libavcodec_so
7967 LIBAVFORMAT = $_libavformat
7968 LIBAVFORMAT_A = $_libavformat_a
7969 LIBAVFORMAT_SO = $_libavformat_so
7970 LIBPOSTPROC = $_libpostproc
7971 LIBPOSTPROC_A = $_libpostproc_a
7972 LIBPOSTPROC_SO = $_libpostproc_so
7973 LIBSWSCALE = $_libswscale
7974 LIBSWSCALE_A = $_libswscale_a
7975 LIBSWSCALE_SO = $_libswscale_so
7977 BUILD_STATIC=yes
7978 SRC_PATH=..
7979 BUILD_ROOT=..
7980 LIBPREF=lib
7981 LIBSUF=.a
7982 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
7984 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7985 CONFIG_FFT=yes
7986 CONFIG_GOLOMB=yes
7987 CONFIG_MDCT=yes
7989 CONFIG_ENCODERS=yes
7990 CONFIG_GPL=yes
7991 CONFIG_LIBAMR=$_libamr
7992 CONFIG_LIBAMR_NB=$_libamr_nb
7993 CONFIG_LIBAMR_WB=$_libamr_wb
7994 CONFIG_LIBDIRAC=$_libdirac_lavc
7995 CONFIG_LIBFAAC=$_faac_lavc
7996 CONFIG_LIBMP3LAME=$_mp3lame_lavc
7997 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
7998 CONFIG_LIBVORBIS=$_libvorbis
7999 CONFIG_LIBX264=$_x264_lavc
8000 CONFIG_LIBXVID=$_xvid_lavc
8001 CONFIG_MLIB = $_mlib
8002 CONFIG_MUXERS=$_mencoder
8003 CONFIG_POSTPROC = yes
8004 # Prevent building libavcodec/imgresample.c with conflicting symbols
8005 CONFIG_SWSCALE=yes
8006 CONFIG_ZLIB=$_zlib
8008 HAVE_PTHREADS = $_pthreads
8009 HAVE_W32THREADS = $_w32threads
8011 `echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8012 `echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8013 `echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8014 `echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8015 `echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8016 `echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8019 #############################################################################
8021 ff_config_enable () {
8022 _nprefix=$3;
8023 test -z "$_nprefix" && _nprefix='CONFIG'
8024 for part in $1; do
8025 if ` echo $2 | grep -q -E "(^| )$part($| )" `; then
8026 echo "#define ${_nprefix}_$part 1"
8027 echo "#define ENABLE_$part 1"
8028 else
8029 echo "#define ENABLE_$part 0"
8031 done
8034 echo "Creating config.h"
8035 cat > $TMPH << EOF
8036 /*----------------------------------------------------------------------------
8037 ** This file has been automatically generated by configure any changes in it
8038 ** will be lost when you run configure again.
8039 ** Instead of modifying definitions here, use the --enable/--disable options
8040 ** of the configure script! See ./configure --help for details.
8041 *---------------------------------------------------------------------------*/
8043 #ifndef MPLAYER_CONFIG_H
8044 #define MPLAYER_CONFIG_H
8046 /* Undefine this if you do not want to select mono audio (left or right)
8047 with a stereo MPEG layer 2/3 audio stream. The command line option
8048 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8049 right-only), with 0 being the default.
8051 #define CONFIG_FAKE_MONO 1
8053 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8054 #define MAX_OUTBURST 65536
8056 /* set up audio OUTBURST. Do not change this! */
8057 #define OUTBURST 512
8059 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8060 #undef FAST_OSD
8061 #undef FAST_OSD_TABLE
8063 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8064 #define MPEG12_POSTPROC 1
8065 #define ATTRIBUTE_ALIGNED_MAX 16
8069 #define CONFIGURATION "$_configuration"
8071 #define MPLAYER_DATADIR "$_datadir"
8072 #define MPLAYER_CONFDIR "$_confdir"
8073 #define MPLAYER_LIBDIR "$_libdir"
8075 /* definitions needed by included libraries */
8076 #define HAVE_INTTYPES_H 1
8077 /* libmpeg2 + FFmpeg */
8078 $_def_fast_inttypes
8079 /* libdvdcss */
8080 #define HAVE_ERRNO_H 1
8081 /* libdvdcss + libdvdread */
8082 #define HAVE_LIMITS_H 1
8083 /* libdvdcss + libfaad2 */
8084 #define HAVE_UNISTD_H 1
8085 /* libfaad2 + libdvdread */
8086 #define STDC_HEADERS 1
8087 #define HAVE_MEMCPY 1
8088 /* libdvdread */
8089 #define HAVE_UINTPTR_T 1
8092 /* system headers */
8093 $def_alloca_h
8094 $def_alsa_asoundlib_h
8095 $def_altivec_h
8096 $def_malloc_h
8097 $def_mman_h
8098 $_def_mman_has_map_failed
8099 $def_soundcard_h
8100 $def_sys_asoundlib_h
8101 $def_sys_soundcard_h
8102 $def_sys_sysinfo_h
8103 $def_termios_h
8104 $def_termios_sys_h
8105 $def_winsock2_h
8108 /* system functions */
8109 $_def_gethostbyname2
8110 $_def_gettimeofday
8111 $_def_glob
8112 $_def_langinfo
8113 $_def_llrint
8114 $_def_lrint
8115 $_def_lrintf
8116 $_def_map_memalign
8117 $_def_memalign
8118 $_def_memalign_hack
8119 $_def_nanosleep
8120 $_def_posix_select
8121 $_def_round
8122 $_def_roundf
8123 $_def_select
8124 $_def_setenv
8125 $_def_shm
8126 $_def_strsep
8127 $_def_swab
8128 $_def_sysi86
8129 $_def_sysi86_iv
8130 $_def_termcap
8131 $_def_termios
8132 $_def_vsscanf
8135 /* system-specific features */
8136 $_def_asmalign_pot
8137 $_def_builtin_expect
8138 $_def_dl
8139 $_def_iconv
8140 $_def_kstat
8141 $_def_macosx_bundle
8142 $_def_macosx_finder
8143 $_def_maemo
8144 $_def_named_asm_args
8145 $_def_quicktime
8146 $_def_restrict_keyword
8147 $_def_rtc
8148 $_def_unrar_exec
8151 /* configurable options */
8152 $_def_charset
8153 $_def_crash_debug
8154 $_def_debug
8155 $_def_dynamic_plugins
8156 $_def_fastmemcpy
8157 $_def_menu
8158 $_def_runtime_cpudetection
8159 $_def_sighandler
8160 $_def_sortsub
8161 $_def_stream_cache
8164 /* CPU stuff */
8165 #define __CPU__ $iproc
8166 $_def_words_endian
8167 `ff_config_enable "$_arch_all" "$_arch" "ARCH"`
8168 `ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE"`
8171 /* DVD/VCD/CD */
8172 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8173 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8174 $_def_bsdi_dvd
8175 $_def_cddb
8176 $_def_cdio
8177 $_def_cdparanoia
8178 $_def_cdrom
8179 $_def_dvd
8180 $_def_dvd_bsd
8181 $_def_dvd_darwin
8182 $_def_dvd_linux
8183 $_def_dvd_openbsd
8184 $_def_dvdio
8185 $_def_dvdnav
8186 $_def_dvdread
8187 $_def_dvdread_internal
8188 $_def_hpux_scsi_h
8189 $_def_libcdio
8190 $_def_sol_scsi_h
8191 $_def_vcd
8194 /* codec libraries */
8195 $_def_faac
8196 $_def_faad
8197 $_def_faad_internal
8198 $_def_liba52
8199 $_def_liba52_internal
8200 $_def_libdca
8201 $_def_libdv
8202 $_def_liblzo
8203 $_def_libmpeg2
8204 $_def_mad
8205 $_def_mp3lame
8206 $_def_mp3lame_preset
8207 $_def_mp3lame_preset_medium
8208 $_def_mp3lib
8209 $_def_musepack
8210 $_def_speex
8211 $_def_theora
8212 $_def_toolame
8213 $_def_tremor
8214 $_def_twolame
8215 $_def_vorbis
8216 $_def_x264
8217 $_def_xvid
8218 $_def_zlib
8220 $_def_libnut
8223 /* binary codecs */
8224 $_def_qtx
8225 $_def_qtx_win32
8226 $_def_real
8227 $_def_real_path
8228 $_def_win32_loader
8229 $_def_win32dll
8230 #define WIN32_PATH "$_win32codecsdir"
8231 $_def_xanim
8232 $_def_xanim_path
8233 $_def_xmms
8234 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8237 /* GUI */
8238 $_def_gtk2
8239 $_def_gui
8240 $_def_xshape
8243 /* Audio output drivers */
8244 $_def_alsa
8245 $_def_alsa1x
8246 $_def_alsa5
8247 $_def_alsa9
8248 $_def_arts
8249 $_def_coreaudio
8250 $_def_esd
8251 $_def_esd_latency
8252 $_def_jack
8253 $_def_nas
8254 $_def_openal
8255 $_def_openal_h
8256 $_def_ossaudio
8257 $_def_ossaudio_devdsp
8258 $_def_ossaudio_devmixer
8259 $_def_pulse
8260 $_def_sgiaudio
8261 $_def_sunaudio
8262 $_def_win32waveout
8264 $_def_ladspa
8267 /* input */
8268 $_def_apple_ir
8269 $_def_apple_remote
8270 $_def_ioctl_bt848_h_name
8271 $_def_ioctl_meteor_h_name
8272 $_def_joystick
8273 $_def_lirc
8274 $_def_lircc
8275 $_def_pvr
8276 $_def_radio
8277 $_def_radio_bsdbt848
8278 $_def_radio_capture
8279 $_def_radio_v4l
8280 $_def_radio_v4l2
8281 $_def_tv
8282 $_def_tv_bsdbt848
8283 $_def_tv_dshow
8284 $_def_tv_teletext
8285 $_def_tv_v4l
8286 $_def_tv_v4l1
8287 $_def_tv_v4l2
8290 /* font stuff */
8291 $_def_ass
8292 $_def_bitmap_font
8293 $_def_enca
8294 $_def_fontconfig
8295 $_def_freetype
8296 $_def_fribidi
8299 /* networking */
8300 $_def_closesocket
8301 $_def_ftp
8302 $_def_inet6
8303 $_def_live
8304 $_def_nemesi
8305 $_def_network
8306 $_def_smb
8307 $_def_socklen_t
8308 $_def_use_aton
8309 $_def_vstream
8312 /* libvo options */
8313 $_def_3dfx
8314 $_def_aa
8315 $_def_bl
8316 $_def_caca
8317 $_def_corevideo
8318 $_def_dfbmga
8319 $_def_dga
8320 $_def_dga1
8321 $_def_dga2
8322 $_def_directfb
8323 $_def_directfb_version
8324 $_def_directx
8325 $_def_dvb
8326 $_def_dvb_head
8327 $_def_dvbin
8328 $_def_dxr2
8329 $_def_dxr3
8330 $_def_fbdev
8331 $_def_ggi
8332 $_def_ggiwmh
8333 $_def_gif
8334 $_def_gif_4
8335 $_def_gif_tvt_hack
8336 $_def_gl
8337 $_def_gl_win32
8338 $_def_ivtv
8339 $_def_jpeg
8340 $_def_md5sum
8341 $_def_mga
8342 $_def_png
8343 $_def_pnm
8344 $_def_quartz
8345 $_def_s3fb
8346 $_def_sdl
8347 $_def_sdlbuggy
8348 $_def_svga
8349 $_def_tdfxfb
8350 $_def_tdfxvid
8351 $_def_tga
8352 $_def_v4l2
8353 $_def_vesa
8354 $_def_vidix
8355 $_def_vidix_drv_cyberblade
8356 $_def_vidix_drv_ivtv
8357 $_def_vidix_drv_mach64
8358 $_def_vidix_drv_mga
8359 $_def_vidix_drv_mga_crtc2
8360 $_def_vidix_drv_nvidia
8361 $_def_vidix_drv_pm3
8362 $_def_vidix_drv_radeon
8363 $_def_vidix_drv_rage128
8364 $_def_vidix_drv_s3
8365 $_def_vidix_drv_sh_veu
8366 $_def_vidix_drv_sis
8367 $_def_vidix_drv_unichrome
8368 $_def_vidix_pfx
8369 $_def_vm
8370 $_def_wii
8371 $_def_x11
8372 $_def_xdpms
8373 $_def_xf86keysym
8374 $_def_xinerama
8375 $_def_xmga
8376 $_def_xss
8377 $_def_xv
8378 $_def_xvmc
8379 $_def_xvr100
8380 $_def_yuv4mpeg
8381 $_def_zr
8384 /* FFmpeg */
8385 $_def_libavcodec
8386 $_def_libavcodec_a
8387 $_def_libavcodec_mpegaudio_hp
8388 $_def_libavcodec_so
8389 $_def_libavformat
8390 $_def_libavformat_a
8391 $_def_libavformat_so
8392 $_def_libavutil
8393 $_def_libavutil_a
8394 $_def_libavutil_so
8395 $_def_libpostproc
8396 $_def_libpostproc_a
8397 $_def_libpostproc_so
8398 $_def_libswscale
8399 $_def_libswscale_a
8400 $_def_libswscale_so
8402 $_def_dcbzl
8403 $_def_extern_prefix
8404 $_def_fast_unaligned
8405 $_def_mkstemp
8406 $_def_pthreads
8407 $_def_threads
8408 #ifdef HAVE_THREADS
8409 #define ENABLE_THREADS 1
8410 #else
8411 #define ENABLE_THREADS 0
8412 #endif
8414 #define CONFIG_GPL 1
8415 #define ENABLE_SMALL 0
8416 #define ENABLE_GRAY 0
8418 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8419 #define CONFIG_FFT 1
8420 #define ENABLE_FFT 1
8421 #define CONFIG_GOLOMB 1
8422 #define ENABLE_GOLOMB 1
8423 #define CONFIG_MDCT 1
8424 #define ENABLE_MDCT 1
8426 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8427 #define HAVE_EBX_AVAILABLE 1
8428 #ifndef MP_DEBUG
8429 #define HAVE_EBP_AVAILABLE 1
8430 #endif
8432 #define CONFIG_DECODERS 1
8433 #define ENABLE_DECODERS 1
8434 #define CONFIG_ENCODERS 1
8435 #define ENABLE_ENCODERS 1
8437 #define CONFIG_DEMUXERS 1
8438 #define ENABLE_DEMUXERS 1
8440 $_def_muxers
8442 /* External libraries used through libavcodec. */
8443 $_def_faac_lavc
8444 $_def_libamr
8445 $_def_libamr_nb
8446 $_def_libamr_wb
8447 $_def_libdirac_lavc
8448 $_def_libschroedinger_lavc
8449 $_def_mp3lame_lavc
8450 $_def_x264_lavc
8451 $_def_xvid_lavc
8453 `ff_config_enable "$_libavdecoders_all" "$_libavdecoders"`
8454 `ff_config_enable "$_libavencoders_all" "$_libavencoders"`
8455 `ff_config_enable "$_libavparsers_all" "$_libavparsers"`
8456 `ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers"`
8457 `ff_config_enable "$_libavmuxers_all" "$_libavmuxers"`
8458 `ff_config_enable "$_libavprotocols_all" "$_libavprotocols"`
8459 `ff_config_enable "$_libavbsfs_all" "$_libavbsfs"`
8461 #endif /* MPLAYER_CONFIG_H */
8464 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8465 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8467 #############################################################################
8469 cat << EOF
8471 Config files successfully generated by ./configure $_configuration !
8473 Install prefix: $_prefix
8474 Data directory: $_datadir
8475 Config direct.: $_confdir
8477 Byte order: $_byte_order
8478 Optimizing for: $_optimizing
8480 Languages:
8481 Messages/GUI: $msg_lang
8482 Manual pages: $man_langs
8484 Enabled optional drivers:
8485 Input: $_inputmodules
8486 Codecs: $_codecmodules
8487 Audio output: $_aomodules
8488 Video output: $_vomodules
8490 Disabled optional drivers:
8491 Input: $_noinputmodules
8492 Codecs: $_nocodecmodules
8493 Audio output: $_noaomodules
8494 Video output: $_novomodules
8496 'config.h' and 'config.mak' contain your configuration options.
8497 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8498 compile *** DO NOT REPORT BUGS if you tweak these files ***
8500 'make' will now compile MPlayer and 'make install' will install it.
8501 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8506 if test "$_mtrr" = yes ; then
8507 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8508 echo
8511 if ! x86_32; then
8512 cat <<EOF
8513 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8514 operating system ($system_name). You may encounter a few files that cannot
8515 be played due to missing open source video/audio codec support.
8521 cat <<EOF
8522 Check $TMPLOG if you wonder why an autodetection failed (make sure
8523 development headers/packages are installed).
8525 NOTE: The --enable-* parameters unconditionally force options on, completely
8526 skipping autodetection. This behavior is unlike what you may be used to from
8527 autoconf-based configure scripts that can decide to override you. This greater
8528 level of control comes at a price. You may have to provide the correct compiler
8529 and linker flags yourself.
8530 If you used one of these options (except --enable-gui and similar ones that
8531 turn on internal features) and experience a compilation or linking failure,
8532 make sure you have passed the necessary compiler/linker flags to configure.
8534 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8538 if test "$_warn_CFLAGS" = yes; then
8539 cat <<EOF
8541 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS set by you, but:
8543 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8545 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8546 To do so, execute 'CFLAGS= ./configure <options>'
8551 # Last move:
8552 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"